[
  {
    "path": ".gitignore",
    "content": ".DS_store\n.idea/*\n"
  },
  {
    "path": "README.md",
    "content": "## CondensedMovies\n\n**** ___N.B: Please use the condensed movies challenge https://github.com/m-bain/CondensedMovies-chall with updated splits since some videos in the original paper are unavailable with missing features ****____\n\n___Contact me directly for the additional dataset queries, details in the challenge repo for feature download.___\n\n\n###############################################\n\nThis repository contains the video dataset, implementation and baselines from <strong>Condensed Movies: Story Based Retrieval with Contextual Embeddings</strong>.\n\n[Project page](https://www.robots.ox.ac.uk/~vgg/research/condensed-movies) |\n[arXiv preprint](https://arxiv.org/abs/2005.04208) |\n[Read the paper](https://arxiv.org/pdf/2005.04208.pdf) |\n[Preview the data](https://www.robots.ox.ac.uk/~vgg/research/condensed-movies/#preview)\n\n----\n### CondensedMovies Dataset\n\n![videocaptions](figs/example_captions.png)\n\n\nThe dataset consists of 3K+ movies, 30K+ professionally captioned clips, 1K+ video hours, 400K+ facetracks & precomputed features from 6 different modalities.\n\n#### Installation\n\nRequirements:\n- Storage\n    - 20GB for features (required for baseline experiments)\n    - 10GB for facetracks\n    - 250GB for videos\n- Libraries\n    - ffmpeg (for video download)\n    - youtube-dl (for video download)\n    - pandas, numpy\n    - python 3.6+\n\n#### Prepare Data\n\n1. Navigate to directory `cd CondensedMovies/data_prep/`\n2. Edit configuration file `config.json` to download desired subsets of the dataset and their destination.\n3. If downloading the source videos (`src: true`), you can edit `youtube-dl.conf` for desired resolution, subtitles etc.\nPlease see [youtube-dl](https://github.com/ytdl-org/youtube-dl) for more info\n4. Run `python download.py`\n\nIf you have trouble downloading the source videos or features (due to geographical restrictions or otherwise), please contact me.\n\n### Video-Text Retrieval\n\n#### Baseline (Mixture of Expert Embeddings)\nEdit `data_dir` and `save_dir` in `configs/moe.json` for the experiments.\n1. `python train.py configs/moe.json`\n2. `python test.py --resume $SAVED_EXP_DIR/model_best.pth`\n\n### Visualisation\n\nRun `python visualise_face_tracks.py` with the appropriate arguments to visualise face tracks for a given videoID (requires facetracks and source videos downloaded).\n\n#### TODO:\n- [x] youtube download script\n- [x] missing videos check\n- [x] precomputed features download script\n- [x] facetrack visualisation\n- [x] dataloader\n- [x] video-text retrieval baselines\n- [ ] intra-movie baselines + char module\n- [ ] release fixed_seg features\n\n\n#### FAQ\n\nWhy did some of the source videos fail to download?\n>This is most likely due to geographical restrictions on the videos, email me at maxbain@robots.ox.ac.uk and I can help.\n\nThe precomputed features are averaged over the temporal dimension, will you release the original features?\n>This is to save space, original features in total are ~1TB, contact me to arrange download of this.\n\nI think clip X is incorrectly identified as being from movie Y, what do do?\n>Please let me know any movie identification mistakes and I'll correct it ASAP.\n\n\n#### Acknowledgements\n\nWe would like to thank Samuel Albanie for his help with feature extraction.\n"
  },
  {
    "path": "base/__init__.py",
    "content": "from .base_data_loader import *\nfrom .base_model import *\nfrom .base_trainer import *\n"
  },
  {
    "path": "base/base_data_loader.py",
    "content": "import numpy as np\nfrom torch.utils.data import DataLoader\nfrom torch.utils.data.dataloader import default_collate\n\n\nclass BaseDataLoader(DataLoader):\n    \"\"\"\n    Base class for all data loaders\n    \"\"\"\n    def __init__(self, dataset, batch_size, split, shuffle, num_workers, collate_fn=default_collate):\n        self.shuffle = shuffle\n\n        self.batch_idx = 0\n        self.n_samples = len(dataset)\n        self.split = split\n        self.init_kwargs = {\n            'dataset': dataset,\n            'batch_size': batch_size,\n            'shuffle': self.shuffle,\n            'collate_fn': collate_fn,\n            'num_workers': num_workers\n        }\n        super().__init__(**self.init_kwargs)\n"
  },
  {
    "path": "base/base_model.py",
    "content": "import torch.nn as nn\nimport numpy as np\nfrom abc import abstractmethod\n\n\nclass BaseModel(nn.Module):\n    \"\"\"\n    Base class for all models\n    \"\"\"\n    @abstractmethod\n    def forward(self, *inputs):\n        \"\"\"\n        Forward pass logic\n\n        :return: Model output\n        \"\"\"\n        raise NotImplementedError\n\n    def __str__(self):\n        \"\"\"\n        Model prints with number of trainable parameters\n        \"\"\"\n        model_parameters = filter(lambda p: p.requires_grad, self.parameters())\n        params = sum([np.prod(p.size()) for p in model_parameters])\n        return super().__str__() + '\\nTrainable parameters: {}'.format(params)\n\n    def tot_params(self):\n        model_parameters = filter(lambda p: p.requires_grad, self.parameters())\n        params = sum([np.prod(p.size()) for p in model_parameters])\n        return params"
  },
  {
    "path": "base/base_trainer.py",
    "content": "import torch\nfrom abc import abstractmethod\nfrom numpy import inf\nfrom logger import TensorboardWriter\n\n\nclass BaseTrainer:\n    \"\"\"\n    Base class for all trainers\n    \"\"\"\n    def __init__(self, model, loss, metrics, optimizer, config):\n        self.config = config\n        self.logger = config.get_logger('trainer', config['trainer']['verbosity'])\n\n        # setup GPU device if available, move model into configured device\n        self.device, device_ids = self._prepare_device(config['n_gpu'])\n        self.model = model.to(self.device)\n        if len(device_ids) > 1:\n            self.model = torch.nn.DataParallel(model, device_ids=device_ids)\n\n        self.loss = loss\n        self.metrics = metrics\n        self.optimizer = optimizer\n\n        self.config = cfg_trainer = config['trainer']\n        self.epochs = cfg_trainer['epochs']\n        self.save_period = cfg_trainer['save_period']\n        self.monitor = cfg_trainer.get('monitor', 'off')\n        self.tensorboard = cfg_trainer['tensorboard']\n\n        # configuration to monitor model performance and save best\n        if self.monitor == 'off':\n            self.mnt_mode = 'off'\n            self.mnt_best = 0\n        else:\n            self.mnt_mode, self.mnt_metric = self.monitor.split()\n            assert self.mnt_mode in ['min', 'max']\n\n            self.mnt_best = inf if self.mnt_mode == 'min' else -inf\n            self.early_stop = cfg_trainer.get('early_stop', inf)\n\n        self.start_epoch = 1\n\n        self.checkpoint_dir = config.save_dir\n\n        # setup visualization writer instance                \n        self.writer = TensorboardWriter(config.log_dir, self.logger, cfg_trainer['tensorboard'])\n\n        if config.resume is not None:\n            self._resume_checkpoint(config.resume)\n\n    @abstractmethod\n    def _train_epoch(self, epoch):\n        \"\"\"\n        Training logic for an epoch\n\n        :param epoch: Current epoch number\n        \"\"\"\n        raise NotImplementedError\n\n    def train(self):\n        \"\"\"\n        Full training logic\n        \"\"\"\n        not_improved_count = 0\n        for epoch in range(self.start_epoch, self.epochs + 1):\n            result = self._train_epoch(epoch)\n\n            # save logged informations into log dict\n            log = {'epoch': epoch}\n            for key, value in result.items():\n                if key == 'metrics':\n                    log.update({mtr.__name__: value[i] for i, mtr in enumerate(self.metrics)})\n                elif key == 'val_metrics':\n                    log.update({'val_' + mtr.__name__: value[i] for i, mtr in enumerate(self.metrics)})\n                elif key == 'nested_val_metrics':\n                    # NOTE: currently only supports two layers of nesting\n                    for subkey, subval in value.items():\n                        for subsubkey, subsubval in subval.items():\n                            log[f\"val_{subkey}_{subsubkey}\"] = subsubval\n                else:\n                    log[key] = value\n\n            # print logged informations to the screen\n            for key, value in log.items():\n                self.logger.info('    {:15s}: {}'.format(str(key), value))\n\n            # evaluate model performance according to configured metric, save best checkpoint as model_best\n            best = False\n            if self.mnt_mode != 'off':\n                try:\n                    # check whether model performance improved or not, according to specified metric(mnt_metric)\n                    improved = (self.mnt_mode == 'min' and log[self.mnt_metric] <= self.mnt_best) or \\\n                               (self.mnt_mode == 'max' and log[self.mnt_metric] >= self.mnt_best)\n                except KeyError:\n                    self.logger.warning(\"Warning: Metric '{}' is not found. \"\n                                        \"Model performance monitoring is disabled.\".format(self.mnt_metric))\n                    self.mnt_mode = 'off'\n                    improved = False\n\n                if improved:\n                    self.mnt_best = log[self.mnt_metric]\n                    not_improved_count = 0\n                    best = True\n                else:\n                    not_improved_count += 1\n\n                if not_improved_count > self.early_stop:\n                    self.logger.info(\"Validation performance didn\\'t improve for {} epochs. \"\n                                     \"Training stops.\".format(self.early_stop))\n                    break\n\n            if epoch % self.save_period == 0:\n                self._save_checkpoint(epoch, save_best=best)\n\n    def _prepare_device(self, n_gpu_use):\n        \"\"\"\n        setup GPU device if available, move model into configured device\n        \"\"\"\n        #n_gpu = torch.cuda.device_count()\n        #if n_gpu_use > 0 and n_gpu == 0:\n        #    self.logger.warning(\"Warning: There\\'s no GPU available on this machine,\"\n        #                        \"training will be performed on CPU.\")\n        #    n_gpu_use = 0\n        #if n_gpu_use > n_gpu:\n        #    self.logger.warning(\"Warning: The number of GPU\\'s configured to use is {}, but only {} are available \"\n        #                        \"on this machine.\".format(n_gpu_use, n_gpu))\n        #    n_gpu_use = n_gpu\n        device = torch.device('cuda:0' if n_gpu_use > 0 else 'cpu')\n        list_ids = list(range(n_gpu_use))\n        return device, list_ids\n\n    def _save_checkpoint(self, epoch, save_best=False):\n        \"\"\"\n        Saving checkpoints\n\n        :param epoch: current epoch number\n        :param log: logging information of the epoch\n        :param save_best: if True, rename the saved checkpoint to 'model_best.pth'\n        \"\"\"\n        arch = type(self.model).__name__\n        state = {\n            'arch': arch,\n            'epoch': epoch,\n            'state_dict': self.model.state_dict(),\n            'optimizer': self.optimizer.state_dict(),\n            'monitor_best': self.mnt_best,\n            'config': self.config\n        }\n        filename = str(self.checkpoint_dir / 'checkpoint-epoch{}.pth'.format(epoch))\n        torch.save(state, filename)\n        self.logger.info(\"Saving checkpoint: {} ...\".format(filename))\n        if save_best:\n            best_path = str(self.checkpoint_dir / 'model_best.pth')\n            torch.save(state, best_path)\n            self.logger.info(\"Saving current best: model_best.pth ...\")\n\n    def _resume_checkpoint(self, resume_path):\n        \"\"\"\n        Resume from saved checkpoints\n\n        :param resume_path: Checkpoint path to be resumed\n        \"\"\"\n        resume_path = str(resume_path)\n        self.logger.info(\"Loading checkpoint: {} ...\".format(resume_path))\n        checkpoint = torch.load(resume_path)\n        self.start_epoch = checkpoint['epoch'] + 1\n        self.mnt_best = checkpoint['monitor_best']\n\n        # load architecture params from checkpoint.\n        if checkpoint['config']['arch'] != self.config['arch']:\n            self.logger.warning(\"Warning: Architecture configuration given in config file is different from that of \"\n                                \"checkpoint. This may yield an exception while state_dict is being loaded.\")\n        self.model.load_state_dict(checkpoint['state_dict'])\n\n        # load optimizer state from checkpoint only when optimizer type is not changed.\n        if checkpoint['config']['optimizer']['type'] != self.config['optimizer']['type']:\n            self.logger.warning(\"Warning: Optimizer type given in config file is different from that of checkpoint. \"\n                                \"Optimizer parameters not being resumed.\")\n        else:\n            self.optimizer.load_state_dict(checkpoint['optimizer'])\n\n        self.logger.info(\"Checkpoint loaded. Resume training from epoch {}\".format(self.start_epoch))\n"
  },
  {
    "path": "configs/moe.json",
    "content": "{\n    \"name\": \"MoEE\",\n    \"n_gpu\": 1,\n    \"arch\": {\n        \"type\": \"MoEE\",\n        \"args\": {\n            \"pretrained\": \"\",\n            \"projection_dim\": 512,\n            \"use_moe\": false,\n            \"aggregation_method\": {\n                \"label\": {\n                    \"type\": \"net_vlad\",\n                    \"cluster_size\": 10,\n                    \"ghost_clusters\": 0\n                },\n                \"description\": {\n                    \"type\": \"net_vlad\",\n                    \"cluster_size\": 10,\n                    \"ghost_clusters\": 0\n                },\n                \"face\": {\n                    \"type\": \"mean\"\n                },\n                \"speech\": {\n                    \"type\": \"mean\",\n                    \"cluster_size\": 0,\n                    \"ghost_clusters\": 0\n                }\n            }\n        }\n    },\n    \"data_loader\": {\n        \"type\": \"MovieClipsDataLoader\",\n        \"args\": {\n            \"data_dir\": \"data\",\n            \"metadata_dir\": \"data/metadata\",\n            \"batch_size\": 64,\n            \"shuffle\": true,\n            \"num_workers\": 4,\n            \"label\": \"description\",\n\n            \"experts_used\": {\n                \"characters\": false,\n                \"clip_name\": false,\n                \"description\": true,\n                \"face\": true,\n                \"rgb\": true,\n                \"scene\": true,\n                \"speech\": true,\n                \"video\": true,\n                \"s3d\": false\n            },\n            \"experts\": {\n              \"characters\": \"\",\n              \"clip_name\": \"BERT/bert-large-cased/clip_name/agg/agg.npy\",\n              \"context\": \"\",\n              \"description\": \"BERT/bert-large-cased/description/agg/agg_word.npy\",\n              \"face\": \"SE-ResNet-50/256D_vgg_face2/agg/agg_feats_mean.npy\",\n              \"plot\": \"BERT/bert-large-cased/plot/agg/agg.npy\",\n              \"rgb\": \"SE-ResNet-154/pred_imagenet_25fps_256px_stride1_offset0/agg/agg_feats_mean.npy\",\n              \"scene\": \"DenseNet-161/pred_scene_25fps_256px_stride1_offset0/agg/agg_feats_mean.npy\",\n              \"speech\": \"BERT/bert-large-cased/speech/agg/agg.npy\",\n              \"video\": \"I3D/pred_i3d_25fps_256px_stride25_offset0_inner_stride1/agg/agg_feats_mean.npy\",\n              \"s3d\": \"S3DG/pred_s3dg_10fps_256px_stride16_offset0_inner_stride1/agg/agg_feats_mean.npy\"\n            },\n            \"max_tokens\": {\n                \"description\": 20,\n                \"characters\": 10,\n                \"face\": 5,\n                \"plot\": 60,\n                \"speech\": 20\n            }\n        }\n    },\n    \"optimizer\": {\n        \"type\": \"Adam\",\n        \"args\":{\n            \"lr\": 0.001,\n            \"weight_decay\": 0,\n            \"amsgrad\": true\n        }\n    },\n    \"loss\": {\n        \"type\": \"MaxMarginRankingLoss\",\n        \"args\":{\n            \"margin\": 0.12132983763957966,\n            \"fix_norm\": true\n        }\n    },\n    \"metrics\": [\n        \"t2v_metrics\",\n        \"v2t_metrics\"\n    ],\n\n    \"lr_scheduler\": {\n        \"type\": \"StepLR\",\n        \"args\": {\n            \"step_size\": 50,\n            \"gamma\": 0.1\n        }\n    },\n    \"trainer\": {\n        \"epochs\": 100,\n        \"save_dir\": \"saved\",\n        \"save_period\": 1,\n        \"verbosity\": 2,\n        \"monitor\": \"min val_loss\",\n        \"early_stop\": 4,\n        \"tensorboard\": false,\n        \"retrieval\": \"inter\"\n    }\n}\n"
  },
  {
    "path": "data/metadata/casts.csv",
    "content": "imdbid,cast\r\ntt1707386,\"{'Hugh Jackman': 'Jean Valjean', 'Russell Crowe': 'Javert', 'Anne Hathaway': 'Fantine', 'Amanda Seyfried': 'Cosette', 'Sacha Baron Cohen': 'Thénardier', 'Helena Bonham Carter': 'Madame Thénardier', 'Eddie Redmayne': 'Marius', 'Aaron Tveit': 'Enjolras', 'Samantha Barks': 'Éponine', 'Daniel Huttlestone': 'Gavroche', 'Cavin Cornwall': 'Convict 1', 'Josef Altin': 'Convict 2', 'Dave Hawley': 'Convict 3       (as David Hawley)', 'Adam Jones': 'Convict 4', 'John Barr': 'Convict 5'}\"\r\ntt6398184,\"{'Michelle Dockery': 'Lady Mary Talbot', 'Imelda Staunton': 'Maud Bagshaw', 'Matthew Goode': 'Henry Talbot', 'Tuppence Middleton': 'Lucy Smith', 'Maggie Smith': 'Violet Crawley', 'Geraldine James': 'Queen Mary', 'Allen Leech': 'Tom Branson', 'Elizabeth McGovern': 'Cora Crawley', 'Joanne Froggatt': 'Anna Bates', 'Mark Addy': 'Mr. Bakewell', 'Kate Phillips': 'Princess Mary', 'Sophie McShera': 'Daisy Mason', 'Laura Carmichael': 'Lady Edith', 'Raquel Cassidy': 'Miss Baxter', 'Susan Lynch': 'Miss Lawton'}\"\r\ntt6324278,\"{'Chloe Bennet': 'Yi       (voice)', 'Albert Tsai': 'Peng       (voice)', 'Tenzing Norgay Trainor': 'Jin       (voice)', 'Joseph Izzo': 'Everest       (voice)', 'Eddie Izzard': 'Burnish       (voice)', 'Sarah Paulson': 'Dr. Zara       (voice)', 'Tsai Chin': 'Nai Nai       (voice)', 'Michelle Wong': \"\"Yi's Mom       (voice)\"\", 'Rich Dietl': 'Goon Leader       (voice) (as Rich B. Dietl)', 'James Hong': 'Yak Leader       (voice)', 'Christine Lin': \"\"Teenage Girl #1 /              Boy's Mom /              Female Customer       (voice)\"\", 'Kym Miller': 'Teenage Girl #2       (voice)', 'Jason Ko': 'Teenage Boy       (voice)', 'Trevor Devall': 'Van Driver /              Goon       (voice)', 'Karen Huie': 'Dog Lady /              Dock Worker /              Goon       (voice)'}\"\r\ntt0448115,\"{'Zachary Levi': 'Shazam', 'Mark Strong': 'Dr. Sivana', 'Asher Angel': 'Billy Batson', 'Jack Dylan Grazer': 'Freddy Freeman', 'Adam Brody': 'Super Hero Freddy', 'Djimon Hounsou': 'Wizard', 'Faithe Herman': 'Darla Dudley', 'Meagan Good': 'Super Hero Darla', 'Grace Fulton': 'Mary Bromfield', 'Michelle Borth': 'Super Hero Mary', 'Ian Chen': 'Eugene Choi', 'Ross Butler': 'Super Hero Eugene', 'Jovan Armand': 'Pedro Peña', 'D.J. Cotrona': 'Super Hero Pedro', 'Marta Milans': 'Rosa Vasquez'}\"\r\ntt6343314,\"{'Michael B. Jordan': 'Adonis Johnson', 'Sylvester Stallone': 'Rocky Balboa', 'Tessa Thompson': 'Bianca', 'Phylicia Rashad': 'Mary Anne Creed', 'Dolph Lundgren': 'Ivan Drago', 'Florian Munteanu': \"\"Viktor Drago       (as Florian 'Big Nasty' Munteanu)\"\", 'Russell Hornsby': 'Buddy Marcelle', 'Wood Harris': \"\"Tony 'Little Duke' Burton\"\", 'Milo Ventimiglia': 'Robert Balboa', 'Robbie Johns': 'Logan Balboa', 'Andre Ward': \"\"Danny 'Stuntman' Wheeler\"\", 'Brigitte Nielsen': 'Ludmilla Drago', 'Patrice Harris': \"\"Padman       (as Patrice 'Boogey' Harris)\"\", \"\"Jacob 'Stitch' Duran\"\": 'Stitch', 'Ana Gerena': \"\"Adrian's Waitress\"\"}\"\r\ntt5013056,\"{'Fionn Whitehead': 'Tommy', 'Damien Bonnard': 'French Soldier', 'Aneurin Barnard': 'Gibson', 'Lee Armstrong': 'Grenadier', 'James Bloor': 'Irate Soldier', 'Barry Keoghan': 'George', 'Mark Rylance': 'Mr. Dawson', 'Tom Glynn-Carney': 'Peter', 'Tom Hardy': 'Farrier', 'Jack Lowden': 'Collins', 'Luke Thompson': 'Warrant Officer', 'Michel Biel': 'French Soldier 2', 'Constantin Balsan': 'French Soldier 3', 'Billy Howle': 'Petty Officer', 'Mikey Collins': 'Soldier'}\"\r\ntt0109288,\"{'Damon Wayans': 'Darryl Walker', 'David Alan Grier': 'Kevin Walker', 'Robin Givens': 'Kimberly Jonz', 'Christopher Lawford': 'Mayor Marvin Harris', 'Lynne Thigpen': 'Grandma Walker', 'Jon Polito': \"\"Michael 'The Suit' Minelli\"\", 'Nick Corello': 'Sammy the Blade', 'Jason Alexander': 'Mr. Stone', 'Harris Peet': 'Commissioner Gains', 'Joseph Vassallo': 'Tony the Match       (as Joe Vassallo)', 'Michael Wayans': 'Young Darryl', 'Damon Wayans Jr.': 'Young Kevin', 'John Moschitta Jr.': 'Mr. Crudd', 'Frazer Smith': 'Ned Beadie', 'Mark Schiff': 'Bus Driver'}\"\r\ntt7343762,\"{'Jacob Tremblay': 'Max', 'Keith L. Williams': 'Lucas', 'Brady Noon': 'Thor', 'Molly Gordon': 'Hannah', 'Midori Francis': 'Lily', 'Izaac Wang': 'Soren', 'Millie Davis': 'Brixlee', 'Josh Caras': 'Benji', 'Will Forte': \"\"Max's Dad\"\", 'Mariessa Portelance': \"\"Max's Mom\"\", 'Lil Rel Howery': \"\"Lucas's Dad\"\", 'Retta': \"\"Lucas' Mom\"\", 'Michaela Watkins': 'Saleswoman', 'Christian Darrel Scott': 'Marcus       (as Christian Scott)', 'Macie Juiles': 'Taylor'}\"\r\ntt6095472,\"{'Jason Sudeikis': 'Red       (voice)', 'Josh Gad': 'Chuck       (voice)', 'Leslie Jones': 'Zeta       (voice)', 'Bill Hader': 'Leonard       (voice)', 'Rachel Bloom': 'Silver       (voice)', 'Awkwafina': 'Courtney       (voice)', 'Sterling K. Brown': 'Garry       (voice)', 'Eugenio Derbez': 'Glenn       (voice)', 'Tiffany Haddish': 'Debbie       (voice)', 'Danny McBride': 'Bomb       (voice)', 'Peter Dinklage': 'Mighty Eagle       (voice)', 'Pete Davidson': 'Jerry       (voice)', 'Zach Woods': 'Carl       (voice)', 'Dove Cameron': 'Ella       (voice)', 'Maya Rudolph': 'Matilda       (voice)'}\"\r\ntt2709692,\"{'Benedict Cumberbatch': 'The Grinch       (voice)', 'Cameron Seely': 'Cindy-Lou Who       (voice)', 'Rashida Jones': 'Donna Who       (voice)', 'Pharrell Williams': 'Narrator       (voice)', \"\"Tristan O'Hare\"\": 'Groopert       (voice)', 'Kenan Thompson': 'Mr. Bricklebaum       (voice)', 'Sam Lavagnino': 'Ozzy       (voice)', 'Ramone Hamilton': 'Axl       (voice)', 'Angela Lansbury': 'Mayor McGerkle       (voice)', 'Scarlett Estevez': 'Izzy       (voice)', 'Michael Beattie': 'Store Clerk       (voice)', 'Lori Alan': 'Additional Voices       (voice)', 'Carlos Alazraqui': 'Additional Voices       (voice)', 'Doug Burch': 'Additional Voices       (voice)', 'Cathy Cavadini': 'Additional Voices       (voice) (as Catherine Cavadini)'}\"\r\ntt5109784,\"{'Jennifer Lawrence': 'Mother', 'Javier Bardem': 'Him', 'Ed Harris': 'Man', 'Michelle Pfeiffer': 'Woman', 'Brian Gleeson': 'Younger Brother', 'Domhnall Gleeson': 'Oldest Son', 'Jovan Adepo': 'Cupbearer', 'Amanda Chiu': 'Damsel', 'Patricia Summersett': 'Consoler', 'Eric Davis': 'Bumbler', 'Raphael Grosz-Harvey': 'Philanderer', 'Emily Hampshire': 'Fool', 'Abraham Aronofsky': 'Wanderer', 'Luis Oliva': 'Idler', 'Stephanie Ng Wan': 'Whisperer'}\"\r\ntt0077288,\"{'Ugo Tognazzi': 'Renato Baldi', 'Michel Serrault': 'Albin Mougeotte dit Zaza Napoli', 'Claire Maurier': 'Simone Deblon', 'Rémi Laurent': 'Laurent Baldi', 'Carmen Scarpitta': 'Louise Charrier', 'Benny Luke': 'Jacob', 'Luisa Maneri': 'Andréa Charrier', 'Michel Galabru': 'Simon Charrier', 'Venantino Venantini': 'Le chauffeur de Charrier', 'Carlo Reali': 'Le videur', 'Guido Cerniglia': 'Le médecin', 'Angelo Pellegrino': 'Un assistant de la boîte de nuit', 'Liana Del Balzo': 'Mme Charrier'}\"\r\ntt0069995,\"{'Julie Christie': 'Laura Baxter', 'Donald Sutherland': 'John Baxter', 'Hilary Mason': 'Heather', 'Clelia Matania': 'Wendy', 'Massimo Serato': 'Bishop Barbarrigo', 'Renato Scarpa': 'Inspector Longhi', 'Giorgio Trestini': 'Workman', 'Leopoldo Trieste': 'Hotel Manager', 'David Tree': 'Anthony Babbage', 'Ann Rye': 'Mandy Babbage', 'Nicholas Salter': 'Johnny Baxter', 'Sharon Williams': 'Christine Baxter', 'Bruno Cattaneo': 'Detective Sabbione', 'Adelina Poerio': 'Dwarf'}\"\r\ntt0070666,\"{'Al Pacino': 'Serpico', 'John Randolph': 'Sidney Green', 'Jack Kehoe': 'Tom Keough', 'Biff McGuire': 'Captain McClain', 'Barbara Eda-Young': 'Laurie       (as Barbara eda-Young)', 'Cornelia Sharpe': 'Leslie', 'Tony Roberts': 'Bob Blair', 'John Medici': 'Pasquale', 'Allan Rich': 'D.A. Tauber', 'Norman Ornellas': 'Rubello', 'Edward Grover': 'Lombardo       (as Ed Grover)', 'Albert Henderson': 'Peluce       (as Al Henderson)', 'Hank Garrett': 'Malone', 'Damien Leake': 'Joey', 'Joseph Bova': 'Potts       (as Joe Bova)'}\"\r\ntt2561572,\"{'Will Ferrell': 'James', 'Kevin Hart': 'Darnell', 'Craig T. Nelson': 'Martin', 'Alison Brie': 'Alissa', 'Edwina Findley Dickerson': 'Rita       (as Edwina Findley)', 'Ariana Neal': 'Makayla', 'Erick Chavarria': 'Cecelio', 'T.I.': \"\"Russell       (as Tip 'T.I.' Harris)\"\", 'Paul Ben-Victor': 'Gayle', 'John Mayer': 'John Mayer', 'Jon Eyez': 'Big Mike', 'Nito Larioza': 'Jaoa', 'Dan Bakkedahl': 'Leo', 'Greg Germann': 'Peter Penny', 'Ron Funches': 'Jojo'}\"\r\ntt0408306,\"{'Eric Bana': 'Avner', 'Daniel Craig': 'Steve', 'Ciarán Hinds': 'Carl', 'Mathieu Kassovitz': 'Robert', 'Hanns Zischler': 'Hans', 'Ayelet Zurer': 'Daphna', 'Geoffrey Rush': 'Ephraim', 'Gila Almagor': \"\"Avner's Mother\"\", 'Michael Lonsdale': 'Papa', 'Mathieu Amalric': 'Louis', 'Moritz Bleibtreu': 'Andreas', 'Valeria Bruni Tedeschi': 'Sylvie       (as Valéria Bruni Tedeschi)', 'Meret Becker': 'Yvonne', 'Marie-Josée Croze': 'Jeanette the Dutch Assassin       (as Marie-Josee Croze)', 'Yvan Attal': \"\"Tony - Andreas' Friend\"\"}\"\r\ntt7547410,\"{'Benicio Del Toro': 'Swiper       (voice)', 'Madelyn Miranda': 'Dora (6 years)', 'Dee Bradley Baker': 'Animal Vocalizations       (voice)', 'Malachi Barton': 'Diego (6 years)', 'Sasha Toro': 'Backpack       (voice)', 'Marc Weiner': 'Map       (voice)', 'Eva Longoria': 'Elena', 'Michael Peña': 'Cole', 'Joey Vieira': 'Nico', 'Pia Miller': 'Sabrina', 'Isabela Merced': 'Dora       (as Isabela Moner)', 'Jeff Wahlberg': 'Diego', 'Adriana Barraza': 'Abuelita Valerie', 'Damien Garvey': 'Security Guard', 'Anikka Abelita': 'Vegan Student'}\"\r\ntt0071402,\"{'Charles Bronson': 'Paul Kersey', 'Hope Lange': 'Joanna Kersey', 'Vincent Gardenia': 'Frank Ochoa', 'Steven Keats': 'Jack Toby', 'William Redfield': 'Sam Kreutzer', 'Stuart Margolin': 'Aimes Jainchill', 'Stephen Elliott': 'Police Commissioner', 'Kathleen Tolan': 'Carol Toby', 'Jack Wallace': 'Hank', 'Fred J. Scollay': 'District Attorney       (as Fred Scollay)', 'Chris Gampel': 'Ives', 'Robert Kya-Hill': 'Joe Charles', 'Edward Grover': 'Lt. Briggs       (as Ed Grover)', 'Jeff Goldblum': 'Freak #1', 'Christopher Logan': 'Freak #2'}\"\r\ntt0116225,\"{'Kurt Russell': 'Snake Plissken', 'Steve Buscemi': 'Map to the Stars Eddie', 'Peter Fonda': 'Pipeline', 'Cliff Robertson': 'President', 'Valeria Golino': 'Taslima', 'Stacy Keach': 'Cmdr. Malloy', 'Pam Grier': 'Hershe Las Palmas', 'Bruce Campbell': 'Surgeon General of Beverly Hills', 'Georges Corraface': 'Cuervo Jones       (as George Corraface)', 'Michelle Forbes': 'Brazen', 'A.J. Langer': 'Utopia', 'Ina Romeo': 'Hooker', 'Peter Jason': 'Duty Sergeant', 'Jordan Baker': 'Police Anchor', 'Caroleen Feeney': 'Woman on Freeway'}\"\r\ntt0092493,\"{'Paul Hogan': \"\"Michael J. 'Crocodile' Dundee\"\", 'Linda Kozlowski': 'Sue Charlton', 'John Meillon': 'Walter Reilly', 'Ernie Dingo': 'Charlie', 'Steve Rackman': 'Donk', 'Gerry Skilton': 'Nugget', 'Gus Mercurio': 'Frank', 'Jim Holt': 'Erskine', 'Alec Wilson': 'Denning', 'Maggie Blinco': 'Ida', 'Bill Sandy': 'Teddy', 'Mark Saunders': 'Diamond', 'Betty Bobbitt': 'Meg (Tourist)', 'Jim Cooper': 'Dorrigo Brother', 'Sam Cooper': 'Dorrigo Brother'}\"\r\ntt0082782,\"{'Paul Kelman': 'T.J.', 'Lori Hallier': 'Sarah', 'Neil Affleck': 'Axel', 'Keith Knight': 'Hollis', 'Alf Humphreys': 'Howard', 'Cynthia Dale': 'Patty', 'Helene Udy': 'Sylvia', 'Rob Stein': 'John', 'Thomas Kovacs': 'Mike       (as Tom Kovacs)', 'Terry Waterland': 'Harriet', 'Carl Marotte': 'Dave', 'Jim Murchison': 'Tommy', 'Gina Dick': 'Gretchen', 'Peter Cowper': 'The Miner & Harry Warden', 'Don Francks': 'Chief Newby'}\"\r\ntt0070016,\"{'Debbie Reynolds': 'Charlotte       (voice)', 'Paul Lynde': 'Templeton       (voice)', 'Henry Gibson': 'Wilbur       (voice)', 'Rex Allen': 'Narrator       (voice)', 'Martha Scott': 'Mrs. Arable       (voice)', 'Dave Madden': 'Ram       (voice)', 'Danny Bonaduce': 'Avery Arable       (voice)', 'Don Messick': 'Jeffrey       (voice)', 'Herb Vigran': 'Lurvy       (voice)', 'Agnes Moorehead': 'The Goose       (voice)', 'Pamelyn Ferdin': 'Fern Arable       (voice) (as Pam Ferdin)', 'Joan Gerber': 'Edith Zuckerman /              Mrs. Fussy       (voice)', 'Bob Holt': 'Homer Zuckerman       (voice) (as Robert Holt)', 'John Stephenson': 'Mr. Arable /              Parking Officer       (voice)', 'William B. White': 'Henry Fussy       (voice)'}\"\r\ntt0073440,\"{'David Arkin': 'Norman', 'Barbara Baxley': 'Lady Pearl', 'Ned Beatty': 'Delbert Reese', 'Karen Black': 'Connie White', 'Ronee Blakley': 'Barbara Jean', 'Timothy Brown': 'Tommy Brown', 'Keith Carradine': 'Tom Frank', 'Geraldine Chaplin': 'Opal', 'Robert DoQui': 'Wade       (as Robert Doqui)', 'Shelley Duvall': 'L. A. Joan', 'Allen Garfield': 'Barnett', 'Henry Gibson': 'Haven Hamilton', 'Scott Glenn': 'Pfc. Glenn Kelly', 'Jeff Goldblum': 'Tricycle Man', 'Barbara Harris': 'Albuquerque'}\"\r\ntt5952594,\"{'Matthias Schoenaerts': 'Roman', 'Jason Mitchell': 'Henry', 'Bruce Dern': 'Myles', 'Gideon Adlon': 'Martha', 'Connie Britton': 'Psychologist', 'Josh Stewart': 'Dan', 'Thomas Smittle': 'Tom', 'Keith Johnson': 'Elijah', 'Noel Gugliemi': 'Roberto', 'James McFarland': 'Inmate at Anger Management', 'Sean Patrick Bridges': 'Photographer', 'George Schroeder': 'Officer Peters', 'Gregory Williams': 'Auctioneer', 'Joseph Bartlett': \"\"Guard at Roman's Cell\"\"}\"\r\ntt0118688,\"{'Arnold Schwarzenegger': 'Mr. Freeze /              Dr. Victor Fries', 'George Clooney': 'Batman /              Bruce Wayne', \"\"Chris O'Donnell\"\": 'Robin /              Dick Grayson', 'Uma Thurman': 'Poison Ivy /              Dr. Pamela Isley', 'Alicia Silverstone': 'Batgirl /              Barbara Wilson', 'Michael Gough': 'Alfred Pennyworth', 'Pat Hingle': 'Commissioner Gordon', 'John Glover': 'Doctor Jason Woodrue', 'Elle Macpherson': 'Julie Madison', 'Vivica A. Fox': 'Ms. B. Haven', 'Vendela Kirsebom': 'Nora Fries       (as Vendela K. Thommessen)', 'Elizabeth Sanders': 'Gossip Gerty', 'Jeep Swenson': 'Bane', 'John Fink': 'Aztec Museum Guard', 'Michael Reid MacKay': 'Antonio Diego /              Bane'}\"\r\ntt2599716,\"{'Jackie Chan': 'Zhong Wen', 'Ye Liu': 'Wu Jiang', 'Tian Jing': 'Miao Miao', 'Tao Yin': 'Lan Lan', 'Yiwei Liu': 'General Manager Niu', 'Wei Na': 'Na Na', 'Xiaoou Zhou': \"\"Wei Xiao Fu       (as Zhou Xiao'ou)\"\", 'Rongguang Yu': 'Captain Wu', 'Peiqi Liu': 'Chief Zhang', 'Hailong Liu': 'Pi Song       (as Liu Hailong)', 'Zha Ka': 'Bin Ge', 'Lu Cai': 'A Kun', 'Hai Fu': 'Tao Zi', 'Yizheng Zou': 'Worker', 'Chenjie Tong': 'Zhu Nan       (as Tong Chenjie)'}\"\r\ntt8079248,\"{'Himesh Patel': 'Jack Malik', 'Lily James': 'Ellie Appleton', 'Sophia Di Martino': 'Carol', 'Ellise Chappell': 'Lucy', 'Meera Syal': 'Sheila Malik', 'Harry Michell': 'Nick', 'Vincent Franklin': 'Brian', 'Joel Fry': 'Rocky', 'Michael Kiwanuka': 'Michael Kiwanuka', 'Karma Sood': 'Young Jack', 'Gus Brown': 'Marcus The Dentist', 'Sanjeev Bhaskar': 'Jed Malik', 'Karl Theobald': 'Terry', 'Alexander Arnold': 'Gavin', 'Dominic Coleman': 'Ipswich TV Host'}\"\r\ntt4532826,\"{'Taron Egerton': 'Robin of Loxley', 'Jamie Foxx': 'Yahya /              John', 'Ben Mendelsohn': 'Sheriff of Nottingham', 'Eve Hewson': 'Marian', 'Jamie Dornan': 'Will Tillman', 'Tim Minchin': 'Friar Tuck', 'Paul Anderson': 'Guy of Gisbourne', 'F. Murray Abraham': 'Cardinal', 'Ian Peck': 'Arch Deacon', 'Cornelius Booth': 'Lord Pembroke', 'Kane Headley-Cummings': 'Stoker', 'Scot Greenan': 'Clayton', 'Lara Rossi': 'Evelyn', 'Kevin Griffiths': 'Tom', 'Catriona Temple': 'Penny'}\"\r\ntt5164214,\"{'Sandra Bullock': 'Debbie Ocean', 'Griffin Dunne': 'Parole Board Officer', 'Deidre Goodwin': 'Prison Guard', 'Daniella Rabbani': 'Bergdorf Salesperson', 'Brian J. Carter': 'Mr. Randall', 'Gemma Forbes': 'Mrs. Randall', 'Katherine Hozier-Adams': 'Plaza Hotel Front Desk Clerk', 'Freddy J. Davila': 'Plaza Hotel Doorman', 'Francesca Calo': 'Plaza Hotel Maid', 'Cate Blanchett': 'Lou', 'Midori Francis': 'April', 'Elliott Gould': 'Reuben', 'Richard Armitage': 'Claude Becker', 'Charlotte Kirk': 'Cara', 'Anne Hathaway': 'Daphne Kluger'}\"\r\ntt0058672,\"{'Melina Mercouri': 'Elizabeth Lipp', 'Peter Ustinov': 'Arthur Simon Simpson', 'Maximilian Schell': 'Walter Harper', 'Robert Morley': 'Cedric Page', 'Jess Hahn': 'Hans Fisher', 'Gilles Ségal': 'Giulio the Human Fly', 'Akim Tamiroff': 'Gerven - the Cook', 'Titos Vandis': 'Harback       (as Titos Wandis)', 'Ege Ernart': 'Maj. Ali Tufan', 'Senih Orkan': 'First Shadow', 'Ahmet Danyal Topatan': 'Second Shadow', 'Joe Dassin': 'Josef       (as Joseph Dassin)', 'Despo Diamantidou': 'Voula'}\"\r\ntt2495118,\"{'Anthony Chau-Sang Wong': 'Yip Man', 'Gillian Chung': 'Chan Sei-mui', 'Jordan Chan': 'Tang Shing', 'Eric Tsang': 'Ng Chung', 'Marvel Chow': 'Wang Dong', 'Chuchu Zhou': 'Jenny       (as Zhou Chuchu)', 'Timmy Hung': 'Leung Sheung', 'Luxia Jiang': 'Le King', 'Xin Xin Xiong': 'Local Dragon', 'Chun Ip': 'Stall owner with phone', 'Anita Yuen': 'Cheung Wing-Sing', 'Kai Chi Liu': 'Lee Yiu-wah', 'Cho-Lam Wong': 'Blind Chan', 'Jonathan Wong Chee Hynn': 'Ngai Tong       (as Jonathan Wong)', 'Leo Au-Yeung': 'Fat Choi'}\"\r\ntt7634968,\"{'Taraji P. Henson': 'Ali Davis', 'Kristen Ledlow': 'Kristen Ledlow', 'Josh Brener': 'Brandon Wallace', 'Kellan Lutz': 'Captain Fucktastic', 'Jason Jones': 'Ethan Fowler', 'Justin Alvarez': 'Valet Guy       (as Mathias Alvarez)', 'Chris Witaske': 'Eddie', 'Max Greenfield': 'Kevin Myrtle', 'Paul Brian Johnson': 'Scott       (as Paul B. Johnson)', 'Brian Bosworth': 'Nick Ivers', 'Kausar Mohammed': 'Jenna Abbiddi', 'Richard Roundtree': 'Skip Davis', 'Taj-Naranja Jenkines': 'Tough Boxer', 'Aldis Hodge': 'Will', 'Auston Jon Moore': 'Ben       (as Auston Moore)'}\"\r\ntt7634968,\"{'Taraji P. Henson': 'Ali Davis', 'Kristen Ledlow': 'Kristen Ledlow', 'Josh Brener': 'Brandon Wallace', 'Kellan Lutz': 'Captain Fucktastic', 'Jason Jones': 'Ethan Fowler', 'Justin Alvarez': 'Valet Guy       (as Mathias Alvarez)', 'Chris Witaske': 'Eddie', 'Max Greenfield': 'Kevin Myrtle', 'Paul Brian Johnson': 'Scott       (as Paul B. Johnson)', 'Brian Bosworth': 'Nick Ivers', 'Kausar Mohammed': 'Jenna Abbiddi', 'Richard Roundtree': 'Skip Davis', 'Taj-Naranja Jenkines': 'Tough Boxer', 'Aldis Hodge': 'Will', 'Auston Jon Moore': 'Ben       (as Auston Moore)'}\"\r\ntt6017942,\"{'Myles Truitt': 'Eli Solinski', 'Jack Reynor': 'Jimmy Solinski', 'Dennis Quaid': 'Hal Solinski', 'Zoë Kravitz': 'Milly', 'James Franco': 'Taylor Balik', 'Carrie Coon': 'Morgan Hunter', 'Ian Matthews': 'Snick', 'Gavin Fox': 'Dutch Balik', 'Stephane Garneau-Monten': 'Remy', 'Lukas Penar': 'Big Man', 'Carleigh Beverly': 'Audrey', 'Lily Gao': 'Female Cleaner', 'Michael B. Jordan': 'Male Cleaner       (as Michael B Jordan)', 'Milton Barnes': 'Guidance Counselor', 'Michael Grisley': 'School Bully'}\"\r\ntt0046754,\"{'Humphrey Bogart': 'Harry Dawes', 'Ava Gardner': 'Maria Vargas', \"\"Edmond O'Brien\"\": 'Oscar Muldoon', 'Marius Goring': 'Alberto Bravano', 'Valentina Cortese': 'Eleanora Torlato-Favrini       (as Valentina Cortesa)', 'Rossano Brazzi': 'Count Vincenzo Torlato-Favrini', 'Elizabeth Sellars': 'Jerry', 'Warren Stevens': 'Kirk Edwards', 'Franco Interlenghi': 'Pedro Vargas', 'Mari Aldon': 'Myrna', 'Alberto Rabagliati': 'Proprietor', 'Enzo Staiola': 'Busboy', 'Maria Zanoli': \"\"Maria's Mother\"\", 'Renato Chiantoni': \"\"Maria's Father\"\", 'Bill Fraser': 'J. Montague Brown'}\"\r\ntt1001526,\"{'Will Ferrell': 'Megamind       (voice)', 'Brad Pitt': 'Metro Man       (voice)', 'Tina Fey': 'Roxanne Ritchie       (voice)', 'Jonah Hill': 'Tighten       (voice)', 'David Cross': 'Minion       (voice)', 'Ben Stiller': 'Bernard       (voice)', 'Justin Theroux': \"\"Megamind's Father       (voice)\"\", 'Jessica Schulte': \"\"Megamind's Mother       (voice)\"\", 'Tom McGrath': 'Lord Scott /              Prison Guard       (voice)', 'Emily Nordwind': 'Lady Scott       (voice)', 'J.K. Simmons': 'Warden       (voice)', 'Ella Olivia Stiller': 'Schoolchild       (voice)', 'Quinn Dempsey Stiller': 'Schoolchild       (voice)', 'Brian Hopkins': 'Prisoner       (voice)', 'Christopher Knights': 'Prison Guard       (voice)'}\"\r\ntt2888046,\"{'Donnie Yen': 'Ip Man', 'Lynn Xiong': 'Cheung Wing-sing       (as Lynn Hung)', 'Jin Zhang': 'Cheung Tin-chi       (as Max Zhang)', 'Mike Tyson': 'Frank', 'Patrick Tam': 'Ma King-Sang', 'Karena Ng': 'Miss Wong', 'Kai-Chung Cheung': 'Chui Lek', 'Kent Cheng': 'Fatso', 'Ka-Yan Leung': 'Master Tin', 'Danny Chan Kwok-Kwan': 'Bruce Lee       (as Kwok-Kwan Chan)', 'Babyjohn Choi': 'Editor Lee', 'Sung Man Ban': 'David', 'Xiao Long Li': 'Ah Ching', 'Ling Lei': \"\"Ip Man's Student #1\"\", 'Tats Lau': 'Principal'}\"\r\ntt1860353,\"{'Ryan Reynolds': 'Turbo       (voice)', 'Paul Giamatti': 'Chet       (voice)', 'Michael Peña': 'Tito       (voice)', 'Samuel L. Jackson': 'Whiplash       (voice)', 'Luis Guzmán': 'Angelo       (voice)', 'Bill Hader': 'Guy Gagné       (voice)', 'Snoop Dogg': 'Smoove Move       (voice)', 'Maya Rudolph': 'Burn       (voice)', 'Ben Schwartz': 'Skidmark       (voice)', 'Richard Jenkins': 'Bobby       (voice)', 'Ken Jeong': 'Kim Ly       (voice)', 'Michelle Rodriguez': 'Paz       (voice)', 'Mario Andretti': 'Dos Bros Customer /              Race Official       (voice)', 'Mike Bell': 'White Shadow       (voice) (as Michael Patrick Bell)', 'Aidan Andrews': 'Bike Boy       (voice)'}\"\r\ntt1386932,\"{'Donnie Yen': 'Ip Man', 'Xiaoming Huang': 'Wong Shun-Leung', 'Sammo Kam-Bo Hung': 'Master Hung Chun-Nam', 'Lynn Xiong': 'Cheung Wing-Sing       (as Lynn Hung)', 'Kent Cheng': 'Fatso', 'Darren Shahlavi': 'Mr. Miller /              Twister', 'Yu-Hang To': 'Cheng Wai-Kei', 'Charles Mayer': 'Superintendent Wallace', 'Ka-nin Ngo': 'Leung Kan', 'Calvin Ka-Sing Cheng': 'Chow Kong-Yiu', 'Siu-Wong Fan': 'Jin Shan Zhao /              Kam Shan-Chau', 'Simon Yam': 'Chow Ching-Chuen', \"\"Christian 'Kang' Bachini\"\": 'Twister Supporter       (as Christian Bachini)', 'Brian Thomas Burrell': 'Emcee', 'Li Chak': 'Yip Chun       (as Li Ze)'}\"\r\ntt0097388,\"{'Todd Caldecott': 'Jim Miller       (as Todd Shaffer)', 'Tiffany Paulsen': 'Suzi Donaldson', 'Tim Mirkovich': 'Young Jason Voorhees       (as Timothy Burr Mirkovich)', 'Kane Hodder': 'Jason Voorhees', 'Jensen Daggett': 'Rennie Wickham', 'Barbara Bingham': 'Colleen Van Deusen', 'Alex Diakun': 'Deck Hand', 'Peter Mark Richman': 'Charles McCulloch', 'Ace': 'Toby', 'Warren Munson': 'Admiral Robertson', 'Fred Henderson': 'Chief Engineer Jim Carlson', 'Scott Reeves': 'Sean Robertson', 'Gordon Currie': 'Miles Wolfe', 'Saffron Henderson': 'J.J. Jarrett', 'Martin Cummins': 'Wayne Webber'}\"\r\ntt1220719,\"{'Donnie Yen': 'Ip Man', 'Simon Yam': 'Quan', 'Lynn Xiong': 'Cheung       (as Xiong Dai Lin)', 'Hiroyuki Ikeuchi': 'Miura', 'Ka Tung Lam': 'Li       (as Lam Ka Tung)', 'Siu-Wong Fan': 'Jin       (as Fan Sui Wong)', 'Xing Yu': 'Lin', 'You-Nam Wong': 'Yuan       (as Wong You Nam)', 'Yu-Hang To': 'Wei       (as To Yue Hong)', 'Calvin Ka-Sing Cheng': 'Yao       (as Calvin Cheng)', 'Zhi-Hui Chen': 'Master Liu       (as Chen Zhi Hui)', 'Tenma Shibuya': 'Sato       (as Shibuya Tenma)', 'Li Chak': 'Zhun       (as Li Ze)', 'Deqiang Shi': 'Southern Master', 'Zhong Zhou': 'Southern Master'}\"\r\ntt8695030,\"{'Bill Murray': 'Chief Cliff Robertson', 'Adam Driver': 'Officer Ronnie Peterson', 'Tom Waits': 'Hermit Bob', 'Chloë Sevigny': 'Officer Mindy Morrison', 'Steve Buscemi': 'Farmer Frank Miller', 'Eszter Balint': 'Fern', 'Danny Glover': 'Hank Thompson', 'Maya Delmont': 'Stella', 'Taliyah Whitaker': 'Olivia', \"\"Jahi Di'Allo Winston\"\": 'Geronimo       (as Jahi Winston)', 'Kevin McCormick': 'Guard One', \"\"Sid O'Connell\"\": 'Guard Two', 'Caleb Landry Jones': 'Bobby Wiggins', 'RZA': 'Dean', 'Larry Fessenden': 'Danny Perkins'}\"\r\ntt0045920,\"{'Richard Carlson': 'John Putnam', 'Barbara Rush': 'Ellen Fields', 'Charles Drake': 'Sheriff Matt Warren', 'Joe Sawyer': 'Frank Daylon', 'Russell Johnson': 'George', 'Kathleen Hughes': 'Jane'}\"\r\ntt7958736,\"{'Octavia Spencer': 'Sue Ann', 'Diana Silvers': 'Maggie', 'Juliette Lewis': 'Erica', 'McKaley Miller': 'Haley', 'Corey Fogelmanis': 'Andy', 'Gianni Paolo': 'Chaz', 'Dante Brown': 'Darrell', 'Tanyell Waivers': 'Genie', 'Dominic Burgess': 'Stu', 'Heather Marie Pate': 'Ashley', 'Tate Taylor': 'Officer Grainger', 'Luke Evans': 'Ben', 'Margaret Fegan': 'Stephanie', 'Missi Pyle': 'Mercedes', 'Allison Janney': 'Doctor Brooks'}\"\r\ntt2639336,\"{'Isabelle Huppert': 'Greta Hideg', 'Chloë Grace Moretz': 'Frances McCullen', 'Maika Monroe': 'Erica Penn', 'Jane Perry': 'Animal Shelter Worker', 'Jeff Hiller': \"\"Maitre D' Henri\"\", 'Parker Sawyers': 'Park Hill Manager', 'Brandon Lee Sears': 'Flower Delivery Man', 'Arthur Lee': 'Korean Couple', 'Rosa Escoda': 'Korean Couple', 'Jessica Preddy': 'Park Hill Bartender', 'Thaddeus Daniels': 'Officer Deroy', 'Raven Dauda': 'Officer Regan', 'Colm Feore': 'Chris McCullen', 'Zawe Ashton': 'Alexa Hammond', 'Nagisa Morimoto': 'Park Hill Waitress'}\"\r\ntt0068909,\"{\"\"Peter O'Toole\"\": 'Don Quixote De La Mancha /              Miguel Cervantes /              Alonso Quijana', 'Sophia Loren': 'Dulcinea /              Aldonza', 'James Coco': 'Sancho Panza', 'Harry Andrews': 'The Innkeeper /              The Governor', 'John Castle': 'Sanson Carrasco /              The Duke', 'Brian Blessed': 'Pedro', 'Ian Richardson': 'The Padre', 'Julie Gregg': 'Antonia', 'Rosalie Crutchley': 'The Housekeeper', 'Gino Conforti': 'The Barber', 'Marne Maitland': 'Captain of the Guard', 'Dorothy Sinclair': \"\"The Innkeeper's Wife\"\", 'Miriam Acevedo': 'Fermina', 'Dominic Barto': 'Muleteer       (as Dominic Bartó)', 'Poldo Bendandi': 'Muleteer'}\"\r\ntt10720210,\"{'Buzz Bissinger': 'Himself', 'Caitlyn Jenner': 'Herself', \"\"James 'Boobie' Miles\"\": 'Himself', 'Lisa Smith': 'Herself'}\"\r\ntt6212136,\"{'Andie MacDowell': 'Joanne Winters', 'Avan Jogia': 'Dan Delaney', 'Eve Hewson': 'Franny Winters', 'Hamish Linklater': 'Noah Bearinger', 'Evan Stern': 'Young PA', 'Andrew Markowiak': 'Geoff', 'Daniela Barbosa': 'Hailey Turner', 'Amanda Barker': 'Esme', 'Katy Breier': 'Maia', 'Craig Brown': 'Warm-Up Comic', 'Christine Ebadi': 'Game Show Contestant', 'Grace Glowicki': 'Cheyenne', 'Brooks Gray': 'Gavin St. Onge', 'Justin Landry': 'Assistant Director', 'Rishma Malik': 'Pearl'}\"\r\ntt7334528,\"{'Kyrie Irving': 'Uncle Drew', 'Lil Rel Howery': 'Dax', \"\"Shaquille O'Neal\"\": 'Big Fella', 'Chris Webber': 'Preacher', 'Reggie Miller': 'Lights', 'Nate Robinson': 'Boots', 'Lisa Leslie': 'Betty Lou', 'Erica Ash': 'Maya', 'Tiffany Haddish': 'Jess', 'Nick Kroll': 'Mookie', 'Aaron Gordon': 'Casper', 'Mike Epps': 'Louis', 'J.B. Smoove': 'Angelo', 'Wesley Witherspoon': 'Mario', 'Thomas Mills': 'Duke Tango'}\"\r\ntt8426112,{'Rick Jay Glen': 'McBroom /              Sgt. Rusty       (voice)'}\r\ntt6806448,\"{'Dwayne Johnson': 'Hobbs', 'Jason Statham': 'Shaw', 'Idris Elba': 'Brixton', 'Vanessa Kirby': 'Hattie', 'Helen Mirren': 'Queenie', 'Eiza González': 'Madame M       (as Eiza Gonzalez)', 'Eddie Marsan': 'Professor Andreiko', 'Eliana Sua': \"\"Sam       (as Eliana Su'a)\"\", 'Cliff Curtis': 'Jonah', 'Lori Pelenise Tuisano': 'Sefina', 'John Tui': 'Kal', 'Joshua Mauga': 'Timo', \"\"Joe Anoa'i\"\": \"\"Mateo       (as Joe 'Roman Reigns' Anoai)\"\", 'Rob Delaney': 'Agent Loeb', 'Alex King': 'Lt. Grapefruit'}\"\r\ntt8426846,\"{'Rick Jay Glen': 'McBroom /              Sgt. Rusty       (voice)', 'Siobhan Lumsden': 'Bartle Bee       (voice)', \"\"Paul 'Maxx' Rinehart\"\": 'Joe Croaker       (voice)', 'Justin J. Wheeler': 'Cosmo       (voice)'}\"\r\ntt0092605,\"{'Diane Keaton': 'J.C. Wiatt', 'Sam Shepard': 'Dr. Jeff Cooper', 'Harold Ramis': 'Steven Buchner', 'Kristina Kennedy': 'Elizabeth Wiatt', 'Michelle Kennedy': 'Elizabeth Wiatt', 'Sam Wanamaker': 'Fritz Curtis', 'James Spader': 'Ken Arrenberg', 'Pat Hingle': 'Hughes Larrabee', 'Britt Leach': 'Verne Boone', 'Linda Ellerbee': 'Narrator', 'Kim Sebastian': 'Robin', 'Mary Gross': 'Charlotte Elkman', 'Patricia Estrin': 'Secretary', 'Elizabeth Bennett': 'Mrs. Atwood', 'Peter Elbling': \"\"Maitre D'\"\"}\"\r\ntt7207158,{'Rick Jay Glen': 'McBroom /              Sgt. Rusty       (voice)'}\r\ntt2872518,\"{'Sam Worthington': 'Mack Phillips', 'Octavia Spencer': 'Papa', 'Tim McGraw': 'Willie', 'Radha Mitchell': 'Nan Phillips', 'Megan Charpentier': 'Kate Phillips', 'Gage Munroe': 'Josh Phillips', 'Amélie Eve': 'Missy Phillips       (as Amelie Eve)', 'Avraham Aviv Alush': 'Jesus', 'Sumire': 'Sarayu', 'Alice Braga': 'Sophia', 'Graham Greene': 'Male Papa', 'Ryan Robbins': 'Emil Ducette', 'Jordyn Ashley Olson': 'Emily Ducette', 'Laura MacKillop': 'Amber Ducette', 'Emily Holmes': 'Vicki Ducette'}\"\r\ntt0095179,\"{'Jennifer Banko': 'Young Tina Shepard', 'John Otrin': 'Mr. John Shepard', 'Susan Blu': 'Mrs. Amanda Shepard', 'Lar Park-Lincoln': 'Tina Shepard', 'Terry Kiser': 'Dr. Crews', 'Kevin Spirtas': 'Nick       (as Kevin Blair)', 'Susan Jennifer Sullivan': 'Melissa', 'Heidi Kozak Haddad': 'Sandra       (as Heidi Kozak)', 'Kane Hodder': 'Jason Voorhees', 'William Butler': 'Michael', 'Staci Greason': 'Jane', 'Larry Cox': 'Russell', 'Jeff Bennett': 'Eddie', 'Diana Barrows': 'Maddy', 'Elizabeth Kaitan': 'Robin'}\"\r\ntt2992146,\"{'Carina Lau': 'Wu Zetian', 'Chien Sheng': 'The Emperor       (as Sheng Chien)', 'Mark Chao': 'Dee Renjie', 'Angelababy': 'Yin Ruiji', 'Shaofeng Feng': 'Yuchi Zhenjin', 'Kenny Lin': 'Shatuo Zhong       (as Gengxin Lin)', 'Bum Kim': 'Yuan Zhen       (as Ian Kim)', 'Dong Hu': 'Huo Yi', 'Kun Chen': 'Doctor Wang Pu       (as Chen Kun)', 'Shan Zhang': 'Chusui Liang       (as Zhang Shan)', 'Guoyi Chen': 'Admiral       (as Chen Guoyi)', 'Nan Tie': 'Bo Qianzhang       (as Tie Nan)', 'Jie Yan': 'Kuang Zhao       (as Yan Jie)', 'Yachao Wang': 'Zhou Qian       (as Wang Yachao)', 'Jingjing Ma': 'Touba Lie       (as Ma Jingjing)'}\"\r\ntt1563742,\"{'Eugenio Derbez': 'Leonardo Montenegro', 'Anna Faris': 'Kate Sullivan', 'Eva Longoria': 'Theresa', 'John Hannah': 'Colin', 'Swoosie Kurtz': 'Grace', 'Mel Rodriguez': 'Bobby', 'Josh Segarra': 'Jason', 'Hannah Nordberg': 'Emily Sullivan', 'Alyvia Alyn Lind': 'Olivia Sullivan', 'Payton Lepinski': 'Molly Sullivan', 'Fernando Luján': 'Papi', 'Cecilia Suárez': 'Magdalena', 'Mariana Treviño': 'Sofia', 'Jesús Ochoa': 'Vito', 'Omar Chaparro': 'Burro'}\"\r\ntt4795124,\"{'Eugenio Derbez': 'Maximo', 'Salma Hayek': 'Sara', 'Raphael Alejandro': 'Hugo', 'Rob Lowe': 'Rick', 'Kristen Bell': 'Cindy', 'Mckenna Grace': 'Arden', 'Raquel Welch': 'Celeste', 'Linda Lavin': 'Millicent', 'Renée Taylor': 'Peggy', 'Rob Corddry': 'Quincy', 'Rob Riggle': 'Scott', 'Rob Huebel': 'Nick', 'Michael Cera': 'Remy', 'Mather Zickel': 'James', 'Vadhir Derbez': 'Maximo (Age 21)'}\"\r\ntt6663582,\"{'Justin Theroux': 'Drew', 'Blanka Györfi-Tóth': 'Little Girl', 'Vilma Szécsi': 'Vendor', 'Mila Kunis': 'Audrey', 'Kate McKinnon': 'Morgan', 'Lolly Adefope': 'Tess', 'Dustin Demri-Burns': 'Viktor', 'David Iserson': 'Friend in the Bar', 'Sam Heughan': 'Sebastian', 'Hasan Minhaj': 'Duffer', 'Peter Schueller': 'TSA Agent', 'Mirjam Novak': 'Verne', 'Ágnes Bánfalvy': 'Jaguar Woman', 'László Áron': 'Jaguar Man', 'Kev Adams': 'Bitteauto Driver Lukas'}\"\r\ntt5186608,\"{'Ik Jo Kang': 'Master Kang', 'Mike Faist': 'Ben', 'Ellie Lee': 'Adrienne', 'Jack DiFalco': 'Dorian', 'Soraya Butler': 'Counselor', 'Kyliegh Curran': 'Lily', 'Cornelius Davidson': 'Ezekiel', 'Kim Fischer': 'Braxton', 'Mark C. Fullhardt': 'Physical Therapist Patient', 'Ryan-James Hatanaka': 'Tom', 'Joe Krieg': 'Jr', 'Geraldine Leer': 'Woman', 'Selenis Leyva': 'Maria', 'Thea McCartan': 'Doctor', 'Erik Ramos': 'Nurse Eric'}\"\r\ntt0091080,\"{'Thom Mathews': 'Tommy', 'Jennifer Cooke': 'Megan', 'David Kagen': 'Sheriff Garris', 'Kerry Noonan': 'Paula', 'Renée Jones': 'Sissy       (as Renee Jones)', 'Tom Fridley': 'Cort', 'C.J. Graham': 'Jason', 'Darcy DeMoss': 'Nikki', 'Vincent Guastaferro': 'Deputy Rick Cologne', 'Tony Goldwyn': 'Darren', 'Nancy McLoughlin': 'Lizbeth', 'Ron Palillo': 'Allen Hawes', 'Alan Blumenfeld': 'Larry', 'Matthew Faison': 'Stan', 'Ann Ryerson': 'Katie'}\"\r\ntt9251598,{'Tina Shuster': 'Captain Stella'}\r\ntt0332375,\"{'Jena Malone': 'Mary', 'Mandy Moore': 'Hilary Faye', 'Macaulay Culkin': 'Roland', 'Patrick Fugit': 'Patrick', 'Heather Matarazzo': 'Tia', 'Eva Amurri Martino': 'Cassandra       (as Eva Amurri)', 'Chad Faust': 'Dean', 'Elizabeth Thai': 'Veronica', 'Martin Donovan': 'Pastor Skip', 'Mary-Louise Parker': 'Lillian', 'Kett Turton': 'Mitch', 'Julia Arkos': 'PE Coach', 'Donna White': 'Trudy Mason', 'James Caldwell': 'Hairdresser', 'Nicki Clyne': 'Guitar Player'}\"\r\ntt3887158,\"{'Ori Pfeffer': 'Salim       (voice)', 'Hana Laslo': 'Nanny /              Arub       (voice)', \"\"Eden Har'el\"\": \"\"Na'ama       (voice)\"\", 'Ori Laizerouvich': 'Tobby       (voice)', 'Nitzan Sitzer': 'Hadad       (voice)', 'Albert Cohen': 'Shamir       (voice)', 'Oded Menashe': 'Shlomo       (voice)'}\"\r\ntt1846589,\"{'Ethan Baird': 'Sonar 3', 'Jacob Scipio': 'Sonar 2', 'Dempsey Bovell': 'Sonar 1', 'Corey Johnson': 'Captain', 'Adam James': 'Captain Forbes', 'Common': 'RA John Fisk', 'Henry Goodman': 'Senator from Illinois', 'Colin Stinton': 'Senator from Iowa', 'Gary Oldman': 'CJCS Charles Donnegan', 'Gerard Butler': 'Captain Joe Glass', 'Carter MacIntyre': 'XO Brian Edwards', 'Shane Taylor': 'TMC Turner', 'Kola Bokinni': 'McCaw', 'Mikey Collins': 'Brickowski', 'Will Attenborough': 'Kaplan'}\"\r\ntt7401588,\"{'Mark Wahlberg': 'Pete', 'Rose Byrne': 'Ellie', 'Isabela Merced': 'Lizzy       (as Isabela Moner)', 'Gustavo Escobar': 'Juan       (as Gustavo Quiroz)', 'Julianna Gamiz': 'Lita', 'Octavia Spencer': 'Karen', 'Tig Notaro': 'Sharon', 'Tom Segura': 'Russ', 'Allyn Rachel': 'Kim', 'Britt Rentschler': 'Linda       (as Brittney Rentschler)', 'Jody Thompson': 'Jim', 'Margo Martindale': 'Grandma Sandy', 'Julie Hagerty': 'Jan', \"\"Michael O'Keefe\"\": 'Jerry', 'Joan Cusack': 'Mrs. Howard'}\"\r\ntt4530422,\"{'Jovan Adepo': 'Boyce', 'Wyatt Russell': 'Ford', 'Mathilde Ollivier': 'Chloe', 'Pilou Asbæk': 'Wafner', 'John Magaro': 'Tibbet', 'Iain De Caestecker': 'Chase', 'Jacob Anderson': 'Dawson', 'Dominic Applewhite': 'Rosenfeld', 'Gianny Taufer': 'Paul', 'Joseph Quinn': 'Grunauer', 'Bokeem Woodbine': 'Rensin', 'Erich Redman': 'Dr. Schmidt', 'Mark McKenna': 'Murphy', 'Hayley Carmichael': 'Mrs. Lesner', 'Marc Rissmann': 'Scherzer'}\"\r\ntt0104573,\"{'Omar Epps': 'Q', 'Tupac Shakur': 'Bishop', \"\"Jermaine 'Huggy' Hopkins\"\": 'Steel       (as Jermaine Hopkins)', 'Khalil Kain': 'Raheem', 'Cindy Herron': 'Yolanda', 'Vincent Laresca': 'Radames', 'Samuel L. Jackson': 'Trip', 'George Gore II': 'Brian       (as George O. Gore)', 'Grace Garland': \"\"Q's Mother\"\", 'Queen Latifah': 'Ruffhouse M.C.', 'Bruklin Harris': 'Keesha       (as Idina Harris)', 'Victor Campos': 'Quiles', 'Eric Payne': 'Frank', 'Sharon Cook': 'Record Store Clerk', 'Darien Berry': 'Blizzard'}\"\r\ntt0087298,\"{'Judie Aronson': 'Samantha', 'Peter Barton': 'Doug', 'Erich Anderson': 'Rob       (as E. Erich Anderson)', 'Kimberly Beck': 'Trish', 'Tom Everett': 'Flashlight Man', 'Crispin Glover': 'Jimmy Mortimer', 'Corey Feldman': 'Tommy', 'Joan Freeman': 'Mrs. Jarvis', 'Lisa Freeman': 'Nurse Morgan', 'Thad Geer': 'Running Man', 'Wayne Grace': 'Officer Jamison', 'Clyde Hayes': 'Paul       (as Alan Hayes)', 'Bonnie Hellman': 'Hitchhiker', 'Frankie Hill': 'Lainie', 'Barbara Howard': 'Sara'}\"\r\ntt0109447,\"{'Martin Short': 'Clifford Daniels', 'Charles Grodin': 'Martin Daniels', 'Mary Steenburgen': 'Sarah Davis', 'Dabney Coleman': 'Gerald Ellis', 'Richard Kind': 'Julien Daniels', 'Jennifer Savidge': 'Theodora Daniels', 'Brandis Kemp': 'Woman on Plane', 'Ben Savage': 'Roger', 'Don Galloway': 'Captain', 'Tim Lane': 'Navigator', 'Susan Varon': 'Woman Passerby', 'Josh Seal': 'Kevin', 'Kevin Mockrin': 'Kevin', 'Timothy Stack': \"\"Kevin's Father\"\", 'Marianne Muellerleile': \"\"Kevin's Mother\"\"}\"\r\ntt0080487,\"{'Chevy Chase': 'Ty Webb', 'Rodney Dangerfield': 'Al Czervik', 'Ted Knight': 'Judge Elihu Smails', \"\"Michael O'Keefe\"\": 'Danny Noonan', 'Bill Murray': 'Carl Spackler', 'Sarah Holcomb': \"\"Maggie O'Hooligan\"\", 'Scott Colomby': \"\"Tony D'Annunzio\"\", 'Cindy Morgan': 'Lacey Underall', 'Dan Resin': 'Dr. Beeper', 'Henry Wilcoxon': 'The Bishop', 'Elaine Aiken': 'Mrs. Noonan', 'Albert Salmi': 'Mr. Noonan', 'Ann Ryerson': 'Grace', 'Brian Doyle-Murray': 'Lou Loomis', 'Hamilton Mitchell': 'Motormouth'}\"\r\ntt7282468,\"{'Ah-in Yoo': 'Lee Jong-su', 'Steven Yeun': 'Ben       (as Yeun Sang-yeop)', 'Jong-seo Jun': 'Shin Hae-mi', 'Soo-Kyung Kim': 'Yeon-ju', 'Seung-ho Choi': 'Lee Yong-seok', 'Seong-kun Mun': 'Lawyer', 'Bok-gi Min': 'Judge', 'Soo-Jeong Lee': 'Prosecutor', 'Hye-ra Ban': \"\"Jong-su's Mom\"\", 'Mi-Kyung Cha': \"\"Hae-mi's Mom\"\", 'Bong-ryeon Lee': \"\"Hae-mi's Sister\"\", 'Wonhyeong Jang': 'Won-hyeong', 'Seok-Chan Jeon': 'Seok-chan', 'Joong-ok Lee': 'Patrolman', 'Ja-Yeon Ok': 'Ja-yeon'}\"\r\ntt6777338,\"{'Ok-bin Kim': 'Sook-hee', 'Ha-kyun Shin': 'Joong-sang', 'Jun Sung': 'Hyun-soo', 'Seo-hyeong Kim': 'Chief Kwon', 'Eun-ji Jo': 'Kim Seon', 'Ye-Ji Min': 'Sook-hee (young)', 'Hae-Kyun Jung': 'Jang-Chun', 'Yun-Woo Kim': 'Eun-Hye', 'Seung-Joo Lee': 'Choon-Mo', 'Cheol-min Park': \"\"Sook-Hee's father\"\", 'Min-Ji Son': 'Min-Joo'}\"\r\ntt7040874,\"{'Anna Kendrick': 'Stephanie Smothers', 'Ian Ho': 'Nicky Nelson', 'Joshua Satine': 'Miles Smothers', 'Glenda Braganza': 'Mrs. Kerry', 'Andrew Rannells': 'Darren', 'Kelly McCormack': 'Stacy', 'Aparna Nancherla': 'Sona', 'Jiah Mavji': \"\"Sona's Daughter\"\", 'Ava LaFramboise': 'Lulu', 'Blake Lively': 'Emily Nelson', 'Henry Golding': 'Sean Townsend', 'Dustin Milligan': 'Chris', 'Danielle Bourgon': \"\"Grace (Stephanie's Mom)\"\", 'Gia Sandhu': 'Valerie', 'Lila Yee': \"\"Margaret (Sean's Mom)\"\"}\"\r\ntt6371588,\"{'Rory Culkin': 'Ollie', 'Robert Sheehan': 'Nikolai', 'Isabelle McNally': 'Isadora', 'Mary Beth Peil': 'Charlie Sway', 'Elizabeth Peña': 'Marlena', 'Jack Falahee': 'Jimmy', 'Brian Dennehy': 'Hal Sway', 'Anna Shields': 'Heather', 'Gary Arzberger': 'Volunteer Fireman', 'John W. Bard': 'Biker Man', 'Jason Brill': 'Timmy Sway', 'Bob Foley': 'John Durant', 'Robert Forgett': 'Angry Man', 'John Grant': 'Tweed McKay', 'Kasey Kenyon': 'Ray'}\"\r\ntt7752126,\"{'Elizabeth Banks': 'Tori Breyer', 'David Denman': 'Kyle Breyer', 'Jackson A. Dunn': 'Brandon Breyer', 'Abraham Clinkscales': 'Royce', 'Christian Finlayson': 'Fauxhawk', 'Jennifer Holland': 'Ms. Espenschied', 'Emmie Hunter': 'Caitlyn', 'Matt Jones': 'Noah McNichol', 'Meredith Hagner': 'Merilee McNichol', 'Becky Wahlstrom': 'Erica', 'Terence Rosemore': 'P.E. Teacher', 'Gregory Alan Williams': 'Sheriff Deever', 'Elizabeth Becka': 'Principal', 'Annie Humphrey': 'Deputy Aryes', 'Steve Agee': 'EJ'}\"\r\ntt0455857,\"{'Camilla Belle': 'Jill Johnson', 'Tommy Flanagan': 'Stranger', 'Katie Cassidy': 'Tiffany', 'Tessa Thompson': 'Scarlet', 'Brian Geraghty': 'Bobby', 'Clark Gregg': 'Ben Johnson', 'Derek de Lint': 'Dr. Mandrakis', 'Kate Jennings Grant': 'Kelly Mandrakis', 'David Denman': 'Officer Burroughs', 'Arthur Young': 'Will Mandrakis', 'Madeline Carroll': 'Allison Mandrakis', 'Steve Eastin': 'Detective Hines', 'John Bobek': 'Officer Lewis', 'Brad Surosky': 'Boom Boom', 'Karina Logue': 'Track Coach'}\"\r\ntt0110367,\"{'Winona Ryder': 'Jo March', 'Gabriel Byrne': 'Friedrich Bhaer', 'Trini Alvarado': 'Meg March', 'Samantha Mathis': 'Older Amy March', 'Kirsten Dunst': 'Younger Amy March', 'Claire Danes': 'Beth March', 'Christian Bale': 'Laurie', 'Eric Stoltz': 'John Brooke', 'John Neville': 'Mr. Laurence', 'Mary Wickes': 'Aunt March', 'Susan Sarandon': 'Mrs. March', 'Florence Paterson': 'Hannah', 'Robin Collins': 'Carriage Boy', 'Corrie Clark': 'Belle Gardiner', 'Rebecca Toolan': 'Mrs. Gardiner'}\"\r\ntt0046816,\"{'Humphrey Bogart': 'Lt. Cmdr. Philip Francis Queeg', 'José Ferrer': 'Lt. Barney Greenwald       (as Jose Ferrer)', 'Van Johnson': 'Lt. Steve Maryk', 'Fred MacMurray': 'Lt. Tom Keefer       (as Fred Mac Murray)', 'Robert Francis': 'Ens. Willie Keith', 'May Wynn': 'May Wynn', 'Tom Tully': 'Comdr. DeVriess', 'E.G. Marshall': 'Lt. Comdr. Challee', 'Arthur Franz': 'Lt. JG H. Paynter Jr.', 'Lee Marvin': 'Meatball', 'Warner Anderson': 'Capt. Blakely', 'Claude Akins': \"\"Seaman Lugatch aka 'Horrible'\"\", 'Katherine Warren': 'Mrs. Keith       (as Katharine Warren)', 'Jerry Paris': 'Ens. Barney Harding', 'Steve Brodie': 'Chief Budge'}\"\r\ntt0060429,\"{'Elvis Presley': 'Johnny', 'Donna Douglas': 'Frankie', 'Harry Morgan': 'Cully', 'Sue Ane Langdon': 'Mitzi', 'Nancy Kovack': 'Nellie Bly', 'Audrey Christie': 'Peg', 'Robert Strauss': 'Blackie', 'Anthony Eisley': 'Braden', 'Joyce Jameson': 'Abigail'}\"\r\ntt0060438,\"{'Zero Mostel': 'Pseudolus', 'Phil Silvers': 'Marcus Lycus', 'Buster Keaton': 'Erronius', 'Michael Crawford': 'Hero', 'Jack Gilford': 'Hysterium', 'Annette Andre': 'Philia', 'Michael Hordern': 'Senex', 'Leon Greene': 'Captain Miles Gloriosus', 'Roy Kinnear': 'Gladiator Instructor', 'Alfie Bass': 'Gatekeeper', 'John Bluthal': 'Roman Chief Guard', 'Pamela Brown': 'High Priestess', 'Patricia Jessel': 'Domina', 'Beatrix Lehmann': \"\"Domina's Mother\"\", 'Frank Thornton': 'Roman Sentry'}\"\r\ntt0104009,\"{'Janni Brenn': 'Mom Harris       (as Janni Brenn-Lowen)', 'Brad Pitt': 'Frank Harris', 'William Frankfather': 'Cop', 'Greg Collins': 'Cop', 'Maurice LaMarche': 'Interrogator /              Doc Whiskers /              Mash /              Drunk Bar Patron /              Super Jack       (voice)', 'Gabriel Byrne': 'Jack Deebs', 'Joey Camen': \"\"Interrogator /              Slash /              Holli's Door       (voice)\"\", 'Kim Basinger': 'Holli Would', 'Michael David Lally': 'Sparks       (voice)', 'Michele Abrams': 'Jennifer Malley', 'Carrie Hamilton': 'Comic Bookstore Cashier', 'Stephen Worth': 'Store Patron /              Bash', 'Murray Podwal': 'Store Patron', 'Jenine Jennings': 'Craps Bunny /              Lonette /              Holli       (voice)', 'Gregory Snegoff': 'Bash       (voice)'}\"\r\ntt5537600,\"{'Susanne Bartsch': 'Herself', 'Hector Xtravaganza': 'Himself'}\"\r\ntt2066051,\"{'Taron Egerton': 'Elton John', 'Jamie Bell': 'Bernie Taupin', 'Richard Madden': 'John Reid', 'Bryce Dallas Howard': 'Sheila', 'Gemma Jones': 'Ivy', 'Steven Mackintosh': 'Stanley', 'Tom Bennett': 'Fred', 'Matthew Illesley': 'Young Reggie', 'Kit Connor': 'Older Reggie', 'Charlie Rowe': 'Ray Williams', \"\"Peter O'Hanlon\"\": \"\"Bobby       (as Pete O'Hanlon)\"\", 'Ross Farrelly': 'Cyril', 'Evan Walsh': 'Elton Dean', 'Tate Donovan': 'Doug Weston', 'Sharmina Harrower': 'Heather'}\"\r\ntt4911996,\"{'Aaron Pedersen': 'Detective Jay Swan', 'Alex Russell': 'Josh Waters', 'Jacki Weaver': 'The Mayor', 'David Wenham': 'Johnny', 'David Gulpilil': 'Jimmy', 'Pei-Pei Cheng': 'Mrs. Lao', 'Michelle Lim Davidson': 'May', 'Tommy Lewis': 'Tommy', 'Max Cullen': 'Old Timer', 'Steve Rodgers': 'Mick       (as Steve Rogers)', 'Ursula Yovich': 'Maria', 'Michael Dorman': 'Patch', 'Kate Beahan': 'Pinky', \"\"Aaron Fa'aoso\"\": 'Bear', 'Gillian Jones': 'Sally'}\"\r\ntt2283336,\"{'Chris Hemsworth': 'Agent H', 'Tessa Thompson': 'Agent M', 'Kumail Nanjiani': 'Pawny       (voice)', 'Rebecca Ferguson': 'Riza', 'Rafe Spall': 'Agent C', 'Emma Thompson': 'Agent O', 'Liam Neeson': 'Agent High T', 'Laurent Bourgeois': 'Alien Twin', 'Larry Bourgeois': 'Alien Twin', 'Kayvan Novak': 'Vungus /              Nasr /              Bassam', 'Spencer Wilding': 'Luca Brasi', 'Marcy Harriell': \"\"Molly's Mom\"\", 'Inny Clemons': \"\"Molly's Dad\"\", 'Aaron Serotsky': 'Men in Black #1', 'Mandeiya Flory': 'Young Molly'}\"\r\ntt0369441,\"{'Jim Carrey': 'Dick Harper', 'Téa Leoni': 'Jane Harper', 'Alec Baldwin': 'Jack McCallister', 'Richard Jenkins': 'Frank Bascombe', 'Angie Harmon': 'Veronica Cleeman', 'John Michael Higgins': 'Garth', 'Richard Burgi': 'Joe Cleeman', 'Carlos Jacott': 'Oz Peterson', 'Aaron Michael Drozin': 'Billy Harper', 'Gloria Garayua': 'Blanca', 'Michelle Arthur': \"\"Dick's Secretary\"\", 'Stacey Travis': \"\"Jack's Receptionist\"\", 'Timm Sharp': \"\"Jack's Assistant\"\", 'David Herman': 'Angry Caller       (voice)', 'Dempsey Pappion': 'Production Assistant'}\"\r\ntt6466464,\"{'Allie Chan': 'Ying Luo', 'Shaofeng Feng': 'Tangseng', 'Aaron Kwok': 'Sun Wukong', 'Him Law': 'Shaseng       (as Chung Him Law)', 'Gigi Leung': 'Advisor', 'Chiling Lin': 'Hebo', 'Tao Liu': 'Guanyin', 'Lun Tsai': 'Warrior', 'Shenyang Xiao': 'Zhu Bajie', 'King-Tan Yuen': 'Priest', 'Zanilia Zhao': \"\"Nü'erguo guowang\"\"}\"\r\ntt4591310,\"{'Aaron Kwok': 'Sun Wukong /              Monkey King', 'Li Gong': 'Baigujing /              White-Boned Demon', 'Shaofeng Feng': 'Tang Seng       (as William Feng)', 'Shenyang Xiao': 'Zhu Bajie       (as Xiao Shen Yang)', 'Him Law': 'Sha Seng', 'Fei Xiang': 'Guowang /              King       (as Kris Phillips)', 'Kelly Chen': 'Guanyin', 'Giselle Chia': 'Bat demon', 'John Ching': 'Chieftain', 'Chutian Liu': 'Bai Gu Jing, little girl', 'Miya Muqi': 'evil spirit Pig', 'Eddie Peng': 'Pharmacy dispenser', 'Ngawang Rinchen': 'Witch Doctor', 'Lu Wei': 'Evil spirit snake', 'Zimu Zhang': 'Treasurer daughter       (as Zi Mu Zhang)'}\"\r\ntt7275200,{'Tina Shuster': 'Fifi /              Trigger /              Alba /              Mama /              Cherie /              Mama Sting Ray'}\r\ntt0092948,\"{'Eddie Murphy': 'Himself', 'Tatyana Ali': 'Singing Child (sketch)', 'Billie Allen': \"\"Eddie's Aunt (sketch)\"\", 'Clebert Ford': 'Uncle Lester (sketch)', 'Geri Gibson': 'Card Player #2 (sketch)', 'Birdie M. Hale': 'Aunt Rose (sketch)', 'Tiger Haynes': 'Card Player #3 (sketch)', 'Leonard Jackson': 'Uncle Gus (sketch)', 'Samuel L. Jackson': \"\"Eddie's Uncle (sketch)\"\", 'Jody Jones': \"\"Eddie's Cousin (sketch)\"\", 'Davenia McFadden': \"\"Eddie's Aunt (sketch)\"\", 'Gwen McGee': \"\"Eddie's Mother (sketch)\"\", 'Lex Monson': 'Card Player #4 (sketch)', 'Warren Morris': 'Poetry Reader (sketch)', 'Deon Richmond': 'Little Eddie (sketch)'}\"\r\ntt6212478,\"{'Spencer Reinhard': 'The Real Spencer Reinhard', 'Warren Lipka': 'The Real Warren Lipka', 'Eric Borsuk': 'The Real Eric Borsuk', 'Chas Allen': 'The Real Chas Allen', 'Betty Jean Gooch': \"\"The Real Betty Jean 'BJ' Gooch       (as Betty Jean 'BJ' Gooch)\"\", 'Evan Peters': 'Warren', 'Blake Jenner': 'Chas', 'Barry Keoghan': 'Spencer', 'Jared Abrahamson': 'Eric', 'Eddie King': 'Male Art Professor', 'Karen Wheeling Reynolds': 'Female Art Professor       (as Karen Reynolds)', 'James Rackley': 'Active', 'Drew Starkey': 'Frat Boy', 'Anthony J. Police': 'Man with Gun', 'Ann Dowd': \"\"Betty Jean 'BJ' Gooch\"\"}\"\r\ntt6320628,\"{'Tom Holland': 'Peter Parker /              Spider-Man', 'Samuel L. Jackson': 'Nick Fury', 'Jake Gyllenhaal': 'Quentin Beck /              Mysterio', 'Marisa Tomei': 'May Parker', 'Jon Favreau': 'Happy Hogan', 'Zendaya': 'MJ', 'Jacob Batalon': 'Ned Leeds', 'Tony Revolori': 'Flash Thompson', 'Angourie Rice': 'Betty Brant', 'Remy Hii': 'Brad Davis', 'Martin Starr': 'Mr. Harrington', 'J.B. Smoove': 'Mr. Dell       (as JB Smoove)', 'Jorge Lendeborg Jr.': 'Jason Ionello', 'Cobie Smulders': 'Maria Hill', 'Numan Acar': 'Dimitri'}\"\r\ntt6857112,\"{\"\"Lupita Nyong'o\"\": 'Adelaide Wilson /              Red', 'Winston Duke': 'Gabe Wilson /              Abraham', 'Elisabeth Moss': 'Kitty Tyler /              Dahlia', 'Tim Heidecker': 'Josh Tyler /              Tex', 'Shahadi Wright Joseph': 'Zora Wilson /              Umbrae', 'Evan Alex': 'Jason Wilson /              Pluto', 'Yahya Abdul-Mateen II': 'Russel Thomas /              Weyland', 'Anna Diop': 'Rayne Thomas /              Eartha', 'Cali Sheldon': 'Becca Tyler /              Io', 'Noelle Sheldon': 'Lindsey Tyler /              Nix', 'Madison Curry': 'Young Adelaide Wilson /              Young Red', 'Ashley McKoy': 'Teenage Adelaide Wilson /              Teenage Red', 'Napiera Groves': 'Dr. Foster', 'Lon Gowan': 'Don', 'Alan Frazier': 'Ferdie /              Jeremiah'}\"\r\ntt0155711,\"{'Robert De Niro': 'Walt Koontz', 'Philip Seymour Hoffman': 'Rusty', 'Barry Miller': 'Leonard Wilcox', 'Chris Bauer': 'Jacko', 'Skipp Sudduth': 'Tommy', 'Wilson Jermaine Heredia': 'Cha-Cha', 'Nashom Benjamin': 'Amazing Grace', 'Scott Allen Cooper': 'Ivana', 'Rory Cochrane': 'Pogo', 'Daphne Rubin-Vega': 'Tia', 'Vincent Laresca': 'Raymond Camacho', 'Karina Arroyave': 'Amber', 'John Enos III': 'Sonny       (as John Enos)', 'Jude Ciccolella': 'Detective Noonan', 'Mina Bern': 'Mrs. Spivak'}\"\r\ntt2025526,\"{'Hae-il Park': 'Nam-yi', 'Seung-ryong Ryu': 'Jyushinta       (as Ryu Seung-Ryong)', 'Mu-Yeol Kim': 'Seo-gun', 'Chae-won Moon': 'Ja-in', 'Han-wi Lee': 'Gap-yong', 'Gu-taek Kim': 'Kang-du', 'Kyeong-yeong Lee': 'Kim Mu-seon', 'Gi-woong Park': 'Prince Doreugon', 'Seung-Joon Lee': 'Wanhan       (as Seung-joon Lee)', 'Jae-goo Lee': 'Hu-man', 'No-shik Park': 'Jang-sun', 'Da-wit Lee': 'Young Nam-yi', 'Min-seo Jeon': 'Young Ja-in', 'Ryôhei Ohtani': 'Nogami       (as Rye Hei Otani)', 'Hyeon-tae Kim': 'Hu Reu-gang'}\"\r\ntt1456661,\"{'Donnie Yen': 'Chen Zhen', 'Qi Shu': 'Fang Qing', 'Anthony Chau-Sang Wong': 'Liu Yutian       (as Anthony Wong)', 'Bo Huang': 'Inspector Huang Hao Long', 'Ryu Kohata': 'Colonel Takeshi Chikaraishi       (as Kohata Ryuichi)', 'Siyan Huo': 'Vivian', 'Zhou Yang': 'Qi Zhi-Shan', 'Shawn Yue': 'General Zeng', 'Yasuaki Kurata': 'Tsuyoshi Chikaraishi', 'Akira': 'Sasaki Chikaraishi', 'Yue Ma': 'General Zhou', 'Jiajia Chen': 'Huang Lan', 'Songwen Zhang': 'Wen-Zai', 'Gregory Wong': '(as Wong Chung Yiu)'}\"\r\ntt1999890,\"{'Cynthea Mercado': 'Jodi       (as Cynthia Mercado)', 'Stephen Conroy': 'The Other', 'Amy Forsyth': 'Natalie', 'Bex Taylor-Klaus': 'Taylor', 'Reign Edwards': 'Brooke', 'Christian James': 'Quinn', 'Matt Mercurio': 'Asher', 'Roby Attal': 'Gavin', 'George Howard Adams': 'Gate Guard       (as George Adams)', 'Courtney Dietz': 'Britney', 'Markus Silbiger': 'Bored Carny Kid', 'Michael Tourek': 'Security Guard', 'Tony Todd': 'The Barker', 'Aaron Gillespie': 'Stagehand', 'Cecil Elmore Jr.': 'Cop       (as Cecil Elmore)'}\"\r\ntt0113464,\"{'Steven Weber': 'Jeffrey', 'Peter Jacobson': 'Man #1', 'Tom Cayler': 'Man #2', 'David Thornton': 'Man #3', 'Lee Mark Nelson': 'Crying Guy', 'John Ganun': 'Tourist', 'Michael T. Weiss': 'Steve Howard', 'Joe Dain': 'Movie Theatre Guy #1       (as Joseph Dain)', 'Jeffrey Ross': 'Movie Theatre Guy #2', 'Irma St. Paule': 'Mother Teresa', 'Patrick Stewart': 'Sterling', 'Nicky Paraiso': 'Salesman', 'K. Todd Freeman': \"\"Barney's Waiter\"\", 'Robert Klein': 'Skip Winkley', \"\"Patti Ann O'Connell\"\": 'Cheryl the Showgirl'}\"\r\ntt3531824,\"{'Emma Roberts': 'Vee', 'Dave Franco': 'Ian', 'Emily Meade': 'Sydney', 'Miles Heizer': 'Tommy', 'Juliette Lewis': 'Nancy', 'Kimiko Glenn': 'Liv', 'Marc John Jefferies': 'Wes', 'Machine Gun Kelly': 'Ty       (as Colson Baker)', 'Brian Marc': 'J.P.', 'Ed Squires': 'Chuck', 'Rightor Doyle': 'Bergdorf Salesman', 'Josh Ostrovsky': 'Dirt Beard', \"\"Eric D'Alessandro\"\": 'Hype Boi', 'Arielle Vandenberg': 'Bergdorf Sales Lady', 'Jonny Beauchamp': 'Gatekeeper'}\"\r\ntt7042862,\"{'Sam Elliott': 'Calvin Barr', 'Aidan Turner': 'Calvin Barr', 'Caitlin FitzGerald': 'Maxine', 'Ron Livingston': 'Flag Pin', 'Sean Bridgers': 'Mr. Gardner', 'Larry Miller': 'Ed Barr', 'Rizwan Manji': 'Maple Leaf', 'Ellar Coltrane': 'The Clerk', 'Mark Steger': 'The Bigfoot', 'Kristen Anne Ferraro': 'Concentration Camp Prisoner', 'Alton Fitzgerald White': 'George', 'Kelley Curran': 'Mrs. Gardner', 'Nikolai Tsankov': 'Russian Officer', 'Silas Archer Gustav': \"\"Young Calvin Barr's dog(Ralph)\"\", 'Mickey Gilmore': 'Ukrainian Police Officer'}\"\r\ntt0083972,\"{'Terry Ballard': 'State Trooper #2', 'Richard Brooker': 'Jason', 'Gloria Charles': 'Fox', 'Rachel Howard': 'Chili', 'David Katims': 'Chuck', 'Dana Kimmell': 'Chris', 'Paul Kratka': 'Rick', 'Cheri Maugans': 'Edna', 'Terence McCorry': 'State Trooper #3', 'Charlie Messenger': 'State Trooper #1', \"\"Kevin O'Brien\"\": 'Loco', 'Anne Gaybis': 'The Cashier       (as Annie Gaybis)', 'Catherine Parks': 'Vera', 'Jeffrey Rogers': 'Andy', 'Nick Savage': 'Ali'}\"\r\ntt4761916,\"{'Colin Woodell': 'Matias', 'Stephanie Nogueras': 'Amaya', 'Betty Gabriel': 'Nari', 'Rebecca Rittenhouse': 'Serena', 'Andrew Lees': 'Damon', 'Connor Del Rio': 'AJ', 'Savira Windyani': 'Lexx', 'Douglas Tait': 'Charon IV', 'Bryan Adrian': 'Charon IV', 'Chelsea Alden': 'Kelly', 'Alexa Mansour': 'Erica Dunne', 'Rob Welsh': 'Charon', 'Alexander Ward': 'Charon', 'Kurt Carley': 'Charon', 'Chuck Lines': 'Charon'}\"\r\ntt8726116,\"{'Peter Yu': 'Lok', 'Xiaoyi Liu': 'Wang', 'Yue Guo': 'Mindy       (as Luna Kwok)', 'Jack Tan': 'Jason', 'Ishtiaque Zico': 'Ajit', 'Kelvin Ho': 'George', 'George Low': 'Foreman Lee', 'Debabrota Basu': 'Hossein', 'Andie Chen': 'Ming Ming', 'Khalishan Liang': 'Tong', 'Qin Tianshu': 'Brat', 'Ottylia Liu': \"\"Brat's Girlfriend\"\", 'Xiao Jing': 'Zhou', 'Andy Nyo': 'Ah Hao', 'Joey Heng': 'Couple Girl'}\"\r\ntt9251718,\"{'Todd Quills': 'Cyan', 'Maria Petrano': 'Lily', 'Chen Tsung': 'Teddy', 'Tony Roberts': 'Lacerta', 'Dave Soltura': 'Nala', 'Thomas Carr': 'Drako', 'Timothy Banfield': 'Argon /              Grus', 'Kelsey Painter': 'Leo /              Mika', 'Ken Young': 'Pixypaw', 'Carmen Piroli': 'Mia'}\"\r\ntt5113040,\"{'Patton Oswalt': 'Max       (voice)', 'Kevin Hart': 'Snowball       (voice)', 'Harrison Ford': 'Rooster       (voice)', 'Eric Stonestreet': 'Duke       (voice)', 'Jenny Slate': 'Gidget       (voice)', 'Tiffany Haddish': 'Daisy       (voice)', 'Lake Bell': 'Chloe       (voice)', 'Dana Carvey': 'Pops       (voice)', 'Bobby Moynihan': 'Mel       (voice)', 'Hannibal Buress': 'Buddy       (voice)', 'Chris Renaud': 'Norman /              Additional Voices       (voice)', 'Ellie Kemper': 'Katie       (voice)', 'Pete Holmes': 'Chuck       (voice)', 'Henry Lynch': 'Liam       (voice)', 'Nick Kroll': 'Sergei       (voice)'}\"\r\ntt7073518,{'Zelda Roberts': '(as Lovie Underwood)'}\r\ntt0418819,\"{'Simon Baker': 'Riley Denbo', 'John Leguizamo': 'Cholo DeMora', 'Dennis Hopper': 'Kaufman', 'Asia Argento': 'Slack', 'Robert Joy': 'Charlie', 'Eugene Clark': 'Big Daddy', 'Joanne Boland': 'Pretty Boy', 'Tony Nappo': 'Foxy', 'Jennifer Baxter': 'Number 9', 'Boyd Banks': 'Butcher', 'Jasmin Geljo': 'Tambourine Man', 'Maxwell McCabe-Lokos': 'Mouse', 'Tony Munch': 'Anchor', 'Shawn Roberts': 'Mike', 'Pedro Miguel Arce': 'Pillsbury'}\"\r\ntt0085970,\"{'Michael Keaton': 'Jack', 'Teri Garr': 'Caroline Butler', 'Frederick Koehler': 'Alex Butler', 'Taliesin Jaffe': 'Kenny Butler', 'Courtney White': 'Megan Butler', 'Brittany White': 'Megan Butler', 'Martin Mull': 'Ron Richardson', 'Ann Jillian': 'Joan Hampton', 'Jeffrey Tambor': 'Jinx Lathman', 'Christopher Lloyd': 'Larry', 'Tom Leopold': 'Stan', 'Graham Jarvis': 'Howard Humphries', 'Carolyn Seymour': 'Eve', 'Michael Alaimo': 'Bert', 'Valri Bromfield': 'Doris'}\"\r\ntt6146586,\"{'Keanu Reeves': 'John Wick', 'Halle Berry': 'Sofia', 'Ian McShane': 'Winston', 'Laurence Fishburne': 'Bowery King', 'Mark Dacascos': 'Zero', 'Asia Kate Dillon': 'The Adjudicator', 'Lance Reddick': 'Charon', 'Tobias Segal': 'Earl', 'Anjelica Huston': 'The Director', 'Saïd Taghmaoui': 'The Elder', 'Jerome Flynn': 'Berrada', 'Randall Duk Kim': 'Doctor', 'Margaret Daly': 'Operator', 'Robin Lord Taylor': 'Administrator', 'Susan Blommaert': 'Librarian'}\"\r\ntt0096256,\"{'Roddy Piper': 'Nada', 'Keith David': 'Frank', 'Meg Foster': 'Holly', \"\"George 'Buck' Flower\"\": 'Drifter', 'Peter Jason': 'Gilbert', 'Raymond St. Jacques': 'Street Preacher', 'Jason Robards III': 'Family Man', 'John Lawrence': 'Bearded Man', 'Susan Barnes': 'Brown Haired Woman', 'Sy Richardson': 'Black Revolutionary', 'Wendy Brainard': \"\"Family Man's Daughter\"\", 'Lucille Meredith': 'Female Interviewer', 'Susan Blanchard': 'Ingenue', 'Norman Alden': 'Foreman', 'Dana Bratton': 'Black Junkie'}\"\r\ntt8155288,\"{'Jessica Rothe': 'Tree Gelbman', 'Israel Broussard': 'Carter Davis', 'Phi Vu': 'Ryan Phan', 'Suraj Sharma': 'Samar Ghosh', 'Sarah Yarkin': \"\"Andrea 'Dre' Morgan\"\", 'Rachel Matthews': 'Danielle Bouseman', 'Ruby Modine': 'Lori Spengler', 'Steve Zissis': 'Dean Roger Bronson', 'Charles Aitken': 'Gregory Butler', 'Laura Clifton': 'Stephanie Butler', 'Missy Yager': 'Julie Gelbman', 'Jason Bayle': 'David Gelbman', 'Caleb Spillyards': 'Tim Bauer', 'Jimmy Gonzales': 'Police Officer', 'Peter Jaymes Jr.': 'Police Officer'}\"\r\ntt0289765,\"{'Anthony Hopkins': 'Dr. Hannibal Lecter', 'Edward Norton': 'Will Graham', 'Ralph Fiennes': 'Francis Dolarhyde', 'Harvey Keitel': 'Jack Crawford', 'Emily Watson': 'Reba McClane', 'Mary-Louise Parker': 'Molly Graham', 'Philip Seymour Hoffman': 'Freddy Lounds', 'Anthony Heald': 'Dr. Frederick Chilton', 'Ken Leung': 'Lloyd Bowman', 'Frankie Faison': 'Barney Matthews', 'Tyler Patrick Jones': 'Josh Graham', 'Lalo Schifrin': 'Conductor', 'Tim Wheater': 'Flautist', 'John Rubinstein': 'Dinner Guest', 'David Doty': 'Dinner Guest'}\"\r\ntt3281548,\"{'Saoirse Ronan': 'Jo March', 'Emma Watson': 'Meg March', 'Florence Pugh': 'Amy March', 'Eliza Scanlen': 'Beth March', 'Laura Dern': 'Marmee March', 'Timothée Chalamet': \"\"Theodore 'Laurie' Laurence\"\", 'Tracy Letts': 'Mr. Dashwood', 'Bob Odenkirk': 'Father March', 'James Norton': 'John Brooke', 'Louis Garrel': 'Friedrich Bhaer', 'Jayne Houdyshell': 'Hannah', 'Chris Cooper': 'Mr. Laurence', 'Meryl Streep': 'Aunt March', 'Rafael Silva': \"\"Friedrich's Friend\"\", 'Mason Alban': \"\"Friedrich's Friend\"\"}\"\r\ntt5649108,\"{'Olivia Cooke': 'Amanda', 'Anya Taylor-Joy': 'Lily', 'Anton Yelchin': 'Tim', 'Paul Sparks': 'Mark', 'Francie Swift': 'Cynthia', 'Kaili Vernoff': 'Karen', 'Svetlana Orlova': 'Housekeeper', 'Alyssa Fishenden': 'Jessica', 'Jackson Damon': 'Phil', 'James Haddad': 'Michael', 'Nolan Ball': 'Delivery Guy', 'Celeste Oliva': 'Receptionist'}\"\r\ntt7287136,\"{'Jerod Haynes': 'Jerod', 'Tai Davis': \"\"Tai       (as Tai'isha Davis)\"\", 'Sandra Adams-Monegain': 'Sandra', 'Jalaiya Lee-Haynes': 'Jalaiya', 'Edgar Miguel Sanchez': 'Edgar', 'Jeremy Pargo': 'Jeremy', 'Curtis Posey': 'Curtis', 'Shanesia Davis': 'Shanesia       (as Shanesia Davis-Williams)'}\"\r\ntt4666228,\"{'Andrew Allen': 'Himself', 'Tony Alva': 'Himself', 'Ray Barbee': 'Himself', 'Pedro Barros': 'Himself', 'Elijah Berle': 'Himself', 'Steve Caballero': 'Himself', 'Curren Caples': 'Himself', 'John Cardiel': 'Himself', 'Gilbert Crockett': 'Himself', 'Jason Dill': 'Himself', 'Dustin Dollin': 'Himself', 'Chima Ferguson': 'Himself', 'Jeff Grosso': 'Himself', 'Omar Hassan': 'Himself', 'Christian Hosoi': 'Himself'}\"\r\ntt5968394,\"{'John Goodman': 'William Mulligan', 'Ashton Sanders': 'Gabriel Drummond', 'Jonathan Majors': 'Rafe Drummond', 'Vera Farmiga': 'Jane Doe', 'Kevin Dunn': 'Commissioner Eugene Igoe', 'James Ransone': 'Patrick Ellison', 'Alan Ruck': 'Charles Rittenhouse', 'Madeline Brewer': 'Rula', 'Machine Gun Kelly': 'Jurgis       (as Colson Baker)', \"\"Kevin J. O'Connor\"\": 'Kermode', 'Ben Daniels': 'Daniel', 'Caitlin Ewald': 'Anita', 'Lawrence Grimm': 'Evan Hayes', 'Guy Van Swearingen': 'Eddie the Priest', 'Elena Marisa Flores': 'Flores       (as Elena Flores)'}\"\r\ntt0837563,\"{'Jason Clarke': 'Louis', 'Amy Seimetz': 'Rachel', 'John Lithgow': 'Jud', 'Jeté Laurence': 'Ellie', 'Hugo Lavoie': 'Gage', 'Lucas Lavoie': 'Gage', 'Obssa Ahmed': 'Victor Pascow', 'Alyssa Brooke Levine': 'Zelda       (as Alyssa Levine)', 'Maria Herrera': 'Marcella', 'Frank Schorpion': \"\"Rachel's Father\"\", 'Linda E. Smith': \"\"Rachel's Mother\"\", 'Sonia Maria Chirila': 'Young Rachel', 'Naomi Frenette': 'Upset Student       (as Naomi Jean)', 'Suzi Stingl': 'Norma', 'Kelly Lee': 'Nurse Kelly'}\"\r\ntt5599818,\"{'Aslihan Gürbüz': 'Emine', 'Caner Cindoruk': 'Cemal', 'Taner Birsel': 'Ziya', 'Istar Gökseven': 'Selahattin       (as Istar Gokseven)', 'Çaglar Çorumlu': 'Aslan', 'Talha Yayikci': 'Remzi', 'Dolunay Soysert': 'Zuhal', 'Berat Özdemir': 'Mete', 'Genco Ozak': 'Muhasebevi', 'Apo Demirkubuz': 'Tamirci'}\"\r\ntt3391782,{}\r\ntt0098084,\"{'Dale Midkiff': 'Louis Creed', 'Fred Gwynne': 'Jud Crandall', 'Denise Crosby': 'Rachel Creed', 'Brad Greenquist': 'Victor Pascow', 'Michael Lombard': 'Irwin Goldman', 'Miko Hughes': 'Gage Creed', 'Blaze Berdahl': 'Ellie Creed', 'Susan Blommaert': 'Missy Dandridge', 'Mara Clark': 'Marcy Charlton', 'Kavi Raz': 'Steve Masterton', 'Mary Louise Wilson': 'Dory Goldman', 'Andrew Hubatsek': 'Zelda', 'Liz Davies': 'Girl at Infirmary', 'Kara Dalke': 'Candystriper', 'Matthew August Ferrell': 'Jud as a Child'}\"\r\ntt6428676,\"{'Sofia Mali': 'Young June       (voice)', 'Jennifer Garner': 'Mom       (voice)', 'Ken Hudson Campbell': 'Boomer       (voice)', 'Kenan Thompson': 'Gus       (voice)', 'Mila Kunis': 'Greta       (voice)', 'John Oliver': 'Steve       (voice)', 'Ken Jeong': 'Cooper       (voice)', 'Norbert Leo Butz': 'Peanut       (voice)', 'Matthew Broderick': 'Dad       (voice)', 'Brianna Denski': 'June       (voice)', 'Oev Michael Urbas': 'Banky       (voice)', 'Kate McGregor-Stewart': 'Aunt Albertine       (voice)', 'Kevin Chamberlin': 'Uncle Tony       (voice)', 'Kath Soucie': 'Bus Counselor Shannon       (voice)'}\"\r\ntt2267858,\"{'Robert Higden': 'Taxi Driver', 'Dawn Ford': 'Dr. Turcotte', 'Paul Van Dyck': 'Dr. Miller', 'Jane Gilchrist': 'Mrs. Wheeler', 'Marie-Noelle Dufour': 'Nurse', 'Karl Werleman': 'Large Ordely', 'Tristan D. Lalla': 'Short Orderly', 'Timothy Hine': 'Napoleon', 'Marc Francoeur': 'Old patient', 'Alison Louder': 'Terrified woman', 'Jean-Michel Bélanger': 'Extras', 'Nicolas Didtsch': 'Extras', 'François Guinaudeau': 'Extras', 'Patrick Martin': 'Extras', 'Arantza Maldonado': 'Extras'}\"\r\ntt6495770,\"{'Johnny Knoxville': 'D.C.', 'Eleanor Worthington-Cox': 'Boogie', 'Chris Pontius': 'Benny', 'Dan Bakkedahl': 'Knoblach', 'Johnny Pemberton': 'Ziffel', 'Brigette Lundy-Paine': 'Four Finger Annie', 'Eric Manaka': 'Rodney', 'Joshua Hoover': 'Hot Headed Pete', 'Conner McVicker': 'Stiv', 'Michael Everson': 'Slappy', 'Aidan Whytock': 'Ron', 'Matthew Peterson': 'Travis', 'Aidan Scott': 'Bobo', 'Ashley Dickerson': 'Steffi', 'Matt Schulze': 'Killer'}\"\r\ntt0106220,\"{'Anjelica Huston': 'Morticia Addams', 'Raul Julia': 'Gomez Addams', 'Christopher Lloyd': 'Uncle Fester Addams', 'Joan Cusack': 'Debbie Jellinsky', 'Christina Ricci': 'Wednesday Addams', 'Carol Kane': 'Granny', 'Jimmy Workman': 'Pugsley Addams', 'Kaitlyn Hooper': 'Pubert Addams', 'Kristen Hooper': 'Pubert Addams', 'Carel Struycken': 'Lurch', 'David Krumholtz': 'Joel Glicker', 'Christopher Hart': 'Thing', 'Dana Ivey': 'Margaret Addams', 'Peter MacNicol': 'Gary Granger', 'Christine Baranski': 'Becky Martin-Granger'}\"\r\ntt0117894,\"{'Robert John Burke': 'Billy Halleck', 'Lucinda Jenney': 'Heidi Halleck', 'Bethany Joy Lenz': 'Linda Halleck       (as Joy Lenz)', 'Time Winters': 'Prosecutor', 'Howard Erskine': 'Judge Phillips', 'Joe Mantegna': 'Richie Ginelli', 'Terrence Garmey': 'Bailiff', 'Randy Jurgensen': 'Court Clerk', 'Jeff Ware': 'Max Duggenfield', 'Antonette Schwartzberg': 'Mama Ginelli', 'Terence Kava': 'Gabe Lempke       (as Terrence Kava)', 'Kari Wuhrer': 'Gina Lempke', 'Adriana Delphine': 'Gypsy Woman', 'Ruth Miller': \"\"Billy's Secretary\"\", 'Walter Bobbie': 'Kirk Penschley'}\"\r\ntt9428920,\r\ntt5596104,\"{'Sam Keeley': 'Jamie', 'Manoel Orfanaki': 'JC', 'Hera Hilmar': 'Sophie', 'Kal Penn': 'Nitin', 'Radhika Apte': 'Gayatri', 'Melissa Leo': 'Chandra', 'Kallirroi Tziafeta': 'Caterina', 'Zachary Coffin': 'Dr. Michaels', 'Yasemin Delikan': 'Claudia', 'Kristian Hedegaard-Petersen': 'Hans', 'Ashish Juneja': 'Ashish', 'Andrea Ravera': 'Surya       (as Andy Rave)'}\"\r\ntt7014006,\"{'Elsie Fisher': 'Kayla Day', 'Josh Hamilton': 'Mark Day', 'Emily Robinson': 'Olivia', 'Jake Ryan': 'Gabe', 'Daniel Zolghadri': 'Riley', 'Fred Hechinger': 'Trevor', 'Imani Lewis': 'Aniyah', 'Luke Prael': 'Aiden', 'Catherine Oliviere': 'Kennedy', 'Nora Mullins': 'Steph', 'Gerald W. Jones': 'Tyler', 'Missy Yager': 'Mrs. Graves', 'Shacha Temirov': 'Mason', 'Greg Crowe': 'Mr. McDaniel', \"\"Thomas John O'Reilly\"\": 'Edmund'}\"\r\ntt3576060,\"{'Joseph Oliveira': 'Lt Rashidd', 'Matt Sager': 'TV News Anchor', 'Matthew Vandyke': 'Himself'}\"\r\ntt3206798,\"{'Valerie Brandy': 'Lola', 'Travis Quentin Young': 'Sam', 'Annamarie Kenoyer': 'Ree', 'Peter Banifaz': 'Pete', 'Tom Colitt': 'Tim'}\"\r\ntt6958014,\"{'Alia Shawkat': 'Naima', 'Laia Costa': 'Sergio', 'Mae Whitman': 'Ellen', 'Hong Chau': 'Glow', 'Kumail Nanjiani': 'Jake', 'Kate Berlant': 'Kathy', 'Deborah Adair': 'Old Neighbor', 'LaDonna Adams': 'Oil Can Harrys Background', 'Cassandra Borges': 'El Cid Background', 'Lindsay Burdge': 'Kate', 'Andrew Y. Byrd': 'Andrea', 'Jibz Cameron': 'Jess', 'Marguerite Carter': \"\"Oil Can Harry's MC\"\", 'Dolores Castelano': 'Oil Can Harrys Background', 'Chelsea Choi': 'El Cid Background'}\"\r\ntt6921996,\"{'Kevin Eldon': 'MI7 Night Duty Agent', 'Emma Thompson': 'Prime Minister', 'Adam James': 'Pegasus', 'Rowan Atkinson': 'Johnny English', 'Noah Spiers': 'Baggaley', 'Kendra Mei': 'Ibadulla', 'Alfie Kennedy': 'Straker', 'Jasmine Brightmore': 'Dowling', 'George Turner': 'Hattersley', 'Rua Robertson': 'Ridley', 'Adam Greaves-Neal': 'Tomlinson', 'Nifemi Bankole': 'Obasanjo', 'Gus Brown': 'Headmaster', 'Pippa Bennett-Warner': 'Lesley', 'Michael Gambon': 'Agent Five'}\"\r\ntt5610554,\"{'Charlize Theron': 'Marlo', 'Mackenzie Davis': 'Tully', 'Ron Livingston': 'Drew', 'Asher Miles Fallica': 'Jonah', 'Lia Frankland': 'Sarah', 'Mark Duplass': 'Craig', 'Elaine Tan': 'Elyse', 'Gameela Wright': 'Laurie', 'Tattiawna Jones': 'Violet', 'Stormy Ent': 'Shasta', 'Maddie Dixon-Poirier': 'Emmy', 'Bella Star Choy': 'Greta', 'Dominic Good': 'Dash', 'Joshua Pak': 'Dallas', 'Em Haine': 'Barista       (as Emily Haine)'}\"\r\ntt0397535,\"{'Suzuka Ohgo': 'Chiyo', 'Togo Igawa': 'Tanaka', 'Mako': 'Sakamoto', 'Samantha Futerman': 'Satsu', 'Elizabeth Sung': \"\"Sakamoto's Wife\"\", 'Thomas Ikeda': 'Mr. Bekku', 'Li Gong': 'Hatsumomo       (as Gong Li)', 'Tsai Chin': 'Auntie', 'Kaori Momoi': 'Mother', 'Zoe Weizenbaum': 'Young Pumpkin', 'David Okihiro': 'Shamisen Teacher', 'Miyako Tachibana': 'Dance Teacher', 'Kotoko Kawamura': 'Granny', 'Karl Yune': 'Koichi', 'Eugenia Yuan': 'Korin'}\"\r\ntt4092422,\"{'Johnny Flynn': 'Arthur', 'Lydia Wilson': 'Vida', 'Ellie Kendrick': 'Helen', 'Al Weaver': 'Adam Berliner', 'Juliet Stevenson': 'Ethel', 'Henry Goodman': 'Levi', 'Jessica Gunning': 'Emily', 'Alex Lanipekun': 'Llion', 'Matt Barber': \"\"Vida's Ex Lover\"\", 'Edward Akrout': 'Simon', 'Remy Beasley': 'Brenda       (as Remy Beasly)', 'Sharon Morgan': 'Sara', 'Joelle Koissi': 'Art Gallery Goer', 'Daniel Eghan': 'Family Member', 'Hedydd Dylan': 'Anwyn'}\"\r\ntt2798920,\"{'Natalie Portman': 'Lena', 'Benedict Wong': 'Lomax', 'Sonoya Mizuno': 'Humanoid & Katie (Med Student)', 'David Gyasi': 'Daniel', 'Oscar Isaac': 'Kane', 'John Schwab': 'Paramedic', 'Jennifer Jason Leigh': 'Dr Ventress', 'Gina Rodriguez': 'Anya Thorensen', 'Tuva Novotny': 'Cass Sheppard', 'Tessa Thompson': 'Josie Radek', 'Sammy Hayman': 'Mayer', 'Josh Danford': 'Shelley', 'Kristen McGarrity': 'Lena Double'}\"\r\ntt7575702,{}\r\ntt4953610,\"{'Alana Chester': 'Kacie', 'Paul Cross': 'Mayor Densmore', 'Tomas Decurgez': 'Mark', 'Sherry Driggs': 'Crystal', 'Steve Jacques': 'Bruce', 'Sophia Louisa': 'Maria', 'Jim Marshall': 'Craig', 'Tom McLaren': 'Chris Carter', 'David Mendoza': 'Manny', \"\"Cara O'Brien\"\": \"\"Jennifer       (as Carolyn O'Brien)\"\", 'Phil Pierce': 'Phil', 'Art Roberts': 'Officer Morrison', 'Dean Testerman': 'Detective Richardson', 'Jovita Trujillo': 'Stacey'}\"\r\ntt0114608,\"{'John Kassir': 'Crypt Keeper       (voice)', 'Billy Zane': 'The Collector', 'William Sadler': 'Brayker', 'Jada Pinkett Smith': 'Jeryline       (as Jada Pinkett)', 'Brenda Bakke': 'Cordelia', 'CCH Pounder': 'Irene', 'Dick Miller': 'Uncle Willy', 'Thomas Haden Church': 'Roach', 'John Schuck': 'Sheriff Tupper', 'Gary Farmer': 'Deputy Bob Martel', 'Charles Fleischer': 'Wally Enfield', 'Tim DeZarn': 'Homer       (as Tim deZarn)', 'Sherrie Rose': 'Wanda', \"\"Ryan O'Donohue\"\": \"\"Danny       (as Ryan Sean O'Donohue)\"\", 'Tony Salome': 'Sirach'}\"\r\ntt4953610,\"{'Alana Chester': 'Kacie', 'Paul Cross': 'Mayor Densmore', 'Tomas Decurgez': 'Mark', 'Sherry Driggs': 'Crystal', 'Steve Jacques': 'Bruce', 'Sophia Louisa': 'Maria', 'Jim Marshall': 'Craig', 'Tom McLaren': 'Chris Carter', 'David Mendoza': 'Manny', \"\"Cara O'Brien\"\": \"\"Jennifer       (as Carolyn O'Brien)\"\", 'Phil Pierce': 'Phil', 'Art Roberts': 'Officer Morrison', 'Dean Testerman': 'Detective Richardson', 'Jovita Trujillo': 'Stacey'}\"\r\ntt7043070,\"{'Katrina Ann Volonnino': 'Mackenzie', 'Becka Adams': \"\"(segment 'Alone')\"\", 'Jack Egber': \"\"Ryan (segment 'Pieces of the Heart')\"\", 'Holgie Forrester': \"\"Tina (segment 'Pieces of the Heart')\"\", 'Kalyna Leigh': \"\"(segment 'The Dweller')\"\", 'Kirsten Livie': '(as Kristen Livie-Primero)', 'Tessa Netting': \"\"(segment 'The Dweller')\"\", 'Brock Powell': \"\"(segment 'The Dweller')\"\", 'Jeff Prewitt': \"\"(segment 'Toothbrush')\"\"}\"\r\ntt0455760,\"{'Ryan Kwanten': 'Jamie Ashen', 'Amber Valletta': 'Ella Ashen', 'Donnie Wahlberg': 'Det. Lipton', 'Michael Fairman': 'Henry Walker', 'Joan Heney': 'Marion Walker', 'Bob Gunton': 'Edward Ashen', 'Laura Regan': 'Lisa Ashen', 'Dmitry Chepovetsky': 'Richard Walker', 'Judith Roberts': 'Mary Shaw', 'Keir Gilchrist': 'Young Henry', 'Steven Taylor': 'Michael Ashen', 'David Talbot': 'Priest', 'Steve Adams': '1941 Detective', 'Shelley Peterson': \"\"Lisa's Mom\"\", 'Enn Reitel': 'Billy       (voice)'}\"\r\ntt5886046,\"{'Taylor Russell': 'Zoey Davis', 'Logan Miller': 'Ben Miller', 'Jay Ellis': 'Jason Walker', 'Tyler Labine': 'Mike Nolan', 'Deborah Ann Woll': 'Amanda Harper', 'Nik Dodani': 'Danny Khan', 'Yorick van Wageningen': 'Games Master WooTan Yu', 'Cornelius Geaney Jr.': 'College Professor', 'Russell Crous': \"\"Charlie - Jason's Assistant\"\", 'Bart Fouche': \"\"Gary - Ben's Boss\"\", 'Jessica Sutton': \"\"Allison - Zoey's Roommate\"\", 'Paul Hampshire': 'Hazmat One', 'Vere Tindale': 'Minos Security Guard /              Hazmat Two', 'Kenneth Fok': 'Detective Li', 'Caely-Jo Levy': 'Nurse       (as Caely Jo Levy)'}\"\r\ntt5941692,\"{'Gina Rodriguez': 'Gloria', 'Thomas Dekker': 'Makeup Supervisor', 'Vivian Chan': 'Fashion Designer', 'Barbarella Pardo': 'MX Customs Officer', 'Cristina Rodlo': 'Suzu', 'Sebastián Cano': 'Chava       (as Sebastian Cano Echegollen)', 'Gaby Orihuela': 'Pageant Coordinator', 'Damián Alcázar': 'Chief Saucedo', 'Ricardo Abarca': 'Poyo', 'Ismael Cruz Cordova': 'Lino       (as Ismael Cruz Córdova)', 'Erick Delgadillo': 'Tucán       (as Erick Rene Delgadillo Urbina)', 'Mikhail Plata': 'Chivo', 'Jorge Humberto Millan Mardueño': 'Ortiz', 'Job Sarmiento': 'Officer at Club', 'Roberto Sosa': 'Police Officer'}\"\r\ntt3080844,{'Gennadiy Mokhnenko': 'Himself'}\r\ntt5160154,\"{'Russell Tovey': 'Jason', 'Arinzé Kene': 'Ade       (as Arinze Kene)', 'Lisa McGrillis': 'Lyndsey', 'Nico Mirallegro': 'Harry', 'Rory J. Saper': 'Bellboy       (as Rory Saper)', 'Danielle Meehan': 'Voice Artist       (voice)', 'Jonathan Fitzmaurice': 'Voice Artist       (voice)', 'Jonathan Gaida': 'Voice Artist       (voice)'}\"\r\ntt6205872,\"{'Odessa Young': 'Lily', 'Abra': 'Em', 'Suki Waterhouse': 'Sarah', 'Hari Nef': 'Bex', 'Colman Domingo': 'Principal Turrell', 'Danny Ramirez': 'Diamond', 'Joel McHale': 'Nick Mathers', 'Maude Apatow': 'Grace', 'Cody Christian': 'Johnny', 'Bill Skarsgård': 'Mark', 'Cullen Moss': 'Mayor Bartlett', 'Bella Thorne': 'Reagan', 'Kelvin Harrison Jr.': 'Mason', 'Anika Noni Rose': 'Nance', 'Jeff Pope': 'Officer Richter'}\"\r\ntt0864835,\"{'Ty Burrell': 'Mr. Peabody       (voice)', 'Max Charles': 'Sherman       (voice)', 'Lauri Fraser': 'Marie Antoinette /              Egyptian Woman       (voice)', 'Guillaume Aretos': 'Robespierre       (voice)', 'Pat Musick': 'Teacher       (voice) (as Patrice A. Musick)', 'Ariel Winter': 'Penny Peterson       (voice)', 'Karan Brar': 'Mason       (voice)', 'Joshua Rush': 'Carl       (voice) (as Josh Rush)', 'Stephen Tobolowsky': 'Principal Purdy       (voice)', 'Allison Janney': 'Ms. Grunion       (voice)', 'Dennis Haysbert': 'Judge       (voice)', 'Stephen Colbert': 'Paul Peterson       (voice)', 'Leslie Mann': 'Patty Peterson       (voice)', 'Zach Callison': 'King Tut       (voice)', 'Steve Valentine': 'Ay       (voice)'}\"\r\ntt2582784,\"{'Zoey Deutch': 'Erica Vandross', 'Kathryn Hahn': 'Laurie Vandross', 'Tim Heidecker': 'Bob Sherman', 'Adam Scott': 'Will Jordan', 'Joey Morgan': 'Luke Sherman', 'Dylan Gelula': 'Kala', 'Maya Eshet': 'Claudine', 'Eric Edelstein': 'Dale Cotter', 'Romy Byrne': 'Alli Whitman', 'Liz Mohun': 'Waitress #1', 'Kee Broussard': 'Waitress #2', 'Alison White': \"\"Claudine's Mom\"\", 'Alex Marshall-Brown': 'Cop       (as Alex Marshall Brown)', 'Joel Ezra Hebner': 'Highway Patrol       (as Joel Hebner)', 'Rickie Peete': 'Guard       (as Rickie Montaldo Peete)'}\"\r\ntt0245429,\"{'Rumi Hiiragi': 'Chihiro Ogino /              Sen       (voice)', 'Miyu Irino': 'Haku       (voice)', 'Mari Natsuki': 'Yubaba /              Zeniba       (voice)', 'Takashi Naitô': 'Akio Ogino       (voice)', 'Yasuko Sawaguchi': 'Yûko Ogino       (voice)', 'Tatsuya Gashûin': 'Aogaeru       (voice)', 'Ryûnosuke Kamiki': 'Bô       (voice)', 'Yumi Tamai': 'Rin       (voice)', 'Yô Ôizumi': 'Bandai-gaeru       (voice)', 'Koba Hayashi': 'Kawa no Kami       (voice)', 'Tsunehiko Kamijô': 'Chichiyaku       (voice)', 'Takehiko Ono': 'Aniyaku       (voice)', 'Bunta Sugawara': 'Kamajî       (voice)', 'Shigeru Wakita': '(voice)', 'Shirô Saitô': '(voice)'}\"\r\ntt5912454,\"{'Mark Duplass': 'Jim', 'Sarah Paulson': 'Amanda', 'Clu Gulager': 'Waynie', 'James Andrews': 'Background', 'Harris Benbury': 'Background', 'Daniel Brooks': 'Background', 'Mary Brooks': 'Background', 'Bill Greer': 'Background', 'Cindy Greer': 'Background', 'Ana Iovine': 'Background', 'Leo Munoz': 'Background', 'Loretta Munoz': 'Background', 'Brady Rice': 'Background', 'Karen Rice': 'Background'}\"\r\ntt0424095,\"{'Hugh Jackman': 'Roddy       (voice)', 'Kate Winslet': 'Rita       (voice)', 'Ian McKellen': 'The Toad       (voice)', 'Jean Reno': 'Le Frog       (voice)', 'Bill Nighy': 'Whitey       (voice)', 'Andy Serkis': 'Spike       (voice)', 'Shane Richie': 'Sid       (voice)', 'Kathy Burke': \"\"Rita's Mum       (voice)\"\", 'David Suchet': \"\"Rita's Dad       (voice)\"\", 'Miriam Margolyes': \"\"Rita's Grandma       (voice)\"\", 'Rachel Rawlinson': 'Tabitha       (voice)', 'Susan Duerden': 'Mother       (voice)', 'Miles Richardson': 'Father       (voice)', 'John Motson': 'Football Commentator       (voice)', 'Douglas Weston': 'Newspaper Seller       (voice)'}\"\r\ntt2518848,\"{'Casper Van Dien': 'Nathan Sims', 'Michael Beach': 'Simon Caprisi', 'Sarah Lieving': 'Mona Sims', 'Bryan Head': 'Johnny Sims', 'Keith Meriweather': 'Captain Wright', 'Chad Brummett': 'Gage', 'James Lawrence Sicard': 'Specialist Tudor       (as James Sicard)', \"\"Dale O'Malley\"\": 'Tech Oxenberg', 'Hayley Derryberry': 'Tech Lewis', 'Alex Knight': 'Sergeant Gentile', 'Jeremiah Wood': 'Science Tech #1       (as Jeremiah Z. Wood)', 'Lawrence Kruckeberg': \"\"Science Tech #2       (as Lawrence 'Law' Kruckeberg)\"\", 'Stephen Turselli': 'Science Tech #3', 'Gerard Pitpitan': 'Science Tech #4', 'Kim Trujillo': 'Reporter'}\"\r\ntt0120587,\"{'Woody Allen': 'Z       (voice)', 'Dan Aykroyd': 'Chip       (voice)', 'Anne Bancroft': 'Queen       (voice)', 'Jane Curtin': 'Muffy       (voice)', 'Danny Glover': 'Barbatus       (voice)', 'Gene Hackman': 'Mandible       (voice)', 'Jennifer Lopez': 'Azteca       (voice)', 'John Mahoney': 'Drunk Scout       (voice)', 'Paul Mazursky': 'Psychologist       (voice)', 'Grant Shaud': 'Foreman       (voice)', 'Sylvester Stallone': 'Weaver       (voice)', 'Sharon Stone': 'Bala       (voice)', 'Christopher Walken': 'Cutter       (voice)', 'Jim Cummings': 'Additional Voices       (voice)', 'Jerry Sroka': 'Additional Voices       (voice)'}\"\r\ntt3120508,\"{'David DeLuise': 'Dad', 'Kim Little': 'Mom', 'Davis Cleveland': 'Dillon', 'Gerald Webb': 'Columbus       (voice)', 'Natalie Jane': 'KC', 'Kevin Sorbo': 'Quentin', 'Jeremy Mascia': 'Jake', 'Jonathan Nation': 'Anthony', 'Justin Hoffmeister': 'Rob', 'Hooligan': 'Bone the dog', 'Bill Pomeroy': 'Bone       (voice) (as William R. Pomeroy)', 'John Kenward': 'Phil', 'Torpedo': 'Columbus the Dog', 'Kevin Yarbrough': 'Cupcake       (voice)', 'Hitchcock': 'Cupcake the Dog'}\"\r\ntt0110366,\"{'Travis Tedford': 'Spanky', 'Kevin Jamal Woods': 'Stymie', 'Jordan Warkol': 'Froggy', 'Zachary Mabry': 'Porky', 'Ross Bagley': 'Buckwheat       (as Ross Elliot Bagley)', 'Courtland Mead': 'Uh-Huh', 'Sam Saletta': 'Butch', 'Blake Jeremy Collins': 'Woim', 'Blake McIver Ewing': 'Waldo', 'Juliette Brewer': 'Mary Ann', 'Heather Karasek': 'Jane', 'Brittany Ashton Holmes': 'Darla', 'Bug Hall': 'Alfalfa', 'Elmer': 'Himself', 'Petey': 'Himself'}\"\r\ntt6644200,\"{'Emily Blunt': 'Evelyn Abbott', 'John Krasinski': 'Lee Abbott', 'Millicent Simmonds': 'Regan Abbott', 'Noah Jupe': 'Marcus Abbott', 'Cade Woodward': 'Beau Abbott', 'Leon Russom': 'Man in the Woods'}\"\r\ntt1628841,\"{'Liam Hemsworth': 'Jake Morrison', 'Jeff Goldblum': 'David Levinson', 'Jessie T. Usher': 'Dylan Hiller', 'Bill Pullman': 'President Whitmore', 'Maika Monroe': 'Patricia Whitmore', 'Sela Ward': 'President Lanford', 'William Fichtner': 'General Adams', 'Judd Hirsch': 'Julius Levinson', 'Brent Spiner': 'Dr. Brakish Okun', 'Patrick St. Esprit': 'Secretary of Defense Tanner', 'Vivica A. Fox': 'Jasmine Hiller', 'Angelababy': 'Rain Lao', 'Charlotte Gainsbourg': 'Catherine Marceaux', 'Deobia Oparei': 'Dikembe Umbutu       (as DeObia Oparei)', 'Nicolas Wright': 'Floyd Rosenberg'}\"\r\ntt4520924,\"{'Madison Iseman': 'Pam', 'Jeff Kober': 'Bruce', 'Laura Bell Bundy': 'Lorraine', 'Deirdre Lovejoy': 'Pastor Hodges', 'Catherine Curtin': 'Ruth Ann', 'Auden Thornton': 'Angie', 'Ben Curtis': 'Billy', 'Paten Hughes': 'Kaylee', 'Schann Mobley': \"\"Dyer's Secretary\"\", 'Wynn Reichert': 'Ray', 'Allie Spetalnick': 'Geena', 'Bridget Berger': 'Sophie', 'Kristina L. Ives': 'Terry', 'Jon Arthur': 'Sheriff Stevens', 'Libby Barnes': 'Karen'}\"\r\ntt1343092,\"{'Lisa Adam': 'Weeping /              Singing Woman', 'Frank Aldridge': \"\"Well Dressed Male Witness - Wilson's Garage\"\", 'Amitabh Bachchan': 'Meyer Wolfsheim', 'Steve Bisley': 'Dan Cody', 'Richard Carter': 'Herzog', 'Jason Clarke': 'George Wilson', 'Adelaide Clemens': 'Catherine', 'Vince Colosimo': 'Michaelis', 'Max Cullen': 'Owl Eyes', 'Mal Day': 'The Boss-Probity Trust', 'Elizabeth Debicki': 'Jordan Baker', 'Leonardo DiCaprio': 'Jay Gatsby', 'Joel Edgerton': 'Tom Buchanan', 'Emmanuel Ekwenski': 'Jazz Player', 'Eden Falk': 'Mr. McKee'}\"\r\ntt3626442,\"{'David Attenborough': 'Himself - Opening sequence voice       (voice)', 'Björk': 'Herself'}\"\r\ntt3986978,\"{'Julie Adams': 'Herself', 'Damon Albarn': 'Himself', 'Fred C. Caruso': 'Himself', 'Todd Colombo': 'Himself', 'Satya De La Manitou': 'Himself', 'Samantha Fuller': 'Herself', 'Stella Garcia': 'Herself', 'Frank Gehry': 'Himself', 'Michael Goodwin': 'Himself', 'Michael Gruskoff': 'Himself', 'Jamie Hewlett': 'Himself', 'Dennis Hopper': 'Himself       (archive footage)', 'Brian Kehew': 'Himself', 'Yasmine Kittles': 'the Beautiful Young Woman', 'Barbara Lamelza': 'Herself'}\"\r\ntt1210166,\"{'Brad Pitt': 'Billy Beane', 'Jonah Hill': 'Peter Brand', 'Philip Seymour Hoffman': 'Art Howe', 'Robin Wright': 'Sharon', 'Chris Pratt': 'Scott Hatteberg', 'Stephen Bishop': 'David Justice', 'Reed Diamond': 'Mark Shapiro', 'Brent Jennings': 'Ron Washington', 'Ken Medlock': 'Grady Fuson', 'Tammy Blanchard': 'Elizabeth Hatteberg', 'Jack McGee': 'John Poloni', 'Vyto Ruginis': 'Pittaro', 'Nick Searcy': 'Matt Keough', 'Glenn Morshower': 'Ron Hopkins', 'Casey Bond': 'Chad Bradford'}\"\r\ntt2401878,\"{'David Thewlis': 'Michael Stone       (voice)', 'Jennifer Jason Leigh': 'Lisa Hesselman       (voice)', 'Tom Noonan': 'Everyone else       (voice)'}\"\r\ntt2385752,\"{'Tom Riley': 'Adrian', 'Freya Mavor': 'Natalie', 'Jessie Cave': 'Kerry', 'Steven Mackintosh': 'Lenny', 'Sorcha Cusack': 'Mary', 'Josh Whitehouse': 'Liam', 'Daisy Bevan': 'Layla', 'Will Merrick': 'Olly', 'Matt Milne': 'Gus', 'Caroline Boulton': 'Fretful Mother', 'Tallulah Haddon': 'Holly       (as Tallulah Rose Haddon)', 'Yinka Awoni': 'Music Executive', 'Emma Bryant': 'Emma'}\"\r\ntt1230168,\"{'Greg Kinnear': 'Ron Hall', 'Renée Zellweger': 'Debbie Hall', 'Djimon Hounsou': 'Denver Moore', 'Jon Voight': 'Earl', 'Olivia Holt': 'Regan', 'Austin Filson': 'Carson', 'Geraldine Singer': 'Tommye', 'Daniel Zacapa': 'Julio', 'Dana Gourrier': 'Willow', 'Thomas Francis Murphy': 'Chef Jim', 'Ann Mahoney': 'Clara', 'Theodus Crane': 'Tiny', 'David Dino Wells Jr.': 'Mister       (as Dino Wells)', 'Pedro Lucero': 'Killer', 'Mary Hunter Johnston': 'Little Girl'}\"\r\ntt2368619,\"{'Idris Elba': 'Sean Briar', 'Richard Madden': 'Michael Mason', 'Charlotte Le Bon': 'Zoe', 'Kelly Reilly': 'Karen Dacre', 'José Garcia': 'Victor Gamieux', 'Thierry Godard': 'Rafi Bertrand', 'Vincent Londez': 'Yannick Bertrand', 'Arieh Worthalter': 'Jean', 'Mohamed Makhtoumi': 'Christophe', 'Théo Costa-Marini': 'Xavier       (as Théo Costa Marini)', 'Jérôme Gaspard': 'Yves', 'Ismaël Sy Savané': 'Serge       (as Ismael Sy Savane)', 'James Stewart': 'Henri', 'James Cox': 'Pierre', 'James Harris': 'Marcel'}\"\r\ntt5081618,\"{'Anna Luca Biani': 'Natia Orbeliani       (as Anna Biani)', 'Bai Ling': 'Lilly', 'Michael Madsen': 'Detective Brennan', 'Konstantin Kryukov': 'Sasha', 'Rob Nilsson': 'Ruthven', 'Kato Kaelin': 'Thaddeus Wilson', 'Bailey Coppola': 'Luke', 'Bayra Bela': 'Aria       (as Bela Flor)', 'Nino Bugeshashvili': 'Nutsa the Interiewer', 'Miranda Butskhrikhidze': 'Aerialist', 'Fontana Butterfield': 'Mary', 'Joseph Coleman': 'Rico', 'Spencer Davie': 'Hipster', 'Natalia Diasamibze': 'Dedika Orbeliani', 'Nathanael Foster': 'Bartender'}\"\r\ntt6857166,\"{'Diane Keaton': 'Diane', 'Jane Fonda': 'Vivian', 'Candice Bergen': 'Sharon', 'Mary Steenburgen': 'Carol', 'Andy Garcia': 'Mitchell', 'Craig T. Nelson': 'Bruce', 'Don Johnson': 'Arthur', 'Ed Begley Jr.': 'Tom', 'Richard Dreyfuss': 'George', 'Wallace Shawn': 'Dr. Derek', 'Alicia Silverstone': 'Jill', 'Katie Aselton': 'Adrianne', 'Mircea Monroe': 'Cheryl', 'Tommy Dewey': 'Chris', 'John Shartzer': 'Andrew'}\"\r\ntt5338644,\"{'Isabelle Huppert': 'Marie Géquil /              Madame Hyde', 'Romain Duris': 'Le proviseur', 'José Garcia': 'Pierre Géquil', 'Adda Senani': 'Malik', 'Guillaume Verdier': 'Le stagiaire', 'Patricia Barzyk': 'La voisine', 'Pierre Léon': \"\"L'inspecteur\"\", 'Roxane Arnal': 'La déléguée de classe 1', 'Angèle Metzger': 'La déléguée de classe 2', 'Belkacem Lalaoui': 'Belkacem', 'Jamel Barbouche': 'Le père de Malik', 'Gernina Mombili': 'Fille TPE 1', 'Sanaa El Morsali': 'Fille TPE 2', 'Youssouf Diagouraga': 'Youssouf', 'Charlotte Véry': 'La prof de français'}\"\r\ntt0318155,\"{'Brendan Fraser': 'DJ Drake /              Himself /              Voice of Tasmanian Devil and She-Devil', 'Jenna Elfman': 'Kate', 'Steve Martin': 'Mr. Chairman', 'Timothy Dalton': 'Damien Drake', 'Heather Locklear': 'Dusty Tails', 'Joan Cusack': 'Mother', 'Bill Goldberg': 'Mr. Smith', 'Don Stanton': 'Mr. Warner', 'Dan Stanton': \"\"Mr. Warner's Brother\"\", 'Dick Miller': 'Security Guard', 'Roger Corman': 'Hollywood Director', 'Kevin McCarthy': 'Dr. Bennell', 'Jeff Gordon': 'Himself', 'Matthew Lillard': 'Himself', 'Mary Woronov': 'Acme VP, Bad Ideas'}\"\r\ntt2991532,\"{'Marissa Lynne Johnson': 'Bell Witch', 'Laura Alexandra Ramos': 'Lynn'}\"\r\ntt0093756,\"{'Steve Guttenberg': 'Mahoney', 'Bubba Smith': 'Hightower', 'Michael Winslow': 'Jones', 'David Graf': 'Tackleberry', 'Tim Kazurinsky': 'Sweetchuck', 'Sharon Stone': 'Claire Mattson', 'Leslie Easterbrook': 'Callahan', 'Marion Ramsey': 'Hooks', 'Lance Kinsey': 'Proctor', 'G.W. Bailey': 'Capt. Harris', 'Bobcat Goldthwait': 'Zed', 'George Gaynes': 'Commandant Lassard', 'Derek McGrath': 'Butterworth', 'Scott Thomson': 'Copeland', 'Billie Bird': 'Mrs. Feldman'}\"\r\ntt6981634,\"{'Tate Ellington': 'Alex', 'Tara Summers': 'Penelope', 'Victoria Clark': 'Shirley', 'Harris Yulin': 'Charles', 'Drew Powell': 'Donny Softlicker', 'Douglas Hodge': 'Dr. Rock Positano', 'Adepero Oduye': 'Anais', 'Dree Hemingway': 'Lisa Leonard', 'Jack Dishel': 'Kale', 'Ronald Guttman': 'Dan Tanner', 'Wendy Makkena': 'Sandy Tanner', 'Adelind Horan': 'Hope', 'Austin Pendleton': 'Raphael', 'Marceline Hugot': \"\"Donny's Mom\"\", 'Migs Govea': 'Tall Dark Strange Guy'}\"\r\ntt6981634,\"{'Tate Ellington': 'Alex', 'Tara Summers': 'Penelope', 'Victoria Clark': 'Shirley', 'Harris Yulin': 'Charles', 'Drew Powell': 'Donny Softlicker', 'Douglas Hodge': 'Dr. Rock Positano', 'Adepero Oduye': 'Anais', 'Dree Hemingway': 'Lisa Leonard', 'Jack Dishel': 'Kale', 'Ronald Guttman': 'Dan Tanner', 'Wendy Makkena': 'Sandy Tanner', 'Adelind Horan': 'Hope', 'Austin Pendleton': 'Raphael', 'Marceline Hugot': \"\"Donny's Mom\"\", 'Migs Govea': 'Tall Dark Strange Guy'}\"\r\ntt3597400,\"{'Grant Baldwin': 'Himself', 'Jenny Rustemeyer': 'Herself', 'Dana Gunders': 'Herself - Interviewee', 'Jonathan Bloom': 'Himself - Interviewee', 'Tristram Stuart': 'Himself - Interviewee', 'Nick Baldwin': 'Himself', 'Delaney Zayac': 'Himself - Interviewee', 'Harold McClarty': 'Himself - Interviewee', 'Chris Holland': 'Himself - Interviewee', 'Cameron Anderson': 'Himself - Interviewee', 'Dana Hauser': 'Herself - Interviewee', 'Mick Baldwin': 'Himself', 'Linda Baldwin': 'Herself', 'Spencer Whitney': 'Himself', 'David Lavallee': 'Himself'}\"\r\ntt6149802,\"{'Renée Felice Smith': 'Beck', 'Matt Bush': 'Liam', 'Nelson Franklin': 'Buddy', 'Floyd Foster Jr.': 'Charlie', 'Brandon Kyle Goodman': 'Franklin', 'Georgia Mischak': 'Sara', 'Alexander Tovar': 'Shane', 'Owain Rhys Davies': 'Bobby', 'Mary Gillis': 'Mary the Waitress', 'Natasha Loring': 'Eden       (voice)', 'Eric Christian Olsen': 'Chippy       (voice)', 'Amy Hessler': 'Eden /              Burlesque Dancer', 'Sally Struthers': \"\"Liam's Mom       (voice)\"\", 'Linda Hunt': 'Dr. Lipschweiss', 'Jana Kleyn': 'Coffee Shop Patron /              Salon-goer'}\"\r\ntt5167174,\"{'Linas Phillips': 'Shonzi', 'Melanie Lynskey': 'Lindsay', 'Timm Sharp': 'Todd', 'Davie-Blue': 'Gretchen', 'Wil Gelin': 'Cat Caller #1', 'Oscar Camacho': 'Cat Caller #2', 'Jesse Villacis': 'Cat Caller #3', 'Tobin Bell': 'Peter', 'Artemis Pebdani': 'Justine', 'Chaz The Dog': 'Pizza', 'Lolita The Dog': 'Pizza', 'Lauren Weedman': 'Nina', 'Reagan Yates': 'Lilly', 'Austin Fryberger': 'Jake', 'Ian Michaels': 'Attorney'}\"\r\ntt0087928,\"{'Steve Guttenberg': 'Carey Mahoney', 'Kim Cattrall': 'Karen Thompson', 'G.W. Bailey': 'Lt. Harris', 'Bubba Smith': 'Moses Hightower', 'Donovan Scott': 'Leslie Barbara', 'George Gaynes': 'Commandant Lassard', 'Andrew Rubin': 'George Martín', 'David Graf': 'Tackleberry', 'Leslie Easterbrook': 'Sgt. Callahan', 'Michael Winslow': 'Larvell Jones', 'Debralee Scott': 'Mrs. Fackler', 'Bruce Mahler': 'Doug Fackler', 'Ted Ross': 'Captain Reed', 'Scott Thomson': 'Chad Copeland', 'Brant von Hoffman': 'Kyle Blankes       (as Brant Van Hoffman)'}\"\r\ntt1791528,\"{'Joanna Newsom': 'Sortilège', 'Katherine Waterston': 'Shasta Fay Hepworth', 'Joaquin Phoenix': 'Larry \"\"Doc\"\" Sportello', 'Jordan Christian Hearn': 'Denis', 'Taylor Bonin': 'Ensenada Slim', 'Jeannie Berlin': 'Aunt Reet', 'Josh Brolin': 'Lt. Det. Christian F. \"\"Bigfoot\"\" Bjornsen', 'Eric Roberts': 'Michael Z. Wolfmann', 'Serena Scott Thomas': 'Sloane Wolfmann', 'Maya Rudolph': 'Petunia Leeway', 'Martin Dew': 'Dr. Buddy Tubeside', 'Michael Kenneth Williams': 'Tariq Khalil', 'Hong Chau': 'Jade', 'Shannon Collis': 'Bambi', 'Christopher Allen Nelson': 'Glenn Charlock'}\"\r\ntt3084904,\"{\"\"Sonja O'Hara\"\": 'Calpurnia Dylan', 'Hassan Johnson': 'Barnard', 'Rutanya Alda': 'Barbara', 'Jaspal Binning': 'Max Singh', 'Jay Gillespie': 'Kelly Cole', 'Karin Agstam': 'Fiona Ryan', 'Katie Morrison': 'Ellen Ray', 'Laura Poe': 'Isabella West', 'Vincent Petrosini': 'Carl', 'Tom Wardach': 'Darren Dylan', 'Julie Hays': 'Harminia Jones-Dylan', 'Vivian Chiu': 'Jenna Leary', 'Henrik Kromann': 'Dr. Alfred Rabinowitz', 'Michael Wieser': 'Burke Stevens', 'Gillian Abbott': 'Amy, Egg Donor'}\"\r\ntt2439946,\"{'Alex Carter': 'John', 'Monica Keena': 'Tessa', 'Alex Arleo': 'Roger', 'Alex Ball': 'Welker', 'Victoria Barabas': 'Oates', 'Ty Barnett': 'Amato', 'David Bittick': 'Guard', 'Adam Burch': 'Purchase', 'Hector Luis Bustamante': 'Bruce       (as Hector Bustamante)', 'Christianna Carmine': 'Lynn', 'Marcus Choi': 'Williams', 'Emily Davenport': 'Jennifer', 'Evan Dumouchel': 'David', 'Susannah Hart Jones': 'Kiley', 'Scott Hoxby': 'Admiral Wallace'}\"\r\ntt5657846,\"{'Will Ferrell': 'Brad', 'Mark Wahlberg': 'Dusty', 'Mel Gibson': 'Kurt', 'John Lithgow': 'Don', 'Linda Cardellini': 'Sara', 'Alessandra Ambrosio': 'Karen', 'Owen Vaccaro': 'Dylan       (as Owen Wilder Vaccaro)', 'Scarlett Estevez': 'Megan', 'Didi Costine': 'Adrianna', 'Connor Wise': 'Griffy', 'Daphne Wise': 'Griffy', 'Dylan Wise': 'Griffy', 'John Cena': 'Roger', 'Andrea Anders': 'Principal Hayes', 'Kyle Tristan': 'Christmas Pageant Kid       (as Kyle Tristan Wakefield)'}\"\r\ntt5700672,\"{'Yoo Gong': 'Seok-woo', 'Yu-mi Jung': 'Seong-kyeong', 'Dong-seok Ma': 'Sang-hwa', 'Su-an Kim': 'Soo-an', 'Eui-sung Kim': 'Yon-suk', 'Woo-sik Choi': 'Yong-guk', 'Sohee': 'Jin-hee       (as Ahn So-hee)', 'Soo-jung Ye': 'In-gil', 'Myung-shin Park': 'Jong-gil       (as Myung-sin Park)', 'Gwi-hwa Choi': 'Homeless Man', 'Seok-yong Jeong': 'Captain of KTX', 'Hyuk-jin Jang': 'Ki-chul', 'Seong-soo Han': 'Train Team Leader', 'Do-im Woo': 'Cabin Attendant Min-ji', 'Hye-Yeong Moon': 'Cabin Attendant'}\"\r\ntt3540136,\"{'Jing Wu': 'Leng Feng', 'Nan Yu': 'Long Xiaoyun', 'Dahong Ni': 'Min Deng', 'Kevin Lee': 'Mad Cow', 'Zhu Xiao': 'Wu Ji', 'Dongyan Ma': 'Li Zhijun       (as Qiang Ma)', 'Zhaoqi Shi': 'Shi Qingsong', 'Zibin Fang': 'Hostage', 'Sen Wang': '38Shi', 'Tengyuan Liu': 'Yu Fei', 'Yongda Zhang': 'Shao Bing', 'Xiaolong Zhang': 'Ban Zhaun', 'Yi Zhao': 'Chief of Staff', 'Zi Liang': 'Eagle', 'Guangping Guo': 'Father of Feng'}\"\r\ntt3922754,\"{'Tom Stedham': 'Sgt. Lance Dawson', 'Bill Voorhees': 'Private C.K. Luinstra', 'Tino Struckmann': 'Major Heston Zeller', 'Larry Gamell Jr.': 'Sgt. Nathaniel Rose       (as Lawrence C. Gamell Jr.)', 'Lauren Vera': 'Sister Claudette', 'Yaron Urbas': 'Corporal Michael Griffin', 'Analiese Anderson': 'Mother Mary', 'Trey Hough': 'Sgt. Freddie McNay', 'Elvin Manges': 'Corporal Donald Gunderson', 'Kyle Golden': 'Private Richard Somers', 'Eric C. Schmitz': 'Sgt. Erik Gretsch       (as Eric Schmitz)', 'Jenna Klug': 'Amelie', 'Carl J. Klug': 'Pierre', 'Colleen Sinor': 'Peasant Mother', 'James Poule': 'Peasant Father'}\"\r\ntt6015706,\"{'Dong-xue Li': 'Yan Jian', 'Mike Tyson': 'Kabbah', 'Janicke Askevold': 'Susanna', 'Li Ai': 'Ruan Ling', 'Eriq Ebouaney': 'Sheik Asaid', 'Steven Seagal': 'Lauder', 'Zijian Wang': 'Zheng Ming', 'Bryan Byrne': 'Lauder Henchman', 'Sheri Cheng': 'DH Female Representative', 'Anthony Gavard': 'ONU Officer', 'Scotty Gelt': 'Mr. Alexander       (as S.F. Gelt)', 'Marc Philip Goodman': 'Philip       (as Marc P. Goodman)', 'Diana Hübel': 'Lawyer', 'Randall Lowell': 'Mr. Carlos, Director of LK Telecom Group', 'Mekael Turner': \"\"Lauder's Right-hand Man\"\"}\"\r\ntt1068242,\"{'Kenny Wormald': 'Ren', 'Julianne Hough': 'Ariel', 'Dennis Quaid': 'Rev. Shaw Moore', 'Andie MacDowell': 'Vi Moore', 'Miles Teller': 'Willard', 'Ray McKinnon': 'Wes Warnicker', 'Patrick John Flueger': 'Chuck', 'Kim Dickens': 'Lulu Warnicker', 'Ziah Colon': 'Rusty', \"\"Ser'Darius Blain\"\": 'Woody', 'L. Warren Young': 'Andy Beamis', 'Brett Rice': 'Roger Dunbar', 'Maggie Elizabeth Jones': 'Amy Warnicker       (as Maggie Jones)', 'Mary-Charles Jones': 'Sarah Warnicker', 'Enisha Brewster': 'Etta'}\"\r\ntt2186712,\"{'Shiloh Fernandez': 'James', 'Ella Rae Peck': 'Katie', 'Paten Hughes': 'Monica', 'Layla Khosh': 'Sarah       (as Layla Koshnoudi)', 'Christine Evangelista': 'Natalie', 'Cassandra Freeman': 'Anna', 'Helen Rogers': 'Lorraine', 'Stella Maeve': 'Lily', 'Natalia Dyer': 'Marie', 'Ebonee Noel': 'Sade', 'Addison Timlin': 'Rapunzel', 'Justin Fischer': 'Waiter', 'Ben Perry': 'Buckwheat Groats (Penis Bailey)', 'Joe Koplowitz': \"\"Buckwheat Groats (Lil' Dinky)\"\", 'Brett Davis': 'Grokkq'}\"\r\ntt3261182,\"{'Domenico Nesci': 'The Lonely Italian', 'Mark Chuakay': 'Marquesa', 'Jonathon Aslay': 'Himself', 'Sofiya Bahauch': 'Cafè Patron', 'Jamie Baker': 'Jamie', 'Manuel Bonesso': 'Art Student', 'Vanessa Born': 'Vanessa', 'Kelvin Brown': 'Big Pretty', 'Mirela Burke': 'Meredith', 'Grace Cassidy': 'Cafè Patron', 'Judy Chen': 'Annie', 'Byong Chan Choi': 'Woman on the Bench', 'Chui Kwi Boon Choi': 'Man on the Bench', 'Georgia Dolenz': 'Georgia', 'Beatrix Farber': 'Little League 2'}\"\r\ntt5354458,\"{'Ben Kobold': 'Björn Eriksson', 'Jennifer Mills': 'Britney Big Time', 'Jamie Bragg': 'Jamie Mackie', 'Brian Schroeck': 'Brian', 'Jake Myers': 'Brock', 'Jeremiah Myers': 'Lake Security /              Alien', 'Lara Unnerstall': 'Lake Security 2', 'T.D. Barnes': 'Himself', 'David Liebe Hart': 'Himself', 'Rochelle Davida': 'Elsa Moulton', 'Brian Coleman': 'TV Scientist', 'Traci Van Laarhoven Myers': 'Twins', 'Toni Van Laarhoven': 'Twins', 'Joe Ferrell': 'Joe the Executive', 'Andy Seifert': 'Andrzej Stratos'}\"\r\ntt5354458,\"{'Ben Kobold': 'Björn Eriksson', 'Jennifer Mills': 'Britney Big Time', 'Jamie Bragg': 'Jamie Mackie', 'Brian Schroeck': 'Brian', 'Jake Myers': 'Brock', 'Jeremiah Myers': 'Lake Security /              Alien', 'Lara Unnerstall': 'Lake Security 2', 'T.D. Barnes': 'Himself', 'David Liebe Hart': 'Himself', 'Rochelle Davida': 'Elsa Moulton', 'Brian Coleman': 'TV Scientist', 'Traci Van Laarhoven Myers': 'Twins', 'Toni Van Laarhoven': 'Twins', 'Joe Ferrell': 'Joe the Executive', 'Andy Seifert': 'Andrzej Stratos'}\"\r\ntt2296777,\"{'Kelly Asbury': 'Goons       (voice)', 'Mary J. Blige': 'Irene       (voice)', 'Emily Blunt': 'Juliet       (voice)', 'Julio Bonet': 'Mankini       (voice)', 'Gary Bradbury': 'Barry the Toilet Gnome       (voice)', 'Michael Caine': 'Lord Redbrick       (voice)', 'Gang Chi': 'Video Game Player       (voice)', 'Rosalie Craig': 'Nimrod Captain       (voice)', 'Jamie Demetriou': 'Moriarty       (voice)', 'Johnny Depp': 'Sherlock Gnomes       (voice)', 'Chiwetel Ejiofor': 'Dr. Watson       (voice)', 'Dexter Fletcher': 'Gargoyle Reggie       (voice)', 'Steve Hamilton Shaw': 'Steve Gnome       (voice)', 'Leyla Hobart': 'Policewoman       (voice)', 'James Hong': 'Salt Shaker       (voice)'}\"\r\ntt4701182,\"{'Hailee Steinfeld': 'Charlie', 'Jorge Lendeborg Jr.': 'Memo', 'John Cena': 'Agent Burns', 'Jason Drucker': 'Otis', 'Pamela Adlon': 'Sally', 'Stephen Schneider': 'Ron', 'Ricardo Hoyos': 'Tripp', 'John Ortiz': 'Dr. Powell', 'Glynn Turman': 'General Whalen', 'Len Cariou': 'Uncle Hank', 'Kollin Holtz': 'Craig', 'Gracie Dzienny': 'Tina', 'Fred Dryer': 'Sheriff Lock', 'Isabelle Ellingson': 'Mean Girlfriend', 'Mika Kubo': 'Mean Girlfriend'}\"\r\ntt6215044,\"{'Jason Tobias': 'Josh', 'Summer Spiro': 'Pam', 'DeJean Brown': 'Earl', 'Paola Menacho': 'Marjorie', 'Hari Williams': 'Greg', 'Gustavo Escobar': 'Ron       (as Gustavo Quiroz Jr.)', 'Arthur Roberts': 'Mel', 'Annabel Barrett': 'Molly', 'Jeff Harms': 'Nick', 'Kevin Young': 'Phil', 'Cedric Jonathan': 'Rob', 'Rickey Alexander Wilson': 'Tom       (as Ricky Wilson Jr.)', 'Paul Statman': 'Dr. Zicree', 'Ronak Gandhi': 'Cern Assistant', 'Roy Abramsohn': 'Ron Livingston'}\"\r\ntt5460416,\"{'Jonathan Rosen': 'Malcolm', 'Lola Kirke': 'Lily', 'Dominic Chianese': 'Bart', 'Joanna Merlin': 'Miriam', 'Rosie Perez': 'Zoe', 'Ellen Barkin': 'Lucy', 'Scott Cohen': 'Mick', 'Merwin Goldsmith': 'Hirsch', 'Sondra James': 'Rose', 'Audrey Turner': 'Katrina', 'Michaela Antonella': 'Teenage Girl', 'Mike Faist': 'Teenage Boy', 'Gurdeep Singh': 'Juice Artisans Manager', 'Alison Wright': 'Therapist', 'Harold Hoffman': 'Melvin'}\"\r\ntt1411238,\"{'Natalie Portman': 'Emma', 'Ashton Kutcher': 'Adam', 'Kevin Kline': 'Alvin', 'Cary Elwes': 'Dr. Metzner', 'Greta Gerwig': 'Patrice', 'Lake Bell': 'Lucy', 'Olivia Thirlby': 'Katie Kurtzman', 'Ludacris': \"\"Wallace       (as Chris 'Ludacris' Bridges)\"\", 'Jake Johnson': 'Eli', 'Mindy Kaling': 'Shira', 'Talia Balsam': 'Sandra Kurtzman', 'Ophelia Lovibond': 'Vanessa', 'Guy Branum': 'Guy', 'Ben Lawson': 'Sam', 'Jennifer Irwin': 'Megan'}\"\r\ntt3715296,\"{'Grey Damon': 'Kevin', 'Bella Dayne': 'Zade', 'Stephen Dorff': 'Hank', 'Dan Fogler': 'Carl', 'James DeBello': 'Steve', 'Kim Allen': 'Sandy', 'James Moses Black': 'Gary', 'Carlos Velazquez': 'Cesar', 'Annalisa Chamberlin': 'Angie', 'Claudio Bellante': 'Clerk', 'Kenneth Kynt Bryan': 'Gay Guy at the Party', 'Theodus Crane': 'Sonny', 'Michelle DeVito': 'Bartender', 'Lara Grice': 'Constance', 'Ryan Charles Griffin': 'Silver Man'}\"\r\ntt5039994,\"{'Kent Osborne': 'Mr. Butler', 'Dylan Sprouse': 'Lucas Ward', 'Rae Gray': 'Becca Vaughn', 'Alycia Delmore': 'Rachel Butler', 'Mitchell Edwards': 'Chris', 'Victoria Zeutzius': 'Paige', 'Chris Bauer': 'Mr. Ward', 'Leslie Thurston': 'Principal Fermont', 'Matthew J. Evans': 'Alex', 'Randall Park': 'Mr. Sheldon', 'Mark Kelly': 'Detective Speck', 'Helen Soraya': 'Mrs. Dubois', 'Robert Longstreet': 'Paul Garrett', 'Brooke Dillman': 'Valerie Lohman', 'Jeanette Maus': 'Nancy'}\"\r\ntt0113957,\"{'Sandra Bullock': 'Angela Bennett', 'Jeremy Northam': 'Jack Devlin', 'Dennis Miller': 'Dr. Alan Champion', 'Diane Baker': 'Mrs. Bennett', 'Wendy Gazelle': 'Imposter', 'Ken Howard': 'Bergstrom', 'Ray McKinnon': 'Dale', 'Daniel Schorr': 'WNN Anchor', 'L. Scott Caldwell': 'Public Defender', 'Robert Gossett': 'Ben Phillips', 'Kristina Krofft': 'Nurse #1', 'Juan Garcia': 'Resort Desk Clerk       (as Juan García)', 'Tony Perez': 'Mexican Doctor', 'Margo Winkler': 'Mrs. Raines', 'Gene Kirkwood': 'Stan Whiteman'}\"\r\ntt2693580,\"{'Lily Rabe': 'Miss Stevens', 'Timothée Chalamet': 'Billy', 'Lili Reinhart': 'Margot', 'Anthony Quintal': 'Sam', 'Oscar Nuñez': 'Principal Alvarez', 'Rob Huebel': 'Walter', 'Larry Bam Hall': 'Stage Manager', 'Noah Gray-Cabey': 'Other Student       (as Noah Gray)', 'Jammie Patton': 'Miss Conway', 'Mike Holley': 'AAA Guy', 'Tracey Wigfield': 'Front Desk Lady       (as Tracey L. Wigfield)', 'Nikhil Pai': 'Waiter', 'Tamir Yardenne': 'George', 'Kristin Slaysman': 'Head Female Judge', 'Temple Dean': 'Male Judge'}\"\r\ntt1869315,\"{'Meredith Monroe': 'Katherine', 'Bonnie Dennison': 'Brooke', 'Michael Welch': 'Denny', 'Parker Coppins': 'Kyle Duncan', 'Donnabella Mortel': 'Dana', 'Amanda Ward': 'Kristin', 'Bill Oberst Jr.': 'Gary', 'Carl Donelson': 'Jose', 'Christina Myhr': 'Pam', 'David Chokachi': 'Walter Duncan', 'Gerald Webb': 'Nate', 'Kaiwi Lyman': 'Frankie       (as Kaiwi Lyman-Mersereau)', 'Tony Nowicki': 'Bryan       (as Tony Christopher)', 'Emily Erarcy': 'Emma Smith', 'Bennie Wilson': 'Samoja'}\"\r\ntt1972591,\"{'Charlie Hunnam': 'Arthur', 'Astrid Bergès-Frisbey': 'The Mage', 'Jude Law': 'Vortigern', 'Djimon Hounsou': 'Bedivere', 'Eric Bana': 'Uther', 'Aidan Gillen': 'Bill', 'Freddie Fox': 'Rubio', 'Craig McGinlay': 'Percival', 'Tom Wu': 'George', 'Kingsley Ben-Adir': 'Wet Stick', 'Neil Maskell': 'Back Lack', 'Annabelle Wallis': 'Maggie', 'Zac Barker': 'Young Arthur 2 yrs', 'Oliver Barker': 'Young Arthur 2 yrs', 'Geoff Bell': 'Mischief John'}\"\r\ntt5716380,\"{'Eliza Taylor': 'Kat Carter /              Meredith', 'Pablo Schreiber': 'Wyatt Rivers', 'Daniel Webber': 'Beaver', 'Ben Feldman': 'Jimmy', 'Lena Headey': 'Ellen', 'Grant Harvey': 'Troy', 'Jazzy De Lisser': 'Gina Anderson', 'Brigitte Kali Canales': 'Rhonda Marquez       (as Brigitte Kali)', 'Allius Barnes': 'Flip', 'Britain Dalton': 'Dean', 'Kandis Fay': 'Sharon', 'T.K. Weaver': 'Nathan', 'Brett Rice': 'Mason', 'Alexandra Manea': 'Layla Rivers', 'JoAnna Rhambo': 'Mrs. Flynn'}\"\r\ntt0081573,\"{'Gene Hackman': 'Lex Luthor', 'Christopher Reeve': 'Superman /              Clark Kent', 'Ned Beatty': 'Otis', 'Jackie Cooper': 'Perry White', 'Sarah Douglas': 'Ursa', 'Margot Kidder': 'Lois Lane', \"\"Jack O'Halloran\"\": 'Non', 'Valerie Perrine': 'Eve Teschmacher', 'Susannah York': 'Lara', 'Clifton James': 'Sheriff', 'E.G. Marshall': 'The President', 'Marc McClure': 'Jimmy Olsen', 'Terence Stamp': 'General Zod', 'Leueen Willoughby': 'Leueen', 'Robin Pappas': 'Alice'}\"\r\ntt1907668,\"{'Nadine Velazquez': 'Katerina Marquez', 'Denzel Washington': 'Whip Whitaker', 'Carter Cabassa': 'Son on Plane', 'Adam C. Edwards': 'Father on Plane       (as Adam Ciesielski)', 'Tamara Tunie': 'Margaret Thomason', 'Brian Geraghty': 'Ken Evans', 'Kelly Reilly': 'Nicole', \"\"Conor O'Neill\"\": 'Kip', 'Charlie E. Schmidt': 'Tiki Pot       (as Charlie E. Schmidt Jr.)', 'Will Sherrod': 'Schecter', 'Boni Yanagisawa': 'Camelia Satou', 'Adam Tomei': 'Fran', 'Dane Davenport': 'Derek Hogue', 'John Crow': 'Field Reporter', 'Bruce Greenwood': 'Charlie Anderson'}\"\r\ntt0185431,\"{'Adam Sandler': 'Nicky', 'Patricia Arquette': 'Valerie Veran', 'Harvey Keitel': 'Dad', 'Rhys Ifans': 'Adrian', \"\"Tommy 'Tiny' Lister\"\": \"\"Cassius       (as Tommy 'Tiny' Lister Jr.)\"\", 'Rodney Dangerfield': 'Lucifer', 'Allen Covert': 'Todd', 'Peter Dante': 'Peter', 'Jonathan Loughran': 'John', 'Robert Smigel': 'Beefy       (voice)', 'Reese Witherspoon': 'Holly', 'Dana Carvey': 'Referee', 'Jon Lovitz': 'Peeper', 'Kevin Nealon': 'Gatekeeper', 'Michael McKean': 'Chief of Police'}\"\r\ntt0096101,\"{'Tim Blaney': 'Johnny 5       (voice)', 'Fisher Stevens': 'Ben Jahveri', 'Michael McKean': 'Fred Ritter', 'Cynthia Gibb': 'Sandy Banatoni', 'Jack Weston': 'Oscar Baldwin', 'Dee McCafferty': 'Saunders', 'David Hemblen': 'Jones', 'Don Lake': 'Manic Mike', \"\"Damon D'Oliveira\"\": 'Bones', 'Tito Núñez': 'Zorro       (as Tito Nuñez)', 'Jason Kuriloff': 'Lil Man', 'Robert LaSardo': 'Spooky', 'Lili Francks': 'Officer Mendez', 'Wayne Best': \"\"Officer O'Malley\"\", 'Gerard Parkes': 'Priest       (as Gerry Parkes)'}\"\r\ntt1258972,\"{'RZA': 'Blacksmith', 'Rick Yune': 'Zen Yi, The X-Blade', 'Russell Crowe': 'Jack Knife', 'Lucy Liu': 'Madam Blossom', 'Dave Bautista': 'Brass Body', 'Jamie Chung': 'Lady Silk', 'Cung Le': 'Bronze Lion', 'Byron Mann': 'Silver Lion', 'Daniel Wu': 'Poison Dagger', 'Zhu Zhu': 'Chi Chi', 'Chia-Hui Liu': 'Abbott       (as Gordon Liu)', 'Andrew Ng': 'Senior Monk', 'Kuan Tai Chen': 'Gold Lion', 'Yoyao Hsueh': 'Copper Lion       (as Xue Jing Yao)', 'Telly Liu': 'Iron Lion'}\"\r\ntt0892791,\"{'Mike Myers': 'Shrek       (voice)', 'Eddie Murphy': 'Donkey       (voice)', 'Cameron Diaz': 'Princess Fiona       (voice)', 'Antonio Banderas': 'Puss in Boots       (voice)', 'Julie Andrews': 'Queen       (voice)', 'Jon Hamm': 'Brogan       (voice)', 'John Cleese': 'King       (voice)', 'Walt Dohrn': 'Rumpelstiltskin /              Priest /              Krekraw Ogre       (voice)', 'Jane Lynch': 'Gretched       (voice)', 'Craig Robinson': 'Cookie       (voice)', 'Lake Bell': 'Patrol Witch /              Wagon Witch #2       (voice)', 'Kathy Griffin': 'Dancing Witch /              Wagon Witch #1       (voice)', 'Mary Kay Place': 'Guard Witch       (voice)', 'Kristen Schaal': 'Pumpkin Witch /              Palace Witch       (voice)', 'Meredith Vieira': 'Broomsy Witch       (voice)'}\"\r\ntt3607812,\"{'Jack Black': 'Himself', 'Jim Duggan': 'Himself', 'Mick Foley': 'Himself', 'Todd W. Fulkerson': 'Himself', 'David Golshan': 'Himself', 'Seth Green': 'Himself', 'Keith Elliot Greenberg': 'Himself', 'Bret Hart': 'Himself', 'Jimmy Hart': 'Himself', 'Hulk Hogan': 'Himself', 'Dwayne Johnson': 'Himself', 'Jian Magen': 'Himself', 'Page Magen': 'Himself', 'Greg Oliver': 'Himself', 'Bob Orton Sr.': 'Himself'}\"\r\ntt0448694,\"{'Antonio Banderas': 'Puss in Boots       (voice)', 'Salma Hayek': 'Kitty Softpaws       (voice)', 'Zach Galifianakis': 'Humpty Alexander Dumpty       (voice)', 'Billy Bob Thornton': 'Jack       (voice)', 'Amy Sedaris': 'Jill       (voice)', 'Constance Marie': 'Imelda       (voice)', 'Guillermo del Toro': 'Moustache Man /              Comandante       (voice)', 'Mike Mitchell': 'Andy Beanstalk       (voice)', 'Rich Dietl': 'Bounty Hunter       (voice) (as Rich B. Dietl)', 'Ryan Crego': 'Luis       (voice)', 'Tom Wheeler': 'Bartender /              Mean Boy /              Wagon Driver /              Hotel Owner /              Rodrigo       (voice)', 'Conrad Vernon': 'Raoul /              Soldier       (voice)', 'Tom McGrath': 'Bar Thief       (voice)', 'Bob Joles': 'Giuseppe       (voice)', 'Latifa Ouaou': 'Crazy Woman /              Mean Girl /              Milk Lady /              Little Boy       (voice)'}\"\r\ntt8804688,\"{'Kevin Guthrie': 'Brian', 'Siobhan Reilly': 'Sam', 'Stephen McCole': 'Jeff', 'Sara Vickers': 'Debbie', 'Conor McCarron': 'Eric', 'Cameron Fulton': 'Gavin', 'Jennifer Black': 'Maureen', 'Thomas Wilson': 'Oliver', 'Dolina MacLennan': 'Rose', 'Peter Kelly': 'Arthur', 'Kenneth Grant Ainslie': 'Calum', 'Harrison Nicholls': 'Jake', 'Neil Leiper': 'Simon', 'Simon Weir': 'Stevie Sparkles', 'John McColl': 'Jim'}\"\r\ntt1192628,\"{'Johnny Depp': 'Rango /              Lars       (voice)', 'Isla Fisher': 'Beans       (voice)', 'Abigail Breslin': 'Priscilla       (voice)', 'Ned Beatty': 'Mayor       (voice)', 'Alfred Molina': 'Roadkill       (voice)', 'Bill Nighy': 'Rattlesnake Jake       (voice)', 'Stephen Root': 'Doc /              Merrimack /              Mr. Snuggles       (voice)', 'Harry Dean Stanton': 'Balthazar       (voice)', 'Timothy Olyphant': 'Spirit of the West       (voice)', 'Ray Winstone': 'Bad Bill       (voice)', 'Ian Abercrombie': 'Ambrose       (voice)', 'Gil Birmingham': 'Wounded Bird       (voice)', 'James Ward Byrkit': 'Waffles /              Gordy /              Papa Joad /              Cousin Murt /              Curlie /              Knife Attacker /              Rodent Kid       (voice)', 'Claudia Black': 'Angelique       (voice)', 'Blake Clark': 'Buford       (voice)'}\"\r\ntt0120630,\"{'Phil Daniels': 'Fetcher       (voice)', 'Lynn Ferguson': 'Mac       (voice)', 'Mel Gibson': 'Rocky       (voice)', 'Tony Haygarth': 'Mr. Tweedy       (voice)', 'Jane Horrocks': 'Babs       (voice)', 'Miranda Richardson': 'Mrs. Tweedy       (voice)', 'Julia Sawalha': 'Ginger       (voice)', 'Timothy Spall': 'Nick       (voice)', 'Imelda Staunton': 'Bunty       (voice)', 'Benjamin Whitrow': 'Fowler       (voice)'}\"\r\ntt1277953,\"{'Ben Stiller': 'Alex       (voice)', 'Chris Rock': 'Marty       (voice)', 'David Schwimmer': 'Melman       (voice)', 'Jada Pinkett Smith': 'Gloria       (voice)', 'Sacha Baron Cohen': 'Julien       (voice)', 'Cedric the Entertainer': 'Maurice       (voice)', 'Andy Richter': 'Mort       (voice)', 'Tom McGrath': 'Skipper /              First Policeman       (voice)', 'Frances McDormand': 'Captain Chantal Dubois       (voice)', 'Jessica Chastain': 'Gia       (voice)', 'Bryan Cranston': 'Vitaly       (voice)', 'Martin Short': 'Stefano       (voice)', 'Chris Miller': 'Kowalski       (voice)', 'Christopher Knights': 'Private       (voice)', 'Conrad Vernon': 'Mason /              Second Policeman       (voice)'}\"\r\ntt0413267,\"{'Mike Myers': 'Shrek       (voice)', 'Eddie Murphy': 'Donkey       (voice)', 'Cameron Diaz': 'Princess Fiona       (voice)', 'Antonio Banderas': 'Puss in Boots       (voice)', 'Julie Andrews': 'Queen       (voice)', 'John Cleese': 'King       (voice)', 'Rupert Everett': 'Prince Charming       (voice)', 'Eric Idle': 'Merlin       (voice)', 'Justin Timberlake': 'Artie       (voice)', 'Susanne Blakeslee': 'Evil Queen       (voice)', 'Cody Cameron': 'Pinocchio /              Three Pigs       (voice)', 'Larry King': 'Doris       (voice)', 'Christopher Knights': 'Blind Mice /              Heckler /              Evil Tree #2 /              Guard #2       (voice)', 'John Krasinski': 'Lancelot       (voice)', 'Ian McShane': 'Captain Hook       (voice)'}\"\r\ntt0481499,\"{'Nicolas Cage': 'Grug       (voice)', 'Emma Stone': 'Eep       (voice)', 'Ryan Reynolds': 'Guy       (voice)', 'Catherine Keener': 'Ugga       (voice)', 'Cloris Leachman': 'Gran       (voice)', 'Clark Duke': 'Thunk       (voice)', 'Chris Sanders': 'Belt       (voice)', 'Randy Thom': 'Sandy       (voice)'}\"\r\ntt0138749,\"{'Kevin Kline': 'Tulio       (voice)', 'Kenneth Branagh': 'Miguel       (voice)', 'Rosie Perez': 'Chel       (voice)', 'Armand Assante': 'Tzekel-Kan       (voice)', 'Edward James Olmos': 'Chief       (voice)', 'Jim Cummings': 'Cortes       (voice)', 'Frank Welker': 'Altivo       (voice)', 'Tobin Bell': 'Zaragoza       (voice)', 'Duncan Marjoribanks': 'Acolyte       (voice)', 'Elijah Chiang': 'Kid #1       (voice)', 'Cyrus Shaki-Khan': 'Kid #2       (voice)', 'Elton John': 'Narrator       (voice)'}\"\r\ntt7399158,\r\ntt1694020,\"{'Barbra Streisand': 'Joyce Brewster', 'Seth Rogen': 'Andrew Brewster', 'Julene Renee': 'K-Mart Receptionist       (as Julene Renee-Preciado)', 'Zabryna Guevara': 'K-Mart Executive', 'John Funk': 'K-Mart Executive', 'Robert Curtis Brown': 'K-Mart Executive', 'Kathy Najimy': 'Gayle', 'Miriam Margolyes': 'Anita', 'Rose Abdoo': 'Diana', 'Tom Virtue': 'Mature Singles Man', 'Vivian Vanderwerd': 'Mature Singles Woman', 'Worth Howe': 'Bob', 'Vicki Goldsmith': 'Young Joyce', 'Matthew Levinson': 'Toddler Andy', 'Joseph Levinson': 'Toddler Andy'}\"\r\ntt0097778,\"{'John Travolta': 'James', 'Kirstie Alley': 'Mollie', 'Olympia Dukakis': 'Rosie', 'George Segal': 'Albert', 'Abe Vigoda': 'Grandpa', 'Bruce Willis': 'Mikey       (voice)', 'Twink Caplan': 'Rona', 'Jason Schaller': 'Mikey', 'Jaryd Waterhouse': 'Mikey', 'Jacob Haines': 'Mikey', 'Christopher Aydon': 'Mikey', 'Joy Boushel': 'Melissa', 'Don S. Davis': 'Dr. Fleisher', 'Louis Heckerling': 'Lou', 'Brenda Crichlow': 'Secretary'}\"\r\ntt0479952,\"{'Ben Stiller': 'Alex       (voice)', 'Chris Rock': 'Marty /              Additional Zebras       (voice)', 'David Schwimmer': 'Melman       (voice)', 'Jada Pinkett Smith': 'Gloria       (voice)', 'Sacha Baron Cohen': 'Julien       (voice)', 'Cedric the Entertainer': 'Maurice       (voice)', 'Andy Richter': 'Mort       (voice)', 'Bernie Mac': 'Zuba       (voice)', 'Alec Baldwin': 'Makunga       (voice)', 'Sherri Shepherd': 'Mom       (voice)', 'Will.i.am': 'Moto Moto       (voice) (as Will.I.Am)', 'Elisa Gabrielli': 'Nana       (voice)', 'Tom McGrath': 'Skipper /              Lemur       (voice)', 'Chris Miller': 'Kowalski       (voice)', 'Christopher Knights': 'Private       (voice)'}\"\r\ntt1911658,\"{'Tom McGrath': 'Skipper       (voice)', 'Chris Miller': 'Kowalski       (voice)', 'Christopher Knights': 'Private       (voice)', 'Conrad Vernon': 'Rico       (voice)', 'John Malkovich': 'Dave       (voice)', 'Benedict Cumberbatch': 'Classified       (voice)', 'Ken Jeong': 'Short Fuse       (voice)', 'Annet Mahendru': 'Eva       (voice)', 'Peter Stormare': 'Corporal       (voice)', 'Andy Richter': 'Mort       (voice)', 'Danny Jacobs': 'King Julien       (voice)', 'Sean Charmatz': 'Cricket       (voice)', 'Werner Herzog': 'Documentary Filmmaker       (voice)', 'Stephen Kearin': 'Pilot /              Aquarium Employee       (voice)', 'Kelly Cooney': 'Mermaid Penguin       (voice)'}\"\r\ntt7454138,\"{'Nina-Zofia Amerschläger': 'Mini', 'Achim Barremstrein': 'Hakon', 'Dagmar Bittner': 'Little Jane', 'Marie Blokhus': 'Helinor       (voice)', 'Eric Borner': 'Flipp', 'Damir Cosic': 'Martinus', 'Michael Deckner': 'Gustav', 'Anderz Eide': 'Storeblink       (voice)', 'Tanja Esche': 'Stella', 'Marcus Gunnarsen': 'Marcus       (voice)', 'Martinus Gunnarsen': 'Martinus       (voice)', 'Dirk Hardegen': 'Greifffer', 'Sylvia Heid': 'Frieda', 'Christine Hope': 'Duppe       (voice)', 'Andrea Bræin Hovig': 'Krana /              Jentebåt       (voice)'}\"\r\ntt0298148,\"{'Mike Myers': 'Shrek       (voice)', 'Eddie Murphy': 'Donkey       (voice)', 'Cameron Diaz': 'Princess Fiona       (voice)', 'Julie Andrews': 'Queen       (voice)', 'Antonio Banderas': 'Puss In Boots       (voice)', 'John Cleese': 'King       (voice)', 'Rupert Everett': 'Prince Charming       (voice)', 'Jennifer Saunders': 'Fairy Godmother       (voice)', 'Aron Warner': 'Wolf       (voice)', 'Kelly Asbury': \"\"Page /              Elf /              Nobleman /              Nobleman's Son       (voice)\"\", 'Cody Cameron': 'Pinocchio /              Three Pigs       (voice)', 'Conrad Vernon': 'Gingerbread Man /              Cedric /              Announcer /              Muffin Man /              Mongo       (voice)', 'Christopher Knights': 'Blind Mouse       (voice)', 'David P. Smith': 'Herald /              Man with Box       (voice)', 'Mark Moseley': 'Mirror /              Dresser       (voice)'}\"\r\ntt0312528,\"{'Mike Myers': 'The Cat', 'Alec Baldwin': 'Quinn', 'Kelly Preston': 'Mom', 'Dakota Fanning': 'Sally', 'Spencer Breslin': 'Conrad', 'Amy Hill': 'Mrs. Kwan', 'Sean Hayes': 'Mr. Humberfloob /              Voice of the Fish', 'Danielle C. Ryan': 'Thing One       (as Danielle Ryan Chuchran)', 'Taylor Rice': 'Thing One', 'Brittany Oaks': 'Thing Two', 'Talia-Lynn Prairie': 'Thing Two       (as Talia Prairie)', 'Dan Castellaneta': 'Thing One /              Thing Two       (voice)', 'Victor Brandt': 'Narrator       (voice)', 'Daran Norris': 'Announcer', 'Bugsy': 'Nevins'}\"\r\ntt7575480,\"{'Kj Schrock': '(voice)', 'Sarah Taylor': '(voice)'}\"\r\ntt5667482,\"{'Bonnie Dennison': 'Isabel /              Izzie       (voice)', 'Tori Spelling': 'April       (voice)', 'Zack Ward': 'Thurston       (voice)', 'Dawn Richard': 'Ginger /              Marcie /              Carmel       (voice)', 'Tom Virtue': 'Harold       (voice)', 'Joey Fatone': 'Carl       (voice)', 'Lynne Marie Stewart': 'Clara       (voice)', 'Paul M. Walker III': 'Seymour       (voice) (as Paul M. Walker)', 'Camille Licate': 'June       (voice)', 'Kim Little': 'Kristin       (voice)'}\"\r\ntt6499752,\"{'Logan Marshall-Green': 'Grey Trace', 'Melanie Vallejo': 'Asha Trace', 'Steve Danielsen': 'Jeff Handley', 'Abby Craden': 'Kara       (voice)', 'Harrison Gilbertson': 'Eron Keen', 'Benedict Hardie': 'Fisk', 'Richard Cawthorne': 'Serk', 'Christopher Kirby': 'Tolan', 'Richard Anastasios': 'Wen', 'Kenny Low': 'Police Driver', 'Linda Cropper': 'Pamela', 'Betty Gabriel': 'Detective Cortez', 'Emily Havea': 'Nurse Henderson', 'Ming-Zhu Hii': 'Dr Diana Gordon', 'Simon Maiden': 'Stem       (voice)'}\"\r\ntt4943934,\"{'Lane Townsend': 'Foster', 'Alan Pietruszewski': 'Neil', 'Jennifer Dorogi': 'Miranda', 'Arianna Afsar': 'Ellie', 'Chloe Farnworth': 'Ida', 'Chaim Dunbar': 'Andrews', 'Dionne Neish': 'Reiger', 'Caroline Williams': 'Ulyana', 'Eddy Owdish': 'Klaus', 'Caroline Attwood': 'Dana', 'Dan Czerwonka': 'Carlos', 'James Wong': 'Bryce', 'Maximilian Elfeldt': 'Jenkins', 'Amanda Dyba': 'Background person', 'Amy Hagan': 'Background person'}\"\r\ntt2196430,\"{'Philip Coc': 'Philip Royce       (uncredited)', 'Eric Darins': 'Handsome       (uncredited)', 'Daniela Flynn': 'Dr. Susan Neiman       (uncredited)', 'Mjr. John Frear': 'Dr. Timothy Holden       (uncredited)', 'Dennis Johnson': 'Dennis Freisen       (uncredited)', 'Trey McCurley': 'Lt. Chris Thompson       (uncredited)', 'Kent Noralez': 'Kent Clarkson       (uncredited)', 'Saul Pech': 'Saul Vega       (uncredited)', 'Peter Pedrero': 'Peter Santos       (uncredited)', 'Andres Rash': 'Andres Revell       (uncredited)', 'Rupert Tablada': 'Top Dog       (uncredited)', 'Alan Usher': 'Major Alan Menton       (uncredited)', 'Chelsea Vincent': 'Julia Evans       (uncredited)'}\"\r\ntt0884732,\"{'Kevin Hart': 'Jimmy Callahan /              Bic', 'Josh Gad': 'Doug Harris', 'Affion Crockett': 'Reggie /              Drysdale', 'Kaley Cuoco': 'Gretchen Palmer       (as Kaley Cuoco-Sweeting)', 'Jorge Garcia': 'Lurch /              Garvey', 'Dan Gill': 'Bronstein /              Dickerson', 'Corey Holcomb': 'Otis /              Alzado', 'Ken Howard': 'Ed Palmer', 'Colin Kane': 'Fitzgibbons /              Plunkett', 'Cloris Leachman': 'Grandma Palmer', 'Jenifer Lewis': 'Doris Jenkins', 'Alan Ritchson': 'Kip /              Carew', 'Mimi Rogers': 'Lois Palmer', 'Aaron Takahashi': 'Endo /              Rambis', 'Olivia Thirlby': 'Alison Palmer'}\"\r\ntt0279493,\"{'Eddie Griffin': 'Undercover Brother /              Anton Jackson', 'Chris Kattan': 'Mr. Feather', 'Denise Richards': 'White She Devil', 'Aunjanue Ellis': 'Sistah Girl', 'Dave Chappelle': 'Conspiracy Brother', 'Chi McBride': 'The Chief', 'Neil Patrick Harris': 'Lance', 'Gary Anthony Williams': 'Smart Brother', 'Billy Dee Williams': 'Gen. Warren Boutwell', 'Jack Noseworthy': 'Mr. Elias', 'Robert Trumbull': 'The Man', 'J.D. Hall': 'Narrator       (voice)', 'William S. Taylor': 'Roscoe the Barber       (as William Taylor)', 'Shauna MacDonald': 'Wendy Marshall - TV Anchor', 'Ron Pardo': 'Chuck'}\"\r\ntt0763831,\"{'Eddie Murphy': 'Jack McCall', 'Kerry Washington': 'Caroline McCall', 'Emanuel Ragsdale': 'Tyler McCall', 'Jill Basey': 'Woman in Starbucks', 'Greg Collins': 'Construction Worker', 'Robert LeQuang': 'Starbucks Customer', 'Michael G. Wilkinson': 'Starbucks Customer', 'Lyndsey Nelson': 'Starbucks Customer', 'Michael Cody Gilbert': 'Starbucks Customer', 'Lou Saliba': 'Shrink', 'John Gatins': 'Valet', 'Clark Duke': 'Aaron Wiseberger', 'Cliff Curtis': 'Dr. Sinja', 'Mitchell Fink': 'Male Agent', 'Edi Patterson': 'Young Female Agent'}\"\r\ntt1321509,\"{'Keith David': 'Reverend Davis', 'Loretta Devine': 'Cynthia', 'Peter Dinklage': 'Frank', 'Ron Glass': 'Duncan', 'Danny Glover': 'Uncle Russell', 'Regina Hall': 'Michelle', 'Kevin Hart': 'Brian', 'Martin Lawrence': 'Ryan', 'James Marsden': 'Oscar', 'Tracy Morgan': 'Norman', 'Chris Rock': 'Aaron', 'Zoe Saldana': 'Elaine       (as Zoë Saldaña)', 'Columbus Short': 'Jeff', 'Luke Wilson': 'Derek', 'Regine Nehy': 'Martina'}\"\r\ntt0168501,\"{'Taye Diggs': 'Harper Stewart', 'Nia Long': 'Jordan Armstrong', 'Morris Chestnut': 'Lance Sullivan', 'Harold Perrineau': 'Julian Murch', 'Terrence Howard': 'Quentin', 'Sanaa Lathan': 'Robin', 'Monica Calhoun': 'Mia Morgan', 'Melissa De Sousa': 'Shelby', 'Victoria Dillard': 'Anita', 'Regina Hall': 'Candy', 'Jim Moody': 'Uncle Skeeter', 'Jarrod Bunch': 'Wayne', \"\"Stu 'Large' Riley\"\": 'Fandango', 'Liris Crosse': 'Stripper', 'Lady Madonna': 'Stripper'}\"\r\ntt1640484,\"{'Angela Bassett': 'Mrs. Watson', 'Paula Patton': 'Sabrina Watson', 'Laz Alonso': 'Jason Taylor', 'Loretta Devine': 'Mrs. Taylor', 'Meagan Good': 'Blythe', 'Tasha Smith': 'Shonda', 'Julie Bowen': 'Amy', 'DeRay Davis': 'Malcolm', 'Valarie Pettiford': 'Aunt Geneva', 'Mike Epps': 'Willie Earl', 'Pooch Hall': 'Ricky', 'Romeo Miller': 'Sebastian', 'Brian Stokes Mitchell': 'Mr. Watson', 'Gary Dourdan': 'Chef', 'T.D. Jakes': 'Reverend James'}\"\r\ntt0081562,\"{'Gene Wilder': 'Skip Donahue', 'Richard Pryor': 'Harry Monroe', 'Georg Stanford Brown': 'Rory Schultebrand', 'JoBeth Williams': 'Meredith', 'Miguel Ángel Suárez': 'Jesus Ramirez       (as Miguelangel Suarez)', 'Craig T. Nelson': 'Deputy Ward Wilson', 'Barry Corbin': 'Warden Walter Beatty', 'Charles Weldon': 'Blade', 'Nicolas Coster': 'Warden Henry Sampson', 'Joel Brooks': 'Len Garber', 'Jonathan Banks': 'Jack Graham', 'Erland van Lidth': 'Grossberger       (as Erland Van Lidth De Jeude)', 'Lewis Van Bergen': 'Guard #1', 'Karmin Murcelo': 'Teresa Ramirez', 'Franklyn Ajaye': 'Young Man in Hospital'}\"\r\ntt0113845,\"{'Wesley Snipes': 'John', 'Woody Harrelson': 'Charlie Robinson', 'Jennifer Lopez': 'Grace Santiago', 'Robert Blake': 'Donald Patterson', 'Chris Cooper': 'Torch', 'Joe Grifasi': 'Riley', 'Scott Sowers': 'Mr. Brown', 'Skipp Sudduth': 'Kowalski', 'Vincent Laresca': 'Subway Robber', 'Nelson Vasquez': 'Subway Robber', 'Vincent Patrick': 'Frank the Bartender', 'Aida Turturro': 'Woman on Platform', 'Alvaleta Guess': 'Woman on Platform', 'Vincent Pastore': 'Gambler', 'David Tawil': 'Gambler'}\"\r\ntt0297181,\"{'Eddie Murphy': 'Kelly', 'Owen Wilson': 'Alex', 'Famke Janssen': 'Rachel', 'Malcolm McDowell': 'Gundars', 'Gary Cole': 'Carlos', 'Phill Lewis': 'Jerry', 'Viv Leacock': 'T.J.', 'Keith Dallas': 'Lunchbox', 'Tate Taylor': 'Lieutenant Percy', 'Lynda Boyd': 'Edna', 'Bill Mondy': 'McIntyre', 'Larry Merchant': 'Vegas Commentator', 'Sugar Ray Leonard': 'Vegas Commentator', 'Jimmy Lennon Jr.': 'Vegas Ring Announcer', 'Joe Cortez': 'Vegas Referee'}\"\r\ntt7108976,\"{'Dal-su Oh': 'Seo-pil', 'Myung-Min Kim': 'Detective K', 'Jong-goo Kim': 'Ha Il-Joo'}\"\r\ntt6231588,\"{'John Hennigan': 'Sinbad', 'Jamie Bernadette': 'Jax', 'Josh Fingerhut': 'Manta', \"\"Wayne 'Crescendo' Ward\"\": 'Ace', 'Georgia Thompson': 'Tisiphone       (as Georgia Rose Thompson)', 'Terrance Keith Richardson': \"\"Nick       (as Terrance 'TK' Richardson)\"\", 'Derek Russo': 'Cy', 'Jennifer Dorogi': 'Jinn', 'Chloe Farnworth': 'Alecto', 'Van White': 'Sebastian', 'Ashley Doris': 'Megaera', 'Drew Davis-Wheeler': 'Cardinal       (as Drew Daris-Wheeler)', 'Lisa Goodman': 'Lyta', 'Krish Amrahs': 'Abdus the Seller', 'Sole Bovelli': 'Daphne'}\"\r\ntt6823368,\"{'James McAvoy': 'Patricia /              Dennis /              Hedwig /              The Beast /              Barry /              Heinrich /              Jade /              Ian /              Mary Reynolds /              Norma /              Jalin /              Kat /              B.T. /              Kevin Wendell Crumb /              Mr. Pritchard /              Felida /              Luke /              Goddard /              Samuel /              Polly', 'Bruce Willis': 'David Dunn', 'Samuel L. Jackson': 'Elijah Price', 'Anya Taylor-Joy': 'Casey Cooke', 'Sarah Paulson': 'Dr. Ellie Staple', 'Spencer Treat Clark': 'Joseph Dunn', 'Charlayne Woodard': 'Mrs. Price', 'Luke Kirby': 'Pierce', 'Adam David Thompson': 'Daryl', 'M. Night Shyamalan': 'Jai, Security Guard', 'Shannon Destiny Ryan': 'Cheerleading Girl       (as Shannon Ryan)', 'Diana Silvers': 'Cheerleading Girl', 'Nina Wisner': 'Cheerleading Girl', 'Kyli Zion': 'Cheerleading Girl', 'Serge Didenko': 'Ronald, Powerful Young Man'}\"\r\ntt1091863,\"{'Avi Arad': 'Himself', 'Jim Goodkind': 'Himself', 'Jeremy Piven': 'Himself', 'Sean Astin': 'Himself', 'Michael A. Helfant': 'Himself       (as Michael Helfant)', 'Joe Quesada': 'Himself', 'Dick Ayers': 'Himself', 'Paris Hilton': 'Herself', 'Brett Ratner': 'Himself', 'Kenneth Branagh': 'Himself', 'Samuel L. Jackson': 'Himself', 'Mike Richardson': 'Himself', 'Ian Bryce': 'Himself', 'Kenneth Johnson': 'Himself       (as Ken Johnson)', 'Cliff Robertson': 'Himself'}\"\r\ntt7745068,\"{'Daiki Yamashita': 'Izuku Midoriya       (voice)', 'Kenta Miyake': 'All Might       (voice)', 'Mirai Shida': 'Melissa Shield       (voice)', 'Nobuhiko Okamoto': 'Katsuki Bakugou       (voice)', 'Yûki Kaji': 'Shouto Todoroki       (voice)', 'Ayane Sakura': 'Ochako Uraraka       (voice)', 'Kaito Ishikawa': 'Tenya Iida       (voice)', 'Toshiki Masuda': 'Eijiro Kirishima       (voice)', 'Ryô Hirohashi': 'Minoru Mineta       (voice)', 'Tasuku Hatanaka': 'Denki Kaminari       (voice)', 'Marina Inoue': 'Momo Yaoyorozu       (voice)', 'Kei Shindou': 'Kyoka Jiro       (voice) (as Kei Shindô)', 'Kiyotaka Furushima': 'Hanta Sero       (voice)', 'Tôru Nara': 'Rikido Sato       (voice)', 'Masakazu Nishida': 'Mezo Shoji       (voice)'}\"\r\ntt2436386,\"{'Jonny Weston': 'David Raskin', \"\"Sofia Black-D'Elia\"\": 'Jessie Pierce', 'Sam Lerner': 'Quinn Goldberg', 'Allen Evangelista': 'Adam Le', 'Virginia Gardner': 'Christina Raskin', 'Amy Landecker': 'Kathy Raskin', 'Gary Weeks': 'Ben Raskin', 'Macsen Lintz': 'David, Age 7', 'Gary Grubbs': 'Dr. Lou', 'Michelle DeFraites': 'Sarah Nathan', 'Curry Stone': 'Male Student', 'Jamila Thompson': 'Marina', 'Katie Garfield': 'Liv', 'Hillary Harley': 'Blonde', 'Courtney Bowers': \"\"Jess' Friend\"\"}\"\r\ntt0099582,\"{'Kiefer Sutherland': 'Nelson Wright', 'Julia Roberts': 'Dr. Rachel Mannus', 'Kevin Bacon': 'David Labraccio', 'William Baldwin': 'Joe Hurley', 'Oliver Platt': 'Randy Steckle', 'Kimberly Scott': 'Winnie Hicks', 'Joshua Rudoy': 'Billy Mahoney', 'Benjamin Mouton': \"\"Rachel's Father\"\", 'Aeryk Egan': 'Young Nelson', 'Kesha Reed': 'Young Winnie', 'Hope Davis': 'Anne Coldren', 'Jim Ortlieb': 'Uncle Dave', 'John Duda': 'Young Labraccio       (as John Joseph Duda)', 'Megan Stewart': 'Playground Kid', 'Tressa Thomas': 'Playground Kid'}\"\r\ntt0033553,\"{'Spencer Tracy': 'Dr. Harry Jekyll /              Mr. Hyde', 'Ingrid Bergman': 'Ivy Peterson', 'Lana Turner': 'Beatrix Emery', 'Donald Crisp': 'Sir Charles Emery', 'Ian Hunter': 'Dr. John Lanyon', 'Barton MacLane': 'Sam Higgins', 'C. Aubrey Smith': 'The Bishop', 'Peter Godfrey': 'Poole', 'Sara Allgood': 'Mrs. Higgins', 'Frederick Worlock': 'Dr. Heath       (as Frederic Worlock)', 'William Tannen': 'Intern Fenwick', 'Frances Robinson': 'Marcia', 'Denis Green': 'Freddie', 'Billy Bevan': 'Mr. Weller', 'Forrester Harvey': 'Old Prouty'}\"\r\ntt0190865,\"{\"\"Chris O'Donnell\"\": 'Peter Garrett', 'Robin Tunney': 'Annie Garrett', 'Stuart Wilson': 'Royce Garrett', 'Augie Davis': 'Aziz', 'Temuera Morrison': 'Major Rasul', 'Roshan Seth': 'Colonel Amir Salim', 'Alejandro Valdes-Rochin': 'Sergeant Asim', 'Nicholas Lea': 'Tom McLaren', 'Rod Brown': 'Ali Hasan', 'Scott Glenn': 'Montgomery Wick', 'Steve Le Marquand': 'Cyril Bench', 'Ben Mendelsohn': 'Malcolm Bench', 'Izabella Scorupco': 'Monique Aubertine', 'Bill Paxton': 'Elliot Vaughn', 'Ed Viesturs': 'Himself'}\"\r\ntt0059245,\"{'Max von Sydow': 'Jesus', 'Michael Anderson Jr.': 'James the Younger', 'Carroll Baker': 'Veronica', 'Ina Balin': 'Martha of Bethany', 'Victor Buono': 'Sorak', 'Richard Conte': 'Barabbas', 'Joanna Dunham': 'Mary Magdalene', 'José Ferrer': 'Herod Antipas', 'Van Heflin': 'Bar Amand', 'Charlton Heston': 'John the Baptist', 'Martin Landau': 'Caiaphas', 'Angela Lansbury': 'Claudia', 'Pat Boone': 'Angel at the Tomb', 'Janet Margolin': 'Mary of Bethany', 'David McCallum': 'Judas Iscariot'}\"\r\ntt4288674,\"{'Harry Lister Smith': 'Brian', 'Alex Mills': 'Lukas', 'Vanessa Grasse': 'Lisa', 'Mark Arnold': 'Dr. Renard', 'Callum McGowan': 'Tim Guarisco', 'Andrew Horton': 'Craig Guarisco', 'James Alper': 'Vodka Guy', 'Michael Majalahti': 'Eradicator', 'José Varela': 'Jorge       (as Jose Varela)', 'Jose Leonardo Garcia Torres': 'Flaco', 'Ross Ellis': 'Party Host', 'Gregory Rowbottom': 'Brad', 'Millie Smith': 'Hot Random Girl', 'Aino Sirje': 'Sexy Dancer', 'Joanas Salin': 'Camper Van Boy'}\"\r\ntt8671462,\"{'Kate Avery': 'Lily Double', 'Alexandra Bard': 'Demon Double', 'Bel Deliá': 'Lily', 'Amber Lynn Johnson': 'Pamela', 'Camron Robertson': 'John', 'Jennifer van Heeckeren': 'Mystery Blonde'}\"\r\ntt0120794,\"{'Val Kilmer': 'Moses /              God       (voice)', 'Ralph Fiennes': 'Rameses       (voice)', 'Michelle Pfeiffer': 'Tzipporah       (voice)', 'Sandra Bullock': 'Miriam       (voice)', 'Jeff Goldblum': 'Aaron       (voice)', 'Danny Glover': 'Jethro       (voice)', 'Patrick Stewart': 'Seti       (voice)', 'Helen Mirren': 'The Queen       (voice)', 'Steve Martin': 'Hotep       (voice)', 'Martin Short': 'Huy       (voice)', 'Bobby Motown': 'Rameses Son       (voice)', 'Eden Riegel': 'Young Miriam       (voice)', 'Ofra Haza': 'Yocheved       (voice)', 'James Avery': 'Additional Voices       (voice)', 'Aria Noelle Curzon': 'Additional Voices       (voice)'}\"\r\ntt0095497,\"{'Willem Dafoe': 'Jesus', 'Harvey Keitel': 'Judas', 'Paul Greco': 'Zealot', 'Steve Shill': 'Centurian       (as Steven Shill)', 'Verna Bloom': 'Mary, Mother of Jesus', 'Barbara Hershey': 'Mary Magdalene', 'Roberts Blossom': 'Aged Master', 'Barry Miller': 'Jeroboam', 'Gary Basaraba': 'Andrew, Apostle', 'Irvin Kershner': 'Zebedee', 'Victor Argo': 'Peter, Apostle', 'Michael Been': 'John, Apostle', 'Paul Herman': 'Phillip, Apostle', 'John Lurie': 'James, Apostle', 'Leo Burmester': 'Nathaniel, Apostle'}\"\r\ntt0490215,\"{'Andrew Garfield': 'Rodrigues', 'Adam Driver': 'Garupe', 'Liam Neeson': 'Ferreira', 'Tadanobu Asano': 'Interpreter', 'Ciarán Hinds': 'Father Valignano', 'Issei Ogata': 'Old Samurai /              Inoue       (as Issey Ogata)', \"\"Shin'ya Tsukamoto\"\": 'Mokichi', 'Yoshi Oida': 'Ichizo', 'Yôsuke Kubozuka': 'Kichijiro       (as Yosuke Kubozuka)', 'Kaoru Endô': 'Unzen Samurai (Uneme)', 'Diego Calderón': 'Prisoner Augustinian Friar #2       (as Diego Calderon)', 'Rafael Kading': 'Prisoner Augustinian Friar #1', 'Matthew Blake': 'Prisoner Franciscan Friar', 'Benoit Masse': 'Prisoner Augustinian Friar #3', 'Tetsuya Igawa': 'Prisoner Japanese Jesuit'}\"\r\ntt5582876,\"{'Jonno Davies': 'Adrian', 'Adrian Bouchet': 'Judah Ben Hur', 'Peter Ormond': 'Kaeso', 'Alan Calton': 'Cyprian', 'Marcello Walton': 'Atticus', 'Robert Lease': 'Dio', 'Stephanie Beran': 'Veleda', 'Taylor Jay-Davies': 'Caius', 'Michael Bott': 'Cassius', 'Jo Marriott': 'Braga       (as Jo Alexandra Marriott)', 'Lucy Clements': 'Aurelia', 'Jason Beeston': 'Darius', 'Lara Heller': 'Lucia', 'Alf Thompson': 'Tauri', 'Paul James': 'Octus'}\"\r\ntt1411704,\"{'James Marsden': \"\"Fred O'Hare\"\", 'Russell Brand': 'E.B. (voice) /              Production Assistant', 'Kaley Cuoco': \"\"Sam O'Hare\"\", 'Hank Azaria': 'Carlos /              Phil       (voice)', 'Gary Cole': \"\"Henry O'Hare\"\", 'Elizabeth Perkins': \"\"Bonnie O'Hare\"\", 'Hugh Laurie': \"\"E.B.'s Dad       (voice)\"\", 'Tiffany Espensen': \"\"Alex O'Hare\"\", 'David Hasselhoff': 'David Hasselhoff', 'Chelsea Handler': 'Mrs. Beck', 'Dustin Ybarra': 'Cody', 'Carlease Burke': 'Receptionist', 'Veronica Alicino': 'Waitress', 'Django Marsh': 'Young E.B.       (voice)', 'Jimmy Carter': 'Blind Boys of Alabama       (as Jimmy Lee Carter)'}\"\r\ntt0101329,\"{'Phillip Glasser': 'Fievel       (voice)', 'James Stewart': 'Wylie       (voice)', 'Erica Yohn': 'Mama       (voice)', 'Cathy Cavadini': 'Tanya       (voice)', 'Nehemiah Persoff': 'Papa       (voice)', 'Dom DeLuise': 'Tiger       (voice) (as Dom Deluise)', 'Amy Irving': 'Miss Kitty       (voice)', 'John Cleese': 'Cat R. Waul       (voice)', 'Jon Lovitz': 'Chula       (voice)', 'Jack Angel': 'Additional Voices       (voice)', 'Fausto Bara': 'Additional Voices       (voice)', 'Vanna Bonta': 'Additional Voices       (voice)', 'Philip L. Clarke': 'Additional Voices       (voice) (as Philip Clarke)', 'Jennifer Darling': 'Additional Voices       (voice)', 'Annie Holliday': 'Additional Voices       (voice)'}\"\r\ntt5112578,\"{'Owen Campbell': 'Zach', 'Charlie Tahan': 'Josh', 'Elizabeth Cappuccino': 'Allison', 'Amy Hargreaves': 'Karen', 'Max Talisman': 'Daryl', 'Sawyer Barth': 'Charlie', 'Adea Lennox': 'Meghan', 'Ethan Botwick': 'John Whitcomb', 'Philip H. Ashley': 'Chad       (as Philip Hackworth Ashley)', 'Anni Krueger': 'Ms. Barron', 'Justin Rose': 'Kevin', 'Kortnee Simmons': 'Eugene', 'Samantha Jones': 'Joan', 'Hayden Oliver': 'Colin', 'Dario Saraceno': 'Sheriff Bowman'}\"\r\ntt0970179,\"{'Ben Kingsley': 'Georges Méliès', 'Sacha Baron Cohen': 'Station Inspector', 'Asa Butterfield': 'Hugo Cabret', 'Chloë Grace Moretz': 'Isabelle', 'Ray Winstone': 'Uncle Claude', 'Emily Mortimer': 'Lisette', 'Christopher Lee': 'Monsieur Labisse', 'Helen McCrory': 'Mama Jeanne', 'Michael Stuhlbarg': 'Rene Tabard', 'Frances de la Tour': 'Madame Emilie', 'Richard Griffiths': 'Monsieur Frick', 'Jude Law': \"\"Hugo's Father\"\", 'Kevin Eldon': 'Policeman', 'Gulliver McGrath': 'Young Tabard', 'Shaun Aylward': 'Street Kid'}\"\r\ntt0085248,\"{'Kelly Reno': 'Alec Ramsay', 'Vincent Spano': 'Raj', 'Allen Garfield': 'Kurr       (as Allen Goorwitz)', 'Woody Strode': 'Meslar', 'Ferdy Mayne': 'Abu Ben Ishak       (as Ferdinand Mayne)', 'Jodi Thelen': 'Tabari', 'Teri Garr': \"\"Alec's Mother\"\", 'Larbi Doghmi': 'Tiny Man       (as Doghmi Larbi)', 'Angelo Infanti': \"\"Raj's Father\"\", 'Luigi Mezzanotte': 'Scarface', 'Franco Citti': 'Foreign Legion Officer', 'Robert Behling': 'Customs Officer       (as Robert A. Behling)', 'Joe Murphy': 'Fireman', 'Chris Larrance': 'Neighbor', 'Loris Bazzocchi': 'Berber on Dock'}\"\r\ntt0093999,\"{'Diana Rigg': 'Evil Queen', 'Billy Barty': 'Iddy', 'Sarah Patterson': 'Snow White', 'Nicola Stapleton': 'Snow White as a child', 'Mike Edmonds': 'Biddy       (as Mike Edmunds)', 'Ricardo Gil': 'Kiddy', 'Malcolm Dixon': 'Diddy', 'Gary Friedkin': 'Fiddy', 'Arturo Gil': 'Giddy', 'Tony Cooper': 'Liddy', 'Douglas Sheldon': 'The King', 'Dorit Adi': 'Good Queen', 'James Ian Wright': 'Prince', 'Chana Eden': '1st Lady in Waiting', 'Angela Levinson': '2nd Lady in Waiting'}\"\r\ntt7616798,\"{'Ashley Judd': 'Terri', 'Jonah Hauer-King': 'Lucas', 'Edward James Olmos': 'Axel', 'Alexandra Shipp': 'Olivia', 'Chris Bauer': 'Kurch', 'Barry Watson': 'Gavin', 'Motell Gyn Foster': 'Taylor       (as Motell Foster)', 'Wes Studi': 'Captain Mica', 'Bryce Dallas Howard': 'Bella       (voice)', 'John Cassini': 'Chuck', 'Brian Markinson': 'Gunter', 'Patrick Gallagher': 'Teo', 'Broadus Mattison': 'Mack', 'Rolando Boyce': 'Drew', 'Cesar De León': 'Steve       (as Cesar De Leon)'}\"\r\ntt3606888,\"{'Luke Treadaway': 'James', 'Bob the Cat': 'Bob', 'Ruta Gedmintas': 'Betty', 'Joanne Froggatt': 'Val', 'Anthony Head': 'Jack Bowen', 'Darren Evans': 'Baz', 'Tony Jayawardena': 'Tony', 'Adam Riches': 'Man with Car', 'Llewella Gideon': 'Meter Woman', 'Lorraine Ashbourne': 'Local Housing Officer', 'Akbar Kurtha': 'Pharmacist', 'John Henshaw': 'Tube Station Guard', 'Beth Goddard': 'Hilary', 'Ivana Basic': 'Vet Receptionist', 'Jessica Woodland': 'Vet Assistant'}\"\r\ntt0103786,\"{'Charles Grodin': 'George Newton', 'Bonnie Hunt': 'Alice Newton', 'Dean Jones': 'Dr. Varnick', 'Nicholle Tom': 'Ryce', 'Christopher Castile': 'Ted', 'Sarah Rose Karr': 'Emily', 'Oliver Platt': 'Harvey', 'Stanley Tucci': 'Vernon', 'David Duchovny': 'Brad', 'Patricia Heaton': 'Brie', 'Laurel Cronin': 'Devonia Peet', 'O-Lan Jones': 'Biker Woman', 'Nancy Fish': 'Miss Grundel', 'Craig Pinkard': 'Homeless Man', 'Robi Davidson': 'Mark'}\"\r\ntt7008872,\"{'Lucas Hedges': 'Jared Eamons', 'Nicole Kidman': 'Nancy Eamons', 'Russell Crowe': 'Marshall Eamons', 'Madelyn Cline': 'Chloe', 'Victor McCay': 'Aaron', 'David Joseph Craig': 'Michael', 'Troye Sivan': 'Gary', 'Emily Hinkler': 'Lee', 'Devin Michael': 'Anders', 'Matt Burke': 'Simon', 'Lindsey Moser': 'Tina', 'Jesse LaTourette': 'Sarah', 'Britton Sear': 'Cameron', 'David Ditmore': 'Phillip', 'William Ngo': 'Carl'}\"\r\ntt2018111,\"{'Arman Darbo': 'Edwin', 'Melonie Diaz': 'Ms. Meier', 'Lucy Shepard': 'Girl in Class with Book', 'Tony Hale': 'Mr. Mosley', 'Sawyer Barth': 'Flake', 'Mike Reyes': 'Soccer Player', 'Louis Robert Thompson': 'Soccer Coach       (as Robert Thompson)', 'Justin Long': 'Tim', 'Melanie Lynskey': 'Janice', 'Kannon Hicks': 'Gus', 'Michael Rousselet': 'Pranked Caller', 'Sean Cook': 'Detention Monitor       (as Sean G. Cook)', 'Hunter Trammell': 'Matthew Sfikas', 'Sharon Murray': 'Ms. Pengue', 'Steele Whitney': 'Dickhead'}\"\r\ntt1645170,\"{'Sacha Baron Cohen': 'Aladeen /              Efawadh', 'Sayed Badreya': 'Omar', 'Rocky Citron': 'Baby Aladeen', 'Liam Campora': 'Aladeen Age 6', 'Aasif Mandvi': 'Doctor', 'Rizwan Manji': 'Patient', 'Rick Chambers': 'Newscaster Voiceover       (voice)', 'Elsayed Mohamed': 'Wadiyan Olympic Official', 'Adeel Akhtar': 'Maroush', 'Horatio Sanz': 'Aide on Balcony', 'Ben Kingsley': 'Tamir', 'Elena Goode': 'Virgin Guard', 'Nazanin Homa': 'Virgin Guard       (as Naz Homa)', 'Dawn Jackson': 'Virgin Guard       (as Dawn Zimniak)', 'Victoria Beltran': 'Virgin Guard'}\"\r\ntt3553442,\"{'Tina Fey': 'Kim Baker', 'Margot Robbie': 'Tanya Vanderpoel', 'Martin Freeman': 'Iain MacKelpie', 'Alfred Molina': 'Ali Massoud Sadiq', 'Christopher Abbott': 'Fahim Ahmadzai', 'Billy Bob Thornton': 'General Hollanek', 'Nicholas Braun': 'Tall Brian', 'Stephen Peacocke': 'Nic', 'Sheila Vand': 'Shakira Khar', 'Evan Jonigkeit': 'Specialist Coughlin', 'Fahim Anwar': 'Jaweed', 'Josh Charles': 'Chris', 'Cherry Jones': 'Geri Taub', 'Scott Takeda': 'Ed Faber', 'Eli Goodman': 'Tucker Wang'}\"\r\ntt4225696,\"{'Clayton Rohner': 'Harold', 'Melanie Minichino': 'Deputy Gary', 'Megan Hensley': 'Squeaky', 'Daheli Hall': 'Nina', 'Charlie Farrell': 'Sheriff Albright', 'Dawn Brodey': 'Dr. Nancy', 'Amy Heidt': 'Officer Maggie', 'Brett Maline': 'Charlie', 'Christian Drerup': 'Sally', 'Scott Monahan': 'Curtis', 'Gina Brown': 'Victoria Nightboobs', 'David Henry Schneider': 'Mr. Pruitt /              Soda Jerk', 'Shey Lyn Zanotti': 'Mary Beth', 'Sean Cork': 'Finn Potter', 'Katherine Canipe': 'Smith'}\"\r\ntt4217392,\"{'Jackie Chan': 'Jack', 'Yixing Zhang': 'Xiaoguang       (as Lay Zhang)', 'Miya Muqi': 'Nuomin       (as Mu Qimiya)', 'Disha Patani': 'Ashmita', 'Aarif Rahman': 'Jones       (as Aarif Lee)', 'Amyra Dastur': 'Kyra', 'Sonu Sood': 'Randall', 'Paul Philip Clark': 'Max       (as Paul Clark)', 'Yuxian Shang': 'Circe       (as Circe Shang)', 'Jiang Wen': 'Jiang Wen       (as Coco Jiang)', 'Eric Tsang': 'Jianghua', 'Guoli Zhang': 'Jonathan', 'Ming Gao': 'Museum Curator', 'Lavlin Thadani': 'Professor Ashmita', 'Bob Tao': 'Nerdy Chap'}\"\r\ntt3228302,{'Elliot Scott': 'Himself'}\r\ntt2839312,\"{'Marco Antonio Alvarez': 'Carlos Castillo', 'Dennis Ruel': 'Ricky', 'O.G. Dave Rivera': 'Morales', 'E. Ambriz DeColosio': 'Eduardo Ruiz', 'Morgan Benoit': 'Chuy', 'Stacey Rose': 'Vanessa', 'Justin Perez': 'Diego', 'Jon Carlo': 'Drew', 'Jenna Davi': 'Karen', 'Natalie Aldajani': 'Sonia', 'Melissa Locsin': 'Marta', 'Maya Tapia': 'Abuelita', 'Giovannie Espiritu': 'Stella', 'George Herman': 'Christopher', 'Ricardo Gamboa': 'The Announcer       (as Richard Gamboa)'}\"\r\ntt4537896,\"{'Matthew McConaughey': 'Richard Wershe Sr.', 'Richie Merritt': 'Rick Wershe Jr.', 'Bel Powley': 'Dawn Wershe', 'Jennifer Jason Leigh': 'FBI Agent Snyder', 'Brian Tyree Henry': 'Detective Jackson', 'Rory Cochrane': 'FBI Agent Byrd', 'RJ Cyler': \"\"Rudell 'Boo' Curry\"\", 'Jonathan Majors': \"\"Johnny 'Lil Man' Curry\"\", 'Eddie Marsan': 'Art Derrick', 'Taylour Paige': 'Cathy Volsan-Curry', 'Bruce Dern': \"\"Grandpa Roman 'Ray' Wershe\"\", 'Piper Laurie': 'Grandma Verna Wershe', 'Raekwon Haynes': \"\"Edwin 'Nugg' Crutcher\"\", 'Ishmael Ali': \"\"'Freaky Steve' Roussell       (as Ishmael 'Ishdarr' Ali)\"\", 'James Howard': 'Chief Homicide Inspector Hill'}\"\r\ntt2165735,\"{'Honglei Sun': 'Captain Zhang       (as Sun Honglei)', 'Louis Koo': 'Timmy Choi', 'Yi Huang': 'Yang Xiaobei       (as Huang Yi)', 'Yunxiang Gao': 'Xu Guoxiang       (as Gao Yunxiang)', 'Wallace Chung': 'Guo Weijun', 'Guangjie Li': 'Chen Shixong       (as Li Guangjie)', 'Tao Guo': 'Senior Dumb       (as Guo Tao)', 'Jing Li': 'Junior Dumb', 'Hoi-Pang Lo': 'Birdie       (as Lo Hoi Pang)', 'Siu-Fai Cheung': 'Su       (as Cheung Siu Fai)', 'Ka Tung Lam': 'East Lee       (as Lam Ka Tung)', 'Michelle Ye': 'Sal', 'Suet Lam': 'Fatso       (as Lam Suet)', 'Ting Yip Ng': 'Hatred       (as Ng Yuk San)', 'Philip Keung': 'Darkie       (as Keung Hon Man)'}\"\r\ntt5177088,\"{'Claire Foy': 'Lisbeth Salander', 'Beau Gadsdon': 'Young Lisbeth Salander', 'Sverrir Gudnason': 'Mikael Blomkvist', 'LaKeith Stanfield': 'Ed Needham', 'Sylvia Hoeks': 'Camilla Salander', 'Carlotta von Falkenhayn': 'Young Camilla Salander', 'Stephen Merchant': 'Frans Balder', 'Christopher Convery': 'August Balder', 'Claes Bang': 'Jan Holtser', 'Synnøve Macody Lund': 'Gabriella Grane', 'Cameron Britton': 'Plague', 'Vicky Krieps': 'Erika Berger', 'Andreja Pejic': 'Sofia', 'Mikael Persbrandt': 'Alexander Zalachenko', 'Thomas Wingrich': \"\"Grane's Home Security\"\"}\"\r\ntt1255919,\"{'Will Ferrell': 'Sherlock Holmes', 'John C. Reilly': 'Dr. Watson', 'Rebecca Hall': 'Grace Hart', 'Rob Brydon': 'Inspector Lestrade', 'Kelly Macdonald': 'Mrs. Martha Hudson', 'Lauren Lapkus': 'Millicent', 'Pam Ferris': 'Queen Victoria', 'Ralph Fiennes': 'Professor James Moriarty', 'Hector Bateman-Harden': 'Young Holmes', 'Codie-Lei Eastick': 'Young Watson', 'Laura Stevely': \"\"Sherlock's Mom\"\", 'Layla Rose Boyce': 'Nicotine Stains /              Nancy', 'Sadie Newman': 'Jane', 'Harry Baxendale': 'Seamus', 'Ella Bright': 'Bridgette'}\"\r\ntt1758810,\"{'Michael Fassbender': 'Harry Hole', 'Rebecca Ferguson': 'Katrine Bratt', 'Charlotte Gainsbourg': 'Rakel', 'Jonas Karlsson': 'Mathias', 'Michael Yates': 'Oleg', 'Ronan Vibert': 'Gunnar Hagen', 'J.K. Simmons': 'Arve Stop', 'Val Kilmer': 'Rafto', 'David Dencik': 'Vetlesen', 'Toby Jones': 'DC Svensson', \"\"Genevieve O'Reilly\"\": 'Birte Becker', \"\"James D'Arcy\"\": 'Filip Becker', 'Jeté Laurence': 'Josephine Becker', 'Adrian Dunbar': 'Frederik Aasen', 'Chloë Sevigny': 'Sylvia Ottersen /              Ane Pedersen'}\"\r\ntt4504438,\"{'Kevin Crane': 'Himself - State Prosecutor       (archive footage)', 'Chuck Erickson': 'Himself       (as Charles Erickson)', 'Bill Ferguson': \"\"Himself - Ryan's Father\"\", 'Leslie Ferguson': \"\"Herself - Ryan's Mother\"\", 'Ryan Ferguson': 'Himself', 'Kent Heitholt': 'Himself - Victim       (archive footage)', 'Dallas Mallory': 'Himself - Witness       (archive footage)', 'Cynthia Martin': 'Herself - Judge', 'Erin Moriarty': 'Herself - 48 Hours, CBS', 'Shawna Ornt': 'Herself - Tribune Janitor       (archive footage)', 'Charlie Rogers': \"\"Himself - Ryan's Defense Attorney       (archive footage)\"\", 'Ellen Roper': 'Herself - Judge', 'Jerry Trump': 'Himself - Tribune Janitor       (archive footage)', 'Kathleen Zellner': \"\"Herself - Ryan's Attorney\"\"}\"\r\ntt7074886,\"{'Hugh Jackman': 'Gary Hart', 'Vera Farmiga': 'Lee Hart', 'J.K. Simmons': 'Bill Dixon', \"\"Mark O'Brien\"\": 'Billy Shore', 'Molly Ephraim': 'Irene Kelly', 'Chris Coy': 'Kevin Sweeney', 'Alex Karpovsky': 'Mike Stratton', 'Josh Brener': 'Doug Wilson', 'Tommy Dewey': 'John Emerson', 'Kaitlyn Dever': 'Andrea Hart', 'Oliver Cooper': 'Joe Trippi', 'Jenna Kanell': 'Ginny Terzano', 'RJ Brown': 'Bill Martin', 'Alfred Molina': 'Ben Bradlee', 'Mamoudou Athie': 'AJ Parker'}\"\r\ntt1477834,\"{'Jason Momoa': 'Arthur', 'Amber Heard': 'Mera', 'Willem Dafoe': 'Vulko', 'Patrick Wilson': 'King Orm', 'Nicole Kidman': 'Atlanna', 'Dolph Lundgren': 'King Nereus', 'Yahya Abdul-Mateen II': 'Manta', 'Temuera Morrison': 'Tom Curry', 'Ludi Lin': 'Captain Murk', 'Michael Beach': \"\"Jesse (Manta's Father)\"\", 'Randall Park': 'Dr. Stephen Shin', 'Graham McTavish': 'King Atlan', 'Leigh Whannell': 'Cargo Pilot', 'Tainui Kirkwood': 'Young Arthur (Three Years Old)', 'Tamor Kirkwood': 'Young Arthur (Three Years Old)'}\"\r\ntt1596363,\"{'Ryan Gosling': 'Jared Vennett', 'Rudy Eisenzopf': 'Lewis Ranieri', 'Casey Groves': 'Fund Manager', 'Charlie Talbert': 'Lewis Bond Trader', 'Harold Gervais': 'Lewis Bond Trader', 'Maria Frangos': 'Exotic Dancer', 'Christian Bale': 'Michael Burry', 'Hunter Burke': 'Analyst', 'Bernard Hocke': 'Coach', 'Shauna Rappold': \"\"Michael Burry's Mom\"\", 'Brandon Stacy': \"\"Michael Burry's Dad\"\", 'Aiden Flowers': 'Young Michael Burry', 'Peter Epstein': 'Paul Baum', 'Anthony Marble': 'Therapy Businessman', 'Silas Cooper': 'Therapy Businessman'}\"\r\ntt4925292,\"{'Saoirse Ronan': 'Lady Bird McPherson', 'Laurie Metcalf': 'Marion McPherson', 'Tracy Letts': 'Larry McPherson', 'Lucas Hedges': \"\"Danny O'Neill\"\", 'Timothée Chalamet': 'Kyle Scheible', 'Beanie Feldstein': 'Julie Steffans', 'Lois Smith': 'Sister Sarah Joan', 'Stephen McKinley Henderson': 'Father Leviatch', 'Odeya Rush': 'Jenna Walton', 'Jordan Rodrigues': 'Miguel McPherson', 'Marielle Scott': 'Shelly Yuhan', 'John Karna': 'Greg Anrue', 'Jake McDorman': 'Mr. Bruno', 'Bayne Gibby': 'Casey Kelly', 'Laura Marano': 'Diana Greenway'}\"\r\ntt1663143,\"{'Victoria Justice': 'Wren', 'Jackson Nicoll': 'Albert', 'Chelsea Handler': 'Joy', 'Josh Pence': 'Keevin', 'Jane Levy': 'April', 'Thomas Mann': 'Roosevelt', 'Thomas McDonell': 'Aaron Riley', 'Carrie Clifford': 'Pumpkin Mom', 'Barry Livingston': 'Halloween Dad', 'Ele Bardha': 'Mariposa Dad', 'Osric Chau': 'Peng', 'Zamani Munashe': 'Spider Girl', 'Bobby Thomas': 'Old Spider Man', 'James Pumphrey': 'Brueder', 'Thomas Middleditch': 'Fuzzy'}\"\r\ntt1817771,\"{'Nicholas Braun': 'Dag', 'Mackenzie Davis': 'Petra', 'Josh Fadem': 'Ned', 'Denis Leary': 'Rick Wilson', 'Ed Westwick': 'Milan Pinache', 'Vanessa Hudgens': 'Lorelei', 'Keegan-Michael Key': 'Mr. Keller', 'Bob Odenkirk': 'Shooter Parker', 'Joan Cusack': 'Peg Parker', 'Chris Zylka': 'Chaz Jr.', 'Ian Roberts': 'Chaz Sr.', 'Rachael Harris': 'Mrs. Mosely', 'Mae Whitman': 'Jenna Zombie', 'Patton Oswalt': 'Stuart Miller', 'Pat Healy': 'Zombie Priest'}\"\r\ntt5734576,\"{'Shay Mitchell': 'Megan Reed', 'Grey Damon': 'Andrew Kurtz', 'Kirby Johnson': 'Hannah Grace /              Cadaver', 'Nick Thune': 'Randy', 'Louis Herthum': 'Man /              Killer /              Grainger', 'Stana Katic': 'Lisa Roberts', 'Maximillian McNamara': 'Dave       (as Max McNamara)', 'Jacob Ming-Trent': 'Ernie Gainor', 'James A. Watson Jr.': 'Dr. Henry Lewis', 'Marianne Bayard': 'Female Ambulance Driver', 'Adrian M. Mompoint': 'Other Ambulance Driver       (as Adrian Mompoint)', 'Matt Mings': \"\"Megan's Police Partner\"\", 'Gijs Scholten van Aschat': 'Father Marcato', 'Guy Clemens': 'Father Cunningham', 'Sean Burns': 'Junkie'}\"\r\ntt5173032,\"{'Rami Malek': 'Buster', 'DJ Qualls': 'The Last Free Man', 'Kate Lyn Sheil': 'Marty', 'Sukha Belle Potter': 'Roxy', 'Toby Huss': 'Deputy Winston', 'Lin Shaye': 'Pauline', 'Mark Kelly': 'Oscar', 'Bruce Bundy': 'Ranger Meg', 'Teresa Yenque': 'Adelita', 'Jared Larson': 'Dale', 'Sandra Ellis Lafferty': 'Mrs. Bowery', 'Nicholas Pryor': 'Mr. Bowery', 'R.J. Burns': 'Ryan       (as RJ Burns)', 'Gabriel Clark': 'Bill Western', 'Lily Gladstone': 'Morning Shift Concierge'}\"\r\ntt5664636,\"{'Wendi McLendon-Covey': 'Kathy', 'Madison Iseman': 'Sarah', 'Jeremy Ray Taylor': 'Sonny', 'Caleel Harris': 'Sam', 'Ken Jeong': 'Mr. Chu', 'Chris Parnell': 'Walter', 'Bryce Cass': 'Tyler', 'Peyton Wich': 'Tommy Madigan', 'Shari Headley': 'Mrs. Carter', 'Christian Finlayson': 'Cooper', 'Matthew J. Vasquez': 'Derek       (as Matthew Jose Vasquez)', 'Courtney Lauren Cummings': \"\"Tyler's Crew       (as Courtney Cummings)\"\", 'Jessi Goei': \"\"Tyler's Crew\"\", 'Drew Scheid': \"\"Tyler's Crew\"\", 'Tyler Silva': \"\"Tyler's Crew\"\"}\"\r\ntt2267968,\"{'Jack Black': 'Po       (voice)', 'Bryan Cranston': 'Li       (voice)', 'Dustin Hoffman': 'Shifu       (voice)', 'Angelina Jolie': 'Tigress       (voice)', 'J.K. Simmons': 'Kai       (voice)', 'Jackie Chan': 'Monkey       (voice)', 'Seth Rogen': 'Mantis       (voice)', 'Lucy Liu': 'Viper       (voice)', 'David Cross': 'Crane       (voice)', 'Kate Hudson': 'Mei Mei       (voice)', 'James Hong': 'Mr. Ping       (voice)', 'Randall Duk Kim': 'Oogway       (voice)', 'Steele Gagnon': 'Bao       (voice)', 'Liam Knight': 'Lei Lei       (voice)', 'Wayne Knight': 'Big Fun /              Hom-Lee       (voice)'}\"\r\ntt0090633,\"{'Erica Yohn': 'Mama Mousekewitz       (voice)', 'Nehemiah Persoff': 'Papa Mousekewitz       (voice)', 'Amy Green': 'Tanya Mousekewitz       (voice)', 'Phillip Glasser': 'Fievel Mousekewitz       (voice)', 'Christopher Plummer': 'Henri       (voice)', 'John Finnegan': 'Warren T. Rat       (voice)', 'Will Ryan': 'Digit       (voice)', 'Hal Smith': 'Moe       (voice)', 'Pat Musick': 'Tony Toponi       (voice)', 'Cathianne Blore': 'Bridget       (voice)', 'Neil Ross': 'Honest John       (voice)', 'Madeline Kahn': 'Gussie Mausheimer       (voice)', 'Dom DeLuise': 'Tiger       (voice)'}\"\r\ntt2832470,\"{'Vegar Hoel': 'Martin', 'Ørjan Gamst': 'Herzog', 'Martin Starr': 'Daniel', 'Jocelyn DeBoer': 'Monica', 'Ingrid Haas': 'Blake', 'Stig Frode Henriksen': 'Glenn Kenneth', 'Hallvard Holmen': 'Gunga', 'Kristoffer Joner': 'Sidekick Zombie', 'Amrita Acharia': 'Reidun', 'Derek Mears': 'Stavarin', 'Bjarte Tjøstheim': 'Priest', 'Christian Rubeck': 'Politiman', 'Charlotte Frogner': 'Hanna', 'Jesper Sundnes': 'Nazi Doktor', 'Tage Guddingsmo': 'Zombie Navigatør'}\"\r\ntt5938084,\"{'Anne Curtis': 'Nina Manigan', 'Brandon Vera': 'Rico Yatco', 'Victor Neri': 'Bernie Lacson', 'Arjo Atayde': 'Biggie Chen', 'Levi Ignacio': 'Chongki', 'Alex Calleja': 'Teban', 'Lao Rodriguez': 'Rudy Dela Cruz', 'Joross Gamboa': 'Cocky', 'Ricky Pascua': 'Solomon', 'Nonie Buencamino': 'Director Alvarez', 'Sheen Gener': 'Alda Lacson       (as Sheenly Gener)', 'AJ Muhlach': 'Gelo Elia', 'Mara Lopez': 'Loren Santos', 'Tarek El Tayech': 'Iggy Hizon', 'Maddie Martinez': 'Dora'}\"\r\ntt0841046,\"{'Nat Faxon': 'Awards Show Stage Manager', 'John C. Reilly': 'Dewey Cox', 'Tim Meadows': 'Sam', 'Conner Rayburn': 'Dewey Age 8', 'Chip Hormess': 'Nate', 'Raymond J. Barry': 'Pa Cox', 'Terrence Beasor': 'Country Doctor', 'Margo Martindale': 'Ma Cox', 'Honeyboy Edwards': 'Old Bluesman       (as David Honeyboy Edwards)', 'Gerry Black': 'Harmonica Player', 'Aron Johnson': 'Teenage Band', 'Jack Donovan Saperstein': 'Teenage Band       (as Jack Saperstein)', 'Taylor Hubert': 'Teenage Band       (as Taylor Jamison Hubert)', 'Christopher Hurt': 'Teenage Band', 'Matt Price': 'MC (Teacher)'}\"\r\ntt1302011,\"{'Jack Black': 'Po       (voice)', 'Angelina Jolie': 'Tigress       (voice)', 'Dustin Hoffman': 'Shifu       (voice)', 'Gary Oldman': 'Shen       (voice)', 'Jackie Chan': 'Monkey       (voice)', 'Seth Rogen': 'Mantis       (voice)', 'Lucy Liu': 'Viper       (voice)', 'David Cross': 'Crane       (voice)', 'James Hong': 'Mr. Ping       (voice)', 'Michelle Yeoh': 'Soothsayer       (voice)', 'Danny McBride': 'Wolf Boss       (voice)', 'Dennis Haysbert': 'Master Ox       (voice)', 'Jean-Claude Van Damme': 'Master Croc       (voice)', 'Victor Garber': 'Master Rhino       (voice)', 'Mike Bell': 'Gorilla Guard 1       (voice) (as Michael Patrick Bell)'}\"\r\ntt7349662,\"{'Alec Baldwin': 'Dr. Kennebrew Beauregard', 'John David Washington': 'Ron Stallworth', 'Isiah Whitlock Jr.': 'Mr. Turrentine', 'Robert John Burke': 'Chief Bridges', 'Brian Tarantina': 'Officer Clay Mulaney', 'Arthur J. Nascarella': 'Officer Wheaton       (as Arthur Nascarella)', 'Ken Garito': 'Sergeant Trapp', 'Frederick Weller': 'Master Patrolman Andy Landers', 'Adam Driver': 'Flip Zimmerman', 'Michael Buscemi': 'Jimmy Creek       (as Michael Joseph Buscemi)', 'Laura Harrier': 'Patrice Dumas', 'Damaris Lewis': 'Odetta', 'Ato Blankson-Wood': 'Hakeem', 'Corey Hawkins': 'Kwame Ture', 'Dared Wright': 'Officer Cincer'}\"\r\ntt6966692,\"{'Viggo Mortensen': 'Tony Lip', 'Mahershala Ali': 'Dr. Donald Shirley', 'Linda Cardellini': 'Dolores', 'Sebastian Maniscalco': 'Johnny Venere', 'Dimiter D. Marinov': 'Oleg', 'Mike Hatton': 'George', 'P.J. Byrne': 'Record Exec', 'Joe Cortese': 'Gio Loscudo', 'Maggie Nixon': 'Copa Coat Check Girl', 'Von Lewis': 'Bobby Rydell', 'Jon Sortland': 'Rydell Band Leader', 'Don Stark': 'Jules Podell', 'Anthony Mangano': 'Copa Bouncer Danny', 'Paul Sloan': \"\"Copa Maître D' Carmine\"\", 'Quinn Duffy': 'Mikey Cerrone'}\"\r\ntt2119543,\"{'Jack Black': 'Jonathan Barnavelt', 'Cate Blanchett': 'Florence Zimmerman', 'Owen Vaccaro': 'Lewis Barnavelt', 'Kyle MacLachlan': 'Isaac Izard', 'Renée Elise Goldsberry': 'Selena Izard', 'Colleen Camp': 'Mrs. Hanchett', 'Sunny Suljic': 'Tarby Corrigan', 'Lorenza Izzo': 'Mother', 'Braxton Bjerken': 'Woody Mingo', 'Vanessa Anne Williams': 'Rose Rita Pottinger', 'Ricky Muse': 'Bus Driver       (as Ricky Lynn Muse)', 'Charles Green': 'Soda Jerk', \"\"De'Jon Watts\"\": 'Clark       (as DJ Watts)', 'Aaron Beelner': 'Clown Automaton', 'Joshua Phillips': 'Clown Automaton'}\"\r\ntt4244998,\"{'Kodi Smit-McPhee': 'Keda', 'Jóhannes Haukur Jóhannesson': 'Tau', 'Marcin Kowalczyk': 'Sigma', 'Jens Hultén': 'Xi', 'Natassia Malthe': 'Rho', 'Spencer Bogaert': 'Kappa', 'Mercedes de la Zerda': 'Nu', 'Leonor Varela': 'Shaman Woman', 'Morgan Freeman': 'Narrator       (voice)'}\"\r\ntt1270797,\"{'Tom Hardy': 'Eddie Brock /              Venom', 'Michelle Williams': 'Anne Weying', 'Riz Ahmed': 'Carlton Drake /              Riot', 'Scott Haze': 'Security Chief Roland Treece', 'Reid Scott': 'Dr. Dan Lewis', 'Jenny Slate': 'Dr. Dora Skirth', 'Melora Walters': 'Homeless Woman Maria', 'Woody Harrelson': 'Cletus Kasady', 'Peggy Lu': 'Mrs. Chen', 'Malcolm C. Murray': 'Lewis Donate', 'Sope Aluko': 'Dr. Collins', 'Wayne Pére': 'Dr. Emerson       (as Wayne Péré)', 'Michelle Lee': 'Malaysia EMT /              Riot Host', 'Kurt Yue': 'Mission Control Translator', \"\"Chris O'Hara\"\": 'Astronaut JJ Jameson, III'}\"\r\ntt3766354,\"{'Denzel Washington': 'Robert McCall', 'Pedro Pascal': 'Dave York', 'Ashton Sanders': 'Miles Whittaker', 'Orson Bean': 'Sam Rubinstein', 'Bill Pullman': 'Brian Plummer', 'Melissa Leo': 'Susan Plummer', 'Jonathan Scarfe': 'Resnik', 'Sakina Jaffrey': 'Fatima', 'Kazy Tauginas': 'Ari', 'Garrett Golden': 'Kovac       (as Garrett A. Golden)', 'Adam Karst': 'Turkish Father', 'Alican Barlas': 'Dining Car Porter', 'Rhys Olivia Cote': 'Nine Year Old Braelick Girl       (as Rhys Cote)', 'Tamara Hickey': 'Grace Braelick', 'Ken Baltin': \"\"Grace Braelick's Lawyer\"\"}\"\r\ntt4633694,\"{'Shameik Moore': 'Miles Morales       (voice)', 'Jake Johnson': 'Peter B. Parker       (voice)', 'Hailee Steinfeld': 'Gwen Stacy       (voice)', 'Mahershala Ali': 'Uncle Aaron       (voice)', 'Brian Tyree Henry': 'Jefferson Davis       (voice)', 'Lily Tomlin': 'Aunt May       (voice)', 'Luna Lauren Velez': 'Rio Morales       (voice)', 'Zoë Kravitz': 'Mary Jane       (voice)', 'John Mulaney': 'Spider-Ham       (voice)', 'Kimiko Glenn': 'Peni Parker       (voice)', 'Nicolas Cage': 'Spider-Man Noir       (voice)', 'Kathryn Hahn': 'Doc Ock       (voice)', 'Liev Schreiber': 'Wilson Fisk       (voice)', 'Chris Pine': 'Peter Parker       (voice)', 'Natalie Morales': 'Miss Calleros       (voice)'}\"\r\ntt7668870,\"{'John Cho': 'David Kim', 'Sara Sohn': 'Pamela Nam Kim', 'Alex Jayne Go': 'Young Margot (5 yrs)', 'Megan Liu': 'Young Margot (7 yrs)', 'Kya Dawn Lau': 'Young Margot (9 yrs)', 'Michelle La': 'Margot', 'Joseph Lee': 'Peter', 'Dominic Hoffman': 'Michael Porter', 'Sylvia Minassian': 'Mrs. Shahinian       (voice)', 'Melissa Disney': \"\"Isaac's Mom       (voice)\"\", 'Connor McRaith': 'Isaac', 'Colin Woodell': '911 Operator       (voice)', 'Debra Messing': 'Detective Vick', 'Joseph John Schirle': 'Jonah Emmi       (voice) (as Joseph K. Shirle)', 'Ashley Edner': \"\"Margot's Friend #1       (voice)\"\"}\"\r\ntt0181316,\"{'Martin Lawrence': 'Miles Logan', 'Luke Wilson': 'Carlson', 'Peter Greene': 'Deacon', 'Dave Chappelle': 'Tulley', 'Nicole Ari Parker': 'Melissa Green', 'Graham Beckel': 'Rizzo', 'Robert Miranda': 'Glenfiddish', 'Olek Krupa': 'Jean LaFleur', 'Saverio Guerra': 'Benny', 'Richard C. Sarafian': 'Uncle Lou', 'Tamala Jones': 'Janiece', 'Julio Oscar Mechoso': 'Detective Diaz', 'Steve Rankin': 'FBI Agent Gray', 'Carmen Argenziano': 'Captain Penelli', 'John Hawkes': 'Eddie'}\"\r\ntt3450650,\"{'Kevin James': 'Paul Blart', 'Raini Rodriguez': 'Maya Blart', 'Neal McDonough': 'Vincent Sofel', 'Daniella Alonso': 'Divina Martinez', 'Eduardo Verástegui': 'Eduardo Furtillo       (as Eduardo Verastegui)', 'David Henrie': 'Lane', 'Shirley Knight': 'Mom', 'Gary Valentine': 'Saul Gundermutt', 'Ana Gasteyer': 'Mrs. Gundermutt', 'Nicholas Turturro': 'Nick Panero', 'Loni Love': 'Donna Ericone', 'Shelly Desai': 'Khan Mubi', 'Vic Dibitetto': 'Gino Chizetti', 'D.B. Woodside': 'Robinson       (as DB Woodside)', 'Bas Rutten': 'Henk'}\"\r\ntt0095647,\"{'Gene Hackman': 'Anderson', 'Willem Dafoe': 'Ward', 'Frances McDormand': 'Mrs. Pell', 'Brad Dourif': 'Deputy Pell', 'R. Lee Ermey': 'Mayor Tilman', 'Gailard Sartain': 'Sheriff Stuckey', 'Stephen Tobolowsky': 'Townley', 'Michael Rooker': 'Frank Bailey', 'Pruitt Taylor Vince': 'Lester Cowens', 'Badja Djola': 'Agent Monk', 'Kevin Dunn': 'Agent Bird', 'Frankie Faison': 'Eulogist', 'Thomas B. Mason': 'Judge       (as Tom Mason)', 'Geoffrey Nauffts': 'Goatee', 'Rick Zieff': 'Passenger'}\"\r\ntt0092563,\"{'Mickey Rourke': 'Harry Angel', 'Robert De Niro': 'Louis Cyphre', 'Lisa Bonet': 'Epiphany Proudfoot', 'Charlotte Rampling': 'Margaret Krusemark', 'Stocker Fontelieu': 'Ethan Krusemark', 'Brownie McGhee': 'Toots Sweet', 'Michael Higgins': 'Dr. Albert Fowler', 'Elizabeth Whitcraft': 'Connie', 'Eliott Keener': 'Det. Sterne', 'Charles Gordone': 'Spider Simpson', 'Dann Florek': 'Herman Winesap', 'Kathleen Wilhoite': 'Nurse', 'George Buck': 'Izzy', 'Judith Drake': \"\"Izzy's Wife\"\", 'Gerald Orange': 'Pastor John       (as Gerald L. Orange)'}\"\r\ntt1213641,\"{'Ryan Gosling': 'Neil Armstrong', 'Claire Foy': 'Janet Armstrong', 'Jason Clarke': 'Ed White', 'Kyle Chandler': 'Deke Slayton', 'Corey Stoll': 'Buzz Aldrin', 'Patrick Fugit': 'Elliot See', 'Christopher Abbott': 'Dave Scott', 'Ciarán Hinds': 'Bob Gilruth', 'Olivia Hamilton': 'Pat White', 'Pablo Schreiber': 'James Lovell', 'Shea Whigham': 'Gus Grissom', 'Lukas Haas': 'Mike Collins', 'Ethan Embry': 'Pete Conrad', \"\"Brian d'Arcy James\"\": 'Joe Walker', 'Cory Michael Smith': 'Roger Chaffee'}\"\r\ntt2671706,\"{'Denzel Washington': 'Troy Maxson', 'Viola Davis': 'Rose Maxson', 'Stephen McKinley Henderson': 'Jim Bono', 'Jovan Adepo': 'Cory', 'Russell Hornsby': 'Lyons', 'Mykelti Williamson': 'Gabriel', 'Saniyya Sidney': 'Raynell', 'Christopher Mele': 'Deputy Commissioner', 'Lesley Boone': 'Evangelist Preacher       (as Leslie Boone)', 'Jason Silvis': 'Garbage Truck Driver', 'Liz Barentine': 'Background Actor'}\"\r\ntt0057251,\"{'Sidney Poitier': 'Homer Smith', 'Lilia Skala': 'Mother Maria', 'Lisa Mann': 'Sister Gertrude', 'Isa Crino': 'Sister Agnes', 'Francesca Jarvis': 'Sister Albertine', 'Pamela Branch': 'Sister Elizabeth', 'Stanley Adams': 'Juan', 'Dan Frazer': 'Father Murphy'}\"\r\ntt1285009,\"{'Christina Hendricks': 'Cindy', 'Martin Henderson': 'Mike', 'Bailee Madison': 'Kinsey', 'Lewis Pullman': 'Luke', 'Damian Maffei': 'Man in the Mask', 'Emma Bellomy': 'Dollface', 'Lea Enslin': 'Pinup', 'Mary Louise Casanta': 'Aunt Sheryl', 'Ken Strunk': 'Uncle Marv', 'Rachel Kuhn': 'Waitress', 'Leah Roberts': 'Young Mother', 'Preston Sadleir': 'State Trooper', 'Gabriel A. Byrne': 'Young Son'}\"\r\ntt0102960,\"{'Tim Matheson': 'Jim Norman', 'Brooke Adams': 'Sally Norman', 'Robert Rusler': 'Richard Lawson', 'Chris Demetral': 'Wayne Norman', 'Robert Hy Gorman': 'Scott Norman', 'William Sanderson': 'Carl Mueller (age 44)', 'Nicholas Sadler': 'Vinnie Vincent', 'Bentley Mitchum': 'David North', 'Matt Nolan': 'Billy Sterns', 'Tasia Valenza': 'Kate', 'Chadd Nyerges': 'Chip', 'T. Max Graham': 'Chief Pappas', 'William Kuhlke': 'Principal Simmons', 'Duncan McLeod': 'Old Officer Neil', 'Nancy McLoughlin': 'Dr. Bernardi'}\"\r\ntt0470993,\"{'Dina Meyer': 'Jennifer Jones', 'George Newbern': 'Father Lyle Dey', 'Traci Lords': 'Gina Conte', 'Dan DeLuca': 'Wayne Morrison', 'Frank Whaley': 'Brent Sykes', 'Gabrielle Anwar': 'Beth Patterson', 'Christine Eads': 'Nurse', 'Stephen Szibler': 'Orderly', 'Michael Gabel': 'Dr. Pike', 'Cheryl Scungio': \"\"Jennifer's Mother\"\", 'Karen Beriss': 'Karen', 'Joe Hansard': 'Flashback Doctor', 'James A. Ray': 'Jimmy Ray       (as Jimmy Ray)', 'Chloe J. Lindsey': 'Hospital patient', 'Linda Delpierre': 'Extra'}\"\r\ntt1428538,\"{'Jeremy Renner': 'Hansel', 'Gemma Arterton': 'Gretel', 'Famke Janssen': 'Muriel', 'Pihla Viitala': 'Mina', 'Derek Mears': 'Edward', 'Robin Atkin Downes': 'Edward       (voice)', 'Ingrid Bolsø Berdal': 'Horned Witch', 'Joanna Kulig': 'Red Haired Witch', 'Thomas Mann': 'Ben', 'Peter Stormare': 'Sheriff Berringer', 'Bjørn Sundquist': 'Jackson', 'Rainer Bock': 'Mayor Engleman', 'Thomas Scharff': 'Father', 'Kathrin Kühnel': 'Adrianna', 'Cedric Eich': 'Young Hansel'}\"\r\ntt5481984,\"{'Johnny Rey Diaz': 'Rumpelstiltskin', 'Christina Licciardi': 'Alice', 'Lindsay Sawyer': 'Goldilocks', 'Talia A Davis': 'Gelda       (as Talia Davis)', 'Trae Ireland': 'Bluebeard', 'Isaac Reyes': 'Piper', 'Fiona Rene': 'Carabosse', 'Joseph Michael Harris': 'Big Bad Wolf       (as Joseph Harris)', 'Nick Principe': 'Death', 'Aaron Moses': 'Tweedledee /              Tweedledum', 'Randall Yarbrough': 'Hatter'}\"\r\ntt0365957,\"{'Omarion': 'David       (as Omari Grandberry)', 'Marques Houston': 'Elgin', 'Jennifer Freeman': 'Liyah', 'Jarell Houston': 'Rico', \"\"Lil' Fizz\"\": 'Rashann       (as Dreux Frederic)', 'Raz B': 'Vick       (as DeMario Thornton)', 'Marty Dew': 'Marty', 'Jerome Jones': 'Sonny', 'Tanee McCall': \"\"Toya       (as Tuere 'Tanee' McCall)\"\", 'Malcolm David Kelley': 'Lil Saint', 'Meagan Good': 'Beautifull', 'Steve Harvey': 'Mr. Rad', 'Christopher Jones': 'Wade', 'Robert Hoffman': 'Max       (as Robert James Hoffman III)', 'Michael Taliferro': \"\"Emerald       (as Michael 'Bear' Taliferro)\"\"}\"\r\ntt4145324,\"{'Charisma Carpenter': 'Michelle Mulan', 'Bryce Draper': 'Ryan Black', 'Morgan Obenreder': 'Dara', 'Michael Monks': 'Preston', 'Daniel Baldwin': 'Walter', 'Andy T. Tran': 'Lee', 'Mark McClain Wilson': 'George', 'Hayley McLaughlin': 'Alana', 'Noel Arthur': 'Jesse Aaron', 'Steffinnie Phrommany': 'Kori', 'Steve Suh': 'Security Officer', 'Cedric Scott': 'Concierge', 'Lyndsay Haldorson': 'Receptionist', 'Heather Paige Cohn': 'Nurse', 'Terrell Owens': 'Terrell'}\"\r\ntt6781982,\"{'Kevin Hart': 'Teddy', 'Tiffany Haddish': 'Carrie', 'Rob Riggle': 'Mackenzie', 'Romany Malco': 'Jaylen', 'Taran Killam': 'Stewart', 'Megalyn Echikunwoke': 'Lisa', 'Al Madrigal': 'Luis', 'Mary Lynn Rajskub': 'Theresa', 'Keith David': 'Gerald', 'Anne Winters': 'Mila', 'Fat Joe': 'Bobby', 'Ben Schwartz': 'Marvin', 'Yvonne Orji': 'Maya', 'Bresha Webb': 'Denise', 'Jeff Rose': 'Isaac'}\"\r\ntt2937696,\"{'Blake Jenner': 'Jake', 'Juston Street': 'Jay', 'Ryan Guzman': 'Roper', 'Tyler Hoechlin': 'McReynolds', 'Wyatt Russell': 'Willoughby', 'Glen Powell': 'Finnegan', 'Temple Baker': 'Plummer', 'J. Quinton Johnson': 'Dale', 'Will Brittain': 'Beuter', 'Courtney Tailor': 'Sorority Girl #1', 'Taylor Murphy': 'Sorority Girl #2', 'Christina Burdette': 'Cute Coed #1', 'Zoey Deutch': 'Beverly', 'Sophia Ali': \"\"Beverly's Roommate\"\", 'Austin Amelio': 'Nesbit'}\"\r\ntt0090685,\"{'Rodney Dangerfield': 'Thornton Melon', 'Sally Kellerman': 'Dr. Diane Turner', 'Burt Young': 'Lou', 'Keith Gordon': 'Jason Melon', 'Robert Downey Jr.': 'Derek Lutz', 'Paxton Whitehead': 'Philip Barbay', 'Terry Farrell': 'Valerie Desmond', 'M. Emmet Walsh': 'Coach Turnbull', 'Adrienne Barbeau': 'Vanessa', 'William Zabka': 'Chas', 'Ned Beatty': 'Dean David Martin', 'Severn Darden': 'Dr. Barazini', 'Sam Kinison': 'Professor Terguson', 'Robert Picardo': 'Giorgio', 'Kurt Vonnegut Jr.': 'Himself'}\"\r\ntt6911608,\"{'Amanda Seyfried': 'Sophie', 'Andy Garcia': 'Fernando Cienfuegos', 'Celia Imrie': 'Vice Chancellor', 'Lily James': 'Young Donna', 'Alexa Davies': 'Young Rosie', 'Jessica Keenan Wynn': 'Young Tanya', 'Dominic Cooper': 'Sky', 'Julie Walters': 'Rosie', 'Christine Baranski': 'Tanya', 'Hugh Skinner': 'Young Harry', 'Pierce Brosnan': 'Sam', 'Omid Djalili': 'Greek Official', 'Josh Dylan': 'Young Bill', 'Gerard Monaco': 'Alexio', 'Anna Antoniades': 'Apollonia'}\"\r\ntt3640424,\"{'Brad Pitt': 'Max Vatan', 'Vincent Ebrahim': 'Driver in Desert', 'Xavier de Guillebon': 'Claude', 'Marion Cotillard': 'Marianne Beauséjour', 'Camille Cottin': 'Monique', 'Michael McKell': 'German Officer at Anfa Café', 'Vincent Latorre': 'Vincent       (as Vincent La Torre)', 'Fleur Poad': \"\"Hobar's Secretary\"\", 'August Diehl': 'Hobar', 'Miryam Hayward': 'Moroccan Girl', 'Iselle Rifat': 'Moroccan Girl', 'Aysha Kanayo': 'Moroccan Girl', 'Anton Blake': 'German Ambassador', 'Daniel Betts': 'George Kavanagh', 'Sally Messham': 'Margaret'}\"\r\ntt0427152,\"{'Steve Carell': 'Barry', 'Paul Rudd': 'Tim', 'Zach Galifianakis': 'Therman', 'Jemaine Clement': 'Kieran', 'Stephanie Szostak': 'Julie', 'Lucy Punch': 'Darla', 'Bruce Greenwood': 'Lance Fender', 'David Walliams': 'Müeller', 'Ron Livingston': 'Caldwell', 'Larry Wilmore': 'Williams', 'Kristen Schaal': 'Susana', 'P.J. Byrne': 'Davenport', 'Andrea Savage': 'Robin', 'Nick Kroll': 'Josh', 'Randall Park': 'Henderson'}\"\r\ntt0077504,\"{'Burt Reynolds': 'Wendell Sonny Lawson', 'Dom DeLuise': 'Marlon Borunki', 'Sally Field': 'Mary Ellen', 'Strother Martin': 'Dr. Waldo Kling', 'David Steinberg': 'Marty Lieberman', 'Joanne Woodward': 'Jessica Lawson', 'Norman Fell': 'Dr. Samuel Krugman', 'Myrna Loy': 'Maureen Lawson', 'Kristy McNichol': 'Julie Lawson', \"\"Pat O'Brien\"\": 'Ben Lawson', 'Robby Benson': 'Father Dave Benson', 'Carl Reiner': 'Dr. James Maneet', 'Louise LeTourneau': 'Receptionist', 'Bill Ewing': 'Hearse Driver', 'Robert Rothwell': 'Limousine Driver'}\"\r\ntt0111143,\"{'Alec Baldwin': 'Lamont Cranston /              The Shadow', 'John Lone': 'Shiwan Khan', 'Penelope Ann Miller': 'Margo Lane', 'Peter Boyle': 'Moe Shrevnitz', 'Ian McKellen': 'Reinhardt Lane', 'Tim Curry': 'Farley Claymore', 'Jonathan Winters': 'Police Commissioner Wainwright Barth', 'Sab Shimono': 'Dr. Roy Tam', 'Andre Gregory': 'Burbank', 'Brady Tsurutani': 'Tulku', 'James Hong': 'Li Peng', \"\"Arsenio 'Sonny' Trinidad\"\": 'Wu', 'Joseph Maher': 'Isaac Newboldt', 'John Kapelos': 'Duke Rollins', 'Max Wright': 'Berger'}\"\r\ntt0117107,\"{'Nick Nolte': 'Max Hoover', 'Melanie Griffith': 'Katherine Hoover', 'Chazz Palminteri': 'Elleroy Coolidge', 'Michael Madsen': 'Eddie Hall', 'Chris Penn': 'Arthur Relyea', 'Treat Williams': 'Colonel Nathan Fitzgerald', 'Jennifer Connelly': 'Allison Pond', 'Daniel Baldwin': 'McCafferty', 'Andrew McCarthy': 'Jimmy Fields', 'John Malkovich': 'General Thomas Timms', 'Kyle Chandler': 'Captain', 'Ed Lauter': 'Earl', 'Larry Garrison': \"\"Perino's Maitre d'\"\", 'Chelsea Harrington': 'Lolita', 'Johnna Johnson': 'Bar Woman'}\"\r\ntt0281686,\"{'Bruce Campbell': 'Elvis Presley /              Sebastian Haff', 'Ossie Davis': 'Jack', 'Ella Joyce': 'The Nurse', 'Heidi Marnhout': 'Callie', 'Bob Ivy': 'Bubba Ho-tep', 'Edith Jefferson': 'Elderly Woman', 'Larry Pennell': 'Kemosabe', 'Reggie Bannister': 'Rest Home Administrator', 'Daniel Roebuck': 'Hearse Driver', 'Daniel Schweiger': 'Hearse Driver', 'Harrison Young': \"\"Elvis' Roommate\"\", 'Linda Flammer': 'Room Nurse', 'Cean Okada': 'Attending Nurse', 'Solange Morand': 'Iron Lung Lady', 'Karen Placencia': 'Baby'}\"\r\ntt0089489,\"{'Steve Railsback': 'Col. Tom Carlsen', 'Peter Firth': 'Col. Colin Caine', 'Frank Finlay': 'Dr. Hans Fallada', 'Mathilda May': 'Space Girl', 'Patrick Stewart': 'Dr. Armstrong', 'Michael Gothard': 'Dr. Bukovsky', 'Nicholas Ball': 'Roger Derebridge', 'Aubrey Morris': 'Sir Percy Heseltine', 'Nancy Paul': 'Ellen Donaldson', 'John Hallam': 'Lamson', 'John Keegan': 'Guard', 'Chris Jagger': 'First Vampire       (as Christopher Jagger)', 'Bill Malin': 'Second Vampire', 'Jerome Willis': 'Pathologist', 'Derek Benfield': 'Physician'}\"\r\ntt2042447,\"{'Jason Williams': 'Douglas Benson', 'Amy Van Horne': 'Virginia Benson', 'Devin Clark': 'Tyler Benson', 'Nadine Crocker': 'Lori Benson', 'Gracie Largent': 'Melanie Benson', 'Luke Barnett': 'Ronald J. Defeo Jr. /              The Ghost', 'Tyler Shamy': 'Greg', 'Kristen Hager Meed': 'Kristen', 'Jon Kondelik': 'Brett', 'Alex Rzechowicz': 'Donny Reddit', 'Mary LeGault': 'Ivey', 'Piper Kennedy': 'Bri', 'Casey Campbell': 'Detective', 'Jon Gale': 'Officer Nathen'}\"\r\ntt1502407,\"{'Jamie Lee Curtis': 'Laurie Strode', 'Judy Greer': 'Karen', 'Andi Matichak': 'Allyson', 'James Jude Courtney': 'The Shape', 'Nick Castle': 'The Shape', 'Haluk Bilginer': 'Dr. Sartain', 'Will Patton': 'Officer Hawkins', 'Rhian Rees': 'Dana Haines', 'Jefferson Hall': 'Aaron Korey', 'Toby Huss': 'Ray', 'Virginia Gardner': 'Vicky', 'Dylan Arnold': 'Cameron Elam', 'Miles Robbins': 'Dave', 'Drew Scheid': 'Oscar', 'Jibrail Nantambu': 'Julian'}\"\r\ntt6133466,\"{\"\"Y'lan Noel\"\": 'Dmitri', 'Lex Scott Davis': 'Nya', 'Joivan Wade': 'Isaiah', 'Mugga': 'Dolores', 'Patch Darragh': 'Chief of Staff - Arlo Sabian', 'Marisa Tomei': 'The Architect - Dr. Updale', 'Luna Lauren Velez': 'Luisa', 'Kristen Solis': 'Selina', 'Rotimi Paul': 'Skeletor', 'Mo McRae': '7 & 7', 'Jermel Howard': 'Lorenzo', 'Siya': 'Blaise', 'Christian Robinson': 'Capital A', 'Steve Harris': 'Freddy', 'Derek Basco': 'Taz'}\"\r\ntt4786282,\"{'Teresa Palmer': 'Rebecca', 'Gabriel Bateman': 'Martin', 'Alexander DiPersia': 'Bret', 'Billy Burke': 'Paul', 'Maria Bello': 'Sophie', 'Alicia Vela-Bailey': 'Diana', 'Andi Osho': 'Emma', 'Rolando Boyce': 'Officer Brian Andrews', 'Maria Russell': 'Officer Gomez', 'Elizabeth Pan': 'Nurse', 'Lotta Losten': 'Esther', 'Amiah Miller': 'Young Rebecca', 'Ava Cantrell': 'Teen Diana', 'Emily Alyn Lind': 'Teen Sophie'}\"\r\ntt1980209,\"{'Mark Wahlberg': 'Daniel Lugo', 'Dwayne Johnson': 'Paul Doyle', 'Anthony Mackie': 'Adrian Doorbal', 'Tony Shalhoub': 'Victor Kershaw', 'Ed Harris': 'Ed DuBois', 'Rob Corddry': 'John Mese', 'Bar Paly': 'Sorina Luminita', 'Rebel Wilson': 'Robin Peck', 'Ken Jeong': 'Jonny Wu', 'Michael Rispoli': 'Frank Griga', 'Keili Lefkovitz': 'Krisztina Furton', 'Emily Rutherfurd': \"\"Carolyn 'Cissy' DuBois\"\", 'Larry Hankin': 'Pastor Randy', 'Tony Plana': 'Captain Lopez', 'Peter Stormare': 'Dr. Bjornson'}\"\r\ntt0479884,\"{'Jason Statham': 'Chev Chelios', 'Amy Smart': 'Eve', 'Jose Pablo Cantillo': 'Verona', 'Efren Ramirez': 'Kaylo', 'Dwight Yoakam': 'Doc Miles', 'Carlos Sanz': 'Carlito', 'Reno Wilson': 'Orlando', 'Edi Gathegi': 'Haitian Cabbie', 'Glenn Howerton': 'Doctor', 'Jay Xcala': 'Alex', 'Keone Young': 'Don Kim', 'Valarie Rae Miller': 'Chocolate', 'Yousuf Azami': 'Arab Cabbie', 'Laurent Schwaar': 'Man in Garage       (as Laurent Schwar)', 'David Brown': 'Sin City Brother'}\"\r\ntt5734548,\"{'Dylan Vox': 'Odysseus', 'Lara Heller': 'Circe /              Shadow Warrior', 'Hachem Hicham': 'Aesus', 'David Gray': 'Eurylochus       (as David W. Gray)', 'Kelly B. Jones': 'Penelope', \"\"Eoin O'Brien\"\": 'Achilles', 'David Blazejko': 'Agamemnon /              Minotaur Priest', 'Ego Mikitas': 'King Priam', 'Nikola Mitic': 'Paris', 'Katrina Grey': 'Helen', 'Dan Renalds': 'Telemachus       (as Daniel Renalds)', 'Daniel Whyte': 'Antinoos', 'Torstein Olaussen': 'Old Thelonious', 'Cecilia Belletti': 'Calypso', 'Kat Ingkarat': 'Siren /              Old Hag       (as Kat Ingkarat Jaraswongkosol)'}\"\r\ntt0409847,\"{'Daniel Craig': 'Jake Lonergan', 'Abigail Spencer': 'Alice', 'Buck Taylor': 'Wes Claiborne', 'Matthew Taylor': 'Luke Claiborne       (as Matt Taylor)', 'Cooper Taylor': 'Mose Claiborne', 'Clancy Brown': 'Meacham', 'Paul Dano': 'Percy Dolarhyde', 'Chris Browning': 'Jed Parker', 'Adam Beach': 'Nat Colorado', 'Sam Rockwell': 'Doc', 'Ana de la Reguera': 'Maria       (as Ana De La Reguera)', 'Noah Ringer': 'Emmett Taggart', 'Brian Duffy': 'Deputy', 'Olivia Wilde': 'Ella Swenson', 'Keith Carradine': 'Sheriff John Taggart'}\"\r\ntt1335975,\"{'Keanu Reeves': 'Kai', 'Hiroyuki Sanada': 'Ôishi', 'Ko Shibasaki': 'Mika       (as Kô Shibasaki)', 'Tadanobu Asano': 'Lord Kira', 'Min Tanaka': 'Lord Asano', 'Jin Akanishi': 'Chikara', 'Masayoshi Haneda': 'Yasuno', 'Hiroshi Sogabe': 'Hazama', 'Takato Yonemoto': 'Basho', 'Hiroshi Yamada': 'Hara', 'Shû Nakajima': 'Horibe', 'Cary-Hiroyuki Tagawa': 'Shogun Tsunayoshi', 'Neil Fingleton': 'Lovecraftian Samurai', 'Rinko Kikuchi': 'Witch', 'Natsuki Kunimoto': 'Riku'}\"\r\ntt0076239,\"{'Desi Arnaz Jr.': 'Scott', 'Robert Carradine': 'John', 'Melanie Griffith': 'Susie', 'Anne Lockhart': 'Cindy Young', 'Tom Ligon': 'Sanders', 'Cliff Lenz': 'Henderson', 'Robert Loper': 'Simon Williams', 'Diana Grayf': 'Rhonda', \"\"Diane O'Mack\"\": 'Debbie', 'Susan Ludlow': 'Personnel Lady', \"\"Ted D'Arms\"\": 'Site Manager', 'Gail Rosella': 'Cashier', 'Richard Mazzola': 'Car Salesman', \"\"Michael O'Neill\"\": \"\"Henderson's Assistant\"\", 'Duncan Maclean': 'Diner Owner'}\"\r\ntt2543164,\"{'Amy Adams': 'Louise Banks', 'Jeremy Renner': 'Ian Donnelly', 'Forest Whitaker': 'Colonel Weber', 'Michael Stuhlbarg': 'Agent Halpern', \"\"Mark O'Brien\"\": 'Captain Marks', 'Tzi Ma': 'General Shang', 'Abigail Pniowsky': '8-Year-Old-Hannah', 'Julia Scarlett Dan': '12-Year-Old-Hannah', 'Jadyn Malone': '6-Year-Old-Hannah', 'Frank Schorpion': 'Dr. Kettler', 'Lucas Chartier-Dessert': 'Private Lasky', 'Christian Jadah': 'Private Combs', 'Lucy Van Oldenbarneveld': 'CNAC Anchor', 'Andrew Shaver': 'Environmental Tech', 'Pat Kiely': 'Environmental Tech'}\"\r\ntt0134983,\"{'James Spader': 'Nick Vanzant', 'Angela Bassett': 'Dr. Kaela Evers', 'Robert Forster': 'A.J. Marley', 'Lou Diamond Phillips': 'Yerzy Penalosa', 'Peter Facinelli': 'Karl Larson', 'Robin Tunney': 'Danika Lund', 'Wilson Cruz': 'Benj Sotomejor', 'Eddy Rice Jr.': 'Flyboy', 'Knox White': 'Troy Larson       (as Knox Grantham White)', 'Kerrigan Mahan': 'Troy Larson       (voice)', 'Vanessa Marshall': 'Sweetie       (voice)'}\"\r\ntt0062622,\"{'Keir Dullea': 'Dr. Dave Bowman', 'Gary Lockwood': 'Dr. Frank Poole', 'William Sylvester': 'Dr. Heywood R. Floyd', 'Daniel Richter': 'Moon-Watcher', 'Leonard Rossiter': 'Dr. Andrei Smyslov', 'Margaret Tyzack': 'Elena', 'Robert Beatty': 'Dr. Ralph Halvorsen', 'Sean Sullivan': 'Dr. Bill Michaels', 'Douglas Rain': 'HAL 9000       (voice)', 'Frank Miller': 'Mission Controller       (voice)', 'Bill Weston': 'Astronaut', 'Ed Bishop': 'Aries-1B Lunar Shuttle Captain       (as Edward Bishop)', 'Glenn Beck': 'Astronaut', 'Alan Gifford': \"\"Poole's Father\"\", 'Ann Gillis': \"\"Poole's Mother\"\"}\"\r\ntt0074559,\"{'Peter Fonda': 'Chuck Browning', 'Blythe Danner': 'Tracy Ballard', 'Arthur Hill': 'Duffy', 'Yul Brynner': 'The Gunslinger', 'John P. Ryan': 'Dr. Schneider       (as John Ryan)', 'Stuart Margolin': 'Harry', 'Allen Ludden': 'Game Show Host', 'Robert Cornthwaite': 'Mr. Reed', 'Angela Greene': 'Mrs. Reed', 'Darrell Larson': 'Eric', 'Nancy Bell': 'Erica', 'Burt Conroy': 'Mr. Karnovski', 'Dorothy Konrad': 'Mrs. Karnovski', 'John Fujioka': 'Mr. Takaguchi', 'Dana Lee': \"\"Mr. Takaguchi's Aide\"\"}\"\r\ntt0983193,\"{'Jamie Bell': 'Tintin       (voice)', 'Andy Serkis': 'Captain Haddock /              Sir Francis Haddock       (voice)', 'Daniel Craig': 'Sakharine /              Red Rackham       (voice)', 'Nick Frost': 'Thomson       (voice)', 'Simon Pegg': 'Thompson       (voice)', 'Daniel Mays': 'Allan /              Pirate Flunky #1       (voice)', 'Gad Elmaleh': 'Ben Salaad       (voice)', 'Toby Jones': 'Silk       (voice)', 'Joe Starr': 'Barnaby       (voice)', 'Enn Reitel': 'Nestor /              Mr. Crabtree       (voice)', 'Mackenzie Crook': 'Tom /              Pirate Flunky #2       (voice)', 'Tony Curran': 'Lieutenant Delcourt       (voice)', 'Sonje Fortag': 'Mrs. Finch       (voice)', 'Cary Elwes': 'Pilot       (voice)', 'Phillip Rhys': 'Co-Pilot /              French Medic       (voice)'}\"\r\ntt2279373,\"{'Antonio Banderas': 'Burger Beard', 'Eric Bauza': 'Seagull       (voice)', 'Tim Conway': 'Seagull       (voice)', 'Eddie Deezen': 'Seagull       (voice)', 'Rob Paulsen': 'Seagull       (voice)', 'Kevin Michael Richardson': 'Seagull       (voice)', 'April Stewart': 'Seagull       (voice)', 'Cree Summer': 'Seagull       (voice)', 'Billy West': 'Seagull       (voice)', 'Carlos Alazraqui': 'Seagull /              Dead Parrot       (voice)', 'Nolan North': 'Seagull /              Dead Parrot /              Pigeon Cabbie       (voice)', 'Paul Tibbitt': 'Kyle /              Helpful Angry Mob Member       (voice)', 'Tom Kenny': 'SpongeBob /              Gary /              Agreeable Mob Member /              Waffle       (voice)', 'Bill Fagerbakke': 'Patrick /              Male Fish /              Eager Customer       (voice)', 'Rodger Bumpass': 'Doctor /              Squidward /              Angry Mob Member #2 /              Doughnut /              Squidasaurus Rex       (voice)'}\"\r\ntt3095734,\"{'Lucas Till': 'Tripp', 'Jane Levy': 'Meredith', 'Thomas Lennon': 'Jim Dowd', 'Barry Pepper': 'Sheriff Rick', 'Rob Lowe': 'Reece Tenneson', 'Danny Glover': 'Mr. Weathers', 'Amy Ryan': 'Cindy', 'Holt McCallany': 'Burke', 'Frank Whaley': 'Wade Coley', \"\"Aliyah O'Brien\"\": 'Junior Scientist', 'Daniel Bacon': 'Technician', 'Faustino Di Bauda': 'Roughneck', 'Jedidiah Goodacre': 'Jake (Letterman Kid)', 'Samara Weaving': 'Brianne', 'Ruairi MacDonald': '9th Grader'}\"\r\ntt2202750,\"{'Andrew Beckham': 'Oliver Richmond', 'Shannon Elizabeth': 'Jessica Richmond', 'Jason Brooks': 'Jeff Richmond', 'Charles Irving Beale': 'Ben', 'Madeleine Falk': 'Mrs. Geitzen', 'Sam Elliot Hafermalz': 'Scooter       (as Samuel E. Hafermalz)', 'Joe Hursley': 'Frankie', 'Ava Kolker': 'Marybeth Geitzen', 'Jon Kondelik': 'Tommy', 'Rae Latt': 'Mrs. Mildred Bell', 'Richard Lund': 'Mr. Williams', 'Christian Mooney': 'Timmy Geitzen', 'Clyde Tull': 'Mr. Garvey', 'Jim Turner': 'Mr. Geitzen', 'Zach Louis': 'Charley'}\"\r\ntt3860916,\"{'Simone Landers': 'Thoomi', 'Martin Freeman': 'Andy', 'Marlee Jane McPherson-Dobbins': 'Rosie', 'Lily Anne McPherson-Dobbins': 'Rosie', 'Finlay Sjoberg': 'Rosie', 'Nova Sjoberg': 'Rosie', 'Susie Porter': 'Kay', 'Ella Barter': 'River Girl', 'Aiden Squire': 'River Boy', 'Alexandra Schulze': 'River Mother', 'Andy Rodoreda': 'River Father', 'Bruce R. Carter': 'Willie', 'Kris McQuade': 'Etta', 'Natasha Wanganeen': 'Josie', 'Shannon Mckenzie': 'Hunting Party'}\"\r\ntt0938283,\"{'Noah Ringer': 'Aang', 'Dev Patel': 'Prince Zuko', 'Nicola Peltz': 'Katara', 'Jackson Rathbone': 'Sokka', 'Shaun Toub': 'Uncle Iroh', 'Aasif Mandvi': 'Commander Zhao', 'Cliff Curtis': 'Fire Lord Ozai', 'Seychelle Gabriel': 'Princess Yue', 'Katharine Houghton': \"\"Katara's Grandma\"\", 'Francis Guinan': 'Master Pakku', 'Damon Gupton': 'Monk Gyatso', 'Summer Bishil': 'Azula', 'Randall Duk Kim': 'Old Man in Temple', \"\"John D'Alonzo\"\": \"\"Zhao's Assistant\"\", 'Keong Sim': 'Earthbending Father'}\"\r\ntt0082348,\"{'Nigel Terry': 'King Arthur', 'Helen Mirren': 'Morgana', 'Nicholas Clay': 'Lancelot', 'Cherie Lunghi': 'Guenevere', 'Paul Geoffrey': 'Perceval', 'Nicol Williamson': 'Merlin', 'Robert Addie': 'Mordred', 'Gabriel Byrne': 'Uther Pendragon', 'Keith Buckley': 'Uryens', 'Katrine Boorman': 'Igrayne', 'Liam Neeson': 'Gawain', 'Corin Redgrave': 'Cornwall', \"\"Niall O'Brien\"\": 'Kay', 'Patrick Stewart': 'Leondegrance', 'Clive Swift': 'Ector'}\"\r\ntt0026714,\"{'Ian Hunter': 'Theseus - Duke of Athens', 'Verree Teasdale': 'Hippolyta - Queen of the Amazons - Betrothed to Theseus', 'Hobart Cavanaugh': 'Philostrate - Master of Revels to Theseus', 'Dick Powell': 'Lysander - In Love with Hermia', 'Ross Alexander': 'Demetrius - In Love with Hermia', 'Olivia de Havilland': 'Hermia - In Love with Lysander       (as Olivia de Haviland)', 'Jean Muir': 'Helena - In Love with Demetrius', 'Grant Mitchell': 'Egeus - Father to Hermia', 'Frank McHugh': 'Quince - the Carpenter', 'Dewey Robinson': 'Snug - the Joiner', 'James Cagney': 'Bottom - the Weaver', 'Joe E. Brown': 'Flute - the Bellows-Mender', 'Hugh Herbert': 'Snout - the Tinker', 'Otis Harlan': 'Starveling - the Tailor', 'Arthur Treacher': 'Epilogue'}\"\r\ntt4912910,\"{'Tom Cruise': 'Ethan Hunt', 'Henry Cavill': 'August Walker', 'Ving Rhames': 'Luther Stickell', 'Simon Pegg': 'Benji Dunn', 'Rebecca Ferguson': 'Ilsa Faust', 'Sean Harris': 'Solomon Lane', 'Angela Bassett': 'Erika Sloane', 'Vanessa Kirby': 'The White Widow', 'Michelle Monaghan': 'Julia', 'Wes Bentley': 'Erik', 'Frederick Schmidt': 'Zola', 'Alec Baldwin': 'Alan Hunley', 'Liang Yang': 'Lark Decoy', 'Kristoffer Joner': 'Nils Debruuk', 'Wolf Blitzer': 'Wolf Blitzer'}\"\r\ntt1205537,\"{'Chris Pine': 'Jack Ryan', 'Keira Knightley': 'Cathy Muller', 'Kevin Costner': 'Thomas Harper', 'Kenneth Branagh': 'Viktor Cherevin', 'Lenn Kudrjawizki': 'Constantin', 'Alec Utgoff': 'Aleksandr Borovsky', 'Peter Andersson': 'Dimitri Lemkov', 'Elena Velikanova': 'Katya', 'Nonso Anozie': 'Embee Deng', 'Seth Ayott': 'Teddy Hefferman', 'Colm Feore': 'Rob Behringer', 'Gemma Chan': 'Amy Chang', 'Aleksandar Aleksiev': \"\"Cherevin's Bodyguard\"\", 'Andrew Byron': \"\"Cherevin's Bodyguard\"\", 'Derek Lea': \"\"Cherevin's Bodyguard\"\"}\"\r\ntt2538128,\"{'Jeff Fahey': 'Steve Foster', 'Sara Malakul Lane': 'Taryn Foster', 'Marc Ewins': 'Ryan Foster', 'John Rhys-Davies': 'Colonel Ralph Dillard', 'Iván Kamarás': 'Dr. Goldschein', 'Luke Healy': 'Lieutenant Perkins', 'Judit Fekete': 'Lacey', 'Zsófi Trecskó': 'Angelique', 'Fru Roszil': 'Ana', 'Peter Linka': 'C-160 Pilot', 'András Korcsmáros': 'Philippe - French Soldier', 'Tamás Deák': 'Stuart the Furrier', 'Declan Hannigan': 'Channel Attendant', 'Tamás Lengyel': 'Claude', 'Zoltan Erdelyi': 'Channel Guard'}\"\r\ntt0101452,\"{'Keanu Reeves': 'Ted', 'Alex Winter': 'Bill /              Granny Preston', 'William Sadler': 'Grim Reaper', 'Joss Ackland': 'De Nomolos', 'Pam Grier': 'Ms. Wardroe', 'George Carlin': 'Rufus', 'Amy Stoch': 'Missy       (as Amy Stock-Poynton)', 'Jim Martin': 'Sir James Martin', 'Hal Landon Jr.': 'Captain Logan', 'Annette Azcuy': 'Elizabeth', 'Sarah Trigger': 'Joanna', 'Chelcie Ross': 'Colonel Oats', 'Taj Mahal': 'Gatekeeper', 'Robert Noble': 'Bach', 'Hal Landon Sr.': 'Thomas Edison'}\"\r\ntt0109045,\"{'Hugo Weaving': 'Tick /              Mitzi', 'Guy Pearce': 'Adam /              Felicia', 'Terence Stamp': 'Bernadette', 'Rebel Penfold-Russell': 'Logowoman       (as Rebel Russell)', 'John Casey': 'Bartender', 'June Marie Bennett': 'Shirley', 'Murray Davies': 'Miner', 'Frank Cornelius': 'Piano Player', 'Bob Boyce': 'Petrol Station Attendant', 'Leighton Picken': 'Young Adam', 'Maria Kmet': 'Ma', 'Joseph Kmet': 'Pa', 'Alan Dargin': 'Aboriginal Man', 'Bill Hunter': \"\"Robert 'Bob' Spart\"\", 'Julia Cortez': 'Cynthia Campos'}\"\r\ntt2136808,\"{'Jack Cullison': 'Ross Gans', 'Howard Cai': 'Kwan', 'Jonathan Brett': 'Ed', 'Colbert Alembert': 'Marcus', 'Andre Meadows': 'Doug', 'Julie Barzman': 'Kim', 'Alex Arleo': 'Delaney', 'Jenny Lin': 'Gina', 'Ed Callison': 'Buck Hollister', 'Diana Terranova': 'Lexa', 'Amanda Ward': 'Mellony Adams', 'Alex Zanger': 'Duncan', 'James E. Hurd Jr.': 'Danny Silver', 'Emily Addison': 'Emily', 'Piper Major': 'Meg'}\"\r\ntt0058586,\"{'Peter Sellers': 'Jacques Clouseau', 'Elke Sommer': 'Maria Gambrelli', 'George Sanders': 'Benjamin Ballon', 'Herbert Lom': 'Charles Dreyfus', 'Tracy Reed': 'Dominique Ballon', 'Graham Stark': 'Hercule LaJoy', 'Moira Redmond': 'Simone', 'Vanda Godsell': 'Madame LaFarge', 'Maurice Kaufmann': 'Pierre', 'Ann Lynn': 'Dudu', 'David Lodge': 'Georges', 'André Maranne': 'Francois', 'Martin Benson': 'Maurice', 'Burt Kwouk': 'Cato', 'Reginald Beckwith': 'Receptionist at nudist camp'}\"\r\ntt0078163,\"{'Peter Sellers': 'Chief Insp. Jacques Clouseau', 'Herbert Lom': 'Chief Insp. Charles Dreyfus', 'Burt Kwouk': 'Cato Fong', 'Dyan Cannon': 'Simone Legree', 'Robert Webber': 'Philippe Douvier', 'Tony Beckley': 'Guy Algo', 'Robert Loggia': 'Al Marchione', 'Paul Stewart': 'Julio Scallini', 'André Maranne': 'Sgt. François Chevalier       (as Andre Maranne)', 'Graham Stark': 'Dr. Auguste Balls', 'Alfie Bass': 'Fernet', 'Sue Lloyd': 'Claude Russo', 'Danny Schiller': 'Cunny', 'Douglas Wilmer': 'Police Commissioner', 'Ferdy Mayne': 'Dr. Paul Laprone'}\"\r\ntt0051786,\"{'Marshall Thompson': 'Col. Edward Carruthers', 'Shirley Patterson': 'Ann Anderson       (as Shawn Smith)', 'Kim Spalding': 'Col. Van Heusen', 'Ann Doran': 'Mary Royce', 'Dabbs Greer': 'Eric Royce', 'Paul Langton': 'Lt. James Calder', 'Robert Bice': 'Maj. John Purdue', 'Richard Benedict': 'Bob Finelli', 'Richard Hervey': 'Gino Finelli', 'Thom Carney': 'Joe Kienholz', 'Ray Corrigan': 'It'}\"\r\ntt5160954,\"{'Zech Johnson': 'Jonas', 'Sean Taylor': 'Damian', 'Randall Cropp': 'Matthew', 'Jeremy Michael Pereira': 'Rhodes', 'Christopher Cowley': 'Hunter', 'Harold Dennis': '1SG Johnson', 'Gemma Garcia': 'Rachel', 'Chelsea Taylor Leech': 'Karen', 'August Lysy': 'Conspiracy Theorist', 'Walt Sloan': 'Andrew Taylor', 'Joette Waters': 'Lisa'}\"\r\ntt1679335,\"{'Anna Kendrick': 'Poppy       (voice)', 'Justin Timberlake': 'Branch       (voice)', 'Zooey Deschanel': 'Bridget       (voice)', 'Christopher Mintz-Plasse': 'King Gristle       (voice)', 'Christine Baranski': 'Chef       (voice)', 'Russell Brand': 'Creek       (voice)', 'Gwen Stefani': 'DJ Suki       (voice)', 'John Cleese': 'King Gristle Sr.       (voice)', 'James Corden': 'Biggie       (voice)', 'Jeffrey Tambor': 'King Peppy       (voice)', 'Ron Funches': 'Cooper       (voice)', 'Aino Jawo': 'Satin       (voice)', 'Caroline Hjelt': 'Chenille       (voice)', 'Kunal Nayyar': 'Guy Diamond       (voice)', 'Quvenzhané Wallis': 'Harper       (voice)'}\"\r\ntt8560130,{'Stephanie Magee': '(voice)'}\r\ntt6408946,\"{'Danni DanDan Gadigan': '(as Danni Dandan Gadigan)', 'Bill Oberst Jr.': 'Bull       (voice)'}\"\r\ntt9004516,\"{'Thomas Freeley': 'Bongo Bananas', 'Bobbi Maxwell': 'Princess Sparklefrather', 'Maria Petrano': 'Burp', 'Carmen Piroli': 'Bull Boss', 'Kj Schrock': 'Nuke', 'Martin Singer': 'Chewflies', 'Charlie Suntress': 'Chubby', 'Evan Tramel': 'Captain Ripp', 'Chen Tsung': 'Boo Boo Squeal', 'Jacob Whiteshed': 'Frog'}\"\r\ntt5936438,\"{'Bobby Catalano': 'Trevor the T-Rex', 'Doc Phineas Kastle': 'Himself - Doc Phineas T. Kastle', 'William McNamara': 'General Ruff', 'Jason Pascoe': 'Benny'}\"\r\ntt0312004,\"{'Peter Sallis': 'Wallace /              Hutch       (voice)', 'Ralph Fiennes': 'Victor Quartermaine       (voice)', 'Helena Bonham Carter': 'Lady Campanula Tottington       (voice)', 'Peter Kay': 'PC Mackintosh       (voice)', 'Nicholas Smith': 'Reverend Clement Hedges       (voice)', 'Liz Smith': 'Mrs. Mulch       (voice)', 'John Thomson': 'Mr. Windfall       (voice)', 'Mark Gatiss': 'Miss Blight       (voice)', 'Vincent Ebrahim': 'Mr. Caliche       (voice)', 'Geraldine McEwan': 'Miss Thripp       (voice)', 'Edward Kelsey': 'Mr. Growbag       (voice)', 'Dicken Ashworth': 'Mr. Mulch       (voice)', 'Robert Horvath': 'Mr. Dibber       (voice)', 'Pete Atkin': 'Mr. Crock       (voice)', 'Noni Lewis': 'Mrs. Girdling       (voice)'}\"\r\ntt3604958,\"{'Fadi Awad': 'Himself', 'Mira Awad': 'Herself', 'David Broza': 'Himself', 'Steve Earle': 'Himself', 'Issa Freij': 'Himself', 'Steve Greenberg': 'Himself', 'The Jerusalem Youth Chorus': 'Themselves', 'Muhammad Mughrabi': 'Himself       (as Muhamad Mughrabi)', 'Alon Nadel': 'Himself', 'Ariel Qassis': 'Himself', 'Gadi Seri': 'Himself', 'Elias Wakileh': 'Himself', 'Jean-Paul Zimbriz': 'Himself'}\"\r\ntt5974388,\"{'Mouna Hawa': 'Leila Bakhr', 'Sana Jammelieh': 'Salma', 'Shaden Kanboura': 'Nour', 'Mahmud Shalaby': 'Ziad Hamdi', 'Nisrin Abou-Hanna': \"\"Nour's mother\"\", 'Miri Abu': 'Landlady', 'Henry Andrawes': 'Wissam', 'Ali Assadi': 'First Match - Jamil', 'Elias Assadi': \"\"Elias's Father\"\", 'Ahlam Canaan': 'Dounia', 'Afaf Danien': 'Aunt', 'Aiman Daw': 'Saleh', 'Khawlah Hag-Debsy': \"\"Salma's mother\"\", 'Nahed Hamed': \"\"Ziad's sister\"\"}\"\r\ntt1928329,\"{'Nuno Lopes': 'Sargento Francisco Xavier', 'Soraia Chaves': 'Martírio', 'Marisa Paredes': 'D. Filipa Sanches', 'John Malkovich': 'Duke of Wellington', 'Carloto Cotta': 'Tenente Pedro de Alencar', 'Victoria Guerra': 'Clarissa', 'Marcello Urgeghe': 'Major Jonathan Foster', 'Jemima West': 'Maureen', 'Afonso Pimentel': 'Zé Maria', 'Miguel Borges': 'Manuel Penabranca', 'Mathieu Amalric': 'Barão Marbot', 'Melvil Poupaud': 'Marechal Massena', 'Filipe Vargas': 'Vicente de Almeida', 'Adriano Luz': 'Bordalo', 'João Arrais': 'Idiot'}\"\r\ntt0064395,\"{'George Kennedy': 'Chris', 'James Whitmore': 'Levi', 'Monte Markham': 'Keno', 'Reni Santoni': 'Max', 'Bernie Casey': 'Cassie', 'Scott Thomas': 'P.J.', 'Joe Don Baker': 'Slater', 'Tony Davis': 'Emil', 'Michael Ansara': 'Col. Diego', 'Frank Silvera': 'Lobero', 'Wende Wagner': 'Tina', 'Sancho Gracia': 'Miguel', 'Luis Rivera': 'Lt. Prensa', 'George Rigaud': 'Gabriel       (as Jorge Rigaud)', 'Fernando Rey': 'Quintero'}\"\r\ntt5091014,\"{'Levi Miller': 'Charlie Bucktin', 'Kevin Long': 'Jeffrey Lu', 'Toni Collette': 'Ruth Bucktin', 'Aaron L. McGrath': 'Jasper Jones', 'Nandalie Campbell Killick': 'Laura Wishart', 'Dan Wyllie': 'Wes Bucktin', 'Matt Nable': 'Sarge', 'Wilson Moore': 'Warwick Trent', 'Luke Hewitt': 'Coach', 'Cooper van Grootel': 'Batsman', 'Jack Kilrain': 'Cricketer', 'Jesse Callaghan': 'Cricketer', 'Igor Sas': 'Howard Daglish', 'Angourie Rice': 'Eliza Wishart', 'Susan Prior': 'Gwyn Wishart'}\"\r\ntt1492842,\"{'Christopher Denham': 'Kevin Wolfe', 'Lindsay Beamish': 'Jamie', 'Elizabeth Rice': 'Beth Dalewell', 'Paul Sparks': 'Tanner', 'Anna Camp': 'Adrienne Gilcrest', 'Phyllis Somerville': 'Ruby', 'Joel de la Fuente': 'Derek', 'Sara Balmas': 'French Film Girl 2', 'Agathe Biarrotte': 'French Film Girl 1', 'Heather Capuano': 'Studio Girl', 'Caitlin Carmichael': 'Nicole', 'Dina Deleasa': 'Girl in Park', 'Brenton Duplessie': 'EMT', 'Holley Fain': 'Denise Gilcrest'}\"\r\ntt4779682,\"{'Jason Statham': 'Jonas Taylor', 'Bingbing Li': 'Suyin       (as Li Bingbing)', 'Rainn Wilson': 'Morris', 'Cliff Curtis': 'Mac', 'Winston Chao': 'Zhang', 'Shuya Sophia Cai': 'Meiying       (as Sophia Cai)', 'Ruby Rose': 'Jaxx', 'Page Kennedy': 'DJ', 'Robert Taylor': 'Heller', 'Ólafur Darri Ólafsson': 'The Wall', 'Jessica McNamee': 'Lori', 'Masi Oka': 'Toshi', 'Raymond Vinten': 'Dive Control Technician', 'Hongmei Mai': 'Mother       (as Mai Hongmei)', 'Wei Yi': 'Awesome Kid on Beach'}\"\r\ntt7681902,\"{'Fred Rogers': 'Himself       (archive footage)', 'Joanne Rogers': 'Herself', 'John Rogers': 'Himself', 'Jim Rogers': 'Himself', 'Bill Isler': 'Himself', 'Hedda Sharapan': 'Herself', 'Junlei Li': 'Himself', 'Max King': 'Himself', 'Margaret Whitmer': 'Herself       (as Margy Whitmer)', 'Tom Junod': 'Himself', 'Betty Seamans': 'Herself       (as Elizabeth Seamans)', 'Joe Negri': 'Himself', 'David Newell': 'Himself', 'Elaine Crozier': 'Herself', 'George Wirth': 'Himself'}\"\r\ntt6599064,{'Stéphane Lissner': 'Himself'}\r\ntt2833768,\"{'Nolan Cook': 'Himself', 'Carla Fabrizio': 'Herself', 'Matt Groening': 'Himself', 'Molly Harvey': 'Herself', 'The Residents': 'The Residents'}\"\r\ntt0389790,\"{'Jerry Seinfeld': 'Barry B. Benson       (voice)', 'Renée Zellweger': 'Vanessa Bloome       (voice)', 'Matthew Broderick': 'Adam Flayman       (voice)', 'Patrick Warburton': 'Ken       (voice)', 'John Goodman': 'Layton T. Montgomery       (voice)', 'Chris Rock': 'Mooseblood       (voice)', 'Kathy Bates': 'Janet Benson       (voice)', 'Barry Levinson': 'Martin Benson       (voice)', 'Larry King': 'Bee Larry King       (voice)', 'Ray Liotta': 'Ray Liotta       (voice)', 'Sting': 'Sting       (voice)', 'Oprah Winfrey': 'Judge Bumbleton       (voice)', 'Larry Miller': 'Buzzwell       (voice)', 'Megan Mullally': 'Trudy       (voice)', 'Rip Torn': 'Lou Lo Duca       (voice)'}\"\r\ntt5363648,\"{'April Rose': 'Cleo       (voice)', 'Evan Tramel': 'Crash /              Other Voices       (voice)', 'Anthony Quintarius': 'Puffer       (voice) (as Dr. Anthony Quintarius)'}\"\r\ntt1235522,\"{'Mark Wahlberg': 'Billy Taggart', 'Russell Crowe': 'Mayor Hostetler', 'Catherine Zeta-Jones': 'Cathleen Hostetler', 'Jeffrey Wright': 'Carl Fairbanks', 'Barry Pepper': 'Jack Valliant', 'Alona Tal': 'Katy Bradshaw', 'Natalie Martinez': 'Natalie Barrow', 'Michael Beach': 'Tony Jansen', 'Kyle Chandler': 'Paul Andrews', 'James Ransone': 'Todd Lancaster', 'Griffin Dunne': 'Sam Lancaster', 'Odessa Feaster': 'Secretary - Hostetler       (as Odessa Sykes)', 'Britney Theriot': 'Valerie', 'Luis Tolentino': 'Mikey Tavarez', 'Tony Bentley': 'Judge'}\"\r\ntt0102388,\"{'Sam Waterston': 'Matthew Trant', 'Tess Harper': 'Abigail Trant', 'Gail Strickland': 'Marie Foster', 'Reese Witherspoon': 'Dani Trant', 'Jason London': 'Court Foster', 'Emily Warfield': 'Maureen Trant', 'Bentley Mitchum': 'Billy Sanders', 'Ernie Lively': 'Will Sanders', 'Dennis Letts': 'Doc White', 'Earleen Bergeron': 'Mrs. Sanders', 'Anna Chappell': 'Mrs. Taylor', 'Brandi Smith': 'Missy Trant', 'Sandi Smith': 'Missy Trant', 'Derek Ball': 'Foster Twin', 'Spencer Ball': 'Foster Twin'}\"\r\ntt5758778,\"{'Dwayne Johnson': 'Will Sawyer', 'Neve Campbell': 'Sarah Sawyer', 'Chin Han': 'Zhao Long Ji', 'Roland Møller': 'Kores Botha', 'Noah Taylor': 'Mr. Pierce', 'Byron Mann': 'Inspector Wu', 'Pablo Schreiber': 'Ben', 'McKenna Roberts': 'Georgia Sawyer', 'Noah Cottrell': 'Henry Sawyer', 'Hannah Quinlivan': 'Xia', 'Adrian Holmes': 'Ajani Okeke', 'Elfina Luk': 'Sergeant Han', 'Kevin Rankin': 'Ray', 'Gretal Montgomery': \"\"Ray's Wife\"\", 'Jett Klyne': \"\"Ray's Son\"\"}\"\r\ntt1268799,\"{'Patton Oswalt': 'Mall Santa', 'Isabella Gielniak': 'Caren', 'Kal Penn': 'Kumar', 'Austin Bickel': 'Kid in Line', 'Inga R. Wilson': 'Mom in Line       (as Inga Wilson)', 'John Cho': 'Harold', 'Bobby Lee': 'Kenneth Park', 'Thomas Lennon': 'Todd       (as Tom Lennon)', 'Amir Blumenfeld': 'Adrian', 'Paula Garcés': 'Maria       (as Paula Garces)', 'Danny Trejo': 'Mr. Perez', 'Marvin Cruz': 'Timo Perez', 'Allyson Lengers': 'Wafflebot Kid       (as Allyson V. Lengers)', 'Gabriel Anderson': 'Wafflebot Kid', 'Eric Kissack': 'Wafflebot       (voice)'}\"\r\ntt1951261,\"{'Bradley Cooper': 'Phil', 'Ed Helms': 'Stu', 'Zach Galifianakis': 'Alan', 'Justin Bartha': 'Doug', 'Ken Jeong': 'Mr. Chow', 'John Goodman': 'Marshall', 'Melissa McCarthy': 'Cassie', 'Jeffrey Tambor': 'Sid', 'Heather Graham': 'Jade', 'Mike Epps': 'Black Doug', 'Sasha Barrese': 'Tracy', 'Jamie Chung': 'Lauren', 'Sondra Currie': 'Linda', 'Gillian Vigman': 'Stephanie', 'Oliver Cooper': 'Pharmacy Assistant'}\"\r\ntt4738802,\"{'Alice Foulcher': 'Polly /              Amy Cuthbert', 'Rowan Davie': 'Oliver Brook', 'Belinda Misevski': 'Ariel', 'Richard Davies': 'Jack Campbell', 'Andrew S. Gilbert': 'Stephen Cuthbert       (as Andrew Gilbert)', 'Catherine Hill': 'Diane Cuthbert', 'Janine Watson': 'Patricia Clarke', 'Steve Mouzakis': 'Anthony', 'Lloyd Allison-Young': 'Simon', 'Nikita Leigh-Pritchard': 'Tiana, a supermarket chick', 'Christopher Kirby': 'Cameron Pollock, a US Customs officer', 'Benjamin Rigby': 'Evan, a casting director', 'Ming-Zhu Hii': 'Corrie, a director', 'Arthur Angel': 'Nick, a producer', 'Bill Allert': 'Nigel, a cinema patron'}\"\r\ntt2767266,\"{'Frida Giannini': 'Herself', 'Matvey Lykov': 'Himself'}\"\r\ntt7137846,\"{'Gabrielle Union': 'Shaun Russell', 'Billy Burke': 'Eddie', 'Richard Cabral': 'Duncan', 'Ajiona Alexus': 'Jasmine Russell', 'Levi Meaden': 'Sam', 'Seth Carr': 'Glover Russell', 'Mark Furze': 'Peter', 'Jason George': 'Justin Russell', 'Christa Miller': 'Maggie Harris', 'Damien Leake': 'Isaac Paulson'}\"\r\ntt7260048,\"{'Edie Falco': 'Carol', 'Jay Duplass': 'Chris', 'Kaitlyn Dever': 'Hildy', 'Ben Schwartz': 'Ted', 'Aaron Blakely': 'Shane', 'Emily Cowan': \"\"Hildy's Friend\"\", 'Alycia Delmore': 'Tara', 'Stephen Grenley': 'Phil', 'Saige Hawthorne': 'Flirting Girl', 'Louis Hobson': 'Matt', 'Charles Leggett': 'Tom', 'Tori Leos': \"\"Hildy's Friend\"\", 'Matt Malloy': 'Russell', 'Claudine Mboligikpelani Nako': 'Courtney', 'Mackenzy Petit': \"\"Hildy's Friend\"\"}\"\r\ntt2309260,\"{'Reese Mishler': 'Reese Houser', 'Pfeifer Brown': 'Pfeifer Ross', 'Ryan Shoos': 'Ryan Shoos', 'Cassidy Gifford': 'Cassidy Spilker', 'Travis Cluff': 'Mr. Schwendiman', 'Price T. Morgan': 'Stage Boy       (as Price Morgan)', 'Melissa Bratton': \"\"Pfeifer's Mom\"\", 'Theo Burkhardt': 'Rick Houser       (as Théo Burkhardt)', 'David Herrara': 'David the Janitor', 'Gannon Del Fierro': 'Gannon', 'Mackie Burt': 'Cheerleader #1', 'Adrian Salas': 'Superstar Football Player', 'Mark Hales': 'Peasant #5', 'John Hales': 'The King', 'Shannon Wetzel': 'Ms. Shannon'}\"\r\ntt6883152,\"{'Gabriele Amorth': 'Himself', 'Robert Barron': 'Himself', 'William Friedkin': 'Himself'}\"\r\ntt5725894,\"{'Francesca Santoro': 'Amy', 'Stephen Manley': 'Henry', \"\"David O'Donnell\"\": 'Neal', 'London Grace': 'Martha       (as Phyllis Spielman)', 'Liz Fenning': 'Jessica', 'Crystal Web': 'Devon', 'Kjai Block': 'Religious Man', 'Kim Shannon': 'Sally       (as Kimberly Shannon)', 'Kris Marconi': 'Officer Mack', 'Anna Harr': 'Gabby', 'Aaron Moses': 'Stanley'}\"\r\ntt5725894,\"{'Francesca Santoro': 'Amy', 'Stephen Manley': 'Henry', \"\"David O'Donnell\"\": 'Neal', 'London Grace': 'Martha       (as Phyllis Spielman)', 'Liz Fenning': 'Jessica', 'Crystal Web': 'Devon', 'Kjai Block': 'Religious Man', 'Kim Shannon': 'Sally       (as Kimberly Shannon)', 'Kris Marconi': 'Officer Mack', 'Anna Harr': 'Gabby', 'Aaron Moses': 'Stanley'}\"\r\ntt5725894,\"{'Francesca Santoro': 'Amy', 'Stephen Manley': 'Henry', \"\"David O'Donnell\"\": 'Neal', 'London Grace': 'Martha       (as Phyllis Spielman)', 'Liz Fenning': 'Jessica', 'Crystal Web': 'Devon', 'Kjai Block': 'Religious Man', 'Kim Shannon': 'Sally       (as Kimberly Shannon)', 'Kris Marconi': 'Officer Mack', 'Anna Harr': 'Gabby', 'Aaron Moses': 'Stanley'}\"\r\ntt0095990,\"{'Michael Kenworthy': 'Jesse Wilson', 'Thor Van Lingen': 'Billy', 'Jason Hogan': 'Johnny', 'James Karen': 'Ed', 'Thom Mathews': 'Joey', 'Suzanne Snyder': 'Brenda', 'Marsha Dietlein': 'Lucy Wilson', 'Hanala Sagal': 'Aerobics Instructor       (as Suzan Stadner)', 'Jonathan Terry': 'Colonel       (as Jonathon Terry)', 'Dana Ashbrook': 'Tom Essex', 'Sally Smythe': \"\"Billy's Mom\"\", 'Allan Trautman': 'Tarman', 'Don Maxwell': \"\"Billy's Dad\"\", 'Reynold Cindrich': 'Soldier', 'Philip Bruns': 'Doc Mandel'}\"\r\ntt5435476,\"{'Christian Calloway': 'Homeless man', 'Elijah Collins': 'Youth 1', 'Joseph Cross': 'Joseph Burns', 'Jessy Hodges': 'Kendra', 'Billy Khoury': 'Woodworker', 'Kyle Koromaldi': 'Porsche Driver', 'C.S. Lee': 'Doug Park', 'Brian Leng': 'Chusuke Hasegawa', 'Ron Marasco': 'Tourist', 'Rya Meyers': 'Porsche Passenger', 'Shelley Mitchell': 'Cheryl', 'Alexia Rasmussen': 'Joanne Burns', 'Jade Sealey': 'Allison', 'Kelvin Yu': 'Andy', 'Junes Zahdi': 'Neighbor'}\"\r\ntt0085470,\"{'Rodney Dangerfield': 'Monty Capuletti', 'Joe Pesci': 'Nicky Cerone', 'Geraldine Fitzgerald': 'Mrs. Monahan', 'Candice Azzara': 'Rose Capuletti       (as Candy Azzara)', 'Val Avery': 'Louie the Bartender', 'Tom Noonan': 'Paddy', 'Taylor Negron': 'Julio', 'Lili Haydn': 'Belinda Capuletti', 'Jeffrey Jones': 'Clive Barlow', 'Tom Ewell': 'Scrappleton', 'Jennifer Jason Leigh': 'Allison Capuletti', 'Jeff Altman': 'Bill Jones       (as Jeffrey Altman)', 'David Vasquez': 'Hector', 'Kimberly McArthur': 'Ginger Jones', 'Frank Simpson': 'Father McIntyre'}\"\r\ntt6580394,\"{'Adrian Paul': 'Coleman', 'Dominique Swain': 'Juliette', 'Moose Ali Khan': 'Khalib', 'Mimi Davila': 'Donna', 'Zach Steffey': 'Benji', 'Jannica Olin': 'Alexis', 'Jason Tobias': 'Kurt', 'Joe Chambrello': 'J.C.', 'Shamar Philippe': 'Matthew', 'Monique Parent': 'Harriet       (as Monique T. Parent)', 'Jes Selane': 'Henry', 'Kyle Butenhoff': 'Agent Michaels', 'Quinn Knox': 'Frankie', 'Sophia Thomas': 'Stevie', 'Anthony Cangialosi': 'David'}\"\r\ntt3399112,\"{'Larry Demery': 'Himself', 'Dock Ellis': 'Himself', 'Ron Howard': 'Himself'}\"\r\ntt0061512,\"{'Paul Newman': 'Luke', 'George Kennedy': 'Dragline', 'J.D. Cannon': 'Society Red', 'Lou Antonio': 'Koko', 'Robert Drivas': 'Loudmouth Steve', 'Strother Martin': 'Captain', 'Jo Van Fleet': 'Arletta', 'Clifton James': 'Carr', 'Morgan Woodward': 'Boss Godfrey', 'Luke Askew': 'Boss Paul', 'Marc Cavell': 'Rabbitt', 'Richard Davalos': 'Blind Dick', 'Robert Donner': 'Boss Shorty', 'Warren Finnerty': 'Tattoo', 'Dennis Hopper': 'Babalugats'}\"\r\ntt0195714,\"{'Devon Sawa': 'Alex Browning', 'Ali Larter': 'Clear Rivers', 'Kerr Smith': 'Carter Horton', 'Kristen Cloke': 'Valerie Lewton', 'Daniel Roebuck': 'Agent Weine', 'Roger Guenveur Smith': 'Agent Schreck', 'Chad Donella': 'Tod Waggner       (as Chad E. Donella)', 'Seann William Scott': 'Billy Hitchcock', 'Tony Todd': 'Bludworth', 'Amanda Detmer': 'Terry Chaney', 'Brendan Fehr': 'George Waggner', 'Forbes Angus': 'Larry Murnau', 'Lisa Marie Caruk': 'Christa Marsh', 'Christine Chatelain': 'Blake Dreyer', 'Barbara Tyson': 'Barbara Browning'}\"\r\ntt0083642,\"{'Burt Reynolds': 'Sheriff Ed Earl Dodd', 'Dolly Parton': 'Mona Stangley', 'Dom DeLuise': 'Melvin', 'Charles Durning': 'Governor', 'Jim Nabors': 'Deputy Fred', 'Robert Mandan': 'Senator Wingwood', 'Lois Nettleton': 'Dulcie Mae', 'Theresa Merritt': 'Jewel', 'Noah Beery Jr.': 'Edsel       (as Noah Beery)', 'Raleigh Bond': 'Mayor', 'Barry Corbin': 'C.J.', 'Ken Magee': 'Mansel', 'Mary Jo Catlett': 'Rita', 'Mary Louise Wilson': 'Modene', 'Howard K. Smith': 'Howard K. Smith'}\"\r\ntt8033592,\"{'Boran Jing': 'Jianqing', 'Dongyu Zhou': 'Xiaoxiao'}\"\r\ntt0111686,\"{'Jeff Davis': \"\"Freddy's Hand Double       (as Jeffrey John Davis)\"\", 'Heather Langenkamp': 'Heather Langenkamp', 'Miko Hughes': 'Dylan', 'Matt Winston': 'Chuck', 'Rob LaBelle': 'Terry', 'David Newsom': 'Chase Porter', 'Wes Craven': 'Wes Craven', 'Marianne Maddalena': 'Marianne Maddalena', 'Gretchen Oehler': 'Script Supervisor', 'Tracy Middendorf': 'Julie', 'Cully Fredricksen': 'Limo Driver', 'Bodhi Elfman': 'TV Studio P.A.', 'Sam Rubin': 'Sam Rubin', 'Robert Englund': 'Robert Englund /              Freddy Krueger', 'Claudia Haro': 'New Line Receptionist'}\"\r\ntt0111686,\"{'Jeff Davis': \"\"Freddy's Hand Double       (as Jeffrey John Davis)\"\", 'Heather Langenkamp': 'Heather Langenkamp', 'Miko Hughes': 'Dylan', 'Matt Winston': 'Chuck', 'Rob LaBelle': 'Terry', 'David Newsom': 'Chase Porter', 'Wes Craven': 'Wes Craven', 'Marianne Maddalena': 'Marianne Maddalena', 'Gretchen Oehler': 'Script Supervisor', 'Tracy Middendorf': 'Julie', 'Cully Fredricksen': 'Limo Driver', 'Bodhi Elfman': 'TV Studio P.A.', 'Sam Rubin': 'Sam Rubin', 'Robert Englund': 'Robert Englund /              Freddy Krueger', 'Claudia Haro': 'New Line Receptionist'}\"\r\ntt0101917,\"{'Robert Englund': 'Freddy Krueger', 'Lisa Zane': 'Maggie Burroughs', 'Shon Greenblatt': 'John Doe', 'Lezlie Deane': 'Tracy', 'Ricky Dean Logan': 'Carlos', 'Breckin Meyer': 'Spencer', 'Yaphet Kotto': 'Doc', 'Tom Arnold': 'Childless Man       (as Mr. Tom Arnold)', 'Roseanne Barr': 'Childless Woman       (as Mrs. Tom Arnold)', 'Elinor Donahue': 'Orphanage Woman', 'Johnny Depp': 'Guy on TV       (as Oprah Noodlemantra)', 'Cassandra Rachel Friel': 'Little Maggie /              Katherine Krueger', 'David Dunard': 'Kelly', 'Marilyn Rockafellow': 'Mrs. Burroughs', 'Virginia Peters': 'Woman in Plane'}\"\r\ntt0417148,\"{'Samuel L. Jackson': 'Neville Flynn', 'Julianna Margulies': 'Claire Miller', 'Nathan Phillips': 'Sean Jones', 'Rachel Blanchard': 'Mercedes', 'Flex Alexander': \"\"Three G's\"\", 'Kenan Thompson': 'Troy', 'Keith Dallas': 'Big Leroy       (as Keith [Blackman] Dallas)', 'Lin Shaye': 'Grace', 'Bruce James': 'Ken', 'Sunny Mabrey': 'Tiffany', 'Casey Dubois': 'Curtis', 'Daniel Hogarth': 'Tommy', 'Gerard Plunkett': 'Paul', 'Terry Chen': 'Chen Leong', 'Elsa Pataky': 'Maria'}\"\r\ntt0102266,\"{'Bruce Willis': 'Joe Hallenbeck', 'Damon Wayans': 'Jimmy Dix', 'Chelsea Field': 'Sarah Hallenbeck', 'Noble Willingham': 'Sheldon Marcone', 'Taylor Negron': 'Milo', 'Danielle Harris': 'Darian Hallenbeck', 'Halle Berry': 'Cory', 'Bruce McGill': 'Mike Matthews', 'Badja Djola': 'Alley Thug', 'Kim Coates': 'Chet', 'Chelcie Ross': 'Senator Baynard', 'Joe Santos': 'Bessalo', 'Clarence Felder': 'McCaskey', 'Tony Longo': 'Big Ray Walton', 'Frank Collison': 'Pablo'}\"\r\ntt0102266,\"{'Bruce Willis': 'Joe Hallenbeck', 'Damon Wayans': 'Jimmy Dix', 'Chelsea Field': 'Sarah Hallenbeck', 'Noble Willingham': 'Sheldon Marcone', 'Taylor Negron': 'Milo', 'Danielle Harris': 'Darian Hallenbeck', 'Halle Berry': 'Cory', 'Bruce McGill': 'Mike Matthews', 'Badja Djola': 'Alley Thug', 'Kim Coates': 'Chet', 'Chelcie Ross': 'Senator Baynard', 'Joe Santos': 'Bessalo', 'Clarence Felder': 'McCaskey', 'Tony Longo': 'Big Ray Walton', 'Frank Collison': 'Pablo'}\"\r\ntt1037705,\"{'Denzel Washington': 'Eli', 'Gary Oldman': 'Carnegie', 'Mila Kunis': 'Solara', 'Ray Stevenson': 'Redridge', 'Jennifer Beals': 'Claudia', 'Evan Jones': 'Martz', 'Joe Pingue': 'Hoyt', 'Frances de la Tour': 'Martha       (as Frances De La Tour)', 'Michael Gambon': 'George', 'Tom Waits': 'Engineer', 'Chris Browning': 'Hijack Leader', 'Richard Cetrone': 'Hijacker', 'Lateef Crowder': 'Hijacker /              Construction Thug', 'Keith Splinter Davis': 'Hijacker       (as Keith Davis)', 'Don Thai Theerathada': 'Hijacker       (as Don Theerathada)'}\"\r\ntt1690991,\"{'Barry Atsma': 'Father bunny       (voice)', 'Hanna Verboom': 'Melanie       (voice)', 'Huub van der Lubbe': 'Zoo keeper       (voice)', 'Marc-Marie Huijbregts': 'Snuffy       (voice)', 'Isa Hoes': 'Mother bunny       (voice)', 'Eva Poppink': 'Miffy (Nijntje)       (voice)'}\"\r\ntt7424200,\"{'Greg Cipes': 'Beast Boy       (voice)', 'Scott Menville': 'Robin       (voice)', 'Khary Payton': 'Cyborg       (voice)', 'Tara Strong': 'Raven       (voice)', 'Hynden Walch': 'Starfire       (voice)', 'Will Arnett': 'Slade       (voice)', 'Kristen Bell': 'Jade Wilson       (voice)', 'Eric Bauza': \"\"Aquaman /              Stan Lee's Assistant       (voice)\"\", 'Michael Bolton': 'Tiger       (voice)', 'Kal-El Cage': 'Young Bruce Wayne       (voice)', 'Nicolas Cage': 'Superman       (voice)', 'Joey Cappabianca': 'Plastic Man       (voice)', 'Greg Davies': 'Balloon Man       (voice)', 'John DiMaggio': 'Guard /              Synth Skate Voice       (voice)', 'Halsey': 'Wonder Woman       (voice)'}\"\r\ntt5639446,\"{'Ansel Elgort': 'Jonathan /              John', 'Suki Waterhouse': 'Elena', 'Patricia Clarkson': 'Dr. Mina Nariman', 'Matt Bomer': 'Ross Craine', 'Douglas Hodge': 'Hans', 'Souleymane Sy Savane': 'Sembene', 'Shunori Ramanathan': 'Allison', 'Joe Egender': 'Myles', 'Ian Unterman': 'Josh', 'Alok Tewari': 'Leslie Nariman', 'Jeff Kim': 'Co-worker', 'Alaska L. McFadden': 'Party Girl', 'Ramses Torres': 'Perez'}\"\r\ntt3874544,\"{'Alec Baldwin': 'Boss Baby       (voice)', 'Steve Buscemi': 'Francis Francis       (voice)', 'Jimmy Kimmel': 'Dad       (voice)', 'Lisa Kudrow': 'Mom       (voice)', 'Tobey Maguire': 'Adult Tim /              Narrator       (voice)', 'Miles Bakshi': 'Tim       (voice)', 'James McGrath': 'Wizzie /              Elvis Impersonator       (voice)', 'Conrad Vernon': 'Eugene       (voice)', 'ViviAnn Yee': 'Staci       (voice) (as Viviann Yee)', 'Eric Bell Jr.': 'Triplets       (voice)', 'David Soren': 'Jimbo       (voice)', 'Edie Mirman': 'Big Boss Baby       (voice)', 'James Ryan': 'Story Bear       (voice)', 'Walt Dohrn': 'Photographer       (voice)', 'Jules Winter': 'Crying Boy /              Little Boy /              Boy       (voice)'}\"\r\ntt0061791,\"{'Robert Morse': 'J. Pierpont Finch', 'Michele Lee': 'Rosemary Pilkington', 'Rudy Vallee': 'Jasper B. Biggley', \"\"Anthony 'Scooter' Teague\"\": 'Bud Frump       (as Anthony Teague)', 'Maureen Arthur': 'Hedy LaRue', 'John Myhers': 'Bert O. Bratt', 'Carol Worthington': 'Lucille Krumholtz', 'Kathryn Reynolds': 'Miss Smith aka Smitty       (as Kay Reynolds)', 'Ruth Kobart': 'Miss Jones', 'Sammy Smith': 'Twimble /              Wally Womper', 'Jeff DeBenning': 'Gatch       (as Jeff Debenning)', 'Janice Carroll': 'Brenda', 'Robert Q. Lewis': 'Tackaberry', 'Paul Hartman': 'Toynbee', 'Dan Tobin': 'Johnson'}\"\r\ntt0126029,\"{'Mike Myers': 'Shrek       (voice)', 'Eddie Murphy': 'Donkey       (voice)', 'Cameron Diaz': 'Princess Fiona       (voice)', 'John Lithgow': 'Lord Farquaad       (voice)', 'Vincent Cassel': 'Monsieur Hood       (voice)', 'Peter Dennis': 'Ogre Hunter       (voice)', 'Clive Pearse': 'Ogre Hunter       (voice)', 'Jim Cummings': 'Captain of Guards       (voice)', 'Bobby Block': 'Baby Bear       (voice)', 'Chris Miller': 'Geppetto /              Magic Mirror       (voice)', 'Cody Cameron': 'Pinnochio /              Three Pigs       (voice)', 'Kathleen Freeman': 'Old Woman       (voice)', 'Michael Galasso': 'Peter Pan       (voice)', 'Christopher Knights': 'Blind Mouse       (voice)', 'Simon J. Smith': 'Blind Mouse       (voice)'}\"\r\ntt0974015,\"{'Ben Affleck': 'Batman /              Bruce Wayne', 'Henry Cavill': 'Superman /              Clark Kent', 'Amy Adams': 'Lois Lane', 'Gal Gadot': 'Wonder Woman /              Diana Prince', 'Ezra Miller': 'The Flash /              Barry Allen', 'Jason Momoa': 'Aquaman /              Arthur Curry', 'Ray Fisher': 'Cyborg /              Victor Stone', 'Jeremy Irons': 'Alfred', 'Diane Lane': 'Martha Kent', 'Connie Nielsen': 'Queen Hippolyta', 'J.K. Simmons': 'Commissioner Gordon', 'Ciarán Hinds': 'Steppenwolf       (voice)', 'Amber Heard': 'Mera', 'Joe Morton': 'Silas Stone', 'Lisa Loven Kongsli': 'Menalippe'}\"\r\ntt2126355,\"{'Dwayne Johnson': 'Raymond Gaines', 'Carla Gugino': 'Emma Gaines', 'Alexandra Daddario': 'Blake Gaines', 'Ioan Gruffudd': 'Daniel Riddick', 'Archie Panjabi': 'Serena Johnson', 'Paul Giamatti': 'Dr. Lawrence Hayes', 'Hugo Johnstone-Burt': 'Ben Taylor', 'Art Parkinson': 'Ollie Taylor', 'Will Yun Lee': 'Dr. Kim Park', 'Kylie Minogue': 'Susan Riddick', 'Colton Haynes': \"\"Joby O'Leary\"\", 'Todd Williams': 'Marcus', 'Matt Gerald': 'Harrison', 'Alec Utgoff': 'Alexi', 'Marissa Neitling': 'Phoebe'}\"\r\ntt0351283,\"{'Ben Stiller': 'Alex       (voice)', 'Chris Rock': 'Marty       (voice)', 'David Schwimmer': 'Melman       (voice)', 'Jada Pinkett Smith': 'Gloria       (voice)', 'Sacha Baron Cohen': 'Julien       (voice)', 'Cedric the Entertainer': 'Maurice       (voice)', 'Andy Richter': 'Mort       (voice)', 'Tom McGrath': 'Skipper /              Fossa /              Panicky Man on Subway       (voice)', 'Christopher Knights': 'Private       (voice)', 'Chris Miller': 'Kowalski       (voice)', 'Conrad Vernon': 'Mason       (voice)', 'Eric Darnell': 'Zoo Announcer /              Lemur #1 /              Fossa /              Subway Car Announcer       (voice)', 'David Cowgill': 'Police Horse       (voice)', 'Stephen Apostolina': 'Police Officer       (voice) (as Steve Apostolina)', 'Elisa Gabrielli': 'Old Lady       (voice)'}\"\r\ntt0441773,\"{'Jack Black': 'Po       (voice)', 'Dustin Hoffman': 'Shifu       (voice)', 'Angelina Jolie': 'Tigress       (voice)', 'Ian McShane': 'Tai Lung       (voice)', 'Jackie Chan': 'Monkey       (voice)', 'Seth Rogen': 'Mantis       (voice)', 'Lucy Liu': 'Viper       (voice)', 'David Cross': 'Crane       (voice)', 'Randall Duk Kim': 'Oogway       (voice)', 'James Hong': 'Mr. Ping       (voice)', 'Dan Fogler': 'Zeng       (voice)', 'Michael Clarke Duncan': 'Commander Vachir       (voice)', 'Wayne Knight': 'Gang Boss       (voice)', 'Kyle Gass': 'KG Shaw       (voice)', 'JR Reed': 'JR Shaw       (voice)'}\"\r\ntt4624424,\"{'Andy Samberg': 'Junior       (voice)', 'Katie Crown': 'Tulip       (voice)', 'Kelsey Grammer': 'Hunter       (voice)', 'Jennifer Aniston': 'Sarah Gardner       (voice)', 'Ty Burrell': 'Henry Gardner       (voice)', 'Anton Starkman': 'Nate Gardner       (voice)', 'Keegan-Michael Key': 'Alpha Wolf       (voice)', 'Jordan Peele': 'Beta Wolf       (voice)', 'Danny Trejo': 'Jasper       (voice)', 'Stephen Kramer Glickman': 'Pigeon Toady /              Additional Voices       (voice)', 'Christopher Nicholas Smith': 'Dougland       (voice) (as Chris Smith)', 'Awkwafina': 'Quail       (voice)', 'Ike Barinholtz': 'Miscellaneous Storks       (voice)', 'Jorma Taccone': 'Miscellaneous Storks       (voice)', 'Amanda Lund': 'Miscellaneous Storks       (voice)'}\"\r\ntt1935859,\"{'Eva Green': 'Miss Peregrine', 'Asa Butterfield': 'Jake', 'Samuel L. Jackson': 'Barron', 'Judi Dench': 'Miss Avocet', 'Rupert Everett': 'Ornithologist', 'Allison Janney': 'Dr. Golan', \"\"Chris O'Dowd\"\": 'Frank', 'Terence Stamp': 'Abe', 'Ella Purnell': 'Emma', 'Finlay MacMillan': 'Enoch', 'Lauren McCrostie': 'Olive', 'Hayden Keeler-Stone': 'Horace', 'Georgia Pemberton': 'Fiona', 'Milo Parker': 'Hugh', 'Raffiella Chapman': 'Claire'}\"\r\ntt0063829,\"{'Lucille Ball': 'Helen North Beardsley', 'Henry Fonda': 'Frank Beardsley', 'Van Johnson': 'Warrant Officer Darrel Harrison', 'Louise Troy': 'Madeleine Love', 'Sidney Miller': 'Dr. Ashford', 'Tom Bosley': 'Family Doctor', 'Nancy Howard': 'Nancy Beardsley', 'Walter Brooke': 'Howard Beardsley', 'Tim Matheson': 'Mike Beardsley       (as Tim Matthieson)', 'Gil Rogers': 'Rusty Beardsley', 'Nancy Roth': 'Rosemary Beardsley', 'Gary Goetzman': 'Greg Beardsley', 'Morgan Brittany': 'Louise Beardsley       (as Suzanne Cupito)', \"\"Holly O'Brien\"\": 'Susan Beardsley', 'Michele Tobin': 'Veronica Beardsley'}\"\r\ntt1446192,\"{'Chris Pine': 'Jack Frost       (voice)', 'Alec Baldwin': 'North       (voice)', 'Jude Law': 'Pitch       (voice)', 'Isla Fisher': 'Tooth       (voice)', 'Hugh Jackman': 'Bunny       (voice)', 'Dakota Goyo': 'Jamie Bennett       (voice)', 'Khamani Griffin': 'Caleb       (voice)', 'Kamil McFadden': 'Claude       (voice)', 'Georgie Grieve': 'Sophie Bennett       (voice)', 'Emily Nordwind': \"\"Jamie's Mom /              Jack's Mother       (voice)\"\", 'Jacob Bertrand': 'Monty       (voice)', 'Olivia Mattingly': \"\"Pippa /              Jack's Sister       (voice)\"\", 'Dominique Grund': 'Cupcake       (voice)', 'Ryan Crego': 'Burgess Dog Walker       (voice)', 'April Lawrence': 'Burgess Pedestrian #1       (voice)'}\"\r\ntt0083767,\"{'Hal Holbrook': 'Henry Northrup (segment \"\"The Crate\"\")', 'Adrienne Barbeau': 'Wilma Northrup (segment \"\"The Crate\"\")', 'Fritz Weaver': 'Dexter Stanley (segment \"\"The Crate\"\")', 'Leslie Nielsen': 'Richard Vickers (segment \"\"Something To Tide You Over\"\")', 'Carrie Nye': 'Sylvia Grantham (segment \"\"Father\\'s Day\"\")', 'E.G. Marshall': 'Upson Pratt (segment \"\"They\\'re Creeping Up On You\"\")', 'Viveca Lindfors': 'Aunt Bedelia (segment \"\"Father\\'s Day\"\")', 'Ed Harris': 'Hank Blaine (segment \"\"Father\\'s Day\"\")', 'Ted Danson': 'Harry Wentworth (segment \"\"Something To Tide You Over)', 'Stephen King': 'Jordy Verrill (segment \"\"The Lonesome Death of Jordy Verrill\"\")', 'Warner Shook': 'Richard Grantham (segment \"\"Father\\'s Day\"\")', 'Robert Harper': 'Charlie Gereson (segment \"\"The Crate\"\")', 'Elizabeth Regan': 'Cass Blaine (segment \"\"Father\\'s Day\"\")', 'Gaylen Ross': 'Becky Vickers (segment \"\"Something To Tide You Over\"\")', 'Jon Lormer': 'Nathan Grantham (segment \"\"Father\\'s Day\"\")'}\"\r\ntt0082250,\"{'Charles Bronson': 'Paul Kersey', 'Jill Ireland': 'Geri Nichols', 'Vincent Gardenia': 'Det. Frank Ochoa', 'J.D. Cannon': 'New York D.A.', 'Anthony Franciosa': 'Herman Baldwin', 'Ben Frank': 'Inspector Lt. Mankiewicz', 'Robin Sherwood': 'Carol Kersey', 'Silvana Gallardo': 'Rosario', 'Robert F. Lyons': 'Fred McKenzie', 'Michael Prince': 'Elliott Cass', 'Drew Snyder': 'Deputy Comm. Hawkins', 'Paul Lambert': 'New York Police Comm.', 'Thomas F. Duffy': 'Nirvana       (as Thomas Duffy)', 'Kevyn Major Howard': 'Stomper', 'Stuart K. Robinson': 'Jiver'}\"\r\ntt3230934,\"{'Cody Wilson': 'Himself', 'Greg Bokor': 'Himself', 'Leah Gunn Barrett': 'Herself', 'Keith Coniglio': 'Himself', 'Angela Giron': 'Herself', 'Shaina Harrison': 'Herself', 'Victor Head': 'Himself', 'Phillip Hofmeister': 'Himself', 'Anthony L. Herbert': 'Himself', 'James Jacobs': 'Himself', 'Dan Kahan': 'Himself', 'Sanford Levinson': 'Himself', 'Terry Maketa': 'Himself', 'John Morse': 'Himself', 'Thomas Szczepanski': 'Himself'}\"\r\ntt0245803,\"{'Yun-Fat Chow': 'Monk With No Name       (as Chow Yun-Fat)', 'Seann William Scott': 'Kar', 'Jaime King': 'Jade', 'Karel Roden': 'Strucker', 'Victoria Smurfit': 'Nina', 'Marcus Jean Pirae': 'Mr. Funktastic', 'Mako': 'Mr. Kojima', 'Roger Yuan': 'Master Monk', 'K.C. Collins': 'Sax       (as Chris Collins)', 'Sean Bell': 'Diesel', 'Kishaya Dudley': 'DV', 'Rob Archer': 'Buzz', 'Mauricio Rodas': 'Wicho', 'Bayo Akinfemi': 'Shade', 'Russell Yuen': 'Brother Tenzin'}\"\r\ntt0060921,\"{'Carl Reiner': 'Walt Whittaker', 'Eva Marie Saint': 'Elspeth Whittaker', 'Alan Arkin': 'Lt. Rozanov', 'Brian Keith': 'Police Chief Link Mattocks', 'Jonathan Winters': 'Norman Jonas', 'Paul Ford': 'Fendall Hawkins', 'Theodore Bikel': 'The Russian Captain', \"\"Tessie O'Shea\"\": 'Alice Foss', 'John Phillip Law': 'Alexei Kolchin', 'Ben Blue': 'Luther Grilk', 'Andrea Dromm': 'Alison Palmer', 'Sheldon Collins': 'Pete Whittaker       (as Sheldon Golomb)', 'Guy Raymond': 'Lester Tilly', 'Cliff Norton': 'Charlie Hinkson', 'Richard Schaal': 'Oscar Maxwell'}\"\r\ntt0088915,\"{'Michael Blevins': 'Mark', 'Yamil Borges': 'Morales', 'Jan Gan Boyd': 'Connie', 'Sharon Brown': 'Kim', 'Gregg Burge': 'Richie', 'Michael Douglas': 'Zach', 'Cameron English': 'Paul', 'Tony Fields': 'Al', 'Nicole Fosse': 'Kristine', 'Vicki Frederick': 'Sheila', 'Michelle Johnston': 'Bebe', 'Janet Jones': 'Judy', 'Pam Klinger': 'Maggie', 'Audrey Landers': 'Val', 'Terrence Mann': 'Larry'}\"\r\ntt0094118,\"{'Jason Bateman': 'Todd Howard', 'Kim Darby': 'Professor Brooks', 'John Astin': 'Dean Dunn', 'Paul Sand': 'Coach Finstock', 'James Hampton': 'Uncle Harold', 'Mark Holton': 'Chubby', 'Estee Chandler': 'Nicki', 'Robert Neary': 'Gustavson', 'Stuart Fratkin': 'Stiles', 'Beth Miller': 'Lisa       (as Beth Ann Miller)', 'Rachel Sharp': 'Emily', 'David Burton': 'Peter', 'William H. Burton Jr.': 'Pug       (as William H. Burton)', 'Kathleen Freeman': 'Admissions Lady', 'Eric Matthew': 'Admissions Kid'}\"\r\ntt0892782,\"{'Reese Witherspoon': 'Susan Murphy /              Ginormica       (voice)', 'Seth Rogen': 'B.O.B.       (voice)', 'Hugh Laurie': 'Dr. Cockroach Ph.D.       (voice)', 'Will Arnett': 'The Missing Link       (voice)', 'Kiefer Sutherland': 'General W.R. Monger       (voice)', 'Rainn Wilson': 'Gallaxhar       (voice)', 'Stephen Colbert': 'President Hathaway       (voice)', 'Paul Rudd': 'Derek Dietl       (voice)', 'Julie White': 'Wendy Murphy       (voice)', 'Jeffrey Tambor': 'Carl Murphy       (voice)', 'Amy Poehler': 'Computer       (voice)', 'Ed Helms': 'News Reporter       (voice)', 'Renée Zellweger': 'Katie       (voice)', 'John Krasinski': 'Cuthbert       (voice)', 'Sean Bishop': 'Private Bullhorn /              Helicopter Pilot /              Advisor Ortega       (voice)'}\"\r\ntt2091256,\"{'Kevin Hart': 'George       (voice)', 'Ed Helms': 'Captain Underpants /              Mr. Krupp       (voice)', 'Nick Kroll': 'Professor Poopypants       (voice)', 'Thomas Middleditch': 'Harold       (voice)', 'Jordan Peele': 'Melvin       (voice)', 'Kristen Schaal': 'Edith       (voice)', 'DeeDee Rescher': 'Ms. Ribble       (voice) (as Dee Dee Rescher)', 'Brian Posehn': 'Mr. Rected       (voice)', 'David Soren': 'Tommy       (voice)', 'Mel Rodriguez': 'Mr. Fyde       (voice)', 'Susan Fitzer': 'Ms. Dayken       (voice)', 'Lynnanne Zager': \"\"George's Mom       (voice)\"\", 'Tiffany Lauren Bennicke': 'Sad Girl       (voice) (as Tiffany Bennike)', 'James Ryan': 'Mime       (voice)', 'Leslie David Baker': 'Officer McPiggly       (voice)'}\"\r\ntt0062803,\"{'Dick Van Dyke': 'Caractacus Potts', 'Sally Ann Howes': 'Truly Scrumptious', 'Lionel Jeffries': 'Grandpa Potts', 'Gert Fröbe': 'Baron Bomburst       (as Gert Frobe)', 'Anna Quayle': 'Baroness Bomburst', 'Benny Hill': 'Toymaker', 'James Robertson Justice': 'Lord Scrumptious', 'Robert Helpmann': 'Child Catcher', 'Heather Ripley': 'Jemima', 'Adrian Hall': 'Jeremy', 'Barbara Windsor': 'Blonde', 'Davy Kaye': 'Admiral', 'Alexander Doré': 'First Spy       (as Alexander Dore)', 'Bernard Spear': 'Second Spy', 'Stanley Unwin': 'Chancellor'}\"\r\ntt1646971,\"{'Jay Baruchel': 'Hiccup       (voice)', 'Cate Blanchett': 'Valka       (voice)', 'Gerard Butler': 'Stoick       (voice)', 'Craig Ferguson': 'Gobber       (voice)', 'America Ferrera': 'Astrid       (voice)', 'Jonah Hill': 'Snotlout       (voice)', 'Christopher Mintz-Plasse': 'Fishlegs       (voice)', 'T.J. Miller': 'Tuffnut       (voice)', 'Kristen Wiig': 'Ruffnut       (voice)', 'Djimon Hounsou': 'Drago       (voice)', 'Kit Harington': 'Eret       (voice)', 'Kieron Elliott': 'Hoark the Haggard       (voice)', 'Philip McGrade': 'Starkard       (voice)', 'Andrew Ableson': 'Ug       (voice)', 'Gideon Emery': 'Teeny       (voice)'}\"\r\ntt0892769,\"{'Jay Baruchel': 'Hiccup       (voice)', 'Gerard Butler': 'Stoick       (voice)', 'Craig Ferguson': 'Gobber       (voice)', 'America Ferrera': 'Astrid       (voice)', 'Jonah Hill': 'Snotlout       (voice)', 'Christopher Mintz-Plasse': 'Fishlegs       (voice)', 'T.J. Miller': 'Tuffnut       (voice)', 'Kristen Wiig': 'Ruffnut       (voice)', 'Robin Atkin Downes': 'Ack       (voice)', 'Philip McGrade': 'Starkard       (voice)', 'Kieron Elliott': 'Hoark the Haggard       (voice)', 'Ashley Jensen': 'Phlegma the Fierce       (voice)', 'David Tennant': 'Spitelout       (voice)'}\"\r\ntt7690670,\"{'Trevor Jackson': 'Youngblood Priest', 'Jason Mitchell': 'Eddie', 'Michael Kenneth Williams': 'Scatter', 'Lex Scott Davis': 'Georgia', 'Jennifer Morrison': 'Detective Mason', 'Kaalan Walker': \"\"Juju       (as Kaalan 'KR' Walker)\"\", 'Esai Morales': 'Adalberto Gonzalez', 'Andrea Londo': 'Cynthia', 'Big Bank Black': 'Q', 'Big Boi': \"\"Mayor Atkins       (as Antwan 'Big Boi' Patton)\"\", 'Jacob Ming-Trent': 'Fat Freddy', 'Brian F. Durkin': 'Officer Turk Franklin       (as Brian Durkin)', 'Dominique Madison': 'Rochelle', 'Angel Love': 'Hot Coco', 'Terayle Hill': 'Dee'}\"\r\ntt0067741,\"{'Richard Roundtree': 'John Shaft', 'Moses Gunn': 'Bumpy Jonas', 'Charles Cioffi': 'Vic Androzzi', 'Christopher St. John': 'Ben Buford', 'Gwenn Mitchell': 'Ellie Moore', 'Lawrence Pressman': 'Tom Hannon', 'Victor Arnold': 'Charlie', 'Sherri Brewer': 'Marcy', 'Rex Robbins': 'Rollie', 'Camille Yarbrough': 'Dina Greene', 'Margaret Warncke': 'Linda', 'Joseph Leon': 'Byron Leibowitz', 'Arnold Johnson': 'Cul', 'Dominic Barto': 'Patsy', 'George Strus': 'Carmen'}\"\r\ntt0095348,\"{'Keenen Ivory Wayans': 'Jack Spade', 'Bernie Casey': 'John Slade', 'Antonio Fargas': 'Flyguy', 'Steve James': 'Kung Fu Joe', 'Isaac Hayes': 'Hammer', 'Jim Brown': 'Slammer', \"\"Ja'net DuBois\"\": 'Ma Bell', 'Dawnn Lewis': 'Cheryl', 'John Vernon': 'Mr. Big', 'Clu Gulager': 'Lt. Baker', 'Kadeem Hardison': 'Willie', 'Damon Wayans': 'Leonard', 'George James': 'Bruno', 'Marc Figueroa': 'Knuckles', 'Robert Colbert': 'Farrell'}\"\r\ntt0111161,\"{'Tim Robbins': 'Andy Dufresne', 'Morgan Freeman': \"\"Ellis Boyd 'Red' Redding\"\", 'Bob Gunton': 'Warden Norton', 'William Sadler': 'Heywood', 'Clancy Brown': 'Captain Hadley', 'Gil Bellows': 'Tommy', 'Mark Rolston': 'Bogs Diamond', 'James Whitmore': 'Brooks Hatlen', 'Jeffrey DeMunn': '1946 D.A.', 'Larry Brandenburg': 'Skeet', 'Neil Giuntoli': 'Jigger', 'Brian Libby': 'Floyd', 'David Proval': 'Snooze', 'Joseph Ragno': 'Ernie', 'Jude Ciccolella': 'Guard Mert'}\"\r\ntt0051525,\"{'Tony Curtis': \"\"John 'Joker' Jackson\"\", 'Sidney Poitier': 'Noah Cullen', 'Theodore Bikel': 'Sheriff Max Muller', 'Charles McGraw': 'Capt. Frank Gibbons', 'Lon Chaney Jr.': 'Big Sam       (as Lon Chaney)', 'King Donovan': 'Solly', 'Claude Akins': 'Mack', 'Lawrence Dobkin': 'Editor', 'Whit Bissell': 'Lou Gans', \"\"Carl 'Alfalfa' Switzer\"\": 'Angus       (as Carl Switzer)', 'Kevin Coughlin': 'Billy', 'Cara Williams': \"\"Billy's Mother\"\"}\"\r\ntt0313443,\"{'Denzel Washington': 'Matt Lee Whitlock', 'Eva Mendes': 'Alex Diaz Whitlock', 'Sanaa Lathan': 'Ann Merai Harrison', 'Dean Cain': 'Chris Harrison', 'John Billingsley': 'Chae', 'Robert Baker': 'Tony Dalton', 'Alex Carter': 'Cabot', 'Antoni Corone': 'Deputy Baste', 'Terry Loughlin': 'Agent Stark', 'Nora Dunn': 'Dr. Donovan', 'James Murtaugh': 'Dr. Frieland', 'Peggy Sheffield': 'Judy Anderson', 'Evelyn Brooks': \"\"Judy's Mom\"\", 'Eric Hissom': 'Hotel Clerk', 'Tom Hillmann': 'Living Gift Salesman       (as Tom Hilmann)'}\"\r\ntt0087800,\"{'John Saxon': 'Lt. Thompson', 'Ronee Blakley': 'Marge Thompson', 'Heather Langenkamp': 'Nancy Thompson', 'Amanda Wyss': 'Tina Gray', 'Jsu Garcia': 'Rod Lane       (as Nick Corri)', 'Johnny Depp': 'Glen Lantz', 'Charles Fleischer': 'Dr. King', 'Joseph Whipp': 'Sgt. Parker', 'Robert Englund': 'Fred Krueger', 'Lin Shaye': 'Teacher', 'Joe Unger': 'Sgt. Garcia', 'Mimi Craven': 'Nurse       (as Mimi Meyer-Craven)', 'Jack Shea': 'Minister', 'Ed Call': 'Mr. Lantz', 'Sandy Lipton': 'Mrs. Lantz'}\"\r\ntt0089901,\"{'Fred Ward': 'Remo Williams', 'Joel Grey': 'Chiun', 'Wilford Brimley': 'Harold Smith', 'J.A. Preston': 'Conn MacCleary', 'George Coe': 'Gen. Scott Watson', 'Charles Cioffi': 'George Grove', 'Kate Mulgrew': 'Maj. Rayner Fleming', 'Patrick Kilpatrick': 'Stone', 'Michael Pataki': 'Jim Wilson', 'Davenia McFadden': 'N.Y. Traffic Control Cop', 'Cosie Costa': 'Pvt. Damico', 'J.P. Romano': 'Boomer #1', 'Joel Kramer': 'Boomer #2       (as Joel J. Kramer)', 'Frank Ferrara': 'Boomer #3', 'Marv Albert': 'Sports Announcer       (voice)'}\"\r\ntt5220122,\"{'Adam Sandler': 'Dracula       (voice)', 'Andy Samberg': 'Johnny       (voice)', 'Selena Gomez': 'Mavis       (voice)', 'Kevin James': 'Frankenstein       (voice)', 'Fran Drescher': 'Eunice       (voice)', 'Steve Buscemi': 'Wayne       (voice)', 'Molly Shannon': 'Wanda       (voice)', 'David Spade': 'Griffin       (voice)', 'Keegan-Michael Key': 'Murray       (voice)', 'Jim Gaffigan': 'Van Helsing       (voice)', 'Kathryn Hahn': 'Ericka       (voice)', 'Asher Blinkoff': 'Dennis       (voice)', 'Chris Parnell': 'Stan /              Fish Man       (voice)', 'Joe Jonas': 'The Kraken       (voice)', 'Chrissy Teigen': 'Crystal       (voice)'}\"\r\ntt1179056,\"{'Jackie Earle Haley': 'Freddy Krueger', 'Kyle Gallner': 'Quentin Smith', 'Rooney Mara': 'Nancy Holbrook', 'Katie Cassidy': 'Kris Fowles', 'Thomas Dekker': 'Jesse Braun', 'Kellan Lutz': 'Dean Russell', 'Clancy Brown': 'Alan Smith', 'Connie Britton': 'Dr. Gwen Holbrook', 'Lia D. Mortensen': 'Nora Fowles       (as Lia Mortensen)', 'Julianna Damm': 'Little Kris', 'Christian Stolte': \"\"Jesse's Father\"\", 'Katie Schooping Knight': 'Creepy Girl #1', 'Hailey Schooping Knight': 'Creepy Girl #2', 'Leah Uteg': 'Creepy Girl #3', 'Don Robert Cass': 'History Teacher'}\"\r\ntt6772950,\"{'Lucy Hale': 'Olivia Barron', 'Tyler Posey': 'Lucas Moreno', 'Violett Beane': 'Markie Cameron', 'Hayden Szeto': 'Brad Chang', 'Sophia Ali': 'Penelope Amari', 'Nolan Gerard Funk': 'Tyson Curran', 'Landon Liboiron': 'Carter /              Sam Meehan', 'Sam Lerner': \"\"Ronald 'Ronnie' Wakowski\"\", 'Tom Choi': 'Officer Han Chang', 'Aurora Perrineau': 'Giselle Hammond', 'Gregg Daniel': 'Detective Kranis', 'Brady Smith': 'Roy Cameron', 'Vera Taylor': 'Inez Reyes', 'Ezmie Garcia': \"\"Young Inez /              Inez's Granddaughter\"\", 'Andrew Howard': 'Randall Himoff'}\"\r\ntt1540011,\"{'James Allen McCune': 'James', 'Callie Hernandez': 'Lisa Arlington', 'Corbin Reid': 'Ashley', 'Brandon Scott': 'Peter', 'Wes Robinson': 'Lane', 'Valorie Curry': 'Talia'}\"\r\ntt2660888,\"{'Chris Pine': 'Captain James T. Kirk', 'Zachary Quinto': 'Commander Spock', 'Karl Urban': \"\"Doctor 'Bones' McCoy\"\", 'Zoe Saldana': 'Lieutenant Uhura', 'Simon Pegg': \"\"Montgomery 'Scotty' Scott\"\", 'John Cho': 'Sulu', 'Anton Yelchin': 'Chekov', 'Idris Elba': 'Krall', 'Sofia Boutella': 'Jaylah', 'Joe Taslim': 'Manas', 'Lydia Wilson': 'Kalara', 'Deep Roy': 'Keenser', 'Melissa Roxburgh': 'Ensign Syl', 'Anita Brown': 'Tyvanna', 'Doug Jung': 'Ben'}\"\r\ntt2660888,\"{'Chris Pine': 'Captain James T. Kirk', 'Zachary Quinto': 'Commander Spock', 'Karl Urban': \"\"Doctor 'Bones' McCoy\"\", 'Zoe Saldana': 'Lieutenant Uhura', 'Simon Pegg': \"\"Montgomery 'Scotty' Scott\"\", 'John Cho': 'Sulu', 'Anton Yelchin': 'Chekov', 'Idris Elba': 'Krall', 'Sofia Boutella': 'Jaylah', 'Joe Taslim': 'Manas', 'Lydia Wilson': 'Kalara', 'Deep Roy': 'Keenser', 'Melissa Roxburgh': 'Ensign Syl', 'Anita Brown': 'Tyvanna', 'Doug Jung': 'Ben'}\"\r\ntt0078346,\"{'Marlon Brando': 'Jor-El', 'Gene Hackman': 'Lex Luthor', 'Christopher Reeve': 'Superman /              Clark Kent', 'Ned Beatty': 'Otis', 'Jackie Cooper': 'Perry White', 'Glenn Ford': 'Pa Kent', 'Trevor Howard': '1st Elder', 'Margot Kidder': 'Lois Lane', \"\"Jack O'Halloran\"\": 'Non', 'Valerie Perrine': 'Eve Teschmacher', 'Maria Schell': 'Vond-Ah', 'Terence Stamp': 'General Zod', 'Phyllis Thaxter': 'Ma Kent', 'Susannah York': 'Lara', 'Jeff East': 'Young Clark Kent'}\"\r\ntt0114069,\"{'Dustin Hoffman': 'Sam Daniels', 'Rene Russo': 'Robby Keough', 'Morgan Freeman': 'General Billy Ford', 'Kevin Spacey': 'Casey Schuler', 'Cuba Gooding Jr.': 'Major Salt', 'Donald Sutherland': 'General Donald McClintock', 'Patrick Dempsey': 'Jimbo Scott', 'Zakes Mokae': 'Dr. Benjamin Iwabi', 'Malick Bowens': 'Dr. Raswani', 'Susan Lee Hoffman': 'Dr. Lisa Aronson', 'Benito Martinez': 'Dr. Julio Ruiz', 'Bruce Jarchow': 'Dr. Mascelli', 'Leland Hayward III': 'Henry Seward', 'Daniel Chodos': 'Rudy Alvarez', 'Dale Dye': 'Colonel Briggs'}\"\r\ntt0092710,\"{'Whoopi Goldberg': 'Bernice Rhodenbarr', 'Bobcat Goldthwait': 'Carl Hefler', 'G.W. Bailey': 'Ray Kirschman', 'Lesley Ann Warren': 'Dr. Cynthia Sheldrake', 'James Handy': 'Carson Verrill', 'Anne De Salvo': 'Detective Todras       (as Anne DeSalvo)', 'John Goodman': 'Detective Nyswander', 'Elizabeth Ruscio': 'Frankie', 'Vyto Ruginis': 'K.E. Graybow', 'Larry Mintz': \"\"Vincent 'Knobby' DiCarno\"\", 'Raye Birk': 'The Jogger', 'Eric Poppick': 'Deliveryman', 'Scott Lincoln': 'Man in Cadillac', 'Thom Bray': 'Shoplifter in Bookstore', 'Nathan Davis': 'Mr. Paggif'}\"\r\ntt0102526,\"{'Wesley Snipes': 'Nino Brown', 'Ice-T': 'Scotty Appleton       (as Ice T)', 'Allen Payne': 'Gee Money', 'Chris Rock': 'Pookie', 'Mario Van Peebles': 'Stone', 'Michael Michele': 'Selina', 'Bill Nunn': 'Duh Duh Duh Man', 'Russell Wong': 'Park', 'Bill Cobbs': 'Old Man', 'Christopher Williams': 'Kareem Akbar', 'Judd Nelson': 'Nick Peretti', 'Vanessa Williams': 'Keisha', 'Tracy Camilla Johns': 'Uniqua', 'Anthony DeSando': 'Frankie Needles', 'Nick Ashford': 'Reverend Oates'}\"\r\ntt0106455,\"{'Wesley Snipes': 'Jimmy', 'Dennis Hopper': 'Red', 'Lolita Davidovich': 'Vikki', 'Viggo Mortensen': 'Ronnie', 'Seymour Cassel': 'Leach', 'Jonathan Banks': 'Max', 'Christine Elise': 'Carol', 'Tony Lo Bianco': 'Dio', 'Valerie Perrine': 'Mona', 'James Tolkan': 'Levitt', 'Paul Gleason': 'Transaction Man', 'Lorraine Evanoff': 'Connie', 'Stephanie Williams': 'Sally       (as Stephanie E. Williams)', 'Tobin Bell': 'Roth', 'Bobby Hosea': 'Steve'}\"\r\ntt2404233,\"{'Brenton Thwaites': 'Bek', 'John Samaha': 'Vendor', 'Courtney Eaton': 'Zaya', 'Nikolaj Coster-Waldau': 'Horus', 'Paula Arundell': 'Fussy Older Maidservant', \"\"Alia Seror-O'Neill\"\": 'First Young Maidservant', 'Emily Wheaton': 'Second Younger Maidservant', 'Elodie Yung': 'Hathor', 'Rachael Blake': 'Isis', 'Bryan Brown': 'Osiris', 'Michael-Anthony Taylor': 'Priest', 'Emma Booth': 'Nephthys', 'Felix Williamson': 'Nobleman', 'Chadwick Boseman': 'Thoth', 'Gerard Butler': 'Set'}\"\r\ntt0104265,\"{'Richard Gere': 'Isaac Barr', 'Kim Basinger': 'Heather Evans', 'Uma Thurman': 'Diana Baylor', 'Eric Roberts': 'Jimmy Evans', 'Paul Guilfoyle': \"\"Mike O'Brien\"\", 'Keith David': 'Detective Huggins', 'Robert Harper': 'Alan Lowenthal', 'Agustin Rodriguez': 'Pepe Carrero', 'Rita Zohar': 'Dr. Grusin', 'George Murdock': 'Judge Costello', 'Shirley Prestia': 'D.A. Kaufman', 'Tony Genaro': 'Hector', 'Katherine Cortez': 'Woman Speaker', 'Wood Moy': 'Dr. Lee', 'Corey Fischer': 'Forensic Doctor'}\"\r\ntt3110958,\"{'Jesse Eisenberg': 'J. Daniel Atlas', 'Mark Ruffalo': 'Dylan Rhodes', 'Woody Harrelson': 'Merritt McKinney /              Chase McKinney', 'Dave Franco': 'Jack Wilder', 'Daniel Radcliffe': 'Walter Mabry', 'Lizzy Caplan': 'Lula', 'Jay Chou': 'Li', 'Sanaa Lathan': 'Deputy Director Natalie Austin', 'Michael Caine': 'Arthur Tressler', 'Morgan Freeman': 'Thaddeus Bradley', 'David Warshofsky': 'Agent Cowan', 'Tsai Chin': 'Bu Bu', 'William Henderson': 'Young Dylan', 'Richard Laing': 'Lionel Shrike', 'Henry Lloyd-Hughes': 'Allen Scott-Frank'}\"\r\ntt0101984,\"{'Robert De Niro': 'David Merrill', 'Annette Bening': 'Ruth Merrill', 'George Wendt': 'Bunny Baxter', 'Patricia Wettig': 'Dorothy Nolan', 'Sam Wanamaker': 'Felix Graff', 'Luke Edwards': 'Paulie Merrill', 'Chris Cooper': 'Larry Nolan', 'Ben Piazza': 'Darryl Zanuck', 'Martin Scorsese': 'Joe Lesser', 'Barry Primus': 'Bert Alan', 'Gailard Sartain': 'Chairman Wood', 'Robin Gammell': 'Congressman Tavenner', 'Brad Sullivan': 'Congressman Velde', 'Tom Sizemore': 'Ray Karlin', 'Roxann Dawson': 'Felicia Barron       (as Roxann Biggs)'}\"\r\ntt1411697,\"{'Bradley Cooper': 'Phil', 'Ed Helms': 'Stu', 'Zach Galifianakis': 'Alan', 'Justin Bartha': 'Doug', 'Ken Jeong': 'Mr. Chow', 'Paul Giamatti': 'Kingsley', 'Mike Tyson': 'Mike Tyson', 'Jeffrey Tambor': 'Sid Garner', 'Mason Lee': 'Teddy', 'Jamie Chung': 'Lauren', 'Sasha Barrese': 'Tracy', 'Gillian Vigman': 'Stephanie', 'Aroon Seeboonruang': 'Monk', 'Nirut Sirichanya': 'Fohn', 'Yasmin Lee': 'Kimmy'}\"\r\ntt1119646,\"{'Bradley Cooper': 'Phil', 'Ed Helms': 'Stu', 'Zach Galifianakis': 'Alan', 'Justin Bartha': 'Doug', 'Heather Graham': 'Jade', 'Sasha Barrese': 'Tracy', 'Jeffrey Tambor': 'Sid', 'Ken Jeong': 'Mr. Chow', 'Rachael Harris': 'Melissa', 'Mike Tyson': 'Mike Tyson', 'Mike Epps': 'Black Doug', 'Jernard Burks': 'Leonard', 'Rob Riggle': 'Officer Franklin', 'Cleo King': 'Officer Garden', 'Bryan Callen': 'Eddie'}\"\r\ntt5052474,\"{'Benicio Del Toro': 'Alejandro', 'Josh Brolin': 'Matt Graver', 'Isabela Merced': 'Isabel Reyes       (as Isabela Moner)', 'Jeffrey Donovan': 'Steve Forsing', 'Catherine Keener': 'Cynthia Foards', 'Manuel Garcia-Rulfo': 'Gallo', 'Matthew Modine': 'James Riley', 'Shea Whigham': 'Andy Wheeldon', 'Elijah Rodriguez': 'Miguel Hernandez', 'Howard Ferguson Jr.': 'Troy', 'David Castañeda': 'Hector       (as David Castaneda)', 'Jacqueline Torres': 'Blandina', 'Raoul Max Trujillo': 'Rafael       (as Raoul Trujillo)', 'Bruno Bichir': 'Angel', 'Jake Picking': 'Shawn'}\"\r\ntt0112401,\"{'Sylvester Stallone': 'Robert Rath', 'Antonio Banderas': 'Miguel Bain', 'Julianne Moore': 'Electra', 'Anatoli Davydov': 'Nicolai Tashlinkov       (as Anatoly Davydov)', 'Muse Watson': 'Ketcham', 'Steve Kahan': 'Alan Branch       (as Stephen Kahan)', 'Kelly Rowan': \"\"Jennifer, Electra's Neighbor\"\", 'Reed Diamond': 'Bob', 'Kai Wulff': 'Remy', 'Kerry Skalsky': 'Buyer with Remy', 'James Douglas Haskins': 'Buyer with Remy', 'Stephen Liska': 'Cop', 'John Harms': 'Cop', 'Edward J. Rosen': 'Cemetery Caretaker', 'Christina Orchid': 'Dowager'}\"\r\ntt0111255,\"{'Sylvester Stallone': 'Ray Quick', 'Sharon Stone': 'May Munro', 'James Woods': 'Ned Trent', 'Rod Steiger': 'Joe Leon', 'Eric Roberts': 'Tomas Leon', 'Mario Ernesto Sánchez': 'Charlie', 'Sergio Doré Jr.': 'Strongarm', 'Chase Randolph': \"\"May's Dad\"\", 'Jeana Bell': \"\"May's Mom\"\", 'Brittany Paige Bouck': 'Young May', 'Emilio Estefan Jr.': 'Piano Player', 'LaGaylia Frazier': 'Singer #1', 'Ramón González Cuevas': 'Priest at Cemetery       (as Ramon Gonzalez-Cuevas)', 'Tony Munafo': 'Tony', 'Cheito Quinonez': 'Singer at Party'}\"\r\ntt2557478,\"{'John Boyega': 'Jake Pentecost', 'Scott Eastwood': 'Nate Lambert', 'Cailee Spaeny': 'Amara Namani', 'Burn Gorman': 'Hermann Gottlieb', 'Charlie Day': 'Dr. Newton Geiszler', 'Tian Jing': 'Liwen Shao       (as Jing Tian)', 'Jin Zhang': 'Marshal Quan       (as Max Zhang)', 'Adria Arjona': 'Jules Reyes', 'Rinko Kikuchi': 'Mako Mori', 'Karan Brar': 'Cadet Suresh', 'Wesley Wong': 'Cadet Jinhai', 'Ivanna Sakhno': 'Cadet Viktoria', 'Mackenyu': 'Cadet Ryoichi', 'Lily Ji': 'Cadet Meilin', 'Shyrley Rodriguez': 'Cadet Renata'}\"\r\ntt0293815,\"{'Ice Cube': 'Craig', 'Mike Epps': 'Day-Day /              Old Man with Shotgun', 'John Witherspoon': 'Mr. Jones', \"\"Don 'D.C.' Curry\"\": 'Uncle Elroy', 'Anna Maria Horsford': 'Mrs. Jones', 'Clifton Powell': 'Pinky', 'K.D. Aubert': 'Donna', 'Bebe Drake': 'Mrs. Pearly', 'Katt Williams': 'Money Mike', 'Rickey Smiley': 'Santa Claus', 'Terry Crews': 'Damon', 'Maz Jobrani': 'Moly', 'Reggie Gaskins': 'Officer Dix', 'Joel McKinnon Miller': 'Officer Hole', 'Brian Stepanek': 'Officer #3'}\"\r\ntt2531344,\"{'Leslie Mann': 'Lisa', 'John Cena': 'Mitchell', 'Ike Barinholtz': 'Hunter', 'Kathryn Newton': 'Julie', 'Geraldine Viswanathan': 'Kayla', 'Gideon Adlon': 'Sam', 'Ramona Young': 'Angelica', 'Graham Phillips': 'Austin', 'Miles Robbins': 'Connor', 'Jimmy Bellinger': 'Chad', 'Colton Dunn': 'Rudy', 'Sarayu Blue': 'Marcie', 'Gary Cole': 'Ron', 'Gina Gershon': 'Cathy', 'June Diane Raphael': 'Brenda'}\"\r\ntt3393786,\"{'Tom Cruise': 'Jack Reacher', 'Cobie Smulders': 'Turner', 'Aldis Hodge': 'Espin', 'Danika Yarosh': 'Samantha', 'Patrick Heusinger': 'The Hunter', 'Holt McCallany': 'Col. Morgan', 'Robert Knepper': 'Gen. Harkness', 'Judd Lormand': 'Local Deputy', 'Christopher Berry': 'Onlooker at Diner', 'Hunter Burke': 'Onlooker at Diner', 'Jason Douglas': 'Sheriff', 'Lizeth Hutchings': 'Smuggled Woman', 'Marisela Zumbado': 'Smuggled Woman', 'Alexandra Lucchesi': 'Smuggled Woman', 'Madalyn Horcher': 'Sgt. Leach'}\"\r\ntt0790724,\"{'Tom Cruise': 'Reacher', 'Rosamund Pike': 'Helen', 'Richard Jenkins': 'Rodin', 'David Oyelowo': 'Emerson', 'Werner Herzog': 'The Zec', 'Jai Courtney': 'Charlie', 'Vladimir Sizov': 'Vlad', 'Joseph Sikora': 'Barr', 'Michael Raymond-James': 'Linsky', 'Alexia Fast': 'Sandy', 'Josh Helman': 'Jeb', 'Robert Duvall': 'Cash', 'James Martin Kelly': 'Rob Farrior', 'Dylan Kussman': 'Gary', 'Denver Milord': 'Punk'}\"\r\ntt1055292,\"{'Katherine Heigl': 'Holly Berenson', 'Josh Duhamel': 'Eric Messer', 'Josh Lucas': 'Sam', 'Alexis Clagett': 'Sophie', 'Brynn Clagett': 'Sophie', 'Brooke Clagett': 'Sophie', 'Hayes MacArthur': 'Peter Novak', 'Christina Hendricks': 'Alison Novak', 'Sarah Burns': 'Janine Groff', 'Jessica St. Clair': 'Beth', 'Brooke Liddell': 'Older Sophie', 'Kiley Liddell': 'Older Sophie', 'Britt Flatmo': 'Amy', 'Rob Huebel': 'Ted', 'Melissa McCarthy': 'DeeDee'}\"\r\ntt1322312,\"{'Drew Barrymore': 'Erin', 'Justin Long': 'Garrett', 'Charlie Day': 'Dan', 'Jason Sudeikis': 'Box', 'Christina Applegate': 'Corinne', 'Ron Livingston': 'Will', 'Oliver Jackson-Cohen': 'Damon', 'Jim Gaffigan': 'Phil', 'Natalie Morales': 'Brandy', 'Kelli Garner': 'Brianna', 'June Diane Raphael': 'Karen', 'Rob Riggle': 'Ron', 'Sarah Burns': 'Harper', 'Terry Beaver': 'Professor', 'Matt Servitto': 'Hugh'}\"\r\ntt0419843,\"{'Elena Anaya': 'Sofia Buñuel', 'Adam Brody': 'Carter Webb', 'Kelsey Keel': 'Teenage Girl', 'Danielle Savre': 'Teenage Girl', 'Gia Mantegna': 'Teenage Girl       (as Gina Mantegna)', 'Rob Reinis': 'Avi Rosenberg       (voice) (as Robert Reinis)', 'JoBeth Williams': 'Agnes Webb', 'Makenzie Vega': 'Paige Hardwicke', 'Kristen Stewart': 'Lucy Hardwicke', 'Meg Ryan': 'Sarah Hardwicke', 'Olympia Dukakis': 'Phyllis', 'Dustin Milligan': 'Eric Watts', 'Graham Wardle': 'Gabe Foley', 'Elise Gatien': 'Tiffany', 'Christine Danielle': 'Tanya'}\"\r\ntt1340138,\"{'Arnold Schwarzenegger': 'Guardian', 'Jason Clarke': 'John Connor', 'Emilia Clarke': 'Sarah Connor', 'Jai Courtney': 'Kyle Reese', 'J.K. Simmons': \"\"O'Brien\"\", 'Dayo Okeniyi': 'Danny Dyson', 'Matt Smith': 'Alex       (as Matthew Smith)', 'Courtney B. Vance': 'Miles Dyson', 'Byung-Hun Lee': 'Cop /              T-1000', 'Michael Gladis': 'Lt. Matias', 'Sandrine Holt': 'Detective Cheung', 'Wayne Bastrup': \"\"Young O'Brien\"\", 'Gregory Alan Williams': 'Detective Harding       (as Greg Alan Williams)', 'Otto Sanchez': 'Detective Timmons', 'Matty Ferraro': 'Agent Janssen'}\"\r\ntt0090859,\"{'Sylvester Stallone': 'Marion Cobretti', 'Brigitte Nielsen': 'Ingrid', 'Reni Santoni': 'Gonzales', 'Andrew Robinson': 'Detective Monte', 'Brian Thompson': 'Night Slasher', 'John Herzfeld': 'Cho', 'Lee Garlington': 'Nancy Stalk', 'Art LaFleur': 'Captain Sears       (as Art La Fleur)', 'Marco Rodríguez': 'Supermarket Killer       (as Marco Rodriguez)', 'Ross St. Phillip': 'Security Guard', 'Val Avery': 'Chief Halliwell', 'David Rasche': 'Dan', 'John Hauk': 'Low Rider', 'Nick Angotti': 'Prodski', 'Nina Axelrod': 'Waitress'}\"\r\ntt1469304,\"{'Dwayne Johnson': 'Mitch Buchannon', 'Zac Efron': 'Matt Brody', 'Priyanka Chopra': 'Victoria Leeds', 'Alexandra Daddario': 'Summer Quinn', 'Kelly Rohrbach': 'CJ Parker', 'Ilfenesh Hadera': 'Stephanie Holden', 'Jon Bass': 'Ronnie Greenbaum', 'Yahya Abdul-Mateen II': 'Sgt. Ellerbee', 'Hannibal Buress': 'Dave the Tech', 'Rob Huebel': 'Captain Thorpe', 'Amin Joseph': 'Frankie', 'Jack Kesy': 'Leon', 'Oscar Nuñez': 'Councilman Rodriguez', 'David Hasselhoff': 'The Mentor', 'Pamela Anderson': 'Casey Jean Parker'}\"\r\ntt0095188,\"{'Chevy Chase': 'Andy Farmer', 'Madolyn Smith Osborne': 'Elizabeth Farmer       (as Madolyn Smith)', \"\"Kevin O'Morrison\"\": 'Sheriff Ledbetter', 'Joseph Maher': 'Michael Sinclair', 'Jack Gilpin': 'Bud Culbertson', 'Caris Corfman': 'Betsy Culbertson', 'William Severs': 'Newspaper Editor', 'Mike Starr': 'Crocker', 'Glenn Plummer': 'Mickey', 'William Duell': 'Old Character', 'Helen Lloyd Breed': 'Old Operator', 'Kit Le Fever': 'Young Operator       (as Le Fevre)', 'Dakin Matthews': 'Marion Corey Jr.', 'William Newman': 'Gus Lotterhand', 'Alice Drummond': 'Mrs. Ethel Dinges'}\"\r\ntt4881806,\"{'Chris Pratt': 'Owen Grady', 'Bryce Dallas Howard': 'Claire Dearing', 'Rafe Spall': 'Eli Mills', 'Justice Smith': 'Franklin Webb', 'Daniella Pineda': 'Zia Rodriguez', 'James Cromwell': 'Benjamin Lockwood', 'Toby Jones': 'Mr. Eversoll', 'Ted Levine': 'Ken Wheatley', 'Jeff Goldblum': 'Ian Malcolm', 'BD Wong': 'Dr. Wu', 'Geraldine Chaplin': 'Iris', 'Isabella Sermon': 'Maisie Lockwood', 'Robert Emms': 'Tech Merc', 'Peter Jason': 'Senator Sherwood', 'Kevin Layne': 'Sub Pilot'}\"\r\ntt1179933,\"{'John Goodman': 'Howard', 'Mary Elizabeth Winstead': 'Michelle', 'John Gallagher Jr.': 'Emmett', 'Douglas M. Griffin': 'Driver', 'Suzanne Cryer': 'Woman', 'Bradley Cooper': 'Ben       (voice)', 'Sumalee Montano': 'Voice on Radio       (voice)', 'Frank Mottek': 'Radio Broadcaster       (voice)'}\"\r\ntt2118624,\"{'Taissa Farmiga': 'Max Cartwright', 'Malin Akerman': 'Nancy /              Amanda Cartwright', 'Alexander Ludwig': 'Chris Briggs', 'Nina Dobrev': 'Vicki Summers', 'Alia Shawkat': 'Gertie Michaels', 'Thomas Middleditch': 'Duncan', 'Adam Devine': 'Kurt       (as Adam DeVine)', 'Angela Trimbur': 'Tina', 'Chloe Bridges': 'Paula', 'Tory N. Thompson': 'Blake', 'Reginald Robinson': 'Hunky Hiker', 'Lauren Gros': 'Mimi', 'Daniel Norris': 'Billy Murphy', 'Eric Michael Carney': 'Young Billy Murphy       (as Eric Carney)', 'Cory Hart': 'Doctor'}\"\r\ntt0822847,\"{'Paul Bettany': 'Priest', 'Karl Urban': 'Black Hat', 'Cam Gigandet': 'Hicks', 'Maggie Q': 'Priestess', 'Lily Collins': 'Lucy Pace', 'Brad Dourif': 'Salesman', 'Stephen Moyer': 'Owen Pace', 'Christopher Plummer': 'Monsignor Orelas', 'Alan Dale': 'Monsignor Chamberlain', 'Mädchen Amick': 'Shannon Pace', 'Jacob Hopkins': 'Boy', 'Dave Florek': 'Crocker', 'Joel Polinsky': 'Dr. Tomlin', 'Josh Wingate': 'Familiar', 'Jon Braver': 'Familiar'}\"\r\ntt2304933,\"{'Chloë Grace Moretz': 'Cassie Sullivan', 'Matthew Zuk': 'Wounded Man with Crucifix', 'Gabriela Lopez': 'Lizbeth', 'Bailey Anne Borders': 'Julia       (as Bailey Borders)', 'Nick Robinson': 'Ben Parish /              Zombie', 'Ron Livingston': 'Oliver Sullivan', 'Maggie Siff': 'Lisa Sullivan', 'Zackary Arthur': 'Sam Sullivan', 'David Maldonado': 'Soccer Coach       (as Dave Maldonado)', 'Paul Ryden': 'TV News Anchor', 'E. Roger Mitchell': 'White House Spokesman', 'Charmin Lee': 'Ms. Paulson', 'Parker Wierling': 'Jeremy', 'Madison Staines': 'Teary School Kid', 'Tony Revolori': 'Dumbo'}\"\r\ntt3862750,\"{'Sanaa Lathan': 'Leah', 'Michael Ealy': 'Carter', 'Morris Chestnut': 'Dave', 'L. Scott Caldwell': 'Evelyn', 'Charles S. Dutton': 'Roger', 'John Getz': 'Renkin', 'Tess Harper': 'Mrs. McCarthy', 'Kathryn Morris': 'Karen', 'Rutina Wesley': 'Alicia', 'Holt McCallany': 'Detective Hansen', 'Jessica Parker Kennedy': 'Rachel', 'David Starzyk': 'Frank', 'Ronnie Gene Blevins': 'Roy the Mechanic', 'Wilmer Calderon': 'Detective Gardner', 'Gordon Clapp': 'Bill Forsythe'}\"\r\ntt1198138,\"{'Idris Elba': 'Derek', 'Beyoncé': 'Sharon       (as Beyoncé Knowles)', 'Ali Larter': 'Lisa', \"\"Jerry O'Connell\"\": 'Ben', 'Bonnie Perlman': 'Marge', 'Christine Lahti': 'Reese', 'Nathan Myers': 'Kyle', 'Nicolas Myers': 'Kyle', 'Matthew Humphreys': 'Patrick', 'Scout Taylor-Compton': 'Samantha', 'Richard Ruccolo': 'Hank', 'Bryan Ross': 'Security Man', 'Nelson Mashita': 'Doctor', 'Bruce McGill': 'Joe Gage', 'Ron Roggé': 'Roger'}\"\r\ntt2011159,\"{'Idris Elba': 'Colin', 'Taraji P. Henson': 'Terry', 'Leslie Bibb': 'Meg', 'Kate del Castillo': 'Alexis', 'Henry Simmons': 'Jeffrey', 'Mirage Moonschein': 'Ryan       (as Mirage Spann)', 'Kenny Alfonso': 'Javier', 'Dan Caudill': 'Cop', 'Tatom Pender': 'Sally', \"\"Kelly O'Neal\"\": 'Officer Jacobs', 'Mark Rhino Smith': 'EMT       (as Mark Ferrol Smith)', 'Bobbie Elzey': 'Landlord', 'Leon Lamar': 'McKinley', 'Frank Brennan': 'Chairman', 'Wilbur Fitzgerald': 'Dr. Ross'}\"\r\ntt2011159,\"{'Idris Elba': 'Colin', 'Taraji P. Henson': 'Terry', 'Leslie Bibb': 'Meg', 'Kate del Castillo': 'Alexis', 'Henry Simmons': 'Jeffrey', 'Mirage Moonschein': 'Ryan       (as Mirage Spann)', 'Kenny Alfonso': 'Javier', 'Dan Caudill': 'Cop', 'Tatom Pender': 'Sally', \"\"Kelly O'Neal\"\": 'Officer Jacobs', 'Mark Rhino Smith': 'EMT       (as Mark Ferrol Smith)', 'Bobbie Elzey': 'Landlord', 'Leon Lamar': 'McKinley', 'Frank Brennan': 'Chairman', 'Wilbur Fitzgerald': 'Dr. Ross'}\"\r\ntt2381249,\"{'Tom Cruise': 'Ethan Hunt', 'Jeremy Renner': 'William Brandt', 'Simon Pegg': 'Benji Dunn', 'Rebecca Ferguson': 'Ilsa Faust', 'Ving Rhames': 'Luther Stickell', 'Sean Harris': 'Lane', 'Simon McBurney': 'Atlee', 'Jingchu Zhang': 'Lauren', 'Tom Hollander': 'Prime Minister', 'Jens Hultén': 'Janik Vinter', 'Alec Baldwin': 'Alan Hunley', 'Mateo Rufino': 'A400 Pilot', 'Fernando Abadie': 'A400 Pilot', 'Alec Utgoff': 'A400 Crewman', 'Hermione Corfield': 'Record Shop Girl'}\"\r\ntt0419706,\"{'Karl Urban': 'John Grimm', 'Rosamund Pike': 'Samantha Grimm', 'Deobia Oparei': 'Destroyer       (as DeObia Oparei)', 'Ben Daniels': 'Goat', 'Razaaq Adoti': 'Duke       (as Raz Adoti)', 'Richard Brake': 'Portman', 'Al Weaver': 'The Kid', 'Dexter Fletcher': 'Pinky', 'Brian Steele': 'Hell Knight', 'Dwayne Johnson': 'Sarge       (as The Rock)', 'Yao Chin': 'Mac', 'Robert Russell': 'Dr. Carmack', 'Daniel York': 'Lt. Huengs', 'Ian Hughes': 'Sanford Crosby', 'Sara Houghton': 'Dr. Jenna Willits'}\"\r\ntt0483607,\"{'Caryn Peterson': 'Vagrant Girl', 'Adeola Ariyo': 'Nurse', 'Emma Cleasby': 'Katherine Sinclair', 'Christine Tomlinson': 'Young Eden Sinclair', 'Vernon Willemse': 'David /              Gimp', 'Paul Hyett': 'Hot Dog Victim', 'Daniel Read': 'Sergeant #1', 'Karl Thaning': 'Pilot', 'Stephen Hughes': 'Soldier #1 /              Johnson', 'Jason Cope': 'Wall Guard', 'Ryan Kruger': 'Soldier', 'Nathan Wheatley': \"\"Patient 'X'\"\", 'Cecil Carter': 'DDS Assault Trooper', 'Jeremy Crutchley': 'Richter', 'Rhona Mitra': 'Eden Sinclair'}\"\r\ntt0482606,\"{'Alex Fisher': 'Mormon Boy #1', 'Peter Clayton-Luce': 'Mormon Boy #2', 'Scott Speedman': 'James Hoyt', 'Liv Tyler': 'Kristen McKay', 'Gemma Ward': 'Dollface', 'Kip Weeks': 'Man in Mask', 'Laura Margolis': 'Pin-Up Girl', 'Glenn Howerton': 'Mike'}\"\r\ntt7518466,\"{'José Aldo': 'Himself', 'Audie Attar': 'Himself', 'Ryan Buescher': 'Himself', 'Kiefer Crosbie': 'Himself', 'Dillon Danis': 'Himself', 'Dee Devlin': 'Herself', 'Nate Diaz': 'Himself', 'Tom Egan': 'Himself', 'Lorenzo Fertitta': 'Himself', 'Nikolay Grozdev': 'Himself', 'Ariel Helwani': 'Himself', 'John Kavanagh': 'Himself', 'Artem Lobov': 'Himself', 'Conor McGregor': 'Himself', 'Erin McGregor': 'Herself'}\"\r\ntt0795421,\"{'Amanda Seyfried': 'Sophie', 'Stellan Skarsgård': 'Bill', 'Pierce Brosnan': 'Sam', 'Nancy Baldwin': \"\"Sam's PA\"\", 'Colin Firth': 'Harry', 'Heather Emmanuel': \"\"Harry's Housekeeper\"\", 'Colin Davis': \"\"Harry's Driver\"\", 'Rachel McDowall': 'Lisa', 'Ashley Lilley': 'Ali', 'Meryl Streep': 'Donna', 'Julie Walters': 'Rosie', 'Christine Baranski': 'Tanya', 'Ricardo Montez': 'Stavros', 'Mia Soteriou': 'Arina', 'Enzo Squillino Jr.': 'Gregoris'}\"\r\ntt5308322,\"{'Jessica Rothe': 'Tree Gelbman', 'Israel Broussard': 'Carter Davis', 'Ruby Modine': 'Lori Spengler', 'Charles Aitken': 'Gregory Butler', 'Laura Clifton': 'Stephanie Butler', 'Jason Bayle': 'David Gelbman', 'Rob Mello': 'John Tombs', 'Rachel Matthews': 'Danielle Bouseman', 'Ramsey Anderson': 'Keith Lumbly', 'Brady Lewis': 'Frat Brother', 'Phi Vu': 'Ryan Phan', 'Tenea Intriago': 'Student Protester', 'Blaine Kern III': 'Nick Sims', 'Cariella Smith': 'Becky Shepard', 'Jimmy Gonzales': 'Police Officer'}\"\r\ntt5776858,\"{'Vicky Krieps': 'Alma', 'Daniel Day-Lewis': 'Reynolds Woodcock', 'Lesley Manville': 'Cyril', 'Julie Vollono': 'London Housekeeper', 'Sue Clark': 'Biddy', 'Joan Brown': 'Nana', 'Harriet Leitch': 'Pippa', 'Dinah Nicholson': 'Elsa', 'Julie Duck': 'Irma', 'Maryanne Frost': 'Winn', 'Elli Banks': 'Elli', 'Amy Cunningham': 'Mabel', 'Amber Brabant': 'Amber', 'Geneva Corlett': 'Geneva', 'Juliet Glaves': 'Florist'}\"\r\ntt7109844,\"{'Freddie Johnson': 'Himself', 'Marianne Barnes': 'Herself', 'Jimmy Russell': 'Himself', 'Denny Potter': 'Himself', 'Brent Elliot': 'Himself', 'Chester Zoeller': 'Himself', 'Greg Davis': 'Himself', 'Fred Noe': 'Himself', 'Dixon Dedmon': 'Himself', 'Chris Morris': 'Himself', 'Paul Steele': 'Himself', 'Jackie Zykan': 'Herself', 'Mike Veach': 'Himself', 'Steve Zahn': 'Himself'}\"\r\ntt4542660,\"{'Chris Colbourn': 'Himself', 'Clive Dixon': 'Himself', 'Tiago Lemos': 'Himself', 'Sean Malto': 'Himself', 'Jordan Maxham': 'Himself', \"\"Luis 'Moose' De Los Reyes\"\": 'Himself', 'Paul Rodriguez': 'Himself       (as Paul Rodriguez Jr.)', 'Jamie Thomas': 'Himself', 'Clint Walker': 'Himself', 'Chase Webb': 'Himself'}\"\r\ntt2527336,\"{'Mark Hamill': 'Luke Skywalker /              Dobbu Scay', 'Carrie Fisher': 'Leia Organa', 'Adam Driver': 'Kylo Ren', 'Daisy Ridley': 'Rey', 'John Boyega': 'Finn', 'Oscar Isaac': 'Poe Dameron', 'Andy Serkis': 'Snoke', \"\"Lupita Nyong'o\"\": 'Maz Kanata', 'Domhnall Gleeson': 'General Hux', 'Anthony Daniels': 'C-3PO', 'Gwendoline Christie': 'Captain Phasma', 'Kelly Marie Tran': 'Rose Tico', 'Laura Dern': 'Vice Admiral Holdo', 'Benicio Del Toro': 'DJ', 'Frank Oz': 'Yoda       (voice)'}\"\r\ntt5117670,\"{'James Corden': 'Peter Rabbit       (voice)', 'Fayssal Bazzi': 'Mr. Tod       (voice)', 'Domhnall Gleeson': 'Mr. Jeremy Fisher /              Mr. Thomas McGregor', 'Sia': 'Mrs. Tiggy-Winkle       (voice)', 'Colin Moody': 'Benjamin Bunny       (voice)', 'Sam Neill': 'Old Mr. McGregor /              Tommy Brock', 'Margot Robbie': 'Flopsy /              The Narrator       (voice)', 'Elizabeth Debicki': 'Mopsy       (voice)', 'Daisy Ridley': 'Cotton-Tail       (voice)', 'Rose Byrne': 'Bea /              Jemima Puddle-Duck', 'Christian Gazal': \"\"Felix D'eer       (voice)\"\", 'Ewen Leslie': 'Pigling Bland       (voice)', 'Natalie Dew': 'Harrods Worker - Janelle', 'Terenia Edwards': 'Harrods Worker - Siobhan', 'Marianne Jean-Baptiste': 'General Manager       (as Marianne Jean Baptiste)'}\"\r\ntt6000478,\"{'Denzel Washington': 'Roman J. Israel, Esq.', 'Colin Farrell': 'George Pierce', 'Carmen Ejogo': 'Maya Alston', 'Lynda Gravatt': 'Vernita Wells       (as Lynda Gravátt)', 'Amanda Warren': 'Lynn Jackson', 'Hugo Armstrong': 'Fritz Molinar', 'Sam Gilroy': 'Connor Novick', 'Tony Plana': 'Jessie Salinas', 'DeRon Horton': 'Derrell Ellerbee', 'Amari Cheatom': 'Carter Johnson', 'Vince Cefalu': 'Security Bailiff', 'Tarina Pouncy': 'Hallway Bailiff', 'Nazneen Contractor': \"\"Melina Nassour (Ass't. DA)\"\", 'Niles Fitch': 'Langston Bailey', 'Jocelyn Ayanna': 'Court Officer Bailiff'}\"\r\ntt6116682,\"{'Cynthia Erivo': 'Rosa Parks', 'Recy Taylor': 'Herself', 'Robert Corbitt': 'Himself', 'Alma Daniels': 'Herself', 'Crystal Feimster': 'Herself', 'Esther Cooper Jackson': 'Herself', 'Danielle L. McGuire': 'Herself', 'James Johnson II': 'Himself', 'Chris Money': 'Himself', 'John L. Payne': 'John O. Harris', 'Jack Kyser': 'Dillard York /              Willie Joe Culpepper', 'Tom Gibbs': 'Luther Lee /              Herbert Lovett', 'Tommy Bernardi': 'Billy Howerton /              Hugo Wilson'}\"\r\ntt4572792,\"{'Naomi Watts': 'Susan Carpenter', 'Jaeden Martell': 'Henry Carpenter       (as Jaeden Lieberher)', 'Jacob Tremblay': 'Peter Carpenter', 'Sarah Silverman': 'Sheila', 'Dean Norris': 'Glenn Sickleman', 'Lee Pace': 'Dr. David Daniels', 'Maddie Ziegler': 'Christina', 'Tonya Pinkins': 'Principal Wilder', 'Bobby Moynihan': 'John', 'Geraldine Hughes': 'Mrs. Evans', 'Maxwell Simkins': 'Tommy       (as Max Simkins)', 'Jackson Nicoll': 'Morris', 'Donnetta Lavinia Grays': 'Nurse Leah', 'Joel Marsh Garland': 'Big Ed', 'Wass Stevens': 'Gary'}\"\r\ntt5325030,\"{'Blair Brown': 'Herself', 'Robert Clohessy': 'Frank', 'Lena Dunham': 'Meryl', 'Parker Posey': 'Angie', 'John Rothman': 'John', 'Josh Safdie': 'Tom       (as Joshua Safdie)', 'Laurie Simmons': 'Ellie'}\"\r\ntt1578275,\"{'Vince Vaughn': 'Ronny Valentine', 'Kevin James': 'Nick Brannen', 'Jennifer Connelly': 'Beth', 'Winona Ryder': 'Geneva', 'Channing Tatum': 'Zip', 'Queen Latifah': 'Susan Warner', 'Amy Morton': 'Diane Popovich', 'Chelcie Ross': 'Thomas Fern', 'Eduardo N. Martinez': 'Felix', 'Rance Howard': 'Burt', 'Clint Howard': 'Herbert Trimpy', 'Guy Van Swearingen': 'Saul', 'Troy West': 'Dr. Rosenstone', 'Laura Whyte': 'Sue', 'Grace Rex': 'Cousin Betty'}\"\r\ntt3957170,\"{'Julius Arile': 'Julius Arile', 'Robert Matanda': 'Robert Matanda'}\"\r\ntt0455944,\"{'Denzel Washington': 'Robert McCall', 'Marton Csokas': 'Teddy', 'Chloë Grace Moretz': 'Teri', 'David Harbour': 'Masters', 'Haley Bennett': 'Mandy', 'Bill Pullman': 'Brian Plummer', 'Melissa Leo': 'Susan Plummer', 'David Meunier': 'Slavi', 'Johnny Skourtis': 'Ralphie', 'Alex Veadov': 'Tevi', 'Vladimir Kulich': 'Vladimir Pushkin', 'E. Roger Mitchell': 'Lead Investigator', 'James Wilcox': 'Pederson', \"\"Mike O'Dea\"\": \"\"Remar       (as Mike P. O'Dea)\"\", 'Anastasia Mousis Sanidopoulos': 'Jenny       (as Anastasia Mousis)'}\"\r\ntt3532216,\"{'Tom Cruise': 'Barry Seal', 'Domhnall Gleeson': \"\"Monty 'Schafer'\"\", 'Sarah Wright': 'Lucy Seal', 'Jesse Plemons': 'Sheriff Downing', 'Caleb Landry Jones': 'JB', 'Lola Kirke': 'Judy Downing', 'Jayma Mays': 'Dana Sibota', 'Alejandro Edda': 'Jorge Ochoa', 'Benito Martinez': 'James Rangel', 'E. Roger Mitchell': 'Agent Craig McCall', 'Jed Rees': 'Louis Finkle', 'Fredy Yate': 'Carlos Lehder       (as Fredy Yate Escobar)', 'Mauricio Mejía': 'Pablo Escobar', 'Robert Farrior': 'Oliver North', 'Morgan Hinkleman': 'Christina'}\"\r\ntt3532216,\"{'Tom Cruise': 'Barry Seal', 'Domhnall Gleeson': \"\"Monty 'Schafer'\"\", 'Sarah Wright': 'Lucy Seal', 'Jesse Plemons': 'Sheriff Downing', 'Caleb Landry Jones': 'JB', 'Lola Kirke': 'Judy Downing', 'Jayma Mays': 'Dana Sibota', 'Alejandro Edda': 'Jorge Ochoa', 'Benito Martinez': 'James Rangel', 'E. Roger Mitchell': 'Agent Craig McCall', 'Jed Rees': 'Louis Finkle', 'Fredy Yate': 'Carlos Lehder       (as Fredy Yate Escobar)', 'Mauricio Mejía': 'Pablo Escobar', 'Robert Farrior': 'Oliver North', 'Morgan Hinkleman': 'Christina'}\"\r\ntt0462504,\"{'Christian Bale': 'Dieter Dengler', 'Zach Grenier': 'Squad Leader', 'Marshall Bell': 'Admiral', 'Toby Huss': 'Spook', 'Pat Healy': 'Norman', 'GQ': 'Farkas       (as Gregory J. Qaiyum)', 'James Aaron Oliver': 'Jet Pilot       (as James Oliver)', 'Brad Carr': 'U.S. Navy Pilot', 'Saichia Wongwiroj': 'Pathet Lao Guard', 'François Chau': 'Province Governor       (as Francois Chau)', 'Teerawat Mulvilai': \"\"Little Hitler       (as Teerawat 'Ka-Ge' Mulvilai)\"\", 'Yuttana Muenwaja': 'Crazy Horse', 'Kriangsak Ming-olo': 'Jumbo', \"\"Somkuan 'Kuan' Siroon\"\": 'Nook the Rook', 'Chorn Solyda': 'Walkie Talkie'}\"\r\ntt0102316,\"{'Jodie Foster': 'Dede Tate', 'Alex Lee': 'Fred Tate at 2', 'Adam Hann-Byrd': 'Fred Tate', 'Michael Shulman': 'Matt Montini', 'Nathan Lee': \"\"Matt's Teammate\"\", 'Celia Weston': 'Miss Nimvel', 'Danitra Vance': 'Clinic Doctor', 'Dianne Wiest': 'Jane Grierson', 'David Hyde Pierce': 'Garth       (as David Pierce)', 'Debi Mazar': 'Gina', 'Richard Fredette': 'Bartender', 'George Plimpton': 'Winston F. Buckner', 'Jennifer Trier': 'Grierson Institute Teacher', 'P.J. Ochlan': 'Damon Wells', 'John Bell': 'Joey X'}\"\r\ntt0056264,\"{'Marlon Brando': '1st Lt. Fletcher Christian', 'Trevor Howard': 'Captain William Bligh', 'Richard Harris': 'Seaman John Mills', 'Hugh Griffith': 'Alexander Smith', 'Richard Haydn': 'William Brown', 'Tarita': 'Maimiti', 'Percy Herbert': 'Seaman Matthew Quintal', 'Duncan Lamont': 'John Williams', 'Gordon Jackson': 'Seaman Edward Birkett', 'Chips Rafferty': 'Michael Byrne', 'Noel Purcell': 'Seaman William McCoy', 'Ashley Cowan': 'Samuel Mack', 'Eddie Byrne': 'John Fryer (Sailing Master)', 'Frank Silvera': 'Minarii', 'Tim Seely': \"\"Midshipman Edward 'Ned' Young\"\"}\"\r\ntt4555426,\"{'Gary Oldman': 'Winston Churchill', 'Kristin Scott Thomas': 'Clemmie', 'Ben Mendelsohn': 'King George VI', 'Lily James': 'Elizabeth Layton', 'Ronald Pickup': 'Neville Chamberlain', 'Stephen Dillane': 'Viscount Halifax', 'Nicholas Jones': 'Sir John Simon', 'Samuel West': 'Sir Anthony Eden', 'David Schofield': 'Clement Atlee', 'Richard Lumsden': 'General Ismay', 'Malcolm Storry': 'General Ironside', 'Hilton McRae': 'Arthur Greenwood', 'Benjamin Whitrow': 'Sir Samuel Hoare', 'Joe Armstrong': 'John Evans', 'Adrian Rawlins': 'Air Chief Marshal Dowding       (as Adrian Rawlings)'}\"\r\ntt0077572,\"{'Robert Shaw': 'Mallory', 'Harrison Ford': 'Barnsby', 'Barbara Bach': 'Maritza', 'Edward Fox': 'Miller', 'Franco Nero': 'Lescovar', 'Carl Weathers': 'Weaver', 'Richard Kiel': 'Drazak', 'Alan Badel': 'Petrovitch', 'Michael Byrne': 'Schroeder', 'Philip Latham': 'Jensen', 'Angus MacInnes': 'Reynolds', 'Michael Sheard': 'Sgt. Bauer', 'Petar Buntic': 'Marko', 'Leslie Schofield': 'Interrogation Officer 1', 'Anthony Langdon': 'Interrogation Officer 2       (as Antony Langdon)'}\"\r\ntt5719108,\"{'Obaidah Zytoon': 'Herself, Syrian DJ, radio Sham FM', 'Nawwara': 'Herself', 'Amal': 'Herself', 'Muhammad Houssam': 'Himself', 'Lulu': 'Herself', 'Hisam': \"\"Himself, Lulu's boyfriend\"\", 'Rabea': 'Himself', 'Argha': 'Himself', 'Fifi': 'Herself, Fifi the Dog', 'Madaya': 'Himself', 'Hasan': 'Himself, Free Syrian Army', 'Raed Al-Fares': 'Himself       (as Raed al-Fares)'}\"\r\ntt0104815,\"{'Carlos Gallardo': 'El Mariachi', 'Consuelo Gómez': 'Domino', 'Jaime de Hoyos': 'Bigotón       (as Jaime De Hoyos)', 'Peter Marquardt': 'Mauricio', 'Reinol Martinez': 'Azul', 'Ramiro Gómez': 'Cantinero       (as Ramiro Gomez)', 'Jesús López': 'Viejo Clerk       (as Jesus Lopez)', 'Luis Baró': \"\"Domino's Assistant       (as Luis Baro)\"\", 'Oscar Fabila': 'The Boy', 'Poncho Ramón': \"\"Azul's Rat       (as Poncho Ramon)\"\", 'Fernando Martínez': \"\"Azul's Rat       (as Fernando Martinez)\"\", 'Manuel Acosta': 'Bodyguard', 'Walter Vargas': 'Prisoner', 'Roberto Martinez': 'Prisoner', 'Virgen Delgado': 'Female Bodyguard'}\"\r\ntt0066448,\"{'Kirk Douglas': 'Paris Pitman, Jr.', 'Henry Fonda': 'Woodward W. Lopeman', 'Hume Cronyn': 'Dudley Whinner', 'Warren Oates': 'Floyd Moon', 'Burgess Meredith': 'The Missouri Kid', 'John Randolph': 'Cyrus McNutt', 'Lee Grant': 'Mrs. Bullard', \"\"Arthur O'Connell\"\": 'Mr. Lomax', 'Martin Gabel': 'Warden LeGoff', 'Michael Blodgett': 'Coy Cavendish', 'C.K. Yang': 'Ah-Ping', 'Alan Hale Jr.': 'Tobaccy       (as Alan Hale)', 'Victor French': 'Whiskey', 'Claudia McNeil': 'Madam', 'Bert Freed': 'Skinner'}\"\r\ntt0059803,\"{'Marga López': 'Mariana Sampedro', 'Jorge Martínez de Hoyos': 'Juan Sayago', 'Enrique Rocha': 'Pedro Trueba', 'Alfredo Leal': 'Julián Trueba', 'Blanca Sánchez': 'Sonia', 'Tito Junco': 'Comisario', 'Quintín Bulnes': 'Diego Martín Ibáñez', 'Miguel Macía': 'Druggist', 'Carlos Jordán': 'Casildo', 'Arturo Martínez': 'Cantinero', 'Hortensia Santoveña': 'Rosita', 'Carolina Barret': 'Mamá de Sonia', 'Manuel Dondé': 'Barber', 'Claudio Isaac': 'Claudio Sampedro'}\"\r\ntt4477536,\"{'Dakota Johnson': 'Anastasia Steele', 'Jamie Dornan': 'Christian Grey', 'Eric Johnson': 'Jack Hyde', 'Eloise Mumford': 'Kate Kavanagh', 'Rita Ora': 'Mia Grey', 'Luke Grimes': 'Elliot Grey', 'Victor Rasuk': 'José', 'Max Martini': 'Taylor', 'Jennifer Ehle': 'Carla', 'Marcia Gay Harden': 'Grace Grey', 'Bruce Altman': 'Jerry Roach', 'Arielle Kebbel': 'Gia Matteo', 'Callum Keith Rennie': 'Ray', 'Robinne Lee': 'Ros Bailey', 'Brant Daugherty': 'Sawyer'}\"\r\ntt4477536,\"{'Dakota Johnson': 'Anastasia Steele', 'Jamie Dornan': 'Christian Grey', 'Eric Johnson': 'Jack Hyde', 'Eloise Mumford': 'Kate Kavanagh', 'Rita Ora': 'Mia Grey', 'Luke Grimes': 'Elliot Grey', 'Victor Rasuk': 'José', 'Max Martini': 'Taylor', 'Jennifer Ehle': 'Carla', 'Marcia Gay Harden': 'Grace Grey', 'Bruce Altman': 'Jerry Roach', 'Arielle Kebbel': 'Gia Matteo', 'Callum Keith Rennie': 'Ray', 'Robinne Lee': 'Ros Bailey', 'Brant Daugherty': 'Sawyer'}\"\r\ntt0382992,\"{'Josh Lucas': 'Lt. Ben Gannon', 'Jessica Biel': 'Lt. Kara Wade', 'Jamie Foxx': 'Lt. Henry Purcell', 'Sam Shepard': 'Capt. George Cummings', 'Richard Roxburgh': 'Dr. Keith Orbit', 'Joe Morton': 'Capt. Dick Marshfield', 'Ian Bliss': 'Lt. Aaron Shaftsbury', 'Ebon Moss-Bachrach': 'Tim', 'Michael Denkha': 'Naval Controller', 'Rocky Helton': 'Master at Arms', 'Clayton Adams': 'USS Abraham Lincoln Sailor', 'Maurice Morgan': 'USS Abraham Lincoln Sailor', 'Woody Naismith': 'USS Abraham Lincoln Sailor       (as Christopher Naismith)', 'Charles Ndibe': 'USS Abraham Lincoln Sailor', 'Nicholas Hammond': 'Executive Officer'}\"\r\ntt0257076,\"{'Samuel L. Jackson': \"\"Sgt. Dan 'Hondo' Harrelson\"\", 'Colin Farrell': 'Jim Street', 'Michelle Rodriguez': 'Chris Sanchez', 'LL Cool J': \"\"Deacon 'Deke' Kaye       (as James Todd Smith aka LL Cool J)\"\", 'Josh Charles': 'T.J. McCabe', 'Jeremy Renner': 'Brian Gamble', 'Brian Van Holt': 'Michael Boxer', 'Olivier Martinez': 'Alex Montel', 'Reg E. Cathey': 'Lt. Greg Velasquez       (as Reginald E. Cathey)', 'Larry Poindexter': 'Capt. Thomas Fuller', 'Page Kennedy': 'Travis', 'Domenick Lombardozzi': 'GQ', 'James DuMont': 'Gus', 'Denis Arndt': 'Sgt. Howard', 'Lindsey Ginter': 'Agent Hauser'}\"\r\ntt0048380,\"{'Henry Fonda': 'Lt. j.g. Douglas A. Roberts', 'James Cagney': 'The Captain', 'William Powell': 'Doc', 'Jack Lemmon': 'Ensign Frank Thurlowe Pulver', 'Betsy Palmer': 'Lt. Ann Girard', 'Ward Bond': 'Chief Petty Officer Dowdy', 'Philip Carey': 'Mannion       (as Phil Carey)', 'Nick Adams': 'Reber', 'Perry Lopez': 'Rodrigues', 'Ken Curtis': 'Dolan', 'Robert Roark': 'Insigna', 'Harry Carey Jr.': 'Stefanowski', 'Patrick Wayne': 'Bookser       (as Pat Wayne)', 'Frank Aletter': 'Gerhart', 'Tige Andrews': 'Wiley       (as Tiger Andrews)'}\"\r\ntt0250720,\"{'David Arquette': 'Gordon', 'Michael Clarke Duncan': 'Murdoch', 'Leslie Bibb': 'Stephanie', 'Joe Viterelli': 'Gino', 'Angus T. Jones': 'James', 'Steve Schirripa': 'Arliss       (as Steven R. Schirripa)', 'Anthony Anderson': 'Benny', 'Paul Sorvino': 'Sonny Talia', 'Kim Hawthorne': 'Cassavettes', 'Kavan Smith': 'Ricky', 'Peter Bryant': 'Cop', 'Fiona Hogan': 'Cop', 'Roger Haskett': 'Michaels', 'Fulvio Cecere': 'Lawyer', 'Stephen E. Miller': 'Danvers'}\"\r\ntt0077235,\"{'Jan-Michael Vincent': 'Matt Johnson', 'William Katt': 'Jack Barlow', 'Gary Busey': 'Leroy Smith', \"\"Patti D'Arbanville\"\": 'Sally Jacobson', 'Lee Purcell': 'Peggy Gordon', 'Sam Melville': 'Bear', 'Darrell Fetty': \"\"Jim 'Waxer' King\"\", 'Gerry Lopez': 'Gerry Lopez', 'Hank Worden': 'Shopping Cart       (as Hank Warden)', 'Joe Spinell': 'Psychologist', 'Steve Kanaly': \"\"Sally's Husband\"\", 'Barbara Hale': 'Mrs. Barlow', 'Fran Ryan': 'Lucy', 'Dennis Aaberg': 'Slick', 'Reb Brown': 'Enforcer'}\"\r\ntt0034587,\"{'Simone Simon': 'Irena Dubrovna Reed', 'Kent Smith': 'Oliver Reed', 'Tom Conway': 'Dr. Louis Judd', 'Jane Randolph': 'Alice Moore', 'Jack Holt': 'The Commodore'}\"\r\ntt0036855,\"{'Charles Boyer': 'Gregory Anton', 'Ingrid Bergman': 'Paula Alquist', 'Joseph Cotten': 'Brian Cameron', 'May Whitty': 'Miss Thwaites       (as Dame May Whitty)', 'Angela Lansbury': 'Nancy', 'Barbara Everest': 'Elizabeth', 'Emil Rameau': 'Maestro Guardi', 'Edmund Breon': 'General Huddleston', 'Halliwell Hobbes': 'Mr. Muffin', 'Tom Stevenson': 'Williams', 'Heather Thatcher': 'Lady Dalroy', 'Lawrence Grossmith': 'Lord Dalroy', 'Jakob Gimpel': 'Pianist'}\"\r\ntt0071675,\"{'John P. Ryan': 'Frank Davies       (as John Ryan)', 'Sharon Farrell': 'Lenore Davies', 'Andrew Duggan': 'The Professor', 'Guy Stockwell': 'Bob Clayton', 'James Dixon': 'Lt. Perkins', 'Michael Ansara': 'The Captain', 'Robert Emhardt': 'The Executive', 'William Wellman Jr.': 'Charley', 'Shamus Locke': 'The Doctor', 'Nancy Burnett': 'Nurse       (as Mary Nancy Burnett)', 'Patrick McAllister': 'Expectant Father       (as Patrick Macallister)', 'Daniel Holzman': 'Chris', 'Diana Hale': 'Secretary', 'Gerald York': 'Expectant Father', 'Jerry Taft': 'Expectant Father'}\"\r\ntt0079239,\"{'Robert Duvall': 'Bull Meechum', 'Blythe Danner': 'Lillian Meechum', \"\"Michael O'Keefe\"\": 'Ben Meechum', 'Lisa Jane Persky': 'Mary Anne Meechum', 'Julie Anne Haddock': 'Karen Meechum', 'Brian Andrews': 'Matthew Meechum', 'Stan Shaw': 'Toomer Smalls', 'Theresa Merritt': 'Arrabella Smalls', 'David Keith': 'Red Pettus', 'Paul Mantee': 'Col. Virgil Hedgepath', 'Michael Strong': 'Col. Varney', 'Bennett Liss': 'Corp. Atcherly', 'Joe Dorsey': 'Coach Spinks', 'David Frankham': 'Capt. Weber', 'Jan Stratton': 'Mrs. Weber'}\"\r\ntt6333066,\"{'Tim Black': 'Himself', 'Philip Glass': 'Himself', 'Christo Gomes': 'Himself', 'John Hume': 'Himself', 'Bill Travers Jr.': 'Himself       (as Will Travers)'}\"\r\ntt4397414,\"{'Tom Asta': 'Himself', 'Edmund Bacon': 'Himself       (archive footage)', 'Rob Dyrdek': 'Himself', 'Tony Hawk': 'Himself', 'Nyjah Huston': 'Himself', 'Sean Malto': 'Himself', 'Bam Margera': 'Himself', 'Guy Mariano': 'Himself', 'Rodney Mullen': 'Himself', 'Michael Nutter': 'Himself', 'Chaz Ortiz': 'Himself', 'Edward Rendell': 'Himself', 'Jesse Rendell': 'Himself', 'Paul Rodriguez': 'Himself       (as Paul Rodriguez Jr.)'}\"\r\ntt0451279,\"{'Gal Gadot': 'Diana', 'Chris Pine': 'Steve Trevor', 'Connie Nielsen': 'Hippolyta', 'Robin Wright': 'Antiope', 'Danny Huston': 'Ludendorff', 'David Thewlis': 'Sir Patrick', 'Saïd Taghmaoui': 'Sameer', 'Ewen Bremner': 'Charlie', 'Eugene Brave Rock': 'The Chief', 'Lucy Davis': 'Etta', 'Elena Anaya': 'Dr. Maru', 'Lilly Aspell': 'Young Diana (8)', 'Lisa Loven Kongsli': 'Menalippe', 'Ann Wolfe': 'Artemis       (as Ann J. Wolfe)', 'Ann Ogbomo': 'Philippus'}\"\r\ntt0918940,\"{'Alexander Skarsgård': 'John Clayton /              Tarzan', 'Rory J. Saper': 'Young Tarzan (18 Years)', 'Christian Stevens': 'Young Tarzan (5 Years)', 'Christoph Waltz': 'Leon Rom', 'Samuel L. Jackson': 'George Washington Williams', 'Margot Robbie': 'Jane Clayton', 'Sidney Ralitsoele': 'Wasimbu', 'Osy Ikhile': 'Kwete', 'Mens-Sana Tamakloe': 'Kolo', 'Antony Acheampong': 'Kanam', 'Edward Apeagyei': 'Kimanga', 'Ashley Byam': 'Kasai', 'Casper Crump': 'Major Kerckhover', 'Adam Ganne': 'German Force Publique', 'Aleksandar Mikic': 'Muscular Force Publique'}\"\r\ntt0211443,\"{'Kane Hodder': 'Jason Voorhees /              Uber-Jason', 'Jeff Geddis': 'Johnson (Soldier #1)', 'Lexa Doig': 'Rowan', 'David Cronenberg': 'Dr. Wimmer', 'Markus Parilo': 'Sgt. Marcus       (as Marcus Parilo)', 'Jonathan Potts': 'Professor Lowe', 'Lisa Ryder': 'Kay-Em 14', 'Dov Tiefenbach': 'Azrael', 'Chuck Campbell': 'Tsunaron', 'Melyssa Ade': 'Janessa', 'Boyd Banks': 'Fat Lou', 'Barna Moricz': 'Kicker', 'Dylan Bierk': 'Briggs', 'Todd Farmer': 'Dallas', 'Peter Mensah': 'Sgt. Brodski'}\"\r\ntt2967226,\"{'Ken Jeong': 'Chris Kim', 'Jim Jefferies': 'Tommy', 'Colton Dunn': 'Redix', 'David Hasselhoff': 'The Hoff', 'Dan Bakkedahl': 'Nick', 'Ron Funches': 'Bill Sigliano', 'Jennifer Ikeda': 'Ann', 'Rhys Darby': 'Fish', 'Victor Turpin': 'Sebastian', 'Harry S. Murphy': 'Mr. Keady', 'Katy Stoll': 'Jenn', 'Jon Lovitz': 'Barry', 'Datari Turner': 'Bouncer', 'Master P': 'Del Toro', 'Taylor Coliee': \"\"Gina D'Andrea\"\"}\"\r\ntt4872162,\"{'Nic Nemeth': 'Ray Thompson       (as Dolph Ziggler)', 'Glenn Jacobs': \"\"Lt. Cronin       (as Glenn 'Kane' Jacobs)\"\", 'Katharine Isabelle': 'Julia Baker', 'Josh Blacker': 'Detective Al Kendricks', 'Alexander Kalugin': 'Nikolai', 'Michael Kopsa': 'Makarov', \"\"Alan O'Silva\"\": 'Vladislav Pavel', 'Catherine Lough Haggquist': 'Lilly       (as Catherine Lough-Haggquist)', 'Jennifer Cheon Garcia': 'Rachel       (as Jennifer Cheon)', 'Luke Roessler': 'Anatoly', 'Andrea Stefancikova': 'Russian Wife', 'Alexander Mandra': \"\"Boris       (as Alexander 'Sasha' Mandra)\"\", 'Sarwan Badesha': 'Technician #1', 'Simon Hill': 'Technician #2', 'Paul Vos': 'Technician #3'}\"\r\ntt4497338,\"{'Adam Copeland': \"\"Lucas Nolan       (as Adam 'Edge' Copeland)\"\", 'Julia Benson': 'Sara Ward', 'C.J. Perry': \"\"Becky       (as CJ 'Lana' Perry)\"\", 'Erica Carroll': 'Joan Marian', 'Patrick Sabongui': 'Vasti', 'Josh Blacker': 'Bartender #1', 'Kevin McNulty': 'Eli Reed', 'Michael J Rogers': 'Mark Bennett       (as Michael Rogers)', 'Mitchell Kummen': 'Teen Lucas', 'Eric Breker': 'EOD Officer #2', 'Kwesi Ameyaw': 'Federal Agent       (as Kewsi Ameyaw)', 'Jana Mitsoula': 'Agent #1', 'Adrian Petriw': 'Tech', 'Todd Thomson': 'EOD Officer #1', 'Bob Frazer': 'Federal Officer'}\"\r\ntt3957956,\"{'Jonathan Good': 'John Shaw       (as Dean Ambrose)', 'Roger Cross': 'Tyler Burke       (as Roger R. Cross)', 'Daniel Cudmore': 'Gideon', 'Lochlyn Munro': 'Darrow', 'Ty Olsson': 'Harris', 'Sarah Smyth': 'Officer Jenny Taylor', 'Rebecca Marshall': 'Captain Matthews', 'Kirby Morrow': 'Saul', 'Samuel Smith': 'Porter', 'Toby Levins': 'Meeks', 'James Michalopolous': 'Friels       (as James Michalopoulos)', 'Jaeson Lee': 'Robertson', 'Bill Dow': 'Keppler', 'Sharon Taylor': 'Carmen', 'Hugo Steele': 'Hurst'}\"\r\ntt4765284,\"{'Anna Kendrick': 'Beca', 'Rebel Wilson': 'Fat Amy', 'Brittany Snow': 'Chloe', 'Anna Camp': 'Aubrey', 'Hailee Steinfeld': 'Emily', 'Ester Dean': 'Cynthia Rose', 'Hana Mae Lee': 'Lilly', 'Kelley Jakle': 'Jessica', 'Shelley Regner': 'Ashley', 'Chrissie Fit': 'Flo', 'Elizabeth Banks': 'Gail', 'John Michael Higgins': 'John', 'John Lithgow': 'Fergus', 'Matt Lanter': 'Chicago', 'Guy Burnet': 'Theo'}\"\r\ntt5726086,\"{'Lin Shaye': 'Elise Rainier', 'Leigh Whannell': 'Specs', 'Angus Sampson': 'Tucker', 'Kirk Acevedo': 'Ted Garza', 'Caitlin Gerard': 'Imogen Rainier', 'Spencer Locke': 'Melissa Rainier', 'Josh Stewart': 'Gerald Rainier', 'Tessa Ferrer': 'Audrey Rainier', 'Aleque Reid': 'Anna', 'Ava Kolker': 'Young Elise Rainier', 'Pierce Pope': 'Young Christian Rainier', 'Bruce Davison': 'Christian Rainier', 'Javier Botet': 'KeyFace', 'Marcus Henderson': 'Detective Whitfield', 'Amanda Jaros': 'Mara Jennings'}\"\r\ntt6421110,\"{'Taraji P. Henson': 'Mary', 'Billy Brown': 'Tom', \"\"Jahi Di'Allo Winston\"\": 'Danny', 'Neal McDonough': 'Walter', 'Margaret Avery': 'Mina', 'Xander Berkeley': 'Uncle', 'Rade Serbedzija': 'Luka', 'Erik LaRay Harvey': 'Reggie', 'Danny Glover': 'Benny', 'Adobuere Ebiama': 'Woman', 'Owen Burke': 'Jerome', 'Bo Cleary': \"\"Benny's Guy /              Tyson\"\", 'Therese Plaehn': 'Saleswoman', 'James Milord': 'Miller', 'Alex Portenko': 'Ivan'}\"\r\ntt3829920,\"{'Josh Brolin': 'Eric Marsh', 'Miles Teller': 'Brendan McDonough', 'Jeff Bridges': 'Duane Steinbrink', 'Jennifer Connelly': 'Amanda Marsh', 'James Badge Dale': 'Jesse Steed', 'Taylor Kitsch': 'Christopher MacKenzie', 'Andie MacDowell': 'Marvel Steinbrink', 'Geoff Stults': 'Travis Turbyfill', 'Alex Russell': 'Andrew Ashcraft', 'Thad Luckinbill': 'Scott Norris', 'Ben Hardy': 'Wade Parker', 'Scott Haze': 'Clayton Whitted', 'Jake Picking': 'Anthony Rose', 'Scott Foxx': 'Travis Carter', 'Dylan Kenin': 'Robert Caldwell'}\"\r\ntt3783958,\"{'Ryan Gosling': 'Sebastian', 'Emma Stone': 'Mia', 'Amiée Conn': 'Famous Actress', 'Terry Walters': 'Linda (Coffee Shop Manager)', 'Thom Shelton': 'Coffee Spiller', 'Cinda Adams': 'Casting Director (First Audition)', 'Callie Hernandez': 'Tracy', 'Jessica Rothe': 'Alexis', 'Sonoya Mizuno': 'Caitlin', 'Rosemarie DeWitt': 'Laura', 'J.K. Simmons': 'Bill', 'Claudine Claudio': 'Karen (Waitress)', 'Jason Fuchs': 'Carlo', 'D.A. Wallach': \"\"'80s Singer\"\", 'Trevor Lissauer': 'Valet'}\"\r\ntt0451279,\"{'Gal Gadot': 'Diana', 'Chris Pine': 'Steve Trevor', 'Connie Nielsen': 'Hippolyta', 'Robin Wright': 'Antiope', 'Danny Huston': 'Ludendorff', 'David Thewlis': 'Sir Patrick', 'Saïd Taghmaoui': 'Sameer', 'Ewen Bremner': 'Charlie', 'Eugene Brave Rock': 'The Chief', 'Lucy Davis': 'Etta', 'Elena Anaya': 'Dr. Maru', 'Lilly Aspell': 'Young Diana (8)', 'Lisa Loven Kongsli': 'Menalippe', 'Ann Wolfe': 'Artemis       (as Ann J. Wolfe)', 'Ann Ogbomo': 'Philippus'}\"\r\ntt1219827,\"{'Scarlett Johansson': 'Major', 'Pilou Asbæk': 'Batou', 'Takeshi Kitano': \"\"Aramaki       (as 'Beat' Takeshi Kitano)\"\", 'Juliette Binoche': 'Dr. Ouelet', 'Michael Pitt': 'Kuze       (as Michael Carmen Pitt)', 'Chin Han': 'Togusa', 'Danusia Samal': 'Ladriya', 'Lasarus Ratuere': 'Ishikawa', 'Yutaka Izumihara': 'Saito', 'Tawanda Manyimo': 'Borma', 'Peter Ferdinando': 'Cutter', 'Anamaria Marinca': 'Dr. Dahlin', 'Daniel Henshall': 'Skinny Man', 'Mana Hira Davis': 'Bearded Man       (as Mana Davis)', 'Erroll Anderson': 'Hanka Security Agent'}\"\r\ntt4966046,\"{'James Zimbardi': 'Adam Morris', 'Skyler Caleb': 'Jake', 'Jean Smart': 'Evette', 'Emily Somers': 'Beth', 'Andrea Hunt': 'Christy', 'Robert R. Shafer': 'Tom', 'Raam Weinfeld': 'Lawrence', 'Grace Van Dien': 'Samantha', 'Sophie Labelle': 'Angela', 'Casey Kramer': 'Glenda', 'Karah Britton': 'Sarah', 'Jasper Cole': 'Peter', 'Mario Daggett': 'Scrapyard worker', 'Angie Teodora Dick': 'Gloria       (as Angie Dick)', 'Marisa Dzintars': 'Candice'}\"\r\ntt3371366,\"{'Mark Wahlberg': 'Cade Yeager', 'Anthony Hopkins': 'Sir Edmund Burton', 'Josh Duhamel': 'Colonel William Lennox', 'Laura Haddock': 'Vivian Wembley', 'Santiago Cabrera': 'Santos', 'Isabela Merced': 'Izabella       (as Isabela Moner)', 'Jerrod Carmichael': 'Jimmy', 'Stanley Tucci': 'Merlin', 'Liam Garrigan': 'Arthur', 'Martin McCreadie': 'Lancelot', 'Rob Witcomb': 'Percival', 'Marcus Fraser': 'Gawain', 'John Hollingworth': 'Tristan', 'Daniel Adegboyega': 'Saebert', 'Trent Seven': 'Hengist'}\"\r\ntt6094944,\"{'Honlenny Huffington': 'Corn', 'Kiara Howard': 'Rita', 'Jean Bush Howard': 'Goat Owner', 'Eduardo Cantillo': 'Champ', 'Elkin Robinson': 'Rainbow', 'Michel Robinson': 'Butcher', 'Ambrosio Huffington': 'Goldie', 'Arelis Fonseca': 'Mother /              Pauline', 'Alvin Brayan': 'Father', 'Carlos Robinson': \"\"Officer Bold       (as Carlos 'Shala' Robinson)\"\", 'Johann Peñaloza': 'Officer Livingston', 'Evaristo Howard': 'Rasta Buggy', 'Josue Taylor': 'Rasta Buggy 2', 'Edison Velasquez': 'Gardener', 'Leisha Howard': \"\"Rita's Friend\"\"}\"\r\ntt4211312,\"{'Jonathan Pryce': 'Colonel Fitz', 'Fiona Shaw': 'Kathrin Fitz', 'Olivia Williams': 'Sophia       (voice)', 'Greta Scacchi': 'General Meade', 'Agyness Deyn': 'Hannah', 'Ólafur Darri Ólafsson': 'Pickaxe', 'Clare-Hope Ashitey': 'Gaby', 'Declan Hannigan': 'Young Soldier', 'Ross Partridge': 'Peter', 'Derek de Lint': 'Silver Hair', 'Matthew Postlethwaite': 'Remus Frunza', 'Vilmos Heim': 'Frunza Boy', 'Björn Freiberg': 'Security Guard', 'Jeffrey Postlethwaite': 'Romulus Frunza', 'Ton Kas': 'Iron Fist'}\"\r\ntt1291150,\"{'Megan Fox': \"\"April O'Neil\"\", 'Will Arnett': 'Vern Fenwick', 'William Fichtner': 'Eric Sacks', 'Alan Ritchson': 'Raphael', 'Noel Fisher': 'Michelangelo', 'Pete Ploszek': 'Leonardo', 'Johnny Knoxville': 'Leonardo       (voice)', 'Jeremy Howard': 'Donatello', 'Danny Woodburn': 'Splinter', 'Tony Shalhoub': 'Splinter       (voice)', 'Tohoru Masamune': 'Shredder', 'Whoopi Goldberg': 'Bernadette Thompson', 'Minae Noji': 'Karai', 'Abby Elliott': 'Taylor', 'Madison Mason': 'Councilman'}\"\r\ntt5061162,\"{'Zuzana Mauréry': 'Mária Drazdechová', 'Zuzana Konecná': 'Iveta Kucerová', 'Csongor Kassai': 'Marek Kucera', 'Tamara Fischer': 'Danka Kucerová', 'Martin Havelka': 'Jaroslav Binder', 'Éva Bandor': 'Hana Binderová', 'Oliver Oswald': 'Filip Binder', 'Peter Bebjak': 'Václav Littmann', 'Richard Labuda': 'Karol Littmann', 'Inka Gogálová': 'Head Teacher       (as Ina Gogálová)', 'Monika Certezni': 'Assistant Head Teacher', 'Judita Hansman': 'Mrs. Bártová', 'Ladislav Hrusovský': 'Mr. Malinovský'}\"\r\ntt5529680,\"{'Ben Schamma': 'Darth Maul', 'Mathis Landwehr': 'Jedi Master', 'Svenja Jung': 'Jedi Apprentice', 'Eskindir Tesfay': 'Jedi Berserker', 'Maja Felicitas Bergmann': 'Togruta Jedi', 'Paul Cless': 'Jedi Knight I', 'Sefa Demirbas': 'Jedi Knight II', 'Dirk Chwialkowsky': 'Darth Sidious', 'Lee Hua': 'Darth Sidious       (voice)', 'Sean M. Sinclair': 'Darth Maul'}\"\r\ntt1293847,\"{'Vin Diesel': 'Xander Cage', 'Donnie Yen': 'Xiang', 'Deepika Padukone': 'Serena Unger', 'Kris Wu': 'Nicks', 'Ruby Rose': 'Adele Wolff', 'Tony Jaa': 'Talon', 'Nina Dobrev': 'Becky Clearidge', 'Rory McCann': 'Tennyson Torch', 'Toni Collette': 'Jane Marke', 'Samuel L. Jackson': 'Augustus Gibbons', 'Ice Cube': 'Darius Stone', 'Hermione Corfield': 'Ainsley', 'Tony Gonzalez': 'Paul Donovan', 'Michael Bisping': 'Hawk', 'Al Sapienza': 'CIA Director'}\"\r\ntt3773378,{}\r\ntt1519461,\"{'Reid Warner': 'Reid', 'Darrin Bragg': 'Darrin', 'Ben Rovner': 'Ben', 'Jelena Nik': 'Jelena', 'Roy Abramsohn': 'Jim Nelson', 'Frank Novak': 'Frank Novak', 'Glenn Campbell': 'Glenn Campbell', 'Connie West': \"\"Little A'Le'Inn Waitress       (as Conception West)\"\", 'James Decker': 'Kooky Rachel Local', 'Patrick Sullivan': \"\"Lazar's Insider Security\"\", 'David Thornsberry': 'Employee', 'Jenna Thornsberry': \"\"Area 51 Employee's Wife\"\", 'Amelia Thornsberry': 'Employee Daughter', 'Wray Featherstone': \"\"Reid's Dad\"\", 'Sandra Staggs': \"\"Reid's Mom\"\"}\"\r\ntt2283362,\"{'Dwayne Johnson': 'Spencer', 'Kevin Hart': 'Fridge', 'Jack Black': 'Bethany', 'Karen Gillan': 'Martha', 'Rhys Darby': 'Nigel', 'Bobby Cannavale': 'Van Pelt', 'Nick Jonas': 'Alex', 'Alex Wolff': 'Young Spencer', \"\"Ser'Darius Blain\"\": 'Young Fridge', 'Madison Iseman': 'Young Bethany', 'Morgan Turner': 'Young Martha', 'Sean Buxton': 'Jogger', 'Mason Guccione': 'Gamer', 'Marin Hinkle': \"\"Spencer's Mom\"\", 'Tracey Bonner': \"\"Fridge's Mom\"\"}\"\r\ntt5301544,\"{'Alex Beh': 'Ethan Smith', 'Arthur L. Bernstein': 'Daryl Hoats', 'Adam Falkoff': 'James Johnson', 'Sean Astin': 'Bob Bernard', 'Harriet Divine': 'McKenzie Hoats', 'Ted Levine': 'Rouge Holmes', 'Shane Black': 'Luke', 'Taryn Manning': 'Adrienne Lockhart', 'Helene Wren': 'Lauren Hoats', 'Jenica Bergere': 'Sheila Browning', 'Bo Brinkman': 'Sergeant Bo Regards', 'Lee Broda': 'Cindy', 'Ivory Broome': 'Hospital Security', 'Jake Busey': 'Woody Woodrow', 'Heath Calvert': 'Dr. Jefferson Spitz'}\"\r\ntt1386697,\"{'Will Smith': 'Deadshot', 'Jaime FitzSimons': 'Sergeant Ames Bravo 14', 'Ike Barinholtz': 'Griggs', 'Margot Robbie': 'Harley Quinn', 'Christopher Dyson': 'Missing Hand Guard', 'Bambadjan Bamba': 'T-Shirt Vendor', 'Viola Davis': 'Amanda Waller', 'Ted Whittall': 'Admiral Olsen', 'David Harbour': 'Dexter Tolliver', 'Robin Atkin Downes': 'Angelo', 'Robert B. Kennedy': 'U.S. Marshal', 'Billy Otis': 'Mafia Snitch', 'Shailyn Pierre-Dixon': 'Zoe', 'Jared Leto': 'The Joker', 'James McGowan': 'Panda Man'}\"\r\ntt5612742,\"{'Danielle Campbell': 'Maddy Datner', 'Joel Courtney': 'Cole Reede', 'Madelaine Petsch': 'Marissa', 'Cameron Palatas': 'Kane', 'Meg DeLacy': \"\"Felicity 'City' Stufts       (as Meg Delacy)\"\", 'Jill Cimorelli': 'TIG /              Abbey', 'Luke Bilyk': 'T.J.', 'Michael Chey': 'Sweats /              Larry', 'Brendan Calton': 'Strings /              Efraim', 'Adan Allende': 'Mutey /              Emile', 'Ian Ziering': 'Ken Reede', 'Cheri Oteri': 'Christine Datner', 'Richard Karn': 'Murphy Datner', 'Nicholle Tom': 'Principal Statszill', 'Diamond White': 'Rayna'}\"\r\ntt4848010,\"{'Wyatt Cenac': 'David', 'Greta Lee': 'Jennifer', 'Maria Dizzia': 'Sawyer Edwards', 'Alex Karpovsky': 'Charles', 'Ben Sinclair': 'Parking Attendant', 'Larry Murphy': 'McDannell', 'Sam Seder': 'Dressler', 'Diane Ciesla': 'Lily Geist', 'Buzz Bovshow': 'Bernard Geist', 'Michael Cyril Creighton': 'Richard Pringle', 'Matt Dellapina': 'Jordan Roth', 'Jennifer Prediger': 'Shopper', 'Dan Bartfield': 'Violinist', 'Louis Cancelmi': 'Daniel', 'Nicholas Colia': 'The Monk'}\"\r\ntt3518988,\"{'Dan Harmon': 'Himself', 'Jeff Bryan Davis': 'Himself       (as Jeff B. Davis)', 'Erin McGathy': 'Herself', 'Spencer Crittenden': 'Himself', 'Steve Agee': 'Himself', 'Jack Black': 'Himself', 'Matt Braunger': 'Himself', 'Alison Brie': 'Herself', 'Yvette Nicole Brown': 'Herself', 'Diane Crittenden': 'Herself', 'Abed Gheith': 'Himself', 'Donald Glover': 'Himself', 'Chris Hardwick': 'Himself', 'Gillian Jacobs': 'Herself', 'Ken Jeong': 'Himself'}\"\r\ntt1754767,\"{'Aerli Austen': 'Gail       (voice)', 'Sheila Brothers': 'Margaret       (voice)', 'Jon Etheridge': 'Alien #1 /              Cactus #2 /              Casket Outlaw #1 /              Crazy Ass Frank /              Dynamite Jr. /              Mayor /              Mrs. Rose /              Pretty Boy McCoy /              Slim /              Stinky Pinky /              Town Guy /              Trigger Happy Wilson /              Two Eyed Jack       (voice)', 'Bryan Mahoney': 'Doc Jenkins /              Casket Outlaw #2 /              Dildorado Sheriff /              Finch /              Town City Deputy       (voice)', 'John Marchioni': 'Vulture       (voice) (as Mario Marchioni)', 'Brad McWaters': 'Casket Dealer       (voice)', 'Cullen Moss': 'Wild Harry Johnson       (voice) (as Cullen D. Moss)', \"\"Shaun O'Rourke\"\": \"\"Butterfly       (voice) (as Shaun P. O'Rourke)\"\", 'Nate Panning': 'Dalton /              Mr. Purdue       (voice)', 'Tony Schnur': 'Acondo /              Bruno /              Cactus #1 /              Camel Tocy /              Casket Outlaw #3 /              Crazy Ass Bill /              Dildorado Reporter       (voice)', 'Brent Triplett': 'Alien #2 /              Cactus #3 /              Drippy Peters /              McConaughorse /              Pee Paw /              Pinky Outlaw 1 /              Tom /              Dark Owl /              Willie       (voice)', 'Matthew Warzel': 'Crazy Ass Pete       (voice) (as Matt Warzel)'}\"\r\ntt1540115,\r\ntt3605266,\"{'Julia Garner': 'Rola', 'Joseph Cross': 'Lernert', 'C.S. Lee': 'The Stranger', 'Jillian Mayer': 'Susan       (voice)'}\"\r\ntt1856101,\"{'Ryan Gosling': \"\"'K'\"\", 'Dave Bautista': 'Sapper Morton', 'Robin Wright': 'Lieutenant Joshi', 'Mark Arnold': 'Interviewer', 'Vilma Szécsi': 'Angry Old Lady', 'Ana de Armas': 'Joi', 'Wood Harris': 'Nandez', 'David Dastmalchian': 'Coco', 'Tómas Lemarquis': 'File Clerk', 'Sylvia Hoeks': 'Luv', 'Edward James Olmos': 'Gaff', 'Jared Leto': 'Niander Wallace', 'Sallie Harmsen': 'Female Replicant', 'Hiam Abbass': 'Freysa', 'Mackenzie Davis': 'Mariette'}\"\r\ntt4877122,\"{'T.J. Miller': 'Gene       (voice)', 'James Corden': 'Hi-5       (voice)', 'Anna Faris': 'Jailbreak       (voice)', 'Maya Rudolph': 'Smiler       (voice)', 'Steven Wright': 'Mel Meh       (voice)', 'Jennifer Coolidge': 'Mary Meh       (voice)', 'Patrick Stewart': 'Poop       (voice) (as Sir Patrick Stewart)', 'Christina Aguilera': 'Akiko Glitter       (voice)', 'Sofía Vergara': 'Flamenca       (voice)', 'Rachael Ray': 'Spam       (voice)', 'Sean Hayes': \"\"'Devil' Steven       (voice)\"\", 'Jake T. Austin': 'Alex       (voice)', 'Tati Gabrielle': 'Addie       (voice)', 'Jude Kouyate': \"\"Poop Jr. 'PJ'       (voice)\"\", 'Jeffrey Ross': 'Internet Troll       (voice) (as Jeff Ross)'}\"\r\ntt1650062,\"{'Joel Courtney': 'Joe Lamb', 'Jessica Tuck': 'Mrs. Kaznyk', 'Joel McKinnon Miller': 'Mr. Kaznyk', 'Ryan Lee': 'Cary', 'Zach Mills': 'Preston', 'Riley Griffiths': 'Charles Kaznyk', 'Gabriel Basso': 'Martin', 'Kyle Chandler': 'Deputy Jackson Lamb', 'Ron Eldard': 'Louis Dainard', 'AJ Michalka': 'Jen Kaznyk', 'Andrew Miller': 'Kaznyk Twin', 'Jakob Miller': 'Kaznyk Twin', 'Jade Griffiths': 'Benji Kaznyk', 'Britt Flatmo': 'Peg Kaznyk', 'Elle Fanning': 'Alice Dainard'}\"\r\ntt1648190,\"{'Matthew McConaughey': 'Walter', 'Idris Elba': 'Roland', 'Tom Taylor': 'Jake', 'Dennis Haysbert': 'Steven', 'Ben Gavin': 'Soldier', 'Claudia Kim': 'Arra', 'Jackie Earle Haley': 'Sayre', 'Fran Kranz': 'Pimli', 'Abbey Lee': 'Tirana', 'Katheryn Winnick': 'Laurie', 'Nicholas Pauling': 'Lon', 'Michael Barbieri': 'Timmy', 'José Zúñiga': 'Dr. Hotchkiss       (as José Zuñiga)', 'Nicholas Hamilton': 'Lucas Hanson', 'Inge Beckmann': 'Teacher'}\"\r\ntt1959563,\"{'Elodie Yung': 'Amelia Roussel', 'Ryan Reynolds': 'Michael Bryce', 'Tsuwayuki Saotome': 'Kurosawa', 'Roy Hill': 'Helicopter Pilot /              Newscaster', 'Richard E. Grant': 'Seifert', 'Gary Oldman': 'Vladislav Dukhovich', 'Rod Hallett': 'Professor Asimov', 'Yuri Kolokolnikov': 'Ivan', 'Nadia Konakchieva': 'Mrs. Asimov', 'Valentin Stojanov': 'Petr Asimov Jr.', 'Noortje Herlaar': 'ICC Court Clerk', 'Georgie Glen': 'ICC Lead Judge', 'Michael Gor': 'Livitin', 'Barry Atsma': 'Moreno', 'Ralitsa Vassileva': 'Newscaster'}\"\r\ntt3892618,\"{'Terrance Zdunich': 'Lucifer', 'Paul Sorvino': 'God', 'Adam Pascal': 'The Agent', 'Marc Senter': 'The Scorpion', 'Emilie Autumn': 'The Painted Doll', \"\"Kevin 'ohGr' Ogilvie\"\": 'The Twin       (as Nivek Ogre)', 'Dayton Callie': 'The Ticket Keeper', 'Tech N9ne': 'The Librarian', 'Briana Evigan': 'Ms. Merrywood', 'Kayla Allen': 'Carnie', 'Amy Argyle': 'Applicant       (as Amy Lawhorn)', 'Lauren Michelle Bishop': \"\"The Magician's Assistant\"\", 'Barry Bostwick': 'The Watchword', 'Alexis Brandt': 'Applicant', 'Alisa Burket': 'Virginia /              His Lady Of Virtue'}\"\r\ntt4335520,\"{'Tracy Chou': 'Herself', 'Evelyn Cordner': 'Herself', 'Danielle Feinberg': 'Herself', 'Grace Hopper': 'Herself       (archive footage)', 'Julie Ann Horvath': 'Herself', 'Walter Isaacson': 'Himself', 'Maria Klawe': 'Herself', 'Courtney Nash': 'Herself', 'Aliya Rahman': 'Herself', 'Megan Smith': 'Herself', 'Claude Steele': 'Himself'}\"\r\ntt2378507,\"{'Brie Larson': 'Jeannette', 'Woody Harrelson': 'Rex', 'Naomi Watts': 'Rose Mary', 'Ella Anderson': 'Young Jeannette', 'Chandler Head': 'Youngest Jeannette', 'Max Greenfield': 'David', 'Josh Caras': 'Brian', 'Charlie Shotwell': 'Young Brian', 'Iain Armitage': 'Youngest Brian', 'Sarah Snook': 'Lori', 'Sadie Sink': 'Young Lori', 'Olivia Kate Rice': 'Youngest Lori', 'Brigette Lundy-Paine': 'Maureen', 'Shree Crooks': 'Young Maureen       (as Shree Grace Crooks)', 'Eden Grace Redfield': 'Youngest Maureen'}\"\r\ntt4131800,\"{'Uzo Aduba': 'Queen Novo       (voice)', 'Ashleigh Ball': 'Applejack /              Rainbow Dash       (voice)', 'Adam Bengis': 'Code Red       (voice)', 'Emily Blunt': 'Tempest Shadow /              Fizzlepop Berrytwist       (voice)', 'Kristin Chenoweth': 'Princess Skystar       (voice)', 'Michelle Creber': 'Applebloom       (voice)', 'Taye Diggs': 'Capper       (voice)', 'Brian Dobson': 'Verko /              Additional Voices       (voice)', 'Michael Dobson': 'Bulk Biceps /              Canterlot & Klugetown Featured Voices       (voice)', 'Andrea Libman': 'Fluttershy /              Pinkie Pie       (voice)', 'Max Martini': 'Boyle       (voice)', 'Britt McKillip': 'Princess Cadance       (voice)', 'Peter New': 'Big Mac /              Klugetown Featured Voices       (voice)', 'Mark Oliver': 'First Mate Mullet       (voice)', 'Nicole Oliver': 'Princess Celestia /              Lix Spittle /              Klugetown Featured Voices       (voice)'}\"\r\ntt3469046,\"{'Steve Carell': 'Gru /              Dru       (voice)', 'Kristen Wiig': 'Lucy       (voice)', 'Trey Parker': 'Balthazar Bratt       (voice)', 'Miranda Cosgrove': 'Margo       (voice)', 'Dana Gaier': 'Edith       (voice)', 'Nev Scharrel': 'Agnes       (voice)', 'Pierre Coffin': 'Minions /              Museum Director /              Additional Voices       (voice)', 'Steve Coogan': 'Fritz /              Silas Ramsbottom       (voice)', 'Julie Andrews': \"\"Gru's Mom       (voice)\"\", 'Jenny Slate': 'Valerie Da Vinci       (voice)', 'Michael Beattie': 'TV Show Host /              Scar-Faced Man       (voice)', 'Andy Nyman': 'Clive the Robot       (voice)', 'Adrian Ciscato': 'Niko       (voice)', 'Brian T. Delaney': 'Commercial Announcer /              Military Officer /              Additional Voices       (voice)', 'Katia Saponenko': \"\"Niko's Mother       (voice)\"\"}\"\r\ntt3564472,\"{'Regina Hall': 'Ryan Pierce', 'Queen Latifah': 'Sasha Franklin', 'Jada Pinkett Smith': 'Lisa Cooper', 'Tiffany Haddish': 'Dina', 'Larenz Tate': 'Julian Stevens', 'Mike Colter': 'Stewart Pierce', 'Kate Walsh': 'Elizabeth Davelli', 'Kofi Siriboe': 'Malik', 'Lara Grice': 'Bethany', 'Deborah Ayorinde': 'Simone', 'Janeline Hayes': 'Print Reporter       (as Janeline Condez Hayes)', 'Wild Wayne': \"\"DJ       (as Wayne 'Wild Wayne' Benjamin Jr.)\"\", 'Sunny Hostin': 'Sunny Hostin', 'Nick Mundy': 'Tow Truck Driver', 'Ricky Wayne': 'Ted'}\"\r\ntt1711525,\"{'Jason Bateman': 'Josh Parker', 'Olivia Munn': 'Tracey Hughes', 'T.J. Miller': 'Clay Vanstone', 'Jennifer Aniston': 'Carol Vanstone', 'Kate McKinnon': 'Mary', 'Courtney B. Vance': 'Walter Davis', 'Jillian Bell': 'Trina', 'Rob Corddry': 'Jeremy', 'Vanessa Bayer': 'Allison', 'Randall Park': 'Fred', 'Sam Richardson': 'Joel', 'Karan Soni': 'Nate', 'Jamie Chung': 'Meghan', 'Abbey Lee': 'Savannah', \"\"Da'Vine Joy Randolph\"\": 'Carla'}\"\r\ntt0498381,\"{'Matilda Anna Ingrid Lutz': 'Julia       (as Matilda Lutz)', 'Alex Roe': 'Holt', 'Johnny Galecki': 'Gabriel', \"\"Vincent D'Onofrio\"\": 'Burke', 'Aimee Teegarden': 'Skye', 'Bonnie Morgan': 'Samara', 'Se Oh': 'Blue       (as Chuck Willis)', 'Patrick R. Walker': 'Jamal       (as Patrick Walker)', 'Zach Roerig': 'Carter', 'Laura Wiggins': 'Faith       (as Laura Slade Wiggins)', 'Lizzie Brocheré': 'Kelly       (as Lizzie Brochere)', 'Karen Ceesay': 'Flight Attendant', 'Dave Blamy': 'First Officer', 'Michael E. Sanders': 'Pilot', 'Randall Taylor': \"\"Holt's Father\"\"}\"\r\ntt2473510,\"{'Chris J. Murray': 'Ryan', 'Brit Shaw': 'Emily', 'Ivy George': 'Leila', 'Dan Gill': 'Mike', 'Olivia Taylor Dudley': 'Skyler', 'Chloe Csengery': 'Katie', 'Jessica Tyler Brown': 'Kristi       (as Jessica Brown)', 'Don McManus': 'Kent', 'Michael Krawic': 'Father Todd', 'Hallie Foote': 'Grandma Lois', 'Aiden Lovekamp': 'Hunter Rey', 'Cara Pifko': 'Laura', 'Mark Steger': 'Tobi'}\"\r\ntt3065204,\"{'Patrick Wilson': 'Ed Warren', 'Vera Farmiga': 'Lorraine Warren', 'Madison Wolfe': 'Janet Hodgson', \"\"Frances O'Connor\"\": 'Peggy Hodgson', 'Lauren Esposito': 'Margaret Hodgson', 'Benjamin Haigh': 'Billy Hodgson', 'Patrick McAuley': 'Johnny Hodgson', 'Simon McBurney': 'Maurice Grosse', 'Maria Doyle Kennedy': 'Peggy Nottingham', 'Simon Delaney': 'Vic Nottingham', 'Franka Potente': 'Anita Gregory', 'Bob Adrian': 'Bill Wilkins', 'Robin Atkin Downes': 'Demon Voice       (voice)', 'Bonnie Aarons': 'Demon Nun', 'Javier Botet': 'Crooked Man'}\"\r\ntt3322940,\"{'Annabelle Wallis': 'Mia', 'Ward Horton': 'John', 'Tony Amendola': 'Father Perez', 'Alfre Woodard': 'Evelyn', \"\"Kerry O'Malley\"\": 'Sharon Higgins', 'Brian Howe': 'Pete Higgins', 'Eric Ladin': 'Detective Clarkin', 'Ivar Brogger': 'Dr. Burgher', 'Geoff Wehner': 'Neighbor', 'Gabriel Bateman': 'Little Boy', 'Shiloh Nelson': 'Little Girl', 'Sasha Sheldon': 'Nurse', 'Camden Singer': 'Clerk', 'Robin Pearson Rose': 'Mother', 'Keira Daniels': 'Young Annabelle Higgins'}\"\r\ntt3799694,\"{'Russell Crowe': 'Jackson Healy', 'Ryan Gosling': 'Holland March', 'Angourie Rice': 'Holly March', 'Matt Bomer': 'John Boy', 'Margaret Qualley': 'Amelia Kuttner', 'Yaya DaCosta': 'Tally', 'Keith David': 'Older Guy', 'Beau Knapp': 'Blueface', 'Lois Smith': 'Mrs. Glenn', 'Murielle Telio': 'Misty Mountains', 'Gil Gerard': 'Bergen Paulsen', 'Daisy Tahan': 'Jessica', 'Kim Basinger': 'Judith Kuttner', 'Jack Kilmer': 'Chet', 'Lance Valentine Butler': 'Kid on Bike'}\"\r\ntt3280262,\"{'Allison Dawn Doiron': 'Rachel', 'Alex Vincent': 'Andy Barclay', 'Brad Dourif': 'Chucky       (voice)', 'Fiona Dourif': 'Nica Pierce', 'Dan De Jaeger': 'Orderly #1       (as Dan DeJaeger)', 'Matthew Stefanson': 'Orderly #2', 'Michael Therriault': 'Dr. Foley', 'Zak Santiago': 'Nurse Carlos', 'Ali Tataryn': 'Nurse Ashley', 'Marina Stephenson Kerr': 'Angela', 'Adam Hurtig': 'Michael', 'Grace Lynn Kung': 'Claire', 'Elisabeth Rosen': 'Madeleine', 'Jennifer Tilly': 'Tiffany Valentine', 'Summer H. Howell': 'Alice Pierce       (as Summer Howell)'}\"\r\ntt2975590,\"{'Ben Affleck': 'Bruce Wayne /              Batman', 'Henry Cavill': 'Clark Kent /              Superman', 'Amy Adams': 'Lois', 'Jesse Eisenberg': 'Lex Luthor', 'Diane Lane': 'Martha Kent', 'Laurence Fishburne': 'Perry White', 'Jeremy Irons': 'Alfred', 'Holly Hunter': 'Senator Finch', 'Gal Gadot': 'Diana Prince /              Wonder Woman', 'Scoot McNairy': 'Wallace Keefe', 'Callan Mulvey': 'Anatoli Knyazev', 'Tao Okamoto': 'Mercy Graves', 'Brandon Spink': 'Young Bruce Wayne', 'Lauren Cohan': 'Martha Wayne', 'Alan D. Purwin': 'Wayne Industries Pilot'}\"\r\ntt1528854,\"{'Will Ferrell': 'Brad Whitaker', 'Mark Wahlberg': 'Dusty Mayron', 'Linda Cardellini': 'Sara', 'Thomas Haden Church': 'Leo Holt', 'Scarlett Estevez': 'Megan', 'Owen Vaccaro': 'Dylan       (as Owen Wilder Vaccaro)', 'Bobby Cannavale': 'Dr. Francisco', 'Hannibal Buress': 'Griff', 'Bill Burr': \"\"Jerry (Bully's Dad)\"\", 'Jamie Denbo': 'Doris', 'Mark L. Young': 'Dental Hygienist', 'Matthew Paul Martinez': 'Pete (Recording Engineer)', 'Dave Davis': 'Panda Singer #1', 'James Harlon Palmer': 'Panda Singer #2', 'Riley Ann Corbin': 'Hello Kitty Girl'}\"\r\ntt0088206,\"{'Faye Dunaway': 'Selena', 'Helen Slater': 'Supergirl /              Linda Lee', \"\"Peter O'Toole\"\": 'Zaltar', 'Mia Farrow': 'Alura', 'Brenda Vaccaro': 'Bianca', 'Peter Cook': 'Nigel', 'Simon Ward': 'Zor-El', 'Marc McClure': 'Jimmy Olsen', 'Hart Bochner': 'Ethan', 'Maureen Teefy': 'Lucy Lane', 'David Healy': 'Mr. Danvers', 'Sandra Dickinson': 'Pretty Young Lady', 'Robyn Mandell': 'Myra', 'Jenifer Landor': 'Muffy', 'Diana Ricardo': 'Mrs. Murray'}\"\r\ntt1253863,\"{'Sullivan Stapleton': 'Themistokles', 'Eva Green': 'Artemisia', 'Lena Headey': 'Queen Gorgo', 'Hans Matheson': 'Aeskylos', 'Callan Mulvey': 'Scyllias', 'David Wenham': 'Dilios', 'Rodrigo Santoro': 'Xerxes', \"\"Jack O'Connell\"\": 'Calisto', 'Andrew Tiernan': 'Ephialtes', 'Igal Naor': 'King Darius', 'Andrew Pleavin': 'Daxos', 'Peter Mensah': 'Persian Emissary', 'Ben Turner': 'General Artaphernes', 'Ashraf Barhom': 'General Bandari', 'Christopher Sciueref': 'General Kashani'}\"\r\ntt3482062,\"{'Patrick Renna': 'Bobby', 'Tommy Savas': 'Raymond', 'Annie Monroe': 'Chloe', 'Jackie Tohn': 'Jennifer', 'Page Kennedy': 'Bud', 'Kyle Howard': 'Smith', 'Jordan Masterson': 'Fred', 'Christopher Masterson': 'Trevor', 'Lynsey Bartilson': 'Claire', 'Eric Pumphrey': 'Carl', 'Lindsey Reckis': 'Lizzy', 'Hanover Savas': 'Jasmine', 'Dwayne Adway': 'Lamarcus', 'Jared Bell': 'Slater', 'Morgan Krantz': 'Ronnie'}\"\r\ntt2406566,\"{'Charlize Theron': 'Lorraine Broughton', 'James McAvoy': 'David Percival', 'Eddie Marsan': 'Spyglass', 'John Goodman': 'Emmett Kurzfeld', 'Toby Jones': 'Eric Gray', 'James Faulkner': \"\"Chief 'C'\"\", 'Roland Møller': 'Aleksander Bremovych       (as Roland Moller)', 'Sofia Boutella': 'Delphine Lasalle', 'Bill Skarsgård': 'Merkel', 'Sam Hargrave': 'James Gasciogne', 'Jóhannes Haukur Jóhannesson': 'Yuri Bakhtin       (as Jóhannes Jóhannesson)', 'Til Schweiger': 'Watchmaker', 'Barbara Sukowa': 'Coroner', 'Attila C. Arpa': 'East German Guard #1       (as Attila Arpa)', 'Martin Angerbauer': 'East German Guard #2'}\"\r\ntt4139124,\"{'Jordan Peele': 'Rell Williams /              Oil Dresden', 'Keegan-Michael Key': 'Clarence Goobril /              Smoke Dresden', 'Tiffany Haddish': 'Hi-C', 'Method Man': 'Cheddar', 'Darrell Britt-Gibson': 'Trunk', 'Jason Mitchell': 'Bud', 'Jamar Malachi Neighbors': 'Stitches', 'Luis Guzmán': 'Bacon', 'Will Forte': 'Hulka', 'Nia Long': 'Hannah', 'Rob Huebel': 'Spencer', 'Madison Wolfe': 'Alexis', 'Jordyn A. Davis': 'Belle', 'James Yeargain': 'Donnie', 'Brittany Seymour': 'Rachel'}\"\r\ntt10146586,\"{'Alastair Aiken': 'Himself', 'Diamond Minecart': 'Himself'}\"\r\ntt3534842,\"{'Jaime Pressly': 'Alyson Simon', 'Patrick Muldoon': 'Jonathan Simon', 'Tobin Bell': 'Dr. Freeman', 'Marina Sirtis': 'Janine', 'Justina Machado': 'Prof. Elena Carranza', 'Kylie Rogers': 'Claire Simon', 'Mark DeCarlo': 'Ken Stevens', 'Trilby Glover': 'Kathy', 'Joey Luthman': 'Zachary', \"\"Gabe O'Mara\"\": 'Zachary age 10', 'Kristen Kerr': 'Nurse', 'Lauren K. Montgomery': 'Ofelia', 'Mary Pat Gleason': 'Carol', 'Mercy Malick': 'Officer Adrien', 'Joseph Gatt': 'Officer Cobbs'}\"\r\ntt5278578,\"{'Gene Rosen': 'Himself - Sandy Hook Elementary School Neighbor', 'Syeda Suriya Ahmed': 'Herself - Mother of Surviving First Grader', 'Abbey Clements': 'Herself - Sandy Hook Elementary School Teacher', 'Sally Cox': 'Herself - Sandy Hook Elementary School Nurse', 'Bill Cario': 'Himself - Connecticut State Trooper       (as Sgt. Bill Cario)', 'Mark Barden': 'Himself - Father of Daniel Barden', 'Daniel Barden': 'Himself - Victim       (archive footage)', 'James Barden': 'Himself - Brother of Daniel Barden', 'Natalie Barden': 'Herself - Sister of Daniel Barden', 'Jackie Barden': 'Herself - Mother of Daniel Barden', 'Melissa Malin': \"\"Herself - The Bardens' Neighbor\"\", 'Kyle Malin': 'Himself       (archive footage)', 'Caroline Malin': 'Herself - Daughter of Melissa Malin', 'Robert Weiss': 'Himself - Msgr. St. Rose of Lima Church', 'Sarah Clements': 'Herself - Daughter of Surviving Teacher'}\"\r\ntt2250912,\"{'Tom Holland': 'Peter Parker /              Spider-Man', 'Michael Keaton': 'Adrian Toomes /              Vulture', 'Robert Downey Jr.': 'Tony Stark /              Iron Man', 'Marisa Tomei': 'May Parker', 'Jon Favreau': 'Happy Hogan', 'Gwyneth Paltrow': 'Pepper Potts', 'Zendaya': 'Michelle', 'Donald Glover': 'Aaron Davis', 'Jacob Batalon': 'Ned', 'Laura Harrier': 'Liz', 'Tony Revolori': 'Flash', 'Bokeem Woodbine': 'Herman Schultz /              Shocker #2', 'Tyne Daly': 'Anne Marie Hoag', 'Abraham Attah': 'Abe', 'Hannibal Buress': 'Coach Wilson'}\"\r\ntt3717490,\"{'Dacre Montgomery': 'Jason (Red Ranger)', 'Naomi Scott': 'Kimberly (Pink Ranger)', 'RJ Cyler': 'Billy (Blue Ranger)', 'Ludi Lin': 'Zack (Black Ranger)', 'Becky G': 'Trini (Yellow Ranger)', 'Elizabeth Banks': 'Rita Repulsa', 'Bryan Cranston': 'Zordon', 'Bill Hader': 'Alpha 5       (voice)', 'Matt Shively': 'Damo', 'Cody Kearsley': 'Hawkeye', 'David Denman': 'Sam Scott', 'Robert Moloney': 'Ted Hart', 'Anjali Jay': 'Maddy Hart', 'Sarah Grey': 'Amanda', 'Morgan Taylor Campbell': 'Harper'}\"\r\ntt4005332,\"{'Roger Buehler': 'Narrator', 'Niall Horan': 'Himself', 'Zayn Malik': 'Himself', 'One Direction': 'Themselves', 'Liam Payne': 'Himself', 'Harry Styles': 'Himself', 'Louis Tomlinson': 'Himself'}\"\r\ntt3890160,\"{'Ansel Elgort': 'Baby', 'Jon Bernthal': 'Griff', 'Jon Hamm': 'Buddy', 'Eiza González': 'Darling', 'Micah Howard': 'Barista', 'Lily James': 'Debora', 'Morgan Brown': 'Street Preacher', 'Kevin Spacey': 'Doc', 'Morse Diggs': 'Morse Diggs', 'CJ Jones': 'Joseph', 'Sky Ferreira': \"\"Baby's Mom\"\", 'Lance Palmer': \"\"Baby's Dad\"\", 'Hudson Meek': 'Young Baby', 'Viviana Chavez': 'Diner Waitress', 'Hal Whiteside': 'Cook'}\"\r\ntt6414866,{'Residente': 'Himself'}\r\ntt4425200,\"{'Keanu Reeves': 'John Wick', 'Riccardo Scamarcio': \"\"Santino D'Antonio\"\", 'Ian McShane': 'Winston', 'Ruby Rose': 'Ares', 'Common': 'Cassian', 'Claudia Gerini': \"\"Gianna D'Antonio\"\", 'Lance Reddick': 'Charon', 'Laurence Fishburne': 'Bowery King', 'Tobias Segal': 'Earl', 'John Leguizamo': 'Aurelio', 'Bridget Moynahan': 'Helen', 'Thomas Sadoski': 'Jimmy', 'Erik Frandsen': 'Numismatic', 'David Patrick Kelly': 'Charlie', 'Perry Yung': 'Doctor'}\"\r\ntt3038734,\"{'Jessica Szohr': 'Tanya', 'Robert Davi': 'Bobby', 'Jay R. Ferguson': 'Steven', 'Jerry Ferrara': 'Johnny D', 'Danny A. Abeckaser': 'Mark', 'Al Sapienza': 'William Taylor', \"\"Ryan O'Nan\"\": 'Sebastian', 'Malea Rose': 'Sam       (as Malea Richardson)', 'Busta Rhymes': 'Himself', 'Jennifer Missoni': 'Ellen', 'Annalaina Marks': 'Fiona Sky', 'Allegra Carpenter': 'Stephanie', 'Jay Giannone': 'Detective Duffy', 'Marie Zoumanigui': 'Girl sitting outside       (as Marie J. Zoumanigui)', 'Gregg Bello': 'Dr. Fenton'}\"\r\ntt4935334,\"{'Chad Villella': 'Mitch', 'Matt Bettinelli-Olpin': 'Jack', 'Kristina Pesic': 'Sutter', 'Fabianne Therese': 'Sadie', 'Nathalie Love': 'Kim', 'Hannah Marks': 'Ava', 'Dana Gould': 'Raymond Kensington', 'Anessa Ramsey': 'Bunny Kensington /              Phone Operator', 'Susan Burke': 'Betty', 'Davey Johnson': 'Dale', 'Mather Zickel': 'Lucas', 'Karla Droege': 'EMT', 'Zoe Cooper': 'Dispatch', 'Justin Welborn': 'Surgeon', 'David Yow': 'Danny'}\"\r\ntt5115546,\"{'Jon Heder': 'Louis', 'David Krumholtz': 'Stan', 'Justin Long': 'Ross', 'Melonie Diaz': 'Ellie', 'Amy Sedaris': 'Victoria', 'Paul W. Downs': 'Zak', 'Tom Schiller': 'Mitch', 'Joel Marsh Garland': 'Hammer', 'Martin Barabas': 'Detective Whittards', 'Veronika Dash': 'Officer Finley', 'Rob DeRosa': 'Crazy Junkie', 'Doug Drucker': 'Tattooed Junkie', 'Steve Gonsalves': 'Randy', 'Jason Hawes': 'Troy', 'Clem McIntosh': 'H.J'}\"\r\ntt5462602,\"{'Kumail Nanjiani': 'Kumail', 'Zoe Kazan': 'Emily', 'Holly Hunter': 'Beth', 'Ray Romano': 'Terry', 'Anupam Kher': 'Azmat', 'Zenobia Shroff': 'Sharmeen', 'Adeel Akhtar': 'Naveed', 'Bo Burnham': 'CJ', 'Aidy Bryant': 'Mary', 'Kurt Braunohler': 'Chris', 'Vella Lovell': 'Khadija', 'Myra Lucretia Taylor': 'Nurse Judy', 'Jeremy Shamos': 'Bob Dalavan', 'David Alan Grier': 'Andy Dodd', 'Ed Herbstman': 'Sam Highsmith'}\"\r\ntt6231792,\"{'Haiden Deegan': 'Himself', 'Josh Hill': 'Himself', 'Dean Wilson': 'Himself'}\"\r\ntt5199588,\"{'John John Florence': '(as John Florence)', 'John C. Reilly': 'Narrator       (voice)'}\"\r\ntt5226436,\"{'Mikkel Bang': 'Himself', 'Shin Biyajima': 'Himself', 'Ben Ferguson': 'Himself', 'Cam FitzPatrick': 'Himself', 'Torstein Horgmo': 'Himself', 'Bryan Iguchi': 'Himself', 'Eric Jackson': 'Himself', 'Mark Landvik': 'Himself', 'Bode Merrill': 'Himself', 'Pat Moore': 'Himself', 'Gerald Pollack': 'Narration       (voice)', 'Travis Rice': 'Himself'}\"\r\ntt4698584,\"{'Luis Gnecco': 'Pablo Neruda', 'Gael García Bernal': 'Óscar Peluchonneau', 'Mercedes Morán': 'Delia del Carril', 'Emilio Gutiérrez Caba': 'Picasso', 'Diego Muñoz': 'Martínez', 'Alejandro Goic': 'Jorge Bellet', 'Pablo Derqui': 'Víctor Pey', 'Marcelo Alonso': 'Pepe Rodríguez', 'Michael Silva': 'Álvaro Jara', 'Francisco Reyes': 'Bianchi', 'Jaime Vadell': 'Arturo Alessandri', 'Néstor Cantillana': 'Ministro del Interior', 'Alfredo Castro': 'Gabriel González Videla', 'Amparo Noguera': 'Mujer Borracha'}\"\r\ntt4939066,\"{'Liam Neeson': 'Douglas MacArthur', 'Josie Bissett': 'Jean', 'Jon Gries': 'Gen Hoyt Vandenberg', 'Justin Rupple': 'Alexander Haig', 'Do-Hwan Woo': \"\"Ri Kyung Shik's subordinate\"\", 'Jung-jae Lee': 'Jang, Hak-soo (South Korean Navy Lieutenant)', 'Sean Dulake': 'Lt. Col. Edward L. Rowny', 'Jun-ho Jeong': 'Seo Jin-Chul', 'Se-Yeon Jin': 'Han Jae-Sun', 'Beom-su Lee': 'Lim, Gye-jin (North Korean Senior Colonel)', 'Sunghoon Choo': 'North Korean General Baek San', 'Troy Zitzelsberger': 'F. Charkhorn       (as Troy Mark Zitzelsberger)', 'Howard Neilson-Sewell': 'Colonel, planning Office', 'Darin Shaw': 'Soldier 1       (voice)', 'Damien Furtado': 'Foster'}\"\r\ntt2989524,\"{'Bel Powley': 'Carrie Pilby', 'Nathan Lane': 'Dr. Petrov', 'Gabriel Byrne': 'Mr. Pilby', 'Vanessa Bayer': 'Tara', \"\"Colin O'Donoghue\"\": 'Professor Harrison', 'Jason Ritter': 'Matt', 'William Moseley': 'Cy', 'Desmin Borges': 'Douglas P. Simpson', 'Poorna Jagannathan': 'Fliss', 'Zachary Infante': 'Davy', 'Andy Bustillos': 'Ted', 'Mahaley Patel': 'Amanda', 'Joel Michaely': 'George', 'Scott Keiji Takeda': 'Ronald', 'Cornelia Guest': 'Mrs. Rubin'}\"\r\ntt3717316,\"{'Andre Royo': 'Ashley', 'Jeannetta Arnette': 'Dr. Merton', 'Kellee Stewart': 'Nat', 'Kevin Jackson': 'Ray', 'Larry Flash Jenkins': 'Robert fix it guy', 'Myles Cranford': 'Pawnbroker', 'Antonio D. Charity': 'Dwayne', 'Johnnie Johnson III': 'Construction Worker', 'Karina Bonnefil': 'Santa', 'George Sample III': 'Jeremy Pittman', 'DeMorge Brown': 'Janitor', 'Nicholas Anthony Reid': \"\"Santa's Assistant\"\", 'Alexis DeLaRosa': 'Carlos', 'Hubert Escarpeta': 'Swimmer', 'Celestial': \"\"Ashley's Mom\"\"}\"\r\ntt5072406,\"{'Emmanuelle Devos': 'Diane Roy, alias Hélène', 'Nathalie Baye': 'Marlène', 'David Clavel': 'Michel', 'Diane Rouxel': \"\"Elodie /              Marlène's daughter\"\", 'Olivier Chantreau': 'Vincent', 'Samuel Labarthe': \"\"Simon /              Diane's ex-husband\"\", 'Jean-Philippe Écoffey': 'Le détective /              The detective', 'Marion Reymond': \"\"Adrienne /              Luc's girlfriend\"\", 'Paulin Jaccoud': \"\"Luc /              Diane's son\"\", 'Sakir Uyar': \"\"L'homme\"\"}\"\r\ntt7456468,\"{'Minami Takahashi': 'Yui Yamada', 'Ayane Sakura': 'Tomoka Kase', 'Ibuki Kido': 'Mikawa', 'Bryn Apprill': 'Yui Yamada       (voice)', 'Morgan Berry': 'Kase-san       (voice)', 'Shelley Calene-Black': \"\"Yamada's Mother       (voice)\"\", 'Luci Christian': 'Teacher       (voice)', 'Elissa Cuellar': '(voice)', 'Patricia Duran': 'Coach       (voice)', 'Karlii Hoch': 'Additional Voices       (voice)', 'Ty Mahany': 'Additional Voices       (voice)', 'Melissa Molano': 'Additional Voices       (voice)', 'Holly Segarra': 'Additional Voices       (voice)', 'Avery Smithhart': '(voice)', 'Olivia Swasey': 'Additional Voices       (voice)'}\"\r\ntt5022872,\"{'Sivan Noam Shimon': 'Naama Barash', 'Hadas Jade Sakori': 'Dana Hershko       (as Jade Sakori)', 'Dvir Benedek': 'Gideon Barash', 'Irit Pashtan': 'Michelle Barash', 'Amit Muchtar': 'Dudu Barash', 'Bar Ben Vakil': 'Liora Barash', 'Oleg Rodovilski': 'Oleg', 'Koral Bosidon': 'Yifat', 'Hila Gozlan': 'Iris', 'Einav Levi': 'Lili', 'Yifat Mizrahi': 'Arabic Teacher', 'Reut Akkerman': 'Dracula'}\"\r\ntt5186236,\"{'Boguslaw Linda': 'Wladyslaw Strzeminski', 'Bronislawa Zamachowska': 'Nika Strzeminska', 'Zofia Wichlacz': 'Hania', 'Krzysztof Pieczynski': 'Julian Przybos', 'Mariusz Bonaszewski': 'Madejski', 'Szymon Bobrowski': 'Wlodzimierz Sokorski', 'Aleksander Fabisiak': 'Rajner', 'Paulina Galazka': 'Wasinska', 'Irena Melcer': 'Jadzia', 'Tomasz Chodorowski': 'Tomek', 'Filip Gurlacz': 'Konrad', 'Mateusz Rusin': 'Stefan', 'Mateusz Rzezniczak': 'Mateusz', 'Tomasz Wlosok': 'Roman', 'Adrian Zaremba': 'Wojtek'}\"\r\ntt5120042,\"{'Jimmy Duck Holmes': \"\"Himself       (as Jimmy 'Duck' Holmes)\"\", 'L.C. Ulmer': 'Himself', 'Bobby Rush': 'Himself', 'Little Freddie King': 'Himself', 'Robert Bilbo Walker': 'Himself', 'R.L. Boyce': 'Himself', 'McKinney Williams': 'Himself', 'Barbara Lynn': 'Herself', \"\"Lil' Buck Sinegal\"\": 'Himself', 'Lazy Lester': 'Himself', 'Henry Gray': 'Himself', 'Carol Fran': 'Herself', 'Bud Spires': 'Himself', 'John Wilkins': 'Himself       (as Reverend John Wilkins)'}\"\r\ntt4666726,\"{'Rebecca Hall': 'Christine', 'Michael C. Hall': 'George', 'Tracy Letts': 'Michael', 'Maria Dizzia': 'Jean', 'J. Smith-Cameron': 'Peg', 'Timothy Simons': 'Steve       (as Tim Simons)', 'Kim Shaw': 'Andrea', 'John Cullum': 'Bob Andersen', 'Morgan Spector': 'Doctor Parsons', 'Jayson Warner Smith': 'Mitch', 'Kimberley Drummond': 'Gail', 'Lindsay Ayliffe': 'Capt. Frank Basil', 'Susan Pourfar': 'Miranda', 'Rachel Hendrix': 'Crystal', 'David Foster': 'Bandaged Man'}\"\r\ntt4799050,\"{'Scarlett Johansson': 'Jess', 'Jillian Bell': 'Alice', 'Zoë Kravitz': 'Blair', 'Ilana Glazer': 'Frankie', 'Kate McKinnon': 'Kiwi /              Pippa', 'Paul W. Downs': 'Peter', 'Ryan Cooper': 'Jay', 'Ty Burrell': 'Pietro', 'Demi Moore': 'Lea', 'Enrique Murciano': 'Detective Ruiz', 'Dean Winters': 'Detective Frazier', 'Colton Haynes': 'Real Scotty', 'Patrick Carlyle': 'Patrick', 'Eric André': 'Jake       (as Eric Andre)', 'Bo Burnham': 'Tobey'}\"\r\ntt2763304,\"{'Ewan McGregor': 'Renton', 'Logan Gillies': 'Simon (aged 9)', 'Ben Skelton': 'Renton (aged 9)', 'Aiden Haggarty': 'Spud (aged 9)', 'Daniel Smith': 'Begbie (aged 9)', 'Elijah Wolf': 'Tommy (aged 9)', 'Robert Carlyle': \"\"Begbie /              Begbie's Father\"\", 'Steven Robertson': 'Stoddart', 'Ewen Bremner': 'Spud', 'John Kazek': 'Tom (Rehab Group)', 'Shirley Henderson': 'Gail', 'Charlie Hardie': 'Fergus (aged 9)', 'Scott Aitken': 'Farmer', 'Gordon Kennedy': 'Tulloch', 'Jonny Lee Miller': 'Simon'}\"\r\ntt3121332,\"{'Sebastián Silva': 'Freddy', 'Kristen Wiig': 'Polly', 'Tunde Adebimpe': 'Mo', 'Reg E. Cathey': 'The Bishop', 'Mark Margolis': 'Richard', 'Agustín Silva': 'Chino', 'Alia Shawkat': 'Wendy', 'Lillias White': 'Cecilia', 'Anthony Chisholm': \"\"Mo's Father\"\", 'Marsha Stephanie Blake': \"\"Mo's Sister /              Haimy\"\", 'William Oliver Watkins': \"\"Mo's Brother-in-Law\"\", 'Constance Shulman': \"\"Bishop's Girlfriend\"\", 'Neal Huff': 'Gallery Owner', 'Jesse Thurston': 'Gallery Owner Assistant', 'Catrina Ganey': 'Policewoman'}\"\r\ntt3416742,\"{'Jemaine Clement': 'Vladislav', 'Taika Waititi': 'Viago', 'Jonny Brugh': 'Deacon       (as Jonathan Brugh)', 'Cori Gonzalez-Macuer': 'Nick', 'Stu Rutherford': 'Stu', 'Ben Fransham': 'Petyr', 'Jackie van Beek': 'Jackie       (as Jackie Van Beek)', 'Elena Stejko': 'Pauline (The Beast)', 'Jason Hoyte': 'Julian', \"\"Karen O'Leary\"\": 'Policewoman', 'Mike Minogue': 'Policeman', 'Chelsie Preston Crayford': 'Josephine       (as Chelsie Preston-Crayford)', 'Ian Harcourt': 'Zombie', 'Ethel Robinson': 'Katherine', 'Brad Harding': 'Vampire Hunter'}\"\r\ntt2592614,\"{'Milla Jovovich': 'Alice /              Alicia Marcus', 'Iain Glen': 'Dr. Isaacs', 'Ali Larter': 'Claire Redfield', 'Shawn Roberts': 'Wesker', 'Eoin Macken': 'Doc', 'Fraser James': 'Razor', 'Ruby Rose': 'Abigail', 'William Levy': 'Christian', 'Rola': 'Cobalt', 'Ever Anderson': 'Young Alicia /              Red Queen', 'Mark Simpson': 'James Marcus', 'Milton Schorr': 'Thin Man', 'Siobhan Hodgson': 'Emaciated Woman', 'Joon-Gi Lee': 'Commander Chu       (as Lee Joon Gi)', 'Aubrey Shelton': 'Scars'}\"\r\ntt5442430,\"{'Hiroyuki Sanada': 'Sho Murakami', 'Ryan Reynolds': 'Rory Adams', 'Rebecca Ferguson': 'Miranda North', 'Jake Gyllenhaal': 'David Jordan', 'Olga Dykhovichnaya': 'Ekaterina Golovkina       (as Olga Dihovichnaya)', 'Ariyon Bakare': 'Hugh Derry', 'Jesus Del Orden': 'Student 2', 'Allen McLean': 'Student 1', 'Leila Grace': 'Student 3       (as Leila Grace Bostwick-Riddell)', 'Mari Gvelesiani': 'Student 4', 'David Muir': '20 /              20 Anchor', 'Elizabeth Vargas': '20 /              20 Anchor', 'Camiel Warren-Taylor': 'Dominique', 'Haruka Kuroda': 'Doctor', 'Naoko Mori': 'Kazumi'}\"\r\ntt4698684,\"{'Sam Neill': 'Hec', 'Julian Dennison': 'Ricky', 'Rima Te Wiata': 'Bella', 'Rachel House': 'Paula', 'Tioreore Ngatai-Melbourne': 'Kahu', 'Oscar Kightley': 'Andy', 'Stan Walker': 'Ron', 'Mike Minogue': 'Joe', 'Cohen Holloway': 'Hugh', 'Rhys Darby': 'Psycho Sam', 'Troy Kingi': 'TK', 'Taika Waititi': 'Minister', 'Hamish Parkinson': 'Gavin', 'Stu Giles': 'Sick Man', 'Lloyd Scott': 'Tourist'}\"\r\ntt3917210,\"{'Owen Suskind': 'Himself', 'Ron Suskind': 'Himself', 'Cornelia Suskind': 'Herself', 'Walter Suskind': \"\"Himself, Owen Suskind's big brother\"\", 'Alan Rosenblatt': 'Himself', 'Emily Jathas': \"\"Herself, Owen Suskind's girlfriend\"\", 'Michelle Garcia Winner': 'Herself, speech language pathologist', 'Jonathan Freeman': 'Himself', 'Gilbert Gottfried': 'Himself', 'Jeffrey Ortiz': 'Himself'}\"\r\ntt2398241,\"{'Demi Lovato': 'Smurfette       (voice)', 'Rainn Wilson': 'Gargamel       (voice)', 'Joe Manganiello': 'Hefty Smurf       (voice)', 'Jack McBrayer': 'Clumsy Smurf       (voice)', 'Danny Pudi': 'Brainy Smurf       (voice)', 'Mandy Patinkin': 'Papa Smurf       (voice)', 'Dee Bradley Baker': 'Monty       (voice)', 'Frank Welker': 'Azrael       (voice)', 'Michelle Rodriguez': 'SmurfStorm       (voice)', 'Ellie Kemper': 'SmurfBlossom       (voice)', 'Julia Roberts': 'SmurfWillow       (voice)', 'Ariel Winter': 'SmurfLily       (voice)', 'Meghan Trainor': 'SmurfMelody       (voice)', 'Bret Marnell': 'Snappy Bug /              Handy Smurf       (voice)', 'Brandon Jeffords': 'Cauldron       (voice)'}\"\r\ntt4160708,\"{'Stephen Lang': 'The Blind Man', 'Jane Levy': 'Rocky', 'Dylan Minnette': 'Alex', 'Daniel Zovatto': 'Money', 'Emma Bercovici': 'Diddy', 'Franciska Töröcsik': 'Cindy', 'Christian Zagia': 'Raul', 'Katia Bokor': 'Ginger', 'Sergej Onopko': 'Trevor', 'Olivia Gillies': \"\"Blind Man's Daughter (Young Emma)\"\", 'Dayna Clark': 'TV Anchor', 'Athos': 'Dog', 'Astor': 'Dog', 'Nomad': 'Dog'}\"\r\ntt0079714,\"{'A. Michael Baldwin': 'Mike       (as Michael Baldwin)', 'Bill Thornbury': 'Jody', 'Reggie Bannister': 'Reggie', 'Kathy Lester': 'Lady in Lavender', 'Terrie Kalbus': \"\"Fortuneteller's Granddaughter\"\", 'Kenneth V. Jones': 'Caretaker       (as Ken Jones)', 'Susan Harper': 'Girlfriend', 'Lynn Eastman-Rossi': 'Sally       (as Lynn Eastman)', 'David Arntzen': 'Toby', 'Ralph Richmond': 'Bartender', 'Bill Cone': 'Tommy', 'Laura Mann': 'Double Lavender', 'Mary Ellen Shaw': 'Fortuneteller', 'Myrtle Scotton': 'Maid', 'Angus Scrimm': 'The Tall Man'}\"\r\ntt0101625,\"{'John Candy': 'Augie Morosco', 'Jim Belushi': 'Neil Schwary       (as James Belushi)', 'Cybill Shepherd': 'Marilyn Schwary', 'Sean Young': 'Phoebe', 'Richard Lewis': 'Julian Peters', 'Ornella Muti': 'Elena Morosco', 'Giancarlo Giannini': 'Inspector Bonnard', 'George Hamilton': 'Alfonso de la Pena', 'Roberto Sbaratto': 'Detective Toussaint', 'Joss Ackland': 'Hercules Popodopoulos', 'Ann Way': 'Housekeeper', 'Geoffrey Andrews': 'Butler', 'Caterina Boratto': 'Madame de Senneville', 'Elsa Martinelli': 'Carla the Agent', 'Riccardo Parisio Perrotti': 'Customs Officer'}\"\r\ntt0406375,\"{'Jonah Bobo': 'Danny', 'Josh Hutcherson': 'Walter', 'Dax Shepard': 'Astronaut', 'Kristen Stewart': 'Lisa', 'Tim Robbins': 'Dad', 'Frank Oz': 'Robot       (voice)', 'John Alexander': 'Robot', 'Derek Mears': 'Lead Zorgon', 'Douglas Tait': 'Zorgon', 'Joe Bucaro III': 'Zorgon       (as Joe Bucaro)', 'Jeff Wolfe': 'Zorgon'}\"\r\ntt0079073,\"{'Frank Langella': 'Count Dracula', 'Laurence Olivier': 'Prof. Abraham Van Helsing', 'Donald Pleasence': 'Dr. Jack Seward', 'Kate Nelligan': 'Lucy Seward', 'Trevor Eve': 'Jonathan Harker', 'Jan Francis': 'Mina Van Helsing', 'Janine Duvitski': 'Annie', 'Tony Haygarth': 'Milo Renfield', 'Teddy Turner': 'Swales', 'Sylvester McCoy': 'Walter       (as Sylveste McCoy)', 'Kristine Howarth': 'Mrs. Galloway', 'Joe Belcher': 'Tom Hindley', 'Ted Carroll': 'Scarborough Sailor', 'Frank Birch': 'Harbormaster', 'Gabor Vernon': 'Captain of Demeter'}\"\r\ntt2345759,\"{'Tom Cruise': 'Nick Morton', 'Russell Crowe': 'Henry Jekyll', 'Annabelle Wallis': 'Jenny Halsey', 'Sofia Boutella': 'Ahmanet', 'Jake Johnson': 'Sgt. Vail', 'Courtney B. Vance': 'Colonel Greenway', 'Marwan Kenzari': 'Malik', 'Simon Atherton': 'Crusader', 'Stephen Thompson': 'First Man', 'James Arama': 'Second Man', 'Matthew Wilkas': 'Reporter', 'Sohm Kapila': 'Reporter', 'Sean Cameron Michael': 'Archaeologist', 'Rez Kempton': 'Construction Manager', 'Erol Ismail': \"\"Ahmanet's Warrior\"\"}\"\r\ntt2639254,\"{'Thomas Allam': 'Louis Alexander', 'Alan Rickman': 'King Louis XIV', 'Hope Hancock': 'Francoise Marie', 'Isabella Steinbarth': 'Louise Francoise', 'Hal Hewetson': 'Philippe', 'Carolina Valdés': 'Queen Marie Therese', 'Eleanor Montgomery': 'Royal Nurse', 'Matthias Schoenaerts': 'André Le Notre', 'Danny Webb': 'Claude Moulin', 'Kate Winslet': 'Sabine De Barra', 'Cathy Belton': 'Louise', 'Steven Waddington': 'Thierry Duras', 'Adrian Scarborough': 'Daniel Le Vielle', 'Adrian Schiller': 'Jean Risse', 'Ben Fox': 'Monsieur Mauve'}\"\r\ntt0024184,\"{'Claude Rains': 'Dr. Jack Griffin aka The Invisible Man', 'Gloria Stuart': 'Flora Cranley', 'William Harrigan': 'Dr. Arthur Kemp', 'Henry Travers': 'Dr. Cranley', \"\"Una O'Connor\"\": 'Jenny Hall', 'Forrester Harvey': 'Herbert Hall', 'Holmes Herbert': 'Chief of Police', 'E.E. Clive': 'Constable Jaffers', 'Dudley Digges': 'Chief Detective', 'Harry Stubbs': 'Inspector Bird', 'Donald Stuart': 'Inspector Lane', 'Merle Tottenham': 'Millie'}\"\r\ntt0034398,\"{'Lon Chaney Jr.': 'Larry Talbot - The Wolf Man       (as Lon Chaney)', 'Claude Rains': 'Sir John Talbot', 'Warren William': 'Dr. Lloyd', 'Ralph Bellamy': 'Colonel Paul Montford', 'Patric Knowles': 'Frank Andrews', 'Bela Lugosi': 'Bela', 'Maria Ouspenskaya': 'Maleva', 'Evelyn Ankers': 'Gwen Conliffe', 'J.M. Kerrigan': 'Charles Conliffe', 'Fay Helm': 'Jenny Williams', 'Forrester Harvey': 'Twiddle'}\"\r\ntt0355702,\"{'John Robinson': 'Stacy', 'Emile Hirsch': 'Jay', 'Rebecca De Mornay': 'Philaine', 'William Mapother': 'Donnie', 'Julio Oscar Mechoso': 'Mr. Alva', 'Victor Rasuk': 'Tony', 'Nikki Reed': 'Kathy Alva', 'Heath Ledger': 'Skip', 'Vincent Laresca': 'Chino', 'Brian Zarate': 'Montoya', 'Pablo Schreiber': 'Stecyk', 'Elden Henson': 'Billy Z', 'Michael Angarano': 'Sid', 'Mitch Hedberg': 'Urethane Wheels Guy', 'Benjamin Nurick': 'Browser'}\"\r\ntt1374989,\"{'Lily James': 'Elizabeth Bennet', 'Sam Riley': 'Mr. Darcy', 'Bella Heathcote': 'Jane Bennet', 'Ellie Bamber': 'Lydia Bennet', 'Millie Brady': 'Mary Bennet', 'Suki Waterhouse': 'Kitty Bennet', 'Douglas Booth': 'Mr. Bingley', 'Sally Phillips': 'Mrs. Bennet', 'Charles Dance': 'Mr. Bennet', 'Jack Huston': 'George Wickham', 'Lena Headey': 'Lady Catherine de Bourgh', 'Matt Smith': 'Parson Collins', 'Emma Greenwell': 'Caroline Bingley', 'Eva Bell': 'Louisa', 'Aisling Loftus': 'Charlotte'}\"\r\ntt2513074,\"{'Joe Alwyn': 'Billy', 'Garrett Hedlund': 'Dime', 'Arturo Castro': 'Mango', 'Mason Lee': 'Foo', 'Astro': \"\"Lodis       (as Brian 'Astro' Bradley)\"\", 'Beau Knapp': 'Crack', 'Ismael Cruz Cordova': 'Holliday', 'Barney Harris': 'Sykes', 'Vin Diesel': 'Shroom', 'Steve Martin': 'Norm', 'Chris Tucker': 'Albert', 'Kristen Stewart': 'Kathryn', 'Makenzie Leigh': 'Faison', 'Ben Platt': 'Josh', 'Bruce McKinnon': \"\"Billy's Father\"\"}\"\r\ntt3717252,\"{'Kate Beckinsale': 'Selene', 'Theo James': 'David', 'Tobias Menzies': 'Marius', 'Lara Pulver': 'Semira', 'Charles Dance': 'Thomas', 'James Faulkner': 'Cassius', 'Peter Andersson': 'Vidar', 'Clementine Nicholson': 'Lena', 'Bradley James': 'Varga', 'Daisy Head': 'Alexia', 'Oliver Stark': 'Gregor', 'Zuzana Stivínová': 'Vampire Council #1       (as Zuzana Stivinova)', 'Brian Caspe': 'Vampire Council #2', 'Jan Nemejovský': 'Vampire Council #3       (as Jan Nemejovsky)', 'Sveta Driga': 'Amelia       (as Driga Sveta)'}\"\r\ntt1355644,\"{'Jennifer Lawrence': 'Aurora Lane', 'Chris Pratt': 'Jim Preston', 'Michael Sheen': 'Arthur', 'Laurence Fishburne': 'Gus Mancuso', 'Andy Garcia': 'Captain Norris', 'Vince Foster': 'Executive Officer', 'Kara Flowers': 'Communications Officer', 'Conor Brophy': 'Crew Member', 'Julee Cerda': 'Instructor (Hologram)', 'Aurora Perrineau': 'Best Friend', 'Lauren Farmer': 'Party Friend', 'Emerald Mayne': 'Party Friend', 'Kristin Brock': 'Party Friend', 'Tom Ferrari': 'Party Friend', 'Quansae Rutledge': 'Party Friend'}\"\r\ntt3170902,\"{'Jacir Eid Al-Hwietat': 'Theeb       (as Jacir Eid)', 'Hassan Mutlag Al-Maraiyeh': 'The Stranger       (as Hassan Mutlag)', 'Hussein Salameh Al-Sweilhiyeen': 'Hussein       (as Hussein Salameh)', 'Jack Fox': 'Edward', 'Marji Audeh': 'Marji', 'Hmood Ali': 'Sheikh', 'Abdul Aziz Mousa': 'Suleiman', 'Baha Othman': 'Mulazim', 'Ali Omayan': 'Revolt Commander', 'Aswad Gasem': 'Revolt Officer', 'Ali Saleh': 'Revolter', 'Abdullah Atawi': 'Revolter', 'Suleiman Fraj': 'Revolter', 'Hisham Ahmand': 'Revolter', 'Ouday Hassan': 'Raider'}\"\r\ntt5294966,\"{'Hiroshi Abe': 'Shinoda Ryôta', 'Yôko Maki': 'Shiraishi Kyôko', 'Satomi Kobayashi': 'Chinatsu Nakashima', 'Lily Franky': 'Yamanabe', 'Sôsuke Ikematsu': 'Kento Machida', 'Taiyô Yoshizawa': 'Shiraishi Shingo', 'Shôno Hayama': 'High school student'}\"\r\ntt4882174,\"{'Samira Wiley': 'Joyce Smith', 'Michael Potts': 'Archibald Smith', 'Maria Dizzia': 'Mary Cunningham', 'Jamie Harrold': 'Bob Cunningham', 'Thomas Kopache': 'George Bernstein', 'Lucy Martin': 'Florel Bernstein', 'Adrian Martinez': 'Gonzales', 'Evan Fine': 'Billy Cunningham', 'Sophia Lillis': 'Debbie Bernstein', 'Marquise Gary': 'Troy Smith', 'Christina Brucato': 'Kitty Genovese', 'Lynne McCollough': 'Dorothy', 'Sawyer Nunes': 'Mark Cunningham', 'Nancy Ozelli': 'Mowbray Sister', 'Virginia Robinson': 'Mowbray Sister'}\"\r\ntt3142366,\"{'Logan Miller': 'Ryder', 'Robin Weigert': 'Cindy', 'Josh Hamilton': 'Keith', 'Richard Schiff': 'Don', 'Ursula Parker': 'Molly', 'Azura Skye': 'Ruth', 'Elizabeth Franz': 'Evelyn', 'Ashley Gerasimovich': 'Abbey', 'Grant Young': 'Jeremy', 'Seth Young': 'Trenton', 'Amy Hostetler': 'Terry', 'Ella Jaixen': \"\"Keith's Younger Daughter\"\", 'Athena Mostek': \"\"Keith's Youngest Daughter\"\"}\"\r\ntt0084191,\"{'Rainer Werner Fassbinder': 'Polizeileutnant Jansen', 'Günther Kaufmann': 'MK1 Anton', 'Boy Gobert': 'Konzernchef', 'Arnold Marquis': 'Polizeipräsident', 'Richy Müller': 'Neffe', 'Nicole Heesters': 'Barbara', 'Brigitte Mira': 'Personaldirektorin', 'Jörg Holm': 'Vizepräsident', 'Hans Wyprächtiger': 'Zerling', 'Petra Jokisch': 'Elena Farr', 'Andreas Mannkopff': 'Wechselschichtregisseur', 'Ute Koska': 'Polizeiärztin       (as Ute Fitz-Koska)', 'Frank Ripploh': 'Gangster', 'Hans-Eckart Eckhardt': 'Polizist', 'Christoph Baumann': 'Kriminalpolizist'}\"\r\ntt1808339,\"{'Karen Gillan': 'Jane Lockhart', 'Stanley Weber': 'Tom Duval', 'Iain De Caestecker': 'Roddy', 'Gary Lewis': 'Benny Lockhart (Dad)', 'Henry Ian Cusick': 'Willie Scott', 'Freya Mavor': 'Nicola Ball', 'Kate Dickie': 'Anna Le Fevre', 'Amy Manson': 'Darsie', 'Niall Greig Fulton': 'Team Member 1', 'Bill Barclay': 'Team Member 2', 'Cora Bisset': 'Bookshop Owner       (as Cora Bissett)', 'Louise Goodall': 'Doctor Klinsch', 'John Bett': 'Mr. McLeish', 'Callum Cuthbertson': 'Quiz Master'}\"\r\ntt3407428,\"{'Toni Collette': 'Jean', 'Will Poulter': 'Shane', 'Jack Reynor': 'John', 'Michael Smiley': 'Jim', 'Laura Byrne': 'Head Nurse', 'Ally Ni Chiarain': 'Woman in Taxi', 'Dairíne Ní Dhonnchú': 'Bridie       (as Darine Ní Dhonnchadha)', 'Shashi Rami': 'Dr. Shakra', \"\"Gary Ó'Nualláin\"\": 'Frank', 'D.J. McGrath': 'Paul DVD Clerk', 'Graham Earley': 'Angry Neighbour', 'Kian Murphy': 'Bike Kid', 'Joe Mullins': 'Taxi Driver', 'Melissa Maria Carton': \"\"Shane's Ex\"\", 'Harry Nagle': 'Kit'}\"\r\ntt4972582,\"{'James McAvoy': 'Dennis /              Patricia /              Hedwig /              The Beast /              Kevin Wendell Crumb /              Barry /              Orwell /              Jade', 'Anya Taylor-Joy': 'Casey Cooke', 'Betty Buckley': 'Dr. Karen Fletcher', 'Haley Lu Richardson': 'Claire Benoit', 'Jessica Sula': 'Marcia', 'Izzie Coffey': 'Five-Year-Old Casey       (as Izzie Leigh Coffey)', 'Brad William Henke': 'Uncle John', 'Sebastian Arcelus': \"\"Casey's Father\"\", 'Neal Huff': 'Mr. Benoit', 'Ukee Washington': 'News Anchor', 'Ann Wood': 'Game Show Enthusiast', 'Robert Michael Kelly': 'Joe', 'M. Night Shyamalan': 'Jai /              Hooters Lover', 'Rosemary Howard': \"\"Kevin's Mother\"\", 'Jerome Gallman': 'Vince, Security Guard'}\"\r\ntt4361050,\"{'Annalise Basso': 'Lina Zander', 'Elizabeth Reaser': 'Alice Zander', 'Lulu Wilson': 'Doris Zander', 'Henry Thomas': 'Father Tom', 'Parker Mack': 'Mikey', 'Halle Charlton': 'Ellie', 'Alexis G. Zall': 'Betty', 'Doug Jones': 'Ghoul Marcus', 'Kate Siegel': 'Jenny Browning', 'Sam Anderson': 'Mr. Browning', 'Chelsea Gonzalez': 'Gloria', 'Lincoln Melcher': 'Jack', 'Nicholas Keenan': 'Walter', 'Michael Weaver': 'Roger Zander', 'Ele Keats': \"\"Ellie's Mom\"\"}\"\r\ntt1753383,\"{'Josh Gad': 'Bailey /              Ellie /              Tino /              Buddy       (voice)', 'Dennis Quaid': 'Adult Ethan', 'Peggy Lipton': 'Adult Hannah', 'Bryce Gheisar': 'Ethan - 8 Years Old', 'K.J. Apa': 'Teen Ethan       (as KJ Apa)', 'Juliet Rylance': \"\"Ethan's Mom\"\", 'Luke Kirby': \"\"Ethan's Dad\"\", 'Gabrielle Rose': 'Grandma Fran', 'Michael Bofshever': 'Grandpa Bill', 'Britt Robertson': 'Teen Hannah', 'Logan Miller': 'Todd', 'Kirby Howell-Baptiste': 'Maya', 'Pooch Hall': 'Al', 'John Ortiz': 'Carlos', 'Nicole LaPlaca': 'Wendi'}\"\r\ntt4649416,\"{'Danny Glover': 'Walter', 'Gabrielle Union': 'Rachel', \"\"Mo'Nique\"\": 'Aunt May', 'Kimberly Elise': 'Cheryl', 'Romany Malco': 'Christian', 'J.B. Smoove': 'Lonnie       (as JB Smoove)', 'Jessie T. Usher': 'Evan', 'John Michael Higgins': 'Brooks', 'Nicole Ari Parker': 'Sonya', 'Omar Epps': 'Malachi', 'Nadej K. Bailey': 'Niya       (as Nadej Bailey)', 'Alkoya Brunson': 'Cameron', 'Marley Taylor': 'Dee', 'D.C. Young Fly': 'Eric       (as DC Young Fly)', 'Keri Hilson': 'Jasmine'}\"\r\ntt2034800,\"{'Matt Damon': 'William', 'Tian Jing': 'Commander Lin Mae', 'Willem Dafoe': 'Ballard', 'Andy Lau': 'Strategist Wang', 'Pedro Pascal': 'Tovar', 'Hanyu Zhang': 'General Shao', 'Han Lu': 'Peng Yong', 'Kenny Lin': 'Commander Chen', 'Eddie Peng': 'Commander Wu', 'Xuan Huang': 'Commander Deng', 'Ryan Zheng': 'Shen       (as Zheng Kai)', 'Karry Wang': 'Emperor       (as Junkai Wang)', 'Cheney Chen': 'Imperial Officer', 'Pilou Asbæk': 'Bouchard', 'Numan Acar': 'Najid'}\"\r\ntt4550098,\"{'Amy Adams': 'Susan Morrow', 'Jake Gyllenhaal': 'Tony Hastings /              Edward Sheffield', 'Michael Shannon': 'Bobby Andes', 'Aaron Taylor-Johnson': 'Ray Marcus', 'Isla Fisher': 'Laura Hastings', 'Ellie Bamber': 'India Hastings', 'Armie Hammer': 'Hutton Morrow', 'Karl Glusman': 'Lou', 'Robert Aramayo': 'Turk', 'Laura Linney': 'Anne Sutton', 'Andrea Riseborough': 'Alessia', 'Michael Sheen': 'Carlos', 'Bobbi Salvör Menuez': 'Samantha Morrow       (as India Menuez)', 'Imogen Waterhouse': 'Chloe', 'Franco Vega': 'Driver'}\"\r\ntt3631112,\"{'Emily Blunt': 'Rachel', 'Haley Bennett': 'Megan', 'Rebecca Ferguson': 'Anna', 'Justin Theroux': 'Tom', 'Luke Evans': 'Scott', 'Edgar Ramírez': 'Dr. Kamal Abdic       (as Édgar Ramírez)', 'Laura Prepon': 'Cathy', 'Allison Janney': 'Detective Riley', 'Darren Goldstein': 'Man in the Suit', 'Lisa Kudrow': 'Martha', 'Cleta Elaine Ellington': 'Oyster Bar Woman       (as Cleta E. Ellington)', 'Lana Young': 'Doctor', 'Rachel Christopher': 'Woman with Child', 'Fernando Medina': 'Pool Player', 'Gregory Morley': 'Officer Pete'}\"\r\ntt4630562,\"{'Vin Diesel': 'Dom', 'Jason Statham': 'Deckard', 'Dwayne Johnson': 'Hobbs', 'Michelle Rodriguez': 'Letty', 'Tyrese Gibson': 'Roman', 'Ludacris': \"\"Tej Parker       (as Chris 'Ludacris' Bridges)\"\", 'Charlize Theron': 'Cipher', 'Kurt Russell': 'Mr. Nobody', 'Nathalie Emmanuel': 'Ramsey', 'Luke Evans': 'Owen', 'Elsa Pataky': 'Elena', 'Kristofer Hivju': 'Rhodes', 'Scott Eastwood': 'Little Nobody', 'Patrick St. Esprit': 'DS Allan', 'Janmarco Santiago': 'Fernando'}\"\r\ntt3263408,\"{'Cassandra Freeman': 'Billie', 'Charles Miller': 'Kofi', 'Marisol Miranda': 'Sofia', 'Dennis Rubin Green': 'Nelson', 'Louisa Ward': 'Alex', 'Aristotle Stamat': 'Elliott', 'Ana Paiva': 'Lauren', 'Dan Winerman': 'Hank', 'David Craig Diaz': 'Worker #1', 'Johanna Anttila': 'Worker #2       (as Johanna Finn)', 'Theodore King': 'Worker #3', 'Daniel Stagliano': 'Random Guy', 'Amanda Seidner': 'Bar Patron'}\"\r\ntt2650978,\"{'Sam Riley': 'Greider', 'Tobias Moretti': 'Hans Brenner', 'Paula Beer': 'Luzi', 'Thomas Schubert': 'Lukas', 'Carmen Gratl': 'Gaderin', 'Clemens Schick': 'Luis Brenner', 'Helmuth Häusler': 'Hubert Brenner       (as Helmuth A. Hausler)', 'Martin Leutgeb': 'Otto Brenner', 'Johannes Nikolussi': 'Rudolf Brenner       (as Johann Nikolussi)', 'Florian Brückner': 'Edi Brenner', 'Heinz Ollesch': 'Schmied', 'Franz Xaver Brückner': 'Franz', 'Xenia Assenza': 'Maria', 'Beatrix Brunschko': 'Mutter Lukas', 'Gerhard Liebmann': 'Vater Lukas'}\"\r\ntt5182856,\"{'Tadanobu Asano': 'Yasaka', 'Mariko Tsutsui': 'Akié', 'Taiga Nakano': 'Takashi Yamagami       (as Taiga)', 'Momone Shinokawa': 'Hotaru', 'Kana Mahiro': 'Hotaru (Adult)', 'Takahiro Miura': 'Atsushi Shitara', 'Kanji Furutachi': 'Toshio'}\"\r\ntt8071196,\"{'Vandolph': '(as Vandolf Quizon)', 'Lander Vera-Perez': '(as Lander Vera Perez)', 'Patrick Carrera': '(as Shane Carrera)', 'Rhen Escano': '(as Rhen Escaño)'}\"\r\ntt5974624,{'Quniciren': '(as Quni Ciren)'}\r\ntt0099938,\"{'Arnold Schwarzenegger': 'Kimble', 'Penelope Ann Miller': 'Joyce', 'Pamela Reed': 'Phoebe', 'Linda Hunt': 'Miss Schlowski', 'Richard Tyson': 'Crisp', 'Carroll Baker': 'Eleanor Crisp', 'Joseph Cousins': 'Dominic', 'Christian Cousins': 'Dominic', 'Cathy Moriarty': \"\"Sylvester's Mother\"\", 'Park Overall': \"\"Samantha's Mother\"\", 'Jayne Brook': \"\"Zach's Mother\"\", 'Richard Portnow': 'Captain Salazar', 'Tom Kurlander': 'Danny', 'Alix Koromzay': 'Cindy', 'Betty Lou Henson': \"\"Keisha's Mother\"\"}\"\r\ntt0112384,\"{'Tom Hanks': 'Jim Lovell', 'Bill Paxton': 'Fred Haise', 'Kevin Bacon': 'Jack Swigert', 'Gary Sinise': 'Ken Mattingly', 'Ed Harris': 'Gene Kranz', 'Kathleen Quinlan': 'Marilyn Lovell', 'Mary Kate Schellhardt': 'Barbara Lovell', 'Emily Ann Lloyd': 'Susan Lovell', 'Miko Hughes': 'Jeffrey Lovell', 'Max Elliott Slade': 'Jay Lovell', 'Jean Speegle Howard': 'Blanch Lovell', 'Tracy Reiner': 'Mary Haise', 'David Andrews': 'Pete Conrad', 'Michele Little': 'Jane Conrad       (as Michelle Little)', 'Chris Ellis': 'Deke Slayton'}\"\r\ntt0046912,\"{'Ray Milland': 'Tony Wendice', 'Grace Kelly': 'Margot Wendice', 'Robert Cummings': 'Mark Halliday', 'John Williams': 'Chief Inspector Hubbard', 'Anthony Dawson': 'Charles Swann', 'Leo Britt': 'The Storyteller', 'Patrick Allen': 'Detective Pearson', 'George Leigh': 'Detective Williams', 'George Alderson': 'First Detective', 'Robin Hughes': \"\"Police Sergeant O'Brien\"\"}\"\r\ntt0091763,\"{'Keith David': 'King', 'Forest Whitaker': 'Big Harold', 'Francesco Quinn': 'Rhah', 'Kevin Dillon': 'Bunny', 'John C. McGinley': \"\"Sgt. O'Neill\"\", 'Reggie Johnson': 'Junior', 'Mark Moses': 'Lt. Wolfe', 'Corey Glover': 'Francis', 'Johnny Depp': 'Lerner', 'Chris Pedersen': 'Crawford', 'Bob Orwig': 'Gardner', 'Corkey Ford': 'Manny', 'David Neidorf': 'Tex', 'Tom Berenger': 'Sgt. Barnes', 'Willem Dafoe': 'Sgt. Elias'}\"\r\ntt0095031,\"{'Steve Martin': 'Freddy Benson', 'Michael Caine': 'Lawrence Jamieson', 'Glenne Headly': 'Janet Colgate', 'Anton Rodgers': 'Inspector Andre', 'Barbara Harris': 'Fanny Eubanks', 'Ian McDiarmid': 'Arthur', 'Dana Ivey': 'Mrs. Reed', 'Meagen Fay': 'Lady from Oklahoma', 'Frances Conroy': 'Lady from Palm Beach', 'Nicole Calfan': 'Lady in Dining Car', 'Aïna Wallé': 'Miss Krista Knudsen       (as Aïna Walle)', 'Cheryl Pay': 'Lady with Pearls', 'Nathalie Auffret': 'Marion', 'Lolly Susi': 'Lady in Rolls Royce', 'Rupert Holliday-Evans': 'English Sailor #1       (as Rupert Holliday Evans)'}\"\r\ntt5052448,\"{'Daniel Kaluuya': 'Chris Washington', 'Allison Williams': 'Rose Armitage', 'Catherine Keener': 'Missy Armitage', 'Bradley Whitford': 'Dean Armitage', 'Caleb Landry Jones': 'Jeremy Armitage', 'Marcus Henderson': 'Walter', 'Betty Gabriel': 'Georgina', 'LaKeith Stanfield': 'Andre Logan King       (as Keith Stanfield)', 'Stephen Root': 'Jim Hudson', 'Lil Rel Howery': 'Rod Williams', 'Ashley LeConte Campbell': 'Lisa Deets', 'John Wilmot': 'Gordon Greene', 'Caren L. Larkey': 'Emily Greene       (as Caren Larkey)', 'Julie Ann Doan': 'April Dray', 'Rutherford Cravens': 'Parker Dray'}\"\r\ntt4465564,\"{'Dakota Johnson': 'Anastasia Steele', 'Jamie Dornan': 'Christian Grey', 'Eric Johnson': 'Jack Hyde', 'Eloise Mumford': 'Kate Kavanagh', 'Bella Heathcote': 'Leila', 'Rita Ora': 'Mia Grey', 'Luke Grimes': 'Elliot Grey', 'Victor Rasuk': 'José', 'Max Martini': 'Taylor', 'Bruce Altman': 'Jerry Roach', 'Kim Basinger': 'Elena Lincoln', 'Marcia Gay Harden': 'Grace Trevelyan Grey', 'Andrew Airlie': 'Carrick Grey', 'Robinne Lee': 'Ros Bailey', 'Amy Price-Francis': 'Liz'}\"\r\ntt0395169,\"{'Xolani Mali': 'Policeman', 'Don Cheadle': 'Paul Rusesabagina', 'Desmond Dube': 'Dube', 'Hakeem Kae-Kazim': 'George Rutaganda', 'Tony Kgoroge': 'Gregoire', 'Rosie Motene': 'Receptionist', 'Neil McCarthy': 'Jean Jacques', \"\"Mabutho 'Kid' Sithole\"\": 'Head Chef       (as Kid Sithole)', 'Nick Nolte': 'Colonel Oliver', 'Fana Mokoena': 'General Bizimungu', 'Jeremiah Ndlovu': 'Old Guard', 'Sophie Okonedo': 'Tatiana Rusesabagina', 'Lebo Mashile': 'Odette', 'Antonio David Lyons': 'Thomas Mirama', 'Leleti Khumalo': 'Fedens'}\"\r\ntt0881320,\"{'Richard Roxburgh': 'Frank', 'Ioan Gruffudd': 'Carl', 'Rhys Wakefield': 'Josh', 'Alice Parkinson': 'Victoria', 'Dan Wyllie': 'Crazy George       (as Daniel Wyllie)', 'Christopher James Baker': 'J.D.       (as Christopher Baker)', 'Nicole Downs': 'Liz', 'Allison Cratchley': 'Judes', 'Cramer Cain': 'Luko', 'Andrew Hansen': 'Dex', 'John Garvin': 'Jim Sergeant', 'Sean Dennehy': 'Chopper Pilot', 'Nea Diap': 'Kastom Shaman'}\"\r\ntt0095593,\"{'Paul Lazar': 'Tommy', 'Alec Baldwin': \"\"'Cucumber' Frank de Marco\"\", 'Captain Haggerty': \"\"'The Fat Man'\"\", 'Marlene Willoughby': \"\"Mrs. 'Fat Man'\"\", 'Frank Aquilino': 'Conductor', 'Charles Napier': \"\"Angela's Hairdresser\"\", 'Michelle Pfeiffer': 'Angela de Marco', 'Joan Cusack': 'Rose', 'Ellen Foley': 'Theresa', 'O-Lan Jones': 'Phyllis', 'Mercedes Ruehl': 'Connie Russo', 'Jason Allen': 'Tony Russo, Jr.', 'Diane Puccerella': 'Three-Card Monte Victim', 'Suzanne Puccerella': 'Three-Card Monte Victim', 'Anthony J. Nici': 'Joey de Marco'}\"\r\ntt0891527,\"{'Robert Redford': 'Professor Stephen Malley', 'Meryl Streep': 'Janine Roth', 'Tom Cruise': 'Senator Jasper Irving', 'Michael Peña': 'Ernest Rodriguez', 'Andrew Garfield': 'Todd Hayes', 'Peter Berg': 'Lt. Col. Falco', 'Kevin Dunn': 'ANX Editor', 'Derek Luke': 'Arian Finch', 'Larry Bates': 'Soldier', 'Christopher May': 'Soldier', 'David Pease': 'Soldier', 'Heidi Janson': 'Soldier', 'Christopher Carley': 'Sniper', 'George Back': 'Student', 'Kristy Wu': 'Student'}\"\r\ntt0106452,\"{'Terry Kinney': 'Steve Malone', 'Meg Tilly': 'Carol Malone', 'Gabrielle Anwar': 'Marti Malone', 'Reilly Murphy': 'Andy Malone', 'Billy Wirth': 'Tim Young', 'Christine Elise': 'Jenn Platt', 'R. Lee Ermey': 'General Platt', 'Kathleen Doyle': 'Mrs. Platt', 'Forest Whitaker': 'Major Collins', 'G. Elvis Phillips': 'Pete', 'Stanley Small': \"\"Platt's Aide\"\", 'Tonea Stewart': 'Teacher', 'Keith Smith': 'Soldier Gas Station', 'Winston E. Grant': 'Gas Attendant', 'Phil Neilson': 'MP Gate Captain'}\"\r\ntt0181739,\"{'Chris Rock': 'Osmosis Jones       (voice)', 'Laurence Fishburne': 'Thrax       (voice)', 'David Hyde Pierce': 'Drix       (voice)', 'Brandy Norwood': 'Leah       (voice)', 'William Shatner': 'Mayor Phlegmming       (voice)', 'Ron Howard': 'Tom Colonic       (voice)', 'Kid Rock': 'Kidney Rock       (voice)', 'Kenny Olson': 'Kidney Rock       (voice)', 'Jason Krause': 'Kidney Rock       (voice)', 'Joe C.': 'Kidney Rock       (voice)', 'Stefanie Eulinberg': 'Kidney Rock       (voice)', 'Jimmie Bones': 'Kidney Rock       (voice)', 'Uncle Kracker': 'Kidney Rock       (voice)', 'Jonathan Adams': 'Additional Character Voice       (voice)', 'Carlos Alazraqui': 'Additional Character Voice       (voice)'}\"\r\ntt0119592,\"{'John Travolta': 'Sam', 'Dustin Hoffman': 'Brackett', 'Mia Kirshner': 'Laurie', 'Alan Alda': 'Kevin Hollander', 'Robert Prosky': 'Lou Potts', 'Blythe Danner': 'Mrs. Banks', 'William Atherton': 'Dohlen', 'Ted Levine': 'Lemke', 'Tammy Lauren': 'Miss Rose', \"\"William O'Leary\"\": 'CTN Junior Executive', 'Raymond J. Barry': 'Dobbins', 'Lucinda Jenney': 'Jenny', 'Akosua Busia': 'Diane', 'Ebbe Roe Smith': 'Bartholomew', 'Bingwa': 'Nat Jackson'}\"\r\ntt0104107,\"{'James Woods': 'Gabriel Caine', 'Louis Gossett Jr.': \"\"'Honey' Roy Palmer\"\", 'Bruce Dern': 'John Gillon', 'Oliver Platt': 'Fitz', 'Heather Graham': 'Emily Forrester', \"\"Randall 'Tex' Cobb\"\": 'Wolf Forrester', 'Thomas Wilson Brown': 'Robby Gillon', 'Duane Davis': 'Hambone Busby', 'David Fresco': 'Fish', 'Willie Green': 'Hammerhead Hagan', 'Orestes Matacena': 'Victor Corsini', 'Kim Robillard': 'Sheriff Stennis', 'John Short': \"\"Corny 'Buster' Robbins\"\", 'Michael McGrady': 'Frank Mangrum', 'Roger Hewlett': 'Sam Lester'}\"\r\ntt0041090,\"{'Spencer Tracy': 'Adam Bonner', 'Katharine Hepburn': 'Amanda Bonner', 'Judy Holliday': 'Doris Attinger', 'Tom Ewell': 'Warren Attinger', 'David Wayne': 'Kip Lurie', 'Jean Hagen': 'Beryl Caighn', 'Hope Emerson': 'Olympia La Pere', 'Eve March': 'Grace', 'Clarence Kolb': 'Judge Reiser', 'Emerson Treacy': 'Jules Frikke', 'Polly Moran': 'Mrs. McGrath', 'Will Wright': 'Judge Marcasson', 'Elizabeth Flournoy': 'Dr. Margaret Brodeigh'}\"\r\ntt0031867,\"{'James Cagney': 'Eddie Bartlett', 'Priscilla Lane': 'Jean Sherman', 'Humphrey Bogart': 'George Hally', 'Gladys George': 'Panama Smith', 'Jeffrey Lynn': 'Lloyd Hart', 'Frank McHugh': 'Danny Green', 'Paul Kelly': 'Nick Brown', 'Elisabeth Risdon': 'Mrs. Sherman       (as Elizabeth Risdon)', 'Edward Keane': 'Henderson       (as Ed Keane)', 'Joe Sawyer': 'The Sergeant - Pete Jones', 'Joseph Crehan': 'Michaels', 'George Meeker': 'Masters', 'John Hamilton': 'Judge', 'Robert Elliott': 'First Detective', 'Eddy Chandler': 'Second Detective       (as Eddie Chandler)'}\"\r\ntt0094894,\"{'Sean Penn': 'Danny McGavin', 'Robert Duvall': 'Bob Hodges', 'Maria Conchita Alonso': 'Louisa Gomez', 'Randy Brooks': 'Ron Delaney', 'Grand L. Bush': 'Larry Sylvester       (as Grand Bush)', 'Don Cheadle': 'Rocket', 'Gerardo Mejía': 'Bird', 'Glenn Plummer': 'High Top', 'Rudy Ramos': 'Melindez', 'Sy Richardson': 'Bailey', 'Trinidad Silva': 'Frog', 'Charles Walker': 'Reed', 'Damon Wayans': 'T-Bone', 'Fred Asparagus': 'Cook', 'Sherman Augustus': 'Officer Porter'}\"\r\ntt0044685,\"{'Danny Kaye': 'Hans Christian Andersen', 'Farley Granger': 'Niels', 'Zizi Jeanmaire': 'Doro       (as Jeanmaire The Famous French Ballerina)', 'Joseph Walsh': 'Peter       (as Joey Walsh)', 'Philip Tonge': 'Otto', 'Erik Bruhn': 'The Hussar - Danced by', 'Roland Petit': \"\"The Prince in 'The Little Mermaid' Ballet\"\", 'John Brown': 'Schoolmaster', 'John Qualen': 'Burgomaster', 'Jeanne Lafayette': 'Celine', 'Robert Malcolm': 'Stage Doorman', 'George Chandler': 'Farmer', 'Fred Kelsey': 'First Gendarme', 'Gil Perkins': 'Second Gendarme', 'Peter J. Votrian': 'Lars       (as Peter Votrian)'}\"\r\ntt0077838,\"{'The Band': 'Themselves', 'Rick Danko': 'Himself - Bass /              Violin /              Vocal', 'Levon Helm': 'Himself - Drums /              Mandolin /              Vocal', 'Garth Hudson': 'Himself - Organ /              Accordion /              Saxophone /              Synthesizers', 'Richard Manuel': 'Himself - Piano /              Keyboards /              Drums /              Vocal', 'Robbie Robertson': 'Himself - Guitar /              Vocal', 'Eric Clapton': 'Himself - Performer', 'Neil Diamond': 'Himself - Performer', 'Bob Dylan': 'Himself - Performer', 'Joni Mitchell': 'Herself - Performer', 'Neil Young': 'Himself - Performer', 'Emmylou Harris': 'Herself - Performer', 'Ringo Starr': 'Himself - Performer', 'Paul Butterfield': 'Himself - Performer', 'Dr. John': 'Himself - Performer'}\"\r\ntt0098309,\"{'Meryl Streep': 'Mary Fisher', 'Roseanne Barr': 'Ruth', 'Ed Begley Jr.': 'Bob', 'Linda Hunt': 'Hooper', 'Sylvia Miles': 'Mrs. Fisher', 'Elisebeth Peters': 'Nicolette Patchett', 'Bryan Larkin': 'Andy Patchett', 'A Martinez': 'Garcia', 'Maria Pitillo': 'Olivia Honey', 'Mary Louise Wilson': 'Mrs. Trumper', 'Susan Willis': 'Ute', 'Jack Gilpin': 'Larry', 'Robin Leach': 'Robin Leach', 'Nitchie Barrett': \"\"Bob's Secretary\"\", 'June Gable': 'Realtor'}\"\r\ntt0101371,\"{'Ray Liotta': 'Dr. Richard Sturgess', 'Kiefer Sutherland': 'Dr. Peter Morgan', 'Forest Whitaker': 'Dr. Sid Handleman', 'Lea Thompson': 'Dr. Robin Van Dorn', 'John C. McGinley': 'Dr. Rudy Bobrick', 'John Mahoney': 'Dr. Henry Dreyfoos', 'Keith David': 'Luther Jermoe', 'Kathy Baker': 'Dr. Diana Walton', 'Eli Wallach': 'Sam Abrams', 'Noble Willingham': 'Inspector General', 'Julie Bovasso': 'Amelia Sturdeyvant', 'Troy Evans': 'Pat Travis', 'Lynne Thigpen': 'Nurse White', 'Jeffrey Tambor': 'Dr. Leo Krutz', 'Leo Burmester': 'Shooter Polaski'}\"\r\ntt0301470,\"{'Ray Wise': 'Jack Taggart Sr.', 'Jonathan Breck': 'The Creeper', 'Garikayi Mutambirwa': \"\"Deaundre 'Double D' Davis\"\", 'Eric Nenninger': \"\"Scott 'Scotty' Braddock\"\", 'Nicki Aycox': 'Minxie Hayes', 'Travis Schiffner': 'Izzy Bohen', 'Lena Cardwell': 'Chelsea Farmer', 'Billy Aaron Brown': \"\"Andy 'Bucky' Buck\"\", 'Marieh Delfino': 'Rhonda Truitt', 'Diane Delano': 'Bus Driver Betty Borman', 'Thom Gossom Jr.': 'Coach Charlie Hanna', 'Tom Tarantini': 'Coach Dwayne Barnes', 'Al Santos': 'Dante Belasco', 'Josh Hammond': 'Jake Spencer', 'Kasan Butcher': \"\"Kimball 'Big K' Ward\"\"}\"\r\ntt0061452,\"{'Peter Sellers': 'Evelyn Tremble (James Bond - 007)', 'Ursula Andress': 'Vesper Lynd (007)', 'David Niven': 'Sir James Bond', 'Orson Welles': 'Le Chiffre', 'Joanna Pettet': 'Mata Bond', 'Daliah Lavi': 'The Detainer (007)', 'Woody Allen': 'Jimmy Bond (Dr. Noah)', 'Deborah Kerr': 'Agent Mimi (Alias Lady Fiona)', 'William Holden': 'Ransome', 'Charles Boyer': 'Le Grand', 'John Huston': 'McTarry (M)', 'Kurt Kasznar': 'Smernov', 'George Raft': 'George Raft', 'Jean-Paul Belmondo': 'French Legionnaire       (as Jean Paul Belmondo)', 'Terence Cooper': 'Cooper (James Bond - 007)'}\"\r\ntt0051201,\"{'Tyrone Power': 'Leonard Vole', 'Marlene Dietrich': 'Christine', 'Charles Laughton': 'Sir Wilfrid Roberts', 'Elsa Lanchester': 'Miss Plimsoll', 'John Williams': 'Brogan-Moore', 'Henry Daniell': 'Mayhew', 'Ian Wolfe': 'Carter', 'Torin Thatcher': 'Mr. Myers', 'Norma Varden': 'Mrs. Emily Jane French', \"\"Una O'Connor\"\": 'Janet MacKenzie', 'Francis Compton': 'Judge', 'Philip Tonge': 'Inspector Hearne', 'Ruta Lee': 'Diana'}\"\r\ntt0100232,\"{'Charlie Sheen': 'Lt. Dale Hawkins', 'Michael Biehn': 'Lt. James Curran', 'Joanne Whalley': 'Claire Varrens       (as Joanne Whalley-Kilmer)', 'Rick Rossovich': 'Leary', \"\"Cyril O'Reilly\"\": 'Rexer', 'Bill Paxton': 'Dane', 'Dennis Haysbert': 'Graham', 'Paul Sanchez': 'Ramos', 'Nicholas Kadi': 'Ben Shaheed', 'Ronald G. Joseph': 'Capt. Dunne       (as Ron Joseph)', 'S. Epatha Merkerson': 'Jolena', 'Gregory McKinney': 'U.S. Helicopter Pilot       (as Greg McKinney)', 'Rob Moran': 'U.S. Helicopter Co-Pilot', 'Richard Venture': 'Admiral Colker', 'Mark Carlton': 'Jim Elmore'}\"\r\ntt0090056,\"{'Mark Stewart': 'Ace Tomato Courier', 'Sean Daniel': 'Ace Tomato Driver', 'Bruce Davison': 'Mr. Ruby', 'William Prince': 'Mr. Keyes', 'Steve Forrest': 'General Sline', 'Tom Hatten': 'General Miegs', 'Chevy Chase': 'Emmett Fitz-Hume', 'Ronald Reagan': 'The President of the United States       (archive footage)', 'Jeff Harding': \"\"Fitz-Hume's Associate\"\", 'Heidi Sorenson': \"\"Fitz-Hume's Supervisor\"\", 'Stephen Hoye': 'Captain Hefling', 'Dan Aykroyd': 'Austin Millbarge', 'Margo Random': 'Reporter', 'Douglas Lambert': 'Reporter', 'Frank Oz': 'Test Monitor'}\"\r\ntt0113228,\"{'Walter Matthau': 'Max Goldman', 'Jack Lemmon': 'John Gustafson', 'Sophia Loren': 'Maria Sophia Coletta Ragetti', 'Ann-Margret': 'Ariel Gustafson', 'Burgess Meredith': 'Grandpa Gustafson', 'Daryl Hannah': 'Melanie Gustafson', 'Kevin Pollak': 'Jacob Goldman', 'Katie Sagona': \"\"Allie, Melanie's Daughter\"\", 'Ann Morgan Guilbert': 'Mama Ragetti       (as Ann Guilbert)', 'James Andelin': 'Sven', 'Marcus Klemp': 'Eddie, Assistant Manager', 'Max Wright': 'County Health Inspector', 'Cheryl Hawker': 'Lena', 'Wayne A. Evenson': 'Handsome Hans', 'Allison Levine': 'Assistant at Dog Pound'}\"\r\ntt0089530,\"{'Mel Gibson': 'Mad Max Rockatansky', 'Bruce Spence': 'Jedediah the Pilot', 'Adam Cockburn': 'Jedediah Jr.', 'Tina Turner': 'Aunty Entity', 'Frank Thring': 'The Collector', 'Angelo Rossitto': 'The Master', 'Paul Larsson': 'The Blaster', 'Angry Anderson': 'Ironbar', 'Robert Grubb': 'Pig Killer', 'George Spartels': 'Blackfinger', 'Edwin Hodgeman': 'Dr. Dealgood', 'Bob Hornery': 'Waterseller', 'Andrew Oh': 'Ton Ton Tattoo', 'Ollie Hall': \"\"Aunty's Guard\"\", 'Lee Rice': \"\"Aunty's Guard\"\"}\"\r\ntt0116253,\"{'Kurt Russell': 'David Grant', 'Steven Seagal': 'Lt. Colonel Austin Travis', 'Halle Berry': 'Jean', 'John Leguizamo': 'Rat', 'Oliver Platt': 'Cahill', 'Joe Morton': 'Cappy', 'David Suchet': 'Nagi Hassan', 'BD Wong': 'Louie       (as B. D. Wong)', 'Len Cariou': 'Secretary of Defense Charles White', 'Whip Hubley': 'Baker', 'Andreas Katsulas': 'Jaffa', 'Mary Ellen Trainor': 'Allison', 'Marla Maples': 'Nancy       (as Marla Maples Trump)', 'J.T. Walsh': 'Senator Mavros', 'Ingo Neuhaus': 'Doc'}\"\r\ntt0053125,\"{'Cary Grant': 'Roger Thornhill', 'Eva Marie Saint': 'Eve Kendall', 'James Mason': 'Phillip Vandamm', 'Jessie Royce Landis': 'Clara Thornhill', 'Leo G. Carroll': 'The Professor', 'Josephine Hutchinson': 'Mrs. Townsend', 'Philip Ober': 'Lester Townsend', 'Martin Landau': 'Leonard', 'Adam Williams': 'Valerian', 'Edward Platt': 'Victor Larrabee', 'Robert Ellenstein': 'Licht', 'Les Tremayne': 'Auctioneer', 'Philip Coolidge': 'Dr. Cross', 'Patrick McVey': 'Sergeant Flamm', 'Edward Binns': 'Captain Junket'}\"\r\ntt0093713,\"{'Pelle Hvenegaard': 'Pelle', 'Max von Sydow': 'Lassefar', 'Erik Paaske': 'Forvalter /              Foreman', 'Björn Granath': 'Erik       (as Bjørn Granath)', 'Astrid Villaume': 'Fru Kongstrup /              Mrs. Kongstrup', 'Axel Strøbye': 'Kongstrup', 'Troels Asmussen': 'Rud', 'Kristina Törnqvist': 'Anna', 'Karen Wegener': 'Madam Olsen /              Mrs. Olsen', 'Sofie Gråbøl': 'Jomfru Sine /              Miss Sine', 'Lars Simonsen': 'Niels Køller', 'Buster Larsen': 'Ole Køller', 'John Wittig': 'Skolelærer /              School teacher', 'Troels Munk': 'Læge /              Doctor', 'Nis Bank-Mikkelsen': 'Præst /              Clergyman'}\"\r\ntt1391116,\"{'Michael Sheen': 'Tommy Atkins', 'Tom Wlaschiha': 'Albrecht', 'Alexander Dreymon': 'Steiner       (as Alexander Doetsch)', 'Andrea Riseborough': 'Sarah', 'Iwan Rheon': 'George', 'Kimberley Nixon': 'Bethan', 'Stanislav Yanevski': 'Bernhardt       (as Stanislav Ianevski)', 'Anatole Taubman': 'Sebald', 'Melanie Walters': 'Helen Roberts', 'Jassa Ahluwalia': 'Russian Partisan       (voice)', 'Sharon Morgan': 'Maggie', 'Simon Armstrong': \"\"George's Father\"\", 'Tomos Eames': 'Tom Lewis', 'Matt Hookings': 'German Soldier', 'George Taylor': 'Gernot'}\"\r\ntt2586118,\"{'Kevin Janssens': 'Kenneth', 'Jeroen Perceval': 'Dave', 'Veerle Baetens': 'Sylvie', 'Jan Bijvoet': 'Stef', 'Viviane de Muynck': 'Mariette', 'Sam Louwyck': 'Joyce', 'Peter Van den Begin': 'Robert', 'Eric Godon': 'Gérard', 'Rachid El Ghazaoui': \"\"Chalid       (as Rachid 'Appa' El Ghazaoui)\"\", 'Nico Sturm': 'Danny', 'Luc Nuyens': 'Moderator hulpgroep', 'Brit Van Hoof': 'Cindy', 'Uwamungu Cornelis': 'Chris       (as Cornelis Mungu)', 'Caroline Stas': 'Politieagenten', 'Jacqueline Pluche': 'Politieagenten'}\"\r\ntt3700392,\"{'Anuk Steffen': 'Heidi', 'Anna Schinz': 'Dete', 'Lilian Naef': 'Barbel', 'Bruno Ganz': 'Alpöhi', 'Peter Jecklin': 'Pfarrer', 'Christoph Gaugler': 'Senner', 'Quirin Agrippi': 'Geissenpeter', 'Rebecca Indermaur': 'Geissenpeterin', 'Monica Gubser': 'Grossmutter', 'Arthur Bühler': 'Dörfler', 'Marietta Jemmi': 'Frau im Dorf', 'Peter Lohmeyer': 'Sebastian', 'Katharina Schüttler': 'Fräulein Rottenmeier', 'Isabelle Ottmann': 'Klara', 'Jella Haase': 'Tinette'}\"\r\ntt0277027,\"{'Sean Penn': 'Sam Dawson', 'Michelle Pfeiffer': 'Rita', 'Dakota Fanning': 'Lucy', 'Dianne Wiest': 'Annie', 'Loretta Devine': 'Margaret Calgrove', 'Richard Schiff': 'Turner', 'Laura Dern': 'Randy Carpenter', 'Brad Silverman': 'Brad       (as Brad Allan Silverman)', 'Joseph Rosenberg': 'Joe', 'Stanley DeSantis': 'Robert', 'Doug Hutchison': 'Ifty', 'Rosalind Chao': 'Lily', 'Ken Jenkins': 'Judge McNeily', 'Wendy Phillips': 'Miss Wright', 'Mason Lucero': 'Conner Rhodes'}\"\r\ntt0106701,\"{'Walter Matthau': 'Mr. Wilson', 'Mason Gamble': 'Dennis Mitchell', 'Joan Plowright': 'Martha Wilson', 'Christopher Lloyd': 'Switchblade Sam', 'Lea Thompson': 'Alice Mitchell', 'Robert Stanton': 'Henry Mitchell', 'Amy Sakasitz': 'Margaret Wade', 'Kellen Hathaway': 'Joey', 'Paul Winfield': 'Chief of Police', 'Natasha Lyonne': 'Polly', 'Devin Ratray': 'Mickey', 'Hank Johnston': 'Gunther', 'Melinda Mullins': 'Andrea', 'Billie Bird': 'Edith Butterwell', 'Bill Erwin': 'Edward Little'}\"\r\ntt0101635,\"{'Jim Belushi': 'Bill Dancer       (as James Belushi)', 'Kelly Lynch': 'Grey Ellison', 'Alisan Porter': 'Curly Sue', 'John Getz': 'Walker McCormick', 'Fred Dalton Thompson': 'Bernard Oxbar', 'Cameron Thor': \"\"Maitre d'\"\", 'Branscombe Richmond': 'Albert', 'Steve Carell': 'Tesio       (as Steven Carell)', 'Gail Boggs': 'Anise Hall', 'Burke Byrnes': 'Dr. Maxwell', 'Viveka Davis': 'Trina', 'Barbara Tarbuck': 'Mrs. Arnold', 'Edie McClurg': 'Secretary', 'Charles Adams': 'Prison Guard', 'James W. Boinski': 'Pawnbroker'}\"\r\ntt0094027,\"{'Edward James Olmos': 'Jaime Escalante', 'Estelle Harris': 'Secretary', 'Mark Phelan': 'Cop', 'Virginia Paris': 'Raquel Ortega', 'Eliot': 'Tito       (as Mark Eliot)', 'Adelaida Alvarez': 'Sexy Girl', 'Will Gotay': 'Pancho', 'Patrick Baca': 'Javier', 'Ingrid Oliu': 'Lupe', 'Carmen Argenziano': 'Molina', 'Richard Martinez': 'Heavy Metal Boy', 'Mark Everett': 'Heavy Metal Boy', 'Tyde Kierney': 'Joe Goodell', 'Rosanna DeSoto': 'Fabiola Escalante       (as Rosana De Soto)', 'Bodie Olmos': 'Fernando Escalante'}\"\r\ntt0120094,\"{'Jennifer Lopez': 'Selena Quintanilla', 'Jackie Guerra': 'Suzette Quintanilla', 'Constance Marie': 'Marcela Quintanilla', 'Alex Meneses': 'Sara       (as Alexandra Meneses)', 'Jon Seda': 'Chris Perez', 'Edward James Olmos': 'Abraham Quintanilla', 'Jacob Vargas': 'Abie Quintanilla', 'Pete Astudillo': \"\"Himself - Dinos 1990's\"\", 'Rueben Gonzáles': \"\"Joe Ojeda - Dinos 1990's       (as Ruben Gonzalez)\"\", 'Ricky Vela': \"\"Himself - Dinos 1990's\"\", 'Don Shelton': 'Stage Dancer', 'Richard Emanuelle': 'Concert Reporter       (as Richard Emanuele)', 'Panchito Gómez': 'Young Abraham - Dinos 1961       (as Panchito Gomez)', 'Richard Coca': 'Bobby - Dinos 1961', 'George Perez': 'Seff - Dinos 1961'}\"\r\ntt0817230,\"{'Jessica Alba': 'Morley Clarkson', 'Kathy Bates': 'Susan', 'Jessica Biel': 'Kara Monahan', 'Bradley Cooper': 'Holden', 'Eric Dane': 'Sean Jackson', 'Patrick Dempsey': 'Dr. Harrison Copeland', 'Hector Elizondo': 'Edgar', 'Jamie Foxx': 'Kelvin Moore', 'Jennifer Garner': 'Julia Fitzpatrick', 'Topher Grace': 'Jason', 'Anne Hathaway': 'Liz', 'Carter Jenkins': 'Alex', 'Ashton Kutcher': 'Reed Bennett', 'Queen Latifah': 'Paula Thomas', 'Taylor Lautner': 'Willy'}\"\r\ntt0065446,\"{'Jason Robards': 'Cable Hogue', 'Stella Stevens': 'Hildy', 'David Warner': 'Reverend Joshua Douglas Sloan', 'Strother Martin': 'Bowen', 'Slim Pickens': 'Ben Fairchild', 'L.Q. Jones': 'Taggart', 'Peter Whitney': 'Cushing', 'R.G. Armstrong': 'Quittner', 'Gene Evans': 'Clete', 'William Mims': 'Jensen', 'Kathleen Freeman': 'Mrs. Jensen', \"\"Susan O'Connell\"\": 'Claudia', 'Vaughn Taylor': 'Powell', 'Max Evans': 'Webb Seely', 'James Anderson': 'Preacher'}\"\r\ntt0090856,\"{'Robin Williams': 'Jack Moniker', \"\"Peter O'Toole\"\": 'Governor Anthony Cloyden Hayes', 'Rick Moranis': 'Barry Nye', 'Jimmy Cliff': 'Ernest Reed', 'Twiggy': 'Phillipa Lloyd', 'Adolph Caesar': 'Prime Minister Solomon Gundy', 'Eugene Levy': 'Barry Steinberg', 'Joanna Cassidy': 'Terry Hamlin', 'Andrea Martin': 'Linda White', 'Brian Doyle-Murray': 'Voit Zerbe', 'Joe Flaherty': 'Pilot', 'Steven Kampmann': 'Randy White', 'Robin Duke': 'Mary Lou', 'Mary Gross': 'Jackie', 'Simon Jones': 'Toby Prooth'}\"\r\ntt0094921,\"{'Amy Irving': 'Isabelle Grossman', 'Peter Riegert': 'Sam Posner', 'Reizl Bozyk': 'Bubbie Kantor', 'Jeroen Krabbé': 'Anton Maes', 'Sylvia Miles': 'Hannah Mandelbaum', 'George Martin': 'Lionel', 'John Bedford Lloyd': 'Nick', 'Claudia Silver': 'Cecilia Monk', 'David Hyde Pierce': 'Mark       (as David Pierce)', 'Rosemary Harris': 'Pauline Swift', 'Suzzy Roche': 'Marilyn Cohen', 'Amy Wright': 'Ricki', 'Faye Grant': 'Candyce', 'Deborah Offner': 'Karen', 'Kathleen Wilhoite': 'Myla Bondy'}\"\r\ntt0085333,\"{'Keith Gordon': 'Arnie Cunningham', 'John Stockwell': 'Dennis Guilder', 'Alexandra Paul': 'Leigh Cabot', 'Robert Prosky': 'Will Darnell', 'Harry Dean Stanton': 'Detective Rudolph Junkins', 'Christine Belford': 'Regina Cunningham', 'Roberts Blossom': 'George LeBay', 'William Ostrander': 'Buddy Repperton', 'David Spielberg': 'Mr. Casey', 'Malcolm Danare': 'Moochie', 'Steven Tash': 'Rich', 'Stuart Charno': 'Don Vandenberg', 'Kelly Preston': 'Roseanne', 'Marc Poppel': 'Chuck', 'Robert Darnell': 'Michael Cunningham'}\"\r\ntt0118661,\"{'Ralph Fiennes': 'John Steed', 'Uma Thurman': 'Dr. Emma Peel', 'Sean Connery': 'Sir August de Wynter', 'Patrick Macnee': 'Invisible Jones       (voice)', 'Jim Broadbent': 'Mother', 'Fiona Shaw': 'Father', 'Eddie Izzard': 'Bailey', 'Eileen Atkins': 'Alice', 'John Wood': 'Trubshaw', 'Carmen Ejogo': 'Brenda', 'Keeley Hawes': 'Tamara', 'Shaun Ryder': 'Donavan', 'Nicholas Woodeson': 'Dr. Darling', 'Michael Godley': 'Butler', 'Richard Lumsden': \"\"Boodle's Porter\"\"}\"\r\ntt2318092,\"{'Alex Pettyfer': 'David Elliot', 'Gabriella Wilde': 'Jade Butterfield', 'Bruce Greenwood': 'Hugh Butterfield', 'Joely Richardson': 'Anne Butterfield', 'Robert Patrick': 'Harry Elliot', 'Rhys Wakefield': 'Keith Butterfield', 'Dayo Okeniyi': 'Mace', 'Emma Rigby': 'Jenny', 'Anna Enger Ritch': 'Sabine       (as Anna Enger)', 'Fabianne Therese': 'Checka', 'Mike Bland': \"\"Harry's Friend\"\", 'Jake Schultz': \"\"Harry's Friend\"\", 'Jeff Pope': 'Mechanic       (as Jeff Wayne Pope)', 'Zechariah Pierce': 'Waiter', 'Ryan Lewis': 'Maserati Driver'}\"\r\ntt1582465,\"{'Kodi Smit-McPhee': 'David Portnoy', 'James Le Gros': 'Donald Portnoy       (as James LeGros)', 'Daniela Lavender': 'Juliana Santos', 'Katie Chang': 'Ellen Reeves', 'Alex Wolff': 'Timmy Barsky', 'Zandi Holup': 'Evelyn Reed', 'Michael Chen': 'Peter Nessbaum', 'Tobias Campbell': 'Rob Lindau', 'Joel Van Liew': 'Mr. Edbrook', 'Daniel Berger': 'Scarsdale High School Capt       (as Daniel G.S. Berger)', 'Ben Kingsley': 'Lawrence Konrad', 'Adam Barrie': 'Eric', 'Jessica Perez': 'Trish', 'Ethan Cohn': 'Jeff', 'Lucas Near-Verbrugghe': 'Trent'}\"\r\ntt0035015,\"{'Joseph Cotten': 'Eugene Morgan', 'Dolores Costello': 'Isabel Amberson Minafer', 'Anne Baxter': 'Lucy Morgan', 'Tim Holt': 'George Minafer', 'Agnes Moorehead': 'Fanny Minafer', 'Ray Collins': 'Jack Amberson', 'Erskine Sanford': 'Roger Bronson', 'Richard Bennett': 'Major Amberson', 'Orson Welles': 'Narrator       (voice)'}\"\r\ntt0234829,\"{'Freddie Prinze Jr.': 'Ryan Dunne', 'Jessica Biel': 'Tenley Parrish', 'Fred Ward': 'Sean Dunne', 'Matthew Lillard': 'Billy Brubaker', 'Brian Dennehy': 'John Schiffner', 'Jason Gedrick': 'Mike Dunne', 'Brittany Murphy': 'Dede Mulligan', 'Bruce Davison': 'Rand Parrish', 'Marc Blucas': 'Miles Dalrymple', 'Wilmer Valderrama': 'Mickey Dominguez', 'Corey Pearson': 'Eric Van Leemer', 'Christian Kane': 'Dale Robin', 'Cedric Pendleton': 'Calvin Knight', 'Gabriel Mann': 'Auggie Mulligan', 'Jed Rhein': 'Pete       (as Jed Robert Rhein)'}\"\r\ntt0056218,\"{'Frank Sinatra': 'Major Bennett Marco', 'Laurence Harvey': 'Raymond Shaw', 'Janet Leigh': 'Eugenie Rose Chaney', 'Angela Lansbury': 'Mrs. Eleanor Shaw Iselin', 'Henry Silva': 'Chunjin', 'James Gregory': 'Senator John Yerkes Iselin', 'Leslie Parrish': 'Jocelyn Jordan', 'John McGiver': 'Senator Thomas Jordan', 'Khigh Dhiegh': 'Dr. Yen Lo', 'James Edwards': 'Corporal Allen Melvin', 'Douglas Henderson': 'Colonel Milt', 'Albert Paulsen': 'Zilkov', 'Barry Kelley': 'Secretary of Defense', 'Lloyd Corrigan': 'Holborn Gaines', 'Madame Spivy': 'Female Berezovo'}\"\r\ntt0057193,\"{'Spencer Tracy': 'Capt. T. G. Culpepper', 'Milton Berle': 'J. Russell Finch', 'Sid Caesar': 'Melville Crump', 'Buddy Hackett': 'Benjy Benjamin', 'Ethel Merman': 'Mrs. Marcus', 'Mickey Rooney': 'Ding Bell', 'Dick Shawn': 'Sylvester Marcus', 'Phil Silvers': 'Otto Meyer', 'Terry-Thomas': 'J. Algernon Hawthorne', 'Jonathan Winters': 'Lennie Pike', 'Edie Adams': 'Monica Crump', 'Dorothy Provine': 'Emeline Marcus-Finch', \"\"Eddie 'Rochester' Anderson\"\": 'Second Cab Driver', 'Jim Backus': 'Tyler Fitzgerald', 'Ben Blue': 'Biplane Pilot'}\"\r\ntt1488555,\"{'Ryan Reynolds': 'Mitch Planko', 'Jason Bateman': 'Dave Lockwood', 'Leslie Mann': 'Jamie Lockwood', 'Olivia Wilde': 'Sabrina McKay', 'Alan Arkin': \"\"Mitch's Dad\"\", 'Mircea Monroe': 'Tatiana', 'Gregory Itzin': 'Flemming Steel', 'Ned Schmidtke': 'Ted Norton', 'Ming Lo': 'Ken Kinkabe', 'Sydney Rouviere': 'Cara Lockwood', 'Craig Bierko': 'Valtan', 'Dax Griffin': 'Blow-Dried Goon', 'Andrea Moore': 'Sophia', 'Matthew Cornwell': 'Parks Foreman', \"\"Taaffe O'Connell\"\": 'Mona'}\"\r\ntt0423977,\"{'Anton Yelchin': 'Charlie Bartlett', 'Robert Downey Jr.': 'Nathan Gardner', 'Hope Davis': 'Marilyn Bartlett', 'Kat Dennings': 'Susan Gardner', 'Tyler Hilton': 'Murphy Bivens', 'Mark Rendall': 'Kip Crombwell', 'Dylan Taylor': 'Len Arbuckle', 'Megan Park': 'Whitney Drummond', 'Jake Epstein': 'Dustin Lauderbach', 'Jonathan Malen': 'Jordan Sunder', 'Derek McGrath': 'Superintendent Sedgwick', 'Stephen Young': 'Dr. Stan Weathers', 'Ishan Davé': 'Henry Freemont', 'David Lawrence Brown': 'Officer Hansen       (as David Brown)', 'Eric Fink': 'Thomas'}\"\r\ntt0245046,\"{'Cate Blanchett': 'Charlotte Gray', 'James Fleet': 'Richard Cannerly', 'Abigail Cruttenden': 'Daisy', 'Charlotte McDougall': 'Sally', 'Rupert Penry-Jones': 'Peter Gregory       (as Rupert Penry Jones)', 'Robert Hands': 'Borowski', 'Tom Goodman-Hill': 'Business Man at Party', 'Michael Fitzgerald': 'Business Man at Party', 'Hugh Ross': 'Psychiatrist', 'Martin Oldfield': 'Assault Course Instructor', 'Nicholas Farrell': 'Mr. Jackson', 'Mike Burnside': 'Morse Code Instructor', 'Damian Myerscough': 'Gun Instructor', 'Miranda Bell': 'Female Instructor', 'Angus Wright': 'Agent'}\"\r\ntt0100486,\"{'Glenn Close': 'Sunny von Bulow', 'Jeremy Irons': 'Claus von Bulow', 'Ron Silver': 'Alan Dershowitz', 'Annabella Sciorra': 'Sarah', 'Uta Hagen': 'Maria', 'Fisher Stevens': 'David Marriott', 'Jack Gilpin': 'Peter MacIntosh', 'Christine Baranski': 'Andrea Reynolds', 'Stephen Mailer': 'Elon Dershowitz', 'Christine Dunford': 'Ellen', 'Felicity Huffman': 'Minnie', 'Mano Singh': 'Raj', 'Johann Carlo': 'Nancy', 'Keith Reddin': 'Dobbs', 'Alan Pottinger': 'Chuck'}\"\r\ntt0093660,\"{'Barbra Streisand': 'Claudia Draper', 'Richard Dreyfuss': 'Aaron Levinsky', 'Maureen Stapleton': 'Rose Kirk', 'Karl Malden': 'Arthur Kirk', 'Eli Wallach': 'Dr. Herbert A. Morrison', 'Robert Webber': 'Francis MacMillan', 'James Whitmore': 'Judge Stanley Murdoch', 'Leslie Nielsen': 'Allen Green', 'William Prince': 'Clarence Middleton', 'Dakin Matthews': '1st Judge', 'Paul Benjamin': 'Harry Harrison', 'Warren Manzi': 'Saul Kreiglitz', 'Elizabeth Hoffman': 'Dr. Johnson', 'Castulo Guerra': 'Dr. Arantes', 'Stacy Bergman': '16 year-old Claudia'}\"\r\ntt0120458,\"{'Jamie Lee Curtis': 'Kit Foster', 'William Baldwin': 'Steve Baker', 'Donald Sutherland': 'Captain Robert Everton', 'Joanna Pacula': 'Nadia', 'Marshall Bell': 'J.W. Woods Jr.', 'Sherman Augustus': 'Richie', 'Cliff Curtis': 'Hiko', 'Julio Oscar Mechoso': 'Squeaky', 'Yuri Chervotkin': 'Colonel Kominski', 'Keith Flippen': 'Captain Lonya Rostov', 'Olga Rzhepetskaya-Retchin': 'Female Cosmonaut', 'Levani': 'Captain Alexi', 'David Eggby': 'Norfolk Captain'}\"\r\ntt1564585,\"{'Eric Balfour': 'Jarrod', 'Scottie Thompson': 'Elaine', 'Brittany Daniel': 'Candice', 'Crystal Reed': 'Denise', 'Neil Hopkins': 'Ray', 'David Zayas': 'Oliver', 'Donald Faison': 'Terry', 'Robin Gammell': 'Walt', 'Tanya Newbould': 'Jen', 'J. Paul Boehmer': 'Colin', 'Phet Mahathongdy': \"\"Airplane Mom /              Bartender       (as Phet Mahathongdy O'Donnell)\"\", 'Byron McIntyre': 'Limo Driver', 'Jackie Marin': 'Girl in Pool', 'Tony Black': 'Guy at Party', 'Eliza Till': 'Girl at Party'}\"\r\ntt0097500,\"{'Tom Selleck': 'Phil Blackwood', 'Paulina Porizkova': 'Nina Ionescu', 'William Daniels': 'Sam', 'James Farentino': 'Frank Polito', 'Hurd Hatfield': 'Troppa', 'Ronald Guttman': \"\"'Lucy' Comanescu\"\", 'Victor Argo': 'Avram', 'Patrick Wayne': 'Gary Blackwood', 'Tess Harper': 'Sally Blackwood', 'Bill Smitrovich': 'Farrell', 'Bobo Lewis': 'Rose', 'Jane Welch': 'Millie', 'Austin Hay': 'Oliver', 'W. Benson Terry': 'FX', 'Joan Copeland': 'Audrey'}\"\r\ntt0120787,\"{'Michael Douglas': 'Steven Taylor', 'Gwyneth Paltrow': 'Emily Bradford Taylor', 'Viggo Mortensen': 'David Shaw', 'David Suchet': 'Mohamed Karaman', 'Sarita Choudhury': 'Raquel Martinez', 'Michael P. Moran': 'Bobby Fain', 'Novella Nelson': 'Ambassador Alice Wills', 'Constance Towers': 'Sandra Bradford', 'Will Lyman': 'Jason Gates', 'Maeve McGuire': 'Ann Gates', 'Stephen Singer': 'Effete Man at Met', 'Laurinda Barrett': 'Met Woman #1', \"\"Aideen O'Kelly\"\": 'Met Woman #2', 'Reed Birney': 'Merchant Prince #1', 'Robert Vincent Smith': 'Merchant Prince #2'}\"\r\ntt0113870,\"{'Christian Slater': 'James Stamphill', 'Kevin Bacon': 'Henri Young', 'Gary Oldman': 'Associate Milton Glenn', 'Embeth Davidtz': 'Mary McCasslin', 'William H. Macy': 'William McNeil       (as Bill Macy)', 'Stephen Tobolowsky': 'Mr. Henkin', 'Brad Dourif': 'Byron Stamphill', 'R. Lee Ermey': 'Judge Clawson', 'Mia Kirshner': 'Adult Rosetta Young', 'Ben Slack': 'Jerry Hoolihan', 'Stefan Gierasch': 'Warden James Humson', 'Kyra Sedgwick': 'Blanche', 'Alex Bookston': 'Alcatraz Doc       (as Alexander Bookston)', 'Richie Allan': 'Jury Foreman', 'Herb Ritts': 'Mike Kelly'}\"\r\ntt0444682,\"{'Hilary Swank': 'Katherine', 'David Morrissey': 'Doug', 'Idris Elba': 'Ben', 'AnnaSophia Robb': 'Loren McConnell', 'Stephen Rea': 'Father Costigan', 'William Ragsdale': 'Sheriff Cade', 'John McConnell': 'Mayor Brooks', 'David Jensen': 'Jim Wakeman', 'Yvonne Landry': 'Brynn Wakeman', 'Samuel Garland': 'William Wakeman', 'Myles Cleveland': 'Kyle Wakeman', 'Andrea Frankle': 'Maddie McConnell', 'Mark Lynch': 'Brody McConnell', 'Stuart Greer': 'Gordon', 'Lara Grice': 'Isabelle'}\"\r\ntt1139668,\"{'Odette Annable': 'Casey Beldon       (as Odette Yustman)', 'Gary Oldman': 'Rabbi Sendak', 'Cam Gigandet': 'Mark', 'Meagan Good': 'Romy', 'Idris Elba': 'Arthur Wyndham', 'Jane Alexander': 'Sofi Kozma', 'Atticus Shaffer': 'Matty Newton', 'James Remar': 'Gordon Beldon', 'Carla Gugino': 'Janet Beldon', 'C.S. Lee': 'Dr. Lester Caldwell', 'Rhys Coiro': 'Mr. Shields', 'Michael Sassone': 'Eli Walker', 'Ethan Cutkosky': 'Barto', 'Craig J. Harris': 'Rick Hesse       (as Craig Harris)', 'Rachel Brosnahan': 'Lisa'}\"\r\ntt1190080,\"{'John Cusack': 'Jackson Curtis', 'Amanda Peet': 'Kate Curtis', 'Chiwetel Ejiofor': 'Adrian Helmsley', 'Thandie Newton': 'Laura Wilson', 'Oliver Platt': 'Carl Anheuser', 'Tom McCarthy': 'Gordon Silberman', 'Woody Harrelson': 'Charlie Frost', 'Danny Glover': 'President Thomas Wilson', 'Liam James': 'Noah Curtis', 'Morgan Lily': 'Lilly Curtis', 'Zlatko Buric': 'Yuri Karpov', 'Beatrice Rosen': 'Tamara', 'Alexandre Haussmann': 'Alec', 'Philippe Haussmann': 'Oleg', 'Johann Urb': 'Sasha'}\"\r\ntt1385826,\"{'Matt Damon': 'David Norris', 'Emily Blunt': 'Elise Sellas', 'Lisa Thoreson': 'Suburban Mom', 'Florence Kastriner': 'Suburban Mom', 'Michael Kelly': 'Charlie Traynor', 'Phyllis MacBryde': 'Suburban Neighbor', 'Natalie Carter': 'Suburban Neighbor       (as Natalie E. Carter)', 'Chuck Scarborough': 'Chuck Scarborough', 'Jon Stewart': 'Jon Stewart', 'Gregory P. Hitchen': 'U.S. Coast Guard Officer       (as Capt. Gregory P. Hitchen)', 'Darrell Lenormand': 'Upstate Farmer       (as Darrell James LeNormand)', 'Michael Bloomberg': 'Mayor Michael R. Bloomberg       (as Mayor Michael R. Bloomberg)', 'Kar': 'Political Consultant', 'RJ Konner': 'Political Consultant', 'Susan D. Michaels': 'Reporter'}\"\r\ntt2910814,\"{'Patrick Davidson': 'Boy Playing Claw Game', 'Brenton Thwaites': 'Nic', 'Olivia Cooke': 'Haley', 'Beau Knapp': 'Jonah', 'Jeffrey Grover': 'Gas Station Clerk', 'Laurence Fishburne': 'Damon', 'Roy Kenny': 'Hazmat 1', 'Timothy Holmes': 'Hazmat 2', 'Ricardo Campos': 'Hazmat 3', 'Drew Sykes': 'Hazmat 4', 'Lin Shaye': 'Mirabelle', 'Robert Longstreet': 'James'}\"\r\ntt2024469,\"{'Liam Neeson': 'Bill Marks', 'Julianne Moore': 'Jen Summers', 'Scoot McNairy': 'Tom Bowen', 'Michelle Dockery': 'Nancy', 'Nate Parker': 'Zack White', 'Corey Stoll': 'Austin Reilly', \"\"Lupita Nyong'o\"\": 'Gwen', 'Omar Metwally': 'Dr. Fahim Nasir', 'Jason Butler Harner': 'Kyle Rice', 'Linus Roache': 'David McMillan', 'Shea Whigham': 'Agent Marenick', 'Anson Mount': 'Jack Hammond', 'Quinn McColgan': 'Becca', 'Corey Hawkins': 'Travis Mitchell', 'Frank Deal': 'Charles Wheeler'}\"\r\ntt0365907,\"{'Liam Neeson': 'Matt Scudder', 'Maurice Compte': 'Danny Ortiz', 'Patrick McDade': 'Bar Owner       (as Patrick F. McDade)', 'Luciano Acuna Jr.': 'Dominican Banger #1', 'Hans Marrero': 'Dominican Banger #2', 'Laura Birn': 'Leila Alvarez', 'David Harbour': 'Ray', 'Adam David Thompson': 'Albert', 'Boyd Holbrook': 'Peter Kristo', 'Kim Rosen': 'Waitress - Jenny', 'Dan Stevens': 'Kenny Kristo', 'Eric Nelsen': 'Howie', 'Jon Goracy': 'Bag Boy', 'Razane Jammal': 'Carrie Kristo', 'Stephanie Andujar': 'Cashier'}\"\r\ntt1216491,\"{'Jeremy Renner': 'Gary Webb', 'Robert Patrick': 'Ronald J. Quail', 'Jena Sims': \"\"Quail's Girlfriend\"\", 'Robert Pralgo': 'L.A. Sheriff', 'Hajji Golightly': 'DEA Agent', 'Ted Huckabee': 'Bob', 'Mary Elizabeth Winstead': 'Anna Simons', 'Lucas Hedges': 'Ian Webb', 'Rosemarie DeWitt': 'Sue Webb', 'Matt Lintz': 'Eric Webb', 'Parker Douglas': 'Christine Webb', 'Kai Schmoll': 'Sacramento Journalist', 'Joshua Close': 'Rich Kline       (as Josh Close)', 'Paz Vega': 'Coral Baca', 'Aaron Farb': 'Rafael Cornejo'}\"\r\ntt0054135,\"{'Frank Sinatra': 'Danny Ocean', 'Dean Martin': 'Sam Harmon', 'Sammy Davis Jr.': 'Josh Howard', 'Peter Lawford': 'Jimmy Foster', 'Angie Dickinson': 'Beatrice Ocean', 'Richard Conte': 'Anthony Bergdorf', 'Cesar Romero': 'Duke Santos', 'Patrice Wymore': 'Adele Ekstrom', 'Joey Bishop': \"\"'Mushy' O'Connors\"\", 'Akim Tamiroff': 'Spyros Acebos', 'Henry Silva': 'Roger Corneal', 'Ilka Chase': 'Mrs. Restes', 'Buddy Lester': 'Vince Massler', 'Richard Benedict': \"\"'Curly' Steffans\"\", 'Jean Willes': 'Mrs. Bergdorf'}\"\r\ntt2349144,\"{'Ben Mendelsohn': 'Gerry', 'Yvonne Landry': 'Louise', 'Anthony Howard': 'Larry', 'Ryan Reynolds': 'Curtis', 'Jayson Warner Smith': 'Clifford', 'Kerry Cahill': 'Riverboat Waitress', 'Jane McNeill': \"\"'Bloody Mary' Kate\"\", 'Jason Shaffette': 'Chuck Poker Dealer', 'P.J. Marshall': 'Dale', 'Stephanie Honoré': 'Denise', 'Teri Wyble': 'Home Buying Wife', 'Hunter Burke': 'Home Buying Husband', 'Randy Austin': 'Big Winner', 'Jared Bankens': 'Skinny Thug', 'Alfre Woodard': 'Sam'}\"\r\ntt0264935,\"{'Sandra Bullock': 'Cassie Mayweather', 'Ben Chaplin': 'Sam Kennedy', 'Ryan Gosling': 'Richard Haywood', 'Michael Pitt': 'Justin Pendleton', 'Agnes Bruckner': 'Lisa Mills', 'Chris Penn': 'Ray', 'R.D. Call': 'Captain Rod Cody', 'Tom Verica': 'Al Swanson', 'Janni Brenn': 'Ms. Elder', 'John Vickery': 'Restaurant Manager', 'Michael Canavan': 'Mr. Chechi', 'Krista Carpenter': 'Olivia Lake', 'Neal Matarazzo': 'Male Officer in Flashback', 'Adilah Barnes': 'Lab Technician', 'Jim Jansen': 'Lawyer'}\"\r\ntt2377322,\"{'Eric Bana': 'Sarchie', 'Edgar Ramírez': 'Mendoza', 'Olivia Munn': 'Jen', 'Chris Coy': 'Jimmy', 'Dorian Missick': 'Gordon', 'Sean Harris': 'Santino', 'Joel McHale': 'Butler', 'Mike Houston': 'Nadler', 'Lulu Wilson': 'Christina', 'Olivia Horton': 'Jane', 'Scott Johnsen': 'Lt. Griggs', 'Daniel Sauli': 'Salvatore', 'Antoinette LaVecchia': 'Serafina', 'Aidan Gemme': 'Mario', 'Jenna Gavigan': 'Lucinda'}\"\r\ntt0102915,\"{'Dolph Lundgren': 'Sgt. Chris Kenner', 'Brandon Lee': 'Johnny Murata', 'Cary-Hiroyuki Tagawa': 'Funekei Yoshida', 'Tia Carrere': 'Minako Okeya', 'Toshishiro Obata': 'Sato', 'Philip Tan': 'Tanaka', 'Rodney Kageyama': 'Eddie', 'Ernie Lively': 'Detective Nelson', 'Renee Allman': 'Angel Mueller       (as Renee Griffin)', 'Reid Asato': 'Muto', 'Takayo Fischer': 'Mama Yamaguchi', 'Simon Rhee': 'Ito', 'Vernee Watson': 'Nonnie Russell - Coroner       (as Vernee Watson-Johnson)', 'Lenny Imamura': 'Kickboxer #1', 'Roger Yuan': 'Kickboxer #2'}\"\r\ntt0367652,\"{'Rob Schneider': 'Deuce Bigalow', 'Eddie Griffin': 'T.J. Hicks', 'Jeroen Krabbé': 'Gaspar Voorsboch', 'Til Schweiger': 'Heinz Hummer', 'Douglas Sills': 'Chadsworth Buckingham, III', 'Carlos Ponce': 'Rodrigo', 'Charles Keating': 'Gian-Carlo', 'Hanna Verboom': 'Eva', 'Alex Dimitriades': 'Enzo Giarraputo', 'Kostas Sommer': 'Assapopoulos Mariolis', 'Federico Dordei': 'Mahmoud', 'Oded Fehr': 'Antoine Laconte', 'Tony Fish': \"\"Lil' Kim       (as Topper)\"\", 'Elisabetta Canalis': 'Lady in Castle', 'Hilton Myburgh': 'Diego Verga'}\"\r\ntt0374536,\"{'Nicole Kidman': 'Isabel Bigelow /              Samantha', 'Will Ferrell': 'Jack Wyatt /              Darrin', 'Shirley MacLaine': 'Iris Smythson /              Endora', 'Michael Caine': 'Nigel Bigelow', 'Jason Schwartzman': 'Ritchie', 'Kristin Chenoweth': 'Maria Kelly', 'Heather Burns': 'Nina', 'Jim Turner': 'Larry', 'Stephen Colbert': 'Stu Robison', 'David Alan Grier': 'Jim Fields', 'Michael Badalucco': 'Joey Props', 'Carole Shelley': 'Aunt Clara', 'Steve Carell': 'Uncle Arthur', 'Katie Finneran': 'Sheila Wyatt', 'James Lipton': 'James Lipton'}\"\r\ntt0095925,\"{'Lance Henriksen': 'Ed Harley', 'Jeff East': 'Chris', \"\"John D'Aquino\"\": 'Joel       (as John DiAquino)', 'Kimberly Ross': 'Kim', 'Joel Hoffman': 'Steve', 'Cynthia Bain': 'Tracy', 'Kerry Remsen': 'Maggie', 'Florence Schauffler': 'Haggis', 'Brian Bremer': 'Bunt', \"\"George 'Buck' Flower\"\": 'Mr. Wallace       (as Buck Flower)', 'Matthew Hurley': 'Billy Harley', 'Lee de Broux': 'Tom Harley       (as Lee DeBroux)', 'Peggy Walton-Walker': 'Ellie Harley       (as Peggy Walton Walker)', 'Chance Michael Corbitt': 'Eddie Harley       (as Chance Corbitt Jr.)', 'Dick Warlock': 'Clayton Heller       (as Richard Warlock)'}\"\r\ntt2788710,\"{'James Franco': 'Dave Skylark', 'Seth Rogen': 'Aaron Rapaport', 'Lizzy Caplan': 'Agent Lacey', 'Randall Park': 'President Kim', 'Diana Bang': 'Sook', 'Timothy Simons': 'Malcolm', 'Reese Alexander': 'Agent Botwin', 'James Yi': 'Officer Koh', 'Paul Bae': 'Officer Yu', 'Geoff Gustafson': 'Cole', 'Dominique Lalonde': 'Jackie', 'Anesha Bailey': 'Janet', 'Anders Holm': 'Jake', 'Charles Rahi Chun': 'General Jong', 'Don Chow': 'Two-Fingered Man'}\"\r\ntt2170299,\"{'Jason Bateman': 'Guy Trilby', 'Kathryn Hahn': 'Jenny Widgeon', 'Rohan Chand': 'Chaitanya Chopra', 'Philip Baker Hall': 'Dr. Bowman', 'Allison Janney': 'Dr. Bernice Deagan', 'Ben Falcone': 'Pete Fowler', 'Steve Witting': 'Proctor at Spelling Bee', 'Beth Grant': 'Bedazzled Judge', 'Gwen Parden': 'Brace Faced Girl', 'Anjul Nigam': 'Sriram Chopra', 'Allan Miller': 'Bald Glasses Judge', 'Bob Stephenson': 'Bill Murhoff', 'Patricia Belcher': 'Ingrid', 'Matthew Zhang': 'Braden Aftergood', 'Madison Hu': 'Ling Quan'}\"\r\ntt0243655,\"{'Janeane Garofalo': 'Beth', 'David Hyde Pierce': 'Henry', 'Michael Showalter': 'Coop', 'Marguerite Moreau': 'Katie', 'Paul Rudd': 'Andy', 'Zak Orth': 'J.J.', 'Christopher Meloni': 'Gene', 'A.D. Miles': 'Gary', 'Molly Shannon': 'Gail', 'Gideon Jacobs': 'Aaron', 'Ken Marino': 'Victor', 'Joe Lo Truglio': 'Neil', 'Michael Ian Black': 'McKinley', 'Liam Norton': 'Arty', 'Amy Poehler': 'Susie'}\"\r\ntt0448157,\"{'Will Smith': 'John Hancock', 'Charlize Theron': 'Mary', 'Jason Bateman': 'Ray', 'Jae Head': 'Aaron', 'Eddie Marsan': 'Red', 'David Mattey': 'Man Mountain', 'Maetrix Fitten': 'Matrix', 'Thomas Lennon': 'Mike', 'Johnny Galecki': 'Jeremy', 'Hayley Marie Norman': 'Hottie', 'Dorothy Cecchi': 'Woman in Dive Bar', 'Michelle Lemon': 'Girl at Bus Bench', 'Akiva Goldsman': 'Executive', 'Michael Mann': 'Executive', 'Brad Leland': 'Executive'}\"\r\ntt0118750,\"{'Jamie Foxx': 'Bunz', 'Tommy Davidson': 'Rushon', 'Amy Monique Waddell': 'Arguing Woman', 'Wiley Moore': 'Arguing Man', 'Vivica A. Fox': 'Lysterine', 'Tamala Jones': 'Nikki', 'Kam Ray Chan': 'Ug Lee', 'Ric Young': 'Mr. Chiu', 'Ammie Sin': 'Yoyo', 'Scott LaRose': 'Singh', 'Bernie Mac': 'Judge Peabody', 'Olivia Yap': \"\"Judge's Woman\"\", 'Bill MacDonald': 'Hold up Man', 'John Moraitis': 'Greek Cabbie', 'Karen Robinson': 'Admitting Nurse'}\"\r\ntt0110657,\"{'Pat Morita': \"\"Miyagi       (as Noriyuki 'Pat' Morita)\"\", 'Hilary Swank': 'Julie Pierce', 'Michael Ironside': 'Dugan', 'Constance Towers': 'Louisa', 'Chris Conrad': 'Eric', \"\"Arsenio 'Sonny' Trinidad\"\": 'Abbot Monk       (as Arsenio Trinidad)', 'Michael Cavalieri': 'Ned', 'Walton Goggins': 'Charlie       (as Walt Goggins)', 'Jim Ishida': 'Tall Monk', 'Rodney Kageyama': 'Monk', 'Seth Sakai': 'Buddhist Monk', 'Eugene Boles': 'Mr. Wilkes', 'Keena Keel': 'School Clerk', \"\"Tom O'Brien\"\": 'Gabe', 'Thomas Downey': 'Morgan       (as Tom Downey)'}\"\r\ntt0120686,\"{'Julia Roberts': 'Isabel Kelly', 'Susan Sarandon': 'Jackie Harrison', 'Ed Harris': 'Luke Harrison', 'Jena Malone': 'Anna Harrison', 'Liam Aiken': 'Ben Harrison', 'Lynn Whitfield': 'Dr. P. Sweikert', 'Darrell Larson': 'Duncan Samuels', 'Mary Louise Wilson': 'Mrs. Franklin', 'Andre B. Blake': 'Cooper       (as Andre Blake)', 'Herbert Russell': 'Photo Assistant       (as Russel Harper)', 'Jack Eagle': 'Craft Service Man', 'Lu Celania Sierra': 'Photo Shoot Model', 'Lauma Zemzare': 'Photo Shoot Model', 'Holly Schenck': 'Photo Shoot Model', 'Michelle Stone': 'Photo Shoot Model'}\"\r\ntt0105121,\"{'Brandon Quintin Adams': 'Fool       (as Brandon Adams)', 'Everett McGill': 'Man', 'Wendy Robie': 'Woman', 'A.J. Langer': 'Alice', 'Ving Rhames': 'Leroy', 'Sean Whalen': 'Roach', 'Bill Cobbs': 'Grandpa Booker', 'Kelly Jo Minter': 'Ruby Williams', 'Jeremy Roberts': 'Spenser', 'Conni Marie Brazelton': 'Mary', 'Josh Coxx': 'Young Cop       (as Joshua Cox)', 'John Hostetter': 'Veteran Cop', 'John Mahon': 'Police Sergeant', 'Teresa Velarde': 'Social Worker', 'George R. Parker': 'Attic Cop'}\"\r\ntt0102492,\"{'Dan Aykroyd': 'Harry Sultenfuss', 'Jamie Lee Curtis': 'Shelly DeVoto', 'Macaulay Culkin': 'Thomas J. Sennett', 'Anna Chlumsky': 'Vada Sultenfuss', 'Richard Masur': 'Phil Sultenfuss', 'Griffin Dunne': 'Mr. Bixler', 'Ann Nelson': 'Gramoo Sultenfuss', 'Peter Michael Goetz': 'Dr. Welty', 'Jane Hallaren': 'Nurse Randall', 'Anthony R. Jones': 'Arthur', 'Tom Villard': 'Justin', 'Lara Steinick': 'Ronda', 'Kristian Truelsen': 'Charles', 'David Caprita': 'Ray', 'Jody Wilson': 'Mrs. Hunsaker'}\"\r\ntt0164912,\"{'Michael J. Fox': 'Stuart Little       (voice)', 'Geena Davis': 'Mrs. Little', 'Hugh Laurie': 'Mr. Little', 'Jonathan Lipnicki': 'George Little', 'Nathan Lane': 'Snowbell       (voice)', 'Chazz Palminteri': 'Smokey       (voice)', 'Steve Zahn': 'Monty       (voice)', 'Jim Doughan': 'Lucky /              Officer Allen       (voice)', 'David Alan Grier': 'Red       (voice)', 'Bruno Kirby': 'Mr. Stout       (voice)', 'Jennifer Tilly': 'Mrs. Stout       (voice)', 'Stan Freberg': 'Race Announcer       (voice)', 'Jeffrey Jones': 'Uncle Crenshaw', 'Connie Ray': 'Aunt Tina', 'Allyce Beasley': 'Aunt Beatrice'}\"\r\ntt0243585,\"{'Michael J. Fox': 'Stuart Little       (voice)', 'Geena Davis': 'Mrs. Little', 'Hugh Laurie': 'Mr. Little', 'Jonathan Lipnicki': 'George Little', 'Anna Hoelck': 'Martha Little', 'Ashley Hoelck': 'Martha Little', 'Nathan Lane': 'Snowbell       (voice)', 'Melanie Griffith': 'Margalo       (voice)', 'James Woods': 'Falcon       (voice)', 'Steve Zahn': 'Monty       (voice)', 'Marc John Jefferies': 'Will', 'Angelo Massagli': 'Wallace', 'Jim Doughan': 'Soccerball Coach', 'Brad Garrett': 'Plumber', 'Conan McCarty': 'Referee'}\"\r\ntt0439815,\"{'Don Thompson': 'Wally', 'Nathan Fillion': 'Bill Pardy', 'Gregg Henry': 'Jack MacReady', 'Xantha Radley': 'Uptight Mom', 'Elizabeth Banks': 'Starla Grant', 'Tania Saulnier': 'Kylie Strutemyer', 'Dustin Milligan': 'Drawing Boy', 'Michael Rooker': 'Grant Grant', 'Haig Sutherland': 'Trevor', 'Jennifer Copping': 'Margaret', 'Zak Ludwig': 'Gina Kid', 'Kathryn Kirkpatrick': 'Karaoke Woman', 'Brenda James': 'Brenda Gutierrez', 'Lorena Gale': 'Janene', 'Bart Anderson': 'Butcher'}\"\r\ntt3322364,\"{'Will Smith': 'Dr. Bennet Omalu', 'Alec Baldwin': 'Dr. Julian Bailes', 'Albert Brooks': 'Dr. Cyril Wecht', 'Gugu Mbatha-Raw': 'Prema Mutiso', 'David Morse': 'Mike Webster', 'Arliss Howard': 'Dr. Joseph Maroon', \"\"Mike O'Malley\"\": 'Daniel Sullivan', 'Eddie Marsan': 'Dr. Steve DeKosky', 'Hill Harper': 'Christopher Jones', 'Adewale Akinnuoye-Agbaje': 'Dave Duerson', 'Stephen Moyer': 'Dr. Ron Hamilton', 'Richard T. Jones': 'Andre Waters', 'Paul Reiser': 'Dr. Elliot Pellman', 'Luke Wilson': 'Roger Goodell', 'Sara Lindsey': 'Gracie'}\"\r\ntt1232200,\"{'Adam Sandler': 'Donny', 'Andy Samberg': 'Todd', 'Leighton Meester': 'Jamie', 'Vanilla Ice': 'Vanilla Ice', 'James Caan': 'Father McNally', 'Milo Ventimiglia': 'Chad', 'Blake Clark': 'Gerald', 'Meagen Fay': 'Helen', 'Tony Orlando': 'Steve Spirou', 'Will Forte': 'Phil', 'Rachel Dratch': \"\"Phil's Wife\"\", 'Nick Swardson': 'Kenny', 'Peggy Stewart': 'Grandma Delores', 'Luenell': 'Champale', 'Ciara': 'Brie'}\"\r\ntt1564367,\"{'Adam Sandler': 'Danny', 'Jennifer Aniston': 'Katherine', 'Nicole Kidman': 'Devlin Adams', 'Nick Swardson': 'Eddie', 'Brooklyn Decker': 'Palmer', 'Bailee Madison': 'Maggie', 'Griffin Gluck': 'Michael', 'Dave Matthews': 'Ian Maxtone Jones', 'Kevin Nealon': 'Adon', 'Rachel Dratch': 'Kirsten Brant', 'Allen Covert': 'Soul Patch', 'Dan Patrick': 'Tanner Patrick', 'Minka Kelly': 'Joanna Damon', 'Jackie Sandler': 'Veruca', 'Rakefet Abergel': 'Patricia'}\"\r\ntt0960144,\"{'Adam Sandler': 'Zohan', 'John Turturro': 'Phantom', 'Emmanuelle Chriqui': 'Dalia', 'Nick Swardson': 'Michael', 'Lainie Kazan': 'Gail', 'Ido Mosseri': 'Oori', 'Rob Schneider': 'Salim', 'Dave Matthews': 'James', 'Michael Buffer': 'Walbridge', 'Charlotte Rae': 'Mrs. Greenhouse', 'Sayed Badreya': 'Hamdi', 'Daoud Heidami': 'Nasi', 'Kevin Nealon': 'Kevin', 'Robert Smigel': 'Yosi', 'Dina Doron': \"\"Zohan's Mother       (as Dina Doronne)\"\"}\"\r\ntt0371246,\"{'Adam Sandler': 'John Clasky', 'Téa Leoni': 'Deborah Clasky', 'Paz Vega': 'Flor', 'Cloris Leachman': 'Evelyn', 'Shelbie Bruce': 'Cristina', 'Sarah Steele': 'Bernice', 'Ian Donovan Hyland': 'Georgie       (as Ian Hyland)', 'Victoria Luna': 'Cristina (six years old)', 'Cecilia Suárez': 'Monica       (as Cecilia Suarez)', 'Ricardo Molina': \"\"Flor's Husband\"\", 'Brenda Canela': 'Luz', 'Eddy Martin': 'Fourteen-Year-Old Boy', 'Nicole Nieth': 'Hostess at Fancy Restaurant', 'Jamie Kaler': 'Businessman', 'James Lancaster': 'Businessman'}\"\r\ntt0389860,\"{'Adam Sandler': 'Michael Newman', 'Kate Beckinsale': 'Donna Newman', 'Christopher Walken': 'Morty', 'David Hasselhoff': 'Ammer', 'Henry Winkler': 'Ted Newman', 'Julie Kavner': 'Trudy Newman', 'Sean Astin': 'Bill', 'Joseph Castanon': 'Ben Newman at 7 Years Old', 'Jonah Hill': 'Ben at 17 Years Old', 'Jake Hoffman': 'Ben Newman at 22-30 Years Old', 'Tatum McCann': 'Samantha Newman at 5 Years Old', 'Lorraine Nicholson': 'Samantha Newman at 14 Years Old', 'Katie Cassidy': 'Samantha at 27 Years Old', 'Cameron Monaghan': \"\"Kevin O'Doyle\"\", 'Jennifer Coolidge': 'Janine'}\"\r\ntt0106379,\"{'Robin Williams': 'Hector', 'Kelly Hunter': 'Deirdre', 'Maudie Johnson': 'Girl Child', 'Max Johnson': 'Boy Child', 'Robert Carlyle': 'Priest', 'Eoin McCarthy': 'Leader', 'Irvine Allen': 'Raider', 'Iain Andrew': 'Raider', 'Robert Cavanah': 'Raider', 'Tony Curran': 'Raider', 'Andrew Flanagan': 'Raider       (as Andy Flanagan)', 'Seamus Gubbins': 'Raider', 'Iain McAleese': 'Raider', 'David McGowan': 'Raider', 'Gavin Mitchell': 'Raider'}\"\r\ntt0088707,\"{'Kevin Costner': 'Marcus Sommers', 'David Marshall Grant': 'David       (as David Grant)', 'Rae Dawn Chong': 'Sarah', 'Alexandra Paul': 'Becky', 'Janice Rule': 'Mrs. Sommers', 'Luca Bercovici': 'Muzzin', 'Robert Townsend': 'Jerome', 'John Amos': 'Dr. Conrad', 'Doi Johnson': 'Randolph', 'John Garber': 'Belov', 'Jennifer Grey': 'Leslie', 'James Terry': 'Hitchhiker', 'Jessica Nelson': 'Hitchhiker', 'Tom Lawrence': 'Timekeeper', 'Brian Drebber': 'Race Announcer'}\"\r\ntt0088680,\"{'Griffin Dunne': 'Paul Hackett', 'Rosanna Arquette': 'Marcy', 'Verna Bloom': 'June', 'Tommy Chong': 'Pepe       (as Thomas Chong)', 'Linda Fiorentino': 'Kiki', 'Teri Garr': 'Julie', 'John Heard': 'Tom the Bartender', 'Cheech Marin': 'Neil', \"\"Catherine O'Hara\"\": 'Gail', 'Dick Miller': 'Waiter', 'Will Patton': 'Horst', 'Robert Plunket': 'Street Pickup', 'Bronson Pinchot': 'Lloyd', 'Rocco Sisto': 'Coffee Shop Cashier', 'Larry Block': 'Taxi Driver'}\"\r\ntt0274309,\"{'Steve Coogan': 'Tony Wilson', 'John Thomson': 'Charles', 'Paul Popplewell': 'Paul Ryder', 'Lennie James': 'Alan Erasmus', 'Shirley Henderson': 'Lindsay', 'Mark Windows': 'Johnny Rotten', 'Paddy Considine': 'Rob Gretton', 'Raymond Waring': 'Vini', 'Ron Cook': 'Derek Ryder', 'John Simm': 'Bernard Sumner', 'Danny Cunningham': 'Shaun Ryder', 'Dave Gorman': 'John the Postman', 'Ralf Little': 'Hooky (Peter Hook)', 'Andy Serkis': 'Martin Hannett', 'Nigel Pivaro': 'Actor at Granada'}\"\r\ntt0101701,\"{'John Candy': 'Jack Gable', 'Mariel Hemingway': 'Janet Dubois /              Louise', 'Emma Samms': 'Rachel Hedison /              Laura Claybourne', 'Raymond Burr': 'Carter Hedison', 'Dylan Baker': 'Blake Hedison', 'Charles Rocket': 'Ty Hedison', 'David Rasche': 'Dr. Paul Kirkwood /              Dennis', 'Andrea Thompson': 'Nurse Helen Caldwell', 'Zach Grenier': 'Mickey', 'Jerry Orbach': 'Lou Sherwood', 'Renée Taylor': 'Arlene Sherwood', 'Milt Oberman': 'Fetterman', 'Mark Boone Junior': 'Cable Man', 'Tony Steedman': 'Edward - the Butler', 'John Michael Bolger': 'Len'}\"\r\ntt0100258,\"{'Tony Todd': 'Ben', 'Patricia Tallman': 'Barbara', 'Tom Towles': 'Harry Cooper', 'McKee Anderson': 'Helen Cooper', 'William Butler': 'Tom', 'Katie Finneran': 'Judy Rose', 'Bill Moseley': 'Johnnie       (as Bill Mosley)', 'Heather Mazur': 'Sarah Cooper', 'David W. Butler': 'Hondo       (as David Butler)', 'Zachary Mott': 'Bulldog', 'Pat Reese': 'The Mourner', 'William Cameron': 'The Newsman', 'Pat Logan': 'Uncle Rege', 'Berle Ellis': 'The Flaming Zombie', 'Bill Cardille': \"\"T.V. Interviewer       (as Bill 'Chilly Billy' Cardille)\"\"}\"\r\ntt1282140,\"{'Emma Stone': 'Olive', 'Penn Badgley': 'Woodchuck Todd', 'Amanda Bynes': 'Marianne', 'Dan Byrd': 'Brandon', 'Thomas Haden Church': 'Mr. Griffith', 'Patricia Clarkson': 'Rosemary', 'Cam Gigandet': 'Micah', 'Lisa Kudrow': 'Mrs. Griffith', 'Malcolm McDowell': 'Principal Gibbons', 'Aly Michalka': 'Rhiannon', 'Stanley Tucci': 'Dill', 'Fred Armisen': 'Pastor', 'Juliette Goglia': 'Eighth Grade Olive', 'Jake Sandvig': 'Anson', 'Morgan Rusler': 'Mr. Abernathy'}\"\r\ntt0852713,\"{'Anna Faris': 'Shelley Darlingson', 'Colin Hanks': 'Oliver', 'Emma Stone': 'Natalie', 'Kat Dennings': 'Mona', 'Hugh Hefner': 'Hugh Hefner', 'Christopher McDonald': 'Dean Simmons', \"\"Beverly D'Angelo\"\": 'Mrs. Hagstrom', 'Katharine McPhee': 'Harmony', 'Rumer Willis': 'Joanne', 'Kiely Williams': 'Lilly', 'Dana Goodman': 'Carrie Mae', 'Kimberly Makkouk': 'Tanya', 'Monet Mazur': 'Cassandra', 'Tyson Ritter': 'Colby', 'Sarah Wright': 'Ashley'}\"\r\ntt0879870,\"{'Julia Roberts': 'Liz Gilbert', 'I. Gusti Ayu Puspawati': 'Nyomo', 'Hadi Subiyanto': 'Ketut Liyer', 'Billy Crudup': 'Stephen', 'Viola Davis': 'Delia Shiraz', 'A. Jay Radcliff': 'Andre', \"\"Mike O'Malley\"\": 'Andy Shiraz', 'Ashlie Atkinson': 'Bookstore Girl', 'James Franco': 'David Piccolo', 'Lisa Roberts Gillan': 'Woman in Play', \"\"Ryan O'Nan\"\": 'Play Walk-Out', 'Gita Reddy': 'The Guru', 'Dwayne Clark': 'NYU Student Boyfriend', 'Jen Kwok': 'NYU Student Girlfriend       (as Jennifer Kwok)', 'Mary Testa': 'Laundromat Gal'}\"\r\ntt1114740,\"{'Kevin James': 'Paul Blart', \"\"Keir O'Donnell\"\": 'Veck Simms', 'Jayma Mays': 'Amy', 'Raini Rodriguez': 'Maya', 'Shirley Knight': 'Mom', 'Stephen Rannazzisi': 'Stuart', 'Peter Gerety': 'Chief Brooks', 'Bobby Cannavale': 'Cmdr. James Kent', 'Adam Ferrara': 'Sergeant Howard', 'Jamal Mixon': 'Leon', 'Adhir Kalyan': 'Pahud', 'Erick Avari': 'Vijay', 'Gary Valentine': 'Karaoke Singer', 'Allen Covert': 'Jerky Security Guy', 'Mike Vallely': 'Rudolph'}\"\r\ntt0117008,\"{'Mara Wilson': 'Matilda', 'Danny DeVito': 'Mr. Wormwood /              Narrator', 'Rhea Perlman': 'Mrs. Wormwood', 'Embeth Davidtz': 'Miss Honey', 'Pam Ferris': 'Trunchbull', 'Paul Reubens': 'FBI Agent', 'Tracey Walter': 'FBI Agent', 'Brian Levinson': 'Michael', 'Jean Speegle Howard': 'Miss Phelps', 'Sara Magdalin': 'Matilda, 4 Years', 'R.D. Robb': 'Roy', 'Gregory R. Goliath': 'Luther       (as Goliath Gregory)', 'Fred Parnes': 'Waiter', 'Kiami Davael': 'Lavender', 'Leor Livneh Hackel': 'Julius Rottwinkle'}\"\r\ntt0099204,\"{'Robin Williams': \"\"Joey O'Brien\"\", 'Tim Robbins': 'Larry', 'Pamela Reed': 'Tina', 'Fran Drescher': 'Joy Munchack', 'Zack Norman': 'Harry Munchack', 'Lori Petty': 'Lila', 'Annabella Sciorra': 'Donna', 'Paul Guilfoyle': 'Little Jack Turgeon', 'Bill Nelson': 'Big Jack Turgeon', 'Eddie Jones': 'Benny', 'Mimi Cecchini': 'Ma', 'Tristine Skyler': 'Lisa', 'Judith Hoag': 'Molly', 'Lauren Tom': 'Helen the Dim Sum Girl', 'Anthony Powers': 'Captain Mason'}\"\r\ntt0097757,\"{'Rene Auberjonois': 'Louis       (voice) (as René Auberjonois)', 'Christopher Daniel Barnes': 'Eric       (voice)', 'Jodi Benson': 'Ariel       (voice)', 'Pat Carroll': 'Ursula       (voice)', 'Paddi Edwards': 'Flotsam /              Jetsam       (voice)', 'Buddy Hackett': 'Scuttle       (voice)', 'Jason Marin': 'Flounder       (voice)', 'Kenneth Mars': 'Triton       (voice)', 'Edie McClurg': 'Carlotta       (voice)', 'Will Ryan': 'Seahorse       (voice)', 'Ben Wright': 'Grimsby       (voice)', 'Samuel E. Wright': 'Sebastian       (voice)', 'Hamilton Camp': 'Additional Voices       (voice)', 'Debbie Shapiro Gravitte': 'Additional Voices       (voice) (as Debbie Shapiro)', 'Robert Weil': 'Additional Voices       (voice)'}\"\r\ntt0409182,\"{'Josh Lucas': 'Dylan Johns', 'Kurt Russell': 'Robert Ramsey', 'Jacinda Barrett': 'Maggie James', 'Richard Dreyfuss': 'Richard Nelson', 'Emmy Rossum': 'Jennifer Ramsey', 'Mía Maestro': 'Elena Morales', 'Mike Vogel': 'Christian', 'Kevin Dillon': 'Lucky Larry', 'Freddy Rodríguez': 'Marco Valentin', 'Jimmy Bennett': 'Conor James', 'Fergie': 'Gloria       (as Stacy Ferguson)', 'Andre Braugher': 'Captain Bradford', 'Kirk B.R. Woller': 'Chief Officer Reynolds', 'Kelly McNair': 'Emily', 'Gabriel Jarret': '1st Officer Chapman'}\"\r\ntt0089175,\"{'Chris Sarandon': 'Jerry Dandrige', 'William Ragsdale': 'Charley Brewster', 'Amanda Bearse': 'Amy Peterson', 'Roddy McDowall': 'Peter Vincent', 'Stephen Geoffreys': 'Evil Ed', 'Jonathan Stark': 'Billy Cole', 'Dorothy Fielding': 'Judy Brewster', 'Art Evans': 'Detective Lennox       (as Art J. Evans)', 'Stewart Stern': 'Cook', 'Nick Savage': 'Bouncer #1', 'Ernie Holmes': 'Bouncer #2', 'Heidi Sorenson': 'Hooker', 'Irina Irvine': 'Teenage Girl', 'Bob Corff': 'Jonathan       (as Robert Corff)', 'Pamela Brown': 'Miss Nina'}\"\r\ntt2241351,\"{'George Clooney': 'Lee Gates', 'Julia Roberts': 'Patty Fenn', \"\"Jack O'Connell\"\": 'Kyle Budwell', 'Dominic West': 'Walt Camby', 'Caitriona Balfe': 'Diane Lester', 'Giancarlo Esposito': 'Captain Powell', 'Christopher Denham': 'Ron Sprecher', 'Lenny Venito': 'Lenny (The Cameraman)', 'Chris Bauer': 'Lt. Nelson', 'Dennis Boutsikaris': 'Avery Goodloe CFO', 'Emily Meade': 'Molly', 'Condola Rashad': 'Bree (The Assistant)', 'Aaron Yoo': 'Won Joon', 'Carsey Walker Jr.': 'Tech Sam', 'Grant Rosenmeyer': 'Tech Dave'}\"\r\ntt0172493,\"{'Winona Ryder': 'Susanna', 'Angelina Jolie': 'Lisa', 'Clea DuVall': 'Georgina       (as Clea Duvall)', 'Brittany Murphy': 'Daisy', 'Elisabeth Moss': 'Polly', 'Jared Leto': 'Tobias Jacobs', 'Jeffrey Tambor': 'Dr. Potts', 'Vanessa Redgrave': 'Dr. Wick', 'Whoopi Goldberg': 'Valerie', 'Angela Bettis': 'Janet', 'Jillian Armenante': 'Cynthia', 'Drucie McDaniel': 'M-G', 'Alison Claire': 'Gretta', 'Christina Myers': 'Margie', 'Joanna Kerns': 'Annette'}\"\r\ntt0112818,\"{'Susan Sarandon': 'Sister Helen Prejean', 'Sean Penn': 'Matthew Poncelet', 'Robert Prosky': 'Hilton Barber', 'Raymond J. Barry': 'Earl Delacroix', 'R. Lee Ermey': 'Clyde Percy', 'Celia Weston': 'Mary Beth Percy', 'Lois Smith': \"\"Helen's Mother\"\", 'Scott Wilson': 'Chaplain Farley', 'Roberta Maxwell': 'Lucille Poncelet', 'Margo Martindale': 'Sister Colleen', 'Barton Heyman': 'Captain Beliveau', 'Steve Boles': 'Sgt. Neal Trapp', 'Nesbitt Blaisdell': 'Warden Hartman', 'Ray Aranha': 'Luis Montoya', 'Larry Pine': 'Guy Gilardi'}\"\r\ntt0310793,\"{'Michael Moore': 'Himself - Narrator', 'Salvador Allende': 'Himself - President of Chile       (archive footage)', 'Jacobo Arbenz': 'Himself - President of Guatemala       (archive footage)', 'Mike Bradley': 'Himself - Mayor of Sarnia, Ontario, Canada', 'Arthur A. Busch': 'Himself - County Prosecutor: Flint, Michigan       (as Arthur Busch)', 'George Bush': 'Himself       (archive footage)', 'George W. Bush': 'Himself       (archive footage)', 'Michael Caldwell': 'Himself - Police Detective', 'Richard Castaldo': 'Himself - Columbine Victim', 'Dick Clark': 'Himself', 'Bill Clinton': 'Himself       (archive footage)', 'Steve Davis': 'Himself - Deputy Sheriff       (archive footage)', 'Ngo Dinh Diem': 'Himself - President of South Vietnam       (archive footage)', 'Mike Epstein': 'Himself - Shopper in Mall', 'Joe Farmer': 'Himself - Superintendent of Schools       (archive footage)'}\"\r\ntt0022913,\"{'Wallace Ford': 'Phroso', 'Leila Hyams': 'Venus', 'Olga Baclanova': 'Cleopatra', 'Roscoe Ates': 'Roscoe       (as Rosco Ates)', 'Henry Victor': 'Hercules', 'Harry Earles': 'Hans', 'Daisy Earles': 'Frieda', 'Rose Dione': 'Madame Tetrallini', 'Daisy Hilton': 'Siamese Twin', 'Violet Hilton': 'Siamese Twin', 'Schlitze': 'Himself', 'Josephine Joseph': 'Half Woman-Half Man', 'Johnny Eck': 'Half Boy', \"\"Frances O'Connor\"\": 'Armless Girl', 'Peter Robinson': 'Human Skeleton'}\"\r\ntt1535109,\"{'Tom Hanks': 'Captain Richard Phillips', 'Catherine Keener': 'Andrea Phillips', 'Barkhad Abdi': 'Muse', 'Barkhad Abdirahman': 'Bilal', 'Faysal Ahmed': 'Najee', 'Mahat M. Ali': 'Elmi', 'Michael Chernus': 'Shane Murphy', 'David Warshofsky': 'Mike Perry', 'Corey Johnson': 'Ken Quinn', 'Chris Mulkey': 'John Cronan', 'Yul Vazquez': 'Captain Frank Castellano', 'Max Martini': 'SEAL Commander', 'Omar Berdouni': 'Nemo', 'Mohamed Ali': 'Asad', 'Issak Farah Samatar': 'Hufan'}\"\r\ntt4178092,\"{'Jason Bateman': 'Simon', 'Rebecca Hall': 'Robyn', 'Joel Edgerton': 'Gordo', 'Allison Tolman': 'Lucy', 'Tim Griffin': \"\"Kevin 'KK' Keelor\"\", 'Busy Philipps': 'Duffy', 'Adam Lazarre-White': 'Ron', 'Beau Knapp': 'Detective Walker', 'Wendell Pierce': 'Detective Mills', 'Mirrah Foulkes': 'Wendy Dale', 'Nash Edgerton': 'Frank Dale', 'David Denman': 'Greg', 'Katie Aselton': 'Joan', 'David Joseph Craig': 'Stewart       (as David Craig)', 'Susan May Pratt': 'Rhonda Ryan'}\"\r\ntt2717822,\"{'Chris Hemsworth': 'Nick Hathaway', 'Leehom Wang': 'Chen Dawai', 'Wei Tang': 'Chen Lien', 'Viola Davis': 'Carol Barrett', 'Holt McCallany': 'Mark Jessup', 'Andy On': 'Alex Trang', 'Ritchie Coster': 'Elias Kassar', 'Christian Borle': 'Jeff Robichaud', 'John Ortiz': 'Henry Pollack', 'Yorick van Wageningen': 'Sadak', 'Tyson Chak': 'Tech', 'Brandon Molale': 'Sort Guard', 'Danny Burstein': 'Associate Warden Jeffries', 'Archie Kao': 'Shum', 'Abhi Sinha': 'Daniels'}\"\r\ntt0155267,\"{'Pierce Brosnan': 'Thomas Crown', 'Rene Russo': 'Catherine Banning', 'Denis Leary': 'Michael McCann', 'Ben Gazzara': 'Andrew Wallace', 'Frankie Faison': 'Detective Paretti', 'Fritz Weaver': 'John Reynolds', 'Charles Keating': 'Friedrich Golchan', 'Mark Margolis': 'Heinrich Knutzhorn', 'Faye Dunaway': 'The Psychiatrist', 'Michael Lombard': 'Bobby McKinley', 'Bill Ambrozy': 'Proctor', 'Michael Bahr': 'Proctor       (as Michael S. Bahr)', 'Robert D. Novak': 'Proctor       (as Robert Novak)', 'Joe H. Lamb': 'Proctor       (as Joe Lamb)', 'James Saito': 'Paul Cheng'}\"\r\ntt0063688,\"{'Steve McQueen': 'Thomas Crown', 'Faye Dunaway': 'Vicki Anderson', 'Paul Burke': 'Eddy Malone', 'Jack Weston': 'Erwin', 'Biff McGuire': 'Sandy', 'Addison Powell': 'Abe', 'Astrid Heeren': 'Gwen', 'Gordon Pinsent': 'Jamie', 'Yaphet Kotto': 'Carl', 'Sidney Armus': 'Arnie', 'Richard Bull': 'Booth Guard', 'Peg Shirley': 'Honey', 'Patrick Horgan': 'Danny', 'Carol Corbett': 'Miss Sullivan', 'Tom Rosqui': 'Pvt. Detective'}\"\r\ntt0114134,\"{'Vivian Wu': 'Nagiko', 'Yoshi Oida': 'The Publisher', 'Ken Ogata': 'The Father', 'Hideko Yoshida': 'The Aunt /              The Maid', 'Ewan McGregor': 'Jerome', 'Judy Ongg': 'The Mother', 'Ken Mitsuishi': 'The Husband', 'Yutaka Honda': 'Hoki', 'Barbara Lott': \"\"Jerome's Mother\"\", 'Miwako Kawai': 'Young Nagiko', 'Lynne Langdon': \"\"Jerome's sister       (as Lynne Frances Wachendorfer)\"\", 'Chizuru Ohnishi': 'Young Nagiko', 'Shiho Takamatsu': 'Young Nagiko', 'Aki Ishimaru': 'Young Nagiko', 'Hisashi Hidaka': 'Calligrapher'}\"\r\ntt1596345,\"{'Tobey Maguire': 'Bobby Fischer', 'Liev Schreiber': 'Boris Spassky', 'Michael Stuhlbarg': 'Paul Marshall', 'Peter Sarsgaard': 'Father Bill Lombardy', 'Edward Zinoviev': 'Efim Geller', 'Alexandre Gorchkov': 'Iivo Nei', 'Lily Rabe': 'Joan Fischer', 'Robin Weigert': 'Regina Fischer', 'Seamus Davey-Fitzpatrick': 'Teenage Bobby Fischer', 'Aiden Lovekamp': 'Young Bobby Fischer', 'Sophie Nélisse': 'Young Joan Fischer', 'Evelyne Brochu': 'Donna', 'Conrad Pla': 'Carmine Nigro', 'Vitali Makarov': 'Ivanovich', 'Brett Watson': 'Lothar Schmid'}\"\r\ntt4183692,\"{'Sean Astin': 'Hank Erwin', 'Nic Bishop': 'Tandy Gerelds', 'Caleb Castille': 'Tony Nathan', 'Sherri Shepherd': 'Momma Nathan', 'Jon Voight': 'Paul Bryant', 'Joy Brunson': 'Johnnie', 'Lance E. Nichols': 'Junior       (as Lance Nichols)', 'DeVon Franklin': 'Preacher', 'C. Thomas Howell': 'Shorty', 'Kevin Sizemore': 'Jerry Stearns', 'Brett Rice': 'Whitehurst', 'Virginia Williams': 'Debbie', 'Brando Eaton': 'Morton', 'Richard Kohnke': 'Jeff Rutledge', 'Jet Jurgensmeyer': 'Todd'}\"\r\ntt0112887,\"{'James Duval': 'Jordan White', 'Rose McGowan': 'Amy Blue', 'Johnathon Schaech': 'Xavier Red', 'Cress Williams': 'Peanut', 'Skinny Puppy': 'Gang of Goons', 'Dustin Nguyen': 'Quickiemart Clerk', 'Margaret Cho': \"\"Clerk's Wife\"\", 'Lauren Tewes': 'TV Anchorwoman', 'Christopher Knight': 'TV Anchorman', 'Nicky Katt': 'Carnoburger Cashier', 'Johanna Went': 'Carnoburger Co-Worker', 'Perry Farrell': \"\"Stop 'n' Go Clerk\"\", 'Amanda Bearse': 'Barmaid', 'Parker Posey': 'Brandi', 'Salvator Xuereb': 'Biker'}\"\r\ntt0070460,\"{'Jacqueline Bisset': 'Julie Baker', 'Valentina Cortese': 'Séverine', 'Dani': 'Liliane, la stagiaire scripte', 'Alexandra Stewart': 'Stacey', 'Jean-Pierre Aumont': 'Alexandre', 'Jean Champion': 'Bertrand, le producteur', 'Jean-Pierre Léaud': 'Alphonse       (as Jean-Pierre Leaud)', 'François Truffaut': 'Ferrand, le réalisateur', 'Nike Arrighi': 'Odile, la maquilleuse', 'Nathalie Baye': 'Joëlle, la scripte', 'Maurice Seveno': 'Le reporter TV', 'David Markham': 'Dr. Michael Nelson', 'Bernard Menez': \"\"Bernard, l'accessoiriste\"\", 'Gaston Joly': 'Lajoie, le régisseur', 'Zénaïde Rossi': 'Madame Lajoie'}\"\r\ntt3569230,\"{'Paul Anderson': 'Albert Donoghue', 'Tom Hardy': 'Reggie Kray /              Ron Kray', 'Christopher Eccleston': 'Nipper Read', 'Joshua Hill': 'Constable Scott', 'Emily Browning': 'Frances Shea', 'Colin Morgan': 'Frank Shea', 'Tara Fitzgerald': 'Mrs Shea', 'Nicholas Farrell': 'Dr Humphries', 'Adam Fogerty': 'Pat Connolly', 'Mel Raido': 'Ian Barrie', 'Major Johnson Finley': 'The Double R Club Singer', 'Millie Brady': 'Joan Collins', 'Chris Mason': 'Ronnie Hart', 'Stephen Thompson': 'Ronnie Bender', 'Sam Spruell': 'Jack McVitie'}\"\r\ntt3077214,\"{'Anne-Marie Duff': 'Violet Miller', 'Grace Stottor': 'Maggie Miller', 'Geoff Bell': 'Norman Taylor', 'Carey Mulligan': 'Maud Watts', 'Amanda Lawrence': 'Miss Withers', 'Shelley Longworth': 'Miss Samson', 'Adam Michael Dodd': 'George Watts', 'Ben Whishaw': 'Sonny Watts', 'Sarah Finigan': 'Mrs Garston', 'Drew Edwards': 'Male Laundry Worker', 'Lorraine Stanley': 'Mrs Coleman', 'Romola Garai': 'Alice Haughton', 'Adam Nagaitis': 'Mr Cummins', 'Helena Bonham Carter': 'Edith Ellyn', 'Finbar Lynch': 'Hugh Ellyn'}\"\r\ntt0318374,\"{'William H. Macy': 'Bernie Lootz', 'Alec Baldwin': 'Shelly Kaplow', 'Maria Bello': 'Natalie Belisario', 'Shawn Hatosy': 'Mikey', 'Ron Livingston': 'Larry Sokolov', 'Paul Sorvino': 'Buddy Stafford', 'Estella Warren': 'Charlene', 'Arthur J. Nascarella': 'Nicky Fingers Bonnatto', 'Joey Fatone': 'Johnny Cappella', 'M.C. Gainey': 'Highway Officer       (as MC Gainey)', 'Ellen Greene': 'Doris', 'Don Scribner': 'Lou', 'Tony Longo': 'Tony', 'Richard Israel': 'Marty Goldfarb', 'Timothy Landfield': 'The Player'}\"\r\ntt0108026,\"{'Danny Glover': 'Jerry', 'Matt Dillon': 'Matthew', 'Rick Aviles': 'Rosario', 'Nina Siemaszko': 'Tamsen', 'Ving Rhames': 'Little Leroy', 'Joe Seneca': 'Spits', 'Harry Ellington': 'Arthur', 'Ralph Hughes': 'Jason', 'Bahni Turpin': 'Gloria', 'Robert Beatty': 'Ex-Pharmacist       (as Robert Beatty Jr.)', 'Reuben Schafer': 'Greek Man       (as Reuben Schaefer)', 'Louis Williams': 'Ennis', 'Adam Trese': 'John', 'Kevin Corrigan': 'Peter', 'Brian Tarantina': 'Fred'}\"\r\ntt1285016,\"{'Jesse Eisenberg': 'Mark Zuckerberg', 'Rooney Mara': 'Erica Albright', 'Bryan Barter': 'Billy Olson', 'Dustin Fitzsimons': 'Phoenix Club President', 'Joseph Mazzello': 'Dustin Moskovitz', 'Patrick Mapel': 'Chris Hughes', 'Andrew Garfield': 'Eduardo Saverin', 'Toby Meuli': 'Phoenix Member Playing Facemash', 'Alecia Svensen': 'Girl at Phoenix Club', 'Jami Owen': 'Student Playing Facemash', 'James Dastoli': 'Student Playing Facemash', 'Robert Dastoli': 'Student Playing Facemash', 'Scotty Crowe': 'Student Playing Facemash', 'Jayk Gallagher': 'Student Playing Facemash', 'Marcella Lentz-Pope': \"\"Erica's Roommate\"\"}\"\r\ntt1568346,\"{'Daniel Craig': 'Mikael Blomkvist', 'Rooney Mara': 'Lisbeth Salander', 'Christopher Plummer': 'Henrik Vanger', 'Stellan Skarsgård': 'Martin Vanger', 'Steven Berkoff': 'Frode', 'Robin Wright': 'Erika Berger', 'Yorick van Wageningen': 'Bjurman', 'Joely Richardson': 'Anita Vanger', 'Geraldine James': 'Cecilia', 'Goran Visnjic': 'Armansky', 'Donald Sumpter': 'Detective Morell', 'Ulf Friberg': 'Wennerström', 'Bengt C.W. Carlsson': 'Palmgren', 'Tony Way': 'Plague', 'Per Myrberg': 'Harald'}\"\r\ntt3850214,\"{'ASAP Rocky': 'Dom       (as A$ap Rocky)', 'Blake Anderson': 'Will Sherwood', 'Bruce Beatty': 'Mr. Bailey', \"\"De'aundre Bonds\"\": 'Stacey', 'Julian Finch': 'Mario       (as Julian Brand)', 'Quincy Brown': 'Jaleel', 'Kiersey Clemons': 'Diggy', 'Kimberly Elise': 'Lisa Hayes', 'Rick Fox': 'Councilman Blackmon', 'Christopher Glenn': 'Crip 1', 'Ricky Harris': 'Tannehill James', 'Chanel Iman': 'Lily', 'Wyking Jones': 'SAT Proctor', 'Amin Joseph': 'The Voice', 'Kap G': 'Fidel X'}\"\r\ntt2473602,\"{'Chadwick Boseman': 'James Brown', 'Nelsan Ellis': 'Bobby Byrd', 'Dan Aykroyd': 'Ben Bart', 'Viola Davis': 'Susie Brown', 'Lennie James': 'Joe Brown', 'Fred Melamed': 'Syd Nathan', 'Craig Robinson': 'Maceo Parker', 'Jill Scott': 'DeeDee Brown', 'Octavia Spencer': 'Aunt Honey', 'Josh Hopkins': 'Ralph Bass', 'Brandon Mychal Smith': 'Little Richard       (as Brandon Smith)', 'Tika Sumpter': 'Yvonne Fair', 'Aunjanue Ellis': 'Vicki Anderson', 'Tariq Trotter': 'Pee Wee Ellis', 'Aloe Blacc': 'Nafloyd Scott'}\"\r\ntt0811080,\"{'Emile Hirsch': 'Speed', 'Nicholas Elia': 'Young Speed Racer', 'Susan Sarandon': 'Mom', 'Melissa Holroyd': \"\"Speed's Teacher\"\", 'Ariel Winter': 'Young Trixie', 'Scott Porter': 'Rex Racer', 'Giancarlo Ganziano': 'Everyman Announcer       (as Gian Ganziano)', 'Peter Fernandez': 'Local Announcer', 'Harvey Friedman': 'Harold Ledermann Announcer', 'Sadao Ueda': 'Japanese Announcer', 'Valery Tscheplanowa': 'Russian Announcer', 'Sami Loris': 'Italian Announcer', 'Olivier Marlo': 'French Announcer', 'Sean McDonagh': 'Celtic Announcer', 'Kick Gurry': 'Sparky'}\"\r\ntt0243133,\"{'Billy Bob Thornton': 'Ed Crane', 'Frances McDormand': 'Doris Crane', 'Michael Badalucco': 'Frank', 'James Gandolfini': 'Big Dave Brewster', 'Katherine Borowitz': 'Ann Nirdlinger Brewster', 'Jon Polito': 'Creighton Tolliver', 'Scarlett Johansson': 'Birdy Abundas', 'Richard Jenkins': 'Walter Abundas', 'Tony Shalhoub': 'Freddy Riedenschneider', 'Christopher Kriesa': 'Officer Persky', 'Brian Haley': 'Officer Krebs', 'Jack McGee': 'P.I. Burns', 'Gregg Binkley': 'New Man', 'Alan Fudge': 'Dr. Diedrickson', 'Lilyan Chauvin': 'Medium'}\"\r\ntt0119080,\"{'Jurnee Smollett-Bell': 'Eve Batiste       (as Jurnee Smollett)', 'Meagan Good': 'Cisely Batiste', 'Lynn Whitfield': 'Roz Batiste', 'Samuel L. Jackson': 'Louis Batiste', 'Debbi Morgan': 'Mozelle Batiste Delacroix', 'Jake Smollett': 'Poe Batiste', 'Ethel Ayler': 'Gran Mere', 'Diahann Carroll': 'Elzora', 'Vondie Curtis-Hall': 'Julian Grayraven', 'Roger Guenveur Smith': 'Lenny Mereaux', 'Lisa Nicole Carson': 'Matty Mereaux', 'Branford Marsalis': 'Harry', 'Afonda Colbert': 'Henrietta', 'Lola Dalferes': 'Lynette', 'Marcus Lyle Brown': 'Hosea'}\"\r\ntt0065112,\"{'Frederick Stafford': 'Andre Devereaux', 'Dany Robin': 'Nicole Devereaux', 'John Vernon': 'Rico Parra', 'Karin Dor': 'Juanita de Cordoba', 'Michel Piccoli': 'Jacques Granville', 'Philippe Noiret': 'Henri Jarre', 'Claude Jade': 'Michele Picard', 'Michel Subor': 'Francois Picard', 'Per-Axel Arosenius': 'Boris Kusenov', 'Roscoe Lee Browne': 'Philippe Dubois', 'Edmon Ryan': 'McKittreck', 'Sonja Kolthoff': 'Mrs. Kusenov', 'Tina Hedström': 'Tamara Kusenov       (as Tina Hedstrom)', 'John Van Dreelen': 'Claude Martin', 'Donald Randolph': 'Luis Uribe       (as Don Randolph)'}\"\r\ntt0100519,\"{'Gary Oldman': 'Rosencrantz', 'Tim Roth': 'Guildenstern', 'Richard Dreyfuss': 'The Player', 'Livio Badurina': 'Tragedian', 'Tomislav Maretic': 'Tragedian', 'Mare Mlacnik': 'Tragedian', 'Serge Soric': 'Tragedian       (as Srdjan Soric)', 'Mladen Vasary': 'Tragedian', 'Zeljko Vukmirica': 'Tragedian', 'Branko Zavrsan': 'Tragedian', 'Joanna Roth': 'Ophelia', 'Iain Glen': 'Hamlet', 'Donald Sumpter': 'Claudius', 'Joanna Miles': 'Gertrude', 'Ljubo Zecevic': 'Osric'}\"\r\ntt0186508,\"{'Octavio Calderon': 'Himself - Musician', 'Joachim Cooder': 'Himself', 'Ry Cooder': 'Himself', 'Angel Terry Domech': 'Himself', 'Ibrahim Ferrer': 'Himself', 'Ibrahim Ferrer Jr.': 'Himself', 'Manuel Galbán': 'Himself - Musician', 'Hugo Garzón': 'Himself', 'Carlos González': 'Himself', 'Juan de Marcos González': 'Himself', 'Rubén González': 'Himself', 'Pío Leyva': 'Himself', \"\"Manuel 'Puntillita' Licea\"\": 'Himself', \"\"Orlando 'Cachaíto' López\"\": 'Himself', \"\"Manuel 'Guajiro' Mirabal\"\": 'Himself'}\"\r\ntt0205271,\"{'Richard Gere': 'Dr. T', 'Helen Hunt': 'Bree', 'Farrah Fawcett': 'Kate', 'Laura Dern': 'Peggy', 'Shelley Long': 'Carolyn', 'Tara Reid': 'Connie', 'Kate Hudson': 'Dee Dee', 'Liv Tyler': 'Marilyn', 'Robert Hays': 'Harlan', 'Matt Malloy': 'Bill', 'Andy Richter': 'Eli', 'Lee Grant': 'Dr. Harper', 'Janine Turner': 'Dorothy Chambliss', 'Holly Pelham': 'Joanne       (as Holly Pelham-Davis)', 'Jeanne Evans': 'First Exam Patient'}\"\r\ntt1632708,\"{'Justin Timberlake': 'Dylan', 'Mila Kunis': 'Jamie', 'Patricia Clarkson': 'Lorna', 'Jenna Elfman': 'Annie', 'Bryan Greenberg': 'Parker', 'Richard Jenkins': 'Mr. Harper', 'Woody Harrelson': 'Tommy', 'Nolan Gould': 'Sam', 'Andy Samberg': 'Quincy', 'Shaun White': 'Himself', 'Andrew Fleming': 'Driver', 'Catherine Reitman': 'Female Co-Worker', 'Courtney Henggeler': 'Flight Attendant', 'Masi Oka': 'Darin Arturo Morena', 'Tiya Sircar': 'Hostess'}\"\r\ntt0101698,\"{'Albert Brooks': 'Daniel Miller', 'Michael Durrell': 'Agency Head', 'James Eckhouse': 'Jeep Owner', 'Gary Beach': 'Car Salesman', 'Julie Cobb': 'Tram Guide', 'Peter Schuck': 'Stan', 'Time Winters': 'Porter', 'Rip Torn': 'Bob Diamond', 'Sharlie Stuart': 'Susan', 'Beth Black': 'Soap Opera Woman', 'Clayton Norcross': 'Soap Opera Man', 'James MacKrell': 'Game Show Moderator', 'Wil Albert': 'Game Show Contestant', 'Sage Allen': 'Game Show Contestant', 'Mary Pat Gleason': 'Waitress'}\"\r\ntt0210358,\"{'Glenn Close': 'Dr. Elaine Keener (segments \"\"This is Dr. Keener\"\" and \"\"Fantasies about Rebecca\"\")', 'Cameron Diaz': 'Carol Faber (segment \"\"Love Waits For Kathy\"\")', 'Calista Flockhart': 'Christine Taylor (segments \"\"Goodnight Lilly, Goodnight Christine\"\" and \"\"This is Dr. Keener\"\")', 'Kathy Baker': 'Rose (segments \"\"Someone For Rose\"\" and \"\"Fantasies about Rebecca\"\")', 'Amy Brenneman': 'Detective Kathy Faber (segment \"\"Love Waits For Kathy\"\")', 'Valeria Golino': 'Lilly (segment \"\"Goodnight Lilly, Goodnight Christine\"\")', 'Holly Hunter': 'Rebecca Waynon (segment \"\"Fantasies About Rebecca\"\")', 'Matt Craven': 'Walter (segments \"\"Fantasies About Rebecca\"\" and \"\"Love Waits For Kathy\"\")', 'Gregory Hines': 'Robert (segment \"\"Fantasies About Rebecca\"\")', 'Miguel Sandoval': 'Sam (segment \"\"Love Waits For Kathy\"\"', 'Noah Fleiss': 'Jay (segment \"\"Someone For Rose\"\")', 'Danny Woodburn': 'Albert (segments \"\"Someone For Rose\"\" and \"\"Love Waits For Kathy\"\")', 'Penelope Allen': 'Nancy (segment \"\"Fantasies About Rebecca\"\")       (as Penny Allen)', 'Roma Maffia': 'Debbie (segments \"\"Fantasies About Rebecca\"\" and \"\"Love Waits For Kathy\"\")', 'Mika Boorem': 'June (segments \"\"Love Waits For Kathy\"\" and \"\"Goodnight Lilly, Goodnight Christine\"\")'}\"\r\ntt0091934,\"{'Sean Penn': 'Glendon Wasey', 'Madonna': 'Gloria Tatlock', 'Paul Freeman': 'Walter Faraday', 'Richard Griffiths': 'Willie Tuttle', 'Philip Sayer': 'Justin Kronk', 'Clyde Kusatsu': 'Joe Go', 'Kay Tong Lim': 'Mei Gan', 'Sonserai Lee': 'China Doll', 'Victor Wong': 'Ho Chong', 'Professor Toru Tanaka': 'Yamagani San', 'Michael Aldridge': 'Mr. Burns', 'Sarah Lam': \"\"China Doll's Maid\"\", 'George She': \"\"Wu Ch'En She\"\", 'Won Gam Bor': 'Rickshaw King', 'To Chee Kan': \"\"China Doll's Boatman\"\"}\"\r\ntt1307068,\"{'Steve Carell': 'Dodge', 'Keira Knightley': 'Penny', 'Adam Brody': 'Owen', 'Connie Britton': 'Diane', 'Roger Aaron Brown': 'Alfred', 'Rob Huebel': 'Jeremy', 'Trisha Gorman': 'Crying Woman', 'Nancy Carell': 'Linda', 'Mark Moses': 'Anchorman', 'Tonita Castro': 'Elsa', 'Leslie Murphy': 'Amy', 'Rob Corddry': 'Warren', 'Kasey Campbell': 'Danny', 'Melanie Lynskey': 'Karen', 'Vince Grant': 'Man #1 /              Chip'}\"\r\ntt0091777,\"{'Steve Guttenberg': 'Sgt. Mahoney', 'Bubba Smith': 'Sgt. Hightower', 'David Graf': 'Sgt. Tackleberry', 'Michael Winslow': 'Sgt. Jones', 'Marion Ramsey': 'Sgt. Hooks', 'Leslie Easterbrook': 'Lt. Callahan', 'Art Metrano': 'Comdt. Mauser', 'Tim Kazurinsky': 'Cadet Sweetchuck', 'Bobcat Goldthwait': 'Cadet Zed', 'George Gaynes': 'Comdt. Lassard', 'Shawn Weatherly': 'Cadet Adams', 'Scott Thomson': 'Sgt. Copeland', 'Brant von Hoffman': 'Sgt. Blanks       (as Brant Van Hoffman)', 'Bruce Mahler': 'Sgt. Fackler', 'Ed Nelson': 'Governor Neilson'}\"\r\ntt0089822,\"{'Steve Guttenberg': 'Carey Mahoney', 'Bubba Smith': 'Hightower', 'David Graf': 'Tackleberry', 'Michael Winslow': 'Larvell Jones', 'Bruce Mahler': 'Doug Fackler', 'Marion Ramsey': 'Laverne Hooks', 'Colleen Camp': 'Kirkland', 'Howard Hesseman': 'Pete Lassard', 'Art Metrano': 'Lt. Mauser', 'George Gaynes': 'Commandant Lassard', 'Bobcat Goldthwait': 'Zed       (as Bob Goldthwait)', 'Julie Brown': 'Chloe', 'Peter Van Norden': 'Vinnie Schtulman', 'Tim Kazurinsky': 'Merchant', 'Ed Herlihy': 'Dooley'}\"\r\ntt0102395,\"{'Kristy Swanson': 'Jessie', 'William Ragsdale': 'Jason Williamson /              Prince William', 'Meshach Taylor': 'Hollywood Montrose /              Doorman', 'Terry Kiser': 'Count Spretzle /              Sorcerer', 'Stuart Pankin': 'Mr. James', 'Cynthia Harris': 'Mom /              Queen', 'Andrew Hill Newman': 'Andy Ackerman', 'Julie Foreman': 'Gail', 'John Edmondson': 'Rolf, Soldier #1', 'Phil Latella': 'Egon, Soldier #2', 'Mark Gray': 'Arnold, Soldier #3', 'Erick Weiss': \"\"Mr. James' Assistant\"\", 'Jackye Roberts': \"\"Mr. James' Assistant\"\", 'John Casino': 'Horned Soldier', 'Laurie Wing': 'Old Queen'}\"\r\ntt0093493,\"{'Andrew McCarthy': 'Jonathan Switcher', 'Kim Cattrall': 'Emmy', 'Estelle Getty': 'Claire Timkin', 'James Spader': 'Richards', 'G.W. Bailey': 'Felix', 'Carole Davis': 'Roxie', 'Steve Vinovich': 'B.J. Wert       (as Stephen Vinovich)', 'Christopher Maher': 'Armand', 'Meshach Taylor': 'Hollywood', 'Phyllis Newman': \"\"Emmy's Mother\"\", 'Phil Rubenstein': 'Mannequin Factory Boss', 'Jeffrey Lampert': 'Factory Worker', 'Kenneth Lloyd': 'Superdad', 'Jake Jundef': 'Superkid       (as Jake Jundeff)', 'Harvey Levine': 'Balloon Boss'}\"\r\ntt0097758,\"{'Fred Savage': 'Brian Stevenson', 'Howie Mandel': 'Maurice', 'Daniel Stern': 'Glen Stevenson', 'Margaret Whitton': 'Holly Stevenson', 'Rick Ducommun': 'Snik', 'Frank Whaley': 'Boy', 'Ben Savage': 'Eric', 'William Murray Weiss': 'Todd', 'Devin Ratray': 'Ronnie Coleman', 'Amber Barretto': 'Kiersten', 'J. Michael Hunter': 'Mr. Finn', 'Tom Hull': 'Principal', 'Magbee': 'Bus Driver', 'Lisa Cain': \"\"Holly's Friend\"\", 'Tony Bonsignore': 'Beach Bum'}\"\r\ntt0084745,\"{'Louis Jourdan': 'Arcane', 'Adrienne Barbeau': 'Alice Cable', 'Ray Wise': 'Dr. Alec Holland', 'David Hess': 'Ferret', 'Nicholas Worth': 'Bruno', 'Don Knight': 'Ritter', 'Al Ruban': 'Charlie', 'Dick Durock': 'Swamp Thing', 'Ben Bates': 'Arcane Monster', 'Nannette Brown': 'Dr. Linda Holland', 'Reggie Batts': 'Jude', 'Mimi Craven': \"\"Arcane's Secretary       (as Mimi Meyer)\"\", 'Karen Price': \"\"Arcane's Messenger\"\", 'Bill Erickson': 'Young Agent', 'Dov Gottesfeld': 'Commando'}\"\r\ntt0263488,\"{'Gina Philips': 'Trish', 'Justin Long': 'Darry', 'Jonathan Breck': 'The Creeper', 'Patricia Belcher': 'Jezelle Gay Hartman', 'Brandon Smith': 'Sergeant Davis Tubbs', 'Eileen Brennan': 'The Cat Lady', 'Peggy Sheffield': 'Waitress Beverly', 'Jeffrey William Evans': 'Manager', 'Patrick Cherry': 'Binky', 'Jon Beshara': 'Trooper Gideon', 'Avis-Marie Barnes': 'Trooper Weston', 'Steve Raulerson': 'Cellblock Officer       (as Steven Raulerson)', 'Tom Tarantini': 'Roach', 'William Haze': 'Officer with Hole in Chest       (as William Hasenzahl)', 'Kim Kahana': 'Camper Driver'}\"\r\ntt0097737,\"{'Peter Weller': 'Steven Beck', 'Richard Crenna': \"\"Dr. Glen 'Doc' Thompson\"\", 'Amanda Pays': \"\"Elizabeth 'Willie' Williams\"\", 'Daniel Stern': \"\"Buzz 'Sixpack' Parrish\"\", 'Ernie Hudson': 'Justin Jones', 'Michael Carmine': \"\"Tony 'DeJesus' Rodero\"\", 'Lisa Eilbacher': 'Bridget Bowman', 'Hector Elizondo': 'G. P. Cobb', 'Meg Foster': 'Ms. Martin', 'Eugene Lipinski': 'Russian Ship Captain       (as Eugene Lipinsky)', 'Larry Dolgin': 'Helicopter Pilot', 'Pascal Druant': 'Winch Operator', 'Steve Pelot': 'Winch Operator'}\"\r\ntt0144814,\"{'Emily Bergl': 'Rachel Lang', 'Jason London': 'Jesse Ryan', 'Dylan Bruno': 'Mark', 'J. Smith-Cameron': 'Barbara Lang', 'Amy Irving': 'Sue Snell', 'Zachery Ty Bryan': 'Eric', 'John Doe': 'Boyd', 'Gordon Clapp': \"\"Eric's Father\"\", 'Rachel Blanchard': 'Monica', 'Charlotte Ayanna': 'Tracy', 'Justin Urich': 'Brad Winters', 'Mena Suvari': 'Lisa', 'Eli Craig': 'Chuck       (as Elijah Craig)', 'Eddie Kaye Thomas': 'Arnie', 'Clint Jordan': 'Sheriff Kelton'}\"\r\ntt2334879,\"{'Channing Tatum': 'Cale', 'Jamie Foxx': 'President Sawyer', 'Maggie Gyllenhaal': 'Finnerty', 'Jason Clarke': 'Stenz', 'Richard Jenkins': 'Raphelson', 'Joey King': 'Emily', 'James Woods': 'Walker', 'Nicolas Wright': 'Donnie the Guide', 'Jimmi Simpson': 'Tyler', 'Michael Murphy': 'Vice President Hammond', 'Rachelle Lefevre': 'Melanie', 'Lance Reddick': 'General Caulfield', 'Matt Craven': 'Agent Kellerman', 'Jake Weber': 'Agent Hope', 'Peter Jacobson': 'Wallace'}\"\r\ntt1599348,\"{'Denzel Washington': 'Tobin Frost', 'Ryan Reynolds': 'Matt Weston', 'Vera Farmiga': 'Catherine Linklater', 'Brendan Gleeson': 'David Barlow', 'Sam Shepard': 'Harlan Whitford', 'Rubén Blades': 'Carlos Villar', 'Nora Arnezeder': 'Ana Moreau', 'Robert Patrick': 'Daniel Kiefer', 'Liam Cunningham': 'Alec Wade', 'Joel Kinnaman': 'Keller', 'Fares Fares': 'Vargas', 'Jenna Dover': 'CIA Analyst', 'Stephen Rider': 'CIA Analyst', 'Daniel Fox': 'CIA Analyst', 'Tracie Thoms': 'CIA Analyst'}\"\r\ntt2140379,\"{'Ryan Reynolds': 'Young Damian', 'Natalie Martinez': 'Madeline', 'Matthew Goode': 'Albright', 'Ben Kingsley': 'Damian', 'Victor Garber': 'Martin', 'Derek Luke': 'Anton', 'Jaynee-Lynne Kinchen': 'Anna', 'Melora Hardin': 'Judy', 'Michelle Dockery': 'Claire', 'Sam Page': 'Carl', 'Brendan McCarthy': 'Anton 2', 'Thomas Francis Murphy': 'Dr. Jensen', 'Sandra Ellis Lafferty': 'Phyllis Jensen', 'Emily Tremaine': 'Mallory', 'Griff Furst': 'EMT #1'}\"\r\ntt0434409,\"{'Natalie Portman': 'Evey', 'Hugo Weaving': 'V', 'Stephen Rea': 'Finch', 'Stephen Fry': 'Deitrich', 'John Hurt': 'Adam Sutler', 'Tim Pigott-Smith': 'Creedy', 'Rupert Graves': 'Dominic', 'Roger Allam': 'Lewis Prothero', 'Ben Miles': 'Dascomb', 'Sinéad Cusack': 'Delia Surridge', 'Natasha Wightman': 'Valerie', 'John Standing': 'Lilliman', 'Eddie Marsan': 'Etheridge', 'Clive Ashborn': 'Guy Fawkes', 'Emma Field-Rayner': 'Guy Fawkes Lover       (as Emma Field Rayner)'}\"\r\ntt0114576,\"{'Jean-Claude Van Damme': 'Darren McCord', 'Powers Boothe': 'Joshua Foss', 'Raymond J. Barry': 'Vice President', 'Whittni Wright': 'Emily McCord', 'Ross Malinger': 'Tyler McCord', 'Dorian Harewood': 'Hallmark', 'Kate McNeil': 'Kathi', 'Michael Gaston': 'Hickey', 'Audra Lindley': 'Mrs. Ferrara', 'Brian Delate': 'Blair', 'Steve Aronson': 'Dooley', 'Michael R. Aubele': 'Ace       (as Michael Aubele)', 'Karen Elise Baldwin': 'TV Director       (as Karen Baldwin)', 'Jennifer D. Bowser': 'Joan', 'Pat Brisson': 'Player #2'}\"\r\ntt1648179,\"{'Kevin James': 'Scott Voss', 'Salma Hayek': 'Bella Flores', 'Henry Winkler': 'Marty Streb', 'Greg Germann': 'Principal Betcher', 'Joe Rogan': 'Joe Rogan', 'Gary Valentine': 'Eric Voss', 'Jake Zyrus': 'Malia       (as Charice)', 'Bas Rutten': 'Niko', 'Reggie Lee': 'Mr. De La Cruz', 'Mark DellaGrotte': 'Mark DellaGrotte', 'Mookie Barker': 'Assistant Principal Elkins', 'Jackie Flynn': 'Joe Duffy', 'Nikki Tyler-Flynn': 'Molie Streb', 'Melissa Peterman': 'Lauren Voss', 'Thomas Gallagher': 'Peter Voss'}\"\r\ntt1204975,\"{'Michael Douglas': 'Billy Gherson', 'Robert De Niro': 'Paddy Connors', 'Morgan Freeman': 'Archie Clayton', 'Kevin Kline': 'Sam Harris', 'Mary Steenburgen': 'Diana Boyle', 'Jerry Ferrara': 'Dean', 'Romany Malco': 'Lonnie', 'Roger Bart': 'Maurice Tischler', 'Joanna Gleason': 'Miriam Harris', 'Michael Ealy': 'Ezra Clayton', 'Bre Blair': 'Lisa', 'April Billingsley': 'Maid of Honor', 'Stephen Scott Scarpulla': 'Danny The Greaser', 'Andrea Moore': 'Bachelorette', 'Noah Harden': 'Young Billy'}\"\r\ntt1655460,\"{'Paul Rudd': 'George Gergenblatt', 'Jennifer Aniston': 'Linda Gergenblatt', 'Justin Theroux': 'Seth', 'Alan Alda': 'Carvin', 'Malin Akerman': 'Eva', 'Ken Marino': 'Rick', 'Joe Lo Truglio': 'Wayne', 'Kathryn Hahn': 'Karen', 'Kerri Kenney': 'Kathy       (as Kerri Kenney-Silver)', 'Lauren Ambrose': 'Almond', 'Michaela Watkins': 'Marissa', 'Jordan Peele': 'Rodney', 'Linda Lavin': 'Shari', 'Jessica St. Clair': 'Deena Schuster', 'Todd Barry': 'Sherm'}\"\r\ntt3164256,\"{'Bill Murray': 'Richie Lanz', 'Bruce Willis': 'Bombay Brian', 'Kate Hudson': 'Merci', 'Zooey Deschanel': 'Ronnie', 'Leem Lubany': 'Salima', 'Arian Moayed': 'Riza', 'Scott Caan': 'Jake', 'Danny McBride': 'Nick', 'Fahim Fazli': 'Tariq', 'Beejan Land': 'Daoud       (as Beehan Land)', 'Sameer Ali Khan': 'Azam Ghol', 'Jonas Khan': 'Nizar', 'Husam Chadat': 'Nasim', 'Taylor Kinney': 'Private Barnes', 'Megan Raich': 'Brittany'}\"\r\ntt0114852,\"{'Christopher Reeve': 'Dr. Alan Chaffee', 'Kirstie Alley': 'Dr. Susan Verner', 'Linda Kozlowski': 'Jill McGowan', 'Michael Paré': 'Frank McGowan', 'Meredith Salenger': 'Melanie Roberts', 'Mark Hamill': 'Reverend George', 'Pippa Pearthree': \"\"Sarah, George's Wife\"\", 'Peter Jason': 'Ben Blum', 'Constance Forslund': 'Callie Blum', 'Karen Kahn': 'Barbara Chaffee', 'Thomas Dekker': 'David McGowan', 'Lindsey Haun': 'Mara Chaffee', 'Cody Dorkin': 'Robert', 'Trishalee Hardy': 'Julie', 'Jessye Quarry': 'Dorothy'}\"\r\ntt1284575,\"{'Cameron Diaz': 'Elizabeth Halsey', 'Lucy Punch': 'Amy Squirrel', 'Jason Segel': 'Russell Gettis', 'Justin Timberlake': 'Scott Delacorte', 'Phyllis Smith': 'Lynn Davies', 'John Michael Higgins': 'Principal Wally Snur', 'Dave Allen': \"\"Sandy Pinkus       (as Dave 'Gruber' Allen)\"\", 'Jillian Armenante': 'Ms. Pavicic', 'Matthew J. Evans': 'Garrett Tiara', 'Kaitlyn Dever': 'Sasha Abernathy', 'Kathryn Newton': 'Chase Rubin-Rossi', 'Igal Ben Yair': 'Arkady', 'Aja Bair': \"\"Devon (Chase's Friend)       (as Aja Cheyenne Bair)\"\", 'Andra Nechita': 'Gaby', 'Noah Munck': 'Tristan'}\"\r\ntt1092026,\"{'Mia Stallard': 'Young Tara', 'Simon Pegg': 'Graeme Willy', 'Nick Frost': 'Clive Gollings', 'Jeremy Owen': 'Sword Vendor', 'Jeffrey Tambor': 'Adam Shadowchild', 'David House': 'Security Guard', 'Jennifer Granger': 'Adam Shadowchild Fan', 'Nelson Ascencio': 'Jorge', 'Bobby Lee': 'Valet', 'Jane Lynch': 'Pat Stevens', 'David Koechner': 'Gus', 'Jesse Plemons': 'Jake', 'Seth Rogen': 'Paul       (voice)', 'Jason Bateman': 'Agent Zoil', 'Sigourney Weaver': 'The Big Guy'}\"\r\ntt0102303,\"{'Mel Brooks': 'Goddard Bolt', 'Lesley Ann Warren': 'Molly', 'Jeffrey Tambor': 'Vance Crasswell', 'Stuart Pankin': 'Pritchard', 'Howard Morris': 'Sailor', 'Rudy De Luca': 'J. Paul Getty', 'Teddy Wilson': 'Fumes', 'Michael Ensign': 'Knowles', 'Matthew Faison': 'Stevens', 'Billy Barty': 'Willy', 'Brian Thompson': 'Mean Victor', \"\"Raymond O'Connor\"\": 'Yo', 'Carmine Caridi': 'Flophouse Owner', 'Sammy Shore': 'Reverend at Wedding', 'Frank Roman': 'Spanish Interpreter'}\"\r\ntt0076489,\"{'John Denver': 'Jerry Landers', 'George Burns': 'God', 'Teri Garr': 'Bobbie Landers', 'Donald Pleasence': 'Doctor Harmon', 'Ralph Bellamy': 'Sam Raven', 'William Daniels': 'George Summers', 'Barnard Hughes': 'Judge Baker', 'Paul Sorvino': 'Reverend Willie Williams', 'Barry Sullivan': 'Bishop Reardon', 'Dinah Shore': 'Dinah Shore', 'Jeff Corey': 'Rabbi Silverstone', 'George Furth': 'Briggs', 'David Ogden Stiers': 'Mr. McCarthy', 'Titos Vandis': 'Greek Bishop Markos', 'Moosie Drier': 'Adam Landers'}\"\r\ntt0069495,\"{'Barbra Streisand': 'Judy Maxwell', \"\"Ryan O'Neal\"\": 'Howard Bannister', 'Madeline Kahn': 'Eunice Burns', 'Kenneth Mars': 'Hugh Simon', 'Austin Pendleton': 'Frederick Larrabee', 'Michael Murphy': 'Mr. Smith', 'Philip Roth': 'Mr. Jones       (as Phil Roth)', 'Sorrell Booke': 'Harry', 'Stefan Gierasch': 'Fritz', 'Mabel Albertson': 'Mrs. Van Hoskins', 'Liam Dunn': 'Judge Maxwell', 'John Hillerman': 'Hotel Manager', 'George Morfogen': 'Headwaiter', 'Graham Jarvis': 'Bailiff', 'Randy Quaid': 'Professor Hosquith'}\"\r\ntt2719848,\"{'Jason Clarke': 'Rob Hall', 'Ang Phula Sherpa': 'Ang Dorjee', 'Thomas M. Wright': 'Michael Groom', 'Martin Henderson': \"\"Andy 'Harold' Harris\"\", 'Tom Goodman-Hill': 'Neal Beidleman', 'Charlotte Bøving': 'Lene Gammelgaard', 'Pemba Sherpa': 'Lopsang', 'Amy Shindler': 'Charlotte Fox', 'Simon Harrison': 'Tim Madsen', 'Chris Reilly': 'Klev Schoening', 'John Hawkes': 'Doug Hansen', 'Naoko Mori': 'Yasuko Namba', 'Michael Kelly': 'Jon Krakauer', 'Tim Dantay': 'John Taske', 'Todd Boyce': 'Frank Fischbeck'}\"\r\ntt1121096,\"{'Jeff Bridges': 'Master Gregory', 'Ben Barnes': 'Tom Ward', 'Julianne Moore': 'Mother Malkin', 'Alicia Vikander': 'Alice', 'Antje Traue': 'Bony Lizzie', 'Olivia Williams': 'Mam Ward', 'John DeSantis': 'Tusk', 'Kit Harington': 'Mr. Bradley', 'Djimon Hounsou': 'Radu', 'Gerard Plunkett': 'Inquisitor', 'Jason Scott Lee': 'Urag', 'Kandyse McClure': 'Sarikin', 'Luc Roderique': 'Strix', 'Zahf Paroo': 'Virahadra', 'Timothy Webber': 'Malcom Ward'}\"\r\ntt0386140,\"{'Alberto Reyes': 'Brother Ignacio', 'Julio Oscar Mechoso': 'Frey Felipe', 'Gustavo Sánchez Parra': 'Guillermo Cortez', 'Adrian Alonso': 'Joaquin de la Vega', 'Nick Chinlund': 'Jacob McGivens', 'Giovanna Zacarías': 'Blanca Cortez       (as Giovanna Zacarias)', 'Carlos Cobos': 'Tabulador', 'Antonio Banderas': 'Don Alejandro de la Vega /              Zorro', 'Michael Emerson': 'Harrigan', 'Shuler Hensley': 'Pike', 'Pedro Armendáriz Jr.': 'Governor Riley       (as Pedro Armendariz)', 'Mary Crosby': \"\"Governor's Wife\"\", 'Catherine Zeta-Jones': 'Elena de la Vega', 'Mauricio Bonet': 'Don Verdugo', 'Fernando Becerril': 'Don Diaz'}\"\r\ntt0091530,\"{'Robert De Niro': 'Mendoza', 'Jeremy Irons': 'Gabriel', 'Ray McAnally': 'Altamirano', 'Aidan Quinn': 'Felipe', 'Cherie Lunghi': 'Carlotta', 'Ronald Pickup': 'Hontar', 'Chuck Low': 'Cabeza', 'Liam Neeson': 'Fielding', 'Bercelio Moya': 'Indian Boy', 'Sigifredo Ismare': 'Witch Doctor', 'Asuncion Ontiveros': 'Indian Chief', 'Alejandrino Moya': \"\"Chief's Lieutenant\"\", 'Daniel Berrigan': 'Sebastian', 'Rolf Gray': 'Young Jesuit', 'Álvaro Guerrero': 'Jesuit'}\"\r\ntt3062096,\"{'Tom Hanks': 'Robert Langdon', 'Felicity Jones': 'Sienna Brooks', 'Omar Sy': 'Christoph Bouchard', 'Irrfan Khan': 'Harry Sims', 'Sidse Babett Knudsen': 'Elizabeth Sinskey', 'Ben Foster': 'Bertrand Zobrist', 'Ana Ularu': 'Vayentha', 'Ida Darvish': 'Marta Alvarez', 'Paolo Antonio Simioni': 'Dr. Marconi', 'Alessandro Grimaldi': 'Florence Hospital Taxi Driver', 'Fausto Maria Sciarappa': 'Parker', 'Robin Mugnaini': 'Apartment Carabinieri Captain', 'Paul Ritter': 'CRC Tech Arbogast', 'Vincenzo Tanassi': 'Boboli Gardens Policeman', 'Alessandro Fabrizi': 'Gallery Guard'}\"\r\ntt2752772,\"{'James Ransone': 'Ex-Deputy So & So', 'Shannyn Sossamon': 'Courtney Collins', 'Robert Daniel Sloan': 'Dylan Collins       (as Robert Sloan)', 'Dartanian Sloan': 'Zach Collins', 'Lea Coco': 'Clint Collins', 'Tate Ellington': 'Dr. Stomberg', 'John Beasley': 'Father Rodriguez', 'Lucas Jade Zumann': 'Milo', 'Jaden Klein': 'Ted', 'Laila Haley': 'Emma', 'Caden Marshall Fritz': 'Peter', 'Olivia Rainey': 'Catherine', 'Nicholas King': 'Bughuul       (as Nick King)', 'Michael B. Woods': 'The Creeper       (as Michael Woods)', 'Tory O. Davis': 'Security Guard'}\"\r\ntt3713166,\"{'Heather Sossaman': 'Laura', 'Matthew Bohrer': 'Matt', 'Courtney Halverson': 'Val', 'Shelley Hennig': 'Blaire', 'Moses Storm': 'Mitch', 'Will Peltz': 'Adam', 'Renee Olstead': 'Jess', 'Jacob Wysocki': 'Ken', 'Mickey River': 'Dank Jimmy', 'Cal Barnes': 'Rando Pauls', 'Christa Hartsock': 'Chatroulette Girl'}\"\r\ntt2870612,\"{'Perdita Weeks': 'Scarlett', 'Ben Feldman': 'George', 'Edwin Hodge': 'Benji', 'François Civil': 'Papillon', 'Marion Lambert': 'Souxie', 'Ali Marhyar': 'Zed', 'Cosme Castro': 'La Taupe', 'Hamid Djavadan': 'Reza       (as Hamidreza Javdan)', 'Théo Cholbi': 'Gloomy Teenager', 'Emy Lévy': 'Tour Guide       (as Emy Levy)', 'Roger Van Hool': \"\"Scarlett's Father\"\", 'Olivia Csiky Trnka': 'Strange Young Woman', 'Hellyette Bess': 'Strange Old Woman', 'Aryan Rahimian': 'Iranian Armed Guard', 'Samuel Aouizerate': 'Danny'}\"\r\ntt2239832,\"{'Adam Brody': 'Isaac', 'Michael Ealy': 'Dominic', 'Jerry Ferrara': 'Jeremy', 'Meagan Good': 'Mya', 'Regina Hall': 'Candace', 'Dennis Haysbert': 'Uncle Eddie', 'Taraji P. Henson': 'Lauren', 'Terrence Jenkins': 'Michael       (as Terrence J)', 'Jenifer Lewis': 'Loretta', 'Romany Malco': 'Zeke', 'Wendi McLendon-Covey': 'Tish', 'Gary Owen': 'Bennett', 'Gabrielle Union': 'Kristen', 'David Walton': 'Terrell', 'Kevin Hart': 'Cedric'}\"\r\ntt1621045,\"{'Michael Ealy': 'Dominic', 'Jerry Ferrara': 'Jeremy', 'Meagan Good': 'Mya', 'Regina Hall': 'Candace', 'Kevin Hart': 'Cedric', 'Taraji P. Henson': 'Lauren', 'Terrence Jenkins': 'Michael       (as Terrence J)', 'Jenifer Lewis': 'Loretta', 'Romany Malco': 'Zeke', 'Gary Owen': 'Bennett', 'Gabrielle Union': 'Kristen', 'La La Anthony': 'Sonia', 'Chris Brown': 'Alex', 'Wendy Williams': 'Gail', 'Sherri Shepherd': 'Vicki'}\"\r\ntt1195478,\"{'Jason Segel': 'Tom Solomon', 'Emily Blunt': 'Violet Barnes', 'Chris Pratt': 'Alex Eilhauer', 'Alison Brie': 'Suzie Barnes-Eilhauer', 'Lauren Weedman': 'Chef Sally', 'Mimi Kennedy': 'Carol Solomon', 'David Paymer': 'Pete Solomon', 'Jacki Weaver': 'Sylvia Dickerson-Barnes', 'Jim Piddock': 'George Barnes', 'Adam Campbell': 'Gideon', 'Eric Scott Cooper': 'B&B Manager', 'Dakota Johnson': 'Audrey', 'Jane Carr': 'Grandma Katherine', 'Clement von Franckenstein': 'Grandpa Baba', 'Michael Ensign': 'Grandpa Harold'}\"\r\ntt1135503,\"{'Meryl Streep': 'Julia Child', 'Amy Adams': 'Julie Powell', 'Stanley Tucci': 'Paul Child', 'Chris Messina': 'Eric Powell', 'Linda Emond': 'Simone Beck', 'Helen Carey': 'Louisette Bertholle', 'Mary Lynn Rajskub': 'Sarah', 'Jane Lynch': 'Dorothy McWilliams', 'Joan Juliet Buck': 'Madame Brassart', 'Crystal McCreary': 'Ernestine       (as Crystal Noelle)', 'George Bartenieff': 'Chef Max Bugnard', 'Vanessa Ferlito': 'Cassie', 'Casey Wilson': 'Regina', 'Jillian Bach': 'Annabelle', 'Andrew Garman': \"\"John O'Brien\"\"}\"\r\ntt0457939,\"{'Cameron Diaz': 'Amanda', 'Kate Winslet': 'Iris', 'Jude Law': 'Graham', 'Jack Black': 'Miles', 'Eli Wallach': 'Arthur', 'Edward Burns': 'Ethan', 'Rufus Sewell': 'Jasper', 'Miffy Englefield': 'Sophie', 'Emma Pritchard': 'Olivia', 'Sarah Parish': 'Hannah', 'Shannyn Sossamon': 'Maggie', 'Bill Macy': 'Ernie', 'Shelley Berman': 'Norman', 'Kathryn Hahn': 'Bristol', 'John Krasinski': 'Ben'}\"\r\ntt2404435,\"{'Denzel Washington': 'Chisolm', 'Chris Pratt': 'Josh Faraday', 'Ethan Hawke': 'Goodnight Robicheaux', \"\"Vincent D'Onofrio\"\": 'Jack Horne', 'Byung-Hun Lee': 'Billy Rocks', 'Manuel Garcia-Rulfo': 'Vasquez', 'Martin Sensmeier': 'Red Harvest', 'Haley Bennett': 'Emma Cullen', 'Peter Sarsgaard': 'Bartholomew Bogue', 'Luke Grimes': 'Teddy Q', 'Matt Bomer': 'Matthew Cullen', 'Jonathan Joss': 'Denali', 'Cam Gigandet': 'McCann', 'Emil Beheshti': 'Maxwell', 'Mark Ashworth': 'Preacher'}\"\r\ntt0090927,\"{'Chuck Norris': 'Scott', 'Lee Marvin': 'Nick', 'Martin Balsam': 'Ben Kaplan', 'Joey Bishop': 'Harry Goldman', 'Robert Forster': 'Abdul', 'Lainie Kazan': 'Sylvia Goldman', 'George Kennedy': \"\"Father O'Malley\"\", 'Hanna Schygulla': 'Ingrid', 'Susan Strasberg': 'Debra Levine', 'Bo Svenson': 'Captain Campbell', 'Robert Vaughn': 'General Woodbridge', 'Shelley Winters': 'Edie Kaplan', 'William Wallace': 'Pete Peterson', 'Charles Grant': 'Tom Hale       (as Charles Floye)', 'Steve James': 'Bobby'}\"\r\ntt0172156,\"{'Martin Lawrence': 'Detective Marcus Burnett', 'Will Smith': 'Detective Mike Lowrey', 'Jordi Mollà': \"\"Hector Juan Carlos 'Johnny' Tapia\"\", 'Gabrielle Union': 'Syd', 'Peter Stormare': 'Alexei', 'Theresa Randle': 'Theresa', 'Joe Pantoliano': 'Captain Howard', 'Michael Shannon': 'Floyd Poteet', 'Jon Seda': 'Roberto', 'Yul Vazquez': 'Detective Mateo Reyes       (as Yul Vázquez)', 'Jason Manuel Olazabal': 'Detective Marco Vargas       (as Jason Manuel Olazábal)', 'Otto Sanchez': 'Carlos', 'Henry Rollins': 'TNT Leader', 'Antoni Corone': 'DEA Tony Dodd', 'Gary Nickens': 'TNT Fanuti'}\"\r\ntt0099399,\"{'Chuck Norris': 'Col. Scott McCoy', 'Billy Drago': 'Ramon Cota', 'John P. Ryan': 'Gen. Taylor', 'Richard Jaeckel': 'John Page - DEA Agent', 'Begonya Plaza': 'Quiquina Esquilinta       (as Begonia Plaza)', 'Paul Perri': 'Maj. Bobby Chavez', 'Héctor Mercado': 'Miguel       (as Hector Mercado)', 'Mark Margolis': 'Gen. Olmedo', 'Mateo Gómez': 'Ernesto Flores       (as Mateo Gomez)', 'Ruth de Sosa': 'Rita Chavez', 'Gerald Castillo': 'George Fogarty - DEA Director', 'Geoff Brewer': 'Maj. Anderson', 'Rick Prieto': 'Carlos', 'Sharlene Ross': 'DEA Agent in Van', 'Michael Heit': 'DEA Agent in Van'}\"\r\ntt0093164,\"{'Burt Reynolds': 'Mex       (as Nick Escalante)', 'Karen Young': 'Holly', 'Peter MacNicol': 'Cyrus Kinnick', 'Howard Hesseman': 'Pinchus Zion', 'Neill Barry': 'Danny DeMarco', 'Diana Scarwid': 'Cassie', 'Joseph Mascolo': 'Baby       (as Joe Mascolo)', 'Alfie Wise': 'Felix', 'Deborah Rush': 'D.D.', 'Wendell Burton': 'Osgood', 'Joanne Jackson': 'Millicent', 'Joe Klecko': 'Kinlaw', 'Peter Koch': 'Tiel       (as Pete Koch)', 'Joseph Bernard': 'Pit Boss', 'Barry Polkowitz': 'Hot Shot Dealer'}\"\r\ntt0162346,\"{'Thora Birch': 'Enid', 'Scarlett Johansson': 'Rebecca', 'Steve Buscemi': 'Seymour', 'Brad Renfro': 'Josh', 'Illeana Douglas': 'Roberta Allsworth', 'Bob Balaban': \"\"Enid's Dad\"\", 'Stacey Travis': 'Dana', 'Charles C. Stevenson Jr.': 'Norman', 'Dave Sheridan': 'Doug', 'Tom McGowan': 'Joe', 'Debra Azar': 'Melora', 'Brian George': 'Sidewinder Boss', 'Pat Healy': 'John Ellis', 'Rini Bell': 'Graduation Speaker', 'T.J. Thyne': 'Todd'}\"\r\ntt0130018,\"{'Jennifer Love Hewitt': 'Julie James', 'Freddie Prinze Jr.': 'Ray Bronson', 'Brandy Norwood': 'Karla Wilson       (as Brandy)', 'Mekhi Phifer': 'Tyrell', 'Muse Watson': 'Ben Willis', 'Bill Cobbs': 'Estes', 'Matthew Settle': 'Will Benson', 'Jeffrey Combs': 'Mr. Brooks', 'Jennifer Esposito': 'Nancy', 'John Hawkes': 'Dave', 'Ellerine Harding': 'Olga       (as Ellerine!)', 'Benjamin Brown': 'Darick The Dockhand', 'Red West': 'Paulsen', 'Michael P. Byrne': 'Thurston', 'Michael Bryan French': 'Doctor'}\"\r\ntt0424136,\"{'Patrick Wilson': 'Jeff Kohlver', 'Ellen Page': 'Hayley Stark', 'Sandra Oh': 'Judy Tokuda', 'Odessa Rae': 'Janelle Rogers       (as Jennifer Holmes)', 'G.J. Echternkamp': 'Nighthawks Clerk       (as Gilbert John)'}\"\r\ntt0118564,\"{'Nick Nolte': 'Wade Whitehouse', 'Brigid Tierney': 'Jill Whitehouse', 'Holmes Osborne': 'Gordon LaRiviere', 'Jim True-Frost': 'Jack Hewitt       (as Jim True)', 'Tim Post': 'Chick Ward', 'Christopher Heyerdahl': 'Frankie Lacoy       (as Chris Heyerdahl)', 'Marian Seldes': 'Alma Pittman', 'Janine Theriault': 'Hettie Rogers', 'Mary Beth Hurt': 'Lillian Horner', 'Paul Stewart': 'Mr. Horner', 'Sissy Spacek': 'Margie Fogg', 'Wayne Robson': 'Nick Wickham', 'Sean McCann': 'Evan Twombley', 'Sheena Larkin': 'Lugene Brooks', 'Penny Mancuso': 'Woman Driver'}\"\r\ntt1872181,\"{'Andrew Garfield': 'Spider-Man /              Peter Parker', 'Emma Stone': 'Gwen Stacy', 'Jamie Foxx': 'Electro /              Max Dillon', 'Dane DeHaan': 'Green Goblin /              Harry Osborn', 'Colm Feore': 'Donald Menken', 'Felicity Jones': 'Felicia', 'Paul Giamatti': 'Aleksei Sytsevich', 'Sally Field': 'Aunt May', 'Embeth Davidtz': 'Mary Parker', 'Campbell Scott': 'Richard Parker', 'Marton Csokas': 'Dr. Ashley Kafka', 'Louis Cancelmi': 'Man in Black Suit', 'Max Charles': 'Young Peter Parker', 'B.J. Novak': 'Alistair Smythe', 'Sarah Gadon': 'Kari'}\"\r\ntt0990407,\"{'Seth Rogen': 'Britt Reid /              The Green Hornet', 'Jay Chou': 'Kato', 'Cameron Diaz': 'Lenore Case', 'Tom Wilkinson': 'James Reid', 'Christoph Waltz': 'Chudnofsky', 'David Harbour': 'Scanlon', 'Edward James Olmos': 'Axford', 'Jamie Harris': 'Popeye', 'Chad L. Coleman': 'Chili       (as Chad Coleman)', 'Edward Furlong': 'Tupper', 'Jill Remez': 'Daily Sentinel Reporter', \"\"Joe O'Connor\"\": 'Daily Sentinel Reporter', 'Morgan Rusler': 'Daily Sentinel Reporter', 'Joshua Erenberg': 'Young Britt       (as Joshua Chandler Erenberg)', 'Analeigh Tipton': 'Ana Lee'}\"\r\ntt0164052,\"{'Elisabeth Shue': 'Linda McKay', 'Kevin Bacon': 'Sebastian Caine', 'Josh Brolin': 'Matthew Kensington', 'Kim Dickens': 'Sarah Kennedy', 'Greg Grunberg': 'Carter Abbey', 'Joey Slotnick': 'Frank Chase', 'Mary Randle': 'Janice Walton', 'William Devane': 'Dr. Kramer', 'Rhona Mitra': \"\"Sebastian's Neighbor\"\", 'Pablo Espinosa': 'Warehouse Guard', 'Margot Rose': 'Mrs. Kramer', 'Jimmie F. Skaggs': 'Wino', 'Jeffrey Scaperrotta': 'Boy in Car       (as Jeffrey George Scaperotta)', 'Sarah Bowles': 'Girl in Car', 'Kelli Scott': 'Mom'}\"\r\ntt0101846,\"{'Bryan Brown': 'Rollie Tyler', 'Brian Dennehy': 'Leo McCarthy', 'Rachel Ticotin': 'Kim Brandon', 'Joanna Gleason': 'Liz Kennedy', 'Philip Bosco': 'Ray Silak', \"\"Kevin J. O'Connor\"\": 'Matt Neely', 'Tom Mason': 'Mike Brandon', 'Dominic Zamprogna': 'Chris Brandon', 'Jossie DeGuzman': 'Velez', 'John Walsh': 'Rado', 'Peter Boretski': 'Becker', 'Lisa Fallon': 'Kylie', 'Lee Broker': 'DeMarco', 'Philip Akin': 'Det. McQuay', 'Tony De Santis': 'Det. Santoni       (as Tony de Santis)'}\"\r\ntt0089118,\"{'Bryan Brown': \"\"Roland 'Rollie' Tyler\"\", 'Brian Dennehy': 'Lt. Leo McCarthy', 'Diane Venora': 'Ellen Keith', 'Cliff De Young': 'Martin Lipton', 'Mason Adams': 'Col. Mason', 'Jerry Orbach': 'Nicholas DeFranco', 'Joe Grifasi': 'Mickey Gaglione', 'Martha Gehman': 'Andy', 'Roscoe Orman': 'Capt. Jake Wallenger', 'Trey Wilson': 'Lt. Murdoch', 'Tom Noonan': 'Varrick', \"\"Paul D'Amato\"\": 'Gallagher', 'Jossie DeGuzman': 'Marisa Velez       (as Jossie deGuzman)', 'Jean De Baer': 'Whitemore', \"\"M'el Dowd\"\": \"\"Joyce Lehman (Miss Lehman)       (as M'eL Dowd)\"\"}\"\r\ntt3721936,\"{'Sasha Lane': 'Star', 'Shia LaBeouf': 'Jake', 'Riley Keough': 'Krystal', 'McCaul Lombardi': 'Corey', 'Arielle Holmes': 'Pagan', 'Crystal Ice': 'Katness       (as Crystal B. Ice)', 'Veronica Ezell': 'QT       (as Verronikah Ezell)', 'Chad Cox': 'Billy       (as Chad McKenzie Cox)', 'Garry Howell': 'Austin', 'Kenneth Kory Tucker': 'Sean', 'Raymond Coalson': 'JJ', 'Isaiah Stone': 'Kalium', 'Dakota Powers': 'Runt', 'Shawna Rae Moseley': 'Shaunte', 'Christopher David Wright': 'Riley'}\"\r\ntt0401420,\"{'Diane Lane': 'Liz Earl', 'Anton Yelchin': 'Finn Earl', 'Donald Sutherland': 'Ogden C. Osborne', 'Chris Evans': 'Bryce', 'Kristen Stewart': 'Maya', 'Paz de la Huerta': 'Jilly', 'Blu Mankuma': 'Gates', 'Elizabeth Perkins': 'Mrs. Langley', 'Christopher Shyer': 'Dr. Leffler', 'Garry Chalk': 'McCallum', 'Ryan McDonald': 'Ian', 'Dexter Bell': 'Marcus Gates', 'Kaleigh Dey': 'Paige', 'Aaron Brooks': 'Giacomo', 'Jeff Westmoreland': 'Whitney'}\"\r\ntt0492044,\"{'Virginia Madsen': 'Sara Campbell', 'Kyle Gallner': 'Matt Campbell', 'Elias Koteas': 'Reverend Popescu', 'Amanda Crew': 'Wendy', 'Martin Donovan': 'Peter Campbell', 'Sophi Knight': 'Mary', 'Ty Wood': 'Billy Campbell', 'Erik J. Berg': 'Jonah       (as Erik Berg)', 'John Bluethner': 'Ramsey Aickman', 'D.W. Brown': 'Dr. Brooks', 'John B. Lowe': 'Mr. Sinclair', \"\"Adriana O'Neil\"\": 'Chemo Nurse', 'Will Woytowich': 'Cop', 'James Durham': \"\"Matt's Cell Mate\"\", 'Darren Ross': 'Paramedic #1'}\"\r\ntt0098994,\"{'Jason Patric': 'Collie', 'Rocky Giordani': 'Bert', 'Rachel Ward': 'Fay', 'Bruce Dern': 'Uncle Bud', 'Tom Wagner': 'Counterman', 'Mike Hagerty': 'Truck Driver       (as Michael G. Hagerty)', 'James E. Bowen Jr.': 'Second Driver', 'George Dickerson': 'Doc Goldman', 'Vincent Mazella Jr.': 'Flashback Fighter       (as Vince Mazzella Jr.)', 'Napoleon Walls': 'Boxing Referee', 'Corey Carrier': 'Jack', 'Jeanie Moore': 'Nanny', 'James Cotton': 'Charlie', 'Burke Byrnes': 'Cop'}\"\r\ntt1457765,\"{'Abigail Spencer': 'Lisa Wyrick', 'Morgana Shaw': \"\"Lisa's Mother\"\", 'Emily Alyn Lind': 'Heidi Wyrick', 'Chad Michael Murray': 'Andy Wyrick', 'Grant James': 'Mr. Gordy', 'Katee Sackhoff': 'Joyce', 'Mary Louise Coffee': 'Lady Ghost Guide', 'Lauren Pennington': 'Nell       (as Lauren Whitney Pennington)', 'Sam Polin': 'Burlap Station Master - 1993', 'Lance E. Nichols': 'Pastor Wells', 'Jaren Mitchell': 'Levi', 'Cicely Tyson': 'Mama Kay', 'Brad James': 'Prentiss', 'Wayne Pére': 'Station Master - 1858', 'Hunter Burke': 'Arthur the Conductor'}\"\r\ntt3470600,\"{'Matthew McConaughey': 'Buster Moon       (voice)', 'Reese Witherspoon': 'Rosita       (voice)', 'Seth MacFarlane': 'Mike       (voice) (as Seth Macfarlane)', 'Scarlett Johansson': 'Ash       (voice)', 'John C. Reilly': 'Eddie       (voice)', 'Taron Egerton': 'Johnny       (voice)', 'Tori Kelly': 'Meena       (voice)', 'Jennifer Saunders': 'Nana       (voice)', 'Jennifer Hudson': 'Young Nana       (voice)', 'Garth Jennings': 'Miss Crawly /              Additional Voices       (voice)', 'Peter Serafinowicz': 'Big Daddy       (voice)', 'Nick Kroll': 'Gunter       (voice)', 'Beck Bennett': 'Lance       (voice)', 'Jay Pharoah': \"\"Meena's Grandfather       (voice)\"\", 'Nick Offerman': 'Norman       (voice)'}\"\r\ntt4302938,\"{'Art Parkinson': 'Kubo       (voice)', 'Charlize Theron': 'Mother       (voice)', 'Brenda Vaccaro': 'Kameyo       (voice)', 'Cary-Hiroyuki Tagawa': 'Hashi       (voice)', 'Meyrick Murphy': 'Mari       (voice)', 'George Takei': 'Hosato       (voice)', 'Rooney Mara': 'The Sisters       (voice)', 'Ralph Fiennes': 'Moon King       (voice)', 'Matthew McConaughey': 'Beetle       (voice)', 'Minae Noji': 'Minae       (voice)', 'Alpha Takahashi': 'Aiko       (voice)', 'Laura Miro': 'Miho       (voice)', 'Ken Takemoto': 'Ken       (voice)', 'Aaron Aoki': 'Villager       (voice)', 'Luke Donaldson': 'Villager       (voice)'}\"\r\ntt0479500,\"{'Emma Roberts': 'Nancy Drew', 'Craig Gellis': 'Thug', 'Rich Cooper': 'Charlie', 'Max Thieriot': 'Ned Nickerson', 'Amy Bruckner': 'Bess', 'Kay Panabaker': 'Georgie', 'Cliff Bemis': 'Chief McGinnis', 'Tate Donovan': 'Carson Drew', 'David Doty': 'Father Murray', 'Laura Harring': 'Dehlia Draycott       (as Laura Elena Harring)', 'Pat Carroll': 'Landlady', 'Monica Parker': 'Hannah', 'Caroline Aaron': 'Barbara Barbara', 'Marshall Bell': 'John Leshing', 'Daniella Monet': 'Inga Veinshtein'}\"\r\ntt1219342,\"{'Emily Barclay': 'Gylfie       (voice)', 'Abbie Cornish': 'Otulissa       (voice)', 'Essie Davis': 'Marella       (voice)', 'Adrienne DeFaria': 'Eglantine       (voice)', 'Joel Edgerton': 'Metal Beak       (voice)', 'Deborra-Lee Furness': 'Barran       (voice)', 'Sacha Horler': 'Strix Struma       (voice)', 'Bill Hunter': 'Bubo       (voice)', 'Ryan Kwanten': 'Kludd       (voice)', 'Anthony LaPaglia': 'Twilight       (voice)', 'Miriam Margolyes': 'Mrs. Plithiver       (voice)', 'Helen Mirren': 'Nyra       (voice)', 'Sam Neill': 'Allomere       (voice)', 'Barry Otto': 'Echidna       (voice)', 'Richard Roxburgh': 'Boron       (voice)'}\"\r\ntt0183790,\"{'Heath Ledger': 'William Thatcher', 'Rufus Sewell': 'Count Adhemar', 'Shannyn Sossamon': 'Jocelyn', 'Paul Bettany': 'Geoffrey Chaucer', 'Laura Fraser': 'Kate', 'Mark Addy': 'Roland', 'Alan Tudyk': 'Wat', 'Bérénice Bejo': 'Christiana       (as Berenice Bejo)', 'Scott Handy': 'Germaine', 'James Purefoy': 'Colville', 'Leagh Conwell': 'Young William Thatcher', 'Christopher Cazenove': 'John Thatcher', \"\"Steven O'Donnell\"\": \"\"Simon the Summoner       (as Steve O'Donnell)\"\", 'Jonathan Slinger': 'Peter the Pardoner', 'Nick Brimble': 'Sir Ector'}\"\r\ntt0047795,\"{'Bud Abbott': 'Pete Patterson', 'Lou Costello': 'Freddie Franklin', 'Marie Windsor': 'Madame Rontru', 'Michael Ansara': 'Charlie', 'Dan Seymour': 'Josef', 'Richard Deacon': 'Semu', 'Kurt Katch': 'Dr. Zoomer', 'Richard Karlan': 'Hetsut', 'Mel Welles': 'Iben', 'George Khoury': 'Habid', 'Eddie Parker': 'Klaris       (as Edwin Parker)', 'Mazzone-Abbott Dancers': 'Dance Troupe       (as The Mazzone-Abbott Dancers)', 'Chandra Kaly and His Dancers': 'Dance Troupe', 'Peggy King': 'Vocalist', 'Paul Marion': 'Native       (scenes deleted)'}\"\r\ntt4263482,\"{'Anya Taylor-Joy': 'Thomasin', 'Ralph Ineson': 'William', 'Kate Dickie': 'Katherine', 'Harvey Scrimshaw': 'Caleb', 'Ellie Grainger': 'Mercy', 'Lucas Dawson': 'Jonas', 'Julian Richings': 'Governor', 'Bathsheba Garnett': 'The Witch', 'Sarah Stephens': 'The Witch, Young', 'Daniel Malik': 'Black Phillip       (voice) (as Wahab Chaudhry)', 'Axtun Henry Dube': 'Samuel', 'Athan Conrad Dube': 'Samuel', 'Viv Moore': 'Lead Coven Witch       (as Vivien Moore)', 'Karen Kaeja': 'Coven Witch', 'Brandy Leary': 'Coven Witch'}\"\r\ntt0288477,\"{'Gabriel Byrne': 'Murphy', 'Julianna Margulies': 'Epps', 'Ron Eldard': 'Dodge', 'Desmond Harrington': 'Ferriman', 'Isaiah Washington': 'Greer', 'Alex Dimitriades': 'Santos', 'Karl Urban': 'Munder', 'Emily Browning': 'Katie Harwood', 'Francesca Rettondini': 'Francesca', 'Boris Brkic': 'Chief Steward', 'Bob Ruggiero': 'Captain       (as Robert Ruggiero)', 'Iain Gardiner': 'Purser', 'Adam Bieshaar': 'First Officer', 'Cameron Watt': 'Second Officer', 'Jamie Giddens': 'Friendly Officer'}\"\r\ntt0093091,\"{'Damon Martin': 'Larry', 'Royal Dano': 'Uncle Ned', 'Phil Fondacaro': 'Sir Nigel Penneyweight', 'J. Downing': 'P. Hardin', 'Kerry Remsen': 'Nicole', 'Dale Wyatt': 'Dixie', 'Jon Pennell': 'Bobby       (as Jon Maynard Pennell)', 'Sasha Jenson': 'Teddy', 'Starr Andreeff': 'Alice', 'William Butler': 'Merle', 'Donnie Jeffcoat': 'Eddie', 'Christopher Burton': 'Leo', 'Mickey Knox': 'Ray', 'Romano Puppo': 'Zampano', 'Ames Morton': 'Patty'}\"\r\ntt0472458,\"{'Pauline Lau': 'Masseuse', 'Tony Ka Fai Leung': 'Mr. Li       (as Tony Ka-Fai Leung)', 'Bai Ling': 'Mei, The Cook', 'Meme Tian': 'Connie       (as Meme)', 'So-Foon Wong': \"\"Kate's mother\"\", 'Miki Yeung': 'Kate', 'Miriam Chin Wah Yeung': 'Mrs. Li'}\"\r\ntt1700841,\"{'Alistair Abell': 'Mariachi Salsa /              Gefilte Fish       (voice)', 'Iris Apatow': 'Berry Good Candies /              Grape #3 /              Coconut Milk       (voice)', 'Sugar Lyn Beard': 'Baby Carrot /              Cookies       (voice)', 'Michael Cera': 'Barry       (voice)', 'Ian James Corlett': 'Apple /              Tickilish Licorice /              Relish /              Bag of Dog Food       (voice)', 'Michael Daingerfield': 'Chunk Munchers Cereal /              Light Bulb /              Indian Chutney       (voice)', 'Brian Dobson': 'Italian Tomato /              Lettuce       (voice)', 'Michael Dobson': 'Queso       (voice)', 'James Franco': 'Druggie       (voice)', 'Bill Hader': 'Firewater /              Tequila /              El Guaco       (voice)', 'Ian Hanlin': 'Beet       (voice)', 'Salma Hayek': 'Teresa       (voice)', 'Maryke Hendrikse': 'Popped Cherry Mixer /              Plum #1 /              Loretta Bun /              Frozen Fruitz       (voice)', 'Jonah Hill': 'Carl       (voice)', 'Anders Holm': 'Troy       (voice)'}\"\r\ntt0119109,\"{'Robin Williams': 'Dale Putley', 'Billy Crystal': 'Jack Lawrence', 'Julia Louis-Dreyfus': 'Carrie Lawrence', 'Nastassja Kinski': 'Collette Andrews', 'Charlie Hofheimer': 'Scott Andrews', 'Bruce Greenwood': 'Bob Andrews', 'Dennis Burkley': 'Calvin the Trucker', 'Haylie Johnson': 'Nikki Trainor', 'Charles Rocket': 'Russ Trainor', \"\"Patti D'Arbanville\"\": 'Shirley Trainor', 'Jared Harris': 'Lee', 'Louis Lombardi': 'Matt', 'Mark McGrath': 'Sugar Ray Band', 'Craig Bullock': 'Sugar Ray Band', 'Charles Stan Frazier': 'Sugar Ray Band'}\"\r\ntt0101745,\"{'Michael J. Fox': 'Dr. Ben Stone', 'Julie Warner': 'Lou', 'Barnard Hughes': 'Dr. Aurelius Edsel Hogue', 'Woody Harrelson': 'Hank Gordon', 'David Ogden Stiers': 'Mayor Nick Nicholson', 'Frances Sternhagen': 'Lillian - Welcoming Committee', 'George Hamilton': 'Doctor Halberstrom', 'Bridget Fonda': 'Nancy Lee Nicholson', 'Mel Winkler': 'Melvin - Mechanic', 'Helen Martin': 'Maddie - Welcoming Committee', 'Roberts Blossom': 'Judge Evans', 'Tom Lacy': 'Deputy Cotton', 'Macon McCalman': 'Aubrey Draper', 'Raye Birk': 'Simon Tidwell - First Patient', 'Eyde Byrde': 'Nurse Packer'}\"\r\ntt0099077,\"{'Robert De Niro': 'Leonard Lowe', 'Robin Williams': 'Dr. Malcolm Sayer', 'Julie Kavner': 'Eleanor Costello', 'Ruth Nelson': 'Mrs. Lowe', 'John Heard': 'Dr. Kaufman', 'Penelope Ann Miller': 'Paula', 'Alice Drummond': 'Lucy', 'Judith Malina': 'Rose', 'Barton Heyman': 'Bert', 'George Martin': 'Frank', 'Anne Meara': 'Miriam', 'Richard Libertini': 'Sidney', 'Laura Esterman': 'Lolly', 'Dexter Gordon': 'Rolando', 'Jayne Haynes': 'Frances'}\"\r\ntt0097236,\"{'Jason Robards': 'Coleman Ettinger', 'Corey Feldman': 'Bobby Keller /              Coleman Ettinger', 'Piper Laurie': 'Gena Ettinger', 'Meredith Salenger': 'Lainie Diamond', 'Harry Dean Stanton': 'Ike Baker', 'Corey Haim': 'Dinger', 'Susan Blakely': 'Cherry Diamond', 'William McNamara': 'Joel', 'Matt Adler': 'Dumas', 'Victoria Jackson': 'Kit Keller', 'Alex Rocco': 'Gus Keller', 'Ria Pavia': 'Maureen', 'Lala Sloatman': 'Shelley       (as Lala)', 'Laura Lee Norton': 'Marge', 'John Ward': 'Derek'}\"\r\ntt4382872,\"{'Bruce Willis': 'Leonard', 'Kellan Lutz': 'Harry Turner', 'Gina Carano': 'Victoria', 'D.B. Sweeney': 'Robertson', 'Joshua Mikel': 'Drake', 'Steve Coulter': 'Sitterson', 'Dan Bilzerian': 'Higgins', 'Heather Johansen': 'Agent Stevens', 'Roman Mitichyan': 'Dmitri', 'Christopher Rob Bowen': 'Purvis', 'Rob Steinberg': 'Ivan', 'Lydia Hull': 'Kris', 'Tyler Jon Olson': 'Darryl       (as Tyler J. Olson)', 'David Gordon': 'Sean', 'Nick Loeb': 'Vinn'}\"\r\ntt2923316,\"{'Hayden Christensen': 'James Kelly', 'Adrien Brody': 'Frankie Kelly', 'Jordana Brewster': 'Emily', 'Akon': 'Sugar', 'Tory Kittles': 'Ray', 'Luis Da Silva Jr.': 'Spoonie', 'Lance E. Nichols': 'Auto Shop Boss', 'John McConnell': 'Bank Manager', 'Joe Chrest': '(Police) Captain Sullivan', 'Aaron V. Williamson': 'House', 'Rachel Bilson': 'Eyewitness', 'Laura Cayouette': 'Loan Officer', 'Carol Sutton': 'Hostage Woman', 'Elena Sanchez': 'Katie', 'Belinda Delgado': 'Stripper'}\"\r\ntt4195278,\"{'Hande Dogandemir': 'Ayperi', 'Fatih Artman': 'Riza', 'Cengiz Bozkurt': 'Nafi', 'Sadi Celil Cengiz': 'Haktan', 'Gökçe Bahadir': 'Neriman', 'Tarik Ünlüoglu': 'Timur', 'Gürkan Uygun': 'Jilet', 'Seher Devrim Yakut': 'Selma       (as Devrim Yakut)', 'Erdal Tosun': 'Cemal', 'Berat Yenilmez': 'Yasar', 'Cihan Ercan': 'Kubilay', 'Burcu Biricik': 'Ezgi', 'Ercan Yazgan': 'Hasmet', 'Caglar Ertugrul': 'Erdil', 'Andy Boyns': 'Contractor'}\"\r\ntt3598222,\"{'Zoë Bell': 'Cassandra Clay', 'Kristanna Loken': 'Kat Morgan', 'Vivica A. Fox': 'Raven', 'Brigitte Nielsen': 'Ulrika', 'Cynthia Rothrock': 'Mona', 'Nicole Bilderback': 'Mei-Lin Fong', 'Tim Abell': 'Grigori Babishkov', 'Gerald Webb': 'Bobby', 'Edward DeRuiter': 'Vez       (as Ed Deruiter)', 'Alexis Raich': 'Lexi', 'Tiffany Panhilason': 'Elise', 'Bernard Babish': 'Pavel', 'Morgan Benoit': 'Stefan', 'Dmitri S. Boudrine': 'Luko       (as Dmitri Boudrine)', 'Kevin Fry': 'Jerrod       (as Kevin-Fry Bowers)'}\"\r\ntt3106120,\"{'Glenn Jacobs': \"\"Jacob Goodnight       (as Glenn 'Kane' Jacobs)\"\", 'Danielle Harris': 'Amy', 'Katharine Isabelle': 'Tamara', 'Chelan Simmons': 'Kayla', 'Kaj-Erik Eriksen': 'Seth', 'Greyston Holt': 'Will', 'Lee Majdoub': 'Carter', 'Michael Eklund': 'Holden', 'Reese Alexander': 'EMT #1', 'Kelly-Ruth Mercier': 'EMT #2', 'Lynn Colliar': 'News Reporter', 'Nancy Amelia Bell': \"\"Jacob's Mother       (as Nancy Bell)\"\", 'Christina Vidal': 'Christine       (archive footage)', 'Samantha Noble': 'Kira       (archive footage)', 'Steven Vidler': 'Williams       (archive footage)'}\"\r\ntt1043791,\"{'Fergus March': 'Webb', 'Emily Juniper': 'Larri', 'John Samuel Worsey': 'Milk', 'Rebecca Craven': 'Jess', 'Nina Kwok': 'Ketsy', 'David Bryant': 'Rob', 'Jay Worthy': 'Driver', 'Leighton Wise': 'Forestry Foreman'}\"\r\ntt0279688,\"{'George Peroulas': 'Happy Home Mental Patient', 'Fountain Yount': 'Edward Eischel', 'Gregory Fawcett': 'Francis       (as Greg Fawcett)', 'William Sanderson': 'Joe Slaader', 'Kurt Hargan': 'Dr. Wardlow', 'Frank Schuler': 'Peter Slaader', 'Marco St. John': 'Dr. Fenton', 'Rick Dial': 'Dr. Barnard', 'Tom Savini': 'Sheriff', 'Robert Jayne': 'Jasper       (as Bobby Jacoby)', 'Rachel Mellendorf': 'Ardelia', 'Jan Jackson': 'Nurse in operating room       (as Jane Jackson)', 'Tonya White': 'Featured Extra', 'David T. Alcorn': 'Syringe Head', 'Tommy Barnes': 'Attendant'}\"\r\ntt2396701,\"{'Alex Arleo': 'Jake Wildman', 'Arielle Brachfeld': 'Vanessa Dane', 'Graham Denman': 'Craig Gavin', 'Stephanie Greco': 'Penny Abbot', 'Carolina Groppa': 'Giselle James', 'Lynn Lowry': 'Bethany Romero', 'Howard McNair': 'Keith Drummond', 'Jason Owsley': 'Ray Roundtree', 'Jon Briddell': 'Officer Downs', 'Leigh Davis': 'Psychic Tourist', 'Jon Kondelik': 'Casey Martin', 'Maria Olsen': 'Anna Whaley', 'Shawn C. Phillips': \"\"Matthew 'Meathouse' Carter\"\", 'Abigail Digna Prendes': 'Marion - Ghost Girl', 'Jeff Pride': 'Officer Gates'}\"\r\ntt2240312,\"{'Katrina Bowden': 'Jerry', 'Randy Wayne': 'Johnny', 'Erin Marie Hogan': 'Natasha', 'Steve Hanks': 'McBride', 'Joshua Michael Allen': 'Young McBride       (as Josh Allen)', 'Brad Slaughter': 'Tony', 'Seth Cassell': 'Kyle', 'Darin Cooper': 'Warden Wilkes', 'Jordan Pratt-Thatcher': 'Heath', 'Lisa Younger': 'Samantha', 'Keith Allan': 'Van Hausen       (as Keith Allen)', 'Devanny Pinn': 'Woman With Scar', 'Natalie Sterling': \"\"Scar Woman's Sister\"\", 'Gerald Webb': 'Park Ranger', 'Alex Ball': 'Burly Guard #2'}\"\r\ntt1658801,\"{'Julianne Moore': 'Laurel Hester', 'Ellen Page': 'Stacie Andree', 'Michael Shannon': 'Dane Wells', 'Steve Carell': 'Steven Goldstein', 'Luke Grimes': 'Todd Belkin', 'Gabriel Luna': 'Quesada', 'Anthony DeSando': 'Toohey       (as Anthony De Sando)', 'Skipp Sudduth': 'Chief Reynolds', 'Josh Charles': 'Bryan Kelder', \"\"Kevin O'Rourke\"\": 'Dan Wickery', 'Tom McGowan': 'William Johnson', 'William Sadler': 'Peter Santucci', 'Dennis Boutsikaris': 'Pat Gerrity', 'Adam LeFevre': 'Don Bennett', 'Jeannine Kaspar': 'Margaret'}\"\r\ntt1489889,\"{'Dwayne Johnson': 'Bob Stone', 'Kevin Hart': 'Calvin Joyner', 'Amy Ryan': 'Agent Pamela Harris', 'Danielle Nicolet': 'Maggie', 'Jason Bateman': 'Trevor', 'Aaron Paul': 'Phil', 'Ryan Hansen': 'Steve', 'Tim Griffin': 'Agent Stan Mitchell', 'Timothy John Smith': 'Agent Nick Cooper', 'Sione Kelepi': 'Young Robbie', 'Dylan Boyack': 'Trevor - 17 Years Old', 'Thomas Kretschmann': 'The Buyer', 'Megan Park': 'Waitress', 'Slaine': 'Thugged Out', 'Annie Kerins': 'Lady MC'}\"\r\ntt2702724,\"{'Melissa McCarthy': 'Michelle Darnell', 'Kristen Bell': 'Claire', 'Peter Dinklage': 'Renault', 'Ella Anderson': 'Rachel', 'Tyler Labine': 'Mike Beals', 'Kathy Bates': 'Ida Marquette', 'Cecily Strong': 'Dana Dandridge', 'Mary Sohn': 'Jan Keller', 'Kristen Schaal': 'Scout Leader Sandy', 'Eva Peterson': 'Chrystal', 'Timothy Simons': 'Stephan       (as Tim Simons)', 'Aleandra Newcomb': 'Mariana', 'Annie Mumolo': 'Helen', 'Presley Coley': 'Hannah', 'Dax Shepard': 'Kyle       (as Dax Shephard)'}\"\r\ntt2245003,\"{'Drew Barrymore': 'Jess', 'Shola Adewusi': 'Midwife', 'Toni Collette': 'Milly', 'Grace Schneider': 'Jess (10 yrs)', 'Lucinda Raikes': 'Teacher', 'Eleanor Stagg': 'Milly (10 yrs)', 'Emily Trappen': 'Jess (13 yrs)', 'Lucy Morton': 'Milly (13 yrs)', 'Jacqueline Bisset': 'Miranda', 'Lukas Rolfe': 'Little Lord', 'Charlotte Hope': 'Teenage Jess', 'Sophie Holland': 'Teenage Milly', 'Fjokra': 'Lead Singer', 'Max Rinehart': 'Teenage Kit', 'Dominic Cooper': 'Kit'}\"\r\ntt1767372,\"{'Imogen Poots': 'Isabella Patterson', 'Illeana Douglas': 'Judy', 'Graydon Carter': 'Limo Driver', 'Owen Wilson': 'Arnold Albertson', 'Scott Campbell': 'Hotel Guest #1', 'Erin Heatherton': 'Hotel Guest #2', 'Melanie Hill': 'Hotel Receptionist', 'Jake Hoffman': 'Hotel Bellboy', 'Rhys Ifans': 'Seth Gilbert', 'Richard Lewis': 'Al Finkelstein', 'Cybill Shepherd': 'Nettie Finkelstein', 'Debi Mazar': 'Vickie', 'Austin Pendleton': 'Judge Pendergast', 'George Morfogen': 'Harold Fleet', 'Tovah Feldshuh': 'Miriam Pendergast'}\"\r\ntt4019560,\"{'Ana de Armas': 'Isabel De La Cruz', 'Gabe Vargas': \"\"Manuel 'Rocky' De La Cruz       (as Gabriel Vargas)\"\", 'Sandy Tejada': 'Yesenia', 'Ariel Pacheco': 'Naldo       (as Ariel Rolando Pacheco)', 'Ismael Cruz Cordova': 'Jose De La Cruz       (as Ismael Cruz Córdova)', 'Anthony Ruiz': 'Homeless Man', 'Stephen Thompson': 'Albino Floating Man', 'Keanu Reeves': 'Detective Galban', 'Mira Sorvino': 'Janine Cullen', 'Denia Brache': 'Gloria De La Cruz', 'Laura Gómez': 'Eva De La Cruz       (as Laura Gomez)', 'Jeanette Dilone': 'Marisol De La Cruz', 'Danny Guzman': 'Gucci De La Cruz', 'Christopher McDonald': 'Lieutenant Galway', 'Leopold Manswell': 'Kendu Wallace'}\"\r\ntt1274586,\"{'Nicolas Cage': 'Evan Lake', 'Anton Yelchin': 'Milton Schultz', 'Alexander Karim': 'Muhammad Banir', 'Irène Jacob': 'Michelle Zubarain', 'Tomiwa Edun': 'Mbui       (as Adetomiwa Edun)', 'Aymen Hamdouchi': 'Aasim', 'Claudius Peters': 'Ghedi', 'Robert G. Slade': 'James Clifton', 'Geff Francis': 'Dr. Clayborne', 'Silas Carson': 'Dr. Sanjar', 'Serban Celea': 'Dr. Iulian Cornel', 'Derek Ezenagu': 'Dr. Wangari', 'Sharif Sharbek': 'Serban', 'Tim Silano': 'Mike Warner', 'David Lipper': 'Bob Deacon'}\"\r\ntt2381991,\"{'Chris Hemsworth': 'The Huntsman /              Eric', 'Charlize Theron': 'Ravenna', 'Jessica Chastain': 'Sara', 'Emily Blunt': 'Queen Freya', 'Nick Frost': 'Nion', 'Rob Brydon': 'Gryff', 'Sheridan Smith': 'Mrs. Bromwyn', 'Alexandra Roach': 'Doreena', 'Sope Dirisu': 'Tull', 'Sam Hazeldine': 'Leifr', 'Sam Claflin': 'William', 'Sophie Cookson': 'Pippa', 'Conrad Khan': 'Young Eric', 'Niamh Walter': 'Young Sara', 'Nana Agyeman-Bediako': 'Young Tull'}\"\r\ntt0985025,\"{'William Hope': 'Jon', 'Leon Herbert': 'Rick', 'Ronald Pickup': 'Tobias', 'Philip Bretherton': 'Walter', 'Noah Huntley': 'Ben', 'Dominique McElligott': 'Emily', 'Skye Bennett': 'Sarah', 'Mr. Lordi': 'Lead Monster', 'Kita': 'Monster', 'Amen': 'Monster', 'Ox': 'Monster', 'Awa': 'Monster', 'Jussi Haukkamaa': 'Family on 8th Floor', 'Hilla Haukkamaa': 'Family on 8th Floor', 'Hugo Haukkamaa': 'Family on 8th Floor'}\"\r\ntt3307726,\"{'Trevor Donovan': 'Chief Trip Oliver', 'Linda Hamilton': 'Admiral Linda Hansen', 'Mya': 'Lt. Plummer       (as Mya Harrison)', 'John Savage': 'President DeSteno', 'Jamie Kennedy': 'Dr. Zimmer', 'Jair Burgos': 'Bravo Soldier', 'Richard Whiten': 'Lt. Commander Barclay', 'Ricco Ross': 'Captain Phillips', 'Jeff Rector': 'Captain Warren', 'Robert Blanche': 'Captain Dave Williams', 'Angelique Cinelu': 'Ensign', 'Justin Cuomo': 'Alex Preacher', 'Luke White': 'Stephen Hondo', 'Stephanie Cantu': 'Rivas', 'Darren Anthony Thomas': 'Greg Elfman'}\"\r\ntt2493486,\"{'Clive Owen': 'Raiden', 'Morgan Freeman': 'Bartok', 'Cliff Curtis': 'Lt. Cortez', 'Aksel Hennie': 'Geza Mott', 'IHARA': 'Ito       (as Tsuyoshi Ihara)', 'Sung-Ki Ahn': 'Auguste       (as Sung Ki Ahn)', 'Payman Maadi': 'Emperor', 'Si-yeon Park': 'Hannah', 'Noah Silver': 'Gabriel', 'Ayelet Zurer': 'Naomi', 'Hannah Rose Caton': 'Lilly       (as Rose Caton)', 'Giorgio Caputo': 'Slim Tully', 'James Babson': 'Fat Jim', 'Shohreh Aghdashloo': 'Maria', 'Michael Lombardi': 'Josiah'}\"\r\ntt2552498,\"{'Jane March': 'Serena', 'Ben Cross': 'Agent Hinton', 'Jamie Atkins': 'Jack Krutchens', 'Harry Dyer': 'Newald Krutchens', 'Vicki Glover': 'Lisa Russell', 'Julian Boote': 'Nigel Mason', 'Tanya Winsor': 'Sharon Mason', 'Nigel Peever': 'Oscar Madison', 'Robert Boyle': 'Staff Sergeant Sam Jones', 'Noel Ross': 'Constable Milton', 'Jon Campling': 'Jess Walters', 'Steve McTigue': \"\"General O'Shauncey\"\", 'Gemma Lawman': 'Hero Woman', 'Dylan Jones': 'Agent Jones', 'Dennis Carr': 'Simkins'}\"\r\ntt4145350,\"{'Brent Lydic': 'Hansel', 'Lili Baross': 'Gretel', 'Aqueela Zoll': 'Willy', 'Jhey Castles': 'Cthonia', 'Riley Murphy': 'Jacob', 'Adinett Nsabimana': 'Morai', 'Nanrisa Lee': 'Kikimora', 'Barbara Scolaro': 'Lilith', 'Elisha Kriis': 'Circa', 'Carol Stanzione': 'Bag Lady', 'Christopher Callen': 'Grandmother', 'Fawn Stone': 'Deputy Castiniera', 'Kevin Yarbrough': 'Sheriff Lopez', 'Maria Olsen': 'Crone', 'Jennifer Elizabeth': 'Bunny'}\"\r\ntt1509767,\"{'Matthew Macfadyen': 'Athos', 'Milla Jovovich': 'Milady de Winter', 'Helen George': 'Blonde', 'Christian Oliver': 'Venetian Nobleman', 'Luke Evans': 'Aramis', 'Ray Stevenson': 'Porthos', 'Til Schweiger': 'Cagliostro', 'Markus Brandl': 'Sergeant Venetian Guard', 'Orlando Bloom': 'Duke of Buckingham', 'Logan Lerman': \"\"D'Artagnan\"\", 'Dexter Fletcher': \"\"D'Artagnan's Father\"\", 'Jane Perry': \"\"D'Artagnan's Mother\"\", 'Mads Mikkelsen': 'Rochefort', 'Andy Gathergood': 'Drunk', 'Susanne Wolff': 'Cougar'}\"\r\ntt1572491,\"{'Carlos Areces': 'Javier', 'Antonio de la Torre': 'Sergio', 'Carolina Bang': 'Natalia', 'Manuel Tallafé': 'Ramiro', 'Alejandro Tejerías': 'Motorista-fantasma       (as Alejandro Tejería)', 'Manuel Tejada': 'Jefe de pista', 'Enrique Villén': 'Andrés', 'Gracia Olayo': 'Sonsoles', 'Sancho Gracia': 'Coronel Salcedo', 'Paco Sagarzazu': 'Anselmo', 'Santiago Segura': 'Padre-Payaso tonto', 'Fernando Guillén Cuervo': 'Capitán miliciano', 'Jorge Clemente': 'Javier (Joven 1943)', 'Fofito': 'Payaso listo', 'Sasha Di Bendetto': 'Javier (Niño 1937)       (as Sasha Di Bendetto)'}\"\r\ntt1031280,\"{'Charles Baker': 'Blake Sherman Jr.', 'Jill Wagner': 'Polly Watt', 'Paulo Costanzo': 'Seth Belzer', 'Shea Whigham': 'Dennis Farell', 'Rachel Kerbs': 'Lacey Belisle', 'Laurel Whitsett': 'Sheriff Terri Frankel'}\"\r\ntt2872810,\"{'Ian Bamberg': 'Jimmy', 'Noell Coet': 'Emily', 'Adam C. Edwards': 'The Intruder', 'Stephanie Erb': 'Lauren', 'Daniel Hugh Kelly': 'David', 'Erica Leerhsen': 'Kim', 'Shannon Makhanian': 'Mom', \"\"Charlie O'Connell\"\": 'Will', 'Stephen Rhodes': 'Intruder 2', 'Richard Riehle': 'Trucker', 'Ally Walker': 'Dr. Pomock'}\"\r\ntt1982735,\"{'Michael Copon': \"\"Melvin 'Spider' Holiday\"\", 'Rachel Lara': 'Taylor', 'Julia Beth Stern': 'Cammi', 'Alex Mandel': 'Derrick', 'Kaley Victoria Rose': 'Madison       (as Rachel Wixom)', 'Matt Calloway': 'Trevor', 'David Namminga': 'Dylan', 'Noah Gibbings': 'Cody', 'Gabriel Olivera': 'Adam', 'Richard Hoag': 'Henry Lee       (as Rich Hoag)', 'Sydney Rae Shalhoob': 'Young Cammi', 'Randolph Mantooth': 'Detective Bodrogi', 'Puffy Copon': 'Willie', 'Fuse': 'Fuse', 'Brian Harwell': \"\"Taylor's Dad\"\"}\"\r\ntt0286306,\"{'Jamie Bell': 'Pfc. Charlie Shakespeare', 'Rúaidhrí Conroy': 'Pvt. Colin Chevasse       (as Ruaidhri Conroy)', 'Mike Downey': 'Martin Plummer', 'Laurence Fox': 'Capt. Bramwell Jennings', 'Roman Horák': 'German soldier       (as Roman Horak)', 'Dean Lennox Kelly': 'Pvt. Willie McNess', 'Torben Liebrecht': 'Friedrich', 'Kris Marshall': 'Pvt. Barry Starinski', 'Hans Matheson': 'Pvt. Jack Hawkstone', \"\"Hugh O'Conor\"\": 'Anthony Bradford', 'Matthew Rhys': 'Cpl. Doc Fairweather', 'Andy Serkis': 'Pvt. Thomas Quinn', 'Hugo Speer': 'Sgt. David Tate', 'Pavel Tesar': 'Mudman'}\"\r\ntt0443435,\"{'Jessica Lowndes': 'Emily', 'Ross Kohn': 'Bobby', 'Ross McCall': 'Jude', 'Ashley Schneider': 'Clare', 'Arcadiy Golubovich': 'Dmitriy       (as Arkady Golubovich)', 'Gregg Brazzel': 'Man under Car       (as Greg Brazzel)', 'Robert LaSardo': 'Scott', 'Michael Bowen': 'Travis', 'Jenette Goldstein': 'Nurse Marian', 'Robert Patrick': 'Dr. Benway', 'Elijah Hardy': 'Gregory', 'Kevin M. White': 'Man in Hall', 'Tatyana Kanavka': 'Gretchen', 'Jeff L. Deist': 'Scarred Naked Man       (as Jeff Deist)', 'Eric F. Adams': 'Officer Jacobs'}\"\r\ntt3384904,\"{'Adrian Paul': 'Jeff Pierce', 'Jhey Castles': 'Lynne Pierce', 'Georgina Beedle': 'Mykaela Pierce', 'John Rhys-Davies': 'Col. Carlo Dillard', 'Dylan Vox': 'Kal', 'Dan Cade': 'Cade', 'Constantine Trendafilov': 'Gianni       (as Constatine Trendafilda)', 'Assen Vukushev': 'Naveen', 'Alexandra Petrova-Emisti': 'Rashida', 'Yordam Yositov': 'Rosso', 'Harry Anichkin': 'Italian Colonel', 'Vrunda Patel': 'Christina', 'Jonas Talkington': 'Paul', 'Ralitsa Paskaleva': 'Alita', 'J.R. Esposito': 'Smith'}\"\r\ntt2300975,\"{'Sarah Snook': 'Jessie', 'Joelle Carter': 'Kate', 'Mark Webber': 'Preston', 'David Andrews': 'Leon', 'Ana de la Reguera': 'Rosaura', 'Amber Stevens West': 'Dead Girl       (as Amber Stevens)', 'Chris Ellis': 'Sheriff Pruitt', 'Brian Hallisay': 'Mark', 'Vaughn Wilson': 'Moses', 'Larisa Oleynik': 'Sam', 'Fran Bennett': 'Mrs. Davis', 'Paul Garrett': 'Christophe', 'Barbara Weetman': 'Nurse', 'Jason Davis': 'Surgeon', 'Lucius Baston': 'Mr. Woods'}\"\r\ntt1331307,\"{'Jackson Rathbone': 'Stephen Grace', 'Hanne Steen': 'Cheryl Fromm', 'Laura Donnelly': 'Abby', 'Jonathan Readwin': 'Joshua Shaw', 'Shaun Evans': 'Quaid', 'Vivian Gray': 'Tabitha Swan', 'Carl McCrystal': 'Axe Man', 'Derek Lea': \"\"Quaid's Father\"\", 'Siobhan Hewlett': \"\"Quaid's Mother\"\", 'Kieran Murphy': 'Young Quaid', 'Cheyanne Raymond': 'Zooey       (as Cheyenne Raymond)', 'Zoe Stollery': 'Shauna', 'Elspeth Rae': 'Samantha', 'Erin Gavin': 'Valerie', 'Kerry Ann Smith': 'Nurse #1'}\"\r\ntt0492486,\"{'Lindsey Haun': 'Tara', 'Jack Huston': 'Jake', 'Max Kasch': 'Troy', 'Maya Hazen': 'Lisa', 'Alice Greczyn': 'Holly', 'Robert Hoffman': 'Bluto', 'Don Wycherley': 'Ernie', 'Sean McGinley': 'Bernie', 'Toby Sedgwick': 'Black Brother', 'André Pollack': 'The Dog', 'Jack Gleeson': 'Lonely Twin', 'Mike Carbery': 'Paramedic', 'Anna Tikhonova': 'Mysterious Woman 1', 'Goranna McDonald': 'Mysterious Woman 2', 'Berry Murphy': \"\"Lonely Twin's Brother\"\"}\"\r\ntt3614530,\"{'Aubrey Peeples': 'Jerrica /              Jem', 'Stefanie Scott': 'Kimber', 'Aurora Perrineau': 'Shana', 'Hayley Kiyoko': 'Aja', 'Molly Ringwald': 'Aunt Bailey', 'Isabella Kai': 'Young Jerrica       (as Isabella Rice)', 'Barnaby Carpenter': 'Emmett Benton', 'Jason Kennedy': 'Jason Kennedy', 'Nathan Moore': 'Zipper', 'Juliette Lewis': 'Erica Raymond', 'Ryan Guzman': 'Rio', 'Justin Alastair': 'Esteban', 'Mischke Butler': 'Vocal Coach', 'Samantha Newark': 'Hair Stylist', 'Christopher Scott': 'Choreographer'}\"\r\ntt2005374,\"{'Nicolas Cage': 'Sgt. Jack Halcombe', 'Vanessa Hudgens': 'Cindy Paulson', 'John Cusack': 'Robert Hansen', 'Dean Norris': 'Sgt. Lyle Haugsven', 'Gia Mantegna': 'Debbie Peters', 'Robert Forgit': 'Sgt. Wayne Von Clasen', 'Brad William Henke': 'Carl Galenski', 'Michael McGrady': 'Vice Det. John Gentile', 'Katherine LaNasa': 'Fran Hansen', \"\"Ryan O'Nan\"\": 'Officer Gregg Baker', 'Kevin Dunn': 'Lt. Bob Jent', 'Connor Rockom': 'Hansen Son', 'Radha Mitchell': 'Allie Halcombe', 'Matt Gerald': 'Asst. Sgt. Ed Stauber', \"\"Jodi Lyn O'Keefe\"\": 'Chelle Ringell'}\"\r\ntt0382943,\"{'Vincent Pastore': 'Frank', 'Michael Gibney': 'Alan', 'Paul DeAngelo': 'Ronnie', 'Jonathan Tiersten': 'Ricky Thomas', 'Isaac Hayes': 'Charlie the Chef', 'Lenny Venito': 'Mickey', 'Erin Broderick': 'Karen', 'Adam Wylie': 'Weed', 'Kate Simses': 'Petey', 'Brye Cooper': 'Randy', 'Michael Werner': 'Michael', 'Christopher Shand': 'T.C.', 'Jaime Radow': 'Jenny', 'Shahidah McIntosh': 'Bella       (as Shahida McIntosh)', 'Jackie Tohn': 'Linda'}\"\r\ntt1757742,\"{'Francesc Garrido': 'Heseltine', 'Fiona Glascott': 'Ellen Keegan', 'Rick Gonzalez': 'Paul Ortega', 'Kai Lennox': 'Alan White', 'Gia Mantegna': 'Caitlin White', \"\"Michael O'Keefe\"\": 'Dr. Helzer', 'Damian Roman': 'Benny White', 'Laura Martuscelli': 'Cynthia', 'Fermí Reixach': 'Lamson', 'Souleymane Diop': 'Concierge', 'Alex van Kuyk': 'Man in the Subway', 'Marcel Barrena': 'Paramedic 1', 'Vincent Damman': 'Paramedic 2', 'Yatma Sall': 'Paramedic 3', 'Susana García Díez': 'Pedestrian 1'}\"\r\ntt2474438,\"{'Guillaume Gouix': 'Paul /              Attila Marcel', 'Anne Le Ny': 'Mme Proust', 'Bernadette Lafont': 'Tante Annie', 'Hélène Vincent': 'Tante Anna', 'Luis Rego': 'M. Coelho', 'Fanny Touron': 'Anita', 'Kea Kaing': 'Michelle', 'Jean-Claude Dreyfus': 'M. Kruzinsky', 'Vincent Deniard': 'Gégé', 'Cyril Couton': 'Le docteur', 'Philippe Soutan': 'Le concierge', 'Guilhem Pellegrin': 'M. Chassepot de Pissy', 'Jean-Paul Solal': 'M. Pineton de Chambrun', 'Jean-Pol Brissart': 'M. Berkoff', 'Elsa Davoine': 'Tante Annie jeune'}\"\r\ntt1366365,\"{'Henry Cavill': 'Will', 'Verónica Echegui': 'Lucia', 'Bruce Willis': 'Martin', 'Sigourney Weaver': 'Carrack', 'Joseph Mawle': 'Gorman', 'Caroline Goodall': 'Laurie', 'Rafi Gavron': 'Josh', 'Emma Hamilton': 'Dara', 'Michael Budd': 'Esmael', 'Roschdy Zem': 'Zahir', 'Óscar Jaenada': 'Maximo', 'Joe Dixon': 'Dixon', 'Jim Piddock': 'Meckler', 'Fermí Reixach': 'Carlos', 'Lolo Herrero': 'Reynaldo'}\"\r\ntt2395199,\"{'Tom Everett Scott': 'Henry', 'Jean-Claude Van Damme': 'Xander', 'Orlando Jones': 'Clay', 'Linzey Cocker': 'Kayla', 'Christopher Robbie': 'Sanderson', 'Zachary Baharov': 'Saul       (as Zahari Baharov)', 'Dimo Alexiev': 'Morris', 'Kris Van Damme': 'Francois', 'Vlado Mihailov': 'Jean       (as Vladimir Mihailov)', 'Teodor Tsolov': 'Eto       (as Teodor Tzolov)', 'Hristo Mitzkov': 'Wooton', 'Ryan Spike Dauner': 'Spota       (as Ryan Dauner - Spike)', 'Jonas Talkington': 'I.C.E. Leader', 'Paul Jenkins': 'I.C.E. Agent #1', 'Atanas Srebrev': 'I.C.E. Agent #2'}\"\r\ntt2012665,\"{'Forest Whitaker': 'Angel Sanchez', 'Anthony Mackie': 'Tommy Carter', 'Mike Epps': 'Ben Carter', 'Sanaa Lathan': 'Maggie Carter', 'Nicole Ari Parker': 'Sophie Sanchez', 'Ariana Neal': 'Francesca Sanchez', 'Denise Milfort': 'Seer', 'Selma Pinkard': 'Aunt', 'Avery Edward Landry': 'Boy', 'Margo Swisher': 'Red-head Woman', 'Adella Gautier': \"\"Angel's Mother\"\", 'Jessica Medina': \"\"Angel's Cousin #1\"\", 'Gina Blocker': \"\"Angel's Cousin #2\"\", 'Peter Weller': 'Meyer', 'Ashley Toman': 'Harpist'}\"\r\ntt3036676,\"{'Vinnie Jones': 'Vincent De La Cruz', 'Mischa Barton': 'Lisa Thomas', 'Timothy Woodward Jr.': 'Jaxon Stone', 'Danny Trejo': 'Tattoo', 'Luke Goss': 'Jake Tharseo', 'Erin Marie Hogan': 'Amanda Torres', 'Said Faraj': 'Salvadore', 'Basil Hoffman': 'Judge Eller', 'Jerry G. Angelo': 'Juan Torres', 'Sammy Durrani': 'Selena Lopez', 'Isaac C. Singleton Jr.': 'Spike', 'Matt Cinquanta': 'Detective Pritchard', 'Zach Touchon': 'Alberto Lopez', 'Donald Martin': 'Officer Tucker /              Defendant #1', 'Geoff Browne': 'Walter Metcalfe'}\"\r\ntt1014763,\"{'Xavier Atkins': 'Young Leo Demidov', 'Mark Lewis Jones': 'Tortoise', 'Tom Hardy': 'Leo Demidov', 'Joel Kinnaman': 'Vasili', 'Fares Fares': 'Alexei Andreyev', 'Karel Dobrý': 'Photographer', 'Noomi Rapace': 'Raisa Demidov', 'Agnieszka Grochowska': 'Nina Andreyeva', 'Petr Vanek': 'Fyodor', 'Jana Stryková': 'Mara', 'Jason Clarke': 'Anatoly Tarasovich Brodsky', 'Ursina Lardi': 'Zina Gubinova', 'Michael Nardone': 'Semyon Okun', \"\"Jemma O'Brien\"\": 'Elena Okun', 'Lottie Steer': 'Tamara Okun'}\"\r\ntt2304953,\"{'Dominic Cooper': 'Mitch Brockden', 'Samuel L. Jackson': 'Clinton Davis', 'Gloria Reuben': 'Det. Blake Kanon', 'Ryan Robbins': 'Jimmy Logan', 'Erin Karpluk': 'Rachel Brockden', 'Dylan Taylor': 'Stuart Wilson', 'Karl Thordarson': 'Cecil Akerman', 'Dean Harder': 'Terry Roberts', 'Carson Nattrass': 'Officer Travis', 'John B. Lowe': 'Judge G. Mckenna', 'Philippe Brenninkmeyer': 'DA Jones', 'Jessica Burleson': 'Secretary', 'Kelly Wolfman': 'Dr. Brown', 'Steven Ratzlaff': 'Coroner       (as Steve Ratzlaff)', 'Jon Ljungberg': 'Reporter #1 (Jeff Franklin)'}\"\r\ntt1730294,\"{'Inbar Lavi': 'Talia', 'Edward Furlong': 'Tommy', 'Steven Bauer': 'Hector', 'James Caan': 'Micky', 'Oded Fehr': 'Levi', 'Jonathan Lipnicki': 'Young Yoni', 'J.C. MacKenzie': 'Mr. Phillips', 'Jeffrey Tambor': 'Mr. Solomon', 'Noel Gugliemi': 'Ramon', 'Paul Sorvino': 'Red', 'Leilani Sarelle': 'Nancy', 'Hal Ozsan': 'Abe', 'Delphine Chanéac': 'Aline', 'Michael Benyaer': 'Jacob', 'Meredith Scott Lynn': 'Mazal'}\"\r\ntt0269743,\"{'Sung-Jae Lee': 'Yun-ju', 'Doona Bae': 'Hyun-nam', 'Ho-jung Kim': 'Eun-sil', 'Hee-Bong Byun': 'Janitor       (as Hie-bong Byeon)', 'Su-hee Go': \"\"Jang-mi (Hyun-nam's friend)\"\", 'Roe-ha Kim': 'Shadow Man', 'Gin-goo Kim': 'Granny', 'Sang-soo Im': 'Senior Joon-pyo', 'Jeong-seon Seong': 'Aengbali', 'Jae-ha Jo': \"\"Aengbali's baby\"\", 'Chae-rin Hwang': 'Seul-gi', 'Sookyung Lee': \"\"Seul-gi's mother\"\", 'Hyuk-Poon Kwon': 'Management office chief', 'Yeongi Lee': 'Management office old-timer', 'Yong-ok Kim': 'Management office director'}\"\r\ntt3202890,\"{'John Cusack': 'Benjamin', 'Ryan Phillippe': 'Steven', 'Rachelle Lefevre': 'Shannon', 'Jacki Weaver': 'Reigert', 'Luis Guzmán': 'Superintendent', 'Briana Roy': 'Nina', 'Jandres Burgos': 'Salo', 'Veronica Faye Foo': 'Paola', 'Alex Cintrón': 'Hotel Manager', 'Millie Ruperto': 'Female Sergeant', 'Oscar H. Guerrero': 'Taxi Driver', 'Reema Sampat': 'Interpreter', 'Isabelle Adriani': 'Esmeralda (Bank Teller)       (as Isabella Adriani)', 'Sunshine Logroño': 'Mr. Lopez (Bank Manager)       (as Emmanuel Logrono)', 'Sean Taylor': 'Gerry'}\"\r\ntt0928375,\"{'Vinnie Jones': 'Mr. Hunter', 'Jason Barry': 'David Wallace', 'Nora-Jane Noone': 'Saiorse Reilly', 'Adam Fogerty': 'Bog Body', 'Amy Huberman': 'Hannah Ross', 'Shelly Goldstein': 'Val Leary', 'Gavin Kelty': 'Deano Doyle', 'Olga Wehrly': 'Mallory Ross', 'Michael Collins': 'Foreman', 'Paul Valentine': 'Builder', 'Glen Barry': 'Damo (Shop)', 'Charlene Gleeson': 'Lorna (Taxi)', 'Stephen Farrelly': \"\"Celtic Warrior       (as Sheamus O'Shaunessy)\"\", 'Sean Condren': 'Circus Boy', 'Aran Condren': 'Circus Boy 2'}\"\r\ntt2108605,\"{'Stephon Stewart': 'Stephon Lancaster', 'Davee Youngblood': 'Davee Lancaster', 'Shy Pilgreen': 'Shy Driskell', 'Sam Ayers': 'Travis', 'Don Scribner': 'Stranger', 'Brad S. Clayton': 'Townie', 'Michael Villar': 'Store Clerk', 'Joey Napoli': 'Townie', 'Johnnie Colter': 'Interviewee', 'Kyle Quinn': 'Himself'}\"\r\ntt1876261,\"{'Danny Bonaduce': 'Harley Anderson', 'Barry Williams': 'Simon Quint', 'Bruce Davison': 'Sheriff Walt Henderson', 'Sherilyn Fenn': 'Sheriff Becky Alvarez', 'Howard Hesseman': 'Mayor Tommy Gillis', 'Andre Royo': 'Al Hunter', 'Alice Cooper': 'Alice Cooper', 'Stephanie Sarreal Park': 'Priya', 'Cynthia Geary': 'Sueanne', 'Noelia Rodriguez': 'Delia', 'Toan Le': 'Alex', 'Demetrius Sager': 'Max', 'Ulric Dihle': 'Colonel Tifton', 'Jennifer Ropella': 'Lynn', 'John Paulsen': 'Laurich'}\"\r\ntt2457138,\"{'Craig Sheffer': 'Major Brian Hoffman', 'Dennis Haysbert': 'Lt. General Christopher Monning', 'Kate Vernon': 'Dr. Ellen Gordon       (as Katherine Elizabeth Vernon)', 'Ariana Richards': 'Donna Voorhees', 'Bill Duke': 'President Donald Sheridan', 'Wes Studi': 'Captain Falcons', 'Ernie Hudson': 'Max Stevens', 'Benjamin James': 'Corporal CJ Parkins', 'Anthony Pacella': 'Carl Hammond', 'Darin Cooper': 'Defense Secretary Woods', 'Afrim Gjonbalaj': 'Captain Sims', 'Richard Lounello': 'Platoon Leader       (as Rich Lounello)', 'Frank Rossi': 'Air Force Chief of Staff', 'Michael Cipiti': 'Staff Official', 'Richard Satterwhite': 'American Citizen'}\"\r\ntt1956620,\"{'Cameron Diaz': 'Annie', 'Jason Segel': 'Jay', 'Rob Corddry': 'Robby', 'Ellie Kemper': 'Tess', 'Rob Lowe': 'Hank', 'Nat Faxon': 'Max', 'Nancy Lenehan': 'Linda', 'Giselle Eisenberg': 'Nell', 'Harrison Holzer': 'Howard', 'Sebastian Hedges Thomas': 'Clive', 'Timothy Brennen': 'Walt', 'Krisztina Koltai': 'Marta', 'Randall Park': 'Edward', 'Joe Stapleton': 'Piper Bros. Executive', 'James Wilcox': 'Charlie'}\"\r\ntt2166934,\"{'Sean Young': 'Therapist', 'Michael Rapaport': 'Marty', 'Diane Guerrero': 'Malea', 'Tika Sumpter': 'Clarissa', 'John Stamos': 'Mike', 'Bryan Callen': 'Paul', 'Andrea Bordeaux': 'Jordan', 'Carly Brooke': 'Roslyn       (as Carly Brooke Pearlstein)', 'Ronnie Mund': 'Strip Club Patron', 'Wass Stevens': 'Trainer Joe', 'Maria Bartiromo': 'Herself', 'Tony Devon': 'Damon', 'Stephanie Domini': 'Dancer       (as Stephanie Domini Ehlert)', 'Heidi Armbruster': 'Liz', 'Madison Arnold': 'Maury'}\"\r\ntt3203890,\"{'Jaime Camil': 'Alejandro', 'Laura Ramsey': 'Rachel', 'Omar Chaparro': 'Canicas', 'Aurora Papile': 'Carol', 'Renata Ybarra': 'Maria', 'Mariachi Juvenil de Tecalitlán': \"\"Alejandro's Mariachi Band\"\", 'Stockard Channing': 'Virginia', 'Tom Arnold': 'Art', 'Roberto Sosa': 'Hapi', 'Carlos Macias': 'Neron', 'Jorge Zárate': 'Cosme', 'Emilio Guerrero': 'Don Gus', 'Juan Pablo Gil': 'Manolo', 'Luis Fernando Peña': 'Max', 'María del Carmen Farias': 'School Principal'}\"\r\ntt2378281,\"{'Andrés Vázquez': 'Valentín niño', 'Hugo Stiglitz': 'Johnny Bravo', 'Eugenio Derbez': 'Valentín', 'Leia Freitas': 'Amante Brasileña', 'Ángela Moreno': 'Amante Dominicana', 'Gilda Gentile': 'Amante Argentina', 'Nancy Taira': 'Amante Oriental', 'Jessica Lindsey': 'Julie', 'Sammy Pérez': 'Sammy', 'Arcelia Ramírez': 'Judeisy', 'Agustín Bernal': 'Lupe', 'Gregg Lucas': 'Agente migración', 'Roger Cudney': 'Abogado Julie', 'Migael Penix': 'Portero hotel L.A.', 'Daniel Raymont': 'Frank Ryan'}\"\r\ntt1278449,\"{'Bengt Braskered': 'Amadeus Warnebring       (as Bengt Nilsson)', 'Sanna Persson': 'Sanna       (as Sanna Persson Halapi)', 'Magnus Börjeson': 'Magnus', 'Marcus Boij': 'Marcus       (as Marcus Haraldson Boij)', 'Johannes Björk': 'Johannes', 'Fredrik Myhr': 'Myran', 'Anders Vestergard': 'Anders', 'Axel Bergendal': 'Amadeus as a Child', 'Nina Brundahl Warnolf': 'Mother as Young       (as Nina Brunndahl Warnolf)', 'Martin Bergendal': 'Father as Young', 'Bilo Frenander': 'Grand-Father', 'Tage Persson': 'Oscar as a Child', 'Benjamin Peetre': 'Policeman with Radio', 'Lasse Svensson': 'Motorcycle Police', 'Paula McManus': 'Colette'}\"\r\ntt2382396,\"{'Nicolas Cage': 'Joe', 'Tye Sheridan': 'Gary', 'Gary Poulter': 'Wade a.k.a. G-Daawg', 'Ronnie Gene Blevins': 'Willie-Russell', 'Adriene Mishler': 'Connie', 'Brian Mays': 'Junior       (as Brian D. Mays)', 'Aj Wilson McPhaul': 'Earl       (as A.J. Wilson McPhaul)', 'Sue Rock': 'Merle', 'Heather Kafka': 'Lacy', 'Brenda Isaacs Booth': 'Mother       (as Brenda Isaacs-Booth)', 'Anna Niemtschk': 'Dorothy', 'Elbert Hill III': 'Shorty       (as Elbert Evan Hill III)', 'Milton Fountain': 'Milton', 'Roderick L. Polk': 'Roscoe', 'Aaron Spivey-Sorrells': 'Sammy'}\"\r\ntt0107302,\"{'Brad Pitt': 'Early Grayce', 'Kathy Larson': 'Teenage Girl       (as Catherine Larson)', 'David Milford': 'Driver', 'David Duchovny': 'Brian Kessler', 'John Zarchen': 'Peter', 'David Rose': 'Eric', 'Michelle Forbes': 'Carrie Laughlin', 'Tommy Chappelle': 'Old Man', 'Juliette Lewis': 'Adele Corners', 'Judson Vaughn': 'Parole Officer', 'James Michael McDougal': 'John Diebold       (as J. Michael McDougal)', 'Patricia Sill': 'Carol', 'Brett Rice': 'Police Officer', 'Marisa Raper': 'Little Girl', 'Bill Crabb': 'Middle Aged Farmer       (as Bill Crabbe)'}\"\r\ntt3093522,\"{'Ethan Hawke': 'Iachimo', 'Ed Harris': 'Cymbeline', 'Milla Jovovich': 'The Queen', 'John Leguizamo': 'Pisanio', 'Penn Badgley': 'Posthumus', 'Dakota Johnson': 'Imogen', 'Anton Yelchin': 'Cloten', 'Peter Gerety': 'Dr. Cornelius', 'Kevin Corrigan': 'The Hangman', 'Vondie Curtis-Hall': 'Caius Lucius', 'James Ransone': 'Philario', 'Spencer Treat Clark': 'Guiderius', 'Bill Pullman': 'Sicilius Leonatus', 'Delroy Lindo': 'Belarius', 'Harley Ware': 'Arviragus'}\"\r\ntt1396523,\"{'Justin Chon': 'Sonny', 'Kevin Wu': 'Steven', 'Harry Shum Jr.': 'Paul', 'Eugenia Yuan': 'Snakehead Mama', 'Leonard Wu': 'Ah Chung', 'Jin Au-Yeung': 'Detective Tang       (as Jin Auyeung)', 'Jon Kit Lee': 'Teddy', 'Shuya Chang': 'Tina', 'Alex Fox': 'Little Sonny', 'Michael Gregory Fung': 'Little Steven', 'Celia Au': 'Bobo', 'Ron Yuan': 'Born to Kill Dai Lo', 'Billy Magnussen': 'Detective Boyer', 'Geoff Pierson': 'FBI Director Sam Higgins', 'Ray Liotta': 'Michael Bloom'}\"\r\ntt1663207,\"{'Jennifer Aniston': 'Mickey Dawson', 'Yasiin Bey': 'Ordell Robbie', 'Isla Fisher': 'Melanie', 'Will Forte': 'Marshall Taylor', 'Mark Boone Junior': 'Richard Monk', 'Tim Robbins': 'Frank Dawson', 'John Hawkes': 'Louis Gara', 'Clea Lewis': 'Tyra Taylor', 'Charlie Tahan': 'Bo Dawson', 'Kevin Corrigan': 'Ray', 'Leonard Robinson': 'Officer Dixon', 'Kevin Porter Young': 'Officer Kenny', 'Alex Ladove': 'Pamela Taylor', 'Jenna Nye': 'Shelly Taylor', 'Jill Abramovitz': 'Jan'}\"\r\ntt1972571,\"{'Grigoriy Dobrygin': 'Issa Karpov       (as Grigory Dobrygin)', 'Philip Seymour Hoffman': 'Günther Bachmann', 'Homayoun Ershadi': 'Abdullah', 'Mehdi Dehbi': 'Jamal', 'Neil Malik Abdullah': \"\"Abdullah's Bodyguard       (as Neil Melik Abdullah)\"\", 'Nina Hoss': 'Irna Frey', 'Daniel Brühl': 'Maximilian', 'Vicky Krieps': 'Niki', 'Kostja Ullmann': 'Rasheed', 'Franz Hartwig': 'Karl', 'Martin Wuttke': 'The Admiral', 'Vedat Erincin': 'Storekeeper', 'Rainer Bock': 'Dieter Mohr', 'Derya Alabora': 'Leyla Oktay', 'Tamer Yigit': 'Melik Oktay'}\"\r\ntt1754656,\"{'Jeff Bridges': 'The Aviator       (voice)', 'Mackenzie Foy': 'The Little Girl       (voice)', 'Rachel McAdams': 'The Mother       (voice)', 'Marion Cotillard': 'The Rose       (voice)', 'Riley Osborne': 'The Little Prince       (voice)', 'James Franco': 'The Fox       (voice)', 'Bud Cort': 'The King       (voice)', 'Benicio Del Toro': 'The Snake       (voice)', 'Ricky Gervais': 'The Conceited Man       (voice)', 'Albert Brooks': 'The Businessman       (voice)', 'Paul Rudd': 'Mr. Prince       (voice)', 'Paul Giamatti': 'The Academy Teacher       (voice)', 'Jeffy Branion': 'The Policeman       (voice) (as Jeff Branion)', 'Jacquie Barnbrook': 'The Nurse /              The Worried Neighbor /              The Snooty Panelist       (voice)', 'Marcel Bridges': 'The Concerned Neighbor       (voice)'}\"\r\ntt1614989,\"{'Aksel Hennie': 'Roger', 'Synnøve Macody Lund': 'Diana', 'Nikolaj Coster-Waldau': 'Clas Greve', 'Eivind Sander': 'Ove Kjikerud', 'Julie R. Ølgaard': 'Lotte       (as Julie Ølgaard)', 'Kyrre Haugen Sydness': 'Lander', 'Valentina Alexeeva': 'Natasja', 'Reidar Sørensen': 'Brede Sperre', 'Nils Jørgen Kaalstad': 'Stig', 'Joachim Rafaelsen': 'Brugd', 'Mats Mogeland': 'Sunded', 'Gunnar Skramstad Johnsen': 'Monsen 1', 'Lars Skramstad Johnsen': 'Monsen 2', 'Signe Tynning': 'TV-vertinne', 'Nils Gunnar Lie': 'TV-vert'}\"\r\ntt0479162,\"{'Michael Rapaport': 'Les', 'Paul Blackthorne': 'Jonas Exiler', 'Josh Peck': 'Joey', 'Robert Baker': 'Everett', 'Jack Kehler': 'Dr. Dobson', 'Alexandra Holden': 'Maggie', 'Ian Bohen': 'Ted Exiler', 'Christopher Darga': 'Steve', 'Michael Shamus Wiles': 'Cop #1', 'Erich Anderson': 'Newscaster', 'Karyn Bryant': 'Co-host', 'Trish Nelson': 'Pregnant Teen       (as Patricia Ann Nelson)', 'Franc Ross': 'Crackhead', 'Marc Schaffer': 'Gorcery Store Mugger       (as Marc Shaffer)', 'Amanda Carlin': 'Mugging Victim'}\"\r\ntt1617661,\"{'Mila Kunis': 'Jupiter Jones', 'Channing Tatum': 'Caine Wise', 'Sean Bean': 'Stinger Apini', 'Eddie Redmayne': 'Balem Abrasax', 'Douglas Booth': 'Titus Abrasax', 'Tuppence Middleton': 'Kalique Abrasax', 'Nikki Amuka-Bird': 'Diomika Tsing', 'Christina Cole': 'Gemma Chatterjee', 'Nicholas A. Newman': 'Nesh', 'Ramon Tikaram': 'Phylo Percadium', 'Ariyon Bakare': 'Greeghan', 'Maria Doyle Kennedy': 'Aleksa', 'Frog Stone': 'Aunt Nino', 'David Ajala': 'Ibis', 'Doona Bae': 'Razo'}\"\r\ntt2223990,\"{'Chris Berman': 'Chris Berman', 'Dave Donaldson': 'Danny', 'Patrick St. Esprit': 'Tom Michaels', 'Chi McBride': 'Walt Gordon', 'Mel Kiper': 'Mel Kiper', 'Jon Gruden': 'Jon Gruden', 'Kevin Costner': 'Sonny Weaver Jr.', 'Deion Sanders': 'Deion Sanders', 'Mike Mayock': 'Mike Mayock', 'Jennifer Garner': 'Ali', 'Anthony Rizzo': 'Anthony Rizzo', 'Aaron Goldhammer': 'Aaron Goldhammer', 'Chadwick Boseman': 'Vontae Mack', 'Jordan Harris': \"\"Vontae's Nephew\"\", 'Zachary Littlejohn': \"\"Vontae's Nephew       (as Zachary Littleton)\"\"}\"\r\ntt1621046,\"{'Kerry Adra': 'American Lady', 'Maynor Alvarado': 'Chato Chavez', 'Yancey Arias': 'Gilbert Padilla', 'Wes Bentley': 'Jerry Cohen', 'Sara Banerjee': 'Concerned Mother #1       (as Sarah Banerjee)', 'Liv Boughn': 'Concerned Mother #2', 'Darion Basco': 'Larry Itlong', 'Lisa Brenner': 'Jackie Stringer', 'Duncan Bridgeman': 'Anchor', 'Aldo Ceceña': 'Chucho', 'Michael Cudlitz': 'Sheriff Smith', 'Roger Cudney': 'Grower', 'Rosario Dawson': 'Dolores Huerta', 'America Ferrera': 'Helen Chavez', 'Rodolfo Figueroa': 'Mexican Farmer'}\"\r\ntt2103264,\"{'Matthew Fox': 'General Bonner Fellers', 'Tommy Lee Jones': 'General Douglas MacArthur', 'Eriko Hatsune': 'Aya Shimada', 'Toshiyuki Nishida': 'General Kajima', 'Masayoshi Haneda': 'Takahashi', 'Kaori Momoi': 'Mitsuko Kajima', 'Colin Moy': 'General Richter', 'Masatoshi Nakamura': 'Prince Konoe', 'Masatô Ibu': 'Koichi Kido', 'Isao Natsuyagi': 'Teizaburo Sekiya', 'Takatarô Kataoka': 'Emperor Hirohito', 'Aaron Jackson': 'Lt Col. Rogers', 'Nic Sampson': 'Lieutenant Red', 'Shôhei Hino': 'Hideki Tojo', 'Will Wallace': 'CIC Commander'}\"\r\ntt1811307,\"{'Trent Ford': 'Daniel Lynch', 'Tammy Blanchard': 'Susan Stephensen', 'Morgan Spector': 'William Stephensen', 'Rob Mayes': 'Matthew Blackwood', 'William Lee Scott': 'Charlie Trumbo', 'Cotter Smith': 'Admiral Lynch', 'Michael Cumpsty': 'Admiral Stephensen', 'Michael Sirow': 'John Cokely', 'Mark Doherty': 'Skipper', 'Chris Chalk': 'Special Agent Jones', 'Tracy Weiler': 'Nancy', 'Gwynneth Bensen': 'Tammi', 'Jordan Dean': 'Stewie', 'Johnny Hopkins': 'Gorden', 'Haviland Morris': 'Grace Lynch'}\"\r\ntt2106476,\"{'Mads Mikkelsen': 'Lucas', 'Thomas Bo Larsen': 'Theo', 'Annika Wedderkopp': 'Klara', 'Lasse Fogelstrøm': 'Marcus', 'Susse Wold': 'Grethe', 'Anne Louise Hassing': 'Agnes', 'Lars Ranthe': 'Bruun', 'Alexandra Rapaport': 'Nadja', 'Sebastian Bull Sarning': 'Torsten', 'Steen Ordell Guldbrand Jensen': 'Lars T', 'Daniel Engstrup': 'Johan', 'Troels Thorsen': 'Bent', 'Søren Rønholt': 'Big Carsten', 'Hana Shuan': 'Tiny', 'Jytte Kvinesdal': 'Inger'}\"\r\ntt1713476,\"{'Nansi Aluka': 'Jaquline', 'Christopher Denham': 'Sam', 'Stephen Kunken': 'Dr. Abrams', 'Frank Deal': 'Mayor Stockman', 'Kether Donohue': 'Donna', 'Kristen Connolly': 'Stephanie', 'Will Rogers': 'Alex', 'Kimberly Campbell': 'Nurse Rebecca', 'Beckett Clayton-Luce': 'Charles', 'Dave Hager': 'Fisher Jerry', 'Tara Polhemus': 'Teenage Girl', 'Sean Johnson': 'Teenage Boy', 'Murat Erdan': \"\"Mike Radio Host       (as Murat 'Murf Dawg' Erdan)\"\", 'Lamya Jezek': 'Ms. Rosenblatt       (as Lamya Reynolds)', 'Lucia Scarano': 'Marla Spadafora       (as Lucia Forte)'}\"\r\ntt1134854,\"{'Alan Van Sprang': 'Sarge', 'Joshua Peace': 'D.J.       (as Josh Peace)', 'Hardee T. Lineham': 'Lieutenant Vaughn', 'Dru Viergever': 'Soldier Zombie', 'Eric Woolfe': 'Kenny', 'Shawn Roberts': 'Tony       (archive footage)', 'Scott Wentworth': 'Professor Maxwell       (archive footage)', 'Amy Lalonde': 'Tracy       (archive footage)', 'Michelle Morgan': 'Debra       (archive footage)', 'Joshua Close': 'Jason       (archive footage)', 'Mitch Risman': 'Drooling Zombie', 'Kenneth Welsh': \"\"O'Flynn\"\", 'Julian Richings': 'James', 'Wayne Robson': 'Tawdry', 'Kathleen Munroe': 'Janet /              Jane'}\"\r\ntt3233418,\"{'George Lopez': 'Fredi Cameron', 'Marisa Tomei': 'Gwen Kolinsky', 'Jamie Lee Curtis': 'Ms. Karen Lowry', 'Carlos PenaVega': 'Oscar Vazquez', 'José Julián': 'Lorenzo Santillan       (as Jose Julian)', 'David Del Rio': 'Cristian Arcega', 'Oscar Javier Gutierrez II': 'Luis Aranda       (as Oscar Gutierrez)', 'Alessandra Rosaldo': 'Mrs. Vazquez', 'J.R. Villarreal': 'Hector', 'Aubrey K. Miller': 'Maddy Kolinsky       (as Aubrey Miller)', 'Kevin Wiggins': 'Barrows', 'Alexa PenaVega': 'Karla', 'J.P. Murrieta': 'Male Announcer       (as J.R. Murrieta)', 'Nicole Brady': 'Female Announcer', 'Edward McGinty': 'Williams (Judge)       (as Ed McGinty)'}\"\r\ntt2725962,\"{'Rosamund Pike': 'Abi', 'David Tennant': 'Doug', 'Billy Connolly': 'Gordie', 'Ben Miller': 'Gavin', 'Amelia Bullmore': 'Margaret', 'Emilia Jones': 'Lottie', 'Bobby Smalldridge': 'Mickey', 'Harriet Turnbull': 'Jess', 'Celia Imrie': 'Agnes Chisolm', 'Annette Crosbie': 'Doreen', 'Lewis Davie': 'Kenneth', 'Ralph Riach': 'Jimmy Cazzarotto', 'Ron Donachie': 'Sgt. Murdoch', 'Ben Presley': 'PC McLuhan', 'Michele Austin': 'Lucy'}\"\r\ntt0391024,\"{'Samir Khader': 'Himself', 'Josh Rushing': 'Himself       (as Lt. Josh Rushing)', 'George W. Bush': 'Himself       (archive footage)', 'Hassan Ibrahim': 'Himself', 'Deema Khatib': 'Herself', 'Tom Mintier': 'Himself', 'Donald Rumsfeld': 'Himself       (archive footage)', 'David Shuster': 'Himself'}\"\r\ntt2017020,\"{'Hank Azaria': 'Gargamel', 'Neil Patrick Harris': 'Patrick', 'Brendan Gleeson': 'Victor', 'Jayma Mays': 'Grace', 'Jacob Tremblay': 'Blue', \"\"Nancy O'Dell\"\": \"\"Nancy O'Dell\"\", 'Karim Babin': 'Room Service Waiter', 'Gaston Morrison': 'New York Taxi Driver       (as Gaston Morrisson)', 'Jocelyn Blanchard': 'Toad Man', 'Erika Rosenbaum': 'Pregnant Mom', 'Carolina Bartczak': 'Peanut Mom', 'James A. Woods': 'Peanut Father', 'Henri Pardo': 'Father-to-Be', 'Vanessa Matsui': 'Mother with Camera', 'Dusan Dukic': 'Curious Dad'}\"\r\ntt0472181,\"{'Hank Azaria': 'Gargamel', 'Neil Patrick Harris': 'Patrick Winslow', 'Jayma Mays': 'Grace Winslow', 'Sofía Vergara': 'Odile Anjelou', 'Tim Gunn': 'Henri', 'Madison McKinley': 'Model', 'Meg Phillips': 'Model', 'Julie Chang': 'Newscaster', 'Roger Clark': 'Newscaster', 'Mark Doherty': 'Bluetooth Businessman', 'Minglie Chen': 'Young Woman', 'Sean Kenin': 'Guy in Plaid Shirt', 'Victor Pagan': 'Bum', 'Mahadeo Shivraj': 'Cabbie', 'Adria Baratta': 'Anjelou Employee'}\"\r\ntt1130088,\"{'Bill Milner': 'Edward', 'Anne-Marie Duff': 'Mum', 'Ralph Riach': 'Clive', 'Linzey Cocker': 'Tanya', 'Elizabeth Spriggs': 'Prudence', 'Leslie Phillips': 'Reg', 'Sylvia Syms': 'Lilian', 'Rosemary Harris': 'Elsie', 'David Morrissey': 'Dad', 'Thelma Barlow': 'Ena', 'Peter Vaughan': 'Bob', 'Carl McCrystal': 'Undertaker 1', 'Andrew Turner': 'Undertaker 2', 'Michael Caine': 'Clarence', 'Ollie Kaiper-Leach': 'Barry       (as Oliver Leach)'}\"\r\ntt2094064,\"{'Amy Acker': 'Beatrice', 'Alexis Denisof': 'Benedick', 'Nathan Fillion': 'Dogberry', 'Clark Gregg': 'Leonato', 'Reed Diamond': 'Don Pedro', 'Fran Kranz': 'Claudio', 'Jillian Morgese': 'Hero', 'Sean Maher': 'Don John', 'Spencer Treat Clark': 'Borachio', 'Riki Lindhome': 'Conrade', 'Ashley Johnson': 'Margaret', 'Emma Bates': 'Ursula', 'Tom Lenk': 'Verges', 'Nick Kocher': 'First Watchman', 'Brian McElhaney': 'Second Watchman'}\"\r\ntt1833888,\"{'Harry Connick Jr.': 'Michael Walker', 'Connie Britton': 'Susan Walker', 'Chandler Canterbury': 'David Walker', 'Fionnula Flanagan': 'Ma', 'Lyle Lovett': 'Griffin', 'Willie Nelson': 'Nick', 'Kris Kristofferson': 'The Colonel', 'Dana Wheeler-Nicholson': 'Maggie', 'Eloise DeJoria': 'Laura', 'Dylan Summerall': 'Young Uncle David', 'Brennan Barker': 'Young Michael', 'Deborah Cole': 'Theresa', 'Sara Hickman': 'Aunt Claire', 'Turk Pipkin': 'Uncle Theo', 'Lidia Porto': 'Rosalba'}\"\r\ntt1815862,\"{'Jaden Smith': 'Kitai Raige', 'Will Smith': 'Cypher Raige', 'Sophie Okonedo': 'Faia Raige', 'Zoë Kravitz': 'Senshi Raige       (as Zoë Isabella Kravitz)', 'Glenn Morshower': 'Commander Velan', 'Kristofer Hivju': 'Security Chief', 'Sacha Dhawan': 'Hesper Pilot', 'Chris Geere': 'Hesper Navigator', 'Diego Klattenhoff': 'Veteran Ranger', 'David Denman': 'Private McQuarrie', 'Lincoln Lewis': 'Running Cadet', 'Jaden Martin': 'Nine-Year-Old Kitai', 'Sincere L. Bobb': 'Three-Year-Old Kitai', 'Monika Jolly': 'Female Ranger'}\"\r\ntt0490181,\"{'Thomas Jane': \"\"Maj. 'Mitch' Hunter\"\", 'Ron Perlman': 'Brother Samuel', 'Devon Aoki': 'Cpl. Valerie Duval', 'Sean Pertwee': 'Capt. Nathan Rooker', 'Benno Fürmann': 'Lt. Maximillian von Steiner', 'John Malkovich': 'Constantine', 'Anna Walton': 'Severian', 'Tom Wu': 'Cpl. Juba Kim Wu', 'Steve Toussaint': 'Capt. John McGuire', 'Luis Echegaray': \"\"Cpl. Jesus 'El Jesus' de Barrera\"\", 'Pras Michel': 'Captain Michaels', 'Shauna Macdonald': 'Adelaide', 'Roger Ashton-Griffiths': 'Science Monk', 'Christopher Adamson': 'Hodge', 'Nicholas Ball': 'Plutocrat'}\"\r\ntt1865393,\"{'Clifton Collins Jr.': 'Lawrence', 'Clancy Brown': 'Angus', 'Andre Royo': 'Stephen', 'Robyn Rikoon': 'Elizabeth', 'Macon Blair': 'Macon', 'Stephen Gevedon': 'Clint', 'Larry Fessenden': 'Detective Elrod', 'Dan Fogler': 'Eric', 'Aaron Auslender': 'Passenger', 'Edoardo Ballerini': 'Father Atherton', 'Larry Block': 'Rabbi Weinberg', 'Patricia Bruno': 'Passenger', 'Samantha Buck': 'Penelope', 'Dan Chen': 'Demon Man child', 'Nadim Choudhary': \"\"Macon's Indonesian Lover\"\"}\"\r\ntt0407304,\"{'Tom Cruise': 'Ray Ferrier', 'Dakota Fanning': 'Rachel Ferrier', 'Miranda Otto': 'Mary Ann', 'Justin Chatwin': 'Robbie', 'Tim Robbins': 'Harlan Ogilvy', 'Rick Gonzalez': 'Vincent', 'Yul Vazquez': 'Julio       (as Yul Vázquez)', 'Lenny Venito': 'Manny the Mechanic', 'Lisa Ann Walter': 'Bartender', 'Ann Robinson': 'Grandmother', 'Gene Barry': 'Grandfather', 'David Alan Basche': 'Tim', 'Roz Abrams': 'Herself', 'Michael Brownlee': 'TV Reporter, Osaka', 'Camillia Monet': 'News Producer       (as Camillia Sanes)'}\"\r\ntt1321870,\"{'Sean Penn': 'Mickey Cohen', 'Holt McCallany': 'Karl Lockwood', 'Wade Williams': 'Rourke', 'James Landry Hébert': 'Mitch Racine       (as James Hèbert)', 'Ambyr Childers': 'Milk Skinned Blonde', 'Josh Brolin': \"\"Sgt. John O'Mara\"\", 'Mick Betancourt': 'Detective Sgt. Will Hendricks', 'Mac Brandt': 'Bruiser', 'Brandon Molale': \"\"Jimmy 'Bockscar' Knox\"\", 'Michael Papajohn': \"\"Mike 'The Flea'\"\", 'Jeff Wolfe': 'Giovanni Vacarezza', 'Anthony Molinari': 'Lorenzo Molinari', 'Austin Highsmith': 'Patty', 'Ryan Gosling': 'Sgt. Jerry Wooters', 'Neil Koppel': 'Max Solomon'}\"\r\ntt1595656,\"{'Ben Affleck': 'Neil', 'Olga Kurylenko': 'Marina', 'Rachel McAdams': 'Jane', 'Javier Bardem': 'Father Quintana', 'Tatiana Chiline': 'Tatiana', 'Romina Mondello': 'Anna', \"\"Tony O'Gans\"\": 'Sexton', 'Charles Baker': 'Carpenter', 'Marshall Bell': 'Bob', 'Casey Williams': 'Neighbor #1', 'Jack Hines': 'Neighbor #2', 'Paris Always': 'Classmate #1', 'Samaria Folks': 'Classmate #2', 'Jamie Conner': 'Teenage Girl with Baby', 'Francis Gardner': 'Woman at Wedding'}\"\r\ntt1667889,\"{'Aziz Ansari': 'Squint       (voice)', 'Joy Behar': 'Eunice       (voice)', 'Christopher Campbell': 'Creature Siren /              Various       (voice)', 'Alain Chabat': 'Silas       (voice)', 'Ester Dean': 'Female Siren       (voice)', 'Peter Dinklage': 'Captain Gutt       (voice)', 'Karen Disher': 'Scratte       (voice)', 'Drake': 'Ethan       (voice)', 'Jason Fricchione': 'Dumb Mammoth /              Various       (voice)', 'Nick Frost': 'Flynn       (voice)', 'Josh Gad': 'Louis       (voice)', 'Ben Gleib': 'Marshall       (voice)', 'George Jacobs': 'Beaver       (voice)', 'Queen Latifah': 'Ellie       (voice)', 'Denis Leary': 'Diego       (voice)'}\"\r\ntt0097322,\"{'Jeff Bridges': 'Jack Baker', 'Michelle Pfeiffer': 'Susie Diamond', 'Beau Bridges': 'Frank Baker', 'Ellie Raab': 'Nina', 'Xander Berkeley': 'Lloyd', 'Dakin Matthews': 'Charlie', 'Ken Lerner': 'Ray', 'Albert Hall': 'Henry', 'Terri Treas': 'Girl in Bed', 'Gregory Itzin': 'Vince Nancy', 'Bradford English': 'Earl', 'David Coburn': 'Kid at Vet', 'Todd Jeffries': 'Theo', 'Jeff Nowinski': 'Hotel Masseuse       (as Jeffrey J. Nowinski)', 'Nancy Fish': 'Laughing Bar Patron'}\"\r\ntt1389096,\"{'Al Pacino': 'Val', 'Christopher Walken': 'Doc', 'Alan Arkin': 'Hirsch', 'Julianna Margulies': 'Nina Hirsch', 'Mark Margolis': 'Claphands', 'Lucy Punch': 'Wendy', 'Addison Timlin': 'Alex', 'Vanessa Ferlito': 'Sylvia', 'Katheryn Winnick': 'Oxana', 'Bill Burr': 'Larry', 'Craig Sheffer': 'Jargoniew #1', 'Yorgo Constantine': 'Paul', 'Weronika Rosati': 'Irena', 'Keone Young': 'Song', 'Courtney Platt': 'Lisa       (as Courtney Galiano)'}\"\r\ntt2094018,\"{'Paul Walker': 'Nolan Hayes', 'Genesis Rodriguez': 'Abigail Hayes', 'Nancy Nave': 'Sandra', 'Shane Jacobsen': 'Marc', 'Natalia Safran': 'Karen', 'TJ Hassan': 'Jeremy       (as T.J. Hassan)', 'Lena Clark': 'Lucy', 'Kesha Bullard': 'Nurse', 'Yohance Myles': 'Dr. Edmonds', 'Judd Lormand': 'Glenn', 'Tony Bentley': 'Doctor', 'Ian Hoch': 'Resident', 'Kerry Cahill': 'Nurse Shelly', 'Oscar Gale': 'Hector', 'Christopher Matthew Cook': 'Lenny       (as Matt Cook)'}\"\r\ntt1747958,\"{'Clive Owen': 'Chris', 'Billy Crudup': 'Frank', 'Marion Cotillard': 'Monica', 'Mila Kunis': 'Natalie', 'Zoe Saldana': 'Vanessa', 'Matthias Schoenaerts': 'Scarfo', 'James Caan': 'Leon', 'Noah Emmerich': 'Lieutenant Connellan', 'Lili Taylor': 'Marie', 'Domenick Lombardozzi': 'Mike', 'John Ventimiglia': 'Valenti', 'Griffin Dunne': 'McNally', 'Jamie Hector': 'Nick', 'Yul Vazquez': 'Fabio De Soto', 'Eve Hewson': 'Yvonne'}\"\r\ntt1551621,\"{'JeeJa Yanin': 'Deu       (as Yanin Vismistananda)', 'Kazu Patrick Tang': 'Sanim       (as Patrick Tang)', 'Nui Saendaeng': 'Kee-Muu', 'Sompong Leartvimolkasame': 'Dog', 'Boonprasert Salangam': 'Bull', 'Roongtawan Jindasing': 'Jaguar London', 'Marc Hoang': 'Jaguar Tokyo       (as Marc Nghi Hoang)', 'David Bueno': 'Jaguar Bombay', 'Saroch Ruampaothai': 'Pai       (as Sarocha Ruampaothai)', 'Klongkrit Klaydang': 'Musician', 'Pramote Keawchan': 'Musician', 'Pongoanai Naiyananont': 'Musician', 'Pakpoom Permpone': 'Transvestite', 'Tulaya Huntra': 'E-Tuk', 'Aino Takeshita': 'Japanese Girl'}\"\r\ntt1535108,\"{'Matt Damon': 'Max', 'Jodie Foster': 'Delacourt', 'Sharlto Copley': 'Kruger', 'Alice Braga': 'Frey', 'Diego Luna': 'Julio', 'Wagner Moura': 'Spider', 'William Fichtner': 'John Carlyle', 'Brandon Auret': 'Drake', 'Josh Blacker': 'Crowe', 'Emma Tremblay': 'Matilda', 'Jose Pablo Cantillo': 'Sandro', 'Maxwell Perry Cotton': 'Young Max', 'Faran Tahir': 'President Patel', 'Adrian Holmes': 'Manuel', 'Jared Keeso': 'Rico'}\"\r\ntt1764183,\"{'Richard Gere': 'Robert Miller', 'Susan Sarandon': 'Ellen Miller', 'Tim Roth': 'Det. Michael Bryer', 'Brit Marling': 'Brooke Miller', 'Laetitia Casta': 'Julie Côte', 'Nate Parker': 'Jimmy Grant', 'Stuart Margolin': 'Syd Felder', 'Chris Eigeman': 'Gavin Briar', 'Graydon Carter': 'James Mayfield', 'Bruce Altman': 'Chris Vogler', 'Larry Pine': 'Jeffrey Greenberg', 'Curtiss Cook': 'Det. Mills', 'Reg E. Cathey': 'Earl Monroe', 'Felix Solis': 'A.D.A. Ray Deferlito', 'Tibor Feldman': 'Judge Rittenband'}\"\r\ntt1770734,\"{'Barry Barnes': 'Gerry Senior', 'Maria Laird': 'Young Collette', 'Ben Smyth': 'Sean', 'Brid Brennan': 'Ma', 'Jamie Scott': 'Young Gerry', 'Bradley Burke': 'Young Connor', 'Andrea Riseborough': 'Collette', 'Daniel Tatarsky': 'Watcher 1', 'Tom Bennett': 'Watcher 2', 'Nia Gwynne': 'Female Watcher', 'Jason Stalkey': 'Agent 1       (as Jason Salkey)', 'Nicholas Asbury': 'Agent 2', 'Clive Owen': 'Mac', 'Morgan Watkins': 'MI5 Officer', 'Cathal Maguire': 'Mark'}\"\r\ntt0079592,\"{'Christopher Plummer': 'Sherlock Holmes', 'James Mason': 'Dr. John H. Watson', 'David Hemmings': 'Inspector Foxborough', 'Susan Clark': 'Mary Kelly', 'Anthony Quayle': 'Sir Charles Warren', 'John Gielgud': 'Prime Minister Lord Salisbury', 'Frank Finlay': 'Inspector Lestrade', 'Donald Sutherland': 'Robert Lees', 'Geneviève Bujold': 'Annie Crook', 'Chris Wiggins': 'Doctor Hardy', 'Tedde Moore': 'Mrs. Lees       (as Teddi Moore)', 'Peter Jonfield': 'William Slade', 'Roy Lansford': 'Sir Thomas Spivey', 'Catherine Kessler': 'Carrie', 'Ron Pember': 'Makins'}\"\r\ntt1132130,\"{'Cliff De Young': 'Lloyd', 'Dale Midkiff': 'Dr. Frank Richards', 'Ami Dolenz': 'Susan Reed', 'Danae Nason': 'Sarah', 'Joshua Lee': 'Alex', 'Sara Tomko': 'Wakanna', 'Caroline Amiguet': 'Dr. Trish Lane', 'Shirley Raun': 'Mrs. Reed', 'Louis Graham': 'Dr. Ian Hunter', 'Jonathan Nation': 'Uncle Jim', 'Mark Hengst': 'Matt', 'Gilberto Canto': 'Gino', 'Omar Mora': 'Raul', 'Wil Omar Sanchez': 'Man on Bridge', 'Jason S. Gray': 'Carlos Martinez'}\"\r\ntt1386703,\"{'Colin Farrell': 'Douglas Quaid /              Hauser', 'Kate Beckinsale': 'Lori Quaid', 'Jessica Biel': 'Melina', 'Bryan Cranston': 'Cohaagen', 'Bokeem Woodbine': 'Harry', 'Bill Nighy': 'Matthias', 'John Cho': 'McClane', 'Will Yun Lee': 'Marek', 'Milton Barnes': 'Resistance Fighter', 'James McGowan': 'Military Adjutant', 'Natalie Lisinska': 'Bohemian Nurse', 'Michael Therriault': 'Bank Clerk', 'Stephen MacDonald': 'Slacker', 'Mishael Morgan': 'Rekall Receptionist', 'LinLyn Lue': 'Resistance Woman'}\"\r\ntt0450336,\"{'Henry Cavill': 'Evan Marshall', 'Dominic Purcell': 'Victor Alan Marshall', 'Emma Booth': 'Liese Wollner', 'Michael Fassbender': 'Richard Wirth', 'Rainer Winkelvoss': 'Otto Wollner', 'László Mátray': 'Karl Wollner       (as Laszlo Matray)', 'Joy McBrinn': 'Mrs. Wollner', 'Shea Whigham': 'Luke Benny', 'Tony Barger': 'Larry', 'Douglas Roger': 'Cop #1', 'Michael Ntumba': 'Cop #2', 'Razvan Oprea': 'Cop #3', 'Ana Popescu': 'Meth Freak Girlfriend', 'Florin Piersic Jr.': 'Scrawny Meth Freak', 'Gerard McSorley': 'Mr. Marshall'}\"\r\ntt0457572,\"{'David Kaye': 'Narrator       (voice)', 'Jan Skorzewski': 'Eating Zombie', 'Kevin Tyell': \"\"Zombie's Victim\"\", 'Andy Parkin': 'Dr. Hrothgar Geiger', 'Lynn Pendleton': \"\"1940's Mother\"\", 'Gary Slater': 'Father Zombie', 'Taylor Petri': 'Little Girl', 'Glenn Richards': 'Vicious Zombie', 'Raphael Kepinski': 'Collar Light Zombie', 'Carl-James Kalbfleisch': 'Child Zombie', 'Tiffany Lyndall-Knight': 'Miss Mills', 'Kesun Loder': \"\"Timmy Robinson       (as K'Sun Ray)\"\", 'Alexia Fast': 'Cindy Bottoms', 'Henry Czerny': 'Mr. Bottoms', 'Aaron Brown': 'Roy Fraser'}\"\r\ntt0780607,\"{'Anessa Ramsey': 'Mya Denton', 'Sahr Ngaujah': 'Rod       (as Sahr)', 'AJ Bowen': 'Lewis Denton', 'Matthew Stanton': 'Jerry       (as Matt Stanton)', 'Suehyla El-Attar': 'Janice', 'Justin Welborn': 'Ben Capstone', 'Cheri Christian': 'Anna', 'Scott Poythress': 'Clark', 'Christopher Thomas': 'Ken', 'Lindsey Garrett': 'Laura', 'Chad McKnight': 'Jim Parsons       (as Chadrian McKnight)', 'Claire Bronson': 'Sightless Woman', 'David Bruckner': 'Screaming Man       (as Dave Bruckner)', 'Dan Bush': 'Screaming Man', 'John Clifton': 'Maintenance Man'}\"\r\ntt0480669,\"{'Karra Elejalde': 'Héctor', 'Candela Fernández': 'Clara', 'Bárbara Goenaga': 'La Chica en el Bosque', 'Nacho Vigalondo': 'El Joven', 'Juan Inciarte': 'Héctor Ocasional       (as Ion Inciarte)'}\"\r\ntt1758830,\"{'Paul Rudd': 'Pete', 'Leslie Mann': 'Debbie', 'Maude Apatow': 'Sadie', 'Iris Apatow': 'Charlotte', 'Jason Segel': 'Jason', 'Annie Mumolo': 'Barb', 'Robert Smigel': 'Barry', 'Megan Fox': 'Desi', 'Charlyne Yi': 'Jodi', 'Hugh Fink': 'Male Boutique Customer', 'Graham Parker': 'Graham Parker', 'Tom Freund': 'Graham Parker Solo Band', 'D.A. Sandoval': 'Older Pregnant Parent', 'Megan Grano': 'School Playdate Parent', 'Mackenzie Aladjem': 'School Playmate Child'}\"\r\ntt1931435,\"{'Robert De Niro': 'Don', 'Katherine Heigl': 'Lyla', 'Diane Keaton': 'Ellie', 'Amanda Seyfried': 'Missy', 'Topher Grace': 'Jared', 'Susan Sarandon': 'Bebe', 'Robin Williams': 'Father Moinighan', 'Ben Barnes': 'Alejandro', 'Christine Ebersole': 'Muffin', 'David Rasche': 'Barry', 'Patricia Rae': 'Madonna', 'Ana Ayora': 'Nuria', 'Kyle Bornheimer': 'Andrew', 'Megan Ketch': 'Jane', 'Christa Campbell': 'Kim'}\"\r\ntt1878942,\"{'Quinn Lord': 'Michael (8 Years)', 'Nick Offerman': 'Terry', 'Gary Cole': 'Dwayne', 'Megan Mullally': 'Patricia', 'Darien Provost': 'Matty (8 Years)', 'Jennifer Clement': '3rd Grade Teacher', 'Nicholas Braun': 'Michael', 'Hunter Cope': 'Matty', 'Dustin Ybarra': 'Josh', 'Sarah Hyland': 'Ava', 'Dakota Johnson': 'Em', 'Larry Wilmore': 'Mr. Vernon', 'Cainan Wiebe': 'Frederick (Pirate)', 'Hailey Wiebe': 'Ruth (Pirate)', 'Ray Santiago': 'Salvador'}\"\r\ntt1839654,\"{'Morgan Freeman': 'Monte Wildhorn', 'Kenan Thompson': 'Henry', 'Virginia Madsen': \"\"Charlotte O'Neil\"\", 'Emma Fuhrmann': \"\"Finnegan O'Neil\"\", 'Madeline Carroll': \"\"Willow O'Neil\"\", 'Nicolette Pierini': \"\"Flora O'Neil\"\", 'C.J. Wilson': 'Fire Captain', 'Ash Christian': 'Carl Loop', 'Debargo Sanyal': 'Mahmoud', 'Fred Willard': 'Al Kaiser', 'Jessica Hecht': 'Karen Loop', 'Christopher McCann': 'Bookstore Owner', 'Lucas Caleb Rooney': 'Clown       (as Lucas Rooney)', 'Kevin Pollak': 'Joe Viola', 'Boyd Holbrook': 'Luke Ford'}\"\r\ntt0057187,\"{'Jack Lemmon': 'Nestor Patou /              Lord X', 'Shirley MacLaine': 'Irma La Douce', 'Lou Jacobi': 'Moustache', 'Bruce Yarnell': 'Hippolyte', 'Herschel Bernardi': 'Inspector Lefevre', 'Hope Holiday': 'Lolita', 'Joan Shawlee': 'Amazon Annie', 'Grace Lee Whitney': 'Kiki - the Cossack', 'Paul Dubov': 'Andre', 'Howard McNear': 'Concierge', 'Cliff Osmond': 'Police Sergeant', 'Diki Lerner': 'Jojo', 'Herb Jones': 'Casablanca Charlie', 'Ruth Earl': 'One of the Zebra Twins', 'Jane Earl': 'One of the Zebra Twins'}\"\r\ntt0094678,\"{'Dudley Moore': 'Arthur Bach', 'Liza Minnelli': 'Linda Marolla Bach', 'John Gielgud': 'Hobson', 'Geraldine Fitzgerald': 'Martha Bach', 'Stephen Elliott': 'Burt Johnson', 'Paul Benedict': 'Fairchild', 'Cynthia Sikes': 'Susan Johnson', 'Kathy Bates': 'Mrs. Canby', 'Jack Gilford': 'Mr. Butterworth', 'Ted Ross': 'Bitterman', 'Barney Martin': 'Ralph Marolla', 'Thomas Barbour': 'Stanford Bach', \"\"David O'Brien\"\": 'Millionaire', 'Ron Canada': 'Bartender', 'John C. Vennema': \"\"Maitre D'       (as John Vennema)\"\"}\"\r\ntt0369672,\"{'John Travolta': 'Bobby Long', 'Scarlett Johansson': 'Pursy Will', 'Gabriel Macht': 'Lawson Pines', 'Deborah Kara Unger': 'Georgianna', 'Dane Rhodes': 'Cecil', 'David Jensen': 'Junior', 'Clayne Crawford': 'Lee', 'Sonny Shroyer': 'Earl', 'Carol Sutton': 'Ruthie', 'Walter Breaux': 'Ray', 'Warren Kole': 'Sean       (as Warren Blosjo)', 'Bernard Johnson': 'Tiny', \"\"Gina 'Ginger' Bernal\"\": 'Waitress', 'Douglas M. Griffin': 'Man #1       (as Douglas Griffin)', 'Earl Maddox': 'Man #2'}\"\r\ntt0099797,\"{'Don Johnson': 'Harry Madox', 'Virginia Madsen': 'Dolly Harshaw', 'Jennifer Connelly': 'Gloria Harper', 'Charles Martin Smith': 'Lon Gulick', 'William Sadler': 'Frank Sutton', 'Jerry Hardin': 'George Harshaw', 'Barry Corbin': 'Sheriff', 'Leon Rippy': 'Deputy Tate', 'Jack Nance': 'Julian Ward', 'Virgil Frye': 'Deputy Buck', 'John Hawker': 'Uncle Mort', 'Margaret Bowman': 'Woman at Gas Station', 'Debra Cole': 'Irene Davey', 'Karen Culley': 'Cowgirl', 'Cody Haynes': 'Cowboy'}\"\r\ntt1270262,\"{'Dominic Cooper': 'Uday Hussein /              Latif Yahia', 'Ludivine Sagnier': 'Sarrab', 'Raad Rawi': 'Munem', 'Philip Quast': 'Saddam Hussein /              Faoaz', 'Mimoun Oaïssa': 'Ali       (as Mimoun Oaissa)', 'Khalid Laith': 'Yassem Al-Helou', 'Dar Salim': 'Azzam', 'Nasser Memarzia': \"\"Latif's Father\"\", 'Mem Ferda': 'Kamel Hannah', 'Pano Masti': 'Said', 'Akin Gazi': 'Saad', 'Stewart Scudamore': 'Father of School Girl', 'Amrita Acharia': 'School Girl       (as Amrita Acaria)', 'Elektra Anastasi': 'School Girl 2', 'Amber Rose Revah': 'Bride'}\"\r\ntt1629705,\"{'Sam Shepard': 'James', 'Eduardo Noriega': 'Ing. Eduardo Apodaca', 'Stephen Rea': 'Mackinley', 'Magaly Solier': 'Yana', 'Nikolaj Coster-Waldau': 'James Joven', 'Pádraic Delaney': 'Sundance', 'Dominique McElligott': 'Etta', 'Luis Bredow': 'Doctor', 'Cristian Mercado': 'General of the Bolivian Army', 'Daniel Aguirre': 'Iván', 'Martin Proctor': 'Caballero inglés', 'María Luque': 'Tabernera', 'Raúl Beltrán': 'Jefe indígena', 'Luis Aduviri': 'Lugarteniente indígena', 'Claudia Coronel': 'Indígena perseguidora 1'}\"\r\ntt1386588,\"{'Will Ferrell': 'Allen Gamble', 'Derek Jeter': 'Derek Jeter', 'Mark Wahlberg': 'Terry Hoitz', 'Eva Mendes': 'Dr. Sheila Gamble', 'Michael Keaton': 'Captain Gene Mauch', 'Larnell Stovall': 'Rasta', 'Jalil Jay Lynch': 'Rasta', 'Roy T. Anderson': 'Rasta', 'Ray Stevenson': 'Roger Wesley', 'Samuel L. Jackson': 'P.K. Highsmith', 'Andrew Secunda': 'Press Conference Reporter', 'Sara Chase': 'Press Conference Reporter', 'Dwayne Johnson': 'Christopher Danson', 'David Gideon': 'Mayor', 'Joshua Church': 'Hot Dog Guy       (as Josh Church)'}\"\r\ntt1531663,\"{'Will Ferrell': 'Nick Halsey', 'Christopher Jordan Wallace': 'Kenny Loftus       (as Christopher C.J. Wallace)', 'Rebecca Hall': 'Samantha', 'Michael Peña': 'Frank Garcia', 'Rosalie Michaels': 'Kitty', 'Stephen Root': 'Elliot', 'Laura Dern': 'Delilah', 'Glenn Howerton': 'Gary', 'Argos MacCallum': 'Shopper', 'Todd Bryant': 'Driver (Repo Guy)', 'Jason Spisak': 'Hipster', 'Tyler Johnstone': 'Big Teenager', 'Kyle Sharkey': 'Lanky Teenager', 'Scott Takeda': 'Bank Manager', 'Matthew Dearing': 'Jacket Buyer'}\"\r\ntt0093693,\"{'Goldie Hawn': 'Joanna /              Annie', 'Kurt Russell': 'Dean Proffitt', 'Edward Herrmann': 'Grant Stayton III', 'Katherine Helmond': 'Edith Mintz', 'Mike Hagerty': 'Billy Pratt       (as Michael Hagerty)', 'Roddy McDowall': 'Andrew', 'Jared Rushton': 'Charlie Proffitt', 'Jeffrey Wiseman': 'Joey Proffitt', 'Brian Price': 'Travis Proffitt', 'Jamie Wild': 'Greg Proffitt', 'Frank Campanella': 'Captain Karl', 'Harvey Miller': 'Dr. Norman Korman       (as Harvey Alan Miller)', 'Frank Buxton': 'Elk Cove: Wilbur Budd', 'Carol Williard': 'Elk Cove: Rose Budd', 'Doris Hess': 'Elk Cove: Adele Burbridge'}\"\r\ntt0095684,\"{'Robert Sean Leonard': 'Jeremy Capello', 'LeeAnne Locken': 'Candy Andrews       (as Lee Anne Locken)', 'Cheryl Pollak': 'Darla Blake', 'Cecilia Peck': 'Nora', 'Fannie Flagg': 'Mrs. Capello', 'Kenneth Kimmins': 'Mr. Capello', 'Evan Mirand': 'Ralph', 'Michelle La Vigne': 'Flo', 'Harvey Christiansen': 'George', 'David Warner': 'Professor Leopold McCarthy', 'Paul Willson': 'Grimsdyke', 'Rene Auberjonois': 'Modoc', 'Erica Zeitlin': 'Gloria', 'Gary Chason': 'Drivers Ed Instructor', 'Kathy Bates': 'Helen Blake       (as Kathy D. Bates)'}\"\r\ntt1436432,\"{'Brittany Murphy': 'Dr. Amy Lane', 'Eriq La Salle': \"\"Charley 'Boomer' Baxter\"\", 'Bruce Davison': 'Dr. Mark Rhodes', 'Justin Hartley': 'Dan Lane', 'Paul Logan': 'Major Boyd Grayson', 'Jack P. Downing': 'General Banks', 'Jack Goldenberg': 'Sebastian', 'Miranda Schwein': 'Miranda Lane', 'Jessica Stratton': 'Dravinski', 'Sarah Garvey': 'Jerry Blair', 'Jeff Ashcraft': 'Major', 'Gloria Long Collins': 'Vanessa', 'Trevor Collins': 'Norman', 'Mary Cunliffe': 'Joanne Raye', \"\"Richard 'Goose' Giesecke\"\": 'Glen'}\"\r\ntt1240982,\"{'Danny McBride': 'Thadeous', 'James Franco': 'Fabious', 'Rasmus Hardiker': 'Courtney', 'Natalie Portman': 'Isabel', 'Toby Jones': 'Julie', 'Justin Theroux': 'Leezar', 'Zooey Deschanel': 'Belladonna', 'Charles Dance': 'King Tallious', 'Damian Lewis': 'Boremont', 'Simon Farnaby': 'Manious the Bold', 'Deobia Oparei': 'Thundarian', 'B.J. Hogg': 'Royal Advisor       (as BJ Hogg)', 'Matyelok Gibbs': 'Mother', 'Angela Pleasence': 'Mother', 'Anna Barry': 'Mother'}\"\r\ntt0087078,\"{'Arnold Schwarzenegger': 'Conan', 'Grace Jones': 'Zula', 'Wilt Chamberlain': 'Bombaata', 'Mako': \"\"Akiro 'The Wizard'\"\", 'Tracey Walter': 'Malak', 'Sarah Douglas': 'Queen Taramis', \"\"Olivia d'Abo\"\": \"\"Princess Jehnna       (as Olivia D'Abo)\"\", 'Pat Roach': 'Man Ape /              Toth-Amon', 'Jeff Corey': 'Grand Vizier', 'Sven-Ole Thorsen': 'Togra       (as Sven Ole Thorsen)', 'Bruce Fleischer': 'Village Heckler', 'Ferdy Mayne': 'The Leader       (as Ferdinand Mayne)'}\"\r\ntt1181791,\"{'Sean Bean': 'Ulrich', 'Eddie Redmayne': 'Osmund', 'John Lynch': 'Wolfstan', 'Tim McInnerny': 'Hob', 'Kimberley Nixon': 'Averill', 'Andy Nyman': 'Dalywag', 'David Warner': 'Abbot', 'Johnny Harris': 'Mold', 'Emun Elliott': 'Swire', 'Tygo Gernandt': 'Ivo', 'Jamie Ballard': 'Griff', 'Carice van Houten': 'Langiva', 'Daniel Steiner': 'Monk', 'Tobias Kasimirowicz': 'Grimbold', 'Keith Dunphy': 'Witch Finder'}\"\r\ntt0109835,\"{'Rob Lowe': 'Jesse James', 'Bill Paxton': 'Frank James', 'Randy Travis': 'Cole Younger', 'Dana Wheeler-Nicholson': 'Annie', 'Maria Pitillo': 'Zee', 'Luke Askew': 'Lone Rider', 'Sean Patrick Flanery': 'Zack Murphy', 'Alexis Arquette': 'Charlie Ford', 'Todd Field': 'Bob Younger', 'John Pyper-Ferguson': 'Clell Miller', 'Nicholas Sadler': 'Arch Clements       (as Nick Sadler)', 'William Atherton': 'Allan Pinkerton', 'Tom Chick': 'Detective Whitcher', 'Mary Neff': 'Widow Miller', 'Richard Maynard': 'John Sheets'}\"\r\ntt0433412,\"{'Hilary Duff': 'Tanzie Marchetta', 'Haylie Duff': 'Ava Marchetta', 'Maria Conchita Alonso': 'Inez', 'Anjelica Huston': 'Fabiella', 'Brent Spiner': 'Tommy Katzenbach', 'Lukas Haas': 'Henry Baines', 'Marcus Coloma': 'Rick', 'Ty Hodges': 'Etienne', 'Reagan Dale Neis': 'Jaden', 'Obba Babatundé': 'Craig       (as Obba Babatunde)', 'Henry Cho': 'Ned Nakamori', 'Misti Traya': 'Martinique', 'Christina R. Copeland': 'Brigitta', 'Brandon Beemer': 'Mic Rionn', 'Colleen Camp': 'Charlene'}\"\r\ntt1221208,\"{'Halle Berry': 'Frankie', 'Stellan Skarsgård': 'Oz', 'Phylicia Rashad': 'Edna', 'Chandra Wilson': 'Maxine', 'Alex Diakun': 'Hal', 'Joanne Baron': 'Nurse Susan Shaw', 'Brian Markinson': 'Dr. Backman', 'Matt Frewer': 'Dr. Strassfield', 'Rosalyn Coleman': 'Pearl', 'Sean Tyson': 'Rich Fat Cat', 'Melanie Papalia': 'Tina', 'Kira Clavell': 'Wanda', 'Joey Bothwell': 'Trish', 'Adrian Holmes': 'Cliff', 'James Kirk': 'Bobby'}\"\r\ntt0094321,\"{'Madonna': 'Nikki Finn', 'Griffin Dunne': 'Loudon Trott', 'Haviland Morris': 'Wendy Worthington', 'John McMartin': 'Simon Worthington', 'Bibi Besch': 'Mrs. Worthington', 'John Mills': 'Montgomery Bell       (as Sir John Mills)', 'Robert Swan': 'Detective Bellson', 'Drew Pillsbury': 'Detective Doyle', 'Coati Mundi': 'Raoul', 'Dennis Burkley': 'Benny', 'James Dietz': 'Buck', 'Cecile Callan': \"\"Sandy - Wendy's Friend\"\", 'Karen Elise Baldwin': \"\"Heather - Wendy's Friend       (as Karen Baldwin)\"\", 'Kimberlin Brown': \"\"Rachel - Wendy's Friend\"\", 'Crystal Carson': \"\"Denise - Wendy's Friend\"\"}\"\r\ntt0114614,\"{'Lori Petty': 'Tank Girl', 'Ice-T': 'T-Saint', 'Naomi Watts': 'Jet Girl', 'Don Harvey': 'Sgt. Small', 'Jeff Kober': 'Booga', 'Reg E. Cathey': 'Deetee', 'Scott Coffey': 'Donner', 'Malcolm McDowell': 'Kesslee', 'Stacy Linn Ramsower': 'Sam', 'Ann Cusack': 'Sub Girl', 'Brian Wimmer': 'Richard', 'Iggy Pop': 'Rat Face', 'Dawn Robinson': 'Model', 'Billy L. Sullivan': 'Max', 'James Hong': \"\"Che'tsai\"\"}\"\r\ntt0399901,\"{'Kimberly Elise': 'Michelle Jordan', 'Loretta Devine': 'Cassey Jordan', 'Debbi Morgan': 'Twana', 'Michael Boatman': 'Todd', 'Clifton Powell': 'Reggie', 'Idalis DeLeon': 'Nicole', 'T.D. Jakes': 'Himself       (as Bishop T.D. Jakes)', 'Sean Blakemore': 'Pervis', 'Jordan Moseley': 'Michelle, Age Six', 'Philip Bolden': 'Todd, Age 8       (as Philip Daniel Bolden)', 'Destiny Edmond': 'Michelle, Age 12', 'Louisa Abernathy': 'Elderly Mother', 'Amy Aquino': 'Miss Rodgers', 'Malik Barnhardt': 'Dupree', 'Porscha Coleman': \"\"Lil' Bit\"\"}\"\r\ntt0111301,\"{'Jean-Claude Van Damme': 'Colonel Guile', 'Raul Julia': 'Bison', 'Ming-Na Wen': 'Chun-Li', 'Damian Chapa': 'Ken', 'Kylie Minogue': 'Cammy', 'Simon Callow': 'A.N. Official', 'Byron Mann': 'Ryu', 'Roshan Seth': 'Dhalsim', 'Andrew Bryniarski': 'Zangief', 'Grand L. Bush': 'Balrog', 'Robert Mammone': 'Carlos Blanka', 'Miguel A. Núñez Jr.': 'Dee Jay', 'Gregg Rainwater': 'T. Hawk', 'Kenya Sawada': 'Captain Sawada', 'Jay Tavare': 'Vega'}\"\r\ntt1155076,\"{'Jaden Smith': 'Dre Parker', 'Jackie Chan': 'Mr. Han', 'Taraji P. Henson': 'Sherry Parker', 'Wenwen Han': 'Meiying', 'Rongguang Yu': 'Master Li', 'Zhensu Wu': \"\"Meiying's Dad\"\", 'Zhiheng Wang': \"\"Meiying's Mom\"\", 'Zhenwei Wang': 'Cheng', 'Jared Minns': \"\"Dre's Detroit Friend\"\", 'Shijia Lü': 'Liang', 'Yi Zhao': 'Zhuang', 'Bo Zhang': 'Song', 'Luke Carberry': 'Harry', 'Cameron Hillman': 'Mark', 'Ghye Samuel Brown': 'Oz'}\"\r\ntt1458175,\"{'Russell Crowe': 'John Brennan', 'Elizabeth Banks': 'Lara Brennan', 'Michael Buie': 'Mick Brennan', 'Moran Atias': 'Erit', 'Remy Nozik': 'Jenna', 'Toby Green': 'Three Year Old Luke', 'Tyler Green': 'Three Year Old Luke', 'Jason Beghe': 'Detective Quinn', 'Aisha Hinds': 'Detective Collero', 'Ty Simpkins': 'Luke', 'Veronica Brown': 'Female Guard 1', 'Olivia Wilde': 'Nicole', 'Leslie Merrill': 'Elizabeth Gesas', 'Alissa Sullivan Haggis': 'Junkie       (as Alissa Haggis)', 'Daniel Stern': 'Meyer Fisk'}\"\r\ntt0460810,\"{'John Malkovich': 'Buck Howard', 'Colin Hanks': 'Troy Gable', 'Emily Blunt': 'Valerie Brennan', 'Ricky Jay': 'Gil Bellamy', 'Steve Zahn': 'Kenny', 'Tom Hanks': 'Mr. Gable', 'Griffin Dunne': 'Jonathan Finerman', 'Debra Monk': 'Doreen', 'Adam Scott': 'Alan Berkman', 'Patrick Fischler': 'Michael Perry', 'Wallace Langham': 'Dan Green', 'Jonathan Ames': 'Edward Kelly', 'Jacquie Barnbrook': 'Sheila Heller', 'Paul Darricarrere': 'Restaurant Manager', 'Terry Scannell': 'Kip'}\"\r\ntt0486358,\"{'Lou Engle': 'Himself', 'Becky Fischer': 'Herself', 'Ted Haggard': 'Himself', 'Mike Papantonio': 'Himself - Commentator'}\"\r\ntt0944835,\"{'Angelina Jolie': 'Evelyn Salt', 'Liev Schreiber': 'Ted Winter', 'Chiwetel Ejiofor': 'Peabody', 'Daniel Olbrychski': 'Orlov', 'August Diehl': 'Mike Krause', 'Daniel Pearce': 'Young Orlov', 'Hunt Block': 'U.S. President Lewis', 'Andre Braugher': 'Secretary of Defense', 'Olek Krupa': 'Russian President Matveyev', 'Cassidy Hinkle': '12-Year-Old Chenkov', 'Corey Stoll': 'Shnaider', 'Vladislav Koulikov': \"\"Chenkov's Father\"\", 'Olya Zueva': \"\"Chenkov's Mother\"\", \"\"Kevin O'Donnell\"\": 'Young CIA Officer', 'Gaius Charles': 'CIA Officer'}\"\r\ntt0113855,\"{'Christopher Lambert': 'Lord Raiden', 'Robin Shou': 'Liu Kang', 'Linden Ashby': 'Johnny Cage', 'Cary-Hiroyuki Tagawa': 'Shang Tsung', 'Bridgette Wilson-Sampras': 'Sonya Blade       (as Bridgette Wilson)', 'Talisa Soto': 'Kitana', 'Trevor Goddard': 'Kano', 'Chris Casamassa': 'Scorpion', 'François Petit': 'Sub-Zero', 'Keith Cooke': 'Reptile       (as Keith H. Cooke)', 'Hakim Alston': 'Fighting Monk', 'Kenneth Edwards': 'Art Lean', 'John Fujioka': 'Chief Priest', 'Daniel Haggard': 'Assistant Director', 'Sandy Helberg': 'Director'}\"\r\ntt0397044,\"{'Agnes Bruckner': 'Vivian', 'Hugh Dancy': 'Aiden', 'Olivier Martinez': 'Gabriel', 'Katja Riemann': 'Astrid', 'Bryan Dick': 'Rafe', 'Chris Geere': 'Ulf', 'Tom Harper': 'Gregor', 'John Kerr': 'Finn', 'Jack Wilson': 'Willem', 'Vitalie Ursu': 'Constani', 'Bogdan Voda': 'Albu', 'Kata Dobó': 'Beatrice', 'Rodica Mandache': 'Mrs. Bellagra', 'Sandu Mihai Gruia': 'Pharmacist       (as Sandu Gruia)', 'Helga Racz': 'Young Vivian'}\"\r\ntt1462758,\"{'Ryan Reynolds': 'Paul Conroy', 'José Luis García Pérez': 'Jabir       (voice) (as José Luis García-Pérez)', 'Robert Paterson': 'Dan Brenner       (voice)', 'Stephen Tobolowsky': 'Alan Davenport       (voice)', 'Samantha Mathis': 'Linda Conroy       (voice)', 'Ivana Miño': 'Pamela Lutti       (voice)', 'Warner Loughlin': 'Maryanne Conroy /              Donna Mitchell /              Rebecca Browning       (voice)', 'Erik Palladino': 'Special Agent Harris       (voice)', 'Kali Rocha': '911 Operator       (voice)', 'Chris William Martin': 'State Department Rep.       (voice)', 'Cade Dundish': 'Shane Conroy       (voice)', 'Mary Birdsong': '411 Female Operator       (voice) (as Mary Songbird)', 'Kirk Baily': '411 Male Operator       (voice)', 'Anne Lockhart': 'CRT Operator       (voice)', 'Robert Clotworthy': 'CRT Spokesman       (voice)'}\"\r\ntt0478188,\"{'Bruce Boxleitner': 'Lt. Challenger', 'Jeff Denton': 'Ed Malone', 'Rhett Giles': 'John Roxton', 'Sarah Lieving': 'Rita Summerlee', 'Christina Rosenberg': 'Dana', 'Steve Railsback': 'Larry', 'Chriss Anglin': 'Olo', 'Amanda Ward': 'Natalie', 'Boni Yanagisawa': 'Tianka', 'Andrew Lauer': 'Steven       (as Andy Lauer)', 'Thomas Downey': 'Reggie       (as Tom Downey)', 'Amanda Barton': 'Taylor', 'James Ferris': 'Yuri', 'Jennifer Lee Wiggins': 'Etienne       (as Jennifer Wiggins)', 'Angela Horvath': 'Chrissy'}\"\r\ntt0305357,\"{'Cameron Diaz': 'Natalie Cook', 'Drew Barrymore': 'Dylan Sanders', 'Lucy Liu': 'Alex Munday', 'Bernie Mac': 'Jimmy Bosley', 'Crispin Glover': 'Thin Man', 'Justin Theroux': \"\"Seamus O'Grady\"\", 'Robert Patrick': 'Ray Carter', 'Demi Moore': 'Madison Lee', 'Rodrigo Santoro': 'Randy Emmers', 'Shia LaBeouf': 'Max', 'Matt LeBlanc': 'Jason', 'Luke Wilson': 'Pete', 'John Cleese': 'Mr. Munday', \"\"Ja'net DuBois\"\": 'Momma Bosley', 'Cheung-Yan Yuen': 'Deranged Mongol'}\"\r\ntt0338216,\"{'Phyllis Somerville': 'Pawnbroker', 'Eric Bana': 'Huck Cheever', 'Horatio Sanz': 'Ready Eddie', 'Drew Barrymore': 'Billie Offer', 'Joey Kern': \"\"Billie's Admirer\"\", 'Debra Messing': 'Suzanne Offer', 'Delaine Yates': 'Ginger', 'Mykel Shannon Jenkins': 'Gary', 'Robert Duvall': 'L. C. Cheever', 'Charles Martin Smith': 'Roy Durucher', 'Robert Downey Jr.': 'Telephone Jack', 'Saverio Guerra': 'Lester', 'Danny Hoch': 'Bobby Basketball', 'Kenny Cau': 'Chinese Restaurant Waiter', 'Kelvin Han Yee': 'Chico Banh'}\"\r\ntt0104438,\"{'James Caan': 'Tommy Korman', 'Nicolas Cage': 'Jack Singer', 'Sarah Jessica Parker': 'Betsy /              Donna', 'Pat Morita': 'Mahi Mahi', 'Johnny Williams': 'Johnny Sandwich', 'John Capodice': 'Sally Molars', 'Robert Costanzo': 'Sidney Tomashefsky', 'Anne Bancroft': 'Bea Singer', 'Peter Boyle': 'Chief Orman', 'Burton Gilliam': 'Roy Bacon - Elvis Impersonator', 'Brent Hinkley': 'Vern', 'Dean Hallo': 'Lyle', 'Seymour Cassel': 'Tony Cataracts', 'Jerry Tarkanian': 'Sid Feder', 'Keone Young': 'Eddie Wong'}\"\r\ntt1235796,\"{'Colin Farrell': 'Syracuse', 'Alicja Bachleda': 'Ondine', 'Dervla Kirwan': 'Maura', 'Alison Barry': 'Annie', \"\"Marion O'Dwyer\"\": 'Nurse - Dialysis', 'Tony Curran': 'Alex', \"\"Mary O'Shea\"\": 'Fish Co Op Woman', 'Gemma Reeves': \"\"Draper's Shop Tracy\"\", 'Stephen Rea': 'Priest', 'Norma Sheahan': 'Librarian', 'Emil Hostina': 'Vladic', 'Conor Power': 'Eoin', 'Olwyn Hanley': 'Katie', 'Brendan McCormack': 'Fishery Board George', 'Mark Doherty': 'Fishery Board Man II'}\"\r\ntt0460740,\"{'Michelle Ryan': 'Suzy', 'Sean Biggerstaff': 'Ben Willis', 'Erica Ellis': 'Canteen Lady', 'Jay Bowen': 'Steve Jenkins', 'Shaun Evans': 'Sean Higgins', 'Kenneth Fahy': 'Art Class Life Model', 'Stan Ellis': 'Art Class Teacher', 'Katie Ball': 'Art Class Girl', 'Emilia Fox': 'Sharon Pintey', 'Stuart Goodwin': 'Jenkins', 'Celesta Hodge': \"\"Deer Girl in Sainsbury's\"\", 'Nia Roberts': 'Woman at the Till', 'Michael Dixon': 'Barry Brickman', 'Michael Lambourne': 'Matt Stephens', 'Hatti Riemer': 'Old Lady at Deli Counter'}\"\r\ntt0286716,\"{'Eric Bana': 'Bruce Banner', 'Jennifer Connelly': 'Betty Ross', 'Sam Elliott': 'Ross', 'Josh Lucas': 'Talbot', 'Nick Nolte': 'Father', 'Paul Kersey': 'Young David Banner', 'Cara Buono': 'Edith Banner', 'Todd Tesen': 'Young Ross', 'Kevin Rankin': 'Harper', 'Celia Weston': 'Mrs. Krensler', 'Mike Erwin': 'Teenage Bruce Banner', 'Lou Ferrigno': 'Security Guard', 'Stan Lee': 'Security Guard', 'Regi Davis': 'Security Guard', 'Craig Damon': 'Security Guard'}\"\r\ntt0352277,\"{'Kevin Kline': 'Cole Porter', 'Ashley Judd': 'Linda Porter', 'Jonathan Pryce': 'Gabe', 'Kevin McNally': 'Gerald Murphy', 'Sandra Nelson': 'Sara Murphy', 'Allan Corduner': 'Monty Woolley', 'Peter Polycarpou': 'L.B. Mayer', 'Keith Allen': 'Irving Berlin', 'James Wilby': 'Edward Thomas', 'Kevin McKidd': 'Bobby Reed', 'Richard Dillane': 'Bill Wrather', 'Edward Baker-Duly': 'Boris Kochno', 'Angie Hill': 'Ellin Berlin', 'Harry Ditson': 'Dr. Moorhead', 'Tayler Hamilton': 'Honoria Murphy'}\"\r\ntt0077294,\"{'Elliott Gould': 'Robert Caulfield', 'James Brolin': 'Charles Brubaker', 'Brenda Vaccaro': 'Kay Brubaker', 'Sam Waterston': 'Peter Willis', 'O.J. Simpson': 'John Walker', 'Hal Holbrook': 'Dr. James Kelloway', 'Karen Black': 'Judy Drinkwater', 'Telly Savalas': 'Albain', 'David Huddleston': 'Hollis Peaker', 'David Doyle': 'Walter Loughlin', 'Lee Bryant': 'Sharon Willis', 'Denise Nicholas': 'Betty Walker', 'Robert Walden': 'Elliot Whitter', 'James Sikking': 'Control Room Man       (as Jim Sikking)', 'Alan Fudge': 'Capsule Communicator'}\"\r\ntt0055031,\"{'Spencer Tracy': 'Chief Judge Dan Haywood', 'Burt Lancaster': 'Dr. Ernst Janning', 'Richard Widmark': 'Col. Tad Lawson', 'Marlene Dietrich': 'Mrs. Bertholt', 'Maximilian Schell': 'Hans Rolfe', 'Judy Garland': 'Irene Hoffman', 'Montgomery Clift': 'Rudolph Petersen', 'William Shatner': 'Capt. Harrison Byers', 'Werner Klemperer': 'Emil Hahn', 'Kenneth MacKenna': 'Judge Kenneth Norris', 'Torben Meyer': 'Werner Lampe', 'Joseph Bernard': 'Maj. Abe Radnitz', 'Alan Baxter': 'Brig. Gen. Matt Merrin', 'Edward Binns': 'Sen. Burkette', 'Virginia Christine': 'Mrs. Halbestadt'}\"\r\ntt0053946,\"{'Spencer Tracy': 'Henry Drummond', 'Fredric March': 'Matthew Harrison Brady', 'Gene Kelly': 'E. K. Hornbeck', 'Dick York': 'Bertram T. Cates', 'Donna Anderson': 'Rachel Brown', 'Harry Morgan': 'Judge Mel Coffey', 'Claude Akins': 'Rev. Jeremiah Brown', 'Elliott Reid': 'Prosecutor Tom Davenport', 'Paul Hartman': 'Bailiff Mort Meeker', 'Philip Coolidge': 'Mayor Jason Carter', 'Jimmy Boyd': 'Howard', 'Noah Beery Jr.': 'John Stebbins', 'Norman Fell': 'WGN Radio Technician', 'Gordon Polk': 'George Sillers', 'Hope Summers': 'Mrs. Krebs - Righteous Townswoman'}\"\r\ntt0061418,\"{'Warren Beatty': 'Clyde Barrow', 'Faye Dunaway': 'Bonnie Parker', 'Michael J. Pollard': 'C.W. Moss', 'Gene Hackman': 'Buck Barrow', 'Estelle Parsons': 'Blanche', 'Denver Pyle': 'Frank Hamer', 'Dub Taylor': 'Ivan Moss', 'Evans Evans': 'Velma Davis', 'Gene Wilder': 'Eugene Grizzard'}\"\r\ntt0062765,\"{'Steve McQueen': 'Bullitt', 'Robert Vaughn': 'Chalmers', 'Jacqueline Bisset': 'Cathy', 'Don Gordon': 'Delgetti', 'Robert Duvall': 'Weissberg', 'Simon Oakland': 'Captain Bennet', 'Norman Fell': 'Baker', 'Georg Stanford Brown': 'Dr. Willard', 'Justin Tarr': 'Eddy', 'Carl Reindel': 'Stanton', 'Felice Orlandi': 'Renick', 'Vic Tayback': 'Pete Ross       (as Victor Tayback)', 'Robert Lipton': '1st Aide', 'Ed Peck': 'Westcott', 'Pat Renella': 'John Ross'}\"\r\ntt0032599,\"{'Cary Grant': 'Walter Burns', 'Rosalind Russell': 'Hildy Johnson', 'Ralph Bellamy': 'Bruce Baldwin', 'Gene Lockhart': 'Sheriff Hartwell', 'Porter Hall': 'Murphy', 'Ernest Truex': 'Bensinger', 'Cliff Edwards': 'Endicott', 'Clarence Kolb': 'Mayor', 'Roscoe Karns': 'McCue', 'Frank Jenks': 'Wilson', 'Regis Toomey': 'Sanders', 'Abner Biberman': 'Louie', 'Frank Orth': 'Duffy', 'John Qualen': 'Earl Williams', 'Helen Mack': 'Mollie Malloy'}\"\r\ntt0233277,\"{'Joan Plowright': 'Martha Sowerby', 'Cherie Lunghi': 'Lady Mary Craven', 'Aled Roberts': 'Robert', 'Florence Hoath': 'Geraldine', 'Justin Girdler': 'Stephen', 'Danielle McCormack': 'Penelope', 'Gwyneth Powell': 'Toby, The Maid', 'Kate Ludlow': 'Ora, The Maid', 'George Baker': 'Will Weatherstaff', 'Liza Ross': 'Sister Mary', 'Camilla Belle': 'Lizzie Buscana', 'Leigh Lawson': 'Sir Colin Craven', 'Lisa Martin': 'Doris', 'David Warner': 'Dr. Snodgrass', 'Sheila Steafel': 'Mrs. Chillblaine'}\"\r\ntt0109279,\"{'Docs Keepin Time': 'Black Beauty       (as Docs Keepin Time - American Quarter Horse)', 'Alan Cumming': 'Black Beauty       (voice)', 'Sean Bean': 'Farmer Grey', 'David Thewlis': 'Jerry Barker', 'Jim Carter': 'John Manly', 'Peter Davison': 'Squire Gordon', 'Alun Armstrong': 'Reuben Smith', 'John McEnery': 'Mr. York', 'Eleanor Bron': 'Lady Wexmire', 'Peter Cook': 'Lord Wexmire', 'Adrian Ross Magenty': 'Lord George', 'Lyndon Davies': 'Head Groom', 'Georgina Armstrong': 'Jessica Gordon', 'Gemma Paternoster': 'Molly Gordon', 'Anthony Walters': 'Alfred Gordon'}\"\r\ntt1895587,\"{'Mark Ruffalo': 'Mike Rezendes', 'Michael Keaton': \"\"Walter 'Robby' Robinson\"\", 'Rachel McAdams': 'Sacha Pfeiffer', 'Liev Schreiber': 'Marty Baron', 'John Slattery': 'Ben Bradlee Jr.', \"\"Brian d'Arcy James\"\": 'Matt Carroll', 'Stanley Tucci': 'Mitchell Garabedian', 'Elena Wohl': 'Barbara', 'Gene Amoroso': 'Steve Kurkjian', 'Doug Murray': 'Peter Canellos', 'Sharon McFarlane': 'Helen Donovan', 'Jamey Sheridan': 'Jim Sullivan', 'Neal Huff': 'Phil Saviano', 'Billy Crudup': 'Eric Macleish', 'Robert B. Kennedy': 'Court Clerk Mark'}\"\r\ntt1024648,\"{'Ben Affleck': 'Tony Mendez', 'Bryan Cranston': \"\"Jack O'Donnell\"\", 'Alan Arkin': 'Lester Siegel', 'John Goodman': 'John Chambers', 'Victor Garber': 'Ken Taylor', 'Tate Donovan': 'Bob Anders', 'Clea DuVall': 'Cora Lijek', 'Scoot McNairy': 'Joe Stafford', 'Rory Cochrane': 'Lee Schatz', 'Christopher Denham': 'Mark Lijek', 'Kerry Bishé': 'Kathy Stafford', 'Kyle Chandler': 'Hamilton Jordan', 'Chris Messina': 'Malinov', 'Zeljko Ivanek': 'Robert Pender', 'Titus Welliver': 'Bates'}\"\r\ntt0810819,\"{'Alicia Vikander': 'Gerda', 'Eddie Redmayne': 'Lili', 'Tusse Silberg': 'Older Woman', 'Adrian Schiller': 'Rasmussen', 'Amber Heard': 'Ulla', 'Emerald Fennell': 'Elsa', 'Henry Pettigrew': 'Niels', 'Claus Bue': 'Man at Window', 'Peter Krag': 'Stage Doorman', 'Angela Curran': 'Dresser', 'Pixie': 'Hvappe', 'Richard Dixon': 'Fonnesbech', 'Ben Whishaw': 'Henrik', 'Pip Torrens': 'Dr. Hexler', 'Paul Bigley': 'Man in Gallery'}\"\r\ntt0048545,\"{'James Dean': 'Jim Stark', 'Natalie Wood': 'Judy', 'Sal Mineo': \"\"John 'Plato' Crawford\"\", 'Jim Backus': 'Frank Stark', 'Ann Doran': 'Mrs. Carol Stark', 'Corey Allen': 'Buzz Gunderson', 'William Hopper': \"\"Judy's Father\"\", 'Rochelle Hudson': \"\"Judy's Mother\"\", 'Dennis Hopper': 'Goon', 'Edward Platt': 'Ray Fremick', 'Steffi Sidney': 'Mil', 'Marietta Canty': 'Crawford Family Maid', 'Virginia Brissac': \"\"Mrs. Stark - Jim's Grandmother\"\", 'Beverly Long': 'Helen', 'Ian Wolfe': 'Dr. Minton'}\"\r\ntt0049730,\"{'John Wayne': 'Ethan Edwards', 'Jeffrey Hunter': 'Martin Pawley', 'Vera Miles': 'Laurie Jorgensen', 'Ward Bond': 'Rev. Capt. Samuel Johnston Clayton', 'Natalie Wood': 'Debbie Edwards - Age 15', 'John Qualen': 'Lars Jorgensen', 'Olive Carey': 'Mrs. Jorgensen', 'Henry Brandon': 'Scar /              Cicatriz', 'Ken Curtis': 'Charlie McCorry', 'Harry Carey Jr.': 'Brad Jorgensen', 'Antonio Moreno': 'Emilio Gabriel Fernandez y Figueroa', 'Hank Worden': 'Mose Harper', 'Beulah Archuletta': 'Look', 'Walter Coy': 'Aaron Edwards', 'Dorothy Jordan': 'Martha Edwards'}\"\r\ntt0475290,\"{'Josh Brolin': 'Eddie Mannix', 'George Clooney': 'Baird Whitlock', 'Alden Ehrenreich': 'Hobie Doyle', 'Ralph Fiennes': 'Laurence Laurentz', 'Scarlett Johansson': 'DeeAnna Moran', 'Tilda Swinton': 'Thora Thacker /              Thessaly Thacker', 'Channing Tatum': 'Burt Gurney', 'Frances McDormand': 'C.C. Calhoun', 'Jonah Hill': 'Joe Silverman', 'Veronica Osorio': 'Carlotta Valdez', 'Heather Goldenhersh': 'Natalie - Secretary', 'Alison Pill': 'Mrs. Mannix', 'Max Baker': 'Head Communist Writer', 'Fisher Stevens': 'Communist Writer', 'Patrick Fischler': 'Communist Writer'}\"\r\ntt3203606,\"{'Bryan Cranston': 'Dalton Trumbo', 'Michael Stuhlbarg': 'Edward G. Robinson', 'David Maldonado': 'Rocco       (as Dave Maldonado)', 'John Getz': 'Sam Wood', 'Diane Lane': 'Cleo Trumbo', 'Laura Flannery': 'Party Goer', 'Helen Mirren': 'Hedda Hopper', 'David James Elliott': 'John Wayne', 'Toby Nichols': 'Chris Trumbo (age 6-10)       (as Tobias McDowell Nichols)', 'Joseph S. Martino': 'Rally Participant', 'Madison Wolfe': 'Niki Trumbo (age 8-11)', 'Jason Bayle': 'Young Father', 'James DuMont': 'J. Parnell Thomas', 'Alan Tudyk': 'Ian McLellan Hunter', 'Louis C.K.': 'Arlen Hird'}\"\r\ntt0033467,\"{'Joseph Cotten': 'Jedediah Leland /              Screening Room Reporter', 'Dorothy Comingore': 'Susan Alexander Kane', 'Agnes Moorehead': 'Mary Kane', 'Ruth Warrick': 'Emily Monroe Norton Kane', 'Ray Collins': 'James W. Gettys', 'Erskine Sanford': 'Herbert Carter /              Screening Room Reporter', 'Everett Sloane': 'Mr. Bernstein', 'William Alland': 'Jerry Thompson', 'Paul Stewart': 'Raymond', 'George Coulouris': 'Walter Parks Thatcher', 'Fortunio Bonanova': 'Matiste', 'Gus Schilling': 'The Headwaiter /              Screening Room Reporter', 'Philip Van Zandt': 'Mr. Rawlston', 'Georgia Backus': 'Miss Anderson', 'Harry Shannon': \"\"Kane's Father\"\"}\"\r\ntt1790885,\"{'Jason Clarke': 'Dan', 'Reda Kateb': 'Ammar', 'Jessica Chastain': 'Maya', 'Kyle Chandler': 'Joseph Bradley', 'Jennifer Ehle': 'Jessica', 'Harold Perrineau': 'Jack', 'Jeremy Strong': 'Thomas', 'J.J. Kandel': 'J.J.', 'Wahab Sheikh': 'Detainee on Monitor', 'Alexander Karim': 'Detainee on Monitor', 'Nabil Elouahabi': 'Detainee on Monitor', 'Aymen Hamdouchi': 'Detainee on Monitor', 'Simon Abkarian': 'Detainee on Monitor', 'Ali Marhyar': 'Interrogator on Monitor', 'Parker Sawyers': 'Interrogator on Monitor'}\"\r\ntt4438848,\"{'Seth Rogen': 'Mac Radner', 'Zac Efron': 'Teddy Sanders', 'Rose Byrne': 'Kelly Radner', 'Chloë Grace Moretz': 'Shelby', 'Ike Barinholtz': 'Jimmy', 'Kiersey Clemons': 'Beth', 'Dave Franco': 'Pete', 'Jerrod Carmichael': 'Garf', 'Christopher Mintz-Plasse': 'Scoonie', 'Beanie Feldstein': 'Nora', 'Clara Mamet': 'Maranda', 'Awkwafina': 'Christine', 'Selena Gomez': 'Phi Lambda President', 'Hannibal Buress': 'Officer Watkins', 'Elise Vargas': 'Stella'}\"\r\ntt1971352,\"{'Ann Dowd': 'Sandra', 'Matt Servitto': 'Supplier', 'Dreama Walker': 'Becky', 'Pat Healy': 'Officer Daniels', 'Philip Ettinger': 'Kevin', 'Ashlie Atkinson': 'Marti', 'Nikiya Mathis': 'Connie', 'Ralph Rodriguez': 'Julio', 'Stephen Payne': 'Harold', 'Bill Camp': 'Van', 'Amelia Fowler': 'Brie', 'John Merolla': 'Customer', 'James McCaffrey': 'Detective Neals', 'Desmin Borges': 'Officer Morris', 'Matt Skibiak': 'Robert Gilmour       (as Matthew Skibiak)'}\"\r\ntt0100935,\"{'Nicolas Cage': 'Sailor Ripley', 'Laura Dern': 'Lula', 'Willem Dafoe': 'Bobby Peru', 'J.E. Freeman': 'Santos', 'Crispin Glover': 'Dell', 'Diane Ladd': 'Marietta Fortune', 'Calvin Lockhart': 'Reggie', 'Isabella Rossellini': 'Perdita', 'Harry Dean Stanton': 'Johnnie Farragut', 'Grace Zabriskie': 'Juana', 'Sherilyn Fenn': 'Girl in Accident', 'Marvin Kaplan': 'Uncle Pooch', 'William Morgan Sheppard': 'Mr. Reindeer       (as W. Morgan Sheppard)', 'David Patrick Kelly': 'Dropshadow', 'Freddie Jones': 'George Kovich'}\"\r\ntt0056193,\"{'James Mason': 'Prof. Humbert Humbert', 'Shelley Winters': 'Charlotte Haze', 'Sue Lyon': 'Lolita', 'Gary Cockrell': 'Richard T. Schiller', 'Jerry Stovin': 'John Farlow', 'Diana Decker': 'Jean Farlow', 'Lois Maxwell': 'Nurse Mary Lore', 'Cec Linder': 'Physician', 'Bill Greene': 'George Swine', 'Shirley Douglas': 'Mrs. Starch', 'Marianne Stone': 'Vivian Darkbloom', 'Marion Mathie': 'Miss Lebone', 'James Dyrenforth': 'Frederick Beale Sr.', 'Maxine Holden': 'Miss Fromkiss', 'John Harrison': 'Tom'}\"\r\ntt4530832,\"{'Chloe Farnworth': 'Nakada', 'Cole Parker': 'Thorne', 'John Freeman': 'Dallas', 'Phillip Andre Botello': 'Kevin', 'LaNell Cooper': 'Sylvia', 'Nikki Bohm': 'Macon', 'Jane Hae Kim': 'Susan       (as Jane H. Kim)', 'Marianne Bourg': 'Orsini', 'Kelcey Watson': 'Dirk', 'Michael Wayne Foster': 'Mandheim       (as Mike Foster)', 'Micah Fitzgerald': 'Reaver', 'Tonia Marie Rosée': 'Ason', 'Frezno': 'Tophat', 'Jerry G. Angelo': 'Deerhead', 'Victoria Clare': 'Emily'}\"\r\ntt1232829,\"{'Jonah Hill': 'Schmidt', 'Channing Tatum': 'Jenko', 'Brie Larson': 'Molly Tracey', 'Dave Franco': 'Eric Molson', 'Rob Riggle': 'Mr. Walters', 'DeRay Davis': 'Domingo', 'Ice Cube': 'Captain Dickson', 'Dax Flame': 'Zack', 'Chris Parnell': 'Mr. Gordon', 'Ellie Kemper': 'Ms. Griggs', 'Jake Johnson': 'Principal Dadier', 'Nick Offerman': 'Deputy Chief Hardy', 'Holly Robinson Peete': 'Officer Judy Hoffs', 'Johnny Pemberton': 'Delroy', 'Stanley Wong': 'Roman'}\"\r\ntt3534282,\"{'Sam Rockwell': 'Don Verdean', 'Amy Ryan': 'Carol Jensen', 'Will Forte': 'Pastor Fontaine', 'Danny McBride': 'Tony Lazarus', 'Jemaine Clement': 'Boaz', 'Steve Park': 'Poon-Yen       (as Stephen Park)', 'Leslie Bibb': 'Joylinda Lazarus', 'Sky Elobar': 'Dr. Stanley', 'P.J. Boudousqué': 'Gary       (as P J Boudousque)', 'Yaniv Moyal': 'Israeli Police Officer', 'Jared Shipley': 'Lab Tech', 'Logan Rogan': 'Tourist', 'Michael Flynn': 'Church Elder', 'Pete Rockwell': 'Antique Store Owner', 'Harry Bonner': 'Security Guard'}\"\r\ntt3457734,\"{'Bridey Elliott': 'Harper', 'Clare McNulty': 'Allie', 'Neil Casey': 'Ebb', 'Alysia Reiner': 'Cobble Hill Mom', 'Reggie Watts': 'Reggie Watts', 'Griffin Newman': 'Sam', 'Jeffrey Scaperrotta': 'Russ', 'Peter Vack': 'Benji', 'Mark Wing-Davey': \"\"Harper's Dad       (voice)\"\", 'Will Hines': 'Abusive Cobble Hill Man', 'Max Jenkins': 'Ashley', 'John Early': 'John', 'Evan Hoyt Thompson': 'Grant', 'Desireé Nash': 'Marin', 'Becky Yamamoto': 'Amanda'}\"\r\ntt1783732,\"{'Chase Williamson': 'Dave', 'Rob Mayes': 'John', 'Paul Giamatti': 'Arnie Blondestone', 'Clancy Brown': 'Dr. Albert Marconi', 'Glynn Turman': 'Detective', 'Doug Jones': 'Roger North', 'Daniel Roebuck': 'Largeman', 'Fabianne Therese': 'Amy', 'Jonny Weston': 'Justin White', 'Jimmy Wong': 'Fred Chu', 'Tai Bennett': 'Robert Marley', 'Allison Weissman': 'Shelly', 'Ethan Erickson': 'Sergeant McElroy', 'Kevin Michael Richardson': 'Korrok       (voice)', 'Riley Rose Critchlow': 'Girl with Rastafarian'}\"\r\ntt4094724,\"{'Frank Grillo': 'Leo Barnes', 'Elizabeth Mitchell': 'Senator Charlie Roan', 'Mykelti Williamson': 'Joe Dixon', 'Joseph Julian Soria': 'Marcos', 'Betty Gabriel': 'Laney Rucker', 'Terry Serpico': 'Earl Danzinger', 'Edwin Hodge': 'Dante Bishop', 'Kyle Secor': 'Minister Edwidge Owens', 'Barry Nolan': 'Reporter #1', 'Liza Colón-Zayas': 'Dawn       (as Liza Colon-Zayas)', 'Ethan Phillips': 'Chief Couper', 'Adam Cantor': 'Tall Eric Busmalis', 'Christopher James Baker': 'Harmon James', 'Jared Kemp': 'Rondo', 'Brittany Mirabile': 'Schoolgirl #1 Freakbride /              Kimmy       (as Brittany Mirabilé)'}\"\r\ntt3079016,\"{'Simon Helberg': 'Quinn', 'Melanie Lynskey': 'Devon', 'Zachary Quinto': 'Jameson', 'Judith Light': 'Jean', 'Maggie Grace': 'Kelsey', 'Alfred Molina': 'Terry', 'Jason Ritter': 'Kurt', 'Meredith Hagner': 'Leah', 'Geoffrey Cantor': 'Neighbor', 'Dana Ivey': 'Francoise', 'Jamil Mena': 'Isaac', 'Lizan Mitchell': 'Nurse', 'Ebon Moss-Bachrach': 'Guillaume', 'Fritz Weaver': 'Phillipe', 'Dennis Carter Jr.': 'Villager'}\"\r\ntt1440732,\"{'Robert Pattinson': 'Georges Duroy', 'Uma Thurman': 'Madeleine Forestier', 'Kristin Scott Thomas': 'Virginie Rousset', 'Christina Ricci': 'Clotilde de Marelle', 'Colm Meaney': 'Monsieur Rousset', 'Philip Glenister': 'Charles Forestier', 'Holliday Grainger': 'Suzanne Rousset', 'Natalia Tena': 'Rachel the Prostitute', 'James Lance': 'François Laroche', 'Anthony Higgins': 'Comte de Vaudrec', 'Thomas Arnold': 'Louis', 'Timothy Walker': 'Solicitor', 'Pip Torrens': 'Paul the Butler', 'Christopher Fulford': 'Police Commisioner', 'Amy Marston': 'Nanny'}\"\r\ntt3746298,\"{'Dean Cain': 'Mason Danvers', 'Paul Wight': \"\"Victor Abbott       (as Paul 'Big Show' Wight)\"\", 'Michael Eklund': 'Warden Snyder', 'Benjamin Hollingsworth': 'Joel Gainer       (as Ben Hollingsworth)', 'Adrian Holmes': 'Drexel', 'Matthew MacCaull': 'Ben', 'Kyra Zagorsky': 'Jocelyn', 'Aleks Paunovic': 'Griffin Abbott', 'Jonathan Walker': 'Lester', 'Dee Jay Jackson': 'Will', 'Juan Riedinger': 'Booker', 'Leo Rano': 'R.B.', 'David Allan Pearson': 'Oz', 'Garfield Wilson': 'Dee', 'William Stewart': 'Flynn'}\"\r\ntt2869728,\"{'Ice Cube': 'James Payton', 'Kevin Hart': 'Ben Barber', 'Tika Sumpter': 'Angela Payton', 'Benjamin Bratt': 'Antonio Pope', 'Olivia Munn': 'Maya', 'Ken Jeong': 'AJ', 'Bruce McGill': 'Lt. Brooks', 'Michael Rose': 'The Hitter /              Gates', 'Sherri Shepherd': 'Cori', 'Arturo Del Puerto': 'Alonso', 'Eric Goins': 'Assface', 'Carlos Gómez': 'Captain Hernandez       (as Carlos Gomez)', 'Utkarsh Ambudkar': 'Amir', 'Glen Powell': 'Troy', 'Nadine Velazquez': 'Tasha'}\"\r\ntt3760922,\"{'Nia Vardalos': 'Toula', 'John Corbett': 'Ian', 'Michael Constantine': 'Gus', 'Lainie Kazan': 'Maria', 'Andrea Martin': 'Aunt Voula', 'Gia Carides': 'Nikki', 'Joey Fatone': 'Angelo', 'Elena Kampouris': 'Paris', 'Alex Wolff': 'Bennett', 'Louis Mandylor': 'Nick', 'Bess Meisler': 'Mana-Yiayia', 'Bruce Gray': 'Rodney Miller', 'Fiona Reid': 'Harriet Miller', 'Ian Gomez': 'Mike', 'Jayne Eastwood': 'Mrs. White'}\"\r\ntt1334537,\"{'Mark Duplass': 'Ben', 'Alycia Delmore': 'Anna', 'Joshua Leonard': 'Andrew', 'Lynn Shelton': 'Monica', 'Trina Willard': 'Lily', 'Olivia': 'Kid on Bike', 'Stellan Mathiesen': 'Kid on Bike', 'Steven Schardt': 'Disgruntled Driver', 'David Bundgren': \"\"'Dionysus' Extra\"\", 'J. Martin Dinn': \"\"'Dionysus' Extra\"\", 'Paddy Evans-Winfield': \"\"'Dionysus' Extra       (as Patrick Evans-Winfield)\"\", 'Joy Brooke Fairfield': \"\"'Dionysus' Extra\"\", 'Monica Fisk': \"\"'Dionysus' Extra\"\", 'Lori Goldston': \"\"'Dionysus' Extra\"\", 'Jane Hall': \"\"'Dionysus' Extra\"\"}\"\r\ntt0083739,\"{'Perry King': 'Andrew Norris', 'Merrie Lynn Ross': 'Diane Norris', 'Timothy Van Patten': 'Peter Stegman', 'Roddy McDowall': 'Terry Corrigan', 'Stefan Arngrim': 'Drugstore', 'Michael J. Fox': 'Arthur       (as Michael Fox)', 'Keith Knight': 'Barnyard', 'Lisa Langlois': 'Patsy', 'Neil Clifford': 'Fallon', 'Al Waxman': 'Detective Stewiski', 'Erin Noble': 'Deneen       (as Erin Flannery)', 'David Gardner': 'Principal Morganthau', 'Steve Pernie': 'Rejack', 'Robert Reece': 'Leroy', 'Joseph Kelly': 'Jimmy'}\"\r\ntt0071517,\"{'Pam Grier': 'Foxy Brown', 'Antonio Fargas': 'Link Brown', 'Peter Brown': 'Steve Elias', 'Terry Carter': 'Michael Anderson', 'Kathryn Loder': 'Katherine Wall', 'Harry Holcombe': 'Judge Fenton', 'Sid Haig': 'Hays', 'Juanita Brown': 'Claudia', 'Sally Ann Stroud': 'Deb', 'Bob Minor': 'Oscar', 'Tony Giorgio': 'Eddie', 'Fred Lerner': 'Bunyon', 'Judith Cassmore': 'Vicki       (as Judy Cassmore)', 'H.B. Haggerty': 'Brandi', \"\"Boyd 'Red' Morgan\"\": 'Slauson       (as Boyd Red Morgan)'}\"\r\ntt3960412,\"{'Andy Samberg': 'Conner', 'Jorma Taccone': 'Owen', 'Akiva Schaffer': 'Lawrence', 'Sarah Silverman': 'Paula', 'Tim Meadows': 'Harry', 'Maya Rudolph': 'Deborah', 'Joan Cusack': 'Tilly', 'Imogen Poots': 'Ashley', 'Chris Redd': 'Hunter', 'Edgar Blackmon': 'Eddie', 'James Buckley': 'Sponge', 'Evan Fine': '10-Year Old Conner', 'Maxwell Jenkins': '10-Year Old Owen', 'Elliott Smith': '10-Year Old Lawrence', 'Quest Love': \"\"Ahmir 'Questlove' Thompson /              The Roots       (as Ahmir 'Questlove' Thompson)\"\"}\"\r\ntt0366551,\"{'John Cho': 'Harold Lee', 'Ethan Embry': 'Billy Carver', 'Rob Tinkler': 'J.D.       (as Robert Tinkler)', 'Fred Willard': 'Dr. Willoughby', 'Kal Penn': 'Kumar Patel', 'Steve Braun': 'Cole', 'Dan Bochart': 'Extreme Sports Punk #1', 'Paula Garcés': 'Maria       (as Paula Garcès)', 'Mike Sheer': \"\"'I'm So High' Kid\"\", 'Christopher Thompson': \"\"'Don't You Wanna Be Cool' Kid\"\", 'David Krumholtz': 'Goldstein', 'Eddie Kaye Thomas': 'Rosenberg', 'Angelo Tsarouchas': 'Mean Tollbooth Guy       (as Angelo Tsachouras)', 'Anthony Anderson': 'Burger Shack Employee', 'Siu Ta': 'Cindy Kim'}\"\r\ntt0910936,\"{'Seth Rogen': 'Dale Denton', 'James Franco': 'Saul Silver', 'Danny McBride': 'Red', 'Kevin Corrigan': 'Budlofsky', 'Craig Robinson': 'Matheson', 'Gary Cole': 'Ted Jones', 'Rosie Perez': 'Carol /              Female Cop', 'Ed Begley Jr.': 'Robert', 'Nora Dunn': 'Shannon', 'Amber Heard': 'Angie Anderson', 'Joe Lo Truglio': 'Mr. Edwards', 'Arthur Napiontek': 'Clark', 'Cleo King': 'Police Liaison Officer', 'Bill Hader': 'Private Miller', 'James Remar': 'General Bratt'}\"\r\ntt4196776,\"{'Matt Damon': 'Jason Bourne', 'Tommy Lee Jones': 'CIA Director Robert Dewey', 'Alicia Vikander': 'Heather Lee', 'Vincent Cassel': 'Asset', 'Julia Stiles': 'Nicky Parsons', 'Riz Ahmed': 'Aaron Kalloor', 'Ato Essandoh': 'Craig Jeffers', 'Scott Shepherd': 'Director NI Edwin Russell', 'Bill Camp': 'Malcolm Smith', 'Vinzenz Kiefer': 'Christian Dassault', 'Stephen Kunken': 'Baumen', 'Ben Stylianou': 'Greek Van Driver', 'Kaya Yuzuki': 'Hacker', \"\"Matthew O'Neill\"\": \"\"Lead Hub Tech       (as Matthew O'Neil)\"\", 'Lizzie Phillips': 'Cyber Hub Tech'}\"\r\ntt0149261,\"{'Thomas Jane': 'Carter Blake', 'Saffron Burrows': 'Dr. Susan McAlester', 'Samuel L. Jackson': 'Russell Franklin', 'Jacqueline McKenzie': 'Janice Higgins', 'Michael Rapaport': 'Tom Scoggins', 'Stellan Skarsgård': 'Jim Whitlock', 'LL Cool J': 'Preacher', 'Aida Turturro': 'Brenda Kerns', 'Cristos': 'Boat Captain', 'Daniel Rey': 'Helicopter Pilot       (as Daniel Bahimo Rey)', 'Valente Rodriguez': 'Helicopter Co-Pilot', 'Brent Roam': 'Helicopter Winch Operator', 'Eyal Podell': 'Boy #1', 'Erinn Bartlett': 'Girl #1', 'Dan Thiel': 'Boy #2'}\"\r\ntt0107362,\"{'Arnold Schwarzenegger': 'Jack Slater', 'F. Murray Abraham': 'John Practice', 'Art Carney': 'Frank', 'Charles Dance': 'Benedict', 'Frank McRae': 'Dekker', 'Tom Noonan': 'Ripper', 'Robert Prosky': 'Nick', 'Anthony Quinn': 'Vivaldi', 'Mercedes Ruehl': 'Mom', \"\"Austin O'Brien\"\": 'Danny', 'Ian McKellen': 'Death       (as Sir Ian McKellan)', 'Professor Toru Tanaka': 'Tough Asian Man', 'Joan Plowright': 'Teacher', 'Keith Barish': 'Keith Barish', 'Jim Belushi': 'James Belushi'}\"\r\ntt1290471,\"{'C. Thomas Howell': 'Josh Myron', 'Judd Nelson': 'Charlie', 'Darren Dalton': 'Prewitt', 'Sinead McCafferty': 'Sky', 'Bug Hall': 'Man', 'Cameron Bender': 'Sam', 'Jonathan Sanders': 'Aide', 'Lew Knopp': 'Davis', 'Reiko Kaneshiro': 'Lisa', 'Jason Ellefson': 'Dr. Shankman', 'Graham Denman': 'Urchin', 'Scotty Carlisle': 'Guard', 'Prince Pheenix Wade': 'Guard', 'Theron Cook': 'Guard       (as Theron Cook II)', 'Jose Prendes': 'Guard'}\"\r\ntt2191701,\"{'Adam Sandler': 'Lenny Feder', 'Kevin James': 'Eric Lamonsoff', 'Chris Rock': 'Kurt McKenzie', 'David Spade': 'Marcus Higgins', 'Salma Hayek': 'Roxanne Chase-Feder', 'Maya Rudolph': 'Deanne McKenzie', 'Maria Bello': 'Sally Lamonsoff', 'Nick Swardson': 'Nick', 'Steve Buscemi': 'Wiley', 'Colin Quinn': 'Dickie Bailey', 'Tim Meadows': 'Malcolm', 'Jon Lovitz': 'Squats Fitness Janitor', \"\"Shaquille O'Neal\"\": 'Officer Fluzoo', 'Alexander Ludwig': 'Braden', 'Georgia Engel': 'Mrs. Lamonsoff'}\"\r\ntt1375670,\"{'Adam Sandler': 'Lenny Feder', 'Kevin James': 'Eric Lamonsoff', 'Chris Rock': 'Kurt McKenzie', 'David Spade': 'Marcus Higgins', 'Rob Schneider': 'Rob Hilliard', 'Salma Hayek': 'Roxanne Chase-Feder       (as Salma Hayek Pinault)', 'Maria Bello': 'Sally Lamonsoff', 'Maya Rudolph': 'Deanne McKenzie', 'Joyce Van Patten': 'Gloria', 'Ebony Jo-Ann': 'Mama Ronzoni', 'Di Quon': 'Rita', 'Steve Buscemi': 'Wiley', 'Colin Quinn': 'Dickie Bailey', 'Tim Meadows': 'Malcolm', 'Madison Riley': 'Jasmine Hilliard'}\"\r\ntt3499424,\"{'John Hennigan': 'Hercules', 'Christian Oliver': 'Arius', 'Marcus Shirock': 'Cyrus', 'James Duval': 'Horace', 'Dylan Vox': 'Nikos', 'Christina Wolfe': 'Princess Theodora       (as Christina Ulfsparre)', 'Alistair A. Duff': 'Bartender', 'Foued Mansour': 'Creepy Caretaker', 'Jeremy M. Inman': 'Tymek', 'Jennifer Marie Paul': 'Iona', 'Khalid Ben Chegra': 'King Demetrius       (as Ben Chagra Khalid)', 'Aurelie Armelle Simone Chatellier': 'Queen Evenya', 'Rim Tounssi': 'Megara', 'Yassine Amer': 'Abdera', 'Youness Lahlafi': 'Jacob'}\"\r\ntt1663662,\"{'Charlie Hunnam': 'Raleigh Becket', 'Diego Klattenhoff': 'Yancy Becket', 'Idris Elba': 'Stacker Pentecost', 'Rinko Kikuchi': 'Mako Mori', 'Charlie Day': 'Dr. Newton Geiszler', 'Burn Gorman': 'Gottlieb', 'Max Martini': 'Herc Hansen', 'Robert Kazinsky': 'Chuck Hansen       (as Rob Kazinsky)', 'Clifton Collins Jr.': 'Ops Tendo Choi', 'Ron Perlman': 'Hannibal Chau', 'Brad William Henke': 'Construction Foreman', 'Larry Joe Campbell': 'Construction Worker', 'Mana Ashida': 'Young Mako', 'Santiago Segura': 'Wizened Man', 'Joe Pingue': 'Captain Merrit'}\"\r\ntt7069210,\"{'Vera Farmiga': 'Lorraine Warren', 'Patrick Wilson': 'Ed Warren', 'Julian Hilliard': 'David Glatzel', 'Charlene Amoia': 'Judy Glatzel', 'Sterling Jerins': 'Judy Warren', \"\"Ruairi O'Connor\"\": 'Arne', 'Mitchell Hoog': 'Young Ed', 'Shannon Kook': 'Drew Thomas', 'Ronnie Gene Blevins': 'Bruno', 'Sarah Catherine Hook': 'Debbie Glatzel', 'Lindsay Ayliffe': 'Judge', 'Megan Ashley Brown': 'Young Lorraine'}\"\r\ntt3276924,\"{'Robert De Niro': 'The Pope', 'Jeffrey Dean Morgan': 'Luke Vaughn', 'Dave Bautista': 'Jason Cox', 'Kate Bosworth': 'Sydney', 'Gina Carano': 'Kris', 'Morris Chestnut': 'Dog (Derek Prince)', 'Lydia Hull': 'Pauline', 'Mark-Paul Gosselaar': 'Detective Marconi', 'Stephen Cyrus Sepher': 'Dante', 'D.B. Sweeney': 'Bernie', 'Tyler Jon Olson': 'Steve', 'Alyssa Julya Smith': 'Rebecca', 'Hawn Tran': 'Tom', 'Christopher Rob Bowen': 'Eric', 'Renell Gibbs': 'Tagger'}\"\r\ntt2547172,\"{'Mark Feuerstein': 'Larry Elizabeth Gaye', 'Jessica Lowndes': 'Suzanne', 'Stanley Tucci': 'Publishing Executive', 'Christopher Fitzgerald': 'Curtis', 'Taye Diggs': 'Rasta Cab Driver', 'Molly Millard': 'Female Flight Attendant', 'Danny Pudi': 'Nathan Vignes', 'Michael Cotter': 'Ash Man', 'Staci Roberts Steele': 'Woman in 3B       (as Staci Roberts)', 'Kenny Ellis': 'Rabbi', 'Guy Wilson': 'Frat Guy', 'Henry Winkler': 'Stanley Warner', 'Molly Shannon': 'Emily McCoy', 'Michael B. Silver': 'Geddes', 'Rebecca Romijn': 'Sally the Flightpal'}\"\r\ntt3393070,\"{'Michael Jai White': 'Hammond', 'Kadeem Hardison': 'Sgt. Jones', 'Randy Wayne': 'Android Cop', 'Charles S. Dutton': 'Mayor Jacobs', 'Larissa Vereza': 'Helen Jacobs', 'Gerald Webb': 'George Jones', 'Duane Avery': 'Newald Mason', 'Morgan Benoit': 'Ratchet', 'Deena Trudy': 'Officer Jackson       (as Deena Trudy Goldberg)', 'Jay Brothers': 'Porter       (as Jay C. Brothers)', \"\"Kay D'Arcy\"\": 'Trickshot Granny', 'Jay Gillespie': 'Reynolds', 'William Guirola': 'Snake', 'George Kokkoris': 'Sergeant Mills', 'Danny Ledsinger': 'Six Eyes       (as Danny Ledsinger Jr.)'}\"\r\ntt2709768,\"{'Louis C.K.': 'Max       (voice)', 'Eric Stonestreet': 'Duke       (voice)', 'Kevin Hart': 'Snowball       (voice)', 'Jenny Slate': 'Gidget       (voice)', 'Ellie Kemper': 'Katie       (voice)', 'Albert Brooks': 'Tiberius       (voice)', 'Lake Bell': 'Chloe       (voice)', 'Dana Carvey': 'Pops       (voice)', 'Hannibal Buress': 'Buddy       (voice)', 'Bobby Moynihan': 'Mel       (voice)', 'Chris Renaud': 'Norman       (voice)', 'Steve Coogan': 'Ozone /              Reginald       (voice)', 'Michael Beattie': 'Tattoo       (voice)', 'Sandra Echeverría': 'Maria       (voice) (as Sandra Echeverria)', 'Jaime Camil': 'Fernando       (voice)'}\"\r\ntt0400717,\"{'Martin Lawrence': 'Boog       (voice)', 'Ashton Kutcher': 'Elliot       (voice)', 'Gary Sinise': 'Shaw       (voice)', 'Debra Messing': 'Beth       (voice)', 'Billy Connolly': 'McSquizzy       (voice)', 'Georgia Engel': 'Bobbie       (voice)', 'Jon Favreau': 'Reilly       (voice)', 'Jane Krakowski': 'Giselle       (voice)', 'Gordon Tootoosis': 'Gordy       (voice)', 'Patrick Warburton': 'Ian       (voice)', 'Cody Cameron': 'Mr. Weenie       (voice)', 'Nika Futterman': 'Rosie       (voice)', 'Danny Mann': 'Serge       (voice)', 'Jack McGee': 'Hunter       (voice)', 'Michelle Murdocca': 'Maria       (voice)'}\"\r\ntt0423294,\"{'Shia LaBeouf': 'Cody Maverick       (voice)', 'Jeff Bridges': \"\"Zeke 'Big Z' Topanga /              'Geek'       (voice)\"\", 'Zooey Deschanel': 'Lani Aliikai       (voice)', 'Jon Heder': 'Chicken Joe       (voice)', 'James Woods': 'Reggie Belafonte       (voice)', 'Diedrich Bader': \"\"Tank 'The Shredder' Evans       (voice)\"\", 'Mario Cantone': 'Mikey Abromowitz       (voice)', 'Kelly Slater': 'Kelly       (voice)', 'Rob Machado': 'Rob       (voice)', 'Sal Masekela': 'SPEN Announcer       (voice)', 'Ash Brannon': 'Filmmaker       (voice)', 'Chris Buck': 'Filmmaker       (voice)', 'Brian Posehn': 'Glen Maverick       (voice)', 'Dana Belben': 'Edna Maverick       (voice) (as Dana L. Belben)', 'Reed Buck': 'Arnold       (voice)'}\"\r\ntt0787470,\"{'Seann William Scott': 'Gary Houseman', 'Randy Quaid': 'Coach Lew Tuttle', 'Brando Eaton': 'Mike Jensen', 'Emilee Wallace': 'Jenny Tuttle', 'A.D. Miles': 'Steve Pimble', 'Leonor Varela': 'Norma Sanchez', 'Tim Williams': 'Dick Daubert', 'Ryan Simpkins': 'Amy Daubert', 'Conor Donovan': 'Burke Nibbons', 'Allen Evangelista': 'Maricar Magwill', 'Justin Chon': 'Joe Chang', 'Vincent Coleman Taylor': 'Kevin Jones       (as Vincent Taylor)', 'Bryan Mitchell': 'Randy King', 'Remington Dewan': 'Paul the Videographer', 'Meredith Eaton': 'Mrs. Tuttle'}\"\r\ntt1276419,\"{'Alicia Vikander': 'Caroline Mathilde', 'Mads Mikkelsen': 'Johann Friedrich Struensee', 'Mikkel Boe Følsgaard': 'Christian VII', 'Trine Dyrholm': 'Juliane Marie', 'David Dencik': 'Ove Høegh-Guldberg', 'Thomas W. Gabrielsson': 'Schack Carl Rantzau', 'Cyron Melville': 'Enevold Brandt       (as Cyron Bjørn Melville)', 'Bent Mejding': 'J. H. E. Bernstoff', 'Harriet Walter': 'Augusta - Princess of Wales', 'Laura Bro': 'Louise von Plessen', 'Søren Malling': 'Hartmann', 'Jacob Lohmann': \"\"Juliane's Officer       (as Jakob Ulrik Lohmann)\"\", 'Søren Spanning': 'Munter', 'Frederik Christian Johansen': 'Arveprinsen', 'John Martinus': 'Reventlow'}\"\r\ntt0803096,\"{'Travis Fimmel': 'Anduin Lothar', 'Paula Patton': 'Garona', 'Ben Foster': 'Medivh', 'Dominic Cooper': 'Llane Wrynn', 'Toby Kebbell': 'Durotan /              Antonidas', 'Ben Schnetzer': 'Khadgar', 'Robert Kazinsky': 'Orgrim', 'Clancy Brown': 'Blackhand', 'Daniel Wu': \"\"Gul'dan\"\", 'Ruth Negga': 'Lady Taria', 'Anna Galvin': 'Draka', 'Callum Keith Rennie': 'Moroes', 'Burkely Duffield': 'Callan', 'Ryan Robbins': 'Karos', 'Dean Redman': 'Varis /              Caged Frostwolf'}\"\r\ntt1133985,\"{'Ryan Reynolds': 'Hal Jordan /              Green Lantern', 'Blake Lively': 'Carol Ferris', 'Peter Sarsgaard': 'Hector Hammond', 'Mark Strong': 'Sinestro', 'Tim Robbins': 'Hammond', 'Jay O. Sanders': 'Carl Ferris', 'Taika Waititi': 'Tom Kalmaku', 'Angela Bassett': 'Doctor Waller', 'Mike Doyle': 'Jack Jordan', 'Nick Jandl': 'Jim Jordan', 'Dylan James': 'Jason Jordan', 'Gattlin Griffith': 'Young Hal', 'Jon Tenney': 'Martin Jordan', 'Leanne Cochran': 'Janice Jordan', 'Temuera Morrison': 'Abin Sur'}\"\r\ntt3672840,\"{'Jackie Chan': 'Huo An', 'John Cusack': 'Lucius', 'Adrien Brody': 'Tiberius', 'Si Won Choi': 'Yin Po', 'Peng Lin': 'Cold Moon', 'Mika Wang': 'Xiu Qing', 'Yang Xiao': 'Captain', 'Taili Wang': 'Rat', 'Tin Chiu Hung': 'Red Sun       (as Sammy Hung)', 'Shaofeng Feng': 'General Huo Qubing       (as William Feng)', 'Sharni Vinson': 'Lady Crassus', 'Lorie Pester': 'Parthian Queen', 'Xiangdong Xu': 'Secretary       (as Xiang Dong Xu)', 'Qing Xiu': 'Wolf', 'Sung-jun Yoo': 'Cougar       (as Steve Yoo)'}\"\r\ntt2216240,\"{'Pilou Asbæk': 'Mikkel Hartmann', 'Søren Malling': 'Peter C. Ludvigsen', 'Dar Salim': 'Lars Vestergaard', 'Roland Møller': 'Jan Sørensen', 'Gary Skjoldmose Porter': 'Connor Julian', 'Abdihakin Asgar': 'Omar', 'Amalie Ihle Alstrup': 'Maria Hartmann       (as Amalie Alstrup)', 'Amalie Vulff Andersen': 'Kamilla Hartmann', 'Linda Laursen': 'Anette Ludvigsen', 'Keith Pearson': 'Kaptajn', 'Allan Arnby': 'Niels Giversen', 'Bettina Schjerlund': 'Jytte', 'Derrick Dharmakan': 'Sømænd', 'Juma Mvita': 'Sømænd       (as Jumamvita)', \"\"Mikyan 'Thura' Aung\"\": 'Sømænd'}\"\r\ntt2310332,\"{'Ian McKellen': 'Gandalf', 'Martin Freeman': 'Bilbo', 'Richard Armitage': 'Thorin', 'Ken Stott': 'Balin', 'Graham McTavish': 'Dwalin', 'William Kircher': 'Bifur', 'James Nesbitt': 'Bofur', 'Stephen Hunter': 'Bombur', \"\"Dean O'Gorman\"\": 'Fili', 'Aidan Turner': 'Kili', 'John Callen': 'Oin', 'Peter Hambleton': 'Gloin', 'Jed Brophy': 'Nori', 'Mark Hadlow': 'Dori', 'Adam Brown': 'Ori'}\"\r\ntt1170358,\"{'Ian McKellen': 'Gandalf', 'Martin Freeman': 'Bilbo', 'Richard Armitage': 'Thorin', 'Ken Stott': 'Balin', 'Graham McTavish': 'Dwalin', 'William Kircher': 'Bifur', 'James Nesbitt': 'Bofur', 'Stephen Hunter': 'Bombur', \"\"Dean O'Gorman\"\": 'Fili', 'Aidan Turner': 'Kili', 'John Callen': 'Oin', 'Peter Hambleton': 'Gloin', 'Jed Brophy': 'Nori', 'Mark Hadlow': 'Dori', 'Adam Brown': 'Ori'}\"\r\ntt0903624,\"{'Ian McKellen': 'Gandalf', 'Martin Freeman': 'Bilbo', 'Richard Armitage': 'Thorin', 'Ken Stott': 'Balin', 'Graham McTavish': 'Dwalin', 'William Kircher': 'Bifur /              Tom Troll', 'James Nesbitt': 'Bofur', 'Stephen Hunter': 'Bombur', \"\"Dean O'Gorman\"\": 'Fili', 'Aidan Turner': 'Kili', 'John Callen': 'Oin', 'Peter Hambleton': 'Gloin /              William Troll', 'Jed Brophy': 'Nori', 'Mark Hadlow': 'Dori /              Bert Troll', 'Adam Brown': 'Ori'}\"\r\ntt1507566,\"{'Robert Loggia': 'Seamus White', 'Fisher Stevens': 'Tom Kozinski', 'Blanche Baker': 'Mrs. Needham', 'Jill Flint': 'Kelly Monaghan', 'Gabriel Mann': 'Daniel Jakor', 'David Thornton': 'Tay Murphy', 'Robert Clohessy': 'Patrick White', 'Rachael Robbins': 'Emily Lane', 'Erika Smith': \"\"Daniel's Mother\"\", 'Alan Altschuler': 'Philip Glass', 'Allegra Cohen': 'News Anchor', 'Keith Collins': 'Darren', 'Charles Grady': 'Charlie', 'Dawn Landino': 'FBI Agent', 'Greg Nutcher': 'Art'}\"\r\ntt0988045,\"{'Robert Downey Jr.': 'Sherlock Holmes', 'Jude Law': 'Dr. John Watson', 'Rachel McAdams': 'Irene Adler', 'Mark Strong': 'Lord Henry Blackwood', 'Eddie Marsan': 'Inspector Lestrade', 'Robert Maillet': 'Dredger', 'Geraldine James': 'Mrs. Hudson', 'Kelly Reilly': 'Mary Morstan', 'William Houston': 'Constable Clark', 'Hans Matheson': 'Lord Coward', 'James Fox': 'Sir Thomas Rotheram', 'William Hope': 'Ambassador Standish', 'Clive Russell': 'Captain Tanner', 'Oran Gurel': 'Reordan', 'David Garrick': 'McMurdo'}\"\r\ntt1656186,\"{'Nicolas Cage': 'Will Montgomery', 'Josh Lucas': 'Vincent', 'Danny Huston': 'Tim Harlend', 'Malin Akerman': 'Riley Jeffers', 'Sami Gayle': 'Alison Loeb', 'Edrick Browne': 'Jacobs', 'Mark Valley': 'Fletcher', 'Barry Shabaka Henley': 'Reginald', 'M.C. Gainey': 'Hoyt', 'J.D. Evermore': 'Rookie', 'Garrett Hines': 'Aaron', 'Kevin Foster': 'Motorcycle Cop', 'Tanc Sade': 'Pete', 'Dan Braverman': 'Lefleur', 'Jon Eyez': 'Bertrand'}\"\r\ntt2097307,\"{'Kristen Bell': 'Annie Bean', 'Dax Shepard': 'Yul Perrkins a.k.a. Charles Bronson', 'Tom Arnold': 'Randy Anderson', 'Kristin Chenoweth': 'Debby Kreeger', 'Michael Rosenbaum': 'Gil Rathbinn', 'Jess Rowland': 'Terry Rathbinn', 'Carly Hatter': 'Angella Roth', 'Steve Agee': 'Dude #1', 'Bradley Cooper': 'Alex Dmitri', 'Joy Bryant': 'Neve', 'Kal Bennett': 'Cashier Mary Ann', 'John Duff': 'Body Builder Catalyst', 'David Koechner': 'Sanders', 'Ryan Hansen': 'Allen', 'Beau Bridges': 'Clint Perrkins'}\"\r\ntt1951265,\"{'Jennifer Lawrence': 'Katniss Everdeen', 'Josh Hutcherson': 'Peeta Mellark', 'Liam Hemsworth': 'Gale Hawthorne', 'Woody Harrelson': 'Haymitch Abernathy', 'Donald Sutherland': 'President Snow', 'Philip Seymour Hoffman': 'Plutarch Heavensbee', 'Julianne Moore': 'President Alma Coin', 'Willow Shields': 'Primrose Everdeen', 'Sam Claflin': 'Finnick Odair', 'Elizabeth Banks': 'Effie Trinket', 'Mahershala Ali': 'Boggs', 'Jena Malone': 'Johanna Mason', 'Jeffrey Wright': 'Beetee', 'Paula Malcomson': \"\"Katniss' Mother\"\", 'Stanley Tucci': 'Caesar Flickerman'}\"\r\ntt0844471,\"{'Bill Hader': 'Flint Lockwood       (voice)', 'Anna Faris': 'Sam Sparks       (voice)', 'James Caan': 'Tim Lockwood       (voice)', 'Andy Samberg': \"\"'Baby' Brent       (voice)\"\", 'Bruce Campbell': 'Mayor Shelbourne       (voice)', 'Mr. T': 'Earl Devereaux       (voice)', \"\"Bobb'e J. Thompson\"\": 'Cal Devereaux       (voice)', 'Benjamin Bratt': 'Manny       (voice)', 'Neil Patrick Harris': 'Steve       (voice)', 'Al Roker': 'Patrick Patrickson       (voice)', 'Lauren Graham': 'Fran Lockwood       (voice)', 'Will Forte': 'Joe Towne       (voice)', 'Max Neuwirth': 'Young Flint       (voice)', 'Peter Siragusa': 'Rufus       (voice)', 'Angela Shelton': 'Regina Devereaux       (voice)'}\"\r\ntt1766094,\"{'Miley Cyrus': 'Molly /              Brook', 'Jeremy Piven': 'Armon', \"\"Mike O'Malley\"\": 'Sam', 'Josh Bowman': 'Nicholas', 'Lauren McKnight': 'Alex', 'Kelly Osbourne': 'Becky', 'Eloise Mumford': 'Sasha', 'Megan Park': 'Cotton', 'Morgan Calhoun': 'Hunter', 'Alexis Knapp': 'Taylor', 'Matthew Settle': 'Professor Talloway', 'Autumn Reeser': 'Bizzy', 'Brian Peterson': 'Zingadi', 'Ric Reitz': 'State Senator', 'Leticia Jimenez': \"\"State Senator's Girlfriend\"\"}\"\r\ntt2024506,\"{'Ryan Phillippe': 'Scott', 'Anna Paquin': 'Katherine', 'Luke Wilson': 'William', 'Riley Thomas Stewart': 'Charles', 'Ursula Parker': 'Gracie', 'Amparo Garcia-Crow': 'Louisa', 'Augustin Solis': 'Carlos', 'Tess Harper': 'Mother', 'Powers Boothe': 'Father', 'Christa Campbell': 'Dana', 'James Carrol': 'Executive', 'Josh Meyers': 'Jason', 'Kristen Williams': 'Nikki /              Craps Table Girl #1', 'Jon Mack': 'Holly /              Craps Table Girl #2', 'Simona Williams': 'Carla /              Craps Table Girl #3'}\"\r\ntt1374992,\"{'Jim Sturgess': 'Adam', 'Kirsten Dunst': 'Eden', 'Timothy Spall': 'Bob Boruchowitz', 'Blu Mankuma': 'Albert', 'Nicholas Rose': 'Pablo', 'James Kidnie': 'Lagavullan', 'Vlasta Vrana': 'Mr. Hunt', 'Kate Trotter': 'Becky', 'Holly Uloth': \"\"Paula       (as Holly O'Brien)\"\", 'Elliott Larson': 'Adam 12 Years Old', 'Maurane Arcand': 'Eden 10 Years Old', 'Janine Theriault': 'Miss Maguire', 'Vincent Messina': 'Tommy', 'Cole K. Mickenzie': 'Pato', 'Paul Ahmarani': 'Mr. Tenet'}\"\r\ntt0770828,\"{'Henry Cavill': 'Clark Kent /              Kal-El', 'Amy Adams': 'Lois Lane', 'Michael Shannon': 'General Zod', 'Diane Lane': 'Martha Kent', 'Russell Crowe': 'Jor-El', 'Antje Traue': 'Faora-Ul', 'Harry Lennix': 'General Swanwick', 'Richard Schiff': 'Dr. Emil Hamilton', 'Christopher Meloni': 'Colonel Nathan Hardy', 'Kevin Costner': 'Jonathan Kent', 'Ayelet Zurer': 'Lara Lor-Van', 'Laurence Fishburne': 'Perry White', 'Dylan Sprayberry': 'Clark Kent (13 Years)', 'Cooper Timberline': 'Clark Kent (9 Years)', 'Richard Cetrone': 'Tor-An'}\"\r\ntt0067992,\"{'Gene Wilder': 'Willy Wonka', 'Jack Albertson': 'Grandpa Joe', 'Peter Ostrum': 'Charlie', 'Roy Kinnear': 'Mr. Salt', 'Julie Dawn Cole': 'Veruca Salt', 'Leonard Stone': 'Mr. Beauregarde', 'Denise Nickerson': 'Violet Beauregarde', 'Nora Denney': 'Mrs. Teevee       (as Dodo Denney)', 'Paris Themmen': 'Mike Teevee', 'Ursula Reit': 'Mrs. Gloop', 'Michael Bollner': 'Augustus Gloop', 'Diana Sowle': 'Mrs. Bucket', 'Aubrey Woods': 'Bill', 'David Battley': 'Mr. Turkentine', 'Günter Meisner': 'Mr. Slugworth       (as Gunter Meisner)'}\"\r\ntt1646987,\"{'Sam Worthington': 'Perseus', 'Liam Neeson': 'Zeus', 'Ralph Fiennes': 'Hades', 'Edgar Ramírez': 'Ares       (as Edgar Ramirez)', 'Toby Kebbell': 'Agenor', 'Rosamund Pike': 'Andromeda', 'Bill Nighy': 'Hephaestus', 'Danny Huston': 'Poseidon', 'John Bell': 'Helius', 'Lily James': 'Korrina', 'Alejandro Naranjo': 'Mantius', 'Freddy Drabble': 'Apollo', 'Kathryn Carpenter': 'Athena', 'Matt Milne': 'Elite Guard No. 1', 'Kett Turton': 'Elite Guard No. 2'}\"\r\ntt2383068,\"{'Joe Swanberg': 'Jake Williams', 'AJ Bowen': 'Sam Turner', 'Kentucker Audley': 'Patrick', 'Gene Jones': 'Father', 'Amy Seimetz': 'Caroline', 'Kate Forbes': 'Mindy', 'Conphidance': 'Guide #1', 'Derek Roberts': 'Guide #2', 'Shirley Jones Byrd': 'Lorraine Davis', 'Shaun Clay': 'Robert       (as Lashaun Clay)', 'Dale Neal': 'Andre', 'Kate Lyn Sheil': 'Sarah White', 'Donna Biscoe': 'Wendy', 'Tovin A. Pristell': 'Guard', 'Christian Ojore Mayfield': \"\"Pilot       (as Christian O'Jore)\"\"}\"\r\ntt0105698,\"{'Jean-Claude Van Damme': 'Luc Deveraux /              GR44', 'Dolph Lundgren': 'Andrew Scott /              GR13', 'Ally Walker': 'Veronica Roberts', \"\"Ed O'Ross\"\": 'Colonel Perry', 'Jerry Orbach': 'Dr. Christopher Gregor', 'Leon Rippy': 'Woodward', 'Tico Wells': 'Garth', 'Ralf Moeller': 'GR76       (as Ralph Moeller)', 'Robert Trebor': 'Motel Owner', 'Gene Davis': 'Lieutenant', 'Drew Snyder': 'Charles', \"\"Tommy 'Tiny' Lister\"\": \"\"GR55       (as 'Tiny' Lister Jr.)\"\", 'Simon Rhee': 'GR61', 'Eric Norris': 'GR86', 'Michael Winther': 'Technician'}\"\r\ntt0024216,\"{'Fay Wray': 'Ann Darrow', 'Robert Armstrong': 'Carl Denham', 'Bruce Cabot': 'John Driscoll', 'Frank Reicher': 'Capt. Englehorn', 'Sam Hardy': 'Charles Weston', 'Noble Johnson': 'Native Chief', 'Steve Clemente': 'Witch King       (as Steve Clemento)', 'James Flavin': 'Second Mate Briggs', 'King Kong': 'The Eighth Wonder of the World'}\"\r\ntt1709143,\"{'Liev Schreiber': 'Vincent Campbell', 'Elias Koteas': 'Charles Brunel', 'Romola Garai': 'Rebecca Lane', 'Olivia Williams': 'Kim Aldrich', 'Johnny Harris': 'Robert Irwin', 'Goran Kostic': 'Marko Petrovic', 'Tom Cullen': 'Richard Harrington', 'Yusra Warsama': 'Lauren Dalby', 'Patrick Joseph Byrnes': 'Flight Commander Ellis', 'Lewis Macleod': 'Infected Voices       (voice)'}\"\r\ntt1578882,\"{'Djimon Hounsou': 'Curtie Church', 'Markus Waldow': 'The Man with the Stopwatch', 'Kevin Bacon': 'Jimmy', 'Jirantanin Pitakporntrakul': 'Mae', 'Weeraprawat Wongpuapan': 'Boss Katha', 'Apichart Chusakul': 'Advisor Bhun       (as Abhijati Jusakul)', 'Suteerush Channukool': 'Number Two', 'Sahajak Boonthanakit': 'Rajahdon', 'Gigi Velicitat': 'The Drunk Man'}\"\r\ntt2279339,\"{'Steve Martin': 'Rags       (voice)', 'Diane Keaton': 'Charlotte', 'John Goodman': 'Sam', 'Ed Helms': 'Hank', 'Alex Borstein': 'Angie', 'Timothée Chalamet': 'Charlie', 'Maxwell Simkins': 'Bo', 'Blake Baumgartner': 'Madison', 'Amanda Seyfried': 'Ruby', 'Alan Arkin': 'Bucky', 'Dan Amboyer': 'Handsome Young Man at Diner', 'Marisa Tomei': 'Emma', 'Scott Garan': 'Department Store Security Guard', 'Dorothy Silver': 'Mrs. Pinkins', 'Olivia Wilde': 'Eleanor'}\"\r\ntt5323662,\"{'Miyu Irino': 'Shôya Ishida       (voice)', 'Saori Hayami': 'Shoko Nishimiya       (voice)', 'Aoi Yûki': 'Yuzuru Nishimiya       (voice)', 'Kenshô Ono': 'Tomohiro Nagatsuka       (voice)', 'Yûki Kaneko': 'Naoka Ueno       (voice)', 'Yui Ishikawa': 'Miyoko Sahara       (voice)', 'Megumi Han': 'Miki Kawai       (voice)', 'Toshiyuki Toyonaga': 'Satoshi Mashiba       (voice)', 'Mayu Matsuoka': 'Young Shoya Ishida       (voice)', 'Sachiko Kojima': 'Young Kazuki Shimada       (voice)', 'Hana Takeda': 'Young Keisuke Hirose       (voice)', 'Fuminori Komatsu': 'Takeuchi-sensei       (voice)', 'Ikuko Tani': 'Ito Nishimiya       (voice)', 'Erena Kamata': 'Maria Ishida       (voice)', 'Ayano Hamaguchi': \"\"Shoya's sister       (voice)\"\"}\"\r\ntt0800320,\"{'Sam Worthington': 'Perseus', 'Liam Neeson': 'Zeus', 'Ralph Fiennes': 'Hades', 'Jason Flemyng': 'Calibos /              Acrisius', 'Gemma Arterton': 'Io', 'Alexa Davalos': 'Andromeda', 'Tine Stapelfeldt': 'Danae', 'Mads Mikkelsen': 'Draco', 'Luke Evans': 'Apollo', 'Izabella Miko': 'Athena', 'Liam Cunningham': 'Solon', 'Hans Matheson': 'Ixas', 'Ashraf Barhom': 'Ozal', 'Mouloud Achour': 'Kucuk', 'Ian Whyte': 'Sheikh Suleiman'}\"\r\ntt0120912,\"{'Tommy Lee Jones': 'Kay', 'Will Smith': 'Jay', 'Rip Torn': 'Zed', 'Lara Flynn Boyle': 'Serleena', 'Johnny Knoxville': 'Scrad /              Charlie', 'Rosario Dawson': 'Laura Vasquez', 'Tony Shalhoub': 'Jeebs', 'Patrick Warburton': 'Agent Tee', 'Jack Kehler': 'Ben', 'David Cross': 'Newton', 'Colombe Jacobsen-Derstine': 'Hailey       (as Colombe Jacobsen)', 'Peter Spellos': 'Motorman', 'Michael Rivkin': 'Man with Dog', 'Michael Bailey Smith': 'Creepy', 'Lenny Venito': 'New York Guy'}\"\r\ntt1392190,\"{'Tom Hardy': 'Max Rockatansky', 'Charlize Theron': 'Imperator Furiosa', 'Nicholas Hoult': 'Nux', 'Hugh Keays-Byrne': 'Immortan Joe', 'Josh Helman': 'Slit', 'Nathan Jones': 'Rictus Erectus', 'Zoë Kravitz': 'Toast the Knowing', 'Rosie Huntington-Whiteley': 'The Splendid Angharad', 'Riley Keough': 'Capable', 'Abbey Lee': 'The Dag', 'Courtney Eaton': 'Cheedo the Fragile', 'John Howard': 'The People Eater', 'Richard Carter': 'The Bullet Farmer', 'Iota': 'The Doof Warrior       (as iOTA)', 'Angus Sampson': 'The Organic Mechanic'}\"\r\ntt1985949,\"{'Jason Sudeikis': 'Red       (voice)', 'Josh Gad': 'Chuck       (voice)', 'Danny McBride': 'Bomb       (voice)', 'Maya Rudolph': 'Matilda       (voice)', 'Bill Hader': 'Leonard       (voice)', 'Peter Dinklage': 'Mighty Eagle       (voice)', 'Sean Penn': 'Terence       (voice)', 'Keegan-Michael Key': 'Judge Peckinpah       (voice)', 'Kate McKinnon': 'Stella /              Eva the Birthday Mom       (voice)', 'Tony Hale': 'Ross /              Cyrus /              Mime       (voice)', 'Hannibal Buress': 'Edward the Birthday Dad       (voice)', 'Ike Barinholtz': 'Tiny       (voice)', 'Tituss Burgess': 'Photog       (voice)', 'Ian Hecox': 'Bubbles       (voice)', 'Anthony Padilla': 'Hal       (voice)'}\"\r\ntt2379713,\"{'Daniel Craig': 'James Bond', 'Christoph Waltz': 'Blofeld', 'Léa Seydoux': 'Madeleine', 'Ralph Fiennes': 'M', 'Monica Bellucci': 'Lucia', 'Ben Whishaw': 'Q', 'Naomie Harris': 'Moneypenny', 'Dave Bautista': 'Hinx', 'Andrew Scott': 'C', 'Rory Kinnear': 'Tanner', 'Jesper Christensen': 'Mr. White', 'Alessandro Cremona': 'Marco Sciarra', 'Stephanie Sigman': 'Estrella', 'Tenoch Huerta': 'Mexican Man in Lift', 'Adriana Paz': 'Mexican Woman in Lift'}\"\r\ntt1409024,\"{'Will Smith': 'Agent J', 'Tommy Lee Jones': 'Agent K', 'Josh Brolin': 'Young Agent K', 'Jemaine Clement': 'Boris The Animal', 'Emma Thompson': 'Agent O', 'Michael Stuhlbarg': 'Griffin', 'Mike Colter': 'Colonel', 'Nicole Scherzinger': \"\"Boris' Girlfriend\"\", 'Michael Chernus': 'Jeffrey Price', 'Alice Eve': 'Young Agent O', 'David Rasche': 'Agent X', 'Keone Young': 'Mr. Wu', 'Bill Hader': 'Andy Warhol', 'Cayen Martin': \"\"Colonel's Son\"\", 'Clarke Thorell': 'Prison Guard #1'}\"\r\ntt0120685,\"{'Matthew Broderick': 'Dr. Niko Tatopoulos', 'Jean Reno': 'Philippe Roaché', 'Maria Pitillo': 'Audrey Timmonds', 'Hank Azaria': \"\"Victor 'Animal' Palotti\"\", 'Kevin Dunn': 'Colonel Hicks', 'Michael Lerner': 'Mayor Ebert', 'Harry Shearer': 'Charles Caiman', 'Arabella Field': 'Lucy Palotti', 'Vicki Lewis': 'Dr. Elsie Chapman', 'Doug Savant': \"\"Sergeant O'Neal\"\", 'Malcolm Danare': 'Dr. Mendel Craven', 'Lorry Goldman': \"\"Gene - Mayor's Aide\"\", 'Christian Aubert': 'Jean-Luc', 'Philippe Bergeron': 'Jean-Claude', 'Frank Bruynbroek': 'Jean-Pierre'}\"\r\ntt1985966,\"{'Bill Hader': 'Flint Lockwood       (voice)', 'Anna Faris': 'Sam Sparks       (voice)', 'James Caan': 'Tim Lockwood       (voice)', 'Will Forte': 'Chester V       (voice)', 'Andy Samberg': 'Brent McHale       (voice)', 'Benjamin Bratt': 'Manny       (voice)', 'Neil Patrick Harris': 'Steve       (voice)', 'Terry Crews': 'Earl Devereaux       (voice)', 'Kristen Schaal': 'Barb       (voice)', 'Cody Cameron': 'Barry /              Dill Pickle       (voice)', 'Melissa Sturm': 'Sentinel Louise /              Live Corp Scientist       (voice)', 'Kris Pearn': 'Sentinel Peter /              Labcoat Jenny       (voice)', 'Craig Kellman': 'Flintly McCallahan /              Idea Pants Guy       (voice)', 'Khamani Griffin': 'Cal Devereaux       (voice)', 'Bridget Hoffman': 'Young Flint       (voice)'}\"\r\ntt0097647,\"{'Ralph Macchio': 'Daniel', 'Pat Morita': \"\"Mr. Miyagi       (as Noriyuki 'Pat' Morita)\"\", 'Robyn Lively': 'Jessica', 'Thomas Ian Griffith': 'Terry', 'Martin Kove': 'Kreese', 'Sean Kanan': 'Mike Barnes', 'Jonathan Avildsen': 'Snake', 'William Christopher Ford': 'Dennis       (as Christopher Paul Ford)', 'Randee Heller': 'Lucille', 'Pat E. Johnson': 'Referee', 'Rick Hurst': 'Announcer', 'Frances Bay': 'Mrs. Milo', 'Joseph V. Perry': 'Uncle Louie', 'Jan Tríska': 'Milos', 'Diana Webster': 'Margaret'}\"\r\ntt0091326,\"{'Pat Morita': \"\"Miyagi       (as Noriyuki 'Pat' Morita)\"\", 'Ralph Macchio': 'Daniel', 'Pat E. Johnson': 'Referee', 'Bruce Malmuth': 'Announcer', 'Eddie Smith': 'Bystander', 'Martin Kove': 'Kreese', 'Garth Johnson': 'Autograph Fan', 'Brett Johnson': 'Autograph Fan', 'Will Hunt': 'Postman', 'Evan James': 'Cab Driver       (as Evan Malmuth)', 'Lee Arnone': 'Stewardess', 'Sarah Kendall': 'Stewardess #2', 'Yuji Okumoto': 'Chozen', 'Joey Miyashima': 'Toshio', 'Danny Kamekona': 'Sato'}\"\r\ntt1234721,\"{'Joel Kinnaman': 'Alex Murphy /              RoboCop', 'Gary Oldman': 'Dr. Dennett Norton', 'Michael Keaton': 'Raymond Sellars', 'Abbie Cornish': 'Clara Murphy', 'Jackie Earle Haley': 'Rick Mattox', 'Michael Kenneth Williams': 'Jack Lewis       (as Michael K. Williams)', 'Jennifer Ehle': 'Liz Kline', 'Jay Baruchel': 'Tom Pope', 'Marianne Jean-Baptiste': 'Chief Karen Dean', 'Samuel L. Jackson': 'Pat Novak', 'Aimee Garcia': 'Jae Kim', 'Douglas Urbanski': 'Mayor Durant', 'John Paul Ruttan': 'David Murphy', 'Patrick Garrow': 'Antoine Vallon', 'K.C. Collins': 'Andre Daniels'}\"\r\ntt1217613,\"{'Aaron Eckhart': 'Ssgt. Michael Nantz', 'Ramon Rodriguez': '2nd Lt. William Martinez', 'Will Rothhaar': 'Cpl. Lee Imlay', 'Cory Hardrict': 'Cpl. Jason Lockett', 'Jim Parrack': 'LCpl. Peter Kerns', 'Gino Anthony Pesi': 'Cpl. Nick Stavrou', 'Ne-Yo': 'Cpl. Kevin Harris', 'James Hiroyuki Liao': 'LCpl. Steven Mottola', 'Bridget Moynahan': 'Michele', 'Noel Fisher': 'Pfc. Shaun Lenihan', \"\"Adetokumboh M'Cormack\"\": 'Corpsman Jibril Adukwu', 'Bryce Cass': 'Hector Rincon', 'Michael Peña': 'Joe Rincon', 'Michelle Rodriguez': 'TSgt. Elena Santos', 'Neil Brown Jr.': 'LCpl. Richard Guerrero'}\"\r\ntt2637294,\"{'Rob Corddry': 'Lou', 'Craig Robinson': 'Nick', 'Clark Duke': 'Jacob', 'Adam Scott': 'Adam Jr.', 'Gillian Jacobs': 'Jill', 'Chevy Chase': 'Hot Tub Repairman', 'Collette Wolfe': 'Kelly', 'Bianca Haase': 'Sophie', 'Jason Jones': 'Gary Winkle       (as Jason D. Jones)', 'Kumail Nanjiani': 'Brad', 'Kellee Stewart': 'Courtney', 'Josh Heald': 'Terry', 'Gretchen Koerner': 'Susan', 'Lisa Loeb': 'Lisa Loeb', 'Jessica Williams': 'Jessica Williams'}\"\r\ntt2967224,\"{'Reese Witherspoon': 'Cooper', 'Sofía Vergara': 'Daniella Riva', 'Matthew Del Negro': 'Detective Hauser', 'Michael Mosley': 'Detective Dixon', 'Robert Kazinsky': 'Randy', 'Richard T. Jones': 'Detective Jackson', 'Benny Nieves': 'Jesus', 'Michael Ray Escamilla': 'Angel', 'Joaquín Cosio': 'Vicente Cortez', 'John Carroll Lynch': 'Captain Emmett', 'Jim Gaffigan': 'Red', 'Mike Birbiglia': 'Steve', 'Vincent Laresca': 'Felipe Riva', 'David Jensen': 'Wayne', 'Evaluna Montaner': 'Teresa Cortez'}\"\r\ntt1355630,\"{'Chloë Grace Moretz': 'Mia Hall', 'Mireille Enos': 'Kat', 'Jamie Blackley': 'Adam', 'Joshua Leonard': 'Denny', 'Liana Liberato': 'Kim', 'Stacy Keach': 'Gramps', 'Gabrielle Rose': 'Gran', 'Jakob Davies': 'Teddy', 'Willa Milner': 'Liz       (as Ali Milner)', 'Aisha Hinds': 'Nurse Ramirez', 'Gabrielle Cerys Haslett': 'Young Mia', 'Lauren Lee Smith': 'Willow', 'Adam Solomonian': 'Henry', 'John Emmet Tracy': 'Surgeon', 'Chelah Horsdal': 'Liddy'}\"\r\ntt0089853,\"{'Mia Farrow': 'Cecilia', 'Jeff Daniels': 'Tom Baxter /              Gil Shepherd', 'Danny Aiello': 'Monk', 'Irving Metzman': 'Theater Manager', 'Stephanie Farrow': \"\"Cecilia's Sister\"\", 'David Kieserman': 'Diner Boss', 'Elaine Grollman': 'Diner Patron', 'Victoria Zussin': 'Diner Patron', 'Mark Hammond': 'Diner Patron', 'Wade Barnes': 'Diner Patron', 'Joseph G. Graham': 'Diner Patron', 'Don Quigley': 'Diner Patron', 'Maurice Brenner': 'Diner Patron', 'Paul Herman': 'Penny Pitcher', 'Rick Petrucelli': 'Penny Pitcher'}\"\r\ntt3850590,\"{'Emjay Anthony': 'Max', 'Adam Scott': 'Tom', 'Toni Collette': 'Sarah', 'Stefania LaVie Owen': 'Beth', 'Krista Stadler': 'Omi', 'Conchata Ferrell': 'Aunt Dorothy', 'Allison Tolman': 'Linda', 'David Koechner': 'Howard', 'Maverick Flack': 'Howie, Jr', 'Queenie Samuel': 'Jordan', 'Lolo Owen': 'Stevie', 'Sage Hunefeld': 'Baby Chrissy', 'Leith Towers': 'Derek', 'Curtis Vowell': 'DHL Man', 'Luke Hawker': 'Krampus'}\"\r\ntt0119282,\"{'Tate Donovan': 'Hercules       (voice)', 'Josh Keaton': 'Young Hercules       (voice)', 'Roger Bart': 'Young Hercules       (singing voice)', 'Danny DeVito': 'Phil       (voice)', 'James Woods': 'Hades       (voice)', 'Susan Egan': 'Meg       (voice)', 'Bobcat Goldthwait': 'Pain       (voice)', 'Matt Frewer': 'Panic       (voice)', 'Rip Torn': 'Zeus       (voice)', 'Samantha Eggar': 'Hera       (voice)', 'Barbara Barrie': 'Alcmene       (voice)', 'Hal Holbrook': 'Amphitryon       (voice)', 'Paul Shaffer': 'Hermes       (voice)', 'Amanda Plummer': 'Clotho       (voice)', 'Carole Shelley': 'Lachesis       (voice)'}\"\r\ntt0296572,\"{'Vin Diesel': 'Riddick', 'Colm Feore': 'Lord Marshal', 'Thandie Newton': 'Dame Vaako', 'Judi Dench': 'Aereon', 'Karl Urban': 'Vaako', 'Alexa Davalos': 'Kyra', 'Linus Roache': 'Purifier', 'Yorick van Wageningen': 'The Guv', 'Nick Chinlund': 'Toombs', 'Keith David': 'Imam', 'Mark Gibbon': 'Irgun', 'Roger Cross': 'Toal       (as Roger R. Cross)', 'Terry Chen': 'Merc Pilot', 'Christina Cox': 'Eve Logan', 'Nigel Vonas': 'Merc'}\"\r\ntt0259324,\"{'Matt Long': 'Young Johnny Blaze', 'Raquel Alessi': 'Young Roxanne Simpson', 'Brett Cullen': 'Barton Blaze', 'Peter Fonda': 'Mephistopheles', 'Nicolas Cage': 'Johnny Blaze /              Ghost Rider', 'Donal Logue': 'Mack', 'Tony Ghosthawk': 'Team Blaze', 'Hugh Sexton': 'Team Blaze', 'Marcus Jones': 'Team Blaze', 'Matt Norman': 'Team Blaze', 'Lawrence Cameron Steele': 'X Games Announcer       (as Cameron Steele)', 'Wes Bentley': 'Blackheart', 'Eddie Baroo': 'Motorcycle Gang Member', 'Jessica Napier': 'Broken Spoke Waitress', 'Laurence Breuls': 'Gressil'}\"\r\ntt3628584,\"{'Ice Cube': 'Calvin', 'Cedric the Entertainer': 'Eddie', 'Regina Hall': 'Angie', 'Sean Patrick Thomas': 'Jimmy', 'Eve': 'Terri', 'Anthony Anderson': 'J.D.', 'Jazsmin Lewis': 'Jennifer       (as Jazsmin Lewis-Kelley)', 'J.B. Smoove': 'One-Stop       (as JB Smoove)', 'Common': 'Rashad', 'Nicki Minaj': 'Draya', 'Lamorne Morris': 'Jerrod', 'Utkarsh Ambudkar': 'Raja', 'Margot Bingham': 'Bree', 'Deon Cole': 'Dante', 'Troy Garity': 'Isaac'}\"\r\ntt0948470,\"{'Andrew Garfield': 'Spider-Man /              Peter Parker', 'Emma Stone': 'Gwen Stacy', 'Rhys Ifans': 'The Lizard /              Dr. Curt Connors', 'Denis Leary': 'Captain Stacy', 'Martin Sheen': 'Uncle Ben', 'Sally Field': 'Aunt May', 'Irrfan Khan': 'Rajit Ratha', 'Campbell Scott': 'Richard Parker', 'Embeth Davidtz': 'Mary Parker', 'Chris Zylka': 'Flash Thompson', 'Max Charles': 'Peter Parker (Age 4)', 'C. Thomas Howell': \"\"Jack's Father\"\", 'Jake Keiffer': 'Jack       (as Jake Ryan Keiffer)', 'Kari Coleman': 'Helen Stacy', 'Michael Barra': 'Store Clerk'}\"\r\ntt0413300,\"{'Tobey Maguire': 'Spider-Man /              Peter Parker', 'Kirsten Dunst': 'Mary Jane Watson', 'James Franco': 'New Goblin /              Harry Osborn', 'Thomas Haden Church': 'Sandman /              Flint Marko', 'Topher Grace': 'Venom /              Eddie Brock', 'Bryce Dallas Howard': 'Gwen Stacy', 'Rosemary Harris': 'May Parker', 'J.K. Simmons': 'J. Jonah Jameson', 'James Cromwell': 'Captain Stacy', 'Theresa Russell': 'Emma Marko', 'Dylan Baker': 'Dr. Curt Connors', 'Bill Nunn': \"\"Joseph 'Robbie' Robertson\"\", 'Bruce Campbell': \"\"Maître d'\"\", 'Elizabeth Banks': 'Miss Brant', 'Ted Raimi': 'Hoffman'}\"\r\ntt1872181,\"{'Andrew Garfield': 'Spider-Man /              Peter Parker', 'Emma Stone': 'Gwen Stacy', 'Jamie Foxx': 'Electro /              Max Dillon', 'Dane DeHaan': 'Green Goblin /              Harry Osborn', 'Colm Feore': 'Donald Menken', 'Felicity Jones': 'Felicia', 'Paul Giamatti': 'Aleksei Sytsevich', 'Sally Field': 'Aunt May', 'Embeth Davidtz': 'Mary Parker', 'Campbell Scott': 'Richard Parker', 'Marton Csokas': 'Dr. Ashley Kafka', 'Louis Cancelmi': 'Man in Black Suit', 'Max Charles': 'Young Peter Parker', 'B.J. Novak': 'Alistair Smythe', 'Sarah Gadon': 'Kari'}\"\r\ntt1038686,\"{'Paul Bettany': 'Michael', 'Lucas Black': 'Jeep Hanson', 'Tyrese Gibson': 'Kyle Williams', 'Adrianne Palicki': 'Charlie', 'Charles S. Dutton': 'Percy Walker', 'Jon Tenney': 'Howard Anderson', 'Kevin Durand': 'Gabriel', 'Willa Holland': 'Audrey Anderson', 'Kate Walsh': 'Sandra Anderson', 'Dennis Quaid': 'Bob Hanson', 'Jeanette Miller': 'Gladys Foster', 'Cameron Harlow': 'Minivan Boy', 'Doug Jones': 'Ice Cream Man', 'Josh Stamberg': 'Burton', 'Yancey Arias': 'Estevez'}\"\r\ntt0091167,\"{'Barbara Hershey': 'Lee', 'Carrie Fisher': 'April', 'Michael Caine': 'Elliot', 'Mia Farrow': 'Hannah', 'Dianne Wiest': 'Holly', \"\"Maureen O'Sullivan\"\": 'Norma', 'Lloyd Nolan': 'Evan', 'Max von Sydow': 'Frederick       (as Max Von Sydow)', 'Woody Allen': 'Mickey', 'Lewis Black': 'Paul', 'Julia Louis-Dreyfus': 'Mary', 'Christian Clemenson': 'Larry', 'Julie Kavner': 'Gail', 'J.T. Walsh': 'Ed Smythe', 'John Turturro': 'Writer'}\"\r\ntt0079522,\"{'Woody Allen': 'Isaac', 'Diane Keaton': 'Mary', 'Michael Murphy': 'Yale', 'Mariel Hemingway': 'Tracy', 'Meryl Streep': 'Jill', 'Anne Byrne Hoffman': 'Emily       (as Anne Byrne)', 'Karen Ludwig': 'Connie', \"\"Michael O'Donoghue\"\": 'Dennis', 'Victor Truro': 'Party Guest', 'Tisa Farrow': 'Party Guest', 'Helen Hanft': 'Party Guest', 'Bella Abzug': 'Guest of Honor', 'Gary Weis': 'Television Director', 'Kenny Vance': 'Television Producer', 'Charles Levin': 'Television Actor #1'}\"\r\ntt0316654,\"{'Tobey Maguire': 'Spider-Man /              Peter Parker', 'Kirsten Dunst': 'Mary Jane Watson', 'James Franco': 'Harry Osborn', 'Alfred Molina': 'Doc Ock /              Dr. Otto Octavius', 'Rosemary Harris': 'May Parker', 'J.K. Simmons': 'J. Jonah Jameson', 'Donna Murphy': 'Rosalie Octavius', 'Daniel Gillies': 'John Jameson', 'Dylan Baker': 'Dr. Curt Connors', 'Bill Nunn': \"\"Joseph 'Robbie' Robertson\"\", 'Vanessa Ferlito': 'Louise', 'Aasif Mandvi': 'Mr. Aziz', 'Willem Dafoe': 'Green Goblin /              Norman Osborn', 'Cliff Robertson': 'Ben Parker', 'Ted Raimi': 'Hoffman'}\"\r\ntt0075686,\"{'Woody Allen': 'Alvy Singer', 'Diane Keaton': 'Annie Hall', 'Tony Roberts': 'Rob', 'Carol Kane': 'Allison', 'Paul Simon': 'Tony Lacey', 'Shelley Duvall': 'Pam', 'Janet Margolin': 'Robin', 'Colleen Dewhurst': 'Mom Hall', 'Christopher Walken': 'Duane Hall       (as Christopher Wlaken)', 'Donald Symington': 'Dad Hall', 'Helen Ludlam': 'Grammy Hall', 'Mordecai Lawner': \"\"Alvy's Dad\"\", 'Joan Neuman': \"\"Alvy's Mom       (as Joan Newman)\"\", 'Jonathan Munk': 'Alvy - Age 9', 'Ruth Volner': \"\"Alvy's Aunt\"\"}\"\r\ntt1289401,\"{'Zach Woods': 'Tour Guide Garrett', 'Kristen Wiig': 'Erin Gilbert', 'Ed Begley Jr.': 'Ed Mulgrave', 'Charles Dance': 'Harold Filmore', 'John Milhiser': 'Higgins Student', 'Ben Harris': 'Higgins Student', 'Melissa McCarthy': 'Abby Yates', 'Karan Soni': 'Bennie', 'Kate McKinnon': 'Jillian Holtzmann', 'Bess Rous': 'Gertrude Aldridge Ghost', 'Steve Higgins': 'Dean', 'Leslie Jones': 'Patty Tolan', 'Neil Casey': 'Rowan North', 'Dave Allen': 'Electrocuted Ghost       (as Dave Gruber Allen)', 'Katie Dippold': 'Rental Agent'}\"\r\ntt3530002,\"{'Joseph Gordon-Levitt': 'Ethan', 'Seth Rogen': 'Isaac', 'Anthony Mackie': 'Chris', 'Jillian Bell': 'Betsy', 'Lizzy Caplan': 'Diana', 'Heléne Yorke': 'Cindy       (as Helene Yorke)', 'Michael Shannon': 'Mr. Green', 'Mindy Kaling': 'Sarah', 'Ilana Glazer': 'Rebecca Grinch', 'Aaron Hill': 'Tommy Owens', 'Tracy Morgan': 'Narrator /              Santa', 'Darrie Lawrence': 'Nana', 'Nathan Fielder': 'Joshua', 'James Franco': 'James Franco', 'Miley Cyrus': 'Miley Cyrus'}\"\r\ntt1430607,\"{'James McAvoy': 'Arthur       (voice)', 'Hugh Laurie': 'Steve       (voice)', 'Bill Nighy': 'Grandsanta       (voice)', 'Jim Broadbent': 'Santa       (voice)', 'Imelda Staunton': 'Mrs Santa       (voice)', 'Ashley Jensen': 'Bryony       (voice)', 'Marc Wootton': 'Peter       (voice)', 'Laura Linney': 'North Pole Computer       (voice)', 'Eva Longoria': 'Chief De Silva       (voice)', 'Ramona Marquez': 'Gwen       (voice)', 'Michael Palin': 'Ernie Clicker       (voice)', 'Sanjeev Bhaskar': 'Lead Elf       (voice)', 'Robbie Coltrane': 'Lead Elf       (voice)', 'Joan Cusack': 'Lead Elf       (voice)', 'Rhys Darby': 'Lead Elf       (voice)'}\"\r\ntt1430626,\"{'Hugh Grant': 'The Pirate Captain       (voice)', 'Martin Freeman': 'The Pirate with a Scarf       (voice)', 'Imelda Staunton': 'Queen Victoria       (voice)', 'David Tennant': 'Charles Darwin       (voice)', 'Jeremy Piven': 'Black Bellamy       (voice)', 'Salma Hayek': 'Cutlass Liz       (voice)', 'Lenny Henry': 'Peg Leg Hastings       (voice)', 'Brian Blessed': 'The Pirate King       (voice)', 'Russell Tovey': 'The Albino Pirate       (voice)', 'Anton Yelchin': 'The Albino Pirate       (voice)', 'Brendan Gleeson': 'The Pirate with Gout       (voice)', 'Ashley Jensen': 'The Surprisingly Curvaceous Pirate       (voice)', 'Al Roker': 'The Pirate Who Likes Sunsets and Kittens       (voice)', 'Ben Whitehead': 'The Pirate Who Likes Sunsets and Kittens       (voice)', 'Mike Cooper': 'Admiral Collingwood       (voice)'}\"\r\ntt2510894,\"{'Adam Sandler': 'Dracula       (voice)', 'Andy Samberg': 'Jonathan       (voice)', 'Selena Gomez': 'Mavis       (voice)', 'Kevin James': 'Frankenstein       (voice)', 'Steve Buscemi': 'Wayne       (voice)', 'David Spade': 'Griffin       (voice)', 'Keegan-Michael Key': 'Murray       (voice)', 'Asher Blinkoff': 'Dennis       (voice)', 'Fran Drescher': 'Eunice       (voice)', 'Molly Shannon': 'Wanda       (voice)', 'Megan Mullally': 'Grandma Linda       (voice)', 'Nick Offerman': 'Grandpa Mike       (voice)', 'Dana Carvey': 'Dana       (voice)', 'Rob Riggle': 'Bela       (voice)', 'Mel Brooks': 'Vlad       (voice)'}\"\r\ntt0837562,\"{'Adam Sandler': 'Dracula       (voice)', 'Andy Samberg': 'Jonathan       (voice)', 'Selena Gomez': 'Mavis       (voice)', 'Kevin James': 'Frankenstein       (voice)', 'Fran Drescher': 'Eunice       (voice)', 'Steve Buscemi': 'Wayne       (voice)', 'Molly Shannon': 'Wanda       (voice)', 'David Spade': 'Griffin       (voice)', 'CeeLo Green': 'Murray       (voice)', 'Jon Lovitz': 'Quasimodo       (voice)', 'Brian George': 'Suit of Armor       (voice)', 'Luenell': 'Shrunken Heads       (voice)', 'Brian Stack': 'Pilot       (voice)', 'Chris Parnell': 'Fly       (voice)', 'Jackie Sandler': 'Martha       (voice)'}\"\r\ntt1051904,\"{'Jack Black': 'Stine /              voice of Slappy', 'Dylan Minnette': 'Zach', 'Odeya Rush': 'Hannah', 'Ryan Lee': 'Champ', 'Amy Ryan': 'Gale', 'Jillian Bell': 'Lorraine', 'Halston Sage': 'Taylor', 'Steven Krueger': 'Davidson', 'Keith Arthur Bolden': 'Principal Garrison', 'Amanda Lund': 'Officer Brooks', 'Timothy Simons': 'Officer Stevens', 'Ken Marino': 'Coach Carr', 'Karan Soni': 'Mr. Rooney', 'R.L. Stine': 'Mr. Black', 'Caleb Emery': 'Dumb Jock'}\"\r\ntt1288558,\"{'Jane Levy': 'Mia', 'Shiloh Fernandez': 'David', 'Lou Taylor Pucci': 'Eric', 'Jessica Lucas': 'Olivia', 'Elizabeth Blackmore': 'Natalie', 'Phoenix Connolly': 'Teenager', 'Jim McLarty': 'Harold', 'Sian Davis': 'Old Woman', 'Stephen Butterworth': 'Toothless Redneck', 'Karl Willetts': 'Long Haired Redneck', 'Randal Wilson': 'Abomination Mia', 'Rupert Degas': 'Demon       (voice)', 'Bob Dorian': \"\"Professor Knowby from the Original 'Evil Dead'       (voice)\"\", 'Ellen Sandweiss': \"\"Cheryl from the Original 'Evil Dead'       (voice)\"\", 'Inca': 'Grandpa the Dog'}\"\r\ntt4052882,\"{'Blake Lively': 'Nancy', 'Óscar Jaenada': 'Carlos', 'Angelo Josue Lozano Corzo': 'Surfer', 'Joseph Salas': 'Surfer       (as Jose Manuel Trujillo Salas)', 'Brett Cullen': 'Dad', 'Sedona Legge': 'Chloe', 'Pablo Calva': 'Boy', 'Diego Espejel': 'Intoxicated Man', 'Janelle Bailey': 'Mom', 'Ava Dean': 'Young Nancy', 'Chelsea Moody': 'Young Mom', 'Sully Seagull': \"\"Sully 'Steven' Seagull       (as Sully 'Steven' Seagall)\"\"}\"\r\ntt7264080,\"{'Louis C.K.': 'Glen', 'Chloë Grace Moretz': 'China', 'Rose Byrne': 'Grace', 'Charlie Day': 'Ralph', 'Edie Falco': 'Paula', 'Pamela Adlon': 'Maggie', 'Ebonee Noel': 'Zasha', 'Helen Hunt': 'Aura', 'John Malkovich': 'Leslie', 'Albert Brooks': 'Dick Welker       (as A. Brooks)', 'Sincée J. Daniels': 'Personal Trainer       (as Sincée Daniels)', 'Robert Kelly': 'French Paparazzi #2', 'Lea Cohen': 'Receptionist', 'Billy K. Peterson': 'Circus King', 'Lucca De Oliveira': 'Boy in Movie'}\"\r\ntt1496025,\"{'Kate Beckinsale': 'Selene', 'Stephen Rea': 'Dr. Jacob Lane', 'Michael Ealy': 'Detective Sebastian', 'Theo James': 'David', 'India Eisley': 'Eve', 'Sandrine Holt': 'Lida', 'Charles Dance': 'Thomas', 'Kris Holden-Ried': 'Quint', 'Jacob Blair': 'Officer Kolb', 'Adam Greydon Reid': 'Med Tech #1', 'Catlin Adams': 'Olivia', 'Robert Lawrenson': 'Waterfront Cop', 'Lee Majdoub': 'Desk Guard #1', 'John Innes': 'Medical Supervisor', 'Tyler McClendon': 'Scientist'}\"\r\ntt0834001,\"{'Michael Sheen': 'Lucian', 'Bill Nighy': 'Viktor', 'Rhona Mitra': 'Sonja', 'Steven Mackintosh': 'Tannis', 'Kevin Grevioux': 'Raze', 'David Aston': 'Coloman', 'Geraldine Brophy': \"\"Nobleman's Wife\"\", 'Leighton Cardno': 'Fearful Lycan', 'Alex Carroll': 'Young Lucian       (as Alexander Carroll)', 'Elizabeth Hawthorne': 'Orsova', 'Jason Hood': 'Death Dealer', 'Mark Mitchinson': 'Nobleman', 'Tania Nolan': 'Luka', 'Craig Parker': 'Sabas', 'Timothy Raby': 'Janosh       (as Tim Raby)'}\"\r\ntt0401855,\"{'Kate Beckinsale': 'Selene', 'Scott Speedman': 'Michael', 'Tony Curran': 'Marcus', 'Derek Jacobi': 'Corvinus       (as Sir Derek Jacobi)', 'Bill Nighy': 'Viktor', 'Steven Mackintosh': 'Tanis', 'Shane Brolly': 'Kraven', 'Brian Steele': 'William', 'Zita Görög': 'Amelia       (as Zita Gorog)', 'Scott McElroy': 'Soren', 'John Mann': 'Samuel', 'Michael Sheen': 'Lucian', 'Sophia Myles': 'Erika       (as Sophia Miles)', 'Richard Cetrone': 'Pierce       (as Rich Cetrone)', 'Mike Mukatis': 'Taylor'}\"\r\ntt0271263,\"{'Adam Sandler': 'Davey /              Whitey /              Eleanore /              Deer       (voice)', 'Jackie Sandler': 'Jennifer       (voice) (as Jackie Titone)', 'Austin Stout': 'Benjamin       (voice)', 'Kevin Nealon': 'Mayor       (voice)', 'Rob Schneider': 'Chinese Waiter /              Narrator       (voice)', 'Norm Crosby': 'Judge       (voice)', 'Jon Lovitz': 'Tom Baltezor       (voice)', 'Tyra Banks': \"\"Victoria's Secret Gown       (voice)\"\", 'Blake Clark': 'Radio Shack Walkie-Talkie       (voice)', 'Peter Dante': 'Foot Locker Guy       (voice)', 'Ellen Albertini Dow': \"\"See's Candies Box       (voice)\"\", 'Kevin P. Farley': 'Panda Express Panda       (voice) (as Kevin Farley)', 'Lari Friedman': 'Coffee Bean & Tea Leaf Cup       (voice)', 'Tom Kenny': 'Sharper Image Chair       (voice)', 'Cole Sprouse': 'K-B Toys Soldier       (voice)'}\"\r\ntt0385880,\"{'Ryan Whitney Newman': 'Little Girl       (voice) (as Ryan Newman)', 'Steve Buscemi': 'Nebbercracker       (voice)', 'Mitchel Musso': 'DJ       (voice)', \"\"Catherine O'Hara\"\": 'Mom       (voice)', 'Fred Willard': 'Dad       (voice)', 'Sam Lerner': 'Chowder       (voice)', 'Woody Schultz': 'Paramedic #1       (voice)', 'Ian McConnel': 'Paramedic #2       (voice)', 'Maggie Gyllenhaal': 'Zee       (voice)', 'Jason Lee': 'Bones       (voice)', 'Spencer Locke': 'Jenny       (voice)', 'Kevin James': 'Officer Landers       (voice)', 'Nick Cannon': 'Officer Lister       (voice)', 'Jon Heder': \"\"Reginald 'Skull' Skulinski       (voice)\"\", 'Kathleen Turner': 'Constance       (voice)'}\"\r\ntt0119345,\"{'Jennifer Love Hewitt': 'Julie James', 'Sarah Michelle Gellar': 'Helen Shivers', 'Ryan Phillippe': 'Barry Cox', 'Freddie Prinze Jr.': 'Ray Bronson', 'Muse Watson': 'Benjamin Willis /              Fisherman', 'Bridgette Wilson-Sampras': 'Elsa Shivers       (as Bridgette Wilson)', 'Anne Heche': 'Melissa Egan', 'Johnny Galecki': 'Max', 'Stuart Greer': 'Officer', 'J. Don Ferguson': 'MC', 'Deborah Hobart': 'Mrs. James', 'Mary McMillan': 'Mrs. Cox', \"\"Rasool J'Han\"\": 'Deb', 'Dan Albright': 'Sheriff', 'Lynda Clark': 'Pageant Official'}\"\r\ntt0115963,\"{'Robin Tunney': 'Sarah Bailey', 'Fairuza Balk': 'Nancy Downs', 'Neve Campbell': 'Bonnie', 'Rachel True': 'Rochelle', 'Skeet Ulrich': 'Chris Hooker', 'Christine Taylor': 'Laura Lizzie', 'Breckin Meyer': 'Mitt', 'Nathaniel Marston': 'Trey', 'Cliff De Young': 'Mr. Bailey', 'Assumpta Serna': 'Lirio', 'Helen Shaver': 'Grace Downs', 'Jeanine Jackson': 'Jenny', 'Brenda Strong': 'Doctor', 'Elizabeth Guber': \"\"Laura's Friend\"\", 'Jennifer Greenhut': \"\"Laura's Friend\"\"}\"\r\ntt0808151,\"{'Tom Hanks': 'Robert Langdon', 'Ewan McGregor': 'Camerlengo Patrick McKenna', 'Ayelet Zurer': 'Vittoria Vetra', 'Stellan Skarsgård': 'Commander Richter', 'Pierfrancesco Favino': 'Inspector Olivetti', 'Nikolaj Lie Kaas': 'Assassin', 'Armin Mueller-Stahl': 'Cardinal Strauss', 'Thure Lindhardt': 'Chartrand', 'David Pasquesi': 'Claudio Vincenzi', 'Cosimo Fusco': 'Father Simeon', 'Victor Alfieri': 'Lieutenant Valenti', 'Franklin Amobi': 'Cardinal Lamasse', 'Curt Lowens': 'Cardinal Ebner', 'Bob Yerkes': 'Cardinal Guidera', 'Marc Fiorini': 'Cardinal Baggia       (as Marco Fiorini)'}\"\r\ntt0373051,\"{'Brendan Fraser': 'Trevor Anderson', 'Josh Hutcherson': 'Sean Anderson', 'Anita Briem': 'Hannah Ásgeirsson', 'Seth Meyers': 'Professor Alan Kitzens', 'Jean Michel Paré': 'Max Anderson', 'Jane Wheeler': 'Elizabeth', 'Frank Fontaine': 'Old Man', 'Giancarlo Caltabiano': 'Leonard', 'Kaniehtiio Horn': 'Gum-Chewing Girl', 'Garth Gilker': 'Sigurbjörn Ásgeirsson'}\"\r\ntt2236182,\"{'Mariel Hemingway': 'Lynn Snyder', 'Ethan Suplee': 'Marshall', 'LeVar Burton': 'Dr. Halpern', 'Danny Trejo': 'Captain Caspian', 'Heather Hemmens': 'Ashley', 'French Stewart': 'Doctor Arnold', 'Chad Lindberg': 'Kyle', 'Madonna Magee': 'Vivian', 'Andy Clemence': 'Bob', 'Peter Ngo': 'Jud Nagase', 'Lilan Bowden': 'Jun Nagase', 'Kim Little': 'Pauline', 'Lorenzo Eduardo': 'Park Ranger Sanchez', 'Kerisse Hutchinson': 'Julie', 'Jon Kondelik': 'Jason'}\"\r\ntt2978716,\"{'Anthony Michael Hall': 'Patrick', 'Daryl Hannah': 'Birdy', 'Alan Ruck': 'Joseph', 'Rachel G. Fox': 'Tracie Jackson', 'Shirley Jones': 'Nana', 'Jennifer Taylor': 'Karin', 'Daniel Ross Owens': 'Perry', 'Gibson Bobby Sjobeck': 'Nathan', 'Zoe Canner': 'Irina', 'Tia Robinson': 'Janice', 'Diane Ayala Goldner': 'Officer Johnson', 'Rogelio T. Ramos': 'Officer Lopez', 'Hayley Derryberry': 'Bloody Woman', 'James Henderson': 'Desperate Man       (as James Mullen Henderson)', 'Destiny Hernandez': 'Teresa'}\"\r\ntt2621126,{}\r\ntt2518926,\"{'Treat Williams': 'Gabe Jacobs', 'Ronny Cox': 'Justin', 'Jillian Rose Reed': 'Jade Jacobs', 'Joshua Michael Allen': 'Craig Carson', 'Max Aria': 'Leo Karst', 'Johannes Goetz': 'Hans', 'Julia Paul': 'Leanna', 'Arthur Richardson': 'Sgt. Mike', 'Jose Rosete': 'Doug', 'Laura Tuny': 'Kim Evans', 'Roani Whent': 'Nile', 'Joe Bohn': 'News Pilot', 'Kelly V. Dolan': 'Technican Rosario', 'Kameshia Duncan': 'Reporter', 'Eric Geller': 'Helicopter Pilot'}\"\r\ntt1020558,\"{'Michael Fassbender': 'Centurion Quintus Dias', 'Andreas Wisniewski': 'Commander Gratus', 'Dave Legeno': 'Vortix', 'Axelle Carolyn': 'Aeron', 'Dominic West': 'General Titus Flavius Virilus', \"\"Dhafer L'Abidine\"\": 'Arm Wrestling Opponent', 'JJ Feild': 'Thax', 'Lee Ross': 'Septus', 'David Morrissey': 'Bothos', 'Simon Chadwick': 'Carlisle Messenger', 'Ulrich Thomsen': 'Gorlacon', 'Ryan Atkinson': \"\"Gorlacon's Son\"\", 'Paul Freeman': 'Governor Julius Agricola', 'Olga Kurylenko': 'Etain', 'Jake Maskall': 'Roman Officer Argos       (as Jake Maskell)'}\"\r\ntt0108149,\"{'Stockard Channing': 'Ouisa', 'Will Smith': 'Paul', 'Donald Sutherland': 'Flan', 'Ian McKellen': 'Geoffrey', 'Mary Beth Hurt': 'Kitty', 'Bruce Davison': 'Larkin', 'Richard Masur': 'Dr. Fine', 'Anthony Michael Hall': 'Trent', 'Heather Graham': 'Elizabeth', 'Eric Thal': 'Rick', 'Anthony Rapp': 'Ben', 'Oz Perkins': 'Woody       (as Osgood Perkins)', 'Catherine Kellner': 'Tess', 'J.J. Abrams': 'Doug       (as Jeffrey Abrams)', 'Joe Pentangelo': 'Police Officer'}\"\r\ntt1623745,\"{'Juno Temple': 'Lily Hobart', 'Kay Panabaker': 'Alison Hoffman', 'Kate Bosworth': 'Bonnie Muller', 'Neal McDonough': 'Hogan', 'David Warshofsky': 'Joseph Hoffman', 'Leslie Mann': 'Margaret Hobart', 'Bob Larkin': 'Mr. Kovacs', 'Kathleen Gati': 'Sally Heron', 'Scotty Noyd Jr.': 'Ray Cawley', 'Kyle Gallner': 'Jesse MacNamara', 'Carlos PenaVega': 'Louis Estes       (as Carlos Pena)', 'Chris Coy': 'David Riley', 'Lauren Pennington': 'Shawna Cawley       (as Lauren Whitney Pennington)', 'Lydia Blanco Garza': 'Female Cashier       (as Lydia Blanco)', 'Marc Rose': 'Man'}\"\r\ntt1692084,\"{'Ben Boodman': 'Dancer', 'Kathryn Burns': 'Orchid', 'Lizzy Caplan': 'Sheila', 'Michael Coleman': 'Bakersfield Bouncer', 'Andrew Daly': 'Mr. Doobin       (as Andy Daly)', 'Patrick Daniel': 'Diner', 'Abby Elliott': 'Monica', 'Rich Fulcher': 'Arnie', 'Kyle Gass': 'Winter Wierdo', 'Curtis Gwinn': 'Tow Truck Driver', 'Brandon Johnson': 'Cab Driver', 'Matt Jones': 'Richie       (as Matt L. Jones)', 'Joe Lo Truglio': 'Officer Fogerty', 'Shannon Joy Madden': 'Band Merch Buyer', 'Garrett Mendez': 'Office Coworker'}\"\r\ntt1634121,\"{'Clive Owen': 'John Farrow', 'Carice van Houten': 'Susanna', 'Daniel Brühl': 'Father Antonio', 'Pilar López de Ayala': 'Luisa', 'Ella Purnell': 'Mia', 'Izán Corchero': 'Juan', 'Kerry Fox': 'Rachel', 'Héctor Alterio': 'Old Priest', 'Adrian Rawlins': 'Police Inspector', 'Michael Nardone': 'Frank', 'Mark Wingett': 'Dave', \"\"Peter McNeil O'Connor\"\": 'David Warlton', 'Mary Woodvine': 'Teacher', 'Lolita Chakrabarti': 'ER Doctor', 'Ralph Ineson': 'Alarm Installer'}\"\r\ntt0988849,\"{'Robert Boulter': 'Sean', 'Sian Breckin': 'Lisa', 'Tom Burke': 'Bluey', 'Nichola Burley': 'Tammi', 'Julian Morris': 'Josh', 'Jay Taylor': 'Marcus', 'Jaime Winstone': 'Kim'}\"\r\ntt1016268,\"{'John Beard': 'Himself - Former Enron Accountant', 'Tim Belden': 'Himself       (archive footage)', 'Barbara Boxer': 'Herself       (archive footage)', 'George W. Bush': 'Himself       (archive footage)', 'James Chanos': 'Himself - President, Kynikos Associates       (as Jim Chanos)', 'Dick Cheney': 'Himself', 'Bill Clinton': 'Himself       (archive footage)', 'Carol Coale': 'Herself - Ex-Stock Analyst, Prudential Securities', 'Peter Coyote': 'Narrator', 'Gray Davis': 'Himself - Former Governor of California', 'Reggie Dees II': 'Himself - Young man the stripper dances in front of       (as Reggie Deets II)', 'Joseph Dunn': 'Himself - California State Senator', 'Max Eberts': 'Himself - Former Spokesman, Enron Energy Services', 'Peter Elkind': \"\"Himself - Co-Author, 'The Smartest Guys in the Room'\"\", 'Andrew Fastow': 'Himself       (archive footage)'}\"\r\ntt3064298,\"{'Lake Bell': 'Nancy', 'Rory Kinnear': 'Sean', 'Ken Stott': 'Bert', 'Harriet Walter': 'Fran', 'Olivia Williams': 'Hilary', 'Sharon Horgan': 'Elaine', 'Ophelia Lovibond': 'Jessica', 'Simon Pegg': 'Jack', 'Stephen Campbell Moore': 'Ed', 'Keir Charles': 'Dom', 'Phoebe Waller-Bridge': 'Katie', 'Robert Wilfort': 'Ryan', 'Paul Thornley': 'Adam', 'Henry Lloyd-Hughes': 'Daniel', 'James Reilly': 'Cloakroom Attendant       (as James Oliver Reilly)'}\"\r\ntt2051894,\"{'Scott Elrod': 'Cory Brand', 'Dorian Brown Pham': 'Emma       (as Dorian Brown)', 'Charles Henry Wyson': 'Tyler', 'James Devoti': 'Clay', 'Nicole Leigh': 'Karen', 'Juan Martinez': 'Carlos', 'Drew Waters': 'Coach Pajersky', 'Robert Peters': 'J.T.', 'Vivica A. Fox': 'Helene', 'Johnny Baker': \"\"Kindricks' Dad\"\", 'Billy Brazelton': 'Security Guard', 'Bob Carpenter': 'Baseball Announcer', 'Victor Cruz': 'Umpire', 'J. Alan Davidson': 'Meth Addict', 'Gabe Davis': 'Young Cory'}\"\r\ntt4034228,\"{'Casey Affleck': 'Lee Chandler', \"\"Ben O'Brien\"\": 'Young Patrick', 'Kyle Chandler': 'Joe Chandler', 'Richard Donelly': 'Mr. Martinez (1st Tenant)', 'Virginia Loring Cooke': 'Mrs. Groom (2nd tenant)', 'Quincy Tyler Bernstine': 'Marianne (3rd Tenant)', 'Missy Yager': 'Mrs. Olsen (4th Tenant)', 'Stephen McKinley Henderson': 'Mr. Emery', 'Ben Hanson': 'Lenny - the bartender', 'Mary Mallen': 'Sharon', 'Lewis D. Wheeler': '1st Businessman at Bar', 'Anthony Estrella': '2nd Businessman at Bar', 'C.J. Wilson': 'George', 'Susan Pourfar': 'Nurse Irene', 'Robert Sella': 'Dr. Muller'}\"\r\ntt2345112,\"{'Marcia Gay Harden': 'Nurse Doris Nelson', 'Matt Barr': 'Dr. Paul Mikkelson', 'Zac Efron': \"\"Dr. Charles 'Jim' Carrico\"\", 'Mallory Moye': 'Emergency Room Nurse', 'Paul Giamatti': 'Abraham Zapruder', 'Elizabeth Tulloch': 'Marilyn Sitzman       (as Bitsie Tulloch)', 'Ron Livingston': 'James Hosty', 'Jason Douglas': 'Ken Howe', 'David Harbour': 'Gordon Shanklin', 'James Badge Dale': 'Robert Oswald', 'Larry Jack Dotson': 'Acme Brick Supervisor', 'Austin Nichols': 'Emory Roberts', 'Billy Bob Thornton': 'Forrest Sorrels', 'Jonathan Breck': 'Winston Lawson', 'Eugene Lee': 'Orderly'}\"\r\ntt0038109,\"{'Ingrid Bergman': 'Dr. Constance Petersen', 'Gregory Peck': 'John Ballantyne', 'Michael Chekhov': 'Dr. Alexander Brulov', 'Leo G. Carroll': 'Dr. Murchison', 'Rhonda Fleming': 'Mary Carmichael', 'John Emery': 'Dr. Fleurot', 'Norman Lloyd': 'Mr. Garmes', 'Bill Goodwin': 'House Detective', 'Steven Geray': 'Dr. Graff', 'Donald Curtis': 'Harry', 'Wallace Ford': 'Stranger in Hotel Lobby', 'Art Baker': 'Det. Lt. Cooley', 'Regis Toomey': 'Det. Sgt. Gillespie', 'Paul Harvey': 'Dr. Hanish'}\"\r\ntt0097239,\"{'Morgan Freeman': 'Hoke Colburn', 'Jessica Tandy': 'Daisy Werthan', 'Dan Aykroyd': 'Boolie Werthan', 'Patti LuPone': 'Florine Werthan       (as Patti Lupone)', 'Esther Rolle': 'Idella', 'Jo Ann Havrilla': 'Miss McClatchey       (as Joann Havrilla)', 'William Hall Jr.': 'Oscar', 'Alvin M. Sugarman': 'Dr. Weil', 'Clarice F. Geigerman': 'Nonie', 'Muriel Moore': 'Miriam', 'Sylvia Kaler': 'Beulah', 'Carolyn Gold': 'Neighbor Lady', 'Crystal Fox': 'Katie Bell       (as Crystal R. Fox)', 'Bob Hannah': 'Red Mitchell', 'Ray McKinnon': 'Trooper #1'}\"\r\ntt3168230,\"{'Ian McKellen': 'Sherlock Holmes', 'Laura Linney': 'Mrs. Munro', 'Milo Parker': 'Roger', 'Hiroyuki Sanada': 'Tamiki Umezaki', 'Hattie Morahan': 'Ann Kelmot', 'Patrick Kennedy': 'Thomas Kelmot', 'Roger Allam': 'Dr. Barrie', 'Phil Davis': 'Inspector Gilbert', 'Frances de la Tour': 'Madame Schirmer       (as Frances De La Tour)', 'Charles Maddox': 'Oswald', 'Takako Akashi': 'Maya Umezaki', 'Zak Shukor': 'Masuo Umezaki', 'John Sessions': 'Mycroft Holmes', 'Michael Culkin': 'Bank Manager', 'David Foxxe': 'Chemist'}\"\r\ntt0032976,\"{'Laurence Olivier': \"\"'Maxim' de Winter\"\", 'Joan Fontaine': 'Mrs. de Winter', 'George Sanders': 'Jack Favell', 'Judith Anderson': 'Mrs. Danvers', 'Nigel Bruce': 'Major Giles Lacy', 'Reginald Denny': 'Frank Crawley', 'C. Aubrey Smith': 'Colonel Julyan', 'Gladys Cooper': 'Beatrice Lacy', 'Florence Bates': 'Mrs. Van Hopper', 'Melville Cooper': 'Coroner', 'Leo G. Carroll': 'Dr. Baker', 'Leonard Carey': 'Ben', 'Lumsden Hare': 'Tabbs', 'Edward Fielding': 'Frith', 'Philip Winter': 'Robert'}\"\r\ntt1876547,\"{'Ving Rhames': 'Henry', 'Taryn Manning': 'Ramona', 'Johnny Pacar': 'Julien', 'Gary Weeks': 'Mack', 'Lesley-Ann Brandt': 'Cassie', 'Eddie Steeples': 'Billy', 'Robert Blanche': 'Brockton', 'Gerald Webb': 'Kevin Anderson', 'Lilan Bowden': 'Myrah', 'Anya Monzikova': 'Sara', 'Lauran Doverspike': 'Patient Zero', 'Kimberly Ables Jindra': 'Zombie       (as Kimberly Ann Ables Jindra)', 'Ami Albea': 'Zombie', 'Darryl Allen': 'Zombie', 'John Alonzo': 'Zombie'}\"\r\ntt3567288,\"{'Olivia DeJonge': 'Becca', 'Ed Oxenbould': 'Tyler', 'Deanna Dunagan': 'Nana', 'Peter McRobbie': 'Pop Pop', 'Kathryn Hahn': 'Mom', 'Celia Keenan-Bolger': 'Stacey', 'Samuel Stricklen': 'Conductor', 'Patch Darragh': 'Dr. Sam', 'Jorge Cordova': 'Miguel', 'Steve Annan': 'Man on the Street', 'Benjamin Kanes': 'Dad', 'Ocean James': 'Young Becca', 'Seamus Moroney': 'Young Tyler'}\"\r\ntt1623288,\"{'Kodi Smit-McPhee': 'Norman Babcock       (voice)', 'Tucker Albrizzi': 'Neil       (voice)', 'Anna Kendrick': 'Courtney Babcock       (voice)', 'Casey Affleck': 'Mitch       (voice)', 'Christopher Mintz-Plasse': 'Alvin       (voice)', 'Leslie Mann': 'Sandra Babcock       (voice)', 'Jeff Garlin': 'Perry Babcock       (voice)', 'Elaine Stritch': 'Grandma       (voice)', 'Bernard Hill': 'The Judge       (voice)', 'Jodelle Ferland': 'Aggie       (voice)', 'Tempestt Bledsoe': 'Sheriff Hooper       (voice)', 'Alex Borstein': 'Mrs. Henscher       (voice)', 'John Goodman': 'Mr. Prenderghast       (voice)', 'Hannah Noyes': 'Salma       (voice)', 'Jack Blessing': 'Slob Guy /              Civil War Ghost       (voice)'}\"\r\ntt0063350,\"{'Duane Jones': 'Ben', \"\"Judith O'Dea\"\": 'Barbra', 'Karl Hardman': 'Harry Cooper', 'Marilyn Eastman': 'Helen Cooper', 'Keith Wayne': 'Tom', 'Judith Ridley': 'Judy', 'Kyra Schon': 'Karen Cooper /              Corpse in House', 'Charles Craig': 'Newscaster /              Zombie', 'S. William Hinzman': 'Zombie       (as Bill Heinzman)', 'George Kosana': 'Sheriff McClelland', 'Frank Doak': 'Scientist', 'Bill Cardille': \"\"Himself - Field Reporter       (as Bill 'Chilly Billy' Cardille)\"\", 'A.C. McDonald': 'Zombie /              Posse Member', 'Samuel R. Solito': 'Zombie /              Posse Member', 'Mark Ricci': 'Washington Scientist'}\"\r\ntt1204977,\"{'Olivia Cooke': 'Laine Morris', 'Ana Coto': 'Sarah Morris', 'Daren Kagasoff': 'Trevor', 'Bianca A. Santos': 'Isabelle       (as Bianca Santos)', 'Douglas Smith': 'Pete', 'Shelley Hennig': 'Debbie Galardi', 'Sierra Heuermann': 'Doris Zander', 'Sunny May Allison': 'Doris (10 years old)', 'Lin Shaye': 'Paulina Zander', 'Claudia Katz Minnick': 'Mother       (as Claudia Katz)', 'Vivis Colombetti': 'Nona       (as Vivis)', 'Robyn Lively': 'Mrs. Galardi', 'Matthew Settle': 'Mr. Morris', 'Afra Sophia Tully': 'Young Laine       (as Afra Tully)', 'Claire Beale': 'Young Debbie'}\"\r\ntt0298388,\"{'Phil Vischer': 'Jonah /              Mr. Lunt /              Bob the Tomato /              Phillipe Pea /              Percy Pea /              Nezzer /              Pa Grape /              Cockney Pea #2 /              King Twistomer       (voice)', 'Mike Nawrocki': 'Larry the Cucumber /              Jean Claude Pea /              Cockney Pea #1 /              Self-Help Tape Voice /              Jerry Gourd /              Whooping BBQ Pea       (voice)', 'Tim Hodge': 'Khalil       (voice)', 'Lisa Vischer': 'Junior Asparagus       (voice)', 'Shelby Morimoto': 'Annie       (voice) (as Shelby Vischer)', 'Dan Anderson': 'Dad Asparagus       (voice)', 'Kristin Blegen': 'Laura Carrot       (voice)', 'Jim Poole': 'Scooter /              Townsperson       (voice)', 'Ron Smith': 'City Official /              Crazed Jopponian       (voice)', 'Sarah Catherine Brooks': 'Message from the Lord Choir       (voice)', 'Adam Frick': 'Message from the Lord Choir       (voice)', 'Paige Craig': 'Message from the Lord Choir       (voice)', 'Michael Harrison': 'Message from the Lord Choir       (voice) (as Mike Harrison)', 'Amy Howard': 'Message from the Lord Choir       (voice)', 'Chris Geiger': 'Message from the Lord Choir       (voice)'}\"\r\ntt0339291,\"{'Jim Carrey': 'Count Olaf', 'Liam Aiken': 'Klaus', 'Emily Browning': 'Violet', 'Kara Hoffman': 'Sunny', 'Shelby Hoffman': 'Sunny', 'Jude Law': 'Lemony Snicket       (voice)', 'Timothy Spall': 'Mr. Poe', \"\"Catherine O'Hara\"\": 'Justice Strauss', 'Billy Connolly': 'Uncle Monty', 'Meryl Streep': 'Aunt Josephine', 'Luis Guzmán': 'Bald Man       (as Luis Guzman)', 'Jamie Harris': 'Hook-Handed Man', 'Craig Ferguson': 'Person of Indeterminate Gender', 'Jennifer Coolidge': 'White Faced Woman', 'Jane Adams': 'White Faced Woman'}\"\r\ntt0112642,\"{'Chauncey Leopardi': 'Nicky', 'Spencer Vrooman': 'Andreas', 'Malachi Pearson': 'Casper       (voice)', 'Cathy Moriarty': 'Carrigan', 'Eric Idle': 'Dibs', 'Ben Stein': 'Rugg', 'Don Novello': 'Father Guido Sarducci', 'Fred Rogers': 'Mr. Rogers       (archive footage) (as Mr. Rogers)', 'Terry Murphy': \"\"Terry Murphy ('Hard Copy')\"\", 'Bill Pullman': 'Dr. Harvey', 'Christina Ricci': 'Kat', 'Ernestine Mercer': 'Woman Being Interviewed', 'Doug Bruckner': 'Reporter       (voice) (as Douglas J.O. Bruckner)', 'Joe Nipote': 'Stretch       (voice)', 'Joe Alaskey': 'Stinkie       (voice)'}\"\r\ntt0134847,\"{'Vin Diesel': 'Richard B. Riddick', 'Radha Mitchell': 'Carolyn Fry', 'Cole Hauser': 'William J. Johns', 'Keith David': \"\"Abu 'Imam' al-Walid\"\", 'Lewis Fitz-Gerald': 'Paris P. Ogilvie', 'Claudia Black': \"\"Sharon 'Shazza' Montgomery\"\", 'Rhiana Griffith': 'Jack', 'John Moore': \"\"John 'Zeke' Ezekiel\"\", 'Simon Burke': 'Greg Owens', 'Les Chantery': 'Suleiman', 'Sam Sari': 'Hassan', 'Firass Dirani': 'Ali', 'Ric Anderson': 'Total Stranger', 'Vic Wilson': 'Captain Tom Mitchell', 'Angela Moore': 'Dead Crew Member'}\"\r\ntt0905372,\"{'Mary Elizabeth Winstead': 'Kate Lloyd', 'Joel Edgerton': 'Carter', 'Ulrich Thomsen': 'Dr. Sander Halvorson', 'Eric Christian Olsen': 'Adam Finch', 'Adewale Akinnuoye-Agbaje': 'Jameson', 'Paul Braunstein': 'Griggs', 'Trond Espen Seim': 'Edvard Wolner', 'Kim Bubbs': 'Juliette', 'Jørgen Langhelle': 'Lars', 'Jan Gunnar Røise': 'Olav', 'Stig Henrik Hoff': 'Peder', 'Kristofer Hivju': 'Jonas', 'Jo Adrian Haavind': 'Henrik', 'Carsten Bjørnlund': 'Karl', 'Jonathan Walker': 'Colin       (as Jonathan Lloyd Walker)'}\"\r\ntt1440129,\"{'Taylor Kitsch': 'Lieutenant Alex Hopper', 'Alexander Skarsgård': 'Commander Stone Hopper', 'Rihanna': \"\"Petty Officer Cora 'Weps' Raikes\"\", 'Brooklyn Decker': 'Sam', 'Tadanobu Asano': 'Captain Yugi Nagata', 'Hamish Linklater': 'Cal Zapata', 'Liam Neeson': 'Admiral Shane', 'Peter MacNicol': 'Secretary of Defense', 'John Tui': \"\"Chief Petty Officer Walter 'The Beast' Lynch\"\", 'Jesse Plemons': \"\"Boatswain Mate Seaman Jimmy 'Ordy' Ord\"\", 'Gregory D. Gadson': 'Lieutenant Colonel Mick Canales', 'Jerry Ferrara': 'Sampson JOOD Strodell', 'Adam Godley': 'Dr. Nogrady', 'Rico McClinton': 'Captain Browley', 'Joji Yoshida': 'Chief Engineer Hiroki'}\"\r\ntt0023245,\"{'Boris Karloff': 'Imhotep', 'Zita Johann': 'Helen Grosvenor', 'David Manners': 'Frank Whemple', 'Arthur Byron': 'Sir Joseph Whemple', 'Edward Van Sloan': 'Doctor Muller', 'Bramwell Fletcher': 'Ralph Norton', 'Noble Johnson': 'The Nubian', 'Kathryn Byron': 'Frau Muller', 'Leonard Mudie': 'Professor Pearson', 'James Crane': 'The Pharoh', 'Henry Victor': 'The Saxon Warrior       (scenes deleted)', 'Arnold Gray': 'Knight       (scenes deleted)'}\"\r\ntt0085636,\"{'Tom Atkins': 'Daniel Challis', 'Stacey Nelkin': 'Ellie Grimbridge', \"\"Dan O'Herlihy\"\": 'Conal Cochran', 'Michael Currie': 'Rafferty', 'Ralph Strait': 'Buddy Kupfer', 'Jadeen Barbor': 'Betty Kupfer', 'Brad Schacter': 'Little Buddy       (as Bradley Schachter)', 'Garn Stephens': 'Marge', 'Nancy Kyes': 'Linda Challis', 'Jonathan Terry': 'Starker       (as Jon Terry)', 'Al Berry': 'Harry Grimbridge', 'Wendy Wessberg': 'Teddy', 'Essex Smith': 'Walter Jones', 'Maidie Norman': 'Nurse Agnes', 'John MacBride': 'Sheriff'}\"\r\ntt0082495,\"{'Jamie Lee Curtis': 'Laurie Strode', 'Donald Pleasence': 'Sam Loomis', 'Charles Cyphers': 'Leigh Brackett', 'Jeffrey Kramer': 'Graham', 'Lance Guest': 'Jimmy', 'Pamela Susan Shoop': 'Karen', 'Hunter von Leer': 'Gary Hunt', 'Dick Warlock': 'The Shape /              Patrolman #3', 'Leo Rossi': 'Budd', 'Gloria Gifford': 'Mrs. Alves', 'Tawny Moyer': 'Jill', 'Ana Alicia': 'Janet', 'Ford Rainey': 'Dr. Mixter', 'Cliff Emmich': 'Mr. Garrett', 'Nancy Stephens': 'Marion'}\"\r\ntt0116365,\"{'Michael J. Fox': 'Frank Bannister', 'Trini Alvarado': 'Lucy Lynskey', 'Peter Dobson': 'Ray Lynskey', 'John Astin': 'The Judge', 'Jeffrey Combs': 'Milton Dammers', 'Dee Wallace': 'Patricia Bradley       (as Dee Wallace Stone)', 'Jake Busey': 'Johnny Bartlett', 'Chi McBride': 'Cyrus', 'Jim Fyfe': 'Stuart', 'Troy Evans': 'Sheriff Perry', 'Julianna McCarthy': 'Old Lady Bradley', 'R. Lee Ermey': 'Hiles', 'Elizabeth Hawthorne': 'Magda Rees-Jones', 'Angela Bloomfield': 'Debra Bannister', 'Desmond Kelly': 'Harry Sinclair'}\"\r\ntt0780653,\"{'Simon Merrells': 'Ben Talbot', 'Gemma Whelan': \"\"Gwen's Maid\"\", 'Emily Blunt': 'Gwen Conliffe', 'Benicio Del Toro': 'Lawrence Talbot', 'Mario Marin-Borquez': 'Young Lawrence', 'Asa Butterfield': 'Young Ben', 'Cristina Contes': 'Solana', 'Anthony Hopkins': 'Sir John Talbot', 'Art Malik': 'Singh', 'Malcolm Scates': 'Butcher', 'Nicholas Day': 'Colonel Montford', 'Michael Cronin': 'Dr. Lloyd', 'David Sterne': 'Mr. Kirk', 'David Schofield': 'Constable Nye', 'Roger Frost': 'Reverend Fisk'}\"\r\ntt0103956,\"{'Justin Whalin': 'Andy Barclay', 'Perrey Reeves': 'De Silva', 'Jeremy Sylvers': 'Tyler', 'Travis Fine': 'Shelton', 'Dean Jacobson': 'Whitehurst', 'Brad Dourif': 'Chucky       (voice)', 'Peter Haskell': 'Sullivan', 'Dakin Matthews': 'Colonel Cochrane', 'Andrew Robinson': 'Sergeant Botnick', 'Burke Byrnes': 'Sergeant Clark', 'Matthew Walker': 'Ellis', 'Donna Eskra': 'Ivers', 'Edan Gross': 'Good Guy Doll       (voice)', 'Terry Wills': 'Garbage Man', 'Richard Marion': 'Patterson'}\"\r\ntt0099253,\"{'Alex Vincent': 'Andy Barclay', 'Jenny Agutter': 'Joanne Simpson', 'Gerrit Graham': 'Phil Simpson', 'Christine Elise': 'Kyle', 'Brad Dourif': 'Chucky       (voice)', 'Grace Zabriskie': 'Grace Poole', 'Peter Haskell': 'Sullivan', 'Beth Grant': 'Miss Kettlewell', 'Greg Germann': 'Mattson', 'Raymond Singer': 'Social Worker', 'Charles Meshack': 'Van Driver       (as Charles C. Meshack)', 'Stuart Mabray': 'Homicide Investigator', 'Matt Roe': 'Policeman in Car', 'Herbie Braha': 'Liquor Store Clerk       (as Herb Braha)', 'Don Pugsley': 'Technician'}\"\r\ntt2230358,\"{'Chantal Quesnelle': 'Sarah', 'Fiona Dourif': 'Nica', 'Jordan Gavaris': 'US EX Guy', 'Danielle Bisutti': 'Barb', 'A Martinez': 'Father Frank', 'Maitland McConnell': 'Jill', 'Brennan Elliott': 'Ian', 'Summer H. Howell': 'Alice       (as Summer Howell)', 'Adam Hurtig': 'Officer Stanton', 'Darren Wall': 'Highway Cop', 'Will Woytowich': 'Lead Fireman', 'Anne Leveille': 'Young Nica', 'Kally Berard': 'Young Barb', 'Kyle Nobess': 'Young Dad', 'Brad Dourif': 'Charles Lee Ray /              Chucky       (voice)'}\"\r\ntt0387575,\"{'Brad Dourif': 'Chucky       (voice)', 'Jennifer Tilly': 'Tiffany /              Jennifer Tilly', 'Billy Boyd': 'Glen /              Glenda       (voice)', 'Redman': 'Redman', 'Hannah Spearritt': 'Joan', 'John Waters': 'Pete Peters', 'Keith-Lee Castle': 'Psychs', 'Steve West': 'Stan       (as Steve Lawton)', 'Tony Gardner': 'Tony Gardner', 'Jason Flemyng': 'Santa', 'Nicholas Rowe': 'Lawyer', 'Stephanie Chambers': \"\"Claudia's Mum\"\", 'Simon James Morgan': \"\"Claudia's Dad\"\", 'Betty Denville': 'Claudia       (as Bethany Simons-Denville)', 'Rebecca Santos': 'Fulvia'}\"\r\ntt0144120,\"{'Jennifer Tilly': 'Tiffany', 'Brad Dourif': 'Chucky       (voice)', 'Katherine Heigl': 'Jade', 'Nick Stabile': 'Jesse', 'Alexis Arquette': 'Damien', 'Gordon Michael Woolvett': 'David', 'John Ritter': 'Chief Warren Kincaid', 'Lawrence Dane': 'Lt. Preston', 'Michael Louis Johnson': 'Norton', 'James Gallanders': 'Russ', 'Janet Kidder': 'Diane', 'Vince Corazza': 'Bailey       (as Vincent Corazza)', 'Kathy Najimy': 'Motel Maid', 'Park Bench': 'Stoner', 'Emily Weedon': 'Girl at One-Stop'}\"\r\ntt1850457,\"{'Amy Poehler': 'Maura Ellis', 'Tina Fey': 'Kate Ellis', 'Maya Rudolph': 'Brinda', 'Ike Barinholtz': 'James', 'James Brolin': 'Bucky Ellis', 'Dianne Wiest': 'Deana Ellis', 'John Cena': 'Pazuzu', 'John Leguizamo': 'Dave', 'Bobby Moynihan': 'Alex', 'Greta Lee': 'Hae-Won', 'Madison Davenport': 'Haley', 'Rachel Dratch': 'Kelly', 'Santino Fontana': 'Mr. Geernt', 'Britt Lower': 'Mrs. Geernt', 'Samantha Bee': 'Liz'}\"\r\ntt3321300,\"{'Michael Wildman': 'Robert Vass', 'Tuppence Middleton': 'June Keaton', 'Geoffrey Streatfeild': 'Calum Reed', 'Peter Firth': 'Harry Pearce', 'Elliot Levey': 'Philip Emerson', 'Matthew Walker': 'Prison Van Officer', 'Elyes Gabel': 'Adem Qasim', 'David Harewood': 'Francis Warrender', 'Jennifer Ehle': 'Geraldine Maltby', 'Tim McInnerny': 'Oliver Mace', 'Ronan Summers': 'Ed Lansbury', 'Luke Harris': 'MI5 Officer', 'Amra Mallassi': 'Hamza Ahmadi', 'Lara Pulver': 'Erin Watts', 'Kit Harington': 'Will Holloway'}\"\r\ntt0091778,\"{'JoBeth Williams': 'Diane Freeling       (as Jobeth Williams)', 'Craig T. Nelson': 'Steve Freeling', \"\"Heather O'Rourke\"\": 'Carol Anne Freeling', 'Oliver Robins': 'Robbie Freeling', 'Zelda Rubinstein': 'Tangina Barrons', 'Will Sampson': 'Taylor', 'Julian Beck': 'Kane', 'Geraldine Fitzgerald': 'Gramma Jess', 'John P. Whitecloud': 'Old Indian', 'Noble Craig': 'Vomit Creature', 'Susan Peretz': 'Daughter', 'Helen Boll': 'Mother', 'Kelly Jean Peters': 'Young Jess', 'Jaclyn Bernstein': 'Young Diane', 'Robert Lesser': \"\"Kane's People\"\"}\"\r\ntt0092076,\"{'Dennis Hopper': \"\"Lieutenant 'Lefty' Enright\"\", 'Caroline Williams': \"\"Vanita 'Stretch' Brock\"\", 'Jim Siedow': 'Cook', 'Bill Moseley': 'Chop-Top', 'Bill Johnson': 'Leatherface', 'Ken Evert': 'Grandpa', 'Harlan Jordan': 'Patrolman', 'Kirk Sisco': 'Detective', 'James N. Harrell': 'Cut-Rite Manager', 'Lou Perryman': 'L.G. McPeters       (as Lou Perry)', 'Barry Kinyon': 'Mercedes Driver', 'Chris Douridas': 'Gunner', 'Judy Kelly': 'Gourmet Yuppette', 'John Martin Ivey': 'Yuppie', 'Kinky Friedman': 'Sports Anchorman'}\"\r\ntt1659216,\"{'Sydney Sweeney': 'Emily', 'Patrick Muldoon': 'Jason', 'Christa Campbell': 'Rachel', 'Christian Contreras': 'Pete', 'William Hope': 'Col. Jenkins', 'Jon Mack': 'Doctor Stella', 'Shelly Varod': 'Phoebe', 'Atanas Srebrev': 'Jimmy', 'Pete Lee-Wilson': 'Dr. Darnoff', 'Vincenzo Nicoli': 'Caz', 'Radoslav Parvanov': 'Tunnel Soldier #2', 'Owen Davis': 'Apartment Soldier', 'Misha Dibono': 'News Anchor', 'Zlateto Keremedchieva': 'Agent Fbi', 'Georgi Manchev': 'Hazmat Worker'}\"\r\ntt0860462,\"{'Metinee Kingpayome': 'Arena', 'Anon Saisangcharn': 'Osama bin Ali       (as Arnon Saisangchan)', 'Wasan Khantaau': 'Chan       (as Vasan Khanta-oo)', 'Jinvipa Kheawkunya': 'Amulet Guardian Purima', 'Atthakorn Suwannaraj': 'Duay', 'Libby Brien': '(voice)', 'Cullet Eric': 'Iron Fist Fighter in the Night Club', 'Philip Hersh': '(voice)', 'Erik Markus Schuetz': 'Nikolai', 'Ashiraya Peerapatkunchaya': 'Punima', 'Alaa Safi': 'Iron-Legs fighter       (as Alaa Oumouzoune)', 'Kazu Patrick Tang': 'Iron Stick fighter As Kazu Tang'}\"\r\ntt3453772,\"{'Tia Carrere': 'Marissa Knox', 'Jason Brooks': 'Lt. Commander Chase Seward', 'Tim Russ': 'Captain Rogers', 'Darin Cooper': 'Chief of the Boat', 'Robert R. Shafer': 'Lt. Rouse       (as Bobby Ray Shafer)', 'Craig Blair': 'Terry', 'Robert Davi': 'General Masterson', 'Gerald Webb': 'Chief Warrant Officer Mason', 'Melvin Gregg': 'Sonar Lead Petty Officer', 'Theresa June-Tao': 'Navigator', 'Jose Rosete': 'Gunnery Sergeant Luiz Zuniga', 'James Le Feuvre': 'Marine Private Guide', 'Shamar Sanders': 'Marine Corporal Metal', 'Wade F. Wilson': 'Lt. Rudy', 'Brett R. Miller': 'NSA Team Leader'}\"\r\ntt0068762,\"{'Robert Redford': 'Jeremiah Johnson', 'Will Geer': 'Bear Claw', 'Delle Bolton': 'Swan', 'Josh Albee': 'Caleb', 'Joaquín Martínez': 'Paints His Shirt Red       (as Joaquin Martinez)', 'Allyn Ann McLerie': 'Crazy Woman', 'Stefan Gierasch': 'Del Gue', 'Richard Angarola': 'Chief Two-Tongues Lebeaux', 'Paul Benedict': 'Reverend Lindquist', 'Charles Tyner': 'Robidoux', 'Jack Colvin': 'Lieutenant Mulvey', 'Matt Clark': 'Qualen'}\"\r\ntt0452694,\"{'Michelle Nolden': 'Annette DeTamble', 'Alex Ferris': 'Henry at Six', 'Arliss Howard': 'Richard DeTamble', 'Eric Bana': 'Henry', 'Katherine Trowell': 'Hospital Receptionist', 'Bart Bedford': 'Library Researcher', 'Esther Jun': 'Waitress', 'Matt Birman': 'Chicago Police #1', 'Craig Snoyer': 'Chicago Police #2', 'Rachel McAdams': 'Clare', 'Carly Street': 'Librarian', 'Romyen Tangsubutra': 'Thai Waiter', 'Brooklynn Proulx': 'Clare at Six and Eight', 'Jane McLean': 'Charisse', 'Ron Livingston': 'Gomez'}\"\r\ntt2554274,\"{'Mia Wasikowska': 'Edith Cushing', 'Jessica Chastain': 'Lucille Sharpe', 'Tom Hiddleston': 'Thomas Sharpe', 'Charlie Hunnam': 'Dr. Alan McMichael', 'Jim Beaver': 'Carter Cushing', 'Burn Gorman': 'Holly', 'Leslie Hope': 'Mrs. McMichael', 'Doug Jones': \"\"Edith's Mother /              Lady Sharpe\"\", 'Jonathan Hyde': 'Ogilvie', 'Bruce Gray': 'Ferguson', 'Emily Coutts': 'Eunice', 'Alec Stockwell': 'Finlay', 'Brigitte Robinson': 'Secretary Jane', 'Gillian Ferrier': 'Society Girl', 'Tamara Hope': 'Society Girl'}\"\r\ntt2581244,\"{'Aubrey Plaza': 'Beth Slocum', 'Dane DeHaan': 'Zach Orfman', 'John C. Reilly': 'Maury Slocum', 'Molly Shannon': 'Geenie Slocum', 'Cheryl Hines': 'Judy Orfman', 'Paul Reiser': 'Noah Orfman', 'Matthew Gray Gubler': 'Kyle Orfman', 'Anna Kendrick': 'Erica Wexler', 'Eva La Dare': 'Pearline', 'Thomas McDonell': 'Dan       (scenes deleted)', 'Alia Shawkat': 'Roz       (scenes deleted)', 'Allan McLeod': 'Supermarket Stocker', 'Paul Weitz': 'Mr. Levin', 'Michelle Azar': 'Mrs. Levin', \"\"Jim O'Heir\"\": 'Chip the Mailman'}\"\r\ntt1491044,\"{'Michael Shannon': 'Richard Kuklinski', 'Winona Ryder': 'Deborah Pellicotti', 'Chris Evans': 'Mr. Freezy', 'Ray Liotta': 'Roy Demeo', 'David Schwimmer': 'Josh Rosenthal', 'Danny A. Abeckaser': 'Dino Lapron       (as Danny Abeckaser)', 'John Ventimiglia': 'Mickey Scicoli', \"\"Ryan O'Nan\"\": 'Terry Franzo', 'McKaley Miller': 'Anabel', 'Megan Sherrill': 'Betsy', 'James Franco': 'Marty Freeman', 'Stephen Dorff': 'Joey Kuklinski', 'Hector Hugo': 'Tender Bar Earl       (as Hector Hank)', 'Robert Davi': 'Leonard Merks', 'Zoran Radanovich': 'Jimmy'}\"\r\ntt1341341,\"{'Michael Angarano': 'Sam Davis', 'Uma Thurman': 'Zoe', 'Reece Thompson': 'Marshall Schmidt', 'Lee Pace': 'Whit Coutell', 'Jake Johnson': 'Teddy', 'Brooke Bloom': 'Margaret Cornish', 'Harper Dill': 'Carol Archer', 'Rebecca Mader': 'Esme Ball', 'Nathalie Love': 'Blonde Maid', 'Charlie Moss': 'Nico Spicer', 'Lisby Larson': 'Nina Pileggi', 'Paul Amodeo': 'Bruce Singer', 'Philip Carlson': 'Butler', 'Catherine Russell': 'Party Guest #4', 'Jack Koenig': 'Party Guest #5'}\"\r\ntt0093223,\"{'Lindsay Crouse': 'Margaret Ford', 'Joe Mantegna': 'Mike', 'Mike Nussbaum': 'Joey', 'Lilia Skala': 'Dr. Littauer', 'J.T. Walsh': 'The Businessman', 'Willo Hausman': 'Girl with Book', 'Karen Kohlhaas': 'Prison Ward Patient', 'Steven Goldstein': 'Billy Hahn       (as Steve Goldstein)', 'Jack Wallace': 'Bartender /              House of Games', 'Ricky Jay': 'George /              Vegas Man', 'G. Roy Levin': 'Poker Player', 'Bob Lumbra': 'Poker Player', 'Andy Potok': 'Poker Player', 'Allen Soule': 'Poker Player', 'Ben Blakeman': \"\"Bartender /              Charlie's Tavern\"\"}\"\r\ntt2292182,\"{'Yancy Butler': 'Elena', 'Patrick Bergin': 'Tiburon', 'Joshua Michael Allen': 'Cal       (as Josh Allen)', 'Bart Baggett': 'Holt', 'Erin Coker': 'Reagan', 'Frankie Cullen': 'Frankie', 'Valerie K. Garcia': 'Layla', 'Billy Ray': 'Guerra', 'Meredith Thomas': 'Francine', 'Robert Matthew Wallace': 'Pete       (as Robert Wallace)', 'Eric s Wilson': 'Roger       (as Eric Wilson)', 'Israel Wright': 'Alejandro       (as Spencer Wright)', 'Josh Williams': 'Henchman #1', 'John Paul Bennett': 'Henchman #2'}\"\r\ntt1927093,\"{'Lucas Cruikshank': 'Fred Figglehorn /              Derf Nrohelggif /              Judy', 'Jake Weary': 'Kevin', 'Siobhan Fallon Hogan': \"\"Fred's Mom\"\", 'Stephanie Courtney': \"\"Kevin's Mom\"\", 'Carlos Knight': 'Diesel', 'Seth Morris': 'Mr. Devlin', 'Daniella Monet': 'Bertha', 'John Cena': \"\"Fred's Dad\"\", 'Ariel Winter': 'Talia', 'Jack Coghlan': 'Young Fred', 'Alicia Favela': 'Rebecca', 'Jack Feresten': 'Pool Toddler', 'John Gatins': 'Dishwasher', 'Olivia Gonzales': 'Young Talia', 'David A. Goodman': 'Middle Aged Man'}\"\r\ntt2236160,\"{'Shelby Young': 'Robin', 'Carter Jenkins': 'Chris', 'Chloe Bridges': 'Nia', 'Taylor Murphy': 'Amelia', 'Mitch Hewer': 'Ben', 'Kyle Fain': 'Ethan'}\"\r\ntt2490326,\"{'Elijah Wood': 'Clint', 'Rainn Wilson': 'Wade', 'Alison Pill': 'Lucy', 'Jack McBrayer': 'Tracy', 'Leigh Whannell': 'Doug', 'Nasim Pedrad': 'Rebekkah', 'Ian Brennan': 'Vice Principal Simms', 'Jorge Garcia': 'Rick', 'Cooper Roth': 'Patriot', 'Miles Elliot': 'Dink', 'Morgan Lily': 'Tamra', 'Sunny May Allison': 'Shelly', 'Armani Jackson': 'Calvin', 'Peter Kwong': 'Mr. Hatachi', 'Kate Flannery': 'Charman'}\"\r\ntt0093300,\"{'Lorraine Gary': 'Ellen Brody', 'Lance Guest': 'Michael Brody', 'Mario Van Peebles': 'Jake', 'Karen Young': 'Carla Brody', 'Michael Caine': 'Hoagie', 'Judith Barsi': 'Thea', 'Mitchell Anderson': 'Sean Brody', 'Lynn Whitfield': 'Louisa', 'Jay Mello': 'Young Sean Brody       (archive footage)', 'Cedric Scott': 'Clarence', 'Charles Bowleg': 'William', 'Melvin Van Peebles': 'Mr. Witherspoon', 'Mary Smith': 'Tiffany', 'Edna Billotto': 'Polly', 'Fritzi Jane Courtney': 'Mrs. Taft'}\"\r\ntt0077766,\"{'Roy Scheider': 'Brody', 'Lorraine Gary': 'Ellen Brody', 'Murray Hamilton': 'Mayor Vaughn', 'Joseph Mascolo': 'Peterson', 'Jeffrey Kramer': 'Hendricks', 'Collin Wilcox Paxton': 'Dr. Elkins       (as Collin Wilcox)', 'Ann Dusenberry': 'Tina', 'Mark Gruner': 'Mike', 'Barry Coe': 'Andrews', 'Susan French': 'Old Lady', 'Gary Springer': 'Andy', 'Donna Wilkes': 'Jackie', 'Gary Dubin': 'Ed', 'John Dukakis': 'Polo', 'G. Thomas Dunlop': 'Timmy'}\"\r\ntt2080374,\"{'Michael Fassbender': 'Steve Jobs', 'Kate Winslet': 'Joanna Hoffman', 'Seth Rogen': 'Steve Wozniak', 'Jeff Daniels': 'John Sculley', 'Michael Stuhlbarg': 'Andy Hertzfeld', 'Katherine Waterston': 'Chrisann Brennan', 'Perla Haney-Jardine': 'Lisa Brennan (19)', 'Ripley Sobo': 'Lisa Brennan (9)', 'Makenzie Moss': 'Lisa Brennan (5)', 'Sarah Snook': 'Andrea Cunningham', 'John Ortiz': 'Joel Pforzheimer', 'Adam Shapiro': 'Avie Tevanian', 'John Steen': 'Mike Markkula', 'Stan Roth': 'George Coates', 'Mihran Slougian': 'Jandali       (as Mihran Shlougian)'}\"\r\ntt0061747,\"{'Clint Eastwood': 'Marshal Jed Cooper', 'Inger Stevens': 'Rachel Warren', 'Ed Begley': 'Captain Wilson', 'Pat Hingle': 'Judge Fenton', 'Ben Johnson': 'Marshal Dave Bliss', 'Charles McGraw': 'Sheriff Ray Calhoun', 'Ruth White': \"\"Madame 'Peaches' Sophie\"\", 'Bruce Dern': 'Miller', 'Alan Hale Jr.': 'Matt Stone', 'Arlene Golonka': 'Jennifer', 'James Westerfield': 'Prisoner', 'Dennis Hopper': 'The Prophet', 'L.Q. Jones': 'Loomis', \"\"Michael O'Sullivan\"\": 'Francis Elroy Duffy', 'Joseph Sirola': 'Reno'}\"\r\ntt0468492,\"{'Kang-ho Song': 'Park Gang-Doo', 'Hee-Bong Byun': 'Park Hie-bong       (as Byun Hee-bong)', 'Hae-il Park': 'Park Nam-il', 'Doona Bae': 'Park Nam-Joo       (as Bae Doo-na)', 'Ko Asung': 'Park Hyun-seo       (as Ko A-sung)', 'Dal-su Oh': 'The Monster       (voice)', 'Jae-eung Lee': 'Se-jin', 'Dong-ho Lee': 'Se-joo', 'Je-mun Yun': 'Homeless Man', 'David Anselmo': 'Donald       (as David Joseph Anselmo)', 'Martin Lord Cayce': 'U.S. Senator', 'Philip Hersh': 'Additional Voices       (voice)', 'Paul Lazar': 'US Doctor trying to operate Gang-Du'}\"\r\ntt0079261,\"{'John Savage': 'Claude', 'Treat Williams': 'Berger', \"\"Beverly D'Angelo\"\": 'Sheila', 'Annie Golden': 'Jeannie', 'Dorsey Wright': 'Hud', 'Don Dacus': 'Woof', 'Cheryl Barnes': \"\"Hud's Fiancee\"\", 'Richard Bright': 'Fenton', 'Nicholas Ray': 'The General', 'Charlotte Rae': 'Lady in Pink', 'Miles Chapin': 'Steve', 'Fern Tailer': \"\"Sheila's Mother\"\", 'Charles Denny': \"\"Sheila's Father\"\", 'Herman Meckler': \"\"Sheila's Uncle\"\", 'Agness Breen': \"\"Sheila's Aunt\"\"}\"\r\ntt0988045,\"{'Robert Downey Jr.': 'Sherlock Holmes', 'Jude Law': 'Dr. John Watson', 'Rachel McAdams': 'Irene Adler', 'Mark Strong': 'Lord Henry Blackwood', 'Eddie Marsan': 'Inspector Lestrade', 'Robert Maillet': 'Dredger', 'Geraldine James': 'Mrs. Hudson', 'Kelly Reilly': 'Mary Morstan', 'William Houston': 'Constable Clark', 'Hans Matheson': 'Lord Coward', 'James Fox': 'Sir Thomas Rotheram', 'William Hope': 'Ambassador Standish', 'Clive Russell': 'Captain Tanner', 'Oran Gurel': 'Reordan', 'David Garrick': 'McMurdo'}\"\r\ntt2195548,\"{'Paul Rudd': 'Alvin', 'Emile Hirsch': 'Lance', 'Lance LeGault': 'Truck Driver', 'Joyce Payne': 'Lady', 'Gina Grande': 'Madison', 'Lynn Shelton': 'Madison       (voice)', 'Larry Kretschmar': 'Lumberjack', 'Enoch Moon': 'Lumberjack', 'David L. Osborne Jr.': 'Lumberjack', 'Danni Wolcott': 'Lumberjack', 'Morgan Calderoni': 'Kid', 'Savanna Porter': 'Kid', 'Juniper Smith': 'Kid'}\"\r\ntt1536410,\"{'Milla Jovovich': 'Anna Marchant', 'Julian McMahon': 'Sam Kerrest', 'David Atrakchi': 'Lanyon /              Tearjerk Jack', 'Michael Shanks': 'Bryce', 'Marianne Faithfull': 'Dr. Langenkamp', 'Sarah Wayne Callies': 'Francine', 'Valentina Vargas': 'Nina', 'Kate Yacula': 'Anna #2 - in hospital mirror', 'Apollonia Vanova': 'Anna #4 - in make-up mirror', 'Nels Lennarson': 'Kerrest #2', 'Chris Kalhoon': 'Kerrest #3', 'Aaron Hughes': 'Man #1 /              Man #2', 'Aaron Grain': 'Lanyon #2', 'Michael James': 'Lanyon #3', 'Jason Wishnowski': 'Lanyon #4'}\"\r\ntt1524575,\"{'Olivia Taylor Dudley': 'Angela', 'John Patrick Amedori': 'Pete', 'Dougray Scott': 'Roger', 'Michael Peña': 'Father Lozano', 'Peter Andersson': 'Cardinal Mattias Bruun', 'Djimon Hounsou': 'Vicar Imani', 'Kathleen Robertson': 'Dr. Richards', 'Sam Upton': 'Orderly Mason', 'Cas Anvar': 'Dr. Fahti', 'Michael Halsey': 'Dr. Bramwell', 'Alex Sparrow': 'Resident Kulik', 'Jarvis W. George': 'Detective Simmons       (as Jarvis George)', 'Michael Paré': 'Detective Harris', 'Alex Corrado': 'Bishop Saldano', 'Montanna Gillis': 'Jackie'}\"\r\ntt3605418,\"{'Keanu Reeves': 'Evan', 'Lorenza Izzo': 'Genesis', 'Ana de Armas': 'Bell', 'Aaron Burns': 'Louis', 'Ignacia Allamand': 'Karen', 'Dan Baily': 'Jake', 'Megan Baily': 'Lisa', 'Colleen Camp': 'Vivian', 'Antonio Quercia': 'Uber Driver', 'Otto': 'Monkey'}\"\r\ntt2473682,\"{'Andrew Jacobs': 'Jesse Arista', 'Jorge Diaz': 'Hector Estrella', 'Gabrielle Walsh': 'Marisol Vargas', 'Renee Victor': 'Irma Arista', 'Noemi Gonzalez': 'Evette Arista', 'David Saucedo': 'Cesar Arista', 'Gloria Sandoval': 'Ana Sanchez', 'Richard Cabral': 'Arturo Lopez', 'Carlos Pratts': 'Oscar Lopez', 'Juan Vasquez': 'Santo', 'Carlos Romeo Arana Figuera': 'Mauro', 'Molly Ephraim': 'Ali Rey', 'Brent Gutierrez': 'Diego', 'Alonso Alvarez': 'Eber', 'Chris Puckett': 'Cop       (as Christopher M. Puckett)'}\"\r\ntt2109184,\"{'Katie Featherston': 'Katie', 'Kathryn Newton': 'Alex', 'Matt Shively': 'Ben', 'Aiden Lovekamp': 'Wyatt', 'Brady Allen': 'Robbie', 'Stephen Dunham': 'Doug', 'Alexondra Lee': 'Holly', 'Georgica Pettus': 'Sarah', 'Alisha Boe': 'Tara', 'Brendon Eggertsen': 'Derek', 'Constance Esposito': \"\"Robbie's Mom's Friend\"\", 'Ty Dawson': 'Shadow Boy', 'Jonah Pasco': 'Shadow Boy', 'Rightor Doyle': 'Referee', 'Tamara Bersane': \"\"Wyatt's Soccer Coach\"\"}\"\r\ntt2205697,\"{'Greg Kinnear': 'Bill Borgens', 'Jennifer Connelly': 'Erica', 'Lily Collins': 'Samantha Borgens', 'Nat Wolff': 'Rusty Borgens', 'Kristen Bell': 'Tricia', 'Logan Lerman': 'Louis', 'Liana Liberato': 'Kate', 'Michael Goodwin': 'Professor Abbott', 'Stephen King': 'Stephen King       (voice)', 'Rusty Joiner': 'Martin', 'Patrick Schwarzenegger': 'Glen', 'David Carzell': 'Rodney       (as David Morris)', 'Barbara Weetman': 'Diane', 'Alex ter Avest': 'Becky       (as Alexandria Lauren ter Avest)', 'Zeeko Zaki': 'Gus'}\"\r\ntt2708254,\"{'Cuba Gooding Jr.': 'Eugene', 'Dennis Haysbert': 'Searcy', 'George Dick': 'Jamal', 'Thurston Hill III': 'Henry', 'J.D. Walsh': 'Fritz', 'Rachae Thomas': 'Katrina', 'Derrick L. McMillon': 'Billy West       (as Derrick McMillon)', 'LisaGay Hamilton': 'Sheila King', 'Richard T. Jones': 'Perry', 'Meakil Bell': 'Darius', 'Lyn Alicia Henderson': 'Ms. Gadbaw', 'Carlton Byrd': 'Clifton', 'Kevin Hendricks': 'Peanut', 'Malcolm M. Mays': 'Tahime', 'Hammerton Killick': 'Derek'}\"\r\ntt2226519,\"{'Emily Browning': 'Hayley', 'Xavier Samuel': 'Enzo', 'Cam Gigandet': 'Carter', 'Dawn Olivieri': 'Annie', 'Thomas Dekker': 'Jack', 'Frances Fisher': 'Camila       (as Francis Fisher)', 'Elizabeth Peña': 'Dr. Lopez', 'Brandon Jay McLaren': 'Butch Hopkins /              Writer', 'Marlene Forte': 'Dr. Ortiz       (as Marlene Ortez)', 'Bradley James Metcalf': 'The Twins       (as Bradley Metcalf)', 'Jack Patrick Metcalf': 'The Twins       (as Jack Metcalf)', 'Travis Scott Metcalf': 'The Twins       (as Travis Metcalf)', 'Kennedy Waite': 'Lila', 'Steven Asbury': 'Donnie /              Drummer       (as Steve Asbury)', 'James Kyson': 'Coat & Tie Fan'}\"\r\ntt0781008,\"{'Matt Barr': 'Himself', 'Jason Earles': 'Himself', 'Tad Hilgenbrink': 'Himself', 'Arielle Kebbel': 'Herself', 'Jun Hee Lee': 'Himself', 'Crystle Lightning': 'Herself', 'Angela Little': 'Herself', 'Ginger Lynn': 'Herself       (as Ginger Lynn Allen)', 'Dossett Marchese': 'Himself       (as Dossett March)', 'Omar Benson Miller': 'Himself', 'Chris Owen': 'Himself', 'Timothy Stack': 'Himself', 'Rachel Veltri': 'Herself'}\"\r\ntt1602472,\"{'Chris Rock': 'Mingus', 'Julie Delpy': 'Marion', 'Albert Delpy': 'Jeannot', 'Alexia Landeau': 'Rose', 'Alexandre Nahon': 'Manu       (as Alex Nahon)', 'Kate Burton': 'Bella', 'Dylan Baker': 'Ron', 'Daniel Brühl': 'The Oak Fairy', 'Talen Ruth Riley': 'Willow       (as Talen Riley)', 'Owen Shipman': 'Lulu', 'Malinda Williams': 'Elizabeth', 'Carmen Lopez': 'Julia', 'Emily Wagner': 'Susan', 'Arthur French': 'Lee Robinson', 'Petronia Paley': 'Carol Robinson'}\"\r\ntt1350512,\"{'Jeremy London': 'Kurt Ross', 'A Martinez': 'Sheriff Reed Carpenter', 'Paul Logan': 'TR-4', 'Lauren Walsh': 'Chloe', 'Sara Tomko': 'Pallas', 'Dustin Harnish': 'Bronson', 'Clint Browning': 'Chuck', 'Lucinda Rogers': 'Tiffany', 'Mark Hengst': 'Tanner', 'Gary Miller-Youst': 'Sam       (as Gary Youst)', 'Joel Ezra Hebner': 'Anson       (as Joel E. Hebner)', 'Naómi Hurter': 'Paige       (as Naomi Hurter)', 'Russell Reynolds': 'Captain Engineer       (as G. Russell Reynolds)', 'Stephen Blackehart': 'Logan', 'Jason S. Gray': 'Lipinski'}\"\r\ntt1640548,\"{'Woody Harrelson': 'David Douglas Brown', 'Jon Bernthal': 'Dan Morone', 'Stella Schnabel': 'Jane', 'Jon Foster': 'Michael Whittaker', 'Ben Foster': 'General Terry', 'Ruben Garfias': 'Pharmacy Security Guard', 'Deadlee': 'Pharmacy Punk', 'Dominic Flores': 'Latino Detective', 'Matt McTighe': '30-Year-Old Cop', 'Cynthia Nixon': 'Barbara', 'Anne Heche': 'Catherine', 'Brie Larson': 'Helen', 'Sammy Boyarsky': 'Margaret', 'Billy Hough': 'Piano Player', 'Audra McDonald': 'Sarah'}\"\r\ntt0480271,\"{'Kal Penn': 'Taj', 'Lauren Cohan': 'Charlotte', 'Daniel Percival': 'Pip', 'Glen Barry': 'Seamus', 'Anthony Cozens': 'Gethin', 'Steven Rathman': 'Simon', 'Holly Davidson': 'Sadie', 'Tom Davey': 'Percy', 'William de Coverly': 'Roger', 'Beth Steel': 'Penelope', 'Amy Steel': 'Alexandra', 'Jonathan Cecil': 'Provost Cunningham', 'Roger Hammond': 'Camford Dean', 'Kulvinder Ghir': \"\"Taj's Father\"\", 'Shobu Kapoor': \"\"Taj's Mother\"\"}\"\r\ntt1748179,\"{'Cillian Murphy': 'Tom Buckley', 'Sigourney Weaver': 'Margaret Matheson', 'Robert De Niro': 'Simon Silver', 'Toby Jones': 'Paul Shackleton', 'Joely Richardson': 'Monica Hansen', 'Elizabeth Olsen': 'Sally Owen', 'Craig Roberts': 'Ben', 'Leonardo Sbaraglia': 'Leonard Palladino', 'Adriane Lenox': 'Rina', 'Garrick Hagon': 'Howard McColm', 'Burn Gorman': 'Benedict Cohen', 'Mitchell Mullen': 'Jim Carroll', 'Nathan Osgood': 'Michael Sidgwick', 'Madeleine Potter': 'Sarah Sidgwick', 'Eloise Webb': 'Susan Sidgwick'}\"\r\ntt0970866,\"{'Robert De Niro': 'Jack Byrnes', 'Ben Stiller': 'Greg Focker', 'Owen Wilson': 'Kevin Rawley', 'Dustin Hoffman': 'Bernie Focker', 'Barbra Streisand': 'Roz Focker', 'Blythe Danner': 'Dina Byrnes', 'Teri Polo': 'Pam Focker', 'Jessica Alba': 'Andi Garcia', 'Laura Dern': 'Prudence', 'Kevin Hart': 'Nurse Louis', 'Daisy Tahan': 'Samantha Focker', 'Colin Baiocchi': 'Henry Focker', 'Tom McCarthy': 'Dr. Bob', 'Harvey Keitel': 'Randy Weir', 'Yul Vazquez': 'Junior'}\"\r\ntt0068897,\"{'Lee Van Cleef': 'Chris', 'Stefanie Powers': 'Laurie Gunn', 'Michael Callan': 'Noah Forbes', 'Mariette Hartley': 'Arrila', 'Luke Askew': 'Mark Skinner', 'Pedro Armendáriz Jr.': 'Pepe Carral       (as Pedro Armendariz Jr.)', 'Ralph Waite': 'Jim Mackay', 'Melissa Murphy': 'Madge Buchanan', 'William Lucking': 'Walt Drummond', 'James Sikking': 'Andy Hayes', 'Ed Lauter': 'Scott Elliot', 'Allyn Ann McLerie': 'Mrs. Donavan', 'Gary Busey': 'Hank Allen', 'Robert Jaffe': 'Bob Allen', 'Darrell Larson': 'Shelly'}\"\r\ntt0805564,\"{'Ryan Gosling': 'Lars Lindstrom', 'Emily Mortimer': 'Karin', 'Paul Schneider': 'Gus', 'R.D. Reid': 'Reverend Bock', 'Kelli Garner': 'Margo', 'Nancy Beatty': 'Mrs. Gruner', 'Doug Lennox': 'Mr. Hofstedtler', 'Joe Bostick': 'Mr. Shaw', 'Liz Gordon': 'Mrs. Schindler', 'Nicky Guadagni': 'Mrs. Petersen', 'Patricia Clarkson': 'Dagmar', 'Karen Robinson': 'Cindy', 'Maxwell McCabe-Lokos': 'Kurt', 'Billy Parrott': 'Erik', 'Sally Cahill': 'Deb'}\"\r\ntt0091983,\"{'Jeff Daniels': 'Charles Driggs', 'Melanie Griffith': 'Audrey Hankel', 'Ray Liotta': 'Ray Sinclair', \"\"George 'Red' Schwartz\"\": 'Counter Man       (as George Schwartz)', 'Margaret Colin': 'Irene', 'Leib Lensky': 'Frenchy', 'Tracey Walter': 'The Country Squire', 'Maggie T.': 'Country Squire Bulldog', 'Patricia Falkenhain': \"\"Charlie's Secretary\"\", 'Sandy McLeod': \"\"Graves' Secretary\"\", 'Robert Ridgely': 'Richard Graves', 'Buzz Kilman': 'TV Newscaster', 'Kenneth Utt': 'Dad', 'Adelle Lutz': 'Rose', 'Charles Napier': 'Irate Chef'}\"\r\ntt0102744,\"{'Tom Selleck': 'Matthew Quigley', 'Laura San Giacomo': 'Crazy Cora', 'Alan Rickman': 'Elliott Marston', 'Chris Haywood': 'Major Ashley-Pitt', 'Ron Haddrick': 'Grimmelman', 'Tony Bonner': 'Dobkin', 'Jerome Ehlers': 'Coogan', 'Conor McDermottroe': 'Hobb', 'Roger Ward': 'Brophy', 'Ben Mendelsohn': \"\"O'Flynn\"\", 'Steve Dodd': 'Kunkurra', 'Karen Davitt': 'Slattern', 'Kylie Foster': 'Slattern', 'William Zappa': 'Reilly', 'Jonathan Sweet': 'Sergeant Thomas'}\"\r\ntt0098577,\"{'Nicolas Cage': 'Peter Loew', 'Maria Conchita Alonso': 'Alva Restrepo', 'Jennifer Beals': 'Rachel', 'Elizabeth Ashley': 'Dr. Glaser', 'Kasi Lemmons': 'Jackie', 'Robert Lujan': 'Emilio       (as Bob Lujan)', 'Jessica Lundy': 'Sharon', 'Johnny Walker': 'Donald       (as John Walker)', 'Boris Lyoskin': 'Fantasy Cabbie       (as Boris Leskin)', 'Michael Knowles': 'Andrew', 'John Michael Higgins': 'Ed', 'Jodie Markell': 'Joke Girl', 'Marc Coppola': 'Joke Guy', 'David Hyde Pierce': 'Theater Guy       (as David Pierce)', 'Amy Stiller': 'Theater Girl'}\"\r\ntt0095082,\"{'Jace Alexander': 'Dickie Kerr', 'John Cusack': 'Buck Weaver', 'Gordon Clapp': 'Ray Schalk', 'Don Harvey': 'Swede Risberg', 'Bill Irwin': 'Eddie Collins', 'Perry Lang': 'Fred McMullin', 'John Mahoney': 'Kid Gleason', 'James Read': 'Lefty Williams', 'Michael Rooker': 'Chick Gandil', 'Charlie Sheen': 'Hap Felsch', 'David Strathairn': 'Eddie Cicotte', 'D.B. Sweeney': \"\"'Shoeless' Joe Jackson\"\", 'James Desmond': 'Smitty       (as Jim Desmond)', 'John Sayles': 'Ring Lardner', 'Studs Terkel': 'Hugh Fullerton'}\"\r\ntt0089504,\"{'Albert Brooks': 'David Howard', 'Julie Hagerty': 'Linda Howard', 'Sylvia Farrel': 'Receptionist', 'Tina Kincaid': 'Model', 'Candy Ann Brown': \"\"David's Secretary\"\", 'Maggie Roswell': 'Patty', 'Hans Wagner': 'Hans       (voice)', 'Brandy Rubin': \"\"Paul Dunn's Secretary\"\", 'Michael Greene': 'Paul Dunn', 'Tom Tarpey': 'Brad Tooley', 'Robert Hughes': 'Security Guard', 'Raynold Gideon': 'Ray', 'John Di Fusco': 'Motorcyclist', 'Michael Cornelison': 'Front Desk Clerk', 'Radu Gavor': 'Bellman'}\"\r\ntt0106387,\"{'Johnny Depp': 'Sam', 'Mary Stuart Masterson': 'Joon Pearl', 'Aidan Quinn': 'Benny Pearl', 'Julianne Moore': 'Ruthie', 'Oliver Platt': 'Eric', 'CCH Pounder': 'Dr. Garvey       (as C.C.H. Pounder)', 'Dan Hedaya': 'Thomas', 'Joe Grifasi': 'Mike', 'William H. Macy': 'Randy Burch', 'Liane Curtis': 'Claudia       (as Liane Alexandra Curtis)', 'Eileen Ryan': 'Mrs. Smail', 'Don Hamilton': 'UPS Man', 'Waldo Larson': 'Waldo', 'Irvin Johnson': 'Orderly', 'Shane Nilsson': 'Orderly'}\"\r\ntt1368116,\"{'Iko Uwais': 'Yuda', 'Sisca Jessica': 'Astri', 'Christine Hakim': 'Wulan', 'Mads Koudal': 'Ratger', 'Yusuf Aulia': 'Adit', 'Alex Abbad': 'Johni', 'Yayan Ruhian': 'Eric', 'Laurent Buson': 'Luc', 'Donny Alamsyah': 'Yayan', 'Ratna Galih': 'Ayi', 'Libby Brien': 'Wulan       (voice)', 'Raiya Galih': 'Ayi', 'Rahyma Yanii': 'Eli'}\"\r\ntt0997147,\"{'Hitoshi Matsumoto': 'Masaru Daisatô /              Dai-Nihonjin', 'Riki Takeuchi': 'Haneru-no-jû', 'Ua': 'Manager Kobori', 'Ryûnosuke Kamiki': 'Warabe-no-jû', 'Haruka Unabara': 'Shimeru-no-jû', 'Tomoji Hasegawa': 'Interviewer /              Director', 'Itsuji Itao': 'Female Niou-no-jû', 'Hiroyuki Miyasako': 'Stay With Me', 'Takayuki Haranishi': 'Male Niou-no-jû', 'Daisuke Miyagawa': 'Super Justice', 'Takuya Hashimoto': 'Midon', 'Taichi Yazaki': \"\"Daisatô's Grandfather\"\", 'Shion Machida': \"\"Daisatô's Ex-wife\"\", 'Atsuko Nakamura': 'Bar Proprietress Azusa', 'Daisuke Nagakura': \"\"Daisatô's Grandfather - Younger\"\"}\"\r\ntt1634122,\"{'Roger Barclay': 'Agent Two', 'Eric Carte': 'Agent One', 'Rowan Atkinson': 'Johnny English', 'Togo Igawa': 'Ting Wang', 'Eleanor Wyld': 'Receptionist 1', 'Mandi Sidhu': 'Receptionist 2', 'Margaret Clunie': 'Receptionist 3', 'Gillian Anderson': 'Pamela', 'Rosamund Pike': 'Kate Sumner', 'Dominic West': 'Simon Ambrose', 'Tim McInnerny': 'Patch Quartermain', 'Mariella Frostrup': 'Royce       (voice)', 'Daniel Kaluuya': 'Agent Tucker', 'Miles Jupp': 'Technician', 'Pik Sen Lim': 'Killer Cleaner       (as Pik-Sen Lim)'}\"\r\ntt1959490,\"{'Russell Crowe': 'Noah', 'Jennifer Connelly': 'Naameh', 'Ray Winstone': 'Tubal-cain', 'Anthony Hopkins': 'Methuselah', 'Emma Watson': 'Ila', 'Logan Lerman': 'Ham', 'Douglas Booth': 'Shem', 'Nick Nolte': 'Samyaza       (voice)', 'Mark Margolis': 'Magog       (voice)', 'Kevin Durand': 'Rameel', 'Leo McHugh Carroll': 'Japheth', 'Marton Csokas': 'Lamech', 'Finn Wittrock': 'Young Tubal-cain', 'Madison Davenport': \"\"Na'el\"\", 'Gavin Casalegno': 'Young Shem'}\"\r\ntt1156300,\"{'Aric Amendolea': 'Student (segment \"\"On Sabbath Hill\"\")', 'Kristen Barrega': 'Student (segment \"\"On Sabbath Hill\"\")', 'Amy Lynn Best': 'Nurse Fletcher (segment \"\"The Gorge\"\")', 'Carla Bianco': 'Janet Weaver (segment \"\"On Sabbath Hill\"\")', 'William Black': 'Student (segment \"\"On Sabbath Hill\"\")', 'Leilani Brosnan': 'Sister', 'Amanda Caddy': 'Student (segment \"\"On Sabbath Hill\"\")', 'Rebecca Campbell': 'Student (segment \"\"On Sabbath Hill\"\")', 'Lex Casciato': 'Student (segment \"\"On Sabbath Hill\"\")       (as Alexa Casiato)', 'Danny Cooper': 'Markham (segment \"\"Dust\"\")', 'Meridith Davis': 'Student (segment \"\"On Sabbath Hill\"\")', 'Liz DuChez': 'Donna (segment \"\"The Gorge\"\")', 'Siena Frank': 'Student (segment \"\"On Sabbath Hill\"\")', 'Amanda Frost': 'Allison Knowles (segment \"\"On Sabbath Hill\"\")', 'Barret Hackney': 'Craig (segment \"\"The Gorge\"\")'}\"\r\ntt1334526,\"{'Tom Gregg': 'Head Native (segment \"\"Valley of the Shadow\"\")', 'Jason Hoehnen': 'Jimmy (segment \"\"House Call\"\")', 'Paul Keiserling': 'Paul (segment \"\"Valley of the Shadow\"\")', 'Angel Lisboa': 'Native (Segment: Valley of the Shadow)', 'Nick Mancuso': 'Swan (segment \"\"Wet\"\")', 'Amy Marsalis': 'Angela (segment \"\"Valley of the Shadow\"\")', 'Jeff Monahan': 'Jack (segment \"\"Wet\"\")', 'Maryanne Nagel': 'Mrs. Norman (segment \"\"House Call\"\")', \"\"Bingo O'Malley\"\": 'Dr. Marsten (segment \"\"House Call\"\")', 'Antone Pagán': 'Miguel (segment \"\"Valley of the Shadow\"\")       (as Antone Pagan)', 'George A. Romero': 'Himself - Host', 'Marty Schiff': 'David (segment \"\"Valley of the Shadow\"\")', 'Kristin Slaysman': 'She (segment \"\"Wet\"\")', 'Robert Gordon Spencer': 'Alan (segment \"\"Valley of the Shadow\"\")', 'Matt Walsh': 'Monte (segment \"\"Valley of the Shadow\"\")'}\"\r\ntt1618442,\"{'Vin Diesel': 'Kaulder', 'Rose Leslie': 'Chloe', 'Elijah Wood': 'Dolan 37th', 'Ólafur Darri Ólafsson': 'Belial', 'Rena Owen': 'Glaeser', 'Julie Engelbrecht': 'The Witch Queen', 'Michael Caine': 'Dolan 36th', 'Joseph Gilgun': 'Ellic', 'Isaach De Bankolé': 'Max Schlesinger', 'Michael Halsey': 'Grosette', 'Sloane Coombs': 'Elizabeth', 'Lotte Verbeek': 'Helena', 'Dawn Olivieri': 'Danique', 'Inbar Lavi': 'Sonia', 'Armani Jackson': 'Armani'}\"\r\ntt1705773,\"{'Gary Stretch': 'Nigel Putnam', 'Jaleel White': 'Dr. Terry McCormick', 'Sarah Lieving': 'Agent Hutchinson', 'Robert Picardo': 'Admiral Calvin', 'Gerald Webb': 'Jean', 'Dylan Vox': 'CWO Butowski', 'Hannah Cowley': 'Legatt', 'Steve Mason': 'Investigator', 'Robert R. Shafer': 'Charlie Ross       (as Bobby Ray Shafer)', 'Nicola Lambo': 'Corrine', 'Michael Gaglio': 'Captain Smalls       (as Mike Gaglio)', 'Sean Cory': 'Moise', 'Tarnue Massaquoi': 'Claude', 'Bechir Sylvain': 'Badawi', 'Anica Barbosa': 'Bartender'}\"\r\ntt1350498,\"{'Debbie Gibson': 'Emma MacNeil       (as Deborah Gibson)', 'Lorenzo Lamas': 'Allan Baxter', 'Vic Chao': 'Seiji Shimada', 'Jonathan Nation': 'Vince', 'Mark Hengst': 'Dick Ritchie', 'Michael Teh': 'Takeo       (as Michael The)', 'Chris Haley': 'Kenji', 'Sean Lawlor': 'Lamar Sanders', 'Dustin Harnish': 'Helmsman', 'Dean Kreyling': 'U.S. Sub Captain', 'Stephen Blackehart': 'U.S. Sub Sonar Chief', 'Dana DiMatteo': 'Marine Biologist       (as Dana Dimatteo)', 'Myles Cranford': 'Deputy', 'Dana Healey': 'Naval Officer', 'John Bolen': 'Weapons Officer'}\"\r\ntt1582248,\"{'Chris Evans': 'Mike Weiss', 'Mark Kassen': 'Paul Danziger', 'Marshall Bell': 'Jeffrey Dancort', 'Brett Cullen': 'Nathaniel Price', 'Jesse L. Martin': 'Daryl King', 'Vinessa Shaw': 'Nurse Vicky Rogers', 'Roxanna Hope Radja': 'Sylvia       (as Roxanna Hope)', 'Michael Biehn': 'Red', 'Kate Burton': \"\"Senator O'Reilly\"\", 'Erinn Allison': 'Kim Danziger', 'Tess Parker': 'Jaime Weiss', 'Justin Anderson': 'Skateboard Kid', 'Jack Lee': 'Mr. Clean', 'Brittney Karbowski': 'Suzie /              Blonde Student', 'Mark Lanier': 'Mark Lanier'}\"\r\ntt2231253,\"{'Jason Statham': 'Nick Wild', 'Michael Angarano': 'Cyrus Kinnick', 'Dominik Garcia': 'Holly       (as Dominik García-Lorido)', 'Hope Davis': 'Cassandra', 'Milo Ventimiglia': 'Danny DeMarco', 'Max Casella': 'Osgood', 'Stanley Tucci': 'Baby', 'Sofía Vergara': 'DD', 'Jason Alexander': 'Pinky', 'Anne Heche': 'Roxy', 'Chris Browning': 'Tiel', 'Matthew Willig': 'Kinlaw', 'François Vincentelli': 'Benny', 'Davenia McFadden': 'Millicent       (as Daviena McFadden)', 'Michael Papajohn': 'Pit Boss'}\"\r\ntt0044081,\"{'Vivien Leigh': 'Blanche DuBois', 'Marlon Brando': 'Stanley Kowalski', 'Kim Hunter': 'Stella Kowalski', 'Karl Malden': \"\"Harold 'Mitch' Mitchell\"\", 'Rudy Bond': 'Steve Hull', 'Nick Dennis': 'Pablo Gonzalez', 'Peg Hillias': 'Eunice Hull', 'Wright King': 'Newspaper Collector', 'Richard Garrick': 'The Doctor', 'Ann Dere': 'The Matron', 'Edna Thomas': 'The Mexican Woman', 'Mickey Kuhn': 'The Helpful Sailor'}\"\r\ntt2870708,\"{'Zach Braff': 'Aidan Bloom', 'Pierce Gagnon': 'Tucker Bloom', 'Kate Hudson': 'Sarah Bloom', 'Joey King': 'Grace Bloom', 'Alexander Chaplin': 'Rabbi Rosenberg', 'Leslie David Baker': 'Audition Actor #1', 'James Avery': 'Audition Actor #2', 'Ato Essandoh': 'Audition Actor #3', 'Jim Parsons': 'Paul', 'Mark Thudium': 'Terry', 'Mandy Patinkin': 'Gabe', 'Josh Gad': 'Noah Bloom', 'Allan Rich': 'Rabbi Twersky', 'Ashley Greene': 'Janine', 'Michael Weston': 'Jerry'}\"\r\ntt1666801,\"{'Mae Whitman': 'Bianca Piper', 'Robbie Amell': 'Wesley Rush', 'Bella Thorne': 'Madison Morgan', 'Bianca A. Santos': 'Casey       (as Bianca Santos)', 'Skyler Samuels': 'Jess', 'Romany Malco': 'Principal Buchanan', 'Nick Eversman': 'Toby', 'Chris Wylde': 'Mr. Filmore', 'Ken Jeong': 'Mr. Arthur', 'Allison Janney': 'Dottie', 'Rebecca Weil': 'Caitlyn', 'Seth Meriwether': 'A.J.', 'Erick Chavarria': 'Señor Gomez', 'Brian Dewar McNamara': 'Matt', 'Benjamin Taylor Davis': 'Jeffrey       (as Benjamin Davis)'}\"\r\ntt3045616,\"{'Johnny Depp': 'Mortdecai', 'Gwyneth Paltrow': 'Johanna', 'Paul Bettany': 'Jock', 'Ewan McGregor': 'Martland', 'Olivia Munn': 'Georgina', 'Jonny Pasvolsky': 'Emil', 'Michael Culkin': 'Sir Graham', 'Ulrich Thomsen': 'Romanov', 'Alec Utgoff': 'Dmitri', 'Rob de Groot': 'Vladimir', 'Guy Burnet': 'Maurice', 'Jeff Goldblum': 'Krampf', 'Paul Whitehouse': 'Spinoza', 'Norma Atallah': 'Bronwen', 'Nicholas Farrell': 'Auctioneer'}\"\r\ntt1674784,\"{'Nicolas Cage': 'Kyle Miller', 'Nicole Kidman': 'Sarah Miller', 'Ben Mendelsohn': 'Elias', 'Liana Liberato': 'Avery Miller', 'Cam Gigandet': 'Jonah', 'Jordana Spiro': 'Petal', 'Dash Mihok': 'Ty', 'Emily Meade': 'Kendra', 'Nico Tortorella': 'Jake', 'Brandon Belknap': 'Dylan', 'Terry Milam': 'Travis', 'Tina Parker': 'Security Operator', 'David Maldonado': 'Security Guard       (as Dave Maldonado)', 'Nilo Otero': 'Mr. Big', 'Simona Williams': 'Mrs. Big'}\"\r\ntt1778304,\"{'Lauren Bittner': 'Julie', 'Christopher Nicholas Smith': 'Dennis       (as Chris Smith)', 'Chloe Csengery': 'Katie', 'Jessica Tyler Brown': 'Kristi       (as Jessica Brown)', 'Hallie Foote': 'Grandma Lois', 'Dustin Ingram': 'Randy Rosen', 'Johanna Braddy': 'Lisa', 'Katie Featherston': 'Adult Katie', 'Brian Boland': 'Daniel', 'Sprague Grayden': 'Adult Kristi', 'William Juan Prieto': 'Hunter       (as William Prieto)', 'Jackson Xenia Prieto': 'Hunter       (as Jackson Prieto)', 'Paitoon Cheng': 'Ida', 'Eddie Medrano': 'Party Magician', 'Rebecca Delgado Smith': 'Crying Bridesmaid'}\"\r\ntt1536044,\"{'David Bierend': 'Surveillance Camera Expert', 'Brian Boland': 'Daniel Rey', 'Molly Ephraim': 'Ali Rey', 'Katie Featherston': 'Katie', 'Seth Ginsberg': 'Brad', 'Sprague Grayden': 'Kristi Rey', 'William Juan Prieto': 'Hunter Rey', 'Jackson Xenia Prieto': 'Hunter Rey', 'Micah Sloat': 'Micah', 'Vivis Colombetti': 'Martine       (as Vivis)'}\"\r\ntt1748122,\"{'Bruce Willis': 'Captain Sharp', 'Edward Norton': 'Scout Master Ward', 'Bill Murray': 'Mr. Bishop', 'Frances McDormand': 'Mrs. Bishop', 'Tilda Swinton': 'Social Services', 'Jared Gilman': 'Sam', 'Kara Hayward': 'Suzy', 'Jason Schwartzman': 'Cousin Ben', 'Bob Balaban': 'The Narrator', 'Lucas Hedges': 'Redford', 'Charlie Kilgore': 'Lazy-Eye', 'Andreas Sheikh': 'Panagle', 'Chandler Frantz': 'Gadge', 'Rob H. Campbell': 'Deluca       (as Rob Campbell)', 'L.J. Foley': 'Izod'}\"\r\ntt2202385,\"{'Chico Benymon': 'Adam', 'Courtney Cameron': 'Cream', 'Kendrick Smith': 'Serpeant       (as Kendrick R. Smith)', 'Billy Sorrells': 'Cray', 'Aliyauna NyKol': 'Cookie', 'Thada Catalon': 'Tanji       (as Theta Catalon)', 'Donny Boaz': 'Sheriff Jenkins', 'Just Brittany': 'Steel', 'Tonyai Palmer': 'Vanilla', 'Xamon Glasper': 'Dirty Nate', 'Shumon Lucas': 'Ev Easy', 'Esther Baxter': 'Maxine', 'Carlos Sepulveda': 'Gregory', 'Latoya Kent': 'Kimmy', 'Paul Vincent Blue': 'Ike'}\"\r\ntt0089017,\"{'Rosanna Arquette': 'Roberta Glass', 'Madonna': 'Susan', 'Aidan Quinn': 'Dez', 'Mark Blum': 'Gary Glass', 'Robert Joy': 'Jim', 'Laurie Metcalf': 'Leslie Glass', 'Anna Levine': 'Crystal', 'Will Patton': 'Wayne Nolan', 'Peter Maloney': 'Ian', 'Steven Wright': 'Larry Stillman D.D.S', 'John Turturro': 'Ray', 'Anne Carlisle': 'Victoria', 'José Angel Santana': 'Boutique Owner       (as Jose Santana)', 'Giancarlo Esposito': 'Street Vendor', 'Richard Hell': 'Bruce Meeker'}\"\r\ntt0810817,\"{'C. Thomas Howell': 'Michael Archer', 'Lance Henriksen': 'Dr. John Coven', 'Nicole Sherwin': 'Giulia Pedina', 'Alexis Zibolis': 'Samantha West', 'Jason S. Gray': 'Pejic       (as Jason Gray)', 'Elvis Naumovski': 'Elvis', 'Antonio Jaramillo': 'Bob Griffee', 'Timothy Casto': 'DeKorte       (as Tim Casto)', 'Rocky Hart': 'Cardinal Ricci', 'A.J. Castro': 'Amal       (as Alby Castro)', 'Dru Brock': 'Convent Guard', 'Reza Riazi': 'Goon in Helicopter', 'Brian J. Garland': \"\"Coven's Thug\"\", 'Kurt Altschwager': \"\"Coven's Thug\"\", 'Steven Linnett': 'Officer'}\"\r\ntt0061811,\"{'Sidney Poitier': 'Virgil Tibbs', 'Rod Steiger': 'Gillespie', 'Warren Oates': 'Sam Wood', 'Lee Grant': 'Mrs. Colbert', 'Larry Gates': 'Endicott', 'James Patterson': 'Mr. Purdy', 'William Schallert': 'Mayor Schubert', 'Beah Richards': 'Mama Caleba', 'Peter Whitney': 'Courtney', 'Kermit Murdock': 'Henderson', 'Larry D. Mann': 'Watkins', 'Matt Clark': 'Packy', 'Arthur Malet': 'Ulam', 'Fred Stewart': 'Dr. Stuart', 'Quentin Dean': 'Delores'}\"\r\ntt0785035,\"{'Tony Jaa': 'Tien', 'Sarunyu Wongkrachang': 'Rajasena Lord       (as Sarunyu Wongkrajang)', 'Sorapong Chatree': 'Chernung', 'Primorata Dejudom': 'Pim       (as Primrata Det-Udom)', 'Nirut Sirichanya': 'Master Bua       (as Nirut Sirijunya)', 'Petchtai Wongkamlao': 'Mhen       (as Phetthai Wongkhamlao)', 'Santisuk Promsiri': 'Nobleman Siha Decho       (as Santisuk Phromsiri)', 'Patthama Panthong': 'Lady Plai       (as Pattama Panthong)', 'Supakorn Kitsuwon': 'Master Armer       (as Suppakorn Kitsuwan)', 'Natdanai Kongthong': 'Young Tien       (as Natdhanai Kongthong)', 'Prarinya Karmkeaw': 'Young Pim', 'Jaran Ngamdee': '(as Jarun Ngamdee)'}\"\r\ntt0081455,\"{\"\"Jennifer O'Neill\"\": 'Kim Obrist', 'Stephen Lack': 'Cameron Vale       (as Steven Lack)', 'Patrick McGoohan': 'Dr. Paul Ruth', 'Lawrence Dane': 'Braedon Keller', 'Michael Ironside': 'Darryl Revok', 'Robert A. Silverman': 'Benjamin Pierce       (as Robert Silverman)', 'Lee Broker': 'Security One', 'Mavor Moore': 'Trevellyan', 'Adam Ludwig': 'Arno Crostic', 'Murray Cruchley': 'Programmer 1       (as Lee Murray)', 'Fred Doederlein': 'Dieter Tautz', 'Géza Kovács': 'Killer in Record Store       (as Geza Kovacs)', 'Sonny Forbes': 'Killer in Attic       (as Sony Forbes)', 'Jérôme Tiberghien': 'Killer in Attic       (as Jerome Tiberghien)', 'Denis Lacroix': 'Killer in Barn'}\"\r\ntt0047472,\"{'Howard Keel': 'Adam Pontipee', 'Jeff Richards': 'Benjamin Pontipee', 'Russ Tamblyn': 'Gideon Pontipee', 'Tommy Rall': 'Frank (Frankincense) Pontipee', 'Marc Platt': 'Daniel Pontipee', 'Matt Mattox': 'Caleb Pontipee', \"\"Jacques d'Amboise\"\": 'Ephraim Pontipee', 'Jane Powell': 'Milly Pontipee', 'Julie Newmar': 'Dorcas Gaylen       (as Julie Newmeyer)', 'Nancy Kilgas': 'Alice Elcott', 'Betty Carr': 'Sarah Kine', 'Virginia Gibson': 'Liza', 'Ruta Lee': 'Ruth Jepson       (as Ruta Kilmonis)', 'Norma Doggett': 'Martha', 'Ian Wolfe': 'Rev. Elcott'}\"\r\ntt0274166,\"{'Rowan Atkinson': 'Johnny English', 'Tasha de Vasconcelos': 'Countess Alexandra - Exotic Woman', 'Ben Miller': \"\"Bough, English's Sidekick\"\", 'Greg Wise': 'Agent One', 'Douglas McFerran': 'Carlos Vendetta', 'Steve Nicolson': 'Dieter Klein', 'Terence Harvey': 'Official at Funeral', 'Kevin McNally': 'Prime Minister', 'Tim Pigott-Smith': 'Pegasus, Head of MI7', 'Nina Young': \"\"Pegasus' Secretary\"\", 'Rowland Davies': 'Sir Anthony Chevenix', 'Natalie Imbruglia': 'Lorna Campbell', 'Philippa Fordham': 'Snobby Woman', 'John Malkovich': 'Pascal Sauvage, the Greedy Frenchman', 'Tim Berrington': 'Roger'}\"\r\ntt0085382,\"{'Dee Wallace': 'Donna Trenton', 'Danny Pintauro': 'Tad Trenton', 'Daniel Hugh Kelly': 'Vic Trenton       (as Daniel Hugh-Kelly)', 'Christopher Stone': 'Steve Kemp', 'Ed Lauter': 'Joe Camber', 'Kaiulani Lee': 'Charity Camber', 'Billy Jayne': 'Brett Camber       (as Billy Jacoby)', 'Mills Watson': 'Gary Pervier', 'Sandy Ward': 'Bannerman', 'Jerry Hardin': 'Masen', 'Merritt Olsen': 'Professor', 'Arthur Rosenberg': 'Roger Breakstone', 'Terry Donovan-Smith': 'Harry', 'Robert Elross': 'Meara', 'Robert Behling': 'Fournier'}\"\r\ntt0086525,\"{'Nicolas Cage': 'Randy', 'Deborah Foreman': 'Julie Richman', 'Elizabeth Daily': 'Loryn', 'Michael Bowen': 'Tommy', 'Cameron Dye': 'Fred Bailey', 'Heidi Holicker': 'Stacey', 'Michelle Meyrink': 'Suzi Brent', 'Tina Theberge': 'Samantha', 'Lee Purcell': 'Beth Brent', 'Richard Sanders': \"\"Drivers' Ed Teacher\"\", 'Colleen Camp': 'Sarah Richman', 'Frederic Forrest': 'Steve Richman', 'David Ensor': 'Skip', 'Joanne Baron': 'Prom Teacher', 'Tony Plana': 'Low Rider'}\"\r\ntt1480295,\"{'Robert De Niro': 'Benjamin Ford', 'John Travolta': 'Emil Kovac', 'Milo Ventimiglia': 'Chris Ford', 'Elizabeth Olin': 'Sarah Ford', 'Diana Lyubenova': 'Elena', 'Kalin Sarmenov': 'Serbian', 'Stefan Shterev': 'Bar Customer'}\"\r\ntt0089907,\"{'Clu Gulager': 'Burt', 'James Karen': 'Frank', 'Don Calfa': 'Ernie', 'Thom Mathews': 'Freddy', 'Beverly Randolph': 'Tina', 'John Philbin': 'Chuck', 'Jewel Shepard': 'Casey', 'Miguel A. Núñez Jr.': 'Spider       (as Miguel Nunez)', 'Brian Peck': 'Scuz', 'Linnea Quigley': 'Trash', 'Mark Venturini': 'Suicide', 'Jonathan Terry': 'Colonel Glover', 'Cathleen Cordell': \"\"Colonel's Wife\"\", 'Drew Deighan': 'Paramedic #1', 'James Dalesandro': 'Paramedic #2'}\"\r\ntt1605630,\"{'Jason Biggs': 'Jim', 'Alyson Hannigan': 'Michelle', 'Chris Klein': 'Oz', 'Thomas Ian Nicholas': 'Kevin', 'Tara Reid': 'Vicky', 'Seann William Scott': 'Stifler', 'Mena Suvari': 'Heather', 'Eddie Kaye Thomas': 'Finch', 'John Cho': 'MILF Guy #2', 'Jennifer Coolidge': \"\"Stifler's Mom\"\", 'Eugene Levy': \"\"Jim's Dad\"\", 'Natasha Lyonne': 'Jessica', 'Dania Ramirez': 'Selena', 'Katrina Bowden': 'Mia', 'Jay Harrington': 'Dr. Ron'}\"\r\ntt0068833,\"{'Sandra Peabody': 'Mari Collingwood       (as Sandra Cassell)', 'Lucy Grantham': 'Phyllis Stone', 'David Hess': 'Krug Stillo       (as David A. Hess)', 'Fred J. Lincoln': \"\"Fred 'Weasel' Podowski       (as Fred Lincoln)\"\", 'Jeramie Rain': 'Sadie', 'Marc Sheffler': 'Junior Stillo', 'Richard Towers': 'Dr. John Collingwood       (as Gaylord St. James)', 'Cynthia Carr': 'Estelle Collingwood', 'Ada Washington': 'Ada', 'Marshall Anker': 'Sheriff', 'Martin Kove': 'Deputy', 'Ray Edwards': 'Postman'}\"\r\ntt1649444,\"{'Leticia Dolera': 'Clara', 'Diego Martín': 'Koldo', 'Ismael Martínez': 'Rafa', 'Àlex Monner': 'Adrián', 'Borja Glez. Santaolalla': 'Atún       (as Sr. B)', 'Emilio Mencheta': 'Tío Pepe Víctor', 'David Ramírez': 'Canon', 'Miguel Ángel González': 'John Esponja', 'Ramón Agirre': 'Danilo       (as Ramón Aguirre)', 'Xavier Ruano': 'Cura', 'José de la Cruz': 'Abuelo Matías', 'Antonio Barroso': 'Pequeñín', 'Toni Sans': 'Jumanji', 'Aitor Legardón': 'Amigo Fiestero', 'Paco Moreno': 'Charly'}\"\r\ntt1655441,\"{'Blake Lively': 'Adaline Bowman', 'Michiel Huisman': 'Ellis Jones', 'Harrison Ford': 'William Jones', 'Ellen Burstyn': 'Flemming', 'Kathy Baker': 'Kathy Jones', 'Amanda Crew': 'Kikki Jones', 'Lynda Boyd': 'Regan', 'Hugh Ross': 'Narrator', 'Richard Harmon': 'Tony', 'Fulvio Cecere': 'Cab Driver', 'Anjali Jay': 'Cora', 'Hiro Kanagawa': 'Kenneth', 'Peter J. Gray': 'Clarence James Prescott       (as Peter James Grey)', 'Izabel Pearce': 'Flemming (Age 5)       (as Izabel A. Pearce)', 'Cate Richardson': 'Flemming (Age 20)'}\"\r\ntt1245112,\"{'Jonathan D. Mellor': 'Dr. Owen       (as Jonathan Mellor)', 'Óscar Zafra': 'Jefe       (as Oscar Sánchez Zafra)', 'Ariel Casas': 'Larra', 'Alejandro Casaseca': 'Martos', 'Pablo Rosso': 'Rosso', 'Rafa Parra': 'Rosso       (voice)', 'Pep Molina': 'Padre Jennifer', 'Andrea Ros': 'Mire', 'Àlex Batllori': 'Ori', 'Pau Poch': 'Tito', 'Juli Fàbregas': 'Bombero', 'Ferran Terraza': 'Manu', 'Claudia Silva': 'Jennifer', 'Martha Carbonell': 'Sra. Izquierdo', 'Jorge-Yamam Serrano': 'Policía Joven'}\"\r\ntt0816711,\"{'Brad Pitt': 'Gerry Lane', 'Mireille Enos': 'Karin Lane', 'Daniella Kertesz': 'Segen', 'James Badge Dale': 'Captain Speke', 'Ludi Boeken': 'Jurgen Warmbrunn', 'Matthew Fox': 'Parajumper', 'Fana Mokoena': 'Thierry Umutoni', 'David Morse': 'Ex-CIA Agent', 'Elyes Gabel': 'Andrew Fassbach', 'Peter Capaldi': 'W.H.O. Doctor', 'Pierfrancesco Favino': 'W.H.O. Doctor', 'Ruth Negga': 'W.H.O. Doctor', 'Moritz Bleibtreu': 'W.H.O. Doctor', 'Sterling Jerins': 'Constance Lane', 'Abigail Hargrove': 'Rachel Lane'}\"\r\ntt1925518,\"{'Tony Jaa': 'Kham', 'RZA': 'LC', 'Petchtai Wongkamlao': 'Mark       (as Phetthai Vongkumlao)', 'JeeJa Yanin': 'Ping Ping       (as Jija Yanin)', 'Marrese Crump': 'No. 2', 'Yayaying Rhatha Phongam': 'No. 20       (as Rhatha Phongam)', 'Kazu Patrick Tang': 'No. 18', 'David Ismalone': 'No. 24', 'Theerada Kittisiriprasert': 'Sue Sue', 'Boonsong Nakphoo': 'No. 14', 'Sophon Phoonsawat': 'No. 45', 'Anton Kalinitchenko': 'No. 31', 'Jawed El Berni': 'No. 85       (as Jawed Al Berni)', 'Solatorn Lungluang': \"\"Kham's Father\"\", 'Patipol Sochada': 'Young Kham'}\"\r\ntt1932767,\"{'Julianne Moore': 'Susanna', 'Steve Coogan': 'Beale', 'Alexander Skarsgård': 'Lincoln', 'Joanna Vanderham': 'Margo', 'Onata Aprile': 'Maisie', 'Sadie Rae': 'Zoe       (as Sadie Rae Lee)', 'Jesse Stone Spadaccini': 'Martin       (as Jesse Spadaccini)', 'Diana García': 'Cecelia       (as Diana Garcia Soto)', 'Amelia Campbell': 'Ms. Baine', 'Maddie Corman': 'Ms. Fairchild-Tetenbaum', 'Paddy Croft': 'Mrs. Wix', 'Trevor Long': 'Musician #1', 'Emma Holzer': 'Holly', 'Nadia Gan': 'Hostess', 'Samantha Buck': \"\"Zoe's Mother\"\"}\"\r\ntt3316948,\"{'Jesse Eisenberg': 'Mike Howell', 'Kristen Stewart': 'Phoebe Larson', 'Topher Grace': 'Adrian Yates', 'Connie Britton': 'Victoria Lasseter', 'Walton Goggins': 'Laugher', 'John Leguizamo': 'Rose', 'Bill Pullman': 'Krueger', 'Tony Hale': 'Petey Douglas', 'Stuart Greer': 'Sheriff Watts', 'Michael Papajohn': 'Otis', 'Monique Ganderton': 'Crane', 'Nash Edgerton': 'Beedle', \"\"Paul Andrew O'Connor\"\": 'Diesel', 'Freddie Poole': 'Potter', 'Ilram Choi': 'Newton'}\"\r\ntt0029947,\"{'Katharine Hepburn': 'Susan', 'Cary Grant': 'David', 'Charles Ruggles': 'Major Applegate       (as Charlie Ruggles)', 'Walter Catlett': 'Slocum', 'Barry Fitzgerald': 'Mr. Gogarty', 'May Robson': 'Aunt Elizabeth', 'Fritz Feld': 'Dr. Lehman', 'Leona Roberts': 'Mrs. Gogarty', 'George Irving': 'Mr. Peabody', 'Tala Birell': 'Mrs. Lehman', 'Virginia Walker': 'Alice Swallow', 'John Kelly': 'Elmer'}\"\r\ntt0993846,\"{'Leonardo DiCaprio': 'Jordan Belfort', 'Jonah Hill': 'Donnie Azoff', 'Margot Robbie': 'Naomi Lapaglia', 'Matthew McConaughey': 'Mark Hanna', 'Kyle Chandler': 'Agent Patrick Denham', 'Rob Reiner': 'Max Belfort', 'Jon Bernthal': 'Brad', 'Jon Favreau': 'Manny Riskin', 'Jean Dujardin': 'Jean Jacques Saurel', 'Joanna Lumley': 'Aunt Emma', 'Cristin Milioti': 'Teresa Petrillo', 'Christine Ebersole': 'Leah Belfort', 'Shea Whigham': 'Captain Ted Beecham', 'Katarina Cas': 'Chantalle', 'P.J. Byrne': \"\"Nicky Koskoff ('Rugrat')\"\"}\"\r\ntt3397884,\"{'Emily Blunt': 'Kate Macer', 'Benicio Del Toro': 'Alejandro', 'Josh Brolin': 'Matt Graver', 'Victor Garber': 'Dave Jennings', 'Jon Bernthal': 'Ted', 'Daniel Kaluuya': 'Reggie Wayne', 'Jeffrey Donovan': 'Steve Forsing', 'Raoul Max Trujillo': 'Rafael       (as Raoul Trujillo)', 'Julio Cesar Cedillo': 'Fausto Alarcon', 'Hank Rogerson': 'Phil Coopers', 'Bernardo Saracino': 'Manuel Diaz', 'Maximiliano Hernández': 'Silvio       (as Maximiliano Hernandez)', 'Kevin Wiggins': 'Burnett', 'Edgar Arreola': 'Guillermo', 'Kim Larrichio': \"\"Silvio's Wife\"\"}\"\r\ntt1592281,\"{'Michelle Williams': 'Margot', 'Seth Rogen': 'Lou', 'Luke Kirby': 'Daniel', 'Sarah Silverman': 'Geraldine', 'Jennifer Podemski': 'Karen', \"\"Diane D'Aquila\"\": 'Harriet', 'Vanessa Carter': 'Tony       (as Vanessa Coelho)', 'Graham Abbey': 'James', 'Damien Atkins': 'Aquafit Instructor', 'Aaron Abrams': 'Aaron', 'Dyan Bell': 'Dyan', 'Albert Howell': 'Albert', 'Danielle Miller': 'Danielle', 'Matt Baram': 'Matt', 'Avi Phillips': 'Avi'}\"\r\ntt1376709,\"{'Brendan Cowell': 'Jim', 'Peter Dinklage': 'Charlie', 'Yvonne Strahovski': 'Alice', 'Peter Helliar': 'Blake', 'Megan Gale': 'Francesca Moretti', 'Bridie Carter': 'Marie', 'Travis McMahon': 'Owen', 'Katrina Milosevic': 'Rebecca', 'Steve Bisley': 'Bill', 'Madeleine Harding': 'Janine', 'Cindy Waddingham': 'Caitlin', 'Leon Bryant': 'I Love You Him', 'Angela Scundi': 'I Love You Her', 'Rachel Waters': 'Grossed Out Child', 'Heidi Valkenburg': 'Jenny'}\"\r\ntt0787474,\"{'Steve Blum': 'Shoe /              Sparky       (voice)', 'Dee Bradley Baker': 'Fish /              Wheels /              Bucket       (voice)', 'Max Mitchell': 'Baby Eggs       (voice)', 'Ben Kingsley': 'Snatcher       (voice)', 'Jared Harris': 'Lord Portley-Rind       (voice)', 'Nick Frost': 'Mr. Trout       (voice)', 'Richard Ayoade': 'Mr. Pickles       (voice)', 'Tracy Morgan': 'Mr. Gristle       (voice)', 'Nika Futterman': 'Oil Can /              Knickers       (voice)', 'Pat Fraley': 'Fragile /              Sweets       (voice)', 'Fred Tatasciore': 'Clocks /              Specs       (voice)', 'Isaac Hempstead Wright': 'Eggs       (voice)', 'Elle Fanning': 'Winnie Portley-Rind       (voice)', 'Maurice LaMarche': 'Sir Langsdale       (voice)', 'James Urbaniak': 'Sir Broderick /              Male Workman 1 /              Male Workman 2       (voice)'}\"\r\ntt4547120,\"{'Jhey Castles': 'Molly Dunn', 'Jason Woods': 'Nick', 'Grace Van Dien': 'Ali', 'Elaine Partnow': 'Mrs. Lowenstein', 'Lane Townsend': 'Hank', 'Allison Adams': 'Teen Molly', 'Kyle Wood': 'Danny       (as Kyle Barck)', 'Robert Evans': 'Mr. Lowenstein', 'Blaire Chandler': 'Jessica', 'Chris Clanton': 'Resnick', 'Chris Cleveland': 'James Simms', 'Antonio Cullari': 'Inspector', 'Alex Diehl': 'Jackson', 'Bill Voorhees': 'Miles', 'Shaun Gerardo': 'Aviator'}\"\r\ntt0290747,\"{'Matthew Le Nevez': 'Kyle', 'Rachael Taylor': 'Teri', 'Jack Thompson': 'Schist', 'Rawiri Paratene': 'Pete Horn', \"\"Alex O'Loughlin\"\": \"\"Fraser       (as Alex O'Lachlan)\"\", 'Steve Bastoni': 'Rene', 'Robert Mammone': 'Mike Ploog', 'Patrick Thompson': 'Jake       (as Pat Thompson)', 'William Zappa': 'Gerber', 'John Batchelor': 'Wayne Thibadeaux', 'Ian Bliss': 'Rodney Thibadeaux', 'Brett Leonard': 'Val Mayerick', 'Imogen Bailey': 'Sarah', 'James Coyne': 'Billy', 'Cheryl Craig': 'Michele'}\"\r\ntt1529572,\"{'Clive Owen': 'Will', 'Catherine Keener': 'Lynn', 'Liana Liberato': 'Annie', 'Jason Clarke': 'Doug Tate', 'Viola Davis': 'Gail Friedman', 'Chris Henry Coffey': 'Graham Weston', 'Spencer Curnutt': 'Peter', 'Aislinn DeButch': 'Katie', 'Noah Emmerich': 'Al Hart', 'Olivia Wickline': 'Louise', 'Zoe Levin': 'Brittany', 'Zanny Laird': 'Serena Edmonds', 'Yolanda Mendoza': 'Tanya', 'Shenell Randall': 'Alexa', 'Jordan Trovillion': 'Waitress'}\"\r\ntt0096787,\"{'Burt Reynolds': 'Charlie B. Barkin       (voice)', 'Dom DeLuise': 'Itchy Itchiford       (voice)', 'Judith Barsi': 'Anne-Marie       (voice)', 'Melba Moore': 'Whippet Angel       (voice)', 'Daryl Gilley': 'Dog Caster       (voice)', 'Candy Devine': 'Vera       (voice)', 'Charles Nelson Reilly': 'Killer       (voice)', 'Vic Tayback': 'Carface       (voice)', 'Rob Fuller': 'Harold       (voice)', 'Earleen Carey': 'Kate       (voice)', 'Anna Manahan': 'Stella Dallas       (voice)', 'Nigel Pegram': 'Sir Reginald       (voice)', 'Loni Anderson': 'Flo       (voice)', 'Ken Page': 'King Gator       (voice)', 'Godfrey Quigley': 'Terrier       (voice)'}\"\r\ntt0238546,\"{'Aaliyah': 'Queen Akasha', 'Stuart Townsend': 'Lestat', 'Marguerite Moreau': 'Jesse', 'Vincent Perez': 'Marius', 'Paul McGann': 'David Talbot', 'Lena Olin': 'Maharet', 'Christian Manon': 'Mael', 'Claudia Black': 'Pandora', 'Bruce Spence': 'Khayman', 'Matthew Newton': 'Armand', 'Tiriel Mora': 'Roger', 'Megan Cooper': 'Maudy       (as Megan Dorman)', 'Johnathan Devoy': 'James', 'Robert Farnham': 'Alex', 'Conrad Standish': 'T. C.'}\"\r\ntt1453403,\"{'James Franco': 'William Vincent', 'Julianne Nicholson': 'Ann', 'Martin Donovan': 'Victor', 'Josh Lucas': 'Boss', 'Haskell King': 'Jason', 'Zoe Lister-Jones': 'Rebecca       (as Zoe Lister Jones)', 'Ty Anania': 'Older Brother', 'Louis Anania': 'Younger Brother', 'Norm Golden': 'Jasper', 'Gibson Frazier': 'Sitting Man', 'Emily Tremaine': 'Cindy', 'Julienne Hanzelka Kim': 'Juliette', 'Vince Jolivette': 'Russell', 'John Tintori': 'Walking Man', 'Mick Casalle': 'Man with Cigarette'}\"\r\ntt1825157,\"{'Jesse Eisenberg': 'Simon /              James', 'Mia Wasikowska': 'Hannah', 'Wallace Shawn': 'Mr Papadopoulos', 'Yasmin Paige': 'Melanie', 'Noah Taylor': 'Harris', 'James Fox': 'The Colonel', 'Cathy Moriarty': 'Kiki', 'Phyllis Somerville': \"\"Simon's Mother\"\", 'Gabrielle Downey': 'Strange Woman', 'Jon Korkes': 'Detective', 'Craig Roberts': 'Young Detective', 'Kobna Holdbrook-Smith': 'Guard /              Doctor', 'Susan Blommaert': 'Liz', 'Bruce Byron': 'Skinhead', 'J. Mascis': 'Janitor       (as J Mascis)'}\"\r\ntt0453451,\"{'Rowan Atkinson': 'Mr. Bean', 'Steve Pemberton': 'Vicar', 'Lily Atkinson': 'Lily at the Stereo', 'Preston Nyman': 'Boy with Train', 'Sharlit Deyzac': 'Buffet Attendant', 'Francois Touch': 'Busker Accordion', 'Emma de Caunes': 'Sabine', 'Arsène Mosca': 'Traffic Controller       (as Arsene Mosca)', 'Stéphane Debac': 'Traffic Controller       (as Stephane Debac)', 'Willem Dafoe': 'Carson Clay', 'Philippe Spall': 'French Journalist', 'Jean Rochefort': \"\"Maitre'D\"\", 'Karel Roden': 'Emil', 'Maxim Baldry': 'Stepan       (as Max Baldry)', 'Pascal Jounier': 'Tipsy Man'}\"\r\ntt1853739,\"{'Sharni Vinson': 'Erin', 'Nicholas Tucci': 'Felix', 'Wendy Glenn': 'Zee', 'AJ Bowen': 'Crispian', 'Joe Swanberg': 'Drake', 'Margaret Laney': 'Kelly       (as Sarah Myers)', 'Amy Seimetz': 'Aimee', 'Ti West': 'Tariq', 'Rob Moran': 'Paul', 'Barbara Crampton': 'Aubrey', 'L.C. Holt': 'Lamb Mask', 'Simon Barrett': 'Tiger Mask', 'Lane Hughes': 'Fox Mask', 'Larry Fessenden': 'Erik Harson', 'Kate Lyn Sheil': 'Talia'}\"\r\ntt2039345,\"{'Elijah Wood': 'Tom Selznick', 'John Cusack': 'Clem', 'Kerry Bishé': 'Emma Selznick', 'Tamsin Egerton': 'Ashley', 'Allen Leech': 'Wayne', 'Don McManus': 'Norman Reisinger', 'Alex Winter': 'Assistant', 'Dee Wallace': 'A & V Interviewer', 'Jim Arnold': 'Janitor', 'Jack Taylor': 'Patrick Godureaux', 'Beth Rollan': \"\"Emma's Publicist       (as Beth Trollan)\"\", 'Amy Gwilliam': \"\"Emma's Assistant\"\", 'Harris Gordon': \"\"Emma's Agent\"\", 'Ricardo Alexander': 'Executive       (as Richard A. Newby)', 'Brendan Murphy': 'Mover #1'}\"\r\ntt2235108,\"{'Tyler James Williams': 'Lionel Higgins', 'Tessa Thompson': 'Samantha White', 'Kyle Gallner': 'Kurt Fletcher', 'Teyonah Parris': \"\"Colandrea 'Coco' Conners\"\", 'Brandon P Bell': 'Troy Fairbanks       (as Brandon Bell)', 'Brittany Curran': 'Sofia Fletcher', 'Justin Dobies': 'Gabe', 'Marque Richardson': 'Reggie', 'Malcolm Barrett': 'Helmut West', 'Dennis Haysbert': 'Dean Fairbanks', 'Peter Syvertsen': 'President Fletcher', 'Brandon Alter': 'George', 'Kate Gaulke': 'Annie       (as Katie Gaulke)', 'Brian James': 'Martin', 'Keith Myers': 'Mitch'}\"\r\ntt0084649,\"{'Derek Jacobi': 'Nicodemus       (voice)', 'Elizabeth Hartman': 'Mrs. Brisby       (voice)', 'Arthur Malet': 'Mr. Ages       (voice)', 'Dom DeLuise': 'Jeremy       (voice)', 'Hermione Baddeley': 'Auntie Shrew       (voice)', 'Shannen Doherty': 'Teresa       (voice)', 'Wil Wheaton': 'Martin       (voice)', 'Jodi Hicks': 'Cynthia       (voice)', 'Ian Fried': 'Timothy       (voice)', 'John Carradine': 'Great Owl       (voice)', 'Peter Strauss': 'Justin       (voice)', 'Paul Shenar': 'Jenner       (voice)', 'Tom Hatten': 'Farmer Fitzgibbons       (voice)', 'Lucille Bliss': 'Mrs. Fitzgibbons       (voice)', 'Aldo Ray': 'Sullivan       (voice)'}\"\r\ntt1302067,\"{'Dan Aykroyd': 'Yogi Bear       (voice)', 'Justin Timberlake': 'Boo Boo       (voice)', 'Anna Faris': 'Rachel', 'Tom Cavanagh': 'Ranger Smith', 'T.J. Miller': 'Ranger Jones', 'Nate Corddry': 'Chief of Staff', 'Andrew Daly': 'Mayor Brown', 'Josh Robert Thompson': 'Narrator       (voice)', 'David Stott': \"\"Mayor's Tailor\"\", 'Greg Johnson': 'Dirty Shopper', 'Christy Qulliam': 'Stylist       (as Christy Quillam)', 'Patricia Aldersley': 'Elderly Purse Lady', 'Tim McLachlan': 'Purse Snatcher', 'Hayden Vernon': 'Security Guard', 'Dean Knowsley': 'Security Guard'}\"\r\ntt0379786,\"{'Nathan Fillion': 'Mal', 'Gina Torres': 'Zoë', 'Alan Tudyk': 'Wash', 'Morena Baccarin': 'Inara', 'Adam Baldwin': 'Jayne', 'Jewel Staite': 'Kaylee', 'Sean Maher': 'Simon', 'Summer Glau': 'River', 'Ron Glass': 'Shepherd Book', 'Chiwetel Ejiofor': 'The Operative', 'David Krumholtz': 'Mr. Universe', 'Michael Hitchcock': 'Dr. Mathias', 'Sarah Paulson': 'Dr. Caron', 'Yan Feldman': 'Mingo', 'Rafael Feldman': 'Fanty'}\"\r\ntt0087365,\"{'Ralph Richardson': 'The Sixth Earl of Greystoke', 'Ian Holm': \"\"Capitaine Phillippe D'Arnot\"\", 'James Fox': 'Lord Charles Esker', 'Christopher Lambert': 'John Clayton /              Tarzan, Lord of the Apes', 'Andie MacDowell': 'Miss Jane Porter', 'Cheryl Campbell': 'Lady Alice Clayton', 'Ian Charleson': 'Jeffson Brown', 'Nigel Davenport': 'Major Jack Downing', 'Nicholas Farrell': 'Sir Hugh Belcher', 'Paul Geoffrey': \"\"Lord John 'Jack' Clayton\"\", 'Richard Griffiths': 'Captain Billings', 'Hilton McRae': 'Willy', 'David Suchet': 'Buller', 'Ravinder': 'Dean', 'John Wells': 'Sir Evelyn Blount'}\"\r\ntt3181822,\"{'Jennifer Lopez': 'Claire Peterson', 'Ryan Guzman': 'Noah Sandborn', 'Ian Nelson': 'Kevin Peterson', 'John Corbett': 'Garrett Peterson', 'Kristin Chenoweth': 'Vicky Lansing', 'Lexi Atkins': 'Allie Callahan', 'Hill Harper': 'Principal Edward Warren', 'Jack Wallace': 'Mr. Sandborn', 'Adam Hicks': 'Jason Zimmer', 'François Chau': 'Detective Johnny Chou       (as Francois Chau)', 'Bailey Chase': 'Benny', 'Kent Avenido': 'Mr. Avenido', 'Travis Schuldt': 'Ethan', 'Brian Mahoney': 'Couper', 'Raquel Gardner': 'Barbara'}\"\r\ntt4566574,\"{'Illeana Douglas': 'Dr. Alison Gray', 'Amy Rider': 'Moira King', 'Brody Hutzler': 'Joshua Dane', 'Adam Dunnells': 'Wilhelm', 'Edward DeRuiter': 'Spencer', 'Tara Price': 'Lt. Commander Elisha Parker', 'Ernest Thomas': 'Admiral Titus Jackson', 'Jeff Hatch': 'Dr. John Bullock', 'Tim Abell': 'Ivan', 'Clare Grant': 'Clare', 'Alison Haislip': 'Ali', 'Milynn Sarley': 'Milynn', 'Bryan Hanna': 'Benedict', 'Rileah Vanderbilt': 'Rileah', 'Patrick Bauchau': 'Dr. Sergie Abramov'}\"\r\ntt0975645,\"{'Anthony Hopkins': 'Alfred Hitchcock', 'Helen Mirren': 'Alma Reville', 'Scarlett Johansson': 'Janet Leigh', 'Danny Huston': 'Whitfield Cook', 'Toni Collette': 'Peggy', 'Michael Stuhlbarg': 'Lew Wasserman', 'Michael Wincott': 'Ed Gein', 'Jessica Biel': 'Vera Miles', \"\"James D'Arcy\"\": 'Anthony Perkins', 'Richard Portnow': 'Barney Balaban', 'Kurtwood Smith': 'Geoffrey Shurlock', 'Ralph Macchio': 'Joseph Stefano', 'Kai Lennox': 'Hilton Green', 'Tara Summers': 'Rita Riggs', 'Wallace Langham': 'Saul Bass'}\"\r\ntt0086856,\"{'Peter Weller': 'Buckaroo Banzai', 'John Lithgow': 'Lord John Whorfin /              Dr. Emilio Lizardo', 'Ellen Barkin': 'Penny Priddy', 'Jeff Goldblum': 'New Jersey', 'Christopher Lloyd': 'John Bigbooté', 'Lewis Smith': 'Perfect Tommy', 'Rosalind Cash': 'John Emdall', 'Robert Ito': 'Professor Hikita', 'Pepe Serna': 'Reno Nevada', 'Ronald Lacey': 'President Widmark', 'Matt Clark': 'Secretary of Defense', 'Clancy Brown': 'Rawhide', 'William Traylor': 'General Catburd', 'Carl Lumbly': 'John Parker', 'Vincent Schiavelli': \"\"John O'Connor\"\"}\"\r\ntt1951266,\"{'Jennifer Lawrence': 'Katniss Everdeen', 'Josh Hutcherson': 'Peeta Mellark', 'Liam Hemsworth': 'Gale Hawthorne', 'Woody Harrelson': 'Haymitch Abernathy', 'Donald Sutherland': 'President Snow', 'Philip Seymour Hoffman': 'Plutarch Heavensbee', 'Julianne Moore': 'President Alma Coin', 'Willow Shields': 'Primrose Everdeen', 'Sam Claflin': 'Finnick Odair', 'Elizabeth Banks': 'Effie Trinket', 'Mahershala Ali': 'Boggs', 'Jena Malone': 'Johanna Mason', 'Jeffrey Wright': 'Beetee', 'Paula Malcomson': \"\"Katniss' Mother\"\", 'Stanley Tucci': 'Caesar Flickerman'}\"\r\ntt2908446,\"{'Kate Winslet': 'Jeanine', 'Jai Courtney': 'Eric', 'Mekhi Phifer': 'Max', 'Shailene Woodley': 'Tris', 'Theo James': 'Four', 'Ansel Elgort': 'Caleb', 'Miles Teller': 'Peter', 'Cynthia Barrett': 'Amity Divergent Woman', 'Justice Leak': 'Amity Divergent Husband', 'Lyndsi LaRose': 'Amity Teacher', 'Charlie Bodin': 'Amity Server', 'Octavia Spencer': 'Johanna', 'Zoë Kravitz': 'Christina', 'Ben Lloyd-Hughes': 'Will', 'Tony Goldwyn': 'Andrew'}\"\r\ntt2872750,\"{'Justin Fletcher': 'Shaun /              Timmy       (voice)', 'John Sparkes': 'The Farmer /              Bitzer       (voice)', 'Omid Djalili': 'Trumper       (voice)', 'Richard Webber': 'Shirley       (voice)', 'Kate Harbour': \"\"Timmy's Mum /              Meryl       (voice)\"\", 'Tim Hands': 'Slip       (voice)', 'Andy Nyman': 'Nuts       (voice)', 'Simon Greenall': 'Twins       (voice)', 'Emma Tate': 'Hazel       (voice)', 'Jack Paulson': 'Celebrity with Hair Trouble       (voice)', 'Sean Connolly': 'Maitre D /              Golfer /              Stylists /              Angry Panto Horse /              Hospital Characters       (voice)', 'Henry Burton': 'Junior Doctor /              Animal Containment Visitor       (voice)', 'Dhimant Vyas': 'Hospital Consultant       (voice)', 'Sophie Laughton': 'Animal Containment Visitor       (voice)', 'Nia Medi James': 'Operatic Sheep       (voice)'}\"\r\ntt0470752,\"{'Domhnall Gleeson': 'Caleb', 'Alicia Vikander': 'Ava', 'Oscar Isaac': 'Nathan', 'Sonoya Mizuno': 'Kyoko', 'Corey Johnson': 'Jay', 'Claire Selby': 'Lily', 'Symara A. Templeman': 'Jasmine       (as Symara Templeman)', 'Gana Bayarsaikhan': 'Jade', 'Tiffany Pisani': 'Katya', 'Elina Alminas': 'Amber       (as Lina Alminas)'}\"\r\ntt1356864,\"{'Joaquin Phoenix': 'Joaquin Phoenix', 'Antony Langdon': 'Anton', 'Carey Perloff': 'Himself - Play Director', 'Larry McHale': 'Larry McHale', 'Casey Affleck': 'Casey Affleck', 'Jack Nicholson': 'Jack Nicholson', 'Billy Crystal': 'Billy Crystal', 'Danny Glover': 'Danny Glover', 'Bruce Willis': 'Himself', 'Robin Wright': 'Herself', 'Johnny Moreno': \"\"Victor - Danny DeVito's stand-in       (as Johnny Marino)\"\", 'Danny DeVito': 'Danny DeVito', 'Jerry Penacoli': 'Jerry', 'Susan Patricola': 'Susan', 'Patrick Whitesell': 'Patrick'}\"\r\ntt1116184,\"{'Johnny Knoxville': 'Himself', 'Bam Margera': 'Himself', 'Ryan Dunn': 'Himself', 'Steve-O': 'Himself', \"\"Jason 'Wee Man' Acuña\"\": 'Himself', 'Preston Lacy': 'Himself', 'Chris Pontius': 'Himself', 'Ehren McGhehey': 'Himself', 'Dave England': 'Himself', 'Loomis Fall': 'Himself', 'Tony Hawk': 'Himself', 'Eric Koston': 'Himself', 'April Margera': 'Herself', 'Phil Margera': 'Himself', 'Spike Jonze': 'Himself'}\"\r\ntt2626350,\"{'Ryan Guzman': 'Sean', 'Briana Evigan': 'Andie', 'Adam Sevani': 'Moose', 'Misha Gabriel Hamilton': 'Eddy       (as Misha Gabriel)', 'Stephen Boss': \"\"Jason       (as Stephen 'tWitch' Boss)\"\", 'Stephen Stevo Jones': \"\"Jasper       (as Stephen 'Stev-O' Jones)\"\", 'David Shreibman': \"\"Chad       (as David 'Kid David' Shreibman)\"\", 'Mari Koda': 'Jenny Kido', 'Christopher Scott': 'Hair', 'Luis Rosado': \"\"Monster       (as Luis 'Luigi' Rosado)\"\", 'Chadd Smith': 'Vladd', 'Facundo Lombard': 'Marcos Santiago', 'Martín Lombard': 'Martin Santiago', 'Parris Goebel': 'Violet', 'Cyrus Spencer': \"\"Gauge       (as Cyrus 'Glitch' Spencer)\"\"}\"\r\ntt0107983,\"{'Gary Oldman': 'Jack Grimaldi', 'Wallace Wood': 'Waiter', 'Juliette Lewis': 'Sheri', 'David Proval': 'Scully', 'Will Patton': 'Martie', 'Gene Canfield': 'John', 'Larry Joshua': 'Joey', 'Michael Wincott': 'Sal', 'Lena Olin': 'Mona Demarkov', 'William Duff-Griffin': 'Paddy', 'James Cromwell': 'Cage', 'Paul Butler': 'Skouras', 'Annabella Sciorra': 'Natalie Grimaldi', 'Tony Sirico': 'Malacci', 'Victoria Bastel': 'Girl #1'}\"\r\ntt1229340,\"{'Will Ferrell': 'Ron Burgundy', 'Steve Carell': 'Brick Tamland', 'Paul Rudd': 'Brian Fantana', 'David Koechner': 'Champ Kind', 'Christina Applegate': 'Veronica Corningstone', 'Dylan Baker': 'Freddie Shapp', 'Meagan Good': 'Linda Jackson', 'Judah Nelson': 'Walter Burgundy', 'James Marsden': 'Jack Lime', 'Greg Kinnear': 'Gary', 'Josh Lawson': 'Kench Allenby', 'Kristen Wiig': 'Chani Lastnamé', 'Fred Willard': 'Ed Harken', 'Chris Parnell': 'Garth', 'Harrison Ford': 'Mack Tannen'}\"\r\ntt1229238,\"{'Tom Cruise': 'Ethan Hunt', 'Paula Patton': 'Jane', 'Simon Pegg': 'Benji', 'Jeremy Renner': 'Brandt', 'Michael Nyqvist': 'Hendricks', 'Vladimir Mashkov': 'Sidorov', 'Samuli Edelmann': 'Wistrom', 'Ivan Shvedoff': 'Leonid Lisenker', 'Anil Kapoor': 'Brij Nath', 'Léa Seydoux': 'Sabine Moreau', 'Josh Holloway': 'Hanaway', 'Pavel Kríz': 'Marek Stefanski', 'Miraj Grbic': 'Bogdan', 'Ilia Volok': 'The Fog', 'Goran Navojec': 'Burly Russian Prisoner'}\"\r\ntt1229238,\"{'Tom Cruise': 'Ethan Hunt', 'Paula Patton': 'Jane', 'Simon Pegg': 'Benji', 'Jeremy Renner': 'Brandt', 'Michael Nyqvist': 'Hendricks', 'Vladimir Mashkov': 'Sidorov', 'Samuli Edelmann': 'Wistrom', 'Ivan Shvedoff': 'Leonid Lisenker', 'Anil Kapoor': 'Brij Nath', 'Léa Seydoux': 'Sabine Moreau', 'Josh Holloway': 'Hanaway', 'Pavel Kríz': 'Marek Stefanski', 'Miraj Grbic': 'Bogdan', 'Ilia Volok': 'The Fog', 'Goran Navojec': 'Burly Russian Prisoner'}\"\r\ntt1583421,\"{'Dwayne Johnson': 'Roadblock', 'Jonathan Pryce': 'President', 'Byung-Hun Lee': 'Storm Shadow', 'Elodie Yung': 'Jinx', 'Ray Stevenson': 'Firefly', 'D.J. Cotrona': 'Flint', 'Adrianne Palicki': 'Jaye', 'Channing Tatum': 'Duke', 'Ray Park': 'Snake Eyes', 'Luke Bracey': 'Cobra Commander', 'Walton Goggins': 'Warden Nigel James', 'Arnold Vosloo': 'Zartan', 'Joseph Mazzello': 'Mouse       (as Joe Mazzello)', 'Nick Erickson': 'President Picture Double', 'RZA': 'Blind Master'}\"\r\ntt0493430,\"{'Johnny Knoxville': 'Himself', 'Bam Margera': 'Himself', 'Steve-O': 'Himself', 'Chris Pontius': 'Himself', 'Ryan Dunn': 'Himself', \"\"Jason 'Wee Man' Acuña\"\": 'Himself', 'Preston Lacy': 'Himself', 'Dave England': 'Himself', 'Ehren McGhehey': 'Himself', 'Phil Margera': 'Himself', 'April Margera': 'Herself', 'Jess Margera': 'Himself', 'Brandon DiCamillo': 'Himself', 'Mat Hoffman': 'Himself', 'Tony Hawk': 'Himself'}\"\r\ntt2333784,\"{'Sylvester Stallone': 'Barney Ross', 'Jason Statham': 'Lee Christmas', 'Harrison Ford': 'Drummer', 'Arnold Schwarzenegger': 'Trench', 'Mel Gibson': 'Stonebanks', 'Wesley Snipes': 'Doc', 'Dolph Lundgren': 'Gunner', 'Randy Couture': 'Toll Road', 'Terry Crews': 'Caesar', 'Kelsey Grammer': 'Bonaparte', 'Glen Powell': 'Thorn', 'Antonio Banderas': 'Galgo', 'Victor Ortiz': 'Mars', 'Ronda Rousey': 'Luna', 'Kellan Lutz': 'Smilee'}\"\r\ntt0286788,\"{'Amanda Bynes': 'Daphne Reynolds', 'Colin Firth': 'Henry Dashwood', 'Kelly Preston': 'Libby Reynolds', 'Eileen Atkins': 'Jocelyn Dashwood', 'Anna Chancellor': 'Glynnis Payne', 'Jonathan Pryce': 'Alistair Payne', 'Oliver James': 'Ian Wallace', 'Christina Cole': 'Clarissa Payne', 'Sylvia Syms': 'Princess Charlotte', 'Soleil McGhee': 'Young Daphne', 'Peter Reeves': 'Sir John Dashwood', 'James Greene': 'Percy', 'Steven Osborne': 'Staff Member', 'Mike Toller': \"\"Libby's Band Member\"\", 'Tom Penn': \"\"Libby's Band Member\"\"}\"\r\ntt0120800,\"{'Jessalyn Gilsig': 'Kayley       (voice)', 'Andrea Corr': 'Kayley       (singing voice)', 'Cary Elwes': 'Garrett       (voice)', 'Bryan White': 'Garrett       (singing voice)', 'Gary Oldman': 'Ruber       (voice)', 'Eric Idle': 'Devon       (voice)', 'Don Rickles': 'Cornwall       (voice)', 'Jane Seymour': 'Juliana       (voice)', 'Céline Dion': 'Juliana       (singing voice) (as Celine Dion)', 'Pierce Brosnan': 'King Arthur       (voice)', 'Steve Perry': 'King Arthur       (singing voice)', 'Bronson Pinchot': 'Griffin       (voice)', 'Jaleel White': 'Bladebeak       (voice)', 'Gabriel Byrne': 'Lionel       (voice)', 'John Gielgud': 'Merlin       (voice) (as Sir John Gielgud)'}\"\r\ntt1571249,\"{'Bill Hader': 'Milo Dean', 'Kristen Wiig': 'Maggie Dean', 'Luke Wilson': 'Lance', 'Ty Burrell': 'Rich', 'Boyd Holbrook': 'Billy', 'Joanna Gleason': 'Judy', 'Kathleen Rose Perkins': 'Carlie', 'Adriane Lenox': 'Dr. Linda Essex', 'Sydney Lucas': 'Young Maggie', 'Eddie Schweighardt': 'Young Milo', 'Paul Castro Jr.': 'Eric', 'Benjamin McGowan': 'Cullen', 'Jennifer Smith': 'Bar Woman', 'Genevieve Adams': 'Store Manager', 'Truck Hudson': 'Security Officer'}\"\r\ntt3899796,\"{'Ian Ziering': 'Fin Shepard', 'Tara Reid': 'April Shepard', 'Cassandra Scerbo': 'Nova Clarke       (as Cassie Scerbo)', 'Frankie Muniz': 'Lucas Stevens', 'Ryan Whitney Newman': 'Claudia Shepard       (as Ryan Newman)', 'David Hasselhoff': 'Gilbert Grayson Shepard', 'Mark Cuban': 'President Marcus Robbins', 'Bo Derek': 'May Wexler', 'Blair Fowler': 'Jess', 'Michael Winslow': \"\"Brian 'Jonesy' Jones\"\", 'Jack Griffo': 'Billy', 'Michelle Beadle': 'Agent Argyle', 'Ne-Yo': 'Agent Devoreaux', 'Chris Jericho': 'Bruce the Ride Attendant', 'Mark McGrath': 'Martin Brody'}\"\r\ntt1680138,\"{'Tiffany': \"\"Terry O'Hara\"\", 'Debbie Gibson': 'Dr. Nikki Riley', 'A Martinez': 'Dr. Diego Ortiz', 'Kathryn Joosten': 'Angie Polk', 'Kevin M. Horton': 'R.J. Cupelli', 'Carey Van Dyke': 'Justin', 'Micky Dolenz': 'Himself', 'Robert R. Shafer': 'Zeke       (as Bobby Ray Shafer)', 'Carl Ciarfalio': 'Billy', 'Steve Hart': 'Ray       (as Stephen P. Hart)', 'Kaiwi Lyman': 'Tom       (as Kaiwi Lyman-Mersereau)', 'Patrick Hancock': 'Ben', 'Arden Cho': 'Gia', 'Chris Neville': 'Manny', 'Kristen Wilson': 'Barbara'}\"\r\ntt1450321,\"{'James McAvoy': 'Bruce', 'Jamie Bell': 'Lennox', 'Eddie Marsan': 'Bladesey', 'Imogen Poots': 'Drummond', 'Brian McCardie': 'Gillman', 'Emun Elliott': 'Inglis', 'Gary Lewis': 'Gus', 'John Sessions': 'Toal', 'Shauna Macdonald': 'Carole', 'Jim Broadbent': 'Dr. Rossi', 'Joanne Froggatt': 'Mary', 'Kate Dickie': 'Chrissie', 'Martin Compston': 'Gorman', 'Iain De Caestecker': 'Ocky', 'Shirley Henderson': 'Bunty'}\"\r\ntt1587807,\"{'Paul Logan': 'Jason Fitch', 'Tiffany': 'Sarah Monroe', 'Barry Williams': 'Bob Grady', 'David Labiosa': 'Colonel Antonio Diaz', 'Jude Gerard Prest': 'Dr. Brian Higgins', 'Jesse Daly': 'Dr. Eli Gordon', 'Cooper Harris': 'Lt. Julia', 'William Morse': 'Lt. Stritch', 'Clint Browning': 'Captain Jonas', 'Matt Lagan': 'Submarine Captain Jim', 'Jonathan Nation': 'Mort', 'Jesel Ortloff': 'Mom', 'Lola Forsberg': 'Steph', 'Jillian Easton': 'Jane the Reporter', 'Joseph Porter': 'Ensign Filbert'}\"\r\ntt2637276,\"{'Mark Wahlberg': 'John', 'Seth MacFarlane': 'Ted       (voice)', 'Amanda Seyfried': 'Samantha', 'Jessica Barth': 'Tami-Lynn', 'Giovanni Ribisi': 'Donny', 'Morgan Freeman': 'Patrick Meighan', 'Sam J. Jones': 'Himself', 'Patrick Warburton': 'Guy', 'Michael Dorn': 'Rick', 'Bill Smitrovich': 'Frank', 'John Slattery': 'Shep Wild', 'Cocoa Brown': 'Joy', 'John Carroll Lynch': 'Tom Jessup', 'Ron Canada': 'Judge', 'Liam Neeson': 'Customer'}\"\r\ntt0104040,\"{'D.B. Sweeney': 'Doug Dorsey       (as D. B. Sweeney)', 'Moira Kelly': 'Kate Moseley', 'Roy Dotrice': 'Anton Pamchenko', \"\"Terry O'Quinn\"\": 'Jack Moseley', 'Dwier Brown': 'Hale Forrest', 'Chris Benson': 'Walter Dorsey', 'Kevin Peeks': 'Brian Newman', 'Barry Flatman': 'Rick Tuttle', 'Rachelle Ottley': 'Lorie Peckarovski', 'Steve Sears': 'Spindler', 'Nahanni Johnstone': 'Gita', 'Michael Hogan': 'Doctor', 'R.D. Reid': 'Calgary Cop', 'Dick Grant': 'Olympic Commentator', 'Melanie Miller': 'Olympic Commentator'}\"\r\ntt2109248,\"{'Mark Wahlberg': 'Cade Yeager', 'Stanley Tucci': 'Joshua Joyce', 'Kelsey Grammer': 'Harold Attinger', 'Nicola Peltz': 'Tessa Yeager', 'Jack Reynor': 'Shane Dyson', 'Titus Welliver': 'James Savoy', 'Sophia Myles': 'Darcy Tirrel', 'Bingbing Li': 'Su Yueming', 'T.J. Miller': 'Lucas Flannery', 'James Bachman': 'Gill Wembley', 'Thomas Lennon': 'Chief of Staff', 'Charles Parnell': 'CIA Director', 'Erika Fong': 'CIA Analyst', 'Michael Collins': 'CIA Analyst', 'Geng Han': 'Convertible Passenger'}\"\r\ntt1399103,\"{'Shia LaBeouf': 'Sam Witwicky', 'Rosie Huntington-Whiteley': 'Carly', 'Josh Duhamel': 'Lennox', 'John Turturro': 'Simmons', 'Tyrese Gibson': 'Epps', 'Patrick Dempsey': 'Dylan', 'Frances McDormand': 'Mearing', 'John Malkovich': 'Bruce Brazos', 'Kevin Dunn': 'Ron Witwicky', 'Julie White': 'Judy Witwicky', 'Alan Tudyk': 'Dutch', 'Ken Jeong': 'Jerry Wang', 'Glenn Morshower': 'General Morshower', 'Lester Speight': 'Eddie', 'Buzz Aldrin': 'Buzz Aldrin'}\"\r\ntt1055369,\"{'Shia LaBeouf': 'Sam Witwicky', 'Megan Fox': 'Mikaela Banes', 'Josh Duhamel': 'Major Lennox', 'Tyrese Gibson': 'USAF Chief Master Sergeant Epps', 'John Turturro': 'Simmons', 'Ramon Rodriguez': 'Leo Spitz', 'Kevin Dunn': 'Ron Witwicky', 'Julie White': 'Judy Witwicky', 'Isabel Lucas': 'Alice', 'John Benjamin Hickey': 'Galloway', 'Matthew Marsden': 'Special Air Service Forces', 'Andrew Howard': 'Special Air Service Forces', 'Michael Papajohn': 'Cal', 'Glenn Morshower': 'General Morshower', 'John Eric Bentley': 'Aide'}\"\r\ntt1792794,\"{'Cody Deal': 'Thor', 'Richard Grieco': 'Loki', 'Patricia Velasquez': 'Jarnsaxa', 'Kevin Nash': 'Odin', 'Jess Allen': 'Baldir', 'Nicole Arianna Fox': 'Red Norn       (as Nicole Fox)', 'Leslea Fisher': 'Blonde Norn', 'Lauren Halperin': 'Norn', 'Charlie Glackin': 'Hundig', 'Chris Ivan Cevic': 'Himdall', 'Rodney Wilson': 'Hrothgar', 'Gerald Webb': 'Street Punk       (as William Webb)', 'Kristen Kerr': 'Herja', 'Jason Medbury': 'Guardian of the Tree of Life', 'Hans Linke': 'Background Actor'}\"\r\ntt0113243,\"{'Jonny Lee Miller': 'Dade', 'Angelina Jolie': 'Kate', 'Jesse Bradford': 'Joey', 'Matthew Lillard': 'Cereal', 'Laurence Mason': 'Nikon', 'Renoly Santiago': 'Phreak', 'Fisher Stevens': 'The Plague', 'Alberta Watson': 'Lauren Murphy', 'Darren Lee': 'Razor', 'Peter Y. Kim': 'Blade', 'Ethan Browne': 'Curtis', 'Lorraine Bracco': 'Margo', 'Wendell Pierce': 'Agent Dick Gill', 'Michael Gaston': 'Agent Bob', 'Marc Anthony': 'Agent Ray'}\"\r\ntt2246549,\"{'Bill Oberst Jr.': 'Abraham Lincoln', 'Kent Igleheart': 'Thomas Lincoln', 'Rhianna Van Helton': 'Nancy Lincoln', 'Brennen Harper': 'Young Abe Lincoln', 'Josh Sinyard': 'Aide       (as Joshua Sinyard)', 'Debra Crittenden': 'Mary Todd Lincoln', 'Bernie Ask': 'Edwin Stanton', 'Chris Hlozek': 'Major John McGill', 'Richard Schenkman': 'Dr. Malinoff', 'Jim E. Chandler': 'Eckert', 'Corey Seawell': 'Union Soldier', 'Jason Vail': 'John Wilkinson', 'Jason Hughley': 'Wilson Brown', 'Eric Lee Galloway': 'Chris Pike       (as Eric Galloway)', 'Ronald Ogden': 'Robert Chamberlin       (as Ron Ogden)'}\"\r\ntt0337579,\"{'Ice Cube': 'Calvin', 'Cedric the Entertainer': 'Eddie', 'Sean Patrick Thomas': 'Jimmy', 'Eve': 'Terri', 'Troy Garity': 'Isaac', 'Michael Ealy': 'Ricky', 'Leonard Earl Howze': 'Dinka', 'Harry Lennix': 'Quentin Leroux', 'Robert Wisdom': 'Alderman Brown', 'Jazsmin Lewis': 'Jennifer', 'Carl Wright': 'Checkers Fred', 'DeRay Davis': 'Hustle Guy', 'Kenan Thompson': 'Kenard', 'Queen Latifah': 'Gina', 'Garcelle Beauvais': 'Loretta       (as Garcelle Beauvais-Nilon)'}\"\r\ntt0388500,\"{'Queen Latifah': 'Gina Norris', 'Alicia Silverstone': 'Lynn', 'Andie MacDowell': 'Terri', 'Alfre Woodard': 'Ms. Josephine', 'Mena Suvari': 'Joanne', 'Della Reese': 'Mrs. Towner', 'Golden Brooks': 'Chanel', 'Laura Hayes': 'Paulette       (as Miss Laura Hayes)', 'Paige Hurd': 'Vanessa', 'Lil J.J.': \"\"Willie       (as L'il JJ)\"\", 'LisaRaye McCoy': 'Rochelle       (as Lisaraye McCoy)', 'Keshia Knight Pulliam': 'Darnelle', 'Sherri Shepherd': 'Ida', 'Kimora Lee Simmons': 'Denise', 'Sheryl Underwood': 'Catfish Rita'}\"\r\ntt0097576,\"{'Harrison Ford': 'Indiana Jones', 'Sean Connery': 'Professor Henry Jones', 'Denholm Elliott': 'Marcus Brody', 'Alison Doody': 'Elsa', 'John Rhys-Davies': 'Sallah', 'Julian Glover': 'Walter Donovan', 'River Phoenix': 'Young Indy', 'Michael Byrne': 'Vogel', 'Kevork Malikyan': 'Kazim', 'Robert Eddison': 'Grail Knight', 'Richard Young': 'Fedora', 'Alexei Sayle': 'Sultan', 'Alex Hyde-White': 'Young Henry', 'Paul Maxwell': 'Panama Hat', 'Isla Blair': 'Mrs. Donovan       (as Mrs. Glover)'}\"\r\ntt0367882,\"{'Harrison Ford': 'Indiana Jones', 'Cate Blanchett': 'Irina Spalko', 'Karen Allen': 'Marion Ravenwood', 'Shia LaBeouf': 'Mutt Williams', 'Ray Winstone': \"\"'Mac' George Michale\"\", 'John Hurt': 'Professor Oxley', 'Jim Broadbent': 'Dean Charles Stanforth', 'Igor Jijikine': 'Dovchenko', 'Dimitri Diatchenko': 'Russian Suit', 'Ilia Volok': 'Russian Suit', 'Emmanuel Todorov': 'Russian Soldier', 'Pasha D. Lychnikoff': 'Russian Soldier', 'Andrew Divoff': 'Russian Soldier', 'Venya Manzyuk': 'Russian Soldier       (as Veniamin Manzyuk)', 'Alan Dale': 'General Ross'}\"\r\ntt0071360,\"{'Gene Hackman': 'Harry Caul', 'John Cazale': 'Stan', 'Allen Garfield': 'Bernie Moran', 'Frederic Forrest': 'Mark', 'Cindy Williams': 'Ann', 'Michael Higgins': 'Paul', 'Elizabeth MacRae': 'Meredith       (as Elizabeth Mac Rae)', 'Teri Garr': 'Amy', 'Harrison Ford': 'Martin Stett', 'Mark Wheeler': 'Receptionist', 'Robert Shields': 'The Mime', 'Phoebe Alexander': 'Lurleen'}\"\r\ntt0077745,\"{'Donald Sutherland': 'Matthew Bennell', 'Brooke Adams': 'Elizabeth Driscoll', 'Jeff Goldblum': 'Jack Bellicec', 'Veronica Cartwright': 'Nancy Bellicec', 'Leonard Nimoy': 'Dr. David Kibner', 'Art Hindle': 'Dr. Geoffrey Howell', 'Lelia Goldoni': 'Katherine Hendley', 'Kevin McCarthy': 'Running Man', 'Don Siegel': 'Taxi Driver', 'Tom Luddy': 'Ted Hendley', 'Stan Ritchie': 'Stan', 'David Fisher': 'Mr. Gianni', 'Tom Dahlgren': 'Detective', 'Garry Goodrow': 'Dr. Boccardo       (as Gary Goodrow)', 'Jerry Walter': 'Restaurant Owner'}\"\r\ntt1137470,\"{'Jessica Biel': 'Alice Eckle', 'Raymond L. Brown Jr.': 'Burger Hop Manager', 'Jenny Gulley': 'Brenda', \"\"Beverly D'Angelo\"\": 'Helen Eckle', 'Steve Boles': 'Bob Eckle', 'James Marsden': 'Scott', 'Bill Hader': 'Doctor Turnstall', 'Darlene Hunt': 'Doctor Adams', 'Cheryl McConnell': 'Woman Administrator', 'Kirstie Alley': 'Aunt Rita', 'Kurt Fuller': 'Reverend Norm', 'Tracy Morgan': 'Keyshawn', 'Jake Gyllenhaal': 'Howard Birdwell', 'Malinda Williams': 'Rakeesha', 'Kendrick Cross': 'Security Guard'}\"\r\ntt2023587,\"{'Jessica Chastain': 'Annabel', 'Nikolaj Coster-Waldau': 'Lucas /              Jeffrey', 'Megan Charpentier': 'Victoria', 'Isabelle Nélisse': 'Lilly       (as Isabelle Nelisse)', 'Daniel Kash': 'Dr. Dreyfuss', 'Javier Botet': 'Mama', 'Jane Moffat': 'Jean Podolski /              Mama (Voice)', 'Morgan McGarry': 'Young Victoria', 'David Fox': 'Burnsie', 'Dominic Cuzzocrea': 'Ron', 'Christopher Marren': 'Cop       (as Chris Marren)', 'Julia Chantrey': 'Nina', 'Ray Kahnert': 'Judge', 'Diane Gordon': 'Louise', 'Matthew Edison': 'Young Cop'}\"\r\ntt1440161,\"{'Kate Hudson': 'Marley Corbett', 'Gael García Bernal': 'Julian Goldstein', 'Kathy Bates': 'Beverly Corbett', 'Lucy Punch': 'Sarah Walker', 'Romany Malco': 'Peter Cooper', 'Rosemarie DeWitt': 'Renee Blair       (as Rosemarie Dewitt)', 'Whoopi Goldberg': 'God', 'Treat Williams': 'Jack Corbett', 'Steven Weber': 'Rob Randolf', 'Peter Dinklage': 'Vinnie', 'Alan Dale': 'Dr. Sanders', 'Jason Davis': 'Thomas Blair', 'Bailey Bass': 'Cammie Blair', 'Charlotte Bass': 'Cammie Blair', 'Brett Rice': 'Ad Agency Client'}\"\r\ntt1403981,\"{'Caitlyn Rund': 'Alyssa Craig (11 yrs)       (as Caitlyn Paige Rund)', 'Moisés Acevedo': 'Mugger       (as Moises Acevedo)', 'Noel Rodriguez': 'Mugger', 'Kevin P. McCarthy': 'Police Chief       (as Kevin McCarthy)', 'Chris Cooper': 'Sgt. Neil Craig', 'Robert Pattinson': 'Tyler Hawkins', 'Athena Currey': 'Toothbrush Girl', 'Lena Olin': 'Diane Hirsch', 'Gregory Jbara': 'Les Hirsch', 'Ruby Jerins': 'Caroline Hawkins', 'Pierce Brosnan': 'Charles Hawkins', 'Angela Pietropinto': 'Diner Waitress', 'Tate Ellington': 'Aidan Hall', 'David Deblinger': 'NYU Professor', 'Emilie de Ravin': 'Ally Craig'}\"\r\ntt1699755,\"{'Craig Robinson': 'Wade Walker', 'Kerry Washington': 'Grace Peeples', 'David Alan Grier': 'Virgil Peeples', 'S. Epatha Merkerson': 'Daphne Peeples', 'Tyler James Williams': 'Simon Peeples', 'Melvin Van Peebles': 'Grandpa Peeples', 'Diahann Carroll': 'Nana Peeples', 'Kali Hawk': 'Gloria Peeples', 'Kimrie Lewis': 'Meg       (as Kimrie Lewis-Davis)', 'Malcolm Barrett': 'Chris Walker', 'Ana Gasteyer': 'Mayor Hodge', 'Briana Marin': 'Sexy Mother', 'Angelee Areu': '5-Year-Old-Girl', 'Tuffy Questell': 'Taxi Driver', 'Jerome Preston Bates': 'Skip'}\"\r\ntt2024432,\"{'Jason Bateman': 'Sandy Patterson', 'Melissa McCarthy': 'Diana', 'Jon Favreau': 'Harold Cornish', 'Amanda Peet': 'Trish Patterson', 'T.I.': \"\"Julian       (as Tip 'T.I.' Harris)\"\", 'Genesis Rodriguez': 'Marisol', 'Morris Chestnut': 'Detective Reilly', 'John Cho': 'Daniel Casey', 'Robert Patrick': 'Skiptracer', 'Eric Stonestreet': 'Big Chuck', 'Jonathan Banks': 'Paul', 'Ryan Gaul': 'Bartender', 'Steve Mallory': 'Party Guy', 'Tyler Nilson': 'Party Guy', 'Steve Little': \"\"Party Guy's Buddy\"\"}\"\r\ntt1649419,\"{'Naomi Watts': 'Maria', 'Ewan McGregor': 'Henry', 'Tom Holland': 'Lucas', 'Samuel Joslin': 'Thomas', 'Oaklee Pendergast': 'Simon', 'Marta Etura': 'Simone', 'Sönke Möhring': 'Karl', 'Geraldine Chaplin': 'Old Woman', 'Ploy Jindachote': 'Caregiver', 'Jomjaoi Sae-Limh': 'Red Cross Nurse', 'Johan Sundberg': 'Daniel', 'Jan Roland Sundberg': \"\"Daniel's Father\"\", 'La-Orng Thongruang': 'Old Thai Man', 'Tor Klathaley': 'Young Thai Man', 'Douglas Johansson': 'Mr. Benstrom'}\"\r\ntt3062074,\"{'Ian Ziering': 'Fin', 'Tara Reid': 'April', 'Vivica A. Fox': 'Skye', 'Mark McGrath': 'Martin', 'Kari Wuhrer': 'Ellen', 'Courtney Baxter': 'Mora', 'Dante Palminteri': 'Vaughn', 'Judd Hirsch': 'Ben', 'Stephanie Abrams': 'Stephanie Abrams', 'Kurt Angle': 'Fire Chief', 'Benjy Bronk': 'Homeless Guy', 'Downtown Julie Brown': 'Nurse Fletcher', 'Juan Castano': 'Firefighter', 'Don Castro': \"\"Transit Cop       (as Dan Castro 'Makowski')\"\", 'Lyman Chen': 'Concierge'}\"\r\ntt2724064,\"{'Ian Ziering': 'Fin Shepard', 'Tara Reid': 'April Wexler', 'John Heard': 'George', 'Cassandra Scerbo': 'Nova Clarke       (as Cassie Scerbo)', 'Jason Simmons': 'Baz Hogan       (as Jaason Simmons)', 'Alex Arleo': 'Bobby', 'Neil H. Berkow': 'Carl Hubert', 'Heather Jocelyn Blair': 'Candice', 'Sumiko Braun': 'Deanna', 'Diane Chambers': 'Agnes', 'Julie McCullough': 'Joni Waves', 'Marcus Choi': 'Palmer', 'Israel Sáez de Miguel': 'Captain Carlos Santiago', 'Tiffany Cole': 'Derek', 'Trish Coren': 'Nurse Holden'}\"\r\ntt1772925,\"{'Jiro Ono': 'Himself', 'Yoshikazu Ono': 'Himself', 'Masuhiro Yamamoto': 'Himself', 'Daisuke Nakazama': 'Himself', 'Hachiro Mizutani': 'Himself', 'Harutaki Takahashi': 'Himself', 'Hiroki Fujita': 'Himself', 'Tsunenori Ida': 'Himself', 'Toichiro Iida': 'Himself', 'Akihiro Oyama': 'Himself', 'Shizuo Oyama': 'Himself', 'Hiroshi Okuda': 'Himself', 'Yukio Watanabe': 'Himself', 'Kazunori Kumakawa': 'Himself', 'Kazuo Fukaya': 'Himself'}\"\r\ntt0094074,\"{'Christopher Reeve': 'Superman /              Clark Kent', 'Gene Hackman': 'Lex Luthor /              Nuclear Man       (voice)', 'Jackie Cooper': 'Perry White', 'Marc McClure': 'Jimmy Olsen', 'Jon Cryer': 'Lenny', 'Sam Wanamaker': 'David Warfield', 'Mark Pillow': 'Nuclear Man', 'Mariel Hemingway': 'Lacy Warfield', 'Margot Kidder': 'Lois Lane', 'Damian McLawhorn': 'Jeremy', 'William Hootkins': 'Harry Howler', 'Jim Broadbent': 'Jean Pierre Dubois', 'Stanley Lebor': 'General Romoff', 'Don Fellows': 'Levon Hornsby', 'Robert Beatty': 'U.S. President'}\"\r\ntt0086393,\"{'Christopher Reeve': 'Superman /              Clark Kent', 'Richard Pryor': 'Gus Gorman', 'Jackie Cooper': 'Perry White', 'Marc McClure': 'Jimmy Olsen', \"\"Annette O'Toole\"\": 'Lana Lang', 'Annie Ross': 'Vera', 'Pamela Stephenson': 'Lorelei', 'Robert Vaughn': 'Ross Webster', 'Margot Kidder': 'Lois Lane', \"\"Gavan O'Herlihy\"\": 'Brad', 'Nancy Roberts': 'Unemployment Clerk', 'Graham Stark': 'Blind Man', 'Henry Woolf': 'Penguin Man', 'Gordon Rollings': 'Man In Cap', 'Peter Wear': 'Bank Robber'}\"\r\ntt1263670,\"{'Jeff Bridges': 'Bad Blake', 'James Keane': 'Manager', 'Anna Felix': 'Barmaid', 'Paul Herman': 'Jack Greene', 'Tom Bower': 'Bill Wilson', 'Ryan Bingham': 'Tony', 'Beth Grant': 'Jo Ann', 'Rick Dial': 'Wesley Barnes', 'Maggie Gyllenhaal': 'Jean Craddock', 'Debrianna Mansini': 'Ann', 'Jerry Handy': 'Cowboy       (as Jerry Hardy)', 'Jack Nation': 'Buddy', 'Ryil Adamson': 'Ralphie', 'J. Michael Oliva': \"\"Bear       (as J. Michael 'Yak' Oliva)\"\", 'David Manzanares': 'Nick'}\"\r\ntt0162222,\"{'Paul Sanchez': 'Ramon', 'Lari White': 'Bettina Peterson', 'Leonid Citer': 'Fyodor', 'David Allen Brooks': 'Dick Peterson', 'Yelena Popovic': 'Beautiful Russian Woman       (as Yelena Papovic)', 'Valentina Ananina': 'Russian Babushka', 'Semion Sudarikov': 'Nicolai', 'Tom Hanks': 'Chuck Noland', 'Peter Von Berg': 'Yuri', 'Dmitri S. Boudrine': 'Lev', 'François Duhamel': 'French FedEx Loader', 'Michael Forest': 'Pilot Jack', 'Viveka Davis': 'Pilot Gwen', 'Nick Searcy': 'Stan', 'Jennifer Choe': 'Memphis State Student'}\"\r\ntt0087469,\"{'Harrison Ford': 'Indiana Jones', 'Kate Capshaw': 'Willie Scott', 'Ke Huy Quan': 'Short Round', 'Amrish Puri': 'Mola Ram', 'Roshan Seth': 'Chattar Lal       (as Rushan Seth)', 'Philip Stone': 'Captain Blumburtt', 'Roy Chiao': 'Lao Che', 'David Yip': 'Wu Han', 'Ric Young': 'Kao Kan', 'Chua Kah Joo': 'Chen', 'Rex Ngui': \"\"Maitre d'\"\", 'Philip Tan': 'Chief Henchman       (as Philip Tann)', 'Dan Aykroyd': 'Weber', 'Akio Mitamura': 'Chinese Pilot', 'Michael Yama': 'Chinese Co-Pilot'}\"\r\ntt0082971,\"{'Harrison Ford': 'Indy', 'Karen Allen': 'Marion', 'Paul Freeman': 'Belloq', 'Ronald Lacey': 'Toht', 'John Rhys-Davies': 'Sallah', 'Denholm Elliott': 'Brody', 'Alfred Molina': 'Satipo', 'Wolf Kahler': 'Dietrich', 'Anthony Higgins': 'Gobler', 'Vic Tablian': 'Barranca /              Monkey Man', 'Don Fellows': 'Col. Musgrove', 'William Hootkins': 'Major Eaton', 'Bill Reimbold': 'Bureaucrat', 'Fred Sorenson': 'Jock', 'Patrick Durkin': 'Australian Climber'}\"\r\ntt1305583,\"{'Forest Whitaker': 'Brad Boyd', 'America Ferrera': 'Lucia Ramirez', 'Carlos Mencia': 'Miguel Ramirez', 'Regina King': 'Angela', 'Lance Gross': 'Marcus Boyd', 'Diana Maria Riva': 'Sonia Ramirez', 'Lupe Ontiveros': 'Momma Cecilia', 'Anjelah Johnson-Reyes': 'Isabella Ramirez       (as Anjelah Johnson)', 'Charlie Murphy': 'T.J.', 'Shannyn Sossamon': 'Ashley McPhee', 'Tonita Castro': 'Aunt Rosita', 'Anna Maria Horsford': 'Diane Boyd', 'Warren Sapp': 'Wendell Boyd', 'Shondrella Avery': 'Keisha Boyd', 'Sterling Ardrey': 'Ardom Boyd       (as Sterling D. Ardrey)'}\"\r\ntt0814255,\"{'Logan Lerman': 'Percy Jackson', 'Brandon T. Jackson': 'Grover', 'Alexandra Daddario': 'Annabeth', 'Jake Abel': 'Luke', 'Sean Bean': 'Zeus', 'Pierce Brosnan': 'Mr. Brunner /              Chiron', 'Steve Coogan': 'Hades', 'Rosario Dawson': 'Persephone', 'Melina Kanakaredes': 'Athena', 'Catherine Keener': 'Sally Jackson', 'Kevin McKidd': 'Poseidon', 'Joe Pantoliano': 'Gabe Ugliano', 'Uma Thurman': 'Medusa', 'Julian Richings': 'Ferryman', 'Bonita Friedericy': 'Hysterical Woman'}\"\r\ntt0949731,\"{'Mark Wahlberg': 'Elliot Moore', 'Zooey Deschanel': 'Alma Moore', 'John Leguizamo': 'Julian', 'Ashlyn Sanchez': 'Jess', 'Betty Buckley': 'Mrs. Jones', 'Spencer Breslin': 'Josh', 'Robert Bailey Jr.': 'Jared', 'Frank Collison': 'Nursery Owner', 'Jeremy Strong': 'Private Auster', 'Alan Ruck': 'Principal', 'Victoria Clark': \"\"Nursery Owner's Wife\"\", 'M. Night Shyamalan': 'Joey       (voice)', 'Alison Folland': 'Woman Reading on Bench with Hair Pin', 'Kristen Connolly': 'Woman Reading on Bench', 'Cornell Womack': 'Construction Foreman'}\"\r\ntt0416212,\"{'Dakota Fanning': 'Lily Owens', 'Queen Latifah': 'August Boatwright', 'Jennifer Hudson': 'Rosaleen Daise', 'Alicia Keys': 'June Boatwright', 'Sophie Okonedo': 'May Boatwright', 'Paul Bettany': 'T. Ray Owens', 'Hilarie Burton': 'Deborah Owens', 'Tristan Mack Wilds': 'Zach Taylor       (as Tristan Wilds)', 'Nate Parker': 'Neil', 'Shondrella Avery': 'Greta', 'Renee Ford Clark': 'Doll       (as Renée Clark)', 'Sharon Conley': 'Violet       (as Sharon Morris)', 'Nicky Buggs': 'Cressie', 'Jasmine Burke': 'Sugar Girl', 'Emma Sage Bowman': 'Young Lily'}\"\r\ntt0311429,\"{'Sean Connery': 'Allan Quatermain', 'Naseeruddin Shah': 'Captain Nemo', 'Peta Wilson': 'Mina Harker', 'Tony Curran': 'Rodney Skinner', 'Stuart Townsend': 'Dorian Gray', 'Shane West': 'Tom Sawyer', 'Jason Flemyng': 'Dr. Henry Jekyll /              Edward Hyde', 'Richard Roxburgh': 'M', 'Max Ryan': 'Dante', 'Tom Goodman-Hill': 'Sanderson Reed', 'David Hemmings': 'Nigel', \"\"Terry O'Neill\"\": 'Ishmael', 'Rudolf Pellar': 'Draper', 'Robert Willox': 'Constable Dunning', 'Robert Orr': 'Running Officer'}\"\r\ntt0056197,\"{'Eddie Albert': 'Col. Thompson', 'Paul Anka': 'U.S. Army Ranger', 'Arletty': 'Madame Barrault', 'Jean-Louis Barrault': 'Father Louis Roulland', 'Richard Beymer': 'Pvt. Dutch Schultz', 'Hans Christian Blech': 'Maj. Werner Pluskat', 'Bourvil': 'Mayor of Colleville', 'Richard Burton': 'Flying Officer David Campbell', 'Wolfgang Büttner': 'Maj. Gen. Dr. Hans Speidel', 'Red Buttons': 'Pvt. John Steele', 'Pauline Carton': 'Maid', 'Sean Connery': 'Pvt. Flanagan', 'Ray Danton': 'Capt. Frank', 'Irina Demick': 'Janine Boitard       (as Irina Demich)', 'Fred Dur': 'U.S. Army Ranger Major'}\"\r\ntt2553908,\"{'Christian Vazquez': 'Juan Osorno       (as Christian Vázquez)', 'Kuno Becker': 'General Ignacio Zaragoza       (as Kuno Bécker)', 'Liz Gallardo': 'Citlali', 'William Miller': 'General Lorencéz', 'Javier Oliván': 'Artemio Cruz', 'J.C. Montes-Roldan': 'Teniente Fauvet       (as Jose Carlos Montes Roldán)', 'Álvaro García': 'Dubois de Saligny       (as Álvaro García Trujillo)', 'Mauricio Isaac': 'Capitán León', 'Ginés García Millán': 'General Prim', 'Angélica Aragón': 'Doña Soledad', 'Mario Zaragoza': 'Juan Nepomuceno Almonte', 'Daniel Martínez': 'General Leonardo Márquez', 'Javier Díaz Dueñas': 'Doctor Ruiz', 'Jorge Luis Moreno': 'Sargento Vaché', 'Pascacio López': 'General Porfirio Diaz'}\"\r\ntt0848537,\"{'Blake Anderson': 'Dagda       (voice)', 'Aziz Ansari': 'Mub       (voice)', 'Allison Bills': 'Dandelion Jinn       (voice)', 'Jim Conroy': 'Race Announcer /              Additional Voices       (voice)', 'Todd Cummings': 'Fruit Fly (Old)       (voice)', 'John DiMaggio': 'Pinecone Jinn       (voice)', 'Troy Evans': 'Thistle Jinn       (voice)', 'Colin Farrell': 'Ronin       (voice)', 'Jason Fricchione': \"\"Bufo's Goon       (voice)\"\", 'Judah Friedlander': 'Taxi Driver       (voice)', 'Helen Hong': 'Thistle Lady       (voice)', 'Josh Hutcherson': 'Nod       (voice)', 'Kelly Keaton': 'Berry Lady       (voice)', 'Emma Kenney': 'Marigold Girl       (voice)', 'Kyle Kinane': 'Biker Dude       (voice)'}\"\r\ntt1389137,\"{'Matt Damon': 'Benjamin Mee', 'Scarlett Johansson': 'Kelly Foster', 'Thomas Haden Church': 'Duncan Mee', 'Colin Ford': 'Dylan Mee', 'Maggie Elizabeth Jones': 'Rosie Mee', 'Angus Macfadyen': 'Peter MacCready       (as Angus MacFadyen)', 'Elle Fanning': 'Lily Miska', 'Patrick Fugit': 'Robin Jones', 'John Michael Higgins': 'Walter Ferris', 'Carla Gallo': 'Rhonda Blair', 'J.B. Smoove': 'Mr. Stevens       (as JB Smoove)', 'Stephanie Szostak': 'Katherine Mee', 'Michael Panes': 'Principal', 'Kym Whitley': 'Cashier', 'Todd Stanton': 'San Diego Vet'}\"\r\ntt1033575,\"{'George Clooney': 'Matt King', 'Shailene Woodley': 'Alexandra King', 'Amara Miller': 'Scottie King', 'Nick Krause': 'Sid', 'Patricia Hastie': 'Elizabeth King', 'Grace A. Cruz': \"\"Scottie's Teacher\"\", 'Kim Gennaula': 'School Counselor', 'Karen Kuioka Hironaga': 'Barb Higgins', 'Carmen Kaichi': 'Lani Higgins', 'Kaui Hart Hemmings': \"\"Matt's Secretary Noe\"\", 'Beau Bridges': 'Cousin Hugh', 'Matt Corboy': 'Cousin Ralph', 'Matt Esecson': 'Cousin Hal', 'Michael Ontkean': 'Cousin Milo', 'Stanton Johnston': 'Cousin Stan'}\"\r\ntt1279935,\"{'Steve Carell': 'Phil Foster', 'Tina Fey': 'Claire Foster', 'Mark Wahlberg': 'Holbrooke', 'Taraji P. Henson': 'Detective Arroyo', 'Jimmi Simpson': 'Armstrong', 'Common': 'Collins', 'William Fichtner': 'DA Frank Crenshaw', 'Leighton Meester': 'Katy', 'J.B. Smoove': 'Cabbie', 'Kristen Wiig': 'Haley Sullivan', 'Mark Ruffalo': 'Brad Sullivan', 'James Franco': 'Taste', 'Mila Kunis': 'Whippit', 'Bill Burr': 'Detective Walsh', 'Jonathan Morgan Heit': 'Oliver Foster'}\"\r\ntt1033643,\"{'Cameron Diaz': 'Joy McNally', 'Ashton Kutcher': 'Jack Fuller', 'Rob Corddry': 'Hater', 'Lake Bell': 'Tipper', 'Jason Sudeikis': 'Mason', 'Treat Williams': 'Jack Fuller Sr.', \"\"Deirdre O'Connell\"\": 'Mrs. Fuller', 'Michelle Krusiec': 'Chong', 'Dennis Farina': 'Banger', 'Zach Galifianakis': 'Dave the Bear', 'Queen Latifah': 'Dr. Twitchell', 'Krysten Ritter': 'Kelly', 'Ricky Garcia': 'Fuller Closets Worker', 'Andrew Daly': 'Curtis', 'Benita Robledo': 'Maid'}\"\r\ntt0429493,\"{'Liam Neeson': 'Hannibal', 'Bradley Cooper': 'Face', 'Jessica Biel': 'Charissa Sosa', \"\"Quinton 'Rampage' Jackson\"\": 'B.A. Baracus', 'Sharlto Copley': 'Murdock', 'Patrick Wilson': 'Lynch', 'Gerald McRaney': 'General Morrison', 'Henry Czerny': 'Director McCready', 'Yul Vazquez': 'General Javier Tuco       (as Yul Vázquez)', 'Brian Bloom': 'Pike', 'Maury Sterling': 'Gammons', 'Terry Chen': 'Ravech', 'Omari Hardwick': 'Chopshop Jay', 'David Hugghins': 'Oskar Shunt', 'Jacob Blair': 'Agent Blair'}\"\r\ntt2345613,\"{'Dylan Postl': \"\"The Leprechaun       (as Dylan 'Hornswoggle' Postl)\"\", 'Stephanie Bennett': 'Sophie', 'Andrew Dunbar': 'Ben', 'Melissa Roxburgh': 'Jeni', 'Brendan Fletcher': 'David', 'Garry Chalk': 'Hamish', 'Teach Grant': 'Sean', 'Bruce Blain': 'Ian', 'Mary Black': 'Mary', 'Emilie Ullerup': 'Catherine', 'Adam Boys': 'Francois', 'Gary Peterman': 'Irish Farmer'}\"\r\ntt1194173,\"{'Jeremy Renner': 'Aaron Cross', 'Scott Glenn': 'Ezra Kramer', 'Stacy Keach': 'Adm Mark Turso USN Ret.', 'Edward Norton': 'Col Eric Byer, USAF, Ret.', 'Donna Murphy': 'Dita Mandy', 'Michael Chernus': 'Arthur Ingram', 'Corey Stoll': 'Zev Vendel', 'Alice Gainer': 'Lean Forward MSNBC Anchor', 'Prue Lewarne': 'CNN Reporter', 'Howard Leader': 'MSNBC Man Analyst', \"\"James Joseph O'Neil\"\": 'Sterisyn-Morlanta Gateman', 'Rachel Weisz': 'Dr. Marta Shearing', 'Tony Guida': 'Dr. Benezara', 'Sonnie Brown': 'Dr. Lieberburg', 'Neil Brooks Cunningham': 'Dr. Dan Hillcott'}\"\r\ntt1408101,\"{'Chris Pine': 'Kirk', 'Zachary Quinto': 'Spock', 'Zoe Saldana': 'Uhura       (as Zoë Saldana)', 'Karl Urban': 'Bones', 'Simon Pegg': 'Scotty', 'John Cho': 'Sulu', 'Benedict Cumberbatch': 'Khan', 'Anton Yelchin': 'Chekov', 'Bruce Greenwood': 'Pike', 'Peter Weller': 'Marcus', 'Alice Eve': 'Carol Marcus', 'Noel Clarke': 'Thomas Harewood', 'Nazneen Contractor': 'Rima Harewood', 'Amanda Foreman': 'Ensign Brackett', 'Jay Scully': 'Lieutenant Chapin'}\"\r\ntt0083550,\"{'James Olson': 'Father Adamsky', 'Burt Young': 'Anthony Montelli', 'Rutanya Alda': 'Delores Montelli', 'Jack Magner': 'Sonny Montelli', 'Andrew Prine': 'Father Tom', 'Diane Franklin': 'Patricia Montelli', 'Moses Gunn': 'Turner', 'Ted Ross': 'Mr. Booth', 'Erika Katz': 'Jan Montelli', 'Brent Katz': 'Mark Montelli', 'Leonardo Cimino': 'Chancellor', 'Danny Aiello III': 'Removal Man 1', 'Gilbert Stafford': 'Removal Man 2', 'Petra Leah': 'Mrs. Greer       (as Petra Lea)', 'Alan Dellay': 'Judge       (as Allan Dellay)'}\"\r\ntt2293640,\"{'Sandra Bullock': 'Scarlet Overkill       (voice)', 'Jon Hamm': 'Herb Overkill       (voice)', 'Michael Keaton': 'Walter Nelson       (voice)', 'Allison Janney': 'Madge Nelson       (voice)', 'Steve Coogan': 'Professor Flux       (voice)', 'Jennifer Saunders': 'The Queen       (voice)', 'Geoffrey Rush': 'Narrator       (voice)', 'Steve Carell': 'Young Gru       (voice)', 'Pierre Coffin': 'The Minions       (voice)', 'Katy Mixon': 'Tina       (voice)', 'Michael Beattie': 'VNC Announcer       (voice)', 'Hiroyuki Sanada': 'Sumo Villain       (voice)', 'Dave Rosenbaum': 'Fabrice       (voice)', 'Alex Dowding': 'Royal Advisor       (voice)', 'Paul Thornley': 'News Reporter       (voice)'}\"\r\ntt2911666,\"{'Keanu Reeves': 'John Wick', 'Michael Nyqvist': 'Viggo Tarasov', 'Alfie Allen': 'Iosef Tarasov', 'Willem Dafoe': 'Marcus', 'Dean Winters': 'Avi', 'Adrianne Palicki': 'Ms. Perkins', 'Omer Barnea': 'Gregori', 'Toby Leonard Moore': 'Victor       (as Toby Moore)', 'Daniel Bernhardt': 'Kirill', 'Bridget Moynahan': 'Helen', 'John Leguizamo': 'Aurelio', 'Ian McShane': 'Winston', 'Bridget Regan': 'Addy', 'Lance Reddick': 'Hotel Manager /              Charon', 'Keith Jardine': 'Kuzma'}\"\r\ntt2235779,\"{'Jared Harris': 'Professor Joseph Coupland', 'Sam Claflin': 'Brian McNeil', 'Erin Richards': 'Krissi Dalton', 'Rory Fleck Byrne': 'Harry Abrams       (as Rory Fleck-Byrne)', 'Olivia Cooke': 'Jane Harper', 'Laurie Calvert': 'Phillip', 'Aldo Maland': 'David Q', 'Max Pirkis': 'David Q (older)', 'Tracy Ray': \"\"David Q's Mother\"\", 'Richard Cunningham': 'Provost', 'Eileen Nicholas': 'Angry Neighbor', 'Rebecca Scott': 'Student #1', 'Aretha Ayeh': 'Student #2', 'Max Macintosh': 'Student #3       (as Max Mackintosh)', 'Harman Singh': 'Student #4'}\"\r\ntt1807944,\"{'James Franco': 'Darl Bundren', 'Tim Blake Nelson': 'Anse', 'Jim Parrack': 'Cash', \"\"Ahna O'Reilly\"\": 'Dewey Dell', 'Logan Marshall-Green': 'Jewel', 'Brady Permenter': 'Vardaman Bundren', 'Danny McBride': 'Vernon Tull', 'Beth Grant': 'Addie Bundren', 'Brian Lally': 'Dr. Peabody', 'Jennifer Kristen Howell': 'Cora Tull       (as Jennifer Howell)', 'Natalie Minton': 'Kate Tull', 'Anna Kooris': 'Eula Tull', 'Steve Nabors': 'Reverend Whitfield', 'John Still': 'Samson', 'Susan McMillin': 'Mrs. Samson'}\"\r\ntt1932718,\"{'Mark Ruffalo': 'Adam', 'Tim Robbins': 'Mike', 'Gwyneth Paltrow': 'Phoebe', 'Josh Gad': 'Neil', 'Joely Richardson': 'Katie', 'Patrick Fugit': 'Danny', 'Pink': 'Dede       (as Alecia Moore)', 'Carol Kane': 'Roberta', 'Emily Meade': 'Becky', 'Isiah Whitlock Jr.': 'Charles', 'Michaela Watkins': 'Margo', 'Poorna Jagannathan': 'Dr. Kazhani', 'Natalia Volkodaeva': 'Ana', 'Paul Urcioli': 'Owner', 'Kenneth Maharaj': 'Cabbie'}\"\r\ntt1935179,\"{'Matthew McConaughey': 'Mud', 'Reese Witherspoon': 'Juniper', 'Tye Sheridan': 'Ellis', 'Jacob Lofland': 'Neckbone', 'Sam Shepard': 'Tom', 'Ray McKinnon': 'Senior', 'Sarah Paulson': 'Mary Lee', 'Michael Shannon': 'Galen', 'Joe Don Baker': 'King', 'Paul Sparks': 'Carver', 'Bonnie Sturdivant': 'May Pearl', 'Stuart Greer': 'Miller', 'John Ward Jr.': \"\"Galen's Helper\"\", 'Kristy Barrington': 'Princess', 'Johnny Cheek': 'Kyle'}\"\r\ntt2051879,\"{'Daniel Wu': 'William Xu', 'Sharlto Copley': 'James Corrigan', 'Christian Camargo': 'Daniel Luxembourg', 'Karolina Wydra': 'Katya Petrovna', 'Michael Nyqvist': 'Andrei Blok', 'Anamaria Marinca': 'Rosa Dasque', 'Embeth Davidtz': 'Dr. Unger', 'Isiah Whitlock Jr.': 'Dr. Tarik Pamuk', 'Dan Fogler': 'Dr. Sokolov'}\"\r\ntt1155592,\"{'Philippe Petit': 'Himself', 'Jean François Heckel': 'Himself       (as Jean-François Heckel)', 'Jean-Louis Blondeau': 'Himself', 'Annie Allix': 'Herself', 'David Forman': 'Himself', 'Alan Welner': 'Himself', 'Mark Lewis': 'Himself', 'Barry Greenhouse': 'Himself       (as N. Barry Greenhouse)', 'Jim Moore': 'Himself', 'Guy F. Tozzoli': 'Himself       (as Guy Tozzoli)', 'Paul McGill': 'Philippe - Drama Reconstructions', 'David Demato': 'Jean-Louis - Drama Reconstructions', 'Ardis Campbell': 'Annie - Drama Reconstructions', 'Aaron Haskell': 'Jean-François - Drama Reconstructions', 'Shawn Dempewolff-Barrett': 'David - Drama Reconstructions       (as Shawn Dempewolff)'}\"\r\ntt1398426,\"{\"\"O'Shea Jackson Jr.\"\": 'Ice Cube', 'Corey Hawkins': 'Dr. Dre', 'Jason Mitchell': 'Eazy-E', 'Neil Brown Jr.': 'DJ Yella', 'Aldis Hodge': 'MC Ren', 'Marlon Yates Jr.': 'D.O.C.', 'R. Marcos Taylor': 'Suge Knight       (as R. Marcus Taylor)', 'Carra Patterson': 'Tomica', 'Alexandra Shipp': 'Kim', 'Paul Giamatti': 'Jerry Heller', 'Elena Goode': 'Nicole', 'Keith Powers': 'Tyree', 'Joshua Brockington': 'Young Warren G', 'Sheldon A. Smith': 'Warren G', 'LaKeith Stanfield': 'Snoop       (as Lakeith Lee Stanfield)'}\"\r\ntt2975578,\"{'Frank Grillo': 'Sergeant', 'Carmen Ejogo': 'Eva Sanchez', 'Zach Gilford': 'Shane', 'Kiele Sanchez': 'Liz', 'Zoë Soul': 'Cali', 'Justina Machado': 'Tanya', 'John Beasley': 'Papa Rico', 'Jack Conley': 'Big Daddy', 'Noel Gugliemi': 'Diego       (as Noel G.)', 'Castulo Guerra': 'Barney', 'Michael Kenneth Williams': 'Carmelo       (as Michael K. Williams)', 'Edwin Hodge': 'Bloody Stranger', 'LaKeith Stanfield': 'Young Ghoul Face       (as Keith Stanfield)', 'Roberta Valderrama': 'Lorraine', 'Niko Nicotera': 'Roddy'}\"\r\ntt2093977,\"{'Ashleigh Craig': 'Young Girl', 'Cody Hamilton': 'Young Boy', 'Lucas Till': 'Scott', 'Crystal Reed': 'Bess', 'Isaiah Mustafa': 'Coach Evans', 'Dan Metcalfe': 'Referee', 'Derrick Kemp': 'Brock       (as DJ Kemp)', 'Preston Davis': 'Corey (Teammate)', 'Mariah Buzolin': 'Karen', 'Sarah Bolger': 'Jules', 'Holt McCallany': 'Mike', 'Camille Guaty': 'Mrs. Brown', 'Caitriona Balfe': 'Andie', 'Leigh Whannell': 'David', 'Reid Ewing': 'Jeffrey'}\"\r\ntt1196948,\"{'Shia LaBeouf': 'Charlie Countryman', 'Evan Rachel Wood': 'Gabi Ibanescu', 'Mads Mikkelsen': 'Nigel', 'Til Schweiger': 'Darko', 'Rupert Grint': 'Karl', 'James Buckley': 'Luc', 'Ion Caramitru': 'Victor Ibanescu', \"\"Vincent D'Onofrio\"\": 'Bill', 'Melissa Leo': 'Kate', 'Andrei Finti': 'Bela', 'Aubrey Plaza': 'Ashley', 'Lachlan Nieboer': 'Ted', 'Vanessa Kirby': 'Felicity', 'Gabriel Spahiu': 'Taxi Driver', 'Bogdan Farkas': 'Hostel Clerk       (as Bodgan Farcas)'}\"\r\ntt0044953,\"{'James Stewart': 'Howard Kemp', 'Janet Leigh': 'Lina Patch', 'Robert Ryan': 'Ben Vandergroat', 'Ralph Meeker': 'Roy Anderson', 'Millard Mitchell': 'Jesse Tate'}\"\r\ntt0120654,\"{'Norm MacDonald': 'Mitch', 'Jack Warden': 'Pops', 'Artie Lange': 'Sam', 'Traylor Howard': 'Kathy', 'Don Rickles': 'Hamilton', 'Christopher McDonald': 'Travis Cole', 'Chevy Chase': 'Dr. Farthing', 'Bradley Reid': 'Mitch (at 8 Years Old)', 'Matt Steinberg': 'Mitch (at 16 Years Old)       (as Matthew Steinberg)', 'Joseph Sicilia': 'Sam (at 8 Years Old)', 'Austin Pool': 'Sam (at 16 Years Old)       (as Austin John Pool)', 'Gerry Mendicino': 'Manetti', 'A. Frank Ruffo': 'Aldo', 'Hrant Alianak': 'Kirkpatrick', 'Michael Vollans': 'Derek (at 10 Years Old)'}\"\r\ntt0040872,\"{\"\"Cathy O'Donnell\"\": 'Keechie', 'Farley Granger': 'Bowie', 'Howard Da Silva': 'Chickamaw', 'Jay C. Flippen': 'T-Dub', 'Helen Craig': 'Mattie', 'Will Wright': 'Mobley', 'William Phipps': 'Young Farmer', 'Ian Wolfe': 'Hawkins', 'Harry Harvey': 'Hagenheimer', 'Marie Bryant': 'Singer', 'Will Lee': 'Jeweler', 'James Nolan': 'Schreiber       (as Jim Nolan)', 'Charles Meredith': 'Comm. Hubbell', 'Teddy Infuhr': 'Alvin', 'Byron Foulger': 'Lambert'}\"\r\ntt1294970,\"{'Robin Williams': 'Henry Altmann', 'Mila Kunis': 'Dr. Sharon Gill', 'Peter Dinklage': 'Aaron Altmann', 'Melissa Leo': 'Bette Altmann', 'Hamish Linklater': 'Tommy Altmann', 'Sutton Foster': 'Adela', 'James Earl Jones': 'Ruben', 'Richard Kind': 'Bix Field', 'Daniel Raymont': 'Ulugbek', 'Chris Gethard': 'Dr. Jordan Reed', 'Jerry Adler': 'Cooper', 'Isiah Whitlock Jr.': 'Yates', \"\"Da'Vine Joy Randolph\"\": 'Nurse Rowan', 'Jeremie Harris': 'Leon', 'Lee Garlington': 'Gummy'}\"\r\ntt2458106,\"{'Scott Adkins': 'Casey', 'Kane Kosugi': 'Nakabara', 'Mika Hijii': 'Namiko', 'Markus Waldow': 'Ninja Student', 'Shun Sugata': 'Goro', 'Vithaya Pansringarm': 'General Sung', 'Mukesh Bhatt': 'Mike', 'Tim Man': 'Myat', 'Jawed El Berni': 'Lucas', 'Saichia Wongwirot': 'Suu', 'Shogo Tanikawa': 'Assistant Instructor', 'Futoshi Hashimoto': 'Toji', 'Charlie Ruedpokanon': 'Thug #1', 'Kazu Patrick Tang': 'Thug #2', 'Yasuhiko Miyauchi': 'Shopkeeper'}\"\r\ntt0082332,\"{'Franco Nero': 'Cole', 'Susan George': 'Mary Ann', 'Shô Kosugi': 'Hasegawa', 'Christopher George': 'Venarius', 'Alex Courtney': 'Frank', 'Will Hare': 'Dollars', 'Zachi Noy': 'The Hook', 'Constantine Gregory': 'Mr. Parker       (as Constantin de Goguel)', 'Dale Ishimoto': 'Komori', 'Joonee Gamboa': 'Mr. Mesuda', 'Leo Martinez': 'Pee Wee', 'Ken Metcalfe': 'Elliot', 'Subas Herrero': 'Alberto', 'Alan Amiel': 'Maroon Ninja', 'Douglas Ivan': 'Maroon Ninja       (as Doug Ivan)'}\"\r\ntt1809398,\"{\"\"Jack O'Connell\"\": 'Louis Zamperini', 'Domhnall Gleeson': 'Phil', 'Garrett Hedlund': 'Fitzgerald', 'Miyavi': 'Watanabe       (as Takamasa Ishihara)', 'Finn Wittrock': 'Mac', 'Jai Courtney': 'Cup', 'Maddalena Ischiale': 'Louise', 'Vincenzo Amato': 'Anthony', 'John Magaro': 'Tinker', 'Luke Treadaway': 'Miller', 'Louis McIntosh': 'Harris', 'Ross Anderson': 'Blackie', 'C.J. Valleroy': 'Young Louie', \"\"John D'Leo\"\": 'Young Pete', 'Alex Russell': 'Older Pete'}\"\r\ntt1470023,\"{'Will Forte': 'MacGruber', 'Kristen Wiig': 'Vicki', 'Ryan Phillippe': 'Piper', 'Val Kilmer': 'Dieter Von Cunth', 'Powers Boothe': 'Colonel Faith', 'Maya Rudolph': 'Casey', 'Rhys Coiro': 'Yerik Novikov', 'Andy Mackenzie': 'Hoss', 'Jasper Cole': 'Zeke', 'Timothy V. Murphy': 'Constantine       (as Tim Murphy)', 'Kevin Skousen': 'Senator Garver', 'Robert M. Reid': 'Priest', 'Jim Giesler': 'Janitor       (as Jimmy G. Giesler)', 'Chris Jericho': 'Frank Korver', 'Mark Henry': 'Tut Beemer'}\"\r\ntt1139797,\"{'Kåre Hedebrant': 'Oskar', 'Lina Leandersson': 'Eli', 'Per Ragnar': 'Håkan', 'Henrik Dahl': 'Erik', 'Karin Bergquist': 'Yvonne', 'Peter Carlberg': 'Lacke', 'Ika Nord': 'Virginia', 'Mikael Rahm': 'Jocke', 'Karl-Robert Lindgren': 'Gösta', 'Anders T. Peedu': 'Morgan', 'Pale Olofsson': 'Larry', 'Cayetano Ruiz': 'Magister Avila', 'Patrik Rydmark': 'Conny', 'Johan Sömnes': 'Andreas', 'Mikael Erhardsson': 'Martin'}\"\r\ntt0378109,\"{'Paul Walker': 'Jared', 'Jessica Alba': 'Sam', 'Scott Caan': 'Bryce', 'Ashley Scott': 'Amanda', 'Josh Brolin': 'Bates', 'James Frain': 'Reyes', 'Tyson Beckford': 'Primo', 'Dwayne Adway': 'Roy', 'Javon Frazer': 'Danny', 'Chris Taloa': 'Quinn', 'Peter R.V. Bowleg Jr.': 'Jake', 'Clifford McIntosh': 'Kash', 'Adam Collins': 'Raolo', 'Gill Montie': 'Big Dave', 'Dan Ballard': 'Scuba Bob'}\"\r\ntt2322441,\"{'Dakota Johnson': 'Anastasia Steele', 'Jamie Dornan': 'Christian Grey', 'Jennifer Ehle': 'Carla', 'Eloise Mumford': 'Kate', 'Victor Rasuk': 'José', 'Luke Grimes': 'Elliot Grey', 'Marcia Gay Harden': 'Mrs. Grey', 'Rita Ora': 'Mia Grey', 'Max Martini': 'Taylor', 'Callum Keith Rennie': 'Ray', 'Andrew Airlie': 'Mr. Grey', 'Dylan Neal': 'Bob', 'Elliat Albrecht': 'Olivia', 'Rachel Skarsten': 'Andrea', 'Emily Fonda': 'Martina'}\"\r\ntt0478304,\"{'Brad Pitt': \"\"Mr. O'Brien\"\", 'Sean Penn': 'Jack', 'Jessica Chastain': \"\"Mrs. O'Brien\"\", 'Hunter McCracken': 'Young Jack', 'Laramie Eppler': 'R.L.', 'Tye Sheridan': 'Steve', 'Fiona Shaw': 'Grandmother', 'Jessica Fuselier': 'Guide', 'Nicolas Gonda': 'Mr. Reynolds', 'Will Wallace': 'Architect', 'Kelly Koonce': 'Father Haynes', 'Bryce Boudoin': 'Robert', 'Jimmy Donaldson': 'Jimmy', 'Kameron Vaughn': 'Cayler', 'Cole Cockburn': 'Harry Bates'}\"\r\ntt0822832,\"{'Owen Wilson': 'John', 'Jennifer Aniston': 'Jenny', 'Eric Dane': 'Sebastian', 'Kathleen Turner': 'Ms. Kornblut', 'Alan Arkin': 'Arnie Klein', 'Nathan Gamble': 'Patrick (Age 10)', 'Haley Bennett': 'Lisa', 'Ann Dowd': 'Dr. Platt', 'Clarke Peters': 'Editor', 'Finley Jacobsen': 'Conor (Age 8)', 'Lucy Merriam': 'Colleen (Age 5)', 'Bryce Robinson': 'Patrick (Age 7)', 'Ben Hyland': 'Conor (Age 5)', \"\"Sarah O'Kelly\"\": 'Neighbor Mom (Nurse)', 'Keith Hudson': 'Big Guy'}\"\r\ntt1131734,\"{'Megan Fox': 'Jennifer', 'Amanda Seyfried': 'Needy', 'Johnny Simmons': 'Chip Dove', 'Adam Brody': 'Nikolai', 'Sal Cortez': 'Chas', 'Ryan Levine': 'Mick', 'Juan Riedinger': 'Dirk', 'Colin Askey': 'Keyboardist', 'Chris Pratt': 'Officer Roman Duda', 'Juno Rinaldi': 'Officer Warzak       (as Juno Ruddell)', 'Kyle Gallner': 'Colin Gray', 'Josh Emerson': 'Jonas Kozelle       (as Joshua Emerson)', 'J.K. Simmons': 'Mr. Wroblewski', 'Amy Sedaris': 'Toni Lesnicki', 'Cynthia Stevenson': 'Mrs. Dove'}\"\r\ntt0432283,\"{'George Clooney': 'Mr. Fox       (voice)', 'Meryl Streep': 'Mrs. Fox       (voice)', 'Jason Schwartzman': 'Ash       (voice)', 'Bill Murray': 'Badger       (voice)', 'Wallace Wolodarsky': 'Kylie       (voice) (as Wally Wolodarsky)', 'Eric Chase Anderson': 'Kristofferson       (voice) (as Eric Anderson)', 'Michael Gambon': 'Franklin Bean       (voice)', 'Willem Dafoe': 'Rat       (voice)', 'Owen Wilson': 'Coach Skip       (voice)', 'Jarvis Cocker': 'Petey       (voice)', 'Wes Anderson': 'Weasel       (voice)', 'Karen Duffy': 'Linda Otter       (voice)', 'Robin Hurlstone': 'Walter Boggis       (voice)', 'Hugo Guinness': 'Nathan Bunce       (voice)', 'Helen McCrory': 'Mrs. Bean       (voice)'}\"\r\ntt1698648,\"{'Kristen Wiig': 'Imogene Duncan', 'Annette Bening': 'Zelda Duncan', 'Matt Dillon': 'George Bousche', 'Darren Criss': 'Lee', 'Christopher Fitzgerald': 'Ralph Duncan', 'June Diane Raphael': 'Dara', 'Natasha Lyonne': 'Allyson', 'Bob Balaban': 'Maxwell P. Duncan', 'Sydney Lucas': 'Little Imogene', 'Ilana Levine': 'Teacher', 'Jimmy Palumbo': 'Doorman Joe', 'Michelle Morgan': 'Georgina', 'Mickey Sumner': 'Hannah', 'Elizabeth Inghram': 'Sloane', 'Brian Petsos': 'Peter Van Woodsen'}\"\r\ntt0109370,\"{'John Candy': 'Sheriff Bud Boomer', 'Alan Alda': 'President of the United States', 'Rhea Perlman': 'Honey', 'Kevin Pollak': 'Stu Smiley', 'Rip Torn': 'General Dick Panzer', \"\"Kevin J. O'Connor\"\": 'Roy Boy', 'Bill Nunn': 'Kabral', 'G.D. Spradlin': 'R.J. Hacker', 'Steven Wright': 'Niagara Mountie', 'Jim Belushi': 'Charles Jackal', 'Brad Sullivan': 'Gus', 'Stanley Anderson': 'Edwin S. Simon', 'Richard Council': 'Russian President', 'Wallace Shawn': 'Canadian Prime Minister', 'Michael Copeman': \"\"Panzer's Aide\"\"}\"\r\ntt1659337,\"{'Logan Lerman': 'Charlie', 'Dylan McDermott': 'Father', 'Kate Walsh': 'Mother', 'Patrick de Ledebur': 'Senior Bully', 'Johnny Simmons': 'Brad', 'Brian Balzerini': 'Linebacker', 'Tom Kruszewski': 'Nose Tackle', 'Nina Dobrev': 'Candace', 'Nicholas Braun': 'Ponytail Derek', 'Julia Garner': 'Susan', 'Ezra Miller': 'Patrick', 'Tom Savini': 'Mr. Callahan', 'Emily Marie Callaway': 'Mean Freshman Girl       (as Emily Callaway)', 'Paul Rudd': 'Mr. Anderson', 'Chelsea Zhang': 'Shakespeare Girl'}\"\r\ntt1592873,\"{'Jean-Luc Bilodeau': 'Jeremy', 'Douglas Booth': 'Kyle', 'Vivian Le Borgne': \"\"Lily's Mother\"\", 'Bridget Brown': 'Lily', 'Jim Carrane': 'Biology Teacher       (as Jimmy Carrane)', 'Woody Carter': 'Male Student', 'Miley Cyrus': 'Lola', 'Felix Dayan': 'French Father', 'Sam Derence': \"\"Ashley's Father\"\", 'Nora Dunn': \"\"Emily's Mother\"\", 'Lina Esco': 'Janice', 'Trevor Fahnstrom': 'Ethan', 'George Finn': 'Chad', 'Rebecca Finnegan': 'Therapist', 'Alix Freihage': 'Young Wife'}\"\r\ntt1735898,\"{'Kristen Stewart': 'Snow White', 'Chris Hemsworth': 'The Huntsman', 'Charlize Theron': 'Ravenna', 'Sam Claflin': 'William', 'Sam Spruell': 'Finn', 'Ian McShane': 'Beith', 'Bob Hoskins': 'Muir', 'Ray Winstone': 'Gort', 'Nick Frost': 'Nion', 'Eddie Marsan': 'Duir', 'Toby Jones': 'Coll', 'Johnny Harris': 'Quert', 'Brian Gleeson': 'Gus', 'Vincent Regan': 'Duke Hammond', 'Liberty Ross': \"\"Snow White's Mother\"\"}\"\r\ntt1935896,\"{'Eva Llorach': 'Woman (segment \"\"A is for Apocalypse\"\")', 'Miquel Insua': 'Man (segment \"\"A is for Apocalypse\"\")', 'Alejandra Urdiaín': 'Dulce (segment \"\"B is for Bigfoot\"\")       (as Alejandra Urdiain)', 'Harold Torres': 'Erik (segment \"\"B is for Bigfoot\"\")', 'Greta Martinez': 'Xochitl (segment \"\"B is for Bigfoot\"\")       (as Greta Martínez)', 'Pablo Guisa Koestinger': 'Yeti (segment \"\"B is for Bigfoot\"\")', 'Matías Oviedo': 'Bruno (segment \"\"C is for Cycle\"\")', 'Juanita Ringeling': 'Alicia (segment \"\"C is for Cycle\"\")', 'Steve Berens': 'The Fighter (segment \"\"D is for Dogfight\"\")', 'Riley the Dog': 'The Dog (segment \"\"D is for Dogfight\"\")', 'Chris Hampton': 'The Figther\\'s Trainer (segment \"\"D is for Dogfight\"\")', 'George Marquez': 'The Dog\\'s Trainer (segment \"\"D is for Dogfight\"\")', 'Erik Aude': 'Beat Down Dude (segment \"\"D is for Dogfight\"\")', 'Lisa Lynch': 'Card Girl (segment \"\"D is for Dogfight\"\")', 'Imogen Mcaulay': 'The Baby (segment \"\"D is for Dogfight\"\")'}\"\r\ntt0113161,\"{'John Travolta': 'Chili Palmer', 'Gene Hackman': 'Harry Zimm', 'Rene Russo': 'Karen Flores', 'Danny DeVito': 'Martin Weir', 'Dennis Farina': \"\"Ray 'Bones' Barboni\"\", 'Delroy Lindo': 'Bo Catlett', 'James Gandolfini': 'Bear', 'Jon Gries': 'Ronnie Wingate', 'Renee Props': 'Nicki', 'David Paymer': 'Leo Devoe', 'Martin Ferrero': 'Tommy Carlo', 'Miguel Sandoval': 'Mr. Escobar', 'Jacob Vargas': 'Yayo Portillo', 'Linda Hart': 'Fay Devoe', 'Bobby Slayton': 'Dick Allen'}\"\r\ntt0408524,\"{'Billy Bob Thornton': 'Morris Buttermaker', 'Greg Kinnear': 'Roy Bullock', 'Marcia Gay Harden': 'Liz Whitewood', 'Sammi Kane Kraft': 'Amanda Whurlitzer', 'Ridge Canipe': 'Toby Whitewood', 'Brandon Craggs': 'Mike Engelberg', 'Jeffrey Davies': 'Kelly Leak', 'Timmy Deters': 'Tanner Boyle', 'Carlos Estrada': 'Miguel Agilar', 'Emmanuel Estrada': 'Jose Agilar', 'Troy Gentile': 'Matthew Hooper', \"\"Kenneth 'K.C.' Harris\"\": 'Ahmad Abdul Rahim', 'Aman Johal': 'Prem Lahiri', 'Tyler Patrick Jones': 'Timmy Lupus', 'Jeffrey Tedmori': 'Garo Daragabrigadien'}\"\r\ntt1496422,\"{'Zac Efron': 'Jack Jansen', 'Matthew McConaughey': 'Ward Jansen', 'Nicole Kidman': 'Charlotte Bless', 'John Cusack': 'Hillary Van Wetter', 'David Oyelowo': 'Yardley Acheman', 'Scott Glenn': 'W.W. Jansen', 'Ned Bellamy': 'Tyree Van Wetter', 'Nealla Gordon': 'Ellen Guthrie', 'Macy Gray': 'Anita Chester', 'Edrick Browne': 'Hustler #1', 'Kevin Waterman': 'Victim', 'Danny Hanemann': 'Sheriff Thurmond Call', 'Peter Murnik': 'Death Row Guard', 'John P. Fertitta': 'Sam Ellison       (as John Fertitta)', 'Jay Oliver': 'Mr. Guthrie /              Wedding Guest       (as James Oliver)'}\"\r\ntt0120184,\"{'Dustin Hoffman': 'Norman', 'Sharon Stone': 'Beth', 'Samuel L. Jackson': 'Harry', 'Peter Coyote': 'Barnes', 'Liev Schreiber': 'Ted', 'Queen Latifah': 'Fletcher', 'Marga Gómez': 'Jane Edmunds', 'Huey Lewis': 'Helicopter Pilot', 'Bernard Hocke': 'Seaman', 'James Pickens Jr.': 'O.S.S.A. Instructor', 'Michael Keys Hall': 'O.S.S.A. Official', 'Ralph Tabakin': 'O.S.S.A. Official'}\"\r\ntt0078227,\"{'Burt Reynolds': 'Billy Clyde Puckett', 'Kris Kristofferson': \"\"Marvin 'Shake' Tiller\"\", 'Jill Clayburgh': 'Barbara Jane Bookman', 'Robert Preston': 'Big Ed Bookman', 'Bert Convy': 'Friedrich Bismark', 'Roger E. Mosley': 'Puddin Patterson Sr.', 'Lotte Lenya': 'Clara Pelf', 'Richard Masur': 'Phillip Hooper', 'Carl Weathers': 'Dreamer Tatum', 'Brian Dennehy': 'T.J. Lambert', 'Mary Jo Catlett': 'Earlene Emery', 'Joe Kapp': 'Hose Manning', 'Ron Silver': 'Vlada Kostov', 'James MacKrell': 'Bud McNair       (as Jim McKrell)', 'Peter Bromilow': \"\"Kostov's Interpreter\"\"}\"\r\ntt2450186,\"{'Lawrence Michael Levine': 'Larry (segment \"\"Tape 49\"\")', 'Kelsy Abbott': 'Ayesha (segment \"\"Tape 49\"\")', 'L.C. Holt': 'Kyle (segment \"\"Tape 49\"\")', 'Simon Barrett': 'Steve (segment \"\"Tape 49\"\")', 'Mindy Robinson': 'Tabitha (segment \"\"Tape 49\"\")', 'Mónica Sánchez Navarro': 'Hotel Maid (segment \"\"Tape 49\"\")', 'Adam Wingard': 'Herman (segment \"\"Phase I Clinical Trials\"\")', 'Hannah Hughes': 'Clarissa (segment \"\"Phase I Clinical Trials\"\")', 'John T. Woods': 'Dr. Fleischer (segment \"\"Phase I Clinical Trials\"\")', 'Corrie Lynn Fitzpatrick': 'Young Girl (segment \"\"Phase I Clinical Trials\"\")', 'Brian Udovich': 'Bloody Man (segment \"\"Phase I Clinical Trials\"\")', 'John Karyus': 'Uncle (segment \"\"Phase I Clinical Trials\"\")', 'Casey Adams': 'Justin (segment \"\"Phase I Clinical Trials\"\")', 'Jay Saunders': 'Biker (segment \"\"A Ride in the Park\"\")', 'Bette Cassatt': 'Screaming Girl (segment \"\"A Ride in the Park\"\")'}\"\r\ntt2105044,\"{'Calvin Reeder': 'Gary (segment \"\"Tape 56\"\")', 'Lane Hughes': 'Zak (segment \"\"Tape 56\"\")', 'Kentucker Audley': 'Rox (segment \"\"Tape 56\"\")', 'Adam Wingard': 'Brad (segment \"\"Tape 56\"\")', 'Frank Stack': 'Old Man (segment \"\"Tape 56\"\")', 'Sarah Byrne': 'Abbey (segment \"\"Tape 56\"\")', 'Melissa Boatright': 'Tabitha (segment \"\"Tape 56\"\")', 'Simon Barrett': 'Steve (segment \"\"Tape 56\"\")', 'Andrew Droz Palermo': 'Fifth Thug (segment \"\"Tape 56\"\")', 'Hannah Fierman': 'Lily (segment \"\"Amateur Night\"\")', 'Mike Donlan': 'Shane (segment \"\"Amateur Night\"\")', 'Joe Sykes': 'Patrick (segment \"\"Amateur Night\"\")', 'Drew Sawyer': 'Clint (segment \"\"Amateur Night\"\")', 'Jasper Sams': 'Lisa (segment \"\"Amateur Night\"\")       (as Jas Sams)', 'Nicholas Tecosky': 'Bartender (segment \"\"Amateur Night\"\")'}\"\r\ntt0835418,\"{'Paul Schneider': 'Tommy Macklin', 'Olivia Munn': 'Audrey Macklin', 'Michael Yurchak': 'Sommellier', 'Wood Harris': 'Darrell', 'Kevin Heffernan': 'Wade', 'Nat Faxon': 'Zig-Zag', 'Lindsey Kraft': 'Greta', 'Constance Zimmer': 'Mona', 'Aisha Tyler': 'Karen', 'Jude Ciccolella': 'Coach Stubbs', 'Soren Hellerup': 'Swedish Mechanic', 'Tom Wright': 'Butcher - Deli Worker', 'Tommy Dewey': 'Todd', 'Sharon Maughan': 'Dr. Roberts', 'Tony Sancho': 'Pedro'}\"\r\ntt1155056,\"{'Paul Rudd': 'Peter Klaven', 'Rashida Jones': 'Zooey Rice', 'Sarah Burns': 'Hailey', 'Greg Levine': \"\"Hailey's Date\"\", 'Jaime Pressly': 'Denise', 'Jon Favreau': 'Barry', 'Jane Curtin': 'Joyce Klaven', 'J.K. Simmons': 'Oswald Klaven', 'Andy Samberg': 'Robbie Klaven', 'Jean Villepique': 'Leanne (Davis Dunn Receptionist)', 'Rob Huebel': 'Tevin Downey', 'Kym Whitley': 'Female Co-Worker', 'Colleen Crabtree': 'Female Co-Worker', 'Caroline Farah': 'Female Co-Worker', 'Mather Zickel': 'Gil'}\"\r\ntt3152624,\"{'Colin Quinn': 'Gordon', 'Devin Fabry': 'Nine Year Old Amy', 'Carla Oudin': 'Five Year Old Kim', 'Amy Schumer': 'Amy', 'Josh Segarra': 'Staten Island Oli', 'Ryan Farrell': 'One-Night Stand Guy', 'Robert E. Torres': 'One-Night Stand Guy', 'Jim Florentine': 'One-Night Stand Guy', 'Robert Kelly': 'One-Night Stand Guy       (as Bobby Kelly)', 'Dan Soder': 'Dumpster Guy', 'John Cena': 'Steven', 'Dave Attell': 'Noam', 'Vanessa Bayer': 'Nikki', 'Tilda Swinton': 'Dianna', 'Randall Park': 'Bryson'}\"\r\ntt2872732,\"{'Scarlett Johansson': 'Lucy', 'Morgan Freeman': 'Professor Norman', 'Min-sik Choi': 'Mr. Jang', 'Amr Waked': 'Pierre Del Rio', 'Julian Rhind-Tutt': 'The Limey', 'Pilou Asbæk': 'Richard', 'Analeigh Tipton': 'Caroline', 'Nicolas Phongpheth': 'Jii', 'Jan Oliver Schroeder': 'German Mule', 'Luca Angeletti': 'Italian Mule', 'Loïc Brabant': 'Professor', 'Pierre Grammont': 'Professor', 'Pierre Poirot': 'Professor', 'Bertrand Quoniam': 'Professor', 'Pascal Loison': 'Drug Addict'}\"\r\ntt2004420,\"{'Seth Rogen': 'Mac Radner', 'Rose Byrne': 'Kelly Radner', 'Elise Vargas': 'Stella', 'Zoey Vargas': 'Stella', 'Brian Huskey': 'Bill Wazowkowski', 'Ike Barinholtz': 'Jimmy', 'Carla Gallo': 'Paula', 'Zac Efron': 'Teddy Sanders', 'Dave Franco': 'Pete', 'Halston Sage': 'Brooke', 'Christopher Mintz-Plasse': 'Scoonie', 'Jerrod Carmichael': 'Garf', 'Craig Roberts': 'Assjuice', 'Ali Cobrin': 'Whitney', 'Kira Sternbach': 'Brittany'}\"\r\ntt2096672,\"{'Jim Carrey': 'Lloyd', 'Jeff Daniels': 'Harry', 'Rob Riggle': 'Travis /              Captain Lippincott', 'Laurie Holden': 'Adele', 'Rachel Melvin': 'Penny', 'Steve Tom': 'Dr. Pinchelow', 'Don Lake': 'Dr. Meldmann', 'Patricia French': 'Ms. Sourpuss', 'Elizabeth Cooper': 'Mrs. Julie James', 'Kathleen Turner': 'Fraida', 'Bill Murray': 'Ice Pick', 'Tembi Locke': 'Dr. Walcott', 'Paul Blackthorne': 'Emergency Room Doctor', 'Brady Bluhm': 'Billy', 'Eddie Shin': 'Gordy'}\"\r\ntt1596350,\"{'Reese Witherspoon': 'Lauren', 'Chris Pine': 'FDR Foster', 'Tom Hardy': 'Tuck', 'Til Schweiger': 'Heinrich', 'Chelsea Handler': 'Trish', 'John Paul Ruttan': 'Joe', 'Abigail Spencer': 'Katie       (as Abigail Leigh Spencer)', 'Angela Bassett': 'Collins', 'Rosemary Harris': 'Nana Foster', 'George Touliatos': 'Grandpa Foster', 'Clint Carleton': 'Jonas', 'Warren Christie': 'Steve', 'Leela Savasta': 'Kelly', 'Natassia Malthe': 'Xenia', 'Laura Vandervoort': 'Britta'}\"\r\ntt1412386,\"{'Judi Dench': 'Evelyn Greenslade', 'Tom Wilkinson': 'Graham Dashwood', 'Patrick Pearson': \"\"Graham's Colleague\"\", 'Hugh Dickson': 'Judge', 'James Rawlings': 'Estate Agent', 'Bill Nighy': 'Douglas Ainslie', 'Penelope Wilton': 'Jean Ainslie', 'Maggie Smith': 'Muriel Donnelly', 'Liza Tarbuck': 'Staff Nurse', 'Paul Bhattacharjee': 'Dr. Ghujarapartidar', 'Lucy Robinson': 'Judith', 'Ronald Pickup': 'Norman Cousins', 'Celia Imrie': 'Madge Hardcastle', 'Simon Wilson': \"\"Madge's Son-in-Law\"\", 'Sara Stewart': \"\"Madge's Daughter\"\"}\"\r\ntt0356680,\"{'Claire Danes': 'Julie Morton', 'Diane Keaton': 'Sybil Stone', 'Rachel McAdams': 'Amy Stone', 'Dermot Mulroney': 'Everett Stone', 'Craig T. Nelson': 'Kelly Stone', 'Sarah Jessica Parker': 'Meredith Morton', 'Luke Wilson': 'Ben Stone', 'Tyrone Giordano': 'Thad Stone       (as Ty Giordano)', 'Brian White': 'Patrick Thomas', 'Elizabeth Reaser': 'Susannah Stone Trousdale', 'Paul Schneider': 'Brad Stevenson', 'Savannah Stehlin': 'Elizabeth Trousdale', 'Jamie Kaler': 'John Trousdale', 'Robert Dioguardi': 'David Silver', 'Carol Locatell': 'Jeweler'}\"\r\ntt2382009,\"{'Charlotte Gainsbourg': 'Joe', 'Stellan Skarsgård': 'Seligman', 'Stacy Martin': 'Young Joe', 'Shia LaBeouf': 'Jerôme', 'Christian Slater': \"\"Joe's Father\"\", 'Jamie Bell': 'K', 'Uma Thurman': 'Mrs. H', 'Willem Dafoe': 'L', 'Mia Goth': 'P', 'Sophie Kennedy Clark': 'B', 'Michael Pas': 'Old Jerôme', 'Jean-Marc Barr': 'Debtor Gentleman', 'Udo Kier': 'The Waiter', 'Ananya Berg': 'Joe - 10 Years', 'Morgan Hartley': 'B - 12 Years'}\"\r\ntt1091191,\"{'Mark Wahlberg': 'Marcus Luttrell', 'Taylor Kitsch': 'Michael Murphy', 'Emile Hirsch': 'Danny Dietz', 'Ben Foster': \"\"Matt 'Axe' Axelson\"\", 'Yousuf Azami': 'Shah', 'Ali Suliman': 'Gulab', 'Eric Bana': 'Erik Kristensen', 'Alexander Ludwig': 'Shane Patton', 'Rich Ting': 'James Suh', 'Dan Bilzerian': 'Healy', 'Jerry Ferrara': 'Hasslert', 'Rick Vargas': 'Crew Chief', 'Scott Elrod': 'QRF SEAL', 'Gregory Rockwood': 'Chinook Pilot #1', 'Ryan Kay': 'Chinook Pilot #2'}\"\r\ntt1937390,\"{'Charlotte Gainsbourg': 'Joe', 'Stellan Skarsgård': 'Seligman', 'Stacy Martin': 'Young Joe', 'Shia LaBeouf': 'Jerôme', 'Christian Slater': \"\"Joe's Father\"\", 'Uma Thurman': 'Mrs. H', 'Sophie Kennedy Clark': 'B', 'Connie Nielsen': \"\"Joe's Mother\"\", 'Ronja Rissmann': 'Joe - 2 Years', 'Maja Arsovic': 'Joe - 7 years', 'Sofie Kasten': 'B - 7 Years', 'Ananya Berg': 'Joe - 10 Years', 'Anders Hove': 'Odin', 'James Northcote': 'Young Lad 1 on Train', 'Charlie Hawkins': 'Young Lad 2 on Train'}\"\r\ntt2349460,\"{'AJ Michalka': 'Gracie Trey', 'James Denton': 'Johnny Trey', 'Kevin Pollak': \"\"Frank 'Mossy' Mostin\"\", 'Shawnee Smith': 'Michelle Trey', 'Michael Welch': 'Quentin', 'Jamie Grace': 'Rachel', 'Emma Catherwood': 'Kendra Burroughs', 'Chris Ellis': 'Pastor Tim Bryant', 'Pia Toscano': 'Alyssa', 'Kelly Thiebaud': 'Renae Taylor', 'Rob Steinberg': 'Mark Reynolds', 'Patricia French': 'Sally Benson', 'Anthony Reynolds': \"\"Rick (Quentin's dad)\"\", 'Aimee Dunn': \"\"Donna (Quentin's mom)\"\", 'Juan Martinez': 'Noah'}\"\r\ntt1821694,\"{'Bruce Willis': 'Frank', 'John Malkovich': 'Marvin', 'Mary-Louise Parker': 'Sarah', 'Helen Mirren': 'Victoria', 'Anthony Hopkins': 'Bailey', 'Byung-Hun Lee': 'Han Cho Bai       (as Byung Hun Lee)', 'Jong Kun Lee': \"\"Han's Father\"\", 'Catherine Zeta-Jones': 'Katja', 'Neal McDonough': 'Jack Horton', 'David Thewlis': 'The Frog', 'Garrick Hagon': 'Davis', 'Tim Pigott-Smith': 'Director Philips', 'Brian Cox': 'Ivan', 'Philip Arditti': 'Arman', 'Mitchell Mullen': 'Wade'}\"\r\ntt1913166,\"{'Paz de la Huerta': 'Abby Russell', 'Katrina Bowden': 'Danni Rogers', 'Judd Nelson': 'Dr. Robert Morris', 'Corbin Bleu': 'Steve', 'Boris Kodjoe': 'Detective Rogan', 'Melanie Scrofano': 'Rachel Adams', 'Niecy Nash': 'Regina', 'Martin Donovan': 'Larry Cook', 'Chris Hoffman': 'Married Man /              Fred', 'Brittany Adams': 'Young Nurse', 'Kathleen Turner': 'Head Nurse', 'Jake Michaels': 'New Dad', 'Adam Herschman': 'Jared', 'Patrick Kwok-Choon': 'EMT #1', 'Tracy Michailidis': \"\"Abby's Mom\"\"}\"\r\ntt1704573,\"{'Jack Black': 'Bernie Tiede', 'Shirley MacLaine': 'Marjorie Nugent', 'Matthew McConaughey': 'Danny Buck', 'Brady Coleman': 'Scrappy Holmes', 'Richard Robichaux': 'Lloyd Hornbuckle', 'Rick Dial': 'Don Leggett', 'Brandon Smith': 'Sheriff Huckabee', 'Larry Jack Dotson': 'Rev. Woodard', 'Merrilee McCommas': 'Molly', 'Mathew Greer': 'Carl       (as Matthew Greer)', 'Marjorie Dome': 'Townsperson', 'Tim Cariker': 'Townsperson', 'Fern Luker': 'Townsperson', 'Jack Payne': 'Townsperson', 'Sonny Carl Davis': 'Townsperson       (as Sonny Davis)'}\"\r\ntt1297919,\"{'Jason Statham': 'Brant', 'Paddy Considine': 'Nash', 'Aidan Gillen': 'Weiss', 'Zawe Ashton': 'Falls', 'David Morrissey': 'Dunlop', 'Ned Dennehy': 'Radnor', 'Mark Rylance': 'Roberts', 'Luke Evans': 'Stokes', 'Nicky Henson': 'Superintendent Brown', 'Steven Harwood-Brown': 'Metal       (as Steven Harwood Brown)', 'Bill Champion': 'Dr. Leonard', 'Richard Riddell': 'McDonald', 'Ron Donachie': 'Cross', 'Elly Fairman': 'Sandra       (as Ellie Fairman)', 'Alex Lanipekun': 'Precocious PC'}\"\r\ntt0087985,\"{'Patrick Swayze': 'Jed', 'C. Thomas Howell': 'Robert', 'Lea Thompson': 'Erica', 'Charlie Sheen': 'Matt', 'Darren Dalton': 'Daryl', 'Jennifer Grey': 'Toni', 'Brad Savage': 'Danny', 'Doug Toby': 'Aardvark', 'Ben Johnson': 'Mr. Mason', 'Harry Dean Stanton': 'Mr. Eckert', \"\"Ron O'Neal\"\": 'Bella', 'William Smith': 'Strelnikov', 'Vladek Sheybal': 'Bratchenko', 'Powers Boothe': 'Andy', 'Frank McRae': 'Mr. Teasdale'}\"\r\ntt0101764,\"{'Jean-Claude Van Damme': 'Alex /              Chad Wagner', 'Geoffrey Lewis': 'Frank Avery', 'Alonna Shaw': 'Danielle Wilde', 'Corinna Everson': 'Kara', 'Philip Chan': 'Raymond Zhang', 'Alan Scarfe': 'Nigel Griffith', 'Bolo Yeung': 'Moon', 'Andy Armstrong': 'Paul Wagner', 'Wu Fong Lung': 'Chinese Nurse', 'Peter Malota': 'Body Guard With Spurs', 'Sarah-Jane Varley': 'Katherine Wagner', 'Kamel Krifa': 'Mah Jong Manager', 'Eugene Choy': 'Mr. Chen', 'Jack Gilardi Jr.': 'Karate Student', 'David Lea': 'Karate Student'}\"\r\ntt0829150,\"{'Luke Evans': 'Vlad', 'Sarah Gadon': 'Mirena', 'Dominic Cooper': 'Mehmed', 'Art Parkinson': 'Ingeras', 'Charles Dance': 'Master Vampire', 'Diarmaid Murtagh': 'Dumitru', 'Paul Kaye': 'Brother Lucian', 'William Houston': 'Cazan', 'Noah Huntley': 'Captain Petru', 'Ronan Vibert': 'Simion', 'Zach McGowan': 'Shkelgim', 'Ferdinand Kingsley': 'Hamza Bey', 'Joseph Long': 'General Omer', 'Thor Kristjansson': 'Bright Eyes', 'Jakub Gierszal': 'Acemi'}\"\r\ntt1065073,\"{'Ellar Coltrane': 'Mason', 'Patricia Arquette': 'Olivia', 'Elijah Smith': 'Tommy', 'Lorelei Linklater': 'Samantha', 'Steven Chester Prince': 'Ted       (as Steven Prince)', 'Bonnie Cross': 'Teacher', 'Sydney Orta': 'Elementary School Girl       (as Sidney Orta)', 'Libby Villari': 'Grandma', 'Ethan Hawke': 'Dad', 'Marco Perella': 'Professor Bill Welbrock', 'Jamie Howard': 'Mindy', 'Andrew Villarreal': 'Randy', 'Shane Graham': 'Neighborhood Friend #1', 'Tess Allen': 'Neighborhood Friend #2', 'Ryan Power': 'Paul'}\"\r\ntt2481480,\"{'Michael Pitt': 'Tommy Uva', 'Nina Arianda': 'Rosie', 'Andy Garcia': 'Big Al', 'Ray Romano': 'Jerry Cardozo', 'Griffin Dunne': 'Dave Lovell', 'Michael Rispoli': 'Sal', 'Yul Vazquez': 'Vinny Gorgeous', 'Frank Whaley': 'Agent Frank Hurd', 'Samira Wiley': 'Agent Annie Bell', 'Brian Tarantina': 'Ronnie', 'Aida Turturro': 'Anna', 'Matthew Sean Blumm': 'Marco       (as Matthew Blumm)', 'Luke Fava': 'Robbie', 'Burt Young': 'Joey D', 'Cathy Moriarty': 'Constance Uva       (as Cathy Moriarty-Gentile)'}\"\r\ntt2274570,\"{'Ken Marino': 'Duncan', 'Gillian Jacobs': 'Sarah', 'Mary Kay Place': 'Beatrice', 'Claudia Choi': 'Jillian', 'Toby Huss': 'Dr. Yeager', 'Patrick Warburton': 'Phil', 'Erik Charles Nielsen': 'Allistair', 'Peter Stormare': 'Highsmith', 'Kumail Nanjiani': 'Bobbi', 'Steve Zissis': 'Dr. Yip /              Milo       (voice)', 'Jake Broder': 'Bradley', 'Jonathan Daniel Brown': 'Joey', 'Nick Jaine': 'Abhilash', 'Dee Baldus': 'Diane', 'Diana Toshiko': 'Brittany'}\"\r\ntt2265398,\"{'Olivia Wilde': 'Kate', 'Jake Johnson': 'Luke', 'Anna Kendrick': 'Jill', 'Ron Livingston': 'Chris', 'Ti West': 'Dave', 'Jason Sudeikis': 'Gene Dentler', 'Mike Brune': 'Mike', 'Frank V. Ross': 'Frank', 'Michael Gaertner': 'Man w /              Fiance', 'Kristin Davis': 'Fiance', 'Jim Cibak': 'Jim', 'Alicia Van Couvering': 'Amy', 'Michael Zeller': 'Eli', 'Joe Swanberg': 'Angry Car Guy'}\"\r\ntt1211956,\"{'Sylvester Stallone': 'Breslin', 'Arnold Schwarzenegger': 'Rottmayer', 'Jim Caviezel': 'Hobbes', 'Faran Tahir': 'Javed', 'Amy Ryan': 'Abigail', 'Sam Neill': 'Dr. Kyrie', \"\"Vincent D'Onofrio\"\": 'Lester Clark', 'Vinnie Jones': 'Drake', 'Matt Gerald': 'Roag', '50 Cent': \"\"Hush       (as Curtis '50 Cent' Jackson)\"\", 'Caitriona Balfe': 'Jessica Miller', 'David Joseph Martinez': 'Captain Newal Beradah', 'Alec Rayme': 'Pilot', 'Christian Stokes': 'Babcock', 'Graham Beckel': 'Brims'}\"\r\ntt0469021,\"{'Colm Meaney': 'Pat Farrell', 'Steve Coogan': 'Alan Partridge /              Jason Statham /              Jason Bourne /              Jason Argonaut', 'Tim Key': 'Side Kick Simon', 'Karl Theobald': 'Greg Frampton', 'Nigel Lindsay': 'Jason Tresswell', 'Felicity Montagu': 'Lynn Benfield', 'Dustin Demri-Burns': 'Danny Sinclair', 'Molly Seymour': \"\"Danny's Posse\"\", 'Adam Langstaff': \"\"Danny's Posse\"\", 'Aaron Heffernan': \"\"Danny's Posse\"\", 'Simon Greenall': 'Michael', 'Phil Cornwell': 'Dave Clifton', 'Monica Dolan': 'Angela Ashbourne', 'Kieran Hodgson': 'Exec', 'Elizabeth Berrington': 'Bettie'}\"\r\ntt0114508,\"{'Ben Kingsley': 'Xavier Fitch', 'Michael Madsen': 'Preston Lennox', 'Alfred Molina': 'Dr. Stephen Arden', 'Forest Whitaker': 'Dan Smithson', 'Marg Helgenberger': 'Dr. Laura Baker', 'Natasha Henstridge': 'Sil', 'Michelle Williams': 'Young Sil', 'Jordan Lund': 'Aide', 'Don Fischer': 'Aide', 'Scott McKenna': 'Train Hobo', 'Virginia Morris': 'Mother', 'Jayne Luke': 'Snack Shop Clerk', 'David K. Schroeder': 'German Tourist', 'David Jensen': 'Conductor', 'Esther Scott': 'Female Conductor'}\"\r\ntt0089200,\"{'Peter Liapis': 'Jonathan Graves', 'Lisa Pelikan': 'Rebecca', 'Michael Des Barres': 'Malcolm Graves', 'Jack Nance': 'Wolfgang', 'Peter Risch': 'Grizzel', 'Tamara De Treaux': 'Greedigut', 'Scott Thomson': 'Mike', 'Ralph Seymour': 'Mark (Toad Boy)', 'Mariska Hargitay': 'Donna', 'Keith Joe Dick': 'Dick', 'David Dayan': 'Eddie', 'Victoria Catlin': 'Anastasia', 'Charene Cathleen': 'Robin', 'Bobbie Bresee': 'Temptress', 'Jamie Bronow': 'Jonathan Graves, as a child'}\"\r\ntt1637725,\"{'Mark Wahlberg': 'John Bennett', 'Mila Kunis': 'Lori Collins', 'Seth MacFarlane': 'Ted       (voice)', 'Joel McHale': 'Rex', 'Giovanni Ribisi': 'Donny', 'Patrick Warburton': 'Guy', 'Matt Walsh': 'Thomas', 'Jessica Barth': 'Tami-Lynn', 'Aedin Mincks': 'Robert', 'Bill Smitrovich': 'Frank', 'Patrick Stewart': 'Narrator       (voice)', 'Norah Jones': 'Norah Jones', 'Sam J. Jones': 'Sam Jones       (as Sam Jones)', 'Tom Skerritt': 'Tom Skerritt', 'Bretton Manley': 'Young John       (as Brett Manley)'}\"\r\ntt0780622,\"{'Jess Weixler': 'Dawn', 'John Hensley': 'Brad', 'Josh Pais': 'Dr. Godfrey', 'Hale Appleman': 'Tobey', 'Lenny von Dohlen': 'Bill', 'Vivienne Benesch': 'Kim', 'Ashley Springer': 'Ryan', 'Laila Liliana Garro': 'Gwen       (as Julia Garro)', 'Nicole Swahn': 'Melanie', 'Adam Wagner': 'Phil', 'Hunter Ulvog': 'Little Brad', 'Ava Ryen Plumb': 'Little Dawn', 'Trent Moore': 'Mr. Vincent', 'Mike Yager': 'Elliot', 'Nathan Parsons': 'Soda Spritzer'}\"\r\ntt1213663,\"{'Thomas Law': 'Young Gary', 'Zachary Bailess': 'Young Andy', 'Jasper Levine': 'Young Steven', 'James Tarpey': 'Young Peter', 'Luke Bromley': 'Young Oliver', 'Sophie Evans': 'Becky Salt', 'Samantha White': 'Erika Leekes', 'Rose Reynolds': 'Tracy Benson', 'Richard Hadfield': 'Young Shane', 'Flora Slorach': 'Young Sam', 'Francesca Reidie': 'Teenage Twins', 'Charlotte Reidie': 'Teenage Twins', 'Pierce Brosnan': 'Guy Shepherd', 'David Bradley': 'Basil', 'Michael Smiley': 'Reverend Green'}\"\r\ntt2557490,\"{'Seth MacFarlane': 'Albert', 'Charlize Theron': 'Anna', 'Amanda Seyfried': 'Louise', 'Liam Neeson': 'Clinch', 'Giovanni Ribisi': 'Edward', 'Neil Patrick Harris': 'Foy', 'Sarah Silverman': 'Ruth', 'Christopher Hagen': 'George Stark', 'Wes Studi': 'Cochise', 'Matt Clark': 'Old Prospector', 'Evan Jones': 'Lewis', 'Aaron McPherson': 'Ben', 'Rex Linn': 'Sheriff /              Narrator', 'Brett Rickaby': 'Charlie Blanche', 'Alex Borstein': 'Millie'}\"\r\ntt2318527,\"{'Rob Corddry': 'Jack', 'Leslie Bibb': 'Vanessa', 'Alex Berg': 'Mrs. Nussbaum /              Cheerful Guy', 'Keegan-Michael Key': \"\"F'resnel\"\", 'Robert Ben Garant': 'Father Sebastian', 'Thomas Lennon': 'Father Padrigo', 'David Pasquesi': 'Cardinal Vicente', 'David Wain': 'Dr. Marsden', 'Michael Ian Black': 'Dr. Marshall', 'Rob Huebel': 'Mickey', 'Paul Scheer': 'Ron', 'Dave Holmes': 'Rental Car Guy', 'Brittney Alger': 'Italian Nurse', 'Tara Cullen': 'Italian Nurse', 'Jessica Loyacono': 'Italian Nurse'}\"\r\ntt2017038,{'Robert Redford': 'Our Man'}\r\ntt1247640,\"{'Cyril Raffaelli': 'Capt. Damien Tomaso', 'David Belle': 'Leïto', 'Philippe Torreton': 'Le président de la République', 'Daniel Duval': 'Walter Gassman', 'Elodie Yung': 'Tao', \"\"MC Jean Gab'1\"\": 'Molko', 'James Deano': 'Karl le skin', 'Laouni Mouhid': 'Ali-K       (as La Fouine)', 'Fabrice Feltzinger': 'Little Montana', 'Pierre-Marie Mosconi': 'Roland', 'Johnny Amaro': 'Policier centre de contrôle', \"\"Pascal D'Amato\"\": 'Le garde escaller préfecture', 'Guy Amram': 'Le chef commando GIGN', 'Pascal Aubert': 'Le Chef De Poste', 'Jean-Gilles Barbier': 'Le commandant de police'}\"\r\ntt0120241,\"{'Mark Watson': 'Doorman', 'Christopher Walken': 'Carlo Bartolucci /              Charlie Barret', 'Denis Leary': 'Lono Veccio', 'Nina Siemaszko': 'Jennifer', 'Jay Della': 'Bartender       (as Jay Fiondella)', 'Henry Thomas': 'Avery Chasten', 'Sean Patrick Flanery': 'Max Minot', 'Nathan Dana Aldrich': 'Marcus       (as Nathan Dana)', 'Jay Mohr': 'Brett Cambell', 'Jeremy Sisto': 'T. K.', 'Frank Medrano': 'Heckle', 'Brad Garrett': 'Jeckyll', \"\"James Peter 'JP' O'Fallon Jr.\"\": 'Kid #1', 'Nicholas Huttloff': 'Kid #2', 'Trent Bross': \"\"Maitre D'\"\"}\"\r\ntt0377471,\"{'John Travolta': 'Chili Palmer', 'Uma Thurman': 'Edie Athens', 'Vince Vaughn': 'Raji', 'Cedric the Entertainer': 'Sin LaSalle', 'André Benjamin': 'Dabu', 'Steven Tyler': 'Steven Tyler', 'Robert Pastorelli': 'Joe Loop', 'Christina Milian': 'Linda Moon', 'Paul Adelstein': 'Hy Gordon', 'Debi Mazar': 'Marla', 'Gregory Alan Williams': 'Darryl       (as GregAlan Williams)', 'Harvey Keitel': 'Nick Carr', 'Dwayne Johnson': 'Elliot Wilhelm       (as The Rock)', 'Danny DeVito': 'Martin Weir', 'James Woods': 'Tommy Athens'}\"\r\ntt1478338,\"{'Kristen Wiig': 'Annie', 'Terry Crews': 'Boot Camp Instructor', 'Maya Rudolph': 'Lillian', 'Tom Yi': 'Jewelry Store Couple', 'Elaine Kao': 'Jewelry Store Couple', 'Michael Hitchcock': 'Don Cholodecki', 'Kali Hawk': 'Kahlua', 'Joe Nunez': 'Oscar the Security Guard       (as Joseph A. Nunez)', 'Rebel Wilson': 'Brynn', 'Matt Lucas': 'Gil', 'Jill Clayburgh': \"\"Annie's Mom\"\", 'Wendi McLendon-Covey': 'Rita', 'Ellie Kemper': 'Becca', 'Greg Tuculescu': 'Kevin', 'Steve Bannos': \"\"Annie's Mistaken Husband\"\"}\"\r\ntt1981677,\"{'Anna Kendrick': 'Beca', 'Skylar Astin': 'Jesse', 'Ben Platt': 'Benji', 'Brittany Snow': 'Chloe', 'Anna Camp': 'Aubrey', 'Rebel Wilson': 'Fat Amy', 'Alexis Knapp': 'Stacie', 'Ester Dean': 'Cynthia Rose', 'Hana Mae Lee': 'Lilly', 'Kelley Jakle': 'Jessica       (as Kelley Alice Jakle)', 'Wanetah Walmsley': 'Denise', 'Shelley Regner': 'Ashley', 'Caroline Fourmy': 'Mary Elise', 'Nicole Lovince': 'Kori', 'Adam Devine': 'Bumper       (as Adam DeVine)'}\"\r\ntt2398249,\"{'Paul Rudd': 'Joel', 'Amy Poehler': 'Molly', 'Bill Hader': 'Kyle', 'Ellie Kemper': 'Karen', 'Cobie Smulders': 'Tiffany', 'Noureen DeWulf': 'Melanie', 'Jason Mantzoukas': 'Bob', 'Michael Ian Black': 'Trevor', 'Michaela Watkins': 'Habermeyer', 'Randall Park': 'Martinson', 'Christopher Meloni': 'Roland', 'Teyonah Parris': 'Wanda', 'Ed Helms': 'Eggbert', 'David Wain': 'Keith', 'Jack McBrayer': 'Oliver'}\"\r\ntt0351977,\"{'Michael Bowen': 'Sheriff Stan Watkins', 'Johnny Knoxville': 'Ray Templeton', 'Dwayne Johnson': 'Chris Vaughn       (as The Rock)', 'Neal McDonough': 'Jay Hamilton', 'Ashley Scott': 'Deni', 'John Beasley': 'Chris Vaughn Sr.', 'Barbara Tarbuck': 'Connie Vaughn', 'Kristen Wilson': 'Michelle Vaughn', 'Khleo Thomas': 'Pete Vaughn', 'Kevin Durand': 'Booth', 'Andrew Tarbet': 'Jimmy', 'Patrick Gallagher': 'Keith', 'John Stewart': 'Rusty', 'Eric Breker': 'Deputy Ralston', 'Ryan Robbins': 'Travis'}\"\r\ntt0985694,\"{'Danny Trejo': 'Machete', 'Robert De Niro': 'Senator McLaughlin', 'Jessica Alba': 'Sartana', 'Steven Seagal': 'Torrez', 'Michelle Rodriguez': 'Luz', 'Jeff Fahey': 'Booth', 'Cheech Marin': 'Padre', 'Don Johnson': 'Von', 'Shea Whigham': 'Sniper', 'Lindsay Lohan': 'April', 'Daryl Sabara': 'Julio', 'Gilbert Trejo': 'Jorge', 'Ara Celi': 'Reporter', 'Tom Savini': 'Osiris Amanpour', 'Billy Blair': \"\"Von's Henchman\"\"}\"\r\ntt1013743,\"{'Tom Cruise': 'Roy Miller', 'Cameron Diaz': 'June Havens', 'Peter Sarsgaard': 'Fitzgerald', 'Jordi Mollà': 'Antonio', 'Viola Davis': 'Director George', 'Paul Dano': 'Simon Feck', 'Falk Hentschel': 'Bernhard', 'Marc Blucas': 'Rodney', 'Lennie Loftin': 'Braces', 'Maggie Grace': 'April Havens', 'Rich Manley': 'Danny', 'Dale Dye': 'Frank Jenkins', 'Celia Weston': 'Molly', 'Gal Gadot': 'Naomi', \"\"Jack O'Connell\"\": \"\"Wilmer       (as Jack A. O'Connell)\"\"}\"\r\ntt1022603,\"{'Joseph Gordon-Levitt': 'Tom', 'Zooey Deschanel': 'Summer', 'Geoffrey Arend': 'McKenzie', 'Chloë Grace Moretz': 'Rachel', 'Matthew Gray Gubler': 'Paul', 'Clark Gregg': 'Vance', 'Patricia Belcher': 'Millie', 'Rachel Boston': 'Alison', 'Minka Kelly': 'Autumn - Girl at Interview', 'Charles Walker': \"\"Millie's New Husband\"\", 'Ian Reed Kesler': 'Douche', 'Darryl Alan Reed': 'Bus Driver', 'Valente Rodriguez': 'Employee #1', 'Yvette Nicole Brown': 'New Secretary', 'Nicole Vicius': 'Partygoer'}\"\r\ntt0327850,\"{'Dwayne Johnson': 'Beck       (as The Rock)', 'Seann William Scott': 'Travis', 'Rosario Dawson': 'Mariana', 'Christopher Walken': 'Hatcher', 'Ewen Bremner': 'Declan', 'Jon Gries': 'Harvey', 'William Lucking': 'Walker', 'Ernie Reyes Jr.': 'Manito', 'Stuart F. Wilson': 'Swenson', 'Dennis Keiffer': 'Naylor', 'Garrett Warren': 'Henshaw', 'Toby Holguin': 'Head Indian Tracker', 'Paul S. Power': 'Martin       (as Paul Power)', 'Stephen Bishop': 'Knappmiller', 'Chuck Norman': 'Mullaire'}\"\r\ntt0947798,\"{'Natalie Portman': 'Nina Sayers /              The Swan Queen', 'Mila Kunis': 'Lily /              The Black Swan', 'Vincent Cassel': 'Thomas Leroy /              The Gentleman', 'Barbara Hershey': 'Erica Sayers /              The Queen', 'Winona Ryder': 'Beth Macintyre /              The Dying Swan', 'Benjamin Millepied': 'David /              The Prince', 'Ksenia Solo': 'Veronica /              Little Swan', 'Kristina Anapau': 'Galina /              Little Swan', 'Janet Montgomery': 'Madeline /              Little Swan', 'Sebastian Stan': 'Andrew /              Suitor', 'Toby Hemingway': 'Tom /              Suitor', 'Sergio Torrado': 'Sergio /              Rothbart', 'Mark Margolis': 'Mr. Fithian /              Patron', 'Tina Sloan': 'Mrs. Fithian /              Patron', 'Abraham Aronofsky': 'Mr. Stein /              Patron       (as Abe Aronofsky)'}\"\r\ntt1542344,\"{'James Franco': 'Aron Ralston', 'Kate Mara': 'Kristi', 'Amber Tamblyn': 'Megan', 'Sean Bott': \"\"Aron's Friend       (as Sean A. Bott)\"\", 'Koleman Stinger': 'Aron Age 5', 'Treat Williams': \"\"Aron's Dad\"\", 'John Lawrence': 'Brian', 'Kate Burton': \"\"Aron's Mom\"\", 'Bailee Michelle Johnson': 'Sonja Age 10', 'Parker Hadley': 'Aron Age 15', 'Clémence Poésy': 'Rana', 'Fenton Quinn': 'Blue John       (as Fenton G. Quinn)', 'Lizzy Caplan': 'Sonja', 'Peter Joshua Hull': 'Boy on Sofa       (as P.J. Hull)', 'Pieter Jan Brugge': 'Eric Meijer'}\"\r\ntt1538819,\"{'Ugur Yücel': 'Çerkez Abbas', 'Kenan Imirzalioglu': 'Akrep Celal', 'Nejat Isler': 'Ensar', 'Berrak Tüzünataç': 'Ezo', 'Ceyda Düvenci': 'Cavidan Sonay', 'Gokhan Duran': 'Zihinsel Özürlü Genç', 'Ilker Aksum': 'Doktor', 'Hakan Boyav': 'Adli Muhabir', 'Emir Bozkurt': 'Cinayet Masasi Komiseri', 'Ozan Güven': 'Remzi       (as Ozan Guven)', 'Kadir Kandemir': 'Kamer', 'Uraz Kaygilaroglu': 'Journalist', 'Baris Kaçkar': \"\"Ensar's brother\"\", 'Cengiz Keles': 'Selim       (as Görkem Keles)'}\"\r\ntt0451079,\"{'Jim Carrey': 'Horton       (voice)', 'Steve Carell': 'Mayor       (voice)', 'Carol Burnett': 'Kangaroo       (voice)', 'Will Arnett': 'Vlad       (voice)', 'Seth Rogen': 'Morton       (voice)', 'Dan Fogler': 'Councilman /              Yummo Wickersham       (voice)', 'Isla Fisher': 'Dr. Mary Lou Larue       (voice)', 'Jonah Hill': 'Tommy       (voice)', 'Amy Poehler': \"\"Sally O'Malley       (voice)\"\", 'Jaime Pressly': 'Mrs. Quilligan       (voice)', 'Charles Osgood': 'Narrator       (voice)', 'Josh Flitter': 'Rudy       (voice)', 'Niecy Nash': 'Miss Yelp       (voice)', 'Jesse McCartney': 'JoJo       (voice)', 'Shelby Adamowsky': 'Hedy /              Hooly /              Additional Voices       (voice)'}\"\r\ntt0098206,\"{'Patrick Swayze': 'Dalton', 'Kelly Lynch': 'Doc', 'Sam Elliott': 'Wade Garrett', 'Ben Gazzara': 'Brad Wesley', 'Marshall R. Teague': 'Jimmy       (as Marshall Teague)', 'Julie Michaels': 'Denise', 'Red West': 'Red Webster', 'Sunshine Parker': \"\"Emmet       (as 'Sunshine' Parker)\"\", 'Jeff Healey': 'Cody', 'Kevin Tighe': 'Tilghman', 'John Doe': 'Pat McGurn', 'Kathleen Wilhoite': 'Carrie', 'Travis McKenna': 'Jack', 'Roger Hewlett': 'Younger', 'Kurt James Stefka': 'Hank'}\"\r\ntt0050825,\"{'Kirk Douglas': 'Col. Dax', 'Ralph Meeker': 'Cpl. Philippe Paris', 'Adolphe Menjou': 'Gen. George Broulard', 'George Macready': 'Gen. Paul Mireau', 'Wayne Morris': 'Lt. Roget', 'Richard Anderson': 'Maj. Saint-Auban', 'Joe Turkel': 'Pvt. Pierre Arnaud       (as Joseph Turkel)', 'Christiane Kubrick': 'German Singer       (as Susanne Christian)', 'Jerry Hausner': 'Proprietor of Cafe', 'Peter Capell': 'Narrator of Opening Sequence /              Chief Judge of Court-Martial', 'Emile Meyer': 'Father Dupree', 'Bert Freed': 'Sgt. Boulanger', 'Kem Dibbs': 'Pvt. Lejeune', 'Timothy Carey': 'Pvt. Maurice Ferol', 'Fred Bell': 'Shell-Shocked Soldier'}\"\r\ntt0095690,\"{'Annabeth Gish': 'Kat', 'Julia Roberts': 'Daisy', 'Lili Taylor': 'Jojo', \"\"Vincent D'Onofrio\"\": \"\"Bill       (as Vincent Phillip D'Onofrio)\"\", 'William R. Moses': 'Tim', 'Adam Storke': 'Charlie', 'Conchata Ferrell': 'Leona', 'Joanna Merlin': 'Mrs. Arujo', 'Porscha Radcliffe': 'Phoebe', 'Bucky Walsh': 'Manny       (as Arthur Walsh)', 'John Fiore': 'Jake', 'Gene Amoroso': 'Mr. Barboza', 'Sheila Ferrini': 'Mrs. Barboza', 'Janet Zarish': 'Nicole Travers', 'Louis Turenne': 'Everyday Gourmet'}\"\r\ntt0091217,\"{'Gene Hackman': 'Coach Norman Dale', 'Barbara Hershey': 'Myra Fleener', 'Dennis Hopper': 'Shooter', 'Sheb Wooley': 'Cletus', 'Fern Persons': 'Opal Fleener', 'Chelcie Ross': 'George', 'Robert Swan': 'Rollin', \"\"Michael O'Guinne\"\": 'Rooster', 'Wil Dewitt': 'Reverend Doty', 'John Robert Thompson': 'Sheriff Finley', 'Michael Sassone': 'Preacher Purl', 'Gloria Dorson': 'Millie', 'Mike Dalzell': 'Mayor Carl', 'Skip Welker': 'Junior       (as Calvert L. Welker)', 'Eric Gilliom': 'J. June'}\"\r\ntt0106856,\"{'Michael Douglas': 'D-Fens', 'Robert Duvall': 'Prendergast', 'Barbara Hershey': 'Beth', 'Rachel Ticotin': 'Sandra', 'Tuesday Weld': 'Mrs. Prendergast', 'Frederic Forrest': 'Surplus Store Owner', 'Lois Smith': \"\"D-Fens' Mother\"\", 'Joey Singer': \"\"Adele (Beth's Child)       (as Joey Hope Singer)\"\", 'Ebbe Roe Smith': 'Guy on Freeway', 'Michael Paul Chan': 'Mr. Lee', 'Raymond J. Barry': 'Captain Yardley', 'D.W. Moffett': 'Detective Lydecker', 'Steve Park': 'Detective Brian', 'Kimberly Scott': 'Detective Jones', 'James Keane': 'Detective Keene'}\"\r\ntt0048028,\"{'Julie Harris': 'Abra', 'James Dean': 'Cal Trask', 'Raymond Massey': 'Adam Trask', 'Burl Ives': 'Sam - the Sheriff', 'Richard Davalos': 'Aron Trask', 'Jo Van Fleet': 'Kate', 'Albert Dekker': 'Will Hamilton', 'Lois Smith': 'Anne', 'Harold Gordon': 'Gustav Albrecht', 'Nick Dennis': 'Rantani'}\"\r\ntt0059113,\"{'Omar Sharif': 'Yuri', 'Julie Christie': 'Lara', 'Geraldine Chaplin': 'Tonya', 'Rod Steiger': 'Komarovsky', 'Alec Guinness': 'Yevgraf', 'Tom Courtenay': 'Pasha', 'Siobhan McKenna': 'Anna', 'Ralph Richardson': 'Alexander', 'Rita Tushingham': 'The Girl', 'Jeffrey Rockland': 'Sasha', 'Tarek Sharif': 'Yuri at 8 Years Old', 'Bernard Kay': 'The Bolshevik', 'Klaus Kinski': 'Kostoyed', 'Gérard Tichy': 'Liberius       (as Gerard Tichy)', 'Noel Willman': 'Razin'}\"\r\ntt0250494,\"{'Reese Witherspoon': 'Elle Woods', 'Luke Wilson': 'Emmett', 'Selma Blair': 'Vivian Kensington', 'Matthew Davis': 'Warner', 'Victor Garber': 'Professor Callahan', 'Jennifer Coolidge': 'Paulette', 'Holland Taylor': 'Professor Stromwell', 'Ali Larter': 'Brooke Taylor Windham', 'Jessica Cauffiel': 'Margot', 'Alanna Ubach': 'Serena', 'Oz Perkins': 'Dorky David Kidney', 'Linda Cardellini': 'Chutney', 'Bruce Thomas': 'UPS Guy', 'Meredith Scott Lynn': 'Enid', 'Raquel Welch': 'Mrs. Windham Vandermark'}\"\r\ntt0479143,\"{'Sylvester Stallone': 'Rocky Balboa', 'Burt Young': 'Paulie', 'Antonio Tarver': \"\"Mason 'The Line' Dixon\"\", 'Geraldine Hughes': 'Marie', 'Milo Ventimiglia': 'Robert Balboa Jr.', 'Tony Burton': 'Duke', 'A.J. Benza': 'L.C.', 'James Francis Kelly III': 'Steps', 'Talia Shire': 'Adrian       (archive footage)', 'Lou DiBella': 'Lou DiBella', 'Mike Tyson': 'Mike Tyson', 'Henry G. Sanders': 'Martin', 'Pedro Lovell': 'Spider Rico', 'Ana Gerena': 'Isabel', 'Angelyna Martinez': 'Angie       (as Angela Boyd)'}\"\r\ntt0113321,\"{'Holly Hunter': 'Claudia Larson', 'Robert Downey Jr.': 'Tommy Larson', 'Anne Bancroft': 'Adele Larson', 'Charles Durning': 'Henry Larson', 'Dylan McDermott': 'Leo Fish', 'Geraldine Chaplin': 'Aunt Glady', 'Steve Guttenberg': 'Walter Wedman', 'Cynthia Stevenson': 'Joanne Wedman', 'Claire Danes': 'Kitt', 'Emily Ann Lloyd': 'Brittany Lace', 'Zack Duhame': 'Walter Wedman Jr.', 'Austin Pendleton': 'Peter Arnold', 'David Strathairn': 'Russell Terziak', 'Amy Yasbeck': 'Ginny Johnson Drewer', 'James Lecesne': 'Ron Drewer'}\"\r\ntt0311648,\"{'Katie Holmes': 'April Burns', 'Derek Luke': 'Bobby', 'Oliver Platt': 'Jim Burns', 'Alison Pill': 'Beth Burns', 'John Gallagher Jr.': 'Timmy Burns', 'Patricia Clarkson': 'Joy Burns', 'Alice Drummond': 'Grandma Dottie', 'Vitali Baganov': 'Half Asleep Man', 'Lillias White': 'Evette', 'Isiah Whitlock Jr.': 'Eugene', 'Adrian Martinez': 'Man in Mohair Sweater', 'Susan Bruce': 'Tish', 'Jamari Richardson': 'Boy on Bicycle', 'Leila Danette': 'Woman in Stairwell', 'Stephen Chen': 'Lee Loung Tan'}\"\r\ntt1731141,\"{'Asa Butterfield': 'Ender Wiggin', 'Harrison Ford': 'Colonel Graff', 'Hailee Steinfeld': 'Petra Arkanian', 'Abigail Breslin': 'Valentine Wiggin', 'Ben Kingsley': 'Mazer Rackham', 'Viola Davis': 'Major Gwen Anderson', 'Aramis Knight': 'Bean', 'Suraj Partha': 'Alai       (as Suraj Parthasarathy)', 'Moises Arias': 'Bonzo Madrid', 'Khylin Rhambo': 'Dink Meeker', \"\"Jimmy 'Jax' Pinchak\"\": 'Peter Wiggin       (as Jimmy Jax Pinchak)', 'Nonso Anozie': 'Sergeant Dap', 'Conor Carroll': 'Bernard', 'Caleb J. Thaggard': 'Stilson       (as Caleb Thaggard)', 'Cameron Gaskins': 'Slattery (Leopard Army)'}\"\r\ntt1670345,\"{'Jesse Eisenberg': 'J. Daniel Atlas', 'Mark Ruffalo': 'Dylan Rhodes', 'Woody Harrelson': 'Merritt McKinney', 'Isla Fisher': 'Henley Reeves', 'Dave Franco': 'Jack Wilder', 'Mélanie Laurent': 'Alma Dray', 'Morgan Freeman': 'Thaddeus Bradley', 'Michael Caine': 'Arthur Tressler', 'Michael Kelly': 'Agent Fuller       (as Michael J. Kelly)', 'Common': 'Evans', 'David Warshofsky': 'Cowan', 'José Garcia': 'Etienne Forcier', 'Jessica Lindsey': 'Hermia       (as Jessica C. Lindsey)', 'Caitriona Balfe': 'Jasmine Tressler', 'Stephanie Honoré': 'Atlas Groupie'}\"\r\ntt1418377,\"{'Aaron Eckhart': 'Adam', 'Yvonne Strahovski': 'Terra', 'Miranda Otto': 'Leonore', 'Bill Nighy': 'Naberius', 'Jai Courtney': 'Gideon', 'Socratis Otto': 'Zuriel', 'Aden Young': 'Victor Frankenstein', 'Caitlin Stasey': 'Keziah', 'Mahesh Jadu': 'Ophir', 'Steve Mouzakis': 'Helek', 'Nicholas Bell': 'Carl Avery', 'Deniz Akdeniz': 'Barachel', 'Chris Pang': 'Levi       (as Christopher Pang)', 'Kevin Grevioux': 'Dekar', 'Bruce Spence': 'Molokai'}\"\r\ntt1572315,\"{'Alexandra Daddario': 'Heather Miller', 'Dan Yeager': 'Leatherface', 'Trey Songz': \"\"Ryan       (as Tremaine 'Trey Songz' Neverson)\"\", 'Scott Eastwood': 'Carl', 'Tania Raymonde': 'Nikki', 'Shaun Sipos': 'Darryl', 'Keram Malicki-Sánchez': 'Kenny       (as Keram Malicki-Sanchez)', 'James MacDonald': 'Officer Marvin', 'Thom Barry': 'Sheriff Hooper', 'Paul Rae': 'Burt Hartman', 'Richard Riehle': 'Farnsworth', 'Bill Moseley': 'Drayton Sawyer', 'Gunnar Hansen': 'Boss Sawyer /              Leatherface (archive footage)', 'David Born': 'Gavin Miller', 'Sue Rock': 'Arlene Miller'}\"\r\ntt1588173,\"{'Nicholas Hoult': 'R', 'Teresa Palmer': 'Julie', 'Analeigh Tipton': 'Nora', 'Rob Corddry': 'M', 'Dave Franco': 'Perry', 'John Malkovich': 'Grigio', 'Cory Hardrict': 'Kevin', 'Daniel Rindress-Kay': 'Soldier #1', 'Vincent Leclerc': \"\"Perry's Dad       (as Vincent LeClerc)\"\", 'Clifford LeDuc-Vaillancourt': 'Boy at Airport', 'Billie Calmeau': 'Girl at Airport', 'Adam Driscoll': 'Young Man at ATM', 'Chris Cavener': 'Soldier #2', 'Jonathan Dubsky': 'Berg', 'Alec Bourgeois': 'Perry (11 years old)'}\"\r\ntt1549920,\"{'Arron Shiver': 'State Trooper', 'Arnold Schwarzenegger': 'Ray Owens', 'Titos Menchaca': 'Mayor', 'Richard Dillard': 'Irv', 'Doug Jackson': 'Harry', 'Mathew Greer': 'Sam', 'Peter Stormare': 'Burrell', 'Chris Browning': 'Pony Tail', 'Christiana Leucas': 'Christie', 'Johnny Knoxville': 'Lewis Dinkum', 'Zach Gilford': 'Jerry Bailey', 'Luis Guzmán': 'Mike Figuerola', 'Rio Alexander': 'Faceburn', 'James Burnett': 'Poyo', 'David Midthunder': 'Cohan'}\"\r\ntt1650043,\"{'Zachary Gordon': 'Greg Heffley', 'Devon Bostick': 'Rodrick Heffley', 'Rachael Harris': 'Susan Heffley', 'Robert Capron': 'Rowley Jefferson', 'Steve Zahn': 'Frank Heffley', 'Connor Fielding': 'Manny Heffley', 'Owen Fielding': 'Manny Heffley', 'Peyton List': 'Holly Hills', 'Karan Brar': 'Chirag', 'Laine MacNeil': 'Patty Farrell', 'Grayson Russell': 'Fregley', 'Terence Kelly': 'Grandpa', 'Fran Kranz': 'Bill', 'Bryce Hodgson': 'Ben Segal', 'Andrew McNee': 'Coach Malone'}\"\r\ntt1408253,\"{'Ice Cube': 'James Payton', 'Kevin Hart': 'Ben Barber', 'John Leguizamo': 'Santiago', 'Bruce McGill': 'Lt. Brooks', 'Tika Sumpter': 'Angela Payton', 'Bryan Callen': 'Miggs', 'Laurence Fishburne': 'Omar', 'Dragos Bucur': 'Marko', 'Gary Owen': 'Crazy Cody', 'Jacob Latimore': 'Ramon', 'Jay Pharoah': 'Runflat', 'Benjamin Flores Jr.': \"\"Morris the Kid       (as Benjamin 'Lil P-Nut' Flores)\"\", 'Greg Rementer': \"\"Marko's Gunman\"\", 'Eric Benson': \"\"Marko's Gunman\"\", 'Anna House': 'Cafeteria Lady'}\"\r\ntt2848292,\"{'Anna Kendrick': 'Beca', 'Rebel Wilson': 'Fat Amy', 'Hailee Steinfeld': 'Emily', 'Brittany Snow': 'Chloe', 'Skylar Astin': 'Jesse', 'Adam Devine': 'Bumper       (as Adam DeVine)', 'Katey Sagal': 'Katherine', 'Anna Camp': 'Aubrey', 'Ben Platt': 'Benji', 'Alexis Knapp': 'Stacie', 'Hana Mae Lee': 'Lilly', 'Ester Dean': 'Cynthia Rose', 'Chrissie Fit': 'Flo', 'Birgitte Hjort Sørensen': 'Kommissar       (as Birgitte Hjort-Sørensen)', 'Flula Borg': 'Pieter Krämer'}\"\r\ntt0369610,\"{'Chris Pratt': 'Owen', 'Bryce Dallas Howard': 'Claire', 'Irrfan Khan': 'Masrani', \"\"Vincent D'Onofrio\"\": 'Hoskins', 'Ty Simpkins': 'Gray', 'Nick Robinson': 'Zach', 'Jake Johnson': 'Lowery', 'Omar Sy': 'Barry', 'BD Wong': 'Dr. Henry Wu', 'Judy Greer': 'Karen', 'Lauren Lapkus': 'Vivian', 'Brian Tee': 'Hamada', 'Katie McGrath': 'Zara', 'Andy Buckley': 'Scott', 'Eric Edelstein': 'Paddock Supervisor'}\"\r\ntt2820852,\"{'Vin Diesel': 'Dominic Toretto', 'Paul Walker': \"\"Brian O'Conner\"\", 'Jason Statham': 'Deckard Shaw', 'Michelle Rodriguez': 'Letty', 'Jordana Brewster': 'Mia', 'Tyrese Gibson': 'Roman', 'Ludacris': \"\"Tej       (as Chris 'Ludacris' Bridges)\"\", 'Dwayne Johnson': 'Hobbs', 'Lucas Black': 'Sean Boswell', 'Kurt Russell': 'Mr. Nobody', 'Nathalie Emmanuel': 'Ramsey', 'Elsa Pataky': 'Elena', 'Gal Gadot': 'Gisele', 'John Brotherton': 'Sheppard', 'Luke Evans': 'Owen Shaw'}\"\r\ntt2980516,\"{'Eddie Redmayne': 'Stephen Hawking', 'Felicity Jones': 'Jane Hawking', 'Tom Prior': 'Robert Hawking - Age 17', 'Sophie Perry': 'Lucy Hawking - Age 14', 'Finlay Wright-Stephens': 'Timothy Hawking - Age 8', 'Harry Lloyd': 'Brian', 'Alice Orr-Ewing': 'Diana King', 'David Thewlis': 'Dennis Sciama', 'Thomas Morrison': 'Carter', 'Michael Marcus': 'Ellis', 'Gruffudd Glyn': 'Rees', 'Paul Longley': 'Barman - Rowing Club', 'Emily Watson': 'Beryl Wilde', 'Guy Oliver-Watts': 'George Wilde', 'Simon McBurney': 'Frank Hawking'}\"\r\ntt0066995,\"{'Sean Connery': 'James Bond', 'Jill St. John': 'Tiffany Case', 'Charles Gray': 'Blofeld', 'Lana Wood': \"\"Plenty O'Toole\"\", 'Jimmy Dean': 'Willard Whyte', 'Bruce Cabot': 'Saxby', 'Putter Smith': 'Mr. Kidd', 'Bruce Glover': 'Mr. Wint', 'Norman Burton': 'Leiter', 'Joseph Fürst': 'Dr Metz       (as Joseph Furst)', 'Bernard Lee': \"\"'M'\"\", 'Desmond Llewelyn': \"\"'Q'\"\", 'Leonard Barr': 'Shady Tree', 'Lois Maxwell': 'Moneypenny', 'Margaret Lacey': 'Mrs. Whistler'}\"\r\ntt0086006,\"{'Sean Connery': 'James Bond', 'Klaus Maria Brandauer': 'Maximilian Largo', 'Max von Sydow': 'Blofeld       (as Max Von Sydow)', 'Barbara Carrera': 'Fatima', 'Kim Basinger': 'Domino Petachi', 'Bernie Casey': 'Leiter', 'Alec McCowen': \"\"'Q' Algy\"\", 'Edward Fox': \"\"'M'\"\", 'Pamela Salem': 'Miss Moneypenny', 'Rowan Atkinson': 'Small-Fawcett', 'Valerie Leon': 'Lady in Bahamas', 'Milos Kirek': 'Kovacs       (as Milow Kirek)', 'Pat Roach': 'Lippe', 'Anthony Sharp': 'Lord Ambrose', 'Prunella Gee': 'Patricia'}\"\r\ntt0062512,\"{'Sean Connery': 'James Bond', 'Akiko Wakabayashi': 'Aki', 'Mie Hama': 'Kissy Suzuki', 'Tetsurô Tanba': 'Tiger Tanaka       (as Tetsuro Tamba)', 'Teru Shimada': 'Mr. Osato', 'Karin Dor': 'Helga Brandt', 'Donald Pleasence': 'Blofeld', 'Bernard Lee': \"\"'M'\"\", 'Lois Maxwell': 'Miss Moneypenny', 'Desmond Llewelyn': \"\"'Q'\"\", 'Charles Gray': 'Henderson', 'Tsai Chin': 'Ling, Chinese Girl in Hong Kong', 'Peter Fanene Maivia': 'Car Driver', 'Burt Kwouk': 'Spectre 3', 'Michael Chow': 'Spectre 4'}\"\r\ntt0246460,\"{'Pierce Brosnan': 'James Bond', 'Halle Berry': 'Jinx Johnson', 'Toby Stephens': 'Gustav Graves', 'Rosamund Pike': 'Miranda Frost', 'Rick Yune': 'Zao', 'Judi Dench': 'M', 'John Cleese': 'Q', 'Michael Madsen': 'Damian Falco', 'Will Yun Lee': 'Colonel Moon', 'Kenneth Tsang': 'General Moon', 'Emilio Echevarría': 'Raoul', 'Michael Gor': 'Vlad       (as Michael Gorevoy)', 'Lawrence Makoare': 'Mr. Kil', 'Colin Salmon': 'Charles Robinson', 'Samantha Bond': 'Miss Moneypenny'}\"\r\ntt0057076,\"{'Sean Connery': 'James Bond', 'Daniela Bianchi': 'Tatiana Romanova', 'Pedro Armendáriz': 'Ali Kerim Bey       (as Pedro Armendariz)', 'Lotte Lenya': 'Rosa Klebb', 'Robert Shaw': \"\"Donald 'Red' Grant\"\", 'Bernard Lee': \"\"'M'\"\", 'Eunice Gayson': 'Sylvia Trench', 'Walter Gotell': 'Morzeny', 'Francis De Wolff': 'Vavra       (as Francis de Wolff)', 'George Pastell': 'Train Conductor', 'Nadja Regin': \"\"Kerim's Mistress\"\", 'Lois Maxwell': 'Miss Moneypenny', 'Aliza Gur': 'Vida', 'Martine Beswick': 'Zora       (as Martin Beswick)', 'Vladek Sheybal': 'Kronsteen'}\"\r\ntt0058150,\"{'Sean Connery': 'James Bond', 'Gert Fröbe': 'Goldfinger       (as Gert Frobe)', 'Honor Blackman': 'Pussy Galore', 'Shirley Eaton': 'Jill Masterson', 'Tania Mallet': 'Tilly Masterson', 'Harold Sakata': 'Oddjob       (as Harold Sakata {Tosh Togo})', 'Bernard Lee': \"\"'M'\"\", 'Martin Benson': 'Solo', 'Cec Linder': 'Felix Leiter', 'Austin Willis': 'Simmons', 'Lois Maxwell': 'Moneypenny', 'Bill Nagy': 'Midnight', 'Michael Mellinger': 'Kisch', 'Peter Cranwell': 'Johnny', 'Nadja Regin': 'Bonita'}\"\r\ntt0830515,\"{'Daniel Craig': 'James Bond', 'Olga Kurylenko': 'Camille', 'Mathieu Amalric': 'Dominic Greene', 'Judi Dench': 'M', 'Giancarlo Giannini': 'Rene Mathis', 'Gemma Arterton': 'Strawberry Fields', 'Jeffrey Wright': 'Felix Leiter', 'David Harbour': 'Gregg Beam', 'Jesper Christensen': 'Mr. White', 'Anatole Taubman': 'Elvis', 'Rory Kinnear': 'Bill Tanner', 'Tim Pigott-Smith': 'Foreign Secretary', 'Joaquín Cosio': 'General Medrano', 'Fernando Guillén Cuervo': 'Colonel of Police', 'Jesús Ochoa': 'Lt. Orso'}\"\r\ntt1074638,\"{'Daniel Craig': 'James Bond', 'Judi Dench': 'M', 'Javier Bardem': 'Silva', 'Ralph Fiennes': 'Gareth Mallory', 'Naomie Harris': 'Eve', 'Bérénice Marlohe': 'Severine       (as Bérénice Lim Marlohe)', 'Albert Finney': 'Kincade', 'Ben Whishaw': 'Q', 'Rory Kinnear': 'Tanner', 'Ola Rapace': 'Patrice', 'Helen McCrory': 'Clair Dowar MP', 'Nicholas Woodeson': 'Doctor Hall', 'Bill Buckhurst': 'Ronson', 'Elize du Toit': \"\"Vanessa (M's Assistant)\"\", 'Ian Bonar': 'MI6 Technician'}\"\r\ntt0059800,\"{'Sean Connery': 'James Bond', 'Claudine Auger': 'Domino', 'Adolfo Celi': 'Largo', 'Luciana Paluzzi': 'Fiona', 'Rik Van Nutter': 'Felix Leiter', 'Guy Doleman': 'Count Lippe', 'Molly Peters': 'Patricia', 'Martine Beswick': 'Paula', 'Bernard Lee': \"\"'M'\"\", 'Desmond Llewelyn': \"\"'Q'\"\", 'Lois Maxwell': 'Moneypenny', 'Roland Culver': 'Foreign Secretary', 'Earl Cameron': 'Pinder', 'Paul Stassino': 'Palazzi', 'Rose Alba': 'Madame Boitier'}\"\r\ntt0381061,\"{'Daniel Craig': 'James Bond', 'Eva Green': 'Vesper Lynd', 'Mads Mikkelsen': 'Le Chiffre', 'Judi Dench': 'M', 'Jeffrey Wright': 'Felix Leiter', 'Giancarlo Giannini': 'Rene Mathis', 'Caterina Murino': 'Solange', 'Simon Abkarian': 'Alex Dimitrios', 'Isaach De Bankolé': 'Steven Obanno       (as Isaach De Bankole)', 'Jesper Christensen': 'Mr. White', 'Ivana Milicevic': 'Valenka', 'Tobias Menzies': 'Villiers', 'Claudio Santamaria': 'Carlos', 'Sebastien Foucan': 'Mollaka       (as Sébastien Foucan)', 'Malcolm Sinclair': 'Dryden'}\"\r\ntt0064757,\"{'George Lazenby': 'James Bond', 'Diana Rigg': 'Tracy', 'Telly Savalas': 'Blofeld', 'Gabriele Ferzetti': 'Draco', 'Ilse Steppat': 'Irma Bunt', 'Lois Maxwell': 'Moneypenny', 'George Baker': 'Sir Hilary Bray', 'Bernard Lee': \"\"'M'\"\", 'Bernard Horsfall': 'Campbell', 'Desmond Llewelyn': \"\"'Q'\"\", 'Yuri Borienko': 'Grunther', 'Virginia North': 'Olympe', 'Geoffrey Cheshire': 'Toussaint', 'Irvin Allen': 'Che Che', 'Terence Mountain': 'Raphael       (as Terry Mountain)'}\"\r\ntt0113189,\"{'Pierce Brosnan': 'James Bond', 'Sean Bean': 'Alec Trevelyan', 'Izabella Scorupco': 'Natalya Simonova', 'Famke Janssen': 'Xenia Onatopp', 'Joe Don Baker': 'Jack Wade', 'Judi Dench': 'M', 'Robbie Coltrane': 'Valentin Zukovsky', 'Tchéky Karyo': 'Dimitri Mishkin       (as Tcheky Karyo)', 'Gottfried John': 'Colonel Ourumov', 'Alan Cumming': 'Boris Grishenko', 'Desmond Llewelyn': 'Q', 'Samantha Bond': 'Moneypenny', 'Michael Kitchen': 'Bill Tanner', 'Serena Gordon': 'Caroline', 'Simon Kunz': 'Severnaya Duty Officer'}\"\r\ntt0120347,\"{'Pierce Brosnan': 'James Bond', 'Jonathan Pryce': 'Elliot Carver', 'Michelle Yeoh': 'Wai Lin', 'Teri Hatcher': 'Paris Carver', 'Ricky Jay': 'Henry Gupta', 'Götz Otto': 'Stamper', 'Joe Don Baker': 'Wade', 'Vincent Schiavelli': 'Dr. Kaufman', 'Judi Dench': 'M', 'Desmond Llewelyn': 'Q', 'Samantha Bond': 'Moneypenny', 'Colin Salmon': 'Robinson', 'Geoffrey Palmer': 'Admiral Roebuck', 'Julian Fellowes': 'Minister of Defence', 'Terence Rigby': 'General Bukharin'}\"\r\ntt0090264,\"{'Roger Moore': 'James Bond', 'Christopher Walken': 'Max Zorin', 'Tanya Roberts': 'Stacey Sutton', 'Grace Jones': 'May Day', 'Patrick Macnee': 'Tibbett', 'Patrick Bauchau': 'Scarpine', 'David Yip': 'Chuck Lee', 'Fiona Fullerton': 'Pola Ivanova', 'Manning Redwood': 'Bob Conley', 'Alison Doody': 'Jenny Flex', 'Willoughby Gray': 'Dr. Carl Mortner', 'Desmond Llewelyn': 'Q', 'Robert Brown': 'M', 'Lois Maxwell': 'Miss Moneypenny', 'Walter Gotell': 'General Gogol'}\"\r\ntt0071807,\"{'Roger Moore': 'James Bond', 'Christopher Lee': 'Scaramanga', 'Britt Ekland': 'Goodnight', 'Maud Adams': 'Andrea Anders', 'Hervé Villechaize': 'Nick Nack       (as Herve Villechaize)', 'Clifton James': 'J.W. Pepper', 'Richard Loo': 'Hai Fat', 'Soon-Tek Oh': 'Hip       (as Soon-Taik Oh)', 'Marc Lawrence': 'Rodney', 'Bernard Lee': \"\"'M'\"\", 'Lois Maxwell': 'Moneypenny', 'Marne Maitland': 'Lazar', 'Desmond Llewelyn': \"\"'Q'\"\", 'James Cossins': 'Colthorpe', 'Yao Lin Chen': 'Chula       (as Chan Yiu Lam)'}\"\r\ntt0097742,\"{'Timothy Dalton': 'James Bond', 'Carey Lowell': 'Pam Bouvier', 'Robert Davi': 'Franz Sanchez', 'Talisa Soto': 'Lupe Lamora', 'Anthony Zerbe': 'Milton Krest', 'Frank McRae': 'Sharkey', 'Everett McGill': 'Killifer', 'Wayne Newton': 'Professor Joe Butcher', 'Benicio Del Toro': 'Dario', 'Anthony Starke': 'Truman-Lodge', 'Pedro Armendáriz Jr.': 'President Hector Lopez       (as Pedro Armendariz)', 'Desmond Llewelyn': 'Q', 'David Hedison': 'Felix Leiter', 'Priscilla Barnes': 'Della Churchill', 'Robert Brown': 'M'}\"\r\ntt0143145,\"{'Pierce Brosnan': 'James Bond', 'Sophie Marceau': 'Elektra King', 'Robert Carlyle': 'Renard', 'Denise Richards': 'Dr. Christmas Jones', 'Robbie Coltrane': 'Valentin Zukovsky', 'Judi Dench': 'M', 'Desmond Llewelyn': 'Q', 'John Cleese': 'R', 'Maria Grazia Cucinotta': 'Cigar Girl', 'Samantha Bond': 'Moneypenny', 'Michael Kitchen': 'Tanner', 'Colin Salmon': 'Robinson', 'Goldie': 'Bull', 'David Calder': 'Sir Robert King', 'Serena Scott Thomas': 'Dr. Molly Warmflash'}\"\r\ntt0082398,\"{'Roger Moore': \"\"Ian Fleming's James Bond 007\"\", 'Carole Bouquet': 'Melina Havelock', 'Topol': 'Milos Columbo', 'Lynn-Holly Johnson': 'Bibi Dahl', 'Julian Glover': 'Kristatos', 'Cassandra Harris': 'Lisl', 'Jill Bennett': 'Jacoba Brink', 'Michael Gothard': 'Locque', 'John Wyman': 'Erich Kriegler', 'Jack Hedley': 'Sir Timothy Havelock', 'Lois Maxwell': 'Miss Moneypenny', 'Desmond Llewelyn': 'Q', 'Geoffrey Keen': 'Minister of Defence', 'Walter Gotell': 'General Gogol', 'James Villiers': 'Tanner'}\"\r\ntt0086034,\"{'Roger Moore': 'James Bond', 'Maud Adams': 'Octopussy', 'Louis Jourdan': 'Kamal Khan', 'Kristina Wayborn': 'Magda', 'Kabir Bedi': 'Gobinda', 'Steven Berkoff': 'Orlov', 'David Meyer': 'Twin One', 'Tony Meyer': 'Twin Two       (as Anthony Meyer)', 'Desmond Llewelyn': 'Q', 'Robert Brown': 'M', 'Lois Maxwell': 'Miss Moneypenny', 'Michaela Clavell': 'Penelope Smallbone', 'Walter Gotell': 'Gogol', 'Vijay Amritraj': 'Vijay', 'Albert Moses': 'Sadruddin'}\"\r\ntt0070328,\"{'Roger Moore': 'James Bond', 'Yaphet Kotto': 'Kananga /              Mr. Big', 'Jane Seymour': 'Solitaire', 'Clifton James': 'Sheriff Pepper', 'Julius Harris': 'Tee Hee       (as Julius W. Harris)', 'Geoffrey Holder': 'Baron Samedi', 'David Hedison': 'Leiter', 'Gloria Hendry': 'Rosie', 'Bernard Lee': \"\"'M'\"\", 'Lois Maxwell': 'Moneypenny', 'Tommy Lane': 'Adam', 'Earl Jolly Brown': 'Whisper', 'Roy Stewart': 'Quarrel', 'Lon Satton': 'Strutter', 'Arnold Williams': 'Cab Driver 1'}\"\r\ntt0076752,\"{'Roger Moore': 'James Bond', 'Barbara Bach': 'Maj. Anya Amasova /              Agent XXX', 'Curd Jürgens': 'Karl Stromberg       (as Curt Jurgens)', 'Richard Kiel': 'Jaws', 'Caroline Munro': 'Naomi', 'Walter Gotell': 'Gen. Anatol Gogol', 'Geoffrey Keen': 'Sir Frederick Gray', 'Bernard Lee': 'M', 'George Baker': 'Capt. Benson', 'Michael Billington': 'Sergei Barsov', 'Olga Bisera': 'Felicca', 'Desmond Llewelyn': 'Q', 'Edward de Souza': 'Sheikh Hosein       (as Edward De Souza)', 'Vernon Dobtcheff': 'Max Kalba', 'Valerie Leon': 'Hotel Receptionist'}\"\r\ntt0093428,\"{'Timothy Dalton': 'James Bond', \"\"Maryam d'Abo\"\": 'Kara Milovy', 'Jeroen Krabbé': 'General Georgi Koskov', 'Joe Don Baker': 'Brad Whitaker', 'John Rhys-Davies': 'General Leonid Pushkin', 'Art Malik': 'Kamran Shah', 'Andreas Wisniewski': 'Necros', 'Thomas Wheatley': 'Saunders', 'Desmond Llewelyn': 'Q', 'Robert Brown': 'M', 'Geoffrey Keen': 'Minister of Defence', 'Walter Gotell': 'General Anatol Gogol', 'Caroline Bliss': 'Miss Moneypenny', 'John Terry': 'Felix Leiter', 'Virginia Hey': 'Rubavitch'}\"\r\ntt0055928,\"{'Sean Connery': 'James Bond', 'Ursula Andress': 'Honey Ryder', 'Joseph Wiseman': 'Dr. No', 'Jack Lord': 'Felix Leiter', 'Bernard Lee': 'M.', 'Anthony Dawson': 'Professor Dent', 'Zena Marshall': 'Miss Taro', 'John Kitzmiller': 'Quarrel       (as John Kitzmuller)', 'Eunice Gayson': 'Sylvia Trench', 'Lois Maxwell': 'Miss Moneypenny', 'Peter Burton': 'Major Boothroyd', 'Yvonne Shima': 'Sister Lily', 'Michel Mok': 'Sister Rose', 'Marguerite LeWars': 'Annabel Chung - Photographer       (as Margaret Le Wars) (as Marguerite Lewars: end credits)', 'William Foster-Davis': 'Superintendent Duff       (as Wm. Foster-Davis)'}\"\r\ntt0079574,\"{'Roger Moore': 'James Bond', 'Lois Chiles': 'Holly Goodhead', 'Michael Lonsdale': 'Hugo Drax', 'Richard Kiel': 'Jaws', 'Corinne Cléry': 'Corinne Dufour       (as Corinne Clery)', 'Bernard Lee': 'M', 'Geoffrey Keen': 'Sir Frederick Gray', 'Desmond Llewelyn': 'Q', 'Lois Maxwell': 'Miss Moneypenny', 'Toshirô Suga': 'Chang       (as Toshiro Suga)', 'Emily Bolton': 'Manuela', 'Blanche Ravalec': \"\"Dolly - Jaws' Girlfriend\"\", 'Irka Bochenko': 'Blonde Beauty', 'Mike Marshall': 'Col. Scott       (as Michael Marshall)', 'Leila Shenna': 'Hostess Private Jet'}\"\r\ntt1436562,\"{'Karen Disher': 'Mother Bird       (voice)', 'Jason Fricchione': 'Truck Driver       (voice)', 'Sofia Scarpa Saldanha': 'Young Linda       (voice)', 'Leslie Mann': 'Linda       (voice)', 'Kelly Keaton': 'Bookstore Customer /              Lady Tourist       (voice)', 'Jesse Eisenberg': 'Blu       (voice)', 'Wanda Sykes': 'Chloe (The Goose)       (voice)', 'Jane Lynch': 'Alice (The Other Goose)       (voice)', 'Rodrigo Santoro': 'Tulio /              Soccer Announcer       (voice)', 'Gracinha Leporace': 'Dr. Barbosa       (voice)', 'Jamie Foxx': 'Nico       (voice)', 'Will.i.am': 'Pedro       (voice) (as will.i.am)', 'Phil Miler': 'Aviary Intern /              Waiter       (voice)', 'Anne Hathaway': 'Jewel       (voice)', 'Bernardo De Paula': 'Sylvio /              Kipo       (voice) (as Bernardo de Paula)'}\"\r\ntt1318514,\"{'Andy Serkis': 'Caesar', 'Karin Konoval': 'Maurice /              Court Clerk', 'Terry Notary': 'Rocket /              Bright Eyes', 'Richard Ridings': 'Buck - Ape', 'Christopher Gordon': 'Koba - Ape       (as Chris Gordon)', 'Devyn Dalton': 'Cornelia - Ape', 'Jay Caputo': 'Alpha', 'James Franco': 'Will Rodman', 'Freida Pinto': 'Caroline Aranha', 'John Lithgow': 'Charles Rodman', 'Brian Cox': 'John Landon', 'Tom Felton': 'Dodge Landon', 'David Oyelowo': 'Steven Jacobs', 'Tyler Labine': 'Robert Franklin', 'Jamie Harris': 'Rodney - Shelter Assistant'}\"\r\ntt0477347,\"{'Ben Stiller': 'Larry Daley', 'Carla Gugino': 'Rebecca', 'Dick Van Dyke': 'Cecil', 'Mickey Rooney': 'Gus', 'Bill Cobbs': 'Reginald', 'Jake Cherry': 'Nick Daley', 'Ricky Gervais': 'Dr. McPhee', 'Robin Williams': 'Teddy Roosevelt', 'Kim Raver': 'Erica Daley', 'Patrick Gallagher': 'Attila the Hun', 'Rami Malek': 'Ahkmenrah', 'Pierfrancesco Favino': 'Christopher Columbus', 'Charlie Murphy': 'Taxi Driver', 'Steve Coogan': 'Octavius', 'Mizuo Peck': 'Sacajawea'}\"\r\ntt0489099,\"{'Hayden Christensen': 'David Rice', 'Jamie Bell': 'Griffin', 'Rachel Bilson': 'Millie', 'Diane Lane': 'Mary Rice', 'Samuel L. Jackson': 'Roland', 'Michael Rooker': 'William Rice', 'AnnaSophia Robb': 'Young Millie       (as Annasophia Robb)', 'Max Thieriot': 'Young David', 'Jesse James': 'Young Mark', 'Tom Hulce': 'Mr. Bowker', 'Kristen Stewart': 'Sophie', 'Teddy Dunn': 'Mark Kobold', 'Barbara Garrick': 'Ellen', 'Michael Winther': 'Day Bank Manager', 'Massimiliano Pazzaglia': 'Italian Desk Cop'}\"\r\ntt0455499,\"{'Breckin Meyer': 'Jon Arbuckle', 'Jennifer Love Hewitt': 'Liz', 'Billy Connolly': 'Dargis', 'Bill Murray': 'Garfield       (voice)', 'Ian Abercrombie': 'Smithee', 'Roger Rees': 'Mr. Hobbs', 'Lucy Davis': 'Abby', 'Lena Cardwell': 'Teenage Tourist', 'Veronica Alicino': 'Veterinary Assistant', 'Jane Carr': 'Mrs. Whitney', 'Oliver Muirhead': 'Mr. Greene', 'JB Blanc': 'Hotel Porter', 'Vernee Watson': 'Tourist #2       (as Vernée Watson Johnson)', 'Russell Milton': 'Bobby', 'Ben Falcone': 'American Tourist'}\"\r\ntt0303933,\"{'Nick Cannon': 'Devon Miles', 'Zoe Saldana': 'Laila       (as Zoë Saldana)', 'Orlando Jones': 'Dr. Lee', 'Leonard Roberts': 'Sean Taylor', 'GQ': 'Jayson', 'Jason Weaver': 'Ernest', 'Earl Poitier': 'Charles       (as Earl C. Poitier)', 'Candace Carey': 'Diedre', 'Shay Roundtree': 'Big Rob', 'Miguel A. Gaetan': 'Trey', 'J. Anthony Brown': 'Mr. Wade', 'Afemo Omilami': 'President Wagner', 'Angela Elayne Gibbs': 'Dorothy Miles       (as Angela E. Gibbs)', 'Tyreese Burnett': 'Henry', 'Brandon Hirsch': 'Buck Wild'}\"\r\ntt0098621,\"{'Michael Douglas': 'Oliver Rose', 'Kathleen Turner': 'Barbara Rose', 'Danny DeVito': \"\"Gavin D'Amato\"\", 'Marianne Sägebrecht': 'Susan', 'Sean Astin': 'Josh at 17', 'Heather Fairfield': 'Carolyn at 17', 'G.D. Spradlin': 'Harry Thurmont', 'Peter Donat': 'Jason Larrabee', 'Dan Castellaneta': 'Man in Chair', 'Gloria Cromwell': 'Mrs. Marshall', 'Harlan Arnold': 'Mr. Dell', 'Mary Fogarty': 'Mrs. Dell', 'Rika Hofmann': 'Elke', 'Patricia Allison': 'Maureen', 'Peter Brocco': 'Elderly Mourner'}\"\r\ntt0120461,\"{'Tommy Lee Jones': 'Mike Roark', 'Anne Heche': 'Dr. Amy Barnes', 'Gaby Hoffmann': 'Kelly Roark', 'Don Cheadle': 'Emmit Reese', 'Jacqueline Kim': 'Dr. Jaye Calder', 'Keith David': 'Police Lieutenant Ed Fox', 'John Corbett': 'Norman Calder', 'Michael Rispoli': 'Gator Harris', 'John Carroll Lynch': 'Stan Olber', 'Marcello Thedford': 'Kevin', 'Laurie Lathem': 'Rachel', 'Bert Kramer': 'L.A. Fire Chief', 'Bo Eason': 'Bud McVie', 'James MacDonald': 'Terry Jasper       (as James G. MacDonald)', 'Dayton Callie': 'Roger Lapher'}\"\r\ntt0120913,\"{'Drew Barrymore': 'Akima       (voice)', 'Jim Breuer': 'The Cook       (voice)', 'Ken Hudson Campbell': 'Po       (voice) (as Ken Campbell)', 'Thomas A. Chantler': 'Male Announcer       (voice)', 'Tsai Chin': 'Old Woman       (voice)', 'Elaine A. Clark': 'Citizen       (voice)', 'Roy Conrad': 'Second Human       (voice)', 'Jim Cummings': 'Chowquin       (voice)', 'Matt Damon': 'Cale       (voice)', 'Janeane Garofalo': 'Stith       (voice)', 'Leslie Hedger': 'First Human       (voice)', 'Roger Jackson': 'First Alien       (voice) (as Roger L. Jackson)', 'David L. Lander': 'The Mayor       (voice)', 'Nathan Lane': 'Preed       (voice)', 'John Leguizamo': 'Gune       (voice)'}\"\r\ntt0114885,\"{'Whitney Houston': 'Savannah Jackson', 'Angela Bassett': 'Bernadine Harris', 'Loretta Devine': 'Gloria Matthews', 'Lela Rochon': 'Robin Stokes', 'Gregory Hines': 'Marvin King', 'Dennis Haysbert': 'Kenneth Dawkins', 'Mykelti Williamson': 'Troy', 'Michael Beach': 'John Harris, Sr.', 'Leon': 'Russell', 'Wendell Pierce': 'Michael Davenport', 'Donald Faison': 'Tarik Matthews', 'Jeffrey D. Sams': 'Lionel', 'Jazz Raycole': 'Onika Harris', 'Brandon Hammond': 'John Harris, Jr.', 'Kenya Moore': 'Denise'}\"\r\ntt0120902,\"{'David Duchovny': 'Agent Fox Mulder', 'Gillian Anderson': 'Agent Dana Scully', 'John Neville': 'The Well-Manicured Man', 'William B. Davis': 'The Cigarette-Smoking Man', 'Martin Landau': 'Kurtzweil', 'Mitch Pileggi': 'Assistant Director Walter Skinner', 'Jeffrey DeMunn': 'Bronschweig       (as Jeffrey De Munn)', 'Blythe Danner': 'Cassidy', \"\"Terry O'Quinn\"\": 'Michaud', 'Armin Mueller-Stahl': 'Strughold', 'Lucas Black': 'Stevie', 'Christopher Fennell': '2nd Boy       (as Chris Fennell)', 'Cody Newton': '3rd Boy', 'Blake Stokes': '4th Boy', 'Dean Haglund': 'Langly'}\"\r\ntt0105812,\"{'Wesley Snipes': 'Sidney Deane', 'Woody Harrelson': 'Billy Hoyle', 'Rosie Perez': 'Gloria Clemente', 'Tyra Ferrell': 'Rhonda Deane', 'Cylk Cozart': 'Robert', 'Kadeem Hardison': 'Junior', 'Ernest Harden Jr.': 'George', 'John Marshall Jones': 'Walter', 'Marques Johnson': 'Raymond', 'David Roberson': 'T.J.', 'Kevin Benton': 'Zeke', 'Nigel Miguel': \"\"Dwight 'The Flight' McGhee\"\", 'Duane Martin': 'Willie Lewis', 'Bill Henderson': 'The Venice Beach Boys', 'Sonny Craver': 'The Venice Beach Boys'}\"\r\ntt0473308,\"{'Keri Russell': 'Jenna Hunterson', 'Nathan Fillion': 'Dr. Jim Pomatter', 'Cheryl Hines': 'Becky', 'Jeremy Sisto': 'Earl Hunterson', 'Andy Griffith': 'Old Joe', 'Adrienne Shelly': 'Dawn', 'Eddie Jemison': 'Ogie', 'Lew Temple': 'Cal', 'Darby Stanchfield': 'Francine Pomatter', 'Heidi Sulzman': 'Exhausted Mother', 'Lauri Johnson': 'Nurse Norma', 'Sarah Hunley': 'Dr. Lily Mueller', 'Cindy Drummond': 'Hospital Nurse', 'Nathan Dean': 'Minister', 'Caroline Fogarty': \"\"Doctor's Assistant\"\"}\"\r\ntt0096463,\"{'Harrison Ford': 'Jack Trainer', 'Sigourney Weaver': 'Katharine Parker', 'Melanie Griffith': 'Tess McGill', 'Alec Baldwin': 'Mick Dugan', 'Joan Cusack': 'Cyn', 'Philip Bosco': 'Oren Trask', 'Nora Dunn': 'Ginny', 'Oliver Platt': 'Lutz', 'James Lally': 'Turkel', 'Kevin Spacey': 'Bob Speck', 'Robert Easton': 'Armbrister', 'Olympia Dukakis': 'Personnel Director', 'Amy Aquino': 'Alice Baxter', 'Jeffrey Nordling': 'Tim Rourke', 'Elizabeth Whitcraft': 'Doreen DiMucci'}\"\r\ntt0084855,\"{'Paul Newman': 'Frank Galvin', 'Charlotte Rampling': 'Laura Fischer', 'Jack Warden': 'Mickey Morrissey', 'James Mason': 'Ed Concannon', \"\"Milo O'Shea\"\": 'Judge Hoyle', 'Lindsay Crouse': 'Kaitlin Costello Price', 'Edward Binns': 'Bishop Brophy', 'Julie Bovasso': 'Maureen Rooney', 'Roxanne Hart': 'Sally Doneghy', 'James Handy': 'Kevin Doneghy', 'Wesley Addy': 'Dr. Towler', 'Joe Seneca': 'Dr. Thompson', 'Lewis J. Stadlen': 'Dr. Gruber       (as Lewis Stadlen)', 'Kent Broadhurst': 'Joseph Alito', 'Colin Stinton': 'Billy'}\"\r\ntt0250797,\"{'Diane Lane': 'Connie Sumner', 'Erik Per Sullivan': 'Charlie Sumner', 'Richard Gere': 'Edward Sumner', 'Olivier Martinez': 'Paul Martel', 'Myra Lucretia Taylor': 'Gloria', 'Michelle Monaghan': 'Lindsay', 'Chad Lowe': 'Bill Stone', 'Joseph Badalucco Jr.': 'Train conductor', 'Erich Anderson': 'Bob Gaylord', 'Damon Gupton': 'Other businessman', 'Kate Burton': 'Tracy', 'Margaret Colin': 'Sally', 'Marc Forget': 'Café bartender', 'Larry Gleason': 'Tim', 'Dominic Chianese': 'Frank Wilson'}\"\r\ntt0117979,\"{'Uma Thurman': 'Noelle', 'Janeane Garofalo': 'Abby', 'Ben Chaplin': 'Brian', 'Jamie Foxx': 'Ed', 'James McCaffrey': 'Roy', 'Richard Coca': 'Eric', 'Stanley DeSantis': 'Mario', 'Antoinette Valente': 'Susan', 'Mitch Rouse': 'Bee Man', 'La Tanya M. Fisher': 'Emily', 'Faryn Einhorn': 'Child Model', 'David Cross': 'Voice of Male Radio Caller /              Bookstore Man', 'Mary Lynn Rajskub': 'Female Radio Caller       (voice)', 'Bob Odenkirk': 'Bookstore Man', 'Dechen Thurman': 'Bookstore Cashier'}\"\r\ntt0316732,\"{'Queen Latifah': \"\"Isabelle 'Belle' Williams\"\", 'Jimmy Fallon': \"\"Andrew 'Andy' Washburn\"\", 'Henry Simmons': 'Jesse', 'Jennifer Esposito': 'Lt. Marta Robbins', 'Gisele Bündchen': 'Vanessa', 'Ana Cristina de Oliveira': 'Redhead', 'Ingrid Vandebosch': 'Third Robber', 'Magali Amadei': 'Fourth Robber', 'Ann-Margret': 'Mrs. Washburn', 'Christian Kane': 'Agent Mullins', 'Boris McGiver': 'Franklin', 'Adrian Martinez': 'Brasilian Man', 'Joe Lisi': 'Mr. Scalia', 'Bryna Weiss': 'Mrs. Scalia', 'GQ': 'Stopwatch Messenger'}\"\r\ntt1753584,\"{'Mathias Melloul': 'Romain', 'Valérie Maës': 'Claire', 'Stephan Hersoen': 'Hervé', 'Leïla Denio': 'Marie', 'Nathan Duval': 'Pierre', 'Yan Brian': 'Michel', 'Adeline Rebeillard': 'Coralie', 'Grégory Annoni': 'Cédric', 'Laetitia Favart': 'Nathalie', 'Benjamin Houot': 'Homme triolisme 1', 'Maïlys Amrous': 'Femme triolisme 1', 'Pierre Perrier': 'Maxime', 'Faustine Dubois': 'Sophie', 'Stéphane Clerc': 'Sébastien', 'Philippe Duquesne': 'Le directeur du lycée'}\"\r\ntt0988595,\"{'Brian Kerwin': 'Hal', 'Charli Barcena': 'Young Tess', 'Peyton List': 'Young Jane       (as Peyton Roi List)', 'Jane Pfitsch': 'Cousin Lisa', 'Katherine Heigl': 'Jane', 'Jennifer Lim': 'Bridal Salesgirl #1', 'Brigitte Bourdeau': 'Salesgirl Olga', 'Judy Greer': 'Casey', 'Danielle Skraastad': 'Bride Suzanne', 'Marilyn L. Costello': \"\"Bride Suzanne's Minister\"\", 'James Marsden': 'Kevin', 'Michael Paul': 'Taxi Driver Khaleel       (as Michael Ziegfeld)', 'Yetta Gottesman': 'Hip Bridesmaid', 'Erin Fogel': 'Shari Rabinowitz', 'Bern Cohen': 'Rabbi'}\"\r\ntt0094291,\"{'Charlie Sheen': 'Bud Fox', 'Tamara Tunie': 'Carolyn', 'Franklin Cover': 'Dan', 'Chuck Pfeiffer': 'Chuckie       (as Chuck Pfeifer)', 'John C. McGinley': 'Marvin', 'Hal Holbrook': 'Lou Mannheim', 'James Karen': 'Lynch', 'Leslie Lyles': 'Natalie', 'Michael Douglas': 'Gordon Gekko', 'Faith Geer': \"\"Natalie's Assistant\"\", 'Frank Adonis': 'Charlie', 'John Capodice': 'Dominick', 'Martin Sheen': 'Carl Fox', 'Suzen Murakoshi': 'Girl in Bed', 'Dani Klein': 'Receptionist'}\"\r\ntt0358273,\"{'Joaquin Phoenix': 'John R. Cash', 'Reese Witherspoon': 'June Carter', 'Ginnifer Goodwin': 'Vivian Cash', 'Robert Patrick': 'Ray Cash', 'Dallas Roberts': 'Sam Phillips', 'Dan John Miller': 'Luther Perkins', 'Larry Bagby': 'Marshall Grant', 'Shelby Lynne': 'Carrie Cash', 'Tyler Hilton': 'Elvis Presley', 'Waylon Payne': 'Jerry Lee Lewis       (as Waylon Malloy Payne)', 'Shooter Jennings': 'Waylon Jennings', 'Sandra Ellis Lafferty': 'Maybelle Carter', 'Dan Beene': 'Ezra Carter', 'Clay Steakley': \"\"W.S. 'Fluke' Holland\"\", 'Johnny Holiday': 'Carl Perkins'}\"\r\ntt0293662,\"{'Jason Statham': 'Frank Martin', 'Qi Shu': 'Lai       (as Shu Qi)', 'François Berléand': 'Inspector Tarconi', 'Matt Schulze': 'Wall Street', 'Ric Young': 'Mr. Kwai', 'Doug Rand': 'Leader', 'Didier Saint Melin': 'Boss', 'Tonio Descanvelle': 'Thug 1', 'Laurent Desponds': 'Thug 2', 'Matthieu Albertini': 'Thug 3', 'Vincent Nemeth': 'Pilot', 'Jean-Yves Bilien': 'Little Thug', 'Jean-Marie Paris': 'Giant Thug', 'Adrian Dearnell': 'Newscaster', 'Alfred Lot': 'Cop 1'}\"\r\ntt0117509,\"{'Leonardo DiCaprio': 'Romeo', 'Claire Danes': 'Juliet', 'John Leguizamo': 'Tybalt', 'Harold Perrineau': 'Mercutio', 'Pete Postlethwaite': 'Father Laurence', 'Paul Sorvino': 'Fulgencio Capulet', 'Brian Dennehy': 'Ted Montague', 'Paul Rudd': 'Dave Paris', 'Vondie Curtis-Hall': 'Captain Prince', 'Miriam Margolyes': 'The Nurse', 'Jesse Bradford': 'Balthasar', 'M. Emmet Walsh': 'Apothecary', 'Zak Orth': 'Gregory', 'Jamie Kennedy': 'Sampson', 'Dash Mihok': 'Benvolio'}\"\r\ntt1323594,\"{'Steve Carell': 'Gru       (voice)', 'Jason Segel': 'Vector       (voice)', 'Russell Brand': 'Dr. Nefario       (voice)', 'Julie Andrews': \"\"Gru's Mom       (voice)\"\", 'Will Arnett': 'Mr. Perkins       (voice)', 'Kristen Wiig': 'Miss Hattie       (voice)', 'Miranda Cosgrove': 'Margo       (voice)', 'Dana Gaier': 'Edith       (voice)', 'Elsie Fisher': 'Agnes       (voice)', 'Pierre Coffin': 'Tim the Minion /              Bob the Minion /              Mark the Minion /              Phil the Minion /              Stuart the Minion       (voice)', 'Chris Renaud': 'Dave the Minion       (voice)', 'Jemaine Clement': 'Jerry the Minion       (voice)', 'Jack McBrayer': 'Carnival Barker /              Tourist Dad       (voice)', 'Danny McBride': 'Fred McDade       (voice)', 'Mindy Kaling': 'Tourist Mom       (voice)'}\"\r\ntt0059742,\"{'Julie Andrews': 'Maria', 'Christopher Plummer': 'Captain Von Trapp', 'Eleanor Parker': 'The Baroness', 'Richard Haydn': 'Max Detweiler', 'Peggy Wood': 'Mother Abbess', 'Charmian Carr': 'Liesl', 'Heather Menzies-Urich': 'Louisa       (as Heather Menzies)', 'Nicholas Hammond': 'Friedrich', 'Duane Chase': 'Kurt', 'Angela Cartwright': 'Brigitta', 'Debbie Turner': 'Marta', 'Kym Karath': 'Gretl', 'Anna Lee': 'Sister Margaretta', 'Portia Nelson': 'Sister Berthe', 'Ben Wright': 'Herr Zeller'}\"\r\ntt0048605,\"{'Marilyn Monroe': 'The Girl', 'Tom Ewell': 'Richard Sherman       (as Tommy Ewell)', 'Evelyn Keyes': 'Helen Sherman', 'Sonny Tufts': 'Tom MacKenzie', 'Robert Strauss': 'Mr. Kruhulik', 'Oskar Homolka': 'Dr. Brubaker       (as Oscar Homolka)', 'Marguerite Chapman': 'Miss Morris', 'Victor Moore': 'Plumber', 'Dolores Rosedale': 'Elaine       (as Roxanne)', 'Donald MacBride': 'Mr. Brady', 'Carolyn Jones': 'Miss Finch - Nurse'}\"\r\ntt0117887,\"{'Tom Everett Scott': 'Guy Patterson', 'Liv Tyler': 'Faye Dolan', 'Johnathon Schaech': 'Jimmy', 'Steve Zahn': 'Lenny', 'Ethan Embry': 'The Bass Player', 'Tom Hanks': 'Mr. White', 'Charlize Theron': 'Tina', 'Obba Babatundé': 'Lamarr', 'Giovanni Ribisi': 'Chad', 'Chris Ellis': 'Horace', 'Alex Rocco': 'Sol Siler', 'Bill Cobbs': 'Del Paxton', 'Peter Scolari': 'Troy Chesterfield', 'Rita Wilson': 'Margueritte', 'Chris Isaak': 'Uncle Bob'}\"\r\ntt0427944,\"{'Joan Lunden': 'Joan Lunden', 'Eric Haberman': 'Robin Williger', 'Aaron Eckhart': 'Nick Naylor', 'Mary Jo Smith': 'Sue Maclean', 'Todd Louiso': 'Ron Goode', 'Jeff Witzke': 'Kidnapper', 'J.K. Simmons': 'BR', 'Marianne Muellerleile': 'Teacher', 'Cameron Bright': 'Joey Naylor', 'Alex Diaz': 'Kid #1', 'Jordan Garrett': 'Kid #2', 'Courtney Taylor Burness': 'Kid #3       (as Courtney Burness)', 'Jordan Del Spina': 'Kid #4       (as Jordan Orr)', 'Maria Bello': 'Polly Bailey', 'David Koechner': 'Bobby Jay Bliss'}\"\r\ntt0120169,\"{'Vanessa Williams': 'Teri       (as Vanessa L. Williams)', 'Vivica A. Fox': 'Maxine', 'Nia Long': 'Bird', 'Michael Beach': 'Miles', 'Mekhi Phifer': 'Lem', 'Brandon Hammond': 'Ahmad', 'Jeffrey D. Sams': 'Kenny', 'Gina Ravera': 'Faith', 'Irma P. Hall': 'Mother Joe', 'Carl Wright': 'Reverend Williams', 'Mel Jackson': 'Simuel', 'Morgan Méchelle Smith': 'Kelly', 'John M. Watson Sr.': 'Uncle Pete', 'M.T. Alexander': 'Jada', 'Lawrence Petty': 'Harome'}\"\r\ntt0119313,\"{'Sandra Bullock': 'Birdee Pruitt', 'Harry Connick Jr.': 'Justin Matisse', 'Gena Rowlands': 'Ramona Calvert', 'Mae Whitman': 'Bernice Pruitt', 'Michael Paré': 'Bill Pruitt', 'Cameron Finley': 'Travis', 'Kathy Najimy': 'Toni Post', 'Bill Cobbs': 'Nurse', 'Connie Ray': 'Bobbi-Claire', 'Mona Lee Fultz': 'Teacher', 'Sydney Berry': 'Orange Julia', 'Rachel Snow': 'Big Dolores       (as Rachel Lena Snow)', 'Christina Stojanovich': 'Kristen', 'Alissa Alban': 'Debbie Reissen       (as Allisa Alban)', 'Dee Hennigan': 'Dot'}\"\r\ntt0901476,\"{'Kate Hudson': 'Liv', 'Anne Hathaway': 'Emma', 'Bryan Greenberg': 'Nate', 'Chris Pratt': 'Fletcher', 'Steve Howey': 'Daniel', 'Candice Bergen': 'Marion', 'Kristen Johnston': 'Deb', 'Michael Arden': 'Kevin', 'Victor Slezak': 'Colson', 'Kelly Coffield Park': 'Kathy', 'John Pankow': 'John', \"\"Zoe O'Grady\"\": 'Young Liv', 'Shannon Ferber': 'Young Emma', 'June Diane Raphael': 'Amanda', 'Charles Bernard': 'Wedding DJ'}\"\r\ntt0455824,\"{'Shea Adams': 'Carney Boy #3', 'Eddie Baroo': 'Bull', 'Ray Barrett': 'Ramsden', 'Tony Barry': 'Sergeant Callahan', 'Jamal Sydney Bednarz': 'Mission Boy       (as Jamal Bednarz-Metallah)', 'Damian Bradford': 'Constable #1', 'Bryan Brown': 'King Carney', 'Nathin Butler': 'Carney Boy #1', 'Tara Carpenter': 'Essential Services Woman', 'Rebecca Chatfield': \"\"Magarri's Niece\"\", 'Lillian Crombie': 'Bandy Legs', 'Max Cullen': 'Old Drunk', 'Essie Davis': 'Cath Carney', 'Arthur Dignam': 'Father Benedict', 'Michelle Dyzla': 'Hairdresser'}\"\r\ntt0114887,\"{'Keanu Reeves': 'Paul Sutton', 'Aitana Sánchez-Gijón': 'Victoria Aragon       (as Aitana Sanchez-Gijon)', 'Anthony Quinn': 'Don Pedro Aragon', 'Giancarlo Giannini': 'Alberto Aragon', 'Angélica Aragón': 'Marie Jose Aragon       (as Angelica Aragon)', 'Evangelina Elizondo': 'Guadelupe Aragon', 'Freddy Rodríguez': 'Pedro Aragon, Jr.       (as Freddy Rodriguez)', 'Debra Messing': 'Betty Sutton', 'Febronio Covarrubias': 'Jose Manuel', 'Roberto Huerta': 'Jose Luis', 'Juan Jiménez': 'Jose Marie       (as Juan Jimenez)', 'Ismael Gallegos': \"\"Jose's Musical Son\"\", 'Alejandra Flores': 'Consuelo', 'Gema Sandoval': 'Maria', 'Don Amendolia': 'Father Coturri'}\"\r\ntt0129387,\"{'Cameron Diaz': 'Mary', 'Matt Dillon': 'Healy', 'Ben Stiller': 'Ted', 'Lee Evans': 'Tucker', 'Chris Elliott': 'Dom', 'Lin Shaye': 'Magda', 'Jeffrey Tambor': 'Sully', 'Markie Post': \"\"Mary's Mom\"\", 'Keith David': \"\"Mary's Dad\"\", 'W. Earl Brown': 'Warren', 'Sarah Silverman': 'Brenda', 'Khandi Alexander': 'Joanie', 'Marnie Alexenburg': 'Lisa', 'Danny Murphy': \"\"Boss' Brother       (as Dan Murphy)\"\", 'Richard Tyson': 'Detective Krevoy       (as Richard M. Tyson)'}\"\r\ntt1216496,\"{'Hye-ja Kim': 'Mother', 'Won Bin': 'Yoon Do-joon', 'Goo Jin': 'Jin-tae', 'Je-mun Yun': 'Je-moon       (as Jae-moon Yoon)', 'Mi-seon Jeon': 'Mi-sun', 'Sae-byeok Song': 'Sepaktakraw Detective       (as Sae-beauk Song)', 'Byoung-Soon Kim': 'Group Leader', 'Woo-hee Chun': 'Mi-na', 'Gin-goo Kim': \"\"Ah-jeong's Grandma\"\", 'Moo-yeong Yeo': 'Lawyer Kong Seok-ho       (as Ou-hyung Yum)', 'Young-Suck Lee': 'Elder at Junk Shop', 'Hee-ra Mun': 'Moon Ah-jeong       (as Hee-ra Moon)', 'Mi-do Lee': 'Hyung-teo', 'Young-ki Jung': 'Kkang-ma', 'Gyu-pil Go': 'Ddung-ddung       (as Kyu-phill Ko)'}\"\r\ntt0101889,\"{'Jeff Bridges': 'Jack', 'Adam Bryant': 'Radio Engineer', 'Paul Lombardi': 'Radio Engineer', 'David Hyde Pierce': 'Lou Rosen       (as David Pierce)', 'Ted Ross': 'Limo Bum', 'Lara Harris': 'Sondra', 'Warren Olney': 'TV Anchorman', 'Frazer Smith': 'News Reporter', 'Mercedes Ruehl': 'Anne', 'Kathy Najimy': 'Crazed Video Customer', 'Harry Shearer': 'Sitcom Actor Ben Starr', 'Melinda Culea': 'Sitcom Wife', 'James Remini': 'Bum at Hotel', 'Mark Bowden': 'Doorman', 'John Ottavino': 'Father at Hotel'}\"\r\ntt1196141,\"{'Zachary Gordon': 'Greg Heffley', 'Robert Capron': 'Rowley Jefferson', 'Rachael Harris': 'Susan Heffley', 'Steve Zahn': 'Frank Heffley', 'Connor Fielding': 'Manny Heffley', 'Owen Fielding': 'Manny Heffley', 'Devon Bostick': 'Rodrick Heffley', 'Chloë Grace Moretz': 'Angie Steadman', 'Karan Brar': 'Chirag Gupta', 'Grayson Russell': 'Fregley', 'Laine MacNeil': 'Patty Farrell', 'Alex Ferris': 'Collin', 'Andrew McNee': 'Coach Malone', 'Belita Moreno': 'Mrs. Norton', 'Rob LaBelle': 'Mr. Winsky'}\"\r\ntt1201607,\"{'Ralph Fiennes': 'Lord Voldemort', 'Michael Gambon': 'Professor Albus Dumbledore', 'Alan Rickman': 'Professor Severus Snape', 'Daniel Radcliffe': 'Harry Potter', 'Rupert Grint': 'Ron Weasley', 'Emma Watson': 'Hermione Granger', 'Evanna Lynch': 'Luna Lovegood', 'Domhnall Gleeson': 'Bill Weasley', 'Clémence Poésy': 'Fleur Delacour', 'Warwick Davis': 'Griphook /              Professor Filius Flitwick', 'John Hurt': 'Ollivander', 'Helena Bonham Carter': 'Bellatrix Lestrange', 'Graham Duff': 'Death Eater', 'Anthony Allgood': \"\"Gringotts' Guard\"\", 'Rusty Goffe': \"\"Aged Gringotts' Goblin\"\"}\"\r\ntt0952640,\"{'Jason Lee': 'Dave', 'David Cross': 'Ian', 'Cameron Richardson': 'Claire', 'Jane Lynch': 'Gail', 'Justin Long': 'Alvin       (voice)', 'Matthew Gray Gubler': 'Simon       (voice)', 'Jesse McCartney': 'Theodore       (voice)', 'Allison Karman': 'Female Intern #1', 'Tiara Parker': 'Female Intern #2', 'Kira Verrastro': 'Female Intern #3', 'Veronica Alicino': 'Amy', 'Beth Riesgraf': 'Mother in Store', 'Adriane Lenox': 'Vet', 'Don Tiffany': 'Engineer', 'Lorne Green': 'Director'}\"\r\ntt0111257,\"{'Keanu Reeves': 'Jack Traven', 'Dennis Hopper': 'Howard Payne', 'Sandra Bullock': 'Annie', 'Joe Morton': 'Capt. McMahon', 'Jeff Daniels': 'Harry', 'Alan Ruck': 'Stephens', 'Glenn Plummer': 'Jaguar Owner', 'Richard Lineback': 'Norwood', 'Beth Grant': 'Helen', 'Hawthorne James': 'Sam', 'Carlos Carrasco': 'Ortiz', 'David Kriegel': 'Terry', 'Natsuko Ohama': 'Mrs. Kamino', 'Daniel Villarreal': 'Ray', 'Simone Gad': 'Bus Passenger #1'}\"\r\ntt0247745,\"{'André Vippolis': 'College Boy 1       (as Andre Vippolis)', 'Joey Kern': 'College Boy 2', 'Geoffrey Arend': 'College Boy 3', 'Erik Stolhanske': 'Rabbit', 'Jay Chandrasekhar': 'Thorny', 'Steve Lemme': 'Mac', 'Kevin Heffernan': 'Farva', 'Paul Soter': 'Foster', 'Camille Hickman': 'Thin Queen Bartender', 'Marisa Coughlan': 'Ursula', 'Aria Alpert Adjani': 'Waitress       (as Aria Alpert)', 'Daniel von Bargen': 'Chief Grady       (as Daniel Von Bargen)', 'James Grace': 'Local Officer Rando', 'Michael Weaver': 'Local Officer Smy', 'Dan Fey': 'Local Officer Burton'}\"\r\ntt1840309,\"{'Shailene Woodley': 'Tris', 'Theo James': 'Four', 'Ashley Judd': 'Natalie', 'Jai Courtney': 'Eric', 'Ray Stevenson': 'Marcus', 'Zoë Kravitz': 'Christina', 'Miles Teller': 'Peter', 'Tony Goldwyn': 'Andrew', 'Ansel Elgort': 'Caleb', 'Maggie Q': 'Tori', 'Mekhi Phifer': 'Max', 'Kate Winslet': 'Jeanine', 'Ben Lloyd-Hughes': 'Will', 'Christian Madsen': 'Al', 'Amy Newbold': 'Molly'}\"\r\ntt1951266,\"{'Jennifer Lawrence': 'Katniss Everdeen', 'Josh Hutcherson': 'Peeta Mellark', 'Liam Hemsworth': 'Gale Hawthorne', 'Woody Harrelson': 'Haymitch Abernathy', 'Donald Sutherland': 'President Snow', 'Philip Seymour Hoffman': 'Plutarch Heavensbee', 'Julianne Moore': 'President Alma Coin', 'Willow Shields': 'Primrose Everdeen', 'Sam Claflin': 'Finnick Odair', 'Elizabeth Banks': 'Effie Trinket', 'Mahershala Ali': 'Boggs', 'Jena Malone': 'Johanna Mason', 'Jeffrey Wright': 'Beetee', 'Paula Malcomson': \"\"Katniss' Mother\"\", 'Stanley Tucci': 'Caesar Flickerman'}\"\r\ntt0376994,\"{'Hugh Jackman': 'Logan /              Wolverine', 'Halle Berry': 'Ororo Munroe /              Storm', 'Ian McKellen': 'Erik Lehnsherr /              Magneto', 'Patrick Stewart': 'Charles Xavier /              Professor X', 'Famke Janssen': 'Jean Grey /              Phoenix', 'Anna Paquin': 'Marie /              Rogue', 'Kelsey Grammer': \"\"Dr. Henry 'Hank' McCoy /              Beast\"\", 'James Marsden': 'Scott Summers /              Cyclops', 'Rebecca Romijn': 'Raven Darkholme /              Mystique', 'Shawn Ashmore': 'Bobby Drake /              Iceman', 'Aaron Stanford': 'John Allerdyce /              Pyro', 'Vinnie Jones': 'Cain Marko /              Juggernaut', 'Ellen Page': 'Kitty Pryde /              Shadowcat', 'Daniel Cudmore': 'Peter Rasputin /              Colossus', 'Ben Foster': 'Warren Worthington III /              Angel'}\"\r\ntt0290334,\"{'Patrick Stewart': 'Professor Charles Xavier', 'Hugh Jackman': 'Logan /              Wolverine', 'Ian McKellen': 'Eric Lehnsherr /              Magneto', 'Halle Berry': 'Ororo Munroe /              Storm', 'Famke Janssen': 'Jean Grey', 'James Marsden': 'Scott Summers /              Cyclops', 'Anna Paquin': 'Rogue', 'Rebecca Romijn': 'Raven Darkholme /              Mystique /              Grace       (as Rebecca Romijn-Stamos)', 'Brian Cox': 'William Stryker', 'Alan Cumming': 'Kurt Wagner /              Nightcrawler', 'Bruce Davison': 'Senator Kelly', 'Aaron Stanford': 'John Allerdyce /              Pyro', 'Shawn Ashmore': 'Bobby Drake /              Ice Man', 'Kelly Hu': 'Yuriko Oyama /              Lady Deathstrike', 'Katie Stuart': 'Shadowcat'}\"\r\ntt0120903,\"{'Hugh Jackman': 'Logan /              Wolverine', 'Patrick Stewart': 'Professor Charles Xavier', 'Ian McKellen': 'Eric Lensherr /              Magneto', 'Famke Janssen': 'Jean Grey', 'James Marsden': 'Scott Summers /              Cyclops', 'Halle Berry': 'Ororo Munroe /              Storm', 'Anna Paquin': 'Rogue', 'Tyler Mane': 'Sabretooth', 'Ray Park': 'Toad', 'Rebecca Romijn': 'Mystique       (as Rebecca Romijn-Stamos)', 'Bruce Davison': 'Senator Kelly', 'Matthew Sharp': 'Henry Gyrich', 'Brett Morris': 'Young Magneto', 'Rhona Shekter': \"\"Magneto's Mother\"\", 'Kenneth McGregor': \"\"Magneto's Father\"\"}\"\r\ntt0120179,\"{'Sandra Bullock': 'Annie', 'Jason Patric': 'Officer Alex Shaw', 'Willem Dafoe': 'John Geiger', 'Temuera Morrison': 'Juliano', 'Brian McCardie': 'Merced', 'Christine Firkins': 'Drew', 'Mike Hagerty': 'Harvey       (as Michael G. Hagerty)', 'Colleen Camp': 'Debbie', 'Lois Chiles': 'Celeste', 'Francis Guinan': 'Rupert', 'Tamia': 'Sheri Silver', 'Jeremy Hotz': 'Ashton', 'Enrique Murciano': 'Alejandro       (as Enrique Murciano Jr.)', 'Jessica Diz': 'Isabel', 'Connie Ray': 'Fran Fisher'}\"\r\ntt0256380,\"{'Gwyneth Paltrow': 'Rosemary', 'Jack Black': 'Hal', 'Jason Alexander': 'Mauricio', 'Joe Viterelli': 'Steve Shanahan', 'Rene Kirby': 'Walt', 'Bruce McGill': 'Reverend Larson', 'Anthony Robbins': 'Himself       (as Tony Robbins)', 'Susan Ward': 'Jill', 'Zen Gesner': 'Ralph', 'Brooke Burns': 'Katrina', 'Rob Moran': 'Second Tiffany', \"\"Joshua 'Li'iBoy' Shintani\"\": \"\"Li'iBoy\"\", 'Kyle Gass': 'Artie', 'Laura Kightlinger': 'Jen', 'Nan Martin': 'Nurse Tanya Peeler'}\"\r\ntt0268380,\"{'Ray Romano': 'Manfred       (voice)', 'John Leguizamo': 'Sid       (voice)', 'Denis Leary': 'Diego       (voice)', 'Goran Visnjic': 'Soto       (voice)', 'Jack Black': 'Zeke       (voice)', 'Cedric the Entertainer': 'Carl       (voice)', 'Stephen Root': 'Frank /              Start       (voice)', 'Diedrich Bader': 'Oscar       (voice)', 'Alan Tudyk': 'Lenny /              Oscar /              Dab       (voice)', 'Lorri Bagley': 'Jennifer       (voice)', 'Jane Krakowski': 'Rachel       (voice)', 'Peter Ackerman': 'Dodo /              Macrauchenia       (voice)', 'P.J. Benjamin': 'Dodo       (voice)', 'Josh Hamilton': 'Dodo /              Aardvark       (voice)', 'Chris Wedge': 'Dodo /              Scrat       (voice)'}\"\r\ntt0133952,\"{'Denzel Washington': 'Anthony Hubbard', 'Annette Bening': 'Elise Kraft /              Sharon Bridger', 'Bruce Willis': 'General William Devereaux', 'Tony Shalhoub': 'Frank Haddad', 'Sami Bouajila': 'Samir Nazhde', 'Ahmed Ben Larby': 'Sheik Achmed Bin Talal', 'Mosleh Mohamed': 'Muezzin', 'Lianna Pai': 'Tina Osu       (as Liana Pai)', 'Mark Valley': 'Mike Johanssen', 'Jack Gwaltney': 'Fred Darius', 'David Proval': 'Danny Sussman', 'Lance Reddick': 'FBI Agent Floyd Rose', 'Jeremy Knaster': 'INS Official', 'William Hill': 'INS Uniform', 'Aasif Mandvi': 'Khalil Saleh'}\"\r\ntt0244970,\"{'Ashley Judd': 'Jane Goodale', 'Greg Kinnear': 'Ray Brown', 'Hugh Jackman': 'Eddie Alden', 'Marisa Tomei': 'Liz', 'Ellen Barkin': 'Diane Roberts', 'Catherine Dent': 'Alice', 'Peter Friedman': 'Stephen', 'Laura Regan': 'Evelyn', 'Sue Jin Song': 'Female Scientist', 'Keith Reddin': 'Male Scientist', 'Derick Karlton Grant': 'Flower Delivery Man', 'Donna Hanover': 'Mary Lou Corkle', 'Matthew Coyle': 'Staff Member', 'Nicolle Rochelle': 'Nia       (as Nicole Leach)', 'Pon Yang': 'Chinese Vendor'}\"\r\ntt0120831,\"{'Natasha Lyonne': 'Vivian', 'Alan Arkin': 'Murray', 'Bryna Weiss': 'Saleslady', 'Marisa Tomei': 'Rita', 'Charlotte Stewart': 'Landlady', 'Eli Marienthal': 'Rickey', 'David Krumholtz': 'Ben', 'Kevin Corrigan': 'Eliot', 'Brendan Burns': 'Cop in Station', 'Harris Laskawy': 'Charlie the Cook', 'Jessica Walter': 'Doris', 'Mena Suvari': 'Rachel', 'Marley McClean': 'Brooke', 'Mary Portser': 'Mrs. Hoffman', 'Jock MacDonald': 'Man at Brymans'}\"\r\ntt0375063,\"{'Paul Giamatti': 'Miles', 'Thomas Haden Church': 'Jack', 'Virginia Madsen': 'Maya', 'Sandra Oh': 'Stephanie', 'Marylouise Burke': \"\"Miles's Mother\"\", 'Jessica Hecht': 'Victoria', 'Missy Doty': 'Cammi', 'M.C. Gainey': \"\"Cammi's Husband\"\", 'Alysia Reiner': 'Christine Erganian', 'Shake Tukhmanyan': 'Mrs. Erganian       (as Shaké Toukhmanian)', 'Shaun Duke': 'Mike Erganian       (as Duke Moosekian)', 'Robert Covarrubias': \"\"Miles's Building Manager\"\", 'Patrick Gallagher': 'Gary the Bartender', 'Stephanie Faracy': \"\"Stephanie's Mother\"\", 'Joe Marinelli': 'Frass Canyon Pourer'}\"\r\ntt0117628,\"{'John Mahoney': 'Mr. Fitzpatrick', 'Edward Burns': 'Mickey Fitzpatrick', 'Michael McGlone': 'Francis Fitzpatrick       (as Mike McGlone)', 'Maxine Bahns': 'Hope', 'Jennifer Aniston': 'Renee', 'Cameron Diaz': 'Heather', 'Malachy McCourt': 'Tom', 'Leslie Mann': 'Connie', 'Amanda Peet': 'Molly', 'Anita Gillette': 'Carol', 'Frank Vincent': 'Ron', 'Beatrice Winde': 'Older Woman', 'Eugene Osborne Smith': 'Older Man', 'Robert Weil': 'Mr. Deluca', 'Tom Tammi': 'Father John'}\"\r\ntt0203119,\"{'Ray Winstone': 'Gal', 'Ben Kingsley': 'Don Logan', 'Ian McShane': 'Teddy Bass', 'Amanda Redman': 'Deedee Dove', 'James Fox': 'Harry', 'Cavan Kendall': 'Aitch', 'Julianne White': 'Jackie', 'Álvaro Monje': 'Enrique       (as Alvaro Monje)', 'Robert Atiko': 'Andy', 'Nieves del Amo Oruet': 'Air Hostess', 'Enrique Alemán Fabrega': 'Pilot', 'Gérard Barray': 'Spanish Official       (as Gerard Barray)', 'José Maria Cano Ramos': \"\"Felipe's Friend 1       (as José Ma. Cano Ramos)\"\", 'Desirée Erasmus': 'Jean', 'Santiago Frias Munoz': 'Policia 2'}\"\r\ntt0073629,\"{'Tim Curry': 'Dr. Frank-N-Furter - A Scientist', 'Susan Sarandon': 'Janet Weiss - A Heroine', 'Barry Bostwick': 'Brad Majors - A Hero', \"\"Richard O'Brien\"\": 'Riff Raff - A Handyman', 'Patricia Quinn': 'Magenta - A Domestic', 'Nell Campbell': 'Columbia - A Groupie       (as Little Nell)', 'Jonathan Adams': 'Dr. Everett V. Scott - A Rival Scientist', 'Peter Hinwood': 'Rocky Horror - A Creation', 'Meat Loaf': 'Eddie - Ex Delivery Boy       (as Meatloaf)', 'Charles Gray': 'The Criminologist - An Expert', 'Jeremy Newson': 'Ralph Hapschatt', 'Hilary Farr': 'Betty Munroe       (as Hilary Labow)', 'Perry Bedden': 'A Transylvanian', 'Christopher Biggins': 'A Transylvanian', 'Gaye Brown': 'A Transylvanian'}\"\r\ntt0107977,\"{'Cary Elwes': 'Robin Hood', 'Richard Lewis': 'Prince John', 'Roger Rees': 'Sheriff of Rottingham', 'Amy Yasbeck': 'Marian', 'Mark Blankfield': 'Blinkin', 'Dave Chappelle': 'Ahchoo', 'Isaac Hayes': 'Asneeze', 'Megan Cavanagh': 'Broomhilde', 'Eric Allan Kramer': 'Little John', 'Matthew Porretta': \"\"Will Scarlet O'Hara\"\", 'Tracey Ullman': 'Latrine', 'Patrick Stewart': 'King Richard', 'Dom DeLuise': 'Don Giovanni', 'Dick Van Patten': 'The Abbot', 'Robert Ridgely': 'The Hangman'}\"\r\ntt0443632,\"{'Michael Douglas': 'Pete Garrison', 'Kiefer Sutherland': 'David Breckinridge', 'Eva Longoria': 'Jill Marin', 'Martin Donovan': 'William Montrose', 'Ritchie Coster': 'The Handler', 'Kim Basinger': '1st Lady Sarah Ballentine', 'Blair Brown': 'National Security Advisor', 'David Rasche': 'President Ballentine', 'Kristin Lehman': 'Cindy Breckinridge', 'Raynor Scheine': 'Walter Xavier', 'Chuck Shamata': 'Director Overbrook', 'Paul Calderon': 'Deputy Director Cortes', 'Clark Johnson': 'Charlie Merriweather       (as Clarque Johnson)', 'Raoul Bhaneja': 'Aziz Hassad', 'Yanna McIntosh': 'Teddy Vargas'}\"\r\ntt0069113,\"{'Gene Hackman': 'Reverend Scott', 'Ernest Borgnine': 'Mike Rogo', 'Red Buttons': 'James Martin', 'Carol Lynley': 'Nonnie Parry', 'Roddy McDowall': 'Acres', 'Stella Stevens': 'Linda Rogo', 'Shelley Winters': 'Belle Rosen', 'Jack Albertson': 'Manny Rosen', 'Pamela Sue Martin': 'Susan Shelby', \"\"Arthur O'Connell\"\": 'Chaplain', 'Eric Shea': 'Robin', 'Fred Sadoff': 'Linarcos', 'Sheila Allen': 'Nurse       (as Sheila Mathews)', 'Jan Arvan': 'Doctor Caravello', 'Byron Webster': 'Purser'}\"\r\ntt0120772,\"{'Paul Rudd': 'George Hanson', 'Kali Rocha': 'Melissa Marx', 'Jennifer Aniston': 'Nina Borowski', 'Lena Cardwell': 'Girl at Community Center', 'Natalie B. Kikkenborg': 'Girl at Community Center', 'Lauren Pratt': 'Sally Miller', 'Hayden Panettiere': 'Mermaid', 'Lauren Chen': 'Violin Player', 'Liam Aiken': 'Nathan', 'Alan Alda': 'Sidney Miller', 'Allison Janney': 'Constance Miller', 'Tim Daly': 'Dr. Robert Joley', 'Janet Zarish': 'Dinner Guest', 'Ellen Tobie': 'Dinner Guest', 'Virl Andrick': 'Dinner Guest'}\"\r\ntt0098258,\"{'John Cusack': 'Lloyd Dobler', 'Ione Skye': 'Diane Court', 'John Mahoney': 'James Court', 'Lili Taylor': 'Corey Flood', 'Amy Brooks': 'D.C.', 'Pamela Adlon': 'Rebecca       (as Pamela Segall)', 'Jason Gould': 'Mike Cameron', 'Loren Dean': 'Joe', 'Glenn Walker Harris Jr.': 'Jason Dobler', 'Charles Walker': 'Principal', 'Russel Lunday': 'Parent', 'Polly Platt': 'Mrs. Flood', 'Gloria Cromwell': 'Ruth', 'Jeremy Piven': 'Mark', \"\"Patrick O'Neill\"\": 'Denny'}\"\r\ntt0343818,\"{'Will Smith': 'Del Spooner', 'Bridget Moynahan': 'Susan Calvin', 'Alan Tudyk': 'Sonny', 'James Cromwell': 'Dr. Alfred Lanning', 'Bruce Greenwood': 'Lawrence Robertson', 'Adrian Ricard': 'Granny       (as Adrian L. Ricard)', 'Chi McBride': 'Lt. John Bergin', 'Jerry Wasserman': 'Baldez', 'Fiona Hogan': 'V.I.K.I.', 'Peter Shinkoda': 'Chin', 'Terry Chen': 'Chin', 'David Haysom': 'NS4 Robot /              NS5 Robot', 'Scott Heindl': 'NS4 Robot /              NS5 Robot', 'Sharon Wilkins': 'Asthmatic Woman', 'Craig March': 'Detective'}\"\r\ntt0093822,\"{'Nicolas Cage': 'H.I. McDunnough', 'Holly Hunter': 'Ed', 'Trey Wilson': 'Nathan Arizona, Sr.', 'John Goodman': 'Gale', 'William Forsythe': 'Evelle', 'Sam McMurray': 'Glen', 'Frances McDormand': 'Dot', \"\"Randall 'Tex' Cobb\"\": 'Leonard Smalls', 'T.J. Kuhn': 'Nathan Junior       (as T.J. Kuhn Jr.)', 'Lynne Kitei': 'Florence Arizona       (as Lynne Dumin Kitei)', 'Peter Benedek': 'Prison Counselor', \"\"Charles 'Lew' Smith\"\": 'Nice Old Grocery Man', 'Warren Keith': 'Younger FBI Agent', 'Henry Kendrick': 'Older FBI Agent', 'Sidney Dawson': 'Ear-Bending Cellmate'}\"\r\ntt0100403,\"{'Kevin Peter Hall': 'The Predator', 'Danny Glover': 'Lieutenant Mike Harrigan', 'Gary Busey': 'Peter Keyes', 'Rubén Blades': 'Danny Archuleta       (as Ruben Blades)', 'Maria Conchita Alonso': 'Leona Cantrell', 'Bill Paxton': 'Jerry Lambert', 'Robert Davi': 'Captain Phil Heinemann', 'Adam Baldwin': 'Garber', 'Kent McCord': 'Captain B. Pilgrim', 'Morton Downey Jr.': 'Tony Pope', 'Calvin Lockhart': 'King Willie', 'Steve Kahan': 'Sergeant', 'Henry Kingi': 'El Scorpio', 'Corey Rand': 'Ramon Vega', 'Elpidia Carrillo': 'Anna'}\"\r\ntt0063442,\"{'Charlton Heston': 'George Taylor', 'Roddy McDowall': 'Cornelius', 'Kim Hunter': 'Zira', 'Maurice Evans': 'Dr. Zaius', 'James Whitmore': 'President of the Assembly', 'James Daly': 'Honorious', 'Linda Harrison': 'Nova', 'Robert Gunner': 'Landon', 'Lou Wagner': 'Lucius', 'Woodrow Parfrey': 'Maximus', 'Jeff Burton': 'Dodge', 'Buck Kartalian': 'Julius', 'Norman Burton': 'Hunt Leader', 'Wright King': 'Dr. Galen', 'Paul Lambert': 'Minister'}\"\r\ntt0119896,\"{'Jennifer Aniston': 'Kate', 'Jay Mohr': 'Nick', 'Kevin Bacon': 'Sam', 'Olympia Dukakis': 'Rita', 'Illeana Douglas': 'Darcy', 'Kevin Dunn': 'Mr. Mercer', 'Anne Twomey': 'Sela', 'Faith Prince': 'Mrs. Mercer', 'John Rothman': 'Jim Davenport', 'Meg Gibson': 'Mrs. Davenport       (as Margaret Gibson)', 'Paul Cassell': 'Brad', 'Ivar Brogger': '1st Ad Executive', 'Peter McRobbie': '2nd Ad Executive', 'Bray Poor': '3rd Ad Executive', 'Daryl Edwards': '4th Ad Executive'}\"\r\ntt0183649,\"{'Colin Farrell': 'Stu Shepard', 'Kiefer Sutherland': 'The Caller', 'Forest Whitaker': 'Captain Ramey', 'Radha Mitchell': 'Kelly Shepard', 'Katie Holmes': 'Pamela McFadden', 'Paula Jai Parker': 'Felicia', 'Arian Ash': 'Corky', 'Tia Texada': 'Asia', 'John Enos III': 'Leon', 'Richard T. Jones': 'Sergeant Cole', 'Keith Nobbs': 'Adam', 'Dell Yount': 'Pizza Guy', 'James MacDonald': 'Negotiator       (as James Macdonald)', 'Josh Pais': 'Mario', 'Yorgo Constantine': 'ESU Commander'}\"\r\ntt0066206,\"{'George C. Scott': 'General George S. Patton Jr.', 'Karl Malden': 'General Omar N. Bradley', 'Stephen Young': 'Captain Chester B. Hansen', 'Michael Strong': 'Brigadier General Hobart Carver', 'Carey Loftin': \"\"General Bradley's Driver       (as Cary Loftin)\"\", 'Albert Dumortier': 'Moroccan Minister', 'Frank Latimore': 'Lieutenant Colonel Henry Davenport', 'Morgan Paull': 'Captain Richard N. Jenson', 'Karl Michael Vogler': 'Field Marshal Erwin Rommel', 'Bill Hickman': \"\"General Patton's Driver\"\", 'Pat Zurica': 'First Lieutenant Alexander Stiller       (as Patrick J. Zurica)', 'James Edwards': 'Sergeant William George Meeks', 'Lawrence Dobkin': 'Colonel Gaston Bell', 'David Bauer': 'Lieutenant Gen. Harry Buford', 'John Barrie': 'Air Vice-Marshal Sir Arthur Coningham'}\"\r\ntt0265459,\"{'Robin Williams': 'Seymour Parrish', 'Connie Nielsen': 'Nina Yorkin', 'Michael Vartan': 'Will Yorkin', 'Dylan Smith': 'Jakob Yorkin', 'Erin Daniels': 'Maya Burson', 'Paul Hansen Kim': 'Yoshi Araki', 'Lee Garlington': 'Waitress', 'Gary Cole': 'Bill Owens', 'Marion Calvert': 'Mrs. Von Unwerth', 'David Moreland': 'Mr. Siskind', \"\"Shaun P. O'Hagan\"\": 'Young Father', 'Jim Rash': 'Amateur Porn Guy', 'Nick Searcy': 'Repairman', 'Dave Engfer': 'Sav-Mart Clerk', 'Jimmy Shubert': 'Soccer Coach'}\"\r\ntt0151738,\"{'Drew Barrymore': 'Josie Geller', 'David Arquette': 'Rob Geller', 'Michael Vartan': 'Sam Coulson', 'Molly Shannon': 'Anita', 'John C. Reilly': 'Gus', 'Garry Marshall': 'Rigfort', 'Sean Whalen': 'Merkin', 'Cress Williams': 'George', 'Octavia Spencer': 'Cynthia       (as Octavia L. Spencer)', 'Sarah DeVincentis': 'Rhoda', 'Allen Covert': 'Roger in Op-Ed', 'Armand Reiser': 'Dutton', 'David Doty': 'Hairplug Bruns', 'Derek Morgan': 'Armcast Henson       (as Derrick Morgan)', 'Kathleen Marshall': 'Sun-Times Worker'}\"\r\ntt0110638,\"{'Jodie Foster': 'Nell', 'Liam Neeson': 'Jerome Lovell', 'Natasha Richardson': 'Paula Olsen', 'Richard Libertini': 'Alexander Paley', 'Nick Searcy': 'Todd Peterson', 'Robin Mullins': 'Mary Peterson', 'Jeremy Davies': 'Billy Fisher', \"\"O'Neal Compton\"\": 'Don Fontana', 'Heather M. Bomba': 'Twin #1', 'Marianne E. Bomba': 'Twin #2', 'Sean Bridgers': 'Mike Ibarra', 'Joe Inscoe': 'Judge', 'Stephanie Dawn Wood': 'Ruthie Lovell', 'Mary Lynn Riner': 'Janet Baring', 'Lucile McIntyre': 'Sally'}\"\r\ntt0374900,\"{'Jon Heder': 'Napoleon Dynamite', 'Jon Gries': 'Uncle Rico', 'Aaron Ruell': 'Kip', 'Efren Ramirez': 'Pedro', 'Diedrich Bader': 'Rex', 'Tina Majorino': 'Deb', 'Sandy Martin': 'Grandma', 'Haylie Duff': 'Summer Wheatly', 'Trevor Snarr': 'Don', 'Shondrella Avery': 'Lafawnduh', 'Bracken Johnson': 'Randy', 'Carmen Brady': 'Starla', 'Ellen Dubin': 'Ilene', 'J.C. Cunningham': 'Jock #1', 'Jimmy Stevens': 'Jock #2       (as James Smooth)'}\"\r\ntt0151804,\"{'Ron Livingston': 'Peter', 'Jennifer Aniston': 'Joanna', 'David Herman': 'Michael Bolton', 'Ajay Naidu': 'Samir', 'Diedrich Bader': 'Lawrence', 'Stephen Root': 'Milton', 'Gary Cole': 'Bill Lumbergh', 'Richard Riehle': 'Tom Smykowski', 'Alexandra Wentworth': 'Anne', 'Joe Bays': 'Dom Portwood', 'John C. McGinley': 'Bob Slydell', 'Paul Willson': 'Bob Porter', 'Kinna McInroe': 'Nina', 'Todd Duffey': \"\"Chotchkie's Waiter\"\", 'Greg Pitts': 'Drew'}\"\r\ntt0093773,\"{'Arnold Schwarzenegger': 'Dutch', 'Carl Weathers': 'Dillon', 'Elpidia Carrillo': 'Anna', 'Bill Duke': 'Mac', 'Jesse Ventura': 'Blain', 'Sonny Landham': 'Billy', 'Richard Chaves': 'Poncho', 'R.G. Armstrong': 'General Phillips', 'Shane Black': 'Hawkins', 'Kevin Peter Hall': 'The Predator /              Helicopter Pilot'}\"\r\ntt0433416,\"{'Kal Penn': 'Nikhil a.k.a. Gogol', 'Tabu': 'Ashima', 'Irrfan Khan': 'Ashoke', 'Jacinda Barrett': 'Maxine', 'Zuleikha Robinson': 'Moushumi Mazumdar', 'Brooke Smith': 'Sally', 'Sahira Nair': 'Sonia', 'Jagannath Guha': 'Ghosh', 'Ruma Guha Thakurta': \"\"Ashoke's Mother\"\", 'Sandip Deb': 'Music Teacher', 'Sukanya': 'Rini', 'Tanushree Shankar': \"\"Ashima's Mother\"\", 'Sabyasachi Chakrabarty': \"\"Ashima's Father\"\", 'Tamal Ray Chowdhury': \"\"Ashoke's Father\"\", 'Dhruv Mookerji': 'Rana'}\"\r\ntt0051878,\"{'Paul Newman': 'Ben Quick', 'Joanne Woodward': 'Clara Varner', 'Anthony Franciosa': 'Jody Varner', 'Orson Welles': 'Will Varner', 'Lee Remick': 'Eula Varner', 'Angela Lansbury': 'Minnie Littlejohn', 'Richard Anderson': 'Alan Stewart', 'Sarah Marshall': 'Agnes Stewart', 'Mabel Albertson': 'Elizabeth Stewart', \"\"J. Pat O'Malley\"\": 'Ratliff', 'Bill Walker': 'Lucius       (as William Walker)'}\"\r\ntt0104691,\"{'Daniel Day-Lewis': 'Hawkeye (Nathaniel Poe)', 'Madeleine Stowe': 'Cora Munro', 'Russell Means': 'Chingachgook', 'Eric Schweig': 'Uncas', 'Jodhi May': 'Alice Munro', 'Steven Waddington': 'Maj. Duncan Heyward', 'Wes Studi': 'Magua', 'Maurice Roëves': 'Col. Edmund Munro', 'Patrice Chéreau': 'Gen Montcalm', 'Edward Blatchford': 'Jack Winthrop', 'Terry Kinney': 'John Cameron', 'Tracey Ellis': 'Alexandra Cameron', 'Justin M. Rice': 'James Cameron', 'Dennis Banks': 'Ongewasgone', 'Pete Postlethwaite': 'Capt. Beams'}\"\r\ntt0455590,\"{'Forest Whitaker': 'Idi Amin', 'James McAvoy': 'Dr. Nicholas Garrigan', 'Kerry Washington': 'Kay Amin', 'Gillian Anderson': 'Sarah Merrit', 'Simon McBurney': 'Stone', 'David Oyelowo': 'Dr. Junju', 'Stephen Rwangyezi': 'Jonah Wasswa', 'Abby Mukiibi Nkaaga': 'Masanga       (as Abby Mukiibi)', 'Adam Kotz': 'Dr. Merrit', 'Sam Okelo': 'Bonny', 'Sarah Nagayi': 'Tolu', 'Chris Wilson': 'Perkins', 'Dick Stockley': 'Times Journalist       (as Dr. Dick Stockley)', 'Barbara Rafferty': 'Mrs. Garrigan', 'David Ashton': 'Dr. Garrigan - Senior'}\"\r\ntt0203009,\"{'Nicole Kidman': 'Satine', 'Ewan McGregor': 'Christian', 'John Leguizamo': 'Toulouse-Lautrec', 'Jim Broadbent': 'Harold Zidler', 'Richard Roxburgh': 'The Duke', 'Garry McDonald': 'The Doctor', 'Jacek Koman': 'The Unconscious Argentinean', 'Matthew Whittet': 'Satie', 'Kerry Walker': 'Marie', \"\"Caroline O'Connor\"\": 'Nini Legs In The Air', 'Christine Anu': 'Arabia', 'Natalie Mendoza': 'China Doll', 'Lara Mulcahy': 'Môme Fromage', 'David Wenham': 'Audrey', 'Kylie Minogue': 'The Green Fairy'}\"\r\ntt0104952,\"{'Joe Pesci': 'Vinny Gambini', 'Ralph Macchio': 'Bill Gambini', 'Marisa Tomei': 'Mona Lisa Vito', 'Mitchell Whitfield': 'Stan Rothenstein', 'Fred Gwynne': 'Judge Chamberlain Haller', 'Lane Smith': 'Jim Trotter III', 'Austin Pendleton': 'John Gibbons', 'Bruce McGill': 'Sheriff Farley', 'Maury Chaykin': 'Sam Tipton', 'Paulene Myers': 'Constance Riley       (as Pauline Meyers)', 'Raynor Scheine': 'Ernie Crane', 'James Rebhorn': 'George Wilbur', 'Chris Ellis': 'J.T.', 'Michael Simpson': 'Neckbrace', 'Lou Walker': 'Grits Cook'}\"\r\ntt0107614,\"{'Robin Williams': 'Daniel Hillard /              Mrs. Doubtfire', 'Sally Field': 'Miranda Hillard', 'Pierce Brosnan': 'Stu', 'Harvey Fierstein': 'Frank', 'Polly Holliday': 'Gloria', 'Lisa Jakub': 'Lydia Hillard', 'Matthew Lawrence': 'Chris Hillard', 'Mara Wilson': 'Natalie Hillard', 'Robert Prosky': 'Mr. Lundy', 'Anne Haney': 'Mrs. Sellner', 'Scott Capurro': 'Jack', 'Sydney Walker': 'Bus Driver', 'Joe Bellan': 'TV Boss', 'Martin Mull': 'Justin Gregory', 'Terence McGovern': 'ADR Director Lou'}\"\r\ntt0039628,\"{\"\"Maureen O'Hara\"\": 'Doris Walker', 'John Payne': 'Fred Gailey', 'Edmund Gwenn': 'Kris Kringle', 'Gene Lockhart': 'Judge Henry X. Harper', 'Natalie Wood': 'Susan Walker', 'Porter Hall': 'Granville Sawyer', 'William Frawley': 'Charlie Halloran', 'Jerome Cowan': 'Dist. Atty. Thomas Mara', 'Philip Tonge': 'Julian Shellhammer'}\"\r\ntt0183505,\"{'Jim Carrey': 'Charlie /              Hank', 'Renée Zellweger': 'Irene', 'Anthony Anderson': 'Jamaal', 'Mongo Brownlee': 'Lee Harvey', 'Jerod Mixon': 'Shonté Jr.', 'Chris Cooper': 'Lieutenant Gerke', 'Michael Bowman': 'Whitey', 'Richard Jenkins': 'Agent Boshane', 'Robert Forster': 'Colonel Partington', 'Mike Cerrone': 'Officer Stubie', 'Rob Moran': 'Trooper Finneran', 'Daniel Greene': 'Dickie Thurman', 'Tony Cox': 'Limo Driver', 'Andrew Phillips': 'Lee Harvey - Age 9', 'Jeremy Maleek Leggett': 'Jamaal - Age 9'}\"\r\ntt0203019,\"{'Robert De Niro': 'Master Chief Billy Sunday', 'Cuba Gooding Jr.': 'Chief Carl Brashear', 'Charlize Theron': 'Gwen Sunday', 'Aunjanue Ellis': 'Jo', 'Hal Holbrook': \"\"'Mr. Pappy'\"\", 'Michael Rapaport': 'GM1 Snowhill', 'Powers Boothe': 'Captain Pullman', 'David Keith': 'Captain Hartigan', 'Holt McCallany': 'MM1 Dylan Rourke', 'David Conrad': 'Lt. /              Cmdr. /              Capt. Hanks', 'Joshua Leonard': 'PO2 Timothy Douglas Isert', 'Carl Lumbly': 'Mac Brashear', 'Lonette McKee': 'Ella Brashear', 'Glynn Turman': 'Chief Floyd', 'Dennis Troutman': 'Boots'}\"\r\ntt0066026,\"{'Donald Sutherland': 'Hawkeye Pierce', 'Elliott Gould': 'Trapper John McIntyre', 'Tom Skerritt': 'Duke Forrest', 'Sally Kellerman': \"\"Maj. Margaret 'Hot Lips' O'Houlihan\"\", 'Robert Duvall': 'Maj. Frank Burns', 'Roger Bowen': 'Lt. Col. Henry Blake', 'Rene Auberjonois': 'Father John Mulcahy', 'David Arkin': 'Sgt. Major Vollmer', 'Jo Ann Pflug': \"\"Lt. 'Dish'\"\", 'Gary Burghoff': \"\"Cpl. 'Radar' O'Reilly\"\", 'Fred Williamson': \"\"Dr. Oliver 'Spearchucker' Jones\"\", 'Michael Murphy': \"\"'Me Lai' Marston\"\", 'Indus Arthur': 'Lt. Leslie', 'Ken Prymus': 'PFC. Seidman', 'Bobby Troup': 'Sgt. Gorman'}\"\r\ntt0100114,\"{'Steven Seagal': 'John Hatcher', 'Basil Wallace': 'Screwface', 'Keith David': 'Max', 'Tom Wright': 'Charles', 'Joanna Pacula': 'Leslie', 'Elizabeth Gracen': 'Melissa', 'Bette Ford': 'Kate Hatcher', 'Danielle Harris': 'Tracey', 'Al Israel': 'Tito Barco', 'Arlen Dean Snyder': 'Duvall', 'Victor Romero Evans': 'Nesta', 'Michael Ralph': 'Monkey', 'Jeffrey Anderson-Gunter': 'Nago', 'Tony DiBenedetto': 'Jimmy Fingers', 'Kevin Dunn': 'Lt. Sal Roselli'}\"\r\ntt0328107,\"{'Denzel Washington': 'John W. Creasy', 'Dakota Fanning': 'Lupita Ramos', 'Radha Mitchell': 'Lisa Ramos', 'Christopher Walken': 'Paul Rayburn', 'Marc Anthony': 'Samuel Ramos', 'Giancarlo Giannini': 'Miguel Manzano', 'Mickey Rourke': 'Jordan Kalfus', 'Rachel Ticotin': 'Mariana Garcia Guerrero', 'Roberto Sosa': 'Daniel Sanchez', 'Jesús Ochoa': 'Victor Fuentes', 'Gero Camilo': 'Aurelio Sanchez', 'Mario Zaragoza': 'Jorge Gonzalez', 'Charles Paraventi': 'Jersey Boy', 'Carmen Salinas': 'Guardian Three', 'Esteban De La Trinidad': 'Guardian Two'}\"\r\ntt0337978,\"{'Bruce Willis': 'John McClane', 'Timothy Olyphant': 'Thomas Gabriel', 'Justin Long': \"\"Matthew 'Matt' Farrell\"\", 'Maggie Q': 'Mai Linh', 'Cliff Curtis': 'FBI Deputy Director Miguel Bowman', 'Jonathan Sadowski': 'Trey', 'Andrew Friedman': 'Casper', 'Kevin Smith': \"\"Frederick 'Warlock' Kaludis\"\", 'Yorgo Constantine': 'Russo', 'Cyril Raffaelli': 'Rand', 'Chris Palermo': 'Del       (as Christopher Palermo)', 'Mary Elizabeth Winstead': 'Lucy Gennaro McClane', 'Sung Kang': 'Raj', 'Zeljko Ivanek': 'Agent Molina', 'Christina Chang': 'Taylor'}\"\r\ntt0449059,\"{'Abigail Breslin': 'Olive Hoover', 'Greg Kinnear': 'Richard Hoover', 'Paul Dano': 'Dwayne', 'Alan Arkin': 'Grandpa Edwin Hoover', 'Toni Collette': 'Sheryl Hoover', 'Steve Carell': 'Frank Ginsberg', 'Marc Turtletaub': 'Doctor #1', 'Jill Talley': 'Cindy', 'Brenda Canela': 'Diner Waitress', 'Julio Oscar Mechoso': 'Mechanic', 'Chuck Loring': 'Convenience Store Proprietor', 'Justin Shilton': 'Josh', 'Gordon Thomson': 'Larry Sugarman', 'Steven Christopher Parker': 'Teen Boy #1', 'Bryan Cranston': 'Stan Grossman'}\"\r\ntt0240468,\"{'Steve Oedekerk': 'Chosen One', 'Fei Lung': 'Master Pain (Betty)       (archive footage) (as Lung Fai)', 'Leo Lee': 'Young Master Pain', 'Ling-Ling Hsieh': 'Ling       (archive footage) (as Tse Ling Ling)', 'Lin Yan': 'Dying Ling       (as Yan Lin)', 'Chia Yung Liu': 'Wimp Lo       (archive footage) (as Lau Kar Wing)', 'Hui Lou Chen': 'Master Tang       (archive footage) (as Chen Hui Lou)', 'Chi Ma': 'Master Doe       (archive footage) (as Ma Chi)', 'Jennifer Tung': 'Whoa', 'Escobar Tongue': 'Tonguey       (credit only)', 'Ming Lo': 'Father', 'Peggy Lu': 'Mother', 'Tad Horino': 'Chew Fat Lip', 'Tori Tran': 'Peasant Woman', 'Simon Rhee': \"\"Young Master Pain's Henchman\"\"}\"\r\ntt0264761,\"{'Jennifer Westfeldt': 'Jessica Stein', 'Tovah Feldshuh': 'Judy Stein', 'Esther Wurmfeld': 'Grandma Esther', 'Hillel Friedman': 'Rabbi', 'Ben Feldman': 'Himself', 'Robert Ari': 'Sidney Stein', 'David Aaron Baker': 'Dan Stein', 'Jennifer Carta': \"\"Rachel - Dan's Fiancée\"\", 'Ben Weber': 'Larry', 'Brian Stepanek': 'Peter', 'Nick Corley': 'Howard', 'Jackie Hoffman': 'Joan', 'John Cariani': 'Chuck', 'Scott Cohen': 'Josh Meyers', 'Christopher Berger': 'Malaprops Guy'}\"\r\ntt0320661,\"{'Martin Hancock': 'Gravedigger', 'Michael Sheen': 'Priest', 'Nathalie Cox': \"\"Balian's Wife\"\", 'Eriq Ebouaney': 'Firuz', 'Jouko Ahola': 'Odo', 'David Thewlis': 'Hospitaler', 'Liam Neeson': 'Godfrey de Ibelin', 'Philip Glenister': 'Squire', 'Orlando Bloom': 'Balian de Ibelin', 'Bronson Webb': 'Apprentice', 'Kevin McKidd': 'English Sergeant', 'Nikolaj Coster-Waldau': 'Village Sheriff', 'Steven Robertson': 'Angelic Priest', 'Marton Csokas': 'Guy de Lusignan', 'Alexander Siddig': 'Imad'}\"\r\ntt0305711,\"{'Ashton Kutcher': 'Tom', 'Brittany Murphy': 'Sarah', 'Christian Kane': 'Peter Prentiss', 'David Moscow': 'Kyle', 'Monet Mazur': 'Lauren       (as Monét Mazur)', 'David Rasche': 'Mr. McNerney', 'Thad Luckinbill': 'Willie McNerney', 'David Agranov': 'Paul McNerney', 'Taran Killam': 'Dickie McNerney', 'Raymond J. Barry': 'Mr. Leezak', 'Toshi Toda': 'Yuan', 'George Gaynes': 'Father Robert', 'Massimo Schina': 'Fredo', 'Valeria Andrews': 'Wendy       (as Valeria)', 'Alex Thomas': 'Fred'}\"\r\ntt0091306,\"{'Whoopi Goldberg': 'Terry Doolittle', 'Stephen Collins': 'Marty Phillips', 'John Wood': 'Jeremy Talbott', 'Carol Kane': 'Cynthia', 'Annie Potts': 'Liz Carlson', 'Peter Michael Goetz': 'Mr. Page', 'Roscoe Lee Browne': 'Archer Lincoln', 'Sara Botsford': 'Lady Sarah Billings', 'Jeroen Krabbé': 'Mark Van Meter       (as Jeroen Krabbe)', 'Vyto Ruginis': 'Carl', 'Jonathan Pryce': 'Jack', 'Tony Hendra': 'Hunter', 'Jon Lovitz': 'Doug', 'Phil Hartman': 'Fred       (as Phil E. Hartmann)', 'Lynne Marie Stewart': 'Karen'}\"\r\ntt0359517,\"{'Cedric the Entertainer': 'Nate Johnson /              Uncle Earl', 'Vanessa Williams': 'Dorothy Johnson', 'Solange': 'Nikki Johnson       (as Solange Knowles)', 'Shad Moss': 'D.J. Johnson       (as Bow Wow)', 'Gabby Soleil': 'Destiny Johnson', 'Shannon Elizabeth': 'Chrishelle Rene Boudreau', 'Steve Harvey': 'Mack Johnson', 'Aloma Wright': 'Glorietta Johnson', 'Shari Headley': 'Jacqueline', 'Jennifer Freeman': 'Jill', 'Philip Bolden': 'Mack, Jr.       (as Philip Daniel Bolden)', 'Rodney Perry': 'Cousin Lump       (as Rodney B. Perry)', 'Christopher B. Duncan': 'Stan', 'Lorna Scott': 'Gladys', 'Kevin P. Farley': 'Stall Guy       (as Kevin Farley)'}\"\r\ntt0036613,\"{'Cary Grant': 'Mortimer Brewster', 'Priscilla Lane': 'Elaine Harper', 'Raymond Massey': 'Jonathan Brewster', 'Jack Carson': \"\"O'Hara\"\", 'Edward Everett Horton': 'Mr. Witherspoon', 'Peter Lorre': 'Dr. Einstein', 'James Gleason': 'Lt. Rooney', 'Josephine Hull': 'Abby Brewster', 'Jean Adair': 'Martha Brewster', 'John Alexander': \"\"'Teddy Roosevelt' Brewster\"\", 'Grant Mitchell': 'Reverend Harper', 'Edward McNamara': 'Brophy', 'Garry Owen': 'Taxi Cab Driver', 'John Ridgely': 'Saunders', 'Vaughan Glaser': 'Judge Cullman'}\"\r\ntt0107034,\"{'Macaulay Culkin': 'Henry', 'Elijah Wood': 'Mark', 'Wendy Crewson': 'Susan', 'David Morse': 'Jack', 'Daniel Hugh Kelly': 'Wallace', 'Jacqueline Brookes': 'Alice', 'Quinn Culkin': 'Connie', 'Ashley Crow': 'Janice', 'Guy Strauss': 'Arizona Doctor', 'Keith Brava': 'Doctor in Blackport', 'Jerem Goodwin': 'Factory Worker', 'Andria Hall': 'Woman Reporter', 'Bobby Huber': 'Axe Man', 'Mark Stefanich': 'Ice Man', 'Susan Hopper': 'Woman at Rescue'}\"\r\ntt0454841,\"{'Maxime Giffard': 'First Victim', 'Michael Bailey Smith': 'Pluto', 'Tom Bower': 'Gas Station Attendant', 'Ted Levine': 'Big Bob', 'Kathleen Quinlan': 'Ethel', 'Dan Byrd': 'Bobby', 'Emilie de Ravin': 'Brenda', 'Aaron Stanford': 'Doug', 'Vinessa Shaw': 'Lynn', 'Maisie Camilleri Preziosi': 'Baby Catherine', 'Robert Joy': 'Lizard', 'Laura Ortiz': 'Ruby', 'Ezra Buzzington': 'Goggle', 'Billy Drago': 'Papa Jupiter', 'Greg Nicotero': 'Cyst'}\"\r\ntt0054997,\"{'Paul Newman': 'Eddie Felson', 'Jackie Gleason': 'Minnesota Fats', 'Piper Laurie': 'Sarah Packard', 'George C. Scott': 'Bert Gordon', 'Myron McCormick': 'Charlie Burns', 'Murray Hamilton': 'Findley', 'Michael Constantine': 'Big John', 'Stefan Gierasch': 'Preacher', 'Clifford A. Pellow': 'Turk       (as Cliff Pellow)', 'Jake LaMotta': 'Bartender', 'Gordon B. Clarke': 'Cashier', 'Alexander Rose': 'Score Keeper', 'Carolyn Coates': 'Waitress', 'Carl York': 'Young Hustler', 'Vincent Gardenia': 'Bartender'}\"\r\ntt0120703,\"{'Angela Bassett': 'Stella Payne', 'Taye Diggs': 'Winston Shakespeare', 'Whoopi Goldberg': 'Delilah Abraham', 'Regina King': 'Vanessa', 'Suzzanne Douglas': 'Angela', 'Michael J. Pagan': 'Quincy Payne', 'Sicily Johnson': 'Chantel       (as Sicily)', 'Richard Lawson': 'Jack', 'Barry Shabaka Henley': 'Buddy', 'Lee Weaver': 'Nate', 'Glynn Turman': 'Dr. Shakespeare', 'Phyllis Yvonne Stickney': 'Mrs. Shakespeare', 'Denise Hunt': 'Ms. Thang', 'Lisa Hanna': 'Abby', 'James Pickens Jr.': 'Walter Payne'}\"\r\ntt0465494,\"{'Timothy Olyphant': 'Agent 47', 'Dougray Scott': 'Mike Whittier', 'Olga Kurylenko': 'Nika Boronina', 'Robert Knepper': 'Yuri Marklov', 'Ulrich Thomsen': 'Mikhail Belicoff', 'Henry Ian Cusick': 'Udre Belicoff', 'Michael Offei': 'Jenkins', 'Christian Erickson': 'General Kormarov', 'Eriq Ebouaney': 'Bwana Ovie', 'Joe Sheridan': 'Captain Gudnayev', 'James Faulkner': 'Smith Jamison', 'Jean-Marc Bellu': 'Hitman #2', 'Nicky Naudé': 'Hitman #3       (as Nicky Naude)', 'Abdou Sagna': 'Hitman #4', 'Ilya Nikitenko': 'Hitman #5'}\"\r\ntt0101410,\"{'John Turturro': 'Barton Fink', 'John Goodman': 'Charlie Meadows', 'Judy Davis': 'Audrey Taylor', 'Michael Lerner': 'Jack Lipnick', 'John Mahoney': 'W.P. Mayhew', 'Tony Shalhoub': 'Ben Geisler', 'Jon Polito': 'Lou Breeze', 'Steve Buscemi': 'Chet', 'David Warrilow': 'Garland Stanford', 'Richard Portnow': 'Detective Mastrionotti', 'Christopher Murney': 'Detective Deutsch', 'I.M. Hobson': 'Derek', 'Meagen Fay': 'Poppy Carnahan       (as Megan Faye)', 'Lance Davis': 'Richard St. Claire', 'Harry Bugin': 'Pete'}\"\r\ntt0356721,\"{'Jason Schwartzman': 'Albert Markovski', 'Isabelle Huppert': 'Caterine Vauban', 'Dustin Hoffman': 'Bernard', 'Lily Tomlin': 'Vivian', 'Jude Law': 'Brad Stand', 'Mark Wahlberg': 'Tommy Corn', 'Naomi Watts': 'Dawn Campbell', 'Angela Grillo': 'Angela Franco', 'Ger Duany': 'Mr. Stephen Nimieri', 'Darlene Hunt': 'Darlene', 'Kevin Dunn': 'Marty', 'Ben Hernandez Bray': 'Davy       (as Benny Hernandez)', 'Richard Appel': 'Josh', 'Benjamin Nurick': 'Harrison', 'Jake Muxworthy': 'Tim'}\"\r\ntt0119381,\"{'Joaquin Phoenix': 'Doug Holt', 'Billy Crudup': 'Jacey Holt', 'Will Patton': 'Lloyd Abbott', 'Kathy Baker': 'Helen Holt', 'Jennifer Connelly': 'Eleanor Abbott', 'Michael Sutton': 'Steve', 'Liv Tyler': 'Pamela Abbott', 'Joanna Going': 'Alice Abbott', 'Barbara Williams': 'Joan Abbott', 'Alessandro Nivola': 'Peter Vanlaningham', 'Nicole M. Vassallo': 'Giggling Girl #1', 'Amanda Sherman': 'Giggling Girl #2', 'Shawn Hatosy': 'Victor', 'Garrett M. Brown': 'Webb Crosby', 'Julie Benz': 'Co-ed'}\"\r\ntt0388125,\"{'Cameron Diaz': 'Maggie', 'Anson Mount': 'Todd', 'Toni Collette': 'Rose', 'Richard Burgi': 'Jim Danvers', 'Candice Azzara': 'Sydelle Feller', 'Brooke Smith': 'Amy', 'John Mastrangelo Sr.': 'Di Bruno Bros. Cheese Guy', 'Emilio Mignucci': 'Di Bruno Bros. Cheese Guy       (as Emilo Mignucci)', 'Mark Feuerstein': 'Simon Stein', 'Terrance Christopher Jones': 'Lawyer', 'Nicole Randall Johnson': \"\"Rose's Assistant\"\", 'Kateri DeMartino': 'Ferocious Shopper       (as Kateri Demartino)', 'Brandon Karrer': 'Canal House Guy', 'Jon Ingrassia': 'Bartender', 'Jason Peck': 'Cuervo Carl'}\"\r\ntt0455967,\"{'Jesse Metcalfe': 'John Tucker', 'Brittany Snow': 'Kate', 'Ashanti': 'Heather', 'Sophia Bush': 'Beth', 'Arielle Kebbel': 'Carrie', 'Penn Badgley': 'Scott', 'Jenny McCarthy': 'Lori', 'Fatso-Fasano': 'Tommy       (as Fatsô-Fasanô)', 'Kevin McNulty': 'Basketball Coach', 'Patricia Drake': 'Coach Williams', 'Amanda Li': 'Spelling Bee Girl', 'Jeffrey Ballard': 'Cute Boy       (as Jeff Ballard)', 'Taylor Kitsch': 'Justin', 'Steve Bacic': 'Skip #1', 'Dean Wray': 'Skip #2'}\"\r\ntt0116705,\"{'Arnold Schwarzenegger': 'Howard Langston', 'Sinbad': 'Myron Larabee', 'Phil Hartman': 'Ted Maltin', 'Rita Wilson': 'Liz Langston', 'Robert Conrad': 'Officer Hummell', 'Martin Mull': 'D.J.', 'Jake Lloyd': 'Jamie Langston', 'Jim Belushi': 'Mall Santa       (as James Belushi)', 'E.J. De la Pena': 'Johnny       (as E.J. de la Pena)', 'Laraine Newman': 'First Lady', 'Justin Chapman': 'Billy', 'Harvey Korman': 'President', 'Richard Moll': 'Dementor', 'Daniel Riordan': 'Turbo Man', 'Jeff L. Deist': 'T.V. Booster /              Puppeteer       (as Jeff Deist)'}\"\r\ntt0119349,\"{'Kevin Kline': 'Ben Hood', 'Joan Allen': 'Elena Hood', 'Sigourney Weaver': 'Janey Carver', 'Henry Czerny': 'George Clair', 'Tobey Maguire': 'Paul Hood', 'Christina Ricci': 'Wendy Hood', 'Elijah Wood': 'Mikey Carver', 'Adam Hann-Byrd': 'Sandy Carver', 'David Krumholtz': 'Francis Davenport', 'Jamey Sheridan': 'Jim Carver', 'Kate Burton': 'Dorothy Franklin', 'William Cain': 'Ted Shackley', 'Michael Cumpsty': 'Philip Edwards', 'Maia Danziger': 'Mrs. Gadd', 'Katie Holmes': 'Libbets Casey'}\"\r\ntt0298845,\"{'Paddy Considine': 'Johnny', 'Samantha Morton': 'Sarah', 'Sarah Bolger': 'Christy', 'Emma Bolger': 'Ariel', 'Neal Jones': 'Immigration Officer #1', 'Randall Carlton': 'Immigration Officer #2', 'Ciaran Cronin': 'Frankie', 'Djimon Hounsou': 'Mateo', 'Juan Carlos Hernández': 'Papo       (as Juan Hernandez)', 'Nye Heron': 'Blind Man', 'Jason Salkey': 'Tony', 'Rene Millan': 'Steve', 'Sara James': \"\"Papo's Girlfriend\"\", 'Bob Gallico': 'Theatre Director', 'Jason Killalee': 'Assistant Theatre Director'}\"\r\ntt0089370,\"{'Michael Douglas': 'Jack', 'Kathleen Turner': 'Joan', 'Danny DeVito': 'Ralph', 'Spyros Fokas': 'Omar       (as Spiros Focás)', 'Avner Eisenberg': 'Jewel', 'Paul David Magid': 'Tarak', 'Howard Jay Patterson': 'Barak', 'Randall Edwin Nelson': 'Karak', 'Samuel Ross Williams': 'Arak', 'Timothy Daniel Furst': 'Sarak', 'Hamid Fillali': 'Rachid', 'Holland Taylor': 'Gloria', 'Guy Cuevas': 'Le Vasseur', 'Peter DePalma': 'Missionary       (as Peter De Palma)', 'Mark Daly Richards': 'Pirate'}\"\r\ntt0343818,\"{'Will Smith': 'Del Spooner', 'Bridget Moynahan': 'Susan Calvin', 'Alan Tudyk': 'Sonny', 'James Cromwell': 'Dr. Alfred Lanning', 'Bruce Greenwood': 'Lawrence Robertson', 'Adrian Ricard': 'Granny       (as Adrian L. Ricard)', 'Chi McBride': 'Lt. John Bergin', 'Jerry Wasserman': 'Baldez', 'Fiona Hogan': 'V.I.K.I.', 'Peter Shinkoda': 'Chin', 'Terry Chen': 'Chin', 'David Haysom': 'NS4 Robot /              NS5 Robot', 'Scott Heindl': 'NS4 Robot /              NS5 Robot', 'Sharon Wilkins': 'Asthmatic Woman', 'Craig March': 'Detective'}\"\r\ntt0116629,\"{'Will Smith': 'Capt. Steven Hiller', 'Bill Pullman': 'President Thomas J. Whitmore', 'Jeff Goldblum': 'David Levinson', 'Mary McDonnell': 'Marilyn Whitmore', 'Judd Hirsch': 'Julius Levinson', 'Robert Loggia': 'General William Grey', 'Randy Quaid': 'Russell Casse', 'Margaret Colin': 'Constance Spano', 'James Rebhorn': 'Albert Nimziki', 'Harvey Fierstein': 'Marty Gilbert', 'Adam Baldwin': 'Major Mitchell', 'Brent Spiner': 'Dr. Brakish Okun', 'James Duval': 'Miguel', 'Vivica A. Fox': 'Jasmine Dubrow', 'Lisa Jakub': 'Alicia'}\"\r\ntt0449010,\"{'Ed Speleers': 'Eragon', 'Jeremy Irons': 'Brom', 'Sienna Guillory': 'Arya', 'Robert Carlyle': 'Durza', 'John Malkovich': 'Galbatorix', 'Garrett Hedlund': 'Murtagh', 'Alun Armstrong': 'Uncle Garrow', 'Christopher Egan': 'Roran       (as Chris Egan)', 'Gary Lewis': 'Hrothgar', 'Djimon Hounsou': 'Ajihad', 'Rachel Weisz': 'Saphira       (voice)', 'Richard Rifkin': 'Horst', 'Steve Speirs': 'Sloan', 'Joss Stone': 'Angela', 'Michael Mehlmann': 'Villager #1       (as Michael A. Mehlmann)'}\"\r\ntt0104431,\"{'Macaulay Culkin': 'Kevin', 'Joe Pesci': 'Harry', 'Daniel Stern': 'Marv', \"\"Catherine O'Hara\"\": 'Kate', 'John Heard': 'Peter', 'Devin Ratray': 'Buzz', 'Hillary Wolf': 'Megan', 'Maureen Elisabeth Shay': 'Linnie', 'Michael C. Maronna': 'Jeff', 'Gerry Bamman': 'Uncle Frank', 'Terrie Snell': 'Aunt Leslie', 'Jedidiah Cohen': 'Rod', 'Senta Moses Mikan': 'Tracy       (as Senta Moses)', 'Diana Rein': 'Sondra       (as Daiana Campeanu)', 'Kieran Culkin': 'Fuller'}\"\r\ntt0382077,\"{'Robert De Niro': 'David Callaway', 'Dakota Fanning': 'Emily Callaway', 'Famke Janssen': 'Katherine', 'Elisabeth Shue': 'Elizabeth', 'Amy Irving': 'Alison Callaway', 'Dylan Baker': 'Sheriff Hafferty', 'Melissa Leo': 'Laura', 'Robert John Burke': 'Steven', 'Molly Grant Kallins': 'Amy', 'David Chandler': 'Mr. Haskins', 'Stewart Summers': 'Doctor', 'Jake Dylan Baumer': 'Disturbed Boy'}\"\r\ntt0107144,\"{'Charlie Sheen': 'Topper Harley', 'Lloyd Bridges': 'Tug Benson', 'Valeria Golino': 'Ramada Rodham Hayman', 'Richard Crenna': 'Col. Denton Walters', 'Brenda Bakke': 'Michelle Rodham Huddleston', 'Miguel Ferrer': 'Harbinger', 'Rowan Atkinson': 'Dexter Hayman', 'Jerry Haleva': 'Saddam Hussein', 'David Wohl': 'Gerou', 'Mitchell Ryan': 'Gray Edwards', 'Michael Colyar': 'Williams', 'Ryan Stiles': 'Rabinowitz', 'Rosemary Johnston': 'Lavinia Rodham Benson', 'Ben Lemon': 'Team 2 Leader', 'Buck McDancer': 'Richard Nixon'}\"\r\ntt0102059,\"{'Charlie Sheen': 'Topper Harley /              Rhett Butler /              Superman', 'Cary Elwes': 'Kent Gregory', 'Valeria Golino': \"\"Ramada Thompson /              Scarlett O'Hara /              Lois Lane\"\", 'Lloyd Bridges': 'Admiral Benson', 'Kevin Dunn': 'Lt. Commander Block', 'Jon Cryer': \"\"Jim 'Wash Out' Pfaffenbach\"\", \"\"William O'Leary\"\": \"\"Pete 'Dead Meat' Thompson\"\", 'Kristy Swanson': 'Kowalski', 'Efrem Zimbalist Jr.': 'Wilson', 'Bill Irwin': 'Buzz Harley', 'Heidi Swedberg': \"\"Mrs. 'Deat Meat' Thompson\"\", 'Bruce A. Young': \"\"'Red' Herring\"\", 'Ryan Stiles': \"\"'Mailman' Farnham\"\", 'Rino Thunder': \"\"Owatonna, 'The Old One'\"\", 'Mark Arnott': 'Rosener'}\"\r\ntt0120681,\"{'Johnny Depp': 'Inspector Frederick Abberline', 'Heather Graham': 'Mary Kelly', 'Ian Holm': 'Sir William Gull', 'Robbie Coltrane': 'Sergeant Peter Godley', 'Ian Richardson': 'Sir Charles Warren', 'Jason Flemyng': 'Netley, the Coachman', 'Katrin Cartlidge': 'Dark Annie Chapman', 'Terence Harvey': \"\"Benjamin 'Ben' Kidney\"\", 'Susan Lynch': 'Liz Stride', 'Paul Rhys': 'Dr. Ferral', 'Lesley Sharp': 'Kate Eddowes', 'Estelle Skornik': 'Ada', 'Nicholas McGaughey': 'Officer Bolt', 'Annabelle Apsion': 'Polly Nichols', 'Joanna Page': 'Ann Crook'}\"\r\ntt0377062,\"{'Dennis Quaid': 'Frank Towns', 'Tyrese Gibson': 'A.J.', 'Giovanni Ribisi': 'Elliott', 'Miranda Otto': 'Kelly Johnson', 'Tony Curran': 'Alex Rodney', 'Sticky Fingaz': 'Jeremy       (as Kirk Jones)', 'Jacob Vargas': 'Sammi', 'Hugh Laurie': 'Ian', 'Scott Michael Campbell': 'James Liddle', 'Kevork Malikyan': 'Rady', 'Jared Padalecki': 'John Davis', 'Paul Ditchfield': 'Dr. Gerber', 'Martin Hindy': \"\"Newman       (as Martin 'Mako' Hindy)\"\", 'Bob Brown': 'Kyle', 'Anthony Brandon Wong': 'Lead Smuggler       (as Anthony Wong)'}\"\r\ntt0099785,\"{'Macaulay Culkin': 'Kevin', 'Joe Pesci': 'Harry', 'Daniel Stern': 'Marv', 'John Heard': 'Peter', 'Roberts Blossom': 'Marley', \"\"Catherine O'Hara\"\": 'Kate', 'Angela Goethals': 'Linnie', 'Devin Ratray': 'Buzz', 'Gerry Bamman': 'Uncle Frank', 'Hillary Wolf': 'Megan', 'John Candy': 'Gus Polinski', 'Larry Hankin': 'Officer Balzak', 'Michael C. Maronna': 'Jeff', 'Kristin Minter': 'Heather', 'Diana Rein': 'Sondra       (as Daiana Campeanu)'}\"\r\ntt0104427,\"{'Jack Nicholson': 'James R. Hoffa', 'Danny DeVito': 'Bobby Ciaro', 'Armand Assante': \"\"Carol D'Allesandro\"\", 'J.T. Walsh': 'Fitzsimmons', 'John C. Reilly': 'Pete Connelly', 'Frank Whaley': 'Young Kid', 'Kevin Anderson': 'Robert Kennedy', 'John P. Ryan': 'Red Bennett', 'Robert Prosky': 'Billy Flynn', 'Natalija Nogulich': 'Jo Hoffa', 'Nicholas Pryor': \"\"Hoffa's Attorney\"\", 'Paul Guilfoyle': 'Ted Harmon', 'Karen Young': 'Young Woman at RTA', 'Cliff Gorman': 'Solly Stein', 'Joanne Neer': 'Soignee Woman'}\"\r\ntt0356634,\"{'Breckin Meyer': 'Jon', 'Jennifer Love Hewitt': 'Liz', 'Stephen Tobolowsky': 'Happy Chapman', 'Bill Murray': 'Garfield       (voice)', 'Evan Arnold': 'Wendell', 'Mark Christopher Lawrence': 'Christopher Mello', 'Vanessa Campbell': 'Miss Ace Hardware       (as Vanessa Christelle)', 'Daamen J. Krall': 'Announcer       (as Daamen Krall)', 'Rufus Gifford': 'Dog Owner #1', 'Randee Reicher': 'Dog Owner #2', 'Ryan McKasson': 'Dog Owner #3', 'Susan Moore': 'Dog Owner #4', 'Eve Brent': 'Mrs. Baker', 'Bill Hoag': 'Roy the Lodge Member', 'Michael Monks': 'Deputy Hopkins'}\"\r\ntt0067116,\"{'Gene Hackman': 'Jimmy Doyle', 'Fernando Rey': 'Alain Charnier', 'Roy Scheider': 'Buddy Russo', 'Tony Lo Bianco': 'Sal Boca', 'Marcel Bozzuffi': 'Pierre Nicoli', 'Frédéric de Pasquale': 'Devereaux       (as Frederic De Pasquale)', 'Bill Hickman': 'Mulderig', 'Ann Rebbot': 'Marie Charnier', 'Harold Gary': 'Weinstock', 'Arlene Farber': 'Angie Boca', 'Eddie Egan': 'Simonson', 'André Ernotte': 'La Valle       (as Andre Ernotte)', 'Sonny Grosso': 'Klein', 'Benny Marino': 'Lou Boca', 'Patrick McDermott': 'Chemist       (as Pat McDermott)'}\"\r\ntt0242423,\"{'Ashton Kutcher': 'Jesse Montgomery III', 'Seann William Scott': 'Chester Greenburg', 'Jennifer Garner': 'Wanda', 'Marla Sokoloff': 'Wilma', 'Kristy Swanson': 'Christie Boner', 'David Herman': 'Nelson', 'Hal Sparks': 'Zoltan - Cult Leader', \"\"Charlie O'Connell\"\": 'Tommy', 'John Toles-Bey': 'Mr. Pizzacoli', 'Christian Middelthon': 'Alien Nordic Dude #1', 'Dave Bannick': 'Alien Nordic Dude #2       (as David W. Bannick)', 'James Vincent': 'Jeff - Cult Member       (as Turtle)', 'Bob Clendenin': 'Zarnoff - Cult Member       (as Robert Clendenin)', 'Mary Lynn Rajskub': 'Zelmina - Cult Member', 'Kevin Christy': 'Zellner - Cult Member'}\"\r\ntt0099487,\"{'Johnny Depp': 'Edward Scissorhands', 'Winona Ryder': 'Kim', 'Dianne Wiest': 'Peg', 'Anthony Michael Hall': 'Jim', 'Kathy Baker': 'Joyce', 'Robert Oliveri': 'Kevin', 'Conchata Ferrell': 'Helen', 'Caroline Aaron': 'Marge', 'Dick Anthony Williams': 'Officer Allen', 'O-Lan Jones': 'Esmeralda', 'Vincent Price': 'The Inventor', 'Alan Arkin': 'Bill', 'Susan Blommaert': 'Tinka       (as Susan J. Blommaert)', 'Linda Perri': 'Cissy       (as Linda Perry)', 'John Davidson': 'Host-TV'}\"\r\ntt0137523,\"{'Edward Norton': 'The Narrator', 'Brad Pitt': 'Tyler Durden', 'Meat Loaf': \"\"Robert 'Bob' Paulsen       (as Meat Loaf Aday)\"\", 'Zach Grenier': 'Richard Chesler', 'Richmond Arquette': 'Intern', 'David Andrews': 'Thomas', 'George Maguire': 'Group Leader', 'Eugenie Bondurant': 'Weeping Woman', 'Helena Bonham Carter': 'Marla Singer', 'Christina Cabot': 'Group Leader', \"\"Sydney 'Big Dawg' Colston\"\": 'Speaker', 'Rachel Singer': 'Chloe', 'Christie Cronenweth': 'Airline Attendant', 'Tim DeZarn': 'Inspector Bird       (as Tim de Zarn)', 'Ezra Buzzington': 'Inspector Dent'}\"\r\ntt0838221,\"{'Owen Wilson': 'Francis', 'Adrien Brody': 'Peter', 'Jason Schwartzman': 'Jack', 'Amara Karan': 'Rita', 'Wallace Wolodarsky': 'Brendan       (as Wally Wolodarsky)', 'Waris Ahluwalia': 'The Chief Steward', 'Irrfan Khan': 'The Father', 'Barbet Schroeder': 'The Mechanic', 'Camilla Rutherford': 'Alice', 'Bill Murray': 'The Businessman', 'Anjelica Huston': 'Patricia', 'A.P. Singh': 'Taxi Driver', 'Kumar Pallana': 'Old Man', 'Dalpat Singh': 'Waiter', 'Trudy Matthys': 'German Lady #1       (as Trudy Mathis)'}\"\r\ntt0357277,\"{'Jennifer Garner': 'Elektra', 'Goran Visnjic': 'Mark Miller', 'Kirsten Zien': 'Abby Miller       (as Kirsten Prout)', 'Will Yun Lee': 'Kirigi', 'Cary-Hiroyuki Tagawa': 'Roshi', 'Terence Stamp': 'Stick', 'Natassia Malthe': 'Typhoid', 'Bob Sapp': 'Stone', 'Chris Ackerman': 'Tattoo', 'Edson T. Ribeiro': 'Kinkou', 'Colin Cunningham': 'McCabe', 'Hiro Kanagawa': 'Meizumi', 'Mark Houghton': 'Bauer', 'Laura Ward': 'Young Elektra', 'Kurt Max Runte': 'Nikolas Natchios'}\"\r\ntt0332047,\"{'Drew Barrymore': 'Lindsey', 'Jimmy Fallon': 'Ben', 'Jason Spevack': 'Ben - 1980', 'Jack Kehler': 'Al', 'Scott Severance': 'Artie       (as Scott H. Severance)', 'Jessamy Finet': 'Teresa       (as Jessamy R. Finét)', 'Maureen Keiller': 'Viv', 'Lenny Clarke': 'Uncle Carl', 'Ione Skye': 'Molly', 'KaDee Strickland': 'Robin', 'Marissa Jaret Winokur': 'Sarah', 'Evan Helmuth': 'Troy', 'Brandon Craggs': 'Casey', 'Brett Murphy': 'Ryan', 'Isabella Fink': 'Audrey'}\"\r\ntt0120631,\"{'Drew Barrymore': 'Danielle', 'Anjelica Huston': 'Rodmilla', 'Dougray Scott': 'Prince Henry', 'Patrick Godfrey': 'Leonardo', 'Megan Dodds': 'Marguerite', 'Melanie Lynskey': 'Jacqueline', 'Timothy West': 'King Francis', 'Judy Parfitt': 'Queen Marie', 'Jeroen Krabbé': 'Auguste', 'Lee Ingleby': 'Gustave', 'Kate Lansbury': 'Paulette', 'Matyelok Gibbs': 'Louise', 'Walter Sparrow': 'Maurice', 'Jeanne Moreau': 'Grande Dame', 'Anna Maguire': 'Young Danielle'}\"\r\ntt0364725,\"{'Vince Vaughn': 'Peter La Fleur', 'Christine Taylor': 'Kate Veatch', 'Ben Stiller': 'White Goodman', 'Rip Torn': \"\"Patches O'Houlihan\"\", 'Justin Long': 'Justin', 'Stephen Root': 'Gordon', 'Joel David Moore': 'Owen', 'Chris Williams': 'Dwight', 'Alan Tudyk': 'Steve the Pirate', 'Missi Pyle': 'Fran', 'Jamal Duff': \"\"Me'Shell Jones       (as Jamal E. Duff)\"\", 'Gary Cole': 'Cotton McKnight', 'Jason Bateman': 'Pepper Brooks', 'Hank Azaria': \"\"Young Patches O'Houlihan\"\", 'Al Kaplon': 'Tournament Referee'}\"\r\ntt0164114,\"{'Melissa Joan Hart': 'Nicole Maris', 'Adrian Grenier': 'Chase Hammond', 'Stephen Collins': 'Mr. Maris', 'Mark Metcalf': 'Mr. Rope', 'William Converse-Roberts': 'Mr. Hammond', 'Faye Grant': 'Mrs. Maris', 'Susan May Pratt': 'Alicia', 'Kris Park': 'Ray Neeley', 'Ali Larter': 'Dulcie', 'Mark Webber': 'Dave', 'Gabriel Carpenter': 'Brad', 'Lourdes Benedicto': 'Chloe Frost', 'Keri Lynn Pratt': 'Dee Vine', 'Natasha Pearce': 'Sue', 'Derrick Shore': 'Tom'}\"\r\ntt0099423,\"{'Bruce Willis': 'John McClane', 'Bonnie Bedelia': 'Holly McClane', 'William Atherton': 'Thornberg', 'Reginald VelJohnson': 'Al Powell', 'Franco Nero': 'Esperanza', 'William Sadler': 'Stuart', 'John Amos': 'Grant', 'Dennis Franz': 'Carmine Lorenzo', 'Art Evans': 'Barnes', 'Fred Dalton Thompson': 'Trudeau', 'Tom Bower': 'Marvin', 'Sheila McCarthy': 'Samantha Coleman', 'Don Harvey': 'Garber', 'Tony Ganios': 'Baker', 'Peter Nelson': 'Thompson'}\"\r\ntt0095016,\"{'Bruce Willis': 'John McClane', 'Bonnie Bedelia': 'Holly Gennaro McClane', 'Reginald VelJohnson': 'Sgt. Al Powell', 'Paul Gleason': 'Dwayne T. Robinson', \"\"De'voreaux White\"\": 'Argyle', 'William Atherton': 'Thornburg', 'Hart Bochner': 'Ellis', 'James Shigeta': 'Takagi', 'Alan Rickman': 'Hans Gruber', 'Alexander Godunov': 'Karl', 'Bruno Doyon': 'Franco', 'Andreas Wisniewski': 'Tony', 'Clarence Gilyard Jr.': 'Theo', 'Joey Plewa': 'Alexander', 'Lorenzo Caccialanza': 'Marco'}\"\r\ntt0458352,\"{'Meryl Streep': 'Miranda Priestly', 'Anne Hathaway': 'Andy Sachs', 'Emily Blunt': 'Emily', 'Stanley Tucci': 'Nigel', 'Simon Baker': 'Christian Thompson', 'Adrian Grenier': 'Nate', 'Tracie Thoms': 'Lily', 'Rich Sommer': 'Doug', 'Daniel Sunjata': 'James Holt', 'David Marshall Grant': 'Richard Sachs', 'James Naughton': 'Stephen', 'Tibor Feldman': 'Irv Ravitz', 'Rebecca Mader': 'Jocelyn', 'Jimena Hoyos': 'Lucia', 'Gisele Bündchen': 'Serena'}\"\r\ntt0043456,\"{'Michael Rennie': 'Klaatu', 'Patricia Neal': 'Helen Benson', 'Hugh Marlowe': 'Tom Stevens', 'Sam Jaffe': 'Professor Jacob Barnhardt', 'Billy Gray': 'Bobby Benson', 'Frances Bavier': 'Mrs. Barley', 'Lock Martin': 'Gort'}\"\r\ntt0092115,\"{'Noah Hathaway': 'Harry Potter Jr.', 'Michael Moriarty': 'Harry Potter Sr.', 'Shelley Hack': 'Anne Potter', 'Jenny Beck': 'Wendy Anne Potter', 'Sonny Bono': 'Peter Dickinson', 'Phil Fondacaro': 'Malcolm Mallory /              Torok the Troll', 'Brad Hall': 'William Daniels', 'Anne Lockhart': 'Young Eunice St. Clair', 'Julia Louis-Dreyfus': 'Jeanette Cooper', 'Gary Sandy': 'Barry Tabor', 'June Lockhart': 'Eunice St. Clair', 'Robert Hathaway': 'First Policeman', 'James Beck': 'Second Policeman', 'Dale Wyatt': \"\"Dickinson's Girlfriend\"\", 'Barbara Sciorilli': 'Fairy'}\"\r\ntt0116282,\"{'William H. Macy': 'Jerry Lundegaard', 'Steve Buscemi': 'Carl Showalter', 'Peter Stormare': 'Gaear Grimsrud', 'Kristin Rudrüd': 'Jean Lundegaard', 'Harve Presnell': 'Wade Gustafson', 'Tony Denman': 'Scotty Lundegaard', 'Gary Houston': 'Irate Customer', 'Sally Wingert': \"\"Irate Customer's Wife\"\", 'Kurt Schweickhardt': 'Car Salesman', 'Larissa Kokernot': 'Hooker #1', 'Melissa Peterman': 'Hooker #2', 'Steve Reevis': 'Shep Proudfoot       (as Steven Reevis)', 'Warren Keith': 'Reilly Diefenbach       (voice)', 'Steve Edelman': 'Morning Show Host', 'Sharon Anderson': 'Morning Show Hostess'}\"\r\ntt0286499,\"{'Parminder Nagra': 'Jess', 'Keira Knightley': 'Jules', 'Jonathan Rhys Meyers': 'Joe', 'Anupam Kher': 'Mr. Bhamra', 'Archie Panjabi': 'Pinky Bhamra', 'Shaznay Lewis': 'Mel', 'Frank Harper': 'Alan Paxton', 'Juliet Stevenson': 'Paula Paxton', 'Shaheen Khan': 'Mrs. Bhamra', 'Ameet Chana': 'Tony', 'Pooja Shah': 'Meena       (as Poojah Shah)', 'Pavenpreet Kaur': 'Bubbly       (as Paven Virk)', 'Preeya Kalidas': 'Monica', 'Trey Farley': 'Taz', 'Saraj Chaudhry': 'Sonny       (as Saraj Chaudry)'}\"\r\ntt0319262,\"{'Dennis Quaid': 'Jack Hall', 'Jake Gyllenhaal': 'Sam Hall', 'Emmy Rossum': 'Laura Chapman', 'Dash Mihok': 'Jason Evans', 'Jay O. Sanders': 'Frank Harris', 'Sela Ward': 'Dr. Lucy Hall', 'Austin Nichols': 'J.D.', 'Arjay Smith': 'Brian Parks', 'Tamlyn Tomita': 'Janet Tokada', 'Sasha Roiz': 'Parker', 'Ian Holm': 'Terry Rapson', 'Nassim Sharara': 'Saudi Delegate', 'Carl Alacchi': 'Venezuelan Delegate', 'Kenneth Welsh': 'Vice President Becker', \"\"Michel 'Gish' Abou-Samah\"\": 'Saudi Translator       (as Michael A. Samah)'}\"\r\ntt0088944,\"{'Arnold Schwarzenegger': 'John Matrix', 'Rae Dawn Chong': 'Cindy', 'Dan Hedaya': 'Arius', 'Vernon Wells': 'Bennett', 'James Olson': 'Major General Franklin Kirby', 'David Patrick Kelly': 'Sully', 'Alyssa Milano': 'Jenny Matrix', 'Bill Duke': 'Cooke', 'Drew Snyder': 'Lawson', 'Sharon Wyatt': 'Leslie', 'Michael DeLano': 'Forrestal', 'Bob Minor': 'Jackson', 'Michael Adams': 'Harris       (as Mike Adams)', 'Gary Carlos Cervantes': 'Diaz       (as Carlos Cervantes)', 'Lenny Juliano': 'Soldier'}\"\r\ntt0452598,\"{'Steve Martin': 'Tom Baker', 'Eugene Levy': 'Jimmy Murtaugh', 'Bonnie Hunt': 'Kate Baker', 'Tom Welling': 'Charlie Baker', 'Piper Perabo': 'Nora Baker-McNulty', 'Carmen Electra': 'Sarina Murtaugh', 'Jaime King': 'Anne Murtaugh', 'Hilary Duff': 'Lorraine Baker', 'Taylor Lautner': 'Eliot Murtaugh', 'Alyson Stoner': 'Sarah Baker', 'Jonathan Bennett': 'Bud McNulty', 'Jacob Smith': 'Jake Baker', 'Liliana Mumy': 'Jessica Baker', 'Morgan York': 'Kim Baker', 'Kevin G. Schmidt': 'Henry Baker'}\"\r\ntt0349205,\"{'Steve Martin': 'Tom Baker', 'Bonnie Hunt': 'Kate Baker', 'Piper Perabo': 'Nora Baker', 'Tom Welling': 'Charlie Baker', 'Hilary Duff': 'Lorraine Baker', 'Kevin G. Schmidt': 'Henry Baker', 'Alyson Stoner': 'Sarah Baker', 'Jacob Smith': 'Jake Baker', 'Liliana Mumy': 'Jessica Baker', 'Morgan York': 'Kim Baker', 'Forrest Landis': 'Mark Baker', 'Blake Woodruff': 'Mike Baker', 'Brent Kinsman': 'Nigel Baker', 'Shane Kinsman': 'Kyle Baker', 'Paula Marshall': 'Tina Shenk'}\"\r\ntt0115857,\"{'Keanu Reeves': 'Eddie Kasalivich', 'Morgan Freeman': 'Paul Shannon', 'Rachel Weisz': 'Dr. Lily Sinclair', 'Fred Ward': 'FBI Agent Leon Ford', 'Kevin Dunn': 'FBI Agent Doyle', 'Brian Cox': 'Lyman Earl Collier', 'Joanna Cassidy': 'Maggie McDermott', 'Chelcie Ross': 'Ed Rafferty', 'Nicholas Rudall': 'Dr. Alistair Barkley', 'Tzi Ma': 'Lu Chen', 'Krzysztof Pieczynski': 'Lucasz Screbneski', 'Julie Pearl': 'Emily Pearl       (as Julie R. Pearl)', 'Godfrey': 'Chidi Egbuna', 'Gene Barge': 'James Washington', 'Nathan Davis': 'Morris Grodsky'}\"\r\ntt0118798,\"{'Kimberly Deauna Adams': 'Denisha', 'Vinny Argiro': 'Debate Director', 'Sean Astin': 'Gary', 'Kirk Baltz': 'Debate Producer', 'Ernie Lee Banks': 'Leroy       (as Ernie Banks)', 'Amiri Baraka': 'Rastaman', 'Christine Baranski': 'Constance Bulworth', 'Adilah Barnes': 'Mrs. Brown', 'Warren Beatty': 'Jay Bulworth', 'Graham Beckel': 'Man with Dark Glasses', 'Halle Berry': 'Nina', 'Brandon N. Bowlin': 'Bouncer #2', 'Mongo Brownlee': 'Henchman #3', 'Thomas Jefferson Byrd': 'Uncle Rafeeq', 'J. Kenneth Campbell': 'Anthony'}\"\r\ntt0297037,\"{'Taye Diggs': \"\"Andre Romulus 'Dre' Ellis\"\", 'Sanaa Lathan': \"\"Sidney 'Syd' Shaw\"\", 'Yasiin Bey': \"\"Chris 'Cav' Anton Vichon       (as Mos Def)\"\", 'Nicole Ari Parker': 'Reese Marie Wiggam Ellis', 'Boris Kodjoe': 'Kelby Dawson', 'Queen Latifah': 'Francine', 'Wendell Pierce': 'Simon', 'Erik Weiner': 'Ren', 'Reg Wyns': 'Ten       (as Reggi Wyns)', 'Melissa Martinez': 'Meghan', 'Aaliyyah Hill': 'Young Sidney', 'Marc John Jefferies': 'Young Dre', 'Venida Evans': 'Older Woman', 'Breece Wilson': 'Woman', 'Brette Taylor': 'Woman 2'}\"\r\ntt0120620,\"{'Claire Danes': 'Alice Marano', 'Kate Beckinsale': 'Darlene Davis', 'Bill Pullman': 'Hank Greene', 'Jacqueline Kim': 'Yon Greene', 'Lou Diamond Phillips': 'Roy Knox', 'Daniel Lapaine': 'Nick Parks', 'Tom Amandes': 'Doug Davis', 'Aimee Graham': 'Beth Ann Gardener', 'John Doe': 'Bill Marano', 'Kay Tong Lim': 'Chief Detective Jagkrit', 'Beulah Quo': 'Guard Velie', 'Henry O': 'Emissary to Crown', 'Bahni Turpin': 'Jamaican Prisoner', 'Amanda De Cadenet': 'English Prisoner', 'Inthira Charoenpura': 'Prisoner Shub       (as Intira Jaroenpura)'}\"\r\ntt0092699,\"{'William Hurt': 'Tom Grunick', 'Albert Brooks': 'Aaron Altman', 'Holly Hunter': 'Jane Craig', 'Robert Prosky': 'Ernie Merriman', 'Lois Chiles': 'Jennifer Mack', 'Joan Cusack': 'Blair Litton       (as Joan Cusak)', 'Peter Hackes': 'Paul Moore', 'Christian Clemenson': 'Bobby', 'Jack Nicholson': 'Bill Rorish', 'Robert Katims': 'Martin Klein', 'Ed Wheeler': 'George Weln', 'Stephen Mendillo': 'Gerald Grunick', 'Kimber Shoop': 'Young Tom', 'Dwayne Markee': 'Young Aaron', 'Gennie James': 'Young Jane'}\"\r\ntt0078902,\"{'Dennis Christopher': 'Dave', 'Dennis Quaid': 'Mike', 'Daniel Stern': 'Cyril', 'Jackie Earle Haley': 'Moocher', 'Barbara Barrie': 'Mom', 'Paul Dooley': 'Dad', 'Robyn Douglass': 'Katherine', 'Hart Bochner': 'Rod', 'Amy Wright': 'Nancy', 'Peter Maloney': 'Doctor', 'John Ashton': \"\"Mike's Brother\"\", 'Lisa Shure': 'French Girl', 'Jennifer K. Mickel': 'Girl', 'P.J. Soles': 'Suzy       (as Pamela Jayne Soles)', 'David K. Blase': '500 Race Announcer'}\"\r\ntt0421729,\"{'Martin Lawrence': 'Malcolm /              Big Momma', 'Nia Long': 'Sherri', 'Emily Procter': 'Leah Fuller', 'Zachary Levi': 'Kevin', 'Mark Moses': 'Tom Fuller', 'Kat Dennings': 'Molly', 'Chloë Grace Moretz': 'Carrie       (as Chloe Grace Moretz)', 'Marisol Nichols': 'Liliana Morales', 'Josh Flitter': 'Stewart', 'Dan Lauria': 'Crawford', 'Jascha Washington': 'Trent', 'Jeanene Fox': 'Yasmeen', 'Preston Shores': 'Andrew', 'Trevor Shores': 'Andrew', 'Sarah Brown': 'Constance       (as Sarah Joy Brown)'}\"\r\ntt0208003,\"{'Martin Lawrence': 'Malcolm Turner', 'Nia Long': 'Sherry Pierce', 'Paul Giamatti': 'John', 'Jascha Washington': 'Trent Pierce', 'Terrence Howard': 'Lester Vesco       (as Terrence Dashon Howard)', 'Anthony Anderson': 'Nolan', 'Ella Mitchell': 'Hattie Mae Pierce (Big Momma)', 'Carl Wright': 'Ben Rawley', 'Phyllis Applegate': 'Sadie', 'Starletta DuPois': 'Miss Patterson', 'Jessie Mae Holmes': 'Miss Other Patterson', 'Nicole Prescott': 'Lena', 'Octavia Spencer': 'Twila       (as Octavia L. Spencer)', 'Tichina Arnold': 'Ritha', 'Cedric the Entertainer': 'Reverend'}\"\r\ntt0065466,\"{'Dolly Read': 'Kelly Mac Namara', 'Cynthia Myers': 'Casey Anderson', 'Marcia McBroom': 'Petronella Danforth', 'John Lazar': 'Ronnie (Z-Man) Barzell       (as John La Zar/John LaZar)', 'Michael Blodgett': 'Lance Rocke', 'David Gurian': 'Harris Allsworth', 'Edy Williams': 'Ashley St. Ives', 'Erica Gavin': 'Roxanne', 'Phyllis Davis': 'Susan Lake', 'Harrison Page': 'Emerson Thorne', 'Duncan McLeod': 'Porter Hall       (as Duncan Mc Leod/Duncan McLeod)', 'James Iglehart': 'Randy Black       (as Jim Iglehart)', 'Charles Napier': 'Baxter Wolfe', 'Henry Rowland': 'Otto', 'Princess Livingston': 'Matron'}\"\r\ntt0163978,\"{'Leonardo DiCaprio': 'Richard', 'Daniel York': 'Hustler', 'Patcharawan Patarakijjanon': 'Hotel Receptionist', 'Virginie Ledoyen': 'Françoise', 'Guillaume Canet': 'Étienne', 'Robert Carlyle': 'Daffy', 'Somboon Phutaroth': 'Cleaning Woman', \"\"Weeratham 'Norman' Wichairaksakui\"\": 'Detective', 'Sahajak Boonthanakit': 'Travel Agent       (as Jak Boon)', 'Peter Youngblood Hills': 'Zeph', 'Jerry Swindall': 'Sammy', 'Krongthong Thampradith': 'Woman with Key', 'Apichart Chusakul': \"\"Senior Farmer       (as Abhijati 'Muek' Jusakul)\"\", \"\"Sanya 'Gai' Cheunjit\"\": 'Farmer', \"\"Kaneung 'Nueng' Kenia\"\": 'Farmer'}\"\r\ntt0280460,\"{'Goldie Hawn': 'Suzette', 'Susan Sarandon': 'Lavinia Kingsley', 'Geoffrey Rush': 'Harry Plummer', 'Erika Christensen': 'Hannah Kingsley', 'Robin Thomas': 'Raymond Kingsley', 'Eva Amurri Martino': 'Ginger Kingsley       (as Eva Amurri)', 'Matthew Carey': 'Jules', 'Andre Ware': 'Jake', 'Adam Tomei': 'Club Owner', 'Sal Lopez': 'Pump Attendant', 'Kohl Sudduth': 'Hotel Clerk', 'Tinsley Grimes': 'Prom Girl', 'Larry Krask': 'Man in Bar', 'Marlayna Cherisse': 'Young Groupie       (as Marlayna Garrett)', 'Josh Todd': 'L.A. Buckcherry Band Member'}\"\r\ntt0042192,\"{'Bette Davis': 'Margo Channing', 'Anne Baxter': 'Eve Harrington', 'George Sanders': 'Addison DeWitt', 'Celeste Holm': 'Karen Richards', 'Gary Merrill': 'Bill Simpson', 'Hugh Marlowe': 'Lloyd Richards', 'Gregory Ratoff': 'Max Fabian', 'Barbara Bates': 'Phoebe', 'Marilyn Monroe': 'Miss Casswell', 'Thelma Ritter': 'Birdie Coonan', 'Walter Hampden': 'Aged Actor', 'Randy Stuart': 'Girl', 'Craig Hill': 'Leading Man', 'Leland Harris': 'Doorman', 'Barbara White': 'Autograph Seeker'}\"\r\ntt0168786,\"{'Derek Luke': 'Antwone Fisher', 'Malcolm David Kelley': 'Antwone Fisher Age 7', 'Cory Hodges': 'Antwone Fisher Age 14', 'Denzel Washington': 'Dr. Jerome Davenport', 'Joy Bryant': 'Cheryl Smolley', 'Salli Richardson-Whitfield': 'Berta Davenport       (as Salli Richardson)', 'Leonard Earl Howze': 'Pork Chop', 'Kente Scott': 'Kansas City       (as Kenté Scott)', 'Kevin Connolly': 'Slim', 'Rainoldo Gooding': 'Grayson', 'Novella Nelson': 'Mrs. Tate', 'Stephen Snedden': 'Berkley', 'Leo Nepomuceno': 'SP #1', 'Sung Kang': 'Receptionist', 'Cordell Stokes': 'Keith Age 5'}\"\r\ntt0118583,\"{'Sigourney Weaver': 'Ripley', 'Winona Ryder': 'Call', 'Dominique Pinon': 'Vriess', 'Ron Perlman': 'Johner', 'Gary Dourdan': 'Christie', 'Michael Wincott': 'Elgyn', 'Kim Flowers': 'Hillard', 'Dan Hedaya': 'General Perez', 'J.E. Freeman': 'Dr. Wren', 'Brad Dourif': 'Gediman', 'Raymond Cruz': 'Distephano', 'Leland Orser': 'Purvis', 'Carolyn Campbell': 'Anesthesiologist', 'Marlene Bush': 'Scientist', 'David St. James': 'Surgeon'}\"\r\ntt0103644,\"{'Sigourney Weaver': 'Ripley', 'Charles S. Dutton': 'Dillon', 'Charles Dance': 'Clemens', 'Paul McGann': 'Golic', 'Brian Glover': 'Andrews', 'Ralph Brown': 'Aaron', 'Danny Webb': 'Morse', 'Christopher John Fields': 'Rains', 'Holt McCallany': 'Junior', 'Lance Henriksen': 'Bishop II', 'Christopher Fairbank': 'Murphy       (as Chris Fairbank)', 'Carl Chase': 'Frank', 'Leon Herbert': 'Boggs', 'Vincenzo Nicoli': 'Jude', 'Pete Postlethwaite': 'David'}\"\r\ntt0311113,\"{'Russell Crowe': 'Capt. Jack Aubrey', 'Paul Bettany': 'Dr. Stephen Maturin, Surgeon', \"\"James D'Arcy\"\": '1st Lt. Tom Pullings', 'Edward Woodall': '2nd Lt. William Mowett', 'Chris Larkin': 'Capt. Howard, Royal Marines', 'Max Pirkis': 'Blakeney, Midshipman', 'Jack Randall': 'Boyle, Midshipman', 'Max Benitz': 'Calamy, Midshipman', 'Lee Ingleby': 'Hollom, Midshipman', 'Richard Pates': 'Williamson, Midshipman', 'Robert Pugh': 'Mr. Allen, Master', 'Richard McCabe': \"\"Mr. Higgins, Surgeon's Mate\"\", 'Ian Mercer': 'Mr. Hollar, Boatswain', 'Tony Dolan': 'Mr. Lamb, Carpenter', 'David Threlfall': \"\"Preserved Killick, Captain's Steward\"\"}\"\r\ntt0198021,\"{'Natalie Portman': 'Novalee Nation', 'Ashley Judd': 'Lexie Coop', 'Stockard Channing': 'Sister Husband', 'Joan Cusack': 'Ruth Meyers', 'James Frain': 'Forney Hull', 'Dylan Bruno': 'Willy Jack Pickens', 'Sue McCormick': 'Cake Supplier', 'Keith David': 'Moses Whitecotten', 'Ray Prewitt': 'Tim', 'Laura House': 'Nicki', 'Karey Green': 'Rhonda', 'Mary Ashleigh Green': 'Girl in Bathroom', 'Kinna McInroe': 'Wal-Mart Clerk', 'Laura Auldridge': 'Wal-Mart Assistant Manager', 'Alicia Godwin': 'Jolene'}\"\r\ntt0283026,\"{'Jesse Bradford': 'Ben Cronin', 'Erika Christensen': 'Madison Bell', 'Shiri Appleby': 'Amy Miller', 'Kate Burton': 'Carla Cronin', 'Clayne Crawford': 'Josh', 'Jason Ritter': 'Randy', 'Kia Goodwin': 'Rene       (as Kia Joy Goodwin)', 'Dan Hedaya': 'Coach Simkins', 'Michael Higgins': 'Mr. Tillman', 'Nick Sandow': 'Detective John Zabel', 'Pamela Isaacs': 'Mrs. Egan', 'James DeBello': 'Christopher Dante       (as James Debello)', 'Phyllis Somerville': 'Aunt Gretchen Christopher', 'Tom Cappadona': 'Janitor', 'Malcolm Barrett': 'Jock'}\"\r\ntt0467406,\"{'Ellen Page': 'Juno MacGuff', 'Michael Cera': 'Paulie Bleeker', 'Jennifer Garner': 'Vanessa Loring', 'Jason Bateman': 'Mark Loring', 'Allison Janney': 'Bren MacGuff', 'J.K. Simmons': 'Mac MacGuff', 'Olivia Thirlby': 'Leah', 'Eileen Pedde': 'Gerta Rauss', 'Rainn Wilson': 'Rollo', 'Daniel Clark': 'Steve Rendazo', 'Darla Fay': \"\"Bleeker's Mom       (as Darla Vandenbossche)\"\", 'Aman Johal': 'Vijay', 'Valerie Tian': 'Su-Chin', 'Emily Perkins': 'Punk Receptionist', 'Kaaren de Zilva': 'Ultrasound Technician       (as Kaaren De Zilva)'}\"\r\ntt0166396,\"{'Ian Bannen': \"\"Jackie O'Shea\"\", 'David Kelly': \"\"Michael O'Sullivan\"\", 'Fionnula Flanagan': \"\"Annie O'Shea\"\", 'Susan Lynch': \"\"Maggie O'Toole\"\", 'James Nesbitt': 'Pig Finn', 'Paul Vaughan': 'Narrator       (voice)', 'Adrian Robinson': 'Lotto Observer', \"\"Maura O'Malley\"\": 'Mrs. Kennedy', 'Robert Hickey': \"\"Maurice O'Toole\"\", 'Paddy Ward': \"\"Brendy O'Toole\"\", 'James Ryland': 'Dennis Fitzgerald', 'Fintan McKeown': 'Pat Mulligan', 'Eileen Dromey': 'Lizzy Quinn', 'Kitty Fitzgerald': 'Kitty', 'Dermot Kerrigan': 'Father Patrick'}\"\r\ntt0388482,\"{'Jason Statham': 'Frank Martin', 'Alessandro Gassmann': 'Gianni Chellini       (as Alessandro Gassman)', 'Amber Valletta': 'Audrey Billings', 'Kate Nauta': 'Lola', 'Matthew Modine': 'Jefferson Billings', 'Jason Flemyng': 'Dimitri', 'Keith David': 'Stappleton', 'Hunter Clary': 'Jack Billings', 'Shannon Briggs': 'Max', 'François Berléand': 'Inspector Tarconi', 'Raymond Tong': 'Rastaman', 'George Kapetan': 'Dr. Sonovitch', 'Jeff Chase': 'Vasily', 'Gregg Weiner': 'Tipov', 'Gregg Davis': 'Techie at Billings'}\"\r\ntt0139414,\"{'Bill Pullman': 'Jack Wells', 'Bridget Fonda': 'Kelly Scott', 'Oliver Platt': 'Hector Cyr', 'Brendan Gleeson': 'Sheriff Hank Keough', 'Betty White': 'Mrs. Delores Bickerman', 'David Lewis': 'Walt Lawson', 'Tim Dixon': 'Stephen Daniels', 'Natassia Malthe': 'Janine', 'Mariska Hargitay': 'Myra Okubo', 'Meredith Salenger': 'Deputy Sharon Gare', 'Jed Rees': 'Deputy Burke', 'Richard Leacock': 'Deputy Stevens', 'Jake T. Roberts': 'Officer Coulson', 'Warren Takeuchi': 'Paramedic', 'Ty Olsson': 'State Trooper'}\"\r\ntt0112864,\"{'Bruce Willis': 'John McClane', 'Jeremy Irons': 'Simon Gruber', 'Samuel L. Jackson': 'Zeus Carver', 'Graham Greene': 'Joe Lambert', 'Colleen Camp': 'Connie Kowalski', 'Larry Bryggman': 'Insp. Walter Cobb', 'Anthony Peck': 'Ricky Walsh', 'Nick Wyman': 'Mathias Targo', 'Sam Phillips': 'Katya', 'Kevin Chamberlin': 'Charles Weiss', 'Sharon Washington': 'Officer Jane', 'Stephen Pearlman': 'Dr. Fred Schiller', 'Michael Alexander Jackson': 'Dexter', 'Aldis Hodge': 'Raymond', 'Mischa Hausserman': 'Mischa'}\"\r\ntt0333766,\"{'Zach Braff': 'Andrew Largeman', 'Kenneth Graymez': 'Busboy', 'George C. Wolfe': 'Restaurant Manager', 'Austin Lysy': 'Waiter', 'Gary Gilbert': 'Young Hollywood Guy', 'Jill Flint': 'Obnoxious Girl', 'Ian Holm': 'Gideon Largeman', 'Peter Sarsgaard': 'Mark', 'Alex Burns': 'Dave', 'Jackie Hoffman': 'Aunt Sylvia Largeman', 'Michael Weston': 'Kenny', 'Christopher Carley': 'Gleason Party Drunk       (as Chris Carley)', 'Armando Riesco': 'Jesse', 'Amy Ferguson': 'Dana', 'Trisha LaFache': 'Kelly'}\"\r\ntt0094737,\"{'Tom Hanks': 'Josh', 'Elizabeth Perkins': 'Susan', 'Robert Loggia': 'MacMillan', 'John Heard': 'Paul', 'Jared Rushton': 'Billy', 'David Moscow': 'Young Josh', 'Jon Lovitz': 'Scotty Brennen', 'Mercedes Ruehl': 'Mrs. Baskin', 'Josh Clark': 'Mr. Baskin', 'Kimberlee M. Davis': 'Cynthia Benson', 'Oliver Block': 'Freddie Benson', 'Erika Katz': \"\"Cynthia's Friend\"\", 'Allan Wasserman': 'Gym Teacher', 'Mark Ballou': 'Derek', 'Gary Howard Klar': 'Ticket Taker       (as Gary Klar)'}\"\r\ntt0090728,\"{'Kurt Russell': 'Jack Burton', 'Kim Cattrall': 'Gracie Law', 'Dennis Dun': 'Wang Chi', 'James Hong': 'David Lo Pan', 'Victor Wong': 'Egg Shen', 'Kate Burton': 'Margo', 'Donald Li': 'Eddie Lee', 'Carter Wong': 'Thunder', 'Peter Kwong': 'Rain', 'James Pax': 'Lightning', 'Suzee Pai': 'Miao Yin', 'Chao Li Chi': 'Uncle Chu', 'Jeff Imada': 'Needles', 'Rummel Mor': 'Joe Lucky', 'Craig Ng': 'One Ear'}\"\r\ntt0456554,\"{'Linda Cardellini': 'Samantha', 'Allen Covert': 'Alex', 'Peter Dante': 'Dante', 'Shirley Jones': 'Grace', 'Shirley Knight': 'Bea', 'Joel David Moore': 'J.P.', 'Kevin Nealon': 'Mr. Cheezle', 'Doris Roberts': 'Grandma Lilly', 'Nick Swardson': 'Jeff', 'Jonah Hill': 'Barry', 'Kelvin Yu': 'Kane', 'Chuck Church': 'Dan', 'Scott Halberstadt': 'Bobby, Co-Worker #1', 'Heidi Hawking': 'Milk Maid', 'Shana Hiatt': 'Pamela Mills'}\"\r\ntt0159273,\"{'Owen Wilson': 'Burnett', 'Gene Hackman': 'Reigart', 'Gabriel Macht': 'Stackhouse', 'Charles Malik Whitfield': 'Rodway', 'Joaquim de Almeida': 'Piquet       (as Joaquim De Almeida)', 'David Keith': \"\"O'Malley\"\", 'Olek Krupa': 'Lokar', 'Vladimir Mashkov': 'Tracker', 'Marko Igonda': 'Bazda', 'Eyal Podell': 'Petty Officer Kennedy', 'Geoff Pierson': 'Admiral Donnelly', 'Aernout Van Lynden': 'Aernout Van Lynden', 'Sam Jaeger': 'Red Crown Operator #1', 'Shane Johnson': 'Red Crown Operator #2       (as Shane Mikael Johnson)', 'Don Winston': 'Red Crown Operator #3'}\"\r\ntt0115759,\"{'John Travolta': 'Vic Deakins', 'Christian Slater': 'Riley Hale', 'Samantha Mathis': 'Terry Carmichael', 'Delroy Lindo': 'Colonel Max Wilkins', 'Bob Gunton': 'Pritchett', 'Frank Whaley': 'Giles Prentice', 'Howie Long': 'Kelly', 'Vondie Curtis-Hall': 'Lt. Colonel Sam Rhodes', 'Jack Thompson': 'Chairman, Joint Chief of Staff', 'Vyto Ruginis': 'Johnson', 'Ousaun Elam': 'Lt. Thomas', 'Shaun Toub': 'Max', 'Casey Biggs': 'Novacek', 'Jeffrey Stephan': 'Shepherd       (as Jeffrey J. Stephen)', 'Joey Box': 'Frakes'}\"\r\ntt0064115,\"{'Paul Newman': 'Butch Cassidy', 'Robert Redford': 'The Sundance Kid', 'Katharine Ross': 'Etta Place', 'Strother Martin': 'Percy Garris', 'Henry Jones': 'Bike Salesman', 'Jeff Corey': 'Sheriff Bledsoe', 'George Furth': 'Woodcock', 'Cloris Leachman': 'Agnes', 'Ted Cassidy': 'Harvey Logan', 'Kenneth Mars': 'Marshal', 'Donnelly Rhodes': 'Macon', 'Jody Gilbert': 'Large Woman', 'Timothy Scott': 'News Carver', 'Don Keefer': 'Fireman', 'Charles Dierkop': 'Flat Nose Curry'}\"\r\ntt0118617,\"{'Meg Ryan': 'Anastasia       (voice)', 'John Cusack': 'Dimitri       (voice)', 'Kelsey Grammer': 'Vladimir       (voice)', 'Christopher Lloyd': 'Rasputin       (voice)', 'Hank Azaria': 'Bartok       (voice)', 'Bernadette Peters': 'Sophie       (voice)', 'Kirsten Dunst': 'Young Anastasia       (voice)', 'Angela Lansbury': 'The Dowager Empress Marie       (voice)', 'Rick Jones': 'Czar Nicholas /              Servant /              Revolutionary Soldier /              Ticket Agent       (voice)', 'Andrea Martin': 'Phlegmenkoff /              Old Woman       (voice)', 'Glenn Walker Harris Jr.': 'Young Dimitri       (voice)', 'Debra Mooney': 'Actress       (voice)', 'Arthur Malet': 'Travelling Man /              Major Domo       (voice)', 'Charity James': 'Anastasia Impostor       (voice)', 'Liz Callaway': 'Anastasia       (singing voice)'}\"\r\ntt0370263,\"{'Sanaa Lathan': 'Alexa Woods', 'Raoul Bova': 'Sebastian de Rosa', 'Lance Henriksen': 'Charles Bishop Weyland', 'Ewen Bremner': 'Graeme Miller', 'Colin Salmon': 'Maxwell Stafford', 'Tommy Flanagan': 'Mark Verheiden', 'Joseph Rye': 'Joe Connors', 'Agathe de La Boulaye': 'Adele Rousseau', 'Carsten Norgaard': 'Rusten Quinn', 'Sam Troughton': 'Thomas Parks', 'Petr Jákl': 'Stone', 'Pavel Bezdek': 'Bass', 'Kieran Bew': 'Klaus', 'Carsten Voigt': 'Mikkel', 'Jan Filipenský': 'Boris       (as Jan Filipensky)'}\"\r\ntt0078748,\"{'Tom Skerritt': 'Dallas', 'Sigourney Weaver': 'Ripley', 'Veronica Cartwright': 'Lambert', 'Harry Dean Stanton': 'Brett', 'John Hurt': 'Kane', 'Ian Holm': 'Ash', 'Yaphet Kotto': 'Parker', 'Bolaji Badejo': 'Alien', 'Helen Horton': 'Mother       (voice)'}\"\r\ntt0463854,\"{'Robert Carlyle': 'Don', 'Rose Byrne': 'Scarlet', 'Jeremy Renner': 'Doyle', 'Harold Perrineau': 'Flynn', 'Catherine McCormack': 'Alice', 'Idris Elba': 'Stone', 'Imogen Poots': 'Tammy', 'Mackintosh Muggleton': 'Andy', 'Amanda Walker': 'Sally', 'Shahid Ahmed': 'Jacob', 'Garfield Morgan': 'Geoff', 'Emily Beecham': 'Karen', 'Beans El-Balawi': 'Boy in Cottage       (as Beans Balawi)', 'Meghan Popiel': 'DLR Soldier', 'Stewart Alexander': 'Military Officer'}\"\r\ntt0289043,\"{'Alex Palmer': 'Activist', 'Bindu De Stoppani': 'Activist', 'Jukka Hiltunen': 'Activist', 'David Schneider': 'Scientist', 'Cillian Murphy': 'Jim', 'Toby Sedgwick': 'Infected Priest', 'Naomie Harris': 'Selena', 'Noah Huntley': 'Mark', 'Christopher Dunne': \"\"Jim's Father\"\", 'Emma Hitching': \"\"Jim's Mother\"\", 'Alexander Delamere': 'Mr. Bridges', 'Kim McGarrity': \"\"Mr. Bridges' Daughter\"\", 'Brendan Gleeson': 'Frank', 'Megan Burns': 'Hannah', 'Justin Hackney': 'Infected Kid'}\"\r\ntt0086998,\"{'Lucinda Dickey': 'Kelly /              Special K', 'Adolfo Quinones': \"\"Ozone /              Orlando       (as Adolfo 'Shabba-Doo' Quinones)\"\", 'Michael Chambers': \"\"Turbo /              Tony       (as Michael 'Boogaloo Shrimp' Chambers)\"\", 'Ben Lokey': 'Franco', 'Christopher McDonald': 'James', 'Phineas Newborn III': 'Adam', 'Bruno Falcon': \"\"Electro Rock 1       (as Bruno 'Pop N' Taco' Falcon)\"\", 'Timothy Solomon': \"\"Electro Rock 2       (as Timothy 'Poppin' Pete' Solomon)\"\", 'Ana Sánchez': \"\"Electro Rock 3       (as Ana 'Lollipop' Sanchez)\"\", 'Ice-T': 'Rap Talker       (as Ice T)', 'Peter Bromilow': 'Judge', 'Eleanor Zee': 'Judge', 'Scott Cooper': 'Judge', 'Eb Lottimer': \"\"Judge's Assistant\"\", 'Teresa Kelly': 'Vicky       (as T.C. Laughlin)'}\"\r\ntt0095159,\"{'John Cleese': 'Archie Leach', 'Jamie Lee Curtis': 'Wanda Gershwitz', 'Kevin Kline': 'Otto', 'Michael Palin': 'Ken Pile', 'Maria Aitken': 'Wendy', 'Tom Georgeson': 'Georges Thomason', 'Patricia Hayes': 'Mrs. Coady', 'Geoffrey Palmer': 'Judge', 'Cynthia Cleese': 'Portia       (as Cynthia Caylor)', 'Mark Elwes': \"\"Customer in Jeweler's Shop\"\", 'Neville Phillips': \"\"Manager of Jeweler's Shop\"\", 'Peter Jonfield': 'Inspector Marvin', 'Ken Campbell': 'Bartlett', 'Al Ashton': 'Warder', 'Roger Hume': 'Locksmith'}\"\r\ntt0103596,\"{'Victor Wong': 'Grandpa', 'Michael Treanor': 'Rocky', 'Max Elliott Slade': 'Colt', 'Chad Power': 'Tum Tum', 'Rand Kingsley': 'Snyder', 'Alan McRae': 'Sam Douglas', 'Margarita Franco': 'Jessica Douglas', 'Kate Sargeant': 'Emily', 'Joel Swetow': 'Brown', 'Professor Toru Tanaka': 'Rushmore       (as Toru Tanaka)', 'Patrick Labyorteaux': 'Fester', 'Race Nelson': 'Marcus', 'D.J. Harder': 'Hammer', 'Baha Jackson': 'Bully', 'Scott Caudill': 'Bully'}\"\r\ntt0075066,\"{'Peter Sellers': 'Chief Inspector Clouseau', 'Herbert Lom': 'Charles Dreyfus', 'Lesley-Anne Down': 'Olga', 'Burt Kwouk': 'Cato', 'Colin Blakely': 'Drummond', 'Leonard Rossiter': 'Quinlan', 'André Maranne': 'Francois       (as Andre Maranne)', 'Byron Kane': 'Secretary of State', 'Howard K. Smith': 'Himself       (scenes deleted)', 'Dick Crockett': 'The President', 'Richard Vernon': 'Dr. Hugo Fassbender', 'Briony McRoberts': 'Margo Fassbender', 'Dudley Sutton': 'McClaren', 'Murray Kash': 'Dr. Zelmo Flek       (scenes deleted)', 'Hal Galili': 'Danny Salvo'}\"\r\ntt0120841,\"{'Michael Madsen': 'Press', 'Natasha Henstridge': 'Eve', 'Marg Helgenberger': 'Dr. Laura Baker', 'Mykelti Williamson': 'Dennis Gamble', 'George Dzundza': 'Colonel Carter Burgess Jr', 'James Cromwell': 'Senator Judson Ross', 'Justin Lazard': 'Patrick Ross', 'Myriam Cyr': 'Anne Sampas', 'Sarah Wynter': 'Melissa', 'Baxter Harris': 'Dr. Orinsky', 'Scott Morgan': 'Harry Sampas', 'Nancy La Scala': 'Debutante', 'Raquel Gardner': \"\"Debutante's Sister\"\", 'Henderson Forsythe': 'Pentagon Personnel', 'Robert Hogan': 'Pentagon Personnel'}\"\r\ntt0072081,\"{'Peter Sellers': 'Insp. Jacques Clouseau', 'Christopher Plummer': 'Sir Charles Litton', 'Catherine Schell': 'Lady Claudine Litton', 'Herbert Lom': 'Chief Insp. Charles Dreyfus', 'Peter Arne': 'Colonel Sharki', 'Peter Jeffrey': 'General Wadafi', 'Grégoire Aslan': 'Chief of Lugash Police       (as Gregoire Aslan)', 'David Lodge': 'Mac', 'Graham Stark': 'Pepi', 'Eric Pohlmann': 'Fat Man', 'André Maranne': 'Sgt. François Chevalier', 'Burt Kwouk': 'Cato Fong', 'Victor Spinetti': 'Hotel Concierge', 'John Bluthal': 'Blind Beggar', 'Mike Grady': 'Bell Boy'}\"\r\ntt0111282,\"{'Kurt Russell': \"\"Colonel Jonathan 'Jack' O'Neil\"\", 'James Spader': 'Dr. Daniel Jackson', 'Jaye Davidson': 'Ra', 'Viveca Lindfors': 'Catherine Langford', 'Alexis Cruz': 'Skaara', 'Mili Avital': \"\"Sha'uri\"\", 'Leon Rippy': 'General W.O. West', 'John Diehl': 'Lieutenant Kawalsky', 'Carlos Lauchu': 'Anubis', 'Djimon Hounsou': 'Horus       (as Djimon)', 'Erick Avari': 'Kasuf', 'French Stewart': 'Lieutenant Ferretti', 'Gianin Loffler': 'Nabeh', 'Christopher John Fields': 'Freeman', 'Derek Webster': 'Brown'}\"\r\ntt0095444,\"{'Grant Cramer': 'Mike Tobacco', 'Suzanne Snyder': 'Debbie Stone', 'John Allen Nelson': 'Dave Hansen', 'John Vernon': 'Curtis Mooney', 'Michael S. Siegel': 'Rich Terenzi       (as Michael Siegel)', 'Peter Licassi': 'Paul Terenzi', 'Royal Dano': 'Farmer Gene Green', 'Christopher Titus': 'Bob McReed       (as Chris Titus)', 'Irene Michaels': 'Stacy', 'Karla Sue Krull': 'Tracy', 'Aeron Macintyre': 'Punk #1       (as Brian Degan Scott)', 'Danny Kovacs': 'Punk #2', 'Adele Proom': 'Mrs. Franco', 'Howard Malpas': 'Mr. Myers', 'Karen Raff': 'Mom #1'}\"\r\ntt0109831,\"{'Hugh Grant': 'Charles - Wedding One', 'James Fleet': 'Tom - Wedding One', 'Simon Callow': 'Gareth - Wedding One', 'John Hannah': 'Matthew - Wedding One', 'Kristin Scott Thomas': 'Fiona - Wedding One', 'David Bower': 'David - Wedding One', 'Charlotte Coleman': 'Scarlett - Wedding One', 'Andie MacDowell': 'Carrie - Wedding One       (as Andie Macdowell)', 'Timothy Walker': 'Angus the Groom - Wedding One', 'Sara Crowe': 'Laura the Bride - Wedding One', 'Ronald Herdman': 'Vicar - Wedding One', 'Elspet Gray': \"\"Laura's Mother - Wedding One\"\", 'Philip Voss': \"\"Laura's Father - Wedding One\"\", 'Rupert Vansittart': 'George the Boor at The Boatman - Wedding One', 'Nicola Walker': 'Frightful Folk Duo - Wedding One'}\"\r\ntt0093409,\"{'Mel Gibson': 'Martin Riggs', 'Danny Glover': 'Roger Murtaugh', 'Gary Busey': 'Joshua', 'Mitchell Ryan': 'The General', 'Tom Atkins': 'Michael Hunsaker', 'Darlene Love': 'Trish Murtaugh', 'Traci Wolfe': 'Rianne Murtaugh', 'Jackie Swanson': 'Amanda Hunsaker', 'Damon Hines': 'Nick Murtaugh', 'Ebonie Smith': 'Carrie Murtaugh', 'Bill Kalmenson': 'Beat Cop', 'Lycia Naff': 'Dixie', 'Patrick Cameron': 'Cop #1', 'Don Gordon': 'Cop #2', 'Jimmie F. Skaggs': 'Drug Dealer #1'}\"\r\ntt0078872,\"{'Kelly Reno': 'Alec Ramsey', 'Mickey Rooney': 'Henry Dailey', 'Teri Garr': \"\"Alec's Mother\"\", 'Clarence Muse': 'Snoe', 'Hoyt Axton': \"\"Alec's Father\"\", 'Michael Higgins': 'Neville', 'Ed McNamara': 'Jake', 'Larbi Doghmi': 'Arab       (as Dogmi Larbi)', 'John Burton': 'Jockey #1', 'John Buchanan': 'Jockey #2', 'Kristen Vigard': 'Becky', 'Fausto Tozzi': 'Rescue Captain', 'John Karlsen': 'Archeologist       (as John Karlson)', 'Leopoldo Trieste': 'Priest', 'Frank Cousins': 'African Chieftain'}\"\r\ntt0107616,\"{'Richard Briers': 'Leonato', 'Kate Beckinsale': 'Hero', 'Imelda Staunton': 'Margaret', 'Jimmy Yuill': 'Friar Francis', 'Brian Blessed': 'Antonio', 'Andy Hockley': 'George Seacole', 'Chris Barnes': 'Francis Seacole', 'Conrad Nelson': 'Hugh Oatcake', 'Phyllida Law': 'Ursula', 'Emma Thompson': 'Beatrice', 'Alex Lowe': 'Messenger', 'Denzel Washington': 'Don Pedro', 'Keanu Reeves': 'Don John', 'Richard Clifford': 'Conrade', 'Gerard Horan': 'Borachio'}\"\r\ntt0100054,\"{'Balthazar Getty': 'Ralph', 'Chris Furrh': 'Jack Merridew', 'Danuel Pipoly': 'Piggy', 'James Badge Dale': 'Simon       (as Badgett Dale)', 'Andrew Taft': 'The Twins', 'Edward Taft': 'The Twins', 'Gary Rule': 'Roger', 'Terry Wells': 'Andy', 'Braden MacDonald': 'Larry', 'Angus Burgin': 'Greg', 'Martin Zentz': 'Sheraton', 'Brian Jacobs': 'Peter', 'Vincent Amabile': 'Patterson', 'David Weinstein': 'Mikey', 'Chuck Bell': 'Steve'}\"\r\ntt0333780,\"{'Reese Witherspoon': 'Elle Woods', 'Sally Field': 'Congresswoman Rudd', 'Regina King': 'Grace Rossiter', 'Jennifer Coolidge': 'Paulette Parcelle', 'Bruce McGill': 'Stanford Marks', 'Dana Ivey': 'Libby Hauser', 'Mary Lynn Rajskub': 'Reena Giuliani', 'Jessica Cauffiel': 'Margot', 'Alanna Ubach': 'Serena McGuire', 'J Barton': 'Timothy McGinn', 'Stanley Anderson': 'Michael Blaine', 'Bruce Thomas': 'UPS Guy', 'Bob Newhart': 'Sid Post', 'Luke Wilson': 'Emmett Richmond', 'Ruth Williamson': 'Madeline Kroft'}\"\r\ntt0212985,\"{'Anthony Hopkins': 'Hannibal Lecter', 'Julianne Moore': 'Clarice Starling', 'Gary Oldman': 'Mason Verger', 'Ray Liotta': 'Paul Krendler', 'Frankie Faison': 'Nurse Barney       (as Frankie R. Faison)', 'Giancarlo Giannini': 'Insp. Rinaldo Pazzi', 'Francesca Neri': 'Allegra Pazzi', 'Zeljko Ivanek': 'Dr. Cordell Doemling', 'Hazelle Goodman': 'Evelda Drumgo', 'David Andrews': 'FBI Agent Pearsall', 'Francis Guinan': 'FBI Asst. Director Noonan', 'James Opher': 'DEA Agent John Eldridge', 'Enrico Lo Verso': 'Gnocco', 'Ivano Marescotti': 'Carlo', 'Fabrizio Gifuni': 'Matteo'}\"\r\ntt0085862,\"{'Chuck Norris': 'J.J. McQuade', 'David Carradine': 'Rawley Wilkes', 'Barbara Carrera': 'Lola Richardson', 'Leon Isaac Kennedy': 'Jackson', 'Robert Beltran': 'Kayo', 'L.Q. Jones': 'Dakota', 'Dana Kimmell': 'Sally McQuade', 'R.G. Armstrong': 'T. Tyler', 'Jorge Cervera Jr.': 'Jefe', 'Sharon Farrell': 'Molly', 'Daniel Frishman': 'Falcon', 'William Sanderson': 'Snow', 'John Anderson': 'Burnside', 'Robert Arenas': 'Gas Station Attendant', 'Tommy Ballard': 'Colonel'}\"\r\ntt0092675,\"{'Jean-Claude Van Damme': 'Frank Dux       (as Jean Claude Van Damme)', 'Donald Gibb': 'Jackson', 'Leah Ayres': 'Janice', 'Norman Burton': 'Helmer', 'Forest Whitaker': 'Rawlins', 'Roy Chiao': 'Tanaka', 'Philip Chan': 'Captain Chen', 'Pierre Rafini': 'Young Frank', 'Bolo Yeung': 'Chong Li', 'Ken Siu': 'Victor       (as Kenneth Siu)', 'Kimo Lai Kwok Ki': 'Hiro', 'Bernard Mariano': 'Hossein', 'Bill Yuen Ping Kuen': 'Oshima', 'Shun-Yin Leung': 'Mrs. Tanaka', 'Joshua Schroder': 'Chuck /              Older Boy       (as Jousha Schroder)'}\"\r\ntt0103074,\"{'Susan Sarandon': 'Louise', 'Geena Davis': 'Thelma', 'Harvey Keitel': 'Hal', 'Michael Madsen': 'Jimmy', 'Christopher McDonald': 'Darryl', 'Stephen Tobolowsky': 'Max', 'Brad Pitt': 'J.D.', 'Timothy Carhart': 'Harlan', 'Lucinda Jenney': 'Lena, the Waitress', 'Jason Beghe': 'State Trooper', 'Sonny Carl Davis': 'Albert', 'Shelly Desai': 'East Indian Motel Clerk       (as Shelly De Sai)', 'Ken Swofford': 'Major', 'Carol Mansell': 'Waitress', 'Stephen Polk': 'Surveillance Man'}\"\r\ntt0032904,\"{'Cary Grant': 'C. K. Dexter Haven', 'Katharine Hepburn': 'Tracy Lord', 'James Stewart': 'Macaulay Connor', 'Ruth Hussey': 'Elizabeth Imbrie', 'John Howard': 'George Kittredge', 'Roland Young': 'Uncle Willie', 'John Halliday': 'Seth Lord', 'Mary Nash': 'Margaret Lord', 'Virginia Weidler': 'Dinah Lord', 'Henry Daniell': 'Sidney Kidd', 'Lionel Pape': 'Edward', 'Rex Evans': 'Thomas'}\"\r\ntt0379725,\"{'Allie Mickelson': 'Laura Kinney', 'Kelci Stephenson': 'Nancy Clutter', 'Philip Seymour Hoffman': 'Truman Capote', 'Craig Archibald': 'Christopher', 'Bronwen Coleman': 'Barbara', 'Kate Shindle': 'Rose', 'David Wilson Barnes': 'Grayson', 'Michael J. Burg': 'Williams       (as Michael J. Berg)', 'Catherine Keener': 'Nelle Harper Lee', 'Kwesi Ameyaw': 'Porter', 'Andrew Farago': 'Car Rental Agent', 'Ken Krotowich': 'Courthouse Guard', 'Chris Cooper': 'Alvin Dewey', 'R.D. Reid': 'Roy Church', 'Rob McLaughlin': 'Harold Nye       (as Robert McLaughlin)'}\"\r\ntt0080745,\"{'Sam J. Jones': 'Flash Gordon', 'Melody Anderson': 'Dale Arden', 'Max von Sydow': 'The Emperor Ming       (as Max Von Sydow)', 'Topol': 'Dr. Hans Zarkov', 'Ornella Muti': 'Princess Aura', 'Timothy Dalton': 'Prince Barin', 'Brian Blessed': 'Prince Vultan', 'Peter Wyngarde': 'Klytus', 'Mariangela Melato': 'Kala', 'John Osborne': 'Arborian Priest', \"\"Richard O'Brien\"\": 'Fico', 'John Hallam': 'Luro', 'Philip Stone': 'Zogi, the High Priest', 'Suzanne Danielle': 'Serving Girl', 'William Hootkins': 'Munson'}\"\r\ntt0116778,\"{'Woody Harrelson': 'Roy Munson', 'Randy Quaid': 'Ishmael', 'Vanessa Angel': 'Claudia', 'Bill Murray': 'Ernie McCracken', 'Chris Elliott': 'The Gambler', 'William Jordan': 'Mr. Boorg', 'Richard Tyson': \"\"Owner Of Stiffy's\"\", 'Lin Shaye': 'Landlady', 'Zen Gesner': 'Thomas', 'Prudence Wright Holmes': 'Mrs. Boorg', 'Rob Moran': 'Stanley Osmanski', 'Daniel Greene': 'Calvert Munson       (as Danny Green)', 'Will Rothhaar': 'Young Roy', 'Mark Charpentier': '1979 Bowling Buddy', 'Brad Faxon': '1979 Bowling Buddy'}\"\r\ntt0098627,\"{'Andrew McCarthy': 'Larry Wilson', 'Jonathan Silverman': 'Richard Parker', 'Catherine Mary Stewart': 'Gwen Saunders', 'Terry Kiser': 'Bernie Lomax', 'Don Calfa': \"\"Paulie, Vito's Hit Man\"\", 'Catherine Parks': \"\"Tina, Vito's Girl\"\", 'Eloise DeJoria': 'Tawny       (as Eloise Broady)', 'Gregory Salata': \"\"Marty, Vito's Assistant\"\", 'Louis Giambalvo': 'Vito', 'Ted Kotcheff': \"\"Jack Parker, Richard's Dad\"\", 'Margaret Hall': \"\"Lomax's Secretary\"\", 'Tim Perez': 'Central Park Mugger       (as Timothy Perez)', 'Mark Kenneth Smaltz': 'Harris, Security Oficer', 'Anthony Mannino': 'Superintendant', 'Polly Segal': 'Woman in Elevator'}\"\r\ntt0050083,\"{'Martin Balsam': 'Juror 1', 'John Fiedler': 'Juror 2', 'Lee J. Cobb': 'Juror 3', 'E.G. Marshall': 'Juror 4', 'Jack Klugman': 'Juror 5', 'Edward Binns': 'Juror 6', 'Jack Warden': 'Juror 7', 'Henry Fonda': 'Juror 8', 'Joseph Sweeney': 'Juror 9', 'Ed Begley': 'Juror 10', 'George Voskovec': 'Juror 11', 'Robert Webber': 'Juror 12'}\"\r\ntt0245574,\"{'Daniel Giménez Cacho': 'Narrator       (voice)', 'Ana López Mercado': 'Ana Morelos', 'Diego Luna': 'Tenoch Iturbide', 'Gael García Bernal': 'Julio Zapata', 'Nathan Grinberg': 'Manuel Huerta', 'Verónica Langer': 'María Eugenia Calles de Huerta', 'María Aura': 'Cecilia Huerta', 'Giselle Audirac': 'Nicole Bazaine', 'Arturo Ríos': 'Esteban Morelos', 'Andrés Almeida': \"\"Diego 'Saba' Madero\"\", 'Diana Bracho': 'Silvia Allende de Iturbide', 'Emilio Echevarría': 'Miguel Iturbide', 'Marta Aura': \"\"Enriqueta 'Queta' Allende\"\", 'Maribel Verdú': 'Luisa Cortés', 'Juan Carlos Remolina': \"\"Alejandro 'Jano' Montes de Oca\"\"}\"\r\ntt0070849,\"{'Marlon Brando': 'Paul', 'Maria Schneider': 'Jeanne', 'Maria Michi': \"\"Rosa's Mother /              La mère de Rosa\"\", 'Giovanna Galletti': 'Prostitute /              La prostituée', 'Gitt Magrini': \"\"Jeanne's Mother /              La mère de Jeanne\"\", 'Catherine Allégret': 'Catherine       (as Catherine Allegret)', 'Luce Marquand': 'Olympia', 'Marie-Hélène Breillat': 'Monique       (as Marie-Helene Breillat)', 'Catherine Breillat': 'Mouchette', 'Dan Diament': \"\"TV Sound Engineer /              L'ingénieur du son\"\", 'Catherine Sola': 'TV Script Girl /              La script-girl', 'Mauro Marchetti': 'TV Cameraman /              Le cameraman', 'Jean-Pierre Léaud': 'Tom - un cinéaste, le fiancé de Jeanne       (as Jean-Pierre Leaud)', 'Massimo Girotti': 'Marcel', 'Peter Schommer': \"\"TV Assistant Cameraman /              L'assistant-opérateur\"\"}\"\r\ntt0424345,\"{\"\"Brian O'Halloran\"\": 'Dante', 'Jeff Anderson': 'Randal', 'Jason Mewes': 'Jay', 'Kevin Smith': 'Silent Bob', 'Jake Richardson': 'Teen #1', 'Ethan Suplee': 'Teen #2', 'Rachel Larratt': 'Counter Girl with Ear Guy', 'Shannon Larratt': 'Ear Guy', 'Jennifer Schwalbach Smith': 'Emma       (as Jennifer Schwalbach)', 'Ben Affleck': 'Gawking Guy', 'Sarah Ault': 'Catholic Schoolgirl', 'Lalida Sujjavasin': 'Catholic Schoolgirl', 'Trevor Fehrman': 'Elias', 'Gail Stanley': \"\"Elias' Mom\"\", 'Bruce Macintosh': \"\"Elias' Dad\"\"}\"\r\ntt0095560,\"{'Christine Ebersole': 'Janet Cruise', 'Jonathan Ward': 'Michael Cruise', 'Tina Caspary': 'Courtney       (as Katrina Caspary)', 'Lauren Stanley': 'Debbie', 'Jade Calegory': 'Eric Cruise', 'Vinnie Torrente': 'Mitford', 'Martin West': 'Wickett', 'Ivan J. Rado': 'Zimmerman', 'Danny Cooksey': 'Jack Jr', 'Laura Waterbury': 'Linda', 'Jack Eiseman': 'Splatter Car Driver', 'Barbara Allyne Bennet': 'Scientist', 'Richard Bravo': 'Mover #1', 'Gary Brockette': 'Doctor #2', 'Sherri Stone Butler': 'Checkout Girl'}\"\r\ntt0087803,\"{'John Hurt': 'Winston Smith', 'Richard Burton': \"\"O'Brien\"\", 'Suzanna Hamilton': 'Julia', 'Cyril Cusack': 'Charrington', 'Gregor Fisher': 'Parsons', 'James Walker': 'Syme', 'Andrew Wilde': 'Tillotson', 'David Trevena': \"\"Tillotson's Friend\"\", 'David Cann': 'Martin', 'Anthony Benson': 'Jones', 'Peter Frye': 'Rutherford', 'Roger Lloyd Pack': 'Waiter', 'Rupert Baderman': 'Winston Smith as a Boy', 'Corinna Seddon': \"\"Winston's Mother\"\", 'Martha Parsey': \"\"Winston's Sister\"\"}\"\r\ntt0097499,\"{'Derek Jacobi': 'Chorus', 'Kenneth Branagh': 'King Henry V', 'Simon Shepherd': 'Duke Humphrey of Gloucester', 'James Larkin': 'Duke John of Bedford', 'Brian Blessed': 'Duke Thomas Beaufort of Exeter', 'James Simmons': 'Duke Edward of York', 'Paul Gregory': 'Westmoreland', 'Charles Kay': 'Archbishop of Canterbury', 'Alec McCowen': 'Bishop of Ely', 'Fabian Cartwright': 'Earl Richard of Cambridge', 'Stephen Simms': 'Lord Henry Scroop', 'Jay Villiers': 'Sir Thomas Grey', 'Edward Jewesbury': 'Sir Thomas Erpingham', 'Ian Holm': 'Captain Fluellen', 'Danny Webb': 'Gower       (as Daniel Webb)'}\"\r\ntt0090142,\"{'Michael J. Fox': 'Scott Howard', 'James Hampton': 'Harold Howard', 'Susan Ursitti': 'Boof', 'Jerry Levine': 'Stiles', 'Matt Adler': 'Lewis', 'Lorie Griffin': 'Pamela', 'James MacKrell': 'Mr. Thorne       (as Jim MacKrell)', 'Mark Arnold': 'Mick', 'Jay Tarses': 'Coach Finstock', 'Mark Holton': 'Chubby', 'Scott Paulin': 'Kirk Lolley', 'Elizabeth Gorcey': 'Tina', 'Melanie Manos': 'Gina', 'Doug Savant': 'Brad', 'Charles Zucker': 'Malcolm'}\"\r\ntt0040724,\"{'John Wayne': 'Thomas Dunson', 'Montgomery Clift': 'Matt Garth', 'Joanne Dru': 'Tess Millay', 'Walter Brennan': 'Nadine Groot', 'Coleen Gray': 'Fen       (as Colleen Gray)', 'Harry Carey': 'Mr. Melville       (as Harry Carey Sr.)', 'John Ireland': 'Cherry Valance', 'Noah Beery Jr.': 'Buster McGee', 'Harry Carey Jr.': 'Dan Latimer', 'Chief Yowlachie': 'Quo       (as Chief Yowlatchie)', 'Paul Fix': 'Teeler Yacey', 'Hank Worden': 'Simms Reeves', 'Mickey Kuhn': 'Matt - as a Boy', 'Ray Hyke': 'Walt Jergens', 'Hal Taliaferro': 'Old Leather       (as Hal Talliaferro)'}\"\r\ntt0053291,\"{'Marilyn Monroe': 'Sugar Kane Kowalczyk', 'Tony Curtis': 'Joe /              Josephine /              Shell Oil Junior', 'Jack Lemmon': 'Jerry /              Daphne', 'George Raft': 'Spats Colombo', \"\"Pat O'Brien\"\": 'Detective Mulligan', 'Joe E. Brown': 'Osgood Fielding III', 'Nehemiah Persoff': 'Little Bonaparte', 'Joan Shawlee': 'Sweet Sue', 'Billy Gray': 'Sig Poliakoff', 'George E. Stone': 'Toothpick Charlie', 'Dave Barry': 'Beinstock', 'Mike Mazurki': \"\"Spats' Henchman\"\", 'Harry Wilson': \"\"Spats' Henchman\"\", 'Beverly Wills': 'Dolores', 'Barbara Drew': 'Nellie'}\"\r\ntt0114814,\"{'Stephen Baldwin': 'McManus', 'Gabriel Byrne': 'Keaton', 'Benicio Del Toro': 'Fenster', 'Kevin Pollak': 'Hockney', 'Kevin Spacey': 'Verbal', 'Chazz Palminteri': 'Dave Kujan', 'Pete Postlethwaite': 'Kobayashi', 'Suzy Amis': 'Edie Finneran', 'Giancarlo Esposito': 'Jack Baer', 'Dan Hedaya': 'Jeff Rabin', 'Paul Bartel': 'Smuggler', 'Carl Bressler': 'Saul Berg', 'Phillipe Simon': 'Fortier', 'Jack Shearer': 'Renault', 'Christine Estabrook': 'Dr. Plummer'}\"\r\ntt0101587,\"{'Billy Crystal': 'Mitch Robbins', 'Daniel Stern': 'Phil Berquist', 'Bruno Kirby': 'Ed Furillo', 'Patricia Wettig': 'Barbara Robbins', 'Helen Slater': 'Bonnie Rayburn', 'Jack Palance': 'Curly', 'Noble Willingham': 'Clay Stone', 'Tracey Walter': 'Cookie', 'Josh Mostel': 'Barry Shalowitz', 'David Paymer': 'Ira Shalowitz', 'Bill Henderson': 'Ben Jessup', 'Jeffrey Tambor': 'Lou', 'Phill Lewis': 'Steve Jessup', 'Kyle Secor': 'Jeff', 'Dean Hallo': 'T.R.'}\"\r\ntt0100157,\"{'James Caan': 'Paul Sheldon', 'Kathy Bates': 'Annie Wilkes', 'Richard Farnsworth': 'Buster', 'Frances Sternhagen': 'Virginia', 'Lauren Bacall': 'Marcia Sindell', 'Graham Jarvis': 'Libby', 'Jerry Potter': 'Pete', 'Thomas Brunelle': 'Anchorman       (as Tom Brunelle)', 'June Christopher': 'Anchorwoman', 'Julie Payne': 'Reporter #1', 'Archie Hahn': 'Reporter #2       (as Archie Hahn III)', 'Gregory Snegoff': 'Reporter #3', 'Wendy Bowers': 'Waitress', 'Misery the Pig': 'Herself'}\"\r\ntt0299117,\"{'Campbell Scott': 'Roger Swanson', 'Jesse Eisenberg': 'Nick', 'Isabella Rossellini': 'Joyce', 'Elizabeth Berkley': 'Andrea', 'Jennifer Beals': 'Sophie', 'Mina Badie': 'Donna', 'Ben Shenkman': 'Donovan', 'Chris Stack': 'Chris', 'Morena Baccarin': 'Girl in Bar', 'Lisa Emery': 'Woman in Bar', 'Flora Diaz': 'Young Working Girl', 'Stephanie Gatschet': 'Angela - High School Beauty', 'Colin Fickes': 'Angus', 'Tommy Savas': 'Darren', 'Gabriel Millman': 'Felix'}\"\r\ntt0264616,\"{'Bill Paxton': 'Dad Meiks', 'Matthew McConaughey': 'Adam Meiks', 'Powers Boothe': 'FBI Agent Wesley Doyle', \"\"Matt O'Leary\"\": 'Young Fenton', 'Jeremy Sumpter': 'Young Adam', 'Luke Askew': 'Sheriff Smalls', 'Levi Kreis': 'Fenton Meiks', 'Derk Cheetwood': 'Agent Griffin Hull', 'Missy Crider': 'Becky Meiks       (as Melissa Crider)', 'Alan Davidson': 'Brad White', 'Cynthia Ettinger': 'Cynthia Harbridge', 'Vincent Chase': 'Edward March', 'Gwen McGee': 'Operator', 'Edmond Scott Ratliff': 'The Angel', 'Rebecca Tilney': 'Teacher'}\"\r\ntt1046163,\"{'Dane Cook': 'Tank', 'Kate Hudson': 'Alexis', 'Alec Baldwin': 'Professor Turner', 'Jason Biggs': 'Dustin', 'Diora Baird': 'Rachel', 'Lizzy Caplan': 'Ami', 'Riki Lindhome': 'Hilary', 'Mini Anden': 'Lizzy', 'Hilary Pingle': 'Claire', 'Nate Torrence': 'Craig', 'Malcolm Barrett': 'Dwalu', 'Taran Killam': 'Josh', 'Faye Grant': 'Merrilee', 'Richard Snee': 'Brian', 'Amanda Brooks': 'Carly'}\"\r\ntt0151568,\"{'Allan Corduner': 'Arthur Sullivan', 'Dexter Fletcher': 'Louis', 'Sukie Smith': 'Clothilde', 'Roger Heathcott': 'Stage Doorkeeper', 'Wendy Nottingham': 'Helen Lenoir', 'Stefan Bednarczyk': 'Frank Cellier', 'Geoffrey Hutchings': 'Armourer', 'Timothy Spall': 'Richard Temple', 'Francis Lee': 'Butt', 'William Neenan': 'Cook', 'Adam Searle': 'Shrimp', 'Martin Savage': 'George Grossmith', 'Jim Broadbent': 'William Schwenck Gilbert', 'Lesley Manville': 'Lucy Gilbert (Kitty)', 'Kate Doherty': 'Mrs. Judd'}\"\r\ntt0092654,\"{'Dennis Quaid': 'Remy McSwain', 'Ellen Barkin': 'Anne Osborne', 'Ned Beatty': 'Jack Kellom', 'John Goodman': 'Det. Andre DeSoto', 'Lisa Jane Persky': 'McCabe', 'Ebbe Roe Smith': 'Ed Dodge', \"\"Tom O'Brien\"\": 'Bobby McSwain', 'Charles Ludlam': 'Lamar Parmentel', 'Grace Zabriskie': 'Mama', 'Marc Lawrence': \"\"Vinnie 'The Cannon' DiMotti\"\", 'Solomon Burke': 'Daddy Mention', 'Gailard Sartain': 'Chef Paul', 'Jim Chimento': 'Freddie Angelo', \"\"Edward Saint Pe'\"\": 'Patrolman       (as Edward St. Pe)', 'Robert Lesser': \"\"'Silky' Foster\"\"}\"\r\ntt1081935,\"{'Francesco Scianna': 'Peppino Torrenuova', 'Margareth Madè': 'Mannina', 'Lina Sastri': 'Tana /              Beggard', 'Ángela Molina': 'Sarina', 'Nicole Grimaudo': 'Sarina as a young woman', 'Ficarra': 'Nino       (as Salvo Ficarra)', 'Picone': 'Luigi       (as Valentino Picone)', 'Gaetano Aronica': 'Cicco', 'Alfio Sorbello': 'Cicco as a young man', 'Lollo Franco': 'Don Giacinto', 'Giovanni Gambino': 'Peppino as a child', 'Giuseppe Garufì': 'Pietro as a child', 'Aldo Baglio': 'Speculator', 'Raoul Bova': 'Roman journalist', 'Paolo Briguglia': 'Catechist'}\"\r\ntt1403177,\"{'Joseph Gordon-Levitt': 'Hesher', 'Devin Brochu': 'TJ', 'Rainn Wilson': 'Paul', 'Piper Laurie': 'Grandma', 'Natalie Portman': 'Nicole', 'Brendan Hill': 'Dustin', 'John Carroll Lynch': 'Larry', 'Monica Staggs': 'Mom', 'Mary Elizabeth Barrett': 'Meryl', 'Audrey Wasilewski': 'Coleen', 'Lyle Kanouse': 'Jack', 'Frank Collison': 'Funeral Director', 'Van Epperson': 'Angry Driver', 'Helen Slayton-Hughes': 'Mrs. Rosowski', 'Paul Bates': 'Mr. Elsberry'}\"\r\ntt1277737,\"{'Shohreh Aghdashloo': 'Zahra', 'Mozhan Marnò': 'Soraya M.', 'Jim Caviezel': 'Freidoune Sahebjam', 'Navid Negahban': 'Ali', 'Ali Pourtash': 'Mullah', 'David Diaan': 'Ebrahim', 'Parviz Sayyad': 'Hashem', 'Vida Ghahremani': 'Mrs. Massoud', 'Vachik Mangassarian': \"\"Morteza Ramazani - Soraya's Father\"\", 'Bita Sheibani': 'Leila', 'Noor Taher': 'Kataneh       (as Noor Al Taher)', 'Haya Al Taher': 'Malaka', 'Khalid Khan': 'Warden', 'Sheede Dana': 'Second Woman', 'Fay Yan': 'Bita'}\"\r\ntt1213012,\"{'Justin Long': 'Humphrey       (voice)', 'Hayden Panettiere': 'Kate       (voice)', 'Dennis Hopper': 'Tony       (voice)', 'Danny Glover': 'Winston       (voice)', 'Larry Miller': 'Marcel       (voice)', 'Eric Price': 'Paddy /              Mooch       (voice)', 'Vicki Lewis': 'Eve       (voice)', 'Christina Ricci': 'Lilly       (voice)', 'Chris Carmack': 'Garth       (voice)', 'Brian Donovan': 'Salty       (voice)', 'Kevin Sussman': 'Shakey       (voice)', 'Maya Kay': 'Bear Cub       (voice) (as Maya Feltheimer)', 'Christine Lakin': 'Reba       (voice)', 'Marilyn Tokuda': 'Claws /              Janice       (voice)', 'Eric Lopez': 'Can-do       (voice)'}\"\r\ntt0164181,\"{'Zachary David Cope': 'Jake', 'Kevin Bacon': 'Tom', 'Kathryn Erbe': 'Maggie', 'Illeana Douglas': 'Lisa', 'Kevin Dunn': 'Frank', \"\"Conor O'Farrell\"\": 'Harry', 'Lusia Strus': 'Sheila', 'Stephen Eugene Walker': 'Bobby', 'Mary Kay Cook': 'Vanessa', 'Larry Neumann Jr.': 'Lenny', 'Jennifer Morrison': 'Samantha       (as Jenny Morrison)', 'Richard Cotovsky': 'Neighborhood Man', 'Steve Rifkin': 'Kurt', 'Chalon Williams': 'Adam', 'Liza Weil': 'Debbie the Babysitter'}\"\r\ntt0245238,\"{'Piper Perabo': \"\"Pauline 'Paulie' Oster\"\", 'Jessica Paré': \"\"Victoria 'Tori' Moller\"\", 'Mischa Barton': \"\"Mary 'Mouse' Bedford\"\", 'Jackie Burroughs': 'Fay Vaughn', 'Mimi Kuzyk': 'Eleanor Bannet', 'Graham Greene': 'Joe Menzies', 'Emily VanCamp': 'Allison Moller       (as Emily Vancamp)', 'Amy Stewart': 'Cordelia', 'Caroline Dhavernas': 'Kara', 'Luke Kirby': 'Jake Hollander', 'Alan Fawcett': 'Bruce Moller', 'Peter Oldring': 'Phil', 'Grace Lynn Kung': 'Lauren       (as Grace Kung)', 'Stephen Mwinga': 'John', 'Lydia Zadel': 'Monica'}\"\r\ntt0367913,\"{'Noriko Sakai': 'Kyoko Harase', 'Chiharu Niiyama': 'Tomoka Miura', 'Kei Horie': 'Noritaka Yamashita', 'Yui Ichikawa': 'Chiharu', 'Ayumu Saitô': 'Masashi Ishikura', 'Emi Yamamoto': 'Megumi Ôbayashi', 'Erika Kuroishi': 'Hiromi', 'Kaoru Mizuki': 'Aki Harase', 'Shinobu Yûki': 'Kaoru Ishikura', 'Takako Fuji': 'Kayako Saeki', 'Yuya Ozeki': 'Toshio Saeki       (as Yûya Ozeki)', 'Shingo Katsurayama': 'Keisuke Ôkuni', 'Fumika Hidejima': 'DJ', 'Hidetoshi Kageyama': 'Kazumasa Ishikura', 'Hiroko Toda': 'Shojo Yaku no Haiyû'}\"\r\ntt0873886,\"{'Michael Angarano': 'Travis', 'Deborah Aquila': 'Mrs. Vasquez', 'Nicholas Braun': 'Billy-Ray', 'Ronnie Connell': 'Randy', 'Kaylee DeFer': 'Dana', 'Joey Figueroa': 'Route 9 Friend', 'Kyle Gallner': 'Jarod', 'Anna Gunn': \"\"Travis' Mother\"\", 'Matt Jones': 'Deputy Pete', 'John Lacy': \"\"Travis' Father\"\", 'Catherine McCord': 'News Reporter', 'Alexa Nikolas': 'Jesse', 'Stephen Root': 'Sheriff Wynan', 'Cooper Thornton': 'Plastic Wrap Man', 'Betty Aberlin': 'Abigail'}\"\r\ntt0090837,\"{'Kelli Maroney': 'Alison Parks', \"\"Tony O'Dell\"\": 'Ferdy Meisel', 'Russell Todd': 'Rick Stanton', 'Karrie Emerson': 'Linda Stanton', 'Barbara Crampton': 'Suzie Lynn', 'Nick Segal': 'Greg Williams', 'John Terlesky': 'Mike Brennan', 'Suzee Slater': 'Leslie Todd', 'Paul Bartel': 'Paul Bland', 'Mary Woronov': 'Mary Bland', 'Dick Miller': 'Walter Paisley', 'Gerrit Graham': 'Technician Nessler', 'Mel Welles': 'Cook', 'Angela Aames': 'Miss Vanders', 'Paul Coufos': 'Dr. Stan Simon'}\"\r\ntt0098141,\"{'Dolph Lundgren': 'Frank Castle', 'Louis Gossett Jr.': 'Jake Berkowitz', 'Jeroen Krabbé': 'Gianni Franco       (as Jeroen Krabbe)', 'Kim Miyori': 'Lady Tanaka', 'Bryan Marshall': 'Dino Moretti', 'Nancy Everhard': 'Sam Leary', 'Barry Otto': 'Shake', 'Brian Rooney': 'Tommy Franco', 'Zoska Aleece': \"\"Tanaka's Daughter       (as Zoshka Mizak)\"\", 'Kenji Yamaki': 'Sato', 'Hirofumi Kanayama': 'Tomio', 'Larry McCormick': 'TV Newsreader', 'Todd Boyce': 'Tarrone', 'Lani John Tupu': 'Laccone       (as Larney Tupu)', 'Gianfranco Negroponte': 'Musso       (as John Negroponte)'}\"\r\ntt0173716,\"{'Melanie Griffith': 'Honey Whitlock', 'Stephen Dorff': 'Cecil', 'Alicia Witt': 'Cherish', 'Adrian Grenier': 'Lyle', 'Lawrence Gilliard Jr.': 'Lewis       (as Larry Gilliard Jr.)', 'Maggie Gyllenhaal': 'Raven', 'Jack Noseworthy': 'Rodney', 'Mink Stole': 'Mrs. Sylvia Mallory', 'Ricki Lake': 'Libby', 'Patricia Hearst': \"\"Fidget's Mom\"\", 'Michael Shannon': 'Petie       (as Mike Shannon)', 'Kevin Nealon': 'Kevin', 'Eric Barry': 'Fidget       (as Eric M. Barry)', 'Zenzele Uzoma': 'Chardonnay', 'Erika Auchterlonie': 'Pam       (as Erika Lynn Rupli)'}\"\r\ntt0090713,\"{'Robin Williams': 'Jack Dundee', 'Kurt Russell': 'Reno Hightower', 'Pamela Reed': 'Gigi Hightower', 'Holly Palance': 'Elly Dundee', 'Donald Moffat': 'The Colonel', 'Margaret Whitton': 'Darla', 'M. Emmet Walsh': 'Charlie', 'Donovan Scott': 'Eddie', 'R.G. Armstrong': 'Schutte', 'Dub Taylor': 'Mac', 'Carl Ballantine': 'Arturo', 'Kathleen Freeman': 'Rosie', 'Tony Plana': 'Chico', 'Kirk Cameron': 'Teddy', 'Robyn Lively': 'Jaki'}\"\r\ntt0100196,\"{'Patrick Bergin': 'Richard Burton', 'Iain Glen': 'John Hanning Speke', 'Richard E. Grant': 'Oliphant', 'Fiona Shaw': 'Isabel', 'John Savident': 'Lord Murchison', 'James Villiers': 'Lord Oliphant', 'Adrian Rawlins': 'Edward', 'Peter Vaughan': 'Lord Houghton', 'Delroy Lindo': 'Mabruki', 'Bernard Hill': 'Dr. Livingstone', 'Matthew Marsh': 'William', 'Richard Caldicot': 'Lord Russell', 'Christopher Fulford': 'Herne', 'Garry Cooper': 'Stroyan', 'Roshan Seth': 'Ben Amir'}\"\r\ntt0107492,\"{'Michael Riley': 'Clive Walton', 'Stephen Rappaport': 'Marvin Handleman', 'Tamara Mello': 'Dial S Woman', 'Ashlie Rhey': 'Nude Ninja', 'Monique Parent': 'Nude Ninja       (as Monique Paurent)', 'Lisa Comshaw': 'Nude Ninja       (as Lisa Sutton)', 'Jen Sung': 'Wilhelm /              Jimmi Lee', 'Daniel Tisman': 'Chip Greenfield', 'Tino Orsini': 'Walter /              Writer', 'Jason Edwards': 'Peter Carbone /              P.D.       (as Jay Edwards)', 'Peter Macdissi': 'Jordan Sales Rep.', 'Nathalie Canessa-White': 'Girl #1       (as Natalie Lake)', 'Renée Felix': 'Girl #2       (as Renee Felix)', 'Darlene Waye': 'Girl #3', 'Christy Taylor': 'Eve       (as Christy Michelle)'}\"\r\ntt0119576,\"{'Mickey Rourke': 'John Gray', 'Agathe de La Fontaine': 'Claire', 'Angie Everhart': 'Lea Calot', 'Steven Berkoff': 'Vittorio DaSilva', 'Dougray Scott': 'Charlie', 'Werner Schreyer': 'Gilles', 'Faisal Attia': 'Drug Dealer #2', 'Philippe Beglia': 'Hotel Raphael Doorman', 'Christin Amy Artner': 'Kahidijah       (as Christine Brandner)', 'Sandra Cervik': 'Hotel Maid', 'Lana Clarkson': 'Woman at Fashion Show', 'Cyrille Cohen': 'Auctioneer', 'Sophie Dolce': 'Cafe Marly Hostess', 'Carolin Dichtl': 'Dominatrix', 'Andrea Eckert': 'Celeste'}\"\r\ntt0081398,\"{'Robert De Niro': 'Jake La Motta', 'Cathy Moriarty': 'Vickie La Motta', 'Joe Pesci': 'Joey', 'Frank Vincent': 'Salvy', 'Nicholas Colasanto': 'Tommy Como', 'Theresa Saldana': 'Lenore', 'Mario Gallo': 'Mario', 'Frank Adonis': 'Patsy', 'Joseph Bono': 'Guido', 'Frank Topham': 'Toppy', 'Lori Anne Flax': 'Irma', 'Charles Scorsese': 'Charlie - Man with Como', 'Don Dunphy': 'Himself - Radio Announcer for Dauthuille Fight', 'Bill Hanrahan': 'Eddie Eagan', 'Rita Bennett': \"\"Emma - Miss 48's\"\"}\"\r\ntt0125879,\"{'Harvey Keitel': 'Izzy Maurer', 'Richard Edson': 'Dave Reilly', 'Don Byron': 'Tyrone Lord', 'Kevin Corrigan': 'Man With Gun', 'Mira Sorvino': 'Celia Burns', 'Victor Argo': 'Pierre', 'Peggy Gormley': 'Dr. Fisher', 'Harold Perrineau': 'Bobby Perez', 'Gina Gershon': 'Hannah', 'Sophie Auster': 'Sonia Kleinman', 'Vanessa Redgrave': 'Catherine Moore', 'Mandy Patinkin': 'Philip Kleinman', 'Greg Johnson': 'Stanley Mar', 'David Byrne': \"\"'Laughing Man' Escort\"\", 'Holly Buczek': 'Dying Girl'}\"\r\ntt0151582,\"{'Owen Wilson': 'Vann', 'Sheryl Crow': 'Casper', 'Dwight Yoakam': 'Blair', 'Dennis Haysbert': 'Graves', 'Alex Warren': 'State Trooper', 'Mercedes Ruehl': 'Jane', 'Chloe Black': 'Karen - Age 18', 'Brian Cox': 'Doug', 'Eric Mabius': 'Gene', 'Larry Miller': 'Paul', 'Lois Gerace': 'Lois', 'Erik Holland': 'Coach', \"\"Danny 'Big Black' Rey\"\": \"\"Arthur       (as Daniel 'Big Black' Rey)\"\", 'Janeane Garofalo': 'Ferrin', 'Axel Ovregaard': 'Joe La Moine'}\"\r\ntt0217355,\"{'Charlotte Ayanna': 'Jessie', 'Kristin Bauer van Straten': 'Nico       (as Kristin Bauer)', 'W. Earl Brown': 'Bobby', 'Daryl Hannah': 'Angel', 'Chris Hogan': 'Dennis', 'Sheila Kelley': 'Stormy', 'Elias Koteas': 'Sully', 'Vladimir Mashkov': 'Sacha', 'Sandra Oh': 'Jasmine', 'Rodney Rowland': 'Charlie', 'Jennifer Tilly': 'Jo', 'Robert Wisdom': 'Eddie', 'David Amos': 'Dave', 'Carolyne Aycaguer': 'Sophie', 'R.C. Bates': 'Jimmy       (as RC Bates)'}\"\r\ntt0218922,\"{'Antonio Banderas': 'Luis Antonio Vargas', 'Angelina Jolie': 'Julia Russell /              Bonny Castle', 'Thomas Jane': 'Billy /              Walter Downs /              Mephisto', 'Jack Thompson': 'Alan Jordan', 'Gregory Itzin': 'Colonel Worth', 'Allison Mackie': 'Augusta Jordan', 'Joan Pringle': 'Sara', 'Cordelia Richards': 'Emily Russell', 'James Haven': 'Faust - Stage', 'Pedro Armendáriz Jr.': 'Jorge Cortés       (as Pedro Armendáriz)', 'Mario Iván Martínez': 'Cuban Priest', 'Harry Porter': 'Stage Manager', 'Fernando Torre Laphame': 'Wedding Priest       (as Fernando Torre Lapham)', 'Shaula Vega': 'Dressmaker Girl', 'Lisa Owen': 'Margareta - Stage'}\"\r\ntt0239060,\"{'Antonie Kamerling': 'Eric', 'Angela Schijf': 'Reza', 'Beau van Erven Dorens': 'Fraser', 'Florence Kasumba': 'Silke', 'Dorothée Capelluto': 'Nadine       (as Dorothee Capelluto)', 'Anniek Pheifer': 'Liesbeth', 'Leo Hogenboom': 'Father Eric', 'Guusje Westermann': 'Mother Eric       (as Guusje Westerman)', 'Tijn Docter': 'Brother Eric', 'Arjan ten Broecke': 'Tom', 'Cynthia de Graaff': 'Claire', 'Antoinette Jelgersma': 'Mother Reza', 'Titus Muizelaar': 'Father Reza', 'Rinco van der Baan': 'Barkeeper', 'Marieke de Kruijf': 'Patricia'}\"\r\ntt0234354,\"{'Chelcie Ross': 'Mike', 'Steve Martin': 'Frank Sangster', 'Laura Dern': 'Jean Noble', 'Lynne Thigpen': 'Pat', 'Polly Noonan': 'Sally', 'Helena Bonham Carter': 'Susan', 'JoBe Cerny': 'Pharmacist Wayne Ponze', 'Elias Koteas': 'Harlan Sangster', 'Yasen Peyankov': \"\"'Sunshine Lounge' Bartender\"\", 'Scott Caan': 'Duane', 'Teri Cotruzzola': 'Attractive Complaining Patient', 'Lucina Paquet': 'Mrs. Langston', 'Preston Maybank': 'Gelding', 'Sally Kao': 'Chinese Wife', 'Quincy Wong': 'Chinese Husband'}\"\r\ntt0067093,\"{'Topol': 'Tevye', 'Norma Crane': 'Golde', 'Leonard Frey': 'Motel', 'Molly Picon': 'Yente', 'Paul Mann': 'Lazar Wolf', 'Rosalind Harris': 'Tzeitel', 'Michele Marsh': 'Hodel', 'Neva Small': 'Chava', 'Paul Michael Glaser': 'Perchik       (as Michael Glaser)', 'Ray Lovelock': 'Fyedka       (as Raymond Lovelock)', 'Elaine Edwards': 'Shprintze', 'Candy Bonstein': 'Bielke', 'Shimen Ruskin': 'Mordcha', 'Zvee Scooler': 'Rabbi', 'Louis Zorich': 'Constable'}\"\r\ntt0226935,\"{'Bianca Hunter': 'Lorna Doone', 'Kevin Corrigan': 'Crutches', 'Rosario Dawson': 'Audrey', 'Matthew Del Negro': 'Rookie Cop', 'Paz de la Huerta': 'Girl       (as Paz De La Huerta)', 'Guillermo Díaz': 'Kid', \"\"Vincent D'Onofrio\"\": 'Frank', 'Paul D. Failla': 'Cop       (as Paul Failla)', 'Kris Kristofferson': 'Bud', 'Robert Sean Leonard': 'Terry Olsen', 'Duane McLaughlin': 'Wall', 'Natasha Richardson': 'Mary', 'Jimmy Scott': 'Skinny Bones', 'John Seitz': 'Dean', 'Mark Strand': 'Journalist'}\"\r\ntt0250202,\"{'Dan Bucatinsky': 'Eli Wyckoff', 'Richard Ruccolo': 'Tom Vecchione', 'Sasha Alexander': 'Jackie Samantha Gold', 'Adam Goldberg': 'Brett Miles Sanford', 'Andrea Martin': 'Dr. Ellen Wyckoff', 'Joanna Kerns': 'Lydia Vecchione', 'Christina Ricci': 'Rayna Wyckoff', 'Lisa Kudrow': 'Marie', 'Doris Roberts': 'Esther', 'Tony Abatemarco': 'Dr. David Wyckoff', 'Julie Claire': 'Lizz', 'Ben Foreman': 'Young Eli', 'Sydney Foreman': 'Young Rayna', 'Chris Gann': 'Stripper       (as Christian Gann)', 'Blaise Garza': 'Young Tom'}\"\r\ntt0094812,\"{'Kevin Costner': 'Crash Davis', 'Susan Sarandon': 'Annie Savoy', 'Tim Robbins': \"\"Ebby Calvin 'Nuke' LaLoosh\"\", 'Trey Wilson': 'Skip', 'Robert Wuhl': 'Larry', \"\"William O'Leary\"\": 'Jimmy', 'David Neidorf': 'Bobby', 'Danny Gans': 'Deke', 'Tom Silardi': 'Tony', 'Lloyd T. Williams': 'Mickey       (as Lloyd Williams)', 'Rick Marzan': 'Jose', 'George Buck': \"\"Nuke's Father\"\", 'Jenny Robertson': 'Millie', 'Gregory Avellone': 'Doc       (as Greg Avelone)', 'Garland Bunting': \"\"Teddy - Radio Announcer       (as Carey 'Garland' Bunting)\"\"}\"\r\ntt0372334,\"{'Anton Yelchin': 'Tommy', 'Robin Williams': 'Pappass', 'Téa Leoni': 'Mrs. Warshaw', 'Erykah Badu': 'Lady /              Bernadette', 'David Duchovny': 'Tom Warshaw', 'Frank Langella': 'Reverend Duncan', 'Zelda Williams': 'Melissa', 'Magali Amadei': 'Coralie Warshaw', 'Olga Sosnovska': 'Simone', 'Orlando Jones': 'Superfly', 'Bernie Sheredy': 'Sasha       (as Bernard Sheredy)', 'Stephen Spinella': 'Ticket Seller', 'Alice Drummond': 'Mrs. Brevoort', 'Harold Cartier': 'Odell Warshaw', 'Mark Margolis': 'Mr. Pappass'}\"\r\ntt0363473,\"{'Kevin Spacey': 'Bobby Darin', 'Kate Bosworth': 'Sandra Dee', 'John Goodman': 'Steve Blauner', 'Bob Hoskins': 'Charlie Maffia', 'Brenda Blethyn': 'Polly Cassotto', 'Greta Scacchi': 'Mary Duvan', 'Caroline Aaron': 'Nina Cassotto Maffia', 'Peter Cincotti': 'Dick Behrke', 'William Ullrich': 'Little Bobby', 'Michael Byrne': 'Dr. Andretti', 'Matt Rippy': 'David Gershenson', 'Gary Whelan': 'Jules Podell', 'Jake Broder': '1st Assistant Director', 'Tayfun Bademsoy': 'Ahmet Ertegun', 'Tomas Spencer': 'Delivery Guy'}\"\r\ntt0098635,\"{'Billy Crystal': 'Harry Burns', 'Meg Ryan': 'Sally Albright', 'Carrie Fisher': 'Marie', 'Bruno Kirby': 'Jess', 'Steven Ford': 'Joe', 'Lisa Jane Persky': 'Alice', 'Michelle Nicastro': 'Amanda', 'Gretchen Palmer': 'Stewardess', 'Robert Alan Beuth': 'Man on Aisle', 'David Burdick': '9 Year Old Boy', 'Joe Viviani': 'Judge', 'Harley Jane Kozak': 'Helen       (as Harley Kozak)', 'Joseph Hunt': 'Waiter at Wedding', 'Kevin Rooney': 'Ira', 'Franc Luz': 'Julian'}\"\r\ntt0430919,\"{'Stuart Townsend': 'Olly Pickering', 'Raphael Schwartz': 'Olly Aged 2', 'Jacob Collier': 'Olly Aged 10       (as Jacob Moriarty)', 'Callum Williams': 'Murray Aged 10', 'Seth Green': 'Murray', 'Steve John Shepherd': 'James', 'Simon Callow': 'Big-Time Publisher', 'Jodhi May': 'Tania', 'Máté Haumann': 'Work Experience       (as Mate Haumann)', 'Anna Chancellor': 'Dana', 'Burn Gorman': 'Bus Driver', 'Ian Hanmore': 'Drunk', 'Raymond Coulthard': 'Chris', 'Mike Kelly': 'Party Bore', 'Philip Jackson': 'Mr. Barker'}\"\r\ntt0426615,\"{'Usher Raymond': 'Darrell       (as Usher)', 'Chazz Palminteri': 'Frank', 'Emmanuelle Chriqui': 'Dolly', 'Robert Costanzo': 'Fat Tony', 'Robert Davi': 'Fish', 'Matt Gerald': 'Jackie', 'Anthony Fazio': 'Frankie Junior', 'Geoff Stults': 'Chad', 'Chris Tardio': 'Angelo', 'Kevin Hart': 'Busta', 'K.D. Aubert': 'Cherise', 'Isis Faust': 'Lexi', 'Nick Mancuso': 'Salvatore', 'Page Kennedy': 'Twizzie', 'Deezer D': 'Jojo'}\"\r\ntt0090756,\"{'Isabella Rossellini': 'Dorothy Vallens', 'Kyle MacLachlan': 'Jeffrey Beaumont', 'Dennis Hopper': 'Frank Booth', 'Laura Dern': 'Sandy Williams', 'Hope Lange': 'Mrs. Williams', 'Dean Stockwell': 'Ben', 'George Dickerson': 'Detective Williams', 'Priscilla Pointer': 'Mrs. Beaumont', 'Frances Bay': 'Aunt Barbara', 'Jack Harvey': 'Mr. Beaumont', 'Ken Stovitz': 'Mike', 'Brad Dourif': 'Raymond', 'Jack Nance': 'Paul', 'J. Michael Hunter': 'Hunter', 'Dick Green': 'Don Vallens'}\"\r\ntt0357507,\"{'Barry Watson': 'Tim', 'Emily Deschanel': 'Kate Houghton', 'Skye McCole Bartusiak': 'Franny', 'Tory Mussett': 'Jessica', 'Andrew Glover': 'Boogeyman', 'Lucy Lawless': \"\"Tim's Mother\"\", 'Charles Mesure': \"\"Tim's Father\"\", 'Philip Gordon': 'Uncle Mike', 'Aaron Murphy': 'Young Tim', 'Jennifer Rucker': 'Pam', 'Scott Wills': 'Co-Worker', 'Michael Saccente': \"\"Jessica's Dad\"\", 'Louise Wallace': \"\"Jessica's Mom\"\", 'Brenda Simmons': \"\"Jessica's Grandma\"\", 'Josie Tweed': \"\"Jessica's Sister\"\"}\"\r\ntt0397401,\"{'Jason Lee': 'Frank', 'Crispin Glover': 'Eddie', 'Burton Gilliam': 'Big Tex', 'Xander Berkeley': 'Harkness', 'Pruitt Taylor Vince': 'Spider', 'Joseph D. Reitman': 'Tiny       (as Joseph Reitman)', 'Steven Chester Prince': 'Otto', 'Suzanna Urszuly': 'Sky', 'Diane Klimaszewski': 'Brandy', 'Elaine Klimaszewski': 'Amber', 'Lin Shaye': 'Ma Muzzy', 'Melissa Keller': 'Crystal', 'Mathew Greer': 'Randolf', 'Audrey Marie Anderson': 'Natalie', 'Amber Heard': 'Candy'}\"\r\ntt0086979,\"{'John Getz': 'Ray', 'Frances McDormand': 'Abby', 'Dan Hedaya': 'Julian Marty', 'M. Emmet Walsh': 'Private Detective Loren Visser', 'Samm-Art Williams': 'Meurice', 'Deborah Neumann': 'Debra', 'Raquel Gavia': 'Landlady', 'Van Brooks': 'Man from Lubbock', 'Señor Marco': 'Mr. Garcia', 'William Creamer': 'Old Cracker', 'Loren Bivens': 'Strip Bar Exhorter', 'Bob McAdams': 'Strip Bar Senator', 'Shannon Sedwick': 'Stripper', 'Nancy Finger': 'Girl on Overlook', 'William Preston Robertson': 'Radio Evangelist       (voice) (as Rev. William Preston Robertson)'}\"\r\ntt0100507,\"{'Sylvester Stallone': 'Rocky Balboa', 'Talia Shire': 'Adrian', 'Burt Young': 'Paulie', 'Sage Stallone': 'Rocky Balboa Jr.', 'Burgess Meredith': 'Mickey Goldmill', 'Tommy Morrison': \"\"Tommy 'Machine' Gunn\"\", 'Richard Gant': 'George Washington Duke', 'Tony Burton': 'Duke', 'Jimmy Gambina': 'Jimmy       (as James Gambina)', 'Delia Sheppard': 'Karen', 'Mike Sheehan': 'Merlin Sheets       (as Michael Sheehan)', 'Michael Anthony Williams': 'Union Cane       (as Michael Williams)', 'Kevin Connolly': 'Chickie', 'Elisebeth Peters': 'Jewel', 'Hayes Swope': \"\"Chickie's Pal\"\"}\"\r\ntt0089927,\"{'Sylvester Stallone': 'Rocky Balboa', 'Talia Shire': 'Adrian', 'Burt Young': 'Paulie', 'Carl Weathers': 'Apollo Creed', 'Brigitte Nielsen': 'Ludmilla', 'Tony Burton': 'Duke', 'Michael Pataki': 'Nicoli Koloff', 'Dolph Lundgren': 'Ivan Drago', 'Stu Nahan': 'Commentator #1', 'R.J. Adams': 'Sports Announcer', 'Al Bandiero': 'American Commentator #2', 'Dominic Barto': 'Russian Government Official', 'Danial Brown': \"\"Rocky Jr.'s Friend\"\", 'James Brown': 'The Godfather of Soul', 'Rose Mary Campos': 'Maid'}\"\r\ntt0084602,\"{'Sylvester Stallone': 'Rocky Balboa', 'Talia Shire': 'Adrian', 'Burt Young': 'Paulie', 'Carl Weathers': 'Apollo Creed', 'Burgess Meredith': 'Mickey Goldmill', 'Tony Burton': 'Duke', 'Mr. T': 'Clubber Lang', 'Hulk Hogan': 'Thunderlips', 'Ian Fried': 'Rocky Jr.', 'Al Silvani': 'Al', 'Wally Taylor': \"\"Clubber's Manager\"\", 'Jim Hill': 'Sportscaster', 'Don Sherman': 'Andy', 'Dennis James': 'Wrestling Commentator', 'Jim Healy': 'Wrestling Commentator'}\"\r\ntt0079817,\"{'Sylvester Stallone': 'Rocky Balboa', 'Talia Shire': 'Adrian', 'Burt Young': 'Paulie', 'Carl Weathers': 'Apollo Creed', 'Burgess Meredith': 'Mickey', 'Tony Burton': \"\"Apollo's Trainer\"\", 'Joe Spinell': 'Gazzo', 'Leonard Gaines': 'Agent', 'Sylvia Meals': 'Mary Anne Creed', 'Frank McRae': 'Meat Foreman', 'Al Silvani': 'Cutman', 'John Pleshette': 'Director', 'Stu Nahan': 'Announcer', 'Bill Baldwin': 'Commentator', 'Jerry Ziesmer': 'Salesman'}\"\r\ntt0099348,\"{'Kevin Costner': 'Lieutenant Dunbar', 'Mary McDonnell': 'Stands With A Fist', 'Graham Greene': 'Kicking Bird', 'Rodney A. Grant': 'Wind In His Hair', \"\"Floyd 'Red Crow' Westerman\"\": 'Ten Bears       (as Floyd Red Crow Westerman)', 'Tantoo Cardinal': 'Black Shawl', 'Robert Pastorelli': 'Timmons', 'Charles Rocket': 'Lieutenant Elgin', 'Maury Chaykin': 'Major Fambrough', 'Jimmy Herman': 'Stone Calf', 'Nathan Lee Chasing His Horse': 'Smiles A Lot', 'Michael Spears': 'Otter', 'Jason R. Lone Hill': 'Worm', 'Tony Pierce': 'Spivey', 'Doris Leader Charge': 'Pretty Shield'}\"\r\ntt0429573,\"{'Donald Sutherland': 'John Bell', 'Sissy Spacek': 'Lucy Bell', \"\"James D'Arcy\"\": 'Richard Powell', 'Rachel Hurd-Wood': 'Betsy Bell /              Entity Voice', 'Matthew Marsh': 'James Johnston', 'Thom Fell': 'John Bell Jr.', 'Zoe Thorne': 'Theny Thorn       (as Zoë Thorne)', 'Gaye Brown': 'Kathe Batts', 'Sam Alexander': 'Joshua Gardner', 'Miquel Brown': 'Chloe', 'Vernon Dobtcheff': 'Elder #1', 'Shauna Shim': 'Anky', 'Madalina Stan': 'Ethereal Girl', 'Philip Hurd-Wood': 'Partygoer       (as Phillip Hurd-Wood)', 'Vlad Cruceru': 'Richard Bell (aged 6)'}\"\r\ntt0433386,\"{'Sarah Michelle Gellar': 'Karen', 'Amber Tamblyn': 'Aubrey', 'Arielle Kebbel': 'Allison', 'Takako Fuji': 'Kayako', 'Edison Chen': 'Eason', 'Sarah Roemer': 'Lacey', 'Matthew Knight': 'Jake', 'Misako Uno': 'Miyuki', 'Teresa Palmer': 'Vanessa', 'Ohga Tanaka': 'Toshio       (as Oga Tanaka)', 'Yuya Ozeki': 'Toshio       (archive footage)', 'Jennifer Beals': 'Trish', 'Christopher Cousins': 'Bill', 'Zen Kajihara': 'Folklore Guy', 'Takashi Matsuyama': 'Takeo'}\"\r\ntt0114436,\"{'Elizabeth Berkley': 'Nomi Malone', 'Kyle MacLachlan': 'Zack Carey', 'Gina Gershon': 'Cristal Connors', 'Glenn Plummer': 'James Smith', 'Robert Davi': 'Al Torres', 'Alan Rachins': 'Tony Moss', 'Gina Ravera': 'Molly Abrams', 'Lin Tucci': \"\"Henrietta 'Mama' Bazoom\"\", 'Greg Travis': 'Phil Newkirk', 'Al Ruscio': 'Mr. Karlman', 'Patrick Bristow': 'Marty Jacobsen', 'William Shockley': 'Andrew Carver', 'Bobbie Phillips': 'Dee', 'Dewey Weber': 'Jeff', 'Rena Riffel': 'Penny /              Hope'}\"\r\ntt0472160,\"{'Richard E. Grant': 'Franklin Wilhern', \"\"Catherine O'Hara\"\": 'Jessica Wilhern', 'Nick Prideaux': \"\"Penelope's Great-Grandfather       (as Nicholas Prideaux)\"\", 'Michael Feast': 'Jake /              Witch', 'Christina Ricci': 'Penelope Wilhern', 'Ronni Ancona': 'Wanda', 'Simon Woods': 'Edward Vanderman', 'Paul Herbert': 'Leonard Wilhern', 'Simon Chandler': 'Doctor', 'Peter Dinklage': 'Lemon', 'Andi-Marie Townsend': 'Young Penelope', 'John Voce': 'Station Cop', 'Burn Gorman': 'Larry', 'Andrew Bailey': 'Floorman in Card Club', 'James McAvoy': 'Johnny /              Max'}\"\r\ntt0804516,\"{'Wes Bentley': 'Thomas', 'Rachel Nichols': 'Angela', 'Simon Reynolds': 'Jim Harper', 'Philip Akin': 'Karl', 'Stephanie Moore': 'Lorraine       (voice)', 'Miranda Edwards': 'Jody', 'Paul Sun-Hyung Lee': 'Man in Elevator', 'Grace Lynn Kung': 'Woman in Elevator', 'Bathsheba Garnett': 'Homeless Woman', 'Philip Williams': 'Cop #1', 'Arnold Pinnock': 'Cop #2', 'Franck Khalfoun': 'Newsman'}\"\r\ntt0079501,\"{'Mel Gibson': 'Max', 'Joanne Samuel': 'Jessie', 'Hugh Keays-Byrne': 'Toecutter', 'Steve Bisley': 'Jim Goose', 'Tim Burns': 'Johnny the Boy', 'Roger Ward': 'Fifi', 'Lisa Aldenhoven': 'Nurse', 'David Bracks': 'Mudguts', 'Bertrand Cadart': 'Clunk', 'David Cameron': 'Underground Mechanic', 'Robina Chaffey': 'Singer', 'Stephen Clark': 'Sarse', 'Mathew Constantine': 'Toddler', 'Jerry Day': 'Ziggy', 'Reg Evans': 'Station Master'}\"\r\ntt0097659,\"{'Jean-Claude Van Damme': 'Kurt Sloane', 'Dennis Alexio': 'Eric Sloane', 'Dennis Chan': 'Xian Chow', 'Michel Qissi': 'Tong Po', 'Haskell V. Anderson III': 'Winston Taylor', 'Rochelle Ashana': 'Mylee', 'Ka Ting Lee': 'Freddy Li', 'Richard Foo': 'Tao Liu', 'Ricky Liu': 'Big Thai Man', 'Ho-Ying Sin': 'Huge Village Man #1', 'Tony Chan': 'Huge Village Man #2', 'Brad Kerner': 'U.S. Announcer', 'Dean Harrington': 'U.S. Announcer', 'Mark DiSalle': 'U.S. Reporter', 'Richard Santoro': 'U.S. Reporter'}\"\r\ntt0060196,\"{'Eli Wallach': 'Tuco', 'Clint Eastwood': 'Blondie', 'Lee Van Cleef': 'Sentenza /              Angel Eyes', 'Aldo Giuffrè': \"\"Alcoholic Union Captain       (as Aldo Giuffre')\"\", 'Luigi Pistilli': 'Father Pablo Ramirez', 'Rada Rassimov': 'Maria', 'Enzo Petito': 'Storekeeper', 'Claudio Scarchilli': 'Mexican Peon', 'John Bartha': 'Sheriff       (as John Bartho)', 'Livio Lorenzon': 'Baker', 'Antonio Casale': 'Jackson /              Bill Carson', 'Sandro Scarchilli': 'Mexican Peon', 'Benito Stefanelli': \"\"Member of Angel Eyes' Gang\"\", 'Angelo Novi': 'Monk', 'Antonio Casas': 'Stevens'}\"\r\ntt0058461,\"{'Clint Eastwood': 'Joe', 'Marianne Koch': 'Marisol', 'Gian Maria Volontè': 'Ramón Rojo       (as John Wells) (as Johnny Wels)', 'Wolfgang Lukschy': 'John Baxter       (as W. Lukschy)', 'Sieghardt Rupp': 'Esteban Rojo       (as S. Rupp)', 'Joseph Egger': 'Piripero       (as Joe Edger)', 'Antonio Prieto': 'Don Benito Rojo /              Don Miguel Rojo', 'José Calvo': 'Silvanito       (as Jose Calvo)', 'Margarita Lozano': 'Consuelo Baxter       (as Margherita Lozano)', 'Daniel Martín': 'Julián       (as Daniel Martin)', 'Benito Stefanelli': 'Rubio       (as Benny Reeves)', 'Mario Brega': 'Chico       (as Richard Stuyvesant)', 'Bruno Carotenuto': 'Antonio Baxter       (as Carol Brown)', 'Aldo Sambrell': 'Rojo gang member       (as Aldo Sambreli)'}\"\r\ntt0805570,\"{'Bradley Cooper': 'Leon', 'Leslie Bibb': 'Maya', 'Brooke Shields': 'Susan Hoff', 'Vinnie Jones': 'Mahogany', 'Roger Bart': 'Jurgis', 'Tony Curran': 'Driver', 'Barbara Eve Harris': 'Detective Lynn Hadley', 'Peter Jacobson': 'Otto', 'Stephanie Mace': 'Leigh Cooper', 'Ted Raimi': 'Randle Cooper', 'Nori Satô': 'Erika Sakaki       (as NorA)', \"\"Quinton 'Rampage' Jackson\"\": 'Guardian Angel', 'Dan Callahan': 'Troy Taleveski', 'Donnie Smith': 'Station Cop', 'Earl Carroll': 'Jack Franks'}\"\r\ntt0092086,\"{'Steve Martin': 'Lucky Day', 'Chevy Chase': 'Dusty Bottoms', 'Martin Short': 'Ned Nederlander', 'Alfonso Arau': 'El Guapo', 'Tony Plana': 'Jefe', 'Patrice Martinez': 'Carmen', 'Jorge Cervera Jr.': 'Bandito #1       (as Jorge Cervera)', 'Kai Wulff': 'German', 'Abel Franco': 'Papa Sanchez', 'Fred Asparagus': 'Bartender', 'Jon Lovitz': 'Morty', 'Joe Mantegna': 'Harry Flugleman', 'Philip Gordon': 'Rodrigo', 'Michael Wren': 'Cowboy', 'Gene Hartline': 'Silent Movie Bandito'}\"\r\ntt0059578,\"{'Clint Eastwood': 'Monco', 'Lee Van Cleef': 'Col. Douglas Mortimer', 'Gian Maria Volontè': 'El Indio (The Indian)', 'Mario Brega': \"\"Nino, Member of Indio's Gang\"\", 'Luigi Pistilli': \"\"Groggy, Member of Indio's Gang\"\", 'Aldo Sambrell': 'Cuchillio', 'Klaus Kinski': 'Juan Wild - The Hunchback', 'Benito Stefanelli': \"\"Luke 'Hughie'\"\", 'Luis Rodríguez': \"\"Manuel, Member of Indio's Gang       (as Luis Rodriguez)\"\", 'Panos Papadopulos': \"\"Sancho Perez, Member of Indio's Gang       (as Panos Papadopoulos)\"\", 'Mara Krupp': \"\"Mary - Hotel Manager's Beautiful Wife       (as Mara Krup)\"\", 'Roberto Camardiel': 'Tucumcari station clerk       (as Robert Camardiel)', 'Joseph Egger': 'Old Prophet       (as Josef Egger)', 'Tomás Blanco': 'Tucumcari sheriff       (as Tomas Blanco)', 'Lorenzo Robledo': \"\"Tomaso, Indio's Traitor\"\"}\"\r\ntt0094012,\"{'Mel Brooks': 'President Skroob /              Yogurt', 'John Candy': 'Barf', 'Rick Moranis': 'Dark Helmet', 'Bill Pullman': 'Lone Starr', 'Daphne Zuniga': 'Princess Vespa', 'Dick Van Patten': 'King Roland', 'George Wyner': 'Colonel Sandurz', 'Michael Winslow': 'Radar Technician', 'Joan Rivers': 'Dot Matrix       (voice)', 'Lorene Yarnell Jansson': 'Dot Matrix       (as Lorene Yarnell)', 'John Hurt': 'John Hurt', 'Sal Viscuso': 'Radio Operator', 'Ronny Graham': 'Minister', 'Jim J. Bullock': 'Prince Valium       (as JM J. Bullock)', 'Leslie Bevis': 'Commanderette Zircon'}\"\r\ntt0299981,\"{'Adrian Paul': 'Duncan MacLeod', 'Thekla Reuten': 'Anna Teshemka', 'Cristian Solimeno': 'The Guardian', 'Peter Wingfield': 'Methos', 'Jim Byrnes': 'Joe Dawson', 'Stephen Rahman Hughes': 'Zai Jie', 'Stephen Wight': 'Reggie Weller', 'Thom Fell': 'Cardinal Giovanni', 'Patrice Naiambana': 'The Elder', 'Sakalas Uzdavinys': 'Security Guard', 'Laurynas Jurgelis': 'Boy in Stadium', 'Geoffrey T. Bersey': 'Brother Radu       (as Geofry Bersey)', 'Antanas Surgailis': 'Monk 1', 'Leonas Ciunis': 'Monk 2', 'Rolandas Boravskis': 'Jurgis'}\"\r\ntt0887912,\"{'Jeremy Renner': 'Staff Sergeant William James', 'Anthony Mackie': 'Sergeant JT Sanborn', 'Brian Geraghty': 'Specialist Owen Eldridge', 'Guy Pearce': 'Sergeant Matt Thompson', 'Ralph Fiennes': 'Contractor Team Leader', 'David Morse': 'Colonel Reed', 'Evangeline Lilly': 'Connie James', 'Christian Camargo': 'Colonel John Cambridge', 'Suhail Dabbach': 'Black Suit Man       (as Suhail Al-Dabbach)', 'Christopher Sayegh': 'Beckham', 'Nabil Koni': 'Professor Nabil', 'Sam Spruell': 'Contractor Charlie', 'Sam Redford': 'Contractor Jimmy', 'Feisal Sadoun': 'Contractor Feisal', 'Barrie Rice': 'Contractor Chris'}\"\r\ntt1023111,\"{'Sean Faris': 'Jake Tyler', 'Amber Heard': 'Baja Miller', 'Cam Gigandet': 'Ryan McCarthy', 'Evan Peters': 'Max Cooperman', 'Leslie Hope': 'Margot Tyler', 'Djimon Hounsou': 'Jean Roqua', 'Wyatt Smith': 'Charlie Tyler', 'Affion Crockett': 'Beatdown DJ', 'Neil Brown Jr.': 'Aaron', 'Lauren Leech': 'Jenny', 'Tilky Jones': 'Eric', 'Steven Crowley': 'Ben', 'Tom Nowicki': 'Mr. Lloyd', 'Chele André': \"\"Max's Girl\"\", 'Chris Lindsay': 'Beat Down Referee'}\"\r\ntt0430912,\"{'Stan Collymore': 'Kevin Franks', 'Sharon Stone': 'Catherine Tramell', 'Neil Maskell': 'Detective Ferguson', 'David Thewlis': 'Roy Washburn', 'Jan Chappell': 'Solicitor', 'David Morrissey': 'Michael Glass', 'Terence Harvey': 'Henry Rose', 'Hugh Dancy': 'Adam Towers', 'Ellen Thomas': 'Prosecutor', 'Mark Sangster': 'Court Reporter One', 'Tim Berrington': 'Court Reporter Two', 'Indira Varma': 'Denise Glass', 'Charlotte Rampling': 'Milena Gardosh', 'Heathcote Williams': 'Jakob Gerst', 'Flora Montgomery': 'Michelle Broadwin'}\"\r\ntt0486321,\"{'Christopher Lloyd': 'Amos       (voice)', 'Kelly Ripa': \"\"Nat's Mom       (voice)\"\", 'Nicollette Sheridan': 'Nadia       (voice)', 'Tim Curry': 'Yegor       (voice)', 'Trevor Gagnon': 'Nat       (voice)', 'Philip Bolden': 'I.Q.       (voice)', 'David Gore': 'Scooter       (voice)', 'Ed Begley Jr.': 'Poopchev       (voice)', 'Adrienne Barbeau': \"\"Scooter's Mom       (voice)\"\", 'Robert Patrick': 'Louie       (voice)', 'Buzz Aldrin': 'Himself', 'Sandy Simpson': 'Commander Armstrong       (voice)', 'Eddie Frierson': 'Commander Aldrin       (voice)', 'David Cowgill': 'Commander Collins       (voice)', 'Steve Kramer': 'Leonid       (voice)'}\"\r\ntt1124048,\"{'America Olivo': 'Sophia', 'Paulie Rojas Redding': 'Amber       (as Paulie Rojas)', 'Marissa Tait': 'Kathleen', 'Sita Young': 'Beth', 'Arianne Zucker': 'Jessica       (as Arianne Zuker)', 'Nick Ballard': 'Rob', 'Jeremy Glazer': 'Jeremy', 'Jamil Mena': 'Benito', 'Sandro Del Casale': 'Hector', 'Ian Patrick Williams': 'The Founder', 'Roman Salcedo': 'Mexican', 'Jo Jordan': 'Old Woman', 'Christian Boeving': 'Big Daddy', 'Dereck Rizk': 'Bartender', 'David Villa': 'Leader'}\"\r\ntt1053859,\"{'Matthew Knight': 'Jake', 'Shawnee Smith': 'Sullivan', 'Mike Straub': 'Orderly', 'Aiko Horiuchi': 'Kayako', 'Shimba Tsuchiya': 'Toshio', 'Emi Ikehata': 'Naoko', 'Takatsuna Mukai': 'Daisuke       (as Takatsuma Mukai)', 'Johanna Braddy': 'Lisa', 'Beau Mirchoff': 'Andy', 'Jadie Rose Hobson': 'Rose       (as Jadie Hobson)', 'Marina Sirtis': 'Gretchen', 'Gil McKinney': 'Max', 'Laura Giosh': 'Renee', 'Mihaela Nankova': 'Brenda', 'Michael McCoy': 'Praski'}\"\r\ntt0093870,\"{'Peter Weller': 'Murphy /              RoboCop', 'Nancy Allen': 'Lewis', \"\"Dan O'Herlihy\"\": \"\"The Old Man       (as Daniel O'Herlihy)\"\", 'Ronny Cox': 'Jones', 'Kurtwood Smith': 'Clarence', 'Miguel Ferrer': 'Morton', 'Robert DoQui': 'Sgt. Reed', 'Ray Wise': 'Leon', 'Felton Perry': 'Johnson', 'Paul McCrane': 'Emil', 'Jesse D. Goins': 'Joe       (as Jesse Goins)', 'Del Zamora': 'Kaplan', 'Calvin Jung': 'Minh', 'Rick Lieberman': 'Walker', 'Lee de Broux': 'Sal       (as Lee DeBroux)'}\"\r\ntt0465580,\"{'Colin Ford': 'Young Nick', 'Joel Gretsch': \"\"Nick's Father\"\", 'Djimon Hounsou': 'Henry Carver', 'Dakota Fanning': 'Cassie Holmes', 'Robert Tsonos': 'Division Doctor', 'Brandon Rhea': 'Division Doctor', 'Camilla Belle': 'Kira Hudson', 'Neil Jackson': 'Victor Budarin', 'Chris Evans': 'Nick Gant', 'Kai Cheung Leung': 'Dice Man', 'Hsin Nan Hung': \"\"Dice Man's Heavy       (as Sun Nan Hung)\"\", 'Corey Stoll': 'Agent Mack', 'Scott Michael Campbell': 'Agent Holden', 'Wai-Man Tam': 'Cook in Fish Market', 'Hal Yamanouchi': 'Pop Father       (as Haruihko Yamanouchi)'}\"\r\ntt0093779,\"{'Cary Elwes': 'Westley', 'Mandy Patinkin': 'Inigo Montoya', 'Chris Sarandon': 'Prince Humperdinck', 'Christopher Guest': 'Count Rugen', 'Wallace Shawn': 'Vizzini', 'André the Giant': 'Fezzik       (as Andre the Giant)', 'Fred Savage': 'The Grandson', 'Robin Wright': 'The Princess Bride', 'Peter Falk': 'The Grandfather', 'Peter Cook': 'The Impressive Clergyman', 'Mel Smith': 'The Albino', 'Carol Kane': 'Valerie', 'Billy Crystal': 'Miracle Max', 'Anne Dyson': 'The Queen', 'Margery Mason': 'The Ancient Booer'}\"\r\ntt1232783,\"{'Teri Andrez': 'Bra-Clad Sister       (as Teri Andrzejewski)', 'Adam Barrie': 'Danny       (as Adam Berry)', 'Megan Wolfley': 'Trampoline Sister       (as Megan Elizabeth Wolfley)', 'Robert Belushi': 'Amazed Senior Guy       (as Rob Belushi)', 'Marie Blanchard': 'Over-It Sister', 'Briana Evigan': 'Cassidy', 'Zack Garrett': 'Thwarted Guy       (as Zachary Garrett)', 'Margo Harshman': 'Chugs', 'Rumer Willis': 'Ellie', 'Jamie Chung': 'Claire', 'Leah Pipes': 'Jessica', 'Audrina Patridge': 'Megan', \"\"Matt O'Leary\"\": 'Garret', 'Julian Morris': 'Andy', 'Debra Gordon': 'Mrs. Tappan'}\"\r\ntt2091473,\"{'Matt Damon': 'Steve Butler', 'Benjamin Sheeler': 'Attendant', 'Terry Kinney': 'David Churchill', 'Carla Bianco': 'Waitress', 'Joe Coyle': 'Michael Downey', 'Hal Holbrook': 'Frank Yates', 'Dorothy Silver': 'Arlene', 'Frances McDormand': 'Sue Thomason', 'Titus Welliver': 'Rob', 'Lexi Cowan': \"\"Drew's Girl\"\", 'Tim Guinee': 'Drew Scott', 'Sara Lindsey': 'Claire Allen', 'Frank Conforti': 'Coach', 'Garrett Ashbaugh': 'Basketball Player', 'Jericho Morgan': 'Jericho       (as Jerico Morgan)'}\"\r\ntt0100502,\"{'John Glover': 'Magnavolt Salesman', 'Mario Machado': 'Casey Wong', 'Leeza Gibbons': 'Jess Perkins', 'John Ingle': 'Surgeon General', 'Tom Noonan': 'Cain', 'Roger Aaron Brown': 'Whittaker', 'Mark Rolston': 'Stef', 'Lila Finn': 'Homeless Woman', 'John Hateley': 'Purse Snatcher', 'Gage Tarrant': 'Hooker', 'Thomas Rosales Jr.': 'Chet       (as Tommy Rosales)', 'Brandon Smith': 'Flint', 'Wallace Merck': 'Gun Shop Owner', 'Peter Weller': 'Robocop', 'Michael Medeiros': 'Catzo'}\"\r\ntt1477855,\"{'Bill Murray': 'FDR', 'Laura Linney': 'Daisy', 'Samuel West': 'Bertie', 'Olivia Colman': 'Elizabeth', 'Elizabeth Marvel': 'Missy', 'Olivia Williams': 'Eleanor', 'Elizabeth Wilson': 'Mrs. Roosevelt', 'Martin McDougall': 'Tommy', 'Andrew Havill': 'Cameron', 'Eleanor Bron': \"\"Daisy's Aunt\"\", 'Nancy Baldwin': 'Mrs. Astor', 'Tim Beckmann': \"\"President's Aide #1\"\", 'Guy Paul': \"\"President's Aide #2\"\", 'Eben Young': \"\"President's Aide #3\"\", 'Samantha Dakin': 'Mary the Maid'}\"\r\ntt1814621,\"{'Tina Fey': 'Portia Nathan', 'Ann Harada': 'Mrs. Lafont', 'Ben Levin': 'Junior Lafont', 'Dan Levy': 'James       (as Daniel Joseph Levy)', 'Maggie Keenan-Bolger': 'Girl on Tour', 'Gloria Reuben': 'Corinne', 'Paul Rudd': 'John Pressman', 'Wallace Shawn': 'Clarence', 'Elaine Kussack': 'Abby', 'Christopher Evan Welch': 'Brandt', 'Michael Genadry': 'Ben', 'Juliet Brett': 'Praying Applicant', 'John Brodsky': 'Smug Kid', 'Camille Branton': 'Gymnast', 'Sarita Choudhury': 'Rachael'}\"\r\ntt0082846,\"{'Katharine Hepburn': 'Ethel Thayer', 'Henry Fonda': 'Norman Thayer Jr.', 'Jane Fonda': 'Chelsea Thayer Wayne', 'Doug McKeon': 'Billy Ray', 'Dabney Coleman': 'Bill Ray', 'William Lanteau': 'Charlie Martin', 'Christopher Rydell': 'Sumner Todd       (as Chris Rydell)'}\"\r\ntt1272878,\"{'Denzel Washington': 'Bobby', 'Mark Wahlberg': 'Stig', 'Paula Patton': 'Deb', 'Edward James Olmos': 'Papi Greco', 'Bill Paxton': 'Earl', 'Robert John Burke': 'Jessup', 'James Marsden': 'Quince', 'Greg Sproles': 'Chief Lucas', 'Fred Ward': 'Admiral Tuwey', 'Patrick Fischler': 'Dr. Ken', 'Derek Solorsano': 'Ferret Nose Julio', 'Edgar Arreola': \"\"Rudy (Papi's Men)\"\", 'Kyle Clements': 'Teemo       (as Kyle Russell Clements)', 'Christopher Matthew Cook': 'Thick       (as Matthew Cook)', 'Tim Bell': 'Lean       (as Timothy Bell)'}\"\r\ntt1231587,\"{'John Cusack': 'Adam', 'Clark Duke': 'Jacob', 'Craig Robinson': 'Nick', 'Rob Corddry': 'Lou', 'Sebastian Stan': 'Blaine', 'Lyndsy Fonseca': 'Jenny', 'Crispin Glover': 'Phil', 'Chevy Chase': 'Repairman', 'Charlie McDermott': 'Chaz', 'Lizzy Caplan': 'April', 'Collette Wolfe': 'Kelly', 'Aliu Oyofo': 'Young Nick', 'Jake Rose': 'Young Adam', 'Brook Bennett': 'Young Lou', 'Yan-Kay Crystal Lowe': 'Zoe       (as Crystal Lowe)'}\"\r\ntt2083355,\"{'Monica Calhoun': 'Mia', 'Morris Chestnut': 'Lance', 'Melissa De Sousa': 'Shelby', 'Taye Diggs': 'Harper', 'Regina Hall': 'Candace', 'Terrence Howard': 'Quentin', 'Sanaa Lathan': 'Robyn', 'Nia Long': 'Jordan', 'Harold Perrineau': 'Julian', 'Eddie Cibrian': 'Brian', 'Riele Downs': 'Faith', 'Richie Lawrence': 'August', 'Millie Davis': 'Hope', 'Linden Liles-McCurdy': 'L.J.', 'Isis Moore': 'Kennedy'}\"\r\ntt1103275,\"{'Joaquin Phoenix': 'Leonard Kraditor', 'Anne Joyce': \"\"Leonard's Ex-Fiancée\"\", 'Elliot Villar': 'Bystander', 'Craig Walker': 'Bystander #2', 'Carmen M. Herlihy': 'Lady with Baby Carriage', 'Donald John Hewitt': 'Another Bystander       (as Don Hewitt Jr.)', 'Christian Albrizo': 'Some Kid', 'Isabella Rossellini': 'Ruth Kraditor', 'Moni Moshonov': 'Reuben Kraditor', 'Julie Budd': 'Carol Cohen', 'Bob Ari': 'Michael Cohen', 'Iain J. Bopp': 'David Cohen', 'Vinessa Shaw': 'Sandra Cohen', 'Gwyneth Paltrow': 'Michelle Rausch', 'Samantha Ivers': 'Stephanie'}\"\r\ntt1172994,\"{'Jocelin Donahue': 'Samantha', 'Tom Noonan': 'Mr. Ulman', 'Mary Woronov': 'Mrs. Ulman', 'Greta Gerwig': 'Megan', 'AJ Bowen': 'Victor Ulman', 'Dee Wallace': 'Landlady', 'Heather Robb': 'Roommate', 'Darryl Nau': 'Random Guy', 'Brenda Cooney': 'Nurse', 'Danielle Noe': 'Mother', 'Mary B. McCann': 'Elaine Cross       (as Mary McCann)', 'John Speredakos': 'Ted Stephen', 'Lena Dunham': '911 Operator       (voice)', 'Graham Reznick': 'Local DJ       (voice)', 'Ti West': 'Favorite Teacher'}\"\r\ntt1612774,\"{'Stephen Spinella': 'Lieutenant Chad', 'Jack Plotnick': 'Accountant', 'Wings Hauser': 'Man in Wheelchair', 'Roxane Mesquida': 'Sheila', 'Ethan Cohn': 'Film Buff Ethan', 'Charley Koontz': 'Film Buff Charley', 'Daniel Quinn': 'Dad', 'Devin Brochu': 'Son', 'Hayley Holmes': 'Teenager Cindy', 'Haley Ramm': 'Teenager Fiona', 'Cecelia Antoinette': 'Black Woman       (as Cecilia Antoinette)', 'David Bowe': 'Mr. Hughes', 'Remy Thorne': 'Zach       (as Remi Thorne)', \"\"Tara Jean O'Brien\"\": \"\"Cleaning Lady       (as Tara O'Brien)\"\", 'Thomas F. Duffy': 'Cop Xavier'}\"\r\ntt1640459,\"{'Rutger Hauer': 'Hobo', 'Pasha Ebrahimi': 'Bumfight Filmmaker', 'Robb Wells': 'Logan       (as Rob Wells)', 'Brian Downey': 'Drake', 'Gregory Smith': 'Slick', 'Nick Bateman': 'Ivan /              Rip', \"\"Drew O'Hara\"\": 'Otis', 'Molly Dunsworth': 'Abby', 'Jeremy Akerman': 'Chief of Police', 'Andre Haines': 'Large Man', 'Agnes M. Laan': 'Prostitute       (as Agnes Laan)', 'Duane Patterson': 'Pimp', 'Brian Jamieson': 'Santa', 'Tim Dunn': 'Store Clerk', 'Glen Matthews': 'Gang Leader'}\"\r\ntt0074285,\"{'Sissy Spacek': 'Carrie', 'Piper Laurie': 'Margaret White', 'Amy Irving': 'Sue Snell', 'William Katt': 'Tommy Ross', 'John Travolta': 'Billy Nolan', 'Nancy Allen': 'Chris Hargensen', 'Betty Buckley': 'Miss Collins', 'P.J. Soles': 'Norma', 'Priscilla Pointer': 'Mrs. Snell', 'Sydney Lassick': 'Mr. Fromm', 'Stefan Gierasch': 'Mr. Morton', 'Michael Talbott': 'Freddy', 'Doug Cox': 'The Beak', 'Harry Gold': 'George', 'Noelle North': 'Frieda'}\"\r\ntt1912398,\"{'Joel Murray': 'Frank', 'Tara Lynne Barr': 'Roxy', 'Melinda Page Hamilton': 'Alison', 'Mackenzie Brooke Smith': 'Ava', 'Rich McDonald': 'Brad', 'Maddie Hasson': 'Chloe', 'Larry Miller': \"\"Chloe's Dad\"\", 'Dorie Barton': \"\"Chloe's Mom\"\", 'Travis Wester': 'Ed', 'Lauren Benz Phillips': 'Donna       (as Lauren Phillips)', 'Guerrin Gardner': 'Tampon-Throwing Tuff Gurl', 'Kellie Ramdhanie': 'Melissa Tuff Gurl       (as Kellie Marie Ramdhanie)', 'Aris Alvarado': 'Steven Clark', 'Romeo Brown': 'John Tyler', 'Sandra Vergara': 'American Superstarz Judge'}\"\r\ntt1172570,\"{'Tom Hardy': 'Charles Bronson /              Michael Peterson', 'Kelly Adams': 'Irene', 'Luing Andrews': 'Hysterical Screw', 'Katy Barker': 'Julie', 'Gordon Brown': 'Screw', 'Amanda Burton': \"\"Charlie's Mum\"\", 'Mark Devenport': 'Nurse 1       (as Mark Davenport)', 'Paul Donnelly': 'Screw', 'Andrew Forbes': \"\"Charlie's Dad\"\", 'Jon House': 'Webber', 'Matt King': 'Paul Daniels', 'James Lance': 'Phil', 'Holly Lucas': 'Young Man', 'Juliet Oldfield': 'Alison', 'Jonny Phillips': 'Prison Governor'}\"\r\ntt1175709,\"{'Ryan Gosling': 'David Marks', 'Kirsten Dunst': 'Katie Marks', 'Frank Langella': 'Sanford Marks', 'Lily Rabe': 'Deborah Lehrman', 'Philip Baker Hall': 'Malvern Bump', 'Michael Esper': 'Daniel Marks', 'Diane Venora': 'Janice Rizzo', 'Nick Offerman': 'Jim McCarthy', 'Kristen Wiig': 'Lauren Fleck', 'Stephen Kunken': 'Todd Fleck', 'John Cullum': 'Richard Panatierre', 'Maggie Kiley': 'Mary McCarthy', 'Liz Stauber': 'Sharon McCarthy', 'Marion McCorry': 'Ann McCarthy', 'Mia Dillon': \"\"Katie's Aunt\"\"}\"\r\ntt0365485,\"{'Pierce Brosnan': 'Julian Noble', 'Arlin Miller': 'Radio DJ       (voice)', 'Azucena Medina': 'Young Denver Fling', 'Jonah Meyerson': 'Ten Year Old Boy', 'Wiveca Bonerais': \"\"Ten Year Old Boy's Mother\"\", 'Greg Kinnear': 'Danny Wright', 'Hope Davis': \"\"Carolyn 'Bean' Wright\"\", 'Adam Scott': 'Phil Garrison', 'Portia Dawson': 'Genevive', 'Roberto Sosa': 'Skinny Mexican Man', 'Antonio Zavala Kugler': 'Hotel Bartender 1', 'Ramon Alvarez': 'Shooting Stand Owner', 'Luz Maria Molina': 'School Girl', 'Philip Baker Hall': 'Mr. Randy', 'Carolyn Horwitz': 'Cantina Turista #1'}\"\r\ntt0790736,\"{'Jeff Bridges': 'Roy', 'Ryan Reynolds': 'Nick', 'Kevin Bacon': 'Hayes', 'Mary-Louise Parker': 'Proctor', 'Stephanie Szostak': 'Julia', 'James Hong': \"\"Nick's Avatar\"\", 'Marisa Miller': \"\"Roy's Avatar\"\", 'Robert Knepper': 'Stanley Nawicki', \"\"Mike O'Malley\"\": 'Elliot', 'Devin Ratray': 'Pulaski', 'Larry Joe Campbell': 'Officer Murphy', 'Michael Coons': 'Detective in Locker Room', 'Chris Everett': 'R.I.P.D. Evidence Clerk       (as Christina Everett)', 'Michael Tow': 'R.I.P.D. Evidence Clerk', 'Lonnie Farmer': \"\"Proctor's Avatar\"\"}\"\r\ntt0443536,\"{'Anne Hathaway': 'Red Puckett       (voice)', 'Glenn Close': 'Granny       (voice)', 'Jim Belushi': 'Kirk the Woodsman       (voice)', 'Patrick Warburton': 'Wolf W. Wolf       (voice)', 'Anthony Anderson': 'Detective Bill Stork       (voice)', 'David Ogden Stiers': 'Nicky Flippers       (voice)', 'Xzibit': 'Chief Grizzly       (voice)', 'Chazz Palminteri': 'Woolworth       (voice)', 'Andy Dick': 'Boingo       (voice)', 'Cory Edwards': 'Twitchy       (voice)', 'Benjy Gaither': 'Japeth the Goat       (voice)', 'Ken Marino': 'Raccoon Jerry       (voice)', 'Tom Kenny': 'Tommy       (voice)', 'Preston Stutzman': 'Timmy       (voice)', 'Tony Leech': 'Glen       (voice)'}\"\r\ntt0426459,\"{'Duane Whitaker': 'Boss Man', 'Balthazar Getty': 'Bozo', 'Chauntae Davies': 'Drunk Girl       (as Chauntae Davis)', 'Hannah Bernall': 'Finger Girl       (as Hannah Schick)', 'Diane Ayala Goldner': 'Harley Mom       (as Diane Goldner)', 'Josh Zuckerman': 'Hot Wheels', 'Henry Rollins': 'Coach', 'Eileen Ryan': 'Grandma', 'Jason Mewes': 'Edgy Cat', 'Judah Friedlander': 'Beer Guy', 'Clu Gulager': 'Bartender', 'Krista Allen': 'Tuffy', \"\"Anthony 'Treach' Criss\"\": 'Vet', 'Jenny Wade': 'Honey Pie', 'Tyler Patrick Jones': 'Cody'}\"\r\ntt0462519,\"{'Billy Bob Thornton': 'Dr. P', 'Jon Heder': 'Roger Waddell', 'Jacinda Barrett': 'Amanda', 'Michael Clarke Duncan': 'Lesher', 'Sarah Silverman': 'Becky', 'David Cross': 'Ian', 'Matt Walsh': 'Walsh', 'Horatio Sanz': 'Diego', 'Todd Louiso': 'Eli', 'Jon Glaser': 'Ernie', 'Paul Scheer': 'Little Pete', 'Ben Stiller': 'Lonnie Radcliff', 'Luis Guzmán': 'Sergeant Moorehead', 'Dan Fogler': 'Zack', 'DeRay Davis': 'Bee Bee'}\"\r\ntt0489237,\"{'Scarlett Johansson': 'Annie Braddock', 'Donna Murphy': 'Judy Braddock', 'John Henry Cox': 'Dean', 'Alicia Keys': 'Lynette', 'Lewis Payton Jr.': 'Bike Messenger', 'Sonnie Brown': 'Human Resources Director', 'Georgina Chapman': 'TriBeCa Fashionista', 'Nicholas Art': 'Grayer       (as Nicholas Reese Art)', 'Jodi Michelle Pynn': 'Screeching Lady', 'Mike Rad': 'Dude', 'Laura Linney': 'Mrs. X', 'Joanna Heimbold': 'Glamour Mom', 'Marla Sucharetza': 'Charity Mom', 'Phoebe Jonas': 'Xanax Mom', 'Allison Sarofim': 'Eating Disorder Mom'}\"\r\ntt1979320,\"{'Chris Hemsworth': 'James Hunt', 'Daniel Brühl': 'Niki Lauda', 'Olivia Wilde': 'Suzy Miller', 'Alexandra Maria Lara': 'Marlene Lauda', 'Pierfrancesco Favino': 'Clay Regazzoni', 'David Calder': 'Louis Stanley', 'Natalie Dormer': 'Nurse Gemma', 'Stephen Mangan': 'Alastair Caldwell', 'Christian McKay': 'Lord Hesketh', 'Alistair Petrie': 'Stirling Moss', 'Julian Rhind-Tutt': \"\"Anthony 'Bubbles' Horsley\"\", 'Colin Stinton': 'Teddy Mayer', 'Jamie de Courcey': \"\"Harvey 'Doc' Postlethwaite\"\", 'Augusto Dallara': \"\"Enzo Ferrari       (as Augusto Dall'ara)\"\", 'Ilario Calvo': 'Luca Di Montezemolo'}\"\r\ntt0884328,\"{'Thomas Jane': 'David Drayton', 'Marcia Gay Harden': 'Mrs. Carmody', 'Laurie Holden': 'Amanda Dunfrey', 'Andre Braugher': 'Brent Norton', 'Toby Jones': 'Ollie Weeks', 'William Sadler': 'Jim', 'Jeffrey DeMunn': 'Dan Miller', 'Frances Sternhagen': 'Irene Reppler', 'Nathan Gamble': 'Billy Drayton', 'Alexa Davalos': 'Sally', 'Chris Owen': 'Norm', 'Sam Witwer': 'Private Jessup', 'Robert C. Treveiler': 'Bud Brown       (as Robert Treveiler)', 'David Jensen': 'Myron', 'Melissa McBride': 'Woman With Kids at Home'}\"\r\ntt0427309,\"{'Denzel Washington': 'Melvin B. Tolson', 'Nate Parker': 'Henry Lowe', 'Jurnee Smollett-Bell': 'Samantha Booke       (as Jurnee Smollett)', 'Denzel Whitaker': 'James Farmer Jr.', 'Jermaine Williams': 'Hamilton Burgess', 'Forest Whitaker': 'Dr. James Farmer Sr.', 'Gina Ravera': 'Ruth Tolson', 'John Heard': 'Sheriff Dozier', 'Kimberly Elise': 'Pearl Farmer', 'Devyn A. Tyler': 'Helen Farmer       (as Devyn Tyler)', 'Trenton McClain Boyd': 'Nathaniel Farmer', 'Ritchie Montgomery': 'Deputy', 'Jackson Walker': 'Pig Owner', 'Tim Parati': 'Pig Farmer', 'Robert X. Golphin': 'Dunbar Reed'}\"\r\ntt0386032,\"{'Michael Moore': 'Himself', 'Tucker Albrizzi': 'Himself', 'Tony Benn': 'Himself', 'George W. Bush': 'Himself       (archive footage)', 'Reggie Cervantes': 'Herself', 'Bill Clinton': 'Himself       (archive footage)', 'Hillary Clinton': 'Herself       (archive footage) (as Hillary Rodham Clinton)', 'Billy Crystal': 'Himself       (archive footage)', 'John Graham': 'Himself', 'Aleida Guevara': 'Herself', 'William Maher': 'Himself', 'Richard Nixon': 'Himself       (archive footage)', 'Patrick Pedraja': 'Himself', 'Linda Peeno': 'Herself'}\"\r\ntt0368794,\"{'Cate Blanchett': 'Jude', 'Ben Whishaw': 'Arthur', 'Christian Bale': 'Jack /              Pastor John', 'Richard Gere': 'Billy', 'Marcus Carl Franklin': 'Woody /              Chaplin Boy', 'Heath Ledger': 'Robbie', 'Kris Kristofferson': 'Narrator       (voice)', 'Don Francks': 'Hobo Joe', 'Roc LaFortune': 'Hobo Moe', 'Larry Day': 'Government Agent', 'Paul Cagelet': 'Carny /              Bell-Hop', 'Brian R.C. Wilmes': 'Circus Man       (as Brian RC Wilmes)', 'Pierre-Alexandre Fortin': 'Gorgeous George', 'Richie Havens': 'Old Man Arvin', 'Tyrone Benskin': 'Mr. Arvin'}\"\r\ntt0367959,\"{'Aaran Thomas': 'Young Hannibal', 'Gaspard Ulliel': 'Hannibal Lecter', 'Li Gong': 'Lady Murasaki       (as Gong Li)', 'Helena-Lia Tachovská': 'Mischa Lecter', 'Richard Leaf': 'Father Lecter', 'Dominic West': 'Inspector Popil', 'Rhys Ifans': 'Vladis Grutas', 'Michelle Wade': 'Nanny', 'Richard Brake': 'Enrikas Dortlich', 'Martin Hub': 'Lothar', 'Ingeborga Dapkunaite': 'Mother Lecter', 'Kevin McKidd': 'Petras Kolnas', 'Joerg Stadler': 'Berndt', 'Stephen Walters': 'Zigmas Milko', 'Ivan Marevich': 'Bronys Grentz'}\"\r\ntt1817273,\"{'Ryan Gosling': 'Luke', 'Craig Van Hook': 'Jack', 'Eva Mendes': 'Romina', 'Olga Merediz': 'Malena', 'Angelo Anthony Pizza': 'Baby Jason       (as Anthony Angelo Pizza Jr.)', 'Mahershala Ali': 'Kofi', 'John Facci': 'Priest       (as Rev. John Facci)', 'Ben Mendelsohn': 'Robin', 'Tula': \"\"Robin's Dog\"\", 'Penny': \"\"Robin's Dog\"\", 'Cynthia Pelletier-Sullivan': 'Teller #1 - Bank #1', 'Mackenzie Trainor': 'Teller #2 - Bank #1', 'Nicole Califano': 'Teller #3 - Bank #1', 'Shannon Plumb': 'Lady in Ice Cream Shop', 'Tracey Agustin': 'Teller #1 - Bank #2'}\"\r\ntt0373883,\"{'Malcolm McDowell': 'Dr. Samuel Loomis', 'Brad Dourif': 'Sheriff Lee Brackett', 'Tyler Mane': 'Michael Myers', 'Daeg Faerch': 'Michael Myers, age 10', 'Sheri Moon Zombie': 'Deborah Myers', 'William Forsythe': 'Ronnie White', 'Richard Lynch': 'Principal Chambers', 'Udo Kier': 'Morgan Walker', 'Clint Howard': 'Doctor Koplenson', 'Danny Trejo': 'Ismael Cruz', 'Lew Temple': 'Noel Kluggs', 'Tom Towles': 'Larry Redgrave', 'Bill Moseley': \"\"Zach 'Z-Man' Garrett\"\", 'Leslie Easterbrook': 'Patty Frost', 'Steve Boyles': 'Stan Payne'}\"\r\ntt0848557,\"{'Todd Schroeder': 'Brody       (as Todd William Schroeder)', 'Laura de Carteret': 'Bree', 'Amy Lalonde': 'Tracy Thurman', 'Martin Roach': 'Stranger', 'Joshua Close': 'Jason Creed       (as Josh Close)', 'Joe Dinicol': 'Eliot Stone', 'Michelle Morgan': 'Debra Moynihan', 'Shawn Roberts': 'Tony Ravello', 'Philip Riccio': 'Ridley Wilmott', 'Tatiana Maslany': 'Mary Dexter', 'Daniel Kash': 'Police Officer', 'Chris Violette': 'Gordo Thorsen', 'Megan Park': 'Francine Shane', 'Scott Wentworth': 'Andrew Maxwell', 'George Buza': 'Tattooed Biker'}\"\r\ntt0421082,\"{'Sam Riley': 'Ian Curtis', 'Samantha Morton': 'Debbie Curtis', 'Alexandra Maria Lara': 'Annik Honore', 'Joe Anderson': 'Peter Hook aka Hooky', 'James Anthony Pearson': 'Bernard Sumner', 'Harry Treadaway': 'Steve Morris', 'Craig Parkinson': 'Tony Wilson', 'Toby Kebbell': 'Rob Gretton', 'Andrew Sheridan': 'Terry', 'Robert Shelly': 'Twinny', 'Richard Bremmer': \"\"Mr. Curtis - Ian's Father\"\", 'Tanya Myers': \"\"Ian's Mother\"\", 'Martha Myers Lowe': \"\"Ian's Sister       (as Martha Myers-Lowe)\"\", 'Matthew McNulty': 'Nick', 'David Whittington': 'Chemistry Teacher'}\"\r\ntt0790636,\"{'Matthew McConaughey': 'Ron Woodroof', 'Jennifer Garner': 'Eve', 'Jared Leto': 'Rayon', \"\"Denis O'Hare\"\": 'Dr. Sevard', 'Steve Zahn': 'Tucker', \"\"Michael O'Neill\"\": 'Richard Barkley', 'Dallas Roberts': 'David Wayne', 'Griffin Dunne': 'Dr. Vass', 'Kevin Rankin': 'T.J.', 'Donna Duplantier': 'Nurse Frazin', 'Deneen Tyler': 'Denise       (as Deneen D. Tyler)', 'J.D. Evermore': 'Clint', 'Ian Casselberry': 'Hispanic Orderly', 'Noelle Wilcox': 'Kelly', 'Bradford Cox': 'Sunny'}\"\r\ntt0795493,\"{'Ewan McGregor': 'Ian Blaine', 'Colin Farrell': 'Terry Blaine', 'Peter-Hugo Daly': 'Boat Owner       (as Peter Hugo-Daly)', 'John Benfield': 'Brian Blaine', 'Clare Higgins': 'Dorothy Blaine', 'Ashley Madekwe': 'Lucy       (as Ashley Medekwe)', 'Andrew Howard': 'Jerry', 'Hayley Atwell': 'Angela Stark', 'Sally Hawkins': 'Kate', 'Keith Smee': \"\"Terry's Track Mate\"\", 'Stephen Noonan': 'Mel', 'Dan Carter': 'Fred', 'Richard Lintern': 'Director', 'Jennifer Higham': 'Helen', 'Lee Whitlock': 'Mike'}\"\r\ntt0450385,\"{'John Cusack': 'Mike Enslin', 'Tony Shalhoub': 'Sam Farrell', 'Len Cariou': \"\"Mike's Father\"\", 'Isiah Whitlock Jr.': 'Hotel Engineer', 'Jasmine Jessica Anthony': 'Katie', 'Paul Birchard': 'Mr. Innkeeper', 'Margot Leicester': 'Mrs. Innkeeper', 'Walter Lewis': 'Book Store Cashier', 'Eric Meyers': 'Man #1 at Book Signing', 'David Nicholson': 'Man #2 at Book Signing', 'Holly Hayes': 'Lady at Book Signing', 'Alexandra Silber': 'Young Woman at Book Signing', 'Johann Urb': 'Surfer Dude', 'Andrew Lee Potts': 'Mailbox Guy', 'Emily Harvey': 'Secretary'}\"\r\ntt1266029,\"{'Aaron Taylor-Johnson': 'John       (as Aaron Johnson)', 'Kristin Scott Thomas': 'Mimi', 'David Threlfall': 'Uncle George', 'Josh Bolt': 'Pete', 'Ophelia Lovibond': 'Marie', 'Kerrie Hayes': \"\"Marie's Friend\"\", 'Angela Walsh': 'Schoolmistress', 'Paul Ritter': 'Popjoy', 'Richard Syms': 'Reverend', 'Anne-Marie Duff': 'Julia', 'James Johnson': 'Stan', 'Alex Ambrose': 'Young John', 'Angelica Jopling': 'Julia - aged 8', 'Abby Greenhalgh': 'Jackie - aged 6', 'David Morrissey': 'Bobby'}\"\r\ntt1007028,\"{'Elizabeth Banks': 'Miri', 'Seth Rogen': 'Zack', 'Craig Robinson': 'Delaney', 'Gerry Bednob': 'Mr. Surya', 'Edward Janda': 'Customer', 'Nicholas Lombardi': 'Teen #1', 'Chris Milan': 'Teen #2', 'Jennifer Schwalbach Smith': 'Betsy       (as Jennifer Schwalbach)', 'Kenny Hotz': 'Zack II', 'Brandon Routh': 'Bobby Long', 'Anne Wade': 'Roxanne', 'Justin Long': 'Brandon', 'Tom Savini': 'Jenkins', 'Jeff Anderson': 'Deacon', 'Jim Norton': 'Auditioner       (as Jimmy Norton)'}\"\r\ntt0976051,\"{'Ralph Fiennes': 'Michael Berg', 'Jeanette Hain': 'Brigitte', 'David Kross': 'Young Michael Berg', 'Kate Winslet': 'Hanna Schmitz', 'Susanne Lothar': 'Carla Berg', 'Alissa Wilms': 'Emily Berg', 'Florian Bartholomäi': 'Thomas Berg', 'Friederike Becht': 'Angela Berg', 'Matthias Habich': 'Peter Berg', 'Frieder Venus': 'Doctor', 'Marie-Anne Fliegel': \"\"Hanna's Neighbour       (as Marie Anne Fliegel)\"\", 'Hendrik Arnst': 'Woodyard Worker', 'Rainer Sellien': 'Teacher', 'Torsten Michaelis': 'Sports Master', 'Moritz Grove': 'Holger'}\"\r\ntt0443559,\"{'Mickey Rourke': 'Blackbird', 'Brandon McGibbon': \"\"Blackbird's Kid Brother\"\", 'Peter Kelly Gaudreault': \"\"Blackbird's Brother\"\", 'Michelle Arvizu': 'Nurse', 'Richard Zeppieri': 'Son-in-Law /              Mafia Boss', 'Alexis Butler': 'Girl in Hotel Room', 'Hal Holbrook': 'Papa', 'Diane Lane': 'Carmen', 'Robert Gow': 'Prospective Buyer', 'Catherine Hayos': 'Prospective Buyer', 'Thomas Jane': 'Wayne Colson', 'Craig Blair': 'Construction Site Foreman', 'Joseph Gordon-Levitt': 'Richie', 'Lynne Deragon': 'Mrs. Palino', 'Rosario Dawson': 'Donna'}\"\r\ntt0403702,\"{'Michael Cera': 'Nick Twisp /              Francois', 'Portia Doubleday': 'Sheeni Saunders', 'Jean Smart': 'Estelle Twisp', 'Zach Galifianakis': 'Jerry', 'Erik Knudsen': 'Lefty', 'Adhir Kalyan': 'Vijay Joshi', 'Steve Buscemi': 'George Twisp', 'Fred Willard': 'Mr. Ferguson', 'Ari Graynor': 'Lacey', 'Ray Liotta': 'Lance Wescott', 'Justin Long': 'Paul Saunders', 'Rooney Mara': 'Taggarty', 'Jade Fusco': 'Bernice Lynch', 'Lise Lacasse': 'Matron', 'M. Emmet Walsh': 'Mr. Saunders'}\"\r\ntt2184339,\"{'Ethan Hawke': 'James Sandin', 'Lena Headey': 'Mary Sandin', 'Max Burkholder': 'Charlie Sandin', 'Adelaide Kane': 'Zoey Sandin', 'Edwin Hodge': 'Bloody Stranger', 'Rhys Wakefield': 'Polite Leader', 'Tony Oller': 'Henry', 'Arija Bareikis': 'Mrs. Grace Ferrin', 'Tom Yi': 'Mr. Cali', 'Chris Mulkey': 'Mr. Halverson', 'Tisha French': 'Mrs. Halverson', 'Dana Bunch': 'Mr. Ferrin', 'Peter Gvozdas': 'Dr. Peter Buynak', 'John Weselcouch': 'Freak Interrupting', 'Alicia Vela-Bailey': 'Female Freak'}\"\r\ntt0898367,\"{'Viggo Mortensen': 'Man', 'Kodi Smit-McPhee': 'Boy', 'Robert Duvall': 'Old Man', 'Guy Pearce': 'Veteran', 'Molly Parker': 'Motherly Woman', 'Michael Kenneth Williams': 'Thief', 'Garret Dillahunt': 'Gang Member', 'Charlize Theron': 'Woman', 'Bob Jennings': 'Bearded Man', 'Agnes Herrmann': \"\"Archer's Woman\"\", 'Buddy Sosthand': 'Archer', 'Kirk Brown': 'Bearded Face', 'Jack Erdie': 'Bearded Man #2', 'David August Lindauer': 'Man On Mattress', 'Gina Preciado': 'Well Fed Woman'}\"\r\ntt1742650,\"{'Sarah Jessica Parker': 'Kate Reddy', 'Pierce Brosnan': 'Jack Abelhammer', 'Greg Kinnear': 'Richard Reddy', 'Christina Hendricks': 'Allison Henderson', 'Kelsey Grammer': 'Clark Cooper', 'Seth Meyers': 'Chris Bunce', 'Olivia Munn': 'Momo Hahn', 'Jane Curtin': 'Marla Reddy', 'Mark Blum': 'Lew Reddy', 'Busy Philipps': 'Wendy Best', 'Sarah Shahi': 'Janine LoPietro', 'Jessica Szohr': 'Paula', 'Emma Rayne Lyle': 'Emily Reddy', 'Julius Goldberg': 'Ben Reddy', 'Theodore Goldberg': 'Ben Reddy'}\"\r\ntt0497465,\"{'Rebecca Hall': 'Vicky', 'Scarlett Johansson': 'Cristina', 'Christopher Evan Welch': 'Narrator       (voice)', 'Chris Messina': 'Doug', 'Patricia Clarkson': 'Judy', 'Kevin Dunn': 'Mark', 'Julio Perillán': 'Charles', 'Juan Quesada': 'Guitarist in Barcelona', 'Ricard Salom': 'Art Gallery Guest', 'Maurice Sonnenberg': 'Art Gallery Guest', 'Javier Bardem': 'Juan Antonio', 'Manel Barceló': 'Doctor', 'Josep Maria Domènech': 'Julio', 'Emilio de Benito': 'Guitarist in Asturias', 'Jaume Montané': \"\"Juan Antonio's Friend\"\"}\"\r\ntt1483013,\"{'Tom Cruise': 'Jack', 'Morgan Freeman': 'Beech', 'Olga Kurylenko': 'Julia', 'Andrea Riseborough': 'Victoria', 'Nikolaj Coster-Waldau': 'Sykes', 'Melissa Leo': 'Sally', 'Zoë Bell': 'Kara', 'Abigail Lowe': \"\"Julia's Child\"\", 'Isabelle Lowe': \"\"Julia's Child\"\"}\"\r\ntt0426592,\"{'Drake Bell': 'Rick Riker', 'Sara Paxton': 'Jill Johnson', 'Christopher McDonald': 'Lou Landers', 'Leslie Nielsen': 'Uncle Albert', 'Kevin Hart': 'Trey', 'Marion Ross': 'Aunt Lucille', 'Ryan Hansen': 'Lance Landers', 'Keith David': 'The Chief of Police', 'Brent Spiner': 'Dr. Strom', 'Robert Joy': 'Dr. Hawking', 'Jeffrey Tambor': 'Dr. Whitby', 'Robert Hays': 'Blaine Riker', 'Nicole Sullivan': 'Julia Riker', 'Sam Cohen': 'Young Rick', 'Tracy Morgan': 'Professor Xavier'}\"\r\ntt0362120,\"{'Anna Faris': 'Cindy', 'Regina Hall': 'Brenda', 'Craig Bierko': 'Tom', 'Bill Pullman': 'Henry Hale', 'Anthony Anderson': 'Mahalik', 'Leslie Nielsen': 'President Baxter Harris', 'Molly Shannon': 'Marilyn', 'Michael Madsen': 'Oliver', 'Chris Elliott': 'Ezekiel', 'Carmen Electra': 'Holly', \"\"Shaquille O'Neal\"\": 'Shaq', 'Phil McGraw': 'Dr. Phil       (as Dr. Phil McGraw)', 'Cloris Leachman': 'Mrs. Norris', 'Conchita Campbell': 'Rachel', 'Beau Mirchoff': 'Robbie'}\"\r\ntt1077258,\"{'Rose McGowan': 'Cherry Darling', 'Freddy Rodríguez': 'Wray       (as Freddy Rodriguez)', 'Josh Brolin': 'Dr. William Block', 'Marley Shelton': 'Dr. Dakota Block', 'Jeff Fahey': 'J.T.', 'Michael Biehn': 'Sheriff Hague', 'Rebel Rodriguez': 'Tony Block', 'Bruce Willis': 'Lt. Muldoon', 'Naveen Andrews': 'Abby', 'Julio Oscar Mechoso': 'Romy', 'Fergie': 'Tammy       (as Stacy Ferguson)', 'Nicky Katt': 'Joe', 'Hung Nguyen': 'Dr. Crane', 'Cecilia Conti': 'Paramedic Cecil', 'Tommy Nix': 'Paramedic Nixer'}\"\r\ntt1411250,\"{'Vin Diesel': 'Riddick', 'Jordi Mollà': 'Santana', 'Matt Nable': 'Boss Johns', 'Katee Sackhoff': 'Dahl', 'Dave Bautista': 'Diaz', 'Bokeem Woodbine': 'Moss', 'Raoul Max Trujillo': 'Lockspur       (as Raoul Trujillo)', 'Conrad Pla': 'Vargas', 'Danny Blanco Hall': 'Falco', 'Noah Dalton Danby': 'Nunez       (as Noah Danby)', 'Neil Napier': 'Rubio', 'Nolan Gerard Funk': 'Luna', 'Karl Urban': 'Vaako', 'Andreas Apergis': 'Krone', 'Keri Hilson': \"\"Santana's Prisoner       (as Keri Lynn Hilson)\"\"}\"\r\ntt1028528,\"{'Kurt Russell': 'Stuntman Mike', 'Zoë Bell': 'Zoë Bell', 'Rosario Dawson': 'Abernathy', 'Vanessa Ferlito': 'Arlene', 'Sydney Tamiia Poitier': 'Jungle Julia       (as Sydney Poitier)', 'Tracie Thoms': 'Kim', 'Rose McGowan': 'Pam', 'Jordan Ladd': 'Shanna', 'Mary Elizabeth Winstead': 'Lee', 'Quentin Tarantino': 'Warren', 'Marcy Harriell': 'Marcy', 'Eli Roth': 'Dov', 'Omar Doom': 'Nate', 'Michael Bacall': 'Omar', 'Monica Staggs': 'Lanna Frank'}\"\r\ntt0281322,\"{'Wesley Snipes': 'Monroe Hutchen', 'Ving Rhames': \"\"George 'Iceman' Chambers\"\", 'Peter Falk': 'Mendy Ripstein', 'Michael Rooker': 'A.J. Mercker', 'Jon Seda': \"\"Jesus 'Chuy' Campos\"\", 'Wes Studi': 'Mingo Pace', 'Fisher Stevens': \"\"James 'Ratbag' Kroycek\"\", 'Dayton Callie': 'Yank Lewis', 'Amy Aquino': 'Darlene Early', 'Johnny Williams': 'Al', \"\"Joe D'Angerio\"\": 'Vinnie', 'Nils Allen Stewart': 'Vern Van Zant', 'Denis Arndt': 'Warden Lipscom', 'Jim Lampley': 'Jim Lampley', 'Ed Lover': 'Marvin Bonds'}\"\r\ntt0280778,\"{'Kate Winslet': 'Young Iris Murdoch', 'Hugh Bonneville': 'Young John Bayley', 'Judi Dench': 'Iris Murdoch', 'Jim Broadbent': 'John Bayley', 'Eleanor Bron': 'Principal', 'Angela Morant': 'Hostess', 'Penelope Wilton': 'Janet Stone', 'Siobhan Hayes': 'Check-Out Girl', 'Juliet Aubrey': 'Young Janet Stone', 'Joan Bakewell': 'BBC Presenter', 'Nancy Carroll': 'BBC PA', 'Kris Marshall': 'Dr. Gudgeon', 'Tom Mannion': 'Neurologist', 'Derek Hutchinson': 'Postman', 'Samuel West': 'Young Maurice       (as Sam West)'}\"\r\ntt1650554,\"{'Aaron Taylor-Johnson': 'Dave Lizewski /              Kick-Ass', 'Chloë Grace Moretz': 'Mindy Macready /              Hit Girl', 'Morris Chestnut': 'Detective Marcus Williams', 'Claudia Lee': 'Brooke', 'Amy Anzel': 'Mrs Zane', 'Clark Duke': 'Marty /              Battle Guy', 'Augustus Prew': 'Todd /              Ass Kicker', 'Mary Kitchen': 'News Reporter', 'Donald Faison': 'Dr. Gravity', 'Matt Steinberg': 'Mr. Radical', 'Steven Mackintosh': \"\"Tommy's Dad\"\", 'Monica Dolan': \"\"Tommy's Mum\"\", 'Garrett M. Brown': 'Mr. Lizewski', 'Lyndsy Fonseca': 'Katie Deauxma', 'Christopher Mintz-Plasse': \"\"Chris D'Amico /              The Motherfucker\"\"}\"\r\ntt0171359,\"{'Ethan Hawke': 'Hamlet', 'Kyle MacLachlan': 'Claudius', 'Diane Venora': 'Gertrude', 'Sam Shepard': 'Ghost', 'Bill Murray': 'Polonius', 'Liev Schreiber': 'Laertes', 'Julia Stiles': 'Ophelia', 'Karl Geary': 'Horatio', 'Paula Malcomson': 'Marcella', 'Steve Zahn': 'Rosencrantz', 'Dechen Thurman': 'Guildenstern', 'Rome Neal': 'Barnardo', 'Jeffrey Wright': 'Gravedigger', 'Paul Bartel': 'Osric', 'Casey Affleck': 'Fortinbras'}\"\r\ntt1596343,\"{'Vin Diesel': 'Dominic Toretto', 'Paul Walker': \"\"Brian O'Conner\"\", 'Jordana Brewster': 'Mia', 'Tyrese Gibson': 'Roman', 'Ludacris': \"\"Tej       (as Chris 'Ludacris' Bridges)\"\", 'Matt Schulze': 'Vince', 'Sung Kang': 'Han', 'Gal Gadot': 'Gisele', 'Tego Calderon': 'Leo', 'Don Omar': 'Santos', 'Joaquim de Almeida': 'Reyes', 'Dwayne Johnson': 'Hobbs', 'Elsa Pataky': 'Elena', 'Michael Irby': 'Zizi', 'Fernando Chien': 'Wilkes       (as Fernando F. Chien)'}\"\r\ntt0104409,\"{'Kevin Bernhardt': 'J.P. Monroe /              Pistonhead Cenobite', 'Lawrence Mortorff': 'Bum', 'Terry Farrell': \"\"Joanne 'Joey' Summerskill\"\", 'Ken Carpenter': \"\"Daniel 'Doc' Fisher /              Camerahead Cenobite\"\", 'Sharon Hill': 'Blond Nurse', 'Paula Marshall': 'Terri /              Skinless Sandy /              Dreamer Cenobite', 'Robert C. Treveiler': 'Paramedic 1       (as Rob Treveiler)', 'Christopher Frederick': 'Paramedic 2', 'Lawrence Kuppin': 'Derelict', 'Sharon Percival': 'Brittany Virtue', 'Philip Hyland': 'Brad', 'David Young': 'Bill the Bouncer', 'Brent Bolthouse': 'CD the DJ', 'Peter Atkins': 'Rick the Barman /              Barbie Cenobite', 'Paul Coleman': 'Soldier 1       (as Paul Vincent Coleman)'}\"\r\ntt0068935,\"{'Bruce Lee': 'Tang Lung', 'Nora Miao': 'Chen Ching Hua', 'Chuck Norris': 'Colt', 'Ping Ou Wei': 'Ho       (as Paul Wei Ping-Ao)', 'Chung-Hsin Huang': \"\"'Uncle' Wang       (as Wang Chung Hsin)\"\", 'Robert Wall': 'Bob', 'Ing-Sik Whang': 'Japanese Fighter', 'Ti Chin': 'Ah Quen', 'Tony Liu': 'Tony', 'Little Unicorn': 'Jimmy', 'Malisa Longo': 'Italian Beauty', 'Ngan Wu': 'Waiter', 'Fu Ching Chen': 'Robert       (as Robert Chen)', 'Jon T. Benn': 'The Boss', 'John Kenny': 'Quen       (voice)'}\"\r\ntt0120604,\"{'Christopher Lambert': 'Beowulf', 'Rhona Mitra': 'Kyra', 'Oliver Cotton': 'Hrothgar', 'Götz Otto': 'Roland', 'Charles Robinson': 'Weaponsmaster       (as Charlie Robinson)', 'Brent Jefferson Lowe': 'Will       (as Brent J. Lowe)', 'Roger Sloman': 'Karl', 'Layla Roberts': \"\"Grendel's Mother\"\", 'Robert Willox': 'Chief Officer', 'Patricia Velasquez': 'Pendra', 'Marcel Cobzariu': 'Lookout       (as Marcelo Cobzariu)', 'Vlad Jipa': 'Sentry', 'Diana Dumbrava': \"\"Hrothgar's Wife\"\", 'Andrei Rusu': '1st Soldier', 'Vitalie Bantas': '1st Guard'}\"\r\ntt0122541,\"{'Peter Vaughan': 'Phipps', 'Rupert Everett': 'Lord Goring', 'Minnie Driver': 'Mabel', 'Cate Blanchett': 'Gertrude', 'Ben Pullen': 'Tommy Trafford', 'Marsha Fitzalan': 'Countess', 'Julianne Moore': 'Mrs Cheveley', 'Lindsay Duncan': 'Lady Markby', 'Neville Phillips': 'Mason', 'John Wood': 'Lord Caversham', 'Jeremy Northam': 'Sir Robert', 'Nickolas Grace': 'Vicounte de Nanjac', 'Simon Russell Beale': 'Sir Edward', 'Anna Patrick': 'Miss Danvers', 'Delia Lindsay': 'Lady Basildon'}\"\r\ntt0240601,\"{'Mark Keller': 'Peter', 'Jasmin Gerat': 'Gwen', 'Maximilian Schell': 'Walter Ekland', 'Burkhard Driest': 'Decker', 'Katja Burkard': 'Fernsehsprecherin', 'Prince Hughes': 'Real Decker', 'Mario Irrek': 'Richie Rich', 'Wolfram Kons': 'Fernsehsprecher', 'Lorenzo Bassa Mestre': 'Taxifahrer', 'Patrizia Moresco': 'Maria', 'Ralph Morgenstern': 'Sickenberger', 'Peter Rappenglück': 'Cookie', 'Pierre Shrady': 'Barkeeper'}\"\r\ntt1690953,\"{'Steve Carell': 'Gru       (voice)', 'Kristen Wiig': 'Lucy       (voice)', 'Benjamin Bratt': 'Eduardo Pérez /              El Macho       (voice)', 'Miranda Cosgrove': 'Margo       (voice)', 'Russell Brand': 'Dr. Nefario       (voice)', 'Ken Jeong': 'Floyd Eagle-san       (voice)', 'Steve Coogan': 'Silas Ramsbottom       (voice)', 'Elsie Fisher': 'Agnes       (voice)', 'Dana Gaier': 'Edith       (voice)', 'Moises Arias': 'Antonio Pérez       (voice)', 'Nasim Pedrad': 'Jillian       (voice)', 'Kristen Schaal': 'Shannon       (voice)', 'Pierre Coffin': 'Kevin the Minion /              Bob the Minion /              Stuart the Minion /              Additional Minions /              Evil Minions       (voice)', 'Chris Renaud': 'Additional Minions /              Evil Minions /              Italian Waiter       (voice)', 'Nickolai Stoilov': 'Arctic Lab Guards       (voice)'}\"\r\ntt0102370,\"{'Madonna': 'Herself', 'Donna DeLory': 'Herself - Vocals and Dancer       (as Donna Delory)', 'Niki Harris': 'Herself - Vocals and Dancer       (as Niki Harris)', 'Luis Camacho': 'Himself - Dancer', 'Oliver Crumes Jr.': 'Himself - Dancer       (as Oliver Crumes)', 'Salim Gauwloos': 'Himself - Dancer', 'Kevin Alexander Stea': 'Himself - Dancer       (as Kevin Stea)', 'Gabriel Trupin': 'Himself - Dancer', 'Carlton Wilborn': 'Himself - Dancer', 'Sharon Gault': 'Herself - Mama Make-up', 'Joanne Gair': \"\"Herself - Madonna's Make-up\"\", 'Jai Winding': 'Himself - Keyboards', 'Jonathan Moffett': 'Himself - Drums', 'David Williams': 'Himself - Guitar', 'Luis Conte': 'Himself - Percussion'}\"\r\ntt0110027,\"{'Christopher Lambert': 'Connor MacLeod /              Russell Nash', 'Mario Van Peebles': 'Kane', 'Deborah Kara Unger': 'Alex Johnson /              Sarah', 'Mako': 'Nakano', 'Raoul Max Trujillo': 'Warrior #1       (as Raoul Trujillo)', 'Jean-Pierre Pérusse': 'Warrior #2       (as Jean-Pierre Perusse)', 'Martin Neufeld': 'Lt. John Stenn', 'Frederick Y. Okimura': 'Old Japanese Man', 'Daniel Do': 'Dr. Fuji Takamura', 'Gabriel Kakon': 'John MacLeod', 'Louis Bertignac': 'Pierre Bouchet', 'Michael Jayston': 'Jack Donovan', 'Zhenhu Han': 'Innkeeper       (as Zenhu Han)', 'Akira Inoue': \"\"Innkeeper's Son\"\", 'Darcy Laurie': 'Banger 1'}\"\r\ntt0133046,\"{'Helen Mirren': 'Mrs. Tingle', 'Katie Holmes': 'Leigh Ann Watson', 'Jeffrey Tambor': 'Coach Wenchell', 'Barry Watson': 'Luke Churner', 'Marisa Coughlan': 'Jo Lynn Jordan', 'Liz Stauber': 'Trudie Tucker', 'Michael McKean': 'Principal Potter', 'Molly Ringwald': 'Miss Banks', 'Vivica A. Fox': 'Miss Gold', 'John Patrick White': 'Brian Berry', 'Robert Gant': 'Professor', 'Harvey Silver': 'Roger'}\"\r\ntt1905041,\"{'Vin Diesel': 'Dominic Toretto', 'Paul Walker': \"\"Brian O'Conner\"\", 'Dwayne Johnson': 'Hobbs', 'Jordana Brewster': 'Mia', 'Michelle Rodriguez': 'Letty', 'Tyrese Gibson': 'Roman', 'Sung Kang': 'Han', 'Gal Gadot': 'Gisele', 'Ludacris': \"\"Tej       (as Chris 'Ludacris' Bridges)\"\", 'Luke Evans': 'Shaw', 'Elsa Pataky': 'Elena', 'Gina Carano': 'Riley', 'Clara Paget': 'Vegh', 'Kim Kold': 'Klaus', 'Joe Taslim': 'Jah'}\"\r\ntt0120915,\"{'Liam Neeson': 'Qui-Gon Jinn', 'Ewan McGregor': 'Obi-Wan Kenobi', 'Natalie Portman': 'Queen Amidala /              Padmé', 'Jake Lloyd': 'Anakin Skywalker', 'Ian McDiarmid': 'Senator Palpatine', 'Pernilla August': 'Shmi Skywalker', 'Oliver Ford Davies': 'Sio Bibble', 'Hugh Quarshie': 'Captain Panaka', 'Ahmed Best': 'Jar Jar Binks', 'Anthony Daniels': 'C-3PO       (voice)', 'Kenny Baker': 'R2-D2', 'Frank Oz': 'Yoda       (voice)', 'Terence Stamp': 'Chancellor Valorum', 'Brian Blessed': 'Boss Nass       (voice)', 'Andy Secombe': 'Watto       (voice) (as Andrew Secombe)'}\"\r\ntt0144964,\"{'Adrian Paul': 'Duncan MacLeod', 'Christopher Lambert': 'Connor MacLeod', 'Bruce Payne': 'Jacob Kell', 'Lisa Barbuscia': 'Kate MacLeod /              Faith', 'Donnie Yen': 'Jin Ke', 'Jim Byrnes': 'Joe Dawson', 'Peter Wingfield': 'Methos', 'Damon Dash': 'Carlos', 'Beatie Edney': 'Heather MacLeod', 'Sheila Gish': 'Rachel Ellenstein', 'Oris Erhuero': 'Winston', 'Ian Paul Cassidy': 'Cracker Bob', 'Adam Copeland': 'Lachlan       (as Edge)', 'Mihnea Trusca': 'Villager', 'June Watson': 'Caiolin MacLeod'}\"\r\ntt0246544,\"{'Catherine Deneuve': 'The Queen', 'Mena Suvari': 'Francesca Bonacieux', 'Stephen Rea': 'Cardinal Richelieu', 'Tim Roth': 'Febre the Man in Black', 'Justin Chambers': \"\"D'Artagnan\"\", 'Bill Treacher': 'Bonacieux', 'Daniel Mesguich': 'King Louis XIII', 'David Schofield': 'Rochefort, Richelieu Henchman', 'Nick Moran': 'Aramis', 'Steve Speirs': 'Porthos', 'Jan-Gregor Kremp': 'Athos', 'Jeremy Clyde': 'Lord Buckingham', 'Michael Byrne': 'Treville, Head of the Musketeers', 'Jean-Pierre Castaldi': 'Planchet', 'Tsilla Chelton': 'Madame Lacross'}\"\r\ntt0193560,\"{'James Van Der Beek': 'Lincoln Rogers Dunnison', 'Rachael Leigh Cook': 'Caroline Dukes', 'Ashton Kutcher': 'George Durham', 'Dylan McDermott': 'Leander McNelly', 'Usher Raymond': 'Randolph Douglas Scipio', 'Tom Skerritt': 'Richard Dukes', 'Randy Travis': 'Frank Bones', 'Leonor Varela': 'Perdita', 'Brian Martell': 'Jean-Pierre Marsele', 'Alfred Molina': 'John King Fisher', 'Billy Morton': 'Abajo', 'Kate Newby': 'Henrietta Dukes', 'Robert Patrick': 'Sgt. John Armstrong', 'Gordon Michaels': 'Mariachi Guard', 'Joe Renteria': 'General Cortinas'}\"\r\ntt0252299,\"{'Joaquin Phoenix': 'Ray Elwood', 'Ed Harris': 'Colonel Berman', 'Scott Glenn': 'Sergeant Lee', 'Anna Paquin': 'Robyn Lee', 'Elizabeth McGovern': 'Mrs. Berman', 'Michael Peña': 'Garcia', 'Leon': 'Stoney       (as Leon Robinson)', 'Gabriel Mann': 'Knoll', 'Dean Stockwell': 'General Lancaster', 'Brian Delate': 'Colonel Marshall', 'Shiek Mahmud-Bey': 'Sergeant Saad       (as Sheik Mahmud-Bey)', 'Amani Gethers': 'Kirschfield', 'Noah Lee Margetts': 'Rothfuss       (as Noah)', 'Tom Ellis': 'Squash', 'Kick Gurry': 'Video'}\"\r\ntt0220506,\"{'Jamie Lee Curtis': 'Laurie Strode', 'Brad Loree': 'Michael Myers', 'Busta Rhymes': 'Freddie Harris', 'Bianca Kajlich': 'Sara Moyer', 'Sean Patrick Thomas': 'Rudy', 'Daisy McCrackin': 'Donna', 'Katee Sackhoff': 'Jen       (as Katee Sachoff)', 'Luke Kirby': 'Jim', 'Thomas Ian Nicholas': 'Bill', 'Ryan Merriman': 'Myles Barton', 'Tyra Banks': 'Nora', 'Billy Kay': 'Scott', 'Gus Lynch': 'Harold', 'Lorena Gale': 'Nurse Wells', 'Marisa Rudiak': 'Nurse Phillips'}\"\r\ntt0290212,\"{'David Duchovny': 'Gus', 'Nicky Katt': 'Hitler', 'Catherine Keener': 'Lee', 'Mary McCormack': 'Linda', 'David Hyde Pierce': 'Carl', 'Julia Roberts': 'Francesca /              Catherine', 'Blair Underwood': 'Calvin /              Nicholas', 'Enrico Colantoni': 'Arty /              Ed', 'Erika Alexander': 'Lucy', 'Tracy Vilar': 'Heather', 'Brandon Keener': \"\"Francesca's Assistant\"\", 'Jeff Garlin': 'Harvey, probably', 'David Alan Basche': \"\"Nicholas's Agent\"\", 'Terence Stamp': 'Man on Plane /              Himself', 'Nancy Lenehan': 'Woman on Plane'}\"\r\ntt0282209,\"{'Chaney Kley': 'Kyle', 'Emma Caulfield Ford': 'Caitlin       (as Emma Caulfield)', 'Lee Cormie': 'Michael', 'Grant Piro': 'Larry', 'Sullivan Stapleton': 'Matt', 'Steve Mouzakis': 'Dr. Murphy', 'Peter Curtin': 'Dr. Travis', 'Kestie Morassi': 'Nurse Lauren', 'Jenny Lovell': 'Nurse Alex', 'John Stanton': 'Captain Henry', 'Angus Sampson': 'Ray       (as Angus Murray Lincoln Sampson)', 'Charlotte Rose': \"\"Ray's Wife       (as Charlotte Rees)\"\", 'Joshua Anderson': 'Young Kyle', 'Emily Browning': 'Young Caitlin', 'Rebecca McCauley': \"\"Kyle's Mom\"\"}\"\r\ntt1139328,\"{'Ewan McGregor': 'The Ghost', 'Jon Bernthal': 'Rick Ricardelli', 'Tim Preece': 'Roy', 'Jim Belushi': 'John Maddox       (as James Belushi)', 'Timothy Hutton': 'Sidney Kroll', 'Anna Botting': 'SKY TV Newsreader', 'Yvonne Tomlinson': 'Stewardess', 'Milton Welsh': 'Taxi Driver', 'Alister Mazzotti': 'Protection Officer #1', 'Tim Faraday': 'Barry', 'Kim Cattrall': 'Amelia Bly', 'Kate Copeland': 'Alice', 'Soogi Kang': 'Dep', 'Lee Hong Thay': 'Duc', 'Olivia Williams': 'Ruth Lang'}\"\r\ntt0427470,\"{'Joseph Gordon-Levitt': 'Chris Pratt', 'Jeff Daniels': 'Lewis', 'Matthew Goode': 'Gary Spargo', 'Isla Fisher': 'Luvlee', 'Carla Gugino': 'Janet', 'Bruce McGill': 'Robert Pratt', 'Alberta Watson': 'Barbara Pratt', 'Alex Borstein': 'Mrs. Lange', 'Sergio Di Zio': 'Deputy Ted', 'David Huband': 'Mr. Tuttle', 'Laura Vandervoort': 'Kelly', 'Greg Dunham': 'Bone', 'Morgan Kelly': 'Marty', 'Aaron Berg': 'Cork', 'Tinsel Korey': 'Maura'}\"\r\ntt0052618,\"{'Charlton Heston': 'Judah Ben-Hur', 'Jack Hawkins': 'Quintus Arrius', 'Haya Harareet': 'Esther', 'Stephen Boyd': 'Messala', 'Hugh Griffith': 'Sheik Ilderim', 'Martha Scott': 'Miriam', \"\"Cathy O'Donnell\"\": 'Tirzah', 'Sam Jaffe': 'Simonides', 'Finlay Currie': 'Balthasar /              Narrator', 'Frank Thring': 'Pontius Pilate', 'Terence Longdon': 'Drusus', 'George Relph': 'Tiberius Caesar', 'André Morell': 'Sextus'}\"\r\ntt0417741,\"{'Daniel Radcliffe': 'Harry Potter', 'Michael Gambon': 'Professor Albus Dumbledore', 'Dave Legeno': 'Fenrir Greyback', 'Elarica Johnson': 'Waitress       (as Elarica Gallacher)', 'Jim Broadbent': 'Professor Horace Slughorn', 'Geraldine Somerville': 'Lily Potter', 'Bonnie Wright': 'Ginny Weasley', 'Julie Walters': 'Molly Weasley', 'Rupert Grint': 'Ron Weasley', 'Emma Watson': 'Hermione Granger', 'Helena Bonham Carter': 'Bellatrix Lestrange', 'Helen McCrory': 'Narcissa Malfoy', 'Timothy Spall': 'Wormtail', 'Alan Rickman': 'Professor Severus Snape', 'Oliver Phelps': 'George Weasley'}\"\r\ntt0377818,\"{'Johnny Knoxville': 'Luke Duke', 'Seann William Scott': 'Bo Duke', 'Alice Greczyn': 'Laurie Pullman', 'Steve Lemme': 'Jimmy', 'Michael Weston': 'Deputy Enos Strate', 'Mitch Braswell': 'Out of Towner #1', 'Michael Roof': 'Dil Driscoll', 'Jessica Simpson': 'Daisy Duke', 'Rusty Tennant': 'Local #1', 'Dolan Wilson': 'Local #2', 'James Roday': 'Billy Prickett', 'Heather Hemmens': 'Girl #1', 'David Leitch': 'Puncher', 'A.J. Foyt IV': 'Race Car Driver #1', 'M.C. Gainey': 'Sheriff Rosco P. Coltrane'}\"\r\ntt0348836,\"{'Halle Berry': 'Miranda Grey', 'Robert Downey Jr.': 'Pete Graham', 'Charles S. Dutton': 'Dr. Douglas Grey', 'John Carroll Lynch': 'Sheriff Ryan', 'Bernard Hill': 'Phil Parsons', 'Penélope Cruz': 'Chloe Sava', 'Dorian Harewood': 'Teddy Howard', 'Bronwen Mantel': 'Irene', 'Kathleen Mackey': 'Rachel Parsons', 'Matthew G. Taylor': 'Turlington', 'Michel Perron': 'Joe', 'Andrea Sheldon': 'Tracey Seavers', 'Anana Rydvald': 'Glass Cell Nurse', 'Laura Mitchell': 'Inmate', 'Amy Sloan': 'Inmate'}\"\r\ntt0112462,\"{'Val Kilmer': 'Batman /              Bruce Wayne', 'Tommy Lee Jones': 'Harvey Two-Face /              Harvey Dent', 'Jim Carrey': 'Riddler /              Edward Nygma', 'Nicole Kidman': 'Dr. Chase Meridian', \"\"Chris O'Donnell\"\": 'Robin /              Dick Grayson', 'Michael Gough': 'Alfred Pennyworth', 'Pat Hingle': 'Commissioner Gordon', 'Drew Barrymore': 'Sugar', 'Debi Mazar': 'Spice', 'Elizabeth Sanders': 'Gossip Gerty', 'Rene Auberjonois': 'Dr. Burton', 'Joe Grifasi': 'Bank Guard', 'Philip Moon': 'Male Newscaster', 'Jessica Tuck': 'Female Newscaster', 'Dennis Paladino': 'Crime Boss Moroni'}\"\r\ntt1120985,\"{'Ryan Gosling': 'Dean', 'Michelle Williams': 'Cindy', 'Faith Wladyka': 'Frankie', 'John Doman': 'Jerry', 'Mike Vogel': 'Bobby', 'Marshall Johnson': 'Marshall', 'Jen Jones': 'Gramma', 'Maryann Plunkett': 'Glenda', 'James Benatti': 'Jamie', 'Barbara Troy': 'Jo', 'Carey Westbrook': 'Charley', 'Ben Shenkman': 'Dr. Feinberg', 'Eileen Rosen': 'Mimi', 'Enid Graham': 'Professor', 'Ashley Gurnari': 'Checker'}\"\r\ntt0120891,\"{'Will Smith': 'James West', 'Kevin Kline': 'Artemus Gordon /              President Grant', 'Kenneth Branagh': 'Dr. Arliss Loveless', 'Salma Hayek': 'Rita Escobar', 'M. Emmet Walsh': 'Coleman', 'Ted Levine': 'General McGrath', 'Frederique Van Der Wal': 'Amazonia       (as Frederique van der Wal)', 'Musetta Vander': 'Munitia', 'Sofia Eng': 'Miss Lippenrieder', 'Bai Ling': 'Miss East', 'Garcelle Beauvais': 'Girl In Water Tower', 'Mike H. McGaughy': 'Big Reb       (as Mike McGaughy)', 'Jerry Wills': 'Other Reb', 'Rodney A. Grant': 'Hudson', 'Buck Taylor': 'Eye-Crossed Reb'}\"\r\ntt0289879,\"{'Ashton Kutcher': 'Evan', 'Melora Walters': 'Andrea', 'Amy Smart': 'Kayleigh', 'Elden Henson': 'Lenny', 'William Lee Scott': 'Tommy', 'John Patrick Amedori': 'Evan at 13', 'Irina Gorovaia': 'Kayleigh at 13       (as Irene Gorovaia)', 'Kevin G. Schmidt': 'Lenny at 13', 'Jesse James': 'Tommy at 13', 'Logan Lerman': 'Evan at 7', 'Sarah Widdows': 'Kayleigh at 7', 'Jake Kaese': 'Lenny at 7', 'Cameron Bright': 'Tommy at 7', 'Eric Stoltz': 'Mr. Miller', 'Callum Keith Rennie': 'Jason'}\"\r\ntt0329101,\"{'Robert Englund': 'Freddy Krueger', 'Ken Kirzinger': 'Jason Voorhees', 'Monica Keena': 'Lori Campbell', 'Jason Ritter': 'Will Rollins', 'Kelly Rowland': 'Kia Waterson', 'Chris Marquette': 'Charlie Linderman       (as Christopher George Marquette)', 'Brendan Fletcher': 'Mark Davis', 'Katharine Isabelle': 'Gibb', 'Lochlyn Munro': 'Deputy Scott Stubbs', 'Kyle Labine': 'Bill Freeburg', 'Tom Butler': 'Dr. Campbell', 'David Kopp': 'Blake', 'Paula Shaw': \"\"Mrs. Pamela Voorhees (Jason's Mother)\"\", 'Jesse Hutch': 'Trey', 'Zack Ward': \"\"Bobby Davis (Mark's Brother)\"\"}\"\r\ntt0251160,\"{'Gabriela Oltean': 'Beautiful BMW Driver', 'Denzel Washington': 'John Quincy Archibald', 'Kimberly Elise': 'Denise Archibald', 'Ron Annabelle': 'Tow Truck Driver', 'Daniel E. Smith': \"\"Michael 'Mike' Archibald\"\", 'David Thornton': 'Jimmy Palumbo', 'Barry G. King': 'Employee Manager', 'Laura Harring': 'Gina Palumbo       (as Laura Elena Harring)', 'Kevin Connolly': 'Steve Maguire', 'Larissa Laskin': 'Dr. Ellen Klein', 'Vanessa Branch': 'Registered Nurse', 'Stephanie Moore': 'Admitting Nurse', 'James Finnerty': 'Nurse Reggie', 'Anne Heche': 'Rebecca Payne', 'James Woods': 'Dr. Raymond Turner'}\"\r\ntt0331632,\"{'Freddie Prinze Jr.': 'Fred', 'Sarah Michelle Gellar': 'Daphne', 'Matthew Lillard': 'Shaggy', 'Linda Cardellini': 'Velma', 'Seth Green': 'Patrick Wisely', 'Peter Boyle': 'Old Man Wickles', 'Tim Blake Nelson': 'Jacobo', 'Alicia Silverstone': 'Heather', 'Neil Fanning': 'Scooby-Doo       (voice)', \"\"Pat O'Brien\"\": 'Himself', 'Bill Meilen': 'Chauffeur', 'Zahf Paroo': 'Ned', 'Chris Gauthier': \"\"Daphne's Tattooed Fan #1       (as Christopher Gauthier)\"\", 'Peter New': \"\"Daphne's Tattooed Fan #2\"\", 'Morgan Brayton': 'Mullet Nerdette #1'}\"\r\ntt0267913,\"{'Freddie Prinze Jr.': 'Fred', 'Sarah Michelle Gellar': 'Daphne', 'Matthew Lillard': 'Shaggy', 'Linda Cardellini': 'Velma', 'Rowan Atkinson': 'Mondavarious', 'Isla Fisher': 'Mary Jane', 'Miguel A. Núñez Jr.': 'Voodoo Maestro       (as Miguel A. Nunez Jr.)', 'Steven Grives': \"\"N' Goo Tuana\"\", 'Charles Stan Frazier': 'Sugar Ray       (as Stan Frazier)', 'Craig Bullock': 'Sugar Ray       (as DJ Homicide)', 'Matthew Murphy Karges': 'Sugar Ray       (as Murphy Karges)', 'Mark McGrath': 'Sugar Ray', 'Rodney Sheppard': 'Sugar Ray', 'Sam Greco': 'Zarkos', 'Charlie Cousins': \"\"Velma's Friend       (as Charles Cousins)\"\"}\"\r\ntt0186566,\"{'Clint Eastwood': 'Frank Corvin', 'Tommy Lee Jones': 'Hawk Hawkins', 'Donald Sutherland': \"\"Jerry O'Neill\"\", 'James Garner': 'Tank Sullivan', 'James Cromwell': 'Bob Gerson', 'Marcia Gay Harden': 'Sara Holland', 'William Devane': 'Eugene Davis', 'Loren Dean': 'Ethan Glance', 'Courtney B. Vance': 'Roger Hines', 'Barbara Babcock': 'Barbara Corvin', 'Rade Serbedzija': 'General Vostov       (as Rade Sherbedgia)', 'Blair Brown': 'Dr. Anne Caruthers', 'Jay Leno': 'Jay Leno', 'Nils Allen Stewart': 'Tiny', 'Deborah Jolly': 'Cocktail Waitress'}\"\r\ntt0244244,\"{'John Travolta': 'Gabriel', 'Hugh Jackman': 'Stanley', 'Halle Berry': 'Ginger', 'Don Cheadle': 'Roberts', 'Sam Shepard': 'Senator Reisman', 'Vinnie Jones': 'Marco', 'Drea de Matteo': 'Melissa', 'Rudolf Martin': 'Axl Torvalds', 'Zach Grenier': 'A.D. Joy', 'Camryn Grimes': 'Holly', 'Angelo Pagán': 'Torres', 'Chic Daniel': 'SWAT Leader', 'Kirk B.R. Woller': 'Lawyer', 'Carmen Argenziano': 'Agent', 'Tim DeKay': 'Agent'}\"\r\ntt0100944,\"{'Anjelica Huston': 'Miss Ernst /              Grand High Witch', 'Mai Zetterling': 'Helga', 'Jasen Fisher': 'Luke', 'Rowan Atkinson': 'Mr. Stringer', 'Bill Paterson': 'Mr. Jenkins', 'Brenda Blethyn': 'Mrs. Jenkins', 'Charlie Potter': 'Bruno Jenkins', 'Anne Lambton': 'Woman in Black', 'Jane Horrocks': 'Miss Irvine', 'Sukie Smith': 'Marlene', 'Rose English': 'Dora', 'Jenny Runacre': 'Elsie', 'Annabel Brooks': 'Nicola', 'Emma Relph': 'Millie', 'Nora Connolly': 'Beatrice'}\"\r\ntt0105695,\"{'Clint Eastwood': 'Bill Munny', 'Gene Hackman': 'Little Bill Daggett', 'Morgan Freeman': 'Ned Logan', 'Richard Harris': 'English Bob', 'Jaimz Woolvett': \"\"The 'Schofield Kid'\"\", 'Saul Rubinek': 'W.W. Beauchamp', 'Frances Fisher': 'Strawberry Alice', 'Anna Levine': 'Delilah Fitzgerald       (as Anna Thomson)', 'David Mucci': 'Quick Mike', 'Rob Campbell': 'Davey Bunting', 'Anthony James': 'Skinny Dubois', 'Tara Frederick': 'Little Sue       (as Tara Dawn Frederick)', 'Beverley Elliott': 'Silky', 'Liisa Repo-Martell': 'Faith', 'Josie Smith': 'Crow Creek Kate'}\"\r\ntt0089791,\"{'Paul Reubens': 'Pee-wee Herman       (as Pee-wee Herman)', 'Elizabeth Daily': 'Dottie', 'Mark Holton': 'Francis Buxton', 'Diane Salinger': 'Simone', 'Judd Omen': 'Mickey', 'Irving Hellman': 'Mr. Crowtray', 'Monte Landis': 'Mario', 'Damon Martin': 'Chip       (as Damon Landis)', 'David Glasser': 'BMX Kid', 'Gregory Brown': 'BMX Kid', 'Mark Everett': 'BMX Kid', 'Daryl Keith Roach': 'Chuck       (as Daryl Roach)', 'Bill Cable': 'Policeman #1', 'Peter Looney': 'Policeman #2', 'Starletta DuPois': 'Sgt. Hunter'}\"\r\ntt0195945,\"{'Ice Cube': 'Craig Jones', 'Mike Epps': 'Day-Day', 'Justin Pierce': 'Roach', 'John Witherspoon': 'Mr. Jones', \"\"Don 'D.C.' Curry\"\": 'Uncle Elroy', 'Jacob Vargas': 'Joker', 'Lobo Sebastian': 'Lil Joker', 'Rolando Molina': 'Baby Joker', 'Lisa Rodríguez': 'Karla       (as Lisa Rodriguez)', \"\"Tommy 'Tiny' Lister\"\": \"\"Deebo       (as Tommy 'Tiny' Lister Jr.)\"\", 'Kym Whitley': 'Suga       (as Kym E. Whitley)', 'Amy Hill': 'Mrs. Ho-Kym', 'Tamala Jones': \"\"D'wana\"\", 'The Lady of Rage': \"\"Baby D'       (as Robin Allen)\"\", 'Carmen Serano': 'Girl #1'}\"\r\ntt0066999,\"{'Clint Eastwood': 'Harry', 'Harry Guardino': 'Bressler', 'Reni Santoni': 'Chico', 'John Vernon': 'The Mayor', 'Andrew Robinson': 'Killer       (as Andy Robinson)', 'John Larch': 'Chief', 'John Mitchum': 'De Giorgio', 'Mae Mercer': 'Mrs. Russell', 'Lyn Edgington': 'Norma', 'Ruth Kobart': 'Bus Driver', 'Woodrow Parfrey': 'Mr. Jaffe', 'Josef Sommer': 'Rothko', 'William Paterson': 'Bannerman', 'James Nolan': 'Liquor Proprietor', 'Maurice Argent': 'Sid Kleinman       (as Maurice S. Argent)'}\"\r\ntt0327056,\"{'Sean Penn': 'Jimmy Markum', 'Tim Robbins': 'Dave Boyle', 'Kevin Bacon': 'Sean Devine', 'Laurence Fishburne': 'Whitey Powers', 'Marcia Gay Harden': 'Celeste Boyle', 'Laura Linney': 'Annabeth Markum', 'Kevin Chapman': 'Val Savage', 'Tom Guiry': 'Brendan Harris       (as Thomas Guiry)', 'Emmy Rossum': 'Katie Markum', 'Spencer Treat Clark': 'Silent Ray Harris', 'Andrew Mackin': \"\"John O'Shea\"\", 'Adam Nelson': 'Nick Savage', 'Robert Wahlberg': 'Kevin Savage', \"\"Jenny O'Hara\"\": 'Esther Harris', 'John Doman': 'Driver'}\"\r\ntt0770752,\"{'Matthew McConaughey': 'Finn', 'Kate Hudson': 'Tess', 'Donald Sutherland': 'Nigel Honeycutt', 'Alexis Dziena': 'Gemma Honeycutt', 'Ewen Bremner': 'Alfonz', 'Ray Winstone': 'Moe Fitch', 'Kevin Hart': 'Bigg Bunny', 'Malcolm-Jamal Warner': 'Cordell', 'Brian Hooks': 'Curtis', 'David Roberts': 'Cyrus', 'Michael Mulheren': 'Eddie', 'Adam LeFevre': 'Gary', 'Rohan Nichol': 'Stefan', 'Roger Sciberras': 'Andras', 'Elizabeth Connolly': 'Precious Gem Crew Nurse'}\"\r\ntt0480249,\"{'Will Smith': 'Robert Neville', 'Alice Braga': 'Anna', 'Charlie Tahan': 'Ethan', 'Salli Richardson-Whitfield': 'Zoe Neville       (as Salli Richardson)', 'Willow Smith': 'Marley Neville', 'Darrell Foster': 'Mike - Military Escort', 'April Grace': 'TV Personality', 'Dash Mihok': 'Alpha Male', 'Joanna Numata': 'Alpha Female', 'Abbey': 'Sam       (as Abbey)', 'Kona': 'Sam', 'Samuel Glen': 'Military Driver - Jay', 'James McCauley': 'Male Evacuee', 'Marin Ireland': 'Woman Evacuee', 'Pedro Mojica': 'Sergeant'}\"\r\ntt0366548,\"{'Carlos Alazraqui': 'Nestor       (voice)', 'Lombardo Boyar': 'Raul       (voice)', 'Jeffrey Garcia': 'Rinaldo       (voice) (as Jeff Garcia)', 'Johnny A. Sanchez': 'Lombardo       (voice) (as Johnny Sanchez III)', 'Robin Williams': 'Ramon /              Lovelace       (voice)', 'Elijah Wood': 'Mumble       (voice)', 'Brittany Murphy': 'Gloria       (voice)', 'Hugh Jackman': 'Memphis       (voice)', 'Nicole Kidman': 'Norma Jean       (voice)', 'Hugo Weaving': 'Noah the Elder       (voice)', 'Elizabeth Daily': 'Baby Mumble       (voice) (as E.G. Daily)', 'Magda Szubanski': 'Miss Viola       (voice)', 'Miriam Margolyes': 'Mrs. Astrakhan       (voice)', 'Fat Joe': 'Seymour       (voice)', 'Alyssa Shafer': 'Baby Gloria       (voice)'}\"\r\ntt0066434,\"{'Robert Duvall': 'THX', 'Donald Pleasence': 'SEN', 'Don Pedro Colley': 'SRT', 'Maggie McOmie': 'LUH', 'Ian Wolfe': 'PTO', 'Marshall Efron': 'TWA', 'Sid Haig': 'NCH', 'John Pearce': 'DWY', 'Irene Cagen': 'IMM       (as Irene Forrest)', 'Gary Alan Marsh': 'CAM', 'John Seaton': 'OUE', 'Eugene I. Stillman': 'JOT', 'Jack Walsh': 'TRG       (as Raymond J. Walsh)', 'Mark Lawhead': 'Shell Dweller', 'Robert Feero': 'Chrome Robot'}\"\r\ntt0100133,\"{'Matthew Modine': 'Capt. Dennis Dearborn', 'Eric Stoltz': 'Sgt. Danny \"\"Danny Boy\"\" Daly', 'Tate Donovan': '1st Lt. Luke Sinclair', 'D.B. Sweeney': 'Lt. Phil Lowenthal', 'Billy Zane': 'Lt. Val \"\"Valentine\"\" Kozlowski', 'Sean Astin': 'Sgt. Richard \"\"Rascal\"\" Moore', 'Harry Connick Jr.': 'Sgt. Clay Busby', 'Reed Diamond': 'Sgt. Virgil Hoogesteger       (as Reed Edward Diamond)', 'Courtney Gains': 'Sgt. Eugene McVey', 'Neil Giuntoli': 'Sgt. Jack Bocci', 'David Strathairn': 'Col. Craig Harriman', 'John Lithgow': 'Lt.Col. Bruce Derringer', 'Jane Horrocks': 'Faith', 'Mac McDonald': 'Les       (as Mac Macdonald)', 'Jodie Brooke Wilson': 'Singer       (as Jodie Wilson)'}\"\r\ntt0084917,\"{'Robin Williams': 'Garp', 'Mary Beth Hurt': 'Helen Holm', 'Glenn Close': 'Jenny Fields', 'John Lithgow': 'Roberta Muldoon', 'Hume Cronyn': 'Mr. Fields', 'Jessica Tandy': 'Mrs. Fields', 'Swoosie Kurtz': 'The Hooker', 'James McCall': 'Young Garp', 'Peter Michael Goetz': 'John Wolfe', 'George Ede': 'Dean Bodger', 'Mark Soper': 'Michael Milton', 'Nathan Babcock': 'Duncan', 'Ian MacGregor': 'Walt', 'Warren Berlinger': 'Stew Percy', 'Susan Browning': 'Midge Percy'}\"\r\ntt0037913,\"{'Joan Crawford': 'Mildred Pierce Beragon', 'Jack Carson': 'Wally Fay', 'Zachary Scott': 'Monte Beragon', 'Eve Arden': 'Ida Corwin', 'Ann Blyth': 'Veda Pierce', 'Bruce Bennett': 'Bert Pierce', 'Lee Patrick': 'Mrs. Maggie Biederhof', 'Moroni Olsen': 'Inspector Peterson', 'Veda Ann Borg': 'Miriam Ellis', 'Jo Ann Marlowe': 'Kay Pierce'}\"\r\ntt0036098,\"{'Roddy McDowall': 'Joe Carraclough', 'Donald Crisp': 'Sam Carraclough', 'May Whitty': 'Dally       (as Dame May Whitty)', 'Edmund Gwenn': 'Rowlie', 'Nigel Bruce': 'Duke of Rudling', 'Elsa Lanchester': 'Mrs. Carraclough', 'Elizabeth Taylor': 'Priscilla', 'Ben Webster': \"\"Dan'l Fadden\"\", \"\"J. Pat O'Malley\"\": \"\"Hynes       (as J. Patrick O'Malley)\"\", 'Alan Napier': 'Jock', 'Arthur Shields': 'Andrew', 'John Rogers': 'Snickers', 'Alec Craig': 'Buckles', 'Pal': 'Lassie       (as Lassie)'}\"\r\ntt0239395,\"{'Jeff Goldblum': 'Professor Brody', 'Elizabeth Perkins': 'Mrs. Brody', 'Alexander Pollock': 'Scott Brody', 'Miriam Margolyes': 'Sophie', 'Myron Natwick': 'Mr. Mason', 'Doris Chillcott': 'Mrs. Calvert', 'Kirsten Robek': 'Pie Mom', 'Frank C. Turner': 'The Farmer', 'Mar Andersons': 'Guard at Gate', 'Gillian Barber': 'Factory Receptionist', 'Carol Ann Susi': \"\"Sophie's Sister\"\", 'Randi Kaplan': \"\"Sophie's Sister\"\", 'Mary Bogue': \"\"Sophie's Sister\"\", 'Alvin Sanders': 'Mason Employee', 'Mark Schooley': 'Mason Employee'}\"\r\ntt0103776,\"{'Michael Keaton': 'Batman /              Bruce Wayne', 'Danny DeVito': 'Penguin', 'Michelle Pfeiffer': 'Catwoman /              Selina', 'Christopher Walken': 'Max Shreck', 'Michael Gough': 'Alfred', 'Michael Murphy': 'Mayor', 'Cristi Conaway': 'Ice Princess', 'Andrew Bryniarski': 'Chip', 'Pat Hingle': 'Commissioner Gordon', 'Vincent Schiavelli': 'Organ Grinder', 'Steve Witting': 'Josh', 'Jan Hooks': 'Jen', 'John Strong': 'Sword Swallower', 'Rick Zumwalt': 'Tattooed Strongman', 'Anna Katarina': 'Poodle Lady'}\"\r\ntt0443649,\"{'Steven Strait': \"\"D'Leh\"\", 'Camilla Belle': 'Evolet', 'Cliff Curtis': \"\"Tic'Tic\"\", 'Joel Virgel': 'Nakudu', 'Affif Ben Badra': 'Warlord       (as Ben Badra)', 'Mo Zinal': \"\"Ka'Ren       (as Mo Zainal)\"\", 'Nathanael Baring': 'Baku', 'Mona Hammond': 'Old Mother', 'Marco Khan': 'One-Eye', 'Reece Ritchie': 'Moha', 'Joel Fry': \"\"Lu'kibu\"\", 'Omar Sharif': 'Narrator       (voice)', 'Kristian Beazley': \"\"D'Leh's Father\"\", 'Junior Oliphant': 'Tudu', \"\"Louise Tu'u\"\": \"\"Baku's Mother\"\"}\"\r\ntt0448011,\"{'Nicolas Cage': 'John Koestler', 'Chandler Canterbury': 'Caleb Koestler', 'Rose Byrne': 'Diana', 'Lara Robinson': 'Abby /              Lucinda', 'D.G. Maloney': 'The Stranger', 'Nadia Townsend': 'Grace', 'Alan Hopgood': 'Reverend Koestler', 'Adrienne Pickering': 'Allison', 'Joshua Long': 'Younger Caleb', 'Danielle Carter': 'Miss Taylor (1959)', 'Alethea McGrath': 'Miss Taylor (2009)', 'David Lennie': 'Principal Clark (1959)', 'Tamara Donnellan': \"\"Lucinda's Mother\"\", 'Travis Waite': \"\"Lucinda's Father\"\", 'Ben Mendelsohn': 'Phil Beckman'}\"\r\ntt1136608,\"{'Sharlto Copley': 'Wikus Van De Merwe', 'Jason Cope': 'Grey Bradnam - UKNR Chief Correspondent /              Christopher Johnson', 'Nathalie Boltt': 'Sarah Livingstone - Sociologist', 'Sylvaine Strike': 'Dr Katrina McKenzie', 'Elizabeth Mkandawie': 'Interviewee', 'John Sumner': 'Les Feldman - MIL Engineer', 'William Allen Young': 'Dirk Michaels', 'Greg Melvill-Smith': 'Interviewer', 'Nick Blake': 'Francois Moraneu - CIV Engineer Team', 'Morena Busa Sesatsa': 'Interviewee', 'Themba Nkosi': 'Interviewee', 'Mzwandile Nqoba': 'Interviewee', 'Barry Strydom': 'Interviewee', 'Jed Brophy': 'James Hope - Police Officer', 'Louis Minnaar': 'Piet Smit'}\"\r\ntt1097013,\"{'Donald Faison': 'Leo', 'Mike Epps': 'Brody', 'Wood Harris': 'Guch', 'Omari Hardwick': 'Shavoo', 'Emilio Rivera': 'Bodega', 'Darius McCrary': 'Buddy', 'Cisco Reyes': 'Jesus', 'Yasmin Deliz': 'Chita', 'Lobo Sebastian': 'Rhino', 'Malik Barnhardt': 'Hassie', 'Yasiin Bey': 'Eric       (as Mos Def)', 'Debbie Allen': 'Ms. Jackson', 'Lauren London': 'Ivy', 'Jo D. Jonz': 'Wade', 'Shawn Michael Howard': 'Derrick'}\"\r\ntt0464154,\"{'Richard Dreyfuss': 'Matt Boyd', 'Ving Rhames': 'Deputy Fallon', 'Elisabeth Shue': 'Julie Forester', 'Christopher Lloyd': 'Mr. Carl Goodman', 'Eli Roth': 'Wet T-Shirt Host', \"\"Jerry O'Connell\"\": 'Derrick Jones', 'Steven R. McQueen': 'Jake Forester', 'Jessica Szohr': 'Kelly', 'Kelly Brook': 'Danni', 'Riley Steele': 'Crystal', 'Adam Scott': 'Novak', 'Ricardo Chavira': 'Sam', 'Dina Meyer': 'Paula', 'Paul Scheer': 'Andrew', 'Brooklynn Proulx': 'Laura Forester'}\"\r\ntt0892318,\"{'Amanda Seyfried': 'Sophie', 'Marcia DeBonis': 'Lorraine', 'Gael García Bernal': 'Victor', 'Giordano Formenti': 'Viticoltore', 'Paolo Arvedi': 'Signor Ricci (Olive Farmer)', 'Dario Conti': 'Cheese Supplier', 'Ivana Lotito': 'Young Girl', 'Luisa Ranieri': 'Isabella', 'Marina Massironi': 'Francesca', 'Lidia Biondi': 'Donatella       (as Lydia Biondi)', 'Milena Vukotic': 'Maria', 'Luisa De Santis': 'Angelina', 'Christopher Egan': 'Charlie', 'Vanessa Redgrave': 'Claire', 'Remo Remotti': 'Farm House Lorenzo'}\"\r\ntt1655420,\"{'Michelle Williams': 'Marilyn Monroe', 'Eddie Redmayne': 'Colin Clark', 'Julia Ormond': 'Vivien Leigh', 'Kenneth Branagh': 'Sir Laurence Olivier', 'Pip Torrens': 'Sir Kenneth Clark', 'Geraldine Somerville': 'Lady Jane Clark', 'Michael Kitchen': 'Hugh Perceval', 'Miranda Raison': 'Vanessa', 'Karl Moffatt': 'Jack Cardiff', 'Simon Russell Beale': 'Cotes-Preedy', 'Toby Jones': 'Arthur Jacobs', 'Robert Portal': 'David Orton', 'Philip Jackson': 'Roger Smith', 'Jim Carter': 'Barry', 'Victor McGuire': 'Andy'}\"\r\ntt1637706,\"{'Paul Rudd': 'Ned', 'Nick Sullivan': 'Customer', 'Francesca Papalia': 'Sadie', 'Bob Stephenson': 'Officer Washburn', 'Elizabeth Banks': 'Miranda', 'Peter Hermann': 'Terry', 'Adam Scott': 'Jeremy', 'Kelly Briter': 'Girl with Jeremy', 'Rashida Jones': 'Cindy', 'Zooey Deschanel': 'Natalie', 'Emily Mortimer': 'Liz', 'Steve Coogan': 'Dylan', 'Kathryn Hahn': 'Janet', 'T.J. Miller': 'Billy', 'Shirley Knight': 'Ilene'}\"\r\ntt1262416,\"{'Lucy Hale': 'Sherrie', 'Roger Jackson': 'The Voice       (voice)', 'Shenae Grimes-Beech': 'Trudie       (as Shenae Grimes)', 'Dane Farwell': 'Ghostface', 'Anna Paquin': 'Rachel', 'Kristen Bell': 'Chloe', 'Aimee Teegarden': 'Jenny Randall', 'Britt Robertson': 'Marnie Cooper       (as Brittany Robertson)', 'Neve Campbell': 'Sidney Prescott', 'Alison Brie': 'Rebecca Walters', 'David Arquette': 'Dewey Riley', 'Courteney Cox': 'Gale Weathers-Riley', 'Hayden Panettiere': 'Kirby Reed', 'Emma Roberts': 'Jill Roberts', 'Marielle Jaffe': 'Olivia Morris'}\"\r\ntt1655442,\"{'Jean Dujardin': 'George Valentin', 'Bérénice Bejo': 'Peppy Miller', 'John Goodman': 'Al Zimmer', 'James Cromwell': 'Clifton', 'Penelope Ann Miller': 'Doris', 'Missi Pyle': 'Constance', 'Beth Grant': \"\"Peppy's Maid\"\", 'Ed Lauter': \"\"Peppy's Butler\"\", 'Joel Murray': 'Policeman Fire', 'Elizabeth Tulloch': 'Norma       (as Bitsie Tulloch)', 'Ken Davitian': 'Pawnbroker', 'Malcolm McDowell': 'The Butler', 'Basil Hoffman': 'Auctioneer', 'Bill Fagerbakke': 'Policeman Tuxedo', 'Nina Siemaszko': 'Admiring Woman       (as Nina Siemazko)'}\"\r\ntt1270761,\"{'Bruce Gleeson': 'Buggy Driver', 'Eddie Ritchard': 'Housekeeper       (as Edwina Ritchard)', 'Garry McDonald': 'Blackwood', 'Bailee Madison': 'Sally', 'Carolyn Shakespeare-Allen': 'Airport Cart Driver', 'Katie Holmes': 'Kim', 'Guy Pearce': 'Alex', 'Jack Thompson': 'Harris', 'Julia Blake': 'Mrs. Underhill', 'David Tocci': 'Workman', 'Lance Drisdale': 'Policeman', 'Nicholas Bell': 'Psychiatrist', 'Libby Gott': 'Nurse', 'James Mackay': 'Librarian', 'Emilia Burns': 'Caterer       (as Emelia Burns)'}\"\r\ntt1504320,\"{'Colin Firth': 'King George VI', 'Helena Bonham Carter': 'Queen Elizabeth', 'Derek Jacobi': 'Archbishop Cosmo Lang', 'Robert Portal': 'Equerry', 'Richard Dixon': 'Private Secretary', 'Paul Trussell': 'Chauffeur', 'Adrian Scarborough': 'BBC Radio Announcer', 'Andrew Havill': 'Robert Wood', 'Charles Armstrong': 'BBC Technician', 'Roger Hammond': 'Dr. Blandine Bentham', 'Geoffrey Rush': 'Lionel Logue', 'Calum Gittins': 'Laurie Logue', 'Jennifer Ehle': 'Myrtle Logue', 'Dominic Applewhite': 'Valentine Logue', 'Ben Wimsett': 'Anthony Logue'}\"\r\ntt0361748,\"{'Brad Pitt': 'Lt. Aldo Raine', 'Mélanie Laurent': 'Shosanna', 'Christoph Waltz': 'Col. Hans Landa', 'Eli Roth': 'Sgt. Donny Donowitz', 'Michael Fassbender': 'Lt. Archie Hicox', 'Diane Kruger': 'Bridget von Hammersmark', 'Daniel Brühl': 'Fredrick Zoller', 'Til Schweiger': 'Sgt. Hugo Stiglitz', 'Gedeon Burkhard': 'Cpl. Wilhelm Wicki', 'Jacky Ido': 'Marcel', 'B.J. Novak': 'Pfc. Smithson Utivich', 'Omar Doom': 'Pfc. Omar Ulmer', 'August Diehl': 'Major Hellstrom', 'Denis Ménochet': 'Perrier LaPadite', 'Sylvester Groth': 'Joseph Goebbels'}\"\r\ntt1311067,\"{'Sheri Moon Zombie': 'Deborah Myers', 'Chase Wright Vanek': 'Young Michael       (as Chase Vanek)', 'Scout Taylor-Compton': 'Laurie Strode', 'Brad Dourif': 'Sheriff Lee Brackett', 'Caroline Williams': 'Dr. Maple', 'Malcolm McDowell': 'Dr. Samuel Loomis', 'Tyler Mane': 'Michael Myers', 'Dayton Callie': 'Coroner Hooks', 'Richard Brake': 'Gary Scott', 'Octavia Spencer': 'Nurse Daniels', 'Danielle Harris': 'Annie Brackett', 'Richard Riehle': 'Buddy the Night Watchman', 'Margot Kidder': 'Barbara Collier', 'Mary Birdsong': 'Nancy McDonald', 'Brea Grant': 'Mya Rockwell'}\"\r\ntt0489049,\"{'Sam Huntington': 'Eric', 'Chris Marquette': 'Linus', 'Dan Fogler': 'Hutch', 'Jay Baruchel': 'Windows', 'Kristen Bell': 'Zoe', 'David Denman': 'Chaz', 'Christopher McDonald': 'Big Chuck       (as Chris McDonald)', 'Charlie B. Brown': 'Myron', 'Isaac Kappy': 'Garfunkel', 'Stephen Pina': 'Simon', 'Seth Rogen': 'Admiral Seasholtz /              Alien /              Roach', 'Tarek Bishara': 'The Vulcan /              Gruvock       (as Thom Bishops)', 'Clark Sanchez': 'Bartender', 'Stanley Shunkamolah': 'Thick-Necked Thug', 'Danny Trejo': 'The Chief'}\"\r\ntt0976222,\"{'Aly Michalka': 'Charlotte', 'Vanessa Hudgens': 'Sa5m', 'Gaelan Connell': 'Will', 'Scott Porter': 'Ben Wheatly', 'Ryan Donowho': 'Basher', 'Charlie Saxton': 'Bug', 'Lisa Kudrow': 'Karen', 'Tim Jo': 'Omar', 'Elvy': 'Irene (Cello)       (as Elvy Yost)', 'Lisa Chung': 'Kim Lee (Keyboards)', 'J.W. Wright': 'Dylan Dyer (Glory Dogs Guitar)       (as J.W. Wright II)', 'Blair Bomar': 'Megan', 'Casey Williams': 'Ms. Wittenberg', 'Maggie Maye': 'Kyra 17-1', 'Jennifer Blair': \"\"Kyra's Friend\"\"}\"\r\ntt0375568,\"{'Charlize Theron': \"\"'Our Friends' Narrator       (voice)\"\", 'Freddie Highmore': 'Astro /              Toby       (voice)', 'Ryan Stiles': 'Mr. Moustachio /              Burning Robot       (voice)', 'Eugene Levy': 'Orrin       (voice)', 'Nicolas Cage': 'Dr. Tenma       (voice)', 'Donald Sutherland': 'President Stone       (voice)', 'Bill Nighy': 'Dr. Elefun /              Robotsky       (voice)', 'David Alan Grier': 'Mr. Squirt /              Math Cowboy /              Boxer Robot       (voice)', 'Alan Tudyk': 'Mr. Squeegee /              Scrapheap Head /              Stinger Two       (voice)', 'Newell Alexander': 'General Heckler       (voice)', 'Bob Logan': 'Stinger One       (voice)', 'Dee Bradley Baker': 'Trashcan       (voice)', 'Kristen Bell': 'Cora       (voice)', 'Moises Arias': 'Zane       (voice)', 'Sterling Beaumon': 'Sludge       (voice)'}\"\r\ntt1315981,\"{'Colin Firth': 'George', 'Julianne Moore': 'Charley', 'Nicholas Hoult': 'Kenny', 'Matthew Goode': 'Jim', 'Jon Kortajarena': 'Carlos', 'Paulette Lamori': 'Alva', 'Ryan Simpkins': 'Jennifer Strunk', 'Ginnifer Goodwin': 'Mrs. Strunk', 'Teddy Sears': 'Mr. Strunk', 'Paul Butler': 'Christopher Strunk', 'Aaron Sanders': 'Tom Strunk', 'Aline Weber': 'Lois', 'Keri Lynn Pratt': 'Blonde Secretary', 'Jenna Gavigan': 'Other Secretary #1', 'Alicia Carr': 'Other Secretary #2'}\"\r\ntt1951264,\"{'Jennifer Lawrence': 'Katniss Everdeen', 'Liam Hemsworth': 'Gale Hawthorne', 'Jack Quaid': 'Marvel', 'Taylor St. Clair': 'Ripper', 'Sandra Ellis Lafferty': 'Greasy Sae       (as Sandra Lafferty)', 'Woody Harrelson': 'Haymitch Abernathy', 'Josh Hutcherson': 'Peeta Mellark', 'Paula Malcomson': \"\"Katniss' Mother\"\", 'Willow Shields': 'Primrose Everdeen', 'Donald Sutherland': 'President Snow', 'Elizabeth Banks': 'Effie Trinket', 'Bruce Bundy': 'Octavia', 'Nelson Ascencio': 'Flavius', 'Lenny Kravitz': 'Cinna', 'Stanley Tucci': 'Caesar Flickerman'}\"\r\ntt0977855,\"{'Naomi Watts': 'Valerie Plame', 'Sonya Davison': 'Chanel Suit', 'Vanessa Chong': 'Tabir Secretary #1', 'Anand Tiwari': 'Hafiz', 'Stephanie Chai': 'Tabir Secretary #2', 'Sean Penn': 'Joe Wilson', 'Ty Burrell': 'Fred', 'Jessica Hecht': 'Sue', 'Norbert Leo Butz': 'Steve', 'Rebecca Rigg': 'Lisa', 'Brooke Smith': 'Diana', 'Tom McCarthy': 'Jeff', 'Ashley Gerasimovich': 'Samantha Wilson', 'Quinn Broggy': 'Trevor Wilson', 'Nicholas Sadler': 'CIA Tour Leader'}\"\r\ntt1860355,\"{\"\"Montrail 'Money' Brown\"\": 'Himself', 'O.C. Brown': 'Himself', 'Bill Courtney': 'Himself', 'Chavis Daniels': 'Himself', 'Jeff Germany': 'Himself'}\"\r\ntt1509767,\"{'Matthew Macfadyen': 'Athos', 'Milla Jovovich': 'Milady de Winter', 'Helen George': 'Blonde', 'Christian Oliver': 'Venetian Nobleman', 'Luke Evans': 'Aramis', 'Ray Stevenson': 'Porthos', 'Til Schweiger': 'Cagliostro', 'Markus Brandl': 'Sergeant Venetian Guard', 'Orlando Bloom': 'Duke of Buckingham', 'Logan Lerman': \"\"D'Artagnan\"\", 'Dexter Fletcher': \"\"D'Artagnan's Father\"\", 'Jane Perry': \"\"D'Artagnan's Mother\"\", 'Mads Mikkelsen': 'Rochefort', 'Andy Gathergood': 'Drunk', 'Susanne Wolff': 'Cougar'}\"\r\ntt1007029,\"{'Meryl Streep': 'Margaret Thatcher', 'Jim Broadbent': 'Denis Thatcher', 'Susan Brown': 'June - Housekeeper', 'Alice da Cunha': 'Cleaner', 'Phoebe Waller-Bridge': \"\"Susie - Margaret's Secretary\"\", 'Iain Glen': 'Alfred Roberts', 'Alexandra Roach': 'Young Margaret Thatcher', 'Victoria Bewick': 'Muriel Roberts', 'Emma Dewhurst': 'Beatrice Roberts', 'Olivia Colman': 'Carol Thatcher', 'Harry Lloyd': 'Young Denis Thatcher', 'Sylvestra Le Touzel': 'Hostess 1949', 'Michael Culkin': 'Host 1949', 'Stephanie Jacob': 'Female Guest 1949', 'Robert Portal': 'Grey Suited Guest - 1949'}\"\r\ntt1093357,\"{'Emile Hirsch': 'Sean', 'Olivia Thirlby': 'Natalie', 'Max Minghella': 'Ben', 'Rachael Taylor': 'Anne', 'Joel Kinnaman': 'Skyler', 'Veronika Vernadskaya': 'Vika', 'Dato Bakhtadze': 'Sergei', 'Yuriy Kutsenko': 'Matvei       (as Gosha Kutsenko)', 'Nikolay Efremov': 'Sasha       (as Nikolai Efremov)', 'Georgiy Gromov': 'Boris       (as Georgy Gromov)', 'Artur Smolyaninov': 'Yuri       (as Arthur Smoljaninov)', 'Anna Rudakova': 'Tess       (as Anna Roudakova)', 'Pyotr Fyodorov': 'Anton Batkin       (as Petr Fedorov)', 'Ivan Gromov': 'Bartender No. 1', 'Aleksandr Chernykh': 'Bartender No. 2       (as Alexsandr Chernyh)'}\"\r\ntt1045658,\"{'Bradley Cooper': 'Pat', 'Jennifer Lawrence': 'Tiffany', 'Robert De Niro': 'Pat Sr.', 'Jacki Weaver': 'Dolores', 'Chris Tucker': 'Danny', 'Anupam Kher': 'Dr. Cliff Patel', 'John Ortiz': 'Ronnie', 'Shea Whigham': 'Jake', 'Julia Stiles': 'Veronica', 'Paul Herman': 'Randy', 'Dash Mihok': 'Officer Keogh', 'Matthew Russell': \"\"Ricky D'Angelo\"\", 'Cheryl Williams': \"\"Tiffany's Mother\"\", 'Patrick McDade': \"\"Tiffany's Father       (as Patrick Mcdade)\"\", 'Brea Bee': 'Nikki'}\"\r\ntt1673434,\"{'Kristen Stewart': 'Bella Swan', 'Robert Pattinson': 'Edward Cullen', 'Taylor Lautner': 'Jacob Black', 'Peter Facinelli': 'Dr. Carlisle Cullen', 'Elizabeth Reaser': 'Esme Cullen', 'Ashley Greene': 'Alice Cullen', 'Jackson Rathbone': 'Jasper Hale', 'Kellan Lutz': 'Emmett Cullen', 'Nikki Reed': 'Rosalie Hale', 'Billy Burke': 'Charlie Swan', 'Chaske Spencer': 'Sam Uley', 'Mackenzie Foy': 'Renesmee', 'Maggie Grace': 'Irina', 'Jamie Campbell Bower': 'Caius', 'Christopher Heyerdahl': 'Marcus'}\"\r\ntt1321860,\"{'Mel Gibson': 'Walter Black', 'Cherry Jones': 'Vice President', 'Jodie Foster': 'Meredith Black', 'Anton Yelchin': 'Porter Black', 'Riley Thomas Stewart': 'Henry Black', 'Zachary Booth': 'Jared', 'Jennifer Lawrence': 'Norah', 'Jeff Corbett': 'Volunteer Dad', 'Baylen Thomas': 'Skeptical Man', 'Sam Breslin Wright': 'Man', 'Kelly Coffield Park': \"\"Norah's Mom\"\", 'Michael Rivera': 'Hector', 'Kris Arnold': 'Waiter', 'Elizabeth Kaledin': 'Reporter', 'Matt Lauer': 'Matt Lauer'}\"\r\ntt1517489,\"{'Jessica Alba': 'Marissa Wilson', 'Joel McHale': 'Wilbur Wilson', 'Rowan Blanchard': 'Rebecca Wilson', 'Mason Cook': 'Cecil Wilson', 'Jeremy Piven': \"\"Danger D'Amo /              Tick Tock /              Time Keeper\"\", 'Alexa PenaVega': 'Carmen Cortez       (as Alexa Vega)', 'Daryl Sabara': 'Juni Cortez', 'Danny Trejo': 'Uncle Machete', 'Belle Solorzano': 'Spy Baby', 'Genny Solorzano': 'Spy Baby', 'Ricky Gervais': 'Argonaut       (voice)', 'Elmo': 'Argonaut', 'Jett Good': 'Young Danger', 'Chuck Cureau': 'News Anchor', 'Albert Im': 'Head Scientist'}\"\r\ntt0945513,\"{'Jake Gyllenhaal': 'Colter Stevens', 'Michelle Monaghan': 'Christina Warren', 'Vera Farmiga': 'Colleen Goodwin', 'Jeffrey Wright': 'Dr. Rutledge', 'Michael Arden': 'Derek Frost', 'Cas Anvar': 'Hazmi', 'Russell Peters': 'Max Denoff', 'Brent Skagford': 'George Troxel', 'Craig Thomas': 'Gold Watch Executive', 'Gordon Masten': 'Conductor', 'Susan Bain': 'Nurse', 'Paula Jean Hixson': 'Coffee Mug Lady', 'Lincoln Ward': 'Minister Sudoku', 'Kyle Gatehouse': 'College Student', 'Albert Kwan': 'Soda Can Guy'}\"\r\ntt1502404,\"{'Nicolas Cage': 'Milton', 'Amber Heard': 'Piper', 'William Fichtner': 'The Accountant', 'Billy Burke': 'Jonah King', 'David Morse': 'Webster', 'Todd Farmer': 'Frank', 'Christa Campbell': 'Mona', 'Charlotte Ross': 'Candy', 'Tom Atkins': 'Cap', 'Jack McGee': 'Fat Lou', 'Katy Mixon': 'Norma Jean', 'Wanetah Walmsley': 'American Indian Mother', 'Robin McGee': 'Guy with Camera Phone', 'Fabian C. Moreno': 'Latino Busboy       (as Fabian Moreno)', 'Edrick Browne': 'Rookie'}\"\r\ntt1682181,\"{\"\"Ja'Meya Jackson\"\": 'Herself', 'Kelby Johnson': 'Herself', 'Lona Johnson': 'Herself', 'Bob Johnson': 'Himself', 'Alex Libby': 'Himself', 'Jackie Libby': 'Herself', 'Philip Libby': 'Himself', 'Maya Libby': 'Herself', 'Jada Libby': 'Herself', 'Ethan Libby': 'Himself', 'Logan Libby': 'Himself', 'Kim Lockwood': 'Herself', 'David Long': 'Himself', 'Tina Long': 'Herself', 'Teryn Long': 'Herself'}\"\r\ntt1586265,\"{'Cameron Diaz': 'Jules', 'Jennifer Lopez': 'Holly', 'Elizabeth Banks': 'Wendy', 'Chace Crawford': 'Marco', 'Brooklyn Decker': 'Skyler', 'Ben Falcone': 'Gary', 'Anna Kendrick': 'Rosie', 'Matthew Morrison': 'Evan', 'Dennis Quaid': 'Ramsey', 'Chris Rock': 'Vic', 'Rodrigo Santoro': 'Alex', 'Joe Manganiello': 'Davis', 'Rob Huebel': 'Gabe', 'Thomas Lennon': 'Craig       (as Tom Lennon)', 'Amir Talai': 'Patel'}\"\r\ntt0431021,\"{'Jeffrey Dean Morgan': 'Clyde', 'Kyra Sedgwick': 'Stephanie', 'Natasha Calis': 'Em', 'Madison Davenport': 'Hannah', 'Matisyahu': 'Tzadok', 'Grant Show': 'Brett', 'Rob LaBelle': 'Russell', 'Nana Gbewonyo': 'Darius', 'Anna Hagan': 'Eleanor', 'Brenda Crichlow': 'Miss Shandy       (as Brenda M. Crichlow)', 'Jay Brazeau': 'Professor McMannis', 'Iris Quinn': 'Doctor', 'Graeme Duffy': 'Lab Tech', 'David Hovan': 'Adan', 'Chris Shields': 'Assistant Coach'}\"\r\ntt1764651,\"{'Sylvester Stallone': 'Barney Ross', 'Jason Statham': 'Lee Christmas', 'Jet Li': 'Yin Yang', 'Dolph Lundgren': 'Gunner Jensen', 'Chuck Norris': 'Booker', 'Jean-Claude Van Damme': 'Vilain', 'Bruce Willis': 'Church', 'Arnold Schwarzenegger': 'Trench', 'Terry Crews': 'Hale Caesar', 'Randy Couture': 'Toll Road', 'Liam Hemsworth': 'Billy The Kid', 'Scott Adkins': 'Hector', 'Nan Yu': 'Maggie', 'Amanda Ooms': 'Pilar', 'Charisma Carpenter': 'Lacy'}\"\r\ntt1259521,\"{'Kristen Connolly': 'Dana', 'Chris Hemsworth': 'Curt', 'Anna Hutchison': 'Jules', 'Fran Kranz': 'Marty', 'Jesse Williams': 'Holden', 'Richard Jenkins': 'Sitterson', 'Bradley Whitford': 'Hadley', 'Brian White': 'Truman', 'Amy Acker': 'Lin', 'Tim DeZarn': 'Mordecai', 'Tom Lenk': 'Ronald The Intern', 'Dan Payne': 'Mathew Buckner', 'Jodelle Ferland': 'Patience Buckner', 'Dan Shea': 'Father Buckner', 'Maya Massar': 'Mother Buckner'}\"\r\ntt1800741,\"{'Cleopatra Coleman': 'Penelope', 'Ryan Guzman': 'Sean', 'Misha Gabriel Hamilton': 'Eddy       (as Misha Gabriel)', \"\"Michael 'Xeno' Langebeck\"\": 'Mercury', 'Stephen Boss': \"\"Jason       (as Stephen 'tWitch' Boss)\"\", 'Claudio Pinto': 'Francisco', 'Nicole Dabeau': 'Newscaster', 'Chris Charles Herbert': 'Lamborghini Driver       (as Chris Charles)', 'Katie Peterson': 'People by the Ocean', 'Alejandro Posada': 'People by the Ocean', 'Marc Macaulay': 'Uniformed Cop', 'Tommy Dewey': 'Trip', 'Kathryn McCormick': 'Emily', 'Mario Ernesto Sánchez': 'Ricky', 'Sabina V. Gomez': \"\"Ricky's Mother\"\"}\"\r\ntt1212450,\"{'Shia LaBeouf': 'Jack Bondurant', 'Tom Hardy': 'Forrest Bondurant', 'Jason Clarke': 'Howard Bondurant', 'Guy Pearce': 'Charley Rakes', 'Jessica Chastain': 'Maggie Beaufort', 'Mia Wasikowska': 'Bertha Minnix', 'Dane DeHaan': 'Cricket Pate', 'Chris McGarry': 'Danny', 'Tim Tolin': 'Mason Wardell', 'Gary Oldman': 'Floyd Banner', 'Lew Temple': 'Deputy Henry Abshire', 'Marcus Hester': 'Deputy Jeff Richards', 'Bill Camp': 'Sheriff Hodges', 'Alex Van': 'Tizwell Minnix', 'Noah Taylor': 'Gummy Walsh'}\"\r\ntt1764234,\"{'Brad Pitt': 'Jackie', 'Scoot McNairy': 'Frankie', 'Ben Mendelsohn': 'Russell', 'James Gandolfini': 'Mickey', 'Richard Jenkins': 'Driver', 'Vincent Curatola': 'Johnny Amato', 'Ray Liotta': 'Markie Trattman', 'Trevor Long': 'Steve Caprio', 'Max Casella': 'Barry Caprio', 'Sam Shepard': 'Dillon', 'Slaine': 'Kenny Gill', 'Linara Washington': 'Hooker', 'Ross Brodar': 'Poker Guy', 'Wade Allen': 'Business Suit Agent', 'Christopher Berry': 'Cab Driver Agent'}\"\r\ntt1599348,\"{'Denzel Washington': 'Tobin Frost', 'Ryan Reynolds': 'Matt Weston', 'Vera Farmiga': 'Catherine Linklater', 'Brendan Gleeson': 'David Barlow', 'Sam Shepard': 'Harlan Whitford', 'Rubén Blades': 'Carlos Villar', 'Nora Arnezeder': 'Ana Moreau', 'Robert Patrick': 'Daniel Kiefer', 'Liam Cunningham': 'Alec Wade', 'Joel Kinnaman': 'Keller', 'Fares Fares': 'Vargas', 'Jenna Dover': 'CIA Analyst', 'Stephen Rider': 'CIA Analyst', 'Daniel Fox': 'CIA Analyst', 'Tracie Thoms': 'CIA Analyst'}\"\r\ntt1568338,\"{'Sam Worthington': 'Nick Cassidy', 'Mandy Gonzalez': 'Manager', 'William Sadler': 'Valet', 'Barbara Marineau': 'Screaming Woman', 'J. Smith-Cameron': 'Psychiatrist', 'Anthony Mackie': 'Mike Ackerman', 'Patrick Collins': 'Father Leo', 'Jamie Bell': 'Joey Cassidy', 'Genesis Rodriguez': 'Angie', 'Afton Williamson': 'Janice Ackerman', 'Robert Clohessy': 'Prison Guard', 'Joe Lisi': 'Desk Sergeant', 'Candice McKoy': 'Cop - Bullhorn', 'Edward Burns': 'Jack Dougherty       (as Ed Burns)', 'Johnny Solo': 'Cop - Room       (as John Solo)'}\"\r\ntt1838544,\"{'Amanda Seyfried': 'Jill', 'Daniel Sunjata': 'Powers', 'Jennifer Carpenter': 'Sharon Ames', 'Sebastian Stan': 'Billy', 'Wes Bentley': 'Peter Hood', 'Nick Searcy': 'Mr. Miller', 'Socratis Otto': 'Jim', 'Emily Wickersham': 'Molly', 'Joel David Moore': 'Nick Massey', 'Katherine Moennig': 'Erica Lonsdale', 'Michael Paré': 'Lt. Ray Bozeman', 'Sam Upton': 'Officer McKay', 'Ted Rooney': 'Henry Massey', 'Erin Carufel': 'Officer Ash', 'Amy Argyle': 'Tanya Muslin       (as Amy Lawhorn)'}\"\r\ntt1343727,\"{'Karl Urban': 'Judge Dredd', 'Rachel Wood': 'Control Operator 1', 'Andile Mngadi': 'Passenger', 'Porteus Xandau': 'Driver', 'Jason Cope': 'Zwirner', 'Emma Breschi': 'Hostage', 'Olivia Thirlby': 'Anderson', 'Rakie Ayola': 'Chief Judge', 'Lena Headey': 'Ma-Ma', 'Tamer Burjaq': 'Ma-Ma Bodyguard', 'Warrick Grier': 'Caleb', 'Wood Harris': 'Kay', 'Shoki Mokgapa': 'Woman with Child', 'Yohan Chun': 'Girl in Window', 'Eden Knowles': 'Girl in Window'}\"\r\ntt1920849,\"{'Kirsten Dunst': 'Regan', 'Rebel Wilson': 'Becky', 'Lizzy Caplan': 'Gena', 'Paul Corning': 'Jack Johnson Guy       (as Paul Corning Jr.)', 'Isla Fisher': 'Katie', 'Andrew Rannells': 'Manny', 'Anna Rose Hopkins': 'Club Monaco Customer', 'Sue Jean Kim': 'Wedding Planner', 'Horatio Sanz': 'Barely Attractive Guy', 'Hayes MacArthur': 'Dale', 'Kyle Bornheimer': 'Joe', 'James Marsden': 'Trevor', 'Ann Dowd': 'Victoria', 'Adam Scott': 'Clyde', 'Ella Rae Peck': 'Stefanie'}\"\r\ntt0795461,\"{'Ashley Tisdale': 'Jody', 'Simon Rex': 'Dan', 'Gracie Whitton': 'Kathy', 'Ava Kolker': 'Lily', 'Dylan Morris': 'Aidan', 'Ryan Morris': 'Aidan', 'Lidia Porto': 'Maria', 'Darrell Hammond': 'Dr. Hall', 'Snoop Dogg': \"\"Ja' Marcus\"\", 'Mac Miller': \"\"D'Andre\"\", 'Erica Ash': 'Kendra Brooks', 'J.P. Manoux': 'Pierre', 'Molly Shannon': 'Heather Daltry', 'Josh Robert Thompson': 'Narrator       (voice)', 'Marisa Saks': 'Amy'}\"\r\ntt1327773,\"{'Forest Whitaker': 'Cecil Gaines', 'David Banner': 'Earl Gaines', 'Michael Rainey Jr.': 'Cecil Gaines (8)', 'LaJessie Smith': 'Abraham', 'Mariah Carey': 'Hattie Pearl', 'Alex Pettyfer': 'Thomas Westfall', 'Vanessa Redgrave': 'Annabeth Westfall', 'Aml Ameen': 'Cecil Gaines (15)', 'Clarence Williams III': 'Maynard', 'John P. Fertitta': 'Mr. Jenkins       (as John Fertitta)', 'Jim Gleason': 'R.D. Warner', 'Oprah Winfrey': 'Gloria Gaines', 'Isaac White': 'Charlie Gaines (10)', 'David Oyelowo': 'Louis Gaines', 'Joe Chrest': 'White Usher'}\"\r\ntt2334649,\"{'Michael B. Jordan': 'Oscar Grant', 'Melonie Diaz': 'Sophina', 'Octavia Spencer': 'Wanda', 'Kevin Durand': 'Officer Caruso', 'Chad Michael Murray': 'Officer Ingram', \"\"Ahna O'Reilly\"\": 'Katie', 'Ariana Neal': 'Tatiana', 'Keenan Coogler': 'Cato', 'Trestin George': 'Brandon', 'Joey Oglesby': 'Cale', 'Michael James': 'Carlos', 'Marjorie Crump-Shears': 'Grandma Bonnie       (as Marjorie Shears)', 'Destiny Ekwueme': 'Chantay', 'Bianca Rodriguez III': 'Vanessa       (as Bianca Rodriguez)', 'Julian Keyes': 'Kris'}\"\r\ntt0075148,\"{'Sylvester Stallone': 'Rocky', 'Talia Shire': 'Adrian', 'Burt Young': 'Paulie', 'Carl Weathers': 'Apollo', 'Burgess Meredith': 'Mickey', 'Thayer David': 'Jergens', 'Joe Spinell': 'Gazzo', 'Jimmy Gambina': 'Mike', 'Bill Baldwin': 'Fight Announcer', 'Al Silvani': 'Cut Man       (as Al Salvani)', 'George Memmoli': 'Ice Rink Attendant', 'Jodi Letizia': 'Marie', 'Diana Lewis': 'TV Commentator', \"\"George O'Hanlon\"\": 'TV Commentator', 'Larry Carroll': 'TV Interviewer'}\"\r\ntt1245526,\"{'Bruce Willis': 'Frank Moses', 'Mary-Louise Parker': 'Sarah Ross', 'Heidi von Palleske': 'Woman Neighbor', 'Jefferson Brown': 'Fred', 'Karl Urban': 'William Cooper', 'Chris Owens': 'Hanged Man', 'Rebecca Pidgeon': 'Cynthia Wilkes', 'Morgan Freeman': 'Joe Matheson', 'Jaqueline Fleming': 'Marna', 'Randy Wade Kelley': 'Paramedic', 'Jason Giuliano': 'Endercott', 'Alec Rayme': 'Cop at Intersection', 'Lawrence Turner': 'Retirement Home Assassin', 'Emily Kuroda': 'Mrs. Chan', 'Joe Chrest': 'Retirement Home Detective'}\"\r\ntt0102753,\"{'Laura Dern': 'Rose', 'Robert Duvall': 'Daddy', 'Diane Ladd': 'Mother', 'Lukas Haas': 'Buddy', 'John Heard': 'Willcox Hillyer', 'Kevin Conway': 'Dr. Martinson', 'Robert John Burke': 'Dave Wilkie       (as Robert Burke)', 'Lisa Jakub': 'Doll', 'Evan Lockwood': 'Waski', 'Taylor Sutherland': 'Billy       (as Matt Sutherland)', 'D. Anthony Pender': 'Foster', 'David E. Scarborough': 'Horton', 'Robin Robertson': 'Young Salesman       (as Robin Dale Robertson)', 'General Fermon Judd Jr.': 'Shadrack', 'Richard K. Olsen': 'Chief of Police'}\"\r\ntt0053604,\"{'Jack Lemmon': 'C.C. Baxter', 'Shirley MacLaine': 'Fran Kubelik', 'Fred MacMurray': 'Jeff D. Sheldrake', 'Ray Walston': 'Joe Dobisch', 'Jack Kruschen': 'Dr. Dreyfuss', 'David Lewis': 'Al Kirkeby', 'Hope Holiday': 'Mrs. Margie MacDougall', 'Joan Shawlee': 'Sylvia', 'Naomi Stevens': 'Mrs. Mildred Dreyfuss', 'Johnny Seven': 'Karl Matuschka', 'Joyce Jameson': 'The Blonde', 'Willard Waterman': 'Mr. Vanderhoff', 'David White': 'Mr. Eichelberger', 'Edie Adams': 'Miss Olsen'}\"\r\ntt0367085,\"{'Tom Arnold': 'Mr. Hunkee', 'Kevin Hart': 'Nashawn', 'Method Man': 'Muggsy', 'Snoop Dogg': 'Captain Mack', 'K.D. Aubert': 'Giselle', 'Godfrey': 'Gaeman', 'Brian Hooks': 'DJ', 'D.L. Hughley': 'Johnny', 'Arielle Kebbel': 'Heather Hunkee', 'Loni Love': 'Shaniece', \"\"Mo'Nique\"\": 'Jamiqua', 'Ryan Pinkston': 'Billy Hunkee', 'Missi Pyle': 'Barbara', 'Sommore': 'Cherry', 'Sofía Vergara': 'Blanca       (as Sofia Vergara)'}\"\r\ntt0067411,\"{'Warren Beatty': 'John McCabe', 'Julie Christie': 'Constance Miller', 'Rene Auberjonois': 'Sheehan', 'William Devane': 'The Lawyer', 'John Schuck': 'Smalley', 'Corey Fischer': 'Mr. Elliott', 'Bert Remsen': 'Bart Coyle', 'Shelley Duvall': 'Ida Coyle', 'Keith Carradine': 'Cowboy', 'Michael Murphy': 'Sears', 'Antony Holland': 'Hollander', 'Hugh Millais': 'Butler', 'Manfred Schulz': 'Kid', 'Jace Van Der Veen': 'Breed       (as Jace Vander Veen)', 'Jackie Crossland': 'Lily'}\"\r\ntt0478197,\"{'Leonard Cohen': 'Himself', 'Martha Wainwright': 'Herself', 'Beth Orton': 'Herself', 'Jarvis Cocker': 'Himself', 'Rufus Wainwright': 'Himself', 'Nick Cave': 'Himself', 'Perla Batalla': 'Herself', 'Julie Christensen': 'Herself', 'Anohni': 'Himself       (as Antony)', 'Linda Thompson': 'Herself', 'Teddy Thompson': 'Himself', 'Kate McGarrigle': 'Herself', 'Anna McGarrigle': 'Herself', 'The Handsome Family': 'Themselves', 'Hal Willner': 'Himself - Music Producer'}\"\r\ntt0117108,\"{'Michael Keaton': 'Doug Kinney', 'Andie MacDowell': 'Laura Kinney', 'Zack Duhame': 'Zack Kinney', 'Katie Schlossberg': 'Jennifer Kinney', 'Harris Yulin': 'Dr. Leeds', 'Richard Masur': 'Del King', 'Eugene Levy': 'Vic', 'Ann Cusack': 'Noreen', 'John de Lancie': 'Ted', 'Judith Kahan': 'Franny', 'Brian Doyle-Murray': 'Walt', 'Obba Babatundé': 'Paul', 'Julie Bowen': 'Robin', 'Dawn Maxey': 'Beth', 'Kari Coleman': 'Patti'}\"\r\ntt0226009,\"{'Matt Frewer': 'Al Fisher', 'Mary Gross': 'Patti Fisher', 'Kevin Mundy': 'Adam Fisher', 'Reagan Pasternak': 'Amber', 'Aly Purrott-Armstrong': 'Gynger       (as Alycia Purrott)', 'Scott McCord': 'Chuck Clopperman', 'Mo Gaffney': 'Lydia Stone', 'John Anderson': 'Reporter #3', 'James Binkley': 'Crazed Cell Mate', 'Joe Bostick': 'Salacious Juror', 'Melanie Boyko': 'Dancer #1', 'Katherine Caldwell': 'Dancer #2', 'John Henry Canavan': 'Johnny', 'Vanessa Cobham': 'Dancer #3', 'Tiffany Deriveau': 'Penny'}\"\r\ntt1341167,\"{'Riz Ahmed': 'Omar', 'Arsher Ali': 'Hassan', 'Nigel Lindsay': 'Barry', 'Kayvan Novak': 'Waj', 'Adeel Akhtar': 'Faisal', 'Julia Davis': 'Alice', 'Craig Parkinson': 'Matt', 'Preeya Kalidas': 'Sofia', 'Wasim Zakir': 'Ahmed', 'Mohamad Akil': 'Mahmood       (as Mohammad Aqil)', 'Karl Seth': 'Uncle Imran', 'Waleed Elgadi': 'Khalid       (as Willliam El-Gardi)', 'Alex Macqueen': 'Malcolm Storge MP       (as Alex MacQueen)', 'Shameem Ahmad': 'Chairwoman', 'Jonathan Maitland': 'Newsreader       (as Jonny Maitland)'}\"\r\ntt0348333,\"{'Ryan Reynolds': 'Monty', 'Anna Faris': 'Serena', 'Justin Long': 'Dean', 'David Koechner': 'Dan', 'Luis Guzmán': 'Raddimus', 'Chi McBride': 'Bishop', 'John Francis Daley': 'Mitch', 'Kaitlin Doubleday': 'Amy', 'Rob Benedict': 'Calvin       (as Robert Patrick Benedict)', 'Alanna Ubach': 'Naomi', 'Vanessa Lengies': 'Natasha', 'Max Kasch': 'T-Dog', 'Andy Milonakis': 'Nick', 'Dane Cook': 'Floyd', 'Jordan Ladd': 'Danielle'}\"\r\ntt0338095,\"{'Cécile de France': 'Marie       (as Cécile De France)', 'Maïwenn': 'Alexia', 'Philippe Nahon': 'Le tueur', 'Franck Khalfoun': 'Jimmy', 'Andrei Finti': 'Père Alex', 'Oana Pellea': 'Mère Alex', 'Marco Claudiu Pascu': 'Tom', 'Jean-Claude de Goros': 'Capitaine Gendarmerie', 'Bogdan Uritescu': 'Gendarme', 'Gabriel Spahiu': 'Homme voiture'}\"\r\ntt0344510,\"{'Audrey Tautou': 'Mathilde', 'Gaspard Ulliel': 'Manech', 'Dominique Pinon': 'Sylvain', 'Chantal Neuwirth': 'Bénédicte', 'André Dussollier': 'Pierre-Marie Rouvières', 'Ticky Holgado': 'Germain Pire', 'Marion Cotillard': 'Tina Lombardi', 'Dominique Bettenfeld': 'Ange Bassignano', 'Jodie Foster': 'Elodie Gordes', 'Jean-Pierre Darroussin': 'Benjamin Gordes       (as Jean Pierre Darroussin)', 'Clovis Cornillac': 'Benoît Notre-Dame', 'Jean-Pierre Becker': 'Esperanza       (as Jean Pierre Becker)', 'Denis Lavant': 'Six-Soux', 'Jérôme Kircher': 'Bastoche', 'Albert Dupontel': 'Célestin Poux'}\"\r\ntt1226236,\"{'Tilda Swinton': 'Emma Recchi', 'Flavio Parenti': 'Edoardo Recchi Junior', 'Edoardo Gabbriellini': 'Antonio Biscaglia', 'Alba Rohrwacher': 'Elisabetta Recchi', 'Pippo Delbono': 'Tancredi Recchi', 'Maria Paiato': 'Ida Marangon', 'Diane Fleri': 'Eva Ugolini', 'Waris Ahluwalia': 'Shai Kubelkian', 'Mattia Zaccaro': 'Gianluca Recchi', 'Ginevra Notarbartolo': 'Rachele Piermarini', 'Giangaleazzo Visconti di Modrone': 'Andrea Tavecchia', 'Gabriele Ferzetti': 'Edoardo Recchi Senior', 'Marisa Berenson': 'Allegra Rori Recchi', 'Liliana Flores': 'Liliana Macedo', 'Jimmi Carlos Zuniga Macias': 'Joso Macedo'}\"\r\ntt0048356,\"{'Ernest Borgnine': 'Marty Piletti', 'Betsy Blair': 'Clara Snyder', 'Esther Minciotti': 'Mrs. Teresa Piletti', 'Augusta Ciolli': 'Aunt Catherine', 'Joe Mantell': 'Angie', 'Karen Steele': 'Virginia', 'Jerry Paris': 'Tommy'}\"\r\ntt0420757,\"{'Ben Affleck': 'Jack Giamoro', 'Rebecca Romijn': 'Nina Giamoro', 'John Cleese': 'Dr. Primkin', 'Sam Ball': 'Jimmy Dooley       (as Samuel Ball)', 'Mike Binder': 'Morty', 'Erica Cerra': 'Sela', 'Gina Gershon': 'Arlene Kreiner', 'Adam Goldberg': 'Phil Balow', 'Howard Hesseman': 'Ben Giamoro', 'Bai Ling': 'Barbi Ling', \"\"Jerry O'Connell\"\": 'David Lilly', 'Kal Penn': 'Alan Fineberg', 'Amber Valletta': 'Brynn Lilly', 'Damien Dante Wayans': 'Lucky Reynolds', 'Laura Soltis': 'Barbara Giamoro'}\"\r\ntt0070355,\"{'Clint Eastwood': 'Harry Callahan', 'Hal Holbrook': 'Lt. Briggs', 'Mitchell Ryan': 'Charlie McCoy', 'David Soul': 'Davis', 'Tim Matheson': 'Sweet', 'Kip Niven': 'Astrachan', 'Robert Urich': 'Grimes', 'Felton Perry': 'Early Smith', 'Maurice Argent': 'Nat Weinstein', 'Margaret Avery': 'Prostitute', 'Richard Devon': 'Ricca', 'Tony Giorgio': 'Palancio', 'Jack Kosslyn': 'Walter', 'Bob March': 'Estabrook', 'Bob McClurg': 'Cab Driver'}\"\r\ntt0892782,\"{'Reese Witherspoon': 'Susan Murphy /              Ginormica       (voice)', 'Seth Rogen': 'B.O.B.       (voice)', 'Hugh Laurie': 'Dr. Cockroach Ph.D.       (voice)', 'Will Arnett': 'The Missing Link       (voice)', 'Kiefer Sutherland': 'General W.R. Monger       (voice)', 'Rainn Wilson': 'Gallaxhar       (voice)', 'Stephen Colbert': 'President Hathaway       (voice)', 'Paul Rudd': 'Derek Dietl       (voice)', 'Julie White': 'Wendy Murphy       (voice)', 'Jeffrey Tambor': 'Carl Murphy       (voice)', 'Amy Poehler': 'Computer       (voice)', 'Ed Helms': 'News Reporter       (voice)', 'Renée Zellweger': 'Katie       (voice)', 'John Krasinski': 'Cuthbert       (voice)', 'Sean Bishop': 'Private Bullhorn /              Helicopter Pilot /              Advisor Ortega       (voice)'}\"\r\ntt0064665,\"{'Dustin Hoffman': 'Ratso', 'Jon Voight': 'Joe Buck', 'Sylvia Miles': 'Cass', 'John McGiver': \"\"Mr. O'Daniel\"\", 'Brenda Vaccaro': 'Shirley', 'Barnard Hughes': 'Towny', 'Ruth White': 'Sally Buck - Texas', 'Jennifer Salt': 'Annie - Texas', 'Gilman Rankin': 'Woodsy Niles - Texas       (as Gil Rankin)', 'Gary Owens': 'Little Joe - Texas', 'T. Tom Marlow': 'Little Joe - Texas', 'George Eppersen': 'Ralph - Texas', 'Al Scott': 'Cafeteria Manager - Texas', 'Linda Davis': 'Mother on the Bus - Texas', 'J.T. Masters': 'Old Cow-Hand - Texas'}\"\r\ntt0795426,\"{'Stephen Baldwin': 'Lefty', 'K Callan': 'Eva', 'Kirk B.R. Woller': 'Kirk', 'Mary Thornton': 'Mary', 'Mitchell Jarvis': 'Mitch', 'Richard Fancy': 'Pastor Mark', 'Victoria Jackson': 'Margaret', 'Richard Riehle': 'Tommy', 'Diane Delano': 'Trudy', 'Wren T. Brown': 'Dale', 'Dominic Scott Kay': 'Jacob', 'Loren Lester': 'Gordon', 'Patricia Rae': 'Samantha', 'Nikki Boyer': \"\"Megan, Jacob's Teacher\"\", 'Angie Bolling': 'Caroling Shut-In'}\"\r\ntt0095953,\"{'Dustin Hoffman': 'Raymond Babbitt', 'Tom Cruise': 'Charlie Babbitt', 'Valeria Golino': 'Susanna', 'Gerald R. Molen': 'Dr. Bruner       (as Jerry Molen)', 'Jack Murdock': 'John Mooney', 'Michael D. Roberts': 'Vern', 'Ralph Seymour': 'Lenny', 'Lucinda Jenney': 'Iris', 'Bonnie Hunt': 'Sally Dibbs', 'Kim Robillard': 'Small Town Doctor', 'Beth Grant': 'Mother at Farm House', 'Dolan Dougherty': 'Farm House Kid', 'Marshall Dougherty': 'Farm House Kid', 'Patrick Dougherty': 'Farm House Kid', 'John-Michael Dougherty': 'Farm House Kid'}\"\r\ntt0935075,\"{'Nicole Kidman': 'Becca', 'Aaron Eckhart': 'Howie', 'Dianne Wiest': 'Nat', 'Miles Teller': 'Jason', 'Tammy Blanchard': 'Izzy', 'Sandra Oh': 'Gabby', 'Giancarlo Esposito': 'Auggie', 'Jon Tenney': 'Rick', 'Stephen Mailer': 'Kevin', 'Mike Doyle': 'Craig', 'Roberta Wallach': 'Rhonda', 'Patricia Kalember': 'Peg', 'Ali Marsh': 'Donna', 'Yetta Gottesman': 'Ana', 'Colin Mitchell': 'Sam'}\"\r\ntt0307351,\"{'Gina Gershon': 'Jacki', 'Drea de Matteo': 'Tracy', 'Lori Petty': 'Faith', 'Shelly Cole': 'Sally', 'Marc Blucas': 'Animal', 'Ivan Martin': 'Nick', 'Eddie Driscoll': 'Chuck', 'Ashley Eckstein': 'Punk Rock Girl       (as Ashley Drane)', 'Shakara Ledard': 'Jessica', 'Texas Terri': 'Herself', 'Sandra Seacat': \"\"Jacki's Mom\"\", 'Nancy M. Pimental': 'Natalie       (as Nancy Pimental)', 'Greg Rikaart': 'Scott', 'Francois Harold': 'Johnny', 'Joannah Portman': 'Sorority Girl #1'}\"\r\ntt1262981,\"{'Robin Williams': 'Lance', 'Daryl Sabara': 'Kyle Clayton', 'Morgan Murphy': 'Morgan', 'Naomi Glick': 'Ginger', 'Dan Spencer': 'Dan Spencer', 'Geoff Pierson': 'Principal Anderson', 'Henry Simmons': 'Mike Lane', 'Zach Sanchez-Vitale': 'Peter       (as Zach Sanchez)', 'Alexie Gilmore': 'Claire Reed', 'Evan Martin': 'Andrew', 'Ellyn Jameson': 'Jennifer       (as Ellie Jameson)', 'Michael Thomas Moore': 'Chris       (as Michael Moore)', 'Ray Buckley': 'Metal Kid       (as Alles Mist)', 'Jermaine Williams': 'Jason', 'Lorraine Nicholson': 'Heather'}\"\r\ntt1001562,\"{'Larry the Cable Guy': 'Deputy Larry Stalder', 'Richard Bull': 'Sheriff Smoot', 'J. David Moeller': 'Elmer', 'Will Clinger': 'Bo', 'Omar Dykes': 'Gus       (as Omar Kent Dykes)', 'Reno Collier': 'Tater', 'Jenny McCarthy': 'Connie', 'Yaphet Kotto': 'Ricardo Bodi', 'Ivana Milicevic': 'Madeleine', 'Dan Waller': 'Agent Orange /              MIB #1', 'Rick LeFevour': 'MIB #2       (as Rick Lefevour)', 'Joseph Luis Caballero': 'MIB #3       (as Joe Caballero)', 'Sean Bridgers': 'Norm', 'Gerry Bednob': 'Omar', 'Claudia Michelle Wallace': 'TSA Woman'}\"\r\ntt0245562,\"{'Nicolas Cage': 'Joe Enders', 'Adam Beach': 'Ben Yahzee', 'Peter Stormare': 'Hjelmstad', 'Noah Emmerich': 'Chick', 'Mark Ruffalo': 'Pappas', 'Brian Van Holt': 'Harrigan', 'Martin Henderson': 'Nellie', 'Roger Willie': 'Charlie Whitehorse', \"\"Frances O'Connor\"\": 'Rita', 'Christian Slater': 'Ox Henderson', 'Jason Isaacs': 'Major Mellitz', 'William Morts': 'Fortino', 'Cameron Thor': 'Mertens', 'Kevin Cooney': 'Ear Doctor', 'Holmes Osborne': 'Colonel Hollings'}\"\r\ntt0114938,\"{'Jeff Bridges': 'Wild Bill Hickok', 'Ellen Barkin': 'Calamity Jane', 'John Hurt': 'Charley Prince', 'Diane Lane': 'Susannah Moore', 'Keith Carradine': 'Buffalo Bill Cody', 'David Arquette': 'Jack McCall', 'Christina Applegate': 'Lurline Newcomb', 'Bruce Dern': 'Will Plummer', 'James Gammon': 'California Joe', 'Marjoe Gortner': 'Preacher', 'James Remar': 'Donnie Lonigan', 'Karen Huie': 'Song Lew', 'Steve Reevis': 'Sioux Chief', 'Robert Knott': 'Dave Tutt', 'Pato Hoffmann': 'Cheyenne Leader'}\"\r\ntt0486674,\"{'Robert De Niro': 'Ben', 'Sean Penn': 'Sean Penn', 'Catherine Keener': 'Lou Tarnow', 'Bruce Willis': 'Actor', 'John Turturro': 'Dick Bell', 'Robin Wright': 'Kelly       (as Robin Wright Penn)', 'Stanley Tucci': 'Scott Solomon', 'Kristen Stewart': 'Zoe', 'Michael Wincott': 'Jeremy Brunell', 'Jason Kravits': 'Pollster       (as Jason Kravitz)', 'Mark Ivanir': 'Johnny', 'Remy K. Selma': 'Jimmy       (as Remy Selma)', 'Christopher Evan Welch': 'Studio Marketing Guy', 'Lily Rabe': 'Dawn', 'Sam Levinson': 'Carl'}\"\r\ntt1465522,\"{'Tyler Labine': 'Dale', 'Alan Tudyk': 'Tucker', 'Katrina Bowden': 'Allison', 'Jesse Moss': 'Chad', 'Philip Granger': 'Sheriff', 'Brandon Jay McLaren': 'Jason       (as Brandon McLaren)', 'Christie Laing': 'Naomi', 'Chelan Simmons': 'Chloe', 'Travis Nelson': 'Chuck', 'Alex Arsenault': 'Todd       (as Alexander Arsenault)', 'Adam Beauchesne': 'Mitch', 'Joseph Allan Sutherland': 'Mike       (as Joseph Sutherland)', 'Mitchell Verigin': 'College Kid #1', 'Angela DeCorte': 'College Kid #2', 'Karen Reigh': 'Cheryl'}\"\r\ntt0084814,\"{'Peter Sellers': 'Chief Insp. Jacques Clouseau       (archive footage)', 'David Niven': 'Sir Charles Litton', 'Herbert Lom': 'Chief Insp. Charles Dreyfus', 'Richard Mulligan': \"\"Clouseau's Father\"\", 'Joanna Lumley': 'Marie Jouvet', 'Capucine': 'Lady Simone Litton', 'Robert Loggia': 'Bruno Langois', 'Harvey Korman': 'Prof. Auguste Balls       (archive footage)', 'Burt Kwouk': 'Cato Fong', 'Graham Stark': 'Hercule Lajoy', 'Peter Arne': 'Col. Bufoni', 'André Maranne': 'Sergeant Francois Duval', 'Ronald Fraser': 'Dr. Longet', 'Leonard Rossiter': 'Superintendant Quinlan       (archive footage)', 'Marne Maitland': 'Deputy Commissioner Lasorde'}\"\r\ntt0070814,\"{'Johnny Whitaker': 'Tom Sawyer', 'Celeste Holm': 'Aunt Polly', 'Warren Oates': 'Muff Potter', 'Jeff East': 'Huckleberry Finn', 'Jodie Foster': 'Becky Thatcher', 'Lucille Benson': 'Widder Martha Douglas', 'Henry Jones': 'Mr. Dobbins', 'Noah Keen': 'Judge Cyrus Thatcher', 'Dub Taylor': 'Clayton', 'Richard Eastham': 'Doctor P. R. Robinson', 'Sandy Kenyon': 'Constable Clemmens', 'Joshua Hill Lewis': 'Cousin Sidney', 'Susan Joyce': 'Cousin Mary', 'Steve Hogg': 'Ben Rogers', 'Sean Summers': 'Billy Fisher'}\"\r\ntt1293842,\"{'Sam Rockwell': 'Bill', 'Emma Roberts': 'Abbie', 'Rob Corddry': 'Terry', 'Emily Rios': 'Kathy', 'Rooney Mara': 'Wendy', 'Jessica Hecht': 'Stacey', 'Connor Paolo': 'Damon', 'Meaghan Witri': 'Tamra', 'Melanie Hinkle': 'Mindy', 'Shana Dowdeswell': 'Molly', 'Vanessa Gordillo': 'Flor', 'Shareeka Epps': 'Lisa', 'Margo Martindale': 'Donna', 'Melissa Graver': 'New Rome Forward', 'Caitlin Colford': 'Trish'}\"\r\ntt0120520,\"{'Helena Bonham Carter': 'Kate Croy', 'Linus Roache': 'Merton', 'Alex Jennings': 'Lord Mark', 'Charlotte Rampling': 'Aunt Maude', 'Ben Miles': 'Journalist 1', 'Philip Wright': 'Journalist 2', 'Michael Gambon': \"\"Kate's Father\"\", 'Alexander John': 'Butler', 'Alison Elliott': 'Milly', 'Elizabeth McGovern': 'Susan', 'Shirley Chantrell': 'Opium Den Lady', 'Diana Kent': \"\"Merton's Party Companion\"\", 'Georgio Serafini': 'Eugenio', 'Rachele Crisafulli': 'Concierge'}\"\r\ntt0051036,\"{'Burt Lancaster': 'J.J. Hunsecker', 'Tony Curtis': 'Sidney Falco', 'Susan Harrison': 'Susan Hunsecker', 'Martin Milner': 'Steve Dallas       (as Marty Milner)', 'Jeff Donnell': 'Sally', 'Sam Levene': \"\"Frank D' Angelo\"\", 'Joe Frisco': 'Herbie Temple', 'Barbara Nichols': 'Rita', 'Emile Meyer': 'Lt. Harry Kello', 'Edith Atwater': 'Mary', 'The Chico Hamilton Quintet': 'The Chico Hamilton Quintet'}\"\r\ntt0098384,\"{'Sally Field': \"\"M'Lynn Eatenton\"\", 'Dolly Parton': 'Truvy Jones', 'Shirley MacLaine': 'Ouiser Boudreaux', 'Daryl Hannah': 'Annelle Dupuy Desoto', 'Olympia Dukakis': 'Clairee Belcher', 'Julia Roberts': 'Shelby Eatenton Latcherie', 'Tom Skerritt': 'Drum Eatenton', 'Sam Shepard': 'Spud Jones', 'Dylan McDermott': 'Jackson Latcherie', \"\"Kevin J. O'Connor\"\": 'Sammy Desoto', 'Bill McCutcheon': 'Owen Jenkins', 'Ann Wedgeworth': 'Aunt Fern', 'Knowl Johnson': 'Tommy Eatenton', 'Jonathan Ward': 'Jonathan Eatenton', 'Bibi Besch': 'Belle Marmillion'}\"\r\ntt0120788,\"{'Ben Stiller': 'Jerry Stahl', 'Maria Bello': 'Kitty', 'Jay Paulson': 'Phoenix Punk', 'Spencer Garrett': 'Brad /              Tim from Mr. Chompers', 'Owen Wilson': 'Nicky', 'Elizabeth Hurley': 'Sandra', 'Lourdes Benedicto': 'Vola', 'Fred Willard': 'Craig Ziffer', 'Chauncey Leopardi': 'Jerry at 16', 'Mary Thompson': 'Grandma Whittle', 'Connie Nielsen': 'Dagmar', 'Charles Fleischer': 'Allen from Mr. Chompers', 'Liz Torres': 'Dita', 'Douglas Spain': 'Miguel', 'Janeane Garofalo': 'Jana Farmer'}\"\r\ntt0839880,\"{'Alex A. Quinn': 'Bill Welsh       (as Alex Quinn)', 'Kelsey Crane': 'Brielle Lake', 'James Devoti': 'Ben Graham       (as Jim Devoti)', 'Kelsey Wedeen': 'Kelly Lake', 'Tara Gerard': 'Samantha Lake', 'Vanessa Viola': 'Amy Leigh', 'James C. Burns': 'Sheriff Chuck Lake', 'Pat McNeely': 'Gloria Lake', 'Edwin Craig': 'Willard Lake /              Grandpa', 'Christian Stokes': 'Abel Lake', 'Trevor Torseth': 'Kane Lake', 'Dan Woods': 'John Lake', 'Malea Rose': 'Tanya Holt       (as Malea Richardson)', 'Kenn Woodard': 'Priest', 'Lydia Hyslop': 'Doomed Teenager #1'}\"\r\ntt0363276,\"{'Joshua Leonard': 'Clark Stevens', 'Jordan Ladd': 'Sara', 'Natasha Lyonne': 'Alice', 'Lance Henriksen': 'Dr. Franks', 'Dendrie Taylor': 'Nurse Hendricks', 'Leslie Jordan': 'Dr. Morton', 'Patrika Darbo': 'Betty', 'Christian Leffler': 'Drake', 'Newell Alexander': 'Dr. Douglas', 'Dan Callahan': 'Dr. Hendricks', 'Mark Holton': 'Mr.Hansen', 'Aaron Strongoni': 'Carl', 'Todd Stites': 'Trannie', 'Rosemary Alexander': 'Grace', 'Muffy Bolding': 'Polly Bond'}\"\r\ntt0227005,\"{'Jon Favreau': 'Bobby', 'Vince Vaughn': 'Ricky', 'Joe Goossen': 'Referee', 'Famke Janssen': 'Jessica', 'Makenzie Vega': 'Chloe', 'Jenteal': 'Wendy       (as Reanna Rossi)', 'Tom Morello': 'Best Man', 'Jonathan Silverman': 'Bachelor', 'Kimberley Davies': 'Bartender       (as Kimberly Davies)', 'Faizon Love': 'Horrace', 'Elizabeth Barondes': 'Wife', 'Gary Auerbach': 'Husband', 'Bill Capizzi': 'Arthur', 'Peter Falk': 'Max', 'Vernon Vaughn': 'Coach'}\"\r\ntt0234137,\"{'Famke Janssen': 'Kate Welles', 'Jon Favreau': 'Adam Levy', 'Noah Emmerich': 'Eric', 'Ann Magnuson': 'Monique Steinbacher', 'Cheri Oteri': 'Mary', 'Josh Hopkins': 'Joey Santino', 'Robert Knepper': 'Gerard Boussard', 'Vincent Ventresca': 'Richard Miltner', 'Kristen Zang': 'Savannah', 'David Steinberg': 'Tiny Man', 'Elimu Nelson': 'Jerome Davis', 'Don Brunner': 'Police Officer', 'Yvonne Zima': '9-Year-Old Kate', 'Melissa Fitzgerald': 'Melanie', 'Rob Swanson': 'Rob, Blind Date'}\"\r\ntt0202677,\"{'Ryan Phillippe': 'Mr. Parker', 'Benicio Del Toro': 'Harold Longbaugh', 'Juliette Lewis': 'Robin', 'Taye Diggs': 'Jeffers', 'Nicky Katt': 'Obecks', 'Geoffrey Lewis': 'Abner Mercer', 'Dylan Kussman': 'Dr. Allen Painter', 'Scott Wilson': 'Hale Chidduck', 'Kristin Lehman': 'Francesca Chidduck', 'James Caan': 'Joe Sarno', 'Henry Griffin': 'P. Whipped', 'Armando Guerrero': 'Federale #1       (as Mando Guerrero)', 'Andres Orozco': 'Federale #2', 'Jan Hanks': 'Receptionist       (as Jan Jensen)', 'José Pérez': '?       (as Jose Perez)'}\"\r\ntt0040897,\"{'Humphrey Bogart': 'Fred C. Dobbs', 'Walter Huston': 'Howard', 'Tim Holt': 'Curtin', 'Bruce Bennett': 'Cody', 'Barton MacLane': 'Pat McCormick       (as Barton Mac Lane)', 'Alfonso Bedoya': 'Gold Hat', 'Arturo Soto Rangel': 'Presidente       (as A. Soto Rangel)', 'Manuel Dondé': 'El Jefe       (as Manuel Donde)', 'José Torvay': 'Pablo       (as Jose Torvay)', 'Margarito Luna': 'Pancho'}\"\r\ntt0117774,\"{'Tom Berenger': 'Shale', 'Raymond Cruz': 'Joey Six', 'William Forsythe': 'Hollan', 'Luis Guzmán': 'Rem', 'Richard Brooks': 'Wellman', 'Ana Azcuy': 'TV Announcer', 'Diane Venora': 'Jane Hetzko', 'Glenn Plummer': 'Sherman', 'Shar-Ron Corley': 'Jerome       (as Sharron Corley)', 'Vincent Laresca': 'Rodriguez', 'Maurice Compte': 'Tay', 'Marc Anthony': 'Lacas', 'Ernie Hudson': 'Rolle', 'Beau Weaver': 'Janus Showreel Narrator', 'Cliff De Young': 'Wolfson'}\"\r\ntt0120802,\"{'Carlo Cecchi': 'Nicolo Bussotti (Cremona)', 'Irene Grazioli': 'Anna Bussotti (Cremona)', 'Anita Laurenzi': 'Cesca (Cremona)', 'Tommaso Puntelli': 'Apprentice (Cremona)', 'Aldo Brugnini': 'Assistant (Cremona)', 'Samuele Amighetti': 'Boy (Cremona)', 'Jean-Luc Bideau': 'Georges Poussin (Vienna)', 'Christoph Koncz': 'Kaspar Weiss (Vienna)', 'Clotilde Mollet': 'Antoinette Pussin (Vienna)', 'Rainer Egger': 'Brother Christophe (Vienna)', 'Wolfgang Böck': 'Brother Michael (Vienna)', 'Florentín Groll': 'Anton von Spielmann (Vienna)', 'Johannes Silberschneider': 'Father Richter (Vienna)', 'Arthur Denberg': 'Prince Mansfeld (Vienna)', 'Paul Koeker': 'Brother Gustav (Vienna)'}\"\r\ntt0981072,\"{'Rachel McAdams': 'Colee', 'Tim Robbins': 'Cheaver', 'Michael Peña': 'TK', 'Molly Hagan': 'Pat Cheaver', 'Mark L. Young': 'Scott Cheaver', 'Howard Platt': 'Stan Tilson', 'Arden Myrin': 'Barbara Tilson', 'Coburn Goss': 'Peter Tilson', 'John Heard': 'Bob', 'Jennifer Joan Taylor': \"\"Bob's Wife\"\", 'Katherine LaNasa': 'Janet', 'Leo Ford': \"\"Janet's Husband\"\", 'Susan Yeagley': 'Kendra', 'Emily Swallow': 'Brandi', 'John Diehl': 'Tom Klinger'}\"\r\ntt0070334,\"{'Elliott Gould': 'Philip Marlowe', 'Nina van Pallandt': 'Eileen Wade', 'Sterling Hayden': 'Roger Wade', 'Mark Rydell': 'Marty Augustine', 'Henry Gibson': 'Dr. Verringer', 'David Arkin': 'Harry', 'Jim Bouton': 'Terry Lennox', 'Warren Berlinger': 'Morgan', 'Jo Ann Brody': 'Jo Ann Eggenweiler', 'Stephen Coit': 'Detective Farmer       (as Steve Coit)', 'Jack Knight': 'Mabel', 'Pepe Callahan': 'Pepe', 'Vincent Palmieri': 'Vince       (as Vince Palmieri)', 'Pancho Córdova': 'Doctor       (as Pancho Cordoba)', 'Enrique Lucero': 'Jefe'}\"\r\ntt0165854,\"{'Terence Stamp': 'Wilson', 'Lesley Ann Warren': 'Elaine', 'Luis Guzmán': 'Eduardo Roel       (as Luis Guzman)', 'Barry Newman': 'Jim Avery', 'Joe Dallesandro': 'Uncle John       (as Joe Dallessandro)', 'Nicky Katt': 'Stacy the Hitman', 'Peter Fonda': 'Terry Valentine', 'Amelia Heinle': 'Adhara', 'Melissa George': \"\"Jennifer 'Jenny' Wilson\"\", 'William Lucking': 'Warehouse Foreman', 'Matthew Kimbrough': 'Tom Johannson', 'John Robotham': \"\"Rick (Valentine's Bodyguard)\"\", 'Steve Heinze': \"\"Larry (Valentine's Bodyguard)\"\", 'Nancy Lenehan': 'Lady on Plane', 'Wayne Pére': 'Pool Hall Creep       (as Wayne Péré)'}\"\r\ntt0097613,\"{'Kevin Kline': 'Nick Starkey', 'Susan Sarandon': 'Christine Starkey', 'Mary Elizabeth Mastrantonio': 'Bernadette Flynn', 'Harvey Keitel': 'Frank Starkey', 'Danny Aiello': 'Vincent Alcoa', 'Rod Steiger': 'Eamon Flynn', 'Alan Rickman': 'Ed', 'Faye Grant': 'Alison Hawkins', 'Kenneth Welsh': 'Roger Culver       (as Ken Welsh)', 'Jayne Haynes': 'Alma', 'Brian Tarantina': 'Cone', 'Bruce MacVittie': 'Rip', 'Bill Cobbs': 'Detective Reilly', 'Greg Walker': 'January Man', 'Tandy Cronyn': 'Lana'}\"\r\ntt1594562,\"{'Sara Paxton': 'Claire', 'Pat Healy': 'Luke', 'Alison Bartlett': 'Angry Mom', 'Jake Ryan': 'Young Boy       (as Jake Schlueter)', 'Kelly McGillis': 'Leanne Rease-Jones', 'Lena Dunham': 'Barista', 'Brenda Cooney': \"\"Madeline O'Malley\"\", 'George Riddle': 'Old Man', 'John Speredakos': 'Officer Mitchell', 'Sean Reid': 'Medic', 'Kurt Venghaus': 'Medic', 'Thomas Mahoney': 'Medic', 'Michael Martin': 'Medic', 'Michael P. Castelli': 'Medic'}\"\r\ntt1038919,\"{'Gerard Butler': 'Milo Boyd', 'Jennifer Aniston': 'Nicole Hurley', 'Gio Perez': 'Uncle Sam', 'Joel Marsh Garland': 'Dwight', 'Jason Kolotouros': 'Gelman', 'Matt Malloy': 'Gary', 'Jason Sudeikis': 'Stewart', 'Adam Rose': 'Jimmy', 'Christine Baranski': 'Kitty Hurley', 'Dorian Missick': 'Bobby', 'David Costabile': 'Arthur', 'Lynda Gravatt': 'Judge', 'Peter Greene': 'Earl Mahler', 'Jeff Garlin': 'Sid', 'Siobhan Fallon Hogan': 'Teresa'}\"\r\ntt1392170,\"{'Stanley Tucci': 'Caesar Flickerman', 'Wes Bentley': 'Seneca Crane', 'Jennifer Lawrence': 'Katniss Everdeen', 'Willow Shields': 'Primrose Everdeen', 'Liam Hemsworth': 'Gale Hawthorne', 'Elizabeth Banks': 'Effie Trinket', 'Sandra Ellis Lafferty': 'Hob Vendor       (as Sandra Lafferty)', 'Paula Malcomson': \"\"Katniss' Mother\"\", 'Rhoda Griffis': 'Registration Woman', 'Sandino Moya-Smith': 'Propaganda Film Tribute', 'Josh Hutcherson': 'Peeta Mellark', 'Raiko Bowman': \"\"Peeta's Mother\"\", 'Dwayne Boyd': 'Peacekeeper #1', 'Anthony Reynolds': 'Peacekeeper #2', 'Judd Lormand': 'Peacekeeper #3'}\"\r\ntt1615091,\"{'Sean Bean': 'Amal', 'Corey Sevier': 'Savan', 'Sam Claflin': 'Kaleb', 'Annabelle Wallis': 'Dorel', 'Eleanor Tomlinson': 'Miru', 'Hannah Tointon': 'Giselle', 'Jonathan Pienaar': 'Gagen', 'Danny Keogh': 'Yisir', 'Jessica Haines': 'Neenah', 'Tertius Meintjes': 'Uri       (as Tertius Meintjies)', 'Garth Breytenbach': 'Remi', 'Bjorn Steinbach': 'Yomack', 'Andre Jacobs': 'Elder #1', 'Stephen Jubber': 'Evan', 'Pope Jerrod': 'Buren'}\"\r\ntt0106664,\"{'Timothy Hutton': 'Thad Beaumont /              George Stark', 'Amy Madigan': 'Liz Beaumont', 'Michael Rooker': 'Sheriff Alan Pangborn', 'Julie Harris': 'Reggie Delesseps', 'Robert Joy': 'Fred Clawson', 'Kent Broadhurst': 'Mike Donaldson', 'Beth Grant': 'Shayla Beaumont', 'Rutanya Alda': 'Miriam Cowley', 'Tom Mardirosian': 'Rick Cowley', 'Larry John Meyers': 'Dr. Pritchard', 'Patrick Brannan': 'Young Thad Beaumont', 'Royal Dano': 'Digger Holt', 'Glenn Colerider': 'Homer Gamache', 'Sarah Parker': 'Wendy Beaumont /              William Beaumont', 'Elizabeth Parker': 'Wendy Beaumont /              William Beaumont'}\"\r\ntt0115685,\"{'Robin Williams': 'Armand Goldman', 'Gene Hackman': 'Senator Keeley', 'Nathan Lane': 'Albert', 'Dianne Wiest': 'Louise Keeley', 'Dan Futterman': 'Val Goldman', 'Calista Flockhart': 'Barbara Keeley', 'Hank Azaria': 'Agador', 'Christine Baranski': 'Katharine', 'Tom McGowan': 'Harry Radman', 'Grant Heslov': 'Photographer', 'Kirby Mitchell': 'Chauffeur', 'James Lally': 'Stage manager', 'Luca Tommassini': 'Celsius', 'Luis Camacho': 'Goldman Girl', 'André Fuentes': 'Goldman Girl       (as Andre Fuentes)'}\"\r\ntt0189584,\"{'Kevin Spacey': 'Larry Mann', 'Danny DeVito': 'Phil Cooper       (as Danny Devito)', 'Peter Facinelli': 'Bob Walker', 'Paul Dawson': 'Bellboy'}\"\r\ntt0200465,\"{'Jason Statham': 'Terry Leather', 'Saffron Burrows': 'Martine Love', 'Stephen Campbell Moore': 'Kevin Swain', 'Daniel Mays': 'Dave Shilling', 'James Faulkner': 'Guy Singer', 'Alki David': 'Bambas', 'Michael Jibson': 'Eddie Burton', 'Georgia Taylor': 'Ingrid Burton', 'Richard Lintern': 'Tim Everett', 'Peter Bowles': 'Miles Urquart', 'Alistair Petrie': 'Philip Lisle', 'Hattie Morahan': 'Gale Benson', 'Julian Lewis Jones': 'Snow', 'Andrew Brooke': 'Quinn', 'Rupert Frazer': 'Lord Drysdale       (as Rupert Fraser)'}\"\r\ntt0042208,\"{'Sterling Hayden': 'Dix Handley', 'Louis Calhern': 'Alonzo D. Emmerich', 'Jean Hagen': 'Doll Conovan', 'James Whitmore': 'Gus Minissi', 'Sam Jaffe': 'Doc Erwin Riedenschneider', 'John McIntire': 'Police Commissioner Hardy', 'Marc Lawrence': 'Cobby', 'Barry Kelley': 'Lt. Ditrich', 'Anthony Caruso': 'Louis Ciavelli', 'Teresa Celli': 'Maria Ciavelli', 'Marilyn Monroe': 'Angela Phinlay', \"\"William 'Wee Willie' Davis\"\": 'Timmons       (as William Davis)', 'Dorothy Tree': 'May Emmerich', 'Brad Dexter': 'Bob Brannom', 'John Maxwell': 'Dr. Swanson'}\"\r\ntt0078767,\"{'James Brolin': 'George Lutz', 'Margot Kidder': 'Kathy Lutz', 'Rod Steiger': 'Father Delaney', 'Don Stroud': 'Father Bolen', 'Murray Hamilton': 'Father Ryan', 'John Larch': 'Father Nuncio', 'Natasha Ryan': 'Amy', 'K.C. Martel': 'Greg', 'Meeno Peluce': 'Matt', 'Michael Sacks': 'Jeff', 'Helen Shaver': 'Carolyn', 'Amy Wright': 'Jackie', 'Val Avery': 'Sgt. Gionfriddo', 'Irene Dailey': 'Aunt Helena', 'Marc Vahanian': 'Jimmy'}\"\r\ntt0125659,\"{'Eduardo Noriega': 'César', 'Penélope Cruz': 'Sofía', 'Chete Lera': 'Antonio', 'Fele Martínez': 'Pelayo', 'Najwa Nimri': 'Nuria', 'Gérard Barray': 'Duvernois', 'Jorge de Juan': 'Encargado L.E.', 'Miguel Palenzuela': 'Commisario', 'Pedro Miguel Martínez': 'Médico Jefe', 'Ion Gabella': 'Recluso paranoico', 'Joserra Cadiñanos': 'Guardia', 'Tristán Ulloa': 'Camarero', 'Pepe Navarro': 'Presentador T.V.', 'Jaro': 'Médico 1', 'Walter Prieto': 'Médico 2'}\"\r\ntt0368909,\"{'Tony Jaa': 'Ting', 'Petchtai Wongkamlao': 'Humlae /              George       (as Mum Jokemok)', 'Pumwaree Yodkamol': 'Muay Lek', 'Suchao Pongwilai': 'Komtuan       (as Suchoa Pongvilai)', 'Chatthapong Phantana-Angkul': 'Saming       (as Chatthapong Pantanaunkul)', 'Wannakit Sirioput': 'Don       (as Wannakit Siriput)', 'Cheathavuth Watcharakhun': 'Peng       (as Chetwut Wacharakun)', 'Rungrawee Barijindakul': 'Ngek       (as Rungrawee Borrijindakul)', 'Pornpimol Chookanthong': 'Mae Waan', 'Chumphorn Thepphithak': 'Uncle Mao       (as Chumporn Teppitak)', 'Sukanya Kongkawong': 'Waitress', 'Boonsri Yindee': 'Yai Hom       (as Bunsri Yindee)', 'Woranard Tantipidok': 'Pra Cru', 'Sawang Rodnuch': 'Noi', 'Sutin Rodnuch': 'Jamnean'}\"\r\ntt1598828,\"{'Katherine Heigl': 'Stephanie Plum', \"\"Jason O'Mara\"\": 'Joseph Morelli', 'Daniel Sunjata': 'Ranger', 'John Leguizamo': 'Jimmy Alpha', 'Sherri Shepherd': 'Lula', 'Debbie Reynolds': 'Grandma Mazur', 'Debra Monk': 'Mrs. Plum', 'Nate Mooney': 'Eddie Gazarra', 'Adam Paul': 'Bernie Kuntz', 'Fisher Stevens': 'Morty Beyers', 'Ana Reeder': 'Connie', 'Patrick Fischler': 'Vinnie Plum', 'Ryan Michelle Bathe': 'Jackie', 'Leonardo Nam': 'John Cho', 'Annie Parisse': 'Mary Lou'}\"\r\ntt0035140,\"{'Bette Davis': 'Charlotte Vale', 'Paul Henreid': 'Jeremiah (Jerry) Durrance', 'Claude Rains': 'Dr. Jaquith', 'Gladys Cooper': 'Mrs. Henry Vale', 'Bonita Granville': 'June Vale', 'John Loder': 'Elliot Livingston', 'Ilka Chase': 'Lisa Vale', 'Lee Patrick': \"\"'Deb' McIntyre\"\", 'Franklin Pangborn': 'Mr. Thompson', 'Katharine Alexander': 'Miss Trask       (as Katherine Alexander)', 'James Rennie': 'Frank McIntyre', 'Mary Wickes': 'Dora Pickford'}\"\r\ntt0395972,\"{'Charlize Theron': 'Josey Aimes', 'Thomas Curtis': 'Sammy Aimes', 'Elle Peterson': 'Karen Aimes', 'Frances McDormand': 'Glory', 'Sean Bean': 'Kyle', 'Woody Harrelson': 'Bill White', 'Jeremy Renner': 'Bobby Sharp', 'Richard Jenkins': 'Hank Aimes', 'Sissy Spacek': 'Alice Aimes', 'James Cada': 'Don Pearson', 'Rusty Schwimmer': 'Big Betty', 'Linda Emond': 'Leslie Conlin', 'Michelle Monaghan': 'Sherry', 'Brad William Henke': 'Lattavansky', 'Jillian Armenante': 'Peg'}\"\r\ntt0031725,\"{'Greta Garbo': 'Nina Ivanovna Yakushova aka Ninotchka', 'Melvyn Douglas': \"\"Count Leon d'Algout\"\", 'Ina Claire': 'Grand Duchess Swana', 'Bela Lugosi': 'Commissar Razinin', 'Sig Ruman': 'Comrade Iranoff       (as Sig Rumann)', 'Felix Bressart': 'Comrade Buljanoff', 'Alexander Granach': 'Comrade Kopalski', 'Gregory Gaye': 'Count Alexis Rakonin', 'Rolfe Sedan': 'Hotel Manager', 'Edwin Maxwell': 'Mercier', 'Richard Carle': 'Gaston'}\"\r\ntt0247786,\"{'Luke Goss': 'Saul', 'Sienna Guillory': 'Kate', 'Simon Shepherd': 'Rupert', 'Sabrina Van Tassel': 'Star', 'Glenn Carter': 'Jesus', 'Jonathan Bruun': 'Danny', 'Georgia Reece': 'Joanna', 'Susan Jameson': 'Polly', 'Nick Patrick': 'Josh', 'Ralph Arliss': 'Clive', 'Pandora Clifford': 'Annabelle'}\"\r\ntt0309912,\"{'Stella Gonet': 'Mrs. Nickleby', 'Andrew Havill': 'Mr. Nickleby', 'Henry McGrath': 'Child Nicholas Nickleby', 'Hugh Mitchell': 'Boy Nicholas Nickleby', 'Poppy Rogers': 'Child Kate Nickleby', 'Jessie Lou Roberts': 'Young Kate Nickleby', 'Charlie Hunnam': 'Nicholas Nickleby', 'Romola Garai': 'Kate Nickleby', 'Tom Courtenay': 'Newman Noggs', 'Christopher Plummer': 'Ralph Nickleby', 'Anne Hathaway': 'Madeline Bray', 'Jim Broadbent': 'Mr. Wackford Squeers', 'Angela Curran': 'Parent', 'Jamie Bell': 'Smike', 'Juliet Stevenson': 'Mrs. Squeers'}\"\r\ntt0116743,\"{'Indira Varma': 'Maya', 'Sarita Choudhury': 'Tara, the Queen', 'Ramon Tikaram': 'Jai Kumar', 'Naveen Andrews': 'Raj Singh', 'Rekha': 'Rasa Devi, teacher of the Kama Sutra', 'Khalid Tyabji': 'Biki', 'Arundhati Rao': 'Annabi', 'Surabhi Bhansali': 'Young Maya', 'Garima Dhup': 'Young Tara', 'Pearl Padamsee': 'Maham Anga', 'Kusum Haidar': 'Dilki', 'Harish Patel': 'Doctor Mani', 'Ranjit Chowdhry': 'Babu', 'Achala Sachdev': 'Rupa       (as Achla Sachdev)', 'Achla Sachdev': 'Rupa'}\"\r\ntt1175491,\"{'Josh Brolin': 'George W. Bush', 'Colin Hanks': 'Speechwriter #1', 'Toby Jones': 'Karl Rove', 'Dennis Boutsikaris': 'Paul Wolfowitz', 'Jeffrey Wright': 'Colin Powell', 'Thandie Newton': 'Condoleezza Rice', 'Scott Glenn': 'Donald Rumsfeld', 'Richard Dreyfuss': 'Dick Cheney', 'Bruce McGill': 'George Tenet', 'Wes Chatham': 'Fraternity Enforcer', 'Jesse Bradford': 'Fraternity President', 'Sean Stone': 'Fraternity Pledge #1', 'Ben Mayer': 'Fraternity Pledge #2', 'James Cromwell': 'George H.W. Bush', 'Juan Gabriel Pareja': 'Oil Worker'}\"\r\ntt1855401,\"{'Bill A. Jones': 'Serious Announcer', 'Jeff Goldblum': 'Chef Goldblum', 'Bob Odenkirk': 'Schlaaang Announcer', 'Frank Slaten': 'Super Seat Customer', 'Bob Ross': 'Bob Ross', 'Ronnie Rodriguez': 'Diamond Jim /              Johnny Depp', 'Nancy Stelle': 'Woman on Paris Street', 'Jean-Michel Richaud': 'Paris Policeman', 'Marilyn Porayko': 'Woman Being Ticketed', 'Erica Durance': 'Paris Waitress', 'Tim Heidecker': 'Tim Heidecker', 'Eric Wareheim': 'Eric Wareheim', 'Robert Loggia': 'Tommy Schlaaang', 'William Atherton': 'Earle Swinter', 'Michael Gross': 'Narrator'}\"\r\ntt1456635,\"{'Seann William Scott': 'Doug Glatt', 'Jay Baruchel': 'Pat', 'Alison Pill': 'Eva', 'Liev Schreiber': 'Ross Rhea', 'Eugene Levy': 'Dr. Glatt', 'Marc-André Grondin': 'Xavier LaFlamme', 'Kim Coates': 'Ronnie Hortense', 'Nicholas Campbell': 'Rollie Hortense', 'Richard Clarkin': 'Gord Ogilvey', 'Jonathan Cherry': 'Marco Belchior', 'Ricky Mabe': 'John Stevenson', 'George Tchortov': 'Evgeni', 'Karl Graboshas': 'Oleg', 'Larry Woo': 'Park Kim', 'Stephen Sim': 'Backup Goalie'}\"\r\ntt0115798,\"{'Jim Carrey': 'The Cable Guy', 'Matthew Broderick': 'Steven M. Kovacs', 'Leslie Mann': 'Robin Harris', 'Jack Black': 'Rick', 'George Segal': \"\"Steven's Father\"\", 'Diane Baker': \"\"Steven's Mother\"\", 'Ben Stiller': 'Sam Sweet /              Stan Sweet', 'Eric Roberts': 'Eric Roberts', 'Janeane Garofalo': 'Medieval Times Waitress', 'Andy Dick': 'Medieval Times Host', \"\"Harry O'Reilly\"\": \"\"Steven's Boss\"\", 'David Cross': 'Sales Manager', 'Amy Stiller': \"\"Steven's Secretary\"\", 'Owen Wilson': \"\"Robin's Date\"\", 'Keith Gibbs': 'Basketball Player'}\"\r\ntt0114388,\"{'James Fleet': 'John Dashwood', 'Tom Wilkinson': 'Mr. Dashwood', 'Harriet Walter': 'Fanny Dashwood', 'Kate Winslet': 'Marianne Dashwood', 'Emma Thompson': 'Elinor Dashwood', 'Gemma Jones': 'Mrs. Dashwood', 'Hugh Grant': 'Edward Ferrars', 'Emilie François': 'Margaret Dashwood', 'Elizabeth Spriggs': 'Mrs. Jennings', 'Robert Hardy': 'Sir John Middleton', 'Ian Brimble': 'Thomas', 'Isabelle Amyes': 'Betsy', 'Alan Rickman': 'Colonel Brandon', 'Greg Wise': 'John Willoughby', 'Alexander John': 'Curate'}\"\r\ntt1233227,\"{'Tobin Bell': 'Jigsaw /              John', 'Costas Mandylor': 'Hoffman', 'Mark Rolston': 'Erickson', 'Betsy Russell': 'Jill', 'Shawnee Smith': 'Amanda', 'Peter Outerbridge': 'William', 'Athena Karkanis': 'Agent Perez', 'Samantha Lemole': 'Pamela Jenkins', 'Tanedra Howard': 'Simone', 'Marty Moreau': 'Eddie', 'Shawn Ahmed': 'Allen', 'Janelle Hutchison': 'Addy', 'Gerry Mendicino': 'Janitor', 'Caroline Cave': 'Debbie', 'George Newbern': 'Harold'}\"\r\ntt0120744,\"{'Leonardo DiCaprio': 'King Louis /              Phillippe', 'Jeremy Irons': 'Aramis', 'John Malkovich': 'Athos', 'Gérard Depardieu': 'Porthos       (as Gerard Depardieu)', 'Gabriel Byrne': \"\"D'Artagnan\"\", 'Anne Parillaud': 'Queen Anne', 'Judith Godrèche': 'Christine       (as Judith Godreche)', 'Edward Atterton': 'Lieutenant Andre', 'Peter Sarsgaard': 'Raoul', 'Hugh Laurie': \"\"King's Advisor\"\", 'David Lowe': \"\"King's Advisor\"\", 'Brigitte Boucher': 'Madame Rotund', 'Matthew Jocelyn': 'Assassin', 'Karine Belly': 'Wench', 'Emmanuel Guttierez': \"\"King's Friend\"\"}\"\r\ntt0985699,\"{'Tom Cruise': 'Colonel Claus von Stauffenberg', 'Kenneth Branagh': 'Major-General Henning von Tresckow', 'Bill Nighy': 'General Friedrich Olbricht', 'Tom Wilkinson': 'General Friedrich Fromm', 'Carice van Houten': 'Nina von Stauffenberg', 'Thomas Kretschmann': 'Major Otto Ernst Remer', 'Terence Stamp': 'Ludwig Beck', 'Eddie Izzard': 'General Erich Fellgiebel', 'Kevin McNally': 'Dr. Carl Goerdeler       (as Kevin R. McNally)', 'Christian Berkel': 'Colonel Mertz von Quirnheim', 'Jamie Parker': 'Lieutenant Werner von Haeften', 'David Bamber': 'Adolf Hitler', 'Tom Hollander': 'Colonel Heinz Brandt', 'David Schofield': 'Erwin von Witzleben', 'Kenneth Cranham': 'Field Marshal Wilhelm Keitel'}\"\r\ntt0100135,\"{'Charlie Sheen': 'Carl Taylor', 'Emilio Estevez': 'James St. James', 'Leslie Hope': 'Susan Wilkins', 'Keith David': 'Louis Fedders', 'Dean Cameron': 'Pizza Man', 'John Getz': 'Maxwell Potterdam III', 'Hawk Wolinski': 'Biff', 'John Lavachielli': 'Mario', 'Geoffrey Blake': 'Frost', 'Cameron Dye': 'Luzinski', 'John Putch': 'Mike', 'Tommy Hinkley': 'Jeff', 'Darrell Larson': 'Jack Berger', 'Sy Richardson': 'Walt Richardson', 'Kari Whitman': 'Judy'}\"\r\ntt1095442,\"{'Souleymane Sy Savane': 'Solo', 'Red West': 'William', 'Diana Franco Galindo': 'Alex', \"\"Lane 'Roc' Williams\"\": 'Roc', 'Mamadou Lam': 'Mamadou', 'Carmen Leyva': 'Quiera', 'Peter N. Anyieth': 'DVD Seller', 'Jim Babel': 'Airline Interviewer', 'Sarah S. Brooks': 'Passenger with Hat', 'Lasheka Brown': 'Crack Passenger', 'Neill Fleeman': 'Airline Interviewer', \"\"Jamill 'Peaches' Fowler\"\": 'Pork Chop', 'Evelia Garcia': 'Bar Owner', 'Chris Greene': 'Thug', 'Viktor Hernandez': \"\"Quiera's Cousin\"\"}\"\r\ntt0077597,\"{'Kirsten Baker': 'June', 'Linda Lawrence': 'Betty', 'Sandy Johnson': 'April', 'Rikki Marin': 'January', 'Leslie King': 'Jane', 'Demetre Phillips': 'Hank', 'Steve Bond': 'Butch', 'Ken Lerner': 'Peewee', 'Dave Shelley': 'Mr. Friendly', 'Huntz Hall': 'Uncle Joe', 'Joe E. Ross': 'Bruno', 'Mike Mazurki': 'Moiv', 'Dennis Bowen': 'Roger', 'Robert Kenneally': 'Hal       (as Rob Kenneally)', 'Paul Tinder': 'Michael'}\"\r\ntt0492389,\"{'Brendan Fraser': 'Dan Sanders', 'Ricky Garcia': 'Frank', 'Eugene Cordero': 'Cheese', \"\"Patrice O'Neal\"\": 'Gus', 'Jim Norton': 'Hank', 'Brooke Shields': 'Tammy Sanders', 'Matt Prokop': 'Tyler Sanders', 'Billy Bush': 'Drill Sergeant', 'Ken Jeong': 'Neal Lyman', 'Angela Kinsey': 'Felder', 'Samantha Bee': 'Principal Baker', 'Alice Drummond': 'Mrs. Martin', 'Toby Huss': 'Wilson', 'Skyler Samuels': 'Amber', 'Gerry Bednob': 'Mr. Gupta'}\"\r\ntt0097257,\"{'Geena Davis': 'Valerie', 'Jeff Goldblum': 'Mac', 'Jim Carrey': 'Wiploc', 'Damon Wayans': 'Zeebo', 'Julie Brown': 'Candy Pink', 'Michael McKean': 'Woody', 'Charles Rocket': 'Ted', 'Larry Linville': 'Dr. Bob', 'Rick Overton': 'Dr. Rick', 'Diane Stilwell': 'Robin', 'Juney Ellis': 'Mrs. Merkin       (as June C. Ellis)', 'Felix Montano': 'Ramon', 'Rick Hurst': 'Joe the Cop       (as Richard Hurst)', 'Leslie Morris': 'Mike the Cop', 'Lisa Fuller': 'Kikki'}\"\r\ntt0059124,\"{'Vincent Price': 'Dr. Goldfoot', 'Frankie Avalon': 'Craig Gamble', 'Dwayne Hickman': 'Todd Armstrong', 'Susan Hart': 'Diane', 'Jack Mullaney': 'Igor', 'Fred Clark': 'D.J. Pevney', 'Patti Chandler': 'Robot', 'Mary Hughes': 'Robot', 'Salli Sachse': 'Robot', 'Luree Holmes': 'Robot', 'Sue Hamilton': 'Robot', 'Laura Nicholson': 'Robot', 'Marianne Gaba': 'Robot', 'China Lee': 'Robot', 'Issa Arnal': 'Robot'}\"\r\ntt0088960,\"{\"\"Peter O'Toole\"\": 'Dr. Harry Wolper', 'Mariel Hemingway': 'Meli', 'Vincent Spano': 'Boris Lafkin', 'Virginia Madsen': 'Barbara Spencer', 'David Ogden Stiers': 'Dr. Sid Kullenbeck', 'John Dehner': 'Paul', 'Karen Kopins': 'Lucy Wolper', 'Kenneth Tigar': 'Pavlo', 'Elsa Raven': 'Mrs. Mallory', 'Lee Kessler': 'Mrs. Pruitt', 'Rance Howard': 'Mr. Spencer', 'Ellen Geer': 'Mrs. Spencer', 'Ian Wolfe': 'Prof. Brauer', 'Mike Jolly': 'Boom-Boom', 'Burton Collins': 'Lyman'}\"\r\ntt0804452,\"{'Logan Browning': 'Sasha', 'Janel Parrish': 'Jade', 'Nathalia Ramos': 'Yasmin', 'Skyler Shaye': 'Cloe', 'Chelsea Kane': 'Meredith       (as Chelsea Staub)', 'Anneliese van der Pol': 'Avery', 'Melise': 'Quinn       (as Malese Jow)', 'Ian Nelson': 'Dylan', 'Stephen Ford': 'Cameron       (as Stephen Lunsford)', 'Jon Voight': 'Principal Dimly', 'Lainie Kazan': 'Bubbie', 'William May': 'Manny', 'Emily Rose Everhard': 'Cherish       (as Emily Everhard)', 'Chet Hanks': 'Dexter', 'Carl Rux': 'Mr. Whitman /              DJ Wax'}\"\r\ntt0162662,\"{'Lili Taylor': 'Evie Decker', 'Guy Pearce': 'Drumstrings Casey', 'Irma P. Hall': 'Clotelia', 'Tom Bower': 'Mr. Decker', 'Bruno Kirby': 'Kiddie Acres Manager', 'Veronica Cartwright': 'Mrs. Casey', 'Shawnee Smith': 'Faye-Jean Lindsay', 'Sara Rue': 'Violet', 'John Hawkes': 'David Elliot', 'Marshall Bell': 'Mr. Casey', 'Jo Ann Farabee': 'Woman at Salon', 'Harv Morgan': 'Dick St. Clair', 'Jason Russel Waller': 'Audience Member #1       (as Jason Russell Waller)', 'Lew Temple': 'Audience Member #2', 'Jason Kavalewitz': 'Young Sex Band'}\"\r\ntt0245712,\"{'Emilio Echevarría': 'El Chivo', 'Gael García Bernal': 'Octavio       (as Gael García)', 'Goya Toledo': 'Valeria', 'Álvaro Guerrero': 'Daniel       (as Alvaro Guerrero)', 'Vanessa Bauche': 'Susana', 'Jorge Salinas': 'Luis', 'Marco Pérez': 'Ramiro', 'Rodrigo Murray': 'Gustavo', 'Humberto Busto': 'Jorge', 'Gerardo Campbell': 'Mauricio', 'Rosa María Bianchi': 'Tía Luisa (Aunt Luisa)', 'Dunia Saldívar': \"\"Mama Susana (Susana's Mother)\"\", 'Adriana Barraza': \"\"Mama Octavio (Octavio's Mother)\"\", 'José Sefami': 'Leonardo', 'Lourdes Echevarría': 'Maru'}\"\r\ntt1602098,\"{'Glenn Close': 'Albert Nobbs', 'Antonia Campbell-Hughes': 'Emmy       (as Antonia Campbell Hughes)', 'Mia Wasikowska': 'Helen', 'Pauline Collins': 'Mrs. Baker', 'Maria Doyle Kennedy': 'Mary', 'Mark Williams': 'Sean Casey', 'James Greene': 'Patrick', 'Serena Brabazon': 'Mrs. Moore', 'Michael McElhatton': 'Mr. Moore', 'Dolores Mullally': 'Milady', 'Bonnie McCormack': 'Miss Shaw', 'Phyllida Law': 'Mrs. Cavendish', 'Brendan Gleeson': 'Dr. Holloran', 'Kenneth Collard': 'Monsieur Pigot', 'Judy Donovan': 'Madame Pigot'}\"\r\ntt1399683,\"{'Jennifer Lawrence': 'Ree', 'Isaiah Stone': 'Sonny', 'Ashlee Thompson': 'Ashlee', 'Valerie Richards': 'Connie', 'Shelley Waggener': 'Sonya', 'Garret Dillahunt': 'Sheriff Baskin', 'William White': 'Blond Milton', 'Ramona Blair': 'Parenting Teacher', 'Lauren Sweetser': 'Gail', 'Andrew Burnley': 'Baby Ned', 'Phillip Burnley': 'Baby Ned', 'Isaac Skidmore': 'Baby Ned', 'Cody Brown': 'Floyd', 'Cinnamon Schultz': 'Victoria', 'John Hawkes': 'Teardrop'}\"\r\ntt1291584,\"{'Joel Edgerton': 'Brendan Conlon', 'Tom Hardy': 'Tommy Conlon', 'Nick Nolte': 'Paddy Conlon', 'Jennifer Morrison': 'Tess Conlon', 'Frank Grillo': 'Frank Campana', 'Kevin Dunn': 'Principal Zito', 'Maximiliano Hernández': 'Colt Boyd', 'Bryan Callen': 'Bryan Callen', 'Sam Sheridan': 'Sam Sheridan', 'Fernando Chien': 'Fenroy       (as Fernando Funan Chien)', 'Jake McLaughlin': 'Mark Bradford', 'Vanessa Martinez': 'Pilar Fernandez', 'Denzel Whitaker': 'Stephon', 'Carlos Miranda': 'Tito', 'Manuel Espinosa': 'Warden Perez'}\"\r\ntt0065214,\"{'William Holden': 'Pike', 'Ernest Borgnine': 'Dutch', 'Robert Ryan': 'Thornton', \"\"Edmond O'Brien\"\": 'Sykes', 'Warren Oates': 'Lyle Gorch', 'Jaime Sánchez': 'Angel       (as Jaime Sanchez)', 'Ben Johnson': 'Tector Gorch', 'Emilio Fernández': 'Mapache       (as Emilio Fernandez)', 'Strother Martin': 'Coffer', 'L.Q. Jones': 'T.C', 'Albert Dekker': 'Harrigan', 'Bo Hopkins': 'Crazy Lee', 'Dub Taylor': 'Wainscoat', 'Paul Harper': 'Ross', 'Jorge Russek': 'Zamorra'}\"\r\ntt0075314,\"{'Diahnne Abbott': 'Concession Girl       (as Diahnne Abbot)', 'Robinson Frank Adu': 'Angry Black Man       (as Frank Adu)', 'Victor Argo': 'Melio       (as Vic Argo)', 'Gino Ardito': 'Policeman at Rally', 'Garth Avery': \"\"Iris' Friend\"\", 'Peter Boyle': 'Wizard', 'Albert Brooks': 'Tom', 'Harry Cohn': 'Cabbie in Bellmore', 'Copper Cunningham': 'Hooker in Cab', 'Robert De Niro': 'Travis Bickle       (as Robert DeNiro)', 'Brenda Dickson': 'Soap Opera Woman', 'Harry Fischler': 'Dispatcher', 'Jodie Foster': 'Iris', 'Nat Grant': 'Stick-Up Man', 'Leonard Harris': 'Charles Palantine'}\"\r\ntt0258000,\"{'Jodie Foster': 'Meg Altman', 'Kristen Stewart': 'Sarah Altman', 'Forest Whitaker': 'Burnham', 'Dwight Yoakam': 'Raoul', 'Jared Leto': 'Junior', 'Patrick Bauchau': 'Stephen Altman', 'Ann Magnuson': 'Lydia Lynch', 'Ian Buchanan': 'Evan Kurlander', 'Andrew Kevin Walker': 'Sleepy Neighbor', 'Paul Schulze': 'Officer Keeney', 'Mel Rodriguez': 'Officer Morales', 'Richard Conant': 'SWAT Cop', 'Paul Simon': 'SWAT Cop', 'Victor Thrash': 'SWAT Cop', 'Ken Turner': 'SWAT Cop'}\"\r\ntt0093565,\"{'Cher': 'Loretta Castorini', 'Nicolas Cage': 'Ronny Cammareri', 'Vincent Gardenia': 'Cosmo Castorini', 'Olympia Dukakis': 'Rose Castorini', 'Danny Aiello': 'Mr. Johnny Cammareri', 'Julie Bovasso': 'Rita Cappomaggi', 'John Mahoney': 'Perry', 'Louis Guss': 'Raymond Cappomaggi', 'Feodor Chaliapin Jr.': 'Old Man       (as Feodor Chaliapin)', 'Anita Gillette': 'Mona', 'Leonardo Cimino': 'Felix', 'Paula Trueman': 'Lucy', 'Nada Despotovich': 'Chrissy', 'Joe Grifasi': 'Shy Waiter', 'Gina DeAngeles': 'Old Crone'}\"\r\ntt1527186,\"{'Kirsten Dunst': 'Justine', 'Charlotte Gainsbourg': 'Claire', 'Alexander Skarsgård': 'Michael', 'Brady Corbet': 'Tim', 'Cameron Spurr': 'Leo', 'Charlotte Rampling': 'Gaby', 'Jesper Christensen': 'Little Father', 'John Hurt': 'Dexter', 'Stellan Skarsgård': 'Jack', 'Udo Kier': 'Wedding Planner', 'Kiefer Sutherland': 'John', 'James Cagnard': \"\"Michael's Father\"\", 'Deborah Fronko': \"\"Michael's Mother\"\", 'Charlotta Miller': 'Betty 1', 'Claire Miller': 'Betty 2'}\"\r\ntt1615147,\"{'Kevin Spacey': 'Sam Rogers', 'Paul Bettany': 'Will Emerson', 'Jeremy Irons': 'John Tuld', 'Zachary Quinto': 'Peter Sullivan', 'Penn Badgley': 'Seth Bregman', 'Simon Baker': 'Jared Cohen', 'Mary McDonnell': 'Mary Rogers', 'Demi Moore': 'Sarah Robertson', 'Stanley Tucci': 'Eric Dale', 'Aasif Mandvi': 'Ramesh Shah', 'Ashley Williams': 'Heather Burke', 'Susan Blackwell': 'Lauren Bratberg', 'Maria Dizzia': 'Executive Assistant', 'Jimmy Palumbo': 'Security Guard', 'Al Sapienza': 'Louis Carmelo'}\"\r\ntt1588170,\"{'Byung-Hun Lee': 'Kim Soo-hyeon', 'Min-sik Choi': 'Jang Kyung-chul', 'In-seo Kim': 'Se-jung', 'Joon-Hyuk Lee': 'Agent       (as Lee Joon-Hyeok)', 'Bo-ra Nam': \"\"Section chief's daughter\"\", 'Gook-hwan Jeon': 'Squad Chief Jang', 'Ho-jin Chun': 'Section Chief Oh', 'Moo-Seong Choi': 'Tae-joo', 'Kap-su Kim': 'Planning team deputy head', 'Tae-goo Eom': 'Detective 4', 'San-ha Oh': 'Joo-yeon', 'Seung-ah Yoon': \"\"The Cannibal's Girlfriend\"\", 'Seung-Ri Ha': 'Female high school student at harbor', 'Chae-young Yoon': 'Nurse Han Song-i', 'Seo-yeon Park': 'Woman at pension       (as Park Seo-Yeon)'}\"\r\ntt0926084,\"{'Bill Nighy': 'Minister Rufus Scrimgeour', 'Emma Watson': 'Hermione Granger', 'Richard Griffiths': 'Vernon Dursley', 'Harry Melling': 'Dudley Dursley', 'Daniel Radcliffe': 'Harry Potter', 'Julie Walters': 'Molly Weasley', 'Bonnie Wright': 'Ginny Weasley', 'Rupert Grint': 'Ron Weasley', 'Ian Kelly': 'Mr. Granger', 'Michelle Fairley': 'Mrs. Granger', 'Fiona Shaw': 'Petunia Dursley', 'Alan Rickman': 'Professor Severus Snape', 'Carolyn Pickles': 'Charity Burbage', 'Ralph Fiennes': 'Lord Voldemort', 'Helena Bonham Carter': 'Bellatrix Lestrange'}\"\r\ntt0190332,\"{'Yun-Fat Chow': 'Master Li Mu Bai       (as Chow Yun Fat)', 'Michelle Yeoh': 'Yu Shu Lien', 'Ziyi Zhang': 'Jen Yu (Mandarin version) /              Jiao Long (English dubbed version)       (as Zhang Ziyi)', 'Chen Chang': \"\"Lo 'Dark Cloud' /              Luo Xiao Hu\"\", 'Sihung Lung': 'Sir Te', 'Pei-Pei Cheng': 'Jade Fox       (as Cheng Pei-Pei)', 'Fa Zeng Li': 'Governor Yu', 'Xian Gao': 'Bo', 'Yan Hai': 'Madame Yu', 'De Ming Wang': 'Police Inspector Tsai /              Prefect Cai Qiu', 'Li Li': 'May       (as Li Li)', 'Su Ying Huang': 'Auntie Wu', 'Jin Ting Zhang': 'De Lu', 'Rui Yang': 'Maid', 'Kai Li': 'Gou Jun Pei'}\"\r\ntt1436045,\"{'Kôji Yakusho': 'Shinzaemon Shimada', 'Takayuki Yamada': 'Shinrokuro Shimada', 'Yûsuke Iseya': 'Koyata Kiga', 'Ikki Sawamura': 'Gunjiro Mitsuhashi', 'Arata Furuta': 'Heizo Sahara', 'Sôsuke Takaoka': 'Yasokichi Hioki', 'Seiji Rokkaku': 'Mosuke Otake', 'Kazuki Namioka': 'Rihei Ishizuka', 'Kôen Kondô': 'Yahachi Horii', 'Yûma Ishigaki': 'Gannai Higuchi', 'Masataka Kubota': 'Shojiro Ogura', 'IHARA': 'Kujuro Hirayama       (as Tsuyoshi Ihara)', 'Hiroki Matsukata': 'Saheita Kuranaga', 'Kazue Fukiishi': 'Tsuya /              Upashi', 'Mitsuki Tanimura': 'Chise Makino'}\"\r\ntt0098453,\"{'Robyn Lively': 'Louise Miller       (as Robyn Elaine Lively)', 'Dan Gauthier': 'Brad Powell', 'Joshua John Miller': 'Richie Miller       (as Joshua Miller)', 'Caren Kaye': 'Margaret Miller', 'Dick Sargent': 'Frank Miller', 'Lisa Fuller': 'Randa', 'Mandy Ingber': 'Polly', 'Zelda Rubinstein': 'Madame Serena', 'Noah Blake': 'Rhet', 'Tina Caspary': 'Shawn       (as Tina Marie Casapary)', 'Megan Gallivan': 'Kiki       (as Megan A. Gallivan)', 'Alsari Al-Shehali': 'Vincent       (as Alssari Al-Shehail)', 'Shelley Berman': 'Mr. Weaver       (as Shelly Berman)', 'Marcia Wallace': 'Ms. Malloy', 'Daniel William Carter': 'Geek       (as Dan Carter)'}\"\r\ntt0094862,\"{'Catherine Hicks': 'Karen Barclay', 'Chris Sarandon': 'Mike Norris', 'Alex Vincent': 'Andy Barclay', 'Brad Dourif': 'Charles Lee Ray /              Chucky       (voice)', 'Dinah Manoff': 'Maggie Peterson', 'Tommy Swerdlow': 'Jack Santos', 'Jack Colvin': 'Dr. Ardmore', 'Neil Giuntoli': 'Eddie Caputo', 'Juan Ramírez': 'Peddler', 'Alan Wilder': 'Mr. Criswell', 'Richard Baird': 'News Reporter at Toy Store', 'Ray Oliver': 'Dr. Death       (as Raymond Oliver)', 'Aaron Osborne': 'Orderly', 'Tyler Hard': 'Mona', 'Ted Liss': 'George'}\"\r\ntt0111653,\"{'Joe Bays': 'River Townsman', 'Abraham Benrubi': 'Abe Ferguson       (as Abe Benrubi)', 'Jill Boyd': 'Prudence Taylor', 'John Candy': 'James Harlow', 'Douglas Carlson': 'Bar Patron', 'Melinda Culea': 'Constance Taylor', 'Ryan Cutrona': 'Tom', 'Bud Davis': 'Desperado Leader', 'Billy Daydoge': 'Elder       (as Bill Daydodge)', 'Thomas F. Duffy': 'Clayton Ferguson', 'David Dunard': 'Harry Bob Ferguson', 'Steve Eastin': 'Bartender', 'Roger Eschbacher': 'Reporter', 'Rodney A. Grant': 'Little Feather', 'Stuart Proud Eagle Grant': 'White Cloud       (as Stuart Grant)'}\"\r\ntt0327919,\"{'Ben Tibber': 'David', 'Jim Caviezel': 'Johannes', 'Hristo Shopov': 'The Man', 'Roberto Attias': 'Baker', 'Maria Bonnevie': \"\"David's Mother\"\", 'Francesco De Vito': 'Roberto', 'Marin Jivkov': 'Cecha', 'Shaila Rubin': 'Vineyard Owner', 'Robert Syulev': 'Angelo', 'Elisabetta Bartolomei': 'Woman at Party', 'Krasimir Kutzoparov': 'Camp Officer       (as Krassimir Kutzuparov)', 'Krassimir Radkov': 'Party Guest', 'Diyan Machev': 'Party Guest       (as Deyan Machev)', 'Clem Tibber': 'Young David', 'Adrian McCourt': \"\"David's Father\"\"}\"\r\ntt0094910,\"{'Dan Aykroyd': 'John W. Burns, Jr.', 'Walter Matthau': 'Donald Becker', 'Charles Grodin': 'George Maitlin', 'Donna Dixon': 'Laura Rollins', 'Richard Romanus': 'Harvey Michaels', 'Mary Gross': 'Vera Maitlin', 'David Clennon': 'Lawrence Baird', 'Arye Gross': 'Perry Kovin', 'Victoria Jackson': 'Robin', 'Michael DeLorenzo': 'Lopez', 'Mickey Jones': 'Watkins', 'J.E. Freeman': 'Unger', 'David Wohl': 'Dr. Smet', 'Michael Ensign': 'Hendricks', 'Carol Mansell': 'Mrs. Blair'}\"\r\ntt0081071,\"{'David Carradine': 'Cole Younger', 'Keith Carradine': 'Jim Younger', 'Robert Carradine': 'Bob Younger', 'James Keach': 'Jesse James', 'Stacy Keach': 'Frank James', 'Dennis Quaid': 'Ed Miller', 'Randy Quaid': 'Clell Miller', 'Kevin Brophy': 'John Younger', 'Harry Carey Jr.': 'George Arthur', 'Christopher Guest': 'Charlie Ford', 'Nicholas Guest': 'Bob Ford', 'Shelby Leverington': 'Annie Ralston', 'Felice Orlandi': 'Mr. Reddick', 'Pamela Reed': 'Belle Starr', 'James Remar': 'Sam Starr'}\"\r\ntt0072325,\"{'Isaac Hayes': \"\"Mac 'Truck' Turner\"\", 'Yaphet Kotto': 'Harvard Blue', 'Alan Weeks': 'Jerry', 'Annazette Chase': 'Annie', 'Nichelle Nichols': 'Dorinda', 'Sam Laws': 'Nate Dinwiddie', 'Paul Harris': \"\"Richard Leroy 'Gator' Johnson\"\", 'Charles Cyphers': 'Drunk', 'John Kramer': 'Desmond', 'Scatman Crothers': 'Duke', 'Dick Miller': 'Fogarty', 'Jac Emel': 'Reno       (as Jac Emeil)', 'Stan Shaw': 'Fontana', 'Wendell Tucker': 'Wendell', 'Sonny Barnes': 'Toro       (as Clarence Barnes)'}\"\r\ntt0087727,\"{'Chuck Norris': 'Col. James Braddock', 'M. Emmet Walsh': 'Jack Tucker', 'David Tress': 'Sen. Maxwell Porter', 'Lenore Kasdorf': 'Ann Fitzgerald', 'James Hong': 'Gen. Tran', 'Ernie Ortega': 'Vinh', 'Pierrino Mascarino': 'Jacques', 'Erich Anderson': 'Masucci       (as E. Erich Anderson)', 'Joseph Carberry': 'Carter', 'Avi Kleinberger': 'Dalton', 'Willie Williams': 'Randall', 'Ric Segreto': 'GI', 'Bella Flores': 'Madame Pearl', 'Gil Arceo': 'First Vietnamese Businessman', 'Roger Dantes': 'Second Vietnamese Businessman'}\"\r\ntt0051411,\"{'Gregory Peck': 'James McKay', 'Jean Simmons': 'Julie Maragon', 'Carroll Baker': 'Patricia Terrill', 'Charlton Heston': 'Steve Leech', 'Burl Ives': 'Rufus Hannassey', 'Charles Bickford': 'Maj. Henry Terrill', 'Alfonso Bedoya': 'Ramón Gutierrez', 'Chuck Connors': 'Buck Hannassey', 'Chuck Hayward': 'Rafe Hannassey', 'Buff Brady': 'Dude Hannassey', 'Jim Burk': 'Blackie /              Cracker Hannassey', 'Dorothy Adams': 'Hannassey Woman', 'Chuck Roberson': 'Terrill Cowboy', 'Bob Morgan': 'Terrill Cowboy', 'John McKee': 'Terrill Cowboy'}\"\r\ntt0102555,\"{'Sally Field': 'Betty Mahmoody', 'Alfred Molina': 'Moody', 'Sheila Rosenthal': 'Mahtob', 'Roshan Seth': 'Houssein', 'Sarah Badel': 'Nicole', 'Mony Rey': 'Ameh Bozorg', 'Georges Corraface': 'Mohsen', 'Mary Nell Santacroce': 'Grandma', 'Ed Grady': 'Grandpa', 'Marc Gowan': 'Doctor', 'Bruce Evers': 'Doctor', 'Jonathan Cherchi': 'Mammal', 'Soudabeh Farrokhnia': 'Nasserine', 'Michael Morim': 'Zia', 'Gili Ben-Ozilio': 'Fereshte'}\"\r\ntt0093640,\"{'Kevin Costner': 'Tom Farrell', 'Gene Hackman': 'David Brice', 'Sean Young': 'Susan Atwell', 'Will Patton': 'Scott Pritchard', 'Howard Duff': 'Senator Duvall', 'George Dzundza': 'Sam Hesselman', 'Jason Bernard': 'Major Donovan', 'Iman': 'Nina Beka', 'Fred Dalton Thompson': 'Marshall', 'Leon Russom': \"\"Kevin O'Brien\"\", 'Dennis Burkley': 'Mate', 'Marshall Bell': 'Contra #1', 'Chris D.': 'Contra #2', 'Michael Shillo': 'Schiller', 'Nicholas Worth': 'Cup Breaker'}\"\r\ntt0083629,\"{'Ronny Cox': 'Eli MacCleary', 'Bibi Besch': 'Caroline MacCleary', 'Paul Clemens': 'Michael MacCleary', 'Don Gordon': 'Judge Curwin', 'R.G. Armstrong': 'Doc Schoonmaker', 'Katherine Moffat': 'Amanda Platt       (as Kitty Moffat)', 'L.Q. Jones': 'Sheriff Pool', 'Logan Ramsey': 'Edwin Curwin', 'John Dennis Johnston': 'Horace Platt', 'Ron Soble': 'Tom Laws', 'Luke Askew': 'Dexter Ward', 'Meshach Taylor': 'Deputy Herbert', 'Boyce Holleman': 'Doc Odom', 'Natalie Nolan Howard': 'Court Clerk', 'Malcolm McMillin': 'Gas Station Attendant'}\"\r\ntt0104765,\"{'Michelle Pfeiffer': 'Lurene Hallett', 'Dennis Haysbert': 'Paul Cater', 'Stephanie McFadden': 'Jonell', 'Brian Kerwin': 'Ray Hallett', 'Louise Latham': 'Mrs. Enright', 'Peggy Rea': 'Mrs. Heisenbuttel', 'Beth Grant': 'Hazel', 'Johnny Ray McGhee': 'Mechanic', 'Cooper Huckabee': 'Deputy Swinson', 'Troy Evans': 'Lt. Galvan', 'Mark Jeffrey Miller': 'Trooper Exley       (as Mark Miller)', 'Pearl Jones': 'Mrs. Baker', 'Janell McLeod': 'Station Cashier', 'Bob Minor': 'Barricade Policeman', 'Rhoda Griffis': 'Jacqueline Kennedy'}\"\r\ntt0049406,\"{'Sterling Hayden': 'Johnny Clay', 'Coleen Gray': 'Fay', 'Vince Edwards': 'Val Cannon', 'Jay C. Flippen': 'Marvin Unger', 'Ted de Corsia': 'Patrolman Randy Kennan       (as Ted DeCorsia)', 'Marie Windsor': 'Sherry Peatty', 'Elisha Cook Jr.': 'George Peatty       (as Elisha Cook)', 'Joe Sawyer': \"\"Mike O'Reilly\"\", 'James Edwards': 'Track Parking Attendant', 'Timothy Carey': 'Nikki Arcane', 'Kola Kwariani': 'Maurice Oboukhoff', 'Jay Adler': 'Leo the Loanshark', 'Tito Vuolo': 'Joe Piano', 'Dorothy Adams': \"\"Ruthie O'Reilly\"\", 'Herbert Ellis': 'Second American Airlines Clerk'}\"\r\ntt0052564,\"{'Gerald Mohr': \"\"Col. Thomas O'Bannion\"\", 'Nora Hayden': \"\"Dr. Iris 'Irish' Ryan\"\", 'Les Tremayne': 'Prof. Theodore Gettell', 'Jack Kruschen': 'CWO Sam Jacobs', 'Paul Hahn': 'Maj. Gen. George Treegar', 'J. Edward McKinley': 'Prof. Paul Weiner', 'Tom Daly': 'Dr. Frank Gordon', 'Don Lamond': 'TV Newscaster /              Narrator /              Martian       (voice)', 'Edward Innes': 'Brig. Gen. Alan Prescott', 'Gordon Barnes': 'Maj. Lyman Ross', 'Jack Haddock': 'Lt. Col. Davis', 'Brandy Bryan': 'Nurse Hayes', 'Joan Patrick': 'Nurse Dixon       (as Joan Fitzpatrick)', 'Duke Norton': 'Dr. Muller', 'William Remick': 'Dr. Hawley       (as Wm. Remick)'}\"\r\ntt0081184,\"{'Rory Calhoun': 'Vincent Smith', 'Paul Linke': 'Bruce Smith', 'Nancy Parsons': 'Ida Smith', 'Nina Axelrod': 'Terry', 'Wolfman Jack': 'Reverend Billy', 'Elaine Joyce': 'Edith Olson', 'Dick Curtis': 'Guy Robaire /              1st T.V. Preacher', 'Monique St. Pierre': 'Debbie', 'Rosanne Katon': 'Suzi', 'E. Hampton Beagle': 'Bob Anderson', 'Everett Creach': 'Bo Tulinski', 'Michael Melvin': 'Ivan', 'John Ratzenberger': 'Drummer', 'Marc Silver': 'Guitarist', 'Victoria Hartman': 'Female Terrible'}\"\r\ntt0052832,\"{'Marlon Brando': \"\"Valentine 'Snakeskin' Xavier\"\", 'Anna Magnani': 'Lady Torrance', 'Joanne Woodward': 'Carol Cutrere', 'Maureen Stapleton': 'Vee Talbot', 'Victor Jory': 'Jabe Torrance', 'R.G. Armstrong': 'Sheriff Jordan Talbot       (as R. G. Armstrong)', 'Virgilia Chew': 'Nurse Porter', 'Ben Yaffee': \"\"'Dog' Hamma\"\", 'Joe Brown Jr.': \"\"'Pee Wee' Binnings\"\", 'Madame Spivy': 'Ruby Lightfoot       (as Spivy)', 'John Baragrey': 'David Cutrere', 'Sally Gracie': 'Dolly Hamma', 'Lucille Benson': 'Beulah Binnings', 'Emory Richardson': 'Uncle Pleasant, the Conjure Man'}\"\r\ntt0084732,\"{'Roy Scheider': 'Sam Rice', 'Meryl Streep': 'Brooke Reynolds', 'Jessica Tandy': 'Grace Rice', 'Joe Grifasi': 'Joseph Vitucci', 'Sara Botsford': 'Gail Phillips', 'Josef Sommer': 'George Bynum', 'Frederikke Borge': 'Heather Wilson       (as Rikke Borge)', 'Irving Metzman': 'Murray Gordon', 'Larry Joshua': 'Mugger', 'Tom Norton': 'Auctioneer', 'Richmond Hoxie': 'Mr. Harris', 'Hyon Cho': 'Mr. Chang', 'Danielle Cusson': 'Girl', 'John Bentley': 'Night Watchman', 'George A. Tooks': 'Elevator Operator'}\"\r\ntt0079240,\"{'Sean Connery': 'Pierce', 'Donald Sutherland': 'Agar', 'Lesley-Anne Down': 'Miriam', 'Alan Webb': 'Trent', 'Malcolm Terris': 'Fowler', 'Robert Lang': 'Sharp', 'Michael Elphick': 'Burgess', 'Wayne Sleep': 'Clean Willy', 'Pamela Salem': 'Emily Trent', 'Gabrielle Lloyd': 'Elizabeth Trent', 'George Downing': 'Barlow', 'James Cossins': 'Harranby', 'John Bett': 'McPherson', 'Peter Benson': 'Station Despatcher', 'Janine Duvitski': 'Maggie'}\"\r\ntt0305396,\"{'Steve Irwin': 'Steve Irwin', 'Terri Irwin': 'Terri Irwin', 'Magda Szubanski': 'Brozzie Drewitt', 'David Wenham': 'Sam Flynn', 'Lachy Hulme': 'Robert Wheeler', 'Aden Young': 'Ron Buckwhiler', 'Kenneth Ransom': 'Vaughan Archer', 'Kate Beahan': 'Jo Buckley', 'Steve Bastoni': 'Deputy Director Reynolds', 'Steven Vidler': 'Deputy Director Ansell       (as Steve Vidler)', 'Alyson Standen': 'Anne Milking', 'Alex Ruiz': 'CIA Agent', 'David Franklin': 'CIA Agent', 'Robert Coleby': 'Dr. Weinberger', 'Kevin Hides': 'Dr. Krug'}\"\r\ntt0100680,\"{'Jane Fonda': 'Iris King', 'Robert De Niro': 'Stanley Cox', 'Swoosie Kurtz': 'Sharon', 'Martha Plimpton': 'Kelly King', 'Harley Cross': 'Richard King', 'Jamey Sheridan': 'Joe', 'Feodor Chaliapin Jr.': 'Leonides Cox       (as Feodor Chaliapin)', 'Zohra Lampert': 'Elaine', 'Loretta Devine': 'Bertha', 'Julie Garfield': 'Belinda', 'Karen Ludwig': 'Melissa', 'Kathy Kinney': 'Bernice', 'Laurel Lyle': 'Muriel', 'Mary Testa': 'Joanne', 'Katherine Cortez': 'Jan'}\"\r\ntt0089572,\"{'Kurt Russell': 'Malcolm Anderson', 'Mariel Hemingway': 'Christine Connelly', 'Richard Jordan': 'Alan Delour', 'Richard Masur': 'Bill Nolan', 'Richard Bradford': 'Phil Wilson', 'Joe Pantoliano': 'Andy Porter', 'Andy Garcia': 'Ray Martinez', 'Rose Portillo': 'Kathy Vasquez', 'William Smith': \"\"Albert O'Shaughnessy\"\", 'John Palmer': 'Himself', 'Lee Sandman': 'Harold Jacoby', 'Dan Fitzgerald': 'Carl Mason', 'Cynthia Caquelin': 'Ruth Lowenstein', 'Fred Ornstein': 'Warren Phillips', 'Fritz Bronner': 'Peter Peterson'}\"\r\ntt0048424,\"{'Robert Mitchum': 'Harry Powell', 'Shelley Winters': 'Willa Harper', 'Lillian Gish': 'Rachel Cooper', 'James Gleason': 'Uncle Birdie Steptoe', 'Evelyn Varden': 'Icey Spoon', 'Peter Graves': 'Ben Harper', 'Don Beddoe': 'Walt Spoon', 'Billy Chapin': 'John Harper', 'Sally Jane Bruce': 'Pearl Harper', 'Gloria Castillo': 'Ruby       (as Gloria Castilo)'}\"\r\ntt0082416,\"{'Meryl Streep': 'Sarah and Anna', 'Jeremy Irons': 'Charles and Mike', 'Hilton McRae': 'Sam', 'Emily Morgan': 'Mary', 'Charlotte Mitchell': 'Mrs. Tranter', 'Lynsey Baxter': 'Ernestina', 'Jean Faulds': 'Cook', 'Peter Vaughan': 'Mr. Freeman', 'Colin Jeavons': 'Vicar', 'Liz Smith': 'Mrs. Fairley', 'Patience Collier': 'Mrs. Poulteney', 'John Barrett': 'Dairyman', 'Leo McKern': 'Dr. Grogan', 'Arabella Weir': 'Girl on Undercliff', 'Ben Forster': 'Boy on Undercliff'}\"\r\ntt0063415,\"{'Peter Sellers': 'Hrundi V. Bakshi', 'Claudine Longet': 'Michele Monet', 'Natalia Borisova': 'Ballerina', 'Jean Carson': 'Nanny', 'Marge Champion': 'Rosalind Dunphy', 'Al Checco': 'Bernard Stein', 'Corinne Cole': 'Janice Kane', 'Dick Crockett': 'Wells', 'Frances Davis': 'Maid', 'Danielle De Metz': \"\"Stella D'Angelo       (as Danielle de Metz)\"\", 'Herbert Ellis': 'Director       (as Herb Ellis)', 'Paul Ferrara': 'Ronnie Smith', 'Steve Franken': 'Levinson', 'Kathe Green': 'Molly Clutterbuck', 'Allen Jung': 'Cook'}\"\r\ntt0057413,\"{'David Niven': 'Sir Charles Lytton', 'Peter Sellers': 'Insp. Jacques Clouseau', 'Robert Wagner': 'George Lytton', 'Capucine': 'Simone Clouseau', 'Brenda de Banzie': 'Angela Dunning', 'Colin Gordon': 'Tucker', 'John Le Mesurier': 'Defence Barrister       (as John LeMesurier)', 'James Lanphier': 'Saloud', 'Guy Thomajan': 'Artoff', 'Michael Trubshawe': 'Felix Townes', 'Riccardo Billi': 'Aristotle Sarajos', 'Meri Welles': 'Monica Fawn       (as Meri Wells)', 'Martin Miller': 'Pierre Luigi - Photographer', 'Fran Jeffries': \"\"Greek 'cousin'\"\", 'Claudia Cardinale': 'The Princess'}\"\r\ntt0100530,\"{'Sean Connery': 'Barley', 'Michelle Pfeiffer': 'Katya', 'Roy Scheider': 'Russell', 'James Fox': 'Ned', 'John Mahoney': 'Brady', 'Michael Kitchen': 'Clive', 'J.T. Walsh': 'Quinn', 'Ken Russell': 'Walter', 'David Threlfall': 'Wicklow', 'Klaus Maria Brandauer': 'Dante', 'Mac McDonald': 'Bob', 'Nicholas Woodeson': 'Niki Landau', 'Martin Clunes': 'Brock', 'Ian McNeice': 'Merrydew       (as Ian McNiece)', 'Colin Stinton': 'Henziger'}\"\r\ntt0055614,\"{'Natalie Wood': 'Maria', 'Richard Beymer': 'Tony', 'Russ Tamblyn': 'Riff', 'Rita Moreno': 'Anita', 'George Chakiris': 'Bernardo', 'Simon Oakland': 'Schrank', 'Ned Glass': 'Doc', 'William Bramley': 'Krupke', 'Tucker Smith': 'Ice', 'Tony Mordente': 'Action', 'David Winters': 'A-rab', 'Eliot Feld': 'Baby John', 'Bert Michaels': 'Snowboy', 'David Bean': 'Tiger', 'Robert Banas': 'Joyboy'}\"\r\ntt0094142,\"{'Danny DeVito': 'Owen', 'Billy Crystal': 'Larry Donner', 'Kim Greist': 'Beth', 'Anne Ramsey': 'Momma', 'Kate Mulgrew': 'Margaret', 'Branford Marsalis': 'Lester', 'Rob Reiner': 'Joel', 'Bruce Kirby': 'Detective DeBenedetto', 'Joey DePinto': 'Sargeant', 'Annie Ross': 'Mrs. Hazeltine', 'Raye Birk': 'Pinsky', 'Oprah Winfrey': 'Herself', 'Olivia Brown': 'Ms. Gladstone', 'Philip Perlman': 'Mr. Perlman', 'Stu Silver': 'Ramon'}\"\r\ntt0054047,\"{'Yul Brynner': 'Chris Larabee Adams', 'Eli Wallach': 'Calvera', 'Steve McQueen': 'Vin Tanner', 'Horst Buchholz': 'Chico', 'Charles Bronson': \"\"Bernardo O'Reilly\"\", 'Robert Vaughn': 'Lee', 'Brad Dexter': 'Harry Luck', 'James Coburn': 'Britt', 'Jorge Martínez de Hoyos': 'Hilario       (as Jorge Martinez de Hoyas)', 'Vladimir Sokoloff': 'Old Man', 'Rosenda Monteros': 'Petra', 'Rico Alaniz': 'Sotero', 'Pepe Hern': 'Tomas', 'Natividad Vacío': 'Villager       (as Natividad Vacio)', 'Mario Navarro': \"\"Boy with O'Reilly\"\"}\"\r\ntt0120757,\"{'Claire Danes': 'Julie', 'Giovanni Ribisi': 'Pete', 'Omar Epps': 'Linc', 'Dennis Farina': 'Greer', 'Josh Brolin': 'Billy', 'Steve Harris': 'Briggs', 'Richard Jenkins': 'Mothershed', 'Larry Brandenburg': 'Eckford', 'Lionel Mark Smith': 'Lanier', 'Sam McMurray': 'Tricky', \"\"Michael O'Neill\"\": 'Greene', 'Stephen Kay': 'Bald Dude       (as Stephen T. Kay)', 'Bodhi Elfman': 'Gilbert - Skinny Freak       (as Bodhi Pine Elfman)', 'Holmes Osborne': 'Mr. Cochrane', 'Dey Young': 'Mrs. Cochrane'}\"\r\ntt0263757,\"{'Brittany Murphy': 'Molly', 'Dakota Fanning': 'Ray', 'Marley Shelton': 'Ingrid', 'Donald Faison': 'Huey', 'Jesse Spencer': 'Neal', 'Austin Pendleton': 'Mr. McConkey', 'Heather Locklear': 'Roma Schleine', 'Will Toale': 'Briefs Model', 'Marceline Hugot': 'Nurse', 'Pell James': 'Julie', 'Quddus': 'Party Guy       (as Benjamin Quddus Philippe)', 'Russell Steinberg': 'Party Guy', 'Fisher Stevens': 'Fisher Stevens', 'Susanna Frazer': 'Ballet Teacher', 'Wynter Kullman': 'Holly'}\"\r\ntt0070915,\"{'Burt Reynolds': \"\"Bobby 'Gator' McKlusky\"\", 'Jennifer Billingsley': 'Lou', 'Ned Beatty': 'Sheriff J.C. Connors', 'Bo Hopkins': 'Roy Boone', 'Matt Clark': 'Dude Watson', 'Louise Latham': 'Martha Culpepper', 'Diane Ladd': 'Maggie       (as Diane Lad)', 'R.G. Armstrong': 'Big Bear', 'Conlan Carter': 'Deputy', 'Dabbs Greer': 'Pa McKlusky', 'Lincoln Demyan': 'Warden', 'John Steadman': 'Skeeter', 'Iris Korn': 'Ma McKlusky', 'Stephanie Burchfield': 'Jenny', 'Barbara Muller': 'Louella'}\"\r\ntt0098546,\"{\"\"'Weird Al' Yankovic\"\": 'George Newman', 'Victoria Jackson': 'Teri Campbell', 'Kevin McCarthy': 'R.J. Fletcher', 'Michael Richards': 'Stanley Spadowski', 'David Bowe': 'Bob Steckler', 'Stanley Brock': 'Harvey Bilchik', 'Anthony Geary': 'Philo', 'Trinidad Silva': 'Raul Hernandez', 'Gedde Watanabe': 'Kuni', 'Billy Barty': 'Noodles MacIntosh', 'John Paragon': 'Richard Fletcher', 'Fran Drescher': 'Pamela Finklestein', 'Sue Ane Langdon': 'Esther Bilchik', 'David Proval': 'Head Thug', 'Grant James': 'Killer Thug'}\"\r\ntt0098090,\"{'Robert Englund': 'Erik Destler /              The Phantom', 'Jill Schoelen': 'Christine Day', 'Alex Hyde-White': 'Richard Dutton', 'Bill Nighy': 'Martin Barton', 'Stephanie Lawrence': 'La Carlotta', 'Terence Harvey': 'Insp. Hawkins', 'Nathan Lewis': 'Davies', 'Peter Clapham': 'Harrison', 'Molly Shannon': 'Meg (New York)', 'Emma Rawson': 'Meg (London)', 'Mark Ryan': 'Mott', 'Yehuda Efroni': 'The Rat Catcher', 'Terence Beesley': 'Joseph Buquet', 'Ray Jewers': 'Elise', 'Robin Hunter': 'Roland'}\"\r\ntt0102926,\"{'Jodie Foster': 'Clarice Starling', 'Lawrence A. Bonney': 'FBI Instructor', 'Kasi Lemmons': 'Ardelia Mapp', 'Lawrence T. Wrentz': 'Agent Burroughs', 'Scott Glenn': 'Jack Crawford', 'Anthony Heald': 'Dr. Frederick Chilton', 'Frankie Faison': 'Barney', 'Don Brockett': 'Friendly Psychopath', 'Frank Seals Jr.': 'Brooding Psychopath', 'Stuart Rudin': 'Miggs', 'Anthony Hopkins': 'Dr. Hannibal Lecter', 'Maria Skorobogatov': 'Young Clarice       (as Masha Skorobogatov)', 'Jeffrie Lane': \"\"Clarice's Father\"\", 'Leib Lensky': 'Mr. Lang', \"\"George 'Red' Schwartz\"\": \"\"Mr. Lang's Driver       (as Red Schwartz)\"\"}\"\r\ntt0086567,\"{'Matthew Broderick': 'David', 'Dabney Coleman': 'McKittrick', 'John Wood': 'Falken', 'Ally Sheedy': 'Jennifer', 'Barry Corbin': 'General Beringer', 'Juanin Clay': 'Pat Healy', 'Kent Williams': 'Cabot', 'Dennis Lipscomb': 'Watson', 'Joe Dorsey': 'Conley', 'Irving Metzman': 'Richter', 'Michael Ensign': \"\"Beringer's Aide\"\", 'William Bogert': 'Mr. Lightman', 'Susan Davis': 'Mrs. Lightman', 'James Tolkan': 'Wigan', 'David Clover': 'Stockman'}\"\r\ntt0086619,\"{'Barbra Streisand': 'Yentl', 'Mandy Patinkin': 'Avigdor', 'Amy Irving': 'Hadass', 'Nehemiah Persoff': \"\"Reb Mendel 'Papa'\"\", 'Steven Hill': 'Reb Alter Vishkower', 'Allan Corduner': 'Shimmele', 'Ruth Goring': 'Esther Rachel', 'David de Keyser': 'Rabbi Zalman       (as David De Keyser)', 'Bernard Spear': 'Tailor', 'Doreen Mantle': 'Mrs. Shaemen', 'Lynda Baron': 'Peshe       (as Lynda Barron)', 'Jack Lynn': 'Bookseller', 'Anna Tzelniker': 'Mrs. Kovner', 'Miriam Margolyes': 'Sarah', 'Mary Henry': 'Mrs. Jacobs'}\"\r\ntt0092003,\"{'Willie Nelson': 'Doc Holliday', 'Kris Kristofferson': 'Ringo /              Ringo Kid /              Bill Williams', 'Johnny Cash': 'Marshal Curly Wilcox', 'Waylon Jennings': 'Hatfield - Gambler', 'John Schneider': 'Buck - Overland Stage Driver', 'Elizabeth Ashley': 'Dallas', 'Anthony Newley': \"\"Trevor Peacock - Old John's Whiskey Salesman\"\", 'Anthony Franciosa': 'Henry Gatewood - Tonto Banker       (as Tony Franciosa)', 'Merritt Butrick': 'Lt. Blanchard', 'Mary Crosby': 'Mrs. Lucy Mallory', 'June Carter Cash': 'Mrs. Pickett', 'Jessi Colter': 'Martha       (as Jesse Colter)', 'Alex Kubik': 'Luke Plummer       (as Alex Kubic)', 'David Allan Coe': 'Ike Plummer', 'Bob Mclean': 'Chris       (as Bob McLean)'}\"\r\ntt0086999,\"{'Lucinda Dickey': 'Kelly', 'Adolfo Quinones': \"\"Ozone       (as Adolfo 'Shabba-Doo' Quinones)\"\", 'Michael Chambers': \"\"Turbo       (as Michael 'Boogaloo Shrimp' Chambers)\"\", 'Susie Coelho': 'Rhonda       (as Susie Bono)', 'Harry Caesar': 'Byron', 'Jo de Winter': 'Mrs. Bennett       (as Jo De Winter)', 'John Christy Ewing': 'Mr. Bennett', 'Steve Notario': \"\"Strobe /              Electro-Rockers Dancer       (as Steve 'Sugarfoot' Notario)\"\", 'Sabrina García': 'Lucia', 'Lu Leonard': 'Head Nurse', 'Ken Olfson': 'Randall', 'Peter MacLean': 'Mr. Douglas', 'Herb Mitchell': 'Stanley', 'Sandy Lipton': 'Mrs. Snyder', 'William Cort': 'Howard Howard'}\"\r\ntt0072251,\"{'Walter Matthau': 'Lt. Garber', 'Robert Shaw': 'Blue', 'Martin Balsam': 'Green', 'Hector Elizondo': 'Grey', 'Earl Hindman': 'Brown', 'James Broderick': 'Denny Doyle', \"\"Dick O'Neill\"\": 'Correll', 'Lee Wallace': 'The Mayor', 'Tom Pedi': 'Caz Dolowicz', 'Beatrice Winde': 'Mrs. Jenkins', 'Jerry Stiller': 'Lt. Rico Patrone', 'Nathan George': 'Ptl. James', 'Rudy Bond': 'Police Commissioner', 'Kenneth McMillan': 'Borough Commander       (as Kenneth Mc Millan)', 'Doris Roberts': \"\"Mayor's Wife\"\"}\"\r\ntt0071746,\"{'Dustin Hoffman': 'Lenny Bruce', 'Valerie Perrine': 'Honey Bruce', 'Jan Miner': 'Sally Marr', 'Stanley Beck': 'Artie Silver', 'Frankie Man': 'Baltimore Comic', 'Rashel Novikoff': 'Aunt Mema', 'Gary Morton': 'Sherman Hart', 'Guy Rennie': 'Jack Goldstein', 'Michele Yonge': 'Nurse', 'Kathryn Witt': 'Girl       (as Kathie Witt)', 'Monroe Myers': 'Hawaiin Judge', 'John DiSanti': 'John Santi', 'Mickey Gatlin': 'San Francisco Policeman', 'Martin Begley': 'San Francisco Judge', 'Mark Harris': 'Defense Attorney'}\"\r\ntt0118900,\"{'Jim Belushi': 'Det. Frank Divinci       (as James Belushi)', 'Tupac Shakur': 'Det. Rodriguez', 'Lela Rochon': 'Cynthia Webb', 'Dennis Quaid': 'Joe Doe /              William', 'James Earl Jones': 'Arthur Baylor', 'David Paymer': 'Elliot Goff', 'Wendy Crewson': 'Helen Eden', 'Gary Cole': 'Richard Simms', \"\"Terrence 'T.C.' Carson\"\": 'Manny Landrew', 'Brad Greenquist': 'Richard Stein', 'James Handy': 'Capt. Henderson', 'Kool Moe Dee': 'Lionel Hudd', 'Victor Love': 'Hooper', 'Robert LaSardo': 'Sarkasian', 'Perry Anzilotti': 'Vic'}\"\r\ntt0251114,\"{'Bruce Willis': 'Col. William A. McNamara', 'Colin Farrell': 'Lt. Thomas W. Hart', 'Terrence Howard': 'Lt. Lincoln A. Scott', 'Cole Hauser': 'Staff Sgt. Vic W. Bedford', 'Marcel Iures': 'Col. Werner Visser', 'Linus Roache': 'Capt. Peter A. Ross', 'Vicellous Shannon': 'Lt. Lamar T. Archer', 'Maury Sterling': 'Pfc. Dennis A. Gerber', 'Sam Jaeger': 'Capt. R.G. Sisk', 'Scott Michael Campbell': 'Cpl. Joe S. Cromin', 'Rory Cochrane': 'Sgt. Carl S. Webb', 'Sebastian Tillinger': \"\"Pvt. Bert D. 'Moose' Codman\"\", 'Rick Ravanello': 'Maj. Joe Clary', 'Adrian Grenier': 'Pvt. Daniel E. Abrams', 'Michael Weston': 'Pfc. W. Roy Potts'}\"\r\ntt0070653,\"{'Burt Lancaster': 'Cross', 'Alain Delon': \"\"Jean 'Scorpio' Laurier\"\", 'Paul Scofield': 'Zharkov', 'John Colicos': 'McLeod', 'Gayle Hunnicutt': 'Susan', 'J.D. Cannon': 'Filchock', 'Joanne Linville': 'Sarah', 'Mel Stewart': 'Pick       (as Melvin Stewart)', 'Vladek Sheybal': 'Zemetkin', 'Mary Maude': 'Anne', 'Jack Colvin': 'Thief', 'James Sikking': 'Harris', 'Burke Byrnes': 'Morrison', 'William Smithers': 'Mitchell', 'Shmuel Rodensky': 'Lang'}\"\r\ntt0089730,\"{'Lauren Hutton': 'Countess', 'Jim Carrey': 'Mark Kendall', 'Karen Kopins': 'Robin Pierce', 'Cleavon Little': 'Sebastian', 'Thomas Ballatore': 'Jamie', 'Skip Lackey': 'Russ', 'Jeb Stuart Adams': 'World War I Ace Vampire       (as Jeb Adams)', 'Joseph Brutsman': 'Confederate Vampire', 'Stuart Charno': 'Cabin Boy Vampire', 'Robin Klein': 'Flowerchild Vampire', 'Glen Mauro': 'Twin Vampire #1', 'Gary Mauro': 'Twin Vampire #2', 'Carey More': 'Moll Flanders Vampire', 'Peter Elbling': 'Bookseller', 'Richard Schaal': 'Mr. Kendall'}\"\r\ntt0091699,\"{'Plácido Domingo': 'Otello', 'Katia Ricciarelli': 'Desdemona', 'Justino Díaz': 'Iago', 'Petra Malakova': 'Emilia', 'Urbano Barberini': 'Cassio', 'Massimo Foschi': 'Lodovico', 'Edwin Francis': 'Montano', 'Sergio Nicolai': 'Roderigo', 'Remo Remotti': 'Brabantio', 'Antonio Pierfederici': 'Doge', 'Gabriella Borni': 'Dancer Soloist', 'Peter Lapres': \"\"Cassio's Aide\"\"}\"\r\ntt0105046,\"{'John Malkovich': 'Lennie Small', 'Gary Sinise': 'George Milton', 'Ray Walston': 'Candy', 'Casey Siemaszko': 'Curley', 'Sherilyn Fenn': \"\"Curley's Wife\"\", 'John Terry': 'Slim', 'Richard Riehle': 'Carlson', 'Alexis Arquette': 'Whitt', 'Joe Morton': 'Crooks', 'Noble Willingham': 'The Boss', \"\"Joe D'Angerio\"\": 'Jack', 'Tuck Milligan': 'Mike', 'David Steen': 'Tom', 'Moira Sinise': 'Girl in Red Dress       (as Moira Harris)', 'Mark Boone Junior': 'Bus Driver'}\"\r\ntt0094783,\"{'James Woods': 'Lenny Brown', 'Sean Young': 'Linda Brown', 'John Kapelos': 'Joel Miller', 'Steven Hill': 'Max Sherman', 'Kelle Kerr': 'Rochelle', 'John Rothman': 'Ned', 'Amanda Blake': 'Barbara', 'Grace Zabriskie': 'Sheryl', 'Marc Poppel': 'Mark', 'Fred McCarren': 'Tom', 'Suzanne Kent': 'Helen', 'Libby Boone': 'Delores', 'Greg Deason': 'Michael', 'David Preston': 'Surfer', 'June Chandler': 'Secretary'}\"\r\ntt0078790,\"{'Tim Conway': 'Amos Tucker', 'Don Knotts': 'Theodore', 'Tim Matheson': 'Pvt. Jeff Reed - aka Capt. Phillips', 'Kenneth Mars': 'Marshal Woolly Bill Hitchcock', 'Elyssa Davalos': 'Miss Millie Gaskill', 'Jack Elam': 'Big Mac', 'Robert Pine': 'Lt. Jim Ravencroft', 'Harry Morgan': 'Maj. T.P. Gaskill', 'Ruth Buzzi': \"\"Old Tough Kate - aka 'Granny'\"\", 'Audrey Totter': 'Martha Osten - Blind Cabin Widow', 'Richard X. Slattery': 'Sgt. Slaughter - Head Soldier', 'John Crawford': 'Capt. Sherick', 'Cliff Osmond': 'Wes Hardin - Bank Robber', 'Ted Gehring': 'Hank Starrett - Bank Robber', 'Morgan Paull': 'Corporal #1'}\"\r\ntt0086993,\"{'Mel Gibson': 'Fletcher Christian', 'Anthony Hopkins': 'Lt. William Bligh', 'Laurence Olivier': 'Admiral Hood', 'Edward Fox': 'Captain Greetham', 'Daniel Day-Lewis': 'Fryer', 'Bernard Hill': 'Cole', 'Phil Davis': 'Young       (as Philip Davis)', 'Liam Neeson': 'Churchill', 'Wi Kuki Kaa': 'King Tynah', 'Tevaite Vernette': 'Mauatua', 'Philip Martin Brown': 'Adams', 'Simon Chandler': 'Nelson', 'Malcolm Terris': 'Doctor Huggan', 'Simon Adams': 'Heywood', 'John Sessions': 'Smith'}\"\r\ntt0068931,\"{'Charles Bronson': 'Arthur Bishop', 'Jan-Michael Vincent': 'Steve McKenna', 'Keenan Wynn': 'Harry McKenna', 'Jill Ireland': 'The Girl', 'Linda Ridgeway': \"\"Louise, Steve McKenna's Girlfriend\"\", 'Frank DeKova': 'The Man       (as Frank De Kova)', 'James Davidson': 'Intern', 'Lindsay Crosby': 'Policeman       (as Lindsay H. Crosby)', 'Steve Cory': 'Messenger', 'Tak Kubota': 'Yamoto       (as Takayuki Kubota)', \"\"Patrick O'Moore\"\": 'Old Man', 'Martin Gordon': 'American Tourist', 'Celeste Yarnall': \"\"The Mark's Girl\"\", 'Athena Lorde': 'Old Woman', 'Alison Rose': 'Young Girl'}\"\r\ntt0056241,\"{'Anne Bancroft': 'Annie Sullivan', 'Victor Jory': 'Captain Arthur Keller', 'Inga Swenson': 'Kate Keller', 'Andrew Prine': 'James Keller', 'Kathleen Comegys': 'Aunt Ev', 'Patty Duke': 'Helen Keller'}\"\r\ntt0087231,\"{'Timothy Hutton': 'Christopher Boyce', 'Sean Penn': 'Daulton Lee', 'Pat Hingle': 'Mr. Charlie Boyce', 'Joyce Van Patten': 'Mrs. Boyce', 'Rob Reed': 'Boyce Child', 'Rob Newell': 'Boyce Child', 'Karen West': 'Boyce Child', 'Art Camacho': 'Boyce Child       (as Arturo Comacho)', 'Annie Kozuch': 'Boyce Child', 'Richard Dysart': 'Dr. Lee', 'Priscilla Pointer': 'Mrs. Lee', 'Chris Makepeace': 'David Lee', 'Dorian Harewood': 'Gene', 'Mady Kaplan': 'Laurie', 'Macon McCalman': 'Larry Rogers'}\"\r\ntt0076210,\"{'Burt Lancaster': 'Dr. Paul Moreau', 'Michael York': 'Andrew Braddock', 'Nigel Davenport': 'Montgomery', 'Barbara Carrera': 'Maria', 'Richard Basehart': 'Sayer of the Law', 'Nick Cravat': \"\"M'Ling\"\", 'The Great John L.': 'Boarman', 'Bob Ozman': 'Bullman', 'Fumio Demura': 'Hyena Man', 'Gary Baxley': 'Lionman', 'John Gillespie': 'Tigerman', 'David S. Cass Sr.': 'Bearman       (as David Cass)'}\"\r\ntt0057115,\"{'Steve McQueen': \"\"Hilts 'The Cooler King'\"\", 'James Garner': \"\"Hendley 'The Scrounger'\"\", 'Richard Attenborough': \"\"Bartlett 'Big X'\"\", 'James Donald': \"\"Ramsey 'The SBO'\"\", 'Charles Bronson': \"\"Danny 'Tunnel King'\"\", 'Donald Pleasence': \"\"Blythe 'The Forger'\"\", 'James Coburn': \"\"Sedgwick 'Manufacturer'\"\", 'Hannes Messemer': \"\"Von Luger 'The Kommandant'\"\", 'David McCallum': \"\"Ashley-Pitt 'Dispersal'\"\", 'Gordon Jackson': \"\"MacDonald 'Intelligence'\"\", 'John Leyton': \"\"Willie 'Tunnel King'\"\", 'Angus Lennie': \"\"Ives 'The Mole'\"\", 'Nigel Stock': \"\"Cavendish 'The Surveyor'\"\", 'Robert Graf': \"\"Werner 'The Ferret'\"\", 'Jud Taylor': 'Goff'}\"\r\ntt0055184,\"{'Clark Gable': 'Gay Langland', 'Marilyn Monroe': 'Roslyn Taber', 'Montgomery Clift': 'Perce Howland', 'Thelma Ritter': 'Isabelle Steers', 'Eli Wallach': 'Guido', 'James Barton': \"\"Fletcher's Grandfather\"\", 'Kevin McCarthy': 'Raymond Taber', 'Estelle Winwood': 'Church Lady Collecting Money in Bar'}\"\r\ntt0054428,\"{'Burt Lancaster': 'Ben Zachary', 'Audrey Hepburn': 'Rachel Zachary', 'Audie Murphy': 'Cash Zachary', 'John Saxon': 'Johnny Portugal', 'Charles Bickford': 'Zeb Rawlins', 'Lillian Gish': 'Mattilda Zachary', 'Albert Salmi': 'Charlie Rawlins', 'Joseph Wiseman': 'Abe Kelsey', 'June Walker': 'Hagar Rawlins', 'Kipp Hamilton': 'Georgia Rawlins', 'Arnold Merritt': 'Jude Rawlins', 'Doug McClure': 'Andy Zachary', 'Carlos Rivas': 'Lost Bird'}\"\r\ntt0383216,\"{'Steve Martin': 'Clouseau', 'Kevin Kline': 'Dreyfus', 'Jean Reno': 'Ponton', 'Emily Mortimer': 'Nicole', 'Henry Czerny': 'Yuri', 'Kristin Chenoweth': 'Cherie', 'Roger Rees': 'Raymond Larocque', 'Beyoncé': 'Xania       (as Beyoncé Knowles)', 'Philip Goodwin': 'Deputy Chief Renard', 'Henri Garcin': 'President', 'William Abadie': 'Bizu', 'Daniel Sauli': 'Music Producer', 'Jean Dell': 'Justice Minister Clochard', 'Anna Katarina': 'Agent Corbeille', 'Nick Toren': 'Agent Savard'}\"\r\ntt0107863,\"{'Mario Van Peebles': 'Jesse Lee', 'Stephen Baldwin': \"\"Jimmy J. 'Little J' Teeters\"\", 'Charles Lane': 'Weezie', \"\"Tommy 'Tiny' Lister\"\": 'Obobo       (as Tiny Lister)', 'Big Daddy Kane': 'Father Time', 'Billy Zane': 'Colonel Graham', 'Blair Underwood': 'Carver', 'Melvin Van Peebles': 'Papa Joe', 'Salli Richardson-Whitfield': 'Lana       (as Salli Richardson)', 'Tone Loc': 'Angel', 'Pam Grier': 'Phoebe', 'Vesta Williams': 'Vera       (as Vesta)', 'Isaac Hayes': 'Cable', 'Richard Jordan': 'Sheriff Bates', 'Paul Bartel': 'Mayor Bigwood'}\"\r\ntt0091875,\"{'Gregory Hines': 'Ray Hughes', 'Billy Crystal': 'Danny Costanzo', 'Steven Bauer': 'Det. Frank Sigliano', 'Darlanne Fluegel': 'Anna Costanzo', 'Joe Pantoliano': 'Snake', 'Dan Hedaya': 'Captain Logan', 'Jon Gries': 'Det. Tony Montoya       (as Jonathan Gries)', 'Tracy Reed': 'Maryann', 'Jimmy Smits': 'Julio Gonzales', 'John DiSanti': 'Vinnie', 'Larry Hankin': 'Ace', 'Don Calfa': \"\"Women's Room Lawyer\"\", 'Robert Lesser': 'Supoena Lawyer', 'Betty Carvalho': 'Apartment Manager', 'Louis Perez': 'Thug'}\"\r\ntt0108187,\"{'Roberto Benigni': 'Gendarme Jacques Gambrelli', 'Herbert Lom': 'Police Commisioner Charles Dreyfus', 'Claudia Cardinale': 'Maria Gambrelli', 'Shabana Azmi': 'Queen', 'Debrah Farentino': 'Princess Yasmin', 'Jennifer Edwards': 'Yussa', 'Robert Davi': 'Hans Zarba', 'Mark Schneider': 'Arnon', 'Mike Starr': 'Hanif', 'Kenny Spalding': 'Garth', 'Anton Rodgers': 'Police Chief Charles Lazar', 'Burt Kwouk': 'Cato Fong', 'Graham Stark': 'Professor Auguste Balls', 'Oliver Cotton': 'King Haroak', 'Aharon Ipalé': 'Gen. Jaffar'}\"\r\ntt0098042,\"{'Laura Alcalde': 'Customer #2', 'Madison Arnold': 'Plumber #1', 'Carmen Alvarez Block': 'Mrs. Rifkin', 'Lisa Blount': 'Phyllis', 'Alan Blumenfeld': 'Lew', 'Thomas Byrd': 'Mr. Holstrom       (as Tom Byrd)', 'Frederick Coffin': 'Sgt. Haroldson', 'Richard Embardo': 'Frankie', 'Teri Garr': 'Sunny', 'Carole Goldman': 'Mrs. Colby', 'Debra Lamb': \"\"Panetti's Dancer       (as Deborah Lamb)\"\", 'James Lashly': 'Cop #1       (as James Lashley)', 'John Lithgow': 'Dave', 'Ada Maris': 'Customer #1', 'Bruce McGill': 'Ernie'}\"\r\ntt0114287,\"{'Liam Neeson': 'Rob Roy', 'Jessica Lange': 'Mary', 'John Hurt': 'Montrose', 'Tim Roth': 'Cunningham', 'Eric Stoltz': 'McDonald', 'Andrew Keir': 'Argyll', 'Brian Cox': 'Killearn', 'Brian McCardie': 'Alasdair', 'Gilbert Martin': 'Guthrie', 'Vicki Masson': 'Betty', 'Gilly Gilchrist': 'Iain', 'Jason Flemyng': 'Gregor', 'Ewan Stewart': 'Coll', 'David Hayman': 'Sibbald', 'Brian McArthur': 'Ranald'}\"\r\ntt0122690,\"{'Robert De Niro': 'Sam', 'Jean Reno': 'Vincent', 'Natascha McElhone': 'Deirdre', 'Stellan Skarsgård': 'Gregor', 'Sean Bean': 'Spence', 'Skipp Sudduth': 'Larry', 'Michael Lonsdale': 'Jean-Pierre', 'Jan Tríska': 'Dapper Gent', 'Jonathan Pryce': \"\"Seamus O'Rourke\"\", 'Ron Perkins': 'Man with the Newspaper', 'Féodor Atkine': 'Mikhi', 'Katarina Witt': 'Natacha Kirilova', 'Bernard Bloch': 'Sergi', 'Dominic Gugliametti': 'Clown Ice Skater', 'Alan Beckworth': 'Clown Ice Skater'}\"\r\ntt0075268,\"{'Jeff Bridges': 'Craig Blake', 'Sally Field': 'Mary Tate Farnsworth', 'Arnold Schwarzenegger': 'Joe Santo', 'R.G. Armstrong': 'Thor Erickson', 'Robert Englund': 'Franklin', 'Helena Kallianiotes': 'Anita', 'Roger E. Mosley': 'Newton', 'Woodrow Parfrey': 'Uncle Albert', 'Scatman Crothers': 'William', 'Kathleen Miller': 'Dorothy Stephens', 'Fannie Flagg': 'Amy', 'Joanna Cassidy': 'Zoe', 'Richard Gilliland': 'Hal', 'Mayf Nutter': 'Richard Packman', 'Ed Begley Jr.': 'Lester'}\"\r\ntt0102103,\"{'Judy Davis': 'George Sand', 'Hugh Grant': 'Frederic Chopin', 'Mandy Patinkin': 'Alfred De Musset', 'Bernadette Peters': \"\"Marie D'Agoult\"\", 'Julian Sands': 'Franz Liszt', 'Ralph Brown': 'Eugene Delacroix', 'Georges Corraface': 'Felicien Mallefille', 'Anton Rodgers': \"\"Duke D'Antan\"\", 'Emma Thompson': \"\"Duchess D'Antan\"\", 'Anna Massey': \"\"George Sand's Mother\"\", 'David Birkin': 'Maurice', 'Nimer Rashed': 'Didier', 'Fiona Vincente': 'Solange', 'John Savident': 'Buloz', 'Lucy Speed': 'Young Aurora'}\"\r\ntt0059287,\"{'Annette Funicello': 'Dee Dee', 'Dwayne Hickman': 'Ricky', 'Brian Donlevy': \"\"B.D. 'Big Deal' MacPherson\"\", 'Harvey Lembeck': 'Eric Von Zipper', 'Beverly Adams': 'Cassandra', 'John Ashley': 'Johnny', 'Jody McCrea': 'Bonehead', 'Marianne Gaba': 'Animal', 'Len Lesser': 'North Dakota Pete', 'Irene Tsu': 'Native Girl', 'Arthur Julian': 'Dr. Melamed', 'Bobbie Shaw Chance': 'Khola Koku       (as Bobbi Shaw)', 'Buster Keaton': 'Bwana', 'The Kingsmen': 'The Kingsmen', 'Alberta Nelson': 'Puss'}\"\r\ntt0089348,\"{'Chuck Norris': 'Matt Hunter', 'Richard Lynch': 'Mikhail Rostov', 'Melissa Prophet': 'Dahlia McGuire', 'Alexander Zale': 'Nikko', 'Alex Colon': 'Tomas', 'Eddie Jones': 'Cassidy', 'Jon DeVries': 'Johnston', \"\"James O'Sullivan\"\": 'Harper', 'Billy Drago': 'Mickey', 'Jaime Sánchez': 'Castillo       (as Jaime Sanchez)', 'Dehl Berti': 'John Eagle', 'Stephen Markle': 'Flynn', 'Shane McCamey': 'Kurt', 'Martin Shakar': 'Adams', 'James Pax': 'Koyo'}\"\r\ntt0102005,\"{'Mickey Rourke': 'Harley Davidson', 'Don Johnson': 'Marlboro', 'Chelsea Field': 'Virginia Slim', 'Daniel Baldwin': 'Alexander', 'Giancarlo Esposito': 'Jimmy Jiles', 'Vanessa Williams': 'Lulu Daniels', 'Robert Ginty': 'Thom', 'Tia Carrere': 'Kimiko', 'Julius Harris': 'Old Man', 'Eloy Casados': 'Jose', 'Big John Studd': 'Jack Daniels', 'Tom Sizemore': 'Chance Wilder', 'Mitzi Martin': 'The Woman', 'Kelly Hu': 'Suzie', 'James Nardini': 'Punk with Gun'}\"\r\ntt0093200,\"{'Robert Townsend': 'Bobby Taylor /              Jasper /              Speed /              Sam Ace /              Rambro', 'Craigus R. Johnson': 'Stevie Taylor', 'Helen Martin': \"\"Bobby's Grandmother\"\", 'Starletta DuPois': \"\"Bobby's Mother\"\", 'Marc Figueroa': 'Sitcom Father /              Client #2', 'Sarah Kaite Coughlan': 'Sitcom Girlfriend /              Rehearsing Actress       (as Sarah Kate Coughlin)', 'Sean Michal Flynn': 'Sitcom Boyfriend', 'Brad Sanders': 'Batty Boy', 'David McKnight': 'Uncle Ray', 'Keenen Ivory Wayans': 'Donald /              Jheri Curl', 'Lou B. Washington': 'Tiny       (as Ludie Washington)', 'Anne-Marie Johnson': 'Lydia /              Willie Mae /              Hooker #5', 'Don Reed': 'Maurice', 'Kim Wayans': 'Customer in Chair', \"\"Gregory 'Popeye' Alexander\"\": 'Pimp /              Eddie Murphy-Type'}\"\r\ntt0080895,\"{'Susan Saint James': 'Jane', 'Jane Curtin': 'Elaine', 'Jessica Lange': 'Louise', 'Richard Benjamin': 'Albert', 'Eddie Albert': 'Max', 'Cathryn Damon': 'Natalie', 'Dabney Coleman': 'Jack Heintzel', 'Fred Willard': 'Robert', 'Art Metrano': 'Gas Station Attendant', 'Ronnie Schell': 'Bill Pike', 'Michael Bell': 'Tom', 'Sybil Danning': 'Charlotte', 'Al Checco': 'Tim Lundy', 'Susan Tolsky': 'Patty', 'Garrett Morris': 'Power & Light Man'}\"\r\ntt0085672,\"{'Lou Ferrigno': 'Hercules', 'Brad Harris': 'King Augeias', 'Sybil Danning': 'Adriana', 'Rossana Podestà': 'Hera', 'Ingrid Anderson': 'Cassiopeia', \"\"Mirella D'Angelo\"\": 'Circe', 'William Berger': 'King Minos', 'Bobby Rhodes': 'King Xenodama', 'Gianni Garko': 'Valcheus       (as John Garko)', 'Yehuda Efroni': 'Dorcon', 'Delia Boccardo': 'Athena', 'Claudio Cassinelli': 'Zeus', 'Franco Garofalo': 'The Thief       (as Frank Garland)', 'Gabriella Giorgelli': 'Mother       (as Gabriella George)', 'Raf Baldassarre': 'Sostratos       (as Ralph Baldassar)'}\"\r\ntt0068673,\"{'Fred Williamson': 'B.J. Hammer', 'Bernie Hamilton': 'Davis', 'Vonetta McGee': 'Lois', 'William Smith': 'Brenner', 'Charles Lampkin': 'Big Sid', 'Elizabeth Harding': 'Rhoda', 'Mel Stewart': 'Professor', \"\"D'Urville Martin\"\": 'Sonny', 'Stack Pierce': 'Roughhouse', 'Jamal Moore': 'Henry Jones', 'Nawana Davis': 'Mary', 'John Quade': 'Riley', 'Johnny Silver': 'Tiny', 'Juan DeCarlos': 'Bruiser       (as Juan De Carlos)', 'Jorge Cervera Jr.': 'Medina       (as George Cervera Jr.)'}\"\r\ntt0109913,\"{'V.S. Brodie': 'Ely', 'Guinevere Turner': \"\"Camille 'Max' West\"\", 'T. Wendy McMillan': 'Kia', 'Migdalia Melendez': 'Evy', 'Anastasia Sharp': 'Daria', 'Mary Garvey': 'Student #1 (jury member)', 'Jennifer Allen': 'Student #2', 'Walter Youngblood': 'Student #3', 'Danielia Falcon': 'Student #4 (jury member)', 'Art Stone': 'Student #5', 'Elspeth Kydd': 'Angry Student', 'Tracy Kimme': 'Student #6 (jury member)', 'Brooke Webster': 'Mel', 'Mimi Weddell': 'Mimi', 'Scout': 'Haircutter'}\"\r\ntt0048254,\"{'Frank Silvera': 'Vinnie Rapallo', 'Jamie Smith': 'Davey Gordon', 'Irene Kane': 'Gloria Price', 'Jerry Jarrett': 'Albert', 'Mike Dana': 'Gangster', 'Felice Orlandi': 'Gangster', \"\"Shaun O'Brien\"\": 'Landlord', 'Barbara Brand': 'Taxi Dance Lady', 'David Vaughan': 'Conventioneer #1', 'Alec Rubin': 'Conventioneer #2', 'Ralph Roberts': 'Bouncer #1', 'Phil Stevenson': 'Bouncer #2', 'Arthur Feldman': 'Policeman #1', 'Bill Funaro': 'Taxi Driver', 'Skippy Adelman': 'Mannequin Factory Owner'}\"\r\ntt0071706,\"{'Richard Harris': 'Lt. Cmdr. Anthony Fallon', 'Omar Sharif': 'Captain Alex Brunel', 'David Hemmings': 'Charlie Braddock', 'Anthony Hopkins': 'Supt. John McCleod', 'Shirley Knight': 'Barbara Bannister', 'Ian Holm': 'Nicholas Porter', 'Clifton James': 'Corrigan', 'Roy Kinnear': 'Social Director Curtain', 'Caroline Mortimer': 'Susan McCleod', 'Mark Burns': 'Hollingsworth', 'John Stride': 'Hughes', 'Freddie Jones': 'Sidney Buckland', 'Julian Glover': 'Commander Marder', 'Jack Watson': 'Chief Engineer Mallicent', 'Roshan Seth': 'Azad'}\"\r\ntt0070379,\"{'Robert De Niro': 'Johnny Boy', 'Harvey Keitel': 'Charlie', 'David Proval': 'Tony', 'Amy Robinson': 'Teresa', 'Richard Romanus': 'Michael', 'Cesare Danova': 'Giovanni', 'Victor Argo': 'Mario       (as Vic Argo) (as Victor Argo)', 'George Memmoli': 'Joey', 'Lenny Scaletta': 'Jimmy', 'Jeannie Bell': 'Diane', 'Murray Moston': 'Oscar       (as Murray Mosten)', 'David Carradine': 'Drunk', 'Robert Carradine': 'Boy With Gun', 'Lois Walden': 'Jewish Girl', 'Harry Northup': 'Soldier'}\"\r\ntt0283897,\"{'Robert Duvall': 'John J.', 'Rubén Blades': 'Miguel', 'Kathy Baker': 'Maggie', 'Luciana Pedraza': 'Manuela', 'Julio Oscar Mechoso': 'Orlando', 'James Keane': 'Whitey', 'Frank Gio': 'Frankie       (as Frankie Gio)', 'Kate Micheaux': 'Jenny', 'Frank Cassavetes': 'Jo Jo', 'Michael Corrente': 'Cop at Newsstand', 'Raúl Outeda': 'Tony Manas', 'Géraldine Rojas': 'Pirucha', 'Renee Victor': 'Stella', 'Richard Marquez': 'Salsa Band Member', 'Nelson Marquez': 'Salsa Band Member'}\"\r\ntt0373469,\"{'Robert Downey Jr.': 'Harry Lockhart', 'Val Kilmer': 'Gay Perry', 'Michelle Monaghan': 'Harmony Faith Lane', 'Corbin Bernsen': 'Harlan Dexter', 'Dash Mihok': 'Mr. Frying Pan', 'Larry Miller': 'Dabney Shaw', 'Rockmond Dunbar': 'Mr. Fire', 'Shannyn Sossamon': 'Pink Hair Girl', 'Angela Lindvall': 'Flicka', 'Indio Falconer Downey': 'Harry Lockhart - Age 9', 'Ariel Winter': 'Harmony Faith Lane - Age 7', 'Duane Carnahan': 'Chainsaw Kid', 'Josh Richman': 'Richie', 'Martha Hackett': 'Pistol Woman', 'Nancy Fish': 'N.Y. Casting Woman'}\"\r\ntt0105690,\"{'Steven Seagal': 'Casey Ryback', 'Damian Chapa': 'Tackman', 'Troy Evans': 'Granger', 'David McKnight': 'Flicker', 'Lee Hinton': 'Cue Ball', \"\"Patrick O'Neal\"\": 'Captain Adams', 'Gary Busey': 'Commander Krill', 'Glenn Morshower': 'Ensign Taylor', 'Leo Alexander': 'Lt. Smart', 'John Rottger': 'Commander Green', 'Brad Rea': 'Marine Guard', 'Michael Welden': 'Lt. Ballard', 'Bernie Casey': 'Commander Harris', 'Rickey Pierre': 'Kitchen Helper', 'Raymond Cruz': 'Ramirez'}\"\r\ntt0438488,\"{'Christian Bale': 'John Connor', 'Sam Worthington': 'Marcus Wright', 'Moon Bloodgood': 'Blair Williams', 'Helena Bonham Carter': 'Dr. Serena Kogan', 'Anton Yelchin': 'Kyle Reese', 'Jadagrace': 'Star       (as Jadagrace Berry)', 'Bryce Dallas Howard': 'Kate Connor', 'Common': 'Barnes', 'Jane Alexander': 'Virginia', 'Michael Ironside': 'General Ashdown', \"\"Ivan G'Vera\"\": 'General Losenko       (as Ivan Gvera)', 'Chris Browning': 'Morrison', 'Dorian Nkono': 'David', 'Beth Bailey': 'Lisa', 'Victor J. Ho': 'Mark       (as Victor Ho)'}\"\r\ntt0059825,\"{'Burt Lancaster': 'Paul Labiche', 'Paul Scofield': 'Colonel Franz Von Waldheim', 'Jeanne Moreau': 'Christine', 'Suzanne Flon': 'Mlle. Villard', 'Michel Simon': 'Papa Boule', 'Wolfgang Preiss': 'Major Herren', 'Albert Rémy': 'Didont       (as Albert Remy)', 'Charles Millot': 'Pesquet', 'Richard Münch': 'General Von Lubitz       (as Richard Munch)', 'Jacques Marin': 'Jacques - Rive-Reine Station Master', 'Paul Bonifas': 'Spinet - Resistance Leader', 'Jean Bouchaud': 'Captain Schmidt', \"\"Donald O'Brien\"\": \"\"Sergeant Schwartz       (as Donal O'Brien)\"\", 'Jean-Pierre Zola': 'Octave', 'Arthur Brauss': 'Pilzer       (as Art Brauss)'}\"\r\ntt0091055,\"{'Chuck Norris': 'Max Donigan', 'Louis Gossett Jr.': 'Leo Porter', 'Melody Anderson': 'Patricia Goodwin', 'Will Sampson': 'Tall Eagle', 'Sonny Landham': 'El Coyote', 'John Rhys-Davies': 'Corky Taylor', 'Ian Abercrombie': 'Boggs', 'Richard Lee-Sung': 'Chinese Man /              The General', 'Zaide Silvia Gutiérrez': 'Indian Girl', 'Álvaro Carcaño': 'Willie', 'John Hazelwood': 'Tubbs', 'José Escandón': 'Co-Pilot', 'Mario Arévalo': 'Guerilla Leader', 'Juan Jaramillo': 'Tough Guerilla', 'Miguel Ángel Fuentes': 'Big Man       (as Miguel Fuentes)'}\"\r\ntt0295289,\"{'Jason Lee': 'Paul', 'Julia Stiles': 'Becky', 'Selma Blair': 'Karen', 'James Brolin': 'Ken', 'Shawn Hatosy': 'Jim', 'Lochlyn Munro': 'Ray', 'Diana Scarwid': 'Sandra', 'David Koechner': 'Buck', 'Julie Hagerty': 'Dorothy', 'Thomas Lennon': 'Pete', 'Jackie Burroughs': 'Aunt Budge', 'Jay Brazeau': 'Howard', 'Matthew Walker': 'Minister Green', 'Fred Ewanuick': 'Jeff', 'Lisa Calder': 'Tonya'}\"\r\ntt0052896,\"{'Frank Sinatra': 'Tony Manetta', 'Edward G. Robinson': 'Mario Manetta', 'Eleanor Parker': 'Eloise Rogers', 'Carolyn Jones': 'Shirl', 'Thelma Ritter': 'Sophie Manetta', 'Keenan Wynn': 'Jerry Marks', 'Joi Lansing': 'Dorine', 'Connie Sawyer': 'Miss Wexler', 'James Komack': 'Julius Manetta       (as Jimmy Komack)', 'Dub Taylor': 'Fred', 'George DeWitt': 'Mendy Yales', 'Benny Rubin': 'Abe Diamond', 'Ruby Dandridge': 'Sally', 'B.S. Pully': 'Hood', 'Joyce Nizzari': 'Alice'}\"\r\ntt0096769,\"{'Judie Aronson': 'Jennifer (segment \"\"A Night on the Town\"\")', 'Marg Helgenberger': 'Alex (segment \"\"All Night Operator\"\")', 'Marc McClure': 'Kevin (segment \"\"The Old Dark House\"\")', 'Ed Monaghan': 'Russ (segment \"\"Allison\\'s Story\"\")', 'Alan Rosenberg': 'Richard (segment \"\"All Night Operator\"\")', 'Monique Salcido': 'Lisa (segment \"\"A Night on the Town\"\")', 'Pamela Adlon': 'Cheryl (segment \"\"Allison\\'s Story)       (as Pamela Segall)', 'Penelope Sudrow': 'Kelly (segment \"\"A Night on the Town\"\")', 'Nadine Van der Velde': 'Joan (segment \"\"The Old Dark House\"\")', 'Tracy Wells': 'Amy (segment \"\"A Night on the Town\"\")', 'Ramy Zada': 'Prof. Edward Derek (segment \"\"Allison\\'s Story\"\")', 'Jillian McWhirter': 'Allison (segment \"\"Allison\\'s Story\"\")', 'Patty Avery': 'Pat (segment \"\"Allison\\'s Story\"\")', 'Kent Burden': 'Ron (segment \"\"Allison\\'s Story\"\")', 'Jordana Capra': 'Vanessa (segment \"\"All Night Operator\"\")'}\"\r\ntt0049414,\"{'Robert Wagner': 'Bud Corliss', 'Jeffrey Hunter': 'Gordon Grant', 'Virginia Leith': 'Ellen Kingship', 'Joanne Woodward': 'Dorothy Kingship', 'Mary Astor': 'Mrs. Corliss', 'George Macready': 'Leo Kingship', 'Robert Quarry': 'Dwight Powell', 'Howard Petrie': 'Police Chief Howard Chesser', 'Bill Walker': 'Bill', 'Molly McCart': 'Annabelle Koch', 'Marlene Felton': 'Medical Student'}\"\r\ntt0303714,\"{'Ice Cube': 'Calvin Palmer', 'Anthony Anderson': 'J.D.', 'Cedric the Entertainer': 'Eddie', 'Sean Patrick Thomas': 'Jimmy James', 'Eve': 'Terri Jones', 'Troy Garity': 'Isaac Rosenberg', 'Michael Ealy': 'Ricky Nash', 'Leonard Earl Howze': 'Dinka', 'Keith David': 'Lester Wallace', 'Jazsmin Lewis': 'Jennifer Palmer', 'Lahmard J. Tate': 'Billy       (as Lahmard Tate)', 'Tom Wright': 'Detective Williams', 'Jason George': 'Kevin', 'DeRay Davis': 'Hustle Guy', 'Sonya Eddy': 'Janelle'}\"\r\ntt0069897,\"{'Pam Grier': 'Coffy', 'Booker Bradshaw': 'Howard Brunswick', 'Robert DoQui': 'King George', 'William Elliott': 'Carter', 'Allan Arbus': 'Arturo Vitroni', 'Sid Haig': 'Omar', 'Barry Cahill': 'McHenry', 'Lee de Broux': 'Nick', 'Ruben Moreno': 'Ramos', 'Lisa Farringer': 'Jeri', 'Carol Locatell': 'Priscilla       (as Carol Lawson)', 'Linda Haynes': 'Meg', 'John Perak': 'Aleva', 'Mwako Cumbuka': 'Grover', 'Morris Buchanan': 'Sugarman'}\"\r\ntt0086946,\"{'Rae Dawn Chong': 'Tracy Carlson', 'Guy Davis': \"\"Kenny 'Double K' Kirkland\"\", 'Jon Chardiet': 'Ramon', 'Leon W. Grant': 'Chollie', 'Saundra Santiago': 'Carmen Cararro', 'Robert Taylor': 'Lee Kirkland', 'Mary Alice': 'Cora       (as Mary Alice Smith)', 'Shawn Elliott': 'Domingo', 'Jim Borrelli': 'Monte', 'Dean Elliott': 'Henri', 'Franc Reyes': 'Luis', 'Tonya Pinkins': 'Angela', 'Lee Chamberlin': 'Alicia', 'Antonia Rey': 'Flora', 'Duane Jones': 'Robert'}\"\r\ntt0068284,\"{'William Marshall': 'Blacula /              Mamuwalde', 'Vonetta McGee': 'Tina /              Luva', 'Denise Nicholas': 'Michelle', 'Thalmus Rasulala': 'Dr. Gordon Thomas', 'Gordon Pinsent': 'Lt. Jack Peters', 'Charles Macaulay': 'Dracula', 'Emily Yancy': 'Nancy', 'Lance Taylor Sr.': 'Swenson', 'Ted Harris': 'Bobby McCoy', 'Rick Metzler': 'Billy Schaffer', 'Ji-Tu Cumbuka': 'Skillet       (as Jitu Cumbuka)', 'Logan Field': 'Sgt. Barnes', 'Ketty Lester': 'Juanita Jones', 'Elisha Cook Jr.': 'Sam       (as Elisha Cook)', 'Eric Brotherson': 'Real Estate Agent'}\"\r\ntt0055798,\"{'Burt Lancaster': 'Robert Franklin Stroud', 'Karl Malden': 'Harvey Shoemaker', 'Thelma Ritter': 'Elizabeth Stroud', 'Neville Brand': 'Bull Ransom', 'Betty Field': 'Stella Johnson', 'Telly Savalas': 'Feto Gomez', \"\"Edmond O'Brien\"\": 'Tom Gaddis', 'Hugh Marlowe': 'Albert Comstock', 'Whit Bissell': 'Dr. Ellis', 'Crahan Denton': 'Kramer', 'James Westerfield': 'Jess Younger'}\"\r\ntt0068309,\"{'Barbara Hershey': 'Boxcar Bertha', 'David Carradine': 'Big Bill Shelly', 'Barry Primus': 'Rake Brown', 'Bernie Casey': 'Von Morton', 'John Carradine': 'H. Buckram Sartoris', 'Victor Argo': 'McIver #1', 'David Osterhout': 'McIver #2       (as David R. Osterhout)', 'Grahame Pratt': 'Emeric Pressburger       (credit only)', \"\"'Chicken' Holleman\"\": 'M. Powell       (credit only)', 'Harry Northup': 'Harvey Hall       (as Harry Northrup)', 'Ann Morell': 'Tillie Parr', 'Marianne Dole': 'Mrs. Mailler', 'Joe Reynolds': 'Joe Cox'}\"\r\ntt0097138,\"{'Jean-Claude Van Damme': 'Gibson Rickenbacker', 'Deborah Richter': 'Nady Simmons', 'Vincent Klyn': 'Fender Tremolo', 'Alex Daniels': 'Marshall Strat', 'Dayle Haddon': 'Pearl Prophet', 'Blaise Loong': 'Furman Vux /              Pirate /              Bandit', 'Ralf Moeller': 'Brick Bardo       (as Rolf Muller)', 'Haley Peterson': 'Haley', 'Terrie Batson': 'Mary', \"\"Jackson 'Rock' Pinckney\"\": 'Tytus /              Pirate /              Bandit', 'Janice Graser': 'Vorg', 'Robert Pentz': 'Base /              Pirate /              Bandit', 'Sharon K. Tew': 'Prather /              Pirate /              Bandit', 'Chuck Allen': 'Vondo /              Pirate /              Bandit', 'Stefanos Miltsakakis': 'Xylo /              Pirate /              Bandit'}\"\r\ntt0085384,\"{'David Niven': 'Sir Charles Litton', 'Robert Wagner': 'George Lytton', 'Herbert Lom': 'Chief Insp. Charles LaRousse Dreyfus', 'Joanna Lumley': 'Countess Chandra', 'Capucine': 'Lady Simone Litton', 'Robert Loggia': 'Bruno Langois', 'Harvey Korman': 'Prof. Auguste Balls', 'Burt Kwouk': 'Cato Fong', 'Ted Wass': 'Sergeant Clifton Sleigh', 'Roger Moore': 'Chief Insp. Jacques Clouseau       (as Turk Thrust II)', 'Leslie Ash': 'Juleta Shane (AKA Julie Morgan)', 'Graham Stark': 'Bored Waiter', 'André Maranne': 'Sergeant Francois Duval', 'Peter Arne': 'General Bufoni', 'Patti Davis': 'Michelle Chauvin       (as Patricia Davis)'}\"\r\ntt0069976,\"{'Warren Oates': 'John Dillinger', 'Ben Johnson': 'Melvin Purvis', 'Michelle Phillips': 'Billie Frechette', 'Cloris Leachman': 'Anna Sage', 'Harry Dean Stanton': 'Homer Van Meter', 'Geoffrey Lewis': 'Harry Pierpont', 'John P. Ryan': 'Charles Mackley       (as John Ryan)', 'Richard Dreyfuss': 'Baby Face Nelson', 'Steve Kanaly': 'Pretty Boy Floyd', 'John Martino': 'Eddie Martin', 'Roy Jenson': 'Samuel Cowley', 'Read Morgan': 'Big Jim Wollard', 'Frank McRae': 'Reed Youngblood'}\"\r\ntt0080661,\"{'Michael Caine': 'Doctor Robert Elliott', 'Angie Dickinson': 'Kate Miller', 'Nancy Allen': 'Liz Blake', 'Keith Gordon': 'Peter Miller', 'Dennis Franz': 'Detective Marino', 'David Margulies': 'Dr. Levy', 'Ken Baker': 'Warren Lockman', 'Susanna Clemm': 'Betty Luce', 'Brandon Maggart': 'Cleveland Sam', 'Amalie Collier': 'Cleaning Woman', 'Mary Davenport': 'Woman in Restaurant', 'Anneka Di Lorenzo': 'Nurse       (as Anneka De Lorenzo)', 'Norman Evans': 'Ted', 'Robbie L. McDermott': 'Man in Shower', 'Bill Randolph': 'Chase Cabbie'}\"\r\ntt0106873,\"{'Armand Assante': 'Ned Ravine', 'Sherilyn Fenn': 'Laura Lincolnberry', 'Kate Nelligan': 'Lana Ravine', 'Sean Young': 'Lola Cain', 'Christopher McDonald': 'Frank Kelbo', 'James Remar': 'Max Shady', 'Tony Randall': 'Judge Skanky', 'Clarence Clemons': 'Clarence', 'Michael Cumpsty': \"\"Laura's Husband\"\", 'John Witherspoon': 'Arch', 'Blake Clark': 'Milo Crumley', 'Edward Blanchard': 'Restroom Patron', 'David Greenlee': 'Restroom Stall Patron', 'Tim Frisbie': 'Guy in Bumper Car', 'Michael MacCleod': 'Freckle-Faced Kid'}\"\r\ntt0057449,\"{'Vincent Price': 'Dr. Erasmus Craven', 'Peter Lorre': 'Dr. Adolphus Bedlo', 'Boris Karloff': 'Dr. Scarabus', 'Hazel Court': 'Lenore Craven', 'Olive Sturgess': 'Estelle Craven', 'Jack Nicholson': 'Rexford Bedlo', 'Connie Wallace': 'Maid', 'William Baskin': 'Grimes', 'Aaron Saxon': 'Gort'}\"\r\ntt0066130,\"{'Mick Jagger': 'Ned Kelly', 'Clarissa Kaye-Mason': 'Mrs. Kelly       (as Clarissa Kaye)', 'Mark McManus': 'Joe Byrne', 'Ken Goodlet': 'Supt. Nicholson', 'Frank Thring': 'Judge Barry', 'Bruce Barry': 'George King', 'Tony Bazell': 'Mr. Scott', 'Allen Bickford': 'Dan Kelly', 'Robert Bruning': 'Sgt. Steele', 'Alexander Cann': 'McInnes', 'David Copping': 'Curnow', 'Diane Craig': 'Maggie Kelly', 'Gerry Duggan': \"\"Father O'Hea\"\", 'Geoff Gilmour': 'Steve Hart', 'Anne Harvey': 'Mrs. Devine'}\"\r\ntt0313911,\"{'Frankie Muniz': 'Cody Banks', 'Hilary Duff': 'Natalie Connors', 'Angie Harmon': 'Ronica Miles', 'Keith David': 'CIA Director', 'Cynthia Stevenson': 'Mrs. Banks', 'Arnold Vosloo': 'Molay', 'Daniel Roebuck': 'Mr. Banks', 'Ian McShane': 'Brinkman', 'Darrell Hammond': 'Earl', 'Martin Donovan': 'Dr. Connors', 'Marc Shelton': 'Surveillance Van Agent', 'Chris Gauthier': 'Surveillance Van Agent', 'Harry Van Gorkum': 'Double Agent', 'Connor Widdows': 'Alex Banks', 'Eliza Norbury': 'Mom'}\"\r\ntt1228705,\"{'Robert Downey Jr.': 'Tony Stark', 'Gwyneth Paltrow': 'Pepper Potts', 'Don Cheadle': \"\"Lt. Col. James 'Rhodey' Rhodes\"\", 'Scarlett Johansson': 'Natalie Rushman /              Natasha Romanoff', 'Sam Rockwell': 'Justin Hammer', 'Mickey Rourke': 'Ivan Vanko', 'Samuel L. Jackson': 'Nick Fury', 'Clark Gregg': 'Agent Coulson', 'John Slattery': 'Howard Stark', 'Garry Shandling': 'Senator Stern', 'Paul Bettany': 'JARVIS       (voice)', 'Kate Mara': 'U.S. Marshal', 'Leslie Bibb': 'Christine Everhart', 'Jon Favreau': 'Happy Hogan', 'Christiane Amanpour': 'Christiane Amanpour'}\"\r\ntt0085811,\"{'Ken Marshall': 'Colwyn', 'Lysette Anthony': 'Lyssa', 'Freddie Jones': 'Ynyr', 'Francesca Annis': 'Widow of the Web', 'Alun Armstrong': 'Torquil', 'David Battley': 'Ergo', 'Bernard Bresslaw': 'Cyclops', 'Liam Neeson': 'Kegan', 'John Welsh': 'Seer', 'Graham McGrath': 'Titch', 'Tony Church': 'Turold', 'Bernard Archard': 'Eirig', 'Belinda Mayne': 'Vella', 'Dicken Ashworth': 'Bardolph', 'Todd Carty': 'Oswyn'}\"\r\ntt0139134,\"{'Sarah Michelle Gellar': 'Kathryn Merteuil', 'Ryan Phillippe': 'Sebastian Valmont', 'Reese Witherspoon': 'Annette Hargrove', 'Selma Blair': 'Cecile Caldwell', 'Louise Fletcher': 'Helen Rosemond', 'Joshua Jackson': 'Blaine Tuttle', 'Eric Mabius': 'Greg McConnell', 'Sean Patrick Thomas': 'Ronald Clifford', 'Swoosie Kurtz': 'Dr. Greenbaum', 'Christine Baranski': 'Bunny Caldwell', 'Alaina Reed-Hall': 'Nurse       (as Alaina Reed Hall)', 'Deborah Offner': 'Mrs. Michalak', 'Tara Reid': 'Marci Greenbaum', 'Herta Ware': 'Mrs. Sugarman', 'Hiep Thi Le': 'Mai-Lee'}\"\r\ntt0057012,\"{'Peter Sellers': 'Group Capt. Lionel Mandrake /              President Merkin Muffley /              Dr. Strangelove', 'George C. Scott': \"\"Gen. 'Buck' Turgidson\"\", 'Sterling Hayden': 'Brig. Gen. Jack D. Ripper', 'Keenan Wynn': \"\"Col. 'Bat' Guano\"\", 'Slim Pickens': \"\"Maj. 'King' Kong\"\", 'Peter Bull': 'Russian Ambassador Alexi de Sadesky', 'James Earl Jones': 'Lt. Lothar Zogg', 'Tracy Reed': 'Miss Scott', 'Jack Creley': 'Mr. Staines', 'Frank Berry': 'Lt. H.R. Dietrich', \"\"Robert O'Neil\"\": 'Adm. Randolph', 'Glenn Beck': 'Lt. Kivel       (as Glen Beck)', 'Roy Stephens': 'Frank', 'Shane Rimmer': \"\"Capt. 'Ace' Owens\"\", 'Hal Galili': 'Burpelson AFB Defense Team Member'}\"\r\ntt0089886,\"{'Val Kilmer': 'Chris Knight', 'Gabriel Jarret': 'Mitch Taylor       (as Gabe Jarret)', 'Michelle Meyrink': 'Jordan Cochran', 'William Atherton': 'Prof. Jerry Hathaway', 'Jon Gries': 'Lazlo Hollyfeld       (as Jonathan Gries)', \"\"Patti D'Arbanville\"\": 'Sherry Nugil', 'Stacy Peralta': 'Shuttle Pilot', 'Daniel Ades': 'Laser Ray Victim', 'Andres Aybar': 'Bartender', 'Louis Giambalvo': 'Major Carnagle', 'Ed Lauter': 'David Decker', 'Charles Shull': 'Air Force General', 'Beau Billingslea': 'George', 'Charles Parks': 'Larry', 'Sean Frye': 'Boy at Science Fair'}\"\r\ntt0088172,\"{'Jeff Bridges': 'Starman', 'Karen Allen': 'Jenny Hayden', 'Charles Martin Smith': 'Mark Shermin', 'Richard Jaeckel': 'George Fox', 'Robert Phalen': 'Major Bell', 'Tony Edwards': 'Sergeant Lemon', 'John Walter Davis': 'Brad Heinmuller', 'Ted White': 'Deer Hunter', 'Dirk Blocker': 'Cop #1', 'M.C. Gainey': 'Cop #2', 'Sean Stanek': 'Hot Rodder       (as Sean Faro)', \"\"George 'Buck' Flower\"\": 'Cook       (as Buck Flower)', 'Russ Benning': 'Scientist', 'Ralph Cosham': 'Marine Lieutenant', 'David Wells': \"\"Fox's Assistant\"\"}\"\r\ntt0118708,\"{'Chris Farley': 'Haru', 'Nicollette Sheridan': 'Allison Page /              Sally Jones', 'Robin Shou': 'Gobei', 'Nathaniel Parker': 'Martin Tanley', 'Soon-Tek Oh': 'Sensei', 'Keith Cooke': 'Nobu       (as Keith Cooke Hirabayashi)', 'Chris Rock': 'Joey', 'François Chau': 'Izumo', 'Dale Ishimoto': 'Old Japanese Man', 'Daming Chen': 'Head Kobudosai', 'Burt Bulos': 'Mr. Ozaru', 'Curtis Blanck': 'Billy', 'Tom Bailey': \"\"Billy's Dad\"\", 'Jason Tobin': 'Busboy       (as Jason J. Tobin)', 'Richard Kline': 'Driver'}\"\r\ntt0118615,\"{'Jennifer Lopez': 'Terri Flores', 'Ice Cube': 'Danny Rich', 'Jon Voight': 'Paul Serone', 'Eric Stoltz': 'Dr. Steven Cale', 'Jonathan Hyde': 'Warren Westridge', 'Owen Wilson': 'Gary Dixon', 'Kari Wuhrer': 'Denise Kalberg', 'Vincent Castellanos': 'Mateo', 'Danny Trejo': 'Poacher', 'Frank Welker': 'Anaconda       (voice)'}\"\r\ntt0381849,\"{'Russell Crowe': 'Ben Wade', 'Christian Bale': 'Dan Evans', 'Logan Lerman': 'William Evans', 'Dallas Roberts': 'Grayson Butterfield', 'Ben Foster': 'Charlie Prince', 'Peter Fonda': 'Byron McElroy', 'Vinessa Shaw': 'Emma Nelson', 'Alan Tudyk': 'Doc Potter', 'Luce Rains': 'Marshal Weathers', 'Gretchen Mol': 'Alice Evans', 'Lennie Loftin': 'Glen Hollander', 'Rio Alexander': 'Campos', 'Johnny Whitworth': 'Darden', 'Shawn Howell': 'Jackson       (as Shawn D. Howell)', 'Pat Ricotti': 'Jorgensen'}\"\r\ntt0374102,\"{'Blanchard Ryan': 'Susan Watkins', 'Daniel Travis': 'Daniel Kintner', 'Saul Stein': 'Seth', 'Michael E. Williamson': 'Davis       (as Michael Williamson)', 'Cristina Zenato': 'Linda       (as Cristina Zenaro)', 'John Charles': 'Junior       (as Jon Charles)', 'Estelle Lau': 'Estelle'}\"\r\ntt0814022,\"{'Nicolas Cage': 'Joe', 'Shahkrit Yamnarm': 'Kong', 'Charlie Yeung': 'Fon       (as Charlie Young)', 'Panward Hemmanee': 'Aom', 'Nirattisai Kaljareuk': 'Surat       (as Nirattisai Kaljaruek)', 'Dom Hetrakul': 'Aran', 'Tuck Napaskorn': \"\"Kong's Brother\"\", 'Steve Baldocchi': 'Michigan', 'Chris Heebink': 'USC', 'James With': 'Chicago', 'Peter Shadrin': 'Anton', 'Arthajid Puengvicha': 'Official', 'Duangjai Srisawang': 'Man in Arena', 'Veerasak Boonchard': 'Winai', 'Joe Sakol Palvanichkul': 'Tuk Tuk Driver       (as Sakol Palvanichkul)'}\"\r\ntt0142688,\"{'Johnny Depp': 'Dean Corso', 'Frank Langella': 'Boris Balkan', 'Lena Olin': 'Liana Telfer', 'Emmanuelle Seigner': 'The Girl', 'Barbara Jefford': 'Baroness Kessler', 'Jack Taylor': 'Victor Fargas', 'José López Rodero': 'Pablo & Pedro Ceniza /              1st & 2nd Workmen       (as Jose Lopez Rodero)', 'Tony Amoni': \"\"Liana's Bodyguard\"\", 'James Russo': 'Bernie', 'Willy Holt': 'Andrew Telfer', 'Allen Garfield': 'Witkin', 'Jacques Dacqmine': 'Old Man', 'Joe Sheridan': \"\"Old Man's Son\"\", 'Rebecca Pauly': 'Daughter-In-Law', 'Catherine Benguigui': 'Concierge'}\"\r\ntt0452625,\"{'Connor Price': 'Young Charlie', 'Troy Gentile': 'Young Stu', 'Mackenzie Mowat': 'Birthday Girl', 'Sasha Pieterse': 'Goth Girl', 'Caroline Ford': 'Jennifer', 'Dane Cook': 'Charlie', 'Chelan Simmons': 'Carol', 'Dan Fogler': 'Stu', 'Natalie Morris': 'Natalie', 'Ellia English': 'Reba', 'Tseng Chang': 'Karaoke Singer', 'Michael Teigen': 'Wedding D.J.', 'Chiara Zanni': 'Bride', 'Benjamin Ayres': 'Groomsman       (as Ben Ayres)', 'Carrie Anne Fleming': 'Dirty Talker'}\"\r\ntt0218839,\"{'Jay Brazeau': 'Dr. Chuck Nelken', 'Parker Posey': 'Meg Swan', 'Michael Hitchcock': 'Hamilton Swan', \"\"Catherine O'Hara\"\": 'Cookie Fleck', 'Eugene Levy': 'Gerry Fleck', 'Carrie Aizley': 'Fern City Show Spectator', 'Lewis Arquette': 'Fern City Show Spectator', 'Dany Canino': 'Fern City Show Judge', 'Bob Balaban': 'Dr. Theodore W. Millbank, III', 'Will Sasso': \"\"Fishin' Hole Guy\"\", 'Stephen E. Miller': \"\"Fishin' Hole Guy\"\", 'Christopher Guest': 'Harlan Pepper', 'Michael McKean': 'Stefan Vanderhoof', 'John Michael Higgins': 'Scott Donlan', 'Colin Cunningham': 'New York Butcher'}\"\r\ntt0800003,\"{'Michael Rose': 'Sgt. Major       (as Michael Edward Rose)', 'Glenn Morshower': 'General', 'Larry the Cable Guy': 'Larry', 'Christina Moore': 'Karen', 'Lorna Scott': \"\"Woman at Cowboy Frank's\"\", 'Bill Engvall': 'Bill Little', 'Parker Goris': \"\"Bill's Boy\"\", 'Michael Papajohn': \"\"Bill's Neighbor\"\", 'Lisa Lampanelli': 'Connie', 'DJ Qualls': 'Everett', \"\"Ed O'Ross\"\": 'Victor', 'Lance Smith': 'Sgt. Adams', 'Bill Doyle': 'Colonel', 'Keith David': 'Sgt. Kilgore', 'McKinley Freeman': 'Airborne Soldier'}\"\r\ntt0427312,\"{'Werner Herzog': 'Himself /              Narrator /              Interviewer       (voice)', 'Carol Dexter': \"\"Herself - Treadwell's Mother\"\", 'Val Dexter': \"\"Himself - Treadwell's Father\"\", 'Sam Egli': 'Himself - Egli Air Haul', 'Franc G. Fallico': 'Himself - Coroner', 'Willy Fulton': 'Himself - Pilot', 'Marc Gaede': 'Himself - Ecologist', 'Marnie Gaede': 'Herself - Ecologist', 'Sven Haakanson Jr.': 'Himself - Alutiiq Museum Director', 'Amie Huguenard': 'Herself       (archive footage)', 'David Letterman': 'Himself       (archive footage)', 'Jewel Palovak': 'Herself', 'Kathleen Parker': 'Herself - Close Friend', 'Warren Queeney': 'Himself - Actor and Close Friend', 'Timothy Treadwell': 'Himself       (archive footage)'}\"\r\ntt0099180,\"{'Jeffrey Combs': 'Dr. Herbert West', 'Bruce Abbott': 'Dr. Dan Cain', 'Claude Earl Jones': 'Lt. Leslie Chapham', 'Fabiana Udenio': 'Francesca Danelli', 'David Gale': 'Dr. Carl Hill', 'Kathleen Kinmont': 'Gloria', 'Mel Stewart': 'Dr. Graves', 'Irene Cagen': 'Nurse Shelley       (as Irene Forrest)', 'Michael Strasser': 'Ernest', 'Mary Sheldon': 'Meg Halsey', 'Marge Turner': 'The Re-Animated: Elizabeth Chapham', 'Johnny Legend': 'The Re-Animated: Skinny Corpse', 'David Bynum': 'The Re-Animated: Black Corpse', 'Noble Craig': 'The Re-Animated: Crypt Creature', 'Kim Parker': 'The Re-Animated: Crypt Creature'}\"\r\ntt0838283,\"{'Will Ferrell': 'Brennan Huff', 'John C. Reilly': 'Dale Doback', 'Mary Steenburgen': 'Nancy Huff', 'Richard Jenkins': 'Dr. Robert Doback', 'Adam Scott': 'Derek', 'Kathryn Hahn': 'Alice', 'Andrea Savage': 'Denise', 'Lurie Poston': 'Tommy', 'Elizabeth Yozamp': 'Tiffany', 'Logan Manus': 'Chris Gardoki', 'Travis T. Flory': 'Redheaded Kid       (as Travis Flory)', 'Lili Rose McKay': '7-Year-Old Girl       (as Lili McKay)', 'Shira Piven': 'Nurse', 'Seth Morris': 'Doctor', 'Wayne Federman': 'Blind Man'}\"\r\ntt0117407,\"{'Kim Bodnia': 'Frank', 'Zlatko Buric': 'Milo', 'Laura Drasbæk': 'Vic', 'Slavko Labovic': 'Radovan', 'Mads Mikkelsen': 'Tonny', 'Peter Andersson': 'Hasse', 'Vasilije Bojicic': 'Branko       (as Vanja Bajicic)', 'Lisbeth Rasmussen': 'Rita', 'Levino Jensen': 'Mike', 'Thomas Bo Larsen': 'Junkie', 'Lars Bom': \"\"Uro'er\"\", 'Michael Hasselflug': \"\"Uro'er\"\", 'Nicolas Winding Refn': 'Brian       (as Jang Go Star)', 'Jesper Lohmann': 'Mikkel', 'Steen Fridberg': 'Lasse'}\"\r\ntt0145531,\"{'Patricia Arquette': 'Frankie Paige', 'Gabriel Byrne': 'Father Andrew Kiernan', 'Jonathan Pryce': 'Cardinal Daniel Houseman', 'Nia Long': 'Donna Chadway', 'Thomas Kopache': 'Father Durning', 'Rade Serbedzija': 'Marion Petrocelli       (as Rade Sherbedgia)', 'Enrico Colantoni': 'Father Dario', 'Dick Latessa': 'Father Gianni Delmonico', 'Portia de Rossi': 'Jennifer Kelliho', 'Patrick Muldoon': 'Steven', 'Ann Cusack': 'Dr. Reston', 'Shaun Toub': 'Doctor', 'Tom Hodges': 'ER Nurse', 'Lydia Hazan': 'Attending Nurse', 'Shaun Duke': 'Dr. Eckworth       (as Duke Moosekian)'}\"\r\ntt1324999,\"{'Taylor Lautner': 'Jacob Black', 'Gil Birmingham': 'Billy', 'Billy Burke': 'Charlie Swan', 'Sarah Clarke': 'Renee', 'Ty Olsson': 'Phil', 'Kristen Stewart': 'Bella Swan', 'Ashley Greene': 'Alice Cullen', 'Jackson Rathbone': 'Jasper Hale', 'Peter Facinelli': 'Dr. Carlisle Cullen', 'Elizabeth Reaser': 'Esme Cullen', 'Kellan Lutz': 'Emmett Cullen', 'Nikki Reed': 'Rosalie Hale', 'Robert Pattinson': 'Edward Cullen', 'Christian Sloan': 'Unsavory Man', 'James Pizzinato': 'Unsavory Man'}\"\r\ntt1325004,\"{'Xavier Samuel': 'Riley', 'Kristen Stewart': 'Bella Swan', 'Robert Pattinson': 'Edward Cullen', 'Billy Burke': 'Charlie Swan', 'Justin Chon': 'Eric', 'Anna Kendrick': 'Jessica', 'Michael Welch': 'Mike', 'Christian Serratos': 'Angela', 'Jackson Rathbone': 'Jasper Hale', 'Ashley Greene': 'Alice Cullen', 'Paul Jarrett': 'Mr. Biers', 'Iris Quinn': 'Mrs. Biers', 'Sarah Clarke': 'Renee', 'Peter Facinelli': 'Dr. Carlisle Cullen', 'Elizabeth Reaser': 'Esme Cullen'}\"\r\ntt1259571,\"{'Kristen Stewart': 'Bella Swan', 'Christina Jastrzembska': 'Gran', 'Robert Pattinson': 'Edward Cullen', 'Billy Burke': 'Charlie Swan', 'Anna Kendrick': 'Jessica', 'Michael Welch': 'Mike', 'Justin Chon': 'Eric', 'Christian Serratos': 'Angela', 'Taylor Lautner': 'Jacob Black', 'Ashley Greene': 'Alice Cullen', 'Jackson Rathbone': 'Jasper Hale', 'Russell Roberts': 'Mr. Berty', 'Cam Gigandet': 'James       (archive footage)', 'Michael Sheen': 'Aro', 'Jamie Campbell Bower': 'Caius'}\"\r\ntt1099212,\"{'Kristen Stewart': 'Bella Swan', 'Sarah Clarke': 'Renée', 'Matt Bushell': 'Phil', 'Billy Burke': 'Charlie Swan', 'Gil Birmingham': 'Billy Black', 'Taylor Lautner': 'Jacob Black', 'Gregory Tyree Boyce': 'Tyler', 'Justin Chon': 'Eric', 'Michael Welch': 'Mike Newton', 'Anna Kendrick': 'Jessica', 'Christian Serratos': 'Angela', 'Nikki Reed': 'Rosalie', 'Kellan Lutz': 'Emmet Cullen', 'Ashley Greene': 'Alice Cullen', 'Jackson Rathbone': 'Jasper'}\"\r\ntt0415306,\"{'Will Ferrell': 'Ricky Bobby', 'John C. Reilly': 'Cal Naughton Jr.', 'Sacha Baron Cohen': 'Jean Girard', 'Gary Cole': 'Reese Bobby', 'Michael Clarke Duncan': 'Lucius Washington', 'Leslie Bibb': 'Carley Bobby', 'Jane Lynch': 'Lucy Bobby', 'Amy Adams': 'Susan', 'Andy Richter': 'Gregory', 'Molly Shannon': 'Mrs. Dennit', 'Greg Germann': 'Larry Dennit Jr.', 'David Koechner': 'Hershell', 'Jack McBrayer': 'Glenn', 'Ian Roberts': 'Kyle', 'Pat Hingle': 'Mr. Dennit Sr.'}\"\r\ntt0119654,\"{'Tommy Lee Jones': 'Kay', 'Will Smith': 'Jay', 'Linda Fiorentino': 'Laurel', \"\"Vincent D'Onofrio\"\": 'Edgar', 'Rip Torn': 'Zed', 'Tony Shalhoub': 'Jeebs', 'Siobhan Fallon Hogan': 'Beatrice       (as Siobhan Fallon)', 'Mike Nussbaum': 'Gentle Rosenburg', 'Jon Gries': 'Van Driver', 'Sergio Calderón': 'Jose', 'Carel Struycken': 'Arquillian', 'Fredric Lehne': 'INS Agent Janus       (as Fredric Lane)', 'Richard Hamilton': 'Dee', 'Kent Faulcon': '1st Lt. Jake Jensen', 'John Alexander': 'Mikey'}\"\r\ntt0104694,\"{'Tom Hanks': 'Jimmy Dugan', 'Geena Davis': 'C Dottie Hinson', 'Lori Petty': 'P Kit Keller', 'Madonna': 'C F Mae Mordabito', \"\"Rosie O'Donnell\"\": '3B Doris Murphy', 'Megan Cavanagh': '2B Marla Hooch', 'Tracy Reiner': 'LF /              P Betty Horn', 'Bitty Schram': 'RF Evelyn Gardner', 'Ann Cusack': 'LF Shirley Baker', 'Anne Ramsay': '1B Helen Haley       (as Anne Elizabeth Ramsay)', 'Freddie Simpson': 'SS /              P Ellen Sue Gotlander', 'Renée Coleman': 'LF /              C Alice Gaspers       (as Renee Coleman)', 'Robin Knight': \"\"SS 'Beans' Babbitt\"\", 'Patti Pelton': '2B Marbleann Wilkenson', 'Kelli Simpkins': 'OF Beverly Dixon'}\"\r\ntt0119822,\"{'Jack Nicholson': 'Melvin Udall', 'Helen Hunt': 'Carol Connelly', 'Greg Kinnear': 'Simon Bishop', 'Cuba Gooding Jr.': 'Frank Sachs', 'Skeet Ulrich': 'Vincent', 'Shirley Knight': 'Beverly', 'Yeardley Smith': 'Jackie', 'Lupe Ontiveros': 'Nora', 'Jill the Dog': 'Verdell       (as Jill)', 'Timer the Dog': 'Supporting Dog       (as Timer)', 'Billy the Dog': 'Supporting Dog       (as Billy)', 'Bibi Osterwald': 'Neighbor Woman', 'Ross Bleckner': 'Carl', 'Bernadette Balagtas': 'Caterer', 'Jaffe Cohen': 'Partygoer'}\"\r\ntt0425637,\"{'Tony Chiu-Wai Leung': 'Zhou Yu       (as Tony Leung)', 'Takeshi Kaneshiro': 'Zhuge Liang', 'Fengyi Zhang': 'Cao Cao', 'Chen Chang': 'Sun Quan', 'Wei Zhao': 'Sun Shangxiang', 'Jun Hu': 'Zhao Yun', 'Shidô Nakamura': 'Gan Xing       (as Shidou Nakamura)', 'Chiling Lin': 'Xiao Qiao       (as Chi-Ling Lin)', 'Yong You': 'Liu Bei', 'Yong Hou': 'Lu Su', 'Dawei Tong': 'Sun Shucai', 'Jia Song': 'Li Ji', 'Baasanjav Mijid': 'Guan Yu', 'Jinsheng Zang': 'Zhang Fei', 'Shan Zhang': 'Huang Gai'}\"\r\ntt0245686,\"{'David Spade': 'Joe Dirt', 'Brittany Daniel': 'Brandy', 'Dennis Miller': 'Zander Kelly', 'Adam Beach': 'Kicking Wing', 'Christopher Walken': 'Clem', 'Jaime Pressly': 'Jill', 'Kid Rock': 'Robby', 'Erik Per Sullivan': 'Little Joe Dirt', 'Megan Taylor Harvey': \"\"Joe's Little Sister\"\", 'Caroline Aaron': \"\"Joe's Mom\"\", 'Fred Ward': \"\"Joe's Dad\"\", 'John Farley': 'Security Guard', 'Bob Zany': 'Man', 'Bean Miller': 'Man', 'Lee Walker': 'Zeke'}\"\r\ntt0079417,\"{'Dustin Hoffman': 'Ted Kramer', 'Meryl Streep': 'Joanna Kramer', 'Jane Alexander': 'Margaret Phelps', 'Justin Henry': 'Billy Kramer', 'Howard Duff': 'John Shaunessy', 'George Coe': \"\"Jim O'Connor\"\", 'JoBeth Williams': 'Phyllis Bernard       (as Jobeth Williams)', 'Bill Moor': 'Gressen', 'Howland Chamberlain': 'Judge Atkins', 'Jack Ramage': 'Spencer', 'Jess Osuna': 'Ackerman', 'Nicholas Hormann': 'Interviewer', 'Ellen Parker': 'Teacher', 'Shelby Brammer': \"\"Ted's Secretary\"\", 'Carol Nadell': 'Mrs. Kline'}\"\r\ntt0343660,\"{'Adam Sandler': 'Henry Roth', 'Drew Barrymore': 'Lucy Whitmore', 'Rob Schneider': 'Ula', 'Sean Astin': 'Doug Whitmore', 'Lusia Strus': 'Alexa', 'Dan Aykroyd': 'Dr. Keats', 'Amy Hill': 'Sue', 'Allen Covert': 'Ten Second Tom', 'Blake Clark': 'Marlin Whitmore', 'Maya Rudolph': 'Stacy', \"\"Pomaika'i Brown\"\": 'Nick       (as Nephi Pomaikai Brown)', 'Joe Nakashima': 'Old Hawaiian Man', 'Peter Dante': 'Security Guard', 'Dom Magwili': 'Security Guard', 'Jonathan Loughran': 'Jennifer'}\"\r\ntt0104257,\"{'Tom Cruise': 'Lt. Daniel Kaffee', 'Jack Nicholson': 'Col. Nathan R. Jessep', 'Demi Moore': 'Lt. Cdr. JoAnne Galloway', 'Kevin Bacon': 'Capt. Jack Ross', 'Kiefer Sutherland': '2nd. Lt. Jonathan Kendrick', 'Kevin Pollak': 'Lt. Sam Weinberg', 'James Marshall': 'Pfc. Louden Downey', 'J.T. Walsh': 'Lt. Col. Matthew Andrew Markinson', 'Christopher Guest': 'Dr. Stone', 'J.A. Preston': 'Judge Julius Alexander Randolph', 'Matt Craven': 'Lt. Dave Spradling', 'Wolfgang Bodison': 'Lance Cpl. Harold W. Dawson', 'Xander Berkeley': 'Capt. Whitaker', 'John M. Jackson': 'Capt. West', 'Noah Wyle': 'Cpl. Jeffrey Barnes'}\"\r\ntt0113670,\"{'Liesel Matthews': 'Sara Crewe', 'Eleanor Bron': 'Miss Minchin', 'Liam Cunningham': 'Capt. Crewe /              Prince Rama', 'Rusty Schwimmer': 'Amelia Minchin', 'Arthur Malet': 'Charles Randolph', 'Vanessa Chester': 'Becky       (as Vanessa Lee Chester)', 'Errol Sitahal': 'Ram Dass', 'Heather DeLoach': 'Ermengarde', 'Taylor Fry': 'Lavinia', 'Darcie Bradford': 'Jesse', 'Rachael Bella': 'Betsy', 'Alexandra Rea-Baum': 'Gertrude', 'Camilla Belle': 'Jane', 'Lauren Blumenfeld': 'Rosemary', 'Kelsey Mulrooney': 'Lottie'}\"\r\ntt0310281,\"{'Jim Moret': 'Newscaster', 'Stuart Luce': 'Irving Steinbloom', 'Mary Gross': 'Ma Klapper', 'Marty Belafsky': \"\"Ramblin' Sandy Pitnik       (as Marty Belasky)\"\", 'Michael S. Baser': 'Pa Klapper       (as Michael Baser)', 'Jared Nelson Smith': 'Young Chuck Wiseman', 'Ryan Raddatz': 'Bill Weyburn', 'Todd Lieberman': 'Fred Knox', 'Matthew Joy': 'Boy Klapper', 'Laura Harris': 'Girl Klapper', 'Brian Riley': 'Young George Menschell', 'Harry Shearer': 'Mark Shubb', 'Michael McKean': 'Jerry Palter', 'Christopher Guest': 'Alan Barrows', 'Eugene Levy': 'Mitch Cohen'}\"\r\ntt0105265,\"{'Craig Sheffer': 'Norman Maclean', 'Brad Pitt': 'Paul Maclean', 'Tom Skerritt': 'Rev. Maclean', 'Brenda Blethyn': 'Mrs. Maclean', 'Emily Lloyd': 'Jessie Burns', 'Edie McClurg': 'Mrs. Burns', 'Stephen Shellen': 'Neal Burns', 'Vann Gravage': 'Young Paul', 'Nicole Burdette': 'Mabel', 'Susan Traylor': 'Rawhide', 'Michael Cudlitz': 'Chub', 'Rob Cox': 'Conroy', 'Buck Simmonds': 'Humph', 'Fred Oakland': 'Mr. Burns', 'David Creamer': 'Ken Burns'}\"\r\ntt0268126,\"{'Nicolas Cage': 'Charlie Kaufman /              Donald Kaufman', 'Tilda Swinton': 'Valerie Thomas', 'Meryl Streep': 'Susan Orlean', 'Chris Cooper': 'John Laroche', 'Jay Tavare': 'Matthew Osceola', 'Litefoot': 'Russell       (as G. Paul Davis)', 'Roger Willie': 'Randy', 'Jim Beaver': 'Ranger Tony', 'Cara Seymour': 'Amelia Kavan', 'Doug Jones': 'Augustus Margary', 'Stephen Tobolowsky': 'Ranger Steve Neely       (scenes deleted)', 'Gary Farmer': 'Buster Baxley', 'Peter Jason': 'Defense Attorney', 'Gregory Itzin': 'Prosecutor', 'Curtis Hanson': \"\"Orlean's Husband\"\"}\"\r\ntt0118571,\"{'Harrison Ford': 'President James Marshall', 'Gary Oldman': 'Ivan Korshunov', 'Glenn Close': 'Vice President Kathryn Bennett', 'Wendy Crewson': 'Grace Marshall', 'Liesel Matthews': 'Alice Marshall', 'Paul Guilfoyle': 'Chief of Staff Lloyd Shepherd', 'Xander Berkeley': 'Agent Gibbs', 'William H. Macy': 'Major Caldwell', 'Dean Stockwell': 'Defense Secretary Walter Dean', 'Tom Everett': 'NSA Advisor Jack Doherty', 'Jürgen Prochnow': 'General Alexander Radek       (as Jurgen Prochnow)', 'Donna Bullock': 'Press Secretary Melanie Mitchell', 'Michael Ray Miller': 'AFO Pilot Colonel Axelrod', 'Carl Weintraub': 'AFO Co-Pilot Lt. Col. Ingrahams', 'Elester Latham': 'AFO Navigator /              Major Bridges'}\"\r\ntt0074119,\"{'Dustin Hoffman': 'Carl Bernstein', 'Robert Redford': 'Bob Woodward', 'Jack Warden': 'Harry Rosenfeld', 'Martin Balsam': 'Howard Simons', 'Hal Holbrook': 'Deep Throat', 'Jason Robards': 'Ben Bradlee', 'Jane Alexander': 'Bookkeeper', 'Meredith Baxter': 'Debbie Sloan', 'Ned Beatty': 'Dardis', 'Stephen Collins': 'Hugh Sloan', 'Penny Fuller': 'Sally Aiken', 'John McMartin': 'Foreign Editor', 'Robert Walden': 'Donald Segretti', 'Frank Wills': 'Frank Wills', 'F. Murray Abraham': 'Arresting Officer #1'}\"\r\ntt0305224,\"{'Adam Sandler': 'Dave Buznik', 'Jack Nicholson': 'Dr. Buddy Rydell', 'Marisa Tomei': 'Linda', 'Luis Guzmán': 'Lou       (as Luis Guzman)', 'Allen Covert': 'Andrew', 'Lynne Thigpen': 'Judge Brenda Daniels', 'Kurt Fuller': 'Frank Head', 'Jonathan Loughran': 'Nate', 'Krista Allen': 'Stacy', 'January Jones': 'Gina', 'Woody Harrelson': 'Galaxia /              Security Guard Gary', 'John Turturro': 'Chuck', 'Kevin Nealon': 'Sam', 'Conrad Goode': 'Bailiff /              Lexus Man', 'Gina Gallego': 'Bar Waitress'}\"\r\ntt0112442,\"{'Lisa Boyle': 'Girl Decoy', 'Michael Taliferro': 'Carjacker', 'Emmanuel Xuereb': 'Eddie Dominguez', 'Tchéky Karyo': 'Fouchet       (as Tcheky Karyo)', 'Marc Macaulay': 'Noah Trafficante', 'Ralph Gonzalez': 'Kuni', 'Vic Manni': 'Ferguson', 'Frank John Hughes': 'Casper', 'Mike Kirton': 'Andy', 'Martin Lawrence': 'Marcus Burnett', 'Will Smith': 'Mike Lowrey', 'Will Knickerbocker': \"\"Officer Bill O'Fee\"\", 'Theresa Randle': 'Theresa Burnett', 'Tiffany Samuels': 'Megan Burnett', 'Cory Hodges': 'James Burnett'}\"\r\ntt0414852,\"{'Cyril Raffaelli': 'Capt. Damien Tomaso', 'David Belle': 'Leïto', \"\"Tony D'Amario\"\": 'K2', 'Bibi Naceri': 'Taha Bemamud       (as Larbi Naceri)', 'Dany Verissimo-Petit': 'Lola       (as Dany Verissimo)', 'François Chattot': 'Krüger', 'Nicolas Woirion': 'Corsini', 'Patrick Olivier': 'Le colonel', 'Samir Guesmi': 'Jamel', 'Jérôme Gadner': 'K2 boy 1', 'Tarik Boucekhine': 'Yoyo (para 1)', 'Grégory Jean': 'Para 2', 'Warren Zavatta': 'Para 3', 'Dominique Dorol': 'Cerbère Taha', 'Ludovic Berthillot': 'Le gros mercenaire'}\"\r\ntt0981227,\"{'Michael Cera': 'Nick', 'Kat Dennings': 'Norah', 'Aaron Yoo': 'Thom', 'Rafi Gavron': 'Dev', 'Ari Graynor': 'Caroline', 'Alexis Dziena': 'Tris', 'Jonathan B. Wright': 'Beefy Guy (Lethario)', 'Zachary Booth': 'Gary', 'Jay Baruchel': 'Tal', 'Justin Rice': 'Bishop Allen', 'Christian Rudder': 'Bishop Allen', 'Giorgio Angelini': 'Bishop Allen', 'Darbie Nowatka': 'Bishop Allen', 'Cully Symington': 'Bishop Allen', 'Jeremy Haines': 'Randy (Are You Randy)'}\"\r\ntt0106364,\"{'Kevin Conroy': 'Batman       (voice)', 'Dana Delany': 'Andrea Beaumont       (voice)', 'Hart Bochner': 'Arthur Reeves       (voice)', 'Stacy Keach': 'Phantasm /              Carl Beaumont       (voice) (as Stacy Keach Jr.)', 'Abe Vigoda': 'Salvatore Valestra       (voice)', 'Dick Miller': 'Chuckie Sol       (voice)', 'John P. Ryan': 'Buzz Bronski       (voice)', 'Efrem Zimbalist Jr.': 'Alfred       (voice)', 'Bob Hastings': 'Commissioner Gordon       (voice)', 'Robert Costanzo': 'Detective Bullock       (voice)', 'Mark Hamill': 'The Joker       (voice)', 'Jane Downs': 'Additional Voices       (voice)', 'Pat Musick': 'Additional Voices       (voice)', 'Vernee Watson': 'Additional Voices       (voice) (as Vernee Watson-Johnson)', 'Ed Gilbert': 'Additional Voices       (voice)'}\"\r\ntt0094721,\"{'Alec Baldwin': 'Adam', 'Geena Davis': 'Barbara', 'Annie McEnroe': 'Jane Butterfield', 'Maurice Page': 'Ernie', 'Hugo Stanger': 'Old Bill', 'Michael Keaton': 'Betelgeuse', 'Rachel Mittelman': 'Little Jane', \"\"Catherine O'Hara\"\": 'Delia', 'J. Jay Saunders': 'Moving Man #1', 'Mark Ettlinger': 'Moving Man #2', 'Jeffrey Jones': 'Charles', 'Winona Ryder': 'Lydia', 'Glenn Shadix': 'Otho', 'Patrice Martinez': 'Receptionist', 'Cindy Daly': '3-Fingered Typist       (as Cynthia Daly)'}\"\r\ntt0381681,\"{'Ethan Hawke': 'Jesse', 'Julie Delpy': 'Celine', 'Vernon Dobtcheff': 'Bookstore Manager', 'Louise Lemoine Torrès': 'Journalist #1       (as Louise Lemoine Torres)', 'Rodolphe Pauly': 'Journalist #2', 'Mariane Plasteig': 'Waitress', 'Diabolo': 'Philippe', 'Denis Evrard': 'Boat Attendant', 'Albert Delpy': 'Man at Grill', 'Marie Pillet': 'Woman in Courtyard'}\"\r\ntt0758774,\"{'Leonardo DiCaprio': 'Roger Ferris', 'Russell Crowe': 'Ed Hoffman', 'Mark Strong': 'Hani', 'Golshifteh Farahani': 'Aisha', 'Oscar Isaac': 'Bassam', 'Ali Suliman': 'Omar Sadiki', 'Alon Aboutboul': 'Al-Saleem', 'Vince Colosimo': 'Skip', 'Simon McBurney': 'Garland', 'Mehdi Nebbou': 'Nizar', 'Michael Gaston': 'Holiday', 'Kais Nashif': 'Mustafa Karami', 'Jameel Khoury': 'Marwan', 'Lubna Azabal': \"\"Aisha's Sister Cala\"\", 'Ghali Benlafkih': \"\"Aisha's Nephew Rowley\"\"}\"\r\ntt0142342,\"{'Adam Sandler': 'Sonny Koufax', 'Joey Lauren Adams': 'Layla Maloney', 'Jon Stewart': 'Kevin Gerrity', 'Cole Sprouse': \"\"Julian 'Frankenstien' McGrath\"\", 'Dylan Sprouse': \"\"Julian 'Frankenstien' McGrath\"\", 'Josh Mostel': 'Arthur Brooks', 'Leslie Mann': 'Corinne Maloney', 'Allen Covert': \"\"Phil D'Amato\"\", 'Rob Schneider': 'Delivery Guy', 'Kristy Swanson': 'Vanessa', 'Joseph Bologna': 'Lenny Koufax', 'Peter Dante': 'Tommy Grayton', 'Jonathan Loughran': 'Mike', 'Steve Buscemi': 'Homeless Guy', 'Tim Herlihy': 'Singing Kangaroo'}\"\r\ntt0319061,\"{'Ewan McGregor': 'Ed Bloom - Young', 'Albert Finney': 'Ed Bloom - Senior', 'Billy Crudup': 'Will Bloom', 'Jessica Lange': 'Sandra Bloom - Senior', 'Helena Bonham Carter': 'Jenny - Young /              Jenny - Senior /              The Witch', 'Alison Lohman': 'Sandra Bloom - Young', 'Robert Guillaume': 'Dr. Bennett - Senior', 'Marion Cotillard': 'Josephine Bloom', 'Matthew McGrory': 'Karl the Giant', 'David Denman': 'Don Price - Age 18-22', 'Missi Pyle': 'Mildred', 'Loudon Wainwright III': 'Beamen       (as Loudon Wainwright)', 'Ada Tai': 'Ping', 'Arlene Tai': 'Jing', 'Steve Buscemi': 'Norther Winslow'}\"\r\ntt0115734,\"{'Luke Wilson': 'Anthony Adams', 'Owen Wilson': 'Dignan       (as Owen C. Wilson)', 'Ned Dowd': 'Dr. Nichols', 'Shea Fowler': 'Grace', 'Haley Miller': 'Bernice', 'Robert Musgrave': 'Bob Mapplethorpe', 'Andrew Wilson': 'Future Man', 'Brian Tenenbaum': 'H. Clay Murchison', 'Jenni Tooley': 'Stacy Sinclair', 'Temple Nash': 'Temple', 'Dipak Pallana': 'Bookstore Employee', 'Darryl Cox': 'Bookstore Manager', 'Stephen Dignan': 'Rob', 'Lumi Cavazos': 'Inez', 'Julie Mayfield': 'Wife in Motelroom'}\"\r\ntt0101507,\"{'Hudhail Al-Amir': 'S.A.T. Man', 'Lloyd Avery II': 'Knucklehead #2', 'Angela Bassett': 'Reva Styles', 'Miya McGhee': 'Female Club Member       (as Mia Bell)', 'Lexie Bigham': 'Mad Dog', 'Kenneth A. Brown': 'Little Chris', 'Nicole Brown': 'Brandi - Age 10', 'Ceal': 'Sheryl', 'Morris Chestnut': 'Ricky Baker', 'Darneicea Corley': 'Keisha', 'John Cothran': 'Lewis Crump       (as John Cothran Jr.)', 'Ice Cube': 'Doughboy /              Darren', \"\"Na'Blonka Durden\"\": \"\"Trina       (as Na' Blonka Durden)\"\", 'Susan Falcon': 'Mrs. Olaf', 'Jessie Lawrence Ferguson': 'Officer Coffey       (as Jesse Ferguson)'}\"\r\ntt0127723,\"{'Jennifer Love Hewitt': 'Amanda Beckett', 'Ethan Embry': 'Preston Meyers', 'Charlie Korsmo': 'William Lichter', 'Lauren Ambrose': 'Denise Fleming', 'Peter Facinelli': 'Mike Dexter', 'Seth Green': 'Kenny Fisher', 'Michelle Brookhurst': 'Girl Whose Party It Is', 'Alexander Martin': 'Exchange Student', 'Erik Palladino': 'Cousin Ron', 'Channon Roe': 'Jock #1', 'Sean Patrick Thomas': 'Jock #2', 'Freddy Rodríguez': 'Jock #3       (as Freddy Rodriguez)', 'Joel Michaely': 'X-Phile #1', 'Jay Paulson': 'X-Phile #2', 'Brian Hall': 'Real Homeboy'}\"\r\ntt0075860,\"{'Richard Dreyfuss': 'Roy Neary', 'François Truffaut': 'Claude Lacombe       (as Francois Truffaut)', 'Teri Garr': 'Ronnie Neary', 'Melinda Dillon': 'Jillian Guiler', 'Bob Balaban': 'David Laughlin', 'J. Patrick McNamara': 'Project Leader', 'Warren J. Kemmerling': 'Wild Bill       (as Warren Kemmerling)', 'Roberts Blossom': 'Farmer', 'Philip Dodds': 'Jean Claude', 'Cary Guffey': 'Barry Guiler', 'Shawn Bishop': 'Brad Neary', 'Adrienne Campbell': 'Silvia Neary', 'Justin Dreyfuss': 'Toby Neary', 'Lance Henriksen': 'Robert', 'Merrill Connally': 'Team Leader'}\"\r\ntt0376541,\"{'Natalie Portman': 'Alice', 'Jude Law': 'Dan', 'Julia Roberts': 'Anna', 'Clive Owen': 'Larry', 'Nick Hobbs': 'Taxi Driver', 'Colin Stinton': 'Customs Officer'}\"\r\ntt0106673,\"{'Kevin Kline': 'Dave Kovic /              Bill Mitchell', 'Sigourney Weaver': 'Ellen Mitchell', 'Frank Langella': 'Bob Alexander', 'Kevin Dunn': 'Alan Reed', 'Ving Rhames': 'Duane Stevenson', 'Ben Kingsley': 'Vice-President Nance', 'Charles Grodin': 'Murray Blum', 'Faith Prince': 'Alice', 'Laura Linney': 'Randi', 'Bonnie Hunt': 'White House Tour Guide', 'Parley Baer': 'Senate Majority Leader', 'Stefan Gierasch': 'House Majority Leader', 'Anna Deavere Smith': 'Mrs. Travis', 'Charles Hallahan': 'Policeman', 'Tom Dugan': 'Jerry'}\"\r\ntt0068473,\"{'Jon Voight': 'Ed', 'Burt Reynolds': 'Lewis', 'Ned Beatty': 'Bobby', 'Ronny Cox': 'Drew', 'Ed Ramey': 'Old Man', 'Billy Redden': 'Lonnie', 'Seamon Glass': 'First Griner', 'Randall Deal': 'Second Griner', 'Bill McKinney': 'Mountain Man', \"\"Herbert 'Cowboy' Coward\"\": 'Toothless Man', 'Lewis Crone': 'First Deputy', 'Ken Keener': 'Second Deputy', 'Johnny Popwell': 'Ambulance Driver', 'John Fowler': 'Doctor', 'Kathy Rickman': 'Nurse'}\"\r\ntt0112851,\"{'Antonio Banderas': 'El Mariachi', 'Salma Hayek': 'Carolina', 'Joaquim de Almeida': 'Bucho', 'Cheech Marin': 'Short Bartender', 'Steve Buscemi': 'Buscemi', 'Carlos Gómez': 'Right Hand       (as Carlos Gomez)', 'Quentin Tarantino': 'Pick-up Guy', 'Tito Larriva': 'Tavo', 'Angel Aviles': 'Zamira', 'Danny Trejo': 'Navajas', 'Abraham Verduzco': 'Niño', 'Carlos Gallardo': 'Campa', 'Albert Michel Jr.': 'Quino', 'David Alvarado': 'Buddy', 'Angela Lanza': 'Tourist Girl'}\"\r\ntt0088323,\"{'Barret Oliver': 'Bastian', 'Gerald McRaney': \"\"Bastian's Father\"\", 'Chris Eastman': '1st Bully       (as Drum Garrett)', 'Darryl Cooksey': '2nd Bully', 'Nicholas Gilbert': '3rd Bully', 'Thomas Hill': 'Carl Conrad Coreander', 'Deep Roy': 'Teeny Weeny', 'Tilo Prückner': 'Night Hob', 'Moses Gunn': 'Cairon', 'Noah Hathaway': 'Atreyu', 'Sydney Bromley': 'Engywook', 'Patricia Hayes': 'Urgl', 'Tami Stronach': 'The Childlike Empress'}\"\r\ntt1213644,\"{'Matt Lanter': 'Will', 'Vanessa Lachey': 'Amy       (as Vanessa Minnillo)', \"\"Gary 'G. Thang' Johnson\"\": \"\"Calvin       (as Gary 'G-Thang' Johnson)\"\", 'Nicole Parker': 'Enchanted Princess /              Amy Winehouse Look-A-Like /              Jessica Simpson Look-A-Like', 'Crista Flanagan': 'Juney /              Hannah Montana', 'Kim Kardashian West': 'Lisa       (as Kim Kardashian)', 'Ike Barinholtz': 'Wolf /              Javier Bardem Look-A-Like /              Police Officer /              Hellboy /              Batman /              Beowulf /              Prince Caspian', 'Carmen Electra': 'Beautiful Assassin', 'Tony Cox': 'Indiana Jones', 'Tad Hilgenbrink': 'Prince', 'Nick Steele': 'Underwear Model', 'John Di Domenico': 'Dr. Phil Look-A-Like /              Love Guru', 'Jason Boegh': 'Male Carrie', 'Valerie Wildman': 'Samantha', 'Abe Spigner': 'Flava-Flav Look-A-Like'}\"\r\ntt0072890,\"{'Penelope Allen': 'Sylvia', 'Sully Boyar': 'Mulvaney', 'John Cazale': 'Sal', 'Beulah Garrick': 'Margaret', 'Carol Kane': 'Jenny', 'Sandra Kazan': 'Deborah', 'Marcia Jean Kurtz': 'Miriam', 'Amy Levitt': 'Maria', 'John Marriott': 'Howard', 'Estelle Omens': 'Edna', 'Al Pacino': 'Sonny', 'Gary Springer': 'Stevie', 'James Broderick': 'Sheldon', 'Charles Durning': 'Moretti', 'Carmine Foresta': 'Carmine'}\"\r\ntt0119008,\"{'Al Pacino': 'Lefty', 'Johnny Depp': 'Donnie', 'Michael Madsen': 'Sonny', 'Bruno Kirby': 'Nicky', 'James Russo': 'Paulie', 'Anne Heche': 'Maggie', 'Zeljko Ivanek': 'Tim Curley       (as Zeljko Ivanek)', 'Gerry Becker': 'Dean Blandford FBI', 'Robert Miano': 'Sonny Red', 'Brian Tarantina': 'Bruno', 'Rocco Sisto': 'Richie Gazzo', 'Zach Grenier': 'Dr. Berger', 'Walt MacPherson': 'Sheriff', 'Ronnie Farer': 'Annette', 'Terry Serpico': 'Strip Club Owner'}\"\r\ntt0103874,\"{'Gary Oldman': 'Dracula', 'Winona Ryder': 'Mina Murray /              Elisabeta', 'Anthony Hopkins': 'Professor Abraham Van Helsing', 'Keanu Reeves': 'Jonathan Harker', 'Richard E. Grant': 'Dr. Jack Seward', 'Cary Elwes': 'Lord Arthur Holmwood', 'Billy Campbell': 'Quincey P. Morris       (as Bill Campbell)', 'Sadie Frost': 'Lucy Westenra', 'Tom Waits': 'R.M. Renfield', 'Monica Bellucci': \"\"Dracula's Bride\"\", 'Michaela Bercu': \"\"Dracula's Bride\"\", 'Florina Kendrick': \"\"Dracula's Bride\"\", 'Jay Robinson': 'Mr. Hawkins', 'I.M. Hobson': 'Hobbs', 'Laurie Franks': \"\"Lucy's Maid\"\"}\"\r\ntt0064276,\"{'Peter Fonda': 'Wyatt', 'Dennis Hopper': 'Billy', 'Antonio Mendoza': 'Jesus', 'Phil Spector': 'Connection', 'Mac Mashourian': 'Bodyguard', 'Warren Finnerty': 'Rancher', 'Tita Colorado': \"\"Rancher's Wife\"\", 'Luke Askew': 'Stranger on Highway', 'Luana Anders': 'Lisa', 'Sabrina Scharf': 'Sarah', 'Sandy Brown Wyeth': 'Joanne       (as Sandy Wyeth)', 'Robert Walker Jr.': 'Jack       (as Robert Walker)', 'Robert Ball': 'Mime #1', 'Carmen Phillips': 'Mime #2', 'Ellie Wood Walker': 'Mime #3       (as Ellie Walker)'}\"\r\ntt0181536,\"{'Sean Connery': 'Forrester', 'Rob Brown': 'Jamal', 'F. Murray Abraham': 'Crawford', 'Anna Paquin': 'Claire', 'Busta Rhymes': 'Terrell', 'April Grace': 'Ms. Joyce', 'Michael Pitt': 'Coleridge', 'Michael Nouri': 'Dr. Spence', 'Richard Easton': 'Matthews', 'Glenn Fitzgerald': 'Massie', \"\"Lil' Zane\"\": 'Damon       (as Zane Copeland Jr.)', 'Stephanie Berry': 'Janice', 'Fly Williams III': 'Fly', 'Damany Mathis': 'Kenzo', 'Damion Lee': 'Clay'}\"\r\ntt0065724,\"{'Jack Nicholson': 'Robert Eroica Dupea', 'Karen Black': 'Rayette Dipesto', 'Billy Green Bush': \"\"Elton       (as Billy 'Green' Bush)\"\", 'Fannie Flagg': 'Stoney', 'Sally Struthers': 'Betty       (as Sally Ann Struthers)', 'Marlena MacGuire': 'Twinky       (as Marlena Macguire)', 'Richard Stahl': 'Recording Engineer', 'Lois Smith': 'Partita Dupea', 'Helena Kallianiotes': 'Palm Apodaca', 'Toni Basil': 'Terry Grouse', 'Lorna Thayer': 'Waitress', 'Susan Anspach': 'Catherine Van Oost', 'Ralph Waite': 'Carl Fidelio Dupea', 'William Challee': 'Nicholas Dupea', 'John P. Ryan': 'Spicer       (as John Ryan)'}\"\r\ntt0083987,\"{'Ben Kingsley': 'Mahatma Gandhi', 'Rohini Hattangadi': 'Kasturba Gandhi       (as Rohini Hattangady)', 'Roshan Seth': 'Pandit Nehru', 'Candice Bergen': 'Margaret Bourke-White', 'Edward Fox': 'General Dyer', 'John Gielgud': 'Lord Irwin', 'Trevor Howard': 'Judge Broomfield', 'John Mills': 'The Viceroy', 'Martin Sheen': 'Walker', 'Ian Charleson': 'Charlie Andrews', 'Günther Maria Halmer': 'Herman Kallenbach       (as Gunter Maria Halmer)', 'Athol Fugard': 'General Smuts', 'Saeed Jaffrey': 'Sardar Patel', 'Geraldine James': 'Mirabehn', 'Alyque Padamsee': 'Mohamed Ali Jinnah'}\"\r\ntt0119177,\"{'Ethan Hawke': 'Vincent /              Jerome', 'Uma Thurman': 'Irene', 'Gore Vidal': 'Director Josef', 'Xander Berkeley': 'Lamar', 'Jayne Brook': 'Marie', 'Elias Koteas': 'Antonio', 'Maya Rudolph': 'Delivery Nurse', 'Una Damon': 'Head Nurse', 'Elizabeth Dennehy': 'Pre-School Teacher', 'Blair Underwood': 'Geneticist', 'Mason Gamble': 'Younger Vincent', 'Vincent Nielson': 'Younger Anton', 'Chad Christ': 'Young Vincent', 'William Lee Scott': 'Young Anton', 'Clarence Graham': 'Personnel Officer'}\"\r\ntt0365265,\"{'Katharine Isabelle': 'Ginger', 'Emily Perkins': 'Brigitte', 'Nathaniel Arcand': 'Hunter', 'JR Bourne': 'James', 'Hugh Dillon': 'Reverend Gilbert', 'Adrien Dorval': 'Seamus', 'Brendan Fletcher': 'Finn', 'David La Haye': 'Claude       (as David LaHaye)', 'Tom McCamus': 'Wallace Rowlands', 'Matthew Walker': 'Doc Murphy', 'Fabian Bird': 'Milo', 'Kirk Jarrett': 'Owen', 'David MacInnis': 'Cormac', 'Stevie Mitchell': 'Geoffrey', 'Edna Rain': 'Elder'}\"\r\ntt0097441,\"{'Matthew Broderick': 'Col. Robert Gould Shaw', 'Denzel Washington': 'Pvt. Trip', 'Cary Elwes': 'Maj. Cabot Forbes', 'Morgan Freeman': 'Sgt. Maj. John Rawlins', 'Jihmi Kennedy': 'Pvt. Jupiter Sharts', 'Andre Braugher': 'Cpl. Thomas Searles', 'John Finn': 'Sgt. Maj. Mulcahy', 'Donovan Leitch Jr.': 'Capt. Charles Fessenden Morse       (as Donovan Leitch)', 'JD Cullum': 'Henry Sturgis Russell       (as John David Cullum)', 'Alan North': 'Gov. John Albion Andrew', 'Bob Gunton': 'Gen. Charles Garrison Harker', 'Cliff De Young': 'Col. James M. Montgomery       (as Cliff DeYoung)', 'Christian Baskous': 'Edward L. Pierce', 'RonReaco Lee': 'Mute Drummer Boy', 'Jay O. Sanders': 'Gen. George Crockett Strong'}\"\r\ntt0139239,\"{'Katie Holmes': 'Claire Montgomery', 'Sarah Polley': 'Ronna Martin', 'Suzanne Krull': 'Stringy Haired Woman', 'Desmond Askew': 'Simon Baines', 'Nathan Bexton': 'Mannie', 'Robert Peters': 'Switterman', 'Scott Wolf': 'Adam', 'Jay Mohr': 'Zack', 'Timothy Olyphant': 'Todd Gaines', 'Jodi Bianca Wise': 'Ballerina Girl', 'William Fichtner': 'Burke', 'Rita Bland': 'Dancing Register Woman', 'Tony Denman': 'Track Suit Guy', 'Scott Hass': 'Raver Dude', 'Natasha Melnick': 'Anorexic Girl'}\"\r\ntt0120684,\"{'Ian McKellen': 'James Whale', 'Brendan Fraser': 'Clayton Boone', 'Lynn Redgrave': 'Hanna', 'Lolita Davidovich': 'Betty', 'David Dukes': 'David Lewis', \"\"Kevin J. O'Connor\"\": 'Harry', 'Mark Kiely': 'Dwight', 'Jack Plotnick': 'Edmund Kay', 'Rosalind Ayres': 'Elsa Lanchester', 'Jack Betts': 'Boris Karloff', 'Matt McKenzie': 'Colin Clive', 'Todd Babcock': 'Leonard Barnett', \"\"Cornelia Hayes O'Herlihy\"\": 'Princess Margaret', 'Brandon Kleyla': 'Young Whale', 'Pamela Salem': 'Sarah Whale'}\"\r\ntt0107048,\"{'Bill Murray': 'Phil', 'Andie MacDowell': 'Rita', 'Chris Elliott': 'Larry', 'Stephen Tobolowsky': 'Ned', 'Brian Doyle-Murray': 'Buster', 'Marita Geraghty': 'Nancy', 'Angela Paton': 'Mrs. Lancaster', 'Rick Ducommun': 'Gus', 'Rick Overton': 'Ralph', 'Robin Duke': 'Doris the Waitress', 'Carol Bivins': 'Anchorwoman', 'Willie Garson': \"\"Phil's Assistant Kenny\"\", 'Ken Hudson Campbell': 'Man in Hallway', 'Les Podewell': 'Old Man', 'Rod Sell': 'Groundhog Official'}\"\r\ntt0061735,\"{'Spencer Tracy': 'Matt Drayton', 'Sidney Poitier': 'John Prentice', 'Katharine Hepburn': 'Christina Drayton', 'Katharine Houghton': 'Joey Drayton', 'Cecil Kellaway': 'Monsignor Ryan', 'Beah Richards': 'Mrs. Prentice', 'Roy Glenn': 'Mr. Prentice       (as Roy E. Glenn Sr.)', 'Isabel Sanford': 'Tillie       (as Isabell Sanford)', 'Virginia Christine': 'Hilary St. George', 'Alexandra Hay': 'Carhop', 'Barbara Randolph': 'Dorothy', \"\"D'Urville Martin\"\": 'Frankie', 'Tom Heaton': 'Peter', 'Grace Gaynor': 'Judith', 'Skip Martin': 'Delivery Boy'}\"\r\ntt0099726,\"{'Mel Gibson': 'Hamlet', 'Glenn Close': 'Gertrude', 'Alan Bates': 'Claudius', 'Paul Scofield': 'The Ghost', 'Ian Holm': 'Polonius', 'Helena Bonham Carter': 'Ophelia', 'Stephen Dillane': 'Horatio', 'Nathaniel Parker': 'Laertes', 'Sean Murray': 'Guildenstern', 'Michael Maloney': 'Rosencrantz', 'Trevor Peacock': 'The Gravedigger', 'John McEnery': 'Osric', 'Richard Warwick': 'Bernardo', 'Christien Anholt': 'Marcellus', 'Dave Duffy': 'Francisco'}\"\r\ntt0308353,\"{'George Carlin': 'The Wizard       (voice)', 'John DiMaggio': 'Dwarf 1 /              Dwarf 2 /              Giant       (voice) (as John De Maggio)', 'Andy Dick': 'Mambo       (voice)', 'Sarah Michelle Gellar': 'Ella       (voice)', 'Lisa Kaplan': 'Fairy Godmother       (voice)', 'Jill Talley': \"\"Stepsister 2 /              Witch 2 /              Baby's Mother       (voice) (as Jill Talley Kenny)\"\", 'Tom Kenny': 'Amigo 3 /              Dwarf 3 /              Messenger /              Wolf 2       (voice) (as Tom J. Kenny)', 'Tress MacNeille': 'Witch 1       (voice) (as Tress Mac Neille)', 'Michael McShane': 'Rumplestiltskin       (voice)', 'Rob Paulsen': 'Amigo 2       (voice) (as Robert F. Paulsen III)', 'Jon Polito': 'Wolf 1       (voice) (as John Polito)', 'Freddie Prinze Jr.': 'Rick       (voice)', 'Phil Proctor': 'Amigo 1       (voice) (as Philip G. Proctor)', 'Wallace Shawn': 'Munk       (voice)', 'Kath Soucie': 'Stepsister 1 /              Baby /              Red Riding Hood       (voice) (as Kath E. Soucie)'}\"\r\ntt0113277,\"{'Al Pacino': 'Lt. Vincent Hanna', 'Robert De Niro': 'Neil McCauley', 'Val Kilmer': 'Chris Shiherlis', 'Jon Voight': 'Nate', 'Tom Sizemore': 'Michael Cheritto', 'Diane Venora': 'Justine', 'Amy Brenneman': 'Eady', 'Ashley Judd': 'Charlene Shiherlis', 'Mykelti Williamson': 'Sergeant Drucker', 'Wes Studi': 'Casals', 'Ted Levine': 'Bosko', 'Dennis Haysbert': 'Donald Breedan', 'William Fichtner': 'Roger Van Zant', 'Natalie Portman': 'Lauren Gustafson', 'Tom Noonan': 'Kelso'}\"\r\ntt0386588,\"{'Will Smith': 'Hitch', 'Eva Mendes': 'Sara', 'Kevin James': 'Albert', 'Amber Valletta': 'Allegra', 'Julie Ann Emery': 'Casey', 'Adam Arkin': 'Max', 'Robinne Lee': 'Cressida', 'Nathan Lee Graham': 'Geoff', 'Michael Rapaport': 'Ben', 'Jeffrey Donovan': 'Vance', 'Paula Patton': 'Mandy', 'Philip Bosco': \"\"Mr. O'Brian\"\", 'Kevin Sussman': 'Neil', 'Navia Nguyen': 'Mika', 'Matt Malloy': 'Pete'}\"\r\ntt0102057,\"{'Dustin Hoffman': 'Captain Hook', 'Robin Williams': 'Peter Banning', 'Julia Roberts': 'Tinkerbell', 'Bob Hoskins': 'Smee', 'Maggie Smith': 'Granny Wendy', 'Caroline Goodall': 'Moira Banning', 'Charlie Korsmo': \"\"Jack 'Jackie' Banning\"\", 'Amber Scott': 'Maggie Banning', 'Laurel Cronin': \"\"Liza, Wendy's Housekeeper\"\", 'Phil Collins': 'Inspector Good', 'Arthur Malet': 'Tootles', 'Isaiah Robinson': 'Pockets', 'Jasen Fisher': 'Ace', 'Dante Basco': 'Rufio', 'Raushan Hammond': 'Thud Butt'}\"\r\ntt0090060,\"{'Emilio Estevez': 'Kirby Keger', 'Rob Lowe': 'Billy Hicks', 'Andrew McCarthy': 'Kevin Dolenz', 'Demi Moore': 'Jules', 'Judd Nelson': 'Alec Newbary', 'Ally Sheedy': 'Leslie Hunter', 'Mare Winningham': 'Wendy Beamish', 'Martin Balsam': 'Mr. Beamish', 'Andie MacDowell': 'Dale Biberman', 'Joyce Van Patten': 'Mrs. Beamish', 'Jenny Wright': 'Felicia', 'Blake Clark': 'Wally', 'Jon Cutler': 'Howie Krantz', 'Matthew Laurance': 'Ron Dellasandro', 'Gina Hecht': 'Judith'}\"\r\ntt0061809,\"{'Robert Blake': 'Perry', 'Scott Wilson': 'Dick', 'John Forsythe': 'Alvin Dewey', 'Paul Stewart': 'Jensen', \"\"Gerald S. O'Loughlin\"\": 'Harold Nye', 'Jeff Corey': 'Mr. Hickock', 'John Gallaudet': 'Roy Church', 'James Flavin': 'Clarence Duntz', 'Charles McGraw': 'Tex Smith', 'Will Geer': 'Prosecutor', 'John McLiam': 'Herbert Clutter', 'Ruth Storey': 'Bonnie Clutter', 'Brenda Currin': 'Nancy Clutter       (as Brenda C. Currin)', 'Paul Hough': 'Kenyon Clutter', 'Vaughn Taylor': 'Good Samaritan'}\"\r\ntt0107206,\"{'Clint Eastwood': 'Frank Horrigan', 'John Malkovich': 'Mitch Leary', 'Rene Russo': 'Lilly Raines', 'Dylan McDermott': \"\"Al D'Andrea\"\", 'Gary Cole': 'Bill Watts', 'Fred Dalton Thompson': 'Harry Sargent', 'John Mahoney': 'Sam Campagna', 'Gregory Alan Williams': 'Matt Wilder       (as Greg Alan-Williams)', 'Jim Curley': 'President', 'Sally Hughes': 'First Lady', 'Clyde Kusatsu': 'Jack Okura', 'Steve Hytner': 'Tony Carducci', 'Tobin Bell': 'Mendoza', 'Bob Schott': 'Jimmy Hendrickson', 'Juan A. Riojas': 'Raul'}\"\r\ntt0025316,\"{'Clark Gable': 'Peter', 'Claudette Colbert': 'Ellie', 'Walter Connolly': 'Andrews', 'Roscoe Karns': 'Shapeley', 'Jameson Thomas': 'Westley', 'Alan Hale': 'Danker', 'Arthur Hoyt': 'Zeke', 'Blanche Friderici': \"\"Zeke's Wife\"\", 'Charles C. Wilson': 'Gordon'}\"\r\ntt0116695,\"{'Tom Cruise': 'Jerry Maguire', 'Cuba Gooding Jr.': 'Rod Tidwell', 'Renée Zellweger': 'Dorothy Boyd       (as Renee Zellweger)', 'Kelly Preston': 'Avery Bishop', \"\"Jerry O'Connell\"\": 'Frank Cushman', 'Jay Mohr': 'Bob Sugar', 'Bonnie Hunt': 'Laurel Boyd', 'Regina King': 'Marcee Tidwell', 'Jonathan Lipnicki': 'Ray Boyd', 'Todd Louiso': 'Chad the Nanny', 'Mark Pellington': 'Bill Dooler', 'Jeremy Suarez': 'Tyson Tidwell', 'Jared Jussim': 'Dicky Fox', 'Benjamin Kimball Smith': 'Keith Cushman', 'Ingrid Beer': 'Anne-Louise'}\"\r\ntt0102138,\"{'Sally Kirkland': 'Rose Cheramie', 'Anthony Ramirez': 'Epileptic', 'Ray LePere': 'Zapruder', 'Steve Reed': 'John F. Kennedy - Double', 'Jodie Farber': 'Jackie Kennedy - Double       (as Jodi Farber)', 'Columbia Dubose': 'Nellie Connally - Double', 'Randy Means': 'Gov. Connally - Double', 'Kevin Costner': 'Jim Garrison', 'Jay O. Sanders': 'Lou Ivon', 'E.J. Morris': 'Plaza Witness #1', 'Cheryl Penland': 'Plaza Witness #2', 'Jim Gough': 'Plaza Witness #3', 'Perry R. Russo': 'Angry Bar Patron', 'Mike Longman': 'TV Newsman #1', 'Edward Asner': 'Guy Bannister'}\"\r\ntt0113497,\"{'Robin Williams': 'Alan Parrish', 'Jonathan Hyde': 'Van Pelt /              Sam Parrish', 'Kirsten Dunst': 'Judy Shepherd', 'Bradley Pierce': 'Peter Shepherd', 'Bonnie Hunt': 'Sarah Whittle', 'Bebe Neuwirth': 'Nora Shepherd', 'David Alan Grier': 'Bentley', 'Patricia Clarkson': 'Carol Parrish', 'Adam Hann-Byrd': 'Young Alan', 'Laura Bell Bundy': 'Young Sarah', 'James Handy': 'Exterminator', 'Gillian Barber': 'Mrs. Thomas', 'Brandon Obray': 'Benjamin', 'Cyrus Thiedeke': 'Caleb', 'Gary Joseph Thorup': 'Billy Jessup'}\"\r\ntt0119488,\"{'Kevin Spacey': 'Jack Vincennes', 'Russell Crowe': 'Bud White', 'Guy Pearce': 'Ed Exley', 'James Cromwell': 'Dudley Smith', 'Kim Basinger': 'Lynn Bracken', 'Danny DeVito': 'Sid Hudgens', 'David Strathairn': 'Pierce Patchett', 'Ron Rifkin': 'D.A. Ellis Loew', 'Matt McCoy': \"\"'Badge of Honor' Star Brett Chase\"\", 'Paul Guilfoyle': 'Mickey Cohen', 'Paolo Seganti': 'Johnny Stompanato', 'Elisabeth Granli': \"\"Mickey Cohen's Mambo Partner\"\", 'Sandra Taylor': \"\"Mickey Cohen's Mambo Partner\"\", 'Steve Rankin': 'Officer Arresting Mickey Cohen', 'Graham Beckel': 'Dick Stensland'}\"\r\ntt0089457,\"{'Matthew Broderick': 'Gaston', 'Rutger Hauer': 'Navarre', 'Michelle Pfeiffer': 'Isabeau', 'Leo McKern': 'Imperius', 'John Wood': 'Bishop', 'Ken Hutchison': 'Marquet', 'Alfred Molina': 'Cezar', 'Giancarlo Prete': 'Fornac', 'Loris Loddi': 'Jehan', 'Alex Serra': 'Mr. Pitou       (as Alessandro Serra)', 'Charles Borromel': 'Insane Prisoner', 'Massimo Sarchielli': 'Innkeeper', 'Nicolina Papetti': 'Mrs. Pitou', 'Russel Case': 'Lieutenant       (as Russell Kase)', 'Donald Hodson': 'Guard on Cart       (as Don Hudson)'}\"\r\ntt0056172,\"{\"\"Peter O'Toole\"\": 'T.E. Lawrence', 'Alec Guinness': 'Prince Faisal', 'Anthony Quinn': 'Auda Abu Tayi', 'Jack Hawkins': 'General Allenby', 'Omar Sharif': 'Sherif Ali', 'José Ferrer': 'Turkish Bey       (as Jose Ferrer)', 'Anthony Quayle': 'Colonel Brighton', 'Claude Rains': 'Mr. Dryden', 'Arthur Kennedy': 'Jackson Bentley', 'Donald Wolfit': 'General Murray', 'I.S. Johar': 'Gasim', 'Gamil Ratib': 'Majid', 'Michel Ray': 'Farraj', 'John Dimech': 'Daud', 'Zia Mohyeddin': 'Tafas'}\"\r\ntt0110322,\"{'Brad Pitt': 'Tristan', 'Anthony Hopkins': 'Ludlow', 'Aidan Quinn': 'Alfred', 'Julia Ormond': 'Susannah', 'Henry Thomas': 'Samuel', 'Karina Lombard': 'Isabel Two', 'Tantoo Cardinal': 'Pet', 'Gordon Tootoosis': 'One Stab', 'Paul Desmond': 'Decker', 'Christina Pickles': 'Isabel', 'Robert Wisden': \"\"John T. O'Banion\"\", 'John Novak': \"\"James O'Banion       (as John Novack)\"\", 'Kenneth Welsh': 'Sheriff Tynert', 'Bill Dow': 'Longley', 'Sam Sarkar': 'Rodriguez'}\"\r\ntt0097733,\"{'Mel Gibson': 'Martin Riggs', 'Danny Glover': 'Roger Murtaugh', 'Joe Pesci': 'Leo Getz', 'Joss Ackland': 'Arjen Rudd', \"\"Derrick O'Connor\"\": 'Pieter Vorstedt', 'Patsy Kensit': 'Rika Van Den Haas', 'Darlene Love': 'Trish Murtaugh', 'Traci Wolfe': 'Rianne Murtaugh', 'Steve Kahan': 'Captain Murphy', 'Mark Rolston': 'Hans', 'Jenette Goldstein': 'Meagan Shapiro', 'Dean Norris': 'Tim Cavanaugh', 'Juney Smith': 'Tom Wyler', 'Nestor Serrano': 'Eddie Estaban', 'Philip Suriano': 'Joseph Ragucci'}\"\r\ntt0110413,\"{'Jean Reno': 'Leon', 'Gary Oldman': 'Stansfield', 'Natalie Portman': 'Mathilda', 'Danny Aiello': 'Tony', 'Peter Appel': 'Malky', 'Willi One Blood': '1st Stansfield Man       (as Willie One Blood)', 'Don Creech': '2nd Stansfield man', 'Keith A. Glascoe': '3rd Stansfield man', 'Randolph Scott': '4th Stansfield man', 'Michael Badalucco': \"\"Mathilda's Father\"\", 'Ellen Greene': \"\"Mathilda's Mother\"\", 'Elizabeth Regen': \"\"Mathilda's Sister\"\", 'Carl J. Matusovich': \"\"Mathilda's Brother\"\", 'Frank Senger': 'Fatman', 'Lucius Wyatt Cherokee': \"\"Tonto       (as Lucius Wyatt 'Cherokee')\"\"}\"\r\ntt0107178,\"{'Richard Thomas': 'Richard Farley', 'Brooke Shields': 'Laura Black', 'Viveka Davis': 'Mary Ann', 'William Allen Young': 'Chris', 'Richard Yniguez': 'Lt. Grijalva', 'Scott Bryce': 'Sam Waters', 'Linda Emond': 'Penny', 'T. Max Graham': 'Captain Olson', 'Kevin Brief': 'Lt. Mark Shagan', 'Tim Snay': 'SWAT Lt. Bannister', 'Dick Mueller': 'Tom Black', 'Donna Thomason': 'Glenda Moritz', 'Mark McCarthy': 'Wayne Williams', 'Merle Moores': 'Donna Black', 'Caroline Vinciguerra': 'Sarah Black'}\"\r\ntt0325805,\"{'Nicolas Cage': 'Roy Waller', 'Sam Rockwell': 'Frank Mercer', 'Alison Lohman': 'Angela', 'Bruce Altman': 'Dr. Klein', 'Bruce McGill': 'Chuck Frechette', \"\"Jenny O'Hara\"\": 'Mrs. Schaffer', 'Steve Eastin': 'Mr. Schaffer', 'Beth Grant': 'Laundry Lady', 'Sheila Kelley': 'Kathy', 'Fran Kranz': 'Slacker Boyfriend', 'Tim Kelleher': 'Bishop', 'Nigel Gibbs': 'Holt', 'Bill Saito': 'Pharmacist #1', 'Tim Maculan': 'Pharmacist #2', 'Stoney Westmoreland': 'Man in Line'}\"\r\ntt0303361,\"{'Angela Bettis': 'May Dove Canady', 'Jeremy Sisto': 'Adam Stubbs', 'Anna Faris': 'Polly', 'James Duval': 'Blank', 'Nichole Hiltz': 'Ambrosia', 'Kevin Gage': 'Papa Canady', 'Merle Kennedy': 'Mama Canady', 'Chandler Riley Hecht': 'Young May', 'Rachel David': 'Petey', 'Nora Zehetner': 'Hoop', 'Will Estes': \"\"Chris, Adam's Roommate\"\", 'Roxanne Day': 'Buckle', 'Samantha Adams': 'Lucille', 'Brittney Lee Harvey': 'Diedre', 'Connor Matheus': 'Kindergarten Boy'}\"\r\ntt0829482,\"{'Jonah Hill': 'Seth', 'Michael Cera': 'Evan', 'Christopher Mintz-Plasse': 'Fogell', 'Bill Hader': 'Officer Slater', 'Seth Rogen': 'Officer Michaels', 'Martha MacIsaac': 'Becca', 'Emma Stone': 'Jules', 'Aviva Baumann': 'Nicola       (as Aviva)', 'Joe Lo Truglio': 'Francis the Driver', 'Kevin Corrigan': 'Mark', 'Clement Blake': 'Homeless Guy       (as Clement E. Blake)', 'Erica Vittina Phillips': 'Liquor Store Cashier', 'Joe Nunez': 'Liquor Store Clerk       (as Joseph A. Nunez)', 'Dave Franco': 'Greg the Soccer Player', 'Marcella Lentz-Pope': 'Gaby'}\"\r\ntt0280590,\"{'Adam Sandler': 'Longfellow Deeds', 'Winona Ryder': 'Babe Bennett', 'John Turturro': 'Emilio Lopez', 'Allen Covert': 'Marty', 'Peter Gallagher': 'Chuck Cedar', 'Jared Harris': 'Mac McGrath', 'Erick Avari': 'Cecil Anderson', 'Peter Dante': 'Murph', 'Conchata Ferrell': 'Jan', 'Harve Presnell': 'Preston Blake', 'Steve Buscemi': 'Crazy Eyes', 'Blake Clark': \"\"Buddy Ward, Kevin's Father\"\", 'John McEnroe': 'John McEnroe', 'J.B. Smoove': 'Reuben', 'Tom McNulty': 'Red Parka Man'}\"\r\ntt0031679,\"{'Jean Arthur': 'Saunders', 'James Stewart': 'Jefferson Smith', 'Claude Rains': 'Senator Joseph Paine', 'Edward Arnold': 'Jim Taylor', 'Guy Kibbee': 'Governor Hopper', 'Thomas Mitchell': 'Diz Moore', 'Eugene Pallette': 'Chick McGann', 'Beulah Bondi': 'Ma Smith', 'H.B. Warner': 'Senate Majority Leader', 'Harry Carey': 'President of the Senate', 'Astrid Allwyn': 'Susan Paine', 'Ruth Donnelly': 'Mrs. Hopper', 'Grant Mitchell': 'Senator MacPherson', 'Porter Hall': 'Senator Monroe', 'H.V. Kaltenborn': 'H.V. Kaltenborn'}\"\r\ntt0277371,\"{'Chyler Leigh': 'Janey Briggs', 'Chris Evans': 'Jake Wyler', 'Jaime Pressly': 'Priscilla', 'Eric Christian Olsen': 'Austin', 'Mia Kirshner': 'Catherine Wyler', 'Deon Richmond': 'Malik', 'Eric Jungmann': 'Ricky Lipman', 'Ron Lester': 'Reggie Ray', 'Cody McMains': 'Mitch Briggs', 'Sam Huntington': 'Ox', 'JoAnna Garcia Swisher': 'Sandy Sue       (as Joanna Garcia)', 'Lacey Chabert': 'Amanda Becker', 'Samm Levine': 'Bruce', 'Cerina Vincent': 'Areola', 'Beverly Polcyn': 'Sadie Agatha Johnson'}\"\r\ntt0047296,\"{'Marlon Brando': 'Terry Malloy', 'Karl Malden': 'Father Barry', 'Lee J. Cobb': 'Johnny Friendly', 'Rod Steiger': 'Charley Malloy', 'Pat Henning': 'Kayo Dugan', 'Leif Erickson': 'Glover', 'James Westerfield': 'Big Mac', 'Tony Galento': 'Truck', 'Tami Mauriello': 'Tillio', 'John F. Hamilton': \"\"'Pop' Doyle       (as John Hamilton)\"\", 'John Heldabrand': 'Mott', 'Rudy Bond': 'Moose', 'Don Blackman': 'Luke', 'Arthur Keegan': 'Jimmy', 'Abe Simon': 'Barney'}\"\r\ntt0107818,\"{'Tom Hanks': \"\"Andrew 'Andy' Beckett\"\", 'Denzel Washington': 'Joe Miller', 'Roberta Maxwell': 'Judge Tate', 'Buzz Kilman': \"\"'Crutches' - Courthouse Elevator\"\", 'Karen Finley': 'Dr. Gillman', 'Daniel Chapman': 'Clinic Storyteller', 'Mark Sorensen Jr.': 'Clinic Patient', 'Jeffrey Williamson': 'Tyrone - Clinic Worker', 'Charles Glenn': 'Kenneth Killcoyne', 'Ron Vawter': 'Bob Seidman', 'Anna Deavere Smith': 'Anthea Burton', 'Stephanie Roth Haberle': 'Rachel Smilow       (as Stephanie Roth)', 'Lisa Talerico': \"\"Shelby O'Hara - Andy's Secretary\"\", 'Joanne Woodward': 'Sarah Beckett', 'Jason Robards': 'Charles Wheeler'}\"\r\ntt0093886,\"{'Steve Martin': 'C. D. Bales', 'Daryl Hannah': 'Roxanne', 'Rick Rossovich': 'Chris', 'Shelley Duvall': 'Dixie', 'John Kapelos': 'Chuck', 'Fred Willard': 'Mayor Deebs', 'Max Alexander': 'Dean', 'Michael J. Pollard': 'Andy', 'Steve Mittleman': 'Ralston', 'Damon Wayans': 'Jerry', 'Matt Lattanzi': 'Trent', 'Shandra Beri': 'Sandy', 'Blanche Rubin': 'Sophie', 'Jane Campbell': 'Dottie', 'Jean Sincere': 'Nina'}\"\r\ntt0108002,\"{'Sean Astin': \"\"Daniel E. 'Rudy' Ruettiger\"\", 'Jon Favreau': 'D-Bob', 'Ned Beatty': 'Daniel Ruettiger', 'Greta Lind': 'Mary', 'Scott Benjaminson': 'Frank Ruettiger', 'Mary Ann Thebus': 'Betty', 'Charles S. Dutton': 'Fortune', 'Lili Taylor': 'Sherry', 'Christopher Reed': 'Pete', 'Deborah Wittenberg': 'Young Sherry', 'Christopher Erwin': '7-Year-Old Mark', 'Kevin Duda': '9-Year-Old Bernie', 'Robert Benirschke': '11-Year-Old Mark', 'Luke Massery': '13-Year-Old Rudy', 'Robert J. Steinmiller Jr.': '13-Year-Old Pete'}\"\r\ntt0323944,\"{'Hayden Christensen': 'Stephen Glass', 'Peter Sarsgaard': \"\"Charles 'Chuck' Lane\"\", 'Chloë Sevigny': 'Caitlin Avey', 'Rosario Dawson': 'Andy Fox', 'Melanie Lynskey': 'Amy Brand', 'Hank Azaria': 'Michael Kelly', 'Steve Zahn': 'Adam Penenberg', 'Mark Blum': 'Lewis Estridge', 'Simone-Élise Girard': 'Catarina Bannier', 'Chad Donella': 'David Bach', 'Jamie Elman': 'Aaron Bluth', 'Luke Kirby': 'Rob Gruen', 'Cas Anvar': 'Kambiz Foroohar', 'Linda Smith': 'Gloria       (as Linda E. Smith)', 'Ted Kotcheff': 'Marty Peretz'}\"\r\ntt0385004,\"{'Takeshi Kaneshiro': 'Jin', 'Andy Lau': 'Leo', 'Ziyi Zhang': 'Xiao Mei       (as Zhang Ziyi)', 'Dandan Song': 'Yee', 'Hongfei Zhao': 'Performer', 'Jun Guo': 'Performer', 'Shu Zhang': 'Performer', 'Jiusheng Wang': 'Performer', 'Zhengyong Zhang': 'Performer', 'Yongxin Wang': 'Performer', 'Dong Liu': 'Performer', 'Qi Zi': 'Performer', 'Xuedong Qu': 'Performer', 'Liping Tian': 'Performer', 'Hongwei Zhao': 'Performer'}\"\r\ntt0091949,\"{'Ally Sheedy': 'Stephanie Speck', 'Steve Guttenberg': 'Newton Crosby', 'Fisher Stevens': 'Ben Jabituya', 'Austin Pendleton': 'Howard Marner', 'G.W. Bailey': 'Skroeder', 'Brian McNamara': 'Frank', 'Tim Blaney': 'Number 5       (voice)', 'Marvin J. McIntyre': 'Duke', 'John Garber': 'Otis', 'Penny Santon': 'Mrs. Cepeda', 'Vernon Weddle': 'General Washburne', 'Barbara Tarbuck': 'Senator Mills', 'Tom Lawrence': \"\"Howard Marner's Aide\"\", 'Fred Slyter': 'Norman', 'Billy Ray Sharkey': 'Zack'}\"\r\ntt0067328,\"{'Timothy Bottoms': 'Sonny Crawford', 'Jeff Bridges': 'Duane Jackson', 'Cybill Shepherd': 'Jacy Farrow', 'Ben Johnson': 'Sam the Lion', 'Cloris Leachman': 'Ruth Popper', 'Ellen Burstyn': 'Lois Farrow', 'Eileen Brennan': 'Genevieve', 'Clu Gulager': 'Abilene', 'Sam Bottoms': 'Billy', 'Sharon Ullrick': 'Charlene Duggs       (as Sharon Taggart)', 'Randy Quaid': 'Lester Marlow', 'Joe Heathcock': 'Sheriff', 'Bill Thurman': 'Coach Popper', 'Barc Doyle': 'Joe Bob Blanton', 'Jessie Lee Fulton': 'Miss Mosey'}\"\r\ntt0090022,\"{'Kevin Kline': 'Paden', 'Scott Glenn': 'Emmett', 'Kevin Costner': 'Jake', 'Danny Glover': 'Mal', 'Marvin J. McIntyre': 'Clerk', 'Brad Leland': 'Trooper       (as Brad Williams)', 'Sheb Wooley': 'Cavalry Sergeant', 'Jonathan Kasdan': 'Boy at Outpost       (as Jon Kasdan)', 'John Cleese': 'Sheriff Langston', 'Todd Allen': 'Deputy Kern', 'Kenny Call': 'Deputy Block', 'Bill Thurman': 'Carter', 'Meg Kasdan': 'Barmaid', 'Dick Durock': 'Bar Fighter', 'Gene Hartline': 'Bar Fighter'}\"\r\ntt0105414,\"{'Bridget Fonda': 'Allison Jones', 'Jennifer Jason Leigh': 'Hedra Carlson', 'Steven Weber': 'Sam Rawson', 'Peter Friedman': 'Graham Knox', 'Stephen Tobolowsky': 'Mitchell Myerson', 'Frances Bay': 'Elderly Neighbor', 'Michele Farr': \"\"Myerson's Assistant\"\", 'Tara Karsian': 'Mannish Applicant', \"\"Christiana D'Amore\"\": 'Exotic Applicant       (as Christiana Capetillo)', 'Jessica Lundy': 'Talkative Applicant', 'Renée Estevez': 'Perfect Applicant       (as Rene Estevez)', 'Tiffany Mataras': 'Twin', 'Krystle Mataras': 'Twin', 'Amelia Campbell': 'Check Cashier', 'Kenneth Tobey': 'Desk Clerk       (as Ken Tobey)'}\"\r\ntt0108160,\"{'Tom Hanks': 'Sam Baldwin', 'Ross Malinger': 'Jonah Baldwin', 'Rita Wilson': 'Suzy', 'Victor Garber': 'Greg', 'Tom Riis Farrell': 'Rob', 'Carey Lowell': 'Maggie Baldwin', 'Meg Ryan': 'Annie Reed', 'Bill Pullman': 'Walter', 'Le Clanché du Rand': 'Barbara Reed', \"\"Kevin O'Morrison\"\": 'Cliff Reed', 'David Hyde Pierce': 'Dennis Reed', 'Valerie Wright': 'Betsy Reed', 'Frances Conroy': 'Irene Reed', 'Tom Tammi': 'Harold Reed', 'Calvin Trillin': 'Uncle Milton'}\"\r\ntt0208092,\"{'Benicio Del Toro': 'Franky Four Fingers', 'Dennis Farina': 'Cousin Avi', 'Vinnie Jones': 'Bullet-Tooth Tony', 'Brad Pitt': \"\"Mickey O'Neil\"\", 'Rade Serbedzija': 'Boris the Blade       (as Rade Sherbedgia)', 'Jason Statham': 'Turkish', 'Alan Ford': 'Brick Top', 'Mike Reid': 'Doug the Head', 'Robbie Gee': 'Vinny', 'Lennie James': 'Sol', 'Ewen Bremner': 'Mullet', 'Jason Flemyng': 'Darren', 'Ade': 'Tyrone', 'William Beck': 'Neil', 'Andy Beckwith': 'Errol'}\"\r\ntt0108174,\"{'Mike Myers': 'Charlie Mackenzie /              Stuart Mackenzie', 'Nancy Travis': 'Harriet Michaels', 'Anthony LaPaglia': 'Tony Giardino', 'Amanda Plummer': 'Rose Michaels', 'Brenda Fricker': 'May Mackenzie', 'Matt Doherty': 'Heed', 'Charles Grodin': 'Commandeered Driver', 'Phil Hartman': \"\"Ranger John 'Vicky' Johnson\"\", 'Debi Mazar': 'Susan', 'Steven Wright': 'Pilot', 'Patrick Bristow': 'Cafe Roads Performer', 'Cintra Wilson': 'Cafe Roads M.C.', 'Al Nalbandian': 'Butchershop Customer', 'George F. Mauricio': 'Butchershop Customer       (as George Mauricio)', 'Kiki Douveas': 'Butchershop Customer'}\"\r\ntt0092005,\"{'Wil Wheaton': 'Gordie Lachance', 'River Phoenix': 'Chris Chambers', 'Corey Feldman': 'Teddy Duchamp', \"\"Jerry O'Connell\"\": 'Vern Tessio', 'Kiefer Sutherland': 'Ace Merrill', 'Casey Siemaszko': 'Billy Tessio', 'Gary Riley': 'Charlie Hogan', 'Bradley Gregg': 'Eyeball Chambers', 'Jason Oliver Lipsett': 'Vince Desjardins       (as Jason Oliver)', 'Marshall Bell': 'Mr. Lachance', 'Frances Lee McCain': 'Mrs. Lachance', 'Bruce Kirby': 'Mr. Quidacioluo', 'William Bronder': 'Milo Pressman', 'Scott Beach': 'Mayor Grundy', 'Richard Dreyfuss': 'The Writer'}\"\r\ntt0120201,\"{'Casper Van Dien': 'Johnny Rico', 'Dina Meyer': 'Dizzy Flores', 'Denise Richards': 'Carmen Ibanez', 'Jake Busey': 'Ace Levy', 'Neil Patrick Harris': 'Carl Jenkins', 'Clancy Brown': 'Sgt. Zim', 'Seth Gilliam': 'Sugar Watkins', 'Patrick Muldoon': 'Zander Barcalow', 'Michael Ironside': 'Jean Rasczak', 'Rue McClanahan': 'Biology Teacher', 'Marshall Bell': 'General Owen', 'Eric Bruskotter': 'Breckinridge', 'Matt Levin': 'Kitten Smith', 'Blake Lindsley': 'Katrina', 'Anthony Ruivivar': 'Shujimi'}\"\r\ntt0160127,\"{'Cameron Diaz': 'Natalie', 'Drew Barrymore': 'Dylan', 'Lucy Liu': 'Alex', 'Bill Murray': 'Bosley', 'Sam Rockwell': 'Eric Knox', 'Kelly Lynch': 'Vivian Wood', 'Tim Curry': 'Roger Corwin', 'Crispin Glover': 'Thin Man', 'Matt LeBlanc': 'Jason', 'LL Cool J': 'Mr. Jones', 'Tom Green': 'Chad', 'Luke Wilson': 'Pete', 'Sean Whalen': 'Pasqual', 'Tim Dunaway': 'Flight Attendant', 'Alex Trebek': 'Himself'}\"\r\ntt0044079,\"{'Farley Granger': 'Guy Haines', 'Ruth Roman': 'Anne Morton', 'Robert Walker': 'Bruno Antony', 'Leo G. Carroll': 'Sen. Morton', 'Patricia Hitchcock': 'Barbara Morton', 'Kasey Rogers': 'Miriam Joyce Haines       (as Laura Elliott)', 'Marion Lorne': 'Mrs. Antony', 'Jonathan Hale': 'Mr. Antony', 'Howard St. John': 'Police Capt. Turley', 'John Brown': 'Prof. Collins', 'Norma Varden': 'Mrs. Cunningham', 'Robert Gist': 'Det. Leslie Hennessey'}\"\r\ntt0083131,\"{'Bill Murray': 'John', 'Harold Ramis': 'Russell', 'Warren Oates': 'Sgt. Hulka', 'P.J. Soles': 'Stella', 'Sean Young': 'Louise', 'John Candy': 'Ox', 'John Larroquette': 'Capt. Stillman', 'John Voldstad': \"\"Stillman's Aide\"\", 'John Diehl': 'Cruiser', 'Lance LeGault': 'Col. Glass', 'Roberta Leighton': 'Anita', 'Conrad Dunn': 'Psycho', 'Judge Reinhold': 'Elmo', 'Antone Pagán': 'Hector       (as Antone Pagan)', 'Glenn-Michael Jones': 'Leon'}\"\r\ntt0096764,\"{'John Neville': 'Hieronymus Karl Frederick Baron von Munchausen', 'Eric Idle': 'Desmond /              Berthold', 'Sarah Polley': 'Sally Salt', 'Oliver Reed': 'Vulcan', 'Charles McKeown': 'Rupert /              Adolphus', 'Winston Dennis': 'Bill /              Albrecht', 'Jack Purvis': 'Jeremy /              Gustavus', 'Valentina Cortese': 'Queen Ariadne /              Violet', 'Jonathan Pryce': 'The Right Ordinary Horatio Jackson', 'Bill Paterson': 'Henry Salt', 'Peter Jeffrey': 'Sultan', 'Uma Thurman': 'Venus /              Rose', 'Alison Steadman': 'Daisy', 'Ray Cooper': 'Functionary', 'Don Henderson': 'Commander'}\"\r\ntt0080453,\"{'Brooke Shields': 'Emmeline Lestrange', 'Christopher Atkins': 'Richard Lestrange', 'Leo McKern': 'Paddy Button', 'William Daniels': 'Arthur Lestrange', 'Elva Josephson': 'Young Emmeline', 'Glenn Kohan': 'Young Richard', 'Alan Hopgood': 'Captain', 'Gus Mercurio': 'Officer', 'Jeffrey Kleiser': 'Lookout       (as Jeffrey Means)', 'Bradley Pryce': 'Little Paddy', 'Chad Timmerman': 'Infant Paddy       (as Chad Timmermans)', 'Gert Jacoby': 'Sailor', 'Alex Hamilton': 'Sailor', 'Richard Evanson': 'Sailor'}\"\r\ntt0050212,\"{'William Holden': 'Shears', 'Alec Guinness': 'Colonel Nicholson', 'Jack Hawkins': 'Major Warden', 'Sessue Hayakawa': 'Colonel Saito', 'James Donald': 'Major Clipton', 'Geoffrey Horne': 'Lieutenant Joyce', 'André Morell': 'Colonel Green       (as Andre Morell)', 'Peter Williams': 'Captain Reeves', 'John Boxer': 'Major Hughes', 'Percy Herbert': 'Grogan', 'Harold Goodwin': 'Baker', 'Ann Sears': 'Nurse', 'Heihachirô Ôkawa': \"\"Captain Kanematsu       (as Heihachirô 'Henry' Ôkawa)\"\", 'Keiichirô Katsumoto': 'Lieutenant Miura       (as Keiichiro Katsumoto) (as K. Katsumoto)', 'M.R.B. Chakrabandhu': 'Yai'}\"\r\ntt0382625,\"{'Tom Hanks': 'Robert Langdon', 'Audrey Tautou': 'Sophie Neveu', 'Ian McKellen': 'Sir Leigh Teabing', 'Jean Reno': 'Captain Bezu Fache', 'Paul Bettany': 'Silas', 'Alfred Molina': 'Bishop Manuel Aringarosa', 'Jürgen Prochnow': 'Andre Vernet', 'Jean-Yves Berteloot': 'Remy Jean', 'Etienne Chicot': 'Lt. Collet', 'Jean-Pierre Marielle': 'Jacques Saunière', 'Marie-Françoise Audollent': 'Sister Sandrine', 'Rita Davies': 'Elegant Woman at Rosslyn', 'Francesco Carnelutti': 'Prefect', 'Seth Gabel': 'Michael', 'Shane Zaza': 'Youth on Bus'}\"\r\ntt0119116,\"{'Bruce Willis': 'Korben Dallas', 'Gary Oldman': 'Zorg', 'Ian Holm': 'Cornelius', 'Milla Jovovich': 'Leeloo', 'Chris Tucker': 'Ruby Rhod', 'Luke Perry': 'Billy', 'Brion James': 'General Munro', \"\"Tommy 'Tiny' Lister\"\": \"\"President Lindberg       (as Tommy 'Tiny' Lister Jr.)\"\", 'Lee Evans': 'Fog', 'Charlie Creed-Miles': 'David       (as Charlie Creed Miles)', 'Tricky': 'Right Arm', 'John Neville': 'General Staedert', 'John Bluthal': 'Professor Pacoli', 'Mathieu Kassovitz': 'Mugger', 'Christopher Fairbank': 'Mactilburgh'}\"\r\ntt0070909,\"{'Yul Brynner': 'Gunslinger', 'Richard Benjamin': 'Peter Martin', 'James Brolin': 'John Blane', 'Norman Bartold': 'Medieval Knight', 'Alan Oppenheimer': 'Chief Supervisor', 'Victoria Shaw': 'Medieval Queen', 'Dick Van Patten': 'Banker', 'Linda Gaye Scott': 'Arlette       (as Linda Scott)', 'Steve Franken': 'Technician', 'Michael T. Mikler': 'Black Knight       (as Michael Mikler)', 'Terry Wilson': 'Sheriff', 'Majel Barrett': 'Miss Carrie', 'Anne Randall': 'Daphne', 'Julie Marcus': 'Girl in Dungeon', 'Sharyn Wynters': 'Apache Girl'}\"\r\ntt0865556,\"{'Jet Li': 'The Monkey King /              The Silent Monk', 'Michael Angarano': 'Jason Tripitikas', 'Jackie Chan': 'Lu Yan /              Old Hop', 'Juana Collignon': 'Southie Girl', 'Morgan Benoit': 'Lupo', 'Jack Posobiec': 'Southie', 'Thomas McDonell': 'Young Southie', 'Zhi Ma Gui': 'Old Woman', 'Shen Shou He': 'Farmer', 'Bin Jiang': 'Young Village Man', 'Shaohua Yang': 'Jade Soldier', 'Yu Yuan Zeng': 'Inn Keeper', 'Deshun Wang': 'Jade Emperor', 'XiaoLi Liu': 'Queen Mother', 'Collin Chou': 'Jade Warlord'}\"\r\ntt0087538,\"{'Ralph Macchio': 'Daniel', 'Pat Morita': \"\"Miyagi       (as Noriyuki 'Pat' Morita)\"\", 'Elisabeth Shue': 'Ali', 'Martin Kove': 'Kreese', 'Randee Heller': 'Lucille', 'William Zabka': 'Johnny', 'Ron Thomas': 'Bobby', 'Rob Garrison': 'Tommy', 'Chad McQueen': 'Dutch', \"\"Tony O'Dell\"\": 'Jimmy', 'Israel Juarbe': 'Freddy', 'William Bassett': 'Mr. Mills', 'Larry B. Scott': 'Jerry', 'Juli Fields': 'Susan', 'Dana Andersen': 'Barbara'}\"\r\ntt0033870,\"{'Humphrey Bogart': 'Samuel Spade', 'Mary Astor': \"\"Brigid O'Shaughnessy\"\", 'Gladys George': 'Iva Archer', 'Peter Lorre': 'Joel Cairo', 'Barton MacLane': 'Lt. of Detectives Dundy', 'Lee Patrick': 'Effie Perine', 'Sydney Greenstreet': 'Kasper Gutman', 'Ward Bond': 'Detective Tom Polhaus', 'Jerome Cowan': 'Miles Archer', 'Elisha Cook Jr.': 'Wilmer Cook', 'James Burke': 'Luke', 'Murray Alper': 'Frank Richman', 'John Hamilton': 'Bryan'}\"\r\ntt0120746,\"{'José María de Tavira': 'Young Alejandro Murrieta       (as Jose Maria de Tavira)', 'Diego Sieres': 'Young Joaquín Murrieta', 'Emiliano Guerra': 'Boy Crying', 'Yolanda Orizaga': 'Woman Crying', 'Paco Morayta': 'Undertaker', 'William Marquez': 'Fray Felipe', 'Stuart Wilson': 'Don Rafael Montero', 'Tony Amendola': 'Don Luiz', 'Anthony Hopkins': 'Don Diego de la Vega /              Zorro', 'Pedro Altamirano': 'Squad Leader', 'Luisa Huertas': 'Nanny', 'María Fernández Cruz': 'Baby Elena de la Vega       (as Maria Fernandez Cruz)', 'Mónica Fernández Cruz': 'Baby Elena de la Vega       (as Monica Fernandez Cruz)', 'Julieta Rosen': 'Esperanza de la Vega', 'Antonio Banderas': 'Alejandro Murrieta /              Zorro'}\"\r\ntt0087781,\"{'Robert Redford': 'Roy Hobbs', 'Robert Duvall': 'Max Mercy', 'Glenn Close': 'Iris Gaines', 'Kim Basinger': 'Memo Paris', 'Wilford Brimley': 'Pop Fisher', 'Barbara Hershey': 'Harriet Bird', 'Robert Prosky': 'The Judge', 'Richard Farnsworth': 'Red Blow', 'Joe Don Baker': 'The Whammer', 'John Finnegan': 'Sam Simpson', 'Alan Fudge': 'Ed Hobbs', 'Paul Sullivan Jr.': 'Young Roy', 'Rachel Hall': 'Young Iris', 'Robert Rich III': 'Ted Hobbs', 'Michael Madsen': 'Bump Bailey'}\"\r\ntt0120768,\"{'Samuel L. Jackson': 'Danny Roman', 'Kevin Spacey': 'Chris Sabian', 'David Morse': 'Adam Beck', 'Ron Rifkin': 'Grant Frost', 'John Spencer': 'Chief Al Travis', 'J.T. Walsh': 'Terence Niebaum', 'Siobhan Fallon Hogan': 'Maggie       (as Siobhan Fallon)', 'Paul Giamatti': 'Rudy', 'Regina Taylor': 'Karen Roman', 'Bruce Beatty': 'Markus', 'Michael Cudlitz': 'Palermo', 'Carlos Gómez': 'Eagle', 'Tim Kelleher': 'Argento', 'Dean Norris': 'Scott', 'Nestor Serrano': 'Hellman'}\"\r\ntt0187393,\"{'Mel Gibson': 'Benjamin Martin', 'Heath Ledger': 'Gabriel Martin', 'Joely Richardson': 'Charlotte Selton', 'Jason Isaacs': 'Col. William Tavington', 'Chris Cooper': 'Col. Harry Burwell', 'Tchéky Karyo': 'Jean Villeneuve', 'Rene Auberjonois': 'Reverend Oliver', 'Lisa Brenner': 'Anne Howard', 'Tom Wilkinson': 'Gen. Lord Charles Cornwallis', 'Donal Logue': 'Dan Scott', 'Leon Rippy': 'John Billings', 'Adam Baldwin': 'Capt. Wilkins', 'Jay Arlen Jones': 'Occam', 'Joey D. Vieira': 'Peter Howard', 'Gregory Smith': 'Thomas Martin'}\"\r\ntt0117318,\"{'Woody Harrelson': 'Larry Flynt', 'Courtney Love': 'Althea Leasure Flynt', 'Edward Norton': 'Alan Isaacman', 'Brett Harrelson': 'Jimmy Flynt', 'Donna Hanover': 'Ruth Carter Stapleton', 'James Cromwell': 'Charles Keating', 'Crispin Glover': 'Arlo', 'Vincent Schiavelli': 'Chester', 'Miles Chapin': 'Miles', 'James Carville': 'Simon Leis', 'Richard Paul': 'Reverend Jerry Falwell', 'Burt Neuborne': 'Roy Grutman', 'Jan Tríska': 'The Assassin', 'Cody Block': '10-Year-Old Larry', 'Ryan Post': '8-Year-Old Jimmy'}\"\r\ntt0454921,\"{'Will Smith': 'Chris Gardner', 'Jaden Smith': 'Christopher       (as Jaden Christopher Syre Smith)', 'Thandie Newton': 'Linda', 'Brian Howe': 'Jay Twistle', 'James Karen': 'Martin Frohm', 'Dan Castellaneta': 'Alan Frakesh', 'Kurt Fuller': 'Walter Ribbon', 'Takayo Fischer': 'Mrs. Chu', 'Kevin West': \"\"World's Greatest Dad\"\", 'George Cheung': 'Chinese Maintenance Worker       (as George K. Cheung)', 'David Michael Silverman': 'Doctor at First Hospital', 'Domenic Bove': 'Tim Ribbon', 'Geoff Callan': 'Ferrari Owner', 'Joyful Raven': 'Hippie Girl', 'Scott Klace': 'Tim Brophy'}\"\r\ntt0107943,\"{'John Haycraft': 'Auctioneer', 'Christopher Reeve': 'Lewis', 'Anthony Hopkins': 'Stevens', 'Emma Thompson': 'Miss Kenton', 'Caroline Hunt': 'Landlady', 'James Fox': 'Lord Darlington', 'Peter Vaughan': 'Father', 'Paula Jacobs': 'Mrs. Mortimer, the Cook', 'Ben Chaplin': 'Charlie, Head Footman', 'Steve Dibben': 'George, Second Footman', 'Abigail Hopkins': 'Housemaid       (as Abigail Harrison)', 'Patrick Godfrey': 'Spencer', 'Peter Cellier': 'Sir Leonard Bax', 'Peter Halliday': 'Canon Tufnell', 'Hugh Grant': 'Cardinal'}\"\r\ntt0292644,\"{'James Van Der Beek': 'Sean Bateman', 'Shannyn Sossamon': 'Lauren Hynde', 'Jessica Biel': 'Lara', 'Kip Pardue': 'Victor', 'Kate Bosworth': 'Kelly', 'Ian Somerhalder': 'Paul Denton', 'Joel Michaely': 'Raymond', 'Jay Baruchel': 'Harry', 'Thomas Ian Nicholas': 'Mitchell', 'Clifton Collins Jr.': 'Rupert', 'Clare Kramer': 'Candice', 'Faye Dunaway': 'Mrs. Denton', 'Swoosie Kurtz': 'Mrs. Jared', 'Russell Sams': 'Richard', 'Colin Bain': 'Donald'}\"\r\ntt0108071,\"{'Kate Maberly': 'Mary Lennox', 'Heydon Prowse': 'Colin Craven', 'Andrew Knott': 'Dickon', 'Maggie Smith': 'Mrs. Medlock', 'Laura Crossley': 'Martha', 'John Lynch': 'Lord Archibald Craven', 'Walter Sparrow': 'Ben Weatherstaff', 'Irène Jacob': \"\"Mary's Mother /              Lilias Craven       (as Irene Jacob)\"\", 'Frank Baker': 'Government Official', 'Valerie Hill': 'Cook', 'Andrea Pickering': 'Betty Butterworth', 'Peter Moreton': 'Will', 'Arthur Spreckley': 'John', 'Colin Bruce': 'Major Lennox', 'Parsan Singh': 'Ayah'}\"\r\ntt1273678,\"{'Jackie Chan': 'Bob Ho', 'Amber Valletta': 'Gillian', 'Madeline Carroll': 'Farren', 'Will Shadley': 'Ian', 'Alina Foley': 'Nora', 'Magnús Scheving': 'Anton Poldark       (as Magnus Scheving)', 'Billy Ray Cyrus': 'Colton James', 'George Lopez': 'Glaze', 'Katherine Boecher': 'Creel', 'Mia Stallard': 'Cute Girl', 'Maverick McWilliams': 'Chad', 'Quinn Mason': 'Carl', 'Margaret Murphy': 'Mom', 'Esodie Geiger': 'Principal', 'Arron Shiver': 'Scientist'}\"\r\ntt0367089,\"{'Owen Kline': 'Frank Berkman', 'Jeff Daniels': 'Bernard Berkman', 'Laura Linney': 'Joan Berkman', 'Jesse Eisenberg': 'Walt Berkman', 'William Baldwin': 'Ivan', 'David Benger': 'Carl', 'Anna Paquin': 'Lili', 'Molly Barton': 'Graduate Student', 'Bo Berkman': 'Graduate Student', 'Matthew Kaplan': 'Graduate Student', 'Simon Kaplan': 'Graduate Student', 'Matthew Kirsch': 'Graduate Student', 'Daniella Markowicz': 'Graduate Student', 'Elizabeth Meriwether': 'Graduate Student', 'Ben Schrank': 'Graduate Student'}\"\r\ntt0087332,\"{'Bill Murray': 'Dr. Peter Venkman', 'Dan Aykroyd': 'Dr. Raymond Stantz', 'Sigourney Weaver': 'Dana Barrett', 'Harold Ramis': 'Dr. Egon Spengler', 'Rick Moranis': 'Louis Tully', 'Annie Potts': 'Janine Melnitz', 'William Atherton': 'Walter Peck', 'Ernie Hudson': 'Winston Zeddemore', 'David Margulies': 'Mayor', 'Steven Tash': 'Male Student', 'Jennifer Runyon': 'Female Student', 'Slavitza Jovan': 'Gozer', 'Michael Ensign': 'Hotel Manager', 'Alice Drummond': 'Librarian', 'Jordan Charney': 'Dean Yeager'}\"\r\ntt0320691,\"{'Kate Beckinsale': 'Selene', 'Scott Speedman': 'Michael', 'Michael Sheen': 'Lucian', 'Shane Brolly': 'Kraven', 'Bill Nighy': 'Viktor', 'Erwin Leder': 'Singe', 'Sophia Myles': 'Erika', 'Robbie Gee': 'Kahn       (as Robby Gee)', 'Wentworth Miller': 'Dr. Adam', 'Kevin Grevioux': 'Raze', 'Zita Görög': 'Amelia', 'Dennis J. Kozeluh': 'Dignitary       (as Dennis Kozeluh)', 'Scott McElroy': 'Soren', 'Todd Schneider': 'Trix', 'Sándor Bolla': 'Rigel'}\"\r\ntt0383694,\"{'Imelda Staunton': 'Vera', 'Richard Graham': 'George', 'Eddie Marsan': 'Reg', 'Anna Keaveney': 'Nellie', 'Alex Kelly': 'Ethel', 'Daniel Mays': 'Sid', 'Phil Davis': 'Stan', 'Lesley Manville': 'Mrs. Wells', 'Sally Hawkins': 'Susan', 'Simon Chandler': 'Mr. Wells', 'Sam Troughton': 'David', 'Marion Bailey': 'Mrs. Fowler', 'Sandra Voe': \"\"Vera's Mother\"\", \"\"Chris O'Dowd\"\": \"\"Sid's Customer\"\", 'Adrian Scarborough': 'Frank'}\"\r\ntt0120890,\"{'Kevin Bacon': 'Ray Duquette', 'Matt Dillon': 'Sam Lombardo', 'Neve Campbell': 'Suzie Toller', 'Theresa Russell': 'Sandra Van Ryan', 'Denise Richards': 'Kelly Van Ryan', 'Daphne Rubin-Vega': 'Gloria Perez', 'Robert Wagner': 'Tom Baxter', 'Bill Murray': 'Ken Bowden', 'Carrie Snodgress': 'Ruby', 'Jeff Perry': 'Bryce Hunter', 'Cory Pendergast': 'Jimmy Leach', 'Marc Macaulay': 'Walter', 'Toi Svane Stepp': 'Nicole       (as Toi Svane)', 'Dennis Neal': 'Art Maddox', 'Diane Adams': 'School Secretary'}\"\r\ntt1156398,\"{'Jesse Eisenberg': 'Columbus', 'Woody Harrelson': 'Tallahassee', 'Emma Stone': 'Wichita', 'Abigail Breslin': 'Little Rock', 'Amber Heard': '406', 'Bill Murray': 'Bill Murray', 'Derek Graf': 'Clown Zombie'}\"\r\ntt1554091,\"{'Demián Bichir': 'Carlos Galindo       (as Demian Bichir)', \"\"Eddie 'Piolin' Sotelo\"\": \"\"Eddie 'Piolin' Sotelo\"\", 'Joaquín Cosio': 'Blasco Martinez', 'José Julián': 'Luis Galindo', 'Nancy Lenehan': 'Mrs. Donnelley', 'Gabriel Chavarria': 'Ramon', 'Bobby Soto': 'Facundo', 'Chelsea Rendon': 'Ruthie Valdez', 'Trampas Thompson': 'School Security Officer', 'Tim Griffin': 'Juvie Officer', 'Valorie Hubbard': 'School Secretary', 'Dolores Heredia': 'Anita', 'Isabella Rae Thomas': 'Linda', 'Carlos Linares': 'Santiago', 'Robert Peters': 'Truck Driver'}\"\r\ntt1740707,\"{'Otto Jespersen': 'Hans, trolljegeren', 'Glenn Erland Tosterud': 'Thomas', 'Johanna Mørck': 'Johanna', 'Tomas Alf Larsen': 'Kalle', 'Urmila Berg-Domaas': 'Malica', 'Hans Morten Hansen': 'Finn Haugen', 'Robert Stoltenberg': 'Polsk bjørnejeger', 'Knut Nærum': 'E-verkssjef', 'Eirik Bech': 'Campingplasseier', 'TomTom Jorgensen': 'Polsk bjørnejeger       (as Tom Jørgensen)', 'Torunn Lødemel Stokkeland': 'Hilde, veterinär'}\"\r\ntt1306980,\"{'Joseph Gordon-Levitt': 'Adam', 'Seth Rogen': 'Kyle', 'Anna Kendrick': 'Katherine', 'Bryce Dallas Howard': 'Rachael', 'Anjelica Huston': 'Diane', 'Serge Houde': 'Richard - Alzheimer Dad', 'Andrew Airlie': 'Dr. Ross', 'Matt Frewer': 'Mitch', 'Philip Baker Hall': 'Alan', 'Donna Yamamoto': 'Dr. Walderson', 'Sugar Lyn Beard': 'Susan', 'Yee Jee Tso': 'Dr. Lee', 'Sarah Smyth': 'Jenny', 'Peter Kelamis': 'Phil', 'Jessica Parker Kennedy': 'Jackie'}\"\r\ntt1237838,\"{'Donald Glover': 'Jason', 'D.C. Pierson': 'Duncan', 'Dominic Dierkes': 'Charlie', 'Aubrey Plaza': 'Kelly', 'Glenn Kalison': 'Robert', 'Peter Saati': 'Leroy', 'Kay Cannon': 'Destiny', 'Bobby Moynihan': 'Jordy', 'Matt Walsh': 'Jim', 'John Lutz': 'Frank', 'Robbie Sublett': 'Ricky Appleman', 'Tom Shillue': 'Alan McGinty', 'Kevin Brown': 'Bouncer', 'Ellie Kemper': 'Jamie', 'Jon Daly': 'Greg'}\"\r\ntt0360009,\"{'Tia Texada': 'Jackie Black', 'Derek Luke': 'Curtis', 'Val Kilmer': 'Scott', 'Jeremie Campbell': 'Cadre Candidate', 'Bob Jennings': \"\"Grace's Aide\"\", 'Lionel Mark Smith': 'Colonel Blane', 'Johnny Messner': 'Grace', 'Chris LaCentra': 'Cpl. Sattler       (as Chris J. Lacentra)', 'Renato Magno': 'Grossler', 'Mark FitzGerald': 'Training Facility Guard', 'Tony Mamet': 'Parker', 'Clark Gregg': 'Miller', 'Ron Butler': 'Headquarters Agent', 'Steven Culp': 'Gaines       (as Stephen Culp)', 'Vincent Guastaferro': 'Naylor'}\"\r\ntt0308508,\"{'Robert August': 'Robert August', 'Rochelle Ballard': 'Herself', 'Shawn Barron': 'Himself', 'Layne Beachley': 'Herself', 'Jesse Brad Billauer': 'Himself', 'Bruce Brown': 'Himself', 'Dana Brown': 'Narrator', 'Taj Burrow': 'Himself', 'Ken Collins': 'Himself', 'Ami DiCamillo': 'Herself', 'Darrick Doerner': 'Himself', 'Richard Fitzgerald': 'Himself', 'Brad Gerlach': 'Himself', 'Laird Hamilton': 'Himself', 'Dave Kalama': 'Himself'}\"\r\ntt0118971,\"{'Keanu Reeves': 'Kevin Lomax', 'Al Pacino': 'John Milton', 'Charlize Theron': 'Mary Ann Lomax', 'Jeffrey Jones': 'Eddie Barzoon', 'Judith Ivey': 'Mrs. Alice Lomax', 'Connie Nielsen': 'Christabella Andreoli', 'Craig T. Nelson': 'Alexander Cullen', 'Tamara Tunie': 'Mrs. Jackie Heath', 'Ruben Santiago-Hudson': 'Leamon Heath', 'Debra Monk': 'Pam Garrety', 'Vyto Ruginis': 'Mitch Weaver - Justice Department', 'Laura Harrington': 'Melissa Black', 'Pamela Gray': 'Mrs. Diana Barzoon', 'George Wyner': 'Meisel', 'Chris Bauer': 'Lloyd Gettys       (as Christopher Bauer)'}\"\r\ntt0129167,\"{'Jennifer Aniston': 'Annie Hughes       (voice)', 'Harry Connick Jr.': 'Dean McCoppin       (voice)', 'Vin Diesel': 'The Iron Giant       (voice)', 'James Gammon': 'Foreman Marv Loach /              Floyd Turbeaux       (voice)', 'Cloris Leachman': 'Mrs. Tensedge       (voice)', 'Christopher McDonald': 'Kent Mansley       (voice)', 'John Mahoney': 'General Rogard       (voice)', 'Eli Marienthal': 'Hogarth Hughes       (voice)', 'M. Emmet Walsh': 'Earl Stutz       (voice)', 'Jack Angel': 'Additional Voices       (voice)', 'Bob Bergen': 'Additional Voices       (as Robert Bergen)', 'Mary Kay Bergman': 'Additional Voices       (voice)', 'Michael Bird': 'Additional Voices       (voice)', 'Devon Cole Borisoff': 'Additional Voices       (voice) (as Devon Borisoff)', 'Rodger Bumpass': 'Additional Voices       (voice)'}\"\r\ntt0093437,\"{'Jason Patric': 'Michael', 'Corey Haim': 'Sam', 'Dianne Wiest': 'Lucy', 'Barnard Hughes': 'Grandpa', 'Edward Herrmann': 'Max       (as Ed Herrmann)', 'Kiefer Sutherland': 'David', 'Jami Gertz': 'Star', 'Corey Feldman': 'Edgar Frog', 'Jamison Newlander': 'Alan Frog', 'Brooke McCarter': 'Paul', 'Billy Wirth': 'Dwayne', 'Alex Winter': 'Marko       (as Alexander Winter)', 'Chance Michael Corbitt': 'Laddie', 'Alexander Bacan Chapman': 'Greg       (as Alexander Bacon Chapman)', 'Nori Morgan': 'Shelly'}\"\r\ntt0120004,\"{'Penelope Ann Miller': 'Dr. Margo Green', 'Tom Sizemore': \"\"Lt. Vincent D'Agosta\"\", 'Linda Hunt': 'Dr. Ann Cuthbert', 'James Whitmore': 'Dr. Albert Frock', 'Clayton Rohner': 'Det. Hollingsworth', 'Chi Muoi Lo': 'Dr. Greg Lee', 'Thomas Ryan': 'Tom Parkinson', 'Robert Lesser': 'Mayor Robert Owen', 'Diane Robin': \"\"The Mayor's Wife\"\", 'Lewis Van Bergen': 'John Whitney', 'Constance Towers': 'Mrs. Blaisedale', 'Francis X. McCarthy': 'Mr. Blaisedale', 'Audra Lindley': 'Dr. Zwiezic', 'John Kapelos': 'McNally', 'Tico Wells': 'Bailey'}\"\r\ntt0086508,\"{'Gene Hackman': 'Colonel Rhodes', 'Robert Stack': 'MacGregor', 'Fred Ward': 'Wilkes', 'Reb Brown': 'Blaster', \"\"Randall 'Tex' Cobb\"\": 'Sailor', 'Patrick Swayze': 'Scott', 'Harold Sylvester': 'Johnson', 'Tim Thomerson': 'Charts', 'Alice Lau': 'Lai Fun       (as Lau Nga Lai)', 'Kwan Hi Lim': 'Jiang', 'Kelly Junkerman': 'MacGregor       (as Kelly Yunkerman)', 'Todd Allen': 'Frank Rhodes', 'Gail Strickland': 'Helen Rhodes', 'Jane Kaczmarek': 'Mrs. Wilkes', 'Gloria Stroock': 'Mrs. MacGregor'}\"\r\ntt1477076,\"{'Tobin Bell': 'Jigsaw /              John', 'Costas Mandylor': 'Hoffman', 'Betsy Russell': 'Jill', 'Cary Elwes': 'Dr. Gordon', 'Sean Patrick Flanery': 'Bobby', 'Chad Donella': 'Gibson', 'Gina Holden': 'Joyce', 'Laurence Anthony': 'Rogers', 'Dean Armstrong': 'Cale', 'Naomi Snieckus': 'Nina', 'Rebecca Marshall': 'Suzanne', 'James Van Patten': 'Dr. Heffner', 'Sebastian Pigott': 'Brad', 'Jon Cor': 'Ryan', 'Anne Lee Greene': 'Dina       (as Anne Greene)'}\"\r\ntt0816462,\"{'Jason Momoa': 'Conan', 'Stephen Lang': 'Khalar Zym', 'Rachel Nichols': 'Tamara', 'Ron Perlman': 'Corin', 'Rose McGowan': 'Marique', 'Bob Sapp': 'Ukafa', 'Leo Howard': 'Young Conan', \"\"Steven O'Donnell\"\": 'Lucius', 'Nonso Anozie': 'Artus', 'Raad Rawi': 'Fassir', 'Laila Rouass': 'Fialla', 'Saïd Taghmaoui': 'Ela-Shan', 'Milton Welsh': 'Remo', 'Borislav Iliev': 'Wild Man', 'Nathan Jones': 'Akhun'}\"\r\ntt0206275,\"{'Julia Stiles': 'Sara', 'Sean Patrick Thomas': 'Derek', 'Kerry Washington': 'Chenille', 'Fredro Starr': 'Malakai', 'Terry Kinney': 'Roy', 'Bianca Lawson': 'Nikki', 'Vince Green': 'Snookie', 'Garland Whitt': 'Kenny', 'Elisabeth Oas': 'Diggy', 'Artel Great': 'Arvel       (as Artel Jarod Walker)', 'Cory Stewart': 'Lip', 'Jennifer Anglin': 'Glynn', 'Dorothy Martin': 'Momma Dean', 'Kim Tlusty': 'Lindsay', 'Felicia Fields': 'Woman on Train'}\"\r\ntt0086873,\"{'Steve Martin': 'Roger Cobb', 'Lily Tomlin': 'Edwina Cutwater', 'Victoria Tennant': 'Terry Hoskins', 'Madolyn Smith Osborne': 'Peggy Schuyler       (as Madolyn Smith)', 'Richard Libertini': 'Prahka Lasa', 'Dana Elcar': 'Burton Schuyler', 'Jason Bernard': 'Tyrone Wattell', 'Selma Diamond': 'Margo', 'Eric Christmas': 'Fred Hoskins', 'Gailard Sartain': 'Fulton Norris', 'Neva Patterson': 'Gretchen', 'Michael Ensign': 'Mr. Mifflin', 'Peggy Feury': 'Dr. Betty Ahrens', 'Nan Martin': 'Divorce Lawyer', 'Basil Hoffman': 'Court Clerk'}\"\r\ntt0115738,\"{'John Turturro': 'Al Fountain', 'Sam Rockwell': 'The Kid', 'Catherine Keener': 'Floatie Dupre', 'Lisa Blount': 'Purlene Dupre', 'Annie Corley': 'Deb Fountain', 'Alexander Goodwin': 'Bobby Fountain', 'Dermot Mulroney': 'Wick', 'Mike Stanley': 'Doob', 'Rica Martens': 'Doris', 'Ray Aranha': 'Soapy', 'Robert Wightman': 'Dex', 'James Richardson': 'Taco', 'Stephen Dupree': 'Elwood', 'Eugene Wolf': 'Lyle', 'Reathel Bean': 'Luvven Coddle'}\"\r\ntt0374563,\"{'Elisha Cuthbert': 'Jennifer', 'Daniel Gillies': 'Gary Dexter', 'Pruitt Taylor Vince': 'Ben Dexter', 'Michael Harney': 'Det. Bettiger', 'Laz Alonso': 'Det. Ray Di Santos', 'Maggie Damon': 'Detective Susan Luden', 'Carl Paoli': 'Victim #1', 'Trent Broin': 'Victim #2'}\"\r\ntt0200530,\"{'Mike White': \"\"Buck O'Brien\"\", 'Chris Weitz': \"\"Charlie 'Chuck' Sitter\"\", 'Lupe Ontiveros': 'Beverly Franco', 'Beth Colt': 'Carlyn Carlson', 'Paul Weitz': 'Sam', 'Maya Rudolph': 'Jamilla', 'Mary Wigmore': 'Diane', 'Paul Sand': 'Barry', 'Gino Buccola': 'Tommy', 'Annette Murphy': \"\"Tommy's Mom\"\", 'Glory Simon': 'Witch', 'Douglas Kieffer': 'Mark', 'Jonathan Brown': 'Jake', 'Ruthie Bram': 'Dorothy', 'Giovanni Gieco': 'Scarecrow'}\"\r\ntt0424993,\"{'Dane Cook': 'Zack', 'Jessica Simpson': 'Amy', 'Dax Shepard': 'Vince', 'Andy Dick': 'Lon', 'Tim Bagley': 'Glen Gary', 'Brian George': 'Iqbal', 'Efren Ramirez': 'Jorge', 'Marcello Thedford': 'Semi', 'Danny Woodburn': 'Glen Ross', 'Harland Williams': 'Russell', 'Sean Whalen': 'Dirk', 'Barbara Dodd': 'Granny       (as Barbara Dodd Ramsen)', 'Victor Izay': 'Greeter (Jerry)', 'Marc Mouchet': 'Gene', 'Kathleen Arc': 'Grumpy Lady'}\"\r\ntt0317676,\"{'Jonathan Cherry': 'Rudy', 'Tyron Leitso': 'Simon', 'Clint Howard': 'Salish', 'Ona Grauer': 'Alicia', 'Ellie Cornell': 'Casper', 'Will Sanderson': 'Greg', 'Enuka Okuma': 'Karma', 'Kira Clavell': 'Liberty', 'Sonya Salomaa': 'Cynthia       (as Sonja Salomaa)', 'Michael Eklund': 'Hugh', 'David Palffy': 'Castillo', 'Jürgen Prochnow': 'Kirk       (as Jurgen Prochnow)', 'Steve Byers': 'Matt', 'Erica Durance': 'Johanna       (as Erica Parker)', 'Birgit Stein': 'Lena'}\"\r\ntt0160672,\"{'Noah Fleiss': 'Joe Henry', 'Karen Young': 'Theresa Henry', 'Camryn Manheim': 'Mrs. Basil', 'Austin Pendleton': 'Winston', 'Val Kilmer': 'Bob Henry', 'Max Ligosh': 'Mike Henry', 'James Costa': 'Ray', 'Jenny Robertson': 'Waitress', 'Amy Wright': 'Mary', 'Richard Bright': 'Roy', 'Raymond De Felitta': 'Mr. Brazer', 'John Leguizamo': 'Jorge', 'Robert Whaley': 'Jerry', 'Peter Anthony Tambakis': 'Little Joe       (as Peter Tambakis)', 'Harlee Ott': 'Dawn'}\"\r\ntt0119426,\"{'Tobey Maguire': 'J.T.', 'Amy Hathaway': 'Tanya', 'Wilson Cruz': 'James', 'Christina Zilber': 'Smith       (as Christina Naify)', 'James Karen': 'The Client', 'Adam West': 'Harold', 'Benicio Del Toro': 'Detective Lopez', 'Steven Gilborn': 'Arthur', 'J.P. Bumstead': 'Dr. Brewer', 'Kenn Norman': 'Sheriff Cork', 'Judson Mills': 'Redneck Joey', 'Susan Romick': \"\"Redneck Joey's Girlfriend\"\", 'Marc Robinson': 'Bobby', 'Julie Rowen': 'Lisa       (as Julie Donatt)', 'Leslie Bartlett': 'Martina Hirsch'}\"\r\ntt0399295,\"{'Nicolas Cage': 'Yuri Orlov', 'Bridget Moynahan': 'Ava Fontaine', 'Jared Leto': 'Vitaly Orlov', 'Shake Tukhmanyan': 'Irina Orlov       (as Shake Toukhmanian)', 'Jean-Pierre Nshanian': 'Anatoly Orlov', 'Jared Burke': 'Ukrainian Mobster', 'Eric Uys': 'Ukrainian Mobster', 'David Shumbris': 'Ukrainian Mobster', 'Stewart Morgan': 'Ukrainian Mobster', 'Jasper Lenz': 'Gregor', 'Stephen Gregor': 'Eli Kurtzman', 'Kobus Marx': 'Boris', 'Stephan De Abreu': 'Liev', 'Jeremy Crutchley': 'Arms Fair Salesman', 'Ian Holm': 'Simeon Weisz'}\"\r\ntt1179891,\"{'Jensen Ackles': 'Tom Hanniger', 'Jaime King': 'Sarah Palmer', 'Kerr Smith': 'Axel Palmer', 'Betsy Rue': 'Irene', 'Edi Gathegi': 'Deputy Martin', 'Tom Atkins': 'Burke', 'Kevin Tighe': 'Ben Foley', 'Megan Boone': 'Megan', 'Karen Baum': 'Deputy Ferris', 'Joy de la Paz': 'Rosa', 'Marc Macaulay': 'Riggs', 'Todd Farmer': 'Frank the Trucker', 'Jeff Hochendoner': 'Red', \"\"Bingo O'Malley\"\": 'Officer Hinch', 'Liam Rhodes': 'Michael'}\"\r\ntt0138704,\"{'Sean Gullette': 'Maximillian Cohen', 'Mark Margolis': 'Sol Robeson', 'Ben Shenkman': 'Lenny Meyer', 'Pamela Hart': 'Marcy Dawson', 'Stephen Pearlman': 'Rabbi Cohen', 'Samia Shoaib': 'Devi', 'Ajay Naidu': 'Farrouhk', 'Kristyn Mae-Anne Lao': 'Jenna', 'Espher Lao Nieves': \"\"Jenna's Mom\"\", 'Joanne Gordon': 'Mrs. Ovadia', 'Lauren Fox': 'Jenny Robeson', 'Stanley B. Herman': 'Moustacheless Man       (as Stanley Herman)', 'Clint Mansell': 'Photographer', 'Tom Tumminello': 'Ephraim', 'Henri Falconi': 'Kaballah Scholar'}\"\r\ntt0114594,\"{'Kevin Spacey': 'Buddy Ackerman', 'Frank Whaley': 'Guy', 'Michelle Forbes': 'Dawn Lockard', 'Benicio Del Toro': 'Rex', 'T.E. Russell': 'Foster Kane', 'Roy Dotrice': 'Cyrus Miles', 'Matthew Flint': 'Manny', 'Patrick Fischler': 'Moe', 'Jerry Levine': 'Jack'}\"\r\ntt0283111,\"{'Ryan Reynolds': 'Van Wilder', 'Tara Reid': 'Gwen Pearson', 'Tim Matheson': 'Vance Wilder Sr.', 'Kal Penn': 'Taj Mahal Badalandabad', 'Teck Holmes': 'Hutch', 'Daniel Cosgrove': 'Richard Bagg', 'Deon Richmond': 'Mini Cochran', 'Alex Burns': 'Gordon', 'Emily Rutherfurd': 'Jeannie', 'Paul Gleason': 'Professor McDoogle', 'Erik Estrada': 'Erik Estrada', 'Curtis Armstrong': 'Campus Cop', 'Jason Winer': 'Panos Patakos', 'Chris Owen': 'Suicidal Freshman', 'Simon Helberg': 'Vernon'}\"\r\ntt0283090,\"{'Jeremy Davies': 'The Drifter', 'Michael Lerner': 'The Judge', 'Litefoot': 'The Warrior #1       (as G. Paul Davis a.k.a Litefoot)', 'Russell Means': 'The Chief', \"\"Chris O'Donnell\"\": 'The Hitman', 'Jon Polito': 'The Security Guard', 'Kevin Sifuentes': 'The Head of Security', 'Michael Rapaport': 'The Cop', 'Anita Maltin': 'The Old Lady', 'Bill Pullman': 'The Ticket Clerk', 'Keith David': 'The Sheriff', 'Rachael Leigh Cook': 'The Waitress', 'P.J. Byrne': 'The Doctor', 'Carlos Mencia': 'The Comedian'}\"\r\ntt0189998,\"{'John Malkovich': 'Friedrich Wilhelm Murnau', 'Willem Dafoe': 'Max Schreck', 'Udo Kier': 'Albin Grau', 'Cary Elwes': 'Fritz Arno Wagner', 'Catherine McCormack': 'Greta Schröder', 'Eddie Izzard': 'Gustav von Wangenheim', 'Aden Gillett': 'Henrik Galeen', 'Nicholas Elliott': 'Paul       (as Nicholas Elliot)', 'Ronan Vibert': 'Wolfgang Müller', 'Sophie Langevin': 'Elke', 'Myriam Muller': 'Maria', 'Milos Hlavac': 'Innkeeper       (as Milos Hlavak)', 'Marja-Leena Junker': \"\"Innkeeper's Wife\"\", 'Derek Kueter': 'Reporter 1', 'Norman Golightly': 'Reporter 2'}\"\r\ntt0437800,\"{'Keke Palmer': 'Akeelah', 'Laurence Fishburne': 'Dr. Larabee', 'Angela Bassett': 'Tanya', 'Curtis Armstrong': 'Mr. Welch', 'J.R. Villarreal': 'Javier       (as JR Villarreal)', 'Sean Michael Afable': 'Dylan', 'Sahara Ware': 'Georgia       (as Sahara Garey)', 'Lee Thompson Young': 'Devon', 'Julito McCullum': 'Terrence', 'Erica Hubbard': 'Kiana', 'Eddie Steeples': 'Derrick-T', 'Dalia Phillips': 'Ms. Cross', 'Tzi Ma': 'Mr. Chiu', 'Jeris Poindexter': 'Steve       (as Jeris Lee Poindexter)', 'Sara Niemietz': 'Polly'}\"\r\ntt0870195,\"{'Linus Roache': 'Henry Moores', 'Rahul Bose': 'T. K. Neelan', 'Nandita Das': 'Sajani', 'Jennifer Ehle': 'Laura Moores', 'Leopold Benedict': 'Peter Moores', 'Dr. Ambikathmajan': \"\"T.K.'s Headmaster\"\", 'Lakshmi Krishnamurthy': \"\"T.K.'s mom\"\", 'Lal': 'Rajat       (as Lal Paul)', 'John Standing': 'Charles Humphries', 'Indrajith Sukumaran': 'Manas       (as Indrajith)', 'Thilakan': \"\"T.K.'s Father\"\", 'Ejji K. Umamahesh': 'Inspector Sampath'}\"\r\ntt0997143,\"{'Sarah Farooqui': 'Sai', 'Chris Ivan Cevic': 'Royce', 'Alex Petrovitch': 'Eric', 'Michele Morrow': 'Kerra', 'Jonathan Oldham': 'Renfield', 'Aric Green': 'Jono', 'Kimberly Rowe': 'Deanna', 'Monica Huntington': 'Candace', 'Warren Draper': 'Grierson', 'Dichen Lachman': 'Aaren', 'Jennifer Lee Wiggins': 'Lynn', 'Ivan L. Moody': 'Incubus'}\"\r\ntt0450278,\"{'Jay Hernandez': 'Paxton', 'Derek Richardson': 'Josh', 'Eythor Gudjonsson': 'Oli', 'Barbara Nedeljakova': 'Natalya', 'Jan Vlasák': 'The Dutch Businessman', 'Jana Kaderabkova': 'Svetlana', 'Jennifer Lim': 'Kana', 'Keiko Seiko': 'Yuki', 'Lubomír Bukový': 'Alex', 'Jana Havlickova': 'Vala', 'Rick Hoffman': 'The American Client', 'Petr Janis': 'The German Surgeon', 'Takashi Miike': 'Miike Takashi', 'Patrik Zigo': 'Bubble Gum Gang Leader       (as Zigo Patrik)', 'Milda Jedi Havlas': 'Desk Clerk Jedi'}\"\r\ntt0364385,\"{'Megumi Okina': 'Rika Nishina', 'Misaki Itô': 'Hitomi Tokunaga', 'Misa Uehara': 'Izumi Tôyama', 'Yui Ichikawa': 'Chiharu', 'Kanji Tsuda': 'Katsuya Tokunaga', 'Kayoko Shibata': 'Mariko', 'Yukako Kukuri': 'Miyuki', 'Shuri Matsuda': 'Kazumi Tokunaga', 'Yôji Tanaka': 'Yûji Tôyama', 'Yoshiyuki Morishita': 'Keibiin', 'Hideo Sakaki': 'Fukushi Sentâ Jimuin', 'Takashi Matsuyama': 'Takeo Saeki', 'Yuya Ozeki': 'Toshio', 'Takako Fuji': 'Kayako', 'Chikara Ishikura': 'Hirohashi'}\"\r\ntt0263734,\"{'James B. Douglas': 'Donald Foley', 'Molly Parker': 'Amy Foley', 'Paul Gross': 'Chris Cutter', 'Barbara Gordon': 'Eva Foley', 'Michelle Nolden': 'Julie Foley', 'Connor Price': 'Brandon Foley', 'Stan Coles': 'Minister', 'James Allodi': 'Neil Bucyk', 'Darryl Casselman': 'Ronnie', \"\"Mike 'Nug' Nahrgang\"\": \"\"Nug McTeague       (as 'Nug')\"\", 'Jed Rees': 'Eddie Strombeck', 'Jane Spidell': 'Lilly Strombeck', 'Polly Shannon': 'Joanne', 'Peter Outerbridge': 'James Lennox', 'Kari Matchett': 'Linda Bucyk'}\"\r\ntt0274812,\"{'James Spader': 'Mr. Grey', 'Maggie Gyllenhaal': 'Lee Holloway', 'Jeremy Davies': 'Peter', 'Lesley Ann Warren': 'Joan Holloway', 'Stephen McHattie': 'Burt Holloway', 'Patrick Bauchau': 'Dr. Twardon', 'Jessica Tuck': \"\"Tricia O'Connor\"\", 'Oz Perkins': 'Jonathan', 'Amy Locane': \"\"Lee's Sister\"\", 'Mary Joy': 'Sylvia', 'Michael Mantell': 'Stewart', 'Lily Knight': 'Paralegal', 'Sabrina Grdevich': 'Allison', 'Lacey Kohl': 'Louisa', 'Julene Renee': 'Jessica'}\"\r\ntt0239060,\"{'Antonie Kamerling': 'Eric', 'Angela Schijf': 'Reza', 'Beau van Erven Dorens': 'Fraser', 'Florence Kasumba': 'Silke', 'Dorothée Capelluto': 'Nadine       (as Dorothee Capelluto)', 'Anniek Pheifer': 'Liesbeth', 'Leo Hogenboom': 'Father Eric', 'Guusje Westermann': 'Mother Eric       (as Guusje Westerman)', 'Tijn Docter': 'Brother Eric', 'Arjan ten Broecke': 'Tom', 'Cynthia de Graaff': 'Claire', 'Antoinette Jelgersma': 'Mother Reza', 'Titus Muizelaar': 'Father Reza', 'Rinco van der Baan': 'Barkeeper', 'Marieke de Kruijf': 'Patricia'}\"\r\ntt0831887,\"{'Jaime King': 'Lorelei', 'Gabriel Macht': 'Spirit', 'Dan Gerrity': 'Detective Sussman', 'Arthur the Cat': 'Himself', 'Kimberly Cox': 'Damsel in Distress', 'Brian Neal Lucero': 'Thug 1       (as Brian Lucero)', 'David Brian Martin': 'Thug 2       (as David B. Martin)', 'Larry Reinhardt-Meyer': 'Officer MacReady', 'Frank Miller': 'Liebowitz', 'Eva Mendes': 'Sand Saref', 'Eric Balfour': 'Mahmoud', 'Samuel L. Jackson': 'Octopus', 'Louis Lombardi': 'Pathos, etc.', 'Scarlett Johansson': 'Silken Floss', 'Sarah Paulson': 'Ellen'}\"\r\ntt0337972,\"{'Brandon Bollig': 'Will Cross age 12', 'Robert Nolan Clark': 'John Blade', 'Kenn Drescher': 'Townie', 'Anastasia Foster': 'Molly       (as Anastasia Roark)', 'Brenda Sue Fowler': \"\"Ned's wife\"\", 'John Gerbin': 'Boone', 'Joe Hanrahan': 'Harms', 'Charles Heuvelman': 'Laborer', 'John Ross': 'Gus', 'Mary Schnitzler': \"\"Woman In Will's House\"\", 'Alicia Skirball': 'Poker player', 'Craig Thrasher': 'Unnamed outlaw', 'Stephanie Vogt': 'Nell'}\"\r\ntt0470705,\"{'Ashley Judd': 'Agnes White', 'Michael Shannon': 'Peter Evans', 'Harry Connick Jr.': 'Jerry Goss', 'Lynn Collins': 'R.C.', \"\"Brían F. O'Byrne\"\": 'Dr. Sweet', 'Neil Bergeron': 'Man in Grocery Store', 'Bob Neill': 'Pizza Harris       (voice)'}\"\r\ntt0814075,\"{'Adam': 'Himself', 'Jeff Anderson': 'Himself', 'Pope Benedict XVI': 'Himself       (archive footage)', 'Monsignor Cain': 'Himself       (archive footage)', 'Case Degroot': 'Himself', 'Jane Degroot': 'Herself', 'Thomas Doyle': 'Himself       (as Father Tom Doyle)', \"\"Mary Gail Frawley-O'Dea\"\": \"\"Herself - Psychologist       (as Dr. Mary Gail Frawley-O'Dea)\"\", 'Bill Hodgman': 'Himself - LA Deputy DA', 'Anne Jyono': 'Herself', 'Bob Jyono': 'Himself', 'Maria Jyono': 'Herself', 'Frank Keating': 'Himself', 'Roger Mahony': 'Himself       (as Cardinal Roger Mahony)', 'John Manly': 'Himself - Attorney for the Jyonos'}\"\r\ntt0353489,\"{'Emily Perkins': 'Brigitte', 'Brendan Fletcher': 'Jeremy', 'Katharine Isabelle': 'Ginger', 'Tatiana Maslany': 'Ghost', 'Susan Adam': 'Barbara', 'Janet Kidder': 'Alice', 'Chris Fassbender': 'Luke', 'Pascale Hutton': 'Beth-Ann', 'Michelle Beaudoin': 'Winnie', 'Eric Johnson': 'Tyler', 'David McNally': 'Marcus', 'Patricia Idlette': 'Dr. Brookner', 'Lydia Lau': 'Koral', 'Coralie Cairns': 'Nurse', 'Shaun Johnston': 'Jack'}\"\r\ntt0811138,\"{'Jessica Simpson': 'Jessica Simpson', 'Kanye West': 'Kanye West', 'Mike Myers': 'Guru Pitka /              Young Pitka /              Teenage Pitka /              Mike Myers', 'Deepak Chopra': 'Deepak Chopra', 'Rob Blake': 'Rob Blake', 'Jessica Alba': 'Jane Bullard', 'Justin Timberlake': 'Jacques Grande', 'Romany Malco': 'Darren Roanoke', 'Verne Troyer': 'Coach Punch Cherkov', 'Meagan Good': 'Prudence Roanoke', 'Manu Narayan': 'Rajneesh', 'John Oliver': 'Dick Pants', 'Stephen Colbert': 'Jay Kell', 'Jim Gaffigan': 'Trent Lueders', 'Ben Kingsley': 'Guru Tugginmypudha'}\"\r\ntt0115438,\"{'Danny Aiello': 'Dosmo Pizzo', 'Greg Cruttwell': 'Allan Hopper', 'Jeff Daniels': 'Alvin Strayer', 'Teri Hatcher': 'Becky Foxx', 'Glenne Headly': 'Susan Parish', 'Peter Horton': 'Roy Foxx', 'Marsha Mason': 'Audrey Hopper', 'Paul Mazursky': 'Teddy Peppers', 'James Spader': 'Lee Woods', 'Eric Stoltz': 'Wes Taylor', 'Charlize Theron': 'Helga Svelgen', 'Keith Carradine': 'Detective Creighton', 'Louise Fletcher': 'Evelyn', 'Austin Pendleton': 'Ralph Crupi', 'Kathleen Luong': 'Midori'}\"\r\ntt0488508,\"{'Queen Latifah': 'Narrator       (voice)', 'Katrina Agate': 'Kid in End Credits', 'Zain Ali': 'Kid in End Credits', 'Preston Bailey': 'Kid in End Credits', 'Kwesi Boakye': 'Kid in End Credits', 'Michael Huang': 'Kid in End Credits', 'Sierra Marcoux': 'Kid in End Credits', 'Dante Pastula': 'Kid in End Credits', 'Peyton Pearson': 'Kid in End Credits', 'Isabella Peschardt': 'Kid in End Credits', 'Christina Robinson': 'Kid in End Credits', 'Lili Sepe': 'Kid in End Credits', \"\"Ke'ala Valencia\"\": 'Kid in End Credits'}\"\r\ntt0393162,\"{'Samuel L. Jackson': 'Coach Ken Carter', 'Rob Brown': 'Kenyon Stone', \"\"Robert Ri'chard\"\": 'Damien Carter', 'Rick Gonzalez': 'Timo Cruz', 'Nana Gbewonyo': 'Junior Battle', 'Antwon Tanner': 'Worm', 'Channing Tatum': 'Jason Lyle', 'Ashanti': 'Kyra', 'Texas Battle': 'Maddux', 'Denise Dowse': 'Principal Garrison', 'Debbi Morgan': 'Tonya', 'Mel Winkler': 'Coach White', 'Vincent Laresca': 'Renny', 'Sidney Faison': 'Ty Crane', 'Octavia Spencer': 'Mrs. Battle'}\"\r\ntt0410097,\"{'Terrence Howard': 'Djay', 'Anthony Anderson': 'Key', 'Taryn Manning': 'Nola', 'Taraji P. Henson': 'Shug', 'DJ Qualls': 'Shelby       (as D.J. Qualls)', 'Ludacris': 'Skinny Black', 'Paula Jai Parker': 'Lexus', 'Elise Neal': 'Yevette', 'Isaac Hayes': 'Arnel', 'Juicy J': 'Tigga', 'William Engram': \"\"Slobs       (as William 'Poon' Engram)\"\", 'Bobby Sandimanie': \"\"Yellow Jacket       (as Bobby 'I-20' Sandimanie)\"\", 'Haystak': 'Mickey', 'Claude Phillips': 'Harold', 'Josey Scott': 'Elroy'}\"\r\ntt0100740,\"{'Debbie Harry': 'Betty (wraparound story)       (as Deborah Harry)', 'David Forrester': 'Priest (wraparound story)', 'Matthew Lawrence': 'Timmy (wraparound story)', 'Christian Slater': 'Andy (segment \"\"Lot 249\"\")', 'Robert Sedgwick': 'Lee (segment \"\"Lot 249\"\")', 'Steve Buscemi': 'Bellingham (segment \"\"Lot 249\"\")', 'Donald Van Horn': 'Moving Man (segment \"\"Lot 249\"\")', 'Michael Deak': 'Mummy (segment \"\"Lot 249\"\")', 'Julianne Moore': 'Susan (segment \"\"Lot 249\"\")', 'George Guidall': 'Museum Director (segment \"\"Lot 249\"\")', 'Kathleen Chalfant': 'Dean (segment \"\"Lot 249\"\")', 'Ralph Marrero': 'Cabbie (segment \"\"Lot 249\"\")', 'David Johansen': 'Halston (segment \"\"Cat From Hell\"\")', 'Paul Greeno': 'Cabbie (segment \"\"Cat From Hell\"\")', 'William Hickey': 'Drogan (segment \"\"Cat From Hell\"\")'}\"\r\ntt0037536,\"{'Bing Crosby': \"\"Father Chuck O'Malley\"\", 'Ingrid Bergman': 'Sister Mary Benedict', 'Henry Travers': 'Horace P. Bogardus', 'William Gargan': \"\"Joe Gallagher - Patsy's father\"\", 'Ruth Donnelly': 'Sister Michael', 'Joan Carroll': \"\"Patricia 'Patsy' Gallagher\"\", 'Martha Sleeper': \"\"Mary Gallagher - Patsy's mother\"\", 'Rhys Williams': 'Dr. McKay', 'Richard Tyler': 'Eddie Breen       (as Dickie Tyler)', \"\"Una O'Connor\"\": 'Mrs. Breen'}\"\r\ntt0408839,\"{'Ben Stiller': 'Eddie', 'Malin Akerman': 'Lila', 'Michelle Monaghan': 'Miranda', 'Jerry Stiller': 'Doc', 'Rob Corddry': 'Mac', 'Carlos Mencia': 'Tito', 'Scott Wilson': 'Boo', 'Polly Holliday': 'Beryl', 'Danny McBride': 'Martin', 'Roy Jenkins': 'Buzz', 'Stephanie Courtney': 'Gayla', 'Amy Sloan': 'Deborah', 'Jerry Sherman': 'Grandpa Anderson', 'Lauren Bowles': 'Tammy', 'Nicholas Kromka': '12 Year Old Twin'}\"\r\ntt0434139,\"{'Zach Braff': 'Michael', 'Jacinda Barrett': 'Jenna', 'Casey Affleck': 'Chris', 'Rachel Bilson': 'Kim', 'Michael Weston': 'Izzy', 'Eric Christian Olsen': 'Kenny', 'Marley Shelton': 'Arianna', 'Lauren Lee Smith': 'Lisa', 'Harold Ramis': 'Professor Bowler', 'Blythe Danner': 'Anna', 'Tom Wilkinson': 'Stephen', 'David Haydn-Jones': 'Mark       (as David Haydyn-Jones)', 'Cindy Sampson': 'Danielle', 'Lisa Hochstein': 'Stripper #1       (as Lisa Mackay)', 'Patricia Stasiak': 'Stripper #2'}\"\r\ntt0264323,\"{'Robert Englund': 'Mayor Buckman', 'Lin Shaye': 'Granny Boone', 'Giuseppe Andrews': 'Harper Alexander', 'Jay Gillespie': 'Anderson Lee', 'Marla Malcolm': 'Joey       (as Marla Leigh Malcom)', 'Dylan Edrington': 'Nelson', 'Matthew Carey': 'Cory', 'Peter Stormare': 'Professor Ackerman', 'Gina Marie Heekin': 'Kat', 'Brian Gross': 'Ricky', 'Mushond Lee': 'Malcolm', 'Bianca Smith': 'Leah', 'Brendan McCarthy': 'Rufus', 'Adam Robitel': 'Lester', 'Christa Campbell': 'Milk Maiden'}\"\r\ntt0384814,\"{'Colin Farrell': 'Arturo Bandini', 'Salma Hayek': 'Camilla', 'Donald Sutherland': 'Hellfrick', 'Eileen Atkins': 'Mrs. Hargraves', 'Idina Menzel': 'Vera Rivkin', 'Justin Kirk': 'Sammy', 'Jeremy Crutchley': 'Solomon', 'Ronald France': 'Columbia Sweeper', 'Dionysio Basco': 'Filipino Houseboy       (as Dion Basco)', 'Donna Mosley': 'Red Headed Girl', 'Paul Rylander': 'Harold the Bartender', 'Natasha Staples': 'Denver Librarian', 'Wayne Harrison': 'Heilman', 'Yasuhiro Yoshimura': 'Japanese Vegetable Man       (as Yoshimura Yasuhiro)', 'Sid': 'Willie the Dog'}\"\r\ntt0137338,\"{'Ben Affleck': 'Bartender', 'Casey Affleck': 'Tom', 'Jennifer Albano': 'Cheryl', 'Jenni Blong': \"\"Cheryl's Friend       (as Jenny Blong)\"\", 'Morgan Brown': 'French Rocker', 'Caleb Carr': 'Cynical Bar Patron', 'Dave Chappelle': 'Disco Cabbie', 'Elvis Costello': 'Elvis Costello', 'Guillermo Díaz': 'Dave       (as Guillermo Diaz)', 'Angela Featherstone': 'Caitlyn', 'Patrick Frederic': 'Tiki Sobbing Man', 'Janeane Garofalo': 'Ellie', 'Gaby Hoffmann': 'Stephie', 'Kate Hudson': 'Cindy', 'David Johansen': 'Tiki Bartender'}\"\r\ntt0375173,\"{'Jude Law': 'Alfie', 'Renée Taylor': 'Lu Schnitman       (as Renee Taylor)', 'Jane Krakowski': 'Dorie', 'Jeff Harding': 'Phil', 'Marisa Tomei': 'Julie', 'Kevin Rahm': 'Terry', 'Max Morris': 'Max', 'Omar Epps': 'Marlon', 'Nia Long': 'Lonette', 'Gedde Watanabe': 'Wing', 'Jo Yang': 'Mrs. Wing', 'Tara Summers': 'Carol', 'Sam Vincenti': 'Felix', 'Katherine LaNasa': 'Uta', 'Claudette Mink': 'Bitter Girl'}\"\r\ntt0312329,\"{'Meg Ryan': 'Jackie Kallen', 'Omar Epps': 'Luther Shaw', 'Charles S. Dutton': 'Felix Reynolds', 'Tony Shalhoub': 'Sam LaRocca', 'Tim Daly': 'Gavin Reese', 'Joe Cortese': 'Irving Abel', 'Kerry Washington': 'Renee', 'Sean Bell': 'Ray Kallen', 'Dean McDermott': 'Pete Kallen', 'Skye McCole Bartusiak': 'Little Jackie', 'Juan Carlos Hernández': 'Pedro Hernandez       (as Juan Hernandez)', 'Holt McCallany': 'Doug Doherty', 'Tory Kittles': 'Devon Green', 'Gene Mack': 'Kevin Keyes', 'Beau Starr': 'Corcoran'}\"\r\ntt0101301,\"{'Harley Jane Kozak': \"\"Catherine O'Fallon\"\", 'Jamey Sheridan': \"\"Michael O'Fallon\"\", 'Ethan Embry': \"\"Ethan O'Fallon       (as Ethan Randall)\"\", 'Kevin Nealon': 'Tony Boer', 'Thora Birch': \"\"Hallie O'Fallon\"\", 'Andrea Martin': 'Olivia', 'Lauren Bacall': 'Lillian Brooks', 'Amy Oberer': 'Stephanie', 'Renée Taylor': 'Sylvia', 'Leslie Nielsen': 'Santa', 'Felicity LaFortune': 'Susan', 'Camille Saviola': 'Sonya', 'Michael Alaimo': 'Frankie', 'Joanne Baron': 'Salesdervish #2', 'Alan Brooks': 'Mr. Chase'}\"\r\ntt0080365,\"{'Richard Gere': 'Julian', 'Lauren Hutton': 'Michelle', 'Hector Elizondo': 'Sunday', 'Nina van Pallandt': 'Anne       (as Nina Van Pallandt)', 'Bill Duke': 'Leon', 'Brian Davies': 'Charles Stratton', 'K Callan': 'Lisa Williams', 'Tom Stewart': 'Mr. Rheiman', 'Patricia Carr': 'Judy Rheiman       (as Patti Carr)', 'David Cryer': 'Lt. Curtis', 'Carole Cook': 'Mrs. Dobrun', 'Carol Bruce': 'Mrs. Sloan', 'Frances Bergen': 'Mrs. Laudner', 'Macdonald Carey': 'Hollywood Actor       (as MacDonald Carey)', 'William Dozier': \"\"Michelle's Lawyer\"\"}\"\r\ntt0486259,\"{'Jake Tusing': 'Himself', 'Megan Krizmanich': 'Herself', 'Colin Clemens': 'Himself', 'Mitch Reinholt': 'Himself', 'Hannah Bailey': 'Herself', 'Geoff Haase': 'Himself', 'Jennifer Lucht': 'Herself', 'Skye Scott': 'Himself', 'Jennifer Sheopherd': 'Herself', 'Ali Wikalinska': 'Herself'}\"\r\ntt0221799,\"{'Scarlett Johansson': 'Suzanne - at 15', 'Nastassja Kinski': 'Margit', 'Raffaella Bánsági': 'Suzanne - Infant', 'Tony Goldwyn': 'Peter', 'Ágnes Bánfalvy': 'Helen       (as Ági Bánfalvy)', 'Zoltán Seress': 'George', 'Klaudia Szabó': 'Maria - at 4', 'Zsolt Zágoni': 'Russian Soldier', 'András Szöke': 'Istvan', 'Erzsi Pásztor': 'Ilus', 'Carlos Laszlo': 'Boy on Train', 'Bori Kereszturi': 'Suzanne - at 3       (as Boru Keresztúri)', 'Péter Kálloy Molnár': 'AVO Officer       (as Péter Kállóy Molnár)', 'Zsuzsa Czinkóczi': 'Teri', 'Balázs Galkó': 'Jeno'}\"\r\ntt0491747,\"{'Gordon Pinsent': 'Grant Anderson', 'Stacey LaBerge': 'Young Fiona', 'Julie Christie': 'Fiona Anderson', 'Olympia Dukakis': 'Marian', 'Deanna Dezmari': 'Veronica', 'Clare Coulter': 'Phoebe Hart', 'Thomas Hauff': 'William Hart', 'Alberta Watson': 'Dr. Fischer', 'Grace Lynn Kung': 'Nurse Betty', 'Lili Francks': 'Theresa', 'Andrew Moodie': 'Liam', 'Wendy Crewson': 'Madeleine Montpellier', 'Judy Sinclair': 'Mrs. Albright', 'Tom Harvey': 'Michael', 'Carolyn Hetherington': 'Eliza'}\"\r\ntt0414853,\"{'Kevin James': 'Otis the Cow       (voice)', 'Courteney Cox': 'Daisy the Cow       (voice)', 'Sam Elliott': 'Ben the Cow       (voice)', 'Danny Glover': 'Miles the Mule       (voice)', 'Wanda Sykes': 'Bessy the Cow       (voice)', 'Andie MacDowell': 'Etta the Hen       (voice)', 'David Koechner': 'Dag the Coyote       (voice)', 'Jeffrey Garcia': 'Pip the Mouse       (voice) (as Jeff Garcia)', 'Cam Clarke': 'Freddy the Ferret       (voice)', 'Rob Paulsen': 'Peck the Rooster /              Gopher       (voice)', 'Tino Insana': 'Pig the Pig       (voice)', 'Dom Irrera': 'Duke the Dog       (voice)', 'S. Scott Bullock': 'Eddy the Cow       (voice) (as Scott Bullock)', 'John DiMaggio': \"\"Bud the Cow /              Officer O'Hanlon       (voice)\"\", 'Maurice LaMarche': 'Igg the Cow       (voice)'}\"\r\ntt0103759,\"{'Harvey Keitel': 'LT', 'Brian McElroy': \"\"LT's Son (#1)\"\", 'Frank Acciarito': \"\"LT's Son (#2)       (as Frankie Acciarito)\"\", 'Peggy Gormley': \"\"LT's Wife\"\", 'Stella Keitel': \"\"LT's Daughter\"\", 'Dana Dee': \"\"LT's Baby Girl\"\", 'Victor Argo': 'Beat Cop', 'Paul Calderon': 'Cop #1       (as Paul Calderone)', 'Leonard L. Thomas': 'Cop #2       (as Leonard Thomas)', 'Anthony Ruggiero': 'Lite', 'Vincent Laresca': 'JC', 'Robin Burrows': 'Ariane', 'Victoria Bastel': 'Bowtay', 'G. Elvis Phillips': 'Young Cop', 'Stephen Chen': 'Korean Store Owner'}\"\r\ntt0292963,\"{'Philip Seymour Hoffman': 'Andy', 'Ethan Hawke': 'Hank', 'Albert Finney': 'Charles', 'Marisa Tomei': 'Gina', 'Aleksa Palladino': 'Chris', 'Michael Shannon': 'Dex', 'Amy Ryan': 'Martha', 'Sarah Livingston': 'Danielle', \"\"Brían F. O'Byrne\"\": 'Bobby', 'Rosemary Harris': 'Nanette', 'Blaine Horton': 'Justin', 'Arija Bareikis': 'Katherine', 'Leonardo Cimino': 'William', 'Lee Wilkof': 'Jake', 'Damon Gupton': 'Doctor'}\"\r\ntt0482463,\"{'Eduardo Verástegui': 'José', 'Tammy Blanchard': 'Nina', 'Manny Perez': 'Manny', 'Angélica Aragón': 'Mother', 'Jaime Tirelli': 'Father', 'Ramon Rodriguez': 'Eduardo', 'Armando Riesco': 'Francisco', 'Sophie Nyweide': 'Bella', 'Ali Landry Monteverde': 'Celia       (as Ali Landry)', 'Ewa Da Cruz': 'Veronica', 'Alexa Gerasimovich': 'Loochi', 'Herb Lovelle': 'Homeless Man', 'Tawny Cypress': 'Frannie', 'Doug DeBeech': 'Pieter', 'Michael Mosley': 'Kevin'}\"\r\ntt0246772,\"{'Martina Gedeck': 'Martha Klein', 'Maxime Foerste': \"\"Lina Klein (Martha's niece)\"\", 'Sergio Castellitto': 'Mario', 'August Zirner': \"\"Martha's Therapist\"\", 'Sibylle Canonica': 'Frida', 'Katja Studt': 'Lea', 'Antonio Wannek': 'Carlos', 'Idil Üner': 'Bernadette', 'Oliver Broumis': 'Jan', 'Ulrich Thomsen': 'Sam Thalberg', 'Gerhard Garbers': 'Herr Steinberg', 'Angela Schmidt': 'Frau Steinberg', 'Diego Ribon': 'Giuseppe Lorenzo', 'Wolf-Dietrich Sprenger': 'Noisy customer       (as W.D. Sprenger)', 'Victoria Trauttmansdorff': 'Companion       (as Victoria von Trautmannsdorf)'}\"\r\ntt0294357,\"{'Angelina Jolie': 'Sarah Jordan', 'Clive Owen': 'Nick Callahan', 'Teri Polo': 'Charlotte Jordan', 'Linus Roache': 'Henry Bauford', 'Noah Emmerich': 'Elliott Hauser', 'Yorick van Wageningen': 'Steiger', 'Timothy West': 'Lawrence Bauford', 'Kate Trotter': 'Mrs. Bauford', 'Jonathan Higgins': 'Philip       (as Johnathan Higgins)', 'John Gausden': 'Jimmy Bauford', 'Isabelle Horler': 'Anna Bauford', 'Iain Lee': 'Master of Ceremonies', 'Keelan Anthony': 'Jojo       (as Keelan Anthony Ray Forsythe)', 'John Bourgeois': 'Rolly', 'Kalyane Tea': \"\"Steiger's Girlfriend\"\"}\"\r\ntt0109305,\"{'Nick Nolte': 'Pete Bell', 'Mary McDonnell': 'Jenny Bell', 'J.T. Walsh': 'Happy', \"\"Ed O'Neill\"\": 'Ed', 'Alfre Woodard': 'Lavada McRae', 'Bob Cousy': 'Vic', \"\"Shaquille O'Neal\"\": 'Neon', \"\"Anfernee 'Penny' Hardaway\"\": 'Butch McRae', 'Matt Nover': 'Ricky Roe', 'Cylk Cozart': 'Slick', 'Anthony C. Hall': 'Tony', 'Kevin Benton': 'Jack', 'Bill Cross': 'Freddie', 'Marques Johnson': 'Mel', 'Robert Wuhl': 'Marty'}\"\r\ntt0229260,\"{'Kurt Loder': 'Kurt Loder', 'Chuck Scarborough': 'Chuck Scarborough', 'Bruce D. Reed': 'Burkittsville Resident #1       (as Bruce Reed)', 'Jeffrey Donovan': 'Jeffrey Patterson', 'Joe Berlinger': 'Burkittsville Tourist #1', 'Sara Phillips': 'Burkittsville Tourist #2', 'Lynda Millard': 'Burkittsville Resident #2', 'Deb Burgoyne': 'Burkittsville Resident #3', 'Andrea Cox': 'Burkittsville Resident #4', 'Lanny Flaherty': 'Sheriff Cravens', 'Pete Burris': 'MBI Man #1', 'Tristine Skyler': 'Tristen Ryler       (as Tristen Skyler)', 'Stephen Barker Turner': 'Stephen Ryan Parker', 'Erica Leerhsen': 'Erica Geerson', 'Kim Director': 'Kim Diamond'}\"\r\ntt0103873,\"{'Timothy Balme': 'Lionel Cosgrove', 'Diana Peñalver': 'Paquita Maria Sanchez', 'Elizabeth Moody': 'Mum (Vera Cosgrove)', 'Ian Watkin': 'Uncle Les', 'Brenda Kendall': 'Nurse McTavish', 'Stuart Devenie': 'Father McGruder', 'Jed Brophy': 'Void', 'Stephen Papps': 'Zombie McGruder', 'Murray Keane': 'Scroat', 'Glenis Levestam': 'Nora Matheson', 'Lewis Rowe': 'Mr. Matheson', 'Elizabeth Mulfaxe': 'Rita', 'Harry Sinclair': 'Roger', 'Davina Whitehouse': \"\"Paquita's Grandmother\"\", 'Silvio Famularo': \"\"Paquita's Father\"\"}\"\r\ntt0103859,\"{'Eddie Murphy': 'Marcus', 'Robin Givens': 'Jacqueline', 'Halle Berry': 'Angela', 'David Alan Grier': 'Gerard', 'Martin Lawrence': 'Tyler', 'Grace Jones': 'Strangé', 'Geoffrey Holder': 'Nelson', 'Eartha Kitt': 'Lady Eloise', 'Chris Rock': 'Bony T', 'Tisha Campbell-Martin': 'Yvonne       (as Tisha Campbell)', 'Lela Rochon': 'Christie', 'John Witherspoon': 'Mr. Jackson', 'Bebe Drake': 'Mrs. Jackson       (as Bebe Drake-Massey)', 'John Canada Terrell': 'Todd', 'Leonard Jackson': 'Chemist'}\"\r\ntt0163988,\"{'Nicolas Cage': 'Frank Pierce', 'Patricia Arquette': 'Mary Burke', 'John Goodman': 'Larry', 'Ving Rhames': 'Marcus', 'Tom Sizemore': 'Tom Wolls', 'Marc Anthony': 'Noel', 'Mary Beth Hurt': 'Nurse Constance', 'Cliff Curtis': 'Cy Coates', 'Nestor Serrano': 'Dr. Hazmat', 'Aida Turturro': 'Nurse Crupp', 'Sonja Sohn': 'Kanita', 'Cynthia Roman': 'Rose', 'Afemo Omilami': 'Griss', 'Cullen O. Johnson': 'Mr. Burke       (as Cullen Oliver Johnson)', 'Arthur J. Nascarella': 'Captain Barney       (as Arthur Nascarella)'}\"\r\ntt0838283,\"{'Will Ferrell': 'Brennan Huff', 'John C. Reilly': 'Dale Doback', 'Mary Steenburgen': 'Nancy Huff', 'Richard Jenkins': 'Dr. Robert Doback', 'Adam Scott': 'Derek', 'Kathryn Hahn': 'Alice', 'Andrea Savage': 'Denise', 'Lurie Poston': 'Tommy', 'Elizabeth Yozamp': 'Tiffany', 'Logan Manus': 'Chris Gardoki', 'Travis T. Flory': 'Redheaded Kid       (as Travis Flory)', 'Lili Rose McKay': '7-Year-Old Girl       (as Lili McKay)', 'Shira Piven': 'Nurse', 'Seth Morris': 'Doctor', 'Wayne Federman': 'Blind Man'}\"\r\ntt0179116,\"{'Natasha Lyonne': 'Megan', 'Michelle Williams': 'Kimberly', 'Brandt Wille': 'Jared', 'Bud Cort': 'Peter', 'Mink Stole': 'Nancy', 'RuPaul': 'Mike       (as RuPaul Charles)', 'Katie Donahue': 'Cheerleader #1', 'Danielle Rene': 'Cheerleader #2       (as Danielle Reneau)', 'Cathy Moriarty': 'Mary Brown', 'Eddie Cibrian': 'Rock', 'Melanie Lynskey': 'Hilary', 'Clea DuVall': 'Graham', 'Katrina Phillips': 'Jan', 'Katharine Towne': 'Sinead', 'Joel Michaely': 'Joel'}\"\r\ntt0303816,\"{'Rider Strong': 'Paul', 'Jordan Ladd': 'Karen', 'James DeBello': 'Bert', 'Cerina Vincent': 'Marcy', 'Joey Kern': 'Jeff', 'Arie Verveen': 'Henry (The Hermit)', 'Robert Harris': 'Old Man Cadwell', 'Hal Courtney': 'Tommy', 'Matthew Helms': 'Dennis', 'Richard Boone': 'Fenster', 'Tim Parati': 'Andy', 'Dalton McGuire': 'Lemonade Boy', 'Jana Farmer': 'Lemonade Girl', 'Dante Walker': 'Shemp', 'Jeff Rendell': 'Fake Shemp'}\"\r\ntt0961722,\"{'Rider Strong': 'Paul', 'Noah Segan': 'John', 'Alexi Wasser': 'Cassie', 'Rusty Kelley': 'Alex', 'Marc Senter': 'Marc', 'Giuseppe Andrews': 'Deputy Winston', 'Mark Borchardt': 'Herman', 'Michael Bowen': 'Principal Sinclair', 'Judah Friedlander': 'Toby', 'Larry Fessenden': 'Bill the Water Truck Driver', 'Amanda Jelks': 'Frederica', 'Thomas Blake Jr.': 'Rick', 'Angela Oberer': 'Ms. Hawker', 'Taylor Kowalski': 'Darryl', 'Alexander Isaiah Thomas': 'Dane'}\"\r\ntt0375912,\"{'Daniel Craig': 'XXXX', 'Tom Hardy': 'Clarkie', 'Jamie Foreman': 'Duke', 'Sally Hawkins': 'Slasher', 'Burn Gorman': 'Gazza', 'Brinley Green': 'Nobby', 'George Harris': 'Morty', 'Tamer Hassan': 'Terry', 'Colm Meaney': 'Gene', 'Marcel Iures': 'Slavo', 'Francis Magee': 'Paul the Boatman', 'Dimitri Andreas': 'Angelo', 'Kenneth Cranham': 'Jimmy Price', 'Garry Tubbs': 'Brian', 'Nathalie Lunghi': 'Charlie       (as Natalie Lunghi)'}\"\r\ntt0157472,\"{'Jesse Bradford': 'Zak Gibbs', 'French Stewart': 'Dr. Earl Dopler', 'Paula Garcés': 'Francesca', 'Michael Biehn': 'Henry Gates', 'Robin Thomas': 'Dr. Gibbs', 'Garikayi Mutambirwa': 'Meeker', 'Julia Sweeney': 'Jenny Gibbs', 'Lindze Letherman': 'Kelly Gibbs', 'Jason George': 'Richard       (as Jason Winston George)', 'Linda Kim': 'Jay', 'Ken Jenkins': 'NSA Agent Moore', 'Esperanza Catubig': 'Ticket Agent', 'Jennifer Manley': 'Security Officer', 'Scott Thomson': 'Tourist Dad', 'Deborah Rawlings': 'Tourist Mom'}\"\r\ntt1153706,\"{'Shoshana Bush': 'Megan', 'Damon Wayans Jr.': 'Thomas', 'Essence Atkins': 'Charity', 'Affion Crockett': 'A-Con', 'Chris Elliott': 'Ron', 'Christina Murphy': 'Nora', 'David Alan Grier': 'Sugar Bear', 'Amy Sedaris': 'Ms. Cameltoé', 'Kim Wayans': 'Ms. Dontwannabebothered', 'Lauren Bowles': 'Glynn', 'Brennan Hillard': 'Jack', 'George Gore II': 'Ray', 'Chelsea Makela': 'Tracy Transfat', 'Ross Thomas': 'Tyler', 'Shawn Wayans': 'Baby Daddy'}\"\r\ntt0433362,\"{'Harriet Minto-Day': 'Lisa Barrett', \"\"Jay Laga'aia\"\": 'Senator Turner', 'Damien Garvey': 'Senator Westlake', 'Sahaj Dumpleton': 'Homeless Vampire', 'Allan Todd': 'Businessman', 'Gabriella Di Labio': 'Businesswoman', 'Ben Siemer': 'Police Officer', 'Peter Welman': 'Police Officer', 'Ethan Hawke': 'Edward Dalton', 'Callum McLean': 'Vampire School Kid', 'Jarrad Pon': 'Vampire School Kid', 'Victoria Williams': 'Vampire School Kid', 'Zoe White': 'Vampire School Kid', 'Aolani Roy': 'Vampire School Kid', 'Tiffany Lamb': 'News Reader'}\"\r\ntt0817538,\"{'Nate Hartley': 'Wade', 'Troy Gentile': 'Ryan', 'Ian Roberts': 'Jim', 'Owen Wilson': 'Drillbit Taylor', 'Casey Boersma': 'Chuck', 'Dylan Boersma': 'Nick', 'Lisa Ann Walter': 'Dolores', 'Beth Littleford': 'Barbara', 'David Koechner': 'Frightened Dad', 'Matt Walsh': 'Not for Pot Driver', 'Janet Varney': 'Attractive Woman Driver', 'Lisa Lampanelli': \"\"Ronnie's Mom\"\", \"\"Bill O'Neill\"\": 'Dean', 'Shaun Weiss': 'Bus Driver', 'Jordan Valacich': 'Cute Girl on Stairs       (as Jordan Valley)'}\"\r\ntt0116493,\"{'Michelle Trachtenberg': 'Harriet M. Welsch', 'Gregory Smith': 'Sport', 'Vanessa Chester': 'Janie Gibbs       (as Vanessa Lee Chester)', \"\"Rosie O'Donnell\"\": 'Ole Golly', 'J. Smith-Cameron': 'Mrs. Welsch', 'Robert Joy': 'Ben Welsch', 'Eartha Kitt': 'Agatha K. Plummer', 'Charlotte Sullivan': 'Marion Hawthorne', 'Teisha Kim': 'Rachel Hennessy', 'Cecilley Carroll': 'Beth Ellen Hansen', 'Dov Tiefenbach': 'Boy with Purple Socks', 'Nina Shock': 'Carrie Andrews', 'Conor Devitt': 'Pinky Whitehead', 'Alisha Morrison': 'Laura Peters', 'Nancy Beatty': 'Miss Elson'}\"\r\ntt0276919,\"{'Nicole Kidman': 'Grace Margaret Mulligan', 'Harriet Andersson': 'Gloria', 'Lauren Bacall': 'Ma Ginger', 'Jean-Marc Barr': 'The Man with the Big Hat', 'Paul Bettany': 'Tom Edison', 'Blair Brown': 'Mrs. Henson', 'James Caan': 'The Big Man', 'Patricia Clarkson': 'Vera', 'Jeremy Davies': 'Bill Henson', 'Ben Gazzara': 'Jack McKay', 'Philip Baker Hall': 'Tom Edison Sr.', 'Thom Hoffman': 'Gangster', 'Siobhan Fallon Hogan': 'Martha', 'John Hurt': 'Narrator       (voice)', 'Zeljko Ivanek': 'Ben'}\"\r\ntt0150377,\"{'Tommy Lee Jones': 'Travis', 'Ashley Judd': 'Libby', 'Benjamin Weir': 'Matty - Age 4', 'Jay Brazeau': 'Bobby', 'Bruce Greenwood': 'Nick', 'John Maclaren': 'Rudy       (as John MacLaren)', 'Ed Evanko': 'Warren       (as Edward Evanko)', 'Annabeth Gish': 'Angie', 'Bruce Campbell': 'Bartender At Party', 'Brennan Elliott': 'Yuppie Man', 'Angela Schneider': 'Yuppie Girl', 'Michael Gaston': 'Cutter', 'Gillian Barber': 'Rebecca Tingely', 'Tom McBeath': 'Coast Guard Officer', 'David Jacox': 'Deputy Ben'}\"\r\ntt0109676,\"{'Wesley Snipes': 'Pete Nessip', 'Gary Busey': 'Ty Moncrief', 'Yancy Butler': 'Jessie Crossman', 'Michael Jeter': 'Earl Leedy', 'Corin Nemec': 'Selkirk', 'Kyle Secor': 'Swoop', 'Luca Bercovici': 'Jagger', 'Malcolm-Jamal Warner': 'Terry Nessip', 'Rex Linn': 'Bobby', 'Grace Zabriskie': 'Winona', 'Robert LaSardo': 'Deputy Dog', 'Sam Hennings': 'Torski', 'Claire Stansfield': 'Kara', 'Mickey Jones': 'Deuce', 'Andy Romano': 'Tom McCracken'}\"\r\ntt0097240,\"{'Matt Dillon': 'Bob', 'Kelly Lynch': 'Dianne', 'James Le Gros': 'Rick', 'Heather Graham': 'Nadine', 'Eric Hull': 'Druggist', 'Max Perlich': 'David', 'James Remar': 'Gentry', 'John Kelly': 'Cop', 'Grace Zabriskie': \"\"Bob's Mother\"\", 'George Catalano': 'Trousinski', 'Janet Baumhover': 'Neighbor Lady', \"\"Ted D'Arms\"\": 'Neighbor Man', 'Neal Thomas': 'Halamer', 'Stephen Rutledge': 'Motel Manager', 'Beah Richards': 'Drug Counselor'}\"\r\ntt0326856,\"{'Ben Stiller': 'Tim Dingman', 'Jack Black': 'Nick Vanderpark', 'Rachel Weisz': 'Debbie Dingman', 'Amy Poehler': 'Natalie Vanderpark', 'Christopher Walken': 'J-Man', 'Ariel Gade': 'Lula Dingman', 'Sam Lerner': 'Michael Dingman', 'Lily Jackson': 'Nellie Vanderpark', 'Connor Matheus': 'Nathan Vanderpark', 'Hector Elias': 'Eduardo', 'Angee Hughes': 'Woman at Play', 'Manny Kleinmuntz': 'Dimitriov', 'Blue Deckert': 'Cal', 'John Gavigan': 'Les', 'Terry Bozeman': '3M Worker'}\"\r\ntt0215750,\"{'Jude Law': 'Vassili', 'Ed Harris': 'Major König', 'Rachel Weisz': 'Tania Chernova', 'Joseph Fiennes': 'Commisar Danilov', 'Bob Hoskins': 'Nikita Khrushchev', 'Ron Perlman': 'Koulikov', 'Eva Mattes': 'Mother Filipov', 'Gabriel Thomson': 'Sacha Filipov       (as Gabriel Marshall-Thomson)', 'Matthias Habich': 'General Paulus', 'Sophie Rois': 'Ludmilla', 'Ivan Shvedoff': 'Volodya', 'Mario Bandi': 'Anton', 'Hans Martin Stier': 'Red Army General', 'Clemens Schick': 'German NCO       (as Clemans Schick)', 'Mikhail Matveev': 'Grandfather'}\"\r\ntt0428518,\"{'Jay-Z': 'Himself', 'Fonzworth Bentley': 'Himself       (as Farnsworth Bentley)', 'Beyoncé': 'Herself       (as Beyoncé Knowles)', 'Memphis Bleek': 'Himself', 'Mary J. Blige': 'Herself', 'Foxy Brown': 'Herself', 'Michael Buffer': 'Himself', \"\"Sean 'Diddy' Combs\"\": \"\"Himself       (as Sean 'P. Diddy' Combs)\"\", 'Common': 'Himself', 'Damon Dash': 'Himself', 'Missy Elliott': 'Herself', 'Freeway': 'Himself', 'Funkmaster Flex': 'Himself', 'Ghostface Killah': 'Himself', 'R. Kelly': 'Himself'}\"\r\ntt0119095,\"{'Harvey Keitel': 'Harry Houdini', 'Jason Salkey': 'James Collins', \"\"Peter O'Toole\"\": 'Sir Arthur Conan Doyle', 'Lara Morgan': 'Jean Doyle', 'Adam Franks': 'Adrian Doyle', 'Guy Witcher': 'Denis Doyle', 'Joseph May': \"\"Houdini's Assistant\"\", 'John Bradley': 'Portly Gentleman', 'Anna Chancellor': 'Peter Pan', 'Florence Hoath': 'Elsie Wright', 'Phoebe Nicholls': 'Polly Wright', 'Leonard Kavanagh': 'Stage Manager', 'Elizabeth Earl': 'Frances Griffiths', 'Paul McGann': 'Arthur Wright', 'Anton Lesser': 'Wounded Corporal'}\"\r\ntt0289944,\"{'John Turturro': 'Harry', 'Deborah Kara Unger': 'Kate', 'Stephen Eric McIntyre': 'Phil       (as Stephen McIntyre)', 'William Allen Young': 'Agent Lawrence', 'Gene Davis': 'Ed       (as Eugene M. Davis)', 'Mark Houghton': 'Diner Cop', 'Jacqueline Ramel': 'Claire', 'James Remar': 'Peter', 'Nadia Litz': 'Ellen', 'Amanda Ooms': 'Prostitute', 'Liv Corfixen': 'Hotel Waitress', 'Frank Adamson': 'Adamson', 'Spencer Duncanson': 'Man', 'Dan K. Toth': 'Hotel Clerk', 'Jeffrey R. Lawrence': 'Sergeant Frank'}\"\r\ntt0106912,\"{'D.B. Sweeney': 'Travis Walton', 'Robert Patrick': 'Mike Rogers', 'Craig Sheffer': 'Allan Dallis', 'Peter Berg': 'David Whitlock', 'Henry Thomas': 'Greg Hayes', 'Bradley Gregg': 'Bobby Cogdill', 'Noble Willingham': 'Blake Davis', 'Kathleen Wilhoite': 'Katie Rogers', 'James Garner': 'Frank Watters', 'Georgia Emelin': 'Dana Rogers', 'Scott MacDonald': 'Dan Walton', 'Wayne Grace': 'Cyrus Gilson', 'Kenneth White': 'Buck', 'Robert Covarrubias': 'Ray Melendez', 'Bruce Wright': 'Dennis Clay'}\"\r\ntt0050419,\"{'Audrey Hepburn': 'Jo Stockton', 'Fred Astaire': 'Dick Avery', 'Kay Thompson': 'Maggie Prescott', 'Michel Auclair': 'Prof. Emile Flostre', 'Robert Flemyng': 'Paul Duval', 'Dovima': 'Marion', 'Suzy Parker': 'Specialty Dancer (Think Pink Number)', 'Sunny Hartnett': 'Specialty Dancer (Think Pink Number)', 'Jean Del Val': 'Hairdresser', 'Virginia Gibson': 'Babs', 'Sue England': 'Laura', 'Ruta Lee': 'Lettie', 'Alex Gerry': 'Dovitch', 'Iphigenie Castiglioni': 'Armande'}\"\r\ntt0101912,\"{'Al Pacino': 'Johnny', 'Michelle Pfeiffer': 'Frankie', 'Hector Elizondo': 'Nick', 'Nathan Lane': 'Tim', 'Kate Nelligan': 'Cora', 'Jane Morris': 'Nedda', 'Greg Lewis': 'Tino', 'Al Fann': 'Luther', 'Ele Keats': 'Artemis', 'Fernando López': 'Jorge', 'Glenn Plummer': 'Peter', 'Tim Hopper': 'Lester', 'Harvey Miller': 'Mr. Rosen', \"\"Sean O'Bryan\"\": 'Bobby', 'Goldie McLaughlin': 'Waitress Helen'}\"\r\ntt1034032,\"{'Gerard Butler': 'Kable', 'Amber Valletta': 'Angie', 'Michael C. Hall': 'Ken Castle', 'Kyra Sedgwick': 'Gina Parker Smith', 'Logan Lerman': 'Simon', 'Alison Lohman': 'Trace', 'Terry Crews': 'Hackman', 'Ramsey Moore': 'Gorge', 'Ludacris': \"\"Humanz Brother       (as Chris 'Ludacris' Bridges)\"\", 'Aaron Yoo': 'Humanz Dude', 'Jonathan Chase': 'Geek Leader', 'Dan Callahan': 'Backup Geek', 'Brighid Fleming': 'Delia', 'Johnny Whitworth': 'Scotch', 'Keith Jardine': 'Mean Slayer'}\"\r\ntt0828393,\"{'Tierra Abbott': 'Lana', 'Christopher Allport': 'Davey Diamond', 'Lisa Arturo': \"\"April's Mother\"\", 'Erik Bragg': 'Dirk', 'Alexander Cendese': 'Nathan       (as Alex Cendese)', 'Alesha Rucci': 'Adriana       (as Alesha Clarke)', 'Lindley Domingue': 'Second Groupie', 'Fiona Dourif': 'Becky', 'Shelley Dowdy': 'Anna', 'Robert Ellsworth': 'Waiter', 'Carrie Finklea': 'Lost Girl', 'Patrick Fischler': 'Anthony', 'Scott Grossman': 'Super Duper', 'Richard Gunn': 'Todd', 'Jessica Havard': 'First Groupie'}\"\r\ntt0430308,\"{'50 Cent': \"\"Marcus       (as Curtis '50 Cent' Jackson)\"\", 'Adewale Akinnuoye-Agbaje': 'Majestic', 'Joy Bryant': 'Charlene', 'Omar Benson Miller': 'Keryl', 'Tory Kittles': 'Justice', 'Terrence Howard': 'Bama', 'Ashley Walters': 'Antwan', 'Marc John Jefferies': 'Young Marcus', 'Viola Davis': 'Grandma', 'Sullivan Walker': 'Grandpa', 'Serena Reeder': 'Katrina', 'Bill Duke': 'Levar', 'Mpho Koaho': 'Junebug', 'Russell Hornsby': 'Odell', 'Joseph Pierre': 'Uncle Deuce'}\"\r\ntt0165798,\"{'Forest Whitaker': 'Ghost Dog', 'John Tormey': 'Louie', 'Cliff Gorman': 'Sonny Valerio', 'Dennis Liu': 'Chinese Restaurant Owner', 'Frank Minucci': 'Big Angie', 'Richard Portnow': 'Handsome Frank', 'Tricia Vessey': 'Louise Vargo', 'Henry Silva': 'Ray Vargo', 'Gene Ruffini': 'Old Consigliere', 'Frank Adonis': \"\"Valerio's Bodyguard\"\", 'Victor Argo': 'Vinny', 'Damon Whitaker': 'Young Ghost Dog', 'Kenny Guay': 'Boy in Window', 'Vince Viverito': 'Johnny Morini', 'Gano Grills': 'Gangsta in Red'}\"\r\ntt0405061,\"{'Thanarat Poonnarattanakul': 'Salesman', 'Qi Shu': 'Joey', 'Nuhtiya Puppatokasub': 'Male Receptionist', 'Phatanasri Posayanonth': 'Translator', 'Yongyut Jamsai': 'Thai Policemen A', 'Montren Mongkon': 'Thai Policemen B', 'Supasawat Buranavech': 'Female Receptionist', 'Wanchai Srimuang': 'Hotel Manager', 'Phurida Vijitphan': 'Hotel Maid', 'Damrong Phutaramgsee': 'Ghost in Thai Taxi', 'Songdad Yapanga': 'Thai Taxi Driver', 'Jesdaporn Pholdee': 'Sam', 'Porntip Kunphasert': 'Ghost in Cafe', 'Jongchai Poomrmarin': 'Chinese Medicine Practitioner', 'Derek Tsang': \"\"Joey's Co-worker\"\"}\"\r\ntt0335119,\"{'Colin Firth': 'Vermeer', 'Scarlett Johansson': 'Griet', 'Tom Wilkinson': 'Van Ruijven', 'Judy Parfitt': 'Maria Thins', 'Cillian Murphy': 'Pieter', 'Essie Davis': 'Catharina', 'Joanna Scanlan': 'Tanneke', 'Alakina Mann': 'Cornelia', 'Chris McHallem': \"\"Griet's Father\"\", 'Gabrielle Reidy': \"\"Griet's Mother\"\", 'Rollo Weeks': 'Frans', 'Anna Popplewell': 'Maertge', 'Anaïs Nepper': 'Lisbeth', 'Melanie Meyfroid': 'Aleydis', 'Nathan Nepper': 'Johannes'}\"\r\ntt0104348,\"{'Al Pacino': 'Ricky Roma', 'Jack Lemmon': 'Shelley Levene', 'Alec Baldwin': 'Blake', 'Alan Arkin': 'George Aaronow', 'Ed Harris': 'Dave Moss', 'Kevin Spacey': 'John Williamson', 'Jonathan Pryce': 'James Lingk', 'Bruce Altman': 'Mr. Spannel', 'Jude Ciccolella': 'Detective', 'Paul Butler': 'Policeman', 'Lori Tan Chinn': 'Coat Check Girl', 'Neal Jones': 'Man in Donut Shop', 'Barry Rohrssen': 'Assistant Detective       (as Barry Rossen)', 'Leigh French': 'Additional Voice       (voice)', 'George Cheung': 'Additional Voice       (voice)'}\"\r\ntt0064381,\"{'Richard Benjamin': 'Neil Klugman', 'Ali MacGraw': 'Brenda Patimkin', 'Jack Klugman': 'Ben Patimkin', 'Nan Martin': 'Mrs. Ben Patimkin', 'Michael Meyers': 'Ron Patimkin', 'Lori Shelle': 'Julie Patimkin', 'Monroe Arnold': 'Uncle Leo', 'Kay Cummings': 'Doris Klugman', 'Sylvie Strause': 'Aunt Gladys', 'Royce Wallace': 'Carlotta', 'Anthony McGowan': 'Boy in Library', 'Mari Gorman': 'Laura Simpson Sockaloe', 'Chris Schenkel': 'Voice on Columbus Record       (voice)', 'Jay Jostyn': 'Voice on Columbus Record       (voice)', 'Jan Peerce': 'Uncle Manny'}\"\r\ntt0093137,\"{'Anthony Barrile': \"\"Pvt. Vincent 'Alphabet' Languilli\"\", 'Michael Boatman': 'Pvt. Ray Motown       (as Michael Patrick Boatman)', 'Don Cheadle': 'Pvt. Johnny Washburn', 'Michael Dolan': 'Pvt. Harry Murphy', 'Don James': \"\"Pvt. Elliott 'Mac' McDaniel\"\", 'Dylan McDermott': 'Sgt. Adam Frantz', 'Michael A. Nickles': 'Pvt. Paul Galvan       (as M.A. Nickles)', \"\"Harry O'Reilly\"\": 'Pvt. Michael Duffy', \"\"Daniel O'Shea\"\": 'Pvt. Frank Gaigin', 'Tim Quill': 'Pvt. Joe Beletsky', 'Tommy Swerdlow': 'Pvt. Martin Bienstock', 'Courtney B. Vance': \"\"Spc. Abraham 'Doc' Johnson\"\", 'Steven Weber': 'Sfc. Dennis Worcester', 'Tegan West': 'Lt. Terry Eden', 'Kieu Chinh': 'Mama San'}\"\r\ntt1235837,\"{'G.K. Bowes': 'Little Red Riding Hood /              Little Bo Peep       (voice) (as Gina K. Bowes)', 'Kelly Brewster': 'King Cole /              Peter /              Humpty Dumpty       (voice)', 'Doug Erholtz': 'Pied Piper /              Simple Simon /              McDowner       (voice)', 'Jennie Fahn': 'Old Woman in the Shoe       (voice)', 'Jim Sullivan': 'Mambo /              Magic Mirror       (voice)', 'Kate Higgins': 'Goldilocks /              Lucy       (voice)', 'Helen Niedwick': 'Snow White       (voice)', 'Lex Lang': 'Grimm       (voice)', 'Catherine Lavin': 'Queen Grace /              Fairy Godmother       (voice)', 'David Lodge': 'Priest /              Rumpelstiltskin       (voice)', 'Cindy Robinson': 'Lady Vain       (voice)', 'Doug Stone': 'McHugh       (voice)', 'Kirk Thornton': 'Munk       (voice)'}\"\r\ntt0361693,\"{'Lisa Kudrow': 'Mamie', 'Steve Coogan': 'Charley', 'Jesse Bradford': 'Nicky', 'Bobby Cannavale': 'Javier', 'Maggie Gyllenhaal': 'Jude', 'Jason Ritter': 'Otis', 'Tom Arnold': 'Frank', 'David Sutcliffe': 'Gil', 'Sarah Clarke': 'Diane', 'Laura Dern': 'Pam', 'Hallee Hirsh': 'Mamie at 17', 'Eric Jungmann': 'Charley at 16 /              Tom', 'Kim Morgan Greene': 'Connie Peppitone', 'Rayne Marcus': 'Annette', 'Caitlyn Folley': 'Lauren       (as Caker Folley)'}\"\r\ntt0815236,\"{'Jay Baruchel': 'Kirk', 'Alice Eve': 'Molly', 'T.J. Miller': 'Stainer', 'Mike Vogel': 'Jack', 'Nate Torrence': 'Devon', 'Lindsay Sloane': 'Marnie', 'Kyle Bornheimer': 'Dylan', 'Jessica St. Clair': 'Debbie', 'Krysten Ritter': 'Patty', 'Debra Jo Rupp': 'Mrs. Kettner', 'Adam LeFevre': 'Mr. Kettner', 'Kim Shaw': 'Katie', 'Jasika Nicole': 'Wendy', 'Geoff Stults': 'Cam', 'Hayes MacArthur': 'Ron'}\"\r\ntt0180734,\"{'Keanu Reeves': \"\"Conor O'Neill\"\", 'Diane Lane': 'Elizabeth Wilkes', 'John Hawkes': 'Ticky Tobin', 'Bryan Hearne': 'Andre Ray Peetes       (as Bryan C. Hearne)', 'Julian Griffith': 'Jefferson Albert Tibbs', 'Michael B. Jordan': 'Jamal       (as Michael Jordan)', 'A. Delon Ellis Jr.': 'Miles Pennfield II', 'Kris D. Lofton': 'Clarence       (as Kristopher Lofton)', 'Michael Perkins': 'Kofi Evans', 'Brian M. Reed': \"\"Raymond 'Ray Ray' Bennet\"\", 'DeWayne Warren': \"\"Jarius 'G-Baby' Evans\"\", 'Carol Hall': 'Pearla Evans       (as Carol E. Hall)', 'Jacqueline Williams': 'Lenora Tibbs', 'Freeman Coffey': 'Darryl Mackey', 'D.B. Sweeney': 'Matt Hyland'}\"\r\ntt0102011,\"{'Kevin Bacon': 'Dan Hanson', 'Elizabeth Perkins': 'Lorie Bryer', 'Nathan Lane': 'Wally Thurman', 'Anthony LaPaglia': 'Mark', 'Sharon Stone': 'Linda', 'Stanley Anderson': 'Mr. Weller', 'Charlayne Woodard': 'Cindy', 'Danton Stone': 'Eric', 'Phil Leeds': 'Mr. Spepk', 'Rita Karin': 'Mrs. Spepk', 'Paul Butler': 'Al, at the Deli', 'Erika Alexander': 'Rita, his Daugther', 'Ashley Gardner': 'Susan', 'Michael Harris': 'Adam       (as M.K. Harris)', 'Damien Leake': 'Ray, the Technical Director'}\"\r\ntt0251736,\"{'Chad Bannon': 'Killer Karl', 'William Bassett': 'Sheriff Frank Huston       (as William H. Bassett)', 'Karen Black': 'Mother Firefly', 'Erin Daniels': 'Denise Willis', 'Joe Dobbs III': 'Gerry Ober', 'Judith Drake': 'Skunk Ape Wife', 'Dennis Fimple': 'Grampa Hugo', 'Gregg Gibbs': 'Dr. Wolfenstein', 'Walton Goggins': 'Steve Naish', 'Sid Haig': 'Captain Spaulding', 'Chris Hardwick': 'Jerry Goldsmith', 'Ken Johnson': 'Skunk Ape Husband', 'Jennifer Jostyn': 'Mary Knowles', 'Irwin Keyes': 'Ravelli', 'Matthew McGrory': 'Tiny Firefly'}\"\r\ntt0770810,\"{'Tre Armstrong': 'Michelle       (as Tré Armstrong)', 'Boyd Banks': 'Mike Evans', 'Clé Bennett': 'Garvey', 'Ardon Bess': 'Uncle Cecil', 'Conrad Coates': 'David Green', 'Keyshia Cole': 'Herself', 'Eve Crawford': 'Seaton Teacher', 'DeRay Davis': 'Himself', 'Shawn Fernandez': 'Trey       (as Shawn Desman)', 'Nina Dobrev': 'Tall Girl in Bathroom', 'Kevin Duhaney': 'E.C.', 'Brennan Gademans': 'Quake', 'Ingrid Gaynor': 'Pam Green', 'Balford Gordon': 'Neighbourhood Guy', 'Patrick Haye': 'Customer'}\"\r\ntt0110146,\"{'Richard Gere': 'Vincent Eastman', 'Sharon Stone': 'Sally Eastman', 'Lolita Davidovich': 'Olivia Marshak', 'Martin Landau': 'Neal', 'David Selby': 'Richard Quarry', 'Jennifer Morrison': 'Meaghan Eastman       (as Jenny Morrison)', 'Ron White': 'Charlie', 'Matthew Walker': 'Surgeon', 'Scott Bellis': 'Van Driver', 'Patricia Harras': \"\"Van Driver's Wife\"\", 'Keegan MacIntosh': \"\"Van Driver's Son       (as Keegan Macintosh)\"\", 'A.C. Peterson': 'Semi-Driver       (as Alan C. Peterson)', 'Sandra P. Grant': 'Receptionist', 'Robyn Stevan': 'Step Magazine', 'David Hurtubise': 'Step Magazine       (as Dave Hurtubise)'}\"\r\ntt0186253,\"{'Billy Crudup': 'FH', 'Robert Michael Kelly': 'Salesman', 'Torben Brooks': 'Car Crash Driver', 'Dierdre Lewis': \"\"Driver's Wife\"\", 'Jimmy Moffit': 'Car Crash Doctor', 'Antoinette LaVecchia': \"\"Dead Man's Wife\"\", 'Samantha Morton': 'Michelle', 'Steve Buck': 'Richard', 'Ben Shenkman': 'Tom', 'Scott Oster': 'Stan', 'Brooke Rachel Shive': 'Beatle       (as Brooke Shive)', 'Mark Webber': 'Jack Hotel', 'John Ventimiglia': 'McInnes', 'Jesse Weaver Jr.': 'Carl', 'Michael Shannon': 'Dundun       (as Mike Shannon)'}\"\r\ntt0425123,\"{'Reese Witherspoon': 'Elizabeth', 'Mark Ruffalo': 'David', 'Donal Logue': 'Jack', 'Dina Spybey-Waters': 'Abby       (as Dina Waters)', 'Ben Shenkman': 'Brett', 'Jon Heder': 'Darryl', 'Ivana Milicevic': 'Katrina', 'Caroline Aaron': 'Grace', 'Rosalind Chao': 'Fran', 'Ron Canada': 'Dr. Walsh', 'Willie Garson': \"\"Maitre D'\"\", 'Gabrielle Made': 'Nurse Maria', 'William Caploe': 'Nurse Bill', 'Shulie Cowen': 'Nurse Jenny', 'Billy Beck': 'Mr. Clarke'}\"\r\ntt1059932,\"{'Rachel Amanda': 'Dion', 'Restu Sinaga': 'Gaza', 'Anggie': 'Himself', \"\"Teuku As'Sadiq\"\": 'Dafi', 'Marcha Caroline': 'Laras', 'Desta Club 80s': 'Didi', 'Nimaz Dewantary': 'Diska', 'Sakurta H. Ginting': 'Deri', 'Karenina': 'Nayla', 'Mike Lucock': 'Dicky       (as Mike Muliadro)', 'Agung Prabowo': 'Idos', 'Tien Sudrajat': 'Mimin', 'Ira Wibowo': 'Astari'}\"\r\ntt0215129,\"{'Breckin Meyer': 'Josh', 'Seann William Scott': 'E. L.', 'Amy Smart': 'Beth', 'Paulo Costanzo': 'Rubin', 'DJ Qualls': 'Kyle', 'Rachel Blanchard': 'Tiffany', 'Anthony Rapp': 'Jacob', 'Fred Ward': 'Earl Edwards', 'Tom Green': 'Barry', 'Andy Dick': 'Motel Clerk', 'Ethan Suplee': 'Ed', 'Horatio Sanz': 'French Toast Guy', 'Rhoda Griffis': 'Tour Group Mom', 'Marla Sucharetza': 'Sperm Bank Nurse', 'Ellen Albertini Dow': \"\"Barry's Grandma\"\"}\"\r\ntt1250777,\"{'Aaron Taylor-Johnson': 'Dave Lizewski /              Kick-Ass       (as Aaron Johnson)', 'Garrett M. Brown': 'Mr. Lizewski', 'Evan Peters': 'Todd', 'Deborah Twiss': 'Mrs. Zane', 'Lyndsy Fonseca': 'Katie Deauxma', 'Sophie Wu': 'Erika Cho', 'Elizabeth McGovern': 'Mrs. Lizewski', 'Christopher Mintz-Plasse': \"\"Chris D'Amico /              Red Mist\"\", \"\"Stu 'Large' Riley\"\": 'Huge Goon       (as Stu Riley)', 'Johnny Hopkins': '1st Gang Kid', 'Ohene Cornelius': '2nd Gang Kid', 'Mark Strong': \"\"Frank D'Amico\"\", 'Michael Rispoli': 'Big Joe', 'Corey Johnson': 'Sporty Goon', 'Kenneth Simmons': 'Scary Goon'}\"\r\ntt0113537,\"{'Josh Hamilton': 'Grover', 'Samuel Gould': 'Pete       (as Sam Gould)', 'Catherine Kellner': 'Gail', 'Jonathan Baumbach': 'Professor', 'John Lehr': 'Louis', \"\"Olivia d'Abo\"\": 'Jane', 'Peter Czernin': 'Lester', 'Carlos Jacott': 'Otis', 'Chris Eigeman': 'Max', 'Eric Stoltz': 'Chet', 'Eliza Roberts': 'Josselyn', 'Jason Wiles': 'Skippy', 'Parker Posey': 'Miami', 'Christopher Reed': 'Friedrich       (as Chris Reed)', 'Noah Baumbach': 'Danny'}\"\r\ntt0074751,\"{'Jeff Bridges': 'Jack Prescott', 'Charles Grodin': 'Fred Wilson', 'Jessica Lange': 'Dwan', 'John Randolph': 'Captain Ross', 'Rene Auberjonois': 'Bagley', 'Julius Harris': 'Boan', \"\"Jack O'Halloran\"\": 'Joe Perko', 'Dennis Fimple': 'Sunfish', 'Ed Lauter': 'Carnahan', 'Jorge Moreno': 'Garcia', 'Mario Gallo': 'Timmons', 'John Lone': 'Chinese Cook', 'Garry Walberg': 'Army General', 'John Agar': 'City Official', 'Keny Long': 'Ape Masked Man'}\"\r\ntt0110305,\"{'Tom Guiry': 'Matthew Turner       (as Thomas Guiry)', 'Helen Slater': 'Laura Turner', 'Jon Tenney': 'Steve Turner', 'Brittany Boyd': 'Jennifer Turner', 'Frederic Forrest': 'Sam Garland', 'Richard Farnsworth': 'Len Collins', 'Michelle Williams': 'April Porter', 'Joe Inscoe': 'Pete Jarman', 'Yvonne Erickson': 'Mrs. Jarman       (as Yvonne Brisendine)', 'Clayton Barclay Jones': 'Josh Garland', 'Charlie Hofheimer': 'Jim Garland', 'Jody Smith Strickler': 'Mildred Garland', 'Margaret Peery': 'Mrs. Parker', 'David Bridgewater': 'Customer', 'Earnest Poole Jr.': 'Highway Patrolman #1'}\"\r\ntt0110329,\"{'Warwick Davis': 'The Leprechaun', 'Charlie Heath': 'Cody', 'Shevonne Durkin': 'Bridget', 'Sandy Baron': 'Morty', 'Adam Biesk': 'Ian', 'James Lancaster': \"\"William O'Day\"\", 'Linda Hopkins': 'Housewife', 'Arturo Gil': 'Drunk at the Pub', 'Kimmy Robertson': \"\"Tourist's Girlfriend\"\", 'Clint Howard': 'Tourist', 'Andrew Craig': 'Midwestern Dad', 'David Powledge': 'Frank', 'Billy Beck': 'Homeless Man', 'Al White': 'Desk Sergeant', 'Martha Hackett': 'Detective'}\"\r\ntt0420251,\"{'Bai Ling': 'Mei (segment \"\"Dumplings\"\")', 'Pauline Lau': 'Li\\'s Maid (segment \"\"Dumplings\"\")', 'Tony Ka Fai Leung': 'Lee (segment \"\"Dumplings\"\")', 'Meme Tian': 'Connie (segment \"\"Dumplings\"\")       (as Meme)', 'Miriam Chin Wah Yeung': 'Ching (segment \"\"Dumplings\"\")', 'Sum-Yeung Wong': 'Old Hairdresser (segment \"\"Dumplings\"\")', 'Kam-Mui Fung': 'Vomiting Woman (segment \"\"Dumplings\"\")', 'Wai-Man Wu': 'Nurse (segment \"\"Dumplings\"\")', 'Chak-Man Ho': 'Wang (segment \"\"Dumplings\"\")', 'Miki Yeung': 'Kate (segment \"\"Dumplings\"\")', 'So-Foon Wong': 'Kate\\'s Mother (segment \"\"Dumplings\"\")', 'Kai-Piu Yau': 'Gynaecologist (segment \"\"Dumplings\"\")', 'Byung-Hun Lee': 'Director (segment \"\"Cut\"\")', 'Won-hee Im': 'Stranger (segment \"\"Cut\"\")       (as Won-Hee Lim)', 'Hye-jeong Kang': 'Director\\'s Wife (segment \"\"Cut\"\")'}\"\r\ntt0079640,\"{'Nick Nolte': 'Phillip Elliott', 'Mac Davis': 'Seth Maxwell', 'Charles Durning': 'Coach Johnson', 'Dayle Haddon': 'Charlotte Caulder', 'Bo Svenson': 'Jo Bob Priddy', 'John Matuszak': 'O. W. Shaddock', 'Steve Forrest': 'Conrad Hunter', 'G.D. Spradlin': 'B. A. Strothers', 'Dabney Coleman': 'Emmett Hunter', 'Savannah Smith Boucher': 'Joanne Rodney       (as Savannah Smith)', 'Marshall Colt': 'Art Hartman', 'Guich Koock': 'Eddie Rand', 'Deborah Benson': 'Mrs. Hartman', 'Jim Boeke': 'Stallings       (as James F. Boeke)', 'John Bottoms': 'Vip'}\"\r\ntt0119783,\"{'Andy Garcia': 'Sean Casey', 'Ian Holm': 'Liam Casey', 'James Gandolfini': 'Joey Allegretto', 'Lena Olin': 'Peggy Lindstrom', 'Shiek Mahmud-Bey': 'Jordan Washington', 'Colm Feore': 'Elihu Harrison', 'Ron Leibman': 'Morgenstern', 'Richard Dreyfuss': 'Sam Vigoda', 'Dominic Chianese': 'Judge Impelliteri', 'Paul Guilfoyle': 'McGovern', 'Bonnie Rose': 'Instructor', 'Norman Matlock': 'Detective', 'Sidney Armus': 'Judge', 'James Murtaugh': 'Man in Asylum       (as Jim Murtaugh)', 'Melba Martinez': 'Legal Aid Attorney'}\"\r\ntt0113691,\"{'Jessica Lange': 'Margaret Lewin', 'Halle Berry': 'Khaila Richards', 'David Strathairn': 'Charles Lewin', 'Cuba Gooding Jr.': 'Eddie Hughes', 'Daisy Eagan': 'Hannah Lewin', 'Marc John Jefferies': 'Isaiah', 'Samuel L. Jackson': 'Kadar Lewis', 'Joie Lee': 'Marie', 'Regina Taylor': 'Gussie', 'LaTanya Richardson Jackson': 'Caroline Jones       (as LaTanya Richardson)', 'Jacqueline Brookes': 'Judge Silbowitz', 'Donovon Ian H. McKnight': 'Amir', 'Rikkia A. Smith': 'Josie', 'Paulette McDaniels': 'Ethel', 'Velma Austin': 'Rehab Leader'}\"\r\ntt0258273,\"{'Troy Ruptash': 'Photographer       (voice)', 'Emily Mortimer': 'Elizabeth Marks', 'Brenda Blethyn': 'Jane Marks', 'Raven Goodwin': 'Annie Marks', 'Catherine Keener': 'Michelle Marks', 'Ileen Getz': 'Saleswoman', 'Kristen Dalton': 'Saleswoman', 'Romy Rosemont': 'Dr. Debbie Waldman', 'Aunjanue Ellis': 'Lorraine', 'Brooke Allison': 'Pool Administrator', 'Jennifer Zehnder': 'Teased Girl', 'James Le Gros': 'Paul', 'Ashlynn Rose': 'Maddy', 'Clark Gregg': 'Bill', 'Dreya Weber': 'Donna'}\"\r\ntt0438205,\"{'Heather Berman': 'Herself', 'Emma Therese Biegacki': 'Herself', 'Eva Carrozza': 'Herself', 'Evangelina Carrozzo': 'Herself', 'Paul Daggett': 'Himself', 'Graciela Daniele': 'Herself - Final Competition Judge', 'Pierre Dulaine': 'Himself - Organizer and MC of the Final Dance Competition', 'Leslie Freu': 'Herself - Teacher PS 112', 'Tara Devon Gallagher': 'Herself', 'Madeleine Hackney': 'Herself', 'Charlotte Jorgensen': 'Herself - Final Competition Judge', 'Rodney Lopez': 'Himself', 'Victoria Malvagno': 'Herself', 'Stacee Mandeville': 'Herself', 'Terri Mintzer': 'Herself - Teacher PS 144'}\"\r\ntt0266747,\"{'Lisa Kudrow': 'Marci Feld', 'Damon Wayans': 'Dr. S', 'Richard Benjamin': 'Ben Feld', 'Jane Krakowski': 'Lauren Farb', 'Christine Baranski': 'Mary Ellen Spinkle', 'Paula Garcés': 'Yolanda Quinones', 'Charles Kimbrough': 'Lane Strayfield', 'Veanne Cox': 'Caitlin Mellowitz', 'Sherie Rene Scott': 'Kirsten Blatt', 'Gano Grills': 'Freekazoid', 'Nashawn Kearse': 'Quantrelle', 'Myron Primes': 'T-Bill', 'Billy Griffith': 'Tubby Fenders', 'Andrew Keenan-Bolger': 'Chip Spinkle', 'Adam Fleming': 'Boyz R Us'}\"\r\ntt0757361,\"{'Zane Pais': 'Claude', 'Susan Blackwell': 'Woman on Train', 'Nicole Kidman': 'Margot', 'Jack Black': 'Malcolm', 'Flora Cross': 'Ingrid', 'Jennifer Jason Leigh': 'Pauline', 'Seth Barrish': 'Toby', 'Matthew Arkin': 'Alan', 'Brian Kelley': 'Bruce', 'Christian Hansen': 'Fireman', 'Michael Cullen': 'Mr. Vogler', 'Enid Graham': 'Mrs. Vogler', 'Sophie Nyweide': 'Vogler Daughter', 'Justin Roth': 'Vogler Son', 'Ciarán Hinds': 'Dick Koosman'}\"\r\ntt0473692,\"{'Neil Young': 'Himself', 'Emmylou Harris': 'Herself', 'Ben Keith': 'Himself', 'Spooner Oldham': 'Himself', 'Rick Rosas': 'Himself', 'Karl T. Himmel': 'Himself       (as Karl Himmel)', 'Chad Cromwell': 'Himself', 'Wayne Jackson': 'Himself', 'Pegi Young': 'Herself', 'Grant Boatwright': 'Himself', 'Diana DeWitt': 'Herself', 'Gary W. Pigg': 'Himself       (as Gary Pigg)', 'Anthony Crawford': 'Himself', 'Tom McGinley': 'Himself', 'Jimmy Sharp': 'Himself'}\"\r\ntt0416320,\"{'Jonathan Rhys Meyers': 'Chris Wilton', 'Alexander Armstrong': 'Mr. Townsend', 'Paul Kaye': 'Estate Agent', 'Matthew Goode': 'Tom Hewett', 'Brian Cox': 'Alec Hewett', 'Penelope Wilton': 'Eleanor Hewett', 'Emily Mortimer': 'Chloe Hewett Wilton', 'Janis Kelly': \"\"'La Traviata' Performers\"\", 'Alan Oke': \"\"'La Traviata' Performers\"\", 'Mark Gatiss': 'Ping-Pong Player', 'Scarlett Johansson': 'Nola Rice', 'Philip Mansfield': 'Waiter', 'Simon Kunz': 'Rod Carver', 'Geoffrey Streatfeild': 'Alan Sinclair', 'Mary Hegarty': \"\"'Rigoletto' Performer\"\"}\"\r\ntt0209144,\"{'Guy Pearce': 'Leonard', 'Carrie-Anne Moss': 'Natalie', 'Joe Pantoliano': 'Teddy', 'Mark Boone Junior': 'Burt', 'Russ Fega': 'Waiter', 'Jorja Fox': \"\"Leonard's Wife\"\", 'Stephen Tobolowsky': 'Sammy Jankis', 'Harriet Sansom Harris': 'Mrs. Jankis', 'Thomas Lennon': 'Doctor', 'Callum Keith Rennie': 'Dodd', 'Kimberly Campbell': 'Blonde', 'Marianne Muellerleile': 'Tattooist', 'Larry Holden': 'Jimmy'}\"\r\ntt0291341,\"{'Vinnie Jones': 'Danny Meehan', 'David Kelly': 'Doc', 'David Hemmings': 'Governor', 'Ralph Brown': 'Burton', 'Vas Blackwood': 'Massive', 'Robbie Gee': 'Trojan', 'Geoff Bell': 'Ratchett', 'John Forgeham': 'Charlie Sykes', 'Sally Phillips': 'Tracey', 'Danny Dyer': 'Billy the Limpet', 'Jason Flemyng': 'Bob Likely', 'Jason Statham': 'Monk', 'Martin Wimbush': 'Z', 'David Reid': 'Barman', 'David Cropman': 'Second Barman'}\"\r\ntt0117091,\"{'Paul Collins': 'Lawyer', 'Laura Weekes': 'Karen Henderson', 'Albert Brooks': 'John Henderson', 'John C. McGinley': 'Carl', 'Debbie Reynolds': 'Beatrice Henderson', 'Richard Assad': 'TV Installer', 'Joey Naber': 'TV Installer', 'Vanessa Williams': 'Donna', 'Lisa Kudrow': 'Linda', 'Rob Morrow': 'Jeff Henderson', 'Isabel Glasser': 'Cheryl Henderson', 'Danielle Quinn': 'Jill Henderson', 'Spencer Klein': 'Josh Henderson', 'Anne Haney': 'Helen', 'Billye Ree Wallace': 'Alice'}\"\r\ntt0119715,\"{'Nathan Lane': 'Ernie Smuntz', 'Lee Evans': 'Lars Smuntz', 'Vicki Lewis': 'April Smuntz', 'Maury Chaykin': 'Alexander Falko', 'Eric Christmas': \"\"Ernie and Lars' Lawyer\"\", 'Michael Jeter': 'Quincy Thorpe', 'Debra Christofferson': 'Ingrid', 'Camilla Søeberg': 'Hilde, the Bench Lady       (as Camilla Soeberg)', 'Ian Abercrombie': 'Auctioneer', 'Annabelle Gurwitch': 'Roxanne Atkins', 'Eric Poppick': 'The Banker', 'Ernie Sabella': 'Maury, the Cat Care Society Owner', 'William Hickey': 'Rudolph Smuntz', 'Christopher Walken': 'Caeser, the Exterminator', 'Cliff Emmich': 'Mayor McKrinle'}\"\r\ntt0119717,\"{'Eric Stoltz': 'Lester Grimm, aka Vince', 'Annabella Sciorra': 'Ramona Ray', 'Chris Eigeman': 'Dashiell Frank', 'Carlos Jacott': 'Vince, aka Leo', 'Marianne Jean-Baptiste': 'Lucretia', 'Brian Kerwin': 'Stephen', 'John Lehr': 'Lint', 'Peter Bogdanovich': 'Dr. Howard Poke', 'Vincent Polidoro': 'Young Lester Grimm', 'Yvette Brooks Grant': 'Paulina', 'Jose Soto': 'Club Promoter', 'Delaine Yates': 'Ariana', 'Nico Baumbach': 'Ex-Boyfriend', 'Joel Kastelberg': 'Curt       (as Joel Castleberg)', 'Dean Wareham': 'Music Video Director'}\"\r\ntt0093605,\"{'Adrian Pasdar': 'Caleb Colton', 'Jenny Wright': 'Mae', 'Lance Henriksen': 'Jesse Hooker', 'Bill Paxton': 'Severen', 'Jenette Goldstein': 'Diamondback', 'Tim Thomerson': 'Loy Colton', 'Joshua John Miller': 'Homer       (as Joshua Miller)', 'Marcie Leeds': 'Sarah Colton', 'Kenny Call': 'Deputy Sheriff', 'Ed Corbett': 'Ticket Seller', 'Troy Evans': 'Plainclothes Officer', 'Bill Cross': 'Sheriff Eakers', 'Roger Aaron Brown': 'Cajun Truck Driver', 'Thomas Wagner': 'Bartender', 'Robert Winley': 'Patron in Bar'}\"\r\ntt0396171,\"{'Ben Whishaw': 'Jean-Baptiste Grenouille', 'Francesc Albiol': 'Court Official', 'Gonzalo Cunill': 'Guard 1 Dungeon', 'Roger Salvany': 'Guard 2 Dungeon', 'Andrés Herrera': 'Door Guard', 'Simon Chandler': 'Mayor of Grasse', 'David Calder': 'Bishop of Grasse', 'Richard Felix': 'Chief Magistrate', 'Birgit Minichmayr': \"\"Grenouille's Mother\"\", 'Reg Wilson': 'Customer Fishmarket', 'Catherine Boisgontier': 'Woman Fishmarket', 'Núria Casas': 'Woman 2 Fishmarket', 'Carlos Gramaje': 'Police Lieutenant Fishmarket', 'Sian Thomas': 'Madame Gaillard', 'Michael Smiley': 'Porter'}\"\r\ntt0322659,\"{'James Woods': \"\"Walter O'Brien\"\", 'Nick Nolte': 'Father Harlan', 'Douglas Sebern': 'Mayor', 'Claire Forlani': 'Mrs. Hadfield', 'Duel Farnes': 'Irwin', 'Mark Polish': \"\"Willis O'Brien\"\", 'Daryl Hannah': 'Flower Hercules', 'Graham Beckel': 'Marvin', 'Josh Barker': 'Matt       (as Joshuin Barker)', 'Peter Coyote': 'Eddie', 'Jon Gries': 'Arnold', 'Rick Overton': 'Rudolph', 'Robin Sachs': 'Cup of Tea', 'Ben Foster': 'Cod', 'Anthony Edwards': 'Happy'}\"\r\ntt0073190,\"{'Kirk Douglas': 'Mike Wayne', 'Alexis Smith': 'Deidre Milford Granger', 'David Janssen': 'Tom Colt', 'George Hamilton': 'David Milford', 'Melina Mercouri': 'Karla', 'Gary Conway': 'Hugh', 'Brenda Vaccaro': 'Linda', 'Deborah Raffin': 'January', 'Lillian Randolph': 'Mabel', 'Renata Vanni': 'Maria', 'Mark Roberts': 'Rheingold', 'John Roper': 'Franco', 'Leonard Sachs': 'Dr. Peterson', 'Jim Boles': 'Scotty', 'Ann Marie Moelders': 'Girl at El Morocco'}\"\r\ntt0120784,\"{'Mel Gibson': 'Porter', 'Gregg Henry': 'Val Resnick', 'Maria Bello': 'Rosie', 'David Paymer': 'Arthur Stegman', 'Bill Duke': 'Det. Hicks', 'Deborah Kara Unger': 'Mrs. Lynn Porter', 'John Glover': 'Phil', 'William Devane': 'Carter', 'Lucy Liu': 'Pearl       (as Lucy Alexis Liu)', 'Jack Conley': 'Det. Leary', 'Kris Kristofferson': 'Bronson', 'Mark Alfa': \"\"Johnny's Friend #2\"\", 'Kwame Amoaku': 'Radioman', 'Justin Ashforth': 'Michael, Bartender #1', 'Len Bajenski': 'Fairfax Bodyguard #1'}\"\r\ntt0067589,\"{'Walter Matthau': 'Roy Hubley /              Jesse Kiplinger /              Sam Nash', 'Lee Grant': 'Norma Hubley', 'Barbara Harris': 'Muriel Tate', 'Maureen Stapleton': 'Karen Nash', 'Louise Sorel': 'Jean McCormack', 'Dan Ferrone': 'Bellboy', 'José Ocasio': 'Room Service Waiter       (as Jose Ocasio)', 'Thomas Carey': 'Borden Eisler', 'Jenny Sullivan': 'Mimsey Hubley', 'Augusta Dabney': 'Mrs. Eisler', 'Alan North': 'Mr. Eisler'}\"\r\ntt0078111,\"{'Brooke Shields': 'Violet', 'Keith Carradine': 'Bellocq', 'Susan Sarandon': 'Hattie', 'Frances Faye': 'Nell', 'Antonio Fargas': 'Professor', 'Matthew Anton': 'Red Top', 'Diana Scarwid': 'Frieda', 'Barbara Steele': 'Josephine', 'Seret Scott': 'Flora', 'Cheryl Markowitz': 'Gussie', 'Susan Manskey': 'Fanny', 'Laura Zimmerman': 'Agnes', 'Miz Mary': 'Odette', 'Gerrit Graham': 'Highpockets', 'Mae Mercer': 'Mama Mosebery'}\"\r\ntt0462499,\"{'Sylvester Stallone': 'John Rambo', 'Julie Benz': 'Sarah', 'Matthew Marsden': 'School Boy', 'Graham McTavish': 'Lewis', 'Reynaldo Gallegos': 'Diaz       (as Rey Gallegos)', 'Jake La Botz': 'Reese', 'Tim Kang': 'En-Joo', 'Maung Maung Khin': 'Tint', 'Paul Schulze': 'Michael Burnett', 'Cameron Pearson': 'Missionary #4 (Jeff)', 'Thomas Peterson': 'Missionary #2 (Dentist)', 'Tony Skarberg': 'Missionary #3 (Videographer)', 'James With': 'Missionary #5 (Preacher)       (as James Wearing Smith)', 'Kasikorn Niyompattana': 'Snake Hunter #2', \"\"Shaliew 'Lek' Bamrungbun\"\": 'Snake Hunter #1'}\"\r\ntt0180093,\"{'Ellen Burstyn': 'Sara Goldfarb', 'Jared Leto': 'Harry Goldfarb', 'Jennifer Connelly': 'Marion Silver', 'Marlon Wayans': 'Tyrone C. Love', 'Christopher McDonald': 'Tappy Tibbons', 'Louise Lasser': 'Ada', 'Marcia Jean Kurtz': 'Rae', 'Janet Sarno': 'Mrs. Pearlman', 'Suzanne Shepherd': 'Mrs. Scarlini', 'Joanne Gordon': 'Mrs. Ovadia', 'Charlotte Aronofsky': 'Mrs. Miles', 'Mark Margolis': 'Mr. Rabinowitz', 'Michael Kaycheck': 'Donut Cop       (as Mike Kaycheck)', \"\"Jack O'Connell\"\": 'Corn Dog Stand Boss', 'Chas Mastin': 'Lyle Russel'}\"\r\ntt0337711,\"{'Elizabeth Daily': 'Tommy Pickles       (voice) (as E.G. Daily)', 'Nancy Cartwright': 'Chuckie Finster       (voice)', 'Kath Soucie': 'Phil DeVille /              Lil DeVille /              Betty DeVille       (voice)', 'Dionne Quan': 'Kimi Finster       (voice)', 'Cheryl Chase': 'Angelica Pickles       (voice)', 'Tim Curry': 'Nigel Thornberry       (voice)', 'Joe Alaskey': 'Grandpa Lou Pickles       (voice)', 'Tress MacNeille': 'Charlotte Pickles       (voice)', 'Michael Bell': \"\"Drew Pickles /              Charles 'Chaz' Finster, Sr.       (voice)\"\", 'Melanie Chartoff': 'Didi Pickles       (voice)', 'Julia Kato': 'Kira Finster       (voice)', 'Phil Proctor': 'Howard DeVille       (voice)', 'Jack Riley': 'Stu Pickles       (voice)', 'Tara Strong': 'Dil Pickles       (voice)', 'Cree Summer': 'Susie Carmichael       (voice)'}\"\r\ntt0388395,\"{'Horst Krause': 'Schultze', 'Harald Warmbrunn': 'Jürgen', 'Karl-Fred Müller': 'Manfred', 'Ursula Schucht': \"\"Jürgen's Wife\"\", 'Hannelore Schubert': \"\"Manfred's Wife\"\", 'Erwin Meinicke': 'Skatspieler', 'Hans Hohmann': 'Skatspieler', 'Siegfried Zimmermann': 'Skatspieler', 'Maik Gustävel': 'Automaten-Monteur', 'Annegret Fritz': 'Wirtin', 'Wolfgang Boos': 'Gatekeeper', 'Werner Boche': 'Rasenpfleger', 'Dora Solter': 'Dame', 'Anna Spengler': 'Dame', 'Erika Kirchhof': 'Dame'}\"\r\ntt0046303,\"{'Alan Ladd': 'Shane', 'Jean Arthur': 'Marian Starrett', 'Van Heflin': 'Joe Starrett', 'Brandon De Wilde': 'Joey Starrett', 'Jack Palance': 'Jack Wilson       (as Walter Jack Palance)', 'Ben Johnson': 'Chris Calloway', 'Edgar Buchanan': 'Fred Lewis', 'Emile Meyer': 'Rufus Ryker', 'Elisha Cook Jr.': 'Stonewall Torrey', 'Douglas Spencer': \"\"Axel 'Swede' Shipstead\"\", 'John Dierkes': 'Morgan Ryker', 'Ellen Corby': 'Mrs. Liz Torrey', 'Paul McVey': 'Sam Grafton', 'John Miller': 'Will Atkey - Bartender', 'Edith Evanson': 'Mrs. Shipstead'}\"\r\ntt0454945,\"{'Amanda Bynes': 'Viola', 'Channing Tatum': 'Duke', 'Laura Ramsey': 'Olivia Lennox', 'Vinnie Jones': 'Dinklage', 'David Cross': 'Gold', 'Julie Hagerty': 'Daphne', 'Robert Hoffman': 'Justin', 'Alexandra Breckenridge': 'Monique       (as Alex Breckenridge)', 'Jonathan Sadowski': 'Paul', 'Amanda Crew': 'Kia', 'Jessica Lucas': 'Yvonne', 'Brandon Jay McLaren': 'Toby', 'Clifton MaCabe Murray': 'Andrew       (as Clifton Murray)', 'James Snyder': 'Malcolm', 'James Kirk': 'Sebastian'}\"\r\ntt0184907,\"{'Chris Elliott': 'Snowplowman', 'Mark Webber': 'Hal Brandston', 'Jean Smart': 'Laura Brandston', 'Schuyler Fisk': 'Lane Leonard', 'Iggy Pop': 'Mr. Zellweger', 'Pam Grier': 'Tina', 'John Schneider': 'Chad Symmonz', 'Chevy Chase': 'Tom Brandston', 'Zena Grey': 'Natalie Brandston', 'Josh Peck': 'Wayne Alworth', 'Jade Yorker': 'Chet Felker', 'Damian Young': 'Principal Weaver', 'Connor Matheus': 'Randy Brandston', 'J. Adam Brown': 'Bill Korn', 'Emmanuelle Chriqui': 'Claire Bonner'}\"\r\ntt0040823,\"{'Barbara Stanwyck': 'Leona Stevenson', 'Burt Lancaster': 'Henry J. Stevenson', 'Ann Richards': 'Sally Hunt Lord', 'Wendell Corey': 'Dr. Philip Alexander', 'Harold Vermilyea': 'Waldo Evans', 'Ed Begley': \"\"James 'J.B.' Cotterell\"\", 'Leif Erickson': 'Fred Lord', 'William Conrad': 'Morano', 'John Bromfield': 'Joe - Detective', 'Jimmy Hunt': 'Peter Lord', 'Dorothy Neumann': 'Elizabeth Jennings', 'Paul Fierro': 'Harpootlian'}\"\r\ntt0489281,\"{'Ryan Phillippe': 'Brandon King', 'Joseph Gordon-Levitt': 'Tommy Burgess', 'Rob Brown': \"\"Isaac 'Eyeball' Butler\"\", 'Channing Tatum': 'Steve Shriver', 'Victor Rasuk': 'Rico Rodriguez', 'Quay Terry': \"\"Al 'Preacher' Colson\"\", 'Matthew Scott Wilcox': 'Harvey', 'Connett Brewer': 'Curtis       (as Connett M. Brewer)', 'Timothy Olyphant': 'Lt. Col. Boot Miller', 'Josef Sommer': 'Senator Orton Worrell', 'Linda Emond': 'Ida King', 'Ciarán Hinds': 'Roy King', 'Mamie Gummer': 'Jeanie', 'Abbie Cornish': 'Michelle', 'Alex Frost': 'Shorty'}\"\r\ntt0117731,\"{'Patrick Stewart': 'Picard', 'Jonathan Frakes': 'Riker', 'Brent Spiner': 'Data', 'LeVar Burton': 'Geordi       (as Levar Burton)', 'Michael Dorn': 'Worf', 'Gates McFadden': 'Beverly', 'Marina Sirtis': 'Troi', 'Alfre Woodard': 'Lily', 'James Cromwell': 'Zefram Cochran', 'Alice Krige': 'Borg Queen', 'Michael Horton': 'Security Officer', 'Neal McDonough': 'Lt. Hawk', 'Marnie McPhail': 'Eiger', 'Robert Picardo': 'Holographic Doctor', 'Dwight Schultz': 'Lt. Barclay'}\"\r\ntt0094072,\"{'Mark Harmon': 'Freddy Shoop', 'Kirstie Alley': 'Ms. Robin Elizabeth Bishop', 'Robin Thomas': 'Vice Principal Phil Gills', 'Patrick Labyorteaux': 'Kevin Winchester', 'Courtney Thorne-Smith': 'Pam House', 'Dean Cameron': \"\"Francis 'Chainsaw' Gremp\"\", 'Gary Riley': 'Dave Frazier', 'Kelly Jo Minter': 'Denise Green       (as Kelly Minter)', 'Ken Olandt': 'Larry Kazamias', 'Shawnee Smith': 'Rhonda Altobello', 'Richard Steven Horvitz': 'Alan Eakian', 'Fabiana Udenio': 'Anna-Maria Mazarelli', 'Francis X. McCarthy': 'Principal Kelban       (as Frank McCarthy)', 'Tom Troupe': 'Judge', 'Lucy Lee Flippin': 'Substitute Teacher - Ms. Cura'}\"\r\ntt0324127,\"{'Aaron Eckhart': 'Thomas Mackelway', 'Ben Kingsley': \"\"Benjamin O'Ryan\"\", 'Carrie-Anne Moss': 'Fran Kulok', 'Harry Lennix': 'Rich Charleton', 'Kevin Chamberlin': 'Harold Speck', 'Julian Reyes': 'Highway Patrolman', 'Keith Campbell': 'Raymond Starkey', 'Chloe Russell': 'Loretta', 'Ellen Blake': 'Dolly', 'William B. Johnson': 'Mel', 'Jerry Gardner': 'Sheriff Harry Dylan', 'Daniel Patrick Moriarty': 'Bud Granger', 'Curtis Plagge': 'Jumbo', 'Nicole DeHuff': 'Katie Potter', 'William Mapother': 'Bill Grieves'}\"\r\ntt0115571,\"{'Charlie Sheen': 'Zane Zaminsky', 'Lindsay Crouse': 'Ilana Green', 'Richard Schiff': 'Calvin', 'Shane': 'JPL Guard #1', 'Ron Silver': 'Phil Gordian /              Mexican Guard', 'Teri Polo': 'Char', 'Phyllis Applegate': 'Mrs. Roosevelt', 'Alan Coates': 'Terraformer', 'Leon Rippy': 'DOD #1', 'Buddy Joe Hooker': 'DOD #2', 'Javier Morga': 'Co-worker', 'Tony T. Johnson': 'Kiki', 'Catalina Botello': 'N.C.A.R. Woman', 'Georg Lillitsch': 'Computer Tech', 'David Villalpando': 'Cabbie'}\"\r\ntt0185937,\"{'Heather Donahue': 'Heather Donahue', 'Joshua Leonard': \"\"Joshua 'Josh' Leonard\"\", 'Michael C. Williams': \"\"Michael 'Mike' Williams       (as Michael Williams)\"\", 'Bob Griffin': 'Short Fisherman', 'Jim King': 'Interviewee', 'Sandra Sánchez': 'Waitress       (as Sandra Sanchez)', 'Ed Swanson': 'Fisherman With Glasses', 'Patricia DeCou': 'Mary Brown', 'Mark Mason': 'Man in Yellow Hat', 'Susie Gooch': 'Interviewee with Child       (as Jackie Hallex)'}\"\r\ntt0064045,\"{'Oliver Reed': 'Ivan Dragomiloff', 'Diana Rigg': 'Sonya Winter', 'Telly Savalas': 'Lord Bostwick', 'Curd Jürgens': 'Gen. von Pinck       (as Curt Jurgens)', 'Philippe Noiret': 'Monsieur Lucoville', 'Warren Mitchell': 'Herr Weiss', 'Beryl Reid': 'Madame Otero', 'Clive Revill': 'Cesare Spado', 'Vernon Dobtcheff': 'Baron Muntzof', 'Annabella Incontrera': 'Eleanora Spado', 'Kenneth Griffith': 'Monsieur Popescu', 'Jess Conrad': 'Angelo', 'George Coulouris': 'Swiss Peasant', 'Katherine Kath': 'Mme. Lucoville', 'Olaf Pooley': 'Swiss Cashier'}\"\r\ntt0321442,\"{'Jon Favreau': 'John Person', 'Joey Lauren Adams': 'Grace', 'Bud Cort': 'Neely', 'Jon Gries': 'Elron', 'Daryl Hannah': 'Stella', 'Adam Beach': 'Randy', 'Gary Farmer': 'Indian Bob', 'Rachael Leigh Cook': 'Ruthie', 'Brent Briscoe': 'Dan', 'Melora Walters': 'Candy', 'Kelsey Grammer': 'Agent Banks', 'Sean Bean': 'Cowboy', 'Alejandra Aguilan': 'Traveler', 'Jay Brothers': 'Traveler', 'Sara Fouts': 'Traveler'}\"\r\ntt0109340,\"{'Albert Finney': 'Andrew Crocker-Harris', 'Greta Scacchi': 'Laura Crocker-Harris', 'Matthew Modine': 'Frank Hunter', 'Julian Sands': 'Tom Gilbert', 'Michael Gambon': 'Dr. Frobisher', 'Ben Silverstone': 'Taplow', 'Jim Sturgess': 'Bryant       (as James Sturgess)', 'Joseph Beattie': 'Wilson', 'Mark Bolton': 'Grantham', 'Tom Havelock': 'Laughton', 'Walter Micklethwait': 'Buller', 'Jotham Annan': 'Prince Abakendi', 'David Lever': 'David Fletcher', 'Bruce Myers': 'Dr. Rafferty', \"\"Maryam d'Abo\"\": 'Diana'}\"\r\ntt0051436,\"{'Yul Brynner': 'Jean Lafitte', 'Claire Bloom': 'Bonnie Brown', 'Charles Boyer': 'Dominique You', 'Inger Stevens': 'Annette Claiborne', 'Henry Hull': 'Ezra Peavey', 'E.G. Marshall': 'Gov. William Claiborne', 'Charlton Heston': 'Gen. Andrew Jackson', 'Lorne Greene': 'Mercier', 'Ted de Corsia': 'Capt. Rumbo', 'Douglass Dumbrille': 'Collector of the Port', 'Robert F. Simon': 'Capt. Brown', 'Sir Lancelot': 'Scipio', 'Fran Jeffries': 'Cariba - Mawbee Girl', 'John Dierkes': 'Deacon', 'Ken Miller': 'Young Sentry'}\"\r\ntt0101523,\"{'Demi Moore': 'Marina Lemke', 'Jeff Daniels': 'Dr. Alex Tremor', 'George Dzundza': 'Leo Lemke', 'Mary Steenburgen': 'Stella Keefover', 'Frances McDormand': 'Grace', 'Margaret Colin': 'Robyn Graves', 'Max Perlich': 'Eugene', 'Miriam Margolyes': 'Gina', 'Helen Hanft': 'Molly', 'Christopher Durang': 'Mr. Liddle', 'Luis Avalos': 'Luis', 'Charles Pierce': 'Beau', 'Elizabeth Lawrence': \"\"Grammy D'Arbo\"\", 'Stephanie Laurence': 'Choir Student', 'Barry Neikrug': 'Bicyclist'}\"\r\ntt0298814,\"{'Christopher Shyer': 'Dave Perry', 'Ray Galletti': 'Paul', 'Eileen Pedde': 'Lynne', 'Rekha Sharma': 'Danni       (as Rékha Sharma)', 'Tom Scholte': 'Acker', 'Aaron Eckhart': 'Josh', 'Glenn Morshower': 'FBI Agent', 'Anthony Harrison': 'FBI Agent', 'Tchéky Karyo': 'Serge       (as Tcheky Karyo)', 'Richard Jenkins': 'General Purcell', 'Bart Anderson': 'Dad', 'Nicole Leroux': 'Mom', 'Justin Callan': 'Little Boy', 'Chris Humphreys': 'GBTV Reporter - Trafalgar Square', 'Hilary Swank': 'Beck'}\"\r\ntt0435625,\"{'Shauna Macdonald': 'Sarah', 'Natalie Mendoza': 'Juno', 'Alex Reid': 'Beth', 'Saskia Mulder': 'Rebecca', 'MyAnna Buring': 'Sam', 'Nora-Jane Noone': 'Holly', 'Oliver Milburn': 'Paul', 'Molly Kayll': 'Jessica', 'Craig Conway': 'Crawler - Scar', 'Leslie Simpson': 'Crawler', 'Mark Cronfield': 'Crawler', 'Stephen Lamb': 'Crawler       (as Steve Lamb)', 'Catherine Dyson': 'Crawler', 'Julie Ellis': 'Crawler', 'Sophie Trott': 'Crawler'}\"\r\ntt0116240,\"{'Shirley MacLaine': 'Aurora Greenway', 'Bill Paxton': 'Jerry Bruckner', 'Juliette Lewis': 'Melanie Horton', 'Miranda Richardson': 'Patsy Carpenter', 'Ben Johnson': 'Arthur Cotton', 'Scott Wolf': 'Bruce', 'George Newbern': 'Tommy Horton', 'Marion Ross': 'Rosie Dunlop', 'Mackenzie Astin': 'Teddy Horton', 'Donald Moffat': 'Hector Scott', 'Jennifer Grant': 'Ellen', 'China Kantner': 'Jane', 'Jack Nicholson': 'Garrett Breedlove', 'Shawn Taylor Thompson': 'Bump', 'Jake Langerud': 'Henry'}\"\r\ntt1320253,\"{'Sylvester Stallone': 'Barney Ross', 'Jason Statham': 'Lee Christmas', 'Jet Li': 'Yin Yang', 'Dolph Lundgren': 'Gunner Jensen', 'Eric Roberts': 'James Munroe', 'Randy Couture': 'Toll Road', 'Steve Austin': 'Paine', 'David Zayas': 'General Garza', 'Giselle Itié': 'Sandra', 'Charisma Carpenter': 'Lacy', 'Gary Daniels': 'The Brit', 'Terry Crews': 'Hale Caesar', 'Mickey Rourke': 'Tool', 'Hank Amos': 'Paul', 'Amin Joseph': 'Pirate Leader'}\"\r\ntt0093075,\"{'Stephen Dorff': 'Glen', 'Christa Denton': 'Al', 'Louis Tripp': \"\"Terrence 'Terry' Chandler\"\", 'Kelly Rowan': 'Lori Lee', 'Jennifer Irwin': 'Linda Lee', 'Deborah Grover': 'Mom', 'Scot Denton': 'Dad', 'Ingrid Veninger': 'Paula', 'Sean Fagan': 'Eric', 'Linda Goranson': \"\"Terry's Mom\"\", 'Carl Kraines': 'Workman', 'Andrew Gunn': 'Brad'}\"\r\ntt0219699,\"{'Cate Blanchett': 'Annie Wilson', 'Giovanni Ribisi': 'Buddy Cole', 'Keanu Reeves': 'Donnie Barksdale', 'Katie Holmes': 'Jessica King', 'Greg Kinnear': 'Wayne Collins', 'Hilary Swank': 'Valerie Barksdale', 'Michael Jeter': 'Gerald Weems', 'Kim Dickens': 'Linda', 'Gary Cole': 'David Duncan', 'Rosemary Harris': \"\"Annie's Granny\"\", 'J.K. Simmons': 'Sheriff Pearl Johnson', 'Chelcie Ross': 'Kenneth King', 'John Beasley': 'Albert Hawkins', 'Lynnsee Provence': 'Mike Wilson', 'Hunter McGilvray': 'Miller Wilson'}\"\r\ntt0064505,\"{'Michael Caine': 'Charlie Croker', 'Noël Coward': 'Mr. Bridger', 'Benny Hill': 'Professor Simon Peach', 'Raf Vallone': 'Altabani', 'Tony Beckley': 'Freddie', 'Rossano Brazzi': 'Beckerman', 'Margaret Blye': 'Lorna       (as Maggie Blye)', 'Irene Handl': 'Miss Peach', 'John Le Mesurier': 'Governor', 'Fred Emney': 'Birkinshaw', 'John Clive': 'Garage Manager', 'Graham Payn': 'Keats', 'Michael Standing': 'Arthur', 'Stanley Caine': 'Coco', 'Barry Cox': 'Chris'}\"\r\ntt0074777,\"{'Robert De Niro': 'Monroe Stahr', 'Tony Curtis': 'Rodriguez', 'Robert Mitchum': 'Pat Brady', 'Jeanne Moreau': 'Didi', 'Jack Nicholson': 'Brimmer', 'Donald Pleasence': 'Boxley', 'Ray Milland': 'Fleishacker', 'Dana Andrews': 'Red Ridingwood', 'Ingrid Boulting': 'Kathleen Moore', 'Peter Strauss': 'Wylie', 'Theresa Russell': 'Cecilia Brady', 'Tige Andrews': 'Popolos', 'Morgan Farley': 'Marcus', 'John Carradine': 'Tour Guide', 'Jeff Corey': 'Doctor'}\"\r\ntt0385057,\"{'Chris Klein': 'Cooper', 'Brendan Fehr': 'Ed Waxman', 'Chandra West': 'Kim', 'Craig Fairbrass': 'Frank', 'Paul Campbell': 'Roger', 'Cobie Smulders': 'Ellen', 'Andy Thompson': 'Officer Garcia', 'Nicole McKay': 'Cathy', 'Alejandro Rae': 'Jack', 'Roger Haskett': \"\"Ed's Father\"\", 'Stephen Park': 'Doctor', 'J. Douglas Stewart': 'Doctor #2', 'Chelan Simmons': 'Susie', 'Charles Andrew Payne': 'Cop #1       (as Charles Payne)', 'Will Sanderson': 'Cop #2'}\"\r\ntt0380510,\"{'Mark Wahlberg': 'Jack Salmon', 'Rachel Weisz': 'Abigail Salmon', 'Susan Sarandon': 'Grandma Lynn', 'Stanley Tucci': 'George Harvey', 'Michael Imperioli': 'Len Fenerman', 'Saoirse Ronan': 'Susie Salmon', 'Rose McIver': 'Lindsey Salmon', 'Christian Ashdale': 'Buckley Salmon', 'Reece Ritchie': 'Ray Singh', 'Carolyn Dando': 'Ruth Connors', 'Nikki SooHoo': 'Holly       (as Nikki Soohoo)', 'Andrew James Allen': 'Samuel Heckler', 'Jake Abel': 'Brian Nelson', 'AJ Michalka': 'Clarissa', 'Tom McCarthy': 'Principal Caden'}\"\r\ntt0071970,\"{'Warren Beatty': 'Joseph Frady', 'Paula Prentiss': 'Lee Carter', 'William Daniels': 'Austin Tucker', 'Walter McGinn': 'Jack Younger', 'Hume Cronyn': 'Bill Rintels', 'Kelly Thordsen': 'Sheriff L.D. Wicker', 'Chuck Waters': 'Thomas Richard Linder', 'Earl Hindman': 'Deputy Red', 'William Joyce': 'Senator Charles Carroll       (as Bill Joyce)', 'Betty Murray': 'Mrs. Charles Carroll       (as Bettie Johnson)', 'Bill McKinney': 'Parallax Assassin', 'Jo Ann Harris': \"\"Chrissy - Frady's Girl       (as JoAnne Harris)\"\", 'Ted Gehring': 'Schecter - Hotel Clerk', 'Lee Pulford': 'Shirley - Salmontail Bar Girl', 'Doria Cook-Nelson': 'Gale from Salmontail       (as Doria Cook)'}\"\r\ntt0314498,\"{'Erika Christensen': 'Anna', 'Chris Evans': 'Kyle', 'Bryan Greenberg': 'Matty Matthews', 'Scarlett Johansson': 'Francesca', 'Darius Miles': 'Desmond', 'Leonardo Nam': 'Roy', 'Tyra Ferrell': \"\"Desmond's Mother\"\", 'Matthew Lillard': 'Larry', 'Vanessa Angel': 'Anita Donlee', 'Bill Mackenzie': 'Lobby Guard', 'Dan Zukovic': 'Mr. G', 'Iris Quinn': \"\"Kyle's Mother\"\", 'Lorena Gale': 'Proctor', 'Patricia Idlette': 'Receptionist', 'Lynda Boyd': \"\"Anna's Mother\"\"}\"\r\ntt1129442,\"{'Jason Statham': 'Frank Martin', 'Natalya Rudakova': 'Valentina', 'François Berléand': 'Tarconi', 'Robert Knepper': 'Johnson', 'Jeroen Krabbé': 'Leonid Vasilev', 'Alex Kobold': \"\"Leonid's Aide\"\", 'David Atrakchi': 'Malcom Manville', 'Yann Sundberg': 'Flag', 'Eriq Ebouaney': 'Ice', 'David Kammenos': 'Driver Market', 'Silvio Simac': 'Mighty Joe', 'Oscar Relier': 'Thug /              Driver', 'Timo Dierkes': 'Otto', 'Igor Koumpan': 'Cop Ukraine', 'Paul Barrett': 'Captain'}\"\r\ntt0227445,\"{'Robert De Niro': 'Nick', 'Edward Norton': 'Jack /              Brian', 'Marlon Brando': 'Max', 'Angela Bassett': 'Diane', 'Gary Farmer': 'Burt', 'Paul Soles': 'Danny', 'Jamie Harrold': 'Steven', 'Serge Houde': 'Laurent', 'Jean-René Ouellet': 'André       (as Jean Rene Ouellet)', 'Martin Drainville': 'Jean-Claude', 'Claude Despins': 'Albert', 'Richard Waugh': 'Sapperstein', 'Mark Camacho': \"\"Sapperstein's Cousin\"\", 'Marie-Josée Colburn': \"\"Woman in Study       (as Marie-Josee D'Amours)\"\", 'Gavin Svensson': 'Man in Study'}\"\r\ntt0095897,\"{'Sean Connery': 'Lt. Col. Alan Caldwell', 'Mark Harmon': 'Jay Austin', 'Meg Ryan': 'Donna Caldwell', 'Jack Warden': 'Sgt. Maj. Ross Maclure', 'Mark Blum': 'Arthur Peale', 'Dana Gladstone': 'Col. Paul Lawrence', 'Jenette Goldstein': 'Patti Jean Lynch', 'Marvin J. McIntyre': 'MP Zeke', 'Don Calfa': 'Howard Buckely', 'John DiSanti': 'Det. Marvin Powell', 'Robert Lesser': 'Sgt. Mueller', 'James Hooks Reynolds': 'George Spota', 'Curtis W. Sims': 'Sgt. Garfield', 'Rick Zumwalt': 'Bully in Bar', 'Rosalyn Marshall': \"\"Lawrence's Secretary\"\"}\"\r\ntt0337697,\"{'Julia Stiles': 'Paige Morgan', 'Luke Mably': 'Eddie', 'Ben Miller': 'Soren', 'Miranda Richardson': 'Queen Rosalind', 'James Fox': 'King Haraald', 'Alberta Watson': 'Amy Morgan', 'John Bourgeois': 'Ben Morgan', 'Zachary Knighton': 'John Morgan', \"\"Stephen O'Reilly\"\": \"\"Mike Morgan       (as Steve O'Reilly)\"\", 'Elisabeth Waterston': 'Beth Curtis', 'Eliza Bennett': 'Princess Arabella', 'Devin Ratray': 'Scotty', 'Clare Preuss': 'Stacey', 'Yaani King Mondschein': 'Amanda       (as Yaani King)', 'Eddie Irvine': 'Himself'}\"\r\ntt0268695,\"{'Guy Pearce': 'Alexander Hartdegen', 'Mark Addy': 'David Philby', 'Phyllida Law': 'Mrs. Watchit', 'Sienna Guillory': 'Emma', 'Laura Kirk': 'Flower Seller', 'Josh Stamberg': 'Motorist', 'John W. Momrow': 'Fifth Avenue Carriage Driver', 'Max Baker': 'Robber', 'Jeffrey M. Meyer': 'Central Park Carriage Driver', 'Jeremy Irons': 'Über-Morlock', 'Alan Young': 'Flower Store Worker', 'Myndy Crist': 'Jogger', 'Connie Ray': 'Teacher', 'Orlando Jones': 'Vox', 'Lennie Loftin': 'Soldier #1'}\"\r\ntt0290095,\"{'Jackie Chan': 'Jimmy Tong', 'Jennifer Love Hewitt': 'Del Blaine', 'Jason Isaacs': 'Clark Devlin', 'Debi Mazar': 'Steena', 'Ritchie Coster': 'Dietrich Banning', 'Peter Stormare': 'Dr. Simms', 'Mia Cottet': 'Cheryl', 'Romany Malco': 'Mitch', 'Daniel Kash': 'Rogers', 'Jody Racicot': 'Kells', 'Boyd Banks': 'Vic', 'Scott Wickware': 'CSA Agent Wallace', 'Christian Potenza': 'CSA Agent Joel', 'Karen Glave': 'CSA Agent Randa', 'Scott Yaphe': 'CSA Agent Gabe'}\"\r\ntt0301976,\"{'Don Cheadle': 'Pearl Madison', 'Ryan Gosling': 'Leland P. Fitzgerald', 'Chris Klein': 'Allen Harris', 'Jena Malone': 'Becky Pollard', 'Lena Olin': 'Marybeth Fitzgerald', 'Kevin Spacey': 'Albert T. Fitzgerald', 'Michelle Williams': 'Julie Pollard', 'Martin Donovan': 'Harry Pollard', 'Ann Magnuson': 'Karen Pollard', 'Kerry Washington': 'Ayesha', 'Sherilyn Fenn': 'Mrs. Calderon', 'Matt Malloy': 'Charlie', 'Wesley Jonathan': 'Bengel', 'Michael Peña': 'Guillermo', 'Michael Welch': 'Ryan Pollard'}\"\r\ntt0159097,\"{'James Woods': 'Mr. Lisbon', 'Kathleen Turner': 'Mrs. Lisbon', 'Kirsten Dunst': 'Lux Lisbon', 'Josh Hartnett': 'Trip Fontaine', 'Michael Paré': 'Adult Trip Fontaine       (as Michael Pare)', 'Scott Glenn': 'Father Moody', 'Danny DeVito': 'Dr. Horniker', 'A.J. Cook': 'Mary Lisbon', 'Hanna Hall': 'Cecilia Lisbon', 'Leslie Hayman': 'Therese Lisbon', 'Chelse Swain': 'Bonnie Lisbon', 'Anthony DeSimone': 'Chase Buell       (as Anthony Desimone)', 'Lee Kagan': 'David Barker', 'Robert Schwartzman': 'Paul Baldino', 'FourTee': 'Parkie Denton       (as Noah Shebib)'}\"\r\ntt0282120,\"{'Lacey Chabert': 'Eliza Thornberry       (voice)', 'Tom Kane': 'Darwin       (voice)', 'Cree Summer': 'Phaedra (Elephant)       (voice)', 'Tim Curry': 'Nigel Thornberry /              Col. Radcliff Thornberry       (voice)', 'Lynn Redgrave': 'Cordelia Thornberry       (voice)', 'Jodi Carlisle': 'Marianne Thornberry       (voice)', 'Danielle Harris': 'Debbie Thornberry       (voice)', 'Flea': 'Donnie Thornberry       (voice)', 'Crystal Scales': 'Cheetah Cubs       (voice)', 'Kimberly Brooks': 'Tally (Cheetah Cub)       (voice)', 'Alfre Woodard': 'Akela (Cheetah Mother)       (voice)', 'Brock Peters': 'Jomo       (voice)', 'Melissa Greenspan': 'Sarah Wellington       (voice)', 'Alexandra Boyd': 'Victoria       (voice)', 'Moira Quirk': 'Jane       (voice)'}\"\r\ntt0161100,\"{'Elayn J. Taylor': \"\"Roland's Mother       (as Elayn Taylor)\"\", 'Omar Epps': 'Mike', 'Richard T. Jones': 'Slim', 'Sean Nelson': 'Young Mike', 'Duane Finley': 'Young Slim', 'Trent Cameron': 'Young Roland', 'Malinda Williams': 'Young Alicia', 'Patricia Belcher': 'Mrs. Hughes', 'Taye Diggs': 'Roland', 'Tamala Jones': 'Tanya', \"\"De'aundre Bonds\"\": \"\"Stacey       (as De'Aundre Bonds)\"\", 'Cynthia Martells': \"\"Mike's Mother\"\", 'Wyking Jones': 'Cashiers in Mini Mart', 'Geoffrey Blackshire': 'Cashiers in Mini Mart', 'Jascha Washington': \"\"Mike's Brother\"\"}\"\r\ntt0469623,\"{'Halle Berry': 'Audrey Burke', 'Benicio Del Toro': 'Jerry Sunborne', 'David Duchovny': 'Brian Burke', 'Alexis Llewellyn': 'Harper Burke', 'Micah Berry': 'Dory Burke', 'John Carroll Lynch': 'Howard Glassman', 'Alison Lohman': 'Kelly', 'Robin Weigert': 'Brenda', 'Omar Benson Miller': 'Neal', 'Paula Newsome': 'Diane', 'Sarah Dubrovsky': 'Spring', 'Maureen Thomas': 'Grandma Ginnie Burke', 'Patricia Harras': \"\"Howard's Wife\"\", 'V.J. Foster': 'Distressed Man       (as VJ Foster)', 'Caroline Field': 'Teresa Haddock       (as Carolyn Field)'}\"\r\ntt0300556,\"{'Paul Walker': 'Chris Johnston', \"\"Frances O'Connor\"\": 'Kate Ericson', 'Gerard Butler': 'Andre Marek', 'Billy Connolly': 'Professor Johnston', 'David Thewlis': 'Robert Doniger', 'Anna Friel': 'Lady Claire', 'Neal McDonough': 'Frank Gordon', 'Matt Craven': 'Steven Kramer', 'Ethan Embry': 'Josh Stern', 'Michael Sheen': 'Lord Oliver', 'Lambert Wilson': 'Lord Arnaut', 'Marton Csokas': 'Sir William De Kere /              William Decker', 'Rossif Sutherland': 'François Dontelle', 'Steve Kahan': 'Baker', 'David La Haye': \"\"Arnaut's Deputy\"\"}\"\r\ntt0139699,\"{'James Van Der Beek': 'Mox', 'Jon Voight': 'Coach Kilmer', 'Paul Walker': 'Lance Harbor', 'Ron Lester': 'Billy Bob', 'Scott Caan': 'Tweeter', 'Richard Lineback': 'Joe Harbor', 'Tiffany C. Love': 'Collette Harbor', 'Amy Smart': 'Julie Harbor', 'Eliel Swinton': 'Wendell', 'Thomas F. Duffy': 'Sam Moxon       (as Thomas Duffy)', 'Jill Parker-Jones': 'Mo Moxon       (as Jill Parker Jones)', 'Joe Pichler': 'Kyle Moxon', 'Mark Walters': 'Chet McNurty', 'Brady Coleman': 'Sheriff Bigelow', 'James N. Harrell': 'Murray       (as James Harrell)'}\"\r\ntt0070895,\"{'Joe Don Baker': 'Buford Pusser', 'Elizabeth Hartman': 'Pauline', 'Leif Garrett': 'Mike', 'Dawn Lyn': 'Dwana', 'Noah Beery Jr.': 'Grandpa       (as Noah Beery)', 'Lurene Tuttle': 'Grandma', 'Ed Call': 'Lutie McVeigh', 'Dominick Mazzie': 'Bozo', 'Lynn Borden': 'Margie Ann', 'Brenda Benet': 'Luan Paxton       (as Brenda Benét)', 'Arch Johnson': 'Buel Jaggers', 'Russell Thorson': 'Ferrin Meaks', 'Gil Perkins': '1st Bouncer', 'Carey Loftin': 'Dice Player', 'Warner Venetz': 'Stickman'}\"\r\ntt0049934,\"{'Audrey Hepburn': 'Natasha Rostova', 'Henry Fonda': 'Pierre Bezukhov', 'Mel Ferrer': 'Prince Andrei Bolkonsky', 'Vittorio Gassman': 'Anatol Kuragin', 'Herbert Lom': 'Napoleon', 'Oskar Homolka': 'Field Marshal Kutuzov       (as Oscar Homolka)', 'Anita Ekberg': 'Helene Kuragina', 'Helmut Dantine': 'Dolokhov', 'Tullio Carminati': 'Prince Vasili Kuragin', 'Barry Jones': 'Prince Mikhail Andreevich Rostov', 'Milly Vitale': 'Lisa Bolkonskaya', 'Lea Seidl': 'Countess Rostov', 'Anna Maria Ferrero': 'Maria Bolkonskaya', 'Wilfrid Lawson': 'Prince Bolkonsky       (as Wilfred Lawson)', 'May Britt': 'Sonia Rostova'}\"\r\ntt0048801,\"{'Humphrey Bogart': 'Joseph', 'Aldo Ray': 'Albert', 'Peter Ustinov': 'Jules', 'Joan Bennett': 'Amelie Ducotel', 'Basil Rathbone': 'Andre Trochard', 'Leo G. Carroll': 'Felix Ducotel', 'John Baer': 'Paul Trochard', 'Gloria Talbott': 'Isabelle Ducotel', 'Lea Penman': 'Mme. Parole', 'John Smith': 'Medical Officer Arnaud'}\"\r\ntt0120524,\"{'Tammy Lauren': 'Alexandra Amberson', 'Andrew Divoff': 'The Djinn /              Nathaniel Demerest', 'Robert Englund': 'Raymond Beaumont', 'Chris Lemmon': 'Nick Merritt', 'Wendy Benson-Landes': 'Shannon Amberson       (as Wendy Benson)', 'Tony Crane': 'Josh Aickman', \"\"Jenny O'Hara\"\": 'Wendy Derleth', 'Kane Hodder': \"\"Merritt's Guard\"\", 'Tony Todd': 'Johnny Valentine', 'Ricco Ross': 'Lt. Nathanson', 'John Byner': 'Doug Clegg', \"\"George 'Buck' Flower\"\": 'Homeless Man       (as Buck Flower)', 'Gretchen Palmer': 'Ariella', 'Ted Raimi': 'Ed Finney', 'Angus Scrimm': 'Narrator       (voice)'}\"\r\ntt0477139,\"{'Will Arnett': 'Messiah', 'Abraham Benrubi': 'Erik', 'Leslie Bibb': 'Desiree', 'Mark Boone Junior': 'Mike       (as Mark Boone Jr.)', 'Cameron Bowen': 'Kostya', 'Clayne Crawford': 'Jim', 'Chase Ellison': 'Kid Kostya', 'Patrick Fugit': 'Zia', 'Adam Gifford': 'Gas Station Attendant       (as Adam G.)', 'Mary Pat Gleason': \"\"Eugene's Mother\"\", 'John Hawkes': 'Yan', 'Mikal P. Lazarev': 'Nanuk', 'Aaron Parker Mouser': 'Max       (as Aaron Mouser)', 'Nick Offerman': 'Cop', 'Anatol Rezmeritza': \"\"Eugene's Father\"\"}\"\r\ntt0096487,\"{'Emilio Estevez': 'William H. Bonney', 'Kiefer Sutherland': 'Doc Scurlock', 'Lou Diamond Phillips': 'Chavez y Chavez', 'Charlie Sheen': 'Dick Brewer', 'Dermot Mulroney': 'Dirty Steve Stephens', 'Casey Siemaszko': 'Charley Bowdre', 'Terence Stamp': 'John Tunstall', 'Jack Palance': 'L. G. Murphy', \"\"Terry O'Quinn\"\": 'Alex McSween', 'Sharon Thomas Cain': 'Susan McSween       (as Sharon Thomas)', 'Geoffrey Blake': 'J. McCloskey', 'Alice Carter': 'Yen Sun', 'Brian Keith': 'Buckshot Roberts', 'Thomas Callaway': 'Texas Joe Grant       (as Tom Callaway)', 'Patrick Wayne': 'Pat Garrett'}\"\r\ntt1186830,\"{'Rachel Weisz': 'Hypatia', 'Max Minghella': 'Davus', 'Oscar Isaac': 'Orestes', 'Ashraf Barhom': 'Ammonius', 'Michael Lonsdale': 'Theon', 'Rupert Evans': 'Synesius', 'Homayoun Ershadi': 'Aspasius', 'Sami Samir': 'Cyril       (as Sammy Samir)', 'Richard Durden': 'Olympius', 'Omar Mostafa': 'Isidorus', 'Manuel Cauchi': 'Theophilus', 'Oshri Cohen': 'Medorus', 'Charles Thake': 'Hesiquius', 'Harry Borg': 'Prefect Evragius', \"\"Yousef 'Joe' Sweid\"\": 'Peter       (as Yousef Sweid)'}\"\r\ntt1448755,\"{'Jason Statham': 'Danny', 'Clive Owen': 'Spike', 'Robert De Niro': 'Hunter', 'Dominic Purcell': 'Davies', 'Aden Young': 'Meier', 'Yvonne Strahovski': 'Anne', 'Ben Mendelsohn': 'Martin', 'Adewale Akinnuoye-Agbaje': 'Agent', 'David Whiteley': 'MI6 Man', 'Matt Nable': 'Pennock       (as Matthew Nable)', 'Lachy Hulme': 'Harris', 'Firass Dirani': 'Bakhait', 'Nick Tate': 'Commander B', 'Bille Brown': 'Colonel Fitz', 'Stewart Morritt': 'Campbell'}\"\r\ntt0893412,\"{'Camilla Belle': 'Nora Dominguez', 'Alexa PenaVega': 'Mary Dominguez       (as Alexa Vega)', 'Tina French': 'Old Librarian', 'Luis Rosales': 'Juanito', 'Pablo Martínez de Velasco': 'Pablo the Gardener', 'Alexis Ayala': 'Gabriel Dominguez Sr.', 'Norma Reyna': 'Carmina', 'Adriana Barraza': 'Aurelia Jimenez', 'Oliverio Gareli': 'Marco Antonio Ramirez', 'Catalina López': 'Trinita', 'José María Negri': 'Benjamin Kerensky', 'Mario Zaragoza': 'Federico', 'Pablo Cruz': 'Gabriel Dominguez Jr.', 'April Bowlby': 'Olivia', \"\"Nicholas D'Agosto\"\": 'Edward Ferris'}\"\r\ntt1189340,\"{'Matthew McConaughey': 'Mick Haller', 'Marisa Tomei': 'Maggie McPherson', 'Ryan Phillippe': 'Louis Roulet', 'William H. Macy': 'Frank Levin', 'Josh Lucas': 'Ted Minton', 'John Leguizamo': 'Val Valenzuela', 'Michael Peña': 'Jesus Martinez', 'Bob Gunton': 'Cecil Dobbs', 'Frances Fisher': 'Mary Windsor', 'Bryan Cranston': 'Detective Lankford', 'Trace Adkins': 'Eddie Vogel', 'Laurence Mason': 'Earl', 'Margarita Levieva': 'Reggie Campo', 'Pell James': 'Lorna', 'Shea Whigham': 'Corliss'}\"\r\ntt1600195,\"{'Jake Andolina': 'CIA Man', 'Oriah Acima Andrews': 'Riah', 'Ken Arnold': 'Thermal', 'Maria Bello': 'Mara', 'Steve Blass': 'Game Announcer', 'Derek Burnell': 'Hot Dog Vendor', 'Benjamin J. Cain Jr.': 'Driver       (as Ben Cain)', 'Holly Scott Cavanaugh': 'Mrs. Murphy', 'Radick Cembrzynski': \"\"Kozlow's Tech\"\", 'Richard Cetrone': 'Gregory', 'Mike Clark': 'News Reporter', 'Lily Collins': 'Karen', 'Jack Erdie': 'Short Sleeves', 'Rita Gregory': 'Nurse', 'Tim Griffin': 'Red Flannel'}\"\r\ntt0805619,\"{'Rob Lowe': 'Ted Cogan', 'Marnie McPhail': 'Molly Cogan', 'Ben Lewis': 'Max Cogan', 'Tatiana Maslany': 'Sammi', 'Shawn Roberts': 'Luke', 'Vik Sahay': 'Farzan', 'Colin Williams': 'Drexel', 'PJ Lazic': 'Nunez       (as P.J. Lazic)', 'Elias Zarou': 'Iraqi Officer', 'Nicholas Carella': 'Kablinsky', 'Cristine Prosperi': 'Iraqi Girl', 'Jason Mercury': 'Translator', 'Bill Lake': 'Colonel', 'Neil Crone': 'Gary', 'Katya Gardner': 'April'}\"\r\ntt0929632,\"{'Gabourey Sidibe': 'Precious', \"\"Mo'Nique\"\": 'Mary', 'Paula Patton': 'Ms. Rain', 'Mariah Carey': 'Ms. Weiss', 'Sherri Shepherd': 'Cornrows', 'Lenny Kravitz': 'Nurse John', 'Stephanie Andujar': 'Rita', 'Chyna Layne': 'Rhonda', 'Amina Robinson': 'Jermaine', 'Xosha Roquemore': 'Joann', 'Angelic Zambrana': 'Consuelo', 'Aunt Dot': 'Toosie', 'Nealla Gordon': 'Mrs. Lichtenstein', 'Grace Hightower': 'Socialworker', 'Barret Helms': 'Tom Cruise       (as Barret Isaiah Mindell)'}\"\r\ntt0082382,\"{'Walter Matthau': 'Dan Snow', 'Jill Clayburgh': 'Ruth Loomis', 'Barnard Hughes': 'Chief Justice James Jefferson Crawford', 'Jan Sterling': 'Christine Snow', 'James Stephens': 'Mason Woods', 'Joshua Bryant': 'Bill Russell', 'Wiley Harker': 'Justice Harold Webb', \"\"F.J. O'Neil\"\": 'Justice Waldo Thompson', 'Charles Lampkin': 'Justice Josiah Clewes', 'Lew Palter': 'Justice Benjamin Halperin', 'Richard McMurray': 'Justice Richard Carey', 'Herb Vigran': 'Justice Ambrose Quincy', 'Edmund Stoiber': 'Committee Chairman', 'Noble Willingham': 'Nebraska Attorney', 'Richard McKenzie': 'Hostile Senator'}\"\r\ntt0049096,\"{'Danny Kaye': 'Hubert Hawkins', 'Glynis Johns': 'Maid Jean', 'Basil Rathbone': 'Sir Ravenhurst', 'Angela Lansbury': 'Princess Gwendolyn', 'Cecil Parker': 'King Roderick I', 'Mildred Natwick': 'Griselda', 'Robert Middleton': 'Sir Griswold', 'Michael Pate': 'Sir Locksley', 'Herbert Rudley': 'Captain of the Guard', 'Noel Drayton': 'Fergus', 'John Carradine': 'Giacomo', 'Edward Ashley': 'Black Fox', 'Alan Napier': 'Sir Brockhurst', 'Lewis Martin': 'Sir Finsdale', 'Patrick Aherne': 'Sir Pertwee'}\"\r\ntt0344604,\"{'Daniel Auteuil': 'Antoine Letoux', 'José Garcia': 'Louis', 'Sandrine Kiberlain': 'Blanche Grimaldi', 'Marilyne Canto': 'Christine', 'Michèle Moretti': 'Martine', 'Garance Clavel': 'Karine', 'Fabio Zenoni': 'André', 'Jocelyne Desverchère': 'Sandrine the Florist', 'Didier Menin': 'Man at Thai Restaurant', 'Jean-Claude Lecas': 'Cook', 'Blandine Pélissier': 'Nurse', 'Jean-Charles Dumay': 'Serge the Sommelier', 'Ange Ruzé': 'Young Waiter', 'Élise Otzenberger': 'Hairdresser', 'Jean-Luc Abel': 'The Inspector'}\"\r\ntt0387564,\"{'Leigh Whannell': 'Adam Faulkner-Stanheight', 'Cary Elwes': 'Dr. Lawrence Gordon', 'Danny Glover': 'Detective David Tapp', 'Ken Leung': 'Detective Steven Sing', 'Dina Meyer': 'Kerry', 'Mike Butters': 'Paul', 'Paul Gutrecht': 'Mark', 'Michael Emerson': 'Zep Hindle', 'Benito Martinez': 'Brett', 'Shawnee Smith': 'Amanda', 'Makenzie Vega': 'Diana Gordon', 'Monica Potter': 'Alison Gordon', 'Ned Bellamy': 'Jeff', 'Alexandra Bokyun Chun': 'Carla       (as Alexandra Chun)', 'Avner Garbi': 'Father'}\"\r\ntt0285742,\"{'Billy Bob Thornton': 'Hank Grotowski', 'Taylor Simpson': 'Lucille', 'Gabrielle Witcher': 'Betty', 'Heath Ledger': 'Sonny Grotowski', 'Amber Rules': 'Vera', 'Peter Boyle': 'Buck Grotowski', 'Charles Cowan Jr.': 'Willie Cooper', 'Taylor LaGrange': 'Darryl Cooper', 'Yasiin Bey': 'Ryrus Cooper       (as Mos Def)', 'Anthony Bean': 'Dappa Smith', 'Francine Segal': 'Georgia Ann Paynes', 'John McConnell': 'Harvey Shoonmaker', 'Marcus Lyle Brown': 'Phil Huggins', 'Milo Addica': 'Tommy Roulaine', 'Leah Loftin': 'Booter'}\"\r\ntt0395584,\"{'Sid Haig': 'Captain Spaulding', 'Bill Moseley': 'Otis', 'Sheri Moon Zombie': 'Baby', 'William Forsythe': 'Sheriff Wydell', 'Ken Foree': 'Charlie Altamont', 'Matthew McGrory': 'Tiny', 'Leslie Easterbrook': 'Mother Firefly', 'Geoffrey Lewis': 'Roy Sullivan', 'Priscilla Barnes': 'Gloria Sullivan', 'Dave Sheridan': 'Officer Ray Dobson', 'Kate Norby': 'Wendy Banjo', 'Lew Temple': 'Adam Banjo', 'Danny Trejo': 'Rondo', 'Dallas Page': 'Billy Ray Snapper       (as Diamond Dallas Page)', 'Brian Posehn': 'Jimmy'}\"\r\ntt0107387,\"{'Warwick Davis': 'Leprechaun', 'Jennifer Aniston': 'Tory Reding', 'Ken Olandt': 'Nathan Murphy', 'Mark Holton': 'Ozzie', 'Robert Hy Gorman': 'Alex       (as Robert Gorman)', 'Shay Duffin': \"\"Dan O'Grady\"\", 'John Sanderford': 'J.D. Reding', 'John Voldstad': 'Shop Owner', 'Pamela Mant': \"\"Mrs. O'Grady\"\", 'William Newman': 'Sheriff Cronin', 'David Permenter': 'Deputy Tripet', 'Raymond C. Turner': 'Dispatcher       (as Raymond Turner)', 'Heather Kennedy': 'Waitress', 'Tim Garrick': 'Customer       (as Timothy Garrick)', 'Alexandra Sachs': \"\"Little Girl's Voice       (voice)\"\"}\"\r\ntt0408236,\"{'Johnny Depp': 'Sweeney Todd', 'Helena Bonham Carter': 'Mrs. Lovett', 'Alan Rickman': 'Judge Turpin', 'Timothy Spall': 'Beadle', 'Sacha Baron Cohen': 'Pirelli', 'Jamie Campbell Bower': 'Anthony', 'Laura Michelle Kelly': 'Lucy /              Beggar Woman', 'Jayne Wisener': 'Johanna', 'Ed Sanders': 'Toby       (as Edward Sanders)', 'Gracie May': 'Baby Johanna', 'Ava May': 'Baby Johanna', 'Gabriella Freeman': 'Baby Johanna', 'Jody Halse': 'Policeman', 'Aron Paramor': 'Policeman', 'Lee Whitlock': 'Policeman'}\"\r\ntt0123755,\"{'Nicole de Boer': 'Leaven', 'Nicky Guadagni': 'Holloway', 'David Hewlett': 'Worth', 'Andrew Miller': 'Kazan', 'Julian Richings': 'Alderson', 'Wayne Robson': 'Rennes', 'Maurice Dean Wint': 'Quentin'}\"\r\ntt0092890,\"{'Jennifer Grey': 'Baby Houseman', 'Patrick Swayze': 'Johnny Castle', 'Jerry Orbach': 'Jake Houseman', 'Cynthia Rhodes': 'Penny Johnson', 'Jack Weston': 'Max Kellerman', 'Jane Brucker': 'Lisa Houseman', 'Kelly Bishop': 'Marjorie Houseman', 'Lonny Price': 'Neil Kellerman', 'Max Cantor': 'Robbie Gould', \"\"Charles 'Honi' Coles\"\": 'Tito Suarez       (as Charles Honi Coles)', 'Neal Jones': 'Billy Kostecki', \"\"'Cousin Brucie' Morrow\"\": 'Magician', 'Wayne Knight': 'Stan', 'Paula Trueman': 'Mrs. Schumacher', 'Alvin Myerovich': 'Mr. Schumacher'}\"\r\ntt0375679,\"{'Karina Arroyave': 'Elizabeth', 'Dato Bakhtadze': 'Lucien', 'Sandra Bullock': 'Jean', 'Don Cheadle': 'Graham', 'Art Chudabala': 'Ken Ho', 'Sean Cory': 'Motorcycle Cop', 'Tony Danza': 'Fred', 'Keith David': 'Lt. Dixon', 'Loretta Devine': 'Shaniqua', 'Matt Dillon': 'Officer Ryan', 'Jennifer Esposito': 'Ria', 'Ime Etuk': 'Georgie       (as Ime N. Etuk)', 'Eddie J. Fernandez': 'Officer Gomez       (as Eddie Fernandez)', 'William Fichtner': 'Flanagan', 'Howard Fong': 'Store Owner'}\"\r\ntt0158493,\"{'DMX': \"\"Tommy 'Buns' Bundy\"\", 'Nas': 'Sincere', 'Hassan Johnson': 'Mark', 'Taral Hicks': 'Kisha', \"\"Tionne 'T-Boz' Watkins\"\": 'Tionne', \"\"Oliver 'Power' Grant\"\": 'Knowledge       (as Power)', 'Louie Rankin': 'Lennox', 'Stan Drayton': 'Wise       (as Stanley Drayton)', 'James Parris': 'LaKid', 'Method Man': 'Shameek', 'Kurt Loder': 'Kurt Loder', 'Ben Chavis': 'Rev. Saviour       (as Minister Benjamin F. Muhammed)', 'Tyrin Turner': 'Big', 'Jay Black': 'Black', \"\"John 'B.J.' Bryant\"\": 'Thug #1'}\"\r\ntt0078788,\"{'Marlon Brando': 'Colonel Walter E. Kurtz', 'Martin Sheen': 'Captain Benjamin L. Willard', 'Robert Duvall': 'Lieutenant Colonel Bill Kilgore', 'Frederic Forrest': \"\"Jay 'Chef' Hicks\"\", 'Sam Bottoms': 'Lance B. Johnson', 'Laurence Fishburne': \"\"Tyrone 'Clean' Miller       (as Larry Fishburne)\"\", 'Albert Hall': 'Chief Phillips', 'Harrison Ford': 'Colonel Lucas', 'Dennis Hopper': 'Photojournalist', 'G.D. Spradlin': 'General R. Corman', 'Jerry Ziesmer': 'Jerry, Civilian', 'Scott Glenn': 'Lieutenant Richard M. Colby', 'Bo Byers': 'MP Sergeant #1', 'James Keane': \"\"Kilgore's Gunner\"\", 'Kerry Rossall': 'Mike from San Diego'}\"\r\ntt0144084,\"{'Christian Bale': 'Patrick Bateman', 'Justin Theroux': 'Timothy Bryce', 'Josh Lucas': 'Craig McDermott', 'Bill Sage': 'David Van Patten', 'Chloë Sevigny': 'Jean', 'Reese Witherspoon': 'Evelyn Williams', 'Samantha Mathis': 'Courtney Rawlinson', 'Matt Ross': 'Luis Carruthers', 'Jared Leto': 'Paul Allen', 'Willem Dafoe': 'Donald Kimball', 'Cara Seymour': 'Christie', 'Guinevere Turner': 'Elizabeth', 'Stephen Bogaert': 'Harold Carnes', 'Monika Meier': 'Daisy', 'Reg E. Cathey': 'Homeless Man'}\"\r\ntt0120151,\"{'Greg Kinnear': 'Danny Robertson', 'Lauren Holly': 'Jennifer Robertson', 'Joan Cusack': 'Nancy Tellen', 'Jay Thomas': 'Steve Harris', 'Jill Hennessy': 'Lindsay Hamilton', 'Christopher McDonald': 'Richard Halstrom', 'Donald Moffat': 'Dr. Felber', 'France Nuyen': 'Dr. Chin', 'Marianne Muellerleile': 'Nurse Wheeler', 'Sheridan Samples': 'Holly', 'Barbara Larsen': 'Woman in Window /              Woman on Plane', 'Tony Abou-Ganim': 'Welder', 'Nick Scoggin': 'Welder', 'Gene Nakashita': 'Karaoke Bar Owner', 'Lewis Brown': 'Karaoke Act 1'}\"\r\ntt0261289,\"{'Matthew Perry': 'Joe Tyler', 'Elizabeth Hurley': 'Sara Moore', 'Vincent Pastore': 'Tony', 'Bruce Campbell': 'Gordon Moore', 'Cedric the Entertainer': 'Ray Harris', 'Amy Adams': 'Kate', 'Terry Crews': 'Vernon', 'Jerry Stiller': 'Milton the Cop', 'Marshall Bell': 'Warren Cebron', 'Derek Southers': 'Bouncer', 'Alan Ackles': 'Man in Elevator       (scenes deleted)', 'Robin McGee': 'Jimmy the Elevator Operator', 'Brent Duncan': 'Blackjack Dealer', 'Eli Jacques': 'Woman at Blackjack Table', 'John Wayne Shafer': 'Pit Boss'}\"\r\ntt0089945,\"{'Tom Berenger': \"\"Rex O'Herlihan\"\", 'G.W. Bailey': 'Peter', 'Marilu Henner': 'Miss Tracy', 'Andy Griffith': 'Colonel Ticonderoga', 'Fernando Rey': 'Railroad Colonel', 'Sela Ward': \"\"Colonel's Daughter\"\", 'Brant von Hoffman': 'Jim       (as Brant Van Hoffman)', 'Christopher Malcolm': 'Jud', 'Jim Carter': 'Blackie', 'Paul Maxwell': 'Sheepherder No.1', 'Manuel Pereiro': 'Sheepherder No.2', 'Margarita Calahorra': \"\"Sheepherder's Wife\"\", 'Billy J. Mitchell': 'Town Doctor', 'John Orchard': 'Town Sheriff', 'Emilio Linder': 'Sheepherder in Saloon'}\"\r\ntt0068245,\"{'Jeff Bridges': 'Jake Rumsey', 'Barry Brown': 'Drew Dixon', 'Jim Davis': 'Marshal', 'David Huddleston': 'Big Joe', 'John Savage': 'Loney', 'Jerry Houser': 'Arthur Simms', 'Damon Douglas': 'Jim Bob Logan       (as Damon Cofer)', 'Joshua Hill Lewis': 'Boog Bookin', 'Geoffrey Lewis': 'Hobbs', 'Raymond Guth': 'Jackson', 'Ed Lauter': 'Orin       (as Edward Lauter)', 'John Quade': 'Nolan', 'Jean Allison': 'Mrs. Dixon', 'Ned Wertimer': 'Mr. Dixon', 'Charles Tyner': 'Egg Farmer'}\"\r\ntt0348505,\"{'Natasha Richardson': 'Stella Raphael', 'Hugh Bonneville': 'Max Raphael', 'Gus Lewis': 'Charlie Raphael', 'Ian McKellen': 'Dr. Peter Cleave', 'Joss Ackland': 'Jack Straffen', 'Wanda Ventham': 'Bridie Straffen', 'Sarah Thurstan': 'Mrs. Rose', 'Alwyne Taylor': 'Monica', 'Maria Aitken': 'Claudia Greene', 'Hazel Douglas': 'Lilly', 'Anna Keaveney': 'Mrs. Bain', 'Marton Csokas': 'Edgar Stark', 'Robert Willox': 'John Archer', 'Judy Parfitt': 'Brenda Raphael', 'Sean Harris': 'Nick'}\"\r\ntt0218182,\"{'Barry McEvoy': 'Colm', \"\"Brían F. O'Byrne\"\": 'George', 'Anna Friel': 'Bronagh', 'Pauline McLynn': 'Gerty', 'Ruth McCabe': \"\"Mrs. O'Neill\"\", 'Laurence Kinlan': 'Mickey', 'Billy Connolly': 'Scalper', 'Des McAleer': 'Mr. Black', 'Colum Convey': 'IRA Man', 'Ian Cregg': 'Milker', 'David Pearse': 'Comrade', 'Seamus Ball': 'Mr. Duggan', 'Enda Oates': 'Detective', 'Des Braiden': 'Vicar', 'George Shane': 'Billy King'}\"\r\ntt0118073,\"{'Shelley Long': 'Carol Brady', 'Gary Cole': 'Mike Brady', 'Christopher Daniel Barnes': 'Greg Brady', 'Christine Taylor': 'Marcia Brady', 'Paul Sutera': 'Peter Brady', 'Jennifer Elise Cox': 'Jan Brady', 'Jesse Lee Soffer': 'Bobby Brady       (as Jesse Lee)', 'Olivia Hack': 'Cindy Brady', 'Henriette Mantel': 'Alice Nelson', 'Tim Matheson': 'Roy Martin /              Trevor Thomas', 'Whip Hubley': 'Explorer /              Dead Husband', 'Whitney Rydbeck': 'Auctioneer', 'Sue Casey': 'Art Patron #1', 'Gregory White': 'Art Patron #2', 'RuPaul': 'Ms. Cummings'}\"\r\ntt0096316,\"{'Jeff Bridges': 'Preston Tucker', 'Joan Allen': 'Vera', 'Martin Landau': 'Abe', 'Frederic Forrest': 'Eddie', 'Mako': 'Jimmy', 'Elias Koteas': 'Alex Tremulis', 'Christian Slater': 'Junior', 'Nina Siemaszko': 'Marilyn Lee', 'Anders Johnson': 'Johnny', 'Corin Nemec': 'Noble       (as Corky Nemec)', 'Marshall Bell': 'Frank', 'Jay O. Sanders': 'Kirby', 'Peter Donat': 'Kerner', 'Dean Goodman': 'Bennington', 'John X. Heart': \"\"Ferguson's Agent\"\"}\"\r\ntt0406158,\"{'Julianne Moore': 'Evelyn Ryan', 'Woody Harrelson': 'Kelly Ryan', 'Laura Dern': 'Dortha Schaefer', 'Trevor Morgan': 'Bruce Ryan at 16 yrs', 'Ellary Porterfield': 'Tuff Ryan at 13, 16 & 18 yrs', 'Simon Reynolds': 'Ray the Milkman', 'Monté Gagné': 'Lea Anne Ryan at 17 yrs', 'Robert Clark': 'Dick Ryan at 16 yrs', 'Michael Seater': 'Bub Ryan at 15 yrs', 'Erik Knudsen': 'Rog Ryan at 13 yrs', 'Jake Scott': 'Bruce Ryan at 11 yrs', 'Jordan Todosey': 'Tuff Ryan at 9 yrs', 'Ryan Price': 'Mike Ryan at 6 yrs', 'Shae Norris': 'Barb Ryan at 4 yrs', 'Abigail Falle': 'Betsy Ryan at 2 yrs'}\"\r\ntt0051364,\"{'Lana Turner': 'Sara Scott', 'Barry Sullivan': 'Carter Reynolds', 'Glynis Johns': 'Kay Trevor', 'Sean Connery': 'Mark Trevor', 'Terence Longdon': 'Alan Thompson', 'Sidney James': 'Jake Klein', 'Martin Stephens': 'Brian Trevor', 'Doris Hare': 'Mrs. Bunker', 'Julian Somers': 'Hotel Manager', 'John Le Mesurier': 'Dr. Aldridge', 'Cameron Hall': 'Alfy', 'Jane Welsh': 'Jonesy', 'Robin Bailey': 'Captain Barnes', 'Bill Fraser': 'R.E. Sergeant'}\"\r\ntt0145653,\"{'Emily Watson': 'Angela McCourt', 'Robert Carlyle': 'Malachy (Dad)', 'Joe Breen': 'Young Frank', 'Ciaran Owens': 'Middle Frank', 'Michael Legge': 'Older Frank', 'Ronnie Masterson': 'Grandma Sheehan', 'Pauline McLynn': 'Aunt Aggie', 'Liam Carney': 'Uncle Pa Keating', 'Eanna MacLiam': 'Uncle Pat', 'Andrew Bennett': 'Narrator       (voice)', 'Shane Murray-Corcoran': 'Young Malachy       (as Shane Murray Corcoran)', 'Devon Murray': 'Middle Malachy', 'Peter Halpin': 'Older Malachy', 'Aaron Geraghty': 'New Born Michael', 'Sean Carney Daly': 'Baby Michael'}\"\r\ntt0060086,\"{'Michael Caine': 'Alfie', 'Shelley Winters': 'Ruby', 'Millicent Martin': 'Siddie', 'Julia Foster': 'Gilda', 'Jane Asher': 'Annie', 'Shirley Anne Field': 'Carla', 'Vivien Merchant': 'Lily Clamacraft', 'Eleanor Bron': 'The Doctor', 'Denholm Elliott': 'The Abortionist', 'Alfie Bass': 'Harry Clamacraft', 'Graham Stark': 'Humphrey', 'Murray Melvin': 'Nat', 'Sydney Tafler': 'Frank'}\"\r\ntt0267248,\"{'Katie Holmes': 'Katie Burke', 'Benjamin Bratt': 'Wade Handler', 'Charlie Hunnam': 'Embry Larkin', 'Zooey Deschanel': 'Samantha Harper', 'Fred Ward': 'Lieutenant Bill Stayton', 'Mark Feuerstein': 'Robert Hanson', 'Melanie Lynskey': 'Mousy Julie       (as Melanie Jayne Lynskey)', 'Philip Bosco': 'Professor Jergensen', 'Gabriel Mann': 'Harrison Hobart', 'Will McCormack': 'August', 'Gabrielle Union': 'Amanda Luttrell', 'Greg Kramer': 'Andre', 'Gillian Ferrabee': 'Susan', 'Barry Julien': 'Ted', 'Tony Goldwyn': 'Dr. David Schaffer'}\"\r\ntt0078757,\"{'Keith Carradine': 'Hal Raymond', 'Monica Vitti': 'Maria Barone', 'Raf Vallone': \"\"Federico 'Freddie' Barone\"\", 'Christian De Sica': 'Carlo Barone', 'Dick Anthony Williams': 'Andrew Jackson', 'Anna Maria Horsford': 'Amy Zon', 'Katya Berger': \"\"Maria & Freddie's Daughter\"\", 'Henri Garcin': 'Lt. Montand'}\"\r\ntt0258038,\"{'Lance Crouther': 'Pootie Tang', 'J.B. Smoove': 'Trucky', 'Jennifer Coolidge': 'Ireenie', 'Reg E. Cathey': 'Dirty Dee', 'Robert Vaughn': 'Dick Lecter', 'Wanda Sykes': 'Biggie Shorty', 'Chris Rock': \"\"JB /              Radio DJ /              Pootie's Father\"\", 'Mario Joyner': 'Lacey', 'Cathy Trien': 'Stacy', 'Dave Attell': 'Frank', 'Laura Kightlinger': 'Anchor Woman', 'Christopher Wynkoop': 'Sheriff', 'Rick Shapiro': 'Shakey', 'Qiana Drew': 'Singing Lady', 'Lorria Richards': 'Singing Lady'}\"\r\ntt0373908,\"{'Cedric the Entertainer': 'Ralph Kramden', 'Mike Epps': 'Ed Norton', 'Gabrielle Union': 'Alice Kramden', 'Regina Hall': 'Trixie Norton', 'Eric Stoltz': 'William Davis', 'Jon Polito': 'Kirby', 'John Leguizamo': 'Dodge', 'Carol Woods': \"\"Alice's Mom\"\", 'Ajay Naidu': 'Vivek', 'Arnell Powell': 'DJ Suckaslam', 'Leticia Castillo': 'Young Mother', 'Chuy Bravo': 'Grocer', 'Doreen Keogh': 'Miss Celestine', 'Camille Donegan': 'Lissa', 'Joanna Dickens': 'Bus Stop Woman'}\"\r\ntt0268397,\"{'Megan Cavanagh': 'Mom /              VOX       (voice)', 'Mark DeCarlo': 'Dad /              Pilot /              Arena Guard       (voice)', 'Debi Derryberry': \"\"James 'Jimmy' Isaac Neutron       (voice)\"\", 'Jeffrey Garcia': 'Sheen       (voice)', 'Bob Goen': 'Newscaster       (voice)', 'Mary Hart': 'Newscaster       (voice)', 'Carolyn Lawrence': 'Cindy Vortex       (voice)', 'Andrea Martin': 'Miss Fowl       (voice)', 'Candi Milo': 'Nick /              Britanny /              PJ       (voice)', 'Rob Paulsen': \"\"Carl /              Carl's Mom and Dad /              Kid in Classroom /              Kid       (voice)\"\", 'Crystal Scales': 'Libby       (voice)', 'Martin Short': 'Ooblar       (voice)', 'Patrick Stewart': 'King Goobot       (voice)', 'Jim Cummings': 'Ultra Lord /              Mission Control /              General       (voice)', 'David L. Lander': 'Yokian Guard /              Gus       (voice)'}\"\r\ntt0795351,\"{'Renée Zellweger': 'Emily Jenkins', 'Jodelle Ferland': 'Lilith Sullivan', 'Ian McShane': 'Detective Barron', 'Bradley Cooper': 'Doug', 'Callum Keith Rennie': 'Edward Sullivan', 'Adrian Lester': 'Wayne', \"\"Kerry O'Malley\"\": 'Margaret Sullivan', 'Cynthia Stevenson': 'Nancy', 'Alexander Conti': 'Diego', 'Philip Cabrita': 'Javier', 'Vanesa Tomasino': \"\"Javier's Wife\"\", 'Mary Black': 'Custody Judge', \"\"Domenico D'Ambrosio\"\": 'Plainclothes Cop', 'Benita Ha': 'Therapist', 'J. Winston Carroll': 'Judge       (as John Carroll)'}\"\r\ntt0099587,\"{'Danny Glover': 'Commander Frank Camparelli', 'Willem Dafoe': 'Lt. Cmdr. Virgil Cole', 'Brad Johnson': \"\"Lt. Jake' Cool Hand' Grafton\"\", 'Rosanna Arquette': 'Callie', 'Tom Sizemore': 'Boxman', 'J. Kenneth Campbell': \"\"Lt. Cmdr. 'Cowboy' Parker\"\", 'Jared Chandler': \"\"Lt. J.G. Jack 'Razor' Barlow\"\", 'Dann Florek': 'Mad Jack', 'Madison Mason': \"\"'Cag'\"\", 'Ving Rhames': 'McRae', 'Christopher Rich': 'Lt. J.G. Morgan McPherson', 'Douglas Roberts': 'Guffy', 'Scott N. Stevens': 'Hardesty       (as Scott Newton Stevens)', 'Justin Williams': 'Sammy', 'John Corbett': 'Big Augie'}\"\r\ntt0098625,\"{'Robert De Niro': 'Ned', 'Sean Penn': 'Jim', 'Demi Moore': 'Molly', 'Hoyt Axton': 'Father Levesque', 'Bruno Kirby': 'Deputy', 'Ray McAnally': 'Warden', 'James Russo': 'Bobby', 'Wallace Shawn': 'Translator', 'John C. Reilly': 'Young Monk', 'Jay Brazeau': 'Sheriff', 'Ken Buhay': 'Bishop Nogalich', 'Elizabeth Lawrence': 'Mrs. Blair', 'Bill Murdoch': 'Deputy', 'Jessica Jickels': 'Rosie', 'Frank C. Turner': 'Shopkeeper'}\"\r\ntt0314676,\"{'Robert Downey Jr.': 'Dan Dark', 'Robin Wright': 'Nicola /              Nina /              Blonde       (as Robin Wright Penn)', 'Mel Gibson': 'Dr. Gibbon', 'Jeremy Northam': 'Mark Binney', 'Katie Holmes': 'Nurse Mills', 'Adrien Brody': 'First Hood', 'Jon Polito': 'Second Hood', 'Carla Gugino': 'Betty Dark /              Hooker', 'Saul Rubinek': 'Skin Specialist', 'Alfre Woodard': 'Chief of Staff', 'Amy Aquino': 'Nurse Nozhki', 'David Dorfman': 'Young Dan Dark', 'Eddie Jones': 'Moonglow Bartender', 'Lily Knight': 'Woman Physiotherapist', 'Clyde Kusatsu': 'Visiting Japanese Doctor'}\"\r\ntt0134067,\"{'Elizabeth Daily': 'Tommy Pickles       (voice) (as E.G. Daily)', 'Christine Cavanaugh': 'Chuckie Finster       (voice)', 'Kath Soucie': 'Philip Deville /              Lillian Deville /              Betty Deville       (voice)', 'Melanie Chartoff': 'Didi Pickles /              Minka       (voice)', 'Phil Proctor': 'Howard DeVille /              Igor       (voice)', 'Cree Summer': 'Susie Carmichael       (voice)', 'Mary Gross': 'Woman Guest       (voice)', 'Kevin McBride': 'Male Guest       (voice)', 'Andrea Martin': 'Aunt Miriam       (voice)', 'Michael Bell': 'Chas Finster /              Grandpa Boris /              Drew Pickles       (voice)', 'Tress MacNeille': 'Charlotte Pickles       (voice)', 'Jack Riley': 'Stu Pickles       (voice)', 'Busta Rhymes': 'Reptar Wagon       (voice)', 'Joe Alaskey': 'Grandpa Lou Pickles       (voice)', 'Cheryl Chase': 'Angelica Pickles       (voice)'}\"\r\ntt0062153,\"{'James Coburn': 'Dr. Sidney Schaefer', 'Godfrey Cambridge': 'Don Masters', 'Severn Darden': 'Kropotkin', 'Joan Delaney': 'Nan Butler', 'Pat Harrington Jr.': 'Arlington Hewes       (as Pat Harrington)', 'Barry McGuire': 'Old Wrangler', 'Jill Banner': 'Snow White', 'Eduard Franz': 'Ethan Allan Cocket', 'Walter Burke': 'Henry Lux', 'Will Geer': 'Dr. Lee-Evan', 'William Daniels': 'Wynn Quantrill', 'Joan Darling': 'Jeff Quantrill', 'Sheldon Collins': 'Bing Quantrill', 'Arte Johnson': 'Sullivan', 'Martin Horsey': '1st Puddlian'}\"\r\ntt0060736,\"{'Cornel Wilde': 'Man', 'Gert van den Bergh': '2nd Man       (as Gert van der Berg)', 'Ken Gampu': 'Leader of the Warriors', 'Patrick Mynhardt': 'Safari Overseer /              Slave Dealer /              Irish Soldier', 'Bella Randles': 'Little Girl', 'Morrison Gampu': 'Tribe Leader', 'Sandy Nkomo': 'Warrior', 'Eric Mcanyana': 'Warrior', 'John Marcus': 'Warrior', 'Richard Mashiya': 'Warrior', 'Franklyn Mdhluli': 'Warrior', 'Fusi Zazayokwe': 'Warrior', 'Joe Dlamini': 'Warrior', 'Jose Sithole': 'Warrior', 'Horace Gilman': 'Warrior'}\"\r\ntt0419887,\"{'Khalid Abdalla': 'Amir', 'Atossa Leoni': 'Soraya', 'Shaun Toub': 'Rahim Khan', 'Sayed Jafar Masihullah Gharibzada': 'Omar', 'Zekeria Ebrahimi': 'Young Amir', 'Ahmad Khan Mahmoodzada': 'Young Hassan', 'Mir Mahmood Shah Hashimi': \"\"Business Man in Baba's Study\"\", 'Homayoun Ershadi': 'Baba', 'Nabi Tanha': 'Ali', 'Elham Ehsas': 'Young Assef', 'Bahram Ehsas': 'Wali', 'Tamim Nawabi': 'Kamal', 'Mohamad Nabi Attai': 'Uncle Saifo the Kite Seller', 'Mohamad Nadir Sarwari': 'Spice Merchant', 'Mustafa Haidari': 'Party Worker'}\"\r\ntt0366174,\"{'Johnny Messner': 'Bill Johnson', 'KaDee Strickland': 'Sam Rogers', 'Matthew Marsden': 'Dr. Jack Byron', 'Nicholas Gonzalez': 'Dr. Ben Douglas', 'Eugene Byrd': 'Cole Burris', 'Karl Yune': 'Tran', 'Salli Richardson-Whitfield': 'Gail Stern', 'Morris Chestnut': 'Gordon Mitchell', 'Andy Anderson': 'John Livingston', 'Nicholas Hope': 'Christian Van Dyke', 'Peter Curtin': 'Lawyer', 'Denis Arndt': 'CEO', 'Khoa Do': 'Lead Lopak Hunter', 'Aireti': 'Lopak Hunter', 'Andre Tandjung': 'Bartender'}\"\r\ntt0044672,\"{'Betty Hutton': 'Holly', 'Cornel Wilde': 'The Great Sebastian', 'Charlton Heston': 'Brad Braden', 'Dorothy Lamour': 'Phyllis', 'Gloria Grahame': 'Angel', 'Henry Wilcoxon': 'FBI Agent Gregory', 'Lyle Bettger': 'Klaus', 'Lawrence Tierney': 'Mr. Henderson', 'Emmett Kelly': 'Emmett Kelly', 'Cucciola': 'Cucciola', 'Antoinette Concello': 'Antoinette Concello', 'John Ringling North': 'John Ringling North', 'Tuffy Genders': 'Tuffy Genders', 'John Kellogg': 'Harry', 'John Ridgely': 'Assistant Manager'}\"\r\ntt0191133,\"{'Nigel Washington': 'Little Darrin', 'Chloe Bailey': 'Little Lilly', 'Demetress Long': 'Church Usher', 'Ann Nesby': 'Aunt Sally Walker', 'Faith Evans': 'Maryann Hill', 'Melba Moore': 'Bessie Cooley', 'Rosalie Washington': 'Faye Jenkins', 'Ricky Dillard': 'Choir Director', 'Larry John Meyers': 'Homer T.       (as L. John Myers)', 'Shirley Caesar': 'Herself       (as Reverend Shirley Caesar)', 'LaTanya Richardson Jackson': 'Paulina Pritchett       (as LaTanya Richardson)', 'Wendell Pierce': 'Reverend Lewis', 'Lou Myers': 'Homer T.', 'Cuba Gooding Jr.': 'Darrin Hill', 'Lourdes Benedicto': 'Rosa Lopez'}\"\r\ntt1305806,\"{'Soledad Villamil': 'Irene Menéndez Hastings', 'Ricardo Darín': 'Benjamín Esposito', 'Carla Quevedo': 'Liliana Coloto', 'Pablo Rago': 'Ricardo Morales', 'Javier Godino': 'Isidoro Gómez', 'Bárbara Palladino': 'Chica Piropo', 'Rudy Romano': 'Ordóñez', 'Alejandro Abelenda': 'Pinche Mariano', 'Mario Alarcón': 'Juez Fortuna Lacalle', 'Guillermo Francella': 'Pablo Sandoval', 'Sebastián Blanco': 'Pinche Tino', 'Mariano Argento': 'Romano', 'José Luis Gioia': 'Báez - Inspector', 'Juan José Ortíz': 'Agente Cardozo', 'Kiko Cerone': 'Molinari'}\"\r\ntt0085407,\"{'Christopher Walken': 'Johnny Smith', 'Brooke Adams': 'Sarah Bracknell', 'Tom Skerritt': 'Sheriff Bannerman', 'Herbert Lom': 'Dr. Sam Weizak', 'Anthony Zerbe': 'Roger Stuart', 'Colleen Dewhurst': 'Henrietta Dodd', 'Martin Sheen': 'Greg Stillson', 'Nicholas Campbell': 'Frank Dodd', 'Sean Sullivan': 'Herb Smith', 'Jackie Burroughs': 'Vera Smith', 'Géza Kovács': 'Sonny Elliman       (as Geza Kovacs)', 'Roberta Weiss': 'Alma Frechette', 'Simon Craig': 'Chris Stuart', 'Peter Dvorsky': 'Dardis', 'Julie-Ann Heathwood': 'Amy'}\"\r\ntt0072848,\"{'Donald Sutherland': 'Homer', 'Karen Black': 'Faye', 'Burgess Meredith': 'Harry', 'William Atherton': 'Tod', 'Geraldine Page': 'Big Sister', 'Richard Dysart': 'Claude Estee', 'Bo Hopkins': 'Earle Shoop', 'Pepe Serna': 'Miguel', 'Lelia Goldoni': 'Mary Dove', 'Billy Barty': 'Abe', 'Jackie Earle Haley': 'Adore       (as Jackie Haley)', 'Gloria LeRoy': 'Mrs. Loomis       (as Gloria Le Roy)', 'Jane Hoffman': 'Mrs. Odlesh', 'Norman Leavitt': 'Mr. Odlesh       (as Norm Leavitt)', 'Madge Kennedy': 'Mrs. Johnson'}\"\r\ntt0055871,\"{'William Holden': 'Eric Erickson', 'Lilli Palmer': 'Frau Marianne Möllendorf', 'Hugh Griffith': 'Collins', 'Carl Raddatz': 'Otto Holtz', 'Ernst Schröder': 'Baron Gerhard von Oldenburg', 'Charles Regnier': 'Wilhelm Kortner', 'Ingrid van Bergen': 'Hulda Windler', 'Wolfgang Preiss': 'Col. Nordoff', 'Werner Peters': 'Bruno Ulrich', 'Erica Beer': 'Klara Holtz', 'Stefan Schnabel': 'Gestapo Agent at Funeral', 'Klaus Kinski': 'Kindler', 'Erik Schumann': 'Nazi Gunboat Officer       (as Erik Schuman)', 'Poul Reichhardt': 'Fishing Boat Skipper', 'John Wittig': 'Sven'}\"\r\ntt0102951,\"{'Cathy Moriarty': 'Montana Moorehead', 'Teri Hatcher': 'Ariel Maloney', 'Robert Downey Jr.': 'David Barnes', 'Sally Field': 'Celeste Talbert', 'Paul Johansson': 'Bolt', 'Elisabeth Shue': 'Lori Craven', 'Whoopi Goldberg': 'Rose Schwartz', 'Kevin Kline': 'Jeffrey Anderson', 'Arne Nannestad': 'Burton White', 'Tim Choate': 'A.D.', 'Kathy Najimy': 'Tawny Miller', 'Costas Mandylor': 'Mark', 'Cornelia Kiss': 'Receptionist', 'Rob Camilletti': 'Actor       (as Robert Camiletti)', 'Marianne Muellerleile': 'Housewife'}\"\r\ntt0122718,\"{'David Cross': 'Irwin Wayfair', 'Jay Mohr': 'Larry Benson', 'Alexandra Wilson': 'Ms. Kegel', 'Denis Leary': 'Gil Mars', 'Gregory Smith': 'Alan Abernathy', 'Dick Miller': 'Joe', 'Kirsten Dunst': 'Christy Fimple', 'Jacob Smith': 'Timmy Fimple', 'Jonathan Bouck': 'Brad       (as Jonathan David Bouck)', 'Kevin Dunn': 'Stuart Abernathy', 'Ann Magnuson': 'Irene Abernathy', 'Wendy Schaal': 'Marion Fimple', 'Phil Hartman': 'Phil Fimple', 'Archie Hahn': 'Satellite Dish Installer', 'Robert Picardo': 'Ralph, Clean Room Technician'}\"\r\ntt0108162,\"{'Sharon Stone': 'Carly Norris', 'William Baldwin': 'Zeke Hawkins', 'Tom Berenger': 'Jack Landsford', 'Polly Walker': 'Vida Warren', 'Colleen Camp': 'Judy Marks', 'Amanda Foreman': 'Samantha Moore', 'Martin Landau': 'Alex Parsons', 'CCH Pounder': 'Lt. Victoria Hendrix', 'Nina Foch': 'Evelyn McEvoy', 'Keene Curtis': 'Gus Hale', 'Nicholas Pryor': 'Peter Farrell', 'Anne Betancourt': 'Jackie Kinsella', 'Tony Peck': 'Martin Kinsella', 'Frantz Turner': 'Doorman #1', 'Melvyn Kinder': 'Dr. Palme       (as Dr. Melvyn Kinder)'}\"\r\ntt0239986,\"{'Penny Balfour': 'Young Hooker', 'Edward Burns': 'Tommy', 'Michael Leydon Campbell': 'Gio /              Harry', 'Nadia Dajani': 'Hilary', 'Rosario Dawson': 'Maria', 'Kathleen Doyle': 'Katy', 'Dennis Farina': 'Carpo', 'Heather Graham': 'Annie', 'Leah Gray': 'Dental Hygienist', 'Timothy Jerome': 'Dr. Lance       (as Tim Jerome)', 'David Krumholtz': 'Ben', 'Libby Langdon': 'Make-up Girl', 'Alicia Meer': 'Elevator Girl', 'Brittany Murphy': 'Ashley', 'Ted Neustadt': 'Doctor'}\"\r\ntt0061385,\"{'Robert Redford': 'Paul Bratter', 'Jane Fonda': 'Corie Bratter', 'Charles Boyer': 'Victor Velasco', 'Mildred Natwick': 'Ethel Banks', 'Herb Edelman': 'Harry Pepper       (as Herbert Edelman)', 'Mabel Albertson': 'Harriet', 'Fritz Feld': 'Restaurant Proprietor', 'James Stone': 'Delivery Man       (as James F. Stone)', 'Ted Hartley': 'Frank'}\"\r\ntt1130884,\"{'Leonardo DiCaprio': 'Teddy Daniels', 'Mark Ruffalo': 'Chuck Aule', 'Ben Kingsley': 'Dr. Cawley', 'Max von Sydow': 'Dr. Naehring', 'Michelle Williams': 'Dolores', 'Emily Mortimer': 'Rachel 1', 'Patricia Clarkson': 'Rachel 2', 'Jackie Earle Haley': 'George Noyce', 'Ted Levine': 'Warden', 'John Carroll Lynch': 'Deputy Warden McPherson', 'Elias Koteas': 'Laeddis', 'Robin Bartlett': 'Bridget Kearns', 'Christopher Denham': 'Peter Breene', 'Nellie Sciutto': 'Nurse Marino', 'Joseph Sikora': 'Glen Miga       (as Joe Sikora)'}\"\r\ntt0096094,\"{'Kevin Bacon': 'Jake Briggs', 'Elizabeth McGovern': 'Kristy Briggs', 'Alec Baldwin': 'Davis McDonald', 'James Ray': 'Jim Briggs', 'Holland Taylor': 'Sarah Briggs', 'William Windom': 'Russ Bainbridge', 'Cathryn Damon': 'Gayle Bainbridge', 'Reba McKinney': 'Grandmother', 'Bill Erwin': 'Grandfather', 'Paul Gleason': 'Howard', 'Dennis Dugan': 'Bill', 'Anthony Mockus Sr.': 'Minister', 'John Ashton': 'Ken', 'Larry Hankin': 'Hank', 'Edie McClurg': 'Lynn'}\"\r\ntt0959337,\"{'Kate Winslet': 'April Wheeler', 'Leonardo DiCaprio': 'Frank Wheeler', 'Christopher Fitzgerald': 'Party Guest', 'Jonathan Roumie': 'Party Guest', 'Neal Bledsoe': 'Party Guest', 'Marin Ireland': 'Party Guest', 'Samantha Soule': 'Party Guest', 'Heidi Armbruster': 'Party Guest', 'Sam Rosen': 'Party Guest', 'Maria Rusolo': 'Party Dancer', 'Gena Oppenheim': 'Party Dancer', 'Kathryn Dunn': 'Party Dancer', 'Joe Komara': 'Party Dancer       (as Joe Kamara)', 'Allison Twyford': 'Party Dancer', 'David Harbour': 'Shep Campbell'}\"\r\ntt0421239,\"{'Rachel McAdams': 'Lisa Reisert', 'Cillian Murphy': 'Jackson Rippner', 'Brian Cox': 'Joe Reisert', 'Laura Johnson': 'Blonde Woman', 'Max Kasch': 'Headphone Kid', 'Jayma Mays': 'Cynthia', 'Angela Paton': 'Nice Lady', 'Suzie Plakson': 'Senior Flight Attendant', 'Jack Scalia': 'Charles Keefe', 'Terry Press': 'Marianne Taylor       (as Teresa Press-Marx)', 'Robert Pine': 'Bob Taylor', 'Carl Gilliard': 'Taxi Driver', 'Mary Kathleen Gordon': 'Airline Representative       (as Mary-Kathleen Gordon)', 'Loren Lester': 'Irate Passenger', 'Philip Pavel': 'Dallas Ticket Agent'}\"\r\ntt0250687,\"{'Breckin Meyer': 'Nick Schaffer', 'Jenica Bergere': 'Hotel Clerk', 'Cuba Gooding Jr.': 'Owen Templeton', 'Carrie Diamond': 'Casino Bartender', 'Douglas Haase': 'Guy at Bar', 'Chris Myers': 'Fox Sportscaster', 'Kevin Frazier': 'Fox Sportscaster', 'Seth Green': 'Duane Cody', 'Gloria Allred': 'Gloria Allred', 'Vince Vieluf': 'Blaine Cody', 'Renée Lee': 'Witness in Crowd', 'Corinna Harney': 'Cocktail Waitress       (as Corinna Harney Jones)', 'Jane C. Walsh': 'Cocktail Waitress', 'Lanei Chapman': 'Merrill Jennings       (as Lanai Chapman)', 'Whoopi Goldberg': 'Vera Baker'}\"\r\ntt0082970,\"{'James Cagney': 'New York Police Commissioner Rhinelander Waldo', 'Brad Dourif': 'Younger Brother', 'Moses Gunn': 'Booker T. Washington', 'Elizabeth McGovern': 'Evelyn Nesbit', 'Kenneth McMillan': 'Willie Conklin', \"\"Pat O'Brien\"\": 'Delphin', \"\"Donald O'Connor\"\": \"\"Evelyn's Dance Instructor\"\", 'James Olson': 'Father', 'Mandy Patinkin': 'Tateh', 'Howard E. Rollins Jr.': 'Coalhouse Walker Jr.', 'Mary Steenburgen': 'Mother', 'Debbie Allen': 'Sarah', 'Jeffrey DeMunn': 'Houdini       (as Jeff Demunn)', 'Robert Joy': 'Henry Thaw', 'Norman Mailer': 'Stanford White'}\"\r\ntt0066181,\"{'Barbra Streisand': 'Daisy Gamble', 'Yves Montand': 'Dr. Marc Chabot', 'Bob Newhart': 'Dr. Mason Hume', 'Larry Blyden': 'Warren Pratt', 'Simon Oakland': 'Dr. Conrad Fuller', 'Jack Nicholson': 'Tad Pringle', 'John Richardson': 'Robert Tentrees', 'Pamela Brown': 'Mrs. Fitzherbert', 'Irene Handl': 'Winnie Wainwhisle', 'Roy Kinnear': 'Prince Regent', 'Peter Crowcroft': 'Divorce Attorney', 'Byron Webster': 'Prosecuting Attorney', 'Mabel Albertson': 'Mrs. Hatch', 'Laurie Main': 'Lord Percy', 'Kermit Murdock': 'Hoyt III'}\"\r\ntt0078024,\"{\"\"Ryan O'Neal\"\": 'Oliver Barrett', 'Candice Bergen': 'Marcie Bonwit', 'Nicola Pagett': 'Joanna Stone', 'Edward Binns': 'Phil Cavilleri', 'Benson Fong': 'John Hsiang', 'Charles Haid': 'Stephen Simpson', 'Kenneth McMillan': 'Jamie Francis', 'Ray Milland': 'Mr. Barrett', 'Josef Sommer': 'Dr. Dienhart', 'Sully Boyar': 'Mr. Gentilano', 'Swoosie Kurtz': 'Gwen Simpson', 'Meg Mundy': 'Mrs. Barrett', 'Beatrice Winde': 'Waltereen', 'Sol Schwade': 'Arlie', 'Frank Toste': 'Father Giamatti       (as Father Frank Toste)'}\"\r\ntt0063356,\"{'Rod Steiger': 'Christopher Gill', 'Lee Remick': 'Kate Palmer', 'George Segal': 'Morris Brummel', 'Eileen Heckart': 'Mrs. Brummel', 'Murray Hamilton': 'Inspector Haines', 'Michael Dunn': 'Mr. Kupperman', 'Martine Bartlett': 'Alma Mulloy', 'Barbara Baxley': 'Belle Poppie', 'Irene Dailey': 'Mrs. Fitts', 'Doris Roberts': 'Sylvia Poppie', 'Ruth White': 'Mrs. Himmel', 'Val Bisoglio': 'Detective Monaghan', 'David Doyle': 'Lieutenant Dawson', 'Kim August': 'Sadie'}\"\r\ntt0056267,\"{'Shirley MacLaine': 'Lucy Dell /              Yoko Mori', 'Yves Montand': 'Paul Robaix', 'Edward G. Robinson': 'Sam Lewis', 'Robert Cummings': 'Bob Moore', 'Yôko Tani': 'Kazumi Ito', 'Tatsuo Saitô': 'Kenichi Takata', 'Tamae Kiyokawa': 'Amatsu Hisako       (as Tamae Kyokawa)', 'Ichirô Hayakawa': 'Hisako', 'Alex Gerry': 'Leonard Lewis', 'Tsugundo Maki': 'Shiga', 'George Furness': \"\"George (Robaix's butler)\"\"}\"\r\ntt0110516,\"{'Melanie Griffith': 'V', 'Ed Harris': 'Tom', 'Michael Patrick Carter': 'Frank', 'Malcolm McDowell': 'Waltzer', 'Anne Heche': 'Betty', 'Casey Siemaszko': 'Cash', 'Philip Bosco': 'Jerry the Pope', 'Brian Christopher': 'Kevin', 'Adam LaVorgna': 'Brad', 'Kevin Scannell': 'Mr. Clean', 'Jessica Wesson': 'Stacey', 'Amanda Sharkey': 'Holly', 'Margaret Nagle': 'Mrs. Fetch', 'Katie Powell': 'Mrs. Clean       (as Kati Powell)', 'Tom Coop': \"\"Holly's Brother\"\"}\"\r\ntt0068835,\"{'Alan Arkin': 'Barney Cashman', 'Sally Kellerman': 'Elaine', 'Paula Prentiss': 'Bobbi Michele', 'Renée Taylor': 'Jeanette', 'Bella Bruck': 'Cashier', 'Sandy Balson': 'Charlotte', 'Frank Loverde': 'Mel', 'Burt Conroy': 'Bert', 'Charles Woolf': 'Jesse', 'Ben Freedman': 'Mickey', 'Buddy Lewis': 'Waiter #1', \"\"Paul 'Mousie' Garner\"\": 'Waiter #2       (as Mousey Garner)', 'Bernie Styles': 'Man with Boxes', 'John Battiste': \"\"Truckman's Helper\"\", 'Sully Boyar': 'Man #1 Coffee Shop'}\"\r\ntt0408985,\"{'Queen Latifah': 'Georgia Byrd', 'LL Cool J': 'Sean Matthews', 'Timothy Hutton': 'Matthew Kragen', 'Giancarlo Esposito': 'Senator Dillings', 'Alicia Witt': 'Ms. Burns', 'Gérard Depardieu': 'Chef Didier', 'Jane Adams': 'Rochelle', 'Michel Estime': 'Marlon       (as Mike Estime)', 'Susan Kellermann': 'Gunther', 'Jascha Washington': 'Darius', 'Matt Ross': 'Adamian', 'Ranjit Chowdhry': 'Dr. Gupta', 'Michael Nouri': 'Congressman Stewart', 'Jaqueline Fleming': 'Tanya', 'Kendall Mosby': 'Anton'}\"\r\ntt0119468,\"{'Morgan Freeman': 'Dr. Alex Cross', 'Ashley Judd': 'Kate Mctiernan', 'Cary Elwes': 'Casanova /              Nick Ruskin', 'Alex McArthur': 'Sikes', 'Tony Goldwyn': 'Will Rudolph', 'Jay O. Sanders': 'Kyle Craig', 'Bill Nunn': 'Sampson', 'Brian Cox': 'Chief Hatfield', 'Richard T. Jones': 'Seth Samuel', 'Roma Maffia': 'Dr. Ruocco', 'Jeremy Piven': 'Henry Castillo', 'Gina Ravera': 'Naomi Cross', 'William Converse-Roberts': 'Dr. Wick Sachs', 'Helen Martin': 'Nana Cross', 'Tatyana Ali': 'Janell Cross       (as Tatyana M. Ali)'}\"\r\ntt0099850,\"{'Richard Gere': 'Dennis Peck', 'Andy Garcia': 'Raymond Avilla', 'Nancy Travis': 'Kathleen Avilla', 'Laurie Metcalf': 'Amy Wallace', 'Richard Bradford': 'Grieb', 'William Baldwin': 'Van Stretch', 'Michael Beach': 'Dorian Fletcher', 'Katherine Borowitz': 'Tova Arrocas', 'Faye Grant': 'Penny', 'John Kapelos': 'Steven Arrocas', 'Xander Berkeley': 'Rudy Mohr', 'John Capodice': 'Chief Healy', 'Victoria Dillard': 'Kee', \"\"Pamella D'Pella\"\": 'Cheryl', 'Susan Forristal': 'Lolly'}\"\r\ntt0119360,\"{'Kevin Kline': 'Howard Brackett', 'Joan Cusack': 'Emily Montgomery', 'Tom Selleck': 'Peter Malloy', 'Matt Dillon': 'Cameron Drake', 'Debbie Reynolds': 'Berniece Brackett', 'Wilford Brimley': 'Frank Brackett', 'Bob Newhart': 'Tom Halliwell', 'Gregory Jbara': 'Walter Brackett', 'Shalom Harlow': 'Sonya', 'Shawn Hatosy': 'Jack', 'Zak Orth': 'Mike', 'Lauren Ambrose': 'Vicky', 'Alexandra Holden': 'Meredith', 'Lewis J. Stadlen': 'Ed Kenrow', 'Deborah Rush': 'Ava Blazer'}\"\r\ntt0110099,\"{'Tim Robbins': 'Ed Walters', 'Meg Ryan': 'Catherine Boyd', 'Walter Matthau': 'Albert Einstein', 'Lou Jacobi': 'Kurt Gödel', 'Gene Saks': 'Boris Podolsky', 'Joseph Maher': 'Nathan Liebknecht', 'Stephen Fry': 'James Moreland', 'Tony Shalhoub': 'Bob Rosetti', 'Frank Whaley': 'Frank', 'Charles Durning': 'Louis Bamberger', 'Keene Curtis': 'Eisenhower', 'Alice Playten': 'Gretchen', 'Danny Zorn': 'Dennis', 'Helen Hanft': 'Rose', 'Roger Berlind': 'Duncan'}\"\r\ntt0319531,\"{'Clive Owen': 'Will', 'Charlotte Rampling': 'Helen', 'Jonathan Rhys Meyers': 'Davey', 'Malcolm McDowell': 'Boad', 'Jamie Foreman': 'Mickser', 'Ken Stott': 'Turner', 'Sylvia Syms': 'Mrs. Bartz', 'Alexander Morton': 'Victor', 'John Surman': 'Pathologist', 'Paul Mohan': 'Coroner', 'Damian Dibben': 'David Myers', 'Amber Batty': 'Sheridan', 'Daisy Beaumont': 'Stella, Drugs Seeker', 'Lidija Zovkic': 'Philippa, Model', 'Geoff Bell': 'Arnie Ryan'}\"\r\ntt0051745,\"{'Cary Grant': 'Tom Winters', 'Sophia Loren': 'Cinzia Zaccardi', 'Martha Hyer': 'Carolyn Gibson', 'Harry Guardino': 'Angelo Donatello', 'Eduardo Ciannelli': 'Arturo Zaccardi', 'Murray Hamilton': 'Capt. Alan Wilson', 'Mimi Gibson': 'Elizabeth Winters', 'Paul Petersen': 'David Winters', 'Charles Herbert': 'Robert Winters', 'Madge Kennedy': 'Mrs. Farnsworth', 'John Litel': 'Mr. William Farnsworth', 'Werner Klemperer': 'Harold Messner'}\"\r\ntt0080836,\"{'Gary Collins': 'Steve Bancroft', 'Robert Vaughn': 'Gordon Cain', 'James Hampton': 'Lew Price', 'Philip Abbott': 'Frank Morrison', 'Joseph Campanella': 'Frank Lafferty', 'Pamela Bellwood': 'Sarah Michaels', 'Tom Hallick': 'Phil Cameron', 'Steven Keats': 'Paul Bannister', 'William Schallert': 'Professor Mills', 'Darren McGavin': 'Harry Forbes', 'Cliff Osmond': 'Sheriff Barlow', 'Andrew Bloch': 'Neal Kelso', 'Stuart Pankin': 'Sam Tate', 'Betty Ann Carr': 'Flo Mattson', 'H.M. Wynant': 'Flight Director'}\"\r\ntt0050468,\"{'Burt Lancaster': 'Wyatt Earp', 'Kirk Douglas': 'Doc Holliday', 'Rhonda Fleming': 'Laura Denbow', 'Jo Van Fleet': 'Kate Fisher', 'John Ireland': 'Johnny Ringo', 'Lyle Bettger': 'Ike Clanton', 'Frank Faylen': 'Cotton Wilson', 'Earl Holliman': 'Charles Bassett', 'Ted de Corsia': 'Shanghai Pierce       (as Ted DeCorsia)', 'Dennis Hopper': 'Billy Clanton', 'Whit Bissell': 'John P. Clum', 'George Mathews': 'John Shanssey', 'John Hudson': 'Virgil Earp', 'DeForest Kelley': 'Morgan Earp', 'Martin Milner': 'James Earp'}\"\r\ntt0082432,\"{'Mark Lee': 'Archy Hamilton', 'Bill Kerr': 'Jack', 'Harold Hopkins': 'Les McCann', 'Charles Lathalu Yunipingu': 'Zac       (as Charles Yunupingu)', 'Heath Harris': 'Stockman', 'Ron Graham': 'Wallace Hamilton', 'Gerda Nicolson': 'Rose Hamilton', 'Mel Gibson': 'Frank Dunne', 'Robert Grubb': 'Billy', 'Tim McKenzie': 'Barney', 'David Argue': 'Snowy', 'Brian Anderson': 'Railway Foreman', 'Reg Evans': 'Athletics Official 1', 'Jack Giddy': 'Athletics Official 2', 'Dane Peterson': 'Announcer'}\"\r\ntt0430105,\"{'Mark Wahlberg': 'Bobby Mercer', 'Tyrese Gibson': 'Angel Mercer', 'André Benjamin': 'Jeremiah Mercer', 'Garrett Hedlund': 'Jack Mercer', 'Terrence Howard': 'Lt. Green', 'Josh Charles': 'Detective Fowler', 'Sofía Vergara': 'Sofi', 'Fionnula Flanagan': 'Evelyn Mercer', 'Chiwetel Ejiofor': 'Victor Sweet', 'Taraji P. Henson': 'Camille Mercer', 'Barry Shabaka Henley': 'Councilman Douglas', 'Jernard Burks': 'Evan', 'Kenneth Welsh': 'Robert Bradford', 'Tony Nappo': 'Charlie', 'Shawn Singleton': 'Victor Hoodlum'}\"\r\ntt0097336,\"{'Paul Newman': 'General Leslie R. Groves', 'Dwight Schultz': 'J. Robert Oppenheimer', 'Bonnie Bedelia': 'Kitty Oppenheimer', 'John Cusack': 'Michael Merriman', 'Laura Dern': 'Kathleen Robinson', 'Ron Frazier': 'Peer de Silva', 'John C. McGinley': 'Richard Schoenfield', 'Natasha Richardson': 'Jean Tatlock', 'Ron Vawter': 'Jamie Latrobe', 'Michael Brockman': \"\"William 'Deke' Parsons\"\", 'Del Close': 'Dr. Kenneth Whiteside', 'John Considine': 'Robert Tuckson', 'Allan Corduner': 'Franz Goethe       (as Alan Corduner)', \"\"Joe D'Angerio\"\": \"\"Seth Neddermeyer       (as Joseph D'Angerio)\"\", 'Jon DeVries': 'Johnny Mount       (as Jon De Vries)'}\"\r\ntt0418647,\"{'Kurt Russell': 'Ben Crane', 'Dakota Fanning': 'Cale Crane', 'Kris Kristofferson': 'Pop Crane', 'Elisabeth Shue': 'Lily', 'David Morse': 'Palmer', 'Freddy Rodríguez': 'Manolin', 'Luis Guzmán': 'Balon', 'Oded Fehr': 'Prince Sadir', 'Ken Howard': 'Bill Ford', 'Holmes Osborne': 'Doc Fleming', 'Antonio Badrani': 'Prince Tariq       (as Antonio Albadran)', 'John Moyer': 'Security Officer', 'Kayren Butler': 'Teacher', 'Tommy Barnes': 'Short Steward', 'Frank Hoyt Taylor': 'Chairman'}\"\r\ntt0044509,\"{'Burt Lancaster': 'Doc Delaney', 'Shirley Booth': 'Lola Delaney', 'Terry Moore': 'Marie Buckholder', 'Richard Jaeckel': 'Turk Fisher', 'Philip Ober': 'Ed Anderson', 'Edwin Max': 'Elmo Huston', 'Lisa Golm': 'Mrs. Coffman', 'Walter Kelley': 'Bruce Cunningham'}\"\r\ntt0163983,\"{'Kim Basinger': \"\"Maggie O'Connor\"\", 'Jimmy Smits': 'John Travis', 'Holliston Coleman': 'Cody', 'Rufus Sewell': 'Eric Stark', 'Angela Bettis': 'Jenna', 'Christina Ricci': 'Cheri', 'Michael Gaston': 'Det. Frank Bugatti', 'Lumi Cavazos': 'Sister Rosa', 'Dimitra Arliss': 'Dahnya       (as Dimitra Arlys)', 'Eugene Lipinski': 'Stuart', 'Anne Betancourt': 'Maria', 'Ian Holm': 'Reverend Grissom', 'Helen Stenborg': 'Sister Joseph', 'Matthew Lemche': 'New Dawn Kid at Van', 'Dan Warry-Smith': 'New Dawn Kid'}\"\r\ntt0075765,\"{'Robert Shaw': 'Kabakov', 'Bruce Dern': 'Lander', 'Marthe Keller': 'Dahlia', 'Fritz Weaver': 'Sam Corley', 'Steven Keats': 'Robert Moshevsky', 'Bekim Fehmiu': 'Mohammed Fasil', 'Michael V. Gazzo': 'Muzi', 'William Daniels': 'Pugh', 'Walter Gotell': 'Colonel Riat', 'Victor Campos': 'Nageeb', 'Joseph Robbie': 'Joseph Robbie', 'Robert J. Wussler': 'Robert Wussler       (as Robert Wussler)', 'Pat Summerall': 'Pat Summerall', 'Tom Brookshier': 'Tom Brookshier', 'Walter Brooke': 'Fowler'}\"\r\ntt0326769,\"{'Laurence Fishburne': 'Smoke', 'Derek Luke': 'Kid', 'Orlando Jones': 'Soul Train', 'Djimon Hounsou': 'Motherland', 'Lisa Bonet': 'Queenie', 'Brendan Fehr': 'Stuntman', 'Larenz Tate': 'Wood', 'Kid Rock': 'Dogg', 'Rick Gonzalez': 'Primo', 'Meagan Good': 'Tina', 'Salli Richardson-Whitfield': 'Half & Half', 'Vanessa Bell Calloway': 'Anita', 'Dante Basco': 'Philly', 'Dionysio Basco': 'Flip       (as Dion Basco)', 'Tyson Beckford': 'Donny'}\"\r\ntt0109120,\"{'Tina Majorino': 'Toni Whitney', 'Chelsea Field': 'Thalice Whitney', 'Shane Meier': 'Steve Whitney', 'Aidan Pendleton': 'Paula Whitney', 'Shirley Broderick': 'Mrs. McCann', 'Keith Carradine': 'Harry Whitney', 'Andrea Libman': 'Mary May', 'Keith Szarabajka': 'Billy Baker', 'Joshua Jackson': 'Mark Baker', 'Jay Brazeau': 'Griff Armstrong', 'Bill Dow': 'Ellwyn', 'Joy Coghill': 'Betsy', 'Stephen Dimopoulos': 'Dan Snow', 'Frank C. Turner': 'John Miller', 'Kristian Ayre': 'Gerald'}\"\r\ntt1403865,\"{'Jeff Bridges': 'Rooster Cogburn', 'Hailee Steinfeld': 'Mattie Ross', 'Matt Damon': 'LaBoeuf', 'Josh Brolin': 'Tom Chaney', 'Barry Pepper': 'Lucky Ned Pepper', 'Dakin Matthews': 'Col. Stonehill', 'Jarlath Conroy': 'Undertaker', 'Paul Rae': 'Emmett Quincy', 'Domhnall Gleeson': 'Moon (The Kid)', 'Elizabeth Marvel': '40-Year-Old Mattie', 'Roy Lee Jones': 'Yarnell', 'Ed Corbin': 'Bear Man       (as Ed Lee Corbin)', 'Leon Russom': 'Sheriff', 'Bruce Green': 'Harold Parmalee', 'Candyce Hinkle': 'Boarding House Landlady'}\"\r\ntt0384680,\"{'Nicolas Cage': 'David Spritz', 'Michael Caine': 'Robert Spritzel', 'Hope Davis': 'Noreen', 'Gemmenne de la Peña': 'Shelly       (as Gemmenne De La Peña)', 'Nicholas Hoult': 'Mike', 'Michael Rispoli': 'Russ', 'Gil Bellows': 'Don', 'Judith McConnell': 'Lauren', 'Chris Marrs': 'DMV Guy', 'Dina Facklis': 'Andrea', 'J. Nicole Brooks': 'Clerk       (as Deanna NJ Brooks)', 'Sia A. Moody': 'Nurse       (as Sia Moody)', 'Guy Van Swearingen': 'Nipper Guy', 'Alexander Pine': 'Fast Food Employee       (as Alejandro Pina)', 'Jackson Bubala': 'Fast Food Child'}\"\r\ntt0100828,\"{'Jack Nicholson': 'Jake Gittes', 'Harvey Keitel': 'Jake Berman', 'Meg Tilly': 'Kitty Berman', 'Madeleine Stowe': 'Lillian Bodine', 'Eli Wallach': 'Cotton Weinberger', 'Rubén Blades': 'Mickey Nice', 'Frederic Forrest': 'Newty', 'David Keith': 'Loach', 'Richard Farnsworth': 'Earl Rawley', 'Tracey Walter': 'Tyrone Otley', 'Joe Mantell': 'Walsh', 'James Hong': 'Kahn', 'Perry Lopez': 'Captain Escobar', 'Jeff Morris': 'Tilton', 'Rebecca Broussard': 'Gladys'}\"\r\ntt0963794,\"{'Jonathan Tucker': 'Jeff', 'Jena Malone': 'Amy', 'Laura Ramsey': 'Stacy', 'Shawn Ashmore': 'Eric', 'Joe Anderson': 'Mathias', 'Sergio Calderón': 'Lead Mayan       (as Sergio Calderon)', 'Jesse Ramirez': 'Mayan Bowman', 'Balder Moreno': 'Mayan Horseman', 'Dimitri Baveas': 'Dimitri', 'Patricio Almeida Rodriguez': 'Taxi Driver', 'Mario Jurado': 'Mayan Archer', 'Luis Antonio Ramos': 'Mayan Rifleman       (as Luis Ramos)', 'Walter Quispe': 'Mayan Rifleman', 'Pauline Whyman': 'Wailing Woman', 'Nathan Vega': 'Mayan Boy'}\"\r\ntt0117331,\"{'Billy Zane': 'The Phantom /              Kit Walker', 'Kristy Swanson': 'Diana Palmer', 'Treat Williams': 'Xander Drax', 'Catherine Zeta-Jones': 'Sala       (as Catherine Zeta Jones)', 'James Remar': 'Quill', 'Cary-Hiroyuki Tagawa': 'The Great Kabai Sengh', 'Bill Smitrovich': 'Uncle Dave Palmer', 'Casey Siemaszko': 'Morgan', 'David Proval': 'Charlie Zephro', 'Joseph Ragno': 'Ray Zephro', 'Samantha Eggar': 'Lily Palmer', 'Jon Tenney': 'Jimmy Wells', 'Patrick McGoohan': \"\"Phantom's Dad\"\", 'Robert Coleby': 'Capt. Philip Horton', 'Al Ruscio': 'Police Commissioner Farley'}\"\r\ntt0059575,\"{'Rod Steiger': 'Sol Nazerman', 'Geraldine Fitzgerald': 'Marilyn Birchfield', 'Brock Peters': 'Rodriguez', 'Jaime Sánchez': 'Jesus Ortiz       (as Jaime Sanchez)', 'Thelma Oliver': \"\"Ortiz' Girl\"\", 'Marketa Kimbrell': 'Tessie', 'Baruch Lumet': 'Mendel', 'Juano Hernandez': 'Mr. Smith', 'Linda Geiser': 'Ruth Nazerman', 'Nancy R. Pollock': 'Bertha', 'Raymond St. Jacques': 'Tangee', 'John McCurry': 'Buck', 'Charles Dierkop': 'Robinson', 'Eusebia Cosme': 'Mrs. Ortiz', 'Warren Finnerty': 'Savarese'}\"\r\ntt0091129,\"{'J.L. Reate': 'The Golden Child', 'Eddie Murphy': 'Chandler Jarrell', 'Charles Dance': 'Sardo Numspa', 'Charlotte Lewis': 'Kee Nang', 'Victor Wong': 'The Old Man', \"\"Randall 'Tex' Cobb\"\": 'Til', 'James Hong': 'Doctor Hong', 'Shakti Chen': 'Kala       (as Shakti)', 'Tau Logo': 'Yu', 'Tiger Chung Lee': 'Khan', 'Pons Maar': 'Fu', 'Peter Kwong': 'Tommy Tong', 'Wally Taylor': 'Detective Boggs', 'Eric Douglas': 'Yellow Dragon', 'Charles Levin': 'TV Host'}\"\r\ntt0252028,\"{'Ben Affleck': 'Drew Latham', 'James Gandolfini': 'Tom Valco', 'Christina Applegate': 'Alicia Valco', \"\"Catherine O'Hara\"\": 'Christine Valco', 'Josh Zuckerman': 'Brian Valco', 'Bill Macy': 'Doo-Dah', 'Jennifer Morrison': 'Missy Vangilder', 'Udo Kier': 'Heinrich', 'David Selby': 'Horace Vangilder', 'Stephanie Faracy': 'Letitia Vangilder', 'Stephen Root': 'Dr. Freeman', 'Sy Richardson': 'Doo-Dah Understudy', 'Tangie Ambrose': 'Kathryn', \"\"John 'B.J.' Bryant\"\": 'Cabbie       (as John BJ Bryant)', 'Peter Jason': 'Suit'}\"\r\ntt0251075,\"{'David Duchovny': 'Ira', 'Julianne Moore': 'Allison', 'Orlando Jones': 'Harry', 'Seann William Scott': 'Wayne', 'Ted Levine': 'Gen. Woodman', 'Ethan Suplee': 'Deke', 'Michael Bower': 'Danny       (as Michael Ray Bower)', 'Pat Kilbane': 'Officer Johnson', 'Ty Burrell': 'Flemming', 'Dan Aykroyd': 'Governor Lewis', 'Katharine Towne': 'Nadine', 'Gregory Itzin': 'Cartwright', 'Ashley Clark': 'Lt. Cryer', 'Michelle Wolff': 'Carla', 'Sarah Silverman': 'Denise'}\"\r\ntt0249478,\"{'John Travolta': 'Frank Morrison', 'James Lashly': 'Jason', 'Rebecca Tilney': 'Laurie', 'Debra Mooney': 'Theresa', 'Vince Vaughn': 'Rick Barnes', 'Teri Polo': 'Susan', 'Leland L. Jones': 'Coach Mark', \"\"Matt O'Leary\"\": \"\"Danny Morrison       (as Matthew O'Leary)\"\", 'Ruben Santiago-Hudson': 'Sgt. Edgar Stevens', 'Susan Floyd': 'Diane', 'William Parry': 'Don Patterson', 'Suzanne Nystrom': 'Wedding Coordinator', 'George Christy': 'Wedding Photographer', 'Steve Buscemi': 'Ray Coleman', 'David Bridgewater': 'Priest'}\"\r\ntt0821642,\"{'Jamie Foxx': 'Nathaniel Ayers', 'Robert Downey Jr.': 'Steve Lopez', 'Catherine Keener': 'Mary Weston', 'Tom Hollander': 'Graham Claydon', 'LisaGay Hamilton': 'Jennifer Ayers       (as Lisagay Hamilton)', 'Nelsan Ellis': 'David Carter', 'Rachael Harris': 'Leslie Bloom', 'Stephen Root': 'Curt Reynolds', 'Lorraine Toussaint': 'Flo Ayers', 'Justin Martin': 'Young Nathaniel', 'Kokayi Ampah': 'Bernie Carpenter', 'Patrick Tatten': 'Paul Jr.', 'Susane Lee': 'Marisa       (as Susane E. Lee)', 'Marcos De Silvas': 'Mayor Villaraigosa', 'Ilia Volok': 'Harry Barnoff'}\"\r\ntt0105327,\"{'Brendan Fraser': 'David Greene', 'Matt Damon': 'Charlie Dillon', \"\"Chris O'Donnell\"\": 'Chris Reece', 'Randall Batinkoff': 'Rip Van Kelt', 'Andrew Lowery': \"\"'Mack' McGivern\"\", 'Cole Hauser': 'Jack Connors', 'Ben Affleck': 'Chesty Smith', 'Anthony Rapp': \"\"Richard 'McGoo' Collins\"\", 'Amy Locane': 'Sally Wheeler', 'Peter Donat': 'Headmaster Dr. Bartram', 'Zeljko Ivanek': 'Mr. Cleary', 'Kevin Tighe': 'Coach McDevitt', 'Michael Higgins': 'Mr. Gierasch', 'Ed Lauter': 'Alan Greene', 'Peter McRobbie': 'Chaplain'}\"\r\ntt0069097,\"{'Woody Allen': 'Allan', 'Diane Keaton': 'Linda', 'Tony Roberts': 'Dick', 'Jerry Lacy': 'Bogart', 'Susan Anspach': 'Nancy', 'Jennifer Salt': 'Sharon', 'Joy Bang': 'Julie', 'Viva': 'Jennifer', 'Susanne Zenor': 'Discotheque Girl       (as Suzanne Zenor)', 'Diana Davila': 'Museum Girl', 'Mari Fletcher': 'Fantasy Sharon', 'Michael Greene': 'Hood #1', 'Ted Markland': 'Hood #2'}\"\r\ntt0090357,\"{'Nicholas Rowe': 'Sherlock Holmes', 'Alan Cox': 'John Watson', 'Sophie Ward': 'Elizabeth Hardy', 'Anthony Higgins': 'Professor Rathe', 'Susan Fleetwood': 'Mrs. Dribb', 'Freddie Jones': 'Chester Cragwitch', 'Nigel Stock': 'Rupert T. Waxflatter', 'Roger Ashton-Griffiths': 'Det. Sgt. Lestrade', 'Earl Rhodes': 'Dudley', 'Brian Oulton': 'Master Snelgrove', 'Patrick Newell': 'Bentley Bobster', 'Donald Eccles': 'The Reverend Duncan Nesbitt', 'Matthew Ryan': \"\"Dudley's Friend\"\", 'Matthew Blakstad': \"\"Dudley's Friend\"\", 'Jonathan Lacey': \"\"Dudley's Friend\"\"}\"\r\ntt0756729,\"{'Molly Shannon': 'Peggy', 'Laura Dern': 'Bret', 'Regina King': 'Layla', 'Tom McCarthy': 'Pier       (as Thomas McCarthy)', 'Josh Pais': 'Robin', 'John C. Reilly': 'Al', 'Peter Sarsgaard': 'Newt', 'Amy Schlagel': 'Lissie', 'Zoe Schlagel': 'Lissie', 'Dale Godboldo': 'Don', 'Inara George': 'Holly', 'Liza Weil': 'Trishelle', 'Jon Shere': 'Pound Employee', 'Christy Moore': \"\"Al's Girlfriend       (as Christy Lynn Moore)\"\", 'Audrey Wasilewski': 'Audrey'}\"\r\ntt0364751,\"{'Matthew Price': 'Young Tom', 'Andrew Hampton': 'Young Jerry', 'Jarred Rumbold': 'Young Dan', 'Carl Snell': 'Young Billy', 'Antony Starr': 'Billy Newwood       (as Anthony Starr)', 'Dax Shepard': 'Tom Marshall', 'Matthew Lillard': 'Jerry Conlaine', 'Seth Green': 'Dan Mott', 'Nadine Bernecker': 'Angie', 'Danielle Cormack': 'Tony', 'David Stott': 'Dick Stark', 'Bonnie Somerville': 'Denise', 'Scott Adsit': 'Greasy Man', 'Morgan Reese Fairhead': 'Sandi', 'Liddy Holloway': 'Bonnie Newwood'}\"\r\ntt0277434,\"{'Mel Gibson': 'Lt. Col. Hal Moore', 'Madeleine Stowe': 'Julie Moore', 'Greg Kinnear': \"\"Maj. Bruce 'Snake' Crandall\"\", 'Sam Elliott': 'Sgt. Maj. Basil Plumley', 'Chris Klein': '2nd Lt. Jack Geoghegan', 'Keri Russell': 'Barbara Geoghegan', 'Barry Pepper': 'Joe Galloway', 'Duong Don': 'Lt. Col. Nguyen Huu An', 'Ryan Hurst': 'Sgt. Ernie Savage', 'Robert Bagnell': '1st Lt. Charlie Hastings', 'Marc Blucas': '2nd Lt. Henry Herrick', 'Josh Daugherty': 'Sp4 Robert Ouellette', 'Jsu Garcia': 'Capt. Tony Nadal', 'Jon Hamm': 'Capt. Matt Dillon', 'Clark Gregg': 'Capt. Tom Metsker'}\"\r\ntt1193138,\"{'George Clooney': 'Ryan Bingham', 'Vera Farmiga': 'Alex Goran', 'Anna Kendrick': 'Natalie Keener', 'Jason Bateman': 'Craig Gregory', 'Amy Morton': 'Kara Bingham', 'Melanie Lynskey': 'Julie Bingham', 'J.K. Simmons': 'Bob', 'Sam Elliott': 'Maynard Finch', 'Danny McBride': 'Jim Miller', 'Zach Galifianakis': 'Steve', 'Chris Lowell': 'Kevin', 'Steve Eastin': 'Samuels', 'Marvin Young': 'Young MC', 'Cut Chemist': 'Conference DJ', 'Adrienne Lamping': 'Tammy'}\"\r\ntt0073747,\"{'Katharine Ross': 'Joanna Eberhart', 'Paula Prentiss': 'Bobbie Markowe', 'Peter Masterson': 'Walter Eberhart', 'Nanette Newman': 'Carol Van Sant', 'Tina Louise': 'Charmaine Wimpiris', 'Carol Eve Rossen': 'Dr. Fancher       (as Carol Rossen)', 'William Prince': 'Ike Mazzard', 'Carole Mallory': 'Kit Sunderson', 'Toni Reid': 'Marie Axhelm', 'Judith Baldwin': 'Patricia Cornell', 'Barbara Rucker': 'Mary Ann Stravros', 'George Coe': 'Claude Axhelm', 'Franklin Cover': 'Ed Wimpiris', 'Robert Fields': 'Raymond Chandler', 'Michael Higgins': 'Mr. Cornell'}\"\r\ntt0345950,\"{'Tom Kenny': 'SpongeBob /              Narrator /              Gary /              Clay /              Tough Fish #2 /              Twin #2 /              Houston Voice       (voice)', 'Clancy Brown': 'Mr. Krabs       (voice)', 'Rodger Bumpass': 'Squidward /              Fish #4       (voice)', 'Bill Fagerbakke': 'Patrick Star /              Fish #2 /              Chum Customer /              Local Fish       (voice)', 'Mr. Lawrence': 'Plankton /              Fish #7 /              Attendant #2, Lloyd       (voice)', 'Jill Talley': 'Karen /              Old Lady       (voice)', 'Carolyn Lawrence': 'Sandy       (voice)', 'Mary Jo Catlett': 'Mrs. Puff       (voice)', 'Jeffrey Tambor': 'King Neptune       (voice)', 'Scarlett Johansson': 'Mindy       (voice)', 'Alec Baldwin': 'Dennis       (voice)', 'David Hasselhoff': 'David Hasselhoff', 'Kristopher Logan': 'Squinty the Pirate', 'D.P. FitzGerald': 'Bonesy the Pirate', 'Cole S. McKay': 'Scruffy the Pirate       (as Cole McKay)'}\"\r\ntt0416236,\"{'Freddie Highmore': 'Jared Grace /              Simon Grace', 'Mary-Louise Parker': 'Helen Grace', 'Nick Nolte': 'Mulgarath', 'Sarah Bolger': 'Mallory Grace', 'Andrew McCarthy': 'Richard Grace', 'Joan Plowright': 'Aunt Lucinda Spiderwick', 'David Strathairn': 'Arthur Spiderwick', 'Seth Rogen': 'Hogsqueal       (voice)', 'Martin Short': 'Thimbletack       (voice)', 'Jordy Benattar': 'Young Lucinda Spiderwick', 'Tod Fennell': \"\"Helen's Co-Worker\"\", 'Mariah Inger': 'Nurse', 'Jeremy Lavalley': 'Tow Truck Driver', 'Lise Durocher-Viens': 'Mrs. Spiderwick', 'Tyler Patrick Jones': 'Additional Performer'}\"\r\ntt0120053,\"{'Val Kilmer': 'Simon Templar', 'Elisabeth Shue': 'Dr. Emma Russell', 'Rade Serbedzija': 'Ivan Tretiak', 'Valeriy Nikolaev': 'Ilya Tretiak       (as Valery Nikolaev)', 'Henry Goodman': 'Dr. Lev Botvin', 'Alun Armstrong': 'Inspector Teal', 'Michael Byrne': \"\"Vereshagin, Tretiak's Aide\"\", 'Evgeniy Lazarev': 'President Karpov       (as Evgeny Lazarev)', 'Irina Apeksimova': 'Frankie       (as Irina Apeximova)', 'Lev Prygunov': 'General Sklarov       (as Lev Prigunov)', 'Charlotte Cornwell': 'Inspector Rabineau', 'Emily Mortimer': 'Woman on Plane', 'Lucija Serbedzija': 'Russian Prostitute', 'Velibor Topic': 'Skinhead', 'Tommy Flanagan': 'Scarface'}\"\r\ntt0120844,\"{'Patrick Stewart': 'Picard', 'Jonathan Frakes': 'Riker', 'Brent Spiner': 'Data', 'LeVar Burton': 'Geordi       (as Levar Burton)', 'Michael Dorn': 'Worf', 'Gates McFadden': 'Beverly', 'Marina Sirtis': 'Troi', 'F. Murray Abraham': \"\"Ru'afo\"\", 'Donna Murphy': 'Anij', 'Anthony Zerbe': 'Dougherty', 'Gregg Henry': 'Gallatin', 'Daniel Hugh Kelly': 'Sojef', 'Michael Welch': 'Artim', 'Mark Deakins': 'Tournel', 'Stephanie Niznik': 'Perim'}\"\r\ntt0113972,\"{'Johnny Depp': 'Gene Watson', 'Courtney Chase': 'Lynn Watson', 'Charles S. Dutton': 'Huey', 'Christopher Walken': 'Mr. Smith', 'Roma Maffia': 'Ms. Jones', 'Marsha Mason': 'Governor Eleanor Grant', 'Peter Strauss': 'Brendan Grant', 'Gloria Reuben': 'Krista Brooks', 'Bill Smitrovich': 'Officer Trust', 'G.D. Spradlin': 'Mystery Man', 'Yul Vazquez': 'Gustino (Guest Services)', 'Edith Diaz': 'Irene (Domestic Maintenance)', 'Armando Ortega': 'Hector (Guest Services)', 'C.J. Bau': 'Mixologist', 'Cynthena Sanders': 'Beverage Server'}\"\r\ntt0377091,\"{'Rory Culkin': 'Sam Merrick', 'Ryan Kelley': 'Clyde', 'Scott Mechlowicz': 'Marty Blank', 'Trevor Morgan': 'Rocky Merrick', 'Josh Peck': 'George Tooney', 'Carly Schroeder': 'Millie', 'Branden Williams': 'Kile', 'Raissa Fleming': 'Maggie Tooney', 'Heath Lourwood': 'Jasper', 'Ryan Peterson': 'Cashier', 'Michael Fisher-Welsh': 'Mr. Levinworth', 'J.W. Crawford': 'Tom       (as James W. Crawford)', 'Shelly Lipkin': 'Mr. Merrick', 'Kaz Garas': 'Detective Wright', 'Hagai Shaham': 'Handsome Police Officer'}\"\r\ntt0115678,\"{'Marc Anthony': 'Cristiano', 'Tony Shalhoub': 'Primo', 'Stanley Tucci': 'Secondo', 'Larry Block': 'Man in Restaurant', 'Caroline Aaron': 'Woman in Restaurant', 'Andre Belgrader': 'Stash       (as Andrei Belgrader)', 'Minnie Driver': 'Phyllis', 'Peter McRobbie': 'Loan Officer', 'Isabella Rossellini': 'Gabriella', 'Liev Schreiber': 'Leo', 'Pasquale Cajano': 'Alberto N. Pisani', 'Christine Tucci': 'Woman Singer', 'Gene Canfield': 'Charlie', 'Ian Holm': 'Pascal', 'Allison Janney': 'Ann'}\"\r\ntt0120696,\"{'Morgan Freeman': 'Jim', 'Christian Slater': 'Tom', 'Randy Quaid': 'Sheriff Mike Collins', 'Minnie Driver': 'Karen', 'Edward Asner': 'Uncle Charlie', 'Michael A. Goorjian': 'Kenny       (as Michael Goorjian)', 'Dann Florek': 'Mr. Mehlor', 'Ricky Harris': 'Ray', 'Mark Rolston': 'Wayne Bryce', 'Peter Murnik': 'Phil', 'Wayne Duvall': 'Hank', 'Richard Dysart': 'Henry Sears', 'Betty White': 'Doreen Sears', 'Ray Baker': 'Mayor', 'Lisa Fuhrman': \"\"Mayor's Wife\"\"}\"\r\ntt1126618,\"{'Rachel McAdams': 'Becky', 'Noah Bean': 'First Date', 'Jack Davidson': 'Dog Walking Neighbor', 'Vanessa Aspillaga': 'Anna', 'Jeff Hiller': 'Sam - Channel 9 Producer', 'Linda Powell': 'Louanne', 'Mike Hydeck': 'Ralph', 'Joseph J. Vargas': 'Channel 9 Director', 'Mario Frieson': 'Channel 9 Technical Director', 'Kevin Herbst': 'Channel 9 Associate Director', 'Jerome Weinstein': 'Fred', 'Steve Park': 'Channel 9 Weatherperson       (as Stephen Park)', 'David Fonteno': 'Oscar', \"\"Patti D'Arbanville\"\": \"\"Becky's Mom\"\", 'Jeff Goldblum': 'Jerry Barnes'}\"\r\ntt0114857,\"{'Denzel Washington': 'Lt. Parker Barnes', 'Kelly Lynch': 'Madison Carter', 'Russell Crowe': 'SID 6.7', 'Stephen Spinella': 'Lindenmeyer', 'William Forsythe': 'William Cochran', 'Louise Fletcher': 'Elizabeth Deane', 'William Fichtner': 'Wallace', 'Costas Mandylor': 'John Donovan', \"\"Kevin J. O'Connor\"\": 'Clyde Reilly', 'Kaley Cuoco': 'Karin Carter', 'Christopher Murray': 'Matthew Grimes', 'Heidi Schanz': 'Sheila 3.2', 'Traci Lords': 'Media Zone Singer', 'Gordon Jennison Noice': 'Big Red       (as J. Gordon Noice)', 'Mari Morrow': 'Linda Barnes'}\"\r\ntt0272020,\"{'Robert Redford': 'General Irwin', 'James Gandolfini': 'Col. Winter', 'Mark Ruffalo': 'Yates', 'Steve Burton': 'Capt. Peretz', 'Delroy Lindo': 'Gen. Wheeler', 'Paul Calderon': 'Dellwo', 'Sam Ball': 'Duffy       (as Samuel Ball)', 'Jeremy Childs': 'Cutbush', 'Clifton Collins Jr.': 'Aguilar', 'George W. Scott': 'Thumper', 'Brian Goodman': 'Beaupre', 'Michael Irby': 'Enriquez', 'Frank Military': 'Doc', 'Maurice Bullard': 'Sgt. McLaren', 'Nick Kokich': 'Pvt. Niebolt'}\"\r\ntt0406650,\"{'Jamie Bell': 'Dean', 'Camilla Belle': 'Crystal', 'Justin Chatwin': 'Billy', 'Glenn Close': 'Mrs. Johnson', 'Kathi Copeland': 'Parent #1       (as Kathy Copeland)', 'Rory Culkin': 'Charlie Stiffle', 'Thomas Curtis': 'Charlie Bratley', 'Tim DeKay': 'Mr. Peck', 'David Ellison': 'Student #1       (as David Ellsion)', 'William Fichtner': 'Mr. Bill Stiffle', 'Ralph Fiennes': 'Mayor Michael Ebbs', 'Richard Gleason': 'Parent #2', 'Caroline Goodall': 'Mrs. Parker', 'John Heard': 'Officer Lou Bratley', 'Susan Hegarty': 'Aide to Mayor Ebbs'}\"\r\ntt0830558,\"{'William Atherton': 'Adult David Moran', 'Blythe Auffarth': 'Meg Loughlin', 'Blanche Baker': 'Ruth Chandler', 'Kevin Chamberlin': 'Officer Jennings', 'Dean Faulkenberry': 'Kenny', 'Gabrielle Howarth': 'Cheryl Robinson', 'Benjamin Ross Kaplan': 'Donny Chandler       (as Ben Kaplan)', 'Spenser Leigh': 'Denise Crocker', 'Daniel Manche': 'David Moran', 'Mark Margolis': 'Homeless Man Hit By Car', 'Graham Patrick Martin': 'Willie Chandler Jr.', 'Michael Nardella': 'Tony', 'Greg Northrop': 'Police Officer #2       (as Gregory Northtrop)', 'Grant Show': 'Mr. Moran', 'Santo Silvestro': 'Ice Cream Vendor'}\"\r\ntt0097481,\"{'Eddie Murphy': 'Quick', 'Richard Pryor': 'Sugar Ray', 'Redd Foxx': 'Bennie Wilson', 'Danny Aiello': 'Phil Cantone', 'Michael Lerner': 'Bugsy Calhoune', 'Della Reese': 'Vera', 'Berlinda Tolbert': 'Annie', 'Stan Shaw': 'Jack Jenkins', 'Jasmine Guy': 'Dominique La Rue', 'Vic Polizos': 'Richie Vento', 'Lela Rochon': 'Sunshine', 'David Marciano': 'Tony', 'Arsenio Hall': 'Crying Man', 'Thomas Mikal Ford': 'Tommy Smalls       (as Tommy Ford)', 'Uncle Ray Murphy': 'Willie       (as Uncle Ray)'}\"\r\ntt0084021,\"{'Maxwell Caulfield': 'Michael', 'Michelle Pfeiffer': 'Stephanie', 'Lorna Luft': 'Paulette', 'Maureen Teefy': 'Sharon', 'Alison Price': 'Rhonda', 'Pamela Adlon': 'Dolores       (as Pamela Segall)', 'Adrian Zmed': 'Nogerelli', 'Peter Frechette': 'DiMucci', 'Christopher McDonald': 'Goose', 'Leif Green': 'Davey', 'Didi Conn': 'Frenchy', 'Eve Arden': 'Miss McGee', 'Sid Caesar': 'Coach Calhoun', 'Dody Goodman': 'Blanche', 'Tab Hunter': 'Mr. Stuart'}\"\r\ntt0077621,\"{'Jack Nicholson': 'Henry Lloyd Moon', 'Mary Steenburgen': 'Julia Tate Moon', 'Christopher Lloyd': 'Deputy Towfield', 'John Belushi': 'Deputy Hector', 'Veronica Cartwright': \"\"Hermine, Moon's Old Gang\"\", 'Richard Bradford': 'Sheriff Andrew Kyle', 'Jeff Morris': \"\"Big Abe, Moon's Old Gang\"\", 'Danny DeVito': \"\"Hog, Moon's Old Gang\"\", 'Tracey Walter': \"\"Coogan, Moon's Old Gang\"\", 'Gerald H. Reynolds': 'Polty, Rail Road Manager', 'Luana Anders': 'Lorette Anderson', 'George W. Smith': 'Mr. Anderson', 'Lucy Lee Flippin': 'Diane Haber', 'Ed Begley Jr.': 'Whitey Haber', 'Maureen Byrnes': 'Mrs. Warren'}\"\r\ntt0335559,\"{'Kate Bosworth': 'Rosalee Futch', 'Topher Grace': 'Pete Monash', 'Josh Duhamel': 'Tad Hamilton', 'Nathan Lane': 'Richard Levy the Driven', 'Sean Hayes': 'Richard Levy the Shameless', 'Gary Cole': 'Henry Futch', 'Ginnifer Goodwin': 'Cathy Feely', 'Kathryn Hahn': 'Angelica', 'Octavia Spencer': 'Janine', 'Amy Smart': 'Nurse Betty', 'Ren Trostle': 'Porsche Woman', 'Wendy Worthington': 'Customer', 'Stephen Tobolowsky': 'George Ruddy', 'Moon Bloodgood': 'Gorgeous Woman', 'Mary Jo Smith': 'Sonja'}\"\r\ntt0272207,\"{'Dan Leis': 'Elvin Dowd', 'Jason Patric': 'Nick Tellis', 'Lloyd Adams': 'Walter Dandridge', 'Meagan Issa': 'Little Girl', 'Lina Giornofelice': 'Jeanine Mueller       (as Lina Felice)', 'A.C. Peterson': 'Freeman Franks       (as Alan C. Peterson)', 'Karen Robinson': 'Liz Detmer', 'Chi McBride': 'Captain Cheevers', 'Booth Savage': 'Cecil Mitchum', 'Alan Van Sprang': 'Michael Calvess', 'Gavyn Donaldson': \"\"Tellis' Infant Son\"\", 'Myles Donaldson': \"\"Tellis' Infant Son\"\", 'Krista Bridges': 'Audrey Tellis', 'Ray Liotta': 'Henry Oak', 'Thomas Patrice': 'Officer Marcotte'}\"\r\ntt0338564,\"{'Andy Lau': 'Inspector Lau Kin Ming', 'Tony Chiu-Wai Leung': 'Chen Wing Yan       (as Tony Leung)', 'Anthony Chau-Sang Wong': 'SP Wong Chi Shing       (as Anthony Wong)', 'Eric Tsang': 'Hon Sam', 'Kelly Chen': 'Dr. Lee Sum Yee', 'Sammi Cheng': 'Mary', 'Edison Chen': 'Young Lau Kin Ming', 'Shawn Yue': 'Young Chan Wing Yan', 'Elva Hsiao': 'May', 'Chapman To': 'Tsui Wai-keung', 'Ka Tung Lam': 'Inspector B       (as Lam Ka Tung)', 'Ting Yip Ng': 'Inspector Cheung       (as Ng Ting Yip)', 'Dion Lam': 'Del Piero', 'Chi Keung Wan': 'Officer Leung       (as Wan Chi Keung)', 'Hui Kam Fung': 'Cadet School Principal'}\"\r\ntt0113451,\"{'David Caruso': 'David Corelli', 'Linda Fiorentino': 'Trina Gavin', 'Chazz Palminteri': 'Matt Gavin', 'Richard Crenna': 'Governor Edwards', 'Michael Biehn': 'Bob Hargrove', 'Donna Murphy': 'Karen Heller', 'Ken King': 'Petey Vasko', 'Holt McCallany': 'Bill Barrett', 'David Hunt': 'Pat Callendar', 'Angie Everhart': 'Patrice Jacinto', 'Kevin Tighe': 'D.A. Arnold Clifford', 'Robin Thomas': 'Mr. Green', 'Jay Jacobus': 'Justin Henderson', 'Victoria Smith': 'Sandy', 'Drew Snyder': 'Executive'}\"\r\ntt0780567,\"{'Eddie Murphy': 'Evan Danielson', 'Thomas Haden Church': 'Johnny Whitefeather', 'Yara Shahidi': 'Olivia Danielson', 'Ronny Cox': 'Tom Stevens', 'Stephen Rannazzisi': 'Noah Kulick', 'Nicole Ari Parker': 'Trish', 'DeRay Davis': 'John Strother', 'Vanessa Williams': 'Lori Strother', 'Martin Sheen': \"\"Dante D'Enzo\"\", 'Lauren Weedman': 'Rose', 'Timm Sharp': 'Tod', 'Daniel Polo': 'Indigo', 'Stephen Root': 'Fred Franklin', 'Richard Schiff': 'Carl Simons', 'Marin Hinkle': 'Ms. Davis'}\"\r\ntt0343121,\"{'Tupac Shakur': 'Himself       (archive footage)', \"\"Rappin' 4-Tay\"\": 'Himself       (archive footage)', 'Conrad Bain': '(archive footage)', 'Bill Bellamy': 'Himself       (archive footage)', 'William J. Bennett': 'Himself       (archive footage)', 'Todd Bridges': '(archive footage)', 'Pat Buchanan': 'Himself       (archive footage)', 'James Cagney': '(archive footage)', 'Connie Chung': 'Herself       (archive footage)', 'Eldridge Cleaver': 'Himself       (archive footage)', 'Kathleen Cleaver': 'Herself       (archive footage)', 'Gary Coleman': 'Himself       (archive footage)', \"\"Sean 'Diddy' Combs\"\": 'Himself       (archive footage) (as Puffy Combs)', 'Chris Connelly': 'Himself       (archive footage)', \"\"Anthony 'Treach' Criss\"\": 'Himself       (archive footage)'}\"\r\ntt0815245,\"{'Emily Browning': 'Anna', 'Arielle Kebbel': 'Alex', 'David Strathairn': 'Steven', 'Elizabeth Banks': 'Rachel', 'Maya Massar': 'Mom', 'Kevin McNulty': 'Sheriff Emery', 'Jesse Moss': 'Matt', 'Dean Paul Gibson': 'Dr. Silberling', 'Don S. Davis': 'Mr. Henson', 'Lex Burnham': 'Iris', 'Matthew Bristol': 'David', 'Daniel Bristol': 'Samuel       (as Danny Bristol)', 'Heather Doerksen': 'Mildred', 'Alf Humphreys': 'Priest       (as Alfred E. Humphreys)', 'Ryan Cowie': 'Orderly'}\"\r\ntt0327162,\"{'Nicole Kidman': 'Joanna Eberhart', 'Matthew Broderick': 'Walter Kresby', 'Bette Midler': 'Bobbie Markowitz', 'Glenn Close': 'Claire Wellington', 'Christopher Walken': 'Mike Wellington', 'Roger Bart': 'Roger Bannister', 'David Marshall Grant': 'Jerry Harmon', 'Jon Lovitz': 'Dave Markowitz', 'Dylan Hartigan': 'Pete Kresby', 'Fallon Brooking': 'Kimberly Kresby', 'Faith Hill': 'Sarah Sunderson', 'Matt Malloy': 'Herb Sunderson', 'Kate Shindle': 'Beth Peters', 'Tom Riis Farrell': 'Stan Peters', 'Lorri Bagley': 'Charmaine Van Sant'}\"\r\ntt0119874,\"{'George Clooney': 'Lt. Col. Thomas Devoe', 'Nicole Kidman': 'Dr. Julia Kelly', 'Marcel Iures': 'Dusan Gavrich', 'Aleksandr Baluev': 'General Aleksandr Kodoroff       (as Alexander Baluev)', 'Rene Medvesek': 'Vlado Mirich', 'Gary Werntz': 'Terry Hamilton', 'Randall Batinkoff': 'Ken', 'Jim Haynie': 'General Garnett', 'Alexander Strobele': 'Dietrich Schuhmacher', 'Holt McCallany': 'Mark Appleton', 'Michael Boatman': 'CPN Beach', 'Joan Copeland': 'Senator Helen Bevens', 'Carlos Gómez': 'Santiago', 'Armin Mueller-Stahl': 'Dimitri Vertikoff', 'Slavko Juraga': 'Stevo'}\"\r\ntt0171363,\"{'Liam Neeson': 'Dr. David Marrow', 'Catherine Zeta-Jones': 'Theo', 'Owen Wilson': 'Luke Sanderson', 'Lili Taylor': 'Nell', 'Bruce Dern': 'Mr. Dudley', 'Marian Seldes': 'Mrs. Dudley', 'Alix Koromzay': 'Mary Lambetta', 'Todd Field': 'Todd Hackett', 'Virginia Madsen': 'Jane', 'Michael Cavanaugh': 'Dr. Malcolm Keogh', 'Tom Irwin': 'Lou', 'Charles Gunning': 'Hugh Crain', 'Saul Priever': 'Ritchie', 'M.C. Gainey': 'Large Man', 'Hadley Eure': 'Carolyn Crain'}\"\r\ntt0253754,\"{'Patrick Stewart': 'Jean-Luc Picard', 'Jonathan Frakes': 'William Riker', 'Brent Spiner': 'Data /              B-4', 'LeVar Burton': 'Geordi La Forge', 'Michael Dorn': 'Worf', 'Marina Sirtis': 'Deanna Troi', 'Gates McFadden': 'Beverly Crusher', 'Tom Hardy': 'Shinzon', 'Ron Perlman': 'Viceroy', 'Shannon Cochran': \"\"Senator Tal'aura\"\", 'Dina Meyer': 'Commander Donatra', 'Jude Ciccolella': 'Commander Suran', 'Alan Dale': 'Praetor Hiren', 'John Berg': 'Senator', 'Michael Owen': 'Helm Officer Branson'}\"\r\ntt0785006,\"{'Emma Roberts': 'Andi', 'Jake T. Austin': 'Bruce', 'Don Cheadle': 'Bernie', 'Johnny Simmons': 'Dave', 'Kyla Pratt': 'Heather', 'Troy Gentile': 'Mark', 'Lisa Kudrow': 'Lois Scudder', 'Kevin Dillon': 'Carl Scudder', 'Ajay Naidu': 'ACO Jake', 'Eric Edelstein': 'ACO Max', 'Robinne Lee': 'Carol', 'Yvette Nicole Brown': 'Ms. Camwell', 'Maximiliano Hernández': 'Officer Mike       (as Maximiliano Hernandez)', 'Andre Ware': 'Officer Jeff', 'Jonathan Klein': 'Evan'}\"\r\ntt0995039,\"{'Greg Kinnear': 'Frank', 'Jordan Carlos': 'Young Husband', 'Dequina Moore': 'Young Wife', 'Joseph Badalucco Jr.': 'Accident Bystander       (as Joe Badalucco)', 'Brian Hutchison': 'Accident Bystander', 'Tyree Michael Simpson': 'Sneezy Cop       (as Tyre Simpson)', 'Julia Murney': 'Sneezy Lady', 'Ricky Gervais': 'Pincus', 'Claire Lautier': 'Upper East Side Lady', 'Aasif Mandvi': 'Dr. Prashar', 'Bridget Moloney': 'Receptionist', 'Raymond J. Lee': 'Greenpeace Guy       (as Raymond Lee)', 'Joey Mazzarino': 'Food Delivery Guy', 'Brad Oscar': 'Day Doorman', 'Kathleen Landis': 'Resident'}\"\r\ntt0486822,\"{'Shia LaBeouf': 'Kale', 'Sarah Roemer': 'Ashley', 'Carrie-Anne Moss': 'Julie', 'David Morse': 'Mr. Turner', 'Aaron Yoo': 'Ronnie', 'Jose Pablo Cantillo': 'Officer Gutierrez', 'Matt Craven': 'Daniel Brecht', 'Viola Davis': 'Detective Parker', 'Brandon Caruso': 'Greenwood Boy', 'Luciano Rauso': 'Greenwood Boy', 'Daniel Caruso': 'Greenwood Boy', 'Kevin Quinn': 'Mr. Carlson', 'Elyse Mirto': 'Mrs. Carlson', 'Suzanne Rico': 'News Anchor', 'Kent Shocknek': 'News Anchor'}\"\r\ntt0099044,\"{'Eddie Murphy': 'Reggie Hammond', 'Nick Nolte': 'Jack Cates', 'Brion James': 'Ben Kehoe', 'Kevin Tighe': 'Blake Wilson', \"\"Ed O'Ross\"\": 'Frank Cruise', 'David Anthony Marshall': 'Willie Hickok', 'Andrew Divoff': \"\"Richard 'Cherry' Ganz\"\", 'Bernie Casey': 'Kirkland Smith', 'Brent Jennings': 'Tyrone Burroughs', 'Ted Markland': 'Malcolm Price', 'Tisha Campbell-Martin': 'Amy Smith       (as Tisha Campbell)', 'Felice Orlandi': 'Warden', 'Edward Walsh': 'Detective Joe Stevens', 'Page Leong': 'Angel Lee', 'Cathy Haase': 'Girl Bartender'}\"\r\ntt0120324,\"{'Bill Paxton': 'Hank', 'Bridget Fonda': 'Sarah', 'Billy Bob Thornton': 'Jacob', 'Brent Briscoe': 'Lou', 'Jack Walsh': 'Tom Butler', 'Chelcie Ross': 'Carl', 'Becky Ann Baker': 'Nancy Chambers', 'Gary Cole': 'Baxter', 'Bob Davis': 'FBI Agent Renkins', 'Peter Syvertsen': 'FBI Agent Freemont', 'Tom Carey': 'Dwight Stephanson', 'John Paxton': 'Mr. Schmitt', 'Marie Mathay': 'News Reporter', 'Paul Magers': 'Anchorman', 'Joan Steffand': 'Anchorwoman'}\"\r\ntt0964517,\"{'Mark Wahlberg': 'Micky Ward', 'Christian Bale': 'Dicky Eklund', 'Amy Adams': 'Charlene Fleming', 'Melissa Leo': 'Alice Ward', \"\"Mickey O'Keefe\"\": \"\"Mickey O'Keefe\"\", 'Jack McGee': 'George Ward', 'Melissa McMeekin': \"\"'Little Alice' Eklund\"\", 'Bianca Hunter': \"\"Cathy 'Pork' Eklund\"\", 'Erica McDermott': \"\"Cindy 'Tar' Eklund\"\", 'Jill Quigg': 'Donna Eklund Jaynes', 'Dendrie Taylor': \"\"Gail 'Red Dog' Eklund\"\", \"\"Kate B. O'Brien\"\": \"\"Phyllis 'Beaver' Eklund       (as Kate O'Brien)\"\", 'Jenna Lamia': 'Sherri Ward', 'Frank Renzulli': 'Sal Lanano', 'Paul Campbell': \"\"Gary 'Boo Boo' Giuffrida\"\"}\"\r\ntt1251757,\"{'Luke Wilson': 'Jack Harris', 'Giovanni Ribisi': 'Wayne Beering', 'Gabriel Macht': 'Buck Dolby', 'James Caan': 'Jerry Haggerty', 'Jacinda Barrett': 'Diana Harris', 'Kevin Pollak': 'Curt Allmans', 'Laura Ramsey': 'Audrey Dawns', 'Rade Serbedzija': 'Nikita Sokoloff', 'Terry Crews': 'James', 'Kelsey Grammer': 'Frank Griffin', 'Graham McTavish': 'Ivan Sokoloff', 'Robert Forster': 'Louie LA LA', 'John Ashton': 'Morgan', 'Jason Antoon': 'Denny Z', 'Martin Kove': 'US Senator'}\"\r\ntt0071771,\"{'Burt Reynolds': 'Paul Crewe', 'Eddie Albert': 'Warden Hazen', 'Ed Lauter': 'Captain Knauer', 'Michael Conrad': 'Nate Scarboro', 'James Hampton': 'Caretaker       (as Jim Hampton)', 'Harry Caesar': 'Granville', 'John Steadman': 'Pop', 'Charles Tyner': 'Unger', 'Mike Henry': 'Rassmeusen', 'Jim Nicholson': 'Ice Man', 'Bernadette Peters': \"\"Warden's Secretary\"\", 'Pervis Atkins': 'Mawabe', 'Tony Cacciotti': 'Rotka', 'Anitra Ford': 'Melissa', 'Michael Fox': 'Announcer'}\"\r\ntt0499554,\"{'Lennie Loftin': 'Chief of Police', 'Danny DeVito': 'District Attorney', 'Robert Ben Garant': 'Deputy Travis Junior', 'Niecy Nash': 'Deputy Raineesha Williams', 'Mary Birdsong': 'Deputy Cherisha Kimball', 'Kerri Kenney': 'Deputy Trudy Wiegel       (as Kerry Kenney-Silver)', 'Wendi McLendon-Covey': 'Deputy Clementine Johnson', 'Carlos Alazraqui': 'Deputy James Garcia', 'Cedric Yarbrough': 'Deputy S. Jones', 'Thomas Lennon': 'Lieutenant Jim Dangle', 'Alejandra Gutierrez': 'Miss Acapulco', 'Brandon Molale': 'Kevlar Guy', 'Kathryn Fiore': 'Cheyenne the Helicopter Model', 'David Koechner': 'Sheriff of Aspen', 'Dave Holmes': 'Persnickety Desk Worker'}\"\r\ntt0203230,\"{'Amy Ryan': 'Mrs. Prescott', 'Michael Countryman': 'Mr. Prescott', 'Adam LeFevre': 'Sheriff Darryl', 'Halley Feiffer': 'Amy', 'Whitney Vance': 'Young Sammy', 'Peter Kerwin': 'Young Terry', 'Betsy Aidem': 'Minister', 'Laura Linney': 'Sammy', 'Rory Culkin': 'Rudy', 'J. Smith-Cameron': 'Mabel', 'Matthew Broderick': 'Brian', 'Jon Tenney': 'Bob', 'Gaby Hoffmann': 'Sheila', 'Mark Ruffalo': 'Terry', 'Lisa Altomare': 'Waitress'}\"\r\ntt0452608,\"{'Jason Statham': 'Jensen Ames', 'Joan Allen': 'Hennessey', 'Ian McShane': 'Coach', 'Tyrese Gibson': 'Machine Gun Joe', 'Natalie Martinez': 'Case', 'Max Ryan': 'Pachenko', 'Jason Clarke': 'Ulrich', 'Frederick Koehler': 'Lists       (as Frederick Koehler)', 'Jacob Vargas': 'Gunner', 'Justin Mader': 'Travis Colt', 'Robert LaSardo': 'Grimm', 'Robin Shou': '14K', 'Benz Antoine': \"\"Joe's Navigator\"\", 'Danny Blanco Hall': \"\"Joe's Navigator\"\", 'Christian Paul': \"\"Joe's Navigator\"\"}\"\r\ntt0112715,\"{'Laura Linney': 'Dr. Karen Ross', 'Dylan Walsh': 'Dr. Peter Elliot', 'Ernie Hudson': 'Captain Monroe Kelly', 'Tim Curry': 'Herkermer Homolka', 'Grant Heslov': 'Richard', 'Joe Don Baker': 'R.B. Travis', 'Lola Noh': 'Amy       (as Lorene Noh)', 'Mary Ellen Trainor': 'Moira', 'Misty Rosas': 'Amy the Gorilla', 'Stuart Pankin': 'Boyd', 'Carolyn Seymour': 'Eleanor Romy', 'Romy Rosemont': 'Assistant', 'James Karen': \"\"College President /              Elliot's Boss\"\", 'Bill Pugin': 'William', 'Lawrence T. Wrentz': 'Prof. Arliss Wender'}\"\r\ntt0243736,\"{'Josh Hartnett': 'Matt', 'Shannyn Sossamon': 'Erica Sutton', 'Paulo Costanzo': 'Ryan', 'Adam Trese': 'John', 'Emmanuelle Vaugier': 'Susie', 'Lorin Heath': 'Diana', 'Aaron Trainor': 'Walter', 'Glenn Fitzgerald': 'Chris', 'Monet Mazur': 'Candy', 'Christine Chatelain': 'Andie', 'Keegan Connor Tracy': 'Mandy', 'Michael C. Maronna': 'Bagel Guy       (as Michael Maronna)', 'Vinessa Shaw': 'Nicole', 'Stefanie von Pfetten': 'Girl in Chinatown       (as Stefanie Von Pfetten)', 'Stanley Anderson': 'Father Maher'}\"\r\ntt0118849,\"{'Mohammad Amir Naji': \"\"Ali's Father       (as Amir Naji)\"\", 'Amir Farrokh Hashemian': 'Ali       (as Mir Farrokh Hashemian)', 'Bahare Seddiqi': 'Zahra', 'Nafise Jafar-Mohammadi': 'Roya', 'Fereshte Sarabandi': \"\"Ali's Mother\"\", 'Kamal Mirkarimi': 'Assistant       (as Kamal Mir Karimi)', 'Behzad Rafi': 'Trainer       (as Behzad Rafiee)', 'Dariush Mokhtari': \"\"Ali's Teacher\"\", 'Mohammad-Hasan Hosseinian': \"\"Roya's Father\"\", 'Masume Dair': \"\"Roya's Mother\"\", 'Kambiz Peykarnegar': 'Race Organizer', 'Hasan Roohparvari': 'Race Photographer', 'Abbas-Ali Roomandi': 'Shoemaker', 'Jafar Seyfollahi': 'Green Grocer', 'Qolamreza Maleki': 'Salt Seller'}\"\r\ntt0426501,\"{'Vinnie Jones': 'Johnny Doyle', 'Patrick Bergin': 'Flynn', 'Laurence Kinlan': 'Michael', 'Eriq La Salle': 'Julius', 'Lennox Lewis': 'Ras', 'Samantha Mumba': 'Rita', 'Mark Asante': 'Nathan', 'Roger Daltrey': 'Jimmy', 'Sam Sarpong': 'Skip', 'Charles Porter': 'Digs', 'Wilson Jermaine Heredia': 'Sparra', 'Colin Stewart': 'Druggie', 'John Fashanu': 'DJ Fash', 'Emma Little Lawless': 'Cafe Waitress       (as Emma Lyttle)', 'Heather Greenleese': 'Painter'}\"\r\ntt0099558,\"{'Jackie Chan': 'Asian Hawk /              Condor /              Jackie', \"\"Carol 'Do Do' Cheng\"\": 'Ada       (as Carol Cheng)', 'Eva Cobo': 'Elsa       (as Eva Cobo de Garcia)', 'Shôko Ikeda': 'Momoko', 'Aldo Sambrell': 'Adolf       (as Alfredo Brel Sánchez)', 'Ken Goodman': \"\"Adolf's Guard #1\"\", 'Steve Tartalia': \"\"Adolf's Guard #2       (as Gregory Tartaglia)\"\", 'Vincent Lyn': \"\"Mark /              Adolf's Guard #3       (as Lyn Percival)\"\", 'Bruce Fontaine': \"\"Adolf's Guard #4\"\", 'Wayne Archer': \"\"Adolf's Guard #5       (as Archer Wayne)\"\", 'Brandon Charles': \"\"Adolf's Guard #6\"\", 'Ken Lo': \"\"Adolf's Guard #7       (as Low Houi Kang)\"\", 'Peter Klimenko': \"\"Adolf's Guard #8\"\", 'Christian Perrochaud': \"\"Adolf's Guard #9\"\", 'Jonathan Isgar': 'Tasza'}\"\r\ntt0118887,\"{'Sylvester Stallone': 'Freddy Heflin', 'Harvey Keitel': 'Ray Donlan', 'Ray Liotta': 'Gary Figgis', 'Robert De Niro': 'Moe Tilden', 'Peter Berg': 'Joey Randone', 'Janeane Garofalo': 'Deputy Cindy Betts', 'Robert Patrick': 'Jack Rucker', 'Michael Rapaport': 'Murray Babitch', 'Annabella Sciorra': 'Liz Randone', 'Noah Emmerich': 'Deputy Bill Geisler', 'Cathy Moriarty': 'Rose Donlan', 'John Spencer': 'Leo Crasky', 'Frank Vincent': 'PDA President Lassaro', 'Malik Yoba': 'Detective Carson', 'Arthur J. Nascarella': 'Frank Lagonda       (as Arthur Nascarella)'}\"\r\ntt0413895,\"{'Julia Roberts': 'Charlotte the Spider       (voice)', 'Steve Buscemi': 'Templeton the Rat       (voice)', 'John Cleese': 'Samuel the Sheep       (voice)', 'Oprah Winfrey': 'Gussy the Female Goose       (voice)', 'Cedric the Entertainer': 'Golly The Male Goose       (voice)', 'Kathy Bates': 'Bitsy the Cow       (voice)', 'Reba McEntire': 'Betsy the Cow       (voice)', 'Robert Redford': 'Ike the Horse       (voice)', 'Thomas Haden Church': 'Brooks the Crow       (voice)', 'André Benjamin': 'Elwyn the Crow       (voice)', 'Dominic Scott Kay': 'Wilbur The Spring Pig       (voice)', 'Sam Shepard': 'The Narrator       (voice)', 'Abraham Benrubi': 'Uncle The Fatter Pig       (voice)', 'Dakota Fanning': 'Fern', 'Kevin Anderson': 'Mr. Arable'}\"\r\ntt0164184,\"{'Ian Mongrain': 'Syrian Radar Operator', 'Russell Bobbitt': 'Israeli Pilot', 'James Cromwell': 'President Fowler', 'Ken Jenkins': 'Admiral Pollack', 'Bruce McGill': 'National Security Advisor Revell', 'John Beasley': 'General Lasseter', 'Morgan Freeman': 'DCI William Cabot', 'Philip Baker Hall': 'Defense Secretary Becker', 'Al Vandecruys': 'US STRATCOM Colonel', 'Richard Cohee': 'Mt. Weather General', 'Philip Pretten': \"\"President's Military Aide\"\", 'Alison Darcy': \"\"Fowler's Aide\"\", 'Richard Marner': 'President Zorkin', 'Ostap Soroka': \"\"Zorkin's Translator\"\", 'Robert Martin Robinson': \"\"Zorkin's Interviewer\"\"}\"\r\ntt0445934,\"{'Will Ferrell': 'Chazz Michael Michaels', 'Jon Heder': 'Jimmy MacElroy', 'Will Arnett': 'Stranz Van Waldenberg', 'Amy Poehler': 'Fairchild Van Waldenberg', 'Jenna Fischer': 'Katie Van Waldenberg', 'William Fichtner': 'Darren MacElroy', 'Craig T. Nelson': 'Coach', 'Romany Malco': 'Jesse', 'Nick Swardson': 'Hector', 'Scott Hamilton': 'Sports Anchor', 'Andy Richter': 'Mountie', 'Greg Lindsay': 'Mountie', 'Rob Corddry': 'Bryce', 'Nick Jameson': 'PA Announcer', 'Tom Virtue': 'Floor Manager'}\"\r\ntt0096933,\"{'Michael Douglas': 'Nick Conklin', 'Andy Garcia': 'Charlie Vincent', 'Ken Takakura': 'Masahiro', 'Kate Capshaw': 'Joyce', 'Yûsaku Matsuda': 'Sato', 'Shigeru Kôyama': 'Ohashi       (as Shigeru Koyama)', 'John Spencer': 'Oliver', 'Guts Ishimatsu': 'Katayama', 'Yûya Uchida': 'Nashida', 'Tomisaburô Wakayama': 'Sugai', 'Miyuki Ono': 'Miyuki', 'Luis Guzmán': 'Frankie       (as Luis Guzman)', 'John Costelloe': 'The Kid       (as John A. Costelloe)', 'Stephen Root': 'Berg', 'Richard Riehle': 'Crown'}\"\r\ntt0442933,\"{'Robin Wright': 'Wealthow       (as Robin Wright-Penn)', 'Anthony Hopkins': 'Hrothgar', 'Paul Baker': 'Musician #1', 'John Bilezikjian': 'Musician #2', 'Rod D. Harbour': 'Musician #3', 'Brice Martin': 'Musician #4       (as Brice H. Martin)', 'Sonje Fortag': 'Gitte       (as Sonja Fortag)', 'Sharisse Baker-Bernard': 'Hild', 'Charlotte Salt': 'Estrith', 'Julene Renee': 'Cille       (as Julene Rennee)', 'Greg Ellis': 'Garmund', 'Rik Young': 'Eofor', 'Sebastian Roché': 'Wulfgar       (as Sebastian Roche)', 'Leslie Zemeckis': 'Yrsa', 'John Malkovich': 'Unferth'}\"\r\ntt0109506,\"{'Brandon Lee': 'Eric', 'Rochelle Davis': 'Sarah', 'Ernie Hudson': 'Albrecht', 'Michael Wincott': 'Top Dollar', 'Bai Ling': 'Myca', 'Sofia Shinas': 'Shelly', 'Anna Levine': 'Darla       (as Anna Thomson)', 'David Patrick Kelly': 'T-Bird', 'Angel David': 'Skank', 'Laurence Mason': 'Tin Tin', 'Michael Massee': 'Funboy', 'Tony Todd': 'Grange', 'Jon Polito': 'Gideon', 'Bill Raymond': 'Mickey', 'Marco Rodríguez': 'Torres'}\"\r\ntt0317248,\"{'Alexandre Rodrigues': 'Buscapé - Rocket', 'Leandro Firmino': \"\"Zé Pequeno - Li'l Zé       (as Leandro Firmino da Hora)\"\", 'Phellipe Haagensen': 'Bené - Benny', 'Douglas Silva': \"\"Dadinho - Li'l Dice\"\", 'Jonathan Haagensen': 'Cabeleira - Shaggy', 'Matheus Nachtergaele': 'Sandro Cenoura - Carrot', 'Seu Jorge': 'Mané Galinha - Knockout Ned', 'Jefechander Suplino': 'Alicate - Clipper', 'Alice Braga': 'Angélica', 'Emerson Gomes': 'Barbantinho - Stringy', 'Edson Oliveira': 'Barbantinho Adulto - Older Stringy', 'Michel Gomes': 'Bené Criança - Young Benny       (as Michel De Souza Gomes)', 'Roberta Rodrigues': 'Berenice - Bernice', 'Luis Otávio': 'Buscapé Criança - Young Rocket', 'Kiko Marques': 'Cabeção - Melonhead       (as Maurício Marques)'}\"\r\ntt0124315,\"{'Tobey Maguire': 'Homer Wells', 'Charlize Theron': 'Candy Kendall', 'Delroy Lindo': 'Mr. Rose', 'Paul Rudd': 'Wally Worthington', 'Michael Caine': 'Dr. Wilbur Larch', 'Jane Alexander': 'Nurse Edna', 'Kathy Baker': 'Nurse Angela', 'Erykah Badu': 'Rose Rose', 'Kieran Culkin': 'Buster', 'Kate Nelligan': 'Olive Worthington', 'Heavy D': 'Peaches', 'K. Todd Freeman': 'Muddy', 'Paz de la Huerta': 'Mary Agnes', 'J.K. Simmons': 'Ray Kendall', 'Evan Parke': 'Jack       (as Evan Dexter Parke)'}\"\r\ntt0043338,\"{'Kirk Douglas': 'Chuck Tatum', 'Jan Sterling': 'Lorraine Minosa', 'Robert Arthur': 'Herbie Cook       (as Bob Arthur)', 'Porter Hall': 'Jacob Q. Boot', 'Frank Cady': 'Al Federber', 'Richard Benedict': 'Leo Minosa', 'Ray Teal': 'Sheriff Gus Kretzer', 'Lewis Martin': 'McCardle', 'John Berkes': 'Papa Minosa', 'Frances Dominguez': 'Mama Minosa', 'Gene Evans': 'Deputy Sheriff', 'Frank Jaquet': 'Sam Smollett', 'Harry Harvey': 'Dr. Hilton', 'Bob Bumpas': 'Radio Announcer', 'Geraldine Hall': 'Nellie Federber'}\"\r\ntt0241303,\"{'Alfred Molina': 'Comte de Reynaud', 'Carrie-Anne Moss': 'Caroline Clairmont', 'Aurelien Parent Koenig': 'Luc Clairmont       (as Aurèlien Parent Koenig)', 'Antonio Gil': 'Jean-Marc Drou       (as Antonio Gil-Martinez)', 'Hélène Cardona': \"\"Francoise 'Fuffi' Drou\"\", 'Harrison Pratt': 'Dedou Drou', 'Gaelan Connell': 'Didi Drou', 'Élisabeth Commelin': 'Yvette Marceau       (as Elisabeth Commelin)', 'Ron Cook': 'Alphonse Marceau', 'Guillaume Tardieu': 'Baptiste Marceau', \"\"Hugh O'Conor\"\": 'Father Henri', 'John Wood': 'Guillaume Blérot', 'Lena Olin': 'Josephine Muscat', 'Peter Stormare': 'Serge Muscat', 'Leslie Caron': 'Madame Audel'}\"\r\ntt0065528,\"{'Alan Arkin': 'Yossarian', 'Martin Balsam': 'Colonel Cathcart', 'Richard Benjamin': 'Major Danby', 'Art Garfunkel': 'Nately       (as Arthur Garfunkel)', 'Jack Gilford': 'Doc Daneeka', 'Buck Henry': 'Colonel Korn', 'Bob Newhart': 'Major Major', 'Anthony Perkins': 'Chaplain Tappman', 'Paula Prentiss': 'Nurse Duckett', 'Martin Sheen': 'Dobbs', 'Jon Voight': 'Milo Minderbinder', 'Orson Welles': 'General Dreedle', 'Bob Balaban': 'Orr', 'Susanne Benton': \"\"Dreedle's WAC\"\", 'Norman Fell': 'Sergeant Towser'}\"\r\ntt0118799,\"{'Roberto Benigni': 'Guido', 'Nicoletta Braschi': 'Dora', 'Giorgio Cantarini': 'Giosué', 'Giustino Durano': 'Zio', 'Sergio Bini Bustric': 'Ferruccio       (as Sergio Bustric)', 'Marisa Paredes': 'Madre di Dora', 'Horst Buchholz': 'Dottor Lessing       (as Horst Bucholz)', 'Lidia Alfonsi': 'Guicciardini       (as Lydia Alfonsi)', 'Giuliana Lojodice': 'Direttrice Didattica', 'Amerigo Fontani': 'Rodolfo', 'Pietro De Silva': 'Bartolomeo', 'Francesco Guzzo': 'Vittorino', 'Raffaella Lebboroni': 'Elena', 'Claudio Alfonsi': 'Amico Rodolfo', 'Gil Baroni': 'Prefetto'}\"\r\ntt0264472,\"{'Ben Affleck': 'Gavin Banek', 'Samuel L. Jackson': 'Doyle Gipson', 'Kim Staunton': 'Valerie Gipson', 'Toni Collette': 'Michelle', 'Sydney Pollack': 'Stephen Delano', 'Tina Sloan': 'Mrs. Delano', 'Richard Jenkins': 'Walter Arnell', 'Akil Walker': 'Stephen Gipson', 'Cole Hawkins': 'Danny Gipson', 'Ileen Getz': 'Ellen', 'Jennifer Dundas': 'Mina Dunne       (as Jennifer Dundas Lowe)', 'Matt Malloy': 'Ron Cabot', 'Amanda Peet': 'Cynthia Delano Banek', 'Myra Lucretia Taylor': 'Judge Frances Abarbanel', 'Bruce Altman': 'Terry Kaufman'}\"\r\ntt0088930,\"{'Eileen Brennan': 'Mrs. Peacock', 'Tim Curry': 'Wadsworth', 'Madeline Kahn': 'Mrs. White', 'Christopher Lloyd': 'Professor Plum', 'Michael McKean': 'Mr. Green', 'Martin Mull': 'Colonel Mustard', 'Lesley Ann Warren': 'Miss Scarlet', 'Colleen Camp': 'Yvette', 'Lee Ving': 'Mr. Boddy', 'Bill Henderson': 'The Cop', 'Jane Wiedlin': 'The Singing Telegram Girl', 'Jeffrey Kramer': 'The Motorist', 'Kellye Nakahara': 'The Cook', 'Will Nye': 'Cop #1', 'Rick Goldman': 'Cop #2'}\"\r\ntt0463998,\"{'Hilary Swank': 'Erin Gruwell', 'Patrick Dempsey': 'Scott Casey', 'Scott Glenn': 'Steve Gruwell', 'Imelda Staunton': 'Margaret Campbell', 'April L. Hernandez': 'Eva Benitez       (as April Lee Hernandez)', 'Mario': 'Andre Bryant', 'Kristin Herrera': 'Gloria Munez', 'Jaclyn Ngan': 'Sindy', 'Sergio Montalvo': 'Alejandro Santiago', 'Jason Finn': 'Marcus', 'Deance Wyatt': 'Jamal Hill', 'Vanetta Smith': 'Brandy Ross', 'Gabriel Chavarria': 'Tito', 'Hunter Parrish': 'Ben Daniels', 'Antonio García': 'Miguel'}\"\r\ntt0082418,\"{'Amy Steel': 'Ginny', 'John Furey': 'Paul', 'Adrienne King': 'Alice', 'Kirsten Baker': 'Terry', 'Stuart Charno': 'Ted       (as Stu Charno)', 'Warrington Gillette': 'Jason', 'Walt Gorney': 'Crazy Ralph', 'Marta Kober': 'Sandra', 'Tom McBride': 'Mark', 'Bill Randolph': 'Jeff', 'Lauren-Marie Taylor': 'Vickie', 'Russell Todd': 'Scott', 'Betsy Palmer': 'Mrs. Voorhees', 'Cliff Cudney': 'Max', 'Jack Marks': 'The Cop'}\"\r\ntt0787475,\"{'Andy Samberg': 'Rod Kimble', 'Jorma Taccone': 'Kevin Powell', 'Bill Hader': 'Dave', 'Danny McBride': 'Rico', 'Isla Fisher': 'Denise', 'Sissy Spacek': 'Marie Powell', 'Ian McShane': 'Frank Powell', 'Will Arnett': 'Jonathan', 'Chris Parnell': 'Barry Pasternack', 'Chester Tam': 'Richardson', 'Mark Acheson': 'Homeless Dude', 'Brittany Tiplady': 'Maggie', 'Ken Kirzinger': 'Trailer Guy', 'Britt Irvin': 'Cathy', 'Alana Husband': 'Waitress'}\"\r\ntt0427229,\"{'Matthew McConaughey': 'Tripp', 'Sarah Jessica Parker': 'Paula', 'Zooey Deschanel': 'Kit', 'Justin Bartha': 'Ace', 'Bradley Cooper': 'Demo', 'Terry Bradshaw': 'Al', 'Kathy Bates': 'Sue', 'Tyrel Jackson Williams': 'Jeffrey', 'Katheryn Winnick': 'Melissa', 'Rob Corddry': 'Gun Salesman #1', 'Patton Oswalt': 'Techie Guy', 'Stephen Tobolowsky': 'Bud', 'Kate McGregor-Stewart': 'Bev', 'Adam Alexi-Malle': 'Mr. Axelrod', 'Gretchen Cleevely': 'Gretchen the Veterinarian'}\"\r\ntt0209037,\"{'Josse De Pauw': 'Jean Vereecken', 'Eva van der Gucht': 'Marva Vereecken', 'Werner De Smedt': 'Willy Van Outreve', 'Thekla Reuten': 'Debbie', 'Victor Löw': 'Michael Jensen', 'Gert Portael': 'Chantal Vereecken', 'Ianka Fleerackers': 'Gaby', 'Alice Reys': 'Lizzy', 'George Arrendell': 'Knappe man', 'François Beukelaers': 'NTO directeur', 'Silvia Claes': 'Omroepster', 'Marc Didden': 'Cameraman', 'Sien Eggers': 'Debbies buurvrouw', 'Lut Hannes': \"\"Vriendin van Marva's moeder\"\", 'Wim Opbrouck': 'Rik De Visser'}\"\r\ntt0112744,\"{'Jack Nicholson': 'Freddy Gale', 'David Morse': 'John Booth', 'Anjelica Huston': 'Mary', 'Robin Wright': 'Jojo', 'Piper Laurie': 'Helen Booth', 'Richard Bradford': 'Stuart Booth', 'Priscilla Barnes': 'Verna', 'David Baerwald': 'Peter', 'Robbie Robertson': 'Roger', 'John Savage': 'Bobby', 'Kari Wuhrer': 'Mia', 'Jennifer Leigh Warren': 'Jennifer', 'Kellita Smith': 'Tanya', 'Richard C. Sarafian': 'Sunny Ventura       (as Richard Sarafian)', 'Bobby Cooper': 'Coop'}\"\r\ntt0079540,\"{'Bill Murray': 'Tripper', 'Harvey Atkin': 'Morty', 'Kate Lynch': 'Roxanne', 'Russ Banham': 'Crockett', 'Kristine DeBell': 'A.L.', 'Sarah Torgov': 'Candace', 'Jack Blum': 'Spaz', 'Keith Knight': 'Fink', 'Cindy Girling': 'Wendy', 'Todd Hoffman': 'Wheels', 'Margot Pinvidic': 'Jackie', 'Matt Craven': 'Hardware       (as Matt Cravenn)', \"\"Norma Dell'Agnese\"\": 'Brenda', 'Chris Makepeace': 'Rudy', 'Michael Kirby': 'Eddy'}\"\r\ntt0796366,\"{'Chris Pine': 'Kirk', 'Zachary Quinto': 'Spock', 'Leonard Nimoy': 'Spock Prime', 'Eric Bana': 'Nero', 'Bruce Greenwood': 'Pike', 'Karl Urban': 'Bones', 'Zoe Saldana': 'Uhura       (as Zoë Saldana)', 'Simon Pegg': 'Scotty', 'John Cho': 'Sulu', 'Anton Yelchin': 'Chekov', 'Ben Cross': 'Sarek', 'Winona Ryder': 'Amanda Grayson', 'Chris Hemsworth': 'George Kirk', 'Jennifer Morrison': 'Winona Kirk', 'Rachel Nichols': 'Gaila'}\"\r\ntt0124295,\"{'Michael Moore': 'Himself', 'Elaine Bly': 'Herself - Random House Media Escort', 'Dan Burns': 'Himself - Radio Personality', 'Chip Carter': 'Himself - Forbes Campaign', 'Bill Clinton': 'Himself - Presidential Candidate       (archive footage)', 'Jim Czarnecki': 'Himself       (as Jim)', 'Brian Danitz': 'Himself       (as Brian)', 'Robert Dornan': 'Himself - Congressman       (archive footage)', 'Joel Feick': 'Himself - Radio Commentator', 'Steve Forbes': 'Himself - Presidential Candidate       (archive footage)', 'Doug France': 'Himself - Random House Representative', 'Mary Gielow': 'Herself - Media Escort in Milwaukee', 'Bev Jacowski': 'Herself, Johnson Controls representative', 'Richard Jewell': 'Himself - Innocent Guy', 'Kevin Keane': \"\"Himself - Governor Thompson's Press Secretary\"\"}\"\r\ntt0111280,\"{'Patrick Stewart': 'Picard', 'Jonathan Frakes': 'Riker', 'Brent Spiner': 'Data', 'LeVar Burton': 'Geordi', 'Michael Dorn': 'Worf', 'Gates McFadden': 'Beverly', 'Marina Sirtis': 'Troi', 'Malcolm McDowell': 'Soran', 'James Doohan': 'Scotty', 'Walter Koenig': 'Chekov', 'William Shatner': 'Kirk', 'Alan Ruck': 'Capt. Harriman', 'Jacqueline Kim': 'Demora', 'Jenette Goldstein': 'Science Officer', 'Thomas Kopache': 'Com Officer'}\"\r\ntt0099703,\"{'Anjelica Huston': 'Lilly Dillon', 'John Cusack': 'Roy Dillon', 'Annette Bening': 'Myra Langtry', 'Jan Munroe': 'Guy at Bar', 'Robert Weems': 'Racetrack Announcer', 'Stephen Tobolowsky': 'Jeweler', 'Jimmy Noonan': 'Bartender', 'Richard Holden': 'Cop', 'Henry Jones': 'Simms', 'Michael Laskin': 'Irv', 'Eddie Jones': 'Mintz', 'Sandy Baron': 'Doctor', 'Lou Hancock': 'Nurse', 'Gailard Sartain': 'Joe', 'Noelle Harling': 'Nurse Carol Flynn'}\"\r\ntt0864761,\"{'Keira Knightley': 'Georgiana', 'Ralph Fiennes': 'The Duke', 'Charlotte Rampling': 'Lady Spencer', 'Dominic Cooper': 'Charles Grey', 'Hayley Atwell': 'Bess Foster', 'Simon McBurney': 'Charles Fox', 'Aidan McArdle': 'Richard Sheridan', 'John Shrapnel': 'General Grey', 'Alistair Petrie': 'Heaton', 'Patrick Godfrey': 'Dr. Neville', 'Michael Medwin': 'Speechmaker', 'Justin Edwards': 'Macaroni', 'Richard McCabe': 'Sir James Hare', 'Calvin A. Dean': 'Devonshire House Servant       (as Calvin Dean)', 'Hannah Stokely': 'Devonshire House Maid'}\"\r\ntt0164334,\"{'Morgan Freeman': 'Alex Cross', 'Monica Potter': 'Jezzie Flannigan', 'Michael Wincott': 'Gary Soneji', 'Dylan Baker': 'Ollie McArthur', 'Mika Boorem': 'Megan Rose', 'Anton Yelchin': 'Dimitri Starodubov', 'Kim Hawthorne': 'Agent Hickley', 'Jay O. Sanders': 'Kyle Craig', 'Billy Burke': 'Ben Devine', 'Michael Moriarty': 'Senator Hank Rose', 'Penelope Ann Miller': 'Elizabeth Rose', 'Anna Maria Horsford': 'Vickie', 'Scott Heindl': 'Floyd the Fisherman', 'Christopher Shyer': 'Jim Gelway', 'Jill Teed': 'Tracie Fisher'}\"\r\ntt0829459,\"{'Dan Futterman': 'Danny', 'Angelina Jolie': 'Mariane', 'Archie Panjabi': 'Asra', 'Mohammed Afzal': 'Shabbir', 'Mushtaq Khan': \"\"Danny's Taxi Driver       (as Mushtaq Ahmed)\"\", 'Daud Khan': 'Masud the Fixer', 'Telal Saeed': 'Kaleem Yusuf', 'Arif Khan': \"\"Mariane's Taxi Driver\"\", 'Tipu Taheer': 'Human Rights Director', 'Amit Dhawan': 'Technical Supervisor', 'Saira Nasir Khan': 'Nasrin', 'Aliya Khan': 'Kashva', 'Sarah Mone': 'Female Guest', 'Bushra Parwani': 'Female Guest', 'Zafar Karachiwala': 'Male Guest'}\"\r\ntt0431308,\"{'Hilary Swank': 'Holly', 'Gerard Butler': 'Gerry', 'Lisa Kudrow': 'Denise', 'Gina Gershon': 'Sharon', 'James Marsters': 'John', 'Kathy Bates': 'Patricia', 'Harry Connick Jr.': 'Daniel', 'Nellie McKay': 'Ciara', 'Jeffrey Dean Morgan': 'William', 'Dean Winters': 'Tom', 'Anne Kent': 'Rose Kennedy', 'Brian McGrath': 'Martin Kennedy', 'Sherie Rene Scott': 'Barbara', 'Susan Blackwell': 'Vicky', 'Michael Countryman': 'Ted'}\"\r\ntt0080388,\"{'Burt Lancaster': 'Lou Pascal', 'Susan Sarandon': 'Sally Matthews', 'Kate Reid': 'Grace Pinza', 'Michel Piccoli': 'Joseph', 'Hollis McLaren': 'Chrissie', 'Robert Joy': 'Dave Matthews', 'Al Waxman': 'Alfie', 'Robert Goulet': 'Singer', 'Moses Znaimer': 'Felix', 'Angus MacInnes': 'Vinnie', 'Sean Sullivan': 'Buddy', 'Wallace Shawn': 'Waiter       (as Wally Shawn)', 'Harvey Atkin': 'Bus Driver', \"\"Norma Dell'Agnese\"\": 'Jeanne', 'Louis Del Grande': 'Mr. Shapiro'}\"\r\ntt0090830,\"{'William Hurt': 'James', 'Marlee Matlin': 'Sarah', 'Piper Laurie': 'Mrs. Norman', 'Philip Bosco': 'Dr. Curtis Franklin', 'Allison Gompf': 'Lydia', 'John F. Cleary': 'Johnny', 'Philip Holmes': 'Glen', 'Georgia Ann Cline': 'Cheryl', 'William D. Byrd': 'Danny', 'Frank Carter Jr.': 'Tony', 'John Limnidis': 'William', 'Bob Hiltermann': 'Orin', 'E. Katherine Kerr': 'Mary Lee Ochs', 'John Basinger': 'Alan Jones', 'Barry Magnani': 'Tom Schuyler'}\"\r\ntt1034303,\"{'Daniel Craig': 'Tuvia Bielski', 'Liev Schreiber': 'Zus Bielski', 'Jamie Bell': 'Asael Bielski', 'Alexa Davalos': 'Lilka Ticktin', 'Allan Corduner': 'Shimon Haretz', 'Mark Feuerstein': 'Isaac Malbin', 'Tomas Arana': 'Ben Zion Gulkowitz', 'Jodhi May': 'Tamara Skidelsky', 'Kate Fahy': 'Riva Reich', 'Iddo Goldberg': 'Yitzhak Shulman', 'Iben Hjejle': 'Bella', 'Martin Hancock': 'Peretz Shorshaty', 'Ravil Isyanov': 'Viktor Panchenko', 'Jacek Koman': \"\"Konstanty 'Koscik' Kozlowski\"\", 'George MacKay': 'Aron Bielski'}\"\r\ntt0116126,\"{'Shawn Wayans': 'Ashtray', 'Marlon Wayans': 'Loc Dog', 'Tracey Cherelle Jones': 'Dashiki', 'Chris Spencer': 'Preach', 'Suli McCullough': 'Crazy Legs', 'Darrel Heath': 'Toothpick       (as Darrell Heath)', 'Helen Martin': \"\"Loc Dog's Grandma\"\", 'Isaiah Barnes': 'Doo Rag', 'Lahmard J. Tate': \"\"Ashtray's Father       (as Lahmard Tate)\"\", 'Keenen Ivory Wayans': 'Mailman', 'Keith Morris': 'Dave the Crackhead', 'Craig Wayans': 'Thug #1', 'Casey Lee': 'Birthday Boy Thug', 'Joe Scott': \"\"Birthday Cake Boy       (as Joe 'Nub' Scott)\"\", 'Kim Wayans': 'Mrs. Johnson'}\"\r\ntt0443489,\"{'Jamie Foxx': 'Curtis Taylor Jr.', 'Beyoncé': 'Deena Jones       (as Beyoncé Knowles)', 'Eddie Murphy': \"\"James 'Thunder' Early\"\", 'Danny Glover': 'Marty Madison', 'Jennifer Hudson': 'Effie White', 'Anika Noni Rose': 'Lorrell Robinson', 'Keith Robinson': 'C.C. White', 'Sharon Leal': 'Michelle Morris', 'Hinton Battle': 'Wayne', 'Mariah Iman Wilson': 'Magic       (as Mariah Wilson)', 'Yvette Cason': 'May', 'Ken Page': 'Max Washington', 'Ralph Louis Harris': 'M.C.       (as Ralph Harris)', 'Michael-Leon Wooley': 'Tiny Joe Dixon', 'Loretta Devine': 'Jazz Singer'}\"\r\ntt0091188,\"{'Meryl Streep': 'Rachel', 'Jack Nicholson': 'Mark', 'Jeff Daniels': 'Richard', 'Maureen Stapleton': 'Vera', 'Stockard Channing': 'Julie', 'Richard Masur': 'Arthur', \"\"Catherine O'Hara\"\": 'Betty', 'Steven Hill': \"\"Rachel's Father\"\", 'Milos Forman': 'Dmitri', 'Mamie Gummer': 'Annie       (as Natalie Stern)', 'Karen Akers': 'Thelma Rice', 'Aida Linares': 'Juanita', 'Anna Maria Horsford': 'Della', 'Ron McLarty': \"\"Detective O'Brien\"\", 'Kenneth Welsh': 'Dr. Appel'}\"\r\ntt0081353,\"{'Robin Williams': 'Popeye', 'Shelley Duvall': 'Olive Oyl', 'Ray Walston': 'Poopdeck Pappy', 'Paul Dooley': 'Wimpy', 'Paul L. Smith': 'Bluto', 'Richard Libertini': 'Geezil', 'Donald Moffat': 'The Taxman', 'MacIntyre Dixon': 'Cole Oyl', 'Roberta Maxwell': 'Nana Oyl', 'Donovan Scott': 'Castor Oyl', 'Allan F. Nicholls': 'Rough House       (as Allan Nicholls)', 'Wesley Ivan Hurt': \"\"Swee'pea\"\", 'Bill Irwin': 'Ham Gravy, the Old Boyfriend', 'Robert Fortier': 'Bill Barnacle, the Town Drunk', 'David McCharen': 'Harry Hotcash, the Gambler'}\"\r\ntt0070510,\"{\"\"Ryan O'Neal\"\": 'Moses Pray', \"\"Tatum O'Neal\"\": 'Addie Loggins', 'Madeline Kahn': 'Trixie Delight', 'John Hillerman': 'Deputy Hardin /              Jess Hardin', 'P.J. Johnson': 'Imogene', 'Jessie Lee Fulton': 'Miss Ollie', 'James N. Harrell': 'The Minister       (as Jim Harrell)', 'Lila Waters': \"\"The Minister's Wife\"\", 'Noble Willingham': 'Mr. Robertson', 'Bob Young': 'Gas Station Attendant', 'Jack Saunders': 'Station Master', 'Jody Wilbur': 'Cafe Waitress', 'Liz Ross': 'The Widow Morgan - Pearl', 'Yvonne Harrison': 'The Widow Bates - Marie', 'Ed Reed': \"\"The Lawman - Bates' Home\"\"}\"\r\ntt0416051,\"{'David Boreanaz': 'Lance Valenteen', 'Alana De La Garza': 'Sophia', 'Mariam Vardanyan': \"\"Shiffy's Wife       (as Mariam Vardani)\"\", 'Scoot McNairy': 'Dan', 'Pat Healy': 'Bill Smith', 'Paul Sorvino': 'Wally', 'Terrence Evans': 'Charlie', 'Lee Weaver': 'Ralph', 'Rodney Rowland': 'Tip       (as Rod Rowland)', 'Herschel Bleefeld': 'Shiffy', 'Patricia Place': 'Mrs. Cliverhorn', 'Regina McKee Redwing': 'Nurse Savage', 'Gemini Barnett': 'Walter', 'Dallas McKinney': 'Bobby', 'Michael Addison': 'Man #1'}\"\r\ntt0236640,\"{'Christina Ricci': 'Elizabeth', 'Jason Biggs': 'Rafe', 'Anne Heche': 'Dr. Sterling', 'Michelle Williams': 'Ruby', 'Jonathan Rhys Meyers': 'Noah       (as Jonathan Rhys-Meyers)', 'Jessica Lange': 'Mrs. Wurtzel', 'Jesse Moss': 'Sam', 'Nicholas Campbell': 'Donald       (as Nick Campbell)', 'Zoe Miller': 'Elizabeth at 12', 'Sheila Paterson': 'Grandmother', 'Rob Freeman': 'Mister Cool', 'Nicole Parker': 'Waitress       (as Nicole Parker Smith)', 'Frida Betrani': 'Julia', 'Klodyne Rodney': 'Nurse', 'Ian Tracey': 'Rolling Stone Editor'}\"\r\ntt0822854,\"{'Mark Wahlberg': 'Bob Lee Swagger', 'Michael Peña': 'Nick Memphis', 'Danny Glover': 'Colonel Isaac Johnson', 'Kate Mara': 'Sarah Fenn', 'Elias Koteas': 'Jack Payne', 'Rhona Mitra': 'Alourdes Galindo', 'Jonathan Walker': 'Louis Dobbler', 'Louis Ferreira': 'Howard Purnell       (as Justin Louis)', 'Tate Donovan': 'Russ Turner', 'Rade Serbedzija': 'Michael Sandor       (as Rade Sherbedgia)', 'A.C. Peterson': 'Officer Stanley Timmons       (as Alan C. Peterson)', 'Ned Beatty': 'Senator Charles F. Meachum', 'Lane Garrison': 'Donnie Fenn', 'Zak Santiago': 'Senior Agent', 'Michael-Ann Connor': 'Junior Agent'}\"\r\ntt0054331,\"{'Kirk Douglas': 'Spartacus', 'Laurence Olivier': 'Crassus', 'Jean Simmons': 'Varinia', 'Charles Laughton': 'Gracchus', 'Peter Ustinov': 'Batiatus', 'John Gavin': 'Julius Caesar', 'Nina Foch': 'Helena Glabrus', 'John Ireland': 'Crixus', 'Herbert Lom': 'Tigranes Levantus', 'John Dall': 'Marcus Publius Glabrus', 'Charles McGraw': 'Marcellus', 'Joanna Barnes': 'Claudia Marius', 'Harold J. Stone': 'David', 'Woody Strode': 'Draba', 'Peter Brocco': 'Ramon'}\"\r\ntt0102975,\"{'William Shatner': 'Kirk', 'Leonard Nimoy': 'Spock', 'DeForest Kelley': 'McCoy', 'James Doohan': 'Scotty', 'Walter Koenig': 'Chekov', 'Nichelle Nichols': 'Uhura', 'George Takei': 'Sulu', 'Kim Cattrall': 'Lt. Valeris', 'Mark Lenard': 'Sarek', 'Grace Lee Whitney': 'Excelsior Communications Officer', 'Brock Peters': 'Admiral Cartwright', 'Leon Russom': 'Chief in Command', 'Kurtwood Smith': 'Federation President', 'Christopher Plummer': 'Chang', 'Rosanna DeSoto': 'Azetbur       (as Rosana DeSoto)'}\"\r\ntt0486655,\"{'Ian McKellen': 'Narrator       (voice)', 'Bimbo Hart': 'Young Scientist', 'Alastair MacIntosh': 'Victorian Academic', 'David Kelly': 'Guard', 'Ben Barnes': 'Young Dunstan Thorn', 'Kate Magowan': 'Slave Girl /              Una', 'Melanie Hill': 'Ditchwater Sal', 'Charlie Cox': 'Tristan Thorn', 'Sienna Miller': 'Victoria', 'Henry Cavill': 'Humphrey', 'Nathaniel Parker': 'Dunstan Thorn', 'Darby Hawker': 'Grumpy Customer', 'Frank Ellis': 'Mr. Monday', \"\"Peter O'Toole\"\": 'King', 'Mark Strong': 'Septimus'}\"\r\ntt0402022,\"{'Charlize Theron': 'Aeon Flux', 'Marton Csokas': 'Trevor Goodchild', 'Jonny Lee Miller': 'Oren Goodchild', 'Sophie Okonedo': 'Sithandra', 'Frances McDormand': 'Handler', 'Pete Postlethwaite': 'Keeper', 'Amelia Warner': 'Una Flux', 'Caroline Chikezie': 'Freya', 'Nikolai Kinski': 'Claudius', 'Paterson Joseph': 'Giroux', 'Yangzom Brauen': 'Inari', \"\"Aoibheann O'Hara\"\": 'Scientist', 'Thomas Huber': 'Scientist', 'Weijian Liu': 'Scientist', 'Maverick Quek': 'Chemist'}\"\r\ntt0116209,\"{'Ralph Fiennes': 'Almásy', 'Juliette Binoche': 'Hana', 'Willem Dafoe': 'Caravaggio', 'Kristin Scott Thomas': 'Katharine Clifton', 'Naveen Andrews': 'Kip', 'Colin Firth': 'Geoffrey Clifton', 'Julian Wadham': 'Madox', 'Jürgen Prochnow': 'Major Muller', 'Kevin Whately': 'Hardy', 'Clive Merrison': 'Fenelon-Barnes', 'Nino Castelnuovo': \"\"D'Agostino\"\", 'Hichem Rostom': 'Fouad', 'Peter Rühring': 'Bermann', 'Geordie Johnson': 'Oliver', 'Torri Higginson': 'Mary'}\"\r\ntt0068646,\"{'Marlon Brando': 'Don Vito Corleone', 'Al Pacino': 'Michael Corleone', 'James Caan': 'Sonny Corleone', 'Richard S. Castellano': 'Clemenza       (as Richard Castellano)', 'Robert Duvall': 'Tom Hagen', 'Sterling Hayden': 'Capt. McCluskey', 'John Marley': 'Jack Woltz', 'Richard Conte': 'Barzini', 'Al Lettieri': 'Sollozzo', 'Diane Keaton': 'Kay Adams', 'Abe Vigoda': 'Tessio', 'Talia Shire': 'Connie', 'Gianni Russo': 'Carlo', 'John Cazale': 'Fredo', 'Rudy Bond': 'Cuneo'}\"\r\ntt0071577,\"{'Robert Redford': 'Jay Gatsby', 'Mia Farrow': 'Daisy Buchanan', 'Bruce Dern': 'Tom Buchanan', 'Karen Black': 'Myrtle Wilson', 'Scott Wilson': 'George Wilson', 'Sam Waterston': 'Nick Carraway', 'Lois Chiles': 'Jordan Baker', 'Howard Da Silva': 'Meyer Wolfsheim', 'Roberts Blossom': 'Mr. Gatz', 'Edward Herrmann': 'Klipspringer', 'Elliott Sullivan': \"\"Wilson's Friend\"\", 'Arthur Hughes': 'Dog Vendor', 'Kathryn Leigh Scott': 'Catherine', 'Beth Porter': 'Mrs. McKee', 'Paul Tamarin': 'Mr. McKee'}\"\r\ntt0368008,\"{'Jeffrey Wright': 'Al Melvin', 'Pablo Schreiber': 'Eddie Ingram', 'Anthony Mackie': 'Robert Baker', 'Dorian Missick': 'Owens', 'Jose Pablo Cantillo': 'Villalobos', 'Teddy Dunn': 'Wilson', 'Joaquin Perez-Campbell': 'Atkins', 'Tim Artz': 'Jameson', 'Denzel Washington': 'Ben Marco', 'Robyn Hitchcock': 'Laurent Tokar', 'Liev Schreiber': 'Raymond Shaw', 'Antoine Taylor': 'Boy Scout #1', 'Joe Alessi': 'Boy Scout #2       (as Joseph Alessi)', 'Raymond Anthony Thomas': 'Scout Dad       (as Ray Anthony Thomas)', 'Bill Irwin': 'Scoutmaster'}\"\r\ntt0469641,\"{'Nicolas Cage': 'John McLoughlin', 'Maria Bello': 'Donna McLoughlin', 'Connor Paolo': 'Steven McLoughlin', 'Anthony Piccininni': 'JJ McLoughlin', 'Alexa Gerasimovich': 'Erin McLoughlin', 'Morgan Flynn': 'Caitlin McLoughlin', 'Michael Peña': 'Will Jimeno', 'Armando Riesco': 'Antonio Rodrigues', 'Jay Hernandez': 'Dominick Pezzulo', 'Joe Starr': 'Subway Rider', 'Jon Bernthal': 'Christopher Amoroso', 'William Jimeno': 'Port Authority Officer       (as Will Jimeno)', 'Nick Damici': 'Lieutenant Kassimatis', 'Jude Ciccolella': 'Inspector Fields', 'Martin Pfefferkorn': 'Homeless Addict #1'}\"\r\ntt0116367,\"{'George Clooney': 'Seth Gecko', 'Quentin Tarantino': 'Richard Gecko', 'Harvey Keitel': 'Jacob Fuller', 'Juliette Lewis': 'Kate Fuller', 'Ernest Liu': 'Scott Fuller', 'Salma Hayek': 'Santanico Pandemonium', 'Cheech Marin': 'Border Guard /              Chet Pussy /              Carlos', 'Danny Trejo': 'Razor Charlie', 'Tom Savini': 'Sex Machine', 'Fred Williamson': 'Frost', 'Michael Parks': 'Texas Ranger Earl McGraw', 'Brenda Hillhouse': 'Hostage Gloria Hill', 'John Saxon': 'FBI Agent Stanley Chase', 'Marc Lawrence': 'Old Timer Motel Owner', 'Kelly Preston': 'Newscaster Kelly Houge'}\"\r\ntt0109445,\"{\"\"Brian O'Halloran\"\": 'Dante Hicks', 'Jeff Anderson': 'Randal Graves', 'Marilyn Ghigliotti': 'Veronica', 'Lisa Spoonauer': 'Caitlin Bree', 'Jason Mewes': 'Jay', 'Kevin Smith': 'Silent Bob', 'Scott Mosier': 'Willam the Idiot Manchild /              Angry Hockey-Playing Customer /              Angry Mourner', 'Scott Schiaffo': 'Chewlies Rep', 'Al Berkowitz': 'Old Man', 'Walter Flanagan': 'Woolen Cap Smoker /              Egg Man /              Offended Customer /              Cat-Admiring Bitter Customer       (as Walt Flanagan)', 'Ed Hapstak': 'Sanford /              Angry Mourner', 'Lee Bendick': '#812 Wynarski', 'David Klein': 'Hunting Cap Smoking Boy /              Low I.Q. Video Customer /              Hubcap Searching Customer /              Angry Mourner /              Angry Crowd at Door', 'Pattijean Csik': 'Coroner', 'Ken Clark': 'Administer of Fine /              Orderly'}\"\r\ntt0219653,\"{'Gerard Butler': 'Dracula', 'Christopher Plummer': 'Abraham Van Helsing', 'Jonny Lee Miller': 'Simon Sheppard', 'Justine Waddell': 'Mary Heller-Van Helsing', 'Vitamin C': 'Lucy Westerman       (as Colleen Ann Fitzpatrick)', 'Jennifer Esposito': 'Solina', 'Omar Epps': 'Marcus', 'Sean Patrick Thomas': 'Trick', 'Danny Masterson': 'Nightshade', 'Lochlyn Munro': 'Eddie', 'Tig Fong': 'Dax', 'Tony Munch': 'Charlie', 'Jeri Ryan': 'Valerie Sharpe', 'Shane West': 'JT', 'Nathan Fillion': 'Father David'}\"\r\ntt0068767,\"{'Bruce Lee': 'Chen Zhen', 'Nora Miao': 'Yuan Le-erh       (as Miao Ker Hsiu)', 'James Tien': 'Fan Chun-hsia', 'Maria Yi': 'Yen', 'Robert Baker': 'Petrov', 'Fu Ching Chen': 'Chao', 'Shan Chin': 'Tung', 'Ying-Chieh Han': 'Feng Kwai-sher', 'Chikara Hashimoto': 'Hiroshi Suzuki       (as Riki Hashimoto)', 'Jun Katsumura': \"\"Suzuki's bodyguard\"\", 'Chung-Hsin Huang': 'Tien', 'Kun Li': 'Hsu       (as Quin Lee)', 'Feng Tien': 'Fan', 'Ying-Chi Li': 'Li       (as Yin Chi Lee)', 'Tony Liu': 'Chin'}\"\r\ntt0112346,\"{'Michael Douglas': 'Andrew Shepherd', 'Annette Bening': 'Sydney Ellen Wade', 'Martin Sheen': 'A.J. MacInerney', 'Michael J. Fox': 'Lewis Rothschild', 'Anna Deavere Smith': 'Robin McCall', 'Samantha Mathis': 'Janie Basdin', 'Shawna Waldron': 'Lucy Shepherd', 'David Paymer': 'Leon Kodak', 'Anne Haney': 'Mrs. Chapil', 'Richard Dreyfuss': 'Senator Rumson', 'Nina Siemaszko': 'Beth Wade', 'Wendie Malick': 'Susan Sloan', 'Beau Billingslea': 'Agent Cooper', 'Gail Strickland': 'Esther MacInerney', 'Joshua Malina': 'David'}\"\r\ntt0091042,\"{'Matthew Broderick': 'Ferris Bueller', 'Alan Ruck': 'Cameron Frye', 'Mia Sara': 'Sloane Peterson', 'Jeffrey Jones': 'Ed Rooney', 'Jennifer Grey': 'Jeanie Bueller', 'Cindy Pickett': 'Katie Bueller', 'Lyman Ward': 'Tom Bueller', 'Edie McClurg': 'Grace', 'Charlie Sheen': 'Boy in Police Station', 'Ben Stein': 'Economics Teacher', 'Del Close': 'English Teacher', 'Virginia Capers': 'Florence Sparrow', 'Richard Edson': 'Garage Attendant', 'Larry Flash Jenkins': \"\"Attendant's Co-Pilot\"\", 'Kristy Swanson': 'Simone Adamley'}\"\r\ntt0266489,\"{'Ben Stiller': 'Alex Rose', 'Drew Barrymore': 'Nancy Kendricks', 'Eileen Essell': 'Mrs. Connelly', 'Harvey Fierstein': 'Kenneth', 'Justin Theroux': 'Coop', 'James Remar': 'Chick', 'Robert Wisdom': 'Officer Dan', 'Swoosie Kurtz': 'Jean', 'Wallace Shawn': 'Herman', 'Maya Rudolph': 'Tara', 'Amber Valletta': 'Celine', 'Cheryl Klein': 'Ginger', 'Tim Maculan': 'Terrence', 'Jackie Sandler': 'Bartender       (as Jackie Titone)', 'Evgeniy Lazarev': 'Mr. Dzerzhinsky       (as Eugene Lazarev)'}\"\r\ntt0255477,\"{'Roberto Benigni': 'Pinocchio', 'Nicoletta Braschi': 'Blue Fairy', 'Mino Bellei': 'Medoro', 'Carlo Giuffrè': 'Geppetto', 'Peppe Barra': 'The Talking Cricket', 'Franco Javarone': 'Mangiafuoco', 'Max Cavallari': 'The Cat', 'Bruno Arena': 'The Fox', 'Corrado Pani': 'Giudice', 'Kim Rossi Stuart': 'Lucignolo', 'Luis Molteni': 'Omino di burro', 'Alessandro Bergonzoni': 'Ringmaster', 'Alfredo Cavazzoni': 'Carabiniere 1', 'Vincenzo Bonanno': 'Carabiniere 2', 'Marco Tullio Cau': 'Carabiniere 3'}\"\r\ntt0047396,\"{'James Stewart': \"\"L.B. 'Jeff' Jefferies\"\", 'Grace Kelly': 'Lisa Carol Fremont', 'Wendell Corey': 'Det. Lt. Thomas J. Doyle', 'Thelma Ritter': 'Stella', 'Raymond Burr': 'Lars Thorwald', 'Judith Evelyn': 'Miss Lonelyhearts', 'Ross Bagdasarian': 'Songwriter', 'Georgine Darcy': 'Miss Torso', 'Sara Berner': 'Woman on Fire Escape', 'Frank Cady': 'Man on Fire Escape', 'Jesslyn Fax': 'Miss Hearing Aid', 'Rand Harper': 'Newlywed', 'Irene Winston': 'Mrs. Emma Thorwald', 'Havis Davenport': 'Newlywed'}\"\r\ntt0110005,\"{'Melanie Lynskey': 'Pauline Parker', 'Kate Winslet': 'Juliet Hulme', 'Sarah Peirse': 'Honora Parker Rieper', 'Diana Kent': 'Hilda Hulme', 'Clive Merrison': 'Dr. Henry Hulme', \"\"Simon O'Connor\"\": 'Herbert Rieper', 'Jed Brophy': 'John /              Nicholas', 'Peter Elliott': 'Bill Perry', 'Gilbert Goldie': 'Dr. Bennett', 'Geoffrey Heath': 'Rev. Norris', 'Kirsti Ferry': 'Wendy', 'Ben Skjellerup': 'Jonathan Hulme', 'Darien Takle': 'Miss Stewart', 'Elizabeth Moody': 'Miss Waller', 'Liz Mullane': 'Mrs. Collins'}\"\r\ntt1253596,\"{'Rick Howland': 'Big Red Bush', 'Mark Hapka': 'Little Richard Bush', 'Akie Kotabe': 'Deng Mann', 'Brittney Powell': 'Bonnie', 'Paul Rae': 'Eddie Slaten', 'Russell': 'Russell', 'Bob Bledsoe': 'Ira Cohen /              Spartan Man', 'Kayla Carlyle': 'Sam', 'Joe Onoffo': 'Geoffrey', 'Josh Sussman': 'Bunny', 'Leamone': 'Leamone', 'Richard Trapp': 'Gator', 'P.J. Marino': 'Rod /              Taco', 'Terra Jole': 'Leanne', 'Jason Mewes': 'Sheriff (unmasked)'}\"\r\ntt0088850,\"{'Richard Pryor': 'Montgomery Brewster', 'John Candy': 'Spike Nolan', 'Lonette McKee': 'Angela Drake', 'Stephen Collins': 'Warren Cox', 'Jerry Orbach': 'Charley Pegler', 'Pat Hingle': 'Edward Roundfield', 'Tovah Feldshuh': 'Marilyn', 'Hume Cronyn': 'Rupert Horn', 'Joe Grifasi': 'J.B. Donaldo', 'Peter Jason': 'Chuck Fleming', 'David White': 'George Granville', 'Jerome Dempsey': 'Norris Baxter', 'David Wohl': 'Eugene Provost', 'Ji-Tu Cumbuka': 'Melvin', 'Milt Kogan': 'Heller'}\"\r\ntt0133751,\"{'Jordana Brewster': 'Delilah Profitt', 'Clea DuVall': \"\"Stokely 'Stokes' Mitchell\"\", 'Laura Harris': 'Marybeth Louise Hutchinson', 'Josh Hartnett': 'Zeke Tyler', 'Shawn Hatosy': 'Stan Rosado', 'Salma Hayek': 'Nurse Rosa Harper', 'Famke Janssen': 'Miss Elizabeth Burke', 'Piper Laurie': 'Mrs. Karen Olson', 'Christopher McDonald': 'Mr. Frank Connor       (as Chris McDonald)', 'Bebe Neuwirth': 'Principal Valerie Drake', 'Robert Patrick': 'Coach Joe Willis', 'Usher Raymond': 'Gabe Santora', 'Jon Stewart': 'Prof. Edward Furlong', 'Daniel von Bargen': 'Mr. John Tate', 'Elijah Wood': 'Casey Connor'}\"\r\ntt0077416,\"{'Robert De Niro': 'Michael', 'John Cazale': 'Stan', 'John Savage': 'Steven', 'Christopher Walken': 'Nick', 'Meryl Streep': 'Linda', 'George Dzundza': 'John', 'Chuck Aspegren': 'Axel', 'Shirley Stoler': \"\"Steven's Mother\"\", 'Rutanya Alda': 'Angela', 'Pierre Segui': 'Julien', 'Mady Kaplan': \"\"Axel's Girl\"\", 'Amy Wright': 'Bridesmaid', 'Mary Ann Haenel': \"\"Stan's Girl\"\", 'Richard Kuss': \"\"Linda's Father\"\", 'Joe Grifasi': 'Bandleader'}\"\r\ntt0090305,\"{'Anthony Michael Hall': 'Gary Wallace', 'Kelly LeBrock': 'Lisa', 'Ilan Mitchell-Smith': 'Wyatt Donnelly', 'Bill Paxton': 'Chet Donnelly', 'Suzanne Snyder': 'Deb', 'Judie Aronson': 'Hilly', 'Robert Downey Jr.': 'Ian       (as Robert Downey)', 'Robert Rusler': 'Max', 'Vernon Wells': 'Lord General', 'Britt Leach': 'Al Wallace', 'Barbara Lang': 'Lucy Wallace', 'Michael Berryman': 'Mutant Biker', 'Ivor Barry': 'Henry Donnelly', 'Ann Coyle': 'Carmen Donnelly       (as Anne Bernadette Coyle)', 'Suzy J. Kellems': 'Gymnast'}\"\r\ntt0384642,\"{'Will Ferrell': 'Phil Weston', 'Robert Duvall': 'Buck Weston', 'Mike Ditka': 'Mike Ditka', 'Kate Walsh': 'Barbara Weston', 'Musetta Vander': 'Janice Weston', 'Dylan McLaughlin': 'Sam Weston', 'Josh Hutcherson': 'Bucky Weston', 'Steven Anthony Lawrence': 'Mark Avery', 'Jeremy Bergman': 'Hunter', 'Elliott Cho': 'Byong Sun       (as Elliot Cho)', 'Erik Walker': 'Ambrose', 'Dallas McKinney': 'Connor', 'Francesco Liotti': 'Gian Piero', 'Alessandro Ruggiero': 'Massimo', 'Sammy Fine': 'Jack'}\"\r\ntt0107076,\"{'Chuck Pfarrer': 'Douglas Binder', 'Robert Apisa': 'Mr. Lopacki       (as Bob Apisa)', 'Arnold Vosloo': 'Pik van Cleef', 'Lance Henriksen': 'Emil Fouchon', 'Douglas Rye': 'Frick       (as Douglas Forsythe Rye)', 'Mike Leinert': 'Frack       (as Michael D. Leinert)', 'Yancy Butler': \"\"Natasha 'Nat' Binder\"\", 'Lenore Banks': 'Marie', 'Willie C. Carpenter': 'Elijah Roper       (as Willie Carpenter)', 'Jean-Claude Van Damme': 'Chance Boudreaux', 'Barbara Tasker': 'Waitress', 'Kasi Lemmons': 'Det. Marie Mitchell', 'Randy Cheramie': 'Shop Steward', 'Eliott Keener': 'Randal Poe', 'Robert Pavlovich': 'Detective'}\"\r\ntt0106332,\"{'Leslie Cheung': 'Cheng Dieyi (segment \"\"Douzi\"\")', 'Fengyi Zhang': 'Duan Xiaolou (segment \"\"Shitou\"\")', 'Li Gong': 'Juxian', 'Qi Lü': 'Master Guan', 'Da Ying': 'Manager', 'You Ge': 'Master Yuan', 'Han Lei': 'Xiao Si (adult)', 'Di Tong': 'Zhang the Eunuch', 'Zhi Yin': 'Douzi as a Teenager', 'Mingwei Ma': 'Douzi as a Child', 'Hailong Zhao': 'Shitou as a Teenager', 'Yang Fei': 'Shitou as a Child', 'Dan Li': 'Laizi /              Peking Opera schoolboy', 'Yongchao Yang': 'Laizi as a Child', 'Fei Huang': 'Old Master'}\"\r\ntt0082198,\"{'Arnold Schwarzenegger': 'Conan', 'James Earl Jones': 'Thulsa Doom', 'Max von Sydow': 'King Osric       (as Max Von Sydow)', 'Sandahl Bergman': 'Valeria', 'Ben Davidson': 'Rexor', 'Cassandra Gava': 'The Witch       (as Cassandra Gaviola)', 'Gerry Lopez': 'Subotai', 'Mako': 'The Wizard /              Narrator', 'Valérie Quennessen': 'The Princess       (as Valerie Quennessen)', 'William Smith': \"\"Conan's Father\"\", 'Luis Barboo': 'Red Hair', 'Franco Columbu': 'Pictish Scout', 'Leslie Foldvary': 'Sacrificial Snake Girl', 'Gary Herman': \"\"Osric's Guard\"\", 'Erik Holmey': 'Turanian War Officer       (as Erick Holmey)'}\"\r\ntt0765429,\"{'Denzel Washington': 'Frank Lucas', 'Russell Crowe': 'Richie Roberts', 'Chiwetel Ejiofor': 'Huey Lucas', 'Josh Brolin': 'Detective Trupo', 'Lymari Nadal': 'Eva', 'Ted Levine': 'Lou Toback', 'Roger Guenveur Smith': 'Nate', 'John Hawkes': 'Freddie Spearman', 'RZA': 'Moses Jones', 'Yul Vazquez': 'Alfonse Abruzzo', 'Malcolm Goodwin': 'Jimmy Zee', 'Ruby Dee': 'Mama Lucas', 'Ruben Santiago-Hudson': 'Doc', 'Carla Gugino': 'Laurie Roberts', 'Skyler Fortgang': 'Michael Roberts'}\"\r\ntt0080761,\"{'Betsy Palmer': 'Mrs. Voorhees', 'Adrienne King': 'Alice', 'Jeannine Taylor': 'Marcie', 'Robbi Morgan': 'Annie', 'Kevin Bacon': 'Jack', 'Harry Crosby': 'Bill', 'Laurie Bartram': 'Brenda', 'Mark Nelson': 'Ned', 'Peter Brouwer': 'Steve Christy', 'Rex Everhart': 'The Truck Driver', 'Ronn Carroll': 'Sgt. Tierney', 'Ron Millkie': 'Officer Dorf', 'Walt Gorney': 'Crazy Ralph', 'Willie Adams': 'Barry', 'Debra S. Hayes': 'Claudette'}\"\r\ntt0120694,\"{'Jamie Lee Curtis': 'Laurie Strode /              Keri Tate', 'Adam Arkin': 'Will Brennan', 'Michelle Williams': 'Molly', 'Adam Hann-Byrd': 'Charlie', \"\"Jodi Lyn O'Keefe\"\": 'Sarah', 'Janet Leigh': 'Norma', 'Josh Hartnett': 'John', 'LL Cool J': 'Ronny', 'Joseph Gordon-Levitt': 'Jimmy', 'Branden Williams': 'Tony', 'Nancy Stephens': 'Marion', 'Beau Billingslea': 'Fitz', 'Matt Winston': 'Matt', 'Larisa Miller': 'Claudia', 'Emmalee Thompson': 'Casey'}\"\r\ntt0216787,\"{'Anne Alvaro': 'Clara Devaux', 'Jean-Pierre Bacri': 'Jean-Jacques Castella', 'Alain Chabat': 'Bruno Deschamps', 'Agnès Jaoui': 'Manie', 'Gérard Lanvin': 'Franck Moreno', 'Christiane Millet': 'Angélique', 'Wladimir Yordanoff': 'Antoine', 'Anne Le Ny': \"\"Valérie, l'habilleuse\"\", 'Brigitte Catillon': 'Béatrice Castella', 'Raphaël Dufour': 'Benoît', 'Xavier de Guillebon': 'Weber', 'Céline Arnaud': 'Virginie', 'Robert Bacri': 'Le père de Castella', 'Marie Agnès Brigot': 'La secrétaire de Castella       (as Marie-Agnès Brigot)'}\"\r\ntt0238380,\"{'Christian Bale': 'John Preston', 'Dominic Purcell': 'Seamus', 'Sean Bean': 'Partridge', 'Christian Kahrmann': 'Officer in Charge', 'John Keogh': 'Chemist', 'Sean Pertwee': 'Father', 'William Fichtner': 'Jurgen', 'Angus Macfadyen': 'Dupont       (as Angus MacFadyen)', 'David Barrash': 'Evidentiary Storage Officer', 'Dirk Martens': 'Gate Guard', 'Taye Diggs': 'Brandt', 'Matthew Harbour': 'Robbie Preston', 'Maria Pia Calzone': \"\"Preston's Wife\"\", 'Emily Siewert': 'Lisa Preston', 'Emily Watson': \"\"Mary O'Brien\"\"}\"\r\ntt0169547,\"{'Kevin Spacey': 'Lester Burnham', 'Annette Bening': 'Carolyn Burnham', 'Thora Birch': 'Jane Burnham', 'Wes Bentley': 'Ricky Fitts', 'Mena Suvari': 'Angela Hayes', 'Peter Gallagher': 'Buddy Kane', 'Allison Janney': 'Barbara Fitts', 'Chris Cooper': 'Colonel Fitts', 'Scott Bakula': 'Jim Olmeyer', 'Sam Robards': 'Jim Berkley', 'Barry Del Sherman': 'Brad', 'Ara Celi': 'Sale House Woman #1', 'John Cho': 'Sale House Man #1', 'Fort Atkinson': 'Sale House Man #2', 'Sue Casey': 'Sale House Woman #2'}\"\r\ntt0230600,\"{'Nicole Kidman': 'Grace', 'Fionnula Flanagan': 'Mrs. Mills', 'Christopher Eccleston': 'Charles', 'Alakina Mann': 'Anne', 'James Bentley': 'Nicholas', 'Eric Sykes': 'Mr. Tuttle', 'Elaine Cassidy': 'Lydia', 'Renée Asherson': 'Old Lady', 'Gordon Reid': 'Assistant', 'Keith Allen': 'Mr. Marlish', 'Michelle Fairley': 'Mrs. Marlish', 'Alexander Vince': 'Victor', 'Ricardo López': '2nd Assistant', 'Aldo Grilo': 'Gardener'}\"\r\ntt0357413,\"{'Will Ferrell': 'Ron Burgundy', 'Christina Applegate': 'Veronica Corningstone', 'Paul Rudd': 'Brian Fantana', 'Steve Carell': 'Brick Tamland', 'David Koechner': 'Champ Kind', 'Fred Willard': 'Ed Harken', 'Chris Parnell': 'Garth Holliday', 'Kathryn Hahn': 'Helen', 'Fred Armisen': 'Tino', 'Seth Rogen': 'Eager Cameraman', 'Paul F. Tompkins': 'MC', 'Danny Trejo': 'Bartender', 'Scot Robinson': \"\"Waiter at Tino's\"\", 'Ian Roberts': 'Stage Manager', 'Darcy Donavan': 'Hot Blonde'}\"\r\ntt0079945,\"{'William Shatner': 'Capt. James T. Kirk', 'Leonard Nimoy': 'Spock', 'DeForest Kelley': 'Dr. McCoy', 'James Doohan': 'Scotty', 'George Takei': 'Sulu', 'Majel Barrett': 'Dr. Chapel', 'Walter Koenig': 'Chekov', 'Nichelle Nichols': 'Uhura', 'Persis Khambatta': 'Ilia', 'Stephen Collins': 'Decker', 'Grace Lee Whitney': 'Janice Rand', 'Mark Lenard': 'Klingon Captain', 'Billy Van Zandt': 'Alien Boy', 'Roger Aaron Brown': 'Epsilon Technician', 'Gary Faga': 'Airlock Technician'}\"\r\ntt0106918,\"{'Tom Cruise': 'Mitch McDeere', 'Jeanne Tripplehorn': 'Abby McDeere', 'Gene Hackman': 'Avery Tolar', 'Hal Holbrook': 'Oliver Lambert', 'Terry Kinney': 'Lamar Quinn', 'Wilford Brimley': 'William Devasher', 'Ed Harris': 'Wayne Tarrance', 'Holly Hunter': 'Tammy Hemphill', 'David Strathairn': 'Ray McDeere', 'Gary Busey': 'Eddie Lomax', 'Steven Hill': 'F. Denton Voyles', 'Tobin Bell': 'The Nordic Man', 'Barbara Garrick': 'Kay Quinn', 'Jerry Hardin': 'Royce McKnight', 'Paul Calderon': 'Thomas Richie'}\"\r\ntt0357413,\"{'Will Ferrell': 'Ron Burgundy', 'Christina Applegate': 'Veronica Corningstone', 'Paul Rudd': 'Brian Fantana', 'Steve Carell': 'Brick Tamland', 'David Koechner': 'Champ Kind', 'Fred Willard': 'Ed Harken', 'Chris Parnell': 'Garth Holliday', 'Kathryn Hahn': 'Helen', 'Fred Armisen': 'Tino', 'Seth Rogen': 'Eager Cameraman', 'Paul F. Tompkins': 'MC', 'Danny Trejo': 'Bartender', 'Scot Robinson': \"\"Waiter at Tino's\"\", 'Ian Roberts': 'Stage Manager', 'Darcy Donavan': 'Hot Blonde'}\"\r\ntt0099810,\"{'Sean Connery': 'Marko Ramius', 'Alec Baldwin': 'Jack Ryan', 'Scott Glenn': 'Bart Mancuso', 'Sam Neill': 'Captain Borodin', 'James Earl Jones': 'Admiral Greer', 'Joss Ackland': 'Andrei Lysenko', 'Richard Jordan': 'Jeffrey Pelt', 'Peter Firth': 'Ivan Putin', 'Tim Curry': 'Dr. Petrov', 'Courtney B. Vance': 'Seaman Jones', 'Stellan Skarsgård': 'Captain Tupolev', 'Jeffrey Jones': 'Skip Tyler', 'Timothy Carhart': 'Bill Steiner', 'Larry Ferguson': 'Chief of the Boat', 'Fred Dalton Thompson': 'Admiral Painter'}\"\r\ntt0120815,\"{'Tom Hanks': 'Captain Miller', 'Tom Sizemore': 'Sergeant Horvath', 'Edward Burns': 'Private Reiben', 'Barry Pepper': 'Private Jackson', 'Adam Goldberg': 'Private Mellish', 'Vin Diesel': 'Private Caparzo', 'Giovanni Ribisi': 'T-4 Medic Wade', 'Jeremy Davies': 'Corporal Upham', 'Matt Damon': 'Private Ryan', 'Ted Danson': 'Captain Hamill', 'Paul Giamatti': 'Sergeant Hill', 'Dennis Farina': 'Lieutenant Colonel Anderson', 'Joerg Stadler': 'Steamboat Willie', 'Max Martini': 'Corporal Henderson       (as Maximilian Martini)', 'Dylan Bruno': 'Toynbe'}\"\r\ntt0119675,\"{'Mira Sorvino': 'Dr. Susan Tyler', 'Jeremy Northam': 'Dr. Peter Mann', 'Alexander Goodwin': 'Chuy', 'Giancarlo Giannini': 'Manny', 'Charles S. Dutton': 'Leonard', 'Josh Brolin': 'Josh', 'Alix Koromzay': 'Remy', 'F. Murray Abraham': 'Dr. Gates', 'James Costa': 'Ricky', 'Javon Barnwell': 'Davis', 'Norman Reedus': 'Jeremy', 'Pak-Kwong Ho': 'Preacher', 'Glenn Bang': 'Yang       (as Glen Bang)', 'Margaret Ma': 'Chinese Woman', 'Warna Fisher': 'Bag Lady'}\"\r\ntt0449467,\"{'Brad Pitt': 'Richard', 'Cate Blanchett': 'Susan', 'Mohamed Akhzam': 'Anwar', 'Peter Wight': 'Tom', 'Harriet Walter': 'Lilly', 'Trevor Martin': 'Douglas', 'Matyelok Gibbs': 'Elyse', 'Georges Bousquet': 'Robert', 'Claudine Acs': 'Jane', 'André Oumansky': 'Walter', 'Michael Maloney': 'James', 'Dermot Crowley': 'Barth', 'Wendy Nottingham': 'Tourist', 'Henry Maratray': 'Tourist', 'Linda Broughton': 'Tourist'}\"\r\ntt0084726,\"{'William Shatner': 'Kirk', 'Leonard Nimoy': 'Spock', 'DeForest Kelley': 'McCoy', 'James Doohan': 'Scotty', 'Walter Koenig': 'Chekov', 'George Takei': 'Sulu', 'Nichelle Nichols': 'Uhura', 'Bibi Besch': 'Carol', 'Merritt Butrick': 'David', 'Paul Winfield': 'Terrell', 'Kirstie Alley': 'Saavik', 'Ricardo Montalban': 'Khan', 'Ike Eisenmann': 'Preston', 'John Vargas': 'Jedda', 'John Winston': 'Kyle'}\"\r\ntt0118607,\"{'Morgan Freeman': 'Theodore Joadson', 'Nigel Hawthorne': 'Martin Van Buren', 'Anthony Hopkins': 'John Quincy Adams', 'Djimon Hounsou': 'Cinque', 'Matthew McConaughey': 'Roger Sherman Baldwin', 'David Paymer': 'Secretary John Forsyth', 'Pete Postlethwaite': 'Holabird', 'Stellan Skarsgård': 'Tappan', 'Razaaq Adoti': 'Yamba', 'Abu Bakaar Fofanah': 'Fala', 'Anna Paquin': 'Queen Isabella', 'Tomas Milian': 'Calderon', 'Chiwetel Ejiofor': 'Ensign Covey', 'Derrick N. Ashong': 'Buakei', 'Geno Silva': 'Ruiz'}\"\r\ntt0172495,\"{'Russell Crowe': 'Maximus', 'Joaquin Phoenix': 'Commodus', 'Connie Nielsen': 'Lucilla', 'Oliver Reed': 'Proximo', 'Richard Harris': 'Marcus Aurelius', 'Derek Jacobi': 'Gracchus', 'Djimon Hounsou': 'Juba', 'David Schofield': 'Falco', 'John Shrapnel': 'Gaius', 'Tomas Arana': 'Quintus', 'Ralf Moeller': 'Hagen', 'Spencer Treat Clark': 'Lucius', 'David Hemmings': 'Cassius', 'Tommy Flanagan': 'Cicero', 'Sven-Ole Thorsen': 'Tigris'}\"\r\ntt0401383,\"{'Mathieu Amalric': 'Jean-Do', 'Emmanuelle Seigner': 'Céline', 'Marie-Josée Croze': 'Henriette Roi', 'Anne Consigny': 'Claude', 'Patrick Chesnais': 'Le Docteur Lepage', 'Niels Arestrup': 'Roussin', 'Olatz López Garmendia': 'Marie Lopez', 'Jean-Pierre Cassel': 'Père Lucien et le Vendeur', 'Marina Hands': 'Joséphine', 'Max von Sydow': 'Papinou', 'Gérard Watkins': 'Le Docteur Cocheton', 'Théo Sampaio': 'Théophile', 'Fiorella Campanella': 'Céleste', 'Talina Boyaci': 'Hortense', 'Isaach De Bankolé': 'Laurent'}\"\r\ntt0327679,\"{'Anne Hathaway': 'Ella', 'Hugh Dancy': 'Char', 'Cary Elwes': 'Edgar', 'Aidan McArdle': 'Slannen       (as Aidan Mcardle)', 'Joanna Lumley': 'Dame Olga', 'Lucy Punch': 'Hattie', 'Jennifer Higham': 'Olive', 'Minnie Driver': 'Mandy', 'Eric Idle': 'Narrator', 'Steve Coogan': 'Heston       (voice)', 'Jimi Mistry': 'Benny', 'Vivica A. Fox': 'Lucinda', 'Parminder Nagra': 'Areida', 'Jim Carter': 'Nish', 'Patrick Bergin': 'Sir Peter'}\"\r\ntt0095765,\"{'Antonella Attili': 'Maria Di Vita - Younger', 'Enzo Cannavale': 'Spaccafico', 'Isa Danieli': 'Anna', 'Leo Gullotta': 'Usher', 'Marco Leonardi': \"\"Salvatore 'Totò' Di Vita - Teenager\"\", 'Pupella Maggio': 'Maria Di Vita - Older', 'Agnese Nano': 'Elena Mendola', 'Leopoldo Trieste': 'Father Adelfio', 'Salvatore Cascio': \"\"Salvatore 'Totò' Di Vita - Child\"\", 'Tano Cimarosa': 'Blacksmith', 'Nicola Di Pinto': 'Village Idiot', 'Roberta Lena': 'Lia', 'Nino Terzo': \"\"Peppino's Father\"\", 'Jacques Perrin': \"\"Salvatore 'Totò' Di Vita - Adult\"\", 'Philippe Noiret': 'Alfredo'}\"\r\ntt0468565,\"{'Presley Chweneyagae': 'Tsotsi', 'Terry Pheto': 'Miriam', 'Kenneth Nkosi': 'Aap', 'Mothusi Magano': 'Boston', 'Zenzo Ngqobe': 'Butcher', 'Zola': 'Fela', 'Rapulana Seiphemo': 'John Dube', 'Nambitha Mpumlwana': 'Pumla Dube', 'Nonthuthu Sibisi': 'The Baby', 'Ntuthuko Sibisi': 'The Baby', 'Jerry Mofokeng': 'Morris', 'Ian Roberts': 'Captain Smit', 'Percy Matsemela': 'Sergeant Zuma', 'Thembi Nyandeni': 'Soekie', 'Owen Sejake': 'Gumboot Dlamini'}\"\r\ntt0181875,\"{'Billy Crudup': 'Russell Hammond', 'Frances McDormand': 'Elaine Miller', 'Kate Hudson': 'Penny Lane', 'Jason Lee': 'Jeff Bebe', 'Patrick Fugit': 'William Miller', 'Zooey Deschanel': 'Anita Miller', 'Michael Angarano': 'Young William', 'Anna Paquin': 'Polexia Aphrodisia', 'Fairuza Balk': 'Sapphire', 'Noah Taylor': 'Dick Roswell', 'John Fedevich': 'Ed Vallencourt', 'Mark Kozelek': 'Larry Fellows', 'Philip Seymour Hoffman': 'Lester Bangs', 'Liz Stauber': 'Leslie', 'Jimmy Fallon': 'Dennis Hope'}\"\r\ntt0257044,\"{'Tyler Hoechlin': 'Michael Sullivan Jr.', 'Rob Maxey': 'Drugstore Owner', 'Liam Aiken': 'Peter Sullivan', 'Jennifer Jason Leigh': 'Annie Sullivan', 'Tom Hanks': 'Michael Sullivan', 'Paul Newman': 'John Rooney', 'Daniel Craig': 'Connor Rooney', 'Ciarán Hinds': 'Finn McGovern', 'Craig Spidle': \"\"Rooney's Henchman\"\", 'Ian Barford': \"\"Rooney's Henchman\"\", 'Stephen P. Dunn': \"\"Finn McGovern's Henchman       (as Stephen Dunn)\"\", 'Paul Turner': \"\"Finn McGovern's Henchman\"\", 'Kathleen Keane': 'Irish Musician', 'Brendan McKinney': 'Irish Musician', 'Jackie Moran': 'Irish Musician'}\"\r\ntt1182609,\"{'Dolph Lundgren': 'Mike Riggins', 'Gina May': 'Ana Gale', 'Michael Paré': 'Clive Connelly', 'Bashar Rahal': 'General Drago', 'James Chalke': 'Trent Robbins', 'Vladimir Vladimirov': 'Vlado Karadjov', 'Raicho Vasilev': 'Boris', 'Nikolay Stanoev': 'Gun Dealer', 'Mike Straub': 'Lead Marine Guard', 'Les Weldon': 'Anchorman', 'Yoan Petrov': \"\"Vlado's Son\"\", 'Uti Bachvarov': 'Zoran Posternoff', 'Alexander Kadiev': 'Chopper Pilot', 'Teodor Tsolov': 'Janitor', 'Mariana Stansheva': 'Screaming Woman       (as Marianne Stanicheva)'}\"\r\ntt1179904,\"{'Katie Featherston': 'Katie', 'Micah Sloat': 'Micah', 'Mark Fredrichs': 'Psychic', 'Amber Armstrong': 'Amber', 'Ashley Palmer': 'Diane'}\"\r\ntt0302886,\"{'Luke Wilson': 'Mitch', 'Will Ferrell': 'Frank', 'Vince Vaughn': 'Beanie', 'Jeremy Piven': 'Pritchard', 'Ellen Pompeo': 'Nicole', 'Juliette Lewis': 'Heidi', 'Leah Remini': 'Lara', 'Perrey Reeves': 'Marissa', 'Craig Kilborn': 'Mark', 'Elisha Cuthbert': 'Darcie', 'Seann William Scott': 'Peppers', 'Matt Walsh': 'Walsh', 'Artie Lange': 'Booker', 'Patrick Fischler': 'Michael', 'Sara Tanaka': 'Megan'}\"\r\ntt0418279,\"{'Shia LaBeouf': 'Sam Witwicky', 'Megan Fox': 'Mikaela Banes', 'Josh Duhamel': 'Captain Lennox', 'Tyrese Gibson': 'USAF Tech Sergeant Epps', 'Rachael Taylor': 'Maggie Madsen', 'Anthony Anderson': 'Glen Whitmann', 'Jon Voight': 'Defense Secretary John Keller', 'John Turturro': 'Agent Simmons', \"\"Michael O'Neill\"\": 'Tom Banacheck', 'Kevin Dunn': 'Ron Witwicky', 'Julie White': 'Judy Witwicky', 'Amaury Nolasco': 'ACWO Jorge \"\"Fig\"\" Figueroa', 'Zack Ward': 'First Sergeant Donnelly', 'Luis Echagarruga': 'Ranger Team', 'Patrick Mulderrig': 'Ranger Team'}\"\r\ntt0377109,\"{'Naomi Watts': 'Rachel', 'Simon Baker': 'Max Rourke', 'David Dorfman': 'Aidan', 'Elizabeth Perkins': 'Dr. Emma Temple', 'Gary Cole': 'Martin Savide', 'Sissy Spacek': 'Evelyn', 'Ryan Merriman': 'Jake', 'Emily VanCamp': 'Emily', 'Kelly Overton': 'Betsy', 'James Lesure': 'Doctor', 'Daveigh Chase': 'Samara       (archive footage)', 'Kelly Stables': 'Evil Samara', 'Cooper Thornton': 'Father of Emily', 'Marilyn McIntyre': 'Mother of Emily', 'Jesse Burch': 'Male Reporter'}\"\r\ntt0120737,\"{'Alan Howard': 'Voice of the Ring       (voice)', 'Noel Appleby': 'Everard Proudfoot', 'Sean Astin': 'Sam', 'Sala Baker': 'Sauron', 'Sean Bean': 'Boromir', 'Cate Blanchett': 'Galadriel', 'Orlando Bloom': 'Legolas', 'Billy Boyd': 'Pippin', 'Marton Csokas': 'Celeborn', 'Megan Edwards': 'Mrs. Proudfoot', 'Michael Elsworth': 'Gondorian Archivist', 'Mark Ferguson': 'Gil-galad', 'Ian Holm': 'Bilbo', 'Christopher Lee': 'Saruman', 'Lawrence Makoare': 'Lurtz'}\"\r\ntt0236493,\"{'Brad Pitt': 'Jerry Welbach', 'Julia Roberts': 'Samantha Barzel', 'James Gandolfini': 'Winston Baldry', 'J.K. Simmons': 'Ted Slocum', 'Bob Balaban': 'Bernie Nayman', 'Sherman Augustus': 'Well Dressed Black Man', 'Michael Cerveris': 'Frank', 'Gene Hackman': 'Arnold Margolese', 'Richard Coca': 'Car Thief #1', 'David Krumholtz': 'Beck', 'Castulo Guerra': 'Joe the Pawnshop Owner', 'Mayra Serbulo': 'Emanuelle       (as Maira Serbulo)', 'Salvador Sánchez': 'Gunsmith', 'Alan Ciangherotti': \"\"Gunsmith's Assistant       (as Alan Cianguerotti)\"\", 'Melisa Romero': \"\"Gunsmith's Daughter\"\"}\"\r\ntt0161081,\"{'Michelle Pfeiffer': 'Claire Spencer', 'Katharine Towne': 'Caitlin Spencer', 'Miranda Otto': 'Mary Feur', 'James Remar': 'Warren Feur', 'Harrison Ford': 'Norman Spencer', 'Victoria Bidewell': 'Beatrice', 'Diana Scarwid': 'Jody', 'Dennison Samaroo': 'PhD Student #1', 'Jennifer Tung': 'PhD Student #2', 'Eliott Goretsky': 'Teddy', 'Rachel Singer': 'PhD Student #3', 'Daniel Zelman': 'PhD Student #4', 'Ray Baker': 'Dr. Stan Powell', 'Wendy Crewson': 'Elena', 'Amber Valletta': 'Madison Elizabeth Frank'}\"\r\ntt0181689,\"{'Tom Cruise': 'Chief John Anderton', 'Max von Sydow': 'Director Lamar Burgess', 'Steve Harris': 'Jad', 'Neal McDonough': 'Fletcher', 'Patrick Kilpatrick': 'Knott', 'Jessica Capshaw': 'Evanna', 'Richard Coca': 'Pre-Crime Cop', 'Keith Campbell': 'Pre-Crime Cop', 'Kirk B.R. Woller': 'Pre-Crime Cop', 'Klea Scott': 'Pre-Crime Cop', 'Frank Grillo': 'Pre-Crime Cop', 'Anna Maria Horsford': 'Casey', 'Sarah Simmons': \"\"Lamar Burgess' Secretary\"\", 'Eugene Osment': \"\"Jad's Technician\"\", 'James Henderson': 'Office Worker'}\"\r\ntt0325537,\"{'Chris Rock': 'Mays Gilliam', 'Bernie Mac': 'Mitch Gilliam', 'Dylan Baker': 'Martin Geller', 'Nick Searcy': 'Brian Lewis', 'Lynn Whitfield': 'Debra Lassiter', 'Robin Givens': 'Kim', 'Tamala Jones': 'Lisa Clark', 'James Rebhorn': 'Senator Bill Arnot', 'Keith David': 'Bernard Cooper', 'Tracy Morgan': 'Meat Man', 'Stephanie March': 'Nikki', 'Robert Stanton': 'Advisor', 'Jude Ciccolella': 'Mr. Earl', 'Nate Dogg': 'Himself', 'Angie Mattson': \"\"Nate's Girl\"\"}\"\r\ntt0264464,\"{'Leonardo DiCaprio': 'Frank Abagnale Jr.', 'Tom Hanks': 'Carl Hanratty', 'Christopher Walken': 'Frank Abagnale', 'Martin Sheen': 'Roger Strong', 'Nathalie Baye': 'Paula Abagnale', 'Amy Adams': 'Brenda Strong', 'James Brolin': 'Jack Barnes', 'Brian Howe': 'Earl Amdursky', 'Frank John Hughes': 'Tom Fox', 'Steve Eastin': 'Paul Morgan', 'Chris Ellis': 'Special Agent Witkins', 'John Finn': 'Assistant Director Marsh', 'Jennifer Garner': 'Cheryl Ann', 'Nancy Lenehan': 'Carol Strong', 'Ellen Pompeo': 'Marci'}\"\r\ntt0369339,\"{'Tom Cruise': 'Vincent', 'Jamie Foxx': 'Max', 'Jada Pinkett Smith': 'Annie', 'Mark Ruffalo': 'Fanning', 'Peter Berg': 'Richard Weidner', 'Bruce McGill': 'Pedrosa', 'Irma P. Hall': 'Ida', 'Barry Shabaka Henley': 'Daniel', 'Richard T. Jones': 'Traffic Cop #1', 'Klea Scott': 'Fed #1', 'Bodhi Elfman': 'Young Professional Man', 'Debi Mazar': 'Young Professional Woman', 'Javier Bardem': 'Felix', 'Emilio Rivera': 'Paco', 'Jamie McBride': 'Traffic Cop #2'}\"\r\ntt0120647,\"{'Robert Duvall': 'Spurgeon Tanner', 'Téa Leoni': 'Jenny Lerner', 'Elijah Wood': 'Leo Biederman', 'Vanessa Redgrave': 'Robin Lerner', 'Morgan Freeman': 'President Beck', 'Maximilian Schell': 'Jason Lerner', 'James Cromwell': 'Alan Rittenhouse', 'Ron Eldard': 'Oren Monash', 'Jon Favreau': 'Gus Partenza', 'Laura Innes': 'Beth Stanley', 'Mary McCormack': 'Andrea Baker', 'Richard Schiff': 'Don Biederman', 'Leelee Sobieski': 'Sarah Hotchner', 'Blair Underwood': 'Mark Simon', 'Dougray Scott': 'Eric Vennekor'}\"\r\ntt0399201,\"{'Ewan McGregor': 'Lincoln Six Echo /              Tom Lincoln', 'Scarlett Johansson': 'Jordan Two Delta /              Sarah Jordan', 'Djimon Hounsou': 'Albert Laurent', 'Sean Bean': 'Dr. Bernard Merrick', 'Steve Buscemi': 'James McCord', 'Michael Clarke Duncan': 'Starkweather Two Delta /              Jamal Starkweather', 'Ethan Phillips': 'Jones Three Echo', 'Brian Stepanek': 'Gandu Three Echo', 'Noa Tishby': 'Community Announcer', 'Siobhan Flynn': 'Lima One Alpha', 'Troy Blendell': 'Laurent Team Member', 'Jamie McBride': 'Laurent Team Member', 'Kevin McCorkle': 'Laurent Team Member', 'Gary Nickens': 'Laurent Team Member', 'Kathleen Rose Perkins': 'Laurent Team Member'}\"\r\ntt0942385,\"{'Jeff Kahn': 'Snooty Waiter - Fatties Trailer', 'Robert Downey Jr.': 'Kirk Lazarus - Hot LZ', 'Anthony Ruivivar': 'Platoon Sergeant Shot in Head - Hot LZ', 'Jack Black': 'Jeff Portnoy - Hot LZ', 'Jay Baruchel': 'Kevin Sandusky - Hot LZ', 'Brandon T. Jackson': 'Alpa Chino - Hot LZ', 'Ben Stiller': 'Tugg Speedman - Hot LZ', 'Eric Winzenried': 'Chopper Pilot - Hot LZ', 'Steve Coogan': 'Damien Cockburn - Vietnam Crew', 'Valerie Azlynn': \"\"Damien's Assistant - Vietnam Crew\"\", 'Matt Levin': 'Cameraperson - Vietnam Crew', 'David Pressman': 'First Assistant Director - Vietnam Crew', 'Amy Stiller': 'Script Supervisor - Vietnam Crew', 'Danny McBride': 'Cody - Vietnam Crew', 'Dempsey Silva': 'Special Effects Assistant - Vietnam Crew'}\"\r\ntt0177789,\"{'Tim Allen': 'Jason Nesmith', 'Sigourney Weaver': 'Gwen DeMarco', 'Alan Rickman': 'Alexander Dane', 'Tony Shalhoub': 'Fred Kwan', 'Sam Rockwell': 'Guy Fleegman', 'Daryl Mitchell': 'Tommy Webber', 'Enrico Colantoni': 'Mathesar', 'Robin Sachs': 'Sarris', 'Patrick Breen': 'Quellek', 'Missi Pyle': 'Laliari', 'Jed Rees': 'Teb', 'Justin Long': 'Brandon', 'Jeremy Howard': 'Kyle', 'Kaitlin Cullum': 'Katelyn', 'Jonathan Feyer': 'Hollister'}\"\r\ntt0477051,\"{'Eddie Murphy': 'Norbit /              Rasputia /              Mr. Wong', 'Thandie Newton': 'Kate Thomas', 'Terry Crews': 'Big Jack Latimore', 'Clifton Powell': 'Earl Latimore', 'Lester Speight': \"\"Blue Latimore       (as Lester 'Rasta' Speight)\"\", 'Cuba Gooding Jr.': 'Deion Hughes', 'Eddie Griffin': 'Pope Sweet Jesus', 'Katt Williams': 'Lord Have Mercy', 'Floyd Levine': 'Abe the Tailor', 'Anthony Russell': 'Giovanni', 'Pat Crawford Brown': 'Mrs. Henderson', 'Jeanette Miller': 'Mrs. Coleman', 'Michael Colyar': 'Morris the Barber', 'Marlon Wayans': 'Buster', 'Alexis Rhee': 'Mrs. Ling Ling Wong'}\"\r\ntt0043014,\"{'William Holden': 'Joe Gillis', 'Gloria Swanson': 'Norma Desmond', 'Erich von Stroheim': 'Max Von Mayerling', 'Nancy Olson': 'Betty Schaefer', 'Fred Clark': 'Sheldrake', 'Lloyd Gough': 'Morino', 'Jack Webb': 'Artie Green', 'Franklyn Farnum': 'Undertaker', 'Larry J. Blake': '1st Finance Man       (as Larry Blake)', 'Charles Dayton': '2nd Finance Man', 'Cecil B. DeMille': 'Cecil B. DeMille', 'Hedda Hopper': 'Hedda Hopper', 'Buster Keaton': 'Buster Keaton', 'Anna Q. Nilsson': 'Anna Q. Nilsson', 'H.B. Warner': 'H. B. Warner'}\"\r\ntt0088286,\"{'Val Kilmer': 'Nick Rivers', 'Lucy Gutteridge': 'Hillary Flammond', 'Peter Cushing': 'Bookstore Proprietor', 'Jeremy Kemp': 'General Streck', 'Christopher Villiers': 'Nigel', 'Warren Clarke': 'Colonel von Horst', 'Michael Gough': 'Dr. Paul Flammond', 'Harry Ditson': 'Du Quois', 'Jim Carter': 'Déjà Vu', 'Eddie Tagoe': 'Chocolate Mousse', 'Nancy Abrahams': 'Pregnant Woman', 'Omar Sharif': 'Agent Cedric', 'Tristram Jellinek': 'Major Crumpler', 'Billy J. Mitchell': 'Martin', 'Major Wiley': 'Porter'}\"\r\ntt0080339,\"{'Kareem Abdul-Jabbar': 'Roger Murdock       (as Kareem Abdul-Jabaar)', 'Lloyd Bridges': 'Steve McCroskey', 'Peter Graves': 'Captain Clarence Oveur', 'Julie Hagerty': 'Elaine Dickinson', 'Robert Hays': 'Ted Striker', 'Leslie Nielsen': 'Dr. Rumack', 'Lorna Patterson': 'Randy', 'Robert Stack': 'Captain Rex Kramer', 'Stephen Stucker': 'Johnny Henshaw-Jacobs', 'Otto': 'Otto', 'Jim Abrahams': 'Religious Zealot #6', 'Frank Ashmore': 'Victor Basta', 'Jonathan Banks': 'Gunderson', 'Craig Berenson': 'Paul Carey', 'Barbara Billingsley': 'Jive Lady'}\"\r\ntt0091159,\"{'Michael Keaton': 'Hunt Stevenson', 'Gedde Watanabe': 'Oishi Kazihiro', 'George Wendt': 'Buster', 'Mimi Rogers': 'Audrey', 'John Turturro': 'Willie', 'Sô Yamamura': 'Mr. Sakamoto       (as Soh Yamamura)', 'Sab Shimono': 'Saito', 'Rick Overton': 'Googie', 'Clint Howard': 'Paul', 'Jihmi Kennedy': 'Junior', 'Michelle Johnson': 'Heather DiStefano', 'Rodney Kageyama': 'Ito', 'Rance Howard': 'Mayor Conrad Zwart', 'Patti Yasutake': 'Umeki Kazihiro       (as Patti Yasuiake)', 'Jerry Tondo': 'Kazuo'}\"\r\ntt0115986,\"{'Vincent Perez': 'Ashe Corven /              The Crow', 'Mia Kirshner': 'Sarah', 'Richard Brooks': 'Judah Earl', 'Iggy Pop': 'Curve', 'Thomas Jane': 'Nemo', 'Vincent Castellanos': 'Spider Monkey', 'Thuy Trang': 'Kali', 'Eric Acosta': 'Danny', 'Ian Dury': 'Noah', 'Tracey Ellis': 'Sybil', 'Beverley Mitchell': 'Grace', 'Aaron Thell Smith': 'Tattoo Customer', 'Alan Gelfant': 'Bassett', 'Shelly Desai': 'Hindu', 'Holley Chant': 'Holly Daze'}\"\r\ntt0918927,\"{'Meryl Streep': 'Sister Aloysius Beauvier', 'Philip Seymour Hoffman': 'Father Brendan Flynn', 'Amy Adams': 'Sister James', 'Viola Davis': 'Mrs. Miller', 'Alice Drummond': 'Sister Veronica', 'Audrie Neenan': 'Sister Raymond', 'Susan Blommaert': 'Mrs. Carson', 'Carrie Preston': 'Christine Hurley', 'John Costelloe': 'Warren Hurley', 'Lloyd Clay Brown': 'Jimmy Hurley', 'Joseph Foster': 'Donald Miller       (as Joseph Foster II)', 'Mike Roukis': 'William London', 'Haklar Dezso': 'Zither Player', 'Frank Shanley': 'Kevin', 'Robert Ridgell': 'Organist'}\"\r\ntt0086465,\"{'Denholm Elliott': 'Coleman', 'Dan Aykroyd': 'Louis Winthorpe III', 'Maurice Woods': 'Duke & Duke Employee', 'Richard D. Fisher Jr.': 'Duke & Duke Employee', 'Jim Gallagher': 'Duke & Duke Employee', 'Anthony DiSabatino': 'Duke & Duke Employee', 'Bonnie Behrend': 'Duke & Duke Employee', 'Sunnie Merrill': 'Duke & Duke Employee', 'James Newell': 'Duke & Duke Employee       (as Jim Newell)', 'Mary St. John': 'Duke & Duke Employee', 'Bonnie Tremena': 'Duke & Duke Employee', 'David Schwartz': 'Duke & Duke Employee', 'Ralph Bellamy': 'Randolph Duke', 'Don Ameche': 'Mortimer Duke', 'Tom Degidon': 'Duke Domestic'}\"\r\ntt0093748,\"{'Steve Martin': 'Neal Page', 'John Candy': 'Del Griffith', 'Laila Robins': 'Susan Page', 'Michael McKean': 'State Trooper', 'Kevin Bacon': 'Taxi Racer', 'Dylan Baker': 'Owen', 'Carol Bruce': 'Joy', 'Olivia Burnette': 'Marti', 'Diana Douglas': 'Peg', 'Martin Ferrero': 'Second Motel Clerk', 'Larry Hankin': 'Doobie', 'Richard Herd': 'Walt', 'Susan Kellermann': 'Waitress       (as Susan Kellerman)', 'Matthew Lawrence': 'Little Neal', 'Edie McClurg': 'Car Rental Agent'}\"\r\ntt0101272,\"{'Anjelica Huston': 'Morticia Addams', 'Raul Julia': 'Gomez Addams', 'Christopher Lloyd': 'Uncle Fester Addams /              Gordon Craven', 'Dan Hedaya': 'Tully Alford', 'Elizabeth Wilson': 'Abigail Craven /              Dr. Greta Pinder-Schloss', 'Judith Malina': 'Granny', 'Carel Struycken': 'Lurch', 'Dana Ivey': 'Margaret Alford', 'Paul Benedict': 'Judge Womack', 'Christina Ricci': 'Wednesday Addams', 'Jimmy Workman': 'Pugsley Addams', 'Christopher Hart': 'Thing', 'John Franklin': 'Cousin It', 'Tony Azito': 'Digit Addams', 'Douglas Brian Martin': 'Dexter Addams'}\"\r\ntt0120082,\"{'Jada Pinkett Smith': 'Maureen       (as Jada Pinkett)', 'Omar Epps': 'Phil', 'Paulette Patterson': 'Usher Giving Out Costumes', 'Rasila Schroeder': 'Screaming Girl Up Aisle', 'Heather Graham': \"\"'Stab' Casey\"\", 'Roger Jackson': 'The Voice       (voice) (as Roger L. Jackson)', 'Peter Deming': 'Popcorn Boy', 'Molly Gross': 'Theater Girl #1', 'Rebecca McFarland': 'Theater Girl #2', 'Neve Campbell': 'Sidney Prescott', 'Elise Neal': 'Hallie', 'Liev Schreiber': 'Cotton Weary', 'Kevin Williamson': \"\"Cotton's Interviewer\"\", 'Sandy Heddings': 'Girl in Dorm Hallway       (as Sandy Heddings-Katulka)', 'Dave Allen Clark': 'Reporter Outside Theater'}\"\r\ntt0106598,\"{'Robert Knott': 'Air Traffic Controller', 'Jonathan Penner': 'Captain Air Traffic', 'Whip Hubley': 'F-16 Pilot', 'Dan Aykroyd': 'Beldar Conehead /              Donald R. DeCicco', 'Jane Curtin': 'Prymatt Conehead /              Mary Margaret DeCicco', 'Howard Napper': 'Ang Pilot', 'Michael Richards': 'Motel Clerk', 'Eddie Griffin': 'Customer', 'Sinbad': 'Otto', 'Phil Hartman': 'Marlax', 'Adam Sandler': 'Carmine', 'Grant Martell': 'Hispanic Man #1', 'Art Bonilla': 'Hispanic Man #2', 'David Spade': 'Eli Turnbull, INS Agent', 'Rosa Maria Briz': 'Hispanic Woman       (as Rosa Briz)'}\"\r\ntt0095705,\"{'Leslie Nielsen': 'Frank Drebin', 'Priscilla Presley': 'Jane Spencer', 'Ricardo Montalban': 'Vincent Ludwig', 'George Kennedy': 'Ed Hocken', 'O.J. Simpson': 'Nordberg', 'Susan Beaubian': 'Mrs. Nordberg', 'Nancy Marchand': 'Mayor', 'Raye Birk': 'Pahpshmir', 'Jeannette Charles': 'Queen Elizabeth II', 'Ed Williams': 'Ted Olsen', 'Tiny Ron': 'Al', \"\"'Weird Al' Yankovic\"\": \"\"'Weird Al'\"\", 'Leslie Maier': \"\"'Weird Leslie'\"\", 'Winifred Freedman': 'Stephie', 'Joe Grifasi': 'Foreman'}\"\r\ntt0112572,\"{'Shelley Long': 'Carol Brady', 'Gary Cole': 'Mike Brady', 'Christine Taylor': 'Marcia Brady', 'Christopher Daniel Barnes': 'Greg Brady', 'Jennifer Elise Cox': 'Jan Brady', 'Paul Sutera': 'Peter Brady', 'Olivia Hack': 'Cindy Brady', 'Jesse Lee Soffer': 'Bobby Brady       (as Jesse Lee)', 'Henriette Mantel': 'Alice Nelson', 'David Graf': 'Sam Franklin', 'Florence Henderson': 'Grandma', 'Jack Noseworthy': 'Eric Dittmeyer', 'Megan Ward': 'Donna Leonard', 'Jean Smart': 'Mrs. Dena Dittmeyer', 'Michael McKean': 'Mr. Larry Dittmeyer'}\"\r\ntt1300851,\"{'Sean Patrick Flanery': 'Connor MacManus', 'Norman Reedus': 'Murphy MacManus', 'Billy Connolly': 'Poppa', 'Clifton Collins Jr.': 'Romeo', 'Julie Benz': 'Special Agent Eunice Bloom', 'Bob Marley': 'Greenly', 'Brian Mahoney': 'Duffy', 'David Ferry': 'Dolly', 'David Della Rocco': 'Rocco', 'Peter Fonda': 'The Roman', 'Daniel DeSanto': 'Crew Cut', 'Gerard Parkes': 'Doc', 'Matthew Lemche': 'Noah       (as Matt Lemche)', 'Robert Mauriell': 'Louie', 'Judd Nelson': 'Concezio Yakavetta'}\"\r\ntt0066011,\"{'Ali MacGraw': 'Jenny', \"\"Ryan O'Neal\"\": 'Oliver', 'John Marley': 'Phil', 'Ray Milland': 'Oliver Barrett III', 'Russell Nype': 'Dean Thompson', 'Katharine Balfour': 'Mrs. Barrett       (as Katherine Balfour)', 'Sydney Walker': 'Dr. Shapeley', 'Robert Modica': 'Dr. Addison', 'Walker Daniels': \"\"Ray - Oliver's Roommate\"\", 'Tommy Lee Jones': \"\"Hank - Oliver's Roommate       (as Tom Lee Jones)\"\", 'John Merensky': \"\"Steve - Oliver's Roommate\"\", 'Andrew Duncan': 'Rev. Blauvelt', 'Charlotte Ford': 'Clerk', 'Sudie Bond': '(as Sudi Bond)', 'Julie Garfield': 'Bystander at Harpsichord Concerto'}\"\r\ntt0086425,\"{'Shirley MacLaine': 'Aurora Greenway', 'Debra Winger': 'Emma Horton', 'Jack Nicholson': 'Garrett Breedlove', 'Danny DeVito': 'Vernon Dahlart', 'Jeff Daniels': 'Flap Horton', 'John Lithgow': 'Sam Burns', 'Lisa Hart Carroll': 'Patsy Clark', 'Betty King': 'Rosie Dunlop       (as Betty R. King)', 'Huckleberry Fox': 'Teddy Horton', 'Troy Bishop': 'Tommy Horton', 'Shane Serwin': 'Younger Tommy Horton', 'Megan Morris': 'Melanie Horton', 'Tara Yeakey': 'Baby Melanie', 'Norman Bennett': 'Edward Johnson', 'Jennifer Josey': 'Young Emma'}\"\r\ntt0102510,\"{'Leslie Nielsen': 'Lt. Frank Drebin', 'Priscilla Presley': 'Jane Spencer', 'George Kennedy': 'Ed Hocken', 'O.J. Simpson': 'Nordberg', 'Robert Goulet': 'Quentin Hapsburg', 'Richard Griffiths': 'Dr. Meinheimer /              Earl Hacker', 'Jacqueline Brookes': 'Commissioner Brumford', 'Anthony James': 'Hector Savage', 'Lloyd Bochner': 'Baggett', \"\"Tim O'Connor\"\": 'Fenzwick', 'Peter Mark Richman': 'Dunwell', 'Ed Williams': 'Ted Olsen', 'John Roarke': 'George Bush', 'Margery Jane Ross': 'Barbara Bush       (as Margery Ross)', 'Peter Van Norden': 'John Sununu'}\"\r\ntt0273923,\"{'Colin Hanks': 'Shaun Brumder', 'Jack Black': 'Lance Brumder', 'Schuyler Fisk': 'Ashley', 'Bret Harrison': 'Lonny       (as Brett Harrison)', 'Kyle Howard': 'Arlo', 'R.J. Knoll': 'Chad       (as RJ Knoll)', \"\"Catherine O'Hara\"\": 'Cindy Beugler', 'Mike White': 'Mr. Burke', 'John Lithgow': 'Bud Brumder', 'Lily Tomlin': 'Charlotte Cobb', 'George Murdock': 'Bob Beugler', 'Lillian Hurst': 'Lupe', 'Chevy Chase': 'Principal Harbert', 'Olivia Rosewood': 'Dana', 'Carly Pope': 'Tanya'}\"\r\ntt0110622,\"{'Leslie Nielsen': 'Lt. Frank Drebin', 'Priscilla Presley': 'Jane Spencer', 'George Kennedy': 'Ed Hocken', 'O.J. Simpson': 'Nordberg', 'Fred Ward': 'Rocco', 'Kathleen Freeman': 'Muriel', 'Anna Nicole Smith': 'Tanya', 'Ellen Greene': 'Louise', 'Ed Williams': 'Ted Olsen', 'Raye Birk': 'Papshmir', 'Matt Roe': 'Clayton', 'Wylie Small': 'Defense Attorney', 'Sharon Cornell': 'Stenographer', 'Earl Boen': 'Dr. Eisendrath', 'Jeff Wright': 'Store Manager'}\"\r\ntt0325258,\"{'David Spade': 'Dickie Roberts', 'Mary McCormack': 'Grace Finney', 'Craig Bierko': 'George Finney', 'Scott Terra': 'Sam Finney', 'Jenna Boyd': 'Sally Finney', 'John Farley': 'Referee', 'Bobby Slayton': 'Commentator', 'Michael Buffer': 'Michael Buffer', 'Fred Wolf': \"\"Dickie's Corner Man\"\", 'Alyssa Milano': 'Cyndi', 'Emmanuel Lewis': 'Himself', 'Joey Diaz': \"\"Emmanuel's Entourage       (as Joey 'Coco' Diaz)\"\", 'Kevin Grevioux': \"\"Emmanuel's Entourage\"\", 'Brian Clark': 'Guy in Car', 'Leif Garrett': 'Leif Garrett'}\"\r\ntt0063522,\"{'Mia Farrow': 'Rosemary Woodhouse', 'John Cassavetes': 'Guy Woodhouse', 'Ruth Gordon': 'Minnie Castevet', 'Sidney Blackmer': 'Roman Castevet', 'Maurice Evans': 'Hutch', 'Ralph Bellamy': 'Dr. Sapirstein', 'Victoria Vetri': 'Terry       (as Angela Dorian)', 'Patsy Kelly': 'Laura-Louise', 'Elisha Cook Jr.': 'Mr. Nicklas       (as Elisha Cook)', 'Emmaline Henry': 'Elise Dunstan', 'Charles Grodin': 'Dr. Hill', 'Hanna Landy': 'Grace Cardiff', 'Phil Leeds': 'Dr. Shand       (as Philip Leeds)', \"\"D'Urville Martin\"\": 'Diego', 'Hope Summers': 'Mrs. Gilmore'}\"\r\ntt0077631,\"{'John Travolta': 'Danny', 'Olivia Newton-John': 'Sandy', 'Stockard Channing': 'Rizzo', 'Jeff Conaway': 'Kenickie', 'Barry Pearl': 'Doody', 'Michael Tucci': 'Sonny', 'Kelly Ward': 'Putzie', 'Didi Conn': 'Frenchie', 'Jamie Donnelly': 'Jan', 'Dinah Manoff': 'Marty', 'Eve Arden': 'Principal McGee', 'Frankie Avalon': 'Teen Angel', 'Joan Blondell': 'Vi', 'Edd Byrnes': 'Vince Fontaine', 'Sid Caesar': 'Coach Calhoun'}\"\r\ntt0162650,\"{'Samuel L. Jackson': 'John Shaft', 'Vanessa Williams': 'Carmen Vasquez', 'Jeffrey Wright': 'Peoples Hernandez', 'Christian Bale': 'Walter Wade, Jr.', 'Busta Rhymes': 'Rasaan', 'Dan Hedaya': 'Jack Roselli', 'Toni Collette': 'Diane Palmieri', 'Richard Roundtree': 'Uncle John Shaft', 'Ruben Santiago-Hudson': 'Jimmy Groves', 'Josef Sommer': 'Curt Fleming', 'Lynne Thigpen': 'Carla Howard', 'Philip Bosco': 'Walter Wade, Sr.', 'Pat Hingle': 'Hon. Dennis Bradford', 'Lee Tergesen': 'Luger', 'Daniel von Bargen': 'Lt. Kearney       (as Daniel Von Bargen)'}\"\r\ntt0104695,\"{'Steve Martin': 'Jonas', 'Debra Winger': 'Jane', 'Lolita Davidovich': 'Marva', 'Liam Neeson': 'Will', 'Lukas Haas': 'Boyd', 'Meat Loaf': 'Hoover', 'Philip Seymour Hoffman': 'Matt', 'M.C. Gainey': 'Tiny', 'LaChanze': 'Georgette', 'Delores Hall': 'Ornella', 'John Toles-Bey': 'Titus', 'Albertina Walker': 'Lucille', 'Ricky Dillard': 'Ricky', 'Vince Davis': 'Roger', 'Troy Evans': 'Dade'}\"\r\ntt0087277,\"{'Kevin Bacon': 'Ren', 'Lori Singer': 'Ariel', 'John Lithgow': 'Rev. Shaw Moore', 'Dianne Wiest': 'Vi Moore', 'Chris Penn': 'Willard       (as Christopher Penn)', 'Sarah Jessica Parker': 'Rusty', 'John Laughlin': 'Woody', 'Elizabeth Gorcey': 'Wendy Jo', 'Frances Lee McCain': 'Ethel McCormack', 'Jim Youngs': 'Chuck Cranston', 'Douglas Dirkson': 'Burlington Cranston', 'Lynne Marta': 'Lulu Warnicker', 'Arthur Rosenberg': 'Wes Warnicker', 'Timothy Scott': 'Andy Beamis', 'Alan Haufrect': 'Coach Roger Dunbar'}\"\r\ntt0082766,\"{'Faye Dunaway': 'Joan Crawford', 'Diana Scarwid': 'Christina Crawford (Adult)', 'Steve Forrest': 'Greg Savitt', 'Howard Da Silva': 'L.B. Mayer', 'Mara Hobel': 'Christina Crawford (Child)', 'Rutanya Alda': 'Carol Ann', 'Harry Goz': 'Al Steele', 'Michael Edwards': 'Ted Gelber', 'Jocelyn Brando': 'Barbara Bennett', 'Priscilla Pointer': 'Mrs. Chadwick', 'Joe Abdullah': 'Captain', 'Gary Allen': 'Jimmy (Photographer)', 'Selma Archerd': 'Connie', 'Adrian Aron': 'Wedding Guest', 'Xander Berkeley': 'Christopher Crawford (Adult)'}\"\r\ntt0063518,\"{'Leonard Whiting': 'Romeo', 'Olivia Hussey': 'Juliet', 'John McEnery': 'Mercutio', \"\"Milo O'Shea\"\": 'Friar Laurence', 'Pat Heywood': 'The Nurse', 'Robert Stephens': 'The Prince', 'Michael York': 'Tybalt', 'Bruce Robinson': 'Benvolio', 'Paul Hardwick': 'Lord Capulet', 'Natasha Parry': 'Lady Capulet', 'Antonio Pierfederici': 'Lord Montague', 'Esmeralda Ruspoli': 'Lady Montague', 'Roberto Bisacco': 'Lord Paris', 'Roy Holder': 'Peter', 'Keith Skinner': 'Balthazar'}\"\r\ntt0090555,\"{'Paul Hogan': \"\"Michael J. 'Crocodile' Dundee\"\", 'Linda Kozlowski': 'Sue Charlton', 'John Meillon': 'Walter Reilly', 'David Gulpilil': 'Neville Bell', 'Ritchie Singer': 'Con', 'Maggie Blinco': 'Ida', 'Steve Rackman': 'Donk', 'Gerry Skilton': 'Nugget', 'Terry Gill': 'Duffy', 'Peter Turnbull': 'Trevor', 'Khristina Totos': 'Rosita       (as Christine Totos)', \"\"Graham 'Grace' Walker\"\": 'Angelo', 'David Bracks': 'Burt (Roo Shooter)', 'Brett Hogan': 'Peter (Roo Shooter)', 'Mark Blum': 'Richard Mason'}\"\r\ntt0054698,\"{'Audrey Hepburn': 'Holly Golightly', 'George Peppard': 'Paul Varjak', 'Patricia Neal': '2E Failenson', 'Buddy Ebsen': 'Doc Golightly', 'Martin Balsam': 'O.J. Berman', 'José Luis de Vilallonga': 'José da Silva Pereira       (as Vilallonga)', 'John McGiver': \"\"Tiffany's Salesman\"\", 'Dorothy Whitney': 'Mag Wildwood', 'Stanley Adams': 'Rusty Trawler', 'Elvia Allman': 'Librarian', 'Alan Reed': 'Sally Tomato', 'Beverly Powers': 'Nightclub Stripper       (as Miss Beverly Hills)', 'Claude Stroud': 'Sid Arbuck', 'Orangey': 'Cat       (as Cat)', 'Mickey Rooney': 'Mr. Yunioshi'}\"\r\ntt0071315,\"{'Jack Nicholson': 'J.J. Gittes', 'Faye Dunaway': 'Evelyn Mulwray', 'John Huston': 'Noah Cross', 'Perry Lopez': 'Escobar', 'John Hillerman': 'Yelburton', 'Darrell Zwerling': 'Hollis Mulwray', 'Diane Ladd': 'Ida Sessions', 'Roy Jenson': 'Mulvihill', 'Roman Polanski': 'Man with Knife', 'Richard Bakalyan': 'Loach       (as Dick Bakalyan)', 'Joe Mantell': 'Walsh', 'Bruce Glover': 'Duffy', 'Nandu Hinds': 'Sophie', \"\"James O'Rear\"\": \"\"Lawyer       (as James O'Reare)\"\", 'James Hong': \"\"Evelyn's Butler\"\"}\"\r\ntt0077663,\"{'Warren Beatty': 'Joe Pendleton', 'Julie Christie': 'Betty Logan', 'James Mason': 'Mr. Jordan', 'Jack Warden': 'Max Corkle', 'Charles Grodin': 'Tony Abbott', 'Dyan Cannon': 'Julia Farnsworth', 'Buck Henry': 'The Escort', 'Vincent Gardenia': 'Krim', 'Joseph Maher': 'Sisk', 'Hamilton Camp': 'Bentley', 'Arthur Malet': 'Everett', 'Stephanie Faracy': 'Corinne', 'Jeannie Linero': 'Lavinia', 'Harry D.K. Wong': 'Gardener', 'George J. Manos': 'Security Guard'}\"\r\ntt0102517,\"{'Scott Bakula': 'Paul Blake', 'Hector Elizondo': 'Coach Ed Gennero', 'Robert Loggia': 'Coach Wally Rig', 'Harley Jane Kozak': 'Dr. Suzanne Carter', 'Larry Miller': 'Dean Phillip Elias', 'Sinbad': 'Andre Krimm', 'Fred Dalton Thompson': 'Carver Purcell', 'Rob Schneider': 'Chuck Neiderman', 'Jason Bateman': 'Jarvis Edison', 'Andrew Bryniarski': 'Wyatt Beaudry', 'Duane Davis': 'Featherstone', 'Michael Dolan': \"\"Eric 'Samorai' Hansen\"\", 'Marcus Giamatti': \"\"Sargie 'Fumblina' Wilkinson\"\", 'Kathy Ireland': 'Lucy Draper', 'Andrew Lauer': 'Charlie Banks'}\"\r\ntt0085549,\"{'Jennifer Beals': 'Alex Owens', 'Michael Nouri': 'Nick Hurley', 'Lilia Skala': 'Hanna Long', 'Sunny Johnson': 'Jeanie Szabo', 'Kyle T. Heffner': 'Richie', 'Lee Ving': 'Johnny C.', 'Ron Karabatsos': 'Jake Mawby', 'Belinda Bauer': 'Katie Hurley', 'Malcolm Danare': 'Cecil', 'Philip Bruns': 'Frank Szabo       (as Phil Bruns)', 'Micole Mercurio': 'Rosemary Szabo', 'Lucy Lee Flippin': 'Secretary', 'Don Brockett': 'Pete', 'Cynthia Rhodes': 'Tina Tech', 'Durga McBroom': 'Heels'}\"\r\ntt0056217,\"{'John Wayne': 'Tom Doniphon', 'James Stewart': 'Ransom Stoddard', 'Vera Miles': 'Hallie Stoddard', 'Lee Marvin': 'Liberty Valance', \"\"Edmond O'Brien\"\": 'Dutton Peabody', 'Andy Devine': 'Link Appleyard', 'Ken Murray': 'Doc Willoughby', 'John Carradine': 'Maj. Cassius Starbuckle', 'Jeanette Nolan': 'Nora Ericson', 'John Qualen': 'Peter Ericson', 'Willis Bouchey': 'Jason Tully - Conductor', 'Carleton Young': 'Maxwell Scott', 'Woody Strode': 'Pompey', 'Denver Pyle': 'Amos Carruthers', 'Strother Martin': 'Floyd'}\"\r\ntt0102768,\"{'Harrison Ford': 'Henry Turner', 'Annette Bening': 'Sarah Turner', 'Michael Haley': 'Court Clerk       (as R.M. Haley)', 'Stanley Swerdlow': 'Mr. Matthews       (as Stanley H. Swerdlow)', 'Julie Follansbee': 'Mrs. Matthews', 'Rebecca Miller': 'Linda', 'Bruce Altman': \"\"Bruce, Henry's Partner\"\", 'Elizabeth Wilson': \"\"Jessica, Henry's Secretary\"\", 'Donald Moffat': 'Charlie Cameron', 'Kamian Allen': 'Rachel Turner       (as Mikki Allen)', 'Aida Linares': 'Rosella', 'John MacKay': 'George', 'Mary Gilbert': 'Julia', 'Peter Appel': 'Eddie the Doorman', 'Harsh Nayyar': 'Liquor Store Owner'}\"\r\ntt0167427,\"{'Molly Shannon': 'Mary Katherine Gallagher', 'Will Ferrell': 'Sky Corrigan /              Jesus', 'Elaine Hendrix': 'Evian', 'Harland Williams': 'Slater', 'Mark McKinney': 'Father Ritley', 'Glynis Johns': 'Grandma', 'Jason Blicker': 'Howard', 'Gerry Bamman': 'Father John', 'Emmy Laybourne': 'Helen', 'Jennifer Irwin': 'Maria', 'Rob Stefaniuk': 'Thomas', 'Natalie Radford': 'Autum', 'Karyn Dwyer': 'Summer', 'Tom Green': 'Dylan', 'Chuck Campbell': 'Owen'}\"\r\ntt0116313,\"{'Goldie Hawn': 'Elise Elliot Atchison', 'Bette Midler': 'Brenda Morelli Cushman', 'Diane Keaton': 'Annie MacDuggan Paradis', 'Maggie Smith': 'Gunilla Garson Goldberg', 'Sarah Jessica Parker': 'Shelly Stewart', 'Dan Hedaya': 'Morton Cushman', 'Stockard Channing': 'Cynthia Swann Griffin', 'Victor Garber': 'Bill Atchison', 'Stephen Collins': 'Aaron Paradis', 'Elizabeth Berkley': 'Phoebe LaVelle', 'Marcia Gay Harden': 'Dr. Leslie Rosen', 'Bronson Pinchot': 'Duarto Feliz', 'Jennifer Dundas': 'Chris Paradis', 'Eileen Heckart': 'Catherine MacDuggan', 'Philip Bosco': 'Uncle Carmine'}\"\r\ntt0368709,\"{'Orlando Bloom': 'Drew Baylor', 'Kirsten Dunst': 'Claire Colburn', 'Susan Sarandon': 'Hollie Baylor', 'Alec Baldwin': 'Phil Devoss', 'Bruce McGill': 'Bill Banyon', 'Judy Greer': 'Heather Baylor', 'Jessica Biel': 'Ellen Kishmore', 'Paul Schneider': 'Jessie Baylor', 'Loudon Wainwright III': 'Uncle Dale       (as Loudon Wainwright)', 'Gailard Sartain': 'Charles Dean', 'Jed Rees': 'Chuck Hasboro', 'Paula Deen': 'Aunt Dora', 'Dan Biggers': 'Uncle Roy', 'Alice Marie Crowe': 'Aunt Lena', 'Tim Devitt': 'Mitch Baylor'}\"\r\ntt0112697,\"{'Alicia Silverstone': 'Cher', 'Stacey Dash': 'Dionne', 'Brittany Murphy': 'Tai', 'Paul Rudd': 'Josh', 'Donald Faison': 'Murray', 'Elisa Donovan': 'Amber', 'Breckin Meyer': 'Travis', 'Jeremy Sisto': 'Elton', 'Dan Hedaya': 'Mel Horowitz', 'Aida Linares': 'Lucy', 'Wallace Shawn': 'Mr. Wendell Hall', 'Twink Caplan': 'Miss Toby Geist', 'Justin Walker': 'Christian', 'Sabastian Rashidi': 'Paroudasm', 'Herb Hall': 'Principal'}\"\r\ntt0094006,\"{'Eric Stoltz': 'Keith Nelson', 'Mary Stuart Masterson': 'Watts', 'Lea Thompson': 'Amanda Jones', 'Craig Sheffer': 'Hardy Jenns', 'John Ashton': 'Cliff Nelson', 'Elias Koteas': 'Skinhead', 'Molly Hagan': 'Shayne', 'Maddie Corman': 'Laura Nelson', 'Jane Elliot': 'Carol Nelson', 'Candace Cameron Bure': 'Cindy Nelson       (as Candace Cameron)', 'Chynna Phillips': 'Mia', 'Scott Coffey': 'Ray', 'Carmine Caridi': 'Museum Guard', 'Lee Garlington': 'Gym Instructor', 'Laura Leigh Hughes': 'Holly'}\"\r\ntt0067185,\"{'Ruth Gordon': 'Maude', 'Bud Cort': 'Harold', 'Vivian Pickles': 'Mrs. Chasen', 'Cyril Cusack': 'Glaucus', 'Charles Tyner': 'Uncle Victor', 'Ellen Geer': 'Sunshine Doré', 'Eric Christmas': 'Priest', 'G. Wood': 'Psychiatrist', 'Judy Engles': 'Candy Gulf', 'Shari Summers': 'Edith Phern', 'Tom Skerritt': 'Motorcycle Officer       (as M. Borman)', 'Susan Madigan': 'Girlfriend', 'Ray K. Goman': 'Police Officer       (as Ray Goman)', 'Gordon De Vol': 'Police Officer       (as Gordon DeVol)', 'Harvey Brumfield': 'Police Officer'}\"\r\ntt0074860,\"{'Dustin Hoffman': 'Thomas Babbington Levy aka Babe', 'Laurence Olivier': 'Christian Szell', 'Roy Scheider': 'Doc Levy', 'William Devane': 'Peter Janeway', 'Marthe Keller': 'Elsa Opel', 'Fritz Weaver': 'Professor Biesenthal', 'Richard Bright': 'Karl', 'Marc Lawrence': 'Erhard', 'Allen Joseph': \"\"Babe's Father\"\", 'Tito Goya': 'Melendez', 'Ben Dova': \"\"Klaus - Szell's Brother\"\", 'Lou Gilbert': 'Rosenbaum', 'Jacques Marin': 'LeClerc', 'James Wing Woo': 'Chen', 'Nicole Deslauriers': 'Nicole'}\"\r\ntt0163187,\"{'Julia Roberts': 'Maggie Carpenter', 'Richard Gere': 'Ike Graham', 'Joan Cusack': 'Peggy Flemming', 'Hector Elizondo': 'Fisher', 'Rita Wilson': 'Ellie Graham', 'Paul Dooley': 'Walter Carpenter', 'Christopher Meloni': 'Coach Bob Kelly', 'Donal Logue': 'Priest Brian Norris', 'Reg Rogers': \"\"George 'Bug Guy' Swilling\"\", 'Yul Vazquez': 'Dead Head Gill Chavez', 'Jane Morris': 'Mrs. Pressman', 'Lisa Roberts Gillan': 'Elaine from Manhattan', 'Kathleen Marshall': 'Cousin Cindy', 'Jean Schertler': 'Grandma', 'Tom Hines': 'Cory Flemming'}\"\r\ntt0275022,\"{'Britney Spears': 'Lucy', 'Anson Mount': 'Ben', 'Zoe Saldana': 'Kit       (as Zoë Saldana)', 'Taryn Manning': 'Mimi', 'Dan Aykroyd': 'Pete', 'Kim Cattrall': 'Caroline', 'Justin Long': 'Henry', 'Beverly Johnson': \"\"Kit's Mom\"\", 'Bahni Turpin': 'Ms. Jenson', 'Kool Moe Dee': 'Bar Owner       (as Kool Mo Dee)', 'Richard Voll': 'Dylan', 'Katherine Boecher': \"\"Dylan's Other Girl       (as Pippi B.)\"\", 'Dave Allen': \"\"Bar Patron       (as David 'Gruber' Allen)\"\", 'Kyle Davis': 'High School Burnout', 'Branden Williams': 'Kurt'}\"\r\ntt0758758,\"{'Emile Hirsch': 'Chris McCandless', 'Marcia Gay Harden': 'Billie McCandless', 'William Hurt': 'Walt McCandless', 'Jena Malone': 'Carine McCandless /              Additional Narrator', 'Brian H. Dierker': 'Rainey       (as Brian Dierker)', 'Catherine Keener': 'Jan Burres', 'Vince Vaughn': 'Wayne Westerberg', 'Kristen Stewart': 'Tracy Tatro', 'Hal Holbrook': 'Ron Franz', 'Jim Gallien': 'Jim Gallien', \"\"James O'Neill\"\": \"\"Graduation Reader       (as James J. O'Neill)\"\", 'Malinda McCollum': 'Waitress', 'Paul Knauls': 'Building Manager', 'Zach Galifianakis': 'Kevin', 'Craig Mutsch': \"\"Wayne's Crew #1\"\"}\"\r\ntt0332379,\"{'Jack Black': 'Dewey Finn', 'Adam Pascal': 'Theo', 'Lucas Papaelias': 'Neil', 'Chris Stack': 'Doug', 'Sarah Silverman': 'Patty Di Marco', 'Mike White': 'Ned Schneebly', 'Lucas Babin': 'Spider', 'Joan Cusack': 'Rosalie Mullins', 'Jordan-Claire Green': 'Michelle', 'Veronica Afflerbach': 'Eleni', 'Miranda Cosgrove': 'Summer Hathaway', 'Joey Gaydos Jr.': 'Zack', 'Robert Tsai': 'Lawrence', 'Angelo Massagli': 'Frankie', 'Kevin Alexander Clark': 'Freddy Jones       (as Kevin Clark)'}\"\r\ntt0046250,\"{'Gregory Peck': 'Joe Bradley', 'Audrey Hepburn': 'Princess Ann', 'Eddie Albert': 'Irving Radovich', 'Hartley Power': 'Mr. Hennessy', 'Harcourt Williams': 'Ambassador', 'Margaret Rawlings': 'Countess Vereberg', 'Tullio Carminati': 'General Provno', 'Paolo Carlini': 'Mario Delani', 'Claudio Ermelli': 'Giovanni', 'Paola Borboni': 'Charwoman', 'Alfredo Rizzo': 'Taxicab Driver', 'Laura Solari': \"\"Hennessy's Secretary\"\", 'Gorella Gori': 'Shoe Seller'}\"\r\ntt0213790,\"{'Tim Meadows': 'Leon Phelps', 'Karyn Parsons': 'Julie Simmons', 'Billy Dee Williams': 'Lester', 'John Witherspoon': 'Scrap Iron', 'Jill Talley': 'Candy', 'Lee Evans': 'Barney', 'Will Ferrell': 'Lance DeLune', 'Sofia Milos': 'Cheryl', 'Eugene Levy': 'Bucky Kent', 'David Huband': 'Frank', 'Jammer': 'Wrestler', 'Ken Hudson Campbell': 'Hal       (as Ken Campbell)', 'Kevin McDonald': 'Mail Man', 'Tamala Jones': 'Theresa', 'Julianne Moore': 'Audrey'}\"\r\ntt0398165,\"{'Adam Sandler': 'Paul Crewe', 'Chris Rock': 'Caretaker', 'Burt Reynolds': 'Coach Nate Scarborough', 'Nelly': 'Megget', 'Michael Irvin': 'Deacon Moss', 'Walter Williamson': 'Errol Dandridge', 'Bill Goldberg': 'Battle', 'Terry Crews': 'Cheeseburger Eddy', 'Bob Sapp': 'Switowski', 'Nicholas Turturro': 'Brucie', 'Dalip Singh': 'Turley', 'Lobo Sebastian': 'Torres', 'Joey Diaz': \"\"Big Tony       (as Joey 'Coco' Diaz)\"\", 'Steve Reevis': 'Baby Face Bob', 'David Patrick Kelly': 'Unger'}\"\r\ntt0081283,\"{'Donald Sutherland': 'Calvin', 'Mary Tyler Moore': 'Beth', 'Judd Hirsch': 'Berger', 'Timothy Hutton': 'Conrad', 'M. Emmet Walsh': 'Swim Coach', 'Elizabeth McGovern': 'Jeannine', 'Dinah Manoff': 'Karen', 'Fredric Lehne': 'Joe', 'James Sikking': 'Ray       (as James B. Sikking)', 'Basil Hoffman': 'Sloan', 'Quinn K. Redeker': 'Ward       (as Quinn Redeker)', 'Mariclare Costello': 'Audrey', 'Meg Mundy': 'Grandmother', 'Elizabeth Hubbard': 'Ruth', 'Adam Baldwin': 'Stillman'}\"\r\ntt0074174,\"{'Walter Matthau': 'Coach Morris Buttermaker', \"\"Tatum O'Neal\"\": 'Amanda Whurlitzer', 'Vic Morrow': 'Roy Turner', 'Joyce Van Patten': 'Cleveland', 'Ben Piazza': 'Bob Whitewood', 'Jackie Earle Haley': 'Kelly Leak', 'Alfred Lutter III': 'Ogilvie       (as Alfred W. Lutter)', 'Chris Barnes': 'Tanner Boyle', 'Erin Blunt': 'Ahmad Abdul Rahim', 'Gary Lee Cavagnaro': 'Engelberg', 'Jaime Escobedo': 'Jose Agilar', 'Scott Firestone': 'Regi Tower', 'George Gonzales': 'Miguel Agilar', 'Brett Marx': 'Jimmy Feldman', 'David Pollock': 'Rudi Stein'}\"\r\ntt0081696,\"{'John Travolta': 'Bud', 'Debra Winger': 'Sissy', 'Scott Glenn': 'Wes', 'Madolyn Smith Osborne': 'Pam       (as Madolyn Smith)', 'Barry Corbin': 'Uncle Bob', 'Brooke Alderson': 'Aunt Corene', 'Cooper Huckabee': 'Marshall', 'James Gammon': 'Steve Strange', 'Mickey Gilley': 'Mickey Gilley', 'Johnny Lee': 'Johnny Lee', 'Bonnie Raitt': 'Bonnie Raitt', 'The Charlie Daniels Band': 'The Charlie Daniels Band', 'Betty Murphy': \"\"Bud's Mom\"\", 'Ed Geldart': \"\"Bud's Dad\"\", 'Leah Geldart': \"\"Bud's Sister\"\"}\"\r\ntt0119978,\"{'Matt Damon': 'Rudy Baylor', 'Danny DeVito': 'Deck Shifflet', 'Claire Danes': 'Kelly Riker', 'Jon Voight': 'Leo F. Drummond', 'Mary Kay Place': 'Dot Black', 'Dean Stockwell': 'Judge Harvey Hale', 'Teresa Wright': 'Miss Birdie', 'Virginia Madsen': 'Jackie Lemancyzk', 'Mickey Rourke': 'Bruiser Stone', 'Andrew Shue': 'Cliff Riker', 'Red West': 'Buddy Black', 'Johnny Whitworth': 'Donny Ray Black', 'Wayne Emmons': 'Prince Thomas', 'Adrian Roberts': 'Butch', 'Roy Scheider': 'Wilfred Keeley'}\"\r\ntt0185014,\"{'Michael Douglas': 'Grady Tripp', 'Tobey Maguire': 'James Leer', 'Frances McDormand': 'Sara Gaskell', 'Robert Downey Jr.': 'Terry Crabtree', 'Katie Holmes': 'Hannah Green', 'Rip Torn': 'Q', 'Richard Knox': 'Vernon Hardapple', 'Jane Adams': 'Oola', 'Michael Cavadias': 'Miss Sloviak', 'Richard Thomas': 'Walter Gaskell', 'Alan Tudyk': 'Traxler', 'Philip Bosco': \"\"Emily's Father\"\", 'George Grizzard': 'Fred Leer', 'Kelly Bishop': 'Amanda Leer', 'Bill Velin': 'Officer Pupcik'}\"\r\ntt0090329,\"{'Harrison Ford': 'John Book', 'Kelly McGillis': 'Rachel', 'Josef Sommer': 'Schaeffer', 'Lukas Haas': 'Samuel', 'Jan Rubes': 'Eli Lapp', 'Alexander Godunov': 'Daniel Hochleitner', 'Danny Glover': 'McFee', 'Brent Jennings': 'Carter', 'Patti LuPone': 'Elaine', 'Angus MacInnes': 'Fergie', 'Frederick Rolf': 'Stoltzfus', 'Viggo Mortensen': 'Moses Hochleitner', 'John Garson': 'Bishop Tchantz', 'Beverly May': 'Mrs. Yoder', 'Ed Crowley': 'Sheriff'}\"\r\ntt0108550,\"{'Johnny Depp': 'Gilbert Grape', 'Leonardo DiCaprio': 'Arnie Grape', 'Juliette Lewis': 'Becky', 'Mary Steenburgen': 'Betty Carver', 'Darlene Cates': 'Momma', 'Laura Harrington': 'Amy Grape', 'Mary Kate Schellhardt': 'Ellen Grape', 'Kevin Tighe': 'Mr. Carver', 'John C. Reilly': 'Tucker Van Dyke', 'Crispin Glover': 'Bobby McBurney', 'Penelope Branning': \"\"Becky's Grandma\"\", 'Tim Green': 'Mr. Lamson', 'Susan Loughran': 'Mrs. Lamson', 'Robert B. Hedges': 'Minister       (as Rev. Robert B. Hedges)', 'Mark Jordan': 'Todd Carver'}\"\r\ntt0259711,\"{'Tom Cruise': 'David Aames', 'Penélope Cruz': 'Sofia Serrano', 'Cameron Diaz': 'Julie Gianni', 'Kurt Russell': 'McCabe', 'Jason Lee': 'Brian Shelby', 'Noah Taylor': 'Edmund Ventura', 'Timothy Spall': 'Thomas Tipp', 'Tilda Swinton': 'Rebecca Dearborn', 'Michael Shannon': 'Aaron', 'Delaina Mitchell': \"\"David's Assistant\"\", 'Shalom Harlow': 'Colleen', 'Oona Hart': 'Lynette', 'Ivana Milicevic': 'Emma', 'Johnny Galecki': 'Peter Brown', 'Jhaemi Willens': 'Jamie Berliner'}\"\r\ntt0196229,\"{'Ben Stiller': 'Derek Zoolander', 'Owen Wilson': 'Hansel', 'Christine Taylor': 'Matilda Jeffries', 'Will Ferrell': 'Mugatu', 'Milla Jovovich': 'Katinka', 'Jerry Stiller': 'Maury Ballstein', 'David Duchovny': 'J.P. Prewitt', 'Jon Voight': 'Larry Zoolander', 'Judah Friedlander': 'Scrappy Zoolander', 'Nathan Lee Graham': 'Todd', 'Alexandre Manning': 'Brint       (as Alexander Manning)', 'Asio Highsmith': 'Rufus', 'Alexander Skarsgård': 'Meekus', 'Donald Trump': 'Donald Trump', 'Christian Slater': 'Christian Slater'}\"\r\ntt0443706,\"{'Jake Gyllenhaal': 'Robert Graysmith', 'Mark Ruffalo': 'Inspector David Toschi', 'Anthony Edwards': 'Inspector William Armstrong', 'Robert Downey Jr.': 'Paul Avery', 'Brian Cox': 'Melvin Belli', 'John Carroll Lynch': 'Arthur Leigh Allen', 'Richmond Arquette': 'Zodiac 1 /              Zodiac 2', 'Bob Stephenson': 'Zodiac 3', 'John Lacy': 'Zodiac 4', 'Chloë Sevigny': 'Melanie', 'Ed Setrakian': 'Al Hyman', 'John Getz': 'Templeton Peck', 'John Terry': 'Charles Thieriot', 'Candy Clark': 'Carol Fisher', 'Elias Koteas': 'Sgt. Jack Mulanax'}\"\r\ntt0096061,\"{'Bill Murray': 'Frank Cross', 'Karen Allen': 'Claire Phillips', 'John Forsythe': 'Lew Hayward', 'John Glover': 'Brice Cummings', 'Bobcat Goldthwait': 'Eliot Loudermilk', 'David Johansen': 'Ghost of Christmas Past', 'Carol Kane': 'Ghost of Christmas Present', 'Robert Mitchum': 'Preston Rhinelander', 'Nicholas Phillips': 'Calvin Cooley', 'Michael J. Pollard': 'Herman', 'Alfre Woodard': 'Grace Cooley', 'Mabel King': 'Gramma', 'John Murray': 'James Cross', 'Jamie Farr': 'Jacob Marley', 'Robert Goulet': 'Robert Goulet'}\"\r\ntt0114694,\"{'Chris Farley': 'Tommy', 'David Spade': 'Richard', 'Brian Dennehy': 'Big Tom', 'Bo Derek': 'Beverly', 'Dan Aykroyd': 'Zalinsky', 'Julie Warner': 'Michelle', 'Sean McCann': 'Frank Rittenhauer', 'Zach Grenier': 'Ted Reilly', 'James Blendick': 'Ron Gilmore', 'Clinton Turnbull': 'Young Tommy', 'Ryder Britton': 'Young Richard', 'Paul Greenberg': 'Skittish Student', 'Graeme Millington': 'Frat Boy', 'Michael Cram': 'Frat Boy', 'Dean Marshall': 'Frat Boy'}\"\r\ntt0099653,\"{'Patrick Swayze': 'Sam Wheat', 'Demi Moore': 'Molly Jensen', 'Tony Goldwyn': 'Carl Bruner', 'Stanley Lawrence': 'Elevator Man', 'Christopher J. Keene': 'Elevator Man', 'Susan Breslau': 'Susan', 'Martina Deignan': 'Rose       (as Martina Degnan)', 'Rick Kleber': 'Mover       (as Richard Kleber)', 'Macka Foley': 'Mover', 'Rick Aviles': 'Willie Lopez', 'Phil Leeds': 'Emergency Room Ghost', 'John Hugh': 'Surgeon', 'Sam Tsoutsouvas': 'Minister', 'Sharon Breslau': 'Cemetery Ghost       (as Sharon Breslau Cornell)', 'Vincent Schiavelli': 'Subway Ghost'}\"\r\ntt0112817,\"{'Johnny Depp': 'William Blake', 'Gary Farmer': 'Nobody', 'Crispin Glover': 'Train Fireman', 'Lance Henriksen': 'Cole Wilson', 'Michael Wincott': 'Conway Twill', 'Eugene Byrd': \"\"Johnny 'The Kid' Pickett\"\", 'John Hurt': 'John Scholfield', 'Robert Mitchum': 'John Dickinson', 'Iggy Pop': \"\"Salvatore 'Sally' Jenko\"\", 'Gabriel Byrne': 'Charlie Dickinson', 'Jared Harris': 'Benmont Tench', 'Mili Avital': 'Thel Russell', 'Jimmie Ray Weeks': 'Marvin, Older Marshal', 'Mark Bringelson': 'Lee, Younger Marshal', 'John North': 'Mr. Olafsen'}\"\r\ntt1046173,\"{'Adewale Akinnuoye-Agbaje': 'Heavy Duty', 'Christopher Eccleston': 'McCullen /              Destro', 'Grégory Fitoussi': 'Baron de Cobray', 'Joseph Gordon-Levitt': 'The Doctor /              Rex', 'Leo Howard': 'Young Snake Eyes', 'Karolina Kurkova': 'Cover Girl', 'Byung-Hun Lee': 'Storm Shadow', 'Sienna Miller': 'Ana /              Baroness', 'David Murray': 'James McCullen - 1641', 'Rachel Nichols': 'Scarlett', \"\"Kevin J. O'Connor\"\": 'Dr. Mindbender', 'Gerald Okamura': 'Hard Master', 'Ray Park': 'Snake Eyes', 'Jonathan Pryce': 'U.S. President', 'Dennis Quaid': 'General Hawk'}\"\r\ntt0158983,\"{'Trey Parker': \"\"Stan Marsh /              Eric Cartman /              Satan /              Mr. Herbert Garrison /              Phillip Niles Argyle /              Randy Marsh /              Christophe ('The Mole') /              Tom - News Reporter /              Midget In A Bikini /              Canadian Ambassador /              Bombardiers /              Mr. Mackey /              Army General /              Ned Gerblanski /              Additional Voices       (voice)\"\", 'Matt Stone': 'Kyle Broflovski /              Kenny McCormick /              Saddam Hussein /              Terrance Henry Stoot /              Ticket Taker /              Jimbo Kearn /              Gerald Broflovski /              Bill Gates /              Additional Voices       (voice)', 'Mary Kay Bergman': 'Liane Cartman /              Sheila Broflovski /              Sharon Marsh /              Wendy Testaburger /              Clitoris /              Additional Voices       (voice)', 'Isaac Hayes': 'Chef       (voice)', 'Jesse Brant Howell': 'Ike Broflovski       (voice) (as Jesse Howell)', 'Anthony Cross-Thomas': 'Ike Broflovski       (voice)', 'Franchesca Clifford': 'Ike Broflovski       (voice) (as Francesca Clifford)', 'Bruce Howell': 'Man In Theatre       (voice)', 'Deb Adair': 'Woman In Theatre       (voice)', 'Jennifer Howell': 'Bebe Stevens       (voice)', 'George Clooney': 'Dr. Gouache       (voice)', 'Brent Spiner': \"\"Conan O'Brien       (voice)\"\", 'Minnie Driver': 'Brooke Shields       (voice)', 'Dave Foley': 'The Baldwin Brothers       (voice)', 'Eric Idle': 'Dr. Vosknocker       (voice)'}\"\r\ntt1462041,\"{'Daniel Craig': 'Will Atenton', 'Naomi Watts': 'Ann Patterson', 'Rachel Weisz': 'Libby', 'Elias Koteas': 'Boyce', 'Marton Csokas': 'Jack Patterson', 'Taylor Geare': 'Trish', 'Claire Geare': 'Dee Dee       (as Claire Astin Geare)', 'Rachel G. Fox': 'Chloe Patterson       (as Rachel Fox)', 'Jane Alexander': 'Dr. Greeley', 'Brian Murray': 'Dr. Medlin', 'Bernadette Quigley': 'Heather Keeler', 'Sarah Gadon': 'Cindi', 'Gregory Smith': 'Artie', 'Mark Wilson': 'Capt. Conklin', 'David Huband': 'Officer Nelson'}\"\r\ntt0251127,\"{'Kate Hudson': 'Andie', 'Matthew McConaughey': 'Ben', 'Kathryn Hahn': 'Michelle', 'Annie Parisse': 'Jeannie', 'Adam Goldberg': 'Tony', 'Thomas Lennon': 'Thayer', 'Michael Michele': 'Spears', 'Shalom Harlow': 'Green', 'Robert Klein': 'Phillip Warren', 'Bebe Neuwirth': 'Lana Jong', 'Samantha Quan': 'Lori', 'Justin Peroff': 'Mike', 'Celia Weston': 'Glenda', 'James Murtaugh': 'Jack', 'Archie MacGregor': 'Uncle Arnold'}\"\r\ntt0108525,\"{'Mike Myers': 'Wayne Campbell', 'Dana Carvey': 'Garth Algar', 'Christopher Walken': 'Bobby Cahn', 'Tia Carrere': 'Cassandra Wong', 'Chris Farley': 'Milton', 'Ralph Brown': 'Del Preston', 'James Hong': 'Jeff Wong', 'Rip Taylor': 'Rip Taylor', 'Steven Tyler': 'Steven Tyler - Aerosmith Singer', 'Joe Perry': 'Joe Perry - Aerosmith Guitarist       (as Joseph Perry)', 'Brad Whitford': 'Brad Whitford- Aerosmith Guitarist', 'Tom Hamilton': 'Tom Hamilton - Aerosmith Bassist       (as Thomas Hamilton)', 'Joey Kramer': 'Joey Kramer - Aerosmith Drummer       (as Joseph Kramer)', 'Lee Tergesen': 'Terry', 'Dan Bell': 'Neil'}\"\r\ntt0105793,\"{'Mike Myers': 'Wayne Campbell', 'Dana Carvey': 'Garth Algar', 'Rob Lowe': 'Benjamin Oliver', 'Tia Carrere': 'Cassandra', 'Brian Doyle-Murray': 'Noah Vanderhoff', 'Lara Flynn Boyle': 'Stacy', 'Michael DeLuise': 'Alan', 'Dan Bell': 'Neil', 'Lee Tergesen': 'Terry', 'Kurt Fuller': 'Russell', 'Sean Sullivan': 'Phil       (as Sean Gregory Sullivan)', 'Colleen Camp': 'Mrs. Vanderhoff', 'Donna Dixon': 'Dreamwoman', 'Frederick Coffin': 'Officer Koharski', 'Mike Hagerty': 'Davy       (as Michael G. Hagerty)'}\"\r\ntt0093010,\"{'Michael Douglas': 'Dan Gallagher', 'Glenn Close': 'Alex Forrest', 'Anne Archer': 'Beth Gallagher', 'Ellen Latzen': 'Ellen Gallagher       (as Ellen Hamilton Latzen)', 'Stuart Pankin': 'Jimmy', 'Ellen Foley': 'Hildy', 'Fred Gwynne': 'Arthur', 'Meg Mundy': 'Joan Rogerson', 'Tom Brennan': 'Howard Rogerson', 'Lois Smith': 'Martha', 'Mike Nussbaum': 'Bob Drimmer', 'J.J. Johnston': \"\"O'Rourke\"\", 'Michael Arkin': 'Lieutenant', 'Sam Coppola': 'Fuselli       (as Sam J. Coppola)', 'Eunice Prewitt': 'Receptionist'}\"\r\ntt0097815,\"{'Tom Berenger': 'Jake Taylor', 'Charlie Sheen': 'Ricky Vaughn', 'Corbin Bernsen': 'Roger Dorn', 'Margaret Whitton': 'Rachel Phelps', 'James Gammon': 'Lou Brown', 'Rene Russo': 'Lynn Wells', 'Wesley Snipes': 'Willie Mays Hayes', 'Charles Cyphers': 'Charlie Donovan', 'Chelcie Ross': 'Eddie Harris', 'Dennis Haysbert': 'Pedro Cerrano', 'Andy Romano': 'Pepper Leach', 'Bob Uecker': 'Harry Doyle', 'Steve Yeager': 'Duke Temple', 'Peter Vuckovich': 'Haywood', 'Stacy Carroll': 'Suzanne Dorn'}\"\r\ntt0322802,\"{'Johnny Knoxville': 'Himself', 'Bam Margera': 'Himself', 'Steve-O': 'Himself', 'Chris Pontius': 'Himself', 'Ryan Dunn': 'Himself', \"\"Jason 'Wee Man' Acuña\"\": 'Himself', 'Preston Lacy': 'Himself', 'Dave England': 'Himself', 'Ehren McGhehey': 'Himself', 'Brandon DiCamillo': 'Himself', 'April Margera': 'Herself', 'Phil Margera': 'Himself', 'Jess Margera': 'Himself', 'Chris Raab': 'Himself', 'Rakeyohn': 'Himself       (as Rake Yohn)'}\"\r\ntt0146316,\"{'Angelina Jolie': 'Lara Croft', 'Jon Voight': 'Lord Richard Croft', 'Iain Glen': 'Manfred Powell', 'Noah Taylor': 'Bryce', 'Daniel Craig': 'Alex West', 'Richard Johnson': 'Distinguished Gentleman', 'Chris Barrie': 'Hillary       (as Christopher Barrie)', 'Julian Rhind-Tutt': 'Mr. Pimms', 'Leslie Phillips': 'Wilson', 'Robert Phillips': 'Julius, Assault Team Leader', 'Rachel Appleton': 'Young Lara', 'Henry Wyndham': \"\"Boothby's Auctioneer\"\", 'David Cheung': 'Head Laborer       (as David Y. Cheung)', 'David Tse': 'Head Laborer       (as David K.S. Tse)', 'Ozzie Yue': 'Aged Buddhist Monk'}\"\r\ntt0080678,\"{'Anthony Hopkins': 'Frederick Treves', 'John Hurt': 'John Merrick', 'Anne Bancroft': 'Mrs. Kendal', 'John Gielgud': 'Carr Gomm', 'Wendy Hiller': 'Mothershead', 'Freddie Jones': 'Bytes', 'Michael Elphick': 'Night Porter', 'Hannah Gordon': 'Mrs. Treves', 'Helen Ryan': 'Princess Alex', 'John Standing': 'Fox', 'Dexter Fletcher': \"\"Bytes' Boy\"\", 'Lesley Dunlop': 'Nora', 'Phoebe Nicholls': \"\"Merrick's Mother\"\", 'Pat Gorman': 'Fairground Bobby', 'Claire Davenport': 'Fat Lady'}\"\r\ntt0049833,\"{'Charlton Heston': 'Moses', 'Yul Brynner': 'Rameses', 'Anne Baxter': 'Nefretiri', 'Edward G. Robinson': 'Dathan', 'Yvonne De Carlo': 'Sephora', 'Debra Paget': 'Lilia', 'John Derek': 'Joshua', 'Cedric Hardwicke': 'Sethi       (as Sir Cedric Hardwicke)', 'Nina Foch': 'Bithiah', 'Martha Scott': 'Yochabel', 'Judith Anderson': 'Memnet', 'Vincent Price': 'Baka', 'John Carradine': 'Aaron', 'Olive Deering': 'Miriam', 'Douglass Dumbrille': 'Jannes'}\"\r\ntt0115641,\"{'Mike Judge': 'Beavis /              Butt-Head /              Tom Anderson /              Mr. Van Driessen /              Principal McVicker       (voice)', 'Bruce Willis': 'Muddy Grimes       (voice)', 'Demi Moore': 'Dallas Grimes       (voice)', 'Cloris Leachman': 'Old Woman on Plane and Bus       (voice)', 'Robert Stack': 'ATF Agent Flemming       (voice)', 'Jacqueline Barba': 'FBI Agent Hurly       (voice)', 'Pamela Blair': 'Flight Attendant /              White House Tour Guide       (voice)', 'Eric Bogosian': 'Ranger at Old Faithful /              White House Press Secretary /              Lieutenant at Strategic Air Command       (voice)', 'Kristofor Brown': 'Man on Plane /              Man in Confession Booth #2 /              Old Guy /              Jim       (voice)', 'Tony Darling': 'Motley Crue Roadie #2 /              Tourist Man       (voice)', 'John Doman': 'Airplane Captain /              White House Representative       (voice)', 'Francis Dumaurier': 'French Dignitary       (voice) (as Francis DuMaurier)', 'Jim Flaherty': 'Petrified Forest Recording       (voice)', 'Tim Guinee': 'Hoover Dam Guide /              ATF Agent       (voice)', 'David Letterman': 'Motley Crue Roadie #1       (voice) (as Earl Hofert)'}\"\r\ntt0497116,\"{'Al Gore': 'Himself', 'Billy West': '(voice)'}\"\r\ntt0116191,\"{'Gwyneth Paltrow': 'Emma Woodhouse', 'James Cosmo': 'Mr Weston', 'Greta Scacchi': 'Mrs Weston', 'Alan Cumming': 'Mr Elton', 'Denys Hawthorne': 'Mr Woodhouse', 'Sophie Thompson': 'Miss Bates', 'Jeremy Northam': 'Mr Knightley', 'Toni Collette': 'Harriet Smith', 'Kathleen Byron': 'Mrs Goddard', 'Phyllida Law': 'Mrs Bates', 'Edward Woodall': 'Mr. Martin', 'Brett Miley': 'Little Boy', 'Brian Capron': 'John Knightley', 'Karen Westwood': 'Isabella', 'Paul Williamson': 'Footman'}\"\r\ntt0457510,\"{'Jack Black': 'Nacho', 'Ana de la Reguera': 'Sister Encarnación', 'Héctor Jiménez': 'Esqueleto', 'Darius Rose': 'Chancho       (as Darius A. Rose)', 'Moises Arias': 'Juan Pablo', 'Diego Eduardo Gomez': 'Chuy', 'Carlos Maycotte': 'Segundo Nuñez', 'Richard Montoya': 'Guillermo', 'Cesar Gonzalez': \"\"Ramses       (as Cesar Gonzalez 'Silver King')\"\", 'Rafael Montalvo': 'Elderly Monk', 'Julio Sandoval': 'Snaggle Tooth Monk', \"\"Ventura 'Tigre Hispano' Lahoz\"\": 'Arena Referee #1', \"\"Felipe Jesus 'Terror Chino' Hernandez\"\": 'Arena Referee #2', 'Enrique Muñoz': 'Señor Ramon', 'Carla Jimenez': 'Candidia'}\"\r\ntt0118113,\"{'Amy Braverman': 'Young Amelia', 'Miranda Rhyne': 'Young Laura', 'Catherine Keener': 'Amelia', 'Anne Heche': 'Laura', 'Randall Batinkoff': 'Peter', 'Brenda Denmark': 'The Vet       (as Brenda Thomas Denmark)', 'Vincent Pastore': \"\"Laura's Devil-Seeing Patient\"\", 'Liev Schreiber': 'Andrew', 'Todd Field': 'Frank', 'Kevin Corrigan': 'Bill', 'Joseph Siravo': \"\"Amelia's Therapist\"\", 'Rafael Alvarez': \"\"Laura's Sexy Patient\"\", 'Ritamarie Kelly': 'Ellen', 'Steve Cohen': 'Actor In Play', 'Jordan Levinson': \"\"Peter's Friend\"\"}\"\r\ntt0099371,\"{'Tom Cruise': 'Cole Trickle', 'Nicole Kidman': 'Dr. Claire Lewicki', 'Robert Duvall': 'Harry Hogge', 'Randy Quaid': 'Tim Daland', 'Cary Elwes': 'Russ Wheeler', 'Michael Rooker': 'Rowdy Burns', 'Fred Dalton Thompson': 'Big John', 'John C. Reilly': 'Buck Bretherton', 'J.C. Quinn': 'Waddell', 'Don Simpson': 'Aldo Bennedetti', 'Caroline Williams': 'Jennie Burns', 'Donna W. Scott': 'Darlene       (as Donna Wilson)', 'Chris Ellis': 'Harlem Hoogerhyde', 'Peter Appel': \"\"Cole's Crew\"\", 'Stephen Michael Ayers': \"\"Cole's Crew\"\"}\"\r\ntt0126886,\"{'Matthew Broderick': 'Jim McAllister', 'Reese Witherspoon': 'Tracy Flick', 'Chris Klein': 'Paul Metzler', 'Jessica Campbell': 'Tammy Metzler', 'Mark Harelik': 'Dave Novotny', 'Phil Reeves': 'Walt Hendricks', 'Molly Hagan': 'Diane McAllister', 'Delaney Driscoll': 'Linda Novotny', 'Colleen Camp': 'Judith R. Flick', 'Frankie Ingrassia': 'Lisa Flanagan', 'Matt Malloy': 'Vice-Principal Ron Bell', 'Jeanine Jackson': 'Jo Metzler', 'Holmes Osborne': 'Dick Metzler', 'Loren Nelson': 'Custodian', 'Emily Martin': 'Girl in Crisis'}\"\r\ntt0086960,\"{'Eddie Murphy': 'Axel Foley', 'Judge Reinhold': 'Det. Billy Rosewood', 'John Ashton': 'Sgt. Taggart', 'Lisa Eilbacher': 'Jenny Summers', 'Ronny Cox': 'Lt. Bogomil', 'Steven Berkoff': 'Victor Maitland', 'James Russo': 'Mikey Tandino', 'Jonathan Banks': 'Zack', 'Stephen Elliott': 'Chief Hubbard', 'Gilbert R. Hill': 'Inspector Todd', 'Art Kimbro': 'Det. Foster', 'Joel Bailey': 'Det. McCabe', 'Bronson Pinchot': 'Serge', 'Paul Reiser': 'Jeffrey', 'Michael Champion': 'Casey'}\"\r\ntt0105112,\"{'Harrison Ford': 'Jack Ryan', 'Anne Archer': 'Cathy Ryan', 'Patrick Bergin': \"\"Kevin O'Donnell\"\", 'Sean Bean': 'Sean Miller', 'Thora Birch': 'Sally Ryan', 'James Fox': 'Lord Holmes', 'Samuel L. Jackson': 'Robby', 'Polly Walker': 'Annette', 'J.E. Freeman': 'Marty Cantor', 'James Earl Jones': 'Admiral Greer', 'Richard Harris': \"\"Paddy O'Neil\"\", 'Alex Norton': 'Dennis Cooley', 'Hugh Fraser': 'Watkins', 'David Threlfall': 'Inspector Highland', 'Alun Armstrong': 'Owens'}\"\r\ntt0092099,\"{'Tom Cruise': 'Maverick', 'Kelly McGillis': 'Charlie', 'Val Kilmer': 'Iceman', 'Anthony Edwards': 'Goose', 'Tom Skerritt': 'Viper', 'Michael Ironside': 'Jester', 'John Stockwell': 'Cougar', 'Barry Tubb': 'Wolfman', 'Rick Rossovich': 'Slider', 'Tim Robbins': 'Merlin', 'Clarence Gilyard Jr.': 'Sundown', 'Whip Hubley': 'Hollywood', 'James Tolkan': 'Stinger', 'Meg Ryan': 'Carole', 'Adrian Pasdar': 'Chipper'}\"\r\ntt0119081,\"{'Laurence Fishburne': 'Captain Miller', 'Sam Neill': 'Dr. William Weir', 'Kathleen Quinlan': 'Peters, Med Tech', 'Joely Richardson': 'Lt. Starck', 'Richard T. Jones': 'Cooper', 'Jack Noseworthy': 'Justin', 'Jason Isaacs': 'D.J.', 'Sean Pertwee': 'Smith', 'Peter Marinker': 'Captain John Kilpack', 'Holley Chant': 'Claire', 'Barclay Wright': 'Denny Peters', 'Noah Huntley': 'Burning Man /              Edward Corrick', 'Robert Jezek': 'Rescue 1 Technician'}\"\r\ntt0094898,\"{'Paul Bates': 'Oha', 'Eddie Murphy': 'Prince Akeem /              Clarence /              Saul /              Randy Watson', 'Garcelle Beauvais': 'Rose Bearer', 'Feather': 'Rose Bearer', 'Stephanie Simon': 'Rose Bearer', 'Victoria Dillard': 'Bather /              Dancer', 'Felicia Taylor': 'Bather', 'Midori': 'Bather       (as Michele Watley)', 'James Earl Jones': 'King Jaffe Joffer', 'Madge Sinclair': 'Queen Aoleon', 'Sheila Johnson': 'Lady-in-Waiting', 'Arsenio Hall': 'Semmi /              Morris /              Extremely Ugly Girl /              Reverend Brown', 'Raymond D. Turner': 'T-Shirt Hawker', 'Calvin Lockhart': 'Colonel Izzi', 'Billi Gordon': 'Large Woman'}\"\r\ntt0162661,\"{'Johnny Depp': 'Ichabod Crane', 'Christina Ricci': 'Katrina Van Tassel', 'Miranda Richardson': 'Lady Van Tassel /              Crone', 'Michael Gambon': 'Baltus Van Tassel', 'Casper Van Dien': 'Brom Van Brunt', 'Jeffrey Jones': 'Reverend Steenwyck', 'Richard Griffiths': 'Magistrate Philipse', 'Ian McDiarmid': 'Doctor Lancaster', 'Michael Gough': 'Notary Hardenbrook', 'Christopher Walken': 'Hessian Horseman', 'Marc Pickering': 'Young Masbath', 'Lisa Marie': 'Lady Crane', 'Steven Waddington': 'Killian', 'Claire Skinner': 'Beth Killian', 'Christopher Lee': 'Burgomaster'}\"\r\ntt0083511,\"{'Nick Nolte': 'Jack Cates', 'Eddie Murphy': 'Reggie Hammond', \"\"Annette O'Toole\"\": 'Elaine', 'Frank McRae': 'Haden', 'James Remar': 'Ganz', 'David Patrick Kelly': 'Luther', 'Sonny Landham': 'Billy Bear', 'Brion James': 'Kehoe', 'Kerry Sherman': 'Rosalie', 'Jonathan Banks': 'Algren', 'James Keane': 'Vanzant', 'Tara King': 'Frizzy', 'Greta Blackburn': 'Lisa', 'Margot Rose': 'Casey', 'Denise Crosby': 'Sally'}\"\r\ntt0038650,\"{'James Stewart': 'George Bailey', 'Donna Reed': 'Mary Hatch', 'Lionel Barrymore': 'Mr. Potter', 'Thomas Mitchell': 'Uncle Billy', 'Henry Travers': 'Clarence', 'Beulah Bondi': 'Mrs. Bailey', 'Frank Faylen': 'Ernie', 'Ward Bond': 'Bert', 'Gloria Grahame': 'Violet', 'H.B. Warner': 'Mr. Gower', 'Frank Albertson': 'Sam Wainwright', 'Todd Karns': 'Harry Bailey', 'Samuel S. Hinds': 'Pa Bailey', 'Mary Treen': 'Cousin Tilly', 'Virginia Patton': 'Ruth Dakin'}\"\r\ntt0112573,\"{'James Robinson': 'Young William', 'Sean Lawlor': 'Malcolm Wallace', 'Sandy Nelson': 'John Wallace', 'James Cosmo': 'Campbell', 'Sean McGinley': 'MacClannough', 'Alan Tall': 'Elder Stewart', 'Andrew Weir': 'Young Hamish', 'Gerda Stevenson': 'Mother MacClannough', 'Ralph Riach': 'Priest No. 1', 'Mhairi Calvey': 'Young Murron', 'Brian Cox': 'Argyle Wallace', 'Patrick McGoohan': 'Longshanks - King Edward I', 'Peter Hanly': 'Prince Edward', 'Sophie Marceau': 'Princess Isabelle', 'Stephen Billington': 'Phillip'}\"\r\ntt0107211,\"{'Robert Redford': 'John /              billionaire', 'Demi Moore': 'Diana Murphy', 'Woody Harrelson': 'David Murphy', 'Seymour Cassel': 'Mr. Shackleford', 'Oliver Platt': 'Jeremy', 'Billy Bob Thornton': 'Day Tripper', 'Rip Taylor': 'Mr. Langford', 'Billy Connolly': 'Auction M.C.', 'Joel Brooks': 'Realtor', 'Pierre Epstein': 'Van Buren', 'Danny Zorn': 'Screenwriter', 'Kevin West': 'Screenwriter', 'Pamela Holt': \"\"David's Girlfriend\"\", 'Tommy Bush': \"\"David's Father\"\", 'Mariclare Costello': \"\"David's Mother\"\"}\"\r\ntt0064116,\"{'Claudia Cardinale': 'Jill McBain', 'Henry Fonda': 'Frank', 'Jason Robards': \"\"Manuel 'Cheyenne' Gutiérrez\"\", 'Charles Bronson': 'Harmonica', 'Gabriele Ferzetti': 'Morton - Railroad Baron', 'Paolo Stoppa': 'Sam', 'Woody Strode': \"\"Stony - Member of Frank's Gang\"\", 'Jack Elam': \"\"Snaky - Member of Frank's Gang\"\", 'Keenan Wynn': 'Sheriff - Auctioneer', 'Frank Wolff': 'Brett McBain', 'Lionel Stander': 'Barman'}\"\r\ntt0073802,\"{'Robert Redford': 'Turner', 'Faye Dunaway': 'Kathy', 'Cliff Robertson': 'Higgins', 'Max von Sydow': 'Joubert       (as Max Von Sydow)', 'John Houseman': 'Mr. Wabash', 'Addison Powell': 'Atwood', 'Walter McGinn': 'Barber', 'Tina Chen': 'Janice', 'Michael Kane': 'Wicks', 'Don McHenry': 'Dr. Lappe', 'Michael Miller': 'Fowler', 'Jess Osuna': 'The Major', 'Dino Narizzano': 'Harold', 'Helen Stenborg': 'Mrs. Russell       (as Helen Stenbure)', 'Patrick Gorman': 'Martin'}\"\r\ntt0076666,\"{'John Travolta': 'Tony Manero', 'Karen Lynn Gorney': 'Stephanie', 'Barry Miller': 'Bobby C.', 'Joseph Cali': 'Joey', 'Paul Pape': 'Double J.', 'Donna Pescow': 'Annette', 'Bruce Ornstein': 'Gus', 'Julie Bovasso': 'Flo', 'Martin Shakar': 'Frank Jr.', 'Sam Coppola': 'Dan Fusco       (as Sam J. Coppola)', 'Nina Hansen': 'Grandmother', 'Lisa Peluso': 'Linda', 'Denny Dillon': 'Doreen', 'Bert Michaels': 'Pete', 'Robert Costanzo': 'Paint Store Customer       (as Robert Costanza)'}\"\r\ntt0109444,\"{'Harrison Ford': 'Jack Ryan', 'Willem Dafoe': 'Clark', 'Anne Archer': 'Cathy Ryan', 'Joaquim de Almeida': 'Felix Cortez', 'Henry Czerny': 'Robert Ritter', 'Harris Yulin': 'James Cutter', 'Donald Moffat': 'President Bennett', 'Miguel Sandoval': 'Ernesto Escobedo', 'Benjamin Bratt': 'Captain Ramirez', 'Raymond Cruz': 'Chavez', 'Dean Jones': 'Judge Moore', 'Thora Birch': 'Sally Ryan', 'Ann Magnuson': 'Moira Wolfson', 'Hope Lange': 'Senator Mayo', 'Tom Tammi': 'Emile Jacobs'}\"\r\ntt0120770,\"{'Will Ferrell': 'Steve Butabi', 'Chris Kattan': 'Doug Butabi', 'Raquel Gardner': 'Hot Girl', 'Viveca Paulin': 'Porsche Girl', 'Paulette Braxton': 'Porsche Girl', 'Michael M. Horton': 'Security Guard', 'Richard Francese': 'Security Guard', 'Jennifer Coolidge': 'Hottie Cop', 'Michael Clarke Duncan': \"\"Roxbury Bouncer       (as Michael 'Big Mike' Duncan)\"\", 'Richard Grieco': 'Richard Grieco', 'Trish Ramish': 'Roxbury Club Girl', 'Loni Anderson': 'Barbara Butabi', 'Dan Hedaya': 'Kamehl Butabi', 'Gina Mari': 'Saturday Night Fever Girl', 'Roy Jenkins': 'Flower Customer #1'}\"\r\ntt0118771,\"{'Kurt Russell': 'Jeff Taylor', 'J.T. Walsh': 'Red Barr', 'Kathleen Quinlan': 'Amy Taylor', 'M.C. Gainey': 'Earl', 'Jack Noseworthy': 'Billy', 'Rex Linn': 'Sheriff Boyd', 'Ritch Brinkley': 'Al', 'Moira Sinise': 'Arleen       (as Moira Harris)', 'Kim Robillard': 'Deputy Len Carver', 'Thomas Kopache': 'Calhoun', 'Jack McGee': 'Bartender', 'Vincent Berry': 'Deke', 'Helen Duffy': 'Flo', 'Ancel Cook': 'Barfly', 'Gene Hartline': 'Tow Truck Driver'}\"\r\ntt0084434,\"{'Richard Gere': 'Zack Mayo', 'Debra Winger': 'Paula Pokrifki', 'David Keith': 'Sid Worley', 'Robert Loggia': 'Byron Mayo', 'Lisa Blount': 'Lynette Pomeroy', 'Lisa Eilbacher': 'Casey Seeger', 'Louis Gossett Jr.': 'Sgt. Emil Foley', 'Tony Plana': 'Emiliano Della Serra', 'Harold Sylvester': 'Perryman', 'David Caruso': 'Topper Daniels', 'Victor French': 'Joe Pokrifki', 'Grace Zabriskie': 'Esther Pokrifki', 'Tommy Petersen': 'Young Zack', 'Mara Scott-Wood': 'Bunny       (as Mara Scott Wood)', 'David Greenfield': 'Schneider'}\"\r\ntt0094744,\"{'Paul Reubens': 'Pee-wee Herman       (as Pee-wee Herman)', 'Penelope Ann Miller': 'Winnie', 'Kris Kristofferson': 'Mace Montana', 'Valeria Golino': 'Gina Piccolapupula', 'Wayne White': 'Vance the Pig       (voice)', 'Susan Tyrrell': 'Midge Montana', 'Albert Henderson': 'Mr. Ryan', 'Jack Murdock': 'Otis', 'David Byrd': 'Deke', 'Mary Jackson': 'Mrs. Dill', 'Frances Bay': 'Mrs. Haynes', 'Leo Gordon': 'Joe the Blacksmith       (as Leo V. Gordon)', 'Anne Seymour': 'Pearl', 'Kenneth Tobey': 'Sheriff', 'Jay Robinson': 'Cook'}\"\r\ntt0119215,\"{'Kel Mitchell': 'Ed', 'Kenan Thompson': 'Dexter Reed', 'Sinbad': 'Mr. Wheat', 'Abe Vigoda': 'Otis', 'Shar Jackson': 'Monique', 'Dan Schneider': 'Mr. Baily', 'Jan Schweiterman': 'Kurt Bozwell       (as Jan Schwieterman)', 'Ron Lester': 'Spatch', 'Josh Server': 'Fizz', 'Ginny Schreiber': 'Deedee', 'Linda Cardellini': 'Heather', \"\"Shaquille O'Neal\"\": \"\"Shaquille O'Neal\"\", 'George Clinton': 'Dancing Crazy', 'Richard Haje': 'Huge Scary Man', 'Robert Wuhl': 'Angry Customer'}\"\r\ntt0091790,\"{'Molly Ringwald': 'Andie', 'Harry Dean Stanton': 'Jack', 'Jon Cryer': 'Duckie', 'Annie Potts': 'Iona', 'James Spader': 'Steff', 'Andrew McCarthy': 'Blane', 'Jim Haynie': 'Donnelly', 'Alexa Kenin': 'Jena Hoeman', 'Kate Vernon': 'Benny Hanson', 'Andrew Dice Clay': \"\"Bouncer       (as Andrew 'Dice' Clay)\"\", 'Emily Longstreth': 'Kate', 'Margaret Colin': 'English Teacher', 'Jamie Anders': 'Terrence', 'Gina Gershon': 'Girl Friend /              Gym Class', 'Bader Howar': 'Sales Girl'}\"\r\ntt0492619,\"{'Danny McBride': 'Fred Simmons', 'Mary Jane Bostic': 'Suzie Simmons', 'Ben Best': \"\"Chuck 'The Truck' Wallace\"\", 'Spencer Moreno': 'Julio Chavez', 'Carlos Lopez': 'Henry Harrison       (as Carlos Lopez IV)', 'Jody Hill': 'Mike McAlister', 'Ken Aguilar': 'Rick', 'Collette Wolfe': 'Denise', 'Jeff Hoffman': 'Dr. Love', 'Deborah Loates': 'Marge', 'Danielle Jarchow': 'Connie', 'Juan-Carlos Guzman': 'Carlos', 'Nicholas Stanley': \"\"Lil' Stevie Fisher\"\", 'Erica Owens': 'Mrs. Fisher', 'Sean Baxter': 'Roy Powers'}\"\r\ntt0063374,\"{'Jack Lemmon': 'Felix Ungar', 'Walter Matthau': 'Oscar Madison', 'John Fiedler': 'Vinnie', 'Herb Edelman': 'Murray       (as Herbert Edelman)', 'David Sheiner': 'Roy', 'Larry Haines': 'Speed', 'Monica Evans': 'Cecily', 'Carole Shelley': 'Gwendolyn', 'Iris Adrian': 'Waitress'}\"\r\ntt0372588,\"{'Trey Parker': 'Gary Johnston /              Joe /              Kim Jong Il /              Hans Blix /              Carson /              Matt Damon /              Drunk in Bar /              Tim Robbins /              Sean Penn /              Michael Moore /              Helen Hunt /              Susan Sarandon /              Others       (voice)', 'Matt Stone': 'Chris /              George Clooney /              Danny Glover /              Ethan Hawke /              Additional Voices       (voice)', 'Kristen Miller': 'Lisa       (voice)', 'Masasa Moyo': 'Sarah       (voice) (as Masasa)', 'Daran Norris': 'Spottswoode       (voice)', 'Phil Hendrie': 'I.N.T.E.L.L.I.G.E.N.C.E. /              Chechnyan Terrorist       (voice)', 'Maurice LaMarche': 'Alec Baldwin       (voice)', 'Chelsea Marguerite': 'French Mother       (voice)', 'Jeremy Shada': 'Jean Francois       (voice)', 'Fred Tatasciore': 'Samuel L. Jackson       (voice)'}\"\r\ntt0297884,\"{'Julianne Moore': 'Cathy Whitaker', 'Dennis Quaid': 'Frank Whitaker', 'Dennis Haysbert': 'Raymond Deagan', 'Patricia Clarkson': 'Eleanor Fine', 'Viola Davis': 'Sybil', 'James Rebhorn': 'Dr. Bowman', 'Bette Henritze': 'Mrs. Leacock', 'Michael Gaston': 'Stan Fine', 'Ryan Ward': 'David Whitaker', 'Lindsay Andretta': 'Janice Whitaker', 'Jordan Nia Elizabeth': 'Sarah Deagan       (as Jordan Puryear)', 'Kyle Timothy Smith': 'Billy Hutchinson       (as Kyle Smyth)', 'Celia Weston': 'Mona Lauder', 'Barbara Garrick': 'Doreen', 'Olivia Birkelund': 'Nancy'}\"\r\ntt0108065,\"{'Max Pomeranc': 'Josh Waitzkin', 'Joe Mantegna': 'Fred Waitzkin', 'Joan Allen': 'Bonnie Waitzkin', 'Ben Kingsley': 'Bruce Pandolfini', 'Laurence Fishburne': 'Vinnie', 'Michael Nirenberg': 'Jonathan Poe', 'Robert Stephens': \"\"Poe's Teacher\"\", 'David Paymer': 'Kalev', 'Hal Scardino': 'Morgan', 'Vasek Simek': 'Russian Park Player', 'William H. Macy': 'Tunafish Father', 'Dan Hedaya': 'Tournament Director', 'Laura Linney': 'School Teacher', 'Anthony Heald': 'Fighting Parent', 'Steven Randazzo': 'Man of Many Signals'}\"\r\ntt0094608,\"{'Kelly McGillis': 'Kathryn Murphy', 'Jodie Foster': 'Sarah Tobias', 'Bernie Coulson': 'Ken Joyce', 'Leo Rossi': \"\"Cliff 'Scorpion' Albrect\"\", 'Ann Hearn': 'Sally Fraser', 'Carmen Argenziano': 'D.A. Paul Rudolph', 'Steve Antin': 'Bob Joiner', \"\"Tom O'Brien\"\": 'Larry', 'Peter Van Norden': 'Attorney Paulsen', 'Terry David Mulligan': 'Lieutenant Duncan', 'Woody Brown': 'Danny', 'Scott Paulin': 'Attorney Wainwright', 'Kim Kondrashoff': 'Kurt', 'Stephen E. Miller': 'Polito', 'Tom Heaton': 'Bartender Jesse'}\"\r\ntt0080120,\"{'Michael Beck': 'Swan', 'James Remar': 'Ajax', 'Dorsey Wright': 'Cleon', 'Brian Tyler': 'Snow', 'David Harris': 'Cochise', 'Tom McKitterick': 'Cowboy', 'Marcelino Sánchez': 'Rembrandt       (as Marcelino Sanchez)', 'Terry Michos': 'Vermin', 'Deborah Van Valkenburgh': 'Mercy', 'Roger Hill': 'Cyrus', 'David Patrick Kelly': 'Luther', 'Lynne Thigpen': 'D.J.', 'Ginny Ortiz': 'Candy Store Girl', 'Mercedes Ruehl': 'Policewoman', 'John Snyder': 'Gas Station Man'}\"\r\ntt0109830,\"{'Tom Hanks': 'Forrest Gump', 'Rebecca Williams': 'Nurse at Park Bench', 'Sally Field': 'Mrs. Gump', 'Michael Conner Humphreys': 'Young Forrest', 'Harold G. Herthum': 'Doctor       (as Harold Herthum)', 'George Kelly': 'Barber', 'Bob Penny': 'Crony', 'John Randall': 'Crony', 'Sam Anderson': 'Principal', 'Margo Moorer': 'Louise', 'Ione M. Telech': 'Elderly Woman', 'Christine Seabrook': \"\"Elderly Woman's Daughter\"\", 'John Worsham': 'Southern Gentleman /              Landowner', 'Peter Dobson': 'Young Elvis Presley', 'Siobhan Fallon Hogan': 'School Bus Driver       (as Siobhan J. Fallon)'}\"\r\ntt0377092,\"{'Lindsay Lohan': 'Cady Heron', 'Rachel McAdams': 'Regina George       (as Rachel Mcadams)', 'Tina Fey': 'Ms. Norbury', 'Tim Meadows': 'Mr. Duvall', 'Amy Poehler': 'Mrs. George', 'Ana Gasteyer': \"\"Cady's Mom\"\", 'Lacey Chabert': 'Gretchen Wieners', 'Lizzy Caplan': 'Janis Ian', 'Daniel Franzese': 'Damian', 'Neil Flynn': \"\"Cady's Dad\"\", 'Jonathan Bennett': 'Aaron Samuels', 'Amanda Seyfried': 'Karen Smith', 'Rajiv Surendra': 'Kevin Gnapoor', 'Elana Shilling': 'Spelling Girl', 'Graham Kartna': 'Homeschooled Boy'}\"\r\ntt0117060,\"{'Tom Cruise': 'Ethan Hunt', 'Jon Voight': 'Jim Phelps', 'Emmanuelle Béart': 'Claire       (as Emmanuelle Beart)', 'Henry Czerny': 'Kittridge', 'Jean Reno': 'Krieger', 'Ving Rhames': 'Luther', 'Kristin Scott Thomas': 'Sarah Davies       (as Kristin Scott-Thomas)', 'Vanessa Redgrave': 'Max', 'Ingeborga Dapkunaite': 'Hannah', 'Valentina Yakunina': 'Drunken Female IMF Agent', 'Marek Vasut': 'Drunken Male IMF Agent', 'Nathan Osgood': 'Kittridge Technician', 'John McLaughlin': 'TV Interviewer', 'Rolf Saxon': 'CIA Analyst William Donloe', 'Karel Dobrý': 'Matthias'}\"\r\ntt0421715,\"{'Cate Blanchett': 'Daisy', 'Brad Pitt': 'Benjamin Button', 'Julia Ormond': 'Caroline', 'Faune Chambers Watkins': 'Dorothy Baker       (as Faune Chambers)', 'Elias Koteas': 'Monsieur Gateau', 'Donna Duplantier': 'Blanche Devereux', 'Jacob Tolano': 'Martin Gateau       (as Jacob Wood)', 'Earl Maddox': 'Man at Train Station', 'Ed Metzger': 'Teddy Roosevelt', 'Jason Flemyng': 'Thomas Button', 'Danny Vinson': 'Priest Giving Last Rites', 'David Jensen': \"\"Doctor at Benjamin's Birth\"\", 'Joeanna Sayler': 'Caroline Button', 'Taraji P. Henson': 'Queenie', 'Mahershala Ali': 'Tizzy       (as Mahershalalhashbaz Ali)'}\"\r\ntt0065126,\"{'John Wayne': 'Rooster Cogburn', 'Glen Campbell': 'La Boeuf', 'Kim Darby': 'Mattie Ross', 'Jeremy Slate': 'Emmett Quincy', 'Robert Duvall': 'Ned Pepper', 'Dennis Hopper': \"\"'Moon'\"\", 'Alfred Ryder': 'Goudy', 'Strother Martin': 'Col. G. Stonehill', 'Jeff Corey': 'Tom Chaney', 'Ron Soble': 'Capt. Boots Finch', 'John Fiedler': 'Lawyer Daggett', 'James Westerfield': 'Judge Parker', 'John Doucette': \"\"'Sheriff'\"\", 'Donald Woods': \"\"'Barlow'\"\", 'Edith Atwater': 'Mrs. Floyd'}\"\r\ntt1060277,\"{'Lizzy Caplan': 'Marlena Diamond', 'Jessica Lucas': 'Lily Ford', 'T.J. Miller': \"\"Hudson 'Hud' Platt\"\", 'Michael Stahl-David': 'Rob Hawkins', 'Mike Vogel': 'Jason Hawkins', 'Odette Annable': 'Beth McIntyre       (as Odette Yustman)', 'Anjul Nigam': 'Bodega Cashier', 'Margot Farley': 'Jenn', 'Theo Rossi': 'Antonio', 'Brian Klugman': 'Charlie', 'Kelvin Yu': 'Clark', 'Liza Lapira': 'Heather', 'Lili Mirojnick': 'Lei', 'Ben Feldman': 'Travis', 'Elena Caruso': 'Party Goer'}\"\r\ntt0317919,\"{'Tom Cruise': 'Ethan Hunt', 'Philip Seymour Hoffman': 'Owen Davian', 'Ving Rhames': 'Luther', 'Billy Crudup': 'Musgrave', 'Michelle Monaghan': 'Julia', 'Jonathan Rhys Meyers': 'Declan', 'Keri Russell': 'Lindsey Farris', 'Maggie Q': 'Zhen', 'Simon Pegg': 'Benji', 'Eddie Marsan': 'Brownway', 'Laurence Fishburne': 'Theodore Brassel', 'Bahar Soomekh': \"\"Davian's Translator\"\", 'Jeff Chase': \"\"Davian's Bodyguard\"\", 'Michael Berry Jr.': \"\"Julia's Kidnapper\"\", 'Carla Gallo': 'Beth'}\"\r\ntt0094226,\"{'Kevin Costner': 'Eliot Ness', 'Sean Connery': 'Jim Malone', 'Charles Martin Smith': 'Oscar Wallace', 'Andy Garcia': 'George Stone', 'Robert De Niro': 'Al Capone', 'Richard Bradford': 'Mike', 'Jack Kehoe': 'Payne', 'Brad Sullivan': 'George', 'Billy Drago': 'Nitti', 'Patricia Clarkson': \"\"Ness' Wife\"\", \"\"Vito D'Ambrosio\"\": 'Bowtie Driver', 'Steven Goldstein': 'Scoop', 'Peter Aylward': 'Lt. Anderson', 'Don Harvey': 'Preseuski', 'Robert Swan': 'Mountie Captain'}\"\r\ntt0120382,\"{'Jim Carrey': 'Truman Burbank', 'Laura Linney': 'Meryl Burbank /              Hannah Gill', 'Noah Emmerich': 'Marlon', 'Natascha McElhone': 'Lauren /              Sylvia', 'Holland Taylor': \"\"Truman's Mother\"\", 'Brian Delate': \"\"Truman's Father\"\", 'Blair Slater': 'Young Truman', 'Peter Krause': 'Lawrence', 'Heidi Schanz': 'Vivien', 'Ron Taylor': 'Ron', 'Don Taylor': 'Don', 'Ted Raymond': 'Spencer', 'Judy Clayton': 'Travel Agent', 'Fritz Dominique': \"\"Truman's Neighbor\"\", 'Angel Schmiedt': \"\"Truman's Neighbor\"\"}\"\r\ntt0317740,\"{'Mark Wahlberg': 'Charlie Croker', 'Charlize Theron': 'Stella Bridger', 'Donald Sutherland': 'John Bridger', 'Jason Statham': 'Handsome Rob', 'Seth Green': 'Lyle', 'Yasiin Bey': 'Left Ear       (as Mos Def)', 'Edward Norton': 'Steve', 'Fausto Callegarini': 'Italian Guard', 'Stefano Petronelli': 'Garbageman /              Thug', 'Fabio Scarpa': 'Garbageman /              Thug', 'Cristiano Bonora': 'Garbageman /              Thug', 'Tiberio Greco': 'Garbageman /              Thug', 'Jimmy Shubert': 'First Detective', 'Tammi Cubilette': 'Second Detective', 'Mary Portser': \"\"Stella's Receptionist\"\"}\"\r\ntt0371746,\"{'Robert Downey Jr.': 'Tony Stark', 'Terrence Howard': 'Rhodey', 'Jeff Bridges': 'Obadiah Stane', 'Gwyneth Paltrow': 'Pepper Potts', 'Leslie Bibb': 'Christine Everhart', 'Shaun Toub': 'Yinsen', 'Faran Tahir': 'Raza', 'Clark Gregg': 'Agent Coulson', 'Bill Smitrovich': 'General Gabriel', 'Sayed Badreya': 'Abu Bakaar', 'Paul Bettany': 'JARVIS       (voice)', 'Jon Favreau': 'Hogan', 'Peter Billingsley': 'William Ginter Riva', 'Tim Guinee': 'Major Allen', 'Will Lyman': 'Award Ceremony Narrator       (voice)'}\"\r\ntt0119094,\"{'John Travolta': 'Sean Archer', 'Nicolas Cage': 'Castor Troy', 'Joan Allen': 'Eve Archer', 'Alessandro Nivola': 'Pollux Troy', 'Gina Gershon': 'Sasha Hassler', 'Dominique Swain': 'Jamie Archer', 'Nick Cassavetes': 'Dietrich Hassler', 'Harve Presnell': 'Victor Lazarro', 'Colm Feore': 'Dr. Malcolm Walsh', 'John Carroll Lynch': 'Prison Guard Walton', 'CCH Pounder': 'Hollis Miller', 'Robert Wisdom': 'Tito Biondi', 'Margaret Cho': 'Wanda', 'James Denton': 'Buzz       (as Jamie Denton)', 'Matt Ross': 'Loomis'}\"\r\ntt0104036,\"{'Forest Whitaker': 'Jody', 'Miranda Richardson': 'Jude', 'Stephen Rea': 'Fergus', 'Adrian Dunbar': 'Maguire', 'Breffni McKenna': 'Tinker       (as Breffini McKenna)', 'Joe Savino': 'Eddie', 'Birdy Sweeney': 'Tommy       (as Birdie Sweeney)', 'Jaye Davidson': 'Dil', 'Andrée Bernard': 'Jane       (as Andree Bernard)', 'Jim Broadbent': 'Col', 'Ralph Brown': 'Dave', 'Tony Slattery': 'Deveroux', 'Jack Carr': 'Franknum', 'Josephine White': 'Bar Performer 1', 'Shar Campbell': 'Bar Performer 2'}\"\r\ntt0128442,\"{'Matt Damon': 'Mike McDermott', 'Gretchen Mol': 'Jo', 'John Malkovich': 'Teddy KGB', 'Paul Cicero': 'Russian Thug', 'Ray Iannicelli': 'Kenny', 'John Turturro': 'Joey Knish', 'Merwin Goldsmith': 'Sy', 'Sonny Zito': 'Tony', 'Josh Mostel': 'Zagosh', 'Mal Z. Lawrence': 'Irving', 'Lenny Clarke': 'Savino', 'Peter Yoshida': 'Henry Lin', 'Jay Boryea': 'Russian Thug #2', 'Lenny Venito': 'Moogie', 'Martin Landau': 'Abe Petrovsky'}\"\r\ntt0469494,\"{'Daniel Day-Lewis': 'Daniel Plainview', 'Martin Stringer': 'Silver Assay Worker', 'Matthew Braden Stringer': 'Silver Assay Worker', 'Jacob Stringer': 'Silver Assay Worker', 'Joseph Mussey': 'Silver Assay Worker', 'Barry Del Sherman': 'H.B. Ailman', 'Harrison Taylor': 'Baby HW', 'Stockton Taylor': 'Baby HW', 'Paul F. Tompkins': 'Prescott', 'Dillon Freasier': 'HW', 'Kevin Breznahan': 'Signal Hill Man', 'Jim Meskimen': 'Signal Hill Married Man', 'Erica Sullivan': 'Signal Hill Woman', 'Randall Carver': 'Mr. Bankside', 'Coco Leigh': 'Mrs. Bankside'}\"\r\ntt0409459,\"{'Malin Akerman': 'Laurie Jupiter /              Silk Spectre II', 'Billy Crudup': 'Dr. Manhattan /              Jon Osterman', 'Matthew Goode': 'Adrian Veidt /              Ozymandias', 'Jackie Earle Haley': 'Rorschach', 'Jeffrey Dean Morgan': 'Edward Blake /              Comedian', 'Patrick Wilson': 'Dan Dreiberg /              Nite Owl', 'Carla Gugino': 'Sally Jupiter /              Silk Spectre', 'Matt Frewer': 'Moloch', 'Stephen McHattie': 'Hollis Mason', 'Laura Mennell': 'Janey Slater', 'Rob LaBelle': 'Wally Weaver', 'Gary Houston': 'John McLaughlin', 'James M. Connor': 'Pat Buchanan       (as James Micheal Connor)', 'Mary Ann Burger': 'Eleanor Clift', 'John Shaw': 'Doug Roth'}\"\r\ntt0101318,\"{'Juliette Binoche': 'Michèle Stalens', 'Denis Lavant': 'Alex', 'Klaus-Michael Grüber': 'Hans', 'Marion Stalens': 'Marion', 'Chrichan Larsson': 'Julien       (as Chrichan Larson)', 'Paulette Berthonnier': 'La marinière /              Barge operator', 'Roger Berthonnier': 'Le marinier /              Barge operator', 'Edith Scob': 'La femme en voiture', 'Georges Aperghis': \"\"L'homme en voiture\"\", 'Michel Vandestien': 'Le pompier', 'Georges Castorp': 'Un endormi', 'Marc Desclozeaux': 'Un endormi', 'Alain Dahan': 'Un endormi', 'Pierre Pessemesse': 'Un endormi', 'Maître Bitoun': 'Un endormi'}\"\r\ntt0115697,\"{'Chris Farley': 'Mike Donnelly', 'David Spade': 'Steve Dodds', 'Tim Matheson': 'Al Donnelly', 'Christine Ebersole': 'Governor Tracy', 'Gary Busey': 'Drake Sabitch', 'Grant Heslov': 'Robbie Mieghem', 'Timothy Carhart': 'Roger Kovary', 'Bruce McGill': 'Neuschwander', 'Michael Patrick Carter': 'Scott Colleary', 'Boyd Banks': 'Clyde Spinoza', 'David St. James': 'Motorcycle Cop', \"\"Skip O'Brien\"\": 'State Trooper', 'Branden Morgan': 'Fan       (as Branden R. Morgan)', \"\"'Gypsy' Spheeris\"\": 'Pocket Pool Lady', 'John Ashker': 'Jim Blaine'}\"\r\ntt0118826,\"{'Michael Caton': 'Darryl Kerrigan', 'Anne Tenney': 'Sal Kerrigan', 'Stephen Curry': 'Dale Kerrigan', 'Anthony Simcoe': 'Steve Kerrigan', 'Sophie Lee': 'Tracey Kerrigan', 'Wayne Hope': 'Wayne Kerrigan', 'Tiriel Mora': 'Dennis Denuto', 'Eric Bana': 'Con Petropoulous', \"\"Charles 'Bud' Tingwell\"\": 'Lawrence Hammill', 'Robyn Nevin': 'Federal Court Judge', 'Costas Kilias': 'Farouk', 'Bryan Dawe': 'Ron Graham', 'Monty Maizels': 'Jack', 'Lynda Gibson': 'Evonne', 'John Benton': 'Mr. Lyle'}\"\r\ntt0207201,\"{'Mel Gibson': 'Nick Marshall', 'Helen Hunt': 'Darcy Maguire', 'Marisa Tomei': 'Lola', 'Alan Alda': 'Dan Wanamaker', 'Ashley Johnson': 'Alex Marshall', 'Mark Feuerstein': 'Morgan Farwell', 'Lauren Holly': 'Gigi', 'Delta Burke': 'Eve', 'Valerie Perrine': 'Margo', 'Judy Greer': 'Erin the File Girl', 'Sarah Paulson': 'Annie', 'Ana Gasteyer': 'Sue Cranston', 'Lisa Edelstein': 'Dina', 'Loretta Devine': 'Flo the Doorwoman', 'Diana Maria Riva': 'Stella'}\"\r\ntt0117381,\"{'Richard Gere': 'Martin Vail', 'Laura Linney': 'Janet Venable', 'John Mahoney': 'Shaughnessy', 'Alfre Woodard': 'Shoat', 'Frances McDormand': 'Molly', 'Edward Norton': 'Aaron /              Roy', \"\"Terry O'Quinn\"\": 'Yancy', 'Andre Braugher': 'Goodman', 'Steven Bauer': 'Pinero', 'Joe Spano': 'Stenner', 'Tony Plana': 'Martinez', 'Stanley Anderson': 'Rushman', 'Maura Tierney': 'Naomi', 'Jon Seda': 'Alex', 'Reg Rogers': 'Connerman'}\"\r\ntt0257106,\"{'Antony Acker': 'Exorcist Party Goer', 'Mark Barrett': 'Exorcist Party Goer', 'Richard Bellos': 'Exorcist Party Goer', 'Suzanne Bianqui': 'Exorcist Party Goer', 'Natale Bosco': 'Exorcist Party Goer', 'Joann Connor': 'Exorcist Party Goer', 'Bradley Fisher': 'Exorcist Party Goer       (as Brad Fisher)', \"\"Suzanne O'Donnell\"\": 'Exorcist Party Goer', 'Kristi Pearce': 'Exorcist Party Goer', 'Donna Silverberg': 'Exorcist Party Goer', 'Helene Strayer': 'Exorcist Party Goer', 'Veronica Cartwright': 'Mother', 'Andy Richter': 'Father Harris', 'Lee R. Mayes': 'Hip Exorcist Party Goer', 'Natasha Lyonne': 'Megan'}\"\r\ntt0340163,\"{'Bruce Willis': 'Jeff Talley', 'Kevin Pollak': 'Walter Smith', 'Jimmy Bennett': 'Tommy Smith', 'Michelle Horn': 'Jennifer Smith', 'Ben Foster': 'Mars Krupcheck', 'Jonathan Tucker': 'Dennis Kelly', 'Marshall Allman': 'Kevin Kelly', 'Serena Scott Thomas': 'Jane Talley', 'Rumer Willis': 'Amanda Talley', 'Kim Coates': 'The Watchman', 'Robert Knepper': 'Wil Bechler', 'Tina Lifford': 'Laura Shoemaker', 'Ransford Doherty': 'Mike Anders', 'Marjean Holden': 'Carol Flores', 'Michael D. Roberts': 'Ridley'}\"\r\ntt0110889,\"{'Linus Roache': 'Father Greg Pilkington', 'Tom Wilkinson': 'Father Matthew Thomas', 'Robert Carlyle': 'Graham', 'Cathy Tyson': 'Maria Kerrigan', 'Lesley Sharp': 'Mrs. Unsworth', 'Robert Pugh': 'Mr. Unsworth', 'James Ellis': 'Father Ellerton', 'Christine Tremarco': 'Lisa Unsworth', 'Paul Barber': 'Charlie', 'Rio Fanning': 'Bishop', 'Jim R. Coleman': 'Funeral director', 'Bill Dean': 'Altar boy', 'Gilly Coman': 'Ellie Molloy', 'Fred Pearson': 'Patrick', 'Jimmy Gallagher': 'Mick Molloy'}\"\r\ntt0116324,\"{'Ben Stiller': 'Mel Coplin', 'Patricia Arquette': 'Nancy Coplin', 'Téa Leoni': 'Tina Kalb', 'Mary Tyler Moore': 'Pearl Coplin', 'George Segal': 'Ed Coplin', 'Alan Alda': 'Richard Schlichting', 'Lily Tomlin': 'Mary Schlichting', 'Richard Jenkins': 'Paul Harmon', 'Josh Brolin': 'Agent Tony Kent', 'Celia Weston': 'Valerie Swaney', 'Glenn Fitzgerald': 'Lonnie Schlichting', 'Beth Stern': 'Jane       (as Beth Ostrosky)', 'Cynthia LaMontagne': 'Sandra       (as Cynthia Lamontagne)', 'David Patrick Kelly': 'Fritz Boudreau', 'John Ford Noonan': 'Mitch'}\"\r\ntt0261392,\"{'Jason Mewes': 'Jay', 'Kevin Smith': 'Silent Bob', 'Ben Affleck': 'Holden McNeil /              Ben Affleck', 'Jeff Anderson': 'Randal Graves', \"\"Brian O'Halloran\"\": \"\"Dante Hicks       (as Brian Christopher O'Halloran)\"\", 'Shannon Elizabeth': 'Justice', 'Eliza Dushku': 'Sissy', 'Ali Larter': 'Chrissy', 'Jennifer Schwalbach Smith': 'Missy       (as Jennifer Schwalbach)', 'Will Ferrell': 'Federal Wildlife Marshal Willenholly', 'Jason Lee': 'Brodie Bruce /              Banky Edwards', 'Judd Nelson': 'Sheriff', 'George Carlin': 'Hitchhiker', 'Carrie Fisher': 'Nun', 'Seann William Scott': 'Brent'}\"\r\ntt0416508,\"{'Anne Hathaway': 'Jane Austen', 'James McAvoy': 'Tom Lefroy', 'Julie Walters': 'Mrs. Austen', 'James Cromwell': 'Reverend Austen', 'Maggie Smith': 'Lady Gresham', 'Anna Maxwell Martin': 'Cassandra Austen', 'Lucy Cohu': 'Eliza De Feuillide', 'Laurence Fox': 'Mr. Wisley', 'Ian Richardson': 'Judge Langlois', 'Joe Anderson': 'Henry Austen', 'Leo Bill': 'John Warren', 'Jessica Ashworth': 'Lucy Lefroy', 'Eleanor Methven': 'Mrs. Lefroy', 'Michael James Ford': 'Mr. Lefroy', 'Tom Vaughan-Lawlor': 'Robert Fowle'}\"\r\ntt0113101,\"{'Sammi Davis': 'Jezebel (segment \"\"The Missing Ingredient\"\")', 'Amanda De Cadenet': 'Diana (segment \"\"The Missing Ingredient\"\")       (as Amanda deCadenet)', 'Valeria Golino': 'Athena (segment \"\"The Missing Ingredient\"\")', 'Madonna': 'Elspeth (segment \"\"The Missing Ingredient\"\")', 'Ione Skye': 'Eva (segment \"\"The Missing Ingredient\"\")', 'Lili Taylor': 'Raven (segment \"\"The Missing Ingredient\"\")', 'Alicia Witt': 'Kiva (segment \"\"The Missing Ingredient\"\")', 'Jennifer Beals': 'Angela (segments \"\"The Wrong Man\"\", \"\"The Man from Hollywood\"\")', 'David Proval': 'Sigfried (segment \"\"The Wrong Man\"\")', 'Antonio Banderas': 'Man (segment \"\"The Misbehavers\"\")', 'Lana McKissack': 'Sarah (segment \"\"The Misbehavers\"\")', 'Patricia Vonne': 'Corpse (segment \"\"The Misbehavers\"\")       (as Patricia Vonne Rodriguez)', 'Tamlyn Tomita': 'Wife (segment \"\"The Misbehavers\"\")', 'Danny Verduzco': 'Juancho (segment \"\"The Misbehavers\"\")', 'Salma Hayek': 'TV Dancing Girl (segment \"\"The Misbehavers\"\")'}\"\r\ntt0238924,\"{'Emile Hirsch': 'Francis Doyle', 'Kieran Culkin': 'Tim Sullivan', \"\"Vincent D'Onofrio\"\": 'Father Casey', 'Jena Malone': 'Margie Flynn', 'Jake Richardson': 'Wade Scalisi', 'Tyler Long': 'Joey Anderson', 'Jodie Foster': 'Sister Assumpta', 'Arthur Bridgers': 'Donny Flynn       (as Arthur Bridges)', 'Scott Simpson': 'Newsie', 'Melissa McBride': 'Mrs. Doyle', 'Michael Harding': 'Mr. Doyle       (as Mike Harding)', 'Chandler McIntyre': 'Naturalist', 'Jeffrey West': 'Professor Sullivan', 'Yvonne Erickson': 'Mrs. Sullivan', 'Nicky Olson': 'Colin Gibbney'}\"\r\ntt0120613,\"{'Bobby Boriello': 'Daniel Kantrowitz', 'Diane Lane': 'Pearl Kantrowitz', 'Anna Paquin': 'Alison Kantrowitz', 'Tovah Feldshuh': 'Lillian Kantrowitz', 'Liev Schreiber': 'Marty Kantrowitz', 'Julie Kavner': 'P.A. Announcer       (voice)', 'Stewart Bick': 'Neil Leiberman', 'Jess Platt': 'Herb Fogler', 'Mahée Paiement': 'Mrs. Dymbort       (as Mahee Paiement)', 'Star Jasper': 'Rhoda Leiberman', 'Ellen David': 'Eleanor Gelfand', 'Lisa Bronwyn Moore': 'Norma Fogler', 'Viggo Mortensen': 'Walker Jerome', 'Victoria Barkoff': 'Selma Levitsky       (as Vicky Barkoff)', 'Tamar Kozlov': 'Wendy Green'}\"\r\ntt0271219,\"{'Aaron Stanford': 'Oscar Grubman', 'Kate Mara': 'Miranda Spear', 'Robert Iler': 'Charlie', 'Peter Appel': 'Jimmy - Doorman', 'Bebe Neuwirth': 'Diane Lodder', 'Ron Rifkin': 'Professor Tisch', 'Alicia Van Couvering': 'Daphne Tisch', 'John Ritter': 'Stanley Grubman', 'Sigourney Weaver': 'Eve Grubman', 'Paul Butler': 'Professor Sherman', 'Michael Connors': 'Man in Bar       (as Michael W. Connors)', 'Theo Kogan': 'Woman in Bar', 'Adam LeFevre': 'Phil', 'Hope Chernov': 'Samantha Steadman', 'Debbon Ayer': 'Jean'}\"\r\ntt0285823,\"{'Antonio Banderas': 'El Mariachi', 'Salma Hayek': 'Carolina', 'Johnny Depp': 'Sands', 'Mickey Rourke': 'Billy', 'Eva Mendes': 'Ajedrez', 'Danny Trejo': 'Cucuy', 'Enrique Iglesias': 'Lorenzo', 'Marco Leonardi': 'Fideo', 'Cheech Marin': 'Belini', 'Rubén Blades': 'Jorge FBI', 'Willem Dafoe': 'Barillo', 'Gerardo Vigil': 'Marquez', 'Pedro Armendáriz Jr.': 'El Presidente       (as Pedro Armendariz)', 'Julio Oscar Mechoso': 'Advisor', 'Tito Larriva': 'Cab Driver'}\"\r\ntt0120879,\"{'Ewan McGregor': 'Curt Wild', 'Jonathan Rhys Meyers': 'Brian Slade', 'Christian Bale': 'Arthur Stuart', 'Toni Collette': 'Mandy Slade', 'Eddie Izzard': 'Jerry Devine', 'Emily Woof': 'Shannon', 'Michael Feast': 'Cecil', 'Janet McTeer': 'Female Narrator       (voice)', 'Mairead McKinley': 'Wilde Housemaid       (as Maraid McKinley)', 'Luke Morgan Oliver': 'Oscar Wilde (8)', 'Osheen Jones': 'Jack Fairy (7)', 'Micko Westmoreland': 'Jack Fairy', 'Damian Suchet': 'BBC Reporter', 'Danny Nutt': 'Kissing Sailor', 'Wash Westmoreland': 'Young Man'}\"\r\ntt0110907,\"{'Marcello Mastroianni': 'Sergei (Sergio)', 'Sophia Loren': 'Isabella de la Fontaine', 'Jean-Pierre Cassel': 'Olivier de la Fontaine', 'Kim Basinger': 'Kitty Potter', 'Chiara Mastroianni': 'Sophie Choiset', 'Stephen Rea': \"\"Milo O'Brannigan\"\", 'Anouk Aimée': 'Simone Lowenthal       (as Anouk Aimee)', 'Rupert Everett': 'Jack Lowenthal', 'Rossy de Palma': 'Pilar       (as Rossy De Palma)', 'Tara Leon': 'Kiki Simpson', 'Georgianna Robertson': 'Dane Simpson', 'Lili Taylor': 'Fiona Ulrich', 'Ute Lemper': 'Albertine', 'Forest Whitaker': 'Cy Bianco', 'Tom Novembre': 'Reggie'}\"\r\ntt0120907,\"{'Jennifer Jason Leigh': 'Allegra Geller', 'Jude Law': 'Ted Pikul', 'Ian Holm': 'Kiri Vinokur', 'Willem Dafoe': 'Gas', 'Don McKellar': 'Yevgeny Nourish', 'Callum Keith Rennie': 'Hugo Carlaw', 'Christopher Eccleston': 'Seminar Leader', 'Sarah Polley': 'Merle', 'Robert A. Silverman': \"\"D'Arcy Nader\"\", 'Oscar Hsu': 'Chinese Waiter', 'Kris Lemche': 'Noel Dichter', 'Vik Sahay': 'Male Assistant', 'Kirsten Johnson': 'Female Assistant', 'James Kirchner': 'Landry', 'Balázs Koós': 'Male Volunteer'}\"\r\ntt0858479,\"{'Dennis Quaid': 'Lawrence Wetherhold', 'Sarah Jessica Parker': 'Janet Hartigan', 'Thomas Haden Church': 'Chuck Wetherhold', 'Ellen Page': 'Vanessa Wetherhold', 'Ashton Holmes': 'James Wetherhold', 'Christine Lahti': 'Nancy', 'Camille Mana': 'Missy', 'David Denman': 'William', 'Don Wadsworth': 'Hadley', 'Robert Haley': 'Roth', 'Patrick Sebes': 'Curtis', 'Kevin James Doyle': 'Rodney', 'Paul Huber': 'Ben       (as Paul J. Huber)', 'Iva Jean Saraceni': 'Volunteer', 'Richard John Walters': 'Parking Lot Attendant'}\"\r\ntt0274558,\"{'Nicole Kidman': 'Virginia Woolf', 'Julianne Moore': 'Laura Brown', 'Meryl Streep': 'Clarissa Vaughan', 'Stephen Dillane': 'Leonard Woolf', 'Miranda Richardson': 'Vanessa Bell', 'George Loftus': 'Quentin Bell', 'Charley Ramm': 'Julian Bell', 'Sophie Wyburd': 'Angelica Bell', 'Lyndsey Marshal': 'Lottie Hope       (as Lyndsay Marshal)', 'Linda Bassett': 'Nelly Boxall', 'Christian Coulson': 'Ralph Partridge', 'Michael Culkin': 'Doctor', 'John C. Reilly': 'Dan Brown', 'Jack Rovello': 'Richie', 'Toni Collette': 'Kitty'}\"\r\ntt0115632,\"{'Jeffrey Wright': 'Jean Michel Basquiat', 'Michael Wincott': 'Rene Ricard', 'Benicio Del Toro': 'Benny Dalmau', 'Claire Forlani': 'Gina Cardinale', 'David Bowie': 'Andy Warhol', 'Dennis Hopper': 'Bruno Bischofberger', 'Gary Oldman': 'Albert Milo', 'Christopher Walken': 'The Interviewer', 'Willem Dafoe': 'The Electrician', 'Jean-Claude La Marre': 'Shenge       (as Jean Claude LaMarre)', 'Parker Posey': 'Mary Boone', 'Elina Löwensohn': 'Annina Nosei', 'Paul Bartel': 'Henry Geldzahler', 'Courtney Love': 'Big Pink', \"\"Tatum O'Neal\"\": 'Cynthia Kruger'}\"\r\ntt1045670,\"{'Sally Hawkins': 'Poppy', 'Elliot Cowan': 'Bookshop Assistant', 'Alexis Zegerman': 'Zoe', 'Andrea Riseborough': 'Dawn', 'Sinead Matthews': 'Alice       (as Sinéad Matthews)', \"\"Kate O'Flynn\"\": 'Suzy', 'Sarah Niles': 'Tash', 'Eddie Marsan': 'Scott', 'Joseph Kloska': \"\"Suzy's Boyfriend\"\", 'Sylvestra Le Touzel': 'Heather', 'Anna Reynolds': 'Receptionist', 'Nonso Anozie': 'Ezra', 'Trevor Cooper': 'Patient', 'Karina Fernandez': 'Rosita Santos', 'Philip Arditti': 'Flamenco Student'}\"\r\ntt0105236,\"{'Harvey Keitel': 'Mr. White /              Larry', 'Tim Roth': 'Mr. Orange /              Freddy', 'Michael Madsen': 'Mr. Blonde /              Vic Vega', 'Chris Penn': 'Nice Guy Eddie', 'Steve Buscemi': 'Mr. Pink', 'Lawrence Tierney': 'Joe Cabot', 'Randy Brooks': 'Holdaway', 'Kirk Baltz': 'Marvin Nash', 'Edward Bunker': 'Mr. Blue       (as Eddie Bunker)', 'Quentin Tarantino': 'Mr. Brown', 'Rich Turner': 'Sheriff #1', 'David Steen': 'Sheriff #2', 'Tony Cosmo': 'Sheriff #3', 'Stevo Polyi': 'Sheriff #4       (as Stevo Poliy)', 'Michael Sottile': 'Teddy'}\"\r\ntt0175142,\"{'Carmen Electra': 'Drew', 'Dave Sheridan': 'The Killer /              Doofy', 'Frank B. Moore': \"\"Not Drew's Boyfriend\"\", 'Giacomo Baessato': 'Trick or Treater #1', 'Kyle Graham': 'Trick or Treater #2', 'Leanne Santos': 'Trick or Treater #3', 'Mark McConchie': \"\"Drew's Dad\"\", 'Karen Kruper': \"\"Drew's Mom\"\", 'Anna Faris': 'Cindy', 'Jon Abrahams': 'Bobby', 'Rick Ducommun': \"\"Cindy's Dad\"\", 'Regina Hall': 'Brenda', 'Marlon Wayans': 'Shorty', 'Shannon Elizabeth': 'Buffy', 'Lloyd Berry': 'Homeless Man'}\"\r\ntt0340377,\"{'Peter Dinklage': 'Finbar McBride', 'Paul Benjamin': 'Henry Styles', 'Jase Blankfort': 'Store Customer', 'Paula Garcés': 'Cashier       (as Paula Garces)', 'Josh Pais': 'Carl', 'Richard Kind': 'Louis Tiboni', 'Bobby Cannavale': 'Joe Oramas', 'Patricia Clarkson': 'Olivia Harris', 'Lynn Cohen': 'Patty at the Good to Go', 'Raven Goodwin': 'Cleo', 'Marla Sucharetza': 'Janice', 'Michelle Williams': 'Emily', 'Jayce Bartok': 'Chris', 'Joe Lo Truglio': 'Danny       (as Joe Lotruglio)', 'John Slattery': 'David'}\"\r\ntt0120577,\"{'Ryan Phillippe': \"\"Shane O'Shea\"\", 'Salma Hayek': 'Anita', 'Neve Campbell': 'Julie Black', 'Mike Myers': 'Steve Rubell', 'Sela Ward': 'Billie Auster', 'Breckin Meyer': 'Greg Randazzo', 'Sherry Stringfield': 'Viv', 'Ellen Albertini Dow': 'Disco Dottie', 'Cameron Mathison': 'Atlanta', 'Noam Jenkins': 'Romeo', 'Jay Goede': 'Buck', 'Patrick Taylor': 'Tarzan', 'Heather Matarazzo': \"\"Grace O'Shea\"\", 'Skipp Sudduth': \"\"Harlan O'Shea\"\", 'Aemilia Robinson': \"\"Kelly O'Shea\"\"}\"\r\ntt0111512,\"{'Jackie Chan': 'Wong Fei-hung', 'Lung Ti': \"\"Wong Kei-ying, Wong's Father\"\", 'Anita Mui': \"\"Ling - Wong's Step-Mother\"\", 'Felix Wong': 'Tsang', 'Chia-Liang Liu': 'Master Fu Wen-Chi       (as Lau Kar-Leung)', 'Ken Lo': 'John       (as Low Houi Kang)', 'Kar Lok Chin': 'Fo Sang       (as Chin Ka Lok)', 'Ho-Sung Pak': 'Henry', 'Chi-Kwong Cheung': 'Tso       (as Tseung Chi Kwong)', 'Yi-Sheng Han': 'Uncle Hing       (as Hon Yee Sang)', 'Andy Lau': 'Counter Intelligence Officer', 'Wing-Fong Ho': 'Fun       (as Ho Wing Fong)', 'Kar-Yung Lau': 'Marlon       (as Kar Yung Lau)', 'Siu-Ming Lau': 'Mr. Chiu', 'Suki Kwan': \"\"Chiu's Wife\"\"}\"\r\ntt0113158,\"{'Jennifer Jason Leigh': 'Sadie Flood', 'Mare Winningham': 'Georgia Flood', 'Ted Levine': 'Jake', 'Max Perlich': 'Axel Goldman', 'John Doe': 'Bobby', 'John C. Reilly': 'Herman', 'Jimmy Witherspoon': 'Trucker', 'Jason Carter': 'Chasman', 'Tom Bower': 'Erwin Flood', 'Smokey Hormel': 'Leland', 'Jimmy Z.': 'Clay', 'Tony Marsico': 'Paul', 'Jamian Briar': 'Andrew Flood', 'Rachel Rasco': 'Mish Flood', 'Nicole Donahoo': 'Young Sadie Flood'}\"\r\ntt0306047,\"{'Pamela Anderson': 'Becca', 'Jenny McCarthy': 'Kate', 'Marny Eng': 'Tabitha', 'Charlie Sheen': 'Tom', 'Simon Rex': 'George', 'Jianna Ballard': 'Sue', 'Jeremy Piven': 'Ross Giggins', 'Anna Faris': 'Cindy', 'Timothy Stack': 'Carson Ward       (as Tim Stack)', 'Elaine Klimaszewski': 'Elaine', 'Diane Klimaszewski': 'Diane', 'Camryn Manheim': 'Trooper Champlin', 'Drew Mikuska': 'Cody', 'Regina Hall': 'Brenda Meeks', 'Darrell Hammond': 'Father Muldoon'}\"\r\ntt0104567,\"{'Brad Pitt': 'Johnny Suede', 'Richard Boes': 'Man in Tuxedo', 'Cheryl Costa': 'Woman in Alley', 'Michael Luciano': 'Mr. Clepp', 'Calvin Levels': 'Deke', 'Nick Cave': 'Freak Storm', 'Ralph Marrero': 'Bartender', 'Wilfredo Giovanni Clark': 'Slick', 'Alison Moir': 'Darlette', 'Peter McRobbie': 'Flip Doubt', 'Ron Vawter': 'Winston', 'Dennis Parlato': 'Dalton', 'Tina Louise': 'Mrs. Fontaine', 'Michael Mulheren': 'Fred Business', 'Wayne Maugans': 'Ned Business'}\"\r\ntt0307987,\"{'Billy Bob Thornton': 'Willie', 'Tony Cox': 'Marcus', 'Brett Kelly': 'The Kid', 'Lauren Graham': 'Sue', 'Lauren Tom': 'Lois', 'Bernie Mac': 'Gin', 'John Ritter': 'Bob Chipeska', 'Ajay Naidu': 'Hindustani Troublemaker', 'Lorna Scott': 'Milwaukee Mother', 'Harrison Bieker': 'Milwaukee Boy', 'Alex Borstein': 'Milwaukee Mom with Photo', 'Alexandra Korhan': \"\"Girl on Santa's Lap\"\", 'Dylan Charles': 'Milwaukee Bratty Boy', 'Billy Gardell': 'Milwaukee Security Guard', 'Lisa Ross': 'Milwaukee Bartender'}\"\r\ntt0240890,\"{'John Cusack': 'Jonathan Trager', 'Kate Beckinsale': 'Sara Thomas', 'Jeremy Piven': 'Dean Kansky', 'Bridget Moynahan': 'Halley Buchanan', 'Eugene Levy': \"\"Bloomingdale's Salesman\"\", 'Lilli Lavine': \"\"Bloomingdale's Stock Girl\"\", 'Michael Guarino Jr.': \"\"Customer At Bloomingdale's       (as Michael Guarino)\"\", 'Abdul Alshawish': \"\"Customer At Bloomingdale's\"\", 'Stephen Bruce': 'Host At Serendipity', 'David Sparrow': \"\"Josh's Dad\"\", 'Ann Talman': \"\"Bloomingdale's Saleswoman #1\"\", 'Crystal Bock': \"\"Bloomingdale's Saleswoman #2\"\", 'Gary Gerbrandt': 'Josh', 'Kate Blumberg': 'Courtney', 'Ron Payne': 'Louis Trager'}\"\r\ntt0114194,\"{'Christopher Walken': 'Gabriel', 'Elias Koteas': 'Thomas Dagget', 'Virginia Madsen': 'Katherine', 'Eric Stoltz': 'Simon', 'Viggo Mortensen': 'Lucifer', 'Amanda Plummer': 'Rachael', \"\"Moriah 'Shining Dove' Snyder\"\": 'Mary       (as Moriah Shining Dove Snyder)', 'Adam Goldberg': 'Jerry', 'Steve Hytner': 'Joseph', 'J.C. Quinn': 'Burrows', 'Emma Shenah': 'Grandmother', 'Albert Nelson': 'Grey Horse', 'Shawn Nelson': 'Indian Healer', 'Emily Conforto': 'Sandra', 'Sioux-z Jessup': 'Nurse'}\"\r\ntt0120679,\"{'Salma Hayek': 'Frida Kahlo', 'Mía Maestro': 'Cristina Kahlo', 'Amelia Zapata': 'Maid', 'Alejandro Usigli': 'Professor', 'Diego Luna': \"\"Alejandro 'Alex'\"\", 'Alfred Molina': 'Diego Rivera', 'Lucia Bravo': 'Auditorium Model', 'Valeria Golino': 'Lupe Marín', 'Patricia Reyes Spíndola': 'Matilde Kahlo       (as Patricia Reyes Spindola)', 'Loló Navarro': 'Nanny       (as Lolo Navarro)', 'Roger Rees': 'Guillermo Kahlo', 'Fermín Martínez': 'Painter on Bus       (as Fermin Martinez)', 'Roberto Medina': 'Dr. Farril', 'Ashley Judd': 'Tina Modotti', 'Antonio Banderas': 'David Alfaro Siqueiros'}\"\r\ntt0105488,\"{'Paul Mercurio': 'Scott Hastings', 'Tara Morice': 'Fran', 'Bill Hunter': 'Barry Fife', 'Pat Thomson': 'Shirley Hastings', 'Gia Carides': 'Liz Holt', 'Peter Whitford': 'Les Kendall', 'Barry Otto': 'Doug Hastings', 'John Hannan': 'Ken Railings', 'Sonia Kruger': 'Tina Sparkle', 'Kris McQuade': 'Charm Leachman', 'Pip Mushin': 'Wayne Burns', 'Leonie Page': 'Vanessa Cronin', 'Antonio Vargas': 'Rico', 'Armonia Benedito': 'Ya Ya', 'Jack Webster': 'Terry'}\"\r\ntt0308644,\"{'Johnny Depp': 'Sir James Matthew Barrie', 'Kate Winslet': 'Sylvia Llewelyn Davies', 'Julie Christie': 'Mrs. Emma du Maurier', 'Radha Mitchell': 'Mary Ansell Barrie', 'Dustin Hoffman': 'Charles Frohman', 'Freddie Highmore': 'Peter Llewelyn Davies', 'Joe Prospero': 'Jack Llewelyn Davies', 'Nick Roud': 'George Llewelyn Davies', 'Luke Spill': 'Michael Llewelyn Davies', 'Ian Hart': 'Sir Arthur Conan Doyle', 'Kelly Macdonald': \"\"'Peter Pan'\"\", 'Mackenzie Crook': 'Mr. Jaspers - Usher', 'Eileen Essell': 'Mrs. Snow', 'Jimmy Gardner': 'Mr. Snow', 'Oliver Fox': 'Gilbert Cannan'}\"\r\ntt0301199,\"{'Chiwetel Ejiofor': 'Okwe', 'Audrey Tautou': 'Senay Gelik', 'Sergi López': 'Sneaky /              Juan', 'Sophie Okonedo': 'Juliette', 'Benedict Wong': 'Guo Yi', 'Zlatko Buric': 'Ivan', 'Kriss Dosanjh': 'Asian Businessman', 'Israel Oyelumade': 'Mini Cab Driver       (as Israel Aduramo)', 'Yemi Goodman Ajibade': 'Mini Cab Driver       (as Ade-Yemi Ajibade)', 'Nizwar Karanj': 'Mini Cab Driver', 'Deobia Oparei': 'Mini Cab Driver', 'Jeffery Kissoon': 'Cab Controller', 'Kenan Hudaverdi': 'Cafe Owner', 'Damon Younger': 'Punter', 'Paul Bhattacharjee': 'Mohammed'}\"\r\ntt0247425,\"{'Tom Wilkinson': 'Matt Fowler', 'Sissy Spacek': 'Ruth Fowler', 'Nick Stahl': 'Frank Fowler', 'Marisa Tomei': 'Natalie Strout', 'William Mapother': 'Richard Strout', 'William Wise': 'Willis Grinnel', 'Celia Weston': 'Katie Grinnel', 'Karen Allen': 'Marla Keyes', 'Frank T. Wells': 'Henry', 'W. Clapham Murray': 'Carl', 'Justin Ashforth': 'Tim Bryson', 'Terry A. Burgess': 'District Attorney', 'Jonathan Walsh': 'Father McCasslin', 'Diane E. Hamlin': \"\"Davis' Assistant\"\", 'Camden Munson': 'Jason Strout'}\"\r\ntt0113326,\"{'Jackie Chan': 'Keung', 'Anita Mui': 'Elaine', 'Françoise Yip': 'Nancy       (as Francois Yip)', 'Bill Tung': 'Uncle Bill', 'Marc Akerstream': 'Tony', 'Garvin Cross': 'Angelo', 'Morgan Lam': 'Danny', 'Ailen Sit': \"\"Tony's Gang Member\"\", 'Man-Ching Chan': \"\"Tony's Gang Member       (as Chan Man Ching)\"\", 'Fred Andrucci': \"\"Tony's Gang Member\"\", 'Mark Antoniuk': \"\"Tony's Gang Member\"\", 'Lauro David Chartrand-DelValle': \"\"Tony's Gang Member       (as Lauro Chartrand)\"\", 'Chris Franco': \"\"Tony's Gang Member\"\", 'Lance Gibson': \"\"Tony's Gang Member\"\", 'David Hooper': \"\"Tony's Gang Member\"\"}\"\r\ntt0117283,\"{'David Schwimmer': 'Tom Thompson', 'Gwyneth Paltrow': 'Julie DeMarco', 'Michael Rapaport': 'Brad Schorr', 'Toni Collette': 'Cynthia', 'Carol Kane': \"\"Tom's Mother\"\", 'Michael Vartan': 'Scott', 'Bitty Schram': 'Lauren', 'Jean De Baer': 'Suzanne DeMarco', 'Elizabeth Franz': 'Aunt Lucille', 'Mark Margolis': 'Philip DeMarco', 'Barbara Hershey': 'Ruth Abernathy', 'Edoardo Ballerini': 'The Job Interviewer', 'Matthew Faber': 'Jared', 'Robin Morse': 'Sylvie', 'Tony Machine': 'The Undertaker'}\"\r\ntt0077594,\"{'Bruce Lee': 'Billy Lo /              Hai Tien (original 1972 footage)       (archive footage)', 'Gig Young': 'Jim Marshall', 'Dean Jagger': 'Dr. Land', \"\"Hugh O'Brian\"\": 'Steiner', 'Colleen Camp': 'Ann Morris', 'Robert Wall': 'Carl Miller', 'Mel Novak': 'Stick', 'Kareem Abdul-Jabbar': 'Hakim /              Mantis (original 1972 footage)       (archive footage)', 'Chuck Norris': 'Fighter       (archive footage)', 'Dan Inosanto': 'Pasqual /              Third Floor Guardian (original 1972 footage)       (as Danny Inosanto)', 'Billy McGill': 'John', 'Sammo Kam-Bo Hung': 'Lo Chen       (as Hung Kim Po)', 'Roy Chiao': 'Henry Lo', 'Tony Chiu-Wai Leung': 'David       (as Tony Leung)', 'Jim James': 'Surgeon'}\"\r\ntt0299977,\"{'Jet Li': 'Nameless', 'Tony Chiu-Wai Leung': 'Broken Sword       (as Tony Leung Chiu-Wai)', 'Maggie Cheung': 'Flying Snow       (as Maggie Cheung Man-Yuk)', 'Ziyi Zhang': 'Moon       (as Zhang Ziyi)', 'Daoming Chen': 'King       (as Chen Dao Ming)', 'Donnie Yen': 'Sky', 'Zhongyuan Liu': 'Scholar       (as Liu Zhong Yuan)', 'Tianyong Zheng': 'Old Servant       (as Zheng Tian Yong)', 'Yan Qin': 'Prime Minister', 'Chang Xiao Yang': 'General', 'Yakun Zhang': 'Commander       (as Zhang Ya Kun)', 'Ma Wen Hua': 'Head Eunuch', 'Jin Ming': 'Eunuch', 'Xu Kuang Hua': 'Pianist', 'Shou Xin Wang': 'Musician'}\"\r\ntt0213847,\"{'Monica Bellucci': 'Malèna Scordia', 'Giuseppe Sulfaro': 'Renato Amoroso', 'Luciano Federico': \"\"Renato's Father\"\", 'Matilde Piana': \"\"Renato's Mother\"\", 'Pietro Notarianni': 'Professor Bonsignore', 'Gaetano Aronica': 'Nino Scordia', 'Gilberto Idonea': 'Avvocato Centorbi       (as Gilberto Idone)', 'Angelo Pellegrino': 'Segretario politico', 'Gabriella Di Luzio': 'Mantenuta del Barone', 'Pippo Provvidenti': 'Dott. Cusimano', 'Maria Terranova': 'Moglie Dott. Cusimano', 'Marcello Catalano': 'Lieutenant Cadei', 'Elisa Morucci': 'Lupetta', 'Domenico Gennaro': 'Farmacista', 'Vitalba Andrea': 'Moglie farmacista'}\"\r\ntt0104558,\"{'Jackie Chan': 'Insp. Chan Ka Kui', 'Michelle Yeoh': 'Insp. Jessica Yang - Director of INTERPOL       (as Michelle Khan)', 'Maggie Cheung': 'May', 'Kenneth Tsang': 'Chaibat       (as Ken Tsang)', 'Wah Yuen': 'Panther', 'Bill Tung': \"\"'Uncle' Bill Wong\"\", 'Josephine Koo': \"\"Cheng Wen Shi - Chaibat's Wife\"\", 'Kelvin Wong': 'Peter       (as Wong Siu)', 'Philip Chan': 'Insp. Y.K. Chen', 'Ken Lo': \"\"Chaibat's Man       (as Lowei Kwong)\"\", 'Lieh Lo': 'The General       (as Lit Law)', 'Wai Shum': 'Drug Lord #1 at Meeting', 'Yi-Sheng Han': '(as Yee Sang Hon)'}\"\r\ntt0355295,\"{'Petr Ratimec': 'Young Will', 'Barbora Lukesová': 'Mother Grimm       (as Barbara Lukesova)', 'Anna Rust': 'Sister Grimm', 'Jeremy Robson': 'Young Jacob', 'Matt Damon': 'Wilhelm Grimm', 'Heath Ledger': 'Jacob Grimm', 'Radim Kalvoda': 'Gendarme', 'Martin Hofmann': 'Gendarme', 'Josef Pepa Nos': 'German War Veteran', 'Harry Gilliam': 'Stable Boy', 'Miroslav Táborský': 'Old Miller', 'Roger Ashton-Griffiths': 'Mayor', 'Marika Sarah Procházková': \"\"Miller's Daughter       (as Marika Prochazkova)\"\", 'Mackenzie Crook': 'Hidlick', 'Richard Ridings': 'Bunst'}\"\r\ntt0117571,\"{'Drew Barrymore': 'Casey Becker', 'Roger Jackson': 'Phone Voice       (voice)', 'Kevin Patrick Walls': 'Steve Orth', 'David Booth': \"\"Casey's Father\"\", 'Carla Hatley': \"\"Casey's Mother\"\", 'Neve Campbell': 'Sidney Prescott', 'Skeet Ulrich': 'Billy Loomis', 'Lawrence Hecht': 'Neil Prescott', 'Courteney Cox': 'Gale Weathers', 'W. Earl Brown': 'Kenny Jones', 'Rose McGowan': 'Tatum Riley', 'Lois Saunders': 'Mrs. Tate', 'David Arquette': 'Deputy Dewey', 'Joseph Whipp': 'Sheriff Burke', 'Matthew Lillard': 'Stuart'}\"\r\ntt0211915,\"{'Audrey Tautou': 'Amélie Poulain', 'Mathieu Kassovitz': 'Nino Quincampoix', 'Rufus': 'Raphaël Poulain', 'Lorella Cravotta': 'Amandine Poulain', 'Serge Merlin': 'Raymond Dufayel', 'Jamel Debbouze': 'Lucien', 'Clotilde Mollet': 'Gina', 'Claire Maurier': 'Madame Suzanne - la patronne du café', 'Isabelle Nanty': 'Georgette', 'Dominique Pinon': 'Joseph', 'Artus de Penguern': 'Hipolito', 'Yolande Moreau': 'Madeleine Wallace', 'Urbain Cancelier': 'Collignon', 'Maurice Bénichou': 'Dominique Bretodeau', 'Michel Robin': 'Mr. Collignon'}\"\r\ntt0118842,\"{'Ethan Suplee': 'Fan', 'Ben Affleck': 'Holden McNeil', 'Scott Mosier': 'Collector', 'Jason Lee': 'Banky Edwards', 'Casey Affleck': 'Little Kid', 'Dwight Ewell': 'Hooper X', 'Joey Lauren Adams': 'Alyssa Jones', 'Guinevere Turner': 'Singer', 'Carmen Llywelyn': 'Kim       (as Carmen Lee)', \"\"Brian O'Halloran\"\": 'Jim Hicks - Executive #1', 'Matt Damon': 'Shawn Oran - Executive #2', 'Alexander Goebbel': 'Train Kid', 'Tony Torn': 'Cashier', 'Rebecca Waxman': 'Dalia', 'Paris Petrick': 'Tory'}\"\r\ntt0115639,\"{'Matt Dillon': \"\"Tommy 'Birdman' Rowland\"\", 'Noah Emmerich': \"\"Michael 'Mo' Morris\"\", 'Annabeth Gish': 'Tracy Stover', 'Lauren Holly': 'Darian Smalls', 'Timothy Hutton': 'Willie Conway', \"\"Rosie O'Donnell\"\": 'Gina Barrisano', 'Max Perlich': 'Kev', 'Martha Plimpton': 'Jan', 'Natalie Portman': 'Marty', 'Michael Rapaport': 'Paul Kirkwood', 'Mira Sorvino': 'Sharon Cassidy', 'Uma Thurman': 'Andera', 'Pruitt Taylor Vince': \"\"Stanley 'Stinky' Womack\"\", 'Anne Bobby': 'Sarah Morris', 'Richard Bright': 'Dick Conway'}\"\r\ntt0436697,\"{'Helen Mirren': 'The Queen', 'James Cromwell': 'Prince Philip', 'Alex Jennings': 'Prince Charles', 'Roger Allam': 'Robin Janvrin', 'Sylvia Syms': 'Queen Mother', 'Tim McMullan': 'Stephen Lamport', 'Robin Soans': 'Equerry', 'Lola Peploe': \"\"Janvrin's Secretary\"\", 'Douglas Reith': 'Lord Airlie', 'Joyce Henderson': 'Balmoral Maid', 'Pat Laffan': 'Head Ghillie', 'Amanda Hadingue': \"\"Queen's Dresser\"\", 'John McGlynn': 'Balmoral Head Ghillie', \"\"Gray O'Brien\"\": \"\"Charles' Valet\"\", 'Dolina MacLennan': 'Balmoral Switchboard Operator'}\"\r\ntt0338096,\"{'Diego Luna': 'Javier Suarez', 'Romola Garai': 'Katey Miller', 'Sela Ward': 'Jeannie Miller', 'John Slattery': 'Bert Miller', 'Jonathan Jackson': 'James Phelps', 'January Jones': 'Eve', 'Mika Boorem': 'Susie Miller', 'René Lavan': 'Carlos Suarez', 'Mya': 'Lola Martinez       (as Mya Harrison)', 'Polly Cole': 'Polly       (as Polly Cusumano)', 'Chris Engen': 'Steph', 'Tommy Kavelin': 'Señor Alonso', 'Wilmer Cordero': 'Teacher', 'Charlie Rodriguez': 'Grandpa Suarez', 'Donato Poveda': 'Troubador       (as Donato)'}\"\r\ntt0363226,\"{'Takeshi Kitano': 'Zatôichi /              Ichi       (as Beat Takeshi)', 'Tadanobu Asano': 'Hattori Genosuke', 'Michiyo Yasuda': 'Aunt Oume       (as Michiyo Ohkusu)', 'Taka Guadalcanal': 'Shinkichi', 'Daigorô Tachibana': \"\"Geisha Seitaro 'Osei' Naruto\"\", 'Yûko Daike': 'Geisha Okinu Naruto', 'Yui Natsukawa': \"\"O-Shino, Hattori's Wife\"\", 'Ittoku Kishibe': 'Boss Inosuke Ginzo', 'Saburô Ishikura': 'Boss Tashichi Ogi', 'Akira Emoto': 'Tavern Owner Pops', 'Ben Hiura': 'Tavern Gramps', 'Kohji Miura': 'Lord Sakai', 'Hideboh': 'Dancing Farmer       (as The Stripes)', 'Ron II': 'Dancing Farmer       (as The Stripes)', 'Suji': 'Dancing Farmer       (as The Stripes)'}\"\r\ntt0108148,\"{'Rongguang Yu': 'Dr. Yang /              Iron Monkey', 'Donnie Yen': 'Wong Kei-Ying', 'Jean Wang': 'Miss Orchid', 'Sze-Man Tsang': 'Wong Fei-Hong', 'Shun-Yee Yuen': 'General Fox', 'James Wong': 'Governor Cheng Pak-Fong', 'Shi-Kwan Yen': 'Hin Hung       (as Yee Kwan Yan)', 'Fai Lee': \"\"Hin Hung's disciple #1\"\", 'Hou Hsiao': \"\"Hin Hung's disciple #2\"\", 'Brianne Brozey': 'Wong Fei-Hung       (voice)', 'Mandy Chan': 'Shaolin Monk #4       (as Man-Dik Ko)', 'Siu Wah Chan': 'Shaolin Monk #2', 'Fung-Lei Cheung': \"\"Governor Cheng's favorite mistress\"\", 'Kwai Po Chun': 'Shaolin Monk #1       (as Kwai Po Chin)', 'Peter Doyle': \"\"Orchid's Boss (Flashback Scene)       (voice)\"\"}\"\r\ntt0270288,\"{'Dick Clark': 'Himself', 'Sam Rockwell': 'Chuck Barris', 'Michelle Sweeney': 'J. Sweeney', 'Drew Barrymore': 'Penny', 'Chelsea Ceci': 'Tuvia, Age 8', 'Michael Cera': 'Chuck Age 8 and 11       (as Michael Céra)', 'Aimee Rose Ambroziak': \"\"Chuck's Date #1\"\", 'Isabelle Blais': \"\"Chuck's Date #2\"\", 'Melissa Carter': \"\"Chuck's Date #3\"\", 'Jennifer Hall': 'Georgia', 'Ilona Elkin': \"\"Georgia's Girlfriend\"\", 'Sean Tucker': 'Barfly', 'Jaye P. Morgan': 'Herself', 'Maggie Gyllenhaal': 'Debbie', 'David Julian Hirsh': 'Freddie Cannon       (as David Hirsh)'}\"\r\ntt0160862,\"{'Freddie Prinze Jr.': 'Zack Siler', 'Rachael Leigh Cook': 'Laney Boggs', 'Matthew Lillard': 'Brock Hudson', 'Paul Walker': 'Dean Sampson', \"\"Jodi Lyn O'Keefe\"\": 'Taylor Vaughan', 'Kevin Pollak': 'Wayne Boggs', 'Anna Paquin': 'Mackenzie Siler', 'Kieran Culkin': 'Simon Boggs', 'Elden Henson': 'Jesse Jackson', 'Usher Raymond': 'Campus D.J.', \"\"Lil' Kim\"\": \"\"Alex       (as Kimberly 'Lil' Kim' Jones)\"\", 'Gabrielle Union': 'Katie', 'Dulé Hill': 'Preston', 'Tamara Mello': 'Chandler', 'Clea DuVall': 'Misty'}\"\r\ntt0134119,\"{'Matt Damon': 'Tom Ripley', 'Gwyneth Paltrow': 'Marge Sherwood', 'Jude Law': 'Dickie Greenleaf', 'Cate Blanchett': 'Meredith Logue', 'Philip Seymour Hoffman': 'Freddie Miles', 'Jack Davenport': 'Peter Smith-Kingsley', 'James Rebhorn': 'Herbert Greenleaf', 'Sergio Rubini': 'Inspector Roverini', 'Philip Baker Hall': 'Alvin MacCarron', 'Celia Weston': 'Aunt Joan', 'Fiorello': 'Fausto       (as Rosario Fiorello)', 'Stefania Rocca': 'Silvana', 'Ivano Marescotti': 'Colonnello Verrecchia', 'Anna Longhi': 'Signora Buffi', 'Alessandro Fabrizi': 'Sergeant Baggio'}\"\r\ntt0264150,\"{'Gwyneth Paltrow': 'Donna Jensen', 'Christina Applegate': 'Christine Montgomery', 'Mark Ruffalo': 'Ted Stewart', 'Candice Bergen': 'Sally Weston', 'Joshua Malina': 'Randy Jones       (as Josh Malina)', 'Kelly Preston': 'Sherry', 'Rob Lowe': 'Co-Pilot Steve Bench', 'Mike Myers': 'John Witney', 'Marc Blucas': 'Tommy Boulay', 'Stacey Dash': 'Angela Samona', 'Jon Polito': 'Roy Roby', 'Concetta Tomei': 'Mrs. Stewart', 'Robyn Peterson': \"\"Donna's Mom\"\", 'Nadia Dajani': 'Paige', 'John Francis Daley': 'Rodney'}\"\r\ntt0384806,\"{'Ryan Reynolds': 'George Lutz', 'Melissa George': 'Kathy Lutz', 'Jesse James': 'Billy Lutz', 'Jimmy Bennett': 'Michael Lutz', 'Chloë Grace Moretz': 'Chelsea Lutz', 'Rachel Nichols': 'Lisa', 'Philip Baker Hall': 'Father Callaway', 'Isabel Conner': 'Jodie Defeo', 'Brendan Donaldson': 'Ronald Defeo', 'Annabel Armour': 'Realtor', 'Rich Komenich': 'Chief of Police', 'David Gee': 'ER Doctor', 'Danny McCarthy': 'Officer Greguski', 'Nancy Lollar': 'Librarian', 'José Taitano': 'Stitch'}\"\r\ntt0286112,\"{'Stephen Chow': 'Mighty Steel Leg Sing', 'Man-Tat Ng': 'Golden Leg Fung       (as Ng Mang Tat) (as Mang Tat Ng)', 'Wei Zhao': 'Mui       (as Vicki Zhao)', 'Yin Tse': 'Team Evil Coach Hung       (as Patrick Tse Yin)', 'Hui Li': 'Banana Peel Girl', 'Cecilia Cheung': 'Team Moustache Player 1', 'Karen Mok': 'Team Moustache Player 2', 'Vincent Kok': 'Team Puma Leader', 'Kai-Man Tin': 'Iron Shirt Tin (Third Brother)', 'Yat-Fei Wong': 'Iron Head (First Brother)       (as Wong Kai Yue)', 'Tze Chung Lam': 'Light Weight (Small Brother)       (as Lam Tze Chung)', 'Danny Chan Kwok-Kwan': 'Lightning Hands (Fourth Brother)       (as Chan Kwon Kwan)', 'Meilin Mo': 'Hooking Leg (Second Brother)       (as Mei-Lin Mo)', 'Ming Ming Zhang': 'Little Hung', 'Pu Ye Dong': 'Little Fung'}\"\r\ntt0107822,\"{'Holly Hunter': 'Ada McGrath', 'Harvey Keitel': 'George Baines', 'Sam Neill': 'Alisdair Stewart', 'Anna Paquin': 'Flora McGrath', 'Kerry Walker': 'Aunt Morag', 'Geneviève Lemon': 'Nessie       (as Genevieve Lemon)', 'Tungia Baker': 'Hira', 'Ian Mune': 'Reverend', 'Peter Dennett': 'Head Seaman', 'Te Whatanui Skipwith': 'Chief Nihe', 'Pete Smith': 'Hone', 'Bruce Allpress': 'Blind Piano Tuner', 'Cliff Curtis': 'Mana', 'Carla Rupuha': 'Heni (Mission Girl)', 'Mahina Tunui': 'Mere (Mission Girl)'}\"\r\ntt0120321,\"{'Adam Beach': 'Victor Joseph', 'Evan Adams': 'Thomas Builds-the-Fire', 'Irene Bedard': 'Suzy Song', 'Gary Farmer': 'Arnold Joseph', 'Tantoo Cardinal': 'Arlene Joseph', 'Cody Lightning': 'Young Victor Joseph', 'Simon Baker': 'Young Thomas Builds-the-Fire', 'Monique Mojica': 'Grandma Builds-the-Fire', 'John Trudell': 'Randy Peone', 'Chief Leonard George': 'Lester Fallsapart       (as Leonard George)', 'Michael Greyeyes': 'Junior Polatkin', 'Darwin Haine': 'Boo', 'Michelle St. John': 'Velma', 'Elaine Miles': 'Lucy', 'Cynthia Geary': 'Cathy the Gymnast'}\"\r\ntt0192071,\"{'Kirsten Dunst': 'Kelly Woods', 'Ben Foster': 'Berke Landers', 'Melissa Sagemiller': 'Allison McAllister', 'Sisqó': 'Dennis Wallace', 'Shane West': \"\"Bentley 'Striker' Scrumfeld\"\", 'Colin Hanks': 'Felix Woods', 'Zoe Saldana': 'Maggie       (as Zoë Saldana)', 'Mila Kunis': 'Basin', 'Swoosie Kurtz': 'Beverly Landers', 'Ed Begley Jr.': 'Frank Landers', 'Martin Short': 'Dr. Desmond Forrest Oates', 'Carmen Electra': 'Mistress Moira', 'Vitamin C': 'Herself', 'Coolio': 'Himself', 'Christopher Jacot': 'Peter Wong'}\"\r\ntt0302674,\"{'Casey Affleck': 'Gerry', 'Matt Damon': 'Gerry'}\"\r\ntt0250323,\"{'Tilda Swinton': 'Margaret Hall', 'Goran Visnjic': 'Alek Spera', 'Jonathan Tucker': 'Beau Hall', 'Peter Donat': 'Jack Hall', 'Josh Lucas': 'Darby Reese', 'Raymond J. Barry': 'Carlie Nagel       (as Raymond Barry)', 'Tamara Hope': 'Paige Hall', 'Jordon Dorrance': 'Dylan Hall', 'Heather Mathieson': 'Sue Lloyd', 'Holmes Osborne': 'Loan Officer', 'Richard Gross': 'Deputy Sheriff', 'Kip Martin': 'BVD', 'Frankie Loyal': 'Barrish Brother       (as Franco Delgado)', 'Kip Ellwood': 'Male Nurse', 'Margot Krindel': 'Jackie'}\"\r\ntt0184858,\"{'Ben Affleck': 'Rudy Duncan', 'James Frain': 'Nick Cassidy', 'Dana Stubblefield': 'The Alamo', 'Mark Acheson': 'Mean Guard', 'Tom Heaton': 'Ugly Staffer', 'Isaac Hayes': 'Zook', 'Michael Sunczyk': 'Distant Inmate #1', 'Douglas Arthurs': 'Distant Inmate #2       (as Douglas H. Arthurs)', 'Dean Wray': 'Guard #1', 'Ron Sauvé': 'Guard #2       (as Ron Sauve)', 'Ron Jeremy': 'Prisoner #1       (as Ron Hyatt)', 'Hrothgar Mathews': 'Exit Guard', 'Charlize Theron': 'Ashley', 'Clarence Williams III': 'Merlin', 'Donal Logue': 'Pug'}\"\r\ntt0300051,\"{'Betty Aberlin': 'Teacher', 'Matt McFarland': 'Boy #1', 'Sarah Stafford': 'Girl #1', 'Paulie Litt': 'Bryan       (as Paulie Litowsky)', 'Christian Fan': 'Boy #3', 'Victor Chavez': 'Boy #4', 'William Mace': 'Boy #5', 'Raquel Castro': 'Gertie Trinke', 'Ben Affleck': 'Ollie Trinke', 'Jennifer Schwalbach Smith': 'Susan       (as Jennifer Schwalbach)', 'Jennifer Lopez': 'Gertrude Steiney', 'George Carlin': 'Bart Trinke', 'Stephen Root': 'Greenie', 'Mike Starr': 'Block', 'S. Epatha Merkerson': 'Doctor #1'}\"\r\ntt0144715,\"{'Kate Winslet': 'Ruth', 'Harvey Keitel': 'PJ Waters', 'Julie Hamilton': 'Mum', 'Sophie Lee': 'Yvonne', 'Dan Wyllie': 'Robbie', 'Paul Goddard': 'Tim', 'Tim Robertson': 'Dad', 'George Rafael': 'Yani       (as George Mangos)', 'Kerry Walker': 'Puss', 'Les Dayman': 'Bill-Bill       (as Leslie Dayman)', 'Samantha Murray': 'Prue', 'Sandy Gutman': 'Stan       (as Austen Tayshus)', 'Simon Anderson': 'Fabio', 'Pam Grier': 'Carol', 'Eva Martin': 'Devotee'}\"\r\ntt0377107,\"{'Gwyneth Paltrow': 'Catherine', 'Anthony Hopkins': 'Robert', 'Jake Gyllenhaal': 'Harold Dobbs - Hal', 'Danny McCarthy': 'Cop', 'Hope Davis': 'Claire', 'Tobiasz Daszkiewicz': 'Limo Driver       (as Tobiacz Daszkiewicz)', 'Gary Houston': 'Professor Barrow', 'Anne Wittman': 'Friend at Party', 'Leigh Zimmerman': 'Friend at Party', 'Colin Stinton': 'Theoretical Physicist', 'Leland Burnett': 'Band Vocalist', 'John Keefe': 'University Friend', 'Chipo Chung': 'University Friend', 'C. Gerod Harris': 'University Friend       (as C Gerod Harris)', 'Roshan Seth': 'Professor Bhandari'}\"\r\ntt0110588,\"{'Jennifer Jason Leigh': 'Dorothy Parker', 'Campbell Scott': 'Robert Benchley', 'Matthew Broderick': 'Charles MacArthur', 'Peter Gallagher': 'Alan Campbell', 'Jennifer Beals': 'Gertrude Benchley', 'Andrew McCarthy': 'Eddie Parker', 'Wallace Shawn': 'Horatio Byrd', 'Martha Plimpton': 'Jane Grant', 'Sam Robards': 'Harold Ross', 'Lili Taylor': 'Edna Ferber', 'James Le Gros': 'Deems Taylor       (as James LeGros)', 'Gwyneth Paltrow': 'Paula Hunt', 'Nick Cassavetes': 'Robert Sherwood', 'David Thornton': 'George S. Kaufman', 'Heather Graham': 'Mary Kennedy Taylor'}\"\r\ntt0119324,\"{'Parker Posey': 'Jackie-O', 'Josh Hamilton': 'Marty', 'Tori Spelling': 'Lesly', 'Freddie Prinze Jr.': 'Anthony', 'Geneviève Bujold': 'Mrs. Pascal       (as Genevieve Bujold)', 'Rachael Leigh Cook': 'Young Jackie-O', 'David Love': 'Young Marty       (voice)'}\"\r\ntt0186894,\"{'Ben Affleck': 'Buddy Amaral', 'Gwyneth Paltrow': 'Abby Janello', 'Natasha Henstridge': 'Mimi Prager', 'Edward Edwards': 'Ron Wachter', 'Jennifer Grey': 'Janice Guerrero', 'Tony Goldwyn': 'Greg Janello', 'Lisa Carpenter-Prewitt': 'Carol Wilson', 'Lisa Joyner': 'T.V. Announcer', 'Richard Saxton': 'CNN Reporter', 'Caroline Aaron': 'Donna', 'David Dorfman': 'Joey Janello', 'Alex D. Linz': 'Scott Janello', 'Juan Garcia': 'Kevin Walters       (as Juan García)', 'Mary Ellen Lyon': 'Ellen Seitz', 'Joe Morton': 'Jim Willer'}\"\r\ntt0110598,\"{'Sophie Lee': 'Tania Degano', 'Roz Hammond': 'Cheryl       (as Rosalind Hammond)', 'Toni Collette': 'Muriel Heslop', 'Belinda Jarrett': 'Janine', 'Pippa Grandison': 'Nicole', 'Bill Hunter': 'Bill Heslop', 'Jeanie Drynan': 'Betty Heslop', 'Dan Wyllie': 'Perry Heslop       (as Daniel Wyllie)', 'Gabby Millgate': 'Joanie Heslop', 'Gennie Nevinson': 'Deidre Chambers', 'Rachel Griffiths': 'Rhonda Epinstalk', 'Matt Day': 'Brice Nobes', 'Chris Haywood': 'Ken Blundell', 'Daniel Lapaine': 'David Van Arkle', 'Susan Prior': 'Girl at Wedding'}\"\r\ntt0097937,\"{'Daniel Day-Lewis': 'Christy Brown', 'Brenda Fricker': 'Mrs. Brown', 'Alison Whelan': 'Sheila', 'Kirsten Sheridan': 'Sharon', 'Declan Croghan': 'Tom', 'Eanna MacLiam': 'Benny', 'Marie Conmee': 'Sadie', 'Cyril Cusack': 'Lord Castlewelland', 'Phelim Drew': 'Brian', 'Ruth McCabe': 'Mary', 'Fiona Shaw': 'Dr. Eileen Cole', 'Ray McAnally': 'Mr. Brown', 'Pat Laffan': 'Barman       (as Patrick Laffan)', 'Derry Power': 'Customer in Bar', \"\"Hugh O'Conor\"\": 'Young Christy Brown'}\"\r\ntt0035423,\"{'Meg Ryan': 'Kate McKay', 'Hugh Jackman': 'Leopold', 'Liev Schreiber': 'Stuart Besser', 'Breckin Meyer': 'Charlie McKay', 'Natasha Lyonne': 'Darci', 'Bradley Whitford': 'J.J. Camden', 'Paxton Whitehead': 'Uncle Millard', 'Spalding Gray': 'Dr. Geisler', 'Josh Stamberg': 'Colleague Bob', 'Matthew Sussman': 'Ad Executive Phil', 'Charlotte Ayanna': 'Patrice', 'Philip Bosco': 'Otis', 'Andrew Jack': 'Roebling', 'Stan Tracy': 'Photographer', 'Kristen Schaal': 'Miss Tree'}\"\r\ntt0190590,\"{'George Clooney': 'Everett', 'John Turturro': 'Pete Hogwallop', 'Tim Blake Nelson': \"\"Delmar O'Donnell\"\", 'John Goodman': 'Big Dan Teague', 'Holly Hunter': 'Penny', 'Chris Thomas King': 'Tommy Johnson', 'Charles Durning': \"\"Pappy O'Daniel\"\", 'Del Pentecost': \"\"Junior O'Daniel\"\", 'Michael Badalucco': 'George Nelson', 'J.R. Horne': \"\"Pappy's Staff\"\", 'Brian Reddy': \"\"Pappy's Staff\"\", 'Wayne Duvall': 'Homer Stokes', 'Ed Gale': 'The Little Man', 'Ray McKinnon': 'Vernon T. Waldrip', 'Daniel von Bargen': 'Sheriff Cooley       (as Daniel Von Bargen)'}\"\r\ntt0162360,\"{'Jeremy Northam': 'Harry', 'Steve Zahn': 'Wayne', 'William H. Macy': 'Chappy', 'Ally Walker': 'Joe', 'Illeana Douglas': 'Ms. Schaefer', 'M.C. Gainey': 'Bob Maslow', 'Ron Perlman': 'Nalhober', 'Mo Gaffney': 'Mrs. Bromley', 'Paul Dooley': 'The Judge', 'Jillian Berard': 'Madison', 'Scarlett Pomers': 'Jency', 'Melissa Arnold': 'Other Happy Girl', 'Cassie Silva': 'Other Happy Girl', 'Tiffany Takara': 'Other Happy Girl', 'Tim Bagley': 'David'}\"\r\ntt0120148,\"{'Gwyneth Paltrow': 'Helen', 'John Hannah': 'James', 'John Lynch': 'Gerry', 'Jeanne Tripplehorn': 'Lydia', 'Zara Turner': 'Anna', 'Douglas McFerran': 'Russell', 'Paul Brightwell': 'Clive', 'Nina Young': 'Claudia', 'Virginia McKenna': \"\"James's Mother\"\", 'Kevin McNally': 'Paul', 'Terry English': 'Kind Cabbie', 'Paul Stacey': 'Man on Tube', 'Peter Howitt': 'Cheeky Bloke', 'Joanna Roth': 'Suspicious Girl', 'Neil Stuke': 'Defensive Bloke'}\"\r\ntt0117666,\"{'Billy Bob Thornton': 'Karl Childers', 'Dwight Yoakam': 'Doyle Hargraves', 'J.T. Walsh': 'Charles Bushman', 'John Ritter': 'Vaughan Cunningham', 'Lucas Black': 'Frank Wheatley', 'Natalie Canerday': 'Linda Wheatley', 'James Hampton': 'Jerry Woolridge', 'Robert Duvall': \"\"Karl's Father\"\", 'Rick Dial': 'Bill Cox', 'Brent Briscoe': 'Scooter Hodges', 'Christine Renee Ward': 'Melinda       (as Christy Ward)', 'Sarah Boss': 'Marsha Dwiggins', 'Kathy Sue Brown': 'Theresa Evans', 'Wendell Rafferty': 'Melvin', 'Bruce Hampton': 'Morris       (as Col. Bruce Hampton Ret.)'}\"\r\ntt0780511,\"{'Robert De Niro': 'Frank Goode', 'Drew Barrymore': 'Rosie', 'Kate Beckinsale': 'Amy', 'Sam Rockwell': 'Robert', 'Lucian Maisel': 'Jack', 'Damian Young': 'Jeff', 'James Frain': 'Tom', 'Melissa Leo': 'Colleen', 'Katherine Moennig': 'Jilly', 'Brendan Sexton III': 'Mugger', 'James Murtaugh': 'Dr. Ed', 'Austin Lysy': 'David', 'Chandler Frantz': 'Young David', 'Lily Mo Sheen': 'Young Amy       (as Lily Sheen)', 'Seamus Davey-Fitzpatrick': 'Young Robert'}\"\r\ntt0114478,\"{'Giancarlo Esposito': '1st OTB Man /              Tommy', 'José Zúñiga': '2nd OTB Man /              Jerry       (as Jose Zuniga)', 'Stephen Gevedon': 'OTB Man #3, Dennis       (as Steve Gevedon)', 'Harvey Keitel': 'Auggie Wren', 'Jared Harris': 'Jimmy Rose', 'William Hurt': 'Paul Benjamin', 'Daniel Auster': 'Book Thief', 'Harold Perrineau': 'Rashid Cole       (as Harold Perrineau Jr.)', \"\"Deirdre O'Connell\"\": 'Sue the Waitress', 'Victor Argo': 'Vinnie', 'Michelle Hurst': 'Aunt Em', 'Forest Whitaker': 'Cyrus Cole', 'Stockard Channing': 'Ruby McNutt', 'Vincenzo Amelia': 'Irate Customer', 'Erica Gimpel': 'Doreen Cole'}\"\r\ntt0115906,\"{'Laura Dern': 'Ruth Stoops', 'Swoosie Kurtz': 'Diane Siegler', 'Kurtwood Smith': 'Norm Stoney', 'Mary Kay Place': 'Gail Stoney', 'Kelly Preston': 'Rachel', 'M.C. Gainey': 'Harlan', 'Kenneth Mars': 'Dr. Charlie Rollins', 'David Graf': 'Judge Richter', 'Kathleen Noone': 'Nurse Pat', 'Tippi Hedren': 'Jessica Weiss', 'Burt Reynolds': 'Blaine Gibbons', 'Lance Rome': \"\"Ricky, Ruth's Lover\"\", 'Jim Kalal': 'Tony Stoops', 'Shea Degan': 'Arresting Officer', 'Vince Morelli': 'Dr. George'}\"\r\ntt0494222,\"{'Loren Taylor': 'Lily       (as Loren Horsley)', 'Jemaine Clement': 'Jarrod', 'Joel Tobeck': 'Damon', 'Brian Sergent': 'Jonah', 'Craig Hall': 'Doug', 'Rachel House': 'Nancy', 'Morag Hills': 'Vinny', 'Bernard Stewart': 'Zane', 'Taika Waititi': 'Gordon', 'David Fane': 'Eric Elisi', 'Cohen Holloway': 'Mason', 'Gentiane Lupi': 'Tracy', 'Chelsie Preston Crayford': 'Jenny', 'Adam Gardiner': 'Tony', 'Jackie van Beek': 'Burger Staff'}\"\r\ntt0258068,\"{'Michael Caine': 'Thomas Fowler', 'Brendan Fraser': 'Alden Pyle', 'Thi Hai Yen Do': 'Phuong', 'Rade Serbedzija': 'Inspector Vigot       (as Rade Sherbedgia)', 'Tzi Ma': 'Hinh', 'Robert Stanton': 'Joe Tunney', 'Holmes Osborne': 'Bill Granger', 'Quang Hai': 'General Thé', 'Ferdinand Hoang': 'Mr. Muoi', 'Pham Thi Mai Hoa': \"\"Phuong's Sister\"\", 'Mathias Mlekuz': 'French Captain', 'Kevin Tran': 'Watch Tower Soldier', 'Lap Phan': 'Watch Tower Soldier', 'Tim Bennett': 'American Photographer', 'Jeff Truman': 'Dancing American'}\"\r\ntt0238112,\"{'Penélope Cruz': 'Pelagia', 'John Hurt': 'Dr. Iannis', 'Christian Bale': 'Mandras', 'Irene Papas': 'Drosoula', 'Gerasimos Skiadaressis': 'Mr. Stamatis', 'Aspasia Kralli': 'Mrs. Stamatis', 'Mihalis Giannatos': 'Kokolios', 'Dimitris Kaberidis': 'Father Aresenios       (as Dimitris Kamperidis)', 'Pietro Sarubbi': 'Velisarios, The Strongman       (as Pedro Sarubbi)', 'Viki Maragaki': \"\"Eleni, Pelagia's Friend\"\", 'Joanna-Daria Adraktas': 'Young Lemoni', 'Ira Tavlaridis': 'Older Lemoni', 'Katerina Didaskalou': \"\"Lemoni's Mother\"\", 'Aimilios Heilakis': 'Dimitris', 'Nikos Karathanos': 'Spiros'}\"\r\ntt0278500,\"{'Rupert Everett': 'Algy', 'Colin Firth': 'Jack', \"\"Frances O'Connor\"\": 'Gwendolen', 'Reese Witherspoon': 'Cecily', 'Judi Dench': 'Lady Bracknell', 'Tom Wilkinson': 'Dr. Chasuble', 'Anna Massey': 'Miss Prism', 'Edward Fox': 'Lane', 'Patrick Godfrey': 'Merriman', 'Charles Kay': 'Gribsby', 'Cyril Shaps': 'Pew Opener', 'Marsha Fitzalan': 'Dowager', 'Finty Williams': 'Young Lady Bracknell', 'Guy Bensley': 'Young Lord Bracknell', 'Christina Robert': 'Duchess of Devonshire'}\"\r\ntt0134084,\"{'Liev Schreiber': 'Cotton Weary', 'Beth Toussaint': 'Female Caller       (voice)', 'Roger Jackson': 'The Voice       (voice) (as Roger L. Jackson)', 'Kelly Rutherford': 'Christine', 'Neve Campbell': 'Sidney Prescott', 'Courteney Cox': 'Gale Weathers       (as Courteney Cox Arquette)', 'Julie Janney': 'Moderator', 'Richmond Arquette': 'Student', 'Patrick Dempsey': 'Mark Kincaid', 'Lynn McRee': 'Maureen Prescott', \"\"Nancy O'Dell\"\": 'Female Reporter', 'Ken Taylor': 'Male Reporter', 'Scott Foley': 'Roman Bridger', 'Roger Corman': 'Studio Executive', 'Lance Henriksen': 'John Milton'}\"\r\ntt0116242,\"{'Edward Norton': 'Holden', 'Drew Barrymore': 'Skylar', 'Diva Gray': 'Nanny', 'Ami Almendral': 'Nanny', 'Madeline Balmaceda': 'Nanny', 'Vivian Cherry': 'Nurse', 'Tommie Baxter': 'Old Woman', 'Jeff DeRocker': 'Homeless Man       (as Jeff Derocker)', 'Cherylyn Jones': 'Mannequin', 'Tina Paul': 'Mannequin /              Harry Winston Dancer', 'Vikki Schnurr': 'Mannequin', 'Natasha Lyonne': 'DJ', 'Kevin Hagan': 'Doorman', 'Alan Alda': 'Bob', 'Gaby Hoffmann': 'Lane'}\"\r\ntt0427969,\"{'Adrien Brody': 'Louis Simo', 'Diane Lane': 'Toni Mannix', 'Ben Affleck': 'George Reeves', 'Bob Hoskins': 'Eddie Mannix', 'Robin Tunney': 'Leonore Lemmon', 'Kathleen Robertson': 'Carol Van Ronkel', 'Lois Smith': 'Helen Bessolo', 'Phillip MacKenzie': 'Bill Bliss', 'Larry Cedar': 'Chester Sinclair', 'Eric Kaldor': 'Barbell Man       (as Eric Kolder)', 'Caroline Dhavernas': 'Kit Holliday', 'Kevin Hare': 'Robert Condon', 'Molly Parker': 'Laurie Simo', 'Zach Mills': 'Evan Simo', 'Neil Crone': 'Chuck'}\"\r\ntt0350261,\"{'Robert Redford': 'Einar Gilkyson', 'Jennifer Lopez': 'Jean Gilkyson', 'Morgan Freeman': 'Mitch Bradley', 'Josh Lucas': 'Crane Curtis', 'Damian Lewis': 'Gary Winston', 'Camryn Manheim': 'Nina', 'Becca Gardner': 'Griff Gilkyson', 'Lynda Boyd': 'Kitty', 'Rob Hayter': 'Deputy', 'P. Lynn Johnson': 'Shelter Supervisor', 'Byron Lucas': 'Motorcycle Rider', 'Trevor Moss': 'Griffin Gilkyson', 'R. Nelson Brown': 'Kent       (as Rnelsonbrown)', 'Dillard Brinson': 'Gnome Owner', 'Jason Diablo': 'Customer #1'}\"\r\ntt0357470,\"{'Shia LaBeouf': 'Kelly Ernswiler       (as Shia La Beouf)', 'Elden Henson': 'Bart Bowland', 'Amy Smart': 'Tabby', 'Billy Kay': 'Lance', 'Kathleen Quinlan': 'Eve', 'Shiri Appleby': 'Sarah', 'William Sadler': 'Abe', 'Ray Wise': 'Harrison', 'Philipp Karner': 'Maurice /              German Soldier', 'Anson Mount': 'Miner Weber', 'Dale R. Simonton': 'Todd /              German Soldier       (as Dale Simonton)', 'Michael McShane': 'Mr. Norway', 'Hattie Winston': 'Principal Holmstead', 'Rick Cramer': 'German Officer /              Mr. Thomas', 'France Nuyen': 'Xiou-Xiou Ling'}\"\r\ntt0103994,\"{'Marco Leonardi': 'Pedro Muzquiz', 'Lumi Cavazos': 'Tita', 'Regina Torné': 'Mamá Elena', 'Mario Iván Martínez': 'Doctor John Brown', 'Ada Carrasco': 'Nacha', 'Yareli Arizmendi': 'Rosaura', 'Claudette Maillé': 'Gertrudis', 'Pilar Aranda': 'Chencha', 'Farnesio de Bernal': 'Cura', 'Joaquín Garrido': 'Sargento Treviño', 'Rodolfo Arias': 'Juan Alejándrez', 'Margarita Isabel': 'Paquita Lobo', 'Sandra Arau': 'Esperanza Muzquiz', 'Andrés García Jr.': 'Alex Brown', 'Regino Herrera': 'Nicolás'}\"\r\ntt0489327,\"{\"\"Peter O'Toole\"\": 'Maurice', 'Leslie Phillips': 'Ian', 'Beatrice Savoretti': 'Waitress', 'Philip Fox': 'Doctor', 'Lolita Chakrabarti': 'Health Centre Nurse', 'Carolina Giammetta': 'Health Centre Nurse', 'Jodie Whittaker': 'Jessie', 'Kellie Shirley': 'Royal Court Actress', 'Ashley Madekwe': 'Royal Court Actress', 'Ony Uhiara': 'Royal Court Actress', 'Cathryn Bradshaw': 'Jillian', 'Joanna Croll': 'Hospital Drama Family', 'Liam McKenna': 'Hospital Drama Family', 'Meg Wynn Owen': 'Hospital Drama Family       (as Meg Wynn-Owen)', 'Sam Spruell': 'Hospital Director'}\"\r\ntt0448075,\"{'Robin Williams': 'Gabriel Noone', 'Toni Collette': 'Donna D. Logand', 'Joe Morton': 'Ashe', 'Bobby Cannavale': 'Jess', 'Rory Culkin': 'Pete D. Logand', 'Sandra Oh': 'Anna', 'Rodrigo Lopresti': 'Young Man at Party', 'John Cullum': 'Pap Noone', 'Lisa Emery': 'Darlie Noone', 'Guenia Lemos': 'Female Neighbor', 'Marcia Haufrecht': 'Pant Suited Woman       (as Marcia Halfrecht)', 'Nick Gregory': 'Flight Attendant', 'Ed Jewett': 'Mail Clerk', 'Becky Ann Baker': 'Waitress', 'Billy Van': 'Taxi Driver'}\"\r\ntt0118949,\"{'Peter Horton': 'Scott Fischer', 'Nathaniel Parker': 'Rob Hall       (as Nat Parker)', 'Richard Jenkins': 'Beck Weathers', 'Christopher McDonald': 'Jon Krakauer', 'Tim Dutton': 'Andy Harris', 'Pamela Gien': 'Sandy Hill Pittman', 'Peter J. Lucas': 'Anatoli Boukreev', 'Long Nguyen': 'Ang Dorje', 'Jeff Perry': 'Doug Hansen', 'Ned Vaughn': 'Neal Beidelman', 'Akemi Otani': 'Yasuko Namba', 'Richard Rees': 'Lopsang Sherpa', 'Stuart Milligan': 'Dale Kruse', 'Nicholas Hewetson': 'Tim Madsen', 'Luke Garrett': 'Mike Groom'}\"\r\ntt0110877,\"{'Philippe Noiret': 'Pablo Neruda', 'Massimo Troisi': 'Mario Ruoppolo', 'Maria Grazia Cucinotta': 'Beatrice Russo', 'Renato Scarpa': 'Telegrapher', 'Linda Moretti': 'Donna Rosa', 'Mariano Rigillo': 'Di Cosimo', 'Anna Bonaiuto': 'Matilde'}\"\r\ntt0114805,\"{'Roseanne Barr': 'Herself       (uncredited)', 'Sandra Bernhard': 'Herself       (uncredited)', 'Robert Best': 'Himself       (uncredited)', 'Natane Boudreau': 'Herself       (uncredited)', 'Carla Bruni': 'Herself       (uncredited)', 'Naomi Campbell': 'Herself       (uncredited)', 'Helena Christensen': 'Herself       (uncredited)', 'Cindy Crawford': 'Herself       (uncredited)', 'Debbie Deitering': 'Herself       (uncredited)', 'Meghan Douglas': 'Herself       (uncredited)', 'Faye Dunaway': 'Herself       (uncredited)', 'Linda Evangelista': 'Herself       (uncredited)', 'John Galliano': 'Himself       (uncredited)', 'Richard Gere': 'Himself       (uncredited)', 'Yasmeen Ghauri': 'Herself       (uncredited)'}\"\r\ntt0242527,\"{'Thora Birch': 'Liz', 'Desmond Harrington': 'Mike', 'Daniel Brocklebank': 'Martin', 'Laurence Fox': 'Geoff', 'Keira Knightley': 'Frankie', 'Embeth Davidtz': 'Dr. Philippa Horwood', 'Steven Waddington': 'DCS Tom Howard', 'Emma Griffiths Malin': 'Daisy', 'Jemma Powell': 'Minnie       (as Gemma Powell)', 'Gemma Craven': 'Mrs. Dunn', 'Anastasia Hille': 'Gillian', 'Kelly Hunter': 'DI Chapman', 'Maria Pastel': 'Policewoman', 'Celia Montague': 'Solicitor', 'Kevin Trainor': 'Boy in School'}\"\r\ntt0190138,\"{'Bruce Willis': 'Jimmy Tudeski', 'Matthew Perry': 'Oz Oseransky', 'Rosanna Arquette': 'Sophie', 'Michael Clarke Duncan': 'Frankie Figs', 'Natasha Henstridge': 'Cynthia', 'Amanda Peet': 'Jill', 'Kevin Pollak': 'Janni Gogolak', 'Harland Williams': 'Agent Hanson', 'Carmen Ferland': \"\"Sophie's Mom       (as Carmen Ferlan)\"\", 'Serge Christiaenssens': 'Mr. Boulez       (as Serge Christianssens)', 'Renee Madeline Le Guerrier': 'Waitress       (as Renée Madelaine Le Guerrier)', 'Jean-Guy Bouchard': 'Mover', 'Howard Bilerman': 'Dave Martin', 'Johnny Goar': 'Hungarian Hood', 'Deano Clavet': 'Polish Pug'}\"\r\ntt0147004,\"{'Brenda Blethyn': 'Mari Hoff', 'Jane Horrocks': 'LV', 'Ewan McGregor': 'Billy', 'Philip Jackson': 'George', 'Annette Badland': 'Sadie', 'Michael Caine': 'Ray Say', 'Jim Broadbent': 'Mr. Boo', 'Adam Fogerty': 'Bouncer', 'James Welsh': 'Bouncer', 'Karen Gregory': 'Stripper', 'Fred Feast': 'Arthur', 'Graham Turner': \"\"LV's Dad\"\", 'George Oliver': 'Pawnbroker', 'Virgil Tracy': 'Loan Advisor', 'Dick Van Winkle': 'Money Lender'}\"\r\ntt0240510,\"{'Wes Bentley': 'Jack Durrance', 'Mohamed Bouich': 'Sudanese Storyteller', 'Campbell Brown': 'Dervish Ansar', 'Daniel Caltagirone': 'Gustave', 'James Cosmo': 'Col. Sutch', 'Andy Coumbe': 'Colonel Other Regiment', 'Angela Douglas': 'Aunt Mary', 'Karim Doukkali': 'Egyptian Orderly', 'Lucy Gordon': 'Isabelle', 'Megan Hall': 'Millie', 'James Hillier': 'Drunken Corporal', 'Nick Holder': 'British Lion', 'Djimon Hounsou': 'Abou Fatma', 'Kate Hudson': 'Ethne Eustace', 'Alex Jennings': 'Colonel Hamilton'}\"\r\ntt0120820,\"{'Marlon Wayans': 'Darryl Witherspoon', 'Brad Dourif': 'Dr. Wheedon', 'Esther Scott': 'Denise Witherspoon', 'Debra Jo Rupp': 'Fertility Clinic Attendant', 'Mark Christopher Lawrence': 'Wig Shop Owner', 'Matthew Lillard': 'Tim LaFlour', 'David Spade': 'Scott Thorpe', 'Tamara Taylor': 'Janice', 'John Ingle': 'Economics Professor', 'Rip Torn': 'Randall Tyson', 'Ernie Lively': 'Coach Brandau', 'Jenette Goldstein': 'Nurse Alvarez', 'Kenya Moore': 'Lorraine', 'Constance Zimmer': 'Zestfully Clean Woman', 'Ken Lerner': 'Dean Barlow'}\"\r\ntt0102749,\"{'Forest Whitaker': 'Jackson', 'Gregory Hines': 'Goldy', 'Robin Givens': 'Imabelle', 'Zakes Mokae': 'Big Kathy', 'Danny Glover': 'Easy Money', 'Badja Djola': 'Slim', 'John Toles-Bey': 'Jodie', 'Tyler Collins': 'Teena', 'Ron Taylor': 'Hank', 'Samm-Art Williams': 'Gus Parsons', 'Stack Pierce': 'Coffin Ed', 'Willard E. Pugh': 'Claude X', 'Helen Martin': 'Mrs. Canfield', 'Wendell Pierce': 'Louis', 'T.K. Carter': 'Smitty'}\"\r\ntt0107426,\"{'Keanu Reeves': 'Siddhartha', 'Ruocheng Ying': 'Lama Norbu       (as Ying Ruocheng)', 'Chris Isaak': 'Dean Conrad', 'Alex Wiesendanger': 'Jesse Conrad', 'Raju Lal': 'Raju', 'Greishma Makar Singh': 'Gita', 'Sogyal Rinpoche': 'Kenpo Tenzin', 'Ven. Khyongla Rato Rinpoche': 'Abbot', 'Bridget Fonda': 'Lisa Conrad', 'Ven. Geshe Tsultim Gyelsen': 'Lama Dorje', 'Jo Champa': 'Maria', 'Jigme Kunsang': 'Champa', 'Thubtem Jampa': 'Punzo', 'Surekha Sikri': 'Sonali       (as Surehka Sikri)', 'T.K. Lama': 'Sangay'}\"\r\ntt0186975,\"{'Freddie Prinze Jr.': 'Al Connelly', 'Julia Stiles': 'Imogen', 'Selma Blair': 'Cyrus', 'Shawn Hatosy': 'Eddie Hicks', 'Zak Orth': 'Monk Jablonski', 'Ashton Kutcher': 'Jim Morrison', 'Rosario Dawson': 'Lana', 'Henry Winkler': 'Chef Ray', 'Lucie Arnaz': 'Judy Connelly', 'Lauren German': 'Lovestruck Woman', 'Zay Harding': 'Lovestruck Man', 'Amanda Barfield': 'Faith Keenan', 'Chloe Hunter': 'Megan Brodski', 'Granger Green': 'Haley Heller', 'Jed Rhein': 'Gabe Stiano'}\"\r\ntt0338135,\"{'Rémy Girard': 'Rémy', 'Stéphane Rousseau': 'Sébastien', 'Marie-Josée Croze': 'Nathalie', 'Marina Hands': 'Gaëlle', 'Dorothée Berryman': 'Louise', 'Johanne-Marie Tremblay': 'Sister Constance Lazure       (as Johanne Marie Tremblay)', 'Pierre Curzi': 'Pierre Citrouillard', 'Yves Jacques': 'Claude', 'Louise Portal': 'Diane Leonard', 'Dominique Michel': 'Dominique St. Arnaud', 'Isabelle Blais': 'Sylvaine', 'Toni Cecchinato': 'Alessandro', 'Sophie Lorain': 'First Lover', 'Mitsou': 'Ghislaine       (as Mitsou Gélinas)', 'Markita Boies': 'Nurse Suzanne'}\"\r\ntt0434124,\"{'Joel Edgerton': 'Charlie', 'Chiwetel Ejiofor': 'Lola', 'Sarah-Jane Potts': 'Lauren', 'Jemima Rooper': 'Nicola', 'Nick Frost': 'Don', 'Linda Bassett': 'Melanie', 'Robert Pugh': 'Harold Price', 'Ewan Hooper': 'George', 'Stephen Marcus': 'Big Mike', 'Mona Hammond': 'Pat', 'Kellie Bright': 'Jeannie', 'Joanna Scanlan': 'Trish', 'Geoffrey Streatfeild': 'Richard Bailey', 'Leo Bill': 'Harry Sampson', 'Gwenllian Davies': 'Mrs. Cobb'}\"\r\ntt0372824,\"{'Gérard Jugnot': 'Clément Mathieu', 'François Berléand': 'Headmaster Rachin', 'Kad Merad': 'Chabert', 'Jean-Paul Bonnaire': 'La Père Maxence', 'Marie Bunel': 'Violette Morhange', 'Jean-Baptiste Maunier': 'Pierre Morhange', 'Maxence Perrin': 'Pépinot', 'Grégory Gatignol': 'Mondain', 'Thomas Blumenthal': 'Corbin', 'Cyril Bernicot': 'Le Querrec', 'Simon Fargeot': 'Boniface', 'Théodule Carré-Cassaigne': 'Leclerc', 'Philippe du Janerand': 'Monsieur Langlois', 'Carole Weiss': 'La Comtesse', 'Erick Desmarestz': 'Le Docteur Dervaux'}\"\r\ntt0287717,\"{'Antonio Banderas': 'Gregorio Cortez', 'Carla Gugino': 'Ingrid Cortez', 'Alexa PenaVega': 'Carmen Cortez       (as Alexa Vega)', 'Daryl Sabara': 'Juni Cortez', 'Steve Buscemi': 'Romero', 'Mike Judge': 'Donnagon', 'Danny Trejo': 'Machete', 'Cheech Marin': 'Felix Gumm', \"\"Matt O'Leary\"\": 'Gary Giggles', 'Emily Osment': 'Gerti Giggles', 'Ricardo Montalban': 'Grandfather', 'Holland Taylor': 'Grandmother', 'Alan Cumming': 'Fegan Floop', 'Taylor Momsen': \"\"President's Daughter\"\", 'Christopher McDonald': 'President of the USA'}\"\r\ntt0117951,\"{'Ewan McGregor': 'Renton', 'Ewen Bremner': 'Spud', 'Jonny Lee Miller': 'Sick Boy', 'Kevin McKidd': 'Tommy', 'Robert Carlyle': 'Begbie', 'Kelly Macdonald': 'Diane', 'Peter Mullan': 'Swanney', 'James Cosmo': 'Mr. Renton', 'Eileen Nicholas': 'Mrs. Renton', 'Susan Vidler': 'Allison', 'Pauline Lynch': 'Lizzy', 'Shirley Henderson': 'Gail', 'Stuart McQuarrie': 'Gavin /              US Tourist', 'Irvine Welsh': 'Mikey Forrester', 'Dale Winton': 'Game Show Host'}\"\r\ntt0217505,\"{'Leonardo DiCaprio': 'Amsterdam Vallon', 'Daniel Day-Lewis': \"\"Bill 'The Butcher' Cutting\"\", 'Cameron Diaz': 'Jenny Everdeane', 'Jim Broadbent': 'Boss Tweed', 'John C. Reilly': 'Happy Jack', 'Henry Thomas': 'Johnny Sirocco', 'Liam Neeson': \"\"'Priest' Vallon\"\", 'Brendan Gleeson': \"\"Walter 'Monk' McGinn\"\", 'Gary Lewis': 'McGloin', 'Stephen Graham': 'Shang', 'Eddie Marsan': 'Killoran', 'Alec McCowen': 'Reverend Raleigh       (as Alec Mccowen)', 'David Hemmings': 'Mr. Schermerhorn', 'Lawrence Gilliard Jr.': 'Jimmy Spoils       (as Larry Gilliard Jr.)', 'Cara Seymour': 'Hell-Cat Maggie'}\"\r\ntt1225822,\"{'Jason Bateman': 'Joel', 'Mila Kunis': 'Cindy', 'Kristen Wiig': 'Suzie', 'Ben Affleck': 'Dean', 'J.K. Simmons': 'Brian', 'Clifton Collins Jr.': 'Step', 'Dustin Milligan': 'Brad', 'David Koechner': 'Nathan', 'Beth Grant': 'Mary', 'T.J. Miller': 'Rory', 'Javier Gutierrez': 'Hector', 'Lidia Porto': 'Gabriella', 'Gene Simmons': 'Joe Adler', 'Matt Schulze': 'Willie', 'Lamberto Gutierrez': 'Victor'}\"\r\ntt0889573,\"{'Jason Bateman': 'Wally Mars', 'Victor Pagan': 'Knit Hat Guy', 'Jennifer Aniston': 'Kassie Larson', 'Jeff Goldblum': 'Leonard', 'Juliette Lewis': 'Debbie', 'Todd Louiso': 'Artie', 'Scott Elrod': 'Declan', 'Patrick Wilson': 'Roland', 'Rebecca Naomi Jones': 'Party Guest', 'Kelli Barrett': \"\"Roland's Wife Jessica\"\", 'Jeremy Mohler': 'Party Guest 2       (as Jeremy J. Mohler)', 'Will Swenson': 'Actor on Stage', 'Edward James Hyland': 'Man in Theater', 'Caroline Dhavernas': 'Pauline', 'Brian Podnos': 'Waiter'}\"\r\ntt0159365,\"{'Jude Law': 'Inman', 'Nicole Kidman': 'Ada Monroe', 'Renée Zellweger': 'Ruby Thewes', 'Eileen Atkins': 'Maddy', 'Brendan Gleeson': 'Stobrod Thewes', 'Philip Seymour Hoffman': 'Reverend Veasey', 'Natalie Portman': 'Sara', 'Giovanni Ribisi': 'Junior', 'Donald Sutherland': 'Reverend Monroe', 'Ray Winstone': 'Teague', 'Kathy Baker': 'Sally Swanger', 'James Gammon': 'Esco Swanger', 'Charlie Hunnam': 'Bosie', 'Jack White': 'Georgia', 'Ethan Suplee': 'Pangle'}\"\r\ntt0227538,\"{'Antonio Banderas': 'Gregorio Cortez', 'Carla Gugino': 'Ingrid Cortez', 'Alexa PenaVega': 'Carmen Cortez       (as Alexa Vega)', 'Daryl Sabara': 'Juni Cortez', 'Alan Cumming': 'Fegan Floop', 'Tony Shalhoub': 'Alexander Minion', 'Teri Hatcher': 'Ms. Gradenko', 'Cheech Marin': 'Felix Gumm', 'Robert Patrick': 'Mr. Lisp', 'Danny Trejo': 'Machete', 'Mike Judge': 'Donnagon /              Donnamight', 'Richard Linklater': 'Cool Spy', 'Guillermo Navarro': 'Pastor', 'Johnny Reno': 'Agent Johnny', 'Shannon Shea': 'FoOglie #1 /              Flower'}\"\r\ntt0299658,\"{'Taye Diggs': 'Bandleader', 'Cliff Saunders': 'Stage Manager', 'Catherine Zeta-Jones': 'Velma Kelly', 'Renée Zellweger': 'Roxie Hart', 'Dominic West': 'Fred Casely', 'Jayne Eastwood': 'Mrs. Borusewicz', 'Bruce Beaton': 'Police Photographer', 'Roman Podhora': 'Sergeant Fogarty', 'John C. Reilly': 'Amos Hart', 'Colm Feore': 'Harrison', 'Rob Smith': 'Newspaper Photographer', 'Sean Wayne Doyle': 'Reporter', 'Steve Behal': 'Prison Clerk', 'Robbie Rox': 'Prison Guard', 'Chita Rivera': 'Nickie'}\"\r\ntt0117802,\"{'Jon Favreau': 'Mike', 'Vince Vaughn': 'Trent', 'Ron Livingston': 'Rob', 'Patrick Van Horn': 'Sue', 'Alex Désert': 'Charles       (as Alex Desert)', 'Heather Graham': 'Lorraine', 'Deena Martin': 'Christy', 'Katherine Kendall': 'Lisa', 'Brooke Langton': 'Nikki', 'Blake Lindsley': 'Girl with Cigar', 'Kevin James Kelly': 'Vegas Dealer', 'Stephanie Ittleson': 'Vegas Waitress', 'Vernon Vaughn': '$100 Gambler', 'Joan Favreau': '$5 Winner', 'Rio Hackford': 'Skully'}\"\r\ntt0119217,\"{'Matt Damon': 'Will', 'Ben Affleck': 'Chuckie', 'Stellan Skarsgård': 'Lambeau', 'John Mighton': 'Tom', 'Rachel Majorowski': 'Krystyn', 'Colleen McCauley': 'Cathy', 'Casey Affleck': 'Morgan', 'Cole Hauser': 'Billy', 'Matt Mercier': 'Barbershop Quartet #1', 'Ralph St. George': 'Barbershop Quartet #2', 'Rob Lynds': 'Barbershop Quartet #3', 'Dan Washington': 'Barbershop Quartet #4', 'Alison Folland': 'M.I.T. Student', 'Derrick Bridgeman': 'M.I.T. Student', 'Vik Sahay': 'M.I.T. Student       (as Vic Sahay)'}\"\r\ntt0358135,\"{'Richard Gere': 'John Clark', 'Jennifer Lopez': 'Paulina', 'Susan Sarandon': 'Beverly Clark', 'Lisa Ann Walter': 'Bobbie', 'Stanley Tucci': 'Link', 'Anita Gillette': 'Miss Mitzi', 'Bobby Cannavale': 'Chic', 'Omar Benson Miller': 'Vern       (as Omar Miller)', 'Tamara Hope': 'Jenna Clark', 'Stark Sands': 'Evan Clark', 'Richard Jenkins': 'Devine', 'Nick Cannon': 'Scott', 'Sarah Lafleur': 'Carolyn', 'Onalee Ames': 'Diane', 'Diana Salvatore': 'Tina'}\"\r\ntt0110912,\"{'Tim Roth': 'Pumpkin', 'Amanda Plummer': 'Honey Bunny', 'Laura Lovelace': 'Waitress', 'John Travolta': 'Vincent Vega', 'Samuel L. Jackson': 'Jules Winnfield', 'Phil LaMarr': 'Marvin', 'Frank Whaley': 'Brett', 'Burr Steers': 'Roger', 'Bruce Willis': 'Butch Coolidge', 'Ving Rhames': 'Marsellus Wallace', 'Paul Calderon': 'Paul', 'Bronagh Gallagher': 'Trudi', 'Rosanna Arquette': 'Jody', 'Eric Stoltz': 'Lance', 'Uma Thurman': 'Mia Wallace'}\"\r\ntt0401792,\"{'Jessica Alba': 'Nancy', 'Devon Aoki': 'Miho', 'Alexis Bledel': 'Becky', 'Powers Boothe': 'Senator Roark', 'Cara D. Briggs': 'Hearing Panel Person       (as Cara Briggs)', 'Jude Ciccolella': 'Liebowitz', 'Jeffrey J. Dashnaw': 'Motorcycle Cop       (as Jeff Dashnaw)', 'Rosario Dawson': 'Gail', 'Jesse De Luna': 'Corporal Rivera', 'Benicio Del Toro': 'Jackie Boy', 'Jason Douglas': 'Hitman', 'Michael Clarke Duncan': 'Manute', 'Tommy Flanagan': 'Brian', 'Christina Frankenfield': 'Judge', 'Rick Gomez': 'Klump'}\"\r\ntt0378194,\"{'Vivica A. Fox': 'Vernita Green', 'Ambrosia Kelley': 'Nikki       (as Ambrosia Kelly)', 'Michael Parks': 'Earl McGraw /              Esteban Vihaio', 'James Parks': 'Edgar McGraw', 'Jonathan Loughran': 'Trucker', 'Michael Bowen': 'Buck', 'Kenji Ohba': 'Bald Guy       (as Kenji Oba)', 'Yoshiyuki Morishita': 'Tokyo Businessman       (as Yoshijuki Morishita)', 'Jun Kunimura': 'Boss Tanaka', 'Goro Daimon': 'Boss Honda', 'Kazuki Kitamura': 'Boss Koji /              Crazy 88', 'Akaji Maro': 'Boss Ozawah', 'Shun Sugata': 'Boss Benta', 'Sachiko Fujii': \"\"The 5, 6, 7, 8's       (as The 5 6 7 8's)\"\", 'Ronnie Yoshiko Fujiyama': \"\"The 5, 6, 7, 8's       (as The 5 6 7 8's)\"\"}\"\r\ntt0266697,\"{'Uma Thurman': 'The Bride', 'Lucy Liu': 'O-Ren Ishii', 'Vivica A. Fox': 'Vernita Green', 'Daryl Hannah': 'Elle Driver', 'David Carradine': 'Bill', 'Michael Madsen': 'Budd', 'Julie Dreyfus': 'Sofie Fatale', 'Chiaki Kuriyama': 'Gogo Yubari', \"\"Shin'ichi Chiba\"\": 'Hattori Hanzo       (as Sonny Chiba)', 'Chia-Hui Liu': 'Johnny Mo       (as Gordon Liu)', 'Michael Parks': 'Earl McGraw', 'Michael Bowen': 'Buck', 'Jun Kunimura': 'Boss Tanaka', 'Kenji Ohba': 'Bald Guy (Sushi Shop)       (as Kenji Oba)', 'Yuki Kazamatsuri': 'Proprietor'}\"\r\ntt1091722,\"{'Jesse Eisenberg': 'James Brennan', 'Kelsey Ledgin': 'Arlene       (as Kelsey Ford)', 'Michael Zegen': 'Eric', 'Ryan McFarland': 'Brad', 'Jack Gilpin': 'Mr. Brennan', 'Wendie Malick': 'Mrs. Brennan', 'Matt Bush': 'Tommy Frigo', 'Todd Cioppa': 'Velvet Touch Manager', 'Stephen Mast': 'Rich', 'Kristen Wiig': 'Paulette', 'Bill Hader': 'Bobby', 'Martin Starr': 'Joel', 'Adam Kroloff': 'Adult Contestant', 'Kristen Stewart': 'Em Lewin', 'Kevin Breznahan': 'Molly Hatchet T-Shirt Guy'}\"\r\ntt0452623,\"{'Casey Affleck': 'Patrick Kenzie', 'Michelle Monaghan': 'Angie Gennaro', 'Morgan Freeman': 'Jack Doyle', 'Ed Harris': 'Remy Bressant', 'John Ashton': 'Nick Poole', 'Amy Ryan': 'Helene McCready', 'Amy Madigan': 'Bea McCready', 'Titus Welliver': 'Lionel McCready', 'Michael Kenneth Williams': 'Devin', 'Edi Gathegi': 'Cheese', 'Mark Margolis': 'Leon Trett', \"\"Madeline O'Brien\"\": 'Amanda McCready', 'Slaine': 'Bubba', 'Trudi Goodman': 'Roberta Trett', 'Matthew Maher': 'Corwin Earle'}\"\r\ntt0477348,\"{'Tommy Lee Jones': 'Ed Tom Bell', 'Javier Bardem': 'Anton Chigurh', 'Josh Brolin': 'Llewelyn Moss', 'Woody Harrelson': 'Carson Wells', 'Kelly Macdonald': 'Carla Jean Moss', 'Garret Dillahunt': 'Wendell', 'Tess Harper': 'Loretta Bell', 'Barry Corbin': 'Ellis', 'Stephen Root': 'Man who hires Wells', 'Rodger Boyce': 'El Paso Sheriff', 'Beth Grant': \"\"Carla Jean's Mother\"\", 'Ana Reeder': 'Poolside Woman', 'Kit Gwin': \"\"Sheriff Bell's Secretary\"\", 'Zach Hopkins': 'Strangled Deputy', 'Chip Love': 'Man in Ford'}\"\r\ntt0119396,\"{'Pam Grier': 'Jackie Brown', 'Samuel L. Jackson': 'Ordell Robbie', 'Robert Forster': 'Max Cherry', 'Bridget Fonda': 'Melanie Ralston', 'Michael Keaton': 'Ray Nicolette', 'Robert De Niro': 'Louis Gara', 'Michael Bowen': 'Mark Dargus', 'Chris Tucker': 'Beaumont Livingston', 'LisaGay Hamilton': 'Sheronda', \"\"Tommy 'Tiny' Lister\"\": \"\"Winston       (as Tommy 'Tiny' Lister Jr.)\"\", 'Hattie Winston': 'Simone', 'Sid Haig': 'Judge', 'Aimee Graham': 'Amy - Billingsley Sales Girl', 'Ellis Williams': 'Cockatoo Bartender       (as Ellis E. Williams)', 'Tangie Ambrose': 'Billingsley Sales Girl #2'}\"\r\ntt0203536,\"{'Michael Rapaport': 'August', 'Gary Stretch': 'Ronnie', 'Seymour Cassel': 'Guy', 'Robin Givens': 'Dana', 'Debbie Harry': 'Madison       (as Deborah Harry)', 'Lainie Kazan': 'Diane', 'Ralph Macchio': 'Donnie', 'James Russo': 'Roy', 'Ally Sheedy': 'Marie', 'Frank Whaley': 'Chad', 'Reg E. Cathey': 'Avi', 'Penelope Fortier': 'Paige', 'Joey Dedio': 'Petey', 'Steve Bilich': 'Leo', 'Henry Caplan': \"\"Maitre' D\"\"}\"\r\ntt1334536,\"{'Charisma Carpenter': 'Heather Burton', 'Marcus Lyle Brown': 'Greg Fisher       (as Marcus L. Brown)', 'Ricky Wayne': 'Tom Rule', 'Collin Galyean': 'Simon', 'Kyle Clements': 'Bub', 'Corin Nemec': 'Quentin French', 'Stephanie Honoré': 'Sara Minor       (as Stephanie Honore)', 'Gregory Campo': 'Kip', 'Jake Austin Walker': 'J.J.', 'William Adam Scott': 'Ronny       (as Adam Scott)', 'Joe Chrest': 'Benjamin', 'Antonino Paone': 'Taxi Driver       (as Tony Paone)', \"\"John 'Jo' Mosley\"\": 'Mr. Holden', 'Hillary Holland': \"\"Quentin's Assistant\"\", 'Edrick Browne': 'Meat Hook'}\"\r\ntt1570728,\"{'Steve Carell': 'Cal', 'Ryan Gosling': 'Jacob', 'Julianne Moore': 'Emily', 'Emma Stone': 'Hannah', 'Analeigh Tipton': 'Jessica', 'Jonah Bobo': 'Robbie', 'Joey King': 'Molly', 'Marisa Tomei': 'Kate', 'Beth Littleford': 'Claire', 'John Carroll Lynch': 'Bernie', 'Kevin Bacon': 'David Lindhagen', 'Liza Lapira': 'Liz', 'Josh Groban': 'Richard', 'Mekia Cox': 'Hip Hairdresser aka Tiffany', 'Julianna Guill': 'Madison'}\"\r\ntt1226753,\"{'Helen Mirren': 'Rachel Singer', 'Tom Wilkinson': 'Stephan Gold', 'Ciarán Hinds': 'David Peretz', 'Romi Aboulafia': 'Sarah Gold', 'Tomer Ben David': \"\"Sarah's Husband\"\", 'Ohev Ben David': \"\"Sarah's Son\"\", 'Jonathan Uziel': 'Mossad Agent', 'Elana Kivity Davenport': 'Publisher', 'Eli Zohar': \"\"Stephan's Driver\"\", 'Irén Bordán': 'Seminar Moderator (Tel Aviv 1997)', 'Jessica Chastain': 'Young Rachel', 'Marton Csokas': 'Young Stephan', 'Sam Worthington': 'Young David', 'Jesper Christensen': 'Doktor Bernhardt /              Dieter Vogel', 'Brigitte Kren': 'Frau Bernhardt /              Nurse'}\"\r\ntt0286947,\"{'Alicia Silverstone': 'Sheila Rilo', 'Rachael Leigh Cook': 'Shmally', 'Woody Harrelson': \"\"Jason 'Woods' Valley\"\", 'John Cleese': 'Charles Merchant', 'Paulo Costanzo': \"\"Stuart 'Stu' Stein\"\", 'David Krumholtz': 'Max', 'Joshua Leonard': 'Rick', 'Ivan Sergei': 'Mark', 'Marcus Thomas': 'Carter Doleman', 'Jeffrey Tambor': 'Bank Employer', 'Max Wein': 'Loomis', 'Gavin Grazer': 'Cleatis', 'Steven Shenbaum': 'Winston', 'Wayne Morse': 'Gavin', 'Renee Olstead': 'Girl Scout'}\"\r\ntt1557769,\"{'Anslem Richardson': 'Mike', 'Ana Reeder': 'Margo', 'Stephen Rannazzisi': 'Charles', 'Cesar De León': 'Jimmy', 'Mary Beth Peil': 'Celine', 'Michelle Krusiec': 'Monique', 'Julian Aponte': 'Inmate', 'Stratton Bailey': 'Locked Out Guy', 'Patricia Barnes': 'Bridge Player', 'Shea Berry': 'Bartender', 'Benjamin Brant Bickham': 'Guard', 'Max Brand': 'Waiter', 'Jackie Capobianco': 'Bridge Player', 'Annalisa Chamberlin': 'Locked Out Girl       (as Annalisa Chamberlain)', 'David Delgado': 'Inmate'}\"\r\ntt1265621,\"{'Rhett Giles': 'Terry', 'Stephany Jacobsen': 'Lynne       (as Stephanie Jacobsen)', 'Stuart Lafferty': 'Leo', 'Gigi Edgley': 'Trish', 'Randy Mulkey': 'Ben', 'Kristen Quintrall': 'Lindsey', 'Jerry Leggio': 'Dr. Zulkowski', 'Jenna Craig': 'Samantha', 'Collin Galyean': 'Tom', 'Amol Shah': 'Dr. Sadoughian', 'Dean N. Arevalo': 'Dr. Rhodes       (as Dean Arevalo)', 'Shirly Brener': 'Ms. Taylor', 'Marel Medina': 'Frank Herbert', 'Ron Flagge': 'General Rodgers', 'Kyle Clements': 'Sean'}\"\r\ntt0377808,\"{'Maxwell Caulfield': 'Silas', 'Angel Boris Reed': 'Medina       (as Angel Boris)', 'Woon Young Park': 'Ling', 'Richard Wharton': 'Remmegar', 'Tony Amendola': 'Theldag', 'Iskra Angelova': 'Nessa', 'John Rhys-Davies': 'King Fastrad', 'John Hansson': 'King Wednesbury', 'Ivaylo Geraskov': 'Gelmaro', 'Tyrone Pinkham': 'Ulfius', 'Jeff Rank': 'Royal Guard', 'Maxim Genchev': \"\"Fastrad's Guard       (as Maxim Gentchev)\"\", 'Vlado Nikolov': 'Messanger', 'Peter Verlinden': 'Boy #1', 'Alex Nesterov': 'Boy #2'}\"\r\ntt1133995,\"{'Cuba Gooding Jr.': 'David Wolf', 'Clarence Williams III': 'Mac', 'John Terry': 'Secretary of Defence', 'Jaclyn DeSantis': 'Sophia', 'Lance Reddick': 'The Black Man', 'Bill \"\"Howl-N-Madd\"\" Perry': 'Bluesman', 'Jayson Warner Smith': 'Seven', 'Sarah Ann Schultz': 'Eleven', 'J.K. Simmons': 'Sergeant Mitchell', 'J. Omar Castro': 'Sanchez', 'Vernel Bagneris': 'Samir /              Ace of Spades', 'Edrick Browne': 'Snow', 'Nick Lopez': 'Lollipop', 'Rob Bartenstein': 'Man on the left', 'Brad C. Carter': 'Man on the right'}\"\r\ntt0815230,\"{'Kenny Young': 'Brian', 'Jill Marie Jones': 'Tonya', 'Reginald Ballard': 'Butch Bailey', 'Jaqueline Fleming': 'Carmen', 'Ruben Garfias': 'Detective', 'Sharyn Grose': 'Woman #1', 'Napiera Groves': 'Michele', 'Michael Hagiwara': 'Salesman', 'Hadrian Hooks': 'Security Guard', 'Reggie James': 'Thug #2', 'Zo Johnson': 'Thug       (as Alphonso Johnson)', 'Bishop Don Magic Juan': 'Devil', 'Lance W. Lanfear': 'Truck Driver       (as Lance Lanfear)', 'Jenifer Lewis': 'Therapist', 'June Green Matute': 'Woman #2'}\"\r\ntt1406157,\"{'Rina Takeda': 'Kei Tsuchiya', 'Tatsuya Naka': 'Yoshiaki Matsumura', 'Ryûki Takahashi': 'Ryôsuke Nakama', 'Kyôji Amano': 'Kenga', 'Masahiro Sudô': 'Ryûsoku', 'Akihito Yagi': 'Kûken', 'Kazuma Yamane': 'Tentô', 'Shinji Suzuki': 'Tenha', 'Mayu Gamou': 'Hien       (as Mayu Gamô)', 'Kazutoshi Yokoyama': 'Kototsu', 'Ichirô Sugisawa': 'Tenshô', 'Hisae Watanabe': 'Shûrei', 'Misako Nagashima': 'Hishô', 'Fuyuhiko Nishi': 'Akagi-ken', 'Aya Sugiyama': 'Chôka'}\"\r\ntt0118652,\"{'Andras Jones': 'Trevor Blackburn', 'Seth Green': 'Douglas', 'Jeffrey Combs': 'Dr. Ek', 'Wendy Robie': 'Dr. Thalama', 'Ted Raimi': 'Dr. Coffee', 'Beth Bates': 'Faith', 'Eddy Kariti': 'Dr. Anderson', 'Shannon Hart Cleary': 'Amy', 'Alice Cooper': 'Samuel Leventhal', 'Jerry Hauck': 'Ronald', 'Brenda James': 'Nurse', 'Nancy Wolfe': 'Liz', 'Stephen Donovan': 'Doctor 1', 'Andrew Ggem': 'Doctor 2', 'Cutter Cutshaw': 'Orderly'}\"\r\ntt1499658,\"{'Jason Bateman': 'Nick Hendricks', 'Steve Wiebe': 'Thomas, Head of Security', 'Kevin Spacey': 'Dave Harken', 'Charlie Day': 'Dale Arbus', 'Lindsay Sloane': 'Stacy', 'Michael Albala': 'Mr. Anderton', 'Jennifer Aniston': 'Dr. Julia Harris, D.D.S.', 'Jason Sudeikis': 'Kurt Buckman', 'Jennifer Hasty': \"\"Kurt's Co-Worker\"\", 'Reginald Ballard': \"\"Kurt's Co-Worker\"\", 'George Back': \"\"Kurt's Co-Worker\"\", 'Barry Livingston': \"\"Kurt's Co-Worker\"\", 'Meghan Markle': 'Jamie', 'Donald Sutherland': 'Jack Pellit', 'Celia Finkelstein': 'Margie Emerman'}\"\r\ntt1622979,\"{\"\"Nicholas D'Agosto\"\": 'Sam', 'Emma Bell': 'Molly', 'Miles Fisher': 'Peter Friedkin', 'Ellen Wroe': 'Candice Hooper', 'Jacqueline MacInnes Wood': 'Olivia Castle', 'P.J. Byrne': 'Isaac', 'Arlen Escarpeta': 'Nathan', 'David Koechner': 'Dennis', 'Courtney B. Vance': 'Agent Block', 'Tony Todd': 'Bludworth', 'Brent Stait': 'Roy', 'Roman Podhora': 'John', 'Jasmin Dring': 'Cho', 'Barclay Hope': 'Dr. Leonetti', 'Chasty Ballesteros': 'Spa Receptionist'}\"\r\ntt0420740,\"{'Kharl Anton Leigh': 'Young Boy Rodriguez', 'Peter Coyote': 'Frank', 'Forest Whitaker': 'Abe Holt', 'Juan Carlos Pardo Pardo': 'Mr. Rodriguez', 'Damon Younger': 'Long Haired Man', 'Jeremy Renner': 'Fred', 'Joanna Scanlan': 'Josie', 'Iddo Goldberg': 'Russle', 'Philip Jackson': 'William', 'Julia Stiles': 'Isold', 'Alfred Harmsworth': 'Thor', 'Vladas Bagdonas': 'Coroner', 'Felix Eyjólfsson': 'Auto Mechanic', 'Margrét Ólafsdóttir': 'Elderly lady in the Park', 'Birgir Sigurðsson': 'Elderly man in a commercial       (as Birgir Sigurdsson)'}\"\r\ntt0445946,\"{'Morgan Freeman': 'Carden', 'John Cusack': 'Ray', 'Jamie Anderson': 'Chris', 'Alice Krige': 'Miles', 'Megan Dodds': 'Sandra', 'Corey Johnson': 'Davis', 'Jonathan Hyde': 'Turner', 'Bill Smitrovich': 'Wainwright', 'Anthony Warren': 'Royko', 'Ned Bellamy': 'Evans', 'Thomas Lockyer': 'Johnson', 'Gary Whelan': 'Stanfield', 'Ian Shaw': 'Michaels', 'Atanas Srebrev': 'Rodrigues', 'Maynard Eziashi': 'Robbins'}\"\r\ntt0808265,\"{'John Rhys-Davies': 'The Greek', 'Kerry Fox': 'Suze', 'Tamer Hassan': 'Big Dave', 'Amber Sainsbury': 'Kathy', 'Craig Hall': 'Chris Hamilton', 'Julian Arahanga': 'Zane', 'Sally Stockwell': 'Tate', 'Ben Fransham': 'The Ferryman', 'Imogen Cassin': 'Imogen', 'Lawrence Makoare': 'Snake', 'Robbie Magasiva': 'Craig (Man in Club)', 'Jessica Woods': 'Woman in Club', 'Andi Crown': 'Emergency Crew Member', 'Brandon Cook': 'Little Boy'}\"\r\ntt0305556,\"{'Michael Weston': 'Kenny', 'Diedrich Bader': 'My-ik', 'Chris Parnell': 'Du-ug', 'Tyler Labine': 'Croker', 'Elden Henson': 'Ron', 'Beth Grant': 'Sheila', 'Missy Yager': 'Penny', 'Phil LaMarr': 'Vel-Dan', 'Joel McCrary': 'Mr. Breen', 'Michael McShane': 'Rabirr', 'Martin Spanjers': 'Jimmy', 'Jacob Franchek': 'Steve', 'NiCole Robinson': 'Gail', 'Andrew Bilgore': 'Clerk', 'Peter Sherayko': 'Counselor'}\"\r\ntt0858411,\"{'Bill Moseley': 'Mayor George W. Buckman', 'Lin Shaye': 'Granny Boone', 'Christa Campbell': 'Milk Maiden', \"\"Kevin 'ohGr' Ogilvie\"\": 'Harper Alexander       (as Nivek Ogre)', 'Andrea Leon': 'Val Turner', 'Ahmed Best': 'Crow', 'Katy Johnson Evans': 'Rome Sheraton       (as Katy Marie Johnson)', 'Asa Hope': 'Tina Sheraton', 'Alex Luria': 'Jesus', 'Larayia Gaston': 'Black Cherry', 'Miles Dougal': 'Jerry Schmit', 'Trevor Wright': 'Falcon', 'Jordan Yale Levine': 'K-Jay', 'Alana Curry': 'Bristol Bush', 'Ryan Fleming': 'Hucklebilly'}\"\r\ntt0309452,\"{'Olivier Gruner': 'Dirk Longstreet', 'Simon Kim': 'Kwan Twin #2', 'James Kim': 'Kwan Twin #1', 'Bryan Genesse': 'Vixton Hack', 'Loren Avedon': 'Det. Sykes', 'Gail Thackray': 'Nicole Kent       (as Gail Harris)', 'Ilya Melnikoff': 'Jeremy Longstreet       (as Ilya Morelle)', 'Michael Blanks': \"\"Big 'Circuit' Fighter       (as Mike Blanks)\"\", 'Michael Chow': \"\"Vixton's Communication Thug\"\", 'Daphne Orrell': 'Denise', 'Billy Drago': 'Lenny', 'Mark Parra': 'Bar #1 Fighter', 'Ace Cruz': \"\"'Circuit' Bet Taker\"\", 'Bruce Buffer': \"\"'Circuit' Announcer\"\", 'Jacov Bresler': 'Max'}\"\r\ntt0363095,\"{'Lee Evans': 'Sean Veil', 'Sean McGinley': 'Detective Louis Emeric', 'Ian McNeice': 'Forensic Profiler Saul Seger', 'Colin Salmon': 'Detective Mountjoy', 'Rachael Stirling': 'Katie Carter', \"\"Rachel O'Riordan\"\": 'Mary Shaw', 'Andrew Wilson': 'Covert Cameraman', 'Andrea Grimason': 'Susan Jasper', 'Martin McSharry': 'Sam Jasper', 'Gabriella Henriette': 'Moira Jasper', 'Emily Anthony': 'Maggie Jasper', 'Ryan McKenna': 'Reporter       (credit only)'}\"\r\ntt0233657,\"{'David Keith': 'Mason Rand', 'Stephanie Niznik': 'Dr. KC Czaban', \"\"Ryan O'Neal\"\": 'Allen Lysander', 'Brian Thompson': 'Captain Tower', 'Steve Bond': 'Colonel Tell', 'Craig Wasson': 'Hudson', 'Michael Cavanaugh': 'Williams', 'Shannon Lee': 'Pamela', 'James Avery': 'Dr. Solomon Holt', 'James Hong': 'Ambassador Po', 'Joseph Patrick Kelly': 'Control Tech       (as Joe Kelly)', 'Donald Li': 'Chinese Scientist', 'William Zabka': 'Rover Driver Joe', 'Marc McClure': 'German Scientist', 'Eloy Casados': 'Mexican Doctor'}\"\r\ntt0374286,\"{'David Keith': 'Mason Rand', 'Angel Boris Reed': 'Sondra       (as Angel Boris)', 'Billy Dee Williams': 'Ferguson', 'Brian Thompson': 'Tower', 'Jeffrey Gorman': 'Doyle', 'P.K. Ewing': 'Wilkes', 'Velizar Binev': 'Samuel', 'Biliana Petrinska': 'Gordeova', 'Tyrone Pinkham': 'Gunman', 'Michael Ash': 'Business Man', 'John Barnes': 'Admiral', 'Kate Goggin': 'Spokesperson', 'John Hansson': 'Genesis Speaker', 'Ray Hartbarger': 'General Hines', 'Mark Herndon': 'Reporter #4'}\"\r\ntt0437072,\"{'Ving Rhames': 'Animal', 'Terrence Howard': 'Darius Allen', 'Chazz Palminteri': 'Kassada', 'Jim Brown': 'Berwell', 'Beverly Todd': 'Latreese', 'Faizon Love': 'Double T', 'Wes Studi': 'Creeper', 'Paula Jai Parker': 'Reecy', 'Taraji P. Henson': 'Ramona', 'César Farrait': \"\"Roach       (as Cessar 'TNT' Farrait)\"\", 'Modesto Lacen': 'Dinky', 'Black Child': 'Spyda', 'Hunter Howard': 'Young Darius', 'Rafael Alvarez': 'Paul Wilson       (as Rafa Alvarez)', 'Eugenio Cotto': 'Assassin 1 - Berwell       (as Eugene Cotto)'}\"\r\ntt1633356,\"{'Sara Paxton': 'Sara', 'Dustin Milligan': 'Nick', 'Chris Carmack': 'Dennis', 'Katharine McPhee': 'Beth', 'Joel David Moore': 'Gordon', 'Donal Logue': 'Sabin', 'Joshua Leonard': 'Red', 'Sinqua Walls': 'Malik', 'Alyssa Diaz': 'Maya', 'Chris Zylka': 'Blake', 'Jimmy Lee Jr.': 'Carl', 'Damon Lipari': 'Keith', 'Christine Bently': 'Jess       (as Christine Quinn)', 'Kelly Sry': 'Wonsuk', 'Tyler Bryan': 'Kyle'}\"\r\ntt1563738,\"{'Anne Hathaway': 'Emma', 'Jim Sturgess': 'Dexter', 'Tom Mison': 'Callum', 'Jodie Whittaker': 'Tilly', 'Tim Key': 'Customer', 'Rafe Spall': 'Ian', 'Joséphine de La Baume': 'Marie       (as Josephine De La Baume)', 'Patricia Clarkson': 'Alison', 'Ken Stott': 'Steven', 'Heida Reed': 'Ingrid', 'Amanda Fairbank-Hynes': 'Tara', 'Gil Alma': 'Waiter', 'David Ajala': 'Floor Manager', 'Georgia King': 'Suki', 'Ukweli Roach': 'Rapper'}\"\r\ntt0493129,\"{'Mitchell Bisschop': 'Dude', 'Brandall Cole': 'Derrick       (as B. Cole)', 'Deon Cole': 'Jesse', 'Michael Colyar': 'Dad', 'Tiffany J. Curtis': 'Reashaun', 'Kid Capri': 'DJ', 'Eric Lane': 'Leonard', 'Simply Marvalous': 'Mom', 'Gerald McQuirter': 'Money Mel', 'Tony T. Roberts': 'Jay       (as Tony Roberts)', 'J. David Shanks': 'Steve', 'Mark Simmons': 'Guest #2'}\"\r\ntt1630564,\"{'Cuba Gooding Jr.': 'John Hebron', 'Christian Slater': 'Father Porter', 'Kim Coates': 'Arment', 'Devon Bostick': 'Mike Lopez', 'Lara Daans': 'Jade', 'Arcadia Kendal': 'Angel', 'Zion Forrest Lee': 'Rook       (as Zion Forrest)', 'Jake Simons': 'Tiaz', 'Layton Morrison': 'Gary Diamond', 'Athena Karkanis': 'Rachel', 'Matthew Stefiuk': 'Balt', 'Hannah Chantée': 'Noelle Hebron       (as Hannah Van Herten)', 'Adrian Langley': 'Doug', 'Stacey Martin': 'Riki', 'Peter Michael Dillon': 'Lyon       (as Peter Dillon)'}\"\r\ntt1266121,\"{'Mark Dacascos': 'Von Griem', 'Yancy Butler': 'Lilith', 'Rhett Giles': 'Jacob Van Helsing', 'Christy Carlson Romano': 'Alex Layton       (as Christy Romano)', 'Jeremy London': 'Russell Bayne', 'Stephanie Honoré': 'Zafira       (as Stephanie Honore)', 'Sarah Ann Schultz': 'Xandrea', 'Jerry Katz': 'Vlad', 'Taylor Roppolo': 'Sadie', 'Leigh Scott': 'The Old One', 'Marcus Lyle Brown': 'Konstantinos       (as Marcus Brown)', 'Derek Osedach': \"\"Jimmy 'The Kid'\"\", 'Justin Jones': 'Maximillian', 'Dean N. Arevalo': 'Security Guard #2', 'Edrick Browne': 'Detective Ladd'}\"\r\ntt0457319,\"{'Big Daddy Kane': 'Hunter', 'Brandon Xavier': 'Ski       (as Brandon Hardin)', 'D.J. Naylor': 'Ackson', 'Dominic L. Santana': 'Malcolm', 'E-40': 'Hustle', 'Thunderbird Dinwiddie': 'Kate       (as T-Love)', 'Michael Braxton': 'Trey', 'Chris Bailey': 'Bone', 'Bone Crusher': 'Himself       (as Bonecrusher)', 'Zach Hanner': 'Rich', 'Jon Stafford': 'Sheriff', 'Bill Ladd': 'Deputy Miller', 'Cullen Moss': 'Deputy ...', 'Charlie Lucas': 'Uncle Authur', 'Joi Heggins': \"\"Bonecrusher's Girl\"\"}\"\r\ntt0230512,\"{'Rodney Bingenheimer': 'Himself', 'Exene Cervenka': 'Herself', 'John Doe': 'Himself', 'X': 'Themselves', 'Chris P. Carter': 'Himself - Dramarama       (as Chris Carter)', 'Courtney Love': 'Herself - Hole', 'Gwen Stefani': 'Herself - No Doubt', 'Brooke Shields': 'Herself', 'Kim Fowley': 'Himself - Record Producer', 'Brian Wilson': 'Himself - The Beach Boys', 'Alice Cooper': 'Himself', 'Michael Des Barres': 'Himself - Silverhead', 'Pamela Des Barres': \"\"Herself - Author, 'I'm With the Band'\"\", 'Monique Powell': 'Herself', 'Keanu Reeves': 'Himself'}\"\r\ntt0380201,\"{'Joe Morton': 'Reverend Packer', 'Ja Rule': 'Reggie', 'Norman Grant': 'Doctor', 'Ving Rhames': 'J-Bone', 'Tia Carrere': 'Loot', 'Lahmard J. Tate': 'Jamal       (as Lahmard Tate)', 'Peter Somech': 'Philip The Vendor', 'Giancarlo Esposito': 'Benson Cooper', 'Badja Djola': 'Grant Brown', 'Pam Grier': 'Mrs. Cooper', 'Davetta Sherwood': 'Tosha Cooper', 'Stephen Kough': 'Vincent Cooper', 'Erika Michels': 'Maria Patillo - Reporter       (as Erika Michels Brown)', 'Frank Langella': 'Lieutenant Hudson', 'Jamie Harper': \"\"Jamal's Girl       (as Jamie Harper)\"\"}\"\r\ntt0492912,\"{'Christian Oliver': 'Adam Schmidt', 'Dean Stapleton': 'Dr. Vick', 'Courtney Mace': 'Kate', 'Jürgen Jones': 'The Hunter', 'Thomas Buesch': 'The Professor', 'Philip Chidel': 'Subject One'}\"\r\ntt1294136,\"{'Andie MacDowell': 'Helen Kalahan', 'Cary Elwes': 'Ethan Belfrage', 'Frank Whaley': 'Aaron', 'Matt Dallas': 'Jake', 'Nicole Ansari-Cox': 'Kate Belfrage       (as Nicole Ansari)', 'Brian Cox': 'Reverend Kalahan', 'Clark Middleton': 'Seth', 'Emma Kantor': 'Sarah', 'Juliette Bennett': 'Erica', 'Nasry Malak': 'Moe', 'Crispian Belfrage': 'Brian Shepherd', 'Claudine Oriol': 'Marsha', 'J.W. Cortes': 'Cop', 'Laurence Covington': 'Cop #2', \"\"Mario D'Leon\"\": 'Titus'}\"\r\ntt0138097,\"{'Geoffrey Rush': 'Philip Henslowe', 'Tom Wilkinson': 'Hugh Fennyman', \"\"Steven O'Donnell\"\": 'Lambert', 'Tim McMullan': 'Frees       (as Tim McMullen)', 'Joseph Fiennes': 'Will Shakespeare', 'Steven Beard': 'Makepeace - the Preacher', 'Antony Sher': 'Dr. Moth', 'Patrick Barlow': 'Will Kempe', 'Martin Clunes': 'Richard Burbage', 'Sandra Reinton': 'Rosaline', 'Simon Callow': 'Tilney - Master of the Revels', 'Judi Dench': 'Queen Elizabeth', 'Bridget McConnell': 'Lady in Waiting       (as Bridget McConnel)', 'Georgie Glen': 'Lady in Waiting', 'Nicholas Boulton': 'Henry Condell'}\"\r\ntt1270761,\"{'Bruce Gleeson': 'Buggy Driver', 'Eddie Ritchard': 'Housekeeper       (as Edwina Ritchard)', 'Garry McDonald': 'Blackwood', 'Bailee Madison': 'Sally', 'Carolyn Shakespeare-Allen': 'Airport Cart Driver', 'Katie Holmes': 'Kim', 'Guy Pearce': 'Alex', 'Jack Thompson': 'Harris', 'Julia Blake': 'Mrs. Underhill', 'David Tocci': 'Workman', 'Lance Drisdale': 'Policeman', 'Nicholas Bell': 'Psychiatrist', 'Libby Gott': 'Nurse', 'James Mackay': 'Librarian', 'Emilia Burns': 'Caterer       (as Emelia Burns)'}\"\r\ntt0138524,\"{'George Clooney': 'Miles', 'Catherine Zeta-Jones': 'Marylin', 'Geoffrey Rush': 'Donovan Donaly', 'Cedric the Entertainer': 'Gus Petch', 'Edward Herrmann': 'Rex Rexroth', 'Paul Adelstein': 'Wrigley', 'Richard Jenkins': 'Freddy Bender', 'Billy Bob Thornton': 'Howard D. Doyle', 'Julia Duffy': 'Sarah Sorkin', 'Jonathan Hadary': 'Heinz, the Baron Krauss von Espy', 'Tom Aldredge': 'Herb Myerson', 'Stacey Travis': 'Bonnie Donaly', 'Jack Kyle': 'Ollie Olerud', 'Irwin Keyes': 'Wheezy Joe', 'Judith Drake': 'Mrs. Gutman'}\"\r\ntt0113074,\"{'Gary Daniels': 'Kenshirô', 'Malcolm McDowell': 'Ryuken', 'Costas Mandylor': 'Lord Shin', 'Downtown Julie Brown': 'Charlie', 'Dante Basco': 'Bat', 'Nalona Herron': 'Lynn', 'Melvin Van Peebles': 'Asher', 'Clint Howard': 'Stalin', 'Andre Rosey Brown': 'Sandman', 'Paulo Tocha': 'Stone', 'Chris Penn': 'Jackal', 'Tracey Walter': 'Paul McCarthy', 'Rowena Guinness': 'Jill McCarthy', 'Isako Washio': 'Julia', 'Michael Charles Friedman': 'Neuter'}\"\r\ntt1172060,\"{'Bijou Phillips': 'Lenore Harker', 'James Murray': 'Frank Davis', 'Raphaël Coleman': 'Chris Davis', 'Owen Teale': 'Sgt. Perkins', 'Ty Glaser': 'Marnie', 'Oliver Coopersmith': 'Mike', 'Ioan Karamfilov': 'Adam', 'Jack Ellis': 'Prof. Baldwin', 'Skye Bennett': 'Nicole', 'Arkie Reece': 'Perry', 'Todd Jensen': 'Dr. Orbinson', 'Mariana Stansheva': 'Nurse #1       (as Mariana Stanisheva)', 'Alexis Bergemann': 'Nurse #2', 'Michal Yannai': 'Wrinkled Nurse', 'Gergana Bouzukova': 'Thin Nurse       (as Gergana Bozukova)'}\"\r\ntt1161449,\"{'Michael B.': 'Krit', 'Russell Wong': 'Patrick', 'Inthira Charoenpura': 'Praifa       (as Intira Jaroenpura)', 'Patharawarin Timkul': 'Selina', 'Erik Markus Schuetz': 'Gary', 'Winston Sefu': 'Mafia Wisa', 'Lak-Khet Waslikachart': 'Ram', 'Brahim Chab': 'Mafia wisa henchman       (as Brahim Achabbakhe)', 'Kaecha Kampakdee': 'Mafia wisa henchman 2', 'Winston Omega': 'General'}\"\r\ntt1087524,\"{'Brian Presley': 'Chance', 'Taraji P. Henson': 'Pearl', 'Amy Madigan': 'Rose', 'Ed Harris': 'Liam', 'Ash Adams': 'Rath', 'Chad Lindberg': 'Beat', 'Keegan Thomas': 'August       (as Keegan M. Thomas)', 'Alison Eastwood': 'Kat', 'Peter Weller': 'Eddie', 'Peter Greene': 'Sonny', 'Rance Howard': 'Harry', 'Sharon Gless': 'Sue', 'Jesse D. Goins': 'Bookman', 'Sam Hargrave': 'Axel', 'Antonio Fargas': 'Jay'}\"\r\ntt0770778,\"{'Simon Rex': 'Taz', 'Ving Rhames': \"\"Norman De'Sha\"\", 'Esai Morales': 'Natas', 'Erick Nathan': 'Cal', 'Elizabeth Di Prinzio': 'Amanda', 'Hemky Madera': 'Hector', 'Eddie B. Smith': 'Scooter Pie', 'Leonardo Castro': \"\"Hector's General       (as Leonardo Sitiriche)\"\", 'Hilda Marie Combs': 'Demon Woman', 'Anthony Dilio': 'Eddie', 'Jason Gillyard': 'Homicide', \"\"Darrell 'Silver' Hughes\"\": 'Artist       (voice) (credit only)', 'Gillie the Kid': 'Stanley', 'Karen Posada': 'News reporter'}\"\r\ntt0119208,\"{'Rick Rodney': 'Nathan', 'Bobby Field': 'Matthew', 'Christi Allen': 'Dana', 'Stewart Teggart': 'Jason', 'Chad Nell': 'John', 'Sean Atkins': 'Jeff', 'Fletcher Dragge': 'Sid', 'Warren Fitzgerald': \"\"Jeff's Crew\"\", 'Marti Noxon': 'Wife', 'Bill J. Stevens': 'Mr. Aquavia'}\"\r\ntt1290400,\"{'Val Kilmer': 'Dr. Nicholas Pinter', 'Izabella Miko': 'Katrine', 'Julian Wadham': 'Sterling', 'Hristo Shopov': 'Serik', 'Michael Cronin': 'Mr. Jacob', 'Valentine Pelka': 'Murdoch', 'Valentin Ganev': 'Ludvik Seifert', 'Ruscen Vidinliev': 'Agent Finney       (as Rushen Vidiniev)', 'Zachary Baharov': 'Alexander       (as Zahary Baharov)', 'Velislav Pavlov': 'Aslan', 'Emil Zdravkov Markov': 'Detective', 'Stanislav Pishtalov': 'Lebedev', 'Julian Vergov': 'Victor', 'Jeremy Zimmermann': 'Agent Davies       (as Jeremy Zimmerman)', 'Javor Baharoff': 'Agent Bouquet'}\"\r\ntt0476964,\"{'Jodie Foster': 'Erica Bain', 'Terrence Howard': 'Detective Mercer', 'Nicky Katt': 'Detective Vitale', 'Naveen Andrews': 'David Kirmani', 'Mary Steenburgen': 'Carol', 'Ene Oloja': 'Josai', 'Luis Da Silva Jr.': 'Lee', 'Blaze Foster': 'Cash', 'Rafael Sardina': 'Reed', 'Jane Adams': 'Nicole', 'Gordon MacDonald': 'Murrow', 'Zoë Kravitz': 'Chloe', 'John Magaro': 'Ethan', 'Victor Colicchio': 'Cutler', 'Jermel Howard': 'Thug on Subway'}\"\r\ntt0762073,\"{'Kang-ho Song': 'Sang-hyun       (as Song Kang-ho)', 'Hee-jin Choi': 'Nurse Sa', 'Dong-soo Seo': 'Hyo-sung', 'Hwa-ryong Lee': 'Doctor Ku', 'Mi-ran Ra': 'Nurse Yu', 'In-hwan Park': 'Priest Roh       (as Park In-hwan)', 'Eriq Ebouaney': 'Emmanuel Research Director       (as Eriq Ebouney)', 'Thati Peele': 'Emmanuel Research Nun       (as Onthatile Peele)', 'Jong-ryol Choi': 'Grandfather', 'Yong-wan Goo': 'Devotee', 'Woo-seul-hye Hwang': 'Whistle Girl', 'Hae-sook Kim': 'Mrs. Ra       (as Kim Hae-sook)', 'Ha-kyun Shin': 'Kang-woo       (as Shin Ha-kyun)', 'Ok-bin Kim': 'Tae-ju       (as Kim Ok-vin)', 'Dal-su Oh': 'Young-du       (as Oh Dal-su)'}\"\r\ntt0480271,\"{'Kal Penn': 'Taj', 'Lauren Cohan': 'Charlotte', 'Daniel Percival': 'Pip', 'Glen Barry': 'Seamus', 'Anthony Cozens': 'Gethin', 'Steven Rathman': 'Simon', 'Holly Davidson': 'Sadie', 'Tom Davey': 'Percy', 'William de Coverly': 'Roger', 'Beth Steel': 'Penelope', 'Amy Steel': 'Alexandra', 'Jonathan Cecil': 'Provost Cunningham', 'Roger Hammond': 'Camford Dean', 'Kulvinder Ghir': \"\"Taj's Father\"\", 'Shobu Kapoor': \"\"Taj's Mother\"\"}\"\r\ntt0760188,\"{'Ben Cross': 'Josef Breuer', 'Armand Assante': 'Nietzsche', 'Joanna Pacula': 'Mathilda', 'Michal Yannai': 'Bertha       (as Michal Yanai)', 'Jamie Elman': 'Sigmund Freud', 'Andreas Beckett': 'Zarathustra', 'Katheryn Winnick': 'Lou Salome', \"\"Rachel O'Meara\"\": 'Frau Becker', 'Yzhar Charuzi': 'Hush Man', 'Ilan Charusi': 'Carmen Barman', 'Tal Fructer': 'Girl by Pianist', 'Silvia Terzieva': 'Mrs. Fiefer', 'Ivaylo Brusowski': 'Mendel Fiefer', 'Ventsislav Slavov': 'The Father of Josef'}\"\r\ntt0386751,\"{'Edward Burns': 'Abel Grey', 'Jennifer Ehle': 'Betsy Chase', 'Thomas Gibson': \"\"August 'Gus' Pierce\"\", 'John Kapelos': 'Joey Tosh', 'Jamie Thomas King': 'Harry McKenna       (as Jamie King)', 'Rachelle Lefevre': 'Carlin Leander', 'Bruce Murphy': \"\"Joey's Son\"\", 'David Gibson McLean': 'Young Abel       (as David Maclean)', 'Julian Rhind-Tutt': 'Eric Herman', 'Ross Petty': 'The Dean', 'David Christoffel': 'Matt Farris', 'Richard Fitzpatrick': 'Police Chief', 'Karl Pruner': 'Walter Pierce', 'Jonathan Malen': 'Nathaniel Gibb', 'Jeff A. Wright': 'Robbie       (as Jeff Wright)'}\"\r\ntt0455584,\"{'Timothy Hutton': 'David Norton', 'Lucía Jiménez': 'Silvia', 'David Kelly': 'Frank Kovak', 'Georgia Mackenzie': 'Jane', 'Gary Piquer': 'Jaume', 'Annette Badland': 'Kathy', 'Iván Morales': 'Charlie', 'Colin Stinton': 'Encargado Consulado', 'Nicholas Boulton': 'Funcionario Consulado', 'Jeff Harding': 'Gerente Sanatorio', 'Jorge Bosch': 'Forense', 'Luis Callejo': 'Encargado Cuevas', 'Daniel Strauss': 'Médico Silvia       (as Dan Strauss)', 'Molly Malcolm': 'Psicóloga', 'Keith Bartlett': 'Admirador'}\"\r\ntt0149171,\"{'Vin Diesel': 'Rick', 'Joey Dedio': 'Fred', 'T.K. Kirkland': 'Rodney', 'Mike Epps': 'Mike', 'F. Valentino Morales': 'Tony', 'Suzanne Lanza': 'Heather', 'Darnell Williams': 'Keith', 'Mihaela Kolich': 'Danielle       (as Mihaela Tudorof)', 'Eugene Osborne Smith': 'Willie', 'Temple Brooks': 'Amy', 'Loni Sabrina Stuart': 'Nicole', 'DeAngela Parrish': 'Suzanne', 'Marko Kalfa': 'Chris', 'Joey Iovino': 'Kenny', 'Louis Albert Von Steidl': 'Jerry Saperstein'}\"\r\ntt0425395,\"{'Danny DeVito': 'Frank Menure', 'Kathy Bates': 'Agnes Menure', 'Ron Livingston': 'Dr. Richard Clayton', 'Neve Campbell': 'Ellen Minnola', \"\"Beverly D'Angelo\"\": 'Angela Minnola', 'Bob Odenkirk': 'Mitch Clayton', 'Edward Herrmann': 'Doug Clayton', 'Christine Baranski': 'Arleen Clayton', 'Martin Mull': 'Jeffry Morton', 'Michael McKean': 'Ken Hyman', 'M.C. Gainey': 'Spicer', 'Star Jones': 'Holly Davis', 'Ed Begley Jr.': 'Mr. Manoire', 'Debbi Morgan': 'Mrs. Manoire', 'Pete Schwaba': 'Meat Delivery Man'}\"\r\ntt0358569,\"{'Noel Gallagher': 'Himself', 'Liam Gallagher': 'Himself', 'Damon Albarn': 'Himself', 'Jarvis Cocker': 'Himself', 'Kevin Cummins': 'Himself', 'Toby Young': 'Himself', 'Ozwald Boateng': 'Himself', 'Damien Hirst': 'Himself', 'Robert Del Naja': 'Himself       (as 3D)', 'Jon Savage': 'Himself', 'Louise Wener': 'Herself', 'Peter Mandelson': 'Himself', 'Tony Blair': 'Himself       (archive footage)'}\"\r\ntt0276276,\"{'Bill Nighy': 'Dan', 'Tom Hollander': 'Nick', 'Douglas Henshall': 'Tim', 'Clémentine Célarié': 'Corrine', 'Ellie Haddington': 'Judy', 'Sukie Smith': 'Charlie', 'Josephine Butler': 'Leah', 'Stuart Laing': 'David', 'Sally Hurst': 'Michelle', 'Dominic Hall': 'Darren', 'Jim McManus': 'Chef', 'Howard Gossington': 'Waiter', 'Richard Cant': 'Michael', 'Hari Dhillon': 'Will       (as Hari Dillon)', 'Peter Symonds': \"\"Mr. Marsh - Tim's Father\"\"}\"\r\ntt0454879,\"{'Brendan Fraser': 'Paul', 'Yasiin Bey': 'Wemba       (as Mos Def)', 'Scott Glenn': 'Sinatra', 'Catalina Sandino Moreno': 'Angie', 'Alice Braga': 'Monique', 'Matheus Nachtergaele': 'Nazda', 'Ruy Polanah': 'The Soothsayer', 'Gilson Adalberto Gomes': 'Samy       (as Gilson Gomes)', 'Luke Denis Nolan': 'Lazare', 'Milhem Cortaz': 'Rodrigo', 'Antonio Pinto': 'Detective Moosbruger', 'Ana Paula Demambro': 'Drena       (as Ana Paula De Mambro)', 'Marcio Garcia': 'Club Manager', 'Ingrid Costa Silva': 'Club Hostess', 'Cristina Sverzuti': 'Prostitute #2       (as Cristina Sverzuti Fidencio)'}\"\r\ntt0417751,\"{'Estella Warren': 'Jeana', 'Christian Kane': 'Paul', 'Michael Weatherly': 'Tom', 'Rachel Dratch': 'Caroline', 'Flex Alexander': 'Marty', 'Kathy Griffin': 'Maggie', 'Ivana Milicevic': 'Zsa Zsa', 'Victoria Jackson': 'Norma', 'David Fine': 'Cab Driver', 'Larry Milburn': 'Randy', 'Keary Ann Bixby': 'Wendy Sagen', 'Rick Kleber': 'Carl', 'Rachel Songer': 'Alison', 'Elisabeth Nunziato': 'Susan', 'Heather Simpson': 'Monica'}\"\r\ntt0412798,\"{'Demi Moore': 'Rachel Carlson', 'Henry Ian Cusick': 'Brian', 'Beans El-Balawi': 'Thomas Carlson       (as Beans Balawi)', 'Kate Isitt': 'Sharon Winton', 'Nicholas Gleaves': 'Dr. Robert Freedman', 'James Cosmo': 'Finlay Murray', 'Joanna Hole': 'Mary Murray', 'Therese Bradley': 'Morag McPherson', 'Hans Matheson': 'Angus McCulloch', 'Mickey Wilson': 'Reverend James McMahon       (as Michael Wilson)', 'Polly Frame': 'Librarian', 'Ceit Kearney': 'Gaelic Speaking Woman', 'Nichola Bee': 'Kate McCulloch       (as Nichola B)', 'Jamie Edgell': 'Gordon McCloud', 'Anne Smith': 'Bingo Announcer'}\"\r\ntt0339091,\"{'Monica Calhoun': 'Rachel', \"\"Lil' Kim\"\": 'Chastity', 'Stacey Dash': 'Kim', 'Marie Matiko': 'Zang Li', 'LisaRaye McCoy': 'Maria       (as LisaRaye)', 'Macy Gray': 'Black Haired Woman', 'Louis Mandylor': 'Sheriff Shoeshine Michel', 'Bobby Brown': 'Left Eye Watkins', 'Jacinto Taras Riddick': 'Georgy Simone       (as Jacinto Riddick)', 'Charity Hill': 'Little Suzie', 'Jean-Claude La Marre': 'Baby Face Malone', 'Licia L. Shearer': 'Sally       (as Licia Shearer)', 'Glenn Plummer': 'Johnny Handsome', 'Peter Sherayko': 'Bartender #1', 'Sal Cardile': 'Jeremiah'}\"\r\ntt0470761,\"{'Elisabeth Shue': 'Laura', 'Steven Mackintosh': 'Steven', 'Kathleen Chalfant': 'Mrs. Kasperian', 'Khandi Alexander': 'Dierdre', 'Anne Wolf': 'Samantha Lee', 'Blair Brown': \"\"Laura's Mother\"\", 'Phillip V. Caruso': 'Dr.Caputo, Anesthesiologist', 'Matt Dickinson': 'Party Guest #1', 'Mia Dillon': 'Party Guest #2', 'Julian Gamble': 'Exterminator', 'Carolyn Gilroy': 'Jenny       (voice)', 'Jared Grimes': 'Stock Boy', 'Tim Hopper': 'Officer White', 'Lisby Larson': 'Party Guest #4', 'David Little': 'Officer Gray'}\"\r\ntt0280605,\"{'Bryan Brown': 'Barry Ryan', 'Toni Collette': 'Sharon Ryan', 'John Goodman': 'Tony Testano', 'Sam Neill': 'Detective Sergeant Ray Murphy', 'Sam Worthington': 'Darcy', 'Kestie Morassi': 'Margaret', 'William McInnes': 'Hollywood', 'Andrew S. Gilbert': 'Norm', 'Gary Waddell': 'Freddie', 'Felix Williamson': 'Sal Cassela', 'Derek Amer': 'Manager', 'Laeni Baille': 'Coin Lady', 'Rudi Baker': 'Bell Boy', 'Bille Brown': 'Senator', 'Michael Brownjohn': 'Bouncer #1'}\"\r\ntt0914364,\"{'Lance Henriksen': 'Col. John Willets', 'Gary Stretch': 'Colin Willets', 'James Russo': 'Commander Combs', 'Katherine Randolph': 'Traci Leonard', 'D.C. Douglas': 'Larry Grubman', 'Jim Hanks': 'Ensign Buford', 'Matthew Alan': 'Lt. Chris McCloskey', 'Lee Majdoub': 'Fahdawi /              Khalil', 'David Hutchison': 'Navy Seal #1', 'Richard Jenik': 'Lt. Ricks', 'John Karyus': 'Present Day Captain', 'Paul Lacovara': 'Navy Seal #2', 'Grant Mathis': 'Gunther Neumann', 'Robert Pike Daniel': 'Slab', 'Tom McCafferty': 'Lt. Jackson'}\"\r\ntt0285487,\"{'Michael Beach': 'Ty Adams', 'Ronny Cox': 'Delazo', 'Sinbad': 'Orderly', 'Jane Carr': 'Nurse Danza', 'Shelley Robertson': 'Veda', 'Khylan Jones': 'Brianna', 'Twink Caplan': 'Suzanne', 'John C. McGinley': 'Parker', 'David Backus': 'Todd', 'Matthew A. Thomas': 'Stretch McGuffin       (as Matt Thomas)', 'William Bassett': 'Mr. Brennan', 'Jim Ortlieb': 'Mr. Tobin', 'Roberta Haze': 'Ms. Aslee', 'Tom Everett': 'Mansell', 'Ray Xifo': 'Selden'}\"\r\ntt0482088,\"{'Audrey Tautou': 'Irène', 'Gad Elmaleh': 'Jean', 'Marie-Christine Adam': 'Madeleine', 'Vernon Dobtcheff': 'Jacques', 'Jacques Spiesser': 'Gilles', 'Annelise Hesme': 'Agnès', 'Charlotte Vermeil': 'Dame au chihuahua', 'Claudine Baschet': 'Dame au dogue', 'Laurent Claret': 'Responsable bar Biarritz', 'Jean de Coninck': \"\"L'homme au cigare\"\", 'Blandine Pélissier': 'La femme de chambre', 'Philippe Vendan-Borin': 'Serveur restaurant Biarritz', 'Bernard Bourdeau': 'Collègue Jean Biarritz', 'Didier Brice': 'François', 'Laurent Mouton': 'Serveur café François'}\"\r\ntt0832266,\"{'Ryan Reynolds': 'Will Hayes', 'An Nguyen': 'Ad Exec', 'Matthew Mason': 'Headphone Guy', 'Rick Derby': 'Visitor from Planet Ordon       (as Ricky Jay Derby)', 'Sakina Jaffrey': 'School Mom', 'Bob Wiltfong': 'School Dad', 'Ryder Chasin': 'Boy with Book', 'Fiona Lane': 'Angry Girl', 'Dana Eskelson': \"\"Angry Girl's Mom\"\", 'Blake Benitez': 'School Kid', 'Paulina Gerzon': 'School Kid', 'Victoria Goldsmith': 'School Kid', 'Ashtyn Greenstein': 'School Kid', 'Ashley Grenier': 'School Kid', 'Dylan Hartigan': 'School Kid'}\"\r\ntt0069704,\"{'Richard Dreyfuss': 'Curt', 'Ron Howard': 'Steve       (as Ronny Howard)', 'Paul Le Mat': 'John', 'Charles Martin Smith': 'Terry       (as Charlie Martin Smith)', 'Cindy Williams': 'Laurie', 'Candy Clark': 'Debbie', 'Mackenzie Phillips': 'Carol', 'Wolfman Jack': 'Disc Jockey', 'Bo Hopkins': 'Joe', 'Manuel Padilla Jr.': 'Carlos', 'Beau Gentry': 'Ants', 'Harrison Ford': 'Bob Falfa', 'Jim Bohan': 'Holstein', 'Jana Bellan': 'Budda', 'Deby Celiz': 'Wendy'}\"\r\ntt0125664,\"{'Jim Carrey': 'Andy Kaufman       (as Tony Clifton)', 'Gerry Becker': \"\"Stanley Kaufman - Andy's Father\"\", 'Greyson Erik Pendry': 'Little Michael Kaufman       (as Greyson Pendry)', 'Brittany Colonna': 'Baby Carol Kaufman', 'Leslie Lyles': \"\"Janice Kaufman - Andy's Mother\"\", 'Bobby Boriello': 'Little Andy Kaufman', 'George Shapiro': 'Mr. Besserman', 'Danny DeVito': 'George Shapiro', 'Budd Friedman': 'Budd Friedman', 'Tom Dreesen': 'Wiseass Comic', 'Thomas Armbruster': 'Improv Piano Player', 'Pamela Abdy': 'Diane Barnett', 'Wendy Polland': 'Little Wendy', 'Cash Oshman': 'Yogi', 'Matt Price': 'Meditation Student'}\"\r\ntt1210801,\"{'Dolph Lundgren': 'Joe', 'Melissa Molinaro': 'Venus       (as Melissa Smith)', 'Hristo Shopov': 'President Petrov', 'Dave Legeno': 'Oleg Kazov', 'Clement von Franckenstein': 'Ambassador Bradley', 'James Chalke': 'Vladimir', 'Zachary Baharov': 'Mikhail Kapista       (as Zahary Baharov)', 'Ivaylo Geraskov': 'Leonid Gordov', 'Shelly Varod': 'Ali Connor', 'Katarzyna Wolejnio': 'Maj. Pavlikova', 'Ida Lundgren': 'Anna Petrov', 'Robin Dobson': 'Yana Petrov', 'Raicho Vasilev': 'Anton', 'Slavi Slavov': 'Capt. Simenov', 'Naum Shopov': 'Peter'}\"\r\ntt1583420,\"{'Tom Hanks': 'Larry Crowne', 'Sarah Mahoney': 'Samantha', 'Roxana Ortega': 'Alvarez', 'Randall Park': 'Trainee Wong', 'Brady Rubin': 'Dorothy Genkos', 'Alex Quijano': 'Team Leader #1', 'Tina Huang': 'Team Leader #2', 'E-Kan Soong': 'Team Leader #3', 'Tarina Pouncy': 'Team Leader #4', 'Sy Richardson': 'Avery', 'Julie Wagner': 'Vacuum Shopper', 'Rob Riggle': 'Jack Strang', 'Erin Underwood': 'Mom with Baby', 'Dale Dye': 'Cox', 'Barry Sobel': 'Cubby'}\"\r\ntt0955308,\"{'Russell Crowe': 'Robin Longstride', 'Cate Blanchett': 'Marion Loxley', 'Max von Sydow': 'Sir Walter Loxley', 'William Hurt': 'William Marshal', 'Mark Strong': 'Godfrey', 'Oscar Isaac': 'Prince John', 'Danny Huston': 'King Richard the Lionheart', 'Eileen Atkins': 'Eleanor of Aquitaine', 'Mark Addy': 'Friar Tuck', 'Matthew Macfadyen': 'Sheriff of Nottingham', 'Kevin Durand': 'Little John', 'Scott Grimes': 'Will Scarlet', 'Alan Doyle': \"\"Allan A'Dayle\"\", 'Douglas Hodge': 'Sir Robert Loxley', 'Léa Seydoux': 'Isabella of Angoulême'}\"\r\ntt0368688,\"{'Dolph Lundgren': 'Sgt. Frank Gannon', 'Polly Shannon': 'Billie Ross', 'Donald Burda': 'Bryant', 'Rothaford Gray': 'Sgt. Ed Grimes', 'Conrad Dunn': 'Captain Stone', 'Walter Alza': 'Espinoza', 'Alex Karzis': 'Agent Bill', 'Larry Day': 'Phil, Agent in Charge', 'Natacha La Ferriere': 'Adrianna', 'Daniel Kash': 'LoPresti', 'Stacey Coke': 'Loretta Grimes', 'Joseph Griffin': 'Carter       (as Joseph Luna Griffin)', 'Vanessa Thompson': 'Katy', 'Tim Sell': 'Hardcase #1', 'Jim Codrington': 'Hardcase #2'}\"\r\ntt0318462,\"{'Gael García Bernal': 'Ernesto Guevara de la Serna', 'Rodrigo De la Serna': 'Alberto Granado', 'Mía Maestro': 'Chichina Ferreyra', 'Mercedes Morán': 'Celia de la Serna (Argentina)', 'Jean Pierre Noher': 'Ernesto Guevara Lynch (Argentina)       (as Jean-Pierre Noher)', 'Lucas Oro': 'Roberto Guevara (Argentina)', 'Marina Glezer': 'Celita Guevara (Argentina)', 'Sofia Bertolotto': 'Ana María Guevara (Argentina)       (as Sofía Bertolotto)', 'Franco Solazzi': 'Juan Martín Guevara (Argentina)', 'Ricardo Díaz Mourelle': 'Uncle Jorge (Argentina)       (as Ricardo Diaz Mourelle)', 'Sergio Boris': 'Young Traveler (Argentina)', 'Daniel Kargieman': 'Young Traveler (Argentina)', 'Diego Giorzi': 'Rodolfo (Argentina)', 'Facundo Espinosa': 'Tomás Granado (Argentina)', 'Matias Gomez': 'Kid (Argentina)       (as Matías Gómez)'}\"\r\ntt0310924,\"{'Gérard Depardieu': 'Daniel Foray', 'Harvey Keitel': 'Frankie Zammeti', 'Johnny Hallyday': 'Marcel Burot', 'Renaud': 'Zero', 'Saïd Taghmaoui': 'Sami', 'Stéphane Freiss': 'Julien Labesse', 'Shawn Lawrence': 'Agent Pogue', 'Albert Dray': 'Raymond Gayet', 'Joanne Kelly': 'Sophie Nicols', 'Richard Bohringer': 'Bastaldi', 'Abe Vigoda': 'Angelo Giancarlo', 'Gino Marrocco': 'Joey Two Tons', 'Sal Figliomeni': 'Nicky The Rake', 'Diego Chambers': 'Raphael', 'Carlos Diaz': 'Hector'}\"\r\ntt0469062,\"{'Marisa Tomei': 'Danika Merrick', 'Hannah Marks': 'Lizzie Geralds', 'Guy Camilleri': 'Man', 'Akuyoe Graham': 'Patricia Guilford', 'Ori Pfeffer': 'Bank Robber #1', 'Jeffrey Nicholas Brown': 'Bank Robber #2       (as Jeffrey Brown)', 'Craig Bierko': 'Randy Merrick', 'Kyle Gallner': 'Kurt Merrick', 'Nicki Prian': 'Lauren Merrick       (as Nicky Prian)', 'Ridge Canipe': 'Brian Merrick', 'Regina Hall': 'Dr. Evelyn Harris', 'Jacqueline Pinol': 'Nanny', 'James Avery': 'Teddy Johnson', 'Tanya Linette Smith': 'Sales Lady', 'John Ducey': 'TV Anchorman'}\"\r\ntt0327643,\"{'Jenny McCarthy': 'Rebecca Sommers', 'Eddie Kaye Thomas': 'John', 'Carmen Electra': 'Michelle Lopez', 'Victor Webster': 'Richard', 'Kam Heskin': 'Carrie Carson', 'Guillermo Díaz': 'Tom Houdini', 'Jessica Collins': 'Mandy', 'Renee Albert': 'Sara', 'Noah Harpster': 'Robert Rodale', 'Jay Johnston': 'Waiter', 'Judith Drake': 'Waitress', \"\"David O'Donnell\"\": 'Jake', 'Forbes March': 'Mr. Hot Bacon', 'Deryck Whibley': 'Tony', 'Tabitha Taylor': 'Sexy Woman'}\"\r\ntt0167116,\"{'Brent Roam': 'Concierge', 'Shawn Woods': 'Larson', 'Christopher Bersh': 'Thug in Black', 'Kiefer Sutherland': 'Arthur Banks', 'Rachel Ticotin': 'Dora', 'Beth Grant': 'Lou', 'Zach Chapman': 'Officer', 'Jamey Sheridan': 'Agent George Scanlon', 'Leslie Stefanson': 'Agent Donna Marbury', 'Melora Walters': 'Bennie Harper', 'Buddy Quaid': 'Gas Station Attendant', 'Keith Diamond': 'Agent Robinson', 'Bill Sage': 'Agent Davis', 'Aliza Rajan': 'Agent McCoy       (as Aliza Waksal)', 'Alan Gelfant': 'Byron Sadowski'}\"\r\ntt0174856,\"{'Denzel Washington': 'Rubin Carter', 'Vicellous Shannon': 'Lesra       (as Vicellous Reon Shannon)', 'Deborah Kara Unger': 'Lisa', 'Liev Schreiber': 'Sam', 'John Hannah': 'Terry', 'Dan Hedaya': 'Della Pesca', 'Debbi Morgan': 'Mae Thelma', 'Clancy Brown': 'Lt. Jimmy Williams', 'David Paymer': 'Myron Bedlock', 'Harris Yulin': 'Leon Friedman', 'Rod Steiger': 'Judge Sarokin', 'Badja Djola': 'Mobutu', 'Vincent Pastore': 'Alfred Bello', 'Al Waxman': 'Warden', 'David Lansbury': 'U.S. Court Prosecutor'}\"\r\ntt0889583,\"{'Sacha Baron Cohen': 'Brüno', 'Gustaf Hammarsten': 'Lutz', 'Clifford Bañagale': 'Diesel', 'Chibundu Orukwowu': 'O.J.', 'Chigozie Orukwowu': 'O.J.', 'Josh Meyers': 'Kookus', 'Toby Holguin': 'Mexican Gardener #1       (as Toby Hoguin)', 'Robert Huerta': 'Mexican Gardener #2', 'Gilbert Rosales': 'Mexican Gardener #3', 'Thomas Rosales Jr.': 'Mexican Gardener #4', 'Marco Xavier': 'Mexican Gardener #5', 'Bono': \"\"Himself - 'Dove of Peace'\"\", 'Chris Martin': \"\"Himself - 'Dove of Peace'\"\", 'Elton John': \"\"Himself - 'Dove of Peace'\"\", 'Slash': \"\"Himself - 'Dove of Peace'\"\"}\"\r\ntt0101393,\"{'Kurt Russell': 'Stephen McCaffrey /              Dennis McCaffrey', 'William Baldwin': 'Brian McCaffrey', 'Robert De Niro': 'Donald Rimgale', 'Donald Sutherland': 'Ronald Bartel', 'Jennifer Jason Leigh': 'Jennifer Vaitkus', 'Scott Glenn': 'John Adcox', 'Rebecca De Mornay': 'Helen McCaffrey', 'Jason Gedrick': 'Tim Krizminski', 'J.T. Walsh': 'Marty Swayzak', 'Anthony Mockus Sr.': 'Chief John Fitzgerald       (as Tony Mockus Sr.)', 'Cedric Young': 'Grindle', 'Juan Ramírez': 'Ray Santos', 'Kevin Casey': 'Nightingale', 'Jack McGee': 'Schmidt', 'Mark Wheeler': 'Pengelly'}\"\r\ntt1027747,\"{'Stana Katic': 'Raina Mavias', 'Tom Berenger': 'Virgil Vadalos', 'Paul Sloan': 'Beck', 'Michael Biehn': 'Lee', 'William Forsythe': 'Alex', 'Kelly Hu': 'Detective Hanover', 'Amanda Brooks': 'Penny', 'Diane Venora': 'Sylvia Vadalos', 'Tony Lip': 'Gus', 'James Russo': 'Engelhart', 'Tom Sizemore': 'Large Bills', 'Dominique Swain': 'Nancy', 'D.B. Sweeney': 'Danny', 'David Proval': 'Mohammad', 'Efrain Figueroa': 'Ernesto'}\"\r\ntt0455362,\"{'Michelle Rodriguez': 'Nicki', 'Oliver Hudson': 'John', 'Taryn Manning': 'Sara', 'Eric Lively': 'Matt', 'Hill Harper': 'Noah', 'Nick Boraine': 'Luke', 'Lisa-Marie Schneider': 'Jenny'}\"\r\ntt0317198,\"{'Renée Zellweger': 'Bridget Jones', 'Gemma Jones': 'Mum', 'Jim Broadbent': 'Dad', 'James Faulkner': 'Uncle Geoffrey', 'Celia Imrie': 'Una Alconbury', 'Dominic McHale': 'Bernard', 'Colin Firth': 'Mark Darcy', 'Donald Douglas': 'Admiral Darcy', 'Shirley Dixon': 'Mrs. Darcy', 'Neil Pearson': 'Richard Finch', 'Rosalind Halstead': 'Receptionist', 'Luis Soto': 'Mexican Ambassador', 'Tom Brooke': 'Production Assistant', 'Hugh Grant': 'Daniel Cleaver', 'Alba Fleming Furlan': 'Girl in Rome'}\"\r\ntt1198153,\"{'Olga Kurylenko': 'Galia', 'Reymonde Amsallem': 'Bathhouse Attendant #1       (as Reymond Amsalem)', 'Zohar Shtrauss': \"\"Elinor's Husband\"\", 'Ninet Tayeb': 'Elinor', 'Liron Levo': 'Roni', 'Henry David': 'Peter', 'Shalom Michaelshwilli': 'Michael', 'Vladimir Friedman': 'Mishka', 'Yana Goor': 'Nina', 'Lior Habra': \"\"Barbie's Friend\"\", 'Yuval Saragusi': 'Adar'}\"\r\ntt1584733,\"{'Amina': 'Amina       (as Amina Suicide)', 'Bailey Suicide': 'Bailey', 'Bully Suicide': 'Bully', 'Daven Suicide': 'Daven', 'Evan Suicide': 'Evan', 'Fractal': 'Fractal       (as Fractal Suicide)', 'Samantha Humphreys': 'James       (as James Suicide)', 'Joleigh Suicide': 'Joleigh', 'Mary Suicide': 'Mary', 'Quinne Suicide': 'Quinne', 'Rigel Suicide': 'Rigel', 'Roach Suicide': 'Roach', 'Roza Suicide': 'Roza', 'Soren Suicide': 'Soren', 'Don L. Bagley': 'Caretaker       (as Don Bagley)'}\"\r\ntt0425112,\"{'Simon Pegg': 'Nicholas Angel', 'Martin Freeman': 'Met Sergeant', 'Bill Nighy': 'Met Chief Inspector', 'Robert Popper': \"\"'Not' Janine\"\", 'Joe Cornish': 'Bob', 'Chris Waitt': 'Dave', 'Eric Mason': 'Bernard Cooper', 'Billie Whitelaw': 'Joyce Cooper', 'Nick Frost': 'PC Danny Butterman', 'Peter Wight': 'Roy Porter', 'Julia Deakin': 'Mary Porter', 'Tom Strode Walton': 'Underage Drinker #1', 'Troy Woollan': 'Underage Drinker #2', 'Rory Lowings': 'Underage Drinker #3', 'Bill Bailey': 'Sergeant Turner'}\"\r\ntt0116483,\"{'Adam Sandler': 'Happy Gilmore', 'Christopher McDonald': 'Shooter McGavin', 'Julie Bowen': 'Virginia Venit', 'Frances Bay': 'Grandma', 'Carl Weathers': 'Chubbs', 'Allen Covert': 'Otto', 'Robert Smigel': 'IRS Agent', 'Bob Barker': 'Bob Barker', 'Richard Kiel': 'Mr. Larson', 'Dennis Dugan': 'Doug Thompson', 'Joe Flaherty': 'Jeering Fan', 'Lee Trevino': 'Himself', 'Kevin Nealon': 'Potter', 'Verne Lundquist': 'Announcer', 'Jared Van Snellenberg': \"\"Happy's Waterbury Caddy\"\"}\"\r\ntt0243155,\"{'Renée Zellweger': 'Bridget Jones', 'Gemma Jones': \"\"Bridget's Mum\"\", 'Celia Imrie': 'Una Alconbury', 'James Faulkner': 'Uncle Geoffrey', 'Jim Broadbent': \"\"Bridget's Dad\"\", 'Colin Firth': 'Mark Darcy', 'Charmian May': 'Mrs. Darcy', 'Hugh Grant': 'Daniel Cleaver', 'Paul Brooke': 'Mr. Fitzherbert', 'Felicity Montagu': 'Perpetua', 'Shirley Henderson': 'Jude', 'Sally Phillips': 'Shazza', 'James Callis': 'Tom', 'Charlie Caine': 'Handsome Stranger', 'Gareth Marks': 'Simon in Marketing'}\"\r\ntt1423593,\"{'Élodie Bouchez': 'Asya', 'José María de Tavira': 'Javier', 'Karim Saleh': 'Karim', 'Karolina Muller': 'Tatiana', 'Marianna Kulukundis': 'Athena', 'Rita Ackerman': 'Libby', 'Pierluca Arancio': 'Marco', 'Ahd': 'Iraqi woman       (as Ahd Kamel)', 'Sumy Ahn': 'Sun-Tae       (as Sumy Ahn Lee)', 'Victoria Aitken': 'Lady in Bathroom', 'Ted Arcidi': 'Don', 'Neville Aurelius': 'Bartender', 'Sophie Auster': 'Savina', 'Sebastian Beacon': 'Eurotrash Boy', 'Judson Blane': \"\"Maribelle's Boyfriend\"\"}\"\r\ntt0141926,\"{'Matthew McConaughey': 'Lt. Andrew Tyler', 'Bill Paxton': 'Lt. Cmdr. Mike Dahlgren', 'Harvey Keitel': 'CPO Henry Klough', 'Jon Bon Jovi': 'Lt. Pete Emmett', 'David Keith': 'Maj. Matthew Coonan', 'Thomas Kretschmann': 'Capt.-Lt. Gunther Wassner', 'Jake Weber': 'Lt. Hirsch', 'Jack Noseworthy': 'Seaman Bill Wentz', 'Tom Guiry': \"\"Seaman Ted 'Trigger' Fitzgerald\"\", 'Will Estes': \"\"Seaman Ronald 'Rabbit' Parker\"\", \"\"Terrence 'T.C.' Carson\"\": 'Steward Eddie Carson       (as T.C. Carson)', 'Erik Palladino': 'Seaman Anthony Mazzola', 'Dave Power': \"\"Seaman Charles 'Tank' Clemens\"\", 'Derk Cheetwood': 'Seaman Herb Griggs', 'Matthew Settle': 'Ens. Keith Larson'}\"\r\ntt0078504,\"{'Diana Ross': 'Dorothy', 'Michael Jackson': 'Scarecrow', 'Nipsey Russell': 'Tinman', 'Ted Ross': 'Lion /              Fleetwood Coupe de Ville', 'Mabel King': 'Evillene', 'Theresa Merritt': 'Aunt Em', 'Thelma Carpenter': 'Miss One', 'Lena Horne': 'Glinda the Good', 'Richard Pryor': 'The Wiz (Herman Smith)', 'Stanley Greene': 'Uncle Henry', 'Clyde J. Barrett': 'Subway Peddler', 'Derrick Bell': 'The Four Crows', 'Roderick-Spencer Sibert': 'The Four Crows', 'Kashka Banjoko': 'The Four Crows', \"\"Ronald 'Smokey' Stevens\"\": 'The Four Crows'}\"\r\ntt0307507,\"{'James Spader': 'John Parker', 'Leslie Stefanson': 'Natalie Wright', 'David Keith': 'Ray DeCarlo', 'John Livingston': 'FBI Agent Rick Kendall', 'Robert Miano': 'Lt. Vincent Marino', 'Alf Humphreys': \"\"Mike O'Grady       (as Alfred E. Humphreys)\"\", 'Tim Henry': 'Arlen Morris', 'Mark Holden': 'Roy Freeman', 'Scott Heindl': 'Steve Spizak', 'Alex Zahara': 'Tommy Meeker', 'Alvin Sanders': 'Harris', 'Cindy Maines': 'Female Teller', 'Karin Konoval': 'Dr. Alvarez', 'Christina Jastrzembska': 'Farm Woman', 'Chief Leonard George': 'Chief Samson Redcloud       (as Leonard George)'}\"\r\ntt0119395,\"{'Bruce Willis': 'The Jackal', 'Richard Gere': 'Declan Mulqueen', 'Sidney Poitier': 'Preston', 'Diane Venora': 'Valentina Koslova', 'Mathilda May': 'Isabella', 'J.K. Simmons': 'Witherspoon', 'Richard Lineback': 'McMurphy', 'John Cunningham': 'Donald Brown', 'Jack Black': 'Lamont', 'Tess Harper': 'The First Lady', 'Leslie Phillips': 'Woolburton', 'Stephen Spinella': 'Douglas', 'Sophie Okonedo': 'Jamaican Girl', 'David Hayman': 'Terek Murad', 'Steve Bassett': 'George Decker'}\"\r\ntt0089755,\"{'Meryl Streep': 'Karen', 'Robert Redford': 'Denys', 'Klaus Maria Brandauer': 'Bror', 'Michael Kitchen': 'Berkeley', 'Malick Bowens': 'Farah', 'Joseph Thiaka': 'Kamante', 'Stephen Kinyanjui': 'Kinanjui', 'Michael Gough': 'Delamere', 'Suzanna Hamilton': 'Felicity', 'Rachel Kempson': 'Lady Belfield', 'Graham Crowden': 'Lord Belfield', 'Leslie Phillips': 'Sir Joseph', 'Shane Rimmer': 'Belknap', 'Mike Bugara': 'Juma', 'Job Seda': 'Kanuthia'}\"\r\ntt0089469,\"{'Tom Cruise': 'Jack', 'Mia Sara': 'Lili', 'Tim Curry': 'Darkness', 'David Bennent': 'Gump', 'Alice Playten': 'Blix', 'Billy Barty': 'Screwball', 'Cork Hubbert': 'Brown Tom', \"\"Peter O'Farrell\"\": 'Pox', 'Kiran Shah': 'Blunder', 'Annabelle Lanyon': 'Oona', 'Robert Picardo': 'Meg Mucklebones', 'Tina Martin': 'Nell', 'Ian Longmur': 'Demon Cook       (as Ian Longmuir)', 'Michael Crane': 'Demon Cook       (as Mike Crane)', 'Liz Gilbert': 'Dancing Black Dress'}\"\r\ntt0112508,\"{'Adam Sandler': 'Billy Madison', 'Darren McGavin': 'Brian Madison', 'Bridgette Wilson-Sampras': 'Veronica Vaughn       (as Bridgette Wilson)', 'Bradley Whitford': 'Eric Gordon', 'Josh Mostel': 'Principal Max Anderson', 'Norm MacDonald': 'Frank', 'Mark Beltzman': 'Jack', 'Larry Hankin': 'Carl Alphonse', 'Theresa Merritt': 'Juanita', 'Dina Platias': 'Miss Lippy', 'Hrant Alianak': 'Pete', 'Vincent Marino': 'Cook', 'Jack Mather': \"\"Ted 'Old Man' Clemens\"\", 'Christopher Kelk': 'Rollo the Janitor', 'Marc Donato': 'Nodding 1st Grader'}\"\r\ntt0297884,\"{'Julianne Moore': 'Cathy Whitaker', 'Dennis Quaid': 'Frank Whitaker', 'Dennis Haysbert': 'Raymond Deagan', 'Patricia Clarkson': 'Eleanor Fine', 'Viola Davis': 'Sybil', 'James Rebhorn': 'Dr. Bowman', 'Bette Henritze': 'Mrs. Leacock', 'Michael Gaston': 'Stan Fine', 'Ryan Ward': 'David Whitaker', 'Lindsay Andretta': 'Janice Whitaker', 'Jordan Nia Elizabeth': 'Sarah Deagan       (as Jordan Puryear)', 'Kyle Timothy Smith': 'Billy Hutchinson       (as Kyle Smyth)', 'Celia Weston': 'Mona Lauder', 'Barbara Garrick': 'Doreen', 'Olivia Birkelund': 'Nancy'}\"\r\ntt0097216,\"{'Danny Aiello': 'Sal', 'Ossie Davis': 'Da Mayor', 'Ruby Dee': 'Mother Sister', 'Richard Edson': 'Vito', 'Giancarlo Esposito': 'Buggin Out', 'Spike Lee': 'Mookie', 'Bill Nunn': 'Radio Raheem', 'John Turturro': 'Pino', 'Paul Benjamin': 'ML', 'Frankie Faison': 'Coconut Sid', 'Robin Harris': 'Sweet Dick Willie', 'Joie Lee': 'Jade', 'Miguel Sandoval': 'Officer Ponte', 'Rick Aiello': 'Officer Long', 'John Savage': 'Clifton'}\"\r\ntt0127536,\"{'Liz Giles': 'Female Martyr', 'Rod Culbertson': 'Master Ridley', 'Paul Fox': 'Male Martyr', 'Terence Rigby': 'Bishop Gardiner', 'Christopher Eccleston': 'Duke of Norfolk', 'Peter Stockbridge': 'Palace Chamberlain', 'Amanda Ryan': 'Lettice Howard', 'Kathy Burke': 'Queen Mary Tudor', 'Valerie Gale': \"\"Mary's Dwarf\"\", 'George Antoni': 'King Philip II of Spain       (as George Yiasoumi)', 'James Frain': 'Alvaro de la Quadra', 'Jamie Foreman': 'Earl of Sussex', 'Edward Hardwicke': 'Earl of Arundel', 'Cate Blanchett': 'Elizabeth I', 'Emily Mortimer': 'Kat Ashley'}\"\r\ntt1133985,\"{'Ryan Reynolds': 'Hal Jordan /              Green Lantern', 'Blake Lively': 'Carol Ferris', 'Peter Sarsgaard': 'Hector Hammond', 'Mark Strong': 'Sinestro', 'Tim Robbins': 'Hammond', 'Jay O. Sanders': 'Carl Ferris', 'Taika Waititi': 'Tom Kalmaku', 'Angela Bassett': 'Doctor Waller', 'Mike Doyle': 'Jack Jordan', 'Nick Jandl': 'Jim Jordan', 'Dylan James': 'Jason Jordan', 'Gattlin Griffith': 'Young Hal', 'Jon Tenney': 'Martin Jordan', 'Leanne Cochran': 'Janice Jordan', 'Temuera Morrison': 'Abin Sur'}\"\r\ntt0160184,\"{'Sylvester Stallone': 'Jake Malloy', 'Charles S. Dutton': 'Hendricks', 'Polly Walker': 'Jenny', 'Kris Kristofferson': 'Doc', 'Mif': 'Brandon', 'Christopher Fulford': 'Slater', 'Jeffrey Wright': 'Jaworski', 'Tom Berenger': 'Hank', 'Stephen Lang': 'Jack Bennett', 'A.C. Peterson': 'Gilbert       (as Alan C. Peterson)', 'Hrothgar Mathews': 'Manny', 'Angela Alvarado': 'Lopez       (as Angela Alvarado Rosa)', 'Robert Prosky': 'McKenzie', 'Robert Patrick': 'Noah', 'Courtney B. Vance': 'Reverend Jones'}\"\r\ntt0790618,\"{'Katrina Begin': 'Sylvia', 'Charles Chen': 'Thomas', 'Melonie Diaz': 'Brianne', 'Sunny Doench': 'Mrs. Turner', 'Caroline Dollar': 'Kiki', 'Shahine Ezell': 'Eddie', 'Lyndsy Fonseca': 'Dawn', 'Alexis Gay': 'Girl at Kegger 1', 'Robert X. Golphin': 'Boy #2       (as Robert Golphin)', 'Amber Heard': 'Julia Ford', 'Aaron Himelstein': 'Riley', 'Max Hoffman': 'Zack', 'Thomas Holmes III': 'Ponte', 'Wesley Jonathan': 'Biz', 'Belinda Keller': 'Mrs. Cherry'}\"\r\ntt0112431,\"{'Christine Cavanaugh': 'Babe       (voice)', 'Miriam Margolyes': 'Fly       (voice)', 'Danny Mann': 'Ferdinand       (voice)', 'Hugo Weaving': 'Rex       (voice)', 'Miriam Flynn': 'Maa       (voice)', 'Russi Taylor': 'Cat       (voice) (as Russie Taylor)', 'Evelyn Krape': 'Old Ewe       (voice)', 'Michael Edward-Stevens': 'Horse       (voice)', 'Charles Bartlett': 'Cow       (voice)', 'Paul Livingston': 'Rooster       (voice)', 'Roscoe Lee Browne': 'Narrator       (voice)', 'James Cromwell': 'Farmer Hoggett', 'Magda Szubanski': 'Esme Hoggett', 'Zoe Burton': 'Daughter', 'Paul Goddard': 'Son-in-Law'}\"\r\ntt0343135,\"{'Ben Stiller': 'Reuben Feffer', 'Jennifer Aniston': 'Polly Prince', 'Philip Seymour Hoffman': 'Sandy Lyle', 'Debra Messing': 'Lisa Kramer', 'Alec Baldwin': 'Stan Indursky', 'Hank Azaria': 'Claude', 'Bryan Brown': 'Leland Van Lew', 'Jsu Garcia': 'Javier', 'Michele Lee': 'Vivian Feffer', 'Bob Dishy': 'Irving Feffer', 'Missi Pyle': 'Roxanne', 'Judah Friedlander': 'Dustin', 'Kevin Hart': 'Vic', 'Masi Oka': 'Wonsuk', 'Kym Whitley': 'Gladys       (as Kym E. Whitley)'}\"\r\ntt0114898,\"{'Kevin Costner': 'Mariner', 'Chaim Jeraffi': 'Drifter', 'Rick Aviles': 'Gatesman', 'R.D. Call': 'Enforcer', 'Zitto Kazann': 'Elder /              Survivor', 'Leonardo Cimino': 'Elder', 'Zakes Mokae': 'Priam', \"\"Luke Ka'ili Jr.\"\": 'Boy', 'Anthony DeMasters': 'Boy', 'Willy Petrovic': 'Boy', 'Jack Kehler': 'Banker', 'Jeanne Tripplehorn': 'Helen', 'Lanny Flaherty': 'Trader', 'Robert A. Silverman': 'Hydroholic', 'Gerard Murphy': 'Nord'}\"\r\ntt0259567,\"{'Martin Henderson': 'Drew Curtis', 'Piper Perabo': 'Julia Bishop', 'Jason Winer': 'Danny', 'Andrew Keegan': 'Trey Reynolds', 'Marisa Theodore': 'Ice Cream Attendant', 'Kathleen Wilhoite': 'Terri Curtis', 'Jennifer Tilly': 'Elyse Steinberg', 'Artie Lange': 'Lenny Steinberg', 'Derek Basco': 'Katute', 'Joe Pantoliano': 'Louis Carbonelli', 'Jennifer Julian': 'Yogurt Attendant', 'Cheryl Reeves': 'Katie', 'Nichole Hiltz': 'Celeste', 'Aaron Paul': 'Monty Brandt', 'Jesse Capelli': 'Aubrey       (as Jenny Leone)'}\"\r\ntt0300532,\"{'Kate Bosworth': 'Anne Marie Chadwick', 'Matthew Davis': 'Matt Tollman', 'Michelle Rodriguez': 'Eden', 'Sanoe Lake': 'Lena', 'Mika Boorem': 'Penny Chadwick', 'Chris Taloa': 'Drew', 'Kala Alexander': 'Kala', 'Ruben Tejada': 'JJ', 'Kaupena Miranda': 'Kaupena', 'Asa Aquino': 'Asa', 'Faizon Love': 'Leslie', 'Fiji': 'Fiji       (as George Veikoso)', 'Shaun Robinson': 'Omar', 'Paul Hatter': 'Paul', 'Tamayo Perry': 'Tamayo'}\"\r\ntt0163651,\"{'Jason Biggs': 'Jim Levenstein', 'Jennifer Coolidge': \"\"Stifler's Mom\"\", 'Shannon Elizabeth': 'Nadia', 'Alyson Hannigan': 'Michelle Flaherty', 'Chris Klein': \"\"Chris 'Oz' Ostreicher\"\", 'Clyde Kusatsu': 'English Teacher', 'Eugene Levy': \"\"Jim's Dad\"\", 'Natasha Lyonne': 'Jessica', 'Thomas Ian Nicholas': 'Kevin Myers', 'Chris Owen': 'Chuck Sherman', 'Lawrence Pressman': 'Coach Marshall', 'Tara Reid': \"\"Victoria 'Vicky' Lathum\"\", 'Seann William Scott': 'Steve Stifler       (as Seann W. Scott)', 'Mena Suvari': 'Heather', 'Eddie Kaye Thomas': 'Paul Finch'}\"\r\ntt0125439,\"{'Julia Roberts': 'Anna Scott', 'Hugh Grant': 'William Thacker', 'Richard McCabe': 'Tony', 'Rhys Ifans': 'Spike', 'James Dreyfus': 'Martin', 'Dylan Moran': 'Rufus the Thief', 'Roger Frost': 'Annoying Customer', 'Henry Goodman': 'Ritz Concierge', 'Julian Rhind-Tutt': \"\"'Time Out' Journalist\"\", 'Lorelei King': \"\"Anna's Publicist\"\", 'John Shrapnel': 'PR Chief', 'Clarke Peters': \"\"'Helix' Lead Actor\"\", 'Arturo Venegas': \"\"'Helix' Foreign Actor\"\", 'Yolanda Vazquez': \"\"'Helix' interview Interpreter\"\", 'Mischa Barton': \"\"'Helix' 12-year-old Actress\"\"}\"\r\ntt0391198,\"{'Sarah Michelle Gellar': 'Karen', 'Jason Behr': 'Doug', 'William Mapother': 'Matthew', 'Clea DuVall': 'Jennifer', 'KaDee Strickland': 'Susan', 'Grace Zabriskie': 'Emma', 'Bill Pullman': 'Peter', 'Rosa Blasi': 'Maria', 'Ted Raimi': 'Alex', 'Ryo Ishibashi': 'Nakagawa', 'Yôko Maki': 'Yoko', 'Yuya Ozeki': 'Toshio', 'Takako Fuji': 'Kayako', 'Takashi Matsuyama': 'Takeo', 'Hiroshi Matsunaga': 'Igarashi'}\"\r\ntt1645080,\"{'Freddie Highmore': 'George Zinavoy', 'Emma Roberts': 'Sally Howe', 'Sasha Spielberg': 'Zoe Rubenstein', 'Marcus Carl Franklin': 'Will Sharpe', 'Ann Dowd': 'Mrs. Grimes', 'Maya Ri Sanchez': 'Cynthia', 'Blair Underwood': 'Principal Martinson', 'Ann Harada': 'Mrs. Dougherty', 'Rita Wilson': 'Vivian Sargent', 'Jarlath Conroy': 'Harris McElroy', 'Elizabeth Reaser': 'Charlotte Howe', 'Andrew Levitas': 'Javier', 'Sam Robards': 'Jack Sargent', 'Alicia Silverstone': 'Ms. Herman', 'Michael Angarano': 'Dustin'}\"\r\ntt1645080,\"{'Freddie Highmore': 'George Zinavoy', 'Emma Roberts': 'Sally Howe', 'Sasha Spielberg': 'Zoe Rubenstein', 'Marcus Carl Franklin': 'Will Sharpe', 'Ann Dowd': 'Mrs. Grimes', 'Maya Ri Sanchez': 'Cynthia', 'Blair Underwood': 'Principal Martinson', 'Ann Harada': 'Mrs. Dougherty', 'Rita Wilson': 'Vivian Sargent', 'Jarlath Conroy': 'Harris McElroy', 'Elizabeth Reaser': 'Charlotte Howe', 'Andrew Levitas': 'Javier', 'Sam Robards': 'Jack Sargent', 'Alicia Silverstone': 'Ms. Herman', 'Michael Angarano': 'Dustin'}\"\r\ntt0463985,\"{'Lucas Black': 'Sean Boswell', 'Damien Marzette': 'High School Security Guard       (as Damien Marzett)', 'Trula M. Marcus': 'American Math Teacher       (as Trula Marcus)', 'Zachery Ty Bryan': 'Clay       (as Zachery Bryan)', 'Brandon Brendel': \"\"Clay's Buddy #1\"\", 'Daniel Booko': \"\"Clay's Buddy #2\"\", 'David V. Thomas': \"\"Clay's Buddy #3\"\", 'Amber Stevens West': 'Cheerleader #1       (as Amber Stevens)', 'Ashika Gogna': 'Cheerleader #2', 'Christian Salazar': 'Chubby Hispanic Kid', 'Kevin Caira': 'Auto Shop Bully #1', 'Trey Sanford': 'Auto Shop Bully #2       (as Julius Trey Sanford)', 'Danny Ray McDonald II': 'Auto Shop Bully #3', 'Nikki Griffin': \"\"Cindy - Clay's Girlfriend\"\", 'Vincent Laresca': 'Case Worker'}\"\r\ntt0414387,\"{'Keira Knightley': 'Elizabeth Bennet', 'Talulah Riley': 'Mary Bennet', 'Rosamund Pike': 'Jane Bennet', 'Jena Malone': 'Lydia Bennet', 'Carey Mulligan': 'Kitty Bennet', 'Donald Sutherland': 'Mr. Bennet', 'Brenda Blethyn': 'Mrs. Bennet', 'Claudie Blakley': 'Charlotte Lucas', 'Sylvester Morand': 'Sir William Lucas', 'Simon Woods': 'Mr. Bingley', 'Kelly Reilly': 'Caroline Bingley', 'Matthew Macfadyen': 'Mr. Darcy', 'Pip Torrens': 'Netherfield Butler', 'Janet Whiteside': 'Mrs. Hill', 'Sinead Matthews': 'Betsy'}\"\r\ntt0085959,\"{'Graham Chapman': 'Chairman /              Fish #1 /              Doctor /              Harry Blackitt /              Wymer /              Hordern /              General /              Coles /              Narrator #2 /              Dr. Livingstone /              Transvestite /              Eric /              Guest #1 /              Arthur Jarrett /              Geoffrey /              Tony Bennett', 'John Cleese': \"\"Fish #2 /              Dr. Spencer /              Humphrey Williams /              Sturridge /              Ainsworth /              Waiter /              Eric's Assistant /              Maître D' /              Grim Reaper\"\", 'Terry Gilliam': \"\"Window Washer /              Fish #4 /              Walters /              Middle of the Film Announcer /              M'Lady Joeline /              Mr. Brown /              Howard Katzenberg\"\", 'Eric Idle': \"\"Gunther /              Fish #3 /              'Meaning of Life' Singer /              Mr. Moore /              Mrs. Blackitt /              Watson /              Blackitt /              Atkinson /              Perkins /              Victim #3 /              Front End /              Mrs. Hendy /              Man in Pink /              Noël Coward /              Gaston /              Angela\"\", 'Terry Jones': 'Bert /              Fish #6 /              Mum /              Priest /              Biggs /              Sergeant /              Man with Bendy Arms /              Mrs. Brown /              Mr. Creosote /              Maria /              Leaf Father /              Fiona Portland-Smythe', 'Michael Palin': 'Window Washer /              Harry /              Fish #5 /              Mr. Pycroft /              Dad /              Narrator #1 /              Chaplain /              Carter /              Spadger /              Regimental Sergeant Major /              Pakenham-Walsh /              Rear End /              Female TV Presenter /              Mr. Marvin Hendy /              Governor /              Leaf Son /              Debbie Katzenberg', 'Carol Cleveland': 'Beefeater Waitress /              Wife of Guest #1 /              Leaf Mother /              Leaf Daughter /              Heaven Receptionist', 'Simon Jones': 'Chadwick /              Jeremy Portland-Smythe', 'Patricia Quinn': 'Mrs. Williams', 'Judy Loe': 'Nurse #1', 'Andrew MacLachlan': 'Groom /              Wycliff /              Victim #1 /              Guest #3', 'Mark Holmes': 'Victim #2 (Cheerful Severed Head) /              Troll Waiter /              Guest #2', 'Valerie Whittington': 'Mrs. Moore', 'Jennifer Franks': 'Bride', 'Imogen Bickford-Smith': 'Nurse #2       (as Imogen Bickford Smith)'}\"\r\ntt0132347,\"{'Hank Azaria': 'Blue Raja', 'Janeane Garofalo': 'Bowler', 'William H. Macy': 'Shoveler', 'Kel Mitchell': 'Invisible Boy', 'Paul Reubens': 'Spleen', 'Ben Stiller': 'Furious', 'Wes Studi': 'Sphinx', 'Greg Kinnear': 'Captain Amazing /              Lance', 'Geoffrey Rush': 'Casanova Frankenstein', 'Lena Olin': 'Dr. Anabel Leek', 'Eddie Izzard': 'Tony P', 'Artie Lange': 'Big Red', 'Pras Michel': 'Tony C       (as Prakazrel Michel)', 'Claire Forlani': 'Monica', 'Tom Waits': 'Doc Heller'}\"\r\ntt1019452,\"{'Michael Stuhlbarg': 'Larry Gopnik', 'Richard Kind': 'Uncle Arthur', 'Fred Melamed': 'Sy Ableman', 'Sari Lennick': 'Judith Gopnik', 'Aaron Wolff': 'Danny Gopnik', 'Jessica McManus': 'Sarah Gopnik', 'Peter Breitmayer': 'Mr. Brandt', 'Brent Braunschweig': 'Mitch Brandt', 'David Kang': 'Clive Park', 'Benjamin Portnoe': \"\"Danny's Reefer Buddy\"\", 'Jack Swiler': 'Boy on Bus', 'Andrew S. Lentz': 'Cursing Boy on Bus', 'Jon Kaminski Jr.': 'Mike Fagle', 'Ari Hoptman': 'Arlen Finkle', 'Alan Mandell': 'Rabbi Marshak'}\"\r\ntt0454848,\"{'Denzel Washington': 'Detective Keith Frazier', 'Clive Owen': 'Dalton Russell', 'Jodie Foster': 'Madeleine White', 'Christopher Plummer': 'Arthur Case', 'Willem Dafoe': 'Captain John Darius', 'Chiwetel Ejiofor': 'Detective Bill Mitchell', 'Carlos Andrés Gómez': 'Steve', 'Kim Director': 'Stevie', 'James Ransone': 'Steve-O', 'Bernie Rachelle': 'Chaim       (as Bernard Rachelle)', 'Peter Gerety': 'Captain Coughlin', 'Victor Colicchio': 'Sergeant Collins', 'Cassandra Freeman': 'Sylvia', 'Peter Frechette': 'Peter Hammond', 'Gerry Vichi': 'Herman Gluck'}\"\r\ntt0106308,\"{'Bruce Campbell': 'Ash', 'Embeth Davidtz': 'Sheila', 'Marcus Gilbert': 'Lord Arthur', 'Ian Abercrombie': 'Wiseman', 'Richard Grove': 'Duke Henry the Red', 'Timothy Patrick Quill': 'Blacksmith', 'Michael Earl Reid': 'Gold Tooth', 'Bridget Fonda': 'Linda', 'Patricia Tallman': 'Possessed Witch', 'Ted Raimi': 'Cowardly Warrior       (as Theodore Raimi)', 'Deke Anderson': 'Mini-Ash #1', 'Bruce Thomas': 'Mini-Ash #2', 'Sara Shearer': 'Old Woman', 'Shiva Gordon': 'Pit Deadite #1', 'Billy Bryan': 'Pit Bitch'}\"\r\ntt1013753,\"{'Sean Penn': 'Harvey Milk', 'Emile Hirsch': 'Cleve Jones', 'Josh Brolin': 'Dan White', 'Diego Luna': 'Jack Lira', 'James Franco': 'Scott Smith', 'Alison Pill': 'Anne Kronenberg', 'Victor Garber': 'Mayor Moscone', \"\"Denis O'Hare\"\": 'John Briggs', 'Joseph Cross': 'Dick Pabich', 'Stephen Spinella': 'Rick Stokes', 'Lucas Grabeel': 'Danny Nicoletta', 'Brandon Boyce': 'Jim Rivaldo', 'Howard Rosenman': 'David Goodstein       (as Zvi Howard Rosenman)', 'Kelvin Yu': 'Michael Wong', 'Jeff Koons': 'Art Agnos'}\"\r\ntt0120616,\"{'Brendan Fraser': \"\"Rick O'Connell\"\", 'Rachel Weisz': 'Evelyn Carnahan', 'John Hannah': 'Jonathan Carnahan', 'Arnold Vosloo': 'Imhotep', \"\"Kevin J. O'Connor\"\": 'Beni Gabor', 'Jonathan Hyde': 'Dr. Allen Chamberlain', 'Oded Fehr': 'Ardeth Bay', 'Erick Avari': 'Dr. Terrence Bey', 'Stephen Dunham': 'Mr. Henderson', 'Corey Johnson': 'Mr. Daniels', 'Tuc Watkins': 'Mr. Burns', 'Omid Djalili': 'Warden Gad Hassan', 'Aharon Ipalé': 'Pharaoh Seti I', 'Bernard Fox': 'Captain Winston Havelock', 'Patricia Velasquez': 'Anck Su Namun'}\"\r\ntt0209163,\"{'Brendan Fraser': \"\"Rick O'Connell\"\", 'Rachel Weisz': 'Evelyn Carnahan /              Nefertiri', 'John Hannah': 'Jonathan', 'Arnold Vosloo': 'Imhotep', 'Oded Fehr': 'Ardeth Bay', 'Patricia Velasquez': 'Meela /              Anck-Su-Namun', 'Freddie Boath': 'Alex', 'Alun Armstrong': 'Mr. Hafez', 'Dwayne Johnson': 'The Scorpion King       (as The Rock)', 'Adewale Akinnuoye-Agbaje': 'Lock-Nah', 'Shaun Parkes': 'Izzy', 'Bruce Byron': 'Red', 'Joe Dixon': 'Jacques', 'Tom Fisher': 'Spivey', 'Aharon Ipalé': 'Pharaoh'}\"\r\ntt0076723,\"{'Paul Newman': 'Reggie', 'Strother Martin': 'McGrath', 'Michael Ontkean': 'Ned Braden', 'Jennifer Warren': 'Francine', 'Lindsay Crouse': 'Lily', 'Jerry Houser': 'Killer Carlson', 'Andrew Duncan': 'Jim Carr', 'Jeff Carlson': 'Jeff Hanson', 'Steve Carlson': 'Steve Hanson', 'David Hanson': 'Jack Hanson', 'Yvon Barrette': 'Denis', 'Allan F. Nicholls': 'Upton       (as Allan Nicholls)', 'Brad Sullivan': 'Wanchuk', 'Stephen Mendillo': 'Jim Ahern', 'Yvan Ponton': 'Drouin'}\"\r\ntt0096320,\"{'Arnold Schwarzenegger': 'Julius Benedict', 'Danny DeVito': 'Vincent Benedict', 'Kelly Preston': 'Marnie Mason', 'Chloe Webb': 'Linda Mason', 'Bonnie Bartlett': 'Old Mary Ann Benedict', 'Marshall Bell': 'Webster', 'Trey Wilson': 'Beetroot McKinley', 'David Caruso': 'Al Greco', \"\"Hugh O'Brian\"\": 'Granger', 'Tony Jay': 'Werner', 'Nehemiah Persoff': 'Mitchell Traven', 'Maury Chaykin': 'Burt Klane', 'Tom McCleister': 'Bob Klane       (as Thom McCleister)', 'David Efron': 'Morris Klane', 'Peter Dvorsky': 'Peter Garfield'}\"\r\ntt0315733,\"{'Sean Penn': 'Paul Rivers', 'Naomi Watts': 'Cristina Peck', 'Danny Huston': 'Michael', 'Carly Nahon': 'Cathy', 'Claire Pakis': 'Laura', 'Benicio Del Toro': 'Jack Jordan', 'Nick Nichols': 'Boy', 'Charlotte Gainsbourg': 'Mary Rivers', 'John Rubinstein': 'Gynecologist', 'Eddie Marsan': 'Reverend John', 'Loyd Keith Salter': 'Fat Man', 'Antef A. Harris': 'Basketball Guy', 'Melissa Leo': 'Marianne Jordan', 'Marc Musso': 'Freddy       (as Marc Thomas Musso)', 'Teresa Delgado': 'Gina'}\"\r\ntt0077975,\"{'Tom Hulce': 'Larry Kroger       (as Thomas Hulce)', 'Stephen Furst': 'Kent Dorfman', 'Mark Metcalf': 'Doug Neidermeyer', 'Mary Louise Weller': 'Mandy Pepperidge', 'Martha Smith': 'Babs Jansen', 'James Daughton': 'Greg Marmalard', 'Kevin Bacon': 'Chip Diller', 'John Belushi': 'John Blutarsky', 'Douglas Kenney': 'Stork', 'Chris Miller': 'Hardbar       (as Christian Miller)', 'Bruce Bonnheim': 'B.B.', 'Karen Allen': 'Katy', 'James Widdoes': 'Robert Hoover', 'Tim Matheson': 'Eric Stratton', 'Peter Riegert': 'Donald Schoenstein'}\"\r\ntt0120693,\"{'Dave Chappelle': 'Thurgood Jenkins /              Sir Smoke-a-Lot', 'Guillermo Díaz': 'Scarface', 'Jim Breuer': 'Brian', 'Harland Williams': 'Kenny Davis', 'Rachel True': 'Mary Jane Potman', 'Clarence Williams III': 'Samson Simpson', 'Laura Silverman': 'Jan', 'Tommy Chong': 'Squirrel Master', 'R.D. Reid': 'Scientist', 'Gregg Rogell': 'Pothead', 'Kevin Brennan': 'Pothead', 'Alice Poon': 'Supply Clerk', 'Rick Demas': 'Nasty Nate', 'David Bluestein': 'Jerry Garcia', 'Kevin Duhaney': 'Young Thurgood'}\"\r\ntt0137363,\"{'Jeff Bridges': 'Michael Faraday', 'Tim Robbins': 'Oliver Lang', 'Joan Cusack': 'Cheryl Lang', 'Hope Davis': 'Brooke Wolfe', 'Robert Gossett': 'FBI Agent Whit Carver', 'Mason Gamble': 'Brady Lang', 'Spencer Treat Clark': 'Grant Faraday', 'Stanley Anderson': 'Dr. Archer Scobee', 'Viviane Vives': 'Nurse', 'Lee Stringer': 'Orderly', 'Darryl Cox': 'Troopmaster', 'Loyd Catlett': 'Delivery Man', 'Sid Hillman': 'Phone Technician', 'Auden Thornton': 'Hannah Lang', 'Mary Ashleigh Green': 'Daphne Lang'}\"\r\ntt0467200,\"{'Natalie Portman': 'Anne Boleyn', 'Scarlett Johansson': 'Mary Boleyn', 'Eric Bana': 'Henry Tudor', 'Jim Sturgess': 'George Boleyn', 'Mark Rylance': 'Sir Thomas Boleyn', 'Kristin Scott Thomas': 'Lady Elizabeth Boleyn', 'David Morrissey': 'The Duke of Norfolk', 'Benedict Cumberbatch': 'William Carey', 'Oliver Coleman': 'Henry Percy', 'Ana Torrent': 'Katherine of Aragon', 'Eddie Redmayne': 'William Stafford', 'Tom Cox': 'Rider', 'Michael Smiley': 'Physician', 'Montserrat Roig de Puig': 'Lady in Waiting', 'Juno Temple': 'Jane Parker'}\"\r\ntt0087182,\"{'Francesca Annis': 'Lady Jessica', 'Leonardo Cimino': \"\"The Baron's Doctor\"\", 'Brad Dourif': 'Piter De Vries', 'José Ferrer': 'Padishah Emperor Shaddam IV', 'Linda Hunt': 'Shadout Mapes', 'Freddie Jones': 'Thufir Hawat', 'Richard Jordan': 'Duncan Idaho', 'Kyle MacLachlan': 'Paul Atreides', 'Virginia Madsen': 'Princess Irulan', 'Silvana Mangano': 'Reverend Mother Ramallo', 'Everett McGill': 'Stilgar', 'Kenneth McMillan': 'Baron Vladimir Harkonnen', 'Jack Nance': 'Nefud', 'Siân Phillips': 'Reverend Mother Gaius Helen Mohiam       (as Sian Phillips)', 'Jürgen Prochnow': 'Duke Leto Atreides'}\"\r\ntt0100814,\"{'Kevin Bacon': 'Valentine McKee', 'Fred Ward': 'Earl Bass', 'Finn Carter': 'Rhonda LeBeck', 'Michael Gross': 'Burt Gummer', 'Reba McEntire': 'Heather Gummer', 'Robert Jayne': 'Melvin Plug       (as Bobby Jacoby)', 'Charlotte Stewart': 'Nancy', 'Tony Genaro': 'Miguel', 'Ariana Richards': 'Mindy', 'Richard Marcus': 'Nestor', 'Victor Wong': 'Walter Chang', 'Sunshine Parker': 'Edgar', 'Michael Dan Wagner': 'Old Fred', 'Conrad Bachmann': 'Jim - The Doctor', 'Bibi Besch': \"\"Megan - The Doctor's Wife\"\"}\"\r\ntt1452628,\"{'Hayden Christensen': 'Luke', 'John Leguizamo': 'Paul', 'Thandie Newton': 'Rosemary', 'Jacob Latimore': 'James', 'Taylor Groothuis': 'Briana', 'Jordan Trovillion': 'Concession Girl       (as Jordon Trovillion)', 'Arthur Cartwright': 'Security Guard', 'Neal Huff': 'Chicago Reporter', 'Hugh Maguire': 'Patient', 'Erin Nicole': 'Paige       (as Erin Nicole Brolley)', 'Stephen Clark': 'Male TV Anchor', 'Carolyn Clifford-Taylor': 'Female TV Anchor       (as Carolyn Clifford-Taylor)', 'Larry Fessenden': 'Bike Messenger', 'Nicholas Yu': 'Chinese Reporter       (as Nick Yu)'}\"\r\ntt1421051,\"{'Stephen Dorff': 'Johnny Marco', 'Chris Pontius': 'Sammy', 'Erin Wasson': 'Party Girl #1', 'Alexandra Williams': 'Party Girl #2', 'Nathalie Fay': 'Party Girl #3', 'Kristina Shannon': 'Bambi', 'Karissa Shannon': 'Cindy', 'John Prudhont': 'Chateau Patio Waiter', 'Ruby Corley': 'Patio Girl', 'Angela Lindvall': 'Blonde in Mercedes', 'Maryna Linchuk': 'Vampire Model', 'Meghan Collison': 'Vampire Model', 'Jessica Miller': 'Vampire Model', 'Elle Fanning': 'Cleo', 'Lala Sloatman': 'Layla'}\"\r\ntt0021814,\"{'Bela Lugosi': 'Count Dracula', 'Helen Chandler': 'Mina', 'David Manners': 'John Harker', 'Dwight Frye': 'Renfield', 'Edward Van Sloan': 'Van Helsing', 'Herbert Bunston': 'Doctor Seward', 'Frances Dade': 'Lucy', 'Joan Standing': 'Maid', 'Charles K. Gerrard': 'Martin       (as Charles Gerrard)'}\"\r\ntt0762107,\"{'Adam Sandler': 'Chuck Levine', 'Kevin James': 'Larry Valentine', 'Jessica Biel': 'Alex McDonough', 'Dan Aykroyd': 'Captain Tucker', 'Ving Rhames': 'Fred G. Duncan', 'Steve Buscemi': 'Clint Fitzer', 'Nicholas Turturro': 'Renaldo Pinera', 'Allen Covert': 'Steve', 'Rachel Dratch': 'Benefits Supervisor Sara Powers', 'Richard Chamberlain': 'Councilman Banks', 'Nick Swardson': 'Kevin McDonough', 'Blake Clark': 'Crazy Homeless Man', 'Mary Pat Gleason': 'Teresa', 'Matt Winston': 'Glen Aldrich', 'Lance Bass': 'Band Leader'}\"\r\ntt0414055,\"{'Jordi Mollà': 'King Philip ll of Spain       (as Jordi Molla)', 'Aimee King': 'Infanta', 'Cate Blanchett': 'Queen Elizabeth I', 'Laurence Fox': 'Sir Christopher Hatton', 'John Shrapnel': 'Lord Howard', 'Geoffrey Rush': 'Sir Francis Walsingham', 'Susan Lynch': 'Annette', 'Elise McCave': 'Laundry Woman', 'Samantha Morton': 'Mary Stuart', 'Abbie Cornish': 'Bess Throckmorton', 'Penelope McGhie': 'Margaret', 'Rhys Ifans': 'Robert Reston', 'Eddie Redmayne': 'Thomas Babington', 'Stuart McLoughlin': 'Savage', 'Clive Owen': 'Sir Walter Raleigh'}\"\r\ntt0232500,\"{'Paul Walker': \"\"Brian O'Conner\"\", 'Vin Diesel': 'Dominic Toretto', 'Michelle Rodriguez': 'Letty', 'Jordana Brewster': 'Mia Toretto', 'Rick Yune': 'Johnny Tran', 'Chad Lindberg': 'Jesse', 'Johnny Strong': 'Leon', 'Matt Schulze': 'Vince', 'Ted Levine': 'Sgt. Tanner', 'Ja Rule': 'Edwin', 'Vyto Ruginis': 'Harry', 'Thom Barry': 'Agent Bilkins', 'Stanton Rutledge': 'Muse', 'Noel Gugliemi': 'Hector       (as Noel Guglielmi)', 'R.J. de Vera': 'Danny Yamato       (as R.J. De Vera)'}\"\r\ntt0170016,\"{'Jim Carrey': 'Grinch', 'Taylor Momsen': 'Cindy Lou Who', 'Kelley': 'Max', 'Jeffrey Tambor': 'Mayor Augustus Maywho', 'Christine Baranski': 'Martha May Whovier', 'Bill Irwin': 'Lou Lou Who', 'Molly Shannon': 'Betty Lou Who', 'Clint Howard': 'Whobris', 'Josh Ryan Evans': '8-Year-Old Grinch', 'Mindy Sterling': 'Clarnella', 'Rachel Winfree': 'Rose', 'Rance Howard': 'Elderly Timekeeper', 'Jeremy Howard': 'Drew Lou Who', 'T.J. Thyne': 'Stu Lou Who', 'Lacey Kohl': 'Christina Whoterberry'}\"\r\ntt0115624,\"{'Amir AboulEla': 'Patron       (as Amir Aboulela)', 'Adriana Alexander': 'Redhead', 'David Andriole': 'Goon #2', 'Vanessa Lee Asher': 'Emily', 'Ron Balicki': 'Customs Agent #1', 'Jennifer Banko': 'Spike', 'Candace Kita': 'Dancer       (as Candace Camille Bender)', 'Xander Berkeley': 'Alexander Willis', 'Tony Bill': 'Foster', 'Alex Bookston': 'Man in White Suit', 'Gil Borgos': 'Old Man', 'Andre Rosey Brown': 'Big Fatso', 'Mark Collver': 'Manny       (as Marc Collver)', 'Tina Cote': 'Woman in Bar #1       (as Tina Coté)', 'Vinnie Curto': 'Aide to Pryzer'}\"\r\ntt0314331,\"{'Bill Nighy': 'Billy Mack', 'Gregor Fisher': 'Joe', 'Rory MacGregor': 'Engineer', 'Colin Firth': 'Jamie', 'Sienna Guillory': \"\"Jamie's Girlfriend\"\", 'Liam Neeson': 'Daniel', 'Emma Thompson': 'Karen', 'Lulu Popplewell': 'Daisy - Her Daughter', 'Kris Marshall': 'Colin Frissell', 'Heike Makatsch': 'Mia', 'Martin Freeman': 'John', 'Joanna Page': 'Just Judy', 'Chiwetel Ejiofor': 'Peter', 'Andrew Lincoln': 'Mark', 'Keira Knightley': 'Juliet'}\"\r\ntt0859163,\"{'Brendan Fraser': \"\"Rick O'Connell\"\", 'Jet Li': 'Emperor', 'Maria Bello': \"\"Evelyn O'Connell\"\", 'John Hannah': 'Jonathan Carnahan', 'Michelle Yeoh': 'Zi Yuan', 'Luke Ford': \"\"Alex O'Connell\"\", 'Isabella Leong': 'Lin', 'Anthony Chau-Sang Wong': 'General Yang       (as Chau Sang Anthony Wong)', 'Russell Wong': 'Ming Guo', 'Liam Cunningham': 'Maguire', 'David Calder': 'Roger Wilson', 'Jessey Meng': 'Choi', 'Tian Liang': 'Li Zhou', 'Albert Kwan': 'Chu Wah', 'Jing Wu': 'Assassin'}\"\r\ntt0181865,\"{'Benicio Del Toro': 'Javier Rodriguez', 'Jacob Vargas': 'Manolo Sanchez', 'Andrew Chavez': 'Desert Truck Driver', 'Michael Saucedo': 'Desert Truck Driver', 'Tomas Milian': 'General Arturo Salazar', 'Jose Yenque': 'Salazar Soldier /              The Torturer', 'Emilio Rivera': 'Salazar Soldier #2', \"\"Michael O'Neill\"\": 'Lawyer Rodman', 'Michael Douglas': 'Robert Wakefield', 'Russell G. Jones': 'Clerk', 'Lorene Hetherington': 'State Capitol Reporter #1', 'Eric Collins': 'State Capitol Reporter #2', 'Beau Holden': 'DEA Agent - CalTrans', 'Peter Stader': 'DEA Agent - CalTrans', 'James Lew': 'DEA Agent - CalTrans'}\"\r\ntt1357005,\"{'Tyler Porter': 'Doug', 'Michael Floodstrand': 'Luke', 'Catherine Glynn': 'Karen', 'Blythe Gilio': 'Megan', 'Julie DiJohn': 'Lamaze Partner', 'Hope Triplett': 'Lamaze partner extra'}\"\r\ntt0098554,\"{'John Candy': 'Buck Russell', 'Jean Louisa Kelly': 'Tia Russell', 'Gaby Hoffmann': 'Maizy Russell       (as Gaby Hoffman)', 'Macaulay Culkin': 'Miles Russell', 'Amy Madigan': 'Chanice Kobolowski', 'Elaine Bromka': 'Cindy Russell', 'Garrett M. Brown': 'Bob Russell', 'Laurie Metcalf': 'Marcie Dahlgren-Frost', 'Jay Underwood': 'Bug', 'Brian Tarantina': 'E. Roger Coswell', 'Mike Starr': 'Pooter-the-Clown', 'Suzanne Shepherd': 'Mrs. Hogarth', 'William Windom': 'Mr. Hatfield       (voice)', 'Dennis Cockrum': 'Pal', 'Joel Robinson': \"\"Miles' Friend #1\"\"}\"\r\ntt0477080,\"{'Denzel Washington': 'Frank', 'Chris Pine': 'Will', 'Rosario Dawson': 'Connie', 'Ethan Suplee': 'Dewey', 'Kevin Dunn': 'Galvin', 'Kevin Corrigan': 'Inspector Werner', 'Kevin Chapman': 'Bunny', 'Lew Temple': 'Ned', 'T.J. Miller': 'Gilleece', 'Jessy Schram': 'Darcy', 'David Warshofsky': 'Judd Stewart', 'Andy Umberger': 'Janeway', 'Elizabeth Mathis': 'Nicole', 'Meagan Tandy': 'Maya', 'Dylan Bruce': 'Michael Colson       (as Dylan L. Bruce)'}\"\r\ntt0388795,\"{'Heath Ledger': 'Ennis Del Mar', 'Jake Gyllenhaal': 'Jack Twist', 'Randy Quaid': 'Joe Aguirre', 'Valerie Planche': 'Waitress', 'Dave Trimble': 'Basque       (as David Trimble)', 'Victor Reyes': 'Chilean Sheepherder #1', 'Lachlan Mackintosh': 'Chilean Sheepherder #2', 'Michelle Williams': 'Alma', 'Larry Reese': 'Jolly Minister', 'Marty Antonini': 'Timmy', 'Tom Carey': 'Rodeo Clown', 'Dan McDougall': 'Bartender #1', 'Don Bland': 'Biker #1', 'Steven Cree Molison': 'Biker #2', 'Anne Hathaway': 'Lureen Newsome'}\"\r\ntt0268978,\"{'Russell Crowe': 'John Nash', 'Ed Harris': 'Parcher', 'Jennifer Connelly': 'Alicia Nash', 'Christopher Plummer': 'Dr. Rosen', 'Paul Bettany': 'Charles', 'Adam Goldberg': 'Sol', 'Josh Lucas': 'Hansen', 'Anthony Rapp': 'Bender', 'Jason Gray-Stanford': 'Ainsley', 'Judd Hirsch': 'Helinger', 'Austin Pendleton': 'Thomas King', 'Vivien Cardone': 'Marcee', 'Jillie Simon': 'Bar Co-Ed       (as Jill M. Simon)', 'Victor Steinbach': 'Professor Horner', 'Tanya Clarke': 'Becky'}\"\r\ntt0089155,\"{'Chevy Chase': \"\"Irwin 'Fletch' Fletcher\"\", 'Joe Don Baker': 'Chief Jerry Karlin', 'Dana Wheeler-Nicholson': 'Gail Stanwyk', 'Richard Libertini': 'Frank Walker', 'Tim Matheson': 'Alan Stanwyk', 'M. Emmet Walsh': 'Dr. Joseph Dolan', 'George Wendt': 'Fat Sam', 'Kenneth Mars': 'Stanton Boyd', 'Geena Davis': 'Larry', 'Bill Henderson': 'Speaker', 'William Traylor': 'Ted Underhill', 'George Wyner': 'Marvin Gillet', 'Tony Longo': 'Detective #1', 'Larry Flash Jenkins': 'Gummy', 'Ralph Seymour': 'Creasy'}\"\r\ntt0070735,\"{'Paul Newman': 'Henry Gondorff', 'Robert Redford': 'Johnny Hooker', 'Robert Shaw': 'Doyle Lonnegan', 'Charles Durning': 'Lt. Wm. Snyder', 'Ray Walston': 'J.J. Singleton', 'Eileen Brennan': 'Billie', 'Harold Gould': 'Kid Twist', 'John Heffernan': 'Eddie Niles', 'Dana Elcar': 'F.B.I. Agent Polk', 'Jack Kehoe': 'Erie Kid', 'Dimitra Arliss': 'Loretta', 'Robert Earl Jones': 'Luther Coleman       (as Robertearl Jones)', 'James Sloyan': 'Mottola       (as James J. Sloyan)', 'Charles Dierkop': 'Floyd (Bodyguard)', 'Lee Paul': 'Bodyguard'}\"\r\ntt1232824,\"{'Jeremy Sisto': 'Father John Buerlein', 'Kristin Chenoweth': 'Linda Salerno', 'Brian Baumgartner': \"\"Fr. Ralph O'Brien\"\", 'Bruce A. Young': 'Lloyd Montag', 'Amy Matthews': 'Nadine Brennan', 'Tony Papenfuss': 'Zeke', 'Greta Oglesby': 'Miriam', 'Ansa Akyea': 'James St. Clair', \"\"Isabell O'Connor\"\": \"\"Tessie Thomas       (as Isabell Monk O'Connor)\"\", 'Patrick Coyle': 'Steven Miller', 'Linda Kelsey': 'Corrine Buerlein', 'Lolita Lesheim': 'Della       (as Lola Lesheim)', 'Gene Larche': 'Gus', 'Marion Markham': 'Diane', 'Ann Milligan': 'Judy'}\"\r\ntt0099365,\"{'Liam Neeson': 'Peyton Westlake /              Darkman', 'Frances McDormand': 'Julie Hastings', 'Colin Friels': 'Louis Strack Jr.', 'Larry Drake': 'Robert G. Durant', 'Nelson Mashita': 'Yakitito', 'Jessie Lawrence Ferguson': 'Eddie Black', 'Rafael H. Robledo': 'Rudy Guzman', 'Dan Hicks': 'Skip       (as Danny Hicks)', 'Ted Raimi': 'Rick       (as Theodore Raimi)', 'Dan Bell': 'Smiley', 'Nicholas Worth': 'Pauly', 'Aaron Lustig': 'Martin Katz', \"\"Arsenio 'Sonny' Trinidad\"\": 'Hung Fat', 'Said Faraj': 'Convenience Store Clerk', 'Nathan Jung': 'Chinese Warrior'}\"\r\ntt0277296,\"{'Dwayne Johnson': 'Mathayus       (as The Rock)', 'Steven Brand': 'Memnon', 'Michael Clarke Duncan': 'Balthazar', 'Kelly Hu': 'The Sorceress', 'Bernard Hill': 'Philos', 'Grant Heslov': 'Arpid', 'Peter Facinelli': 'Takmet', 'Ralf Moeller': 'Thorak', 'Branscombe Richmond': 'Jesup', 'Roger Rees': 'King Pheron', 'Sherri Howard': 'Queen Isis', 'Conrad Roberts': 'Chieftain', 'Joseph Ruskin': 'Tribal Leader', 'Esteban Cueto': 'Third Akkadian', 'Nils Allen Stewart': 'Torturer'}\"\r\ntt0120780,\"{'George Clooney': 'Jack Foley', 'Jennifer Lopez': 'Karen Sisco', 'Jim Robinson': 'Bank Employee', 'Mike Malone': 'Bank Customer       (as Elgin Marlowe)', 'Ving Rhames': 'Buddy Bragg', 'Don Cheadle': 'Maurice Miller', 'Donna Frenzel': 'Bank Teller', 'Catherine Keener': 'Adele', 'Manny Suárez': 'Bank Cop       (as Manny Suarez)', 'Dennis Farina': 'Marshall Sisco', 'Keith Hudson': 'Bank Cop', 'Steve Zahn': 'Glenn Michaels', 'Albert Brooks': 'Richard Ripley', 'Luis Guzmán': 'Chino       (as Luis Guzman)', 'Paul Soileau': 'Lulu'}\"\r\ntt0088847,\"{'Emilio Estevez': 'Andrew Clark', 'Paul Gleason': 'Richard Vernon', 'Anthony Michael Hall': 'Brian Johnson', 'John Kapelos': 'Carl', 'Judd Nelson': 'John Bender', 'Molly Ringwald': 'Claire Standish', 'Ally Sheedy': 'Allison Reynolds', 'Perry Crawford': \"\"Allison's Father\"\", 'Mary Christian': \"\"Brian's Sister\"\", 'Ron Dean': \"\"Andy's Father\"\", 'Tim Gamble': \"\"Claire's Father\"\", 'Fran Gargano': \"\"Allison's Mom\"\", 'Mercedes Hall': \"\"Brian's Mom\"\"}\"\r\ntt0338526,\"{'Hugh Jackman': 'Van Helsing', 'Kate Beckinsale': 'Anna Valerious', 'Richard Roxburgh': 'Count Vladislaus Dracula', 'David Wenham': 'Carl', 'Shuler Hensley': \"\"Frankenstein's Monster\"\", 'Elena Anaya': 'Aleera', 'Will Kemp': 'Velkan', \"\"Kevin J. O'Connor\"\": 'Igor', 'Alun Armstrong': 'Cardinal Jinette', 'Silvia Colloca': 'Verona', 'Josie Maran': 'Marishka', 'Tom Fisher': 'Top Hat', 'Samuel West': 'Dr. Victor Frankenstein', 'Robbie Coltrane': 'Mr. Hyde', 'Stephen Fisher': 'Dr. Jekyll       (as Stephen H. Fisher)'}\"\r\ntt0083929,\"{'Sean Penn': 'Jeff Spicoli', 'Jennifer Jason Leigh': 'Stacy Hamilton', 'Judge Reinhold': 'Brad Hamilton', 'Robert Romanus': 'Mike Damone', 'Brian Backer': \"\"Mark 'Rat' Ratner\"\", 'Phoebe Cates': 'Linda Barrett', 'Ray Walston': 'Mr. Hand', 'Scott Thomson': 'Arnold', 'Vincent Schiavelli': 'Mr. Vargas', 'Amanda Wyss': 'Lisa', 'D.W. Brown': 'Ron Johnson', 'Forest Whitaker': 'Charles Jefferson', 'Kelli Maroney': 'Cindy', 'Tom Nolan': 'Dennis Taylor', 'Blair Tefkin': 'Pat Bernardo       (as Blair Ashleigh)'}\"\r\ntt0452594,\"{'Vince Vaughn': 'Gary Grobowski', 'Jennifer Aniston': 'Brooke Meyers', 'Joey Lauren Adams': 'Addie', 'Cole Hauser': 'Lupus Grobowski', 'Jon Favreau': 'Johnny O', 'Jason Bateman': 'Riggleman', 'Judy Davis': 'Marilyn Dean', 'Justin Long': 'Christopher', 'Ivan Sergei': 'Carson Wigham', 'John Michael Higgins': 'Richard Meyers', 'Ann-Margret': 'Wendy Meyers', 'Vernon Vaughn': 'Howard Meyers', \"\"Vincent D'Onofrio\"\": 'Dennis Grobowski', 'Elaine Robinson': 'Carol Grobowski', 'Jane Alderman': 'Mrs. Grobowski'}\"\r\ntt0106677,\"{'Jason London': 'Pink', 'Joey Lauren Adams': 'Simone', 'Milla Jovovich': 'Michelle', 'Shawn Andrews': 'Pickford', 'Rory Cochrane': 'Slater', 'Adam Goldberg': 'Mike', 'Anthony Rapp': 'Tony', 'Sasha Jenson': 'Don', 'Marissa Ribisi': 'Cynthia', 'Deena Martin': 'Shavonne', 'Michelle Burke': 'Jodi', 'Cole Hauser': 'Benny', 'Christine Harnos': 'Kaye', 'Wiley Wiggins': 'Mitch', 'Mark Vandermeulen': 'Tommy'}\"\r\ntt1201167,\"{'Adam Sandler': 'George Simmons', 'Seth Rogen': 'Ira Wright', 'Leslie Mann': 'Laura', 'Eric Bana': 'Clarke', 'Jonah Hill': 'Leo Koenig', 'Jason Schwartzman': 'Mark Taylor Jackson', 'Aubrey Plaza': 'Daisy Danby', 'Maude Apatow': 'Mable', 'Iris Apatow': 'Ingrid', 'RZA': 'Chuck', 'Aziz Ansari': 'Randy', 'Torsten Voges': 'Dr. Lars', 'Allan Wasserman': 'Dr. Stevens', 'Rod Man': 'Rod Man', 'Wayne Federman': 'Comedy & Magic Manager'}\"\r\ntt1152836,\"{'Christian Bale': 'Melvin Purvis', 'Christian Stolte': 'Charles Makley', 'Jason Clarke': \"\"'Red' Hamilton\"\", 'Johnny Depp': 'John Dillinger', 'Stephen Graham': 'Baby Face Nelson', 'David Wenham': \"\"Harry 'Pete' Pierpont\"\", 'John Judd': 'Turnkey', 'Stephen Dorff': 'Homer Van Meter', 'Michael Vieau': 'Ed Shouse', 'John Kishline': 'Guard Dainard', 'Carey Mulligan': 'Carol Slayman', 'James Russo': 'Walter Dietrich', 'Giovanni Ribisi': 'Alvin Karpis', 'Wesley Walker': 'Jim Leslie', 'John Scherp': 'Earl Adams'}\"\r\ntt0463034,\"{'Owen Wilson': 'Dupree', 'Kate Hudson': 'Molly', 'Matt Dillon': 'Carl', 'Michael Douglas': 'Mr. Thompson', 'Seth Rogen': 'Neil', 'Amanda Detmer': 'Annie', 'Ralph Ting': 'Toshi', 'Todd Stashwick': 'Tony', 'Bill Hader': 'Mark', 'Lance Armstrong': 'Himself', 'Jason Winer': 'Eddie', 'Sidney S. Liufau': 'Paco       (as Sidney Liufau)', 'Billy Gardell': 'Bartender Dave', 'Eli Vargas': 'Aaron', 'Houston Mack': 'Dougie       (as Houston McCrillis)'}\"\r\ntt0087597,\"{'Kay E. Kuter': 'Enduran', 'Dan Mason': 'Lord Kril', 'Lance Guest': 'Alex Rogan /              Beta Alex', \"\"Dan O'Herlihy\"\": 'Grig', 'Catherine Mary Stewart': 'Maggie Gordon', 'Barbara Bosson': 'Jane Rogan', 'Norman Snow': 'Xur', 'Robert Preston': 'Centauri', 'Chris Hebert': 'Louis Rogan', \"\"John O'Leary\"\": 'Rylan Bursar', 'George McDaniel': 'Kodan Officer', 'Charlene Nelson': 'Rylan Technician', 'John Maio': 'Friendly Alien', 'Robert Starr': 'Underling', 'Al Berry': 'Rylan Spy'}\"\r\ntt0475394,\"{'Ryan Reynolds': 'Richard Messner', 'Ray Liotta': 'Donald Carruthers', 'Joseph Ruskin': 'Primo Sparazza', 'Alex Rocco': 'Serna', 'Wayne Newton': 'Wayne Newton', 'Jeremy Piven': 'Buddy Israel', 'Ben Affleck': 'Jack Dupree', 'Peter Berg': '\"\"Pistol\"\" Pete Deeks', 'Martin Henderson': 'Hollis Elmore', 'Common': 'Sir Ivy', 'Christopher Michael Holley': 'Beanie       (as Christopher Holley)', 'Andy Garcia': 'Stanley Locke', 'Mike Falkow': 'Freeman Heller', 'Joe Drago': 'FBI Aid', 'Jeff Habberstad': 'Top Coated Gunman'}\"\r\ntt1082601,\"{'Channing Tatum': 'Shawn MacArthur', 'Terrence Howard': 'Harvey Boarden', 'Zulay Henao': 'Zulay Velez', 'Michael Rivera': 'Ajax', 'Flaco Navaja': 'Ray Ray', 'Peter Anthony Tambakis': 'Z       (as Peter Tambakis)', 'Luis Guzmán': 'Martinez', 'Anthony DeSando': 'Christopher Anthony', 'Roger Guenveur Smith': 'Jack Dancing', 'Brian White': 'Evan Hailey', 'Ivan Martin': 'Stockbroker Jerry', 'Danny Mastrogiorgio': 'Trader Jim', 'Altagracia Guzman': 'Alba Guzmán', 'Gabrielle Pelucco': 'Lila', 'Angelic Zambrana': \"\"Kimo's Girl\"\"}\"\r\ntt0384793,\"{'Justin Long': 'Bartleby Gaines', 'Jonah Hill': 'Sherman Schrader', 'Adam Herschman': 'Glen', 'Columbus Short': \"\"Daryl 'Hands' Holloway\"\", 'Maria Thayer': 'Rory Thayer', 'Lewis Black': 'Ben Lewis', 'Blake Lively': 'Monica Moreland', 'Mark Derwin': 'Jack Gaines', 'Ann Cusack': 'Diane Gaines', 'Hannah Marks': 'Lizzie Gaines', 'Robin Lord Taylor': 'Abernathy Darwin Dunlap', 'Sam Horrigan': 'Mike Welsh', 'Joe Hursley': 'Maurice /              The Ringers', 'Jeremy Howard': 'Freaky Student', 'Anthony Heald': 'Dean Richard Van Horne'}\"\r\ntt0290002,\"{'Robert De Niro': 'Jack Byrnes', 'Ben Stiller': 'Greg Focker', 'Dustin Hoffman': 'Bernie Focker', 'Barbra Streisand': 'Rozalin Focker', 'Blythe Danner': 'Dina Byrnes', 'Teri Polo': 'Pam Byrnes', 'Owen Wilson': 'Kevin Rawley', 'Spencer Pickren': 'Little Jack', 'Bradley Pickren': 'Little Jack', 'Alanna Ubach': 'Isabel Villalobos', 'Ray Santiago': 'Jorge Villalobos', 'Tim Blake Nelson': 'Officer LeFlore', 'Shelley Berman': 'Judge Ira', 'Kali Rocha': 'Flight Attendant', 'Dorie Barton': 'Airline Clerk'}\"\r\ntt0056923,\"{'Cary Grant': 'Peter Joshua', 'Audrey Hepburn': 'Regina Lampert', 'Walter Matthau': 'Hamilton Bartholomew', 'James Coburn': 'Tex Panthollow', 'George Kennedy': 'Herman Scobie', 'Dominique Minot': 'Sylvie Gaudet', 'Ned Glass': 'Leopold W. Gideon', 'Jacques Marin': 'Insp. Edouard Grandpierre', 'Paul Bonifas': 'Mr. Felix', 'Thomas Chelimsky': 'Jean-Louis Gaudet'}\"\r\ntt0405422,\"{'Steve Carell': 'Andy', 'Catherine Keener': 'Trish', 'Paul Rudd': 'David', 'Romany Malco': 'Jay', 'Seth Rogen': 'Cal', 'Elizabeth Banks': 'Beth', 'Leslie Mann': 'Nicky', 'Jane Lynch': 'Paula', 'Gerry Bednob': 'Mooj', 'Shelley Malil': 'Haziz', 'Kat Dennings': 'Marla', 'Jordan Masterson': 'Mark', 'Chelsea Smith': 'Julia', 'Jonah Hill': 'E-Bay Customer', 'Erica Vittina Phillips': 'Jill'}\"\r\ntt0118715,\"{'Jeff Bridges': 'The Dude', 'John Goodman': 'Walter Sobchak', 'Julianne Moore': 'Maude Lebowski', 'Steve Buscemi': \"\"Theodore Donald 'Donny' Kerabatsos\"\", 'David Huddleston': 'The Big Lebowski', 'Philip Seymour Hoffman': 'Brandt', 'Tara Reid': 'Bunny Lebowski', 'Philip Moon': 'Woo, Treehorn Thug', 'Mark Pellegrino': 'Blond Treehorn Thug', 'Peter Stormare': \"\"Nihilist #1, Uli Kunkel /              'Karl Hungus'\"\", 'Flea': 'Nihilist #2, Kieffer', 'Torsten Voges': 'Nihilist #3, Franz', 'Jimmie Dale Gilmore': 'Smokey', 'Jack Kehler': 'Marty', 'John Turturro': 'Jesus Quintana'}\"\r\ntt0082010,\"{'Joe Belcher': 'Truck Driver', 'David Naughton': 'David Kessler', 'Griffin Dunne': 'Jack Goodman', 'David Schofield': 'Dart Player', 'Brian Glover': 'Chess Player', 'Lila Kaye': 'Barmaid', 'Rik Mayall': '2nd Chess Player', 'Sean Baker': '2nd Dart Player', 'Paddy Ryan': 'First Werewolf', 'Jenny Agutter': 'Nurse Alex Price', 'Anne-Marie Davies': 'Nurse Susan Gallagher', 'John Woodvine': 'Dr. J. S. Hirsch', 'Frank Oz': 'Mr. Collins /              Miss Piggy', 'Don McKillop': 'Inspector Villiers', 'Paul Kember': 'Sergeant McManus'}\"\r\ntt1127896,\"{'Henry Goodman': 'Jake Teichberg', 'Edward Hibbert': 'British Gentleman', 'Imelda Staunton': 'Sonia Teichberg', 'Demetri Martin': 'Elliot Teichberg', 'Kevin Chamberlin': 'Jackson Spiers', 'Lee Wong': 'George the Doorman       (as Takeo Lee Wong)', 'Anthoula Katsimatides': 'Esther', 'Clark Middleton': 'Frank', 'Bette Henritze': 'Annie', 'Sondra James': 'Margaret', 'Jeffrey Dean Morgan': 'Dan', 'Christina Kirk': 'Carol', 'Gail Martino': 'Town Clerk', 'Emile Hirsch': 'Billy', 'Adam LeFevre': 'Dave'}\"\r\ntt0871426,\"{'Amy Poehler': 'Angie', 'Tina Fey': 'Kate', 'Greg Kinnear': 'Rob', 'Dax Shepard': 'Carl', 'Romany Malco': 'Oscar', 'Sigourney Weaver': 'Chaffee Bicknell', 'Steve Martin': 'Barry', 'Maura Tierney': 'Caroline', 'Stephen Mailer': 'Dan', 'Holland Taylor': 'Rose', 'James Rebhorn': 'Judge', \"\"Denis O'Hare\"\": 'Dr. Manheim', 'Kevin Collins': 'Architect /              Rick', 'Will Forte': 'Scott', 'Fred Armisen': 'Stroller Salesman'}\"\r\ntt0105323,\"{'Al Pacino': 'Lt. Col. Frank Slade', \"\"Chris O'Donnell\"\": 'Charlie Simms', 'James Rebhorn': 'Mr. Trask', 'Gabrielle Anwar': 'Donna', 'Philip Seymour Hoffman': 'George Willis, Jr.       (as Philip S. Hoffman)', 'Richard Venture': 'W.R. Slade', 'Bradley Whitford': 'Randy', 'Rochelle Oliver': 'Gretchen', 'Margaret Eginton': 'Gail', 'Tom Riis Farrell': 'Garry', 'Nicholas Sadler': 'Harry Havemeyer', 'Todd Louiso': 'Trent Potter', 'Matt Smith': 'Jimmy Jameson', 'Gene Canfield': 'Manny', 'Frances Conroy': 'Christine Downes'}\"\r\ntt0086250,\"{'Al Pacino': 'Tony Montana', 'Steven Bauer': 'Manny Ribera', 'Michelle Pfeiffer': 'Elvira', 'Mary Elizabeth Mastrantonio': 'Gina', 'Robert Loggia': 'Frank Lopez', 'Miriam Colon': 'Mama Montana', 'F. Murray Abraham': 'Omar', 'Paul Shenar': 'Alejandro Sosa', 'Harris Yulin': 'Bernstein', 'Ángel Salazar': 'Chi Chi', 'Arnaldo Santana': 'Ernie', 'Pepe Serna': 'Angel', 'Michael P. Moran': 'Nick The Pig', 'Al Israel': 'Hector The Toad', 'Dennis Holahan': 'Banker'}\"\r\ntt0091225,\"{'Lea Thompson': 'Beverly Switzler', 'Jeffrey Jones': 'Dr. Walter Jenning', 'Tim Robbins': 'Phil Blumburtt', 'Ed Gale': 'Howard T. Duck', 'Chip Zien': 'Howard T. Duck       (voice)', 'Tim Rose': 'Howard T. Duck', 'Steve Sleap': 'Howard T. Duck', 'Peter Baird': 'Howard T. Duck', 'Mary Wells': 'Howard T. Duck', 'Lisa Sturz': 'Howard T. Duck', 'Jordan Prentice': 'Howard T. Duck', 'Paul Guilfoyle': 'Lieutenant Welker', 'Liz Sagal': 'Ronette, Cherry Bomb', 'Dominique Davalos': 'Cal, Cherry Bomb', 'Holly Robinson Peete': 'K.C., Cherry Bomb       (as Holly Robinson)'}\"\r\ntt0095489,\"{'Judith Barsi': 'Ducky       (voice)', 'Pat Hingle': 'Narrator /              Rooter       (voice)', 'Gabriel Damon': 'Littlefoot       (voice)', 'Helen Shaver': \"\"Littlefoot's Mother       (voice)\"\", 'Bill Erwin': 'Grandfather       (voice)', 'Burke Byrnes': 'Daddy Topps       (voice)', 'Candace Hutson': 'Cera       (voice) (as Candy Hutson)', 'Will Ryan': 'Petrie       (voice)'}\"\r\ntt0046876,\"{'Richard Carlson': 'David Reed', 'Julie Adams': 'Kay Lawrence       (as Julia Adams)', 'Richard Denning': 'Mark Williams', 'Antonio Moreno': 'Carl Maia', 'Nestor Paiva': 'Lucas', 'Whit Bissell': 'Dr. Thompson', 'Bernie Gozier': 'Zee', 'Henry A. Escalante': 'Chico       (as Henry Escalante)'}\"\r\ntt0076729,\"{'Burt Reynolds': 'Bandit', 'Sally Field': 'Carrie', 'Jerry Reed': 'Cledus', 'Mike Henry': 'Junior', 'Paul Williams': 'Little Enos', 'Pat McCormick': 'Big Enos', 'Alfie Wise': 'Patrolman at Traffic Jam', 'George Reynolds': 'Branford', 'Macon McCalman': 'Mr. B', 'Linda McClure': 'Waynette', 'Susie Ewing': 'Hot Pants       (as Susan McIver)', 'Laura Lizer Sommers': 'Little Beaver       (as Laura Lizer)', 'Michael Mann': \"\"Branford's Deputy\"\", 'Lamar Jackson': 'Sugar Bear', 'Ronnie Gay': 'Georgia Trooper'}\"\r\ntt0870111,\"{'Frank Langella': 'Richard Nixon', 'Michael Sheen': 'David Frost', 'Sam Rockwell': 'James Reston, Jr.', 'Kevin Bacon': 'Jack Brennan', 'Matthew Macfadyen': 'John Birt', 'Oliver Platt': 'Bob Zelnick', 'Rebecca Hall': 'Caroline Cushing', 'Toby Jones': 'Swifty Lazar', 'Andy Milder': 'Frank Gannon', 'Kate Jennings Grant': 'Diane Sawyer', 'Gabriel Jarret': 'Ken Khachigian', 'Jim Meskimen': 'Ray Price', 'Patty McCormack': 'Pat Nixon', 'Geoffrey Blake': 'Interview Director', 'Clint Howard': 'Lloyd Davis'}\"\r\ntt0478311,\"{'Seth Rogen': 'Ben Stone', 'Katherine Heigl': 'Alison Scott', 'Paul Rudd': 'Pete', 'Leslie Mann': 'Debbie', 'Jason Segel': 'Jason', 'Jay Baruchel': 'Jay', 'Jonah Hill': 'Jonah', 'Martin Starr': 'Martin', 'Charlyne Yi': 'Jodi', 'Iris Apatow': 'Charlotte', 'Maude Apatow': 'Sadie', 'Joanna Kerns': \"\"Alison's Mom\"\", 'Harold Ramis': \"\"Ben's Dad\"\", 'Alan Tudyk': 'Jack', 'Kristen Wiig': 'Jill'}\"\r\ntt1532503,\"{'Ewan McGregor': 'Oliver', 'Christopher Plummer': 'Hal', 'Mélanie Laurent': 'Anna', 'Goran Visnjic': 'Andy', 'Kai Lennox': 'Elliot', 'Mary Page Keller': 'Georgia', 'Keegan Boos': 'Young Oliver', 'China Shavers': 'Shauna', 'Melissa Tang': 'Liz', 'Amanda Payton': 'Party Person', 'Luke Diliberto': 'Green Witch', 'Lou Taylor Pucci': 'Magician', 'Bambadjan Bamba': 'The Sads', 'Hana Jane': 'The Sads       (as Hana Hwang)', 'Samuel T. Ritter': 'The Sads'}\"\r\ntt0412019,\"{'Bill Murray': 'Don Johnston', 'Julie Delpy': 'Sherry', 'Heather Simms': 'Mona       (as Heather Alicia Simms)', 'Brea Frazier': 'Rita', 'Jarry Fall': \"\"Winston and Mona's Kid       (as Jarry)\"\", 'Korka Fall': \"\"Winston and Mona's Kid\"\", 'Saul Holland': \"\"Winston and Mona's Kid       (as Saul)\"\", 'Zakira Holland': \"\"Winston and Mona's Kid\"\", 'Niles Lee Wilson': \"\"Winston and Mona's Kid\"\", 'Jeffrey Wright': 'Winston', 'Meredith Patterson': 'Flight Attendant', 'Jennifer Rapp': 'Girl on Bus', 'Nicole Abisinio': 'Girl on Bus', 'Ryan Donowho': 'Young Man on Bus', 'Alexis Dziena': 'Lolita'}\"\r\ntt0253474,\"{'Adrien Brody': 'Wladyslaw Szpilman', 'Emilia Fox': 'Dorota', 'Michal Zebrowski': 'Jurek', 'Ed Stoppard': 'Henryk', 'Maureen Lipman': 'Mother', 'Frank Finlay': 'Father', 'Jessica Kate Meyer': 'Halina', 'Julia Rayner': 'Regina', 'Wanja Mues': 'SS Slapping Father', 'Richard Ridings': 'Mr. Lipa', 'Nomi Sharron': 'Feather Woman', 'Anthony Milner': 'Man Waiting to Cross', 'Lucy Skeaping': 'Street Musician       (as Lucie Skeaping)', 'Roddy Skeaping': 'Street Musician', 'Ben Harlan': 'Street Musician'}\"\r\ntt0340855,\"{'Charlize Theron': 'Aileen', 'Christina Ricci': 'Selby', 'Bruce Dern': 'Thomas', 'Lee Tergesen': 'Vincent Corey', 'Annie Corley': 'Donna', 'Pruitt Taylor Vince': 'Gene /              Stuttering \"\"John\"\"', 'Marco St. John': 'Evan /              Undercover \"\"John\"\"', 'Marc Macaulay': 'Will /              Daddy \"\"John\"\"', 'Scott Wilson': 'Horton /              Last \"\"John\"\"', 'Rus Blackwell': 'Cop', 'Tim Ware': 'Chuck', 'Stephan Jones': 'Lawyer', 'Brett Rice': 'Charles', 'Kaitlin Riley': 'Teenage Aileen', 'Cree Ivey': '7-Year-Old Aileen'}\"\r\ntt1226229,\"{'Russell Brand': 'Aldous Snow', 'Rose Byrne': 'Jackie Q', 'Tyler McKinney': 'African Child in Video', 'Zoe Salmon': 'Zoe Salmon', 'Lino Facioli': 'Naples', 'Lars Ulrich': 'Lars Ulrich', 'Mario Lopez': 'Mario Lopez       (as Mario López)', 'Pink': 'Pink', 'Billy Bush': 'Billy Bush', 'Kurt Loder': 'Kurt Loder       (as Kurt F. Loder)', 'Christina Aguilera': 'Christina Aguilera', 'Colm Meaney': 'Jonathan Snow', 'Ray Siegle': 'Paparazzo in LA', 'Chad Cleven': 'Paparazzo in LA', 'Jonathan Chris Lopez': 'Paparazzo in LA'}\"\r\ntt0097351,\"{'Kevin Costner': 'Ray Kinsella', 'Amy Madigan': 'Annie Kinsella', 'Gaby Hoffmann': 'Karin Kinsella', 'Ray Liotta': 'Shoeless Joe Jackson', 'Timothy Busfield': 'Mark', 'James Earl Jones': 'Terence Mann', 'Burt Lancaster': \"\"Dr. Archibald 'Moonlight' Graham\"\", 'Frank Whaley': 'Archie Graham', 'Dwier Brown': 'John Kinsella', 'James Andelin': 'Feed Store Farmer', 'Mary Anne Kean': 'Feed Store Lady', 'Fern Persons': \"\"Annie's Mother\"\", 'Kelly Coffield Park': \"\"Dee, Mark's Wife       (as Kelly Coffield)\"\", 'Michael Milhoan': 'Buck Weaver - 3B', 'Steve Eastin': 'Eddie Cicotte - P'}\"\r\ntt0100301,\"{'Dana Carvey': 'Eddie', 'Robert Loggia': 'Milt', 'Todd Graff': 'Lou', 'Julia Campbell': 'Annie', \"\"Milo O'Shea\"\": 'Max', 'James Tolkan': 'Sal', 'Doris Belack': 'Mona', 'Sally Gracie': 'Connie', 'Mike Bacarella': 'Pinkie', 'John M. Watson Sr.': 'Harold Monroe', 'Beatrice Fredman': 'Bubbie', 'Thomas McElroy': \"\"Men's Room Attendant\"\", 'Jack McLaughlin-Gray': 'Wine Steward', 'Gene Honda': 'Japanese Businessman', 'Del Close': 'Williamson'}\"\r\ntt0800039,\"{'Jason Segel': 'Peter Bretter', 'Kristen Bell': 'Sarah Marshall', 'Mila Kunis': 'Rachel Jansen', 'Russell Brand': 'Aldous Snow', 'Bill Hader': 'Brian Bretter', 'Liz Cackowski': 'Liz Bretter', 'Maria Thayer': 'Wyoma', 'Jack McBrayer': 'Darald', 'Taylor Wily': 'Kemo', \"\"Da'Vone McDonald\"\": 'Dwayne the Bartender', 'Steve Landesberg': 'Dr. Rosenbaum', 'Jonah Hill': 'Matthew the Waiter', 'Paul Rudd': 'Chuck', 'Kala Alexander': 'Greg', 'Kalani Robb': 'Helpful Hawaiian Waiter'}\"\r\ntt0195685,\"{'Julia Roberts': 'Erin Brockovich', 'David Brisbin': 'Dr. Jaffe', 'Dawn Didawick': 'Rosalind', 'Albert Finney': 'Ed Masry', 'Valente Rodriguez': 'Donald', 'Conchata Ferrell': 'Brenda', 'George Rocky Sullivan': 'Los Angeles Judge', 'Pat Skipper': 'Defending Lawyer', 'Jack Gill': 'Defendant', 'Irene Olga López': 'Mrs. Morales', 'Emily Marks': 'Beth (8 months)', 'Julie Marks': 'Beth (8 months)', 'Scotty Leavenworth': 'Matthew', 'Gemmenne de la Peña': 'Katie       (as Gemmenne De la Peña)', 'Erin Brockovich-Ellis': 'Waitress'}\"\r\ntt0113749,\"{'Shannen Doherty': 'Rene', 'Jeremy London': 'TS Quint', 'Jason Lee': 'Brodie', 'Claire Forlani': 'Brandi', 'Ben Affleck': 'Shannon', 'Joey Lauren Adams': 'Gwen', 'Renée Humphrey': 'Tricia       (as Renee Humphrey)', 'Jason Mewes': 'Jay', 'Ethan Suplee': 'Willam', 'Stan Lee': 'Stan Lee', 'Priscilla Barnes': 'Ivannah', 'Michael Rooker': 'Svenning', 'Carol Banker': 'Security Guard', 'Steven Blackwell': 'Arresting Cop #2', 'Kyle Boe': 'Pull Toy Kid'}\"\r\ntt0338013,\"{'Jim Carrey': 'Joel Barish', 'Kate Winslet': 'Clementine Kruczynski', 'Gerry Robert Byrne': 'Train Conductor', 'Elijah Wood': 'Patrick', 'Thomas Jay Ryan': 'Frank', 'Mark Ruffalo': 'Stan', 'Jane Adams': 'Carrie', 'David Cross': 'Rob', 'Kirsten Dunst': 'Mary', 'Tom Wilkinson': 'Dr. Mierzwiak', 'Ryan Whitney': 'Young Joel', 'Debbon Ayer': \"\"Joel's Mother\"\", 'Amir Ali Said': 'Young Bully', 'Brian Price': 'Young Bully', 'Paulie Litt': 'Young Bully       (as Paul Litowski)'}\"\r\ntt0360717,\"{'Naomi Watts': 'Ann Darrow', 'Jack Black': 'Carl Denham', 'Adrien Brody': 'Jack Driscoll', 'Thomas Kretschmann': 'Captain Englehorn', 'Colin Hanks': 'Preston', 'Andy Serkis': 'Kong /              Lumpy', 'Evan Parke': 'Hayes', 'Jamie Bell': 'Jimmy', 'Lobo Chan': 'Choy', 'John Sumner': 'Herb', 'Craig Hall': 'Mike', 'Kyle Chandler': 'Bruce Baxter', 'William Johnson': 'Manny', 'Mark Hadlow': 'Harry', 'Geraldine Brophy': 'Maude'}\"\r\ntt0365748,\"{'Simon Pegg': 'Shaun', 'Kate Ashfield': 'Liz', 'Nick Frost': 'Ed', 'Lucy Davis': 'Dianne', 'Dylan Moran': 'David', 'Nicola Cunningham': 'Mary', 'Keir Mills': 'Clubber 1       (as Kier Mills)', 'Matt Jaynes': 'Clubber 2', 'Gavin Ferguson': 'Football Kid', 'Peter Serafinowicz': 'Pete', 'Horton Jupiter': 'Homeless Man', 'Tim Baggaley': 'The Usher', 'Arvind Doshi': 'Nelson', 'Rafe Spall': 'Noel', 'Sonnell Dadral': 'Danny       (as Sonell Dadral)'}\"\r\ntt0096969,\"{'Tom Cruise': 'Ron Kovic', 'Bryan Larkin': 'Young Ron', 'Raymond J. Barry': 'Mr. Kovic', 'Caroline Kava': 'Mrs. Kovic', 'Josh Evans': 'Tommy Kovic', 'Seth Allen': 'Young Tommy', 'Jamie Talisman': 'Jimmy Kovic', 'Sean Stone': 'Young Jimmy', 'Anne Bobby': 'Susanne Kovic', 'Jenna von Oÿ': 'Young Susanne', 'Samantha Larkin': 'Patty Kovic', 'Erika Geminder': 'Young Patty', 'Amanda Davis': 'Baby Patty', 'Kevin Harvey Morse': 'Jackie Kovic', 'John Getz': 'Marine Major'}\"\r\ntt0212338,\"{'Robert De Niro': 'Jack Byrnes', 'Ben Stiller': 'Greg Focker', 'Teri Polo': 'Pam Byrnes', 'Blythe Danner': 'Dina Byrnes', 'Nicole DeHuff': 'Deborah Byrnes', 'Jon Abrahams': 'Denny Byrnes', 'Owen Wilson': 'Kevin Rawley', 'James Rebhorn': 'Dr. Larry Banks', 'Tom McCarthy': 'Dr. Bob Banks       (as Thomas McCarthy)', 'Phyllis George': 'Linda Banks', 'Kali Rocha': 'Atlantic American Flight Attendant', 'Bernie Sheredy': 'Norm the Interrogator', 'Judah Friedlander': 'Pharmacy Clerk', 'Peter Bartlett': 'Animal Shelter Worker', 'John Elsen': 'Chicago Airport Security'}\"\r\ntt0457400,\"{'Will Ferrell': 'Dr. Rick Marshall', 'Anna Friel': 'Holly Cantrell', 'Danny McBride': 'Will Stanton', 'Jorma Taccone': 'Chaka', 'John Boylan': 'Enik', 'Matt Lauer': 'Matt Lauer', \"\"Bobb'e J. Thompson\"\": 'Tar Pits Kid', 'Sierra McCormick': 'Tar Pits Kid', 'Shannon Lemke': 'Tar Pits Kid', 'Steven Wash Jr.': 'Tar Pits Kid', 'Brian Huskey': 'Teacher', 'Kevin Buitrago': 'Teenager', 'Noah Crawford': 'Teenager', 'Jon Kent Ethridge': 'Teenager       (as Jon Kent Ethridge II)', 'Logan Manus': 'Teenager'}\"\r\ntt1078940,\"{'Vince Vaughn': 'Dave', 'Jason Bateman': 'Jason Smith', 'Faizon Love': 'Shane', 'Jon Favreau': 'Joey', 'Malin Akerman': 'Ronnie', 'Kristen Bell': 'Cynthia', 'Kristin Davis': 'Lucy', 'Kali Hawk': 'Trudy', 'Tasha Smith': 'Jennifer', 'Carlos Ponce': 'Salvadore', 'Peter Serafinowicz': 'Sctanley', 'Jean Reno': 'Marcel', 'Temuera Morrison': 'Briggs', 'Jonna Walsh': 'Lacey', 'Gattlin Griffith': 'Robert'}\"\r\ntt1135487,\"{'Clive Owen': 'Ray Koval', 'Julia Roberts': 'Claire Stenwick', 'Tom Wilkinson': 'Howard Tully', 'Paul Giamatti': 'Richard Garsik', 'Dan Daily': \"\"Garsik's Aide\"\", 'Lisa Roberts Gillan': \"\"Tully's Assistant\"\", 'David Shumbris': 'Turtleneck', 'Rick Worthy': 'Dale Raimes', 'Oleg Stefan': 'Boris Fetyov', \"\"Denis O'Hare\"\": 'Duke Monahan', 'Kathleen Chalfant': 'Pam Frailes', 'Khan Baykal': 'Dinesh Patel', 'Tom McCarthy': 'Jeff Bauer', 'Wayne Duvall': 'Ned Guston', 'Fabrizio Brienza': 'Hotel Manager'}\"\r\ntt0372183,\"{'Matt Damon': 'Jason Bourne', 'Franka Potente': 'Marie', 'Brian Cox': 'Ward Abbott', 'Julia Stiles': 'Nicky', 'Karl Urban': 'Kirill', 'Gabriel Mann': 'Danny Zorn', 'Joan Allen': 'Pamela Landy', 'Marton Csokas': 'Jarda', 'Tom Gallop': 'Tom Cronin', 'John Bedford Lloyd': 'Teddy', 'Ethan Sandler': 'Kurt', 'Michelle Monaghan': 'Kim', 'Karel Roden': 'Gretkov', 'Tomas Arana': 'Martin Marshall', 'Oksana Akinshina': 'Irena Neski'}\"\r\ntt0385267,\"{'Dennis Quaid': 'Dan', 'Topher Grace': 'Carter', 'Scarlett Johansson': 'Alex', 'Marg Helgenberger': 'Ann', 'David Paymer': 'Morty', 'Clark Gregg': 'Steckle', 'Philip Baker Hall': 'Eugene Kalb', 'Selma Blair': 'Kimberly', 'Frankie Faison': 'Corwin', 'Ty Burrell': 'Enrique Colon', 'Kevin Chapman': 'Lou', 'Amy Aquino': 'Alicia', 'Zena Grey': 'Jana', 'Colleen Camp': 'Receptionist', 'Lauren Tom': 'Obstetrician'}\"\r\ntt0119528,\"{'Jim Carrey': 'Fletcher Reede', 'Maura Tierney': 'Audrey Reede', 'Justin Cooper': 'Max Reede', 'Cary Elwes': 'Jerry', 'Anne Haney': 'Greta', 'Jennifer Tilly': 'Samantha Cole', 'Amanda Donohoe': 'Miranda', 'Jason Bernard': 'Judge Marshall Stevens', 'Swoosie Kurtz': 'Dana Appleton', 'Mitchell Ryan': 'Mr. Allan', 'Christopher Mayer': 'Kenneth Falk       (as Chip Mayer)', 'Eric Pierpoint': 'Richard Cole', \"\"Randall 'Tex' Cobb\"\": 'Skull', 'Cheri Oteri': 'Jane', 'SW Fisher': 'Pete'}\"\r\ntt0440963,\"{'Matt Damon': 'Jason Bourne', 'Julia Stiles': 'Nicky Parsons', 'David Strathairn': 'Noah Vosen', 'Scott Glenn': 'Ezra Kramer', 'Paddy Considine': 'Simon Ross', 'Edgar Ramírez': 'Paz       (as Edgar Ramirez)', 'Albert Finney': 'Dr. Albert Hirsch', 'Joan Allen': 'Pam Landy', 'Tom Gallop': 'Tom Cronin', 'Corey Johnson': 'Wills', 'Daniel Brühl': 'Martin Kreutz', 'Joey Ansah': 'Desh', 'Colin Stinton': 'Neal Daniels', 'Dan Fredenburgh': 'Jimmy', 'Lucy Liemann': 'Lucy'}\"\r\ntt0258463,\"{'Matt Damon': 'Bourne', 'Franka Potente': 'Marie', 'Chris Cooper': 'Conklin', 'Clive Owen': 'The Professor', 'Brian Cox': 'Ward Abbott', 'Adewale Akinnuoye-Agbaje': 'Wombosi', 'Gabriel Mann': 'Zorn', 'Walton Goggins': 'Research Tech', 'Josh Hamilton': 'Research Tech', 'Julia Stiles': 'Nicolette', 'Orso Maria Guerrini': 'Giancarlo       (as Orso Maria-Guerrini)', 'Tim Dutton': 'Eamon', 'Denis Braccini': 'Picot', 'Nicky Naudé': 'Castel       (as Nicky Naude)', 'David Selburg': 'Marshall'}\"\r\ntt0119174,\"{'Michael Douglas': 'Nicholas Van Orton', 'Sean Penn': 'Conrad', 'Deborah Kara Unger': 'Christine', 'James Rebhorn': 'Jim Feingold', 'Peter Donat': 'Samuel Sutherland', 'Carroll Baker': 'Ilsa', 'Anna Katarina': 'Elizabeth', 'Armin Mueller-Stahl': 'Anson Baer', 'Charles Martinet': \"\"Nicholas' Father\"\", 'Scott Hunter McGuire': 'Young Nicholas', 'Florentine Mocanu': \"\"Nicholas' Mother\"\", 'Elizabeth Dennehy': 'Maria', 'Caroline Barclay': 'Maggie', 'Daniel Schorr': 'Daniel Schorr', 'John Aprea': 'Power Executive'}\"\r\ntt0112641,\"{'Robert De Niro': \"\"Sam 'Ace' Rothstein\"\", 'Sharon Stone': 'Ginger McKenna', 'Joe Pesci': 'Nicky Santoro', 'James Woods': 'Lester Diamond', 'Don Rickles': 'Billy Sherbert', 'Alan King': 'Andy Stone', 'Kevin Pollak': 'Phillip Green', 'L.Q. Jones': 'Pat Webb', 'Dick Smothers': 'Senator', 'Frank Vincent': 'Frank Marino', 'John Bloom': 'Don Ward', 'Pasquale Cajano': 'Remo Gaggi', 'Melissa Prophet': 'Jennifer Santoro', 'Bill Allison': 'John Nance', 'Vinny Vella': 'Artie Piscano'}\"\r\ntt0329575,\"{'David McCullough': 'Narrator', 'Jeff Bridges': 'Charles Howard', \"\"Paul Vincent O'Connor\"\": 'Bicycle Supervisor', 'Chris Cooper': 'Tom Smith', 'Michael Ensign': 'Steamer Owner', 'James Keane': 'Car Customer', 'Valerie Mahaffey': 'Annie Howard', 'David Doty': 'Land Broker', 'Carl M. Craig': 'Sam       (as Kingston DuCoeur)', \"\"Michael O'Neill\"\": 'Mr. Pollard', 'Annie Corley': 'Mrs. Pollard', 'Michael Angarano': 'Young Red Pollard', 'Cameron Bowen': 'Pollard Child', 'Noah Luke': 'Pollard Child', 'Mariah Bess': 'Pollard Child'}\"\r\ntt0315327,\"{'Jim Carrey': 'Bruce Nolan', 'Morgan Freeman': 'God', 'Jennifer Aniston': 'Grace Connelly', 'Philip Baker Hall': 'Jack Baylor', 'Catherine Bell': 'Susan Ortega', 'Lisa Ann Walter': 'Debbie', 'Steve Carell': 'Evan Baxter       (as Steven Carell)', 'Nora Dunn': 'Ally Loman', 'Eddie Jemison': 'Bobby', 'Paul Satterfield': 'Dallas Coleman', 'Mark Kiely': 'Fred Donohue', 'Sally Kirkland': 'Anita', 'Tony Bennett': 'Himself', 'Timothy Di Pri': \"\"Bruce's Cameraman       (as Timothy DiPri)\"\", 'Brian Tahash': \"\"Bruce's Soundman\"\"}\"\r\ntt0096734,\"{'Tom Hanks': 'Ray Peterson', 'Bruce Dern': 'Mark Rumsfield', 'Carrie Fisher': 'Carol Peterson', 'Rick Ducommun': 'Art Weingartner', 'Corey Feldman': 'Ricky Butler', 'Wendy Schaal': 'Bonnie Rumsfield', 'Henry Gibson': 'Dr. Werner Klopek', 'Theodore Gottlieb': 'Reuben Klopek', 'Courtney Gains': 'Hans Klopek', 'Gale Gordon': 'Walter Seznick', 'Dick Miller': 'Garbageman', 'Robert Picardo': 'Garbageman', 'Cory Danziger': 'Dave Peterson', 'Franklyn Ajaye': 'Detective', 'Rance Howard': 'Detective'}\"\r\ntt0087065,\"{'Henry Thomas': 'Davey Osborne', 'Dabney Coleman': 'Jack Flack /              Hal Osborne', 'Michael Murphy': 'Rice', 'Christina Nigra': 'Kim Gardener', 'John McIntire': 'George MacCready', 'Jeanette Nolan': 'Eunice MacCready', 'Eloy Casados': 'Alvarez', 'Tim Rossovich': 'Haverman', 'William Forsythe': 'Morris       (as Bill Forsythe)', 'Robert DoQui': 'Lt. Fleming', 'Shelby Leverington': 'Marilyn Gardener', 'Linden Chiles': 'Airport Security Chief', 'Robert Curtin': 'Murdoch', 'William Marquez': 'Airport Security Guard #1', 'Wendell Wright': 'Airport Security Guard #2'}\"\r\ntt0192614,\"{'Joshua Jackson': 'Luke McNamara', 'Paul Walker': 'Caleb Mandrake', 'Hill Harper': 'Will Beckford', 'Leslie Bibb': 'Chloe', 'Christopher McDonald': 'Martin Lombard', 'Steve Harris': 'Detective Sparrow', 'William Petersen': 'Ames Levritt', 'Craig T. Nelson': 'Litten Mandrake', 'David Asman': 'Jason Pitcairn', 'Scott Gibson': 'Travis Wheeler', 'Nigel Bennett': 'Dr. Whitney', 'Andrew Kraulis': 'McBride', 'Derek Aasland': 'Sullivan', 'Jennifer Melino': 'J.J.', 'Noah Dalton Danby': 'Hugh Mauberson       (as Noah Danby)'}\"\r\ntt0087995,\"{'Harry Dean Stanton': 'Bud', 'Emilio Estevez': 'Otto', 'Tracey Walter': 'Miller', 'Olivia Barash': 'Leila', 'Sy Richardson': 'Lite', 'Susan Barnes': 'Agent Rogersz', 'Fox Harris': 'J. Frank Parnell', 'Tom Finnegan': 'Oly', 'Del Zamora': 'Lagarto', 'Eddie Velez': 'Napo', 'Zander Schloss': 'Kevin', 'Jennifer Balgobin': 'Debbi', 'Dick Rude': 'Duke', 'Miguel Sandoval': 'Archie       (as Michael Sandoval)', 'Vonetta McGee': 'Marlene'}\"\r\ntt0098067,\"{'Steve Martin': 'Gil', 'Mary Steenburgen': 'Karen', 'Dianne Wiest': 'Helen', 'Jason Robards': 'Frank', 'Rick Moranis': 'Nathan', 'Tom Hulce': 'Larry', 'Martha Plimpton': 'Julie', 'Keanu Reeves': 'Tod', 'Harley Jane Kozak': 'Susan       (as Harley Kozak)', 'Dennis Dugan': 'David Brodsky', 'Joaquin Phoenix': 'Garry       (as Leaf Phoenix)', 'Eileen Ryan': 'Marilyn', 'Helen Shaw': 'Grandma', 'Jasen Fisher': 'Kevin', 'Paul Linke': 'George Bowman'}\"\r\ntt0493464,\"{'James McAvoy': 'Wesley', 'Morgan Freeman': 'Sloan', 'Angelina Jolie': 'Fox', 'Terence Stamp': 'Pekwarsky', 'Thomas Kretschmann': 'Cross', 'Common': 'The Gunsmith', 'Kristen Hager': 'Cathy', 'Marc Warren': 'The Repairman', \"\"David O'Hara\"\": \"\"Mr. X       (as David Patrick O'Hara)\"\", 'Konstantin Khabenskiy': 'The Exterminator       (as Konstantin Khabensky)', 'Dato Bakhtadze': 'The Butcher', 'Chris Pratt': 'Barry', 'Lorna Scott': 'Janice', 'Sophiya Haque': 'Puja', 'Brian Caspe': 'The Pharmacist'}\"\r\ntt0350258,\"{'Jamie Foxx': 'Ray Charles', 'Kerry Washington': 'Della Bea Robinson', 'Regina King': 'Margie Hendricks', 'Clifton Powell': 'Jeff Brown', 'Harry Lennix': 'Joe Adams', 'Bokeem Woodbine': 'Fathead Newman', 'Aunjanue Ellis': 'Mary Ann Fisher', 'Sharon Warren': 'Aretha Robinson', 'C.J. Sanders': 'Young Ray Robinson', 'Curtis Armstrong': 'Ahmet Ertegun', 'Richard Schiff': 'Jerry Wexler', 'Larenz Tate': 'Quincy Jones', 'Terrence Howard': 'Gossie McGee       (as Terrence Dashon Howard)', 'David Krumholtz': 'Milt Shaw', 'Wendell Pierce': 'Wilbur Brassfield'}\"\r\ntt0097366,\"{'Chevy Chase': \"\"Irwin 'Fletch' Fletcher\"\", 'Hal Holbrook': 'Hamilton \"\"Ham\"\" Johnson', 'Julianne Phillips': 'Becky Culpepper', 'R. Lee Ermey': 'Jimmy Lee Farnsworth', 'Richard Libertini': 'Frank Walker', \"\"Randall 'Tex' Cobb\"\": 'Ben Dover', 'Cleavon Little': 'Calculus Entropy', 'George Wyner': 'Marvin Gillet', 'Patricia Kalember': 'Amanda Ray Ross', 'Geoffrey Lewis': 'KKK Leader', 'Richard Belzer': 'Phil', 'Phil Hartman': 'Bly Manager', 'Titos Vandis': 'Uncle Kakakis', 'Don Hood': 'Tom Barbour', 'Dennis Burkley': 'Joe Jack'}\"\r\ntt0120735,\"{'Jason Flemyng': 'Tom', 'Dexter Fletcher': 'Soap', 'Nick Moran': 'Eddy', 'Jason Statham': 'Bacon', 'Steven Mackintosh': 'Winston', 'Nicholas Rowe': 'J', 'Nick Marcq': 'Charles', 'Charles Forbes': 'Willie       (as Charlie Forbes)', 'Vinnie Jones': 'Big Chris', 'Lenny McLean': 'Barry The Baptist', 'Peter McNicholl': 'Little Chris', 'P.H. Moriarty': 'Hatchet Harry', 'Frank Harper': 'Dog', 'Steve Sweeney': 'Plank', 'Huggy Leaver': 'Paul'}\"\r\ntt0430922,\"{'Seann William Scott': 'Wheeler', 'Paul Rudd': 'Danny', 'Christopher Mintz-Plasse': 'Augie', \"\"Bobb'e J. Thompson\"\": 'Ronnie', 'Elizabeth Banks': 'Beth', 'Jane Lynch': 'Sweeny', 'Ken Jeong': 'King Argotron', 'Ken Marino': 'Jim Stansel', 'Kerri Kenney': 'Lynette       (as Kerri Kenney-Silver)', 'A.D. Miles': 'Martin', 'Joe Lo Truglio': 'Kuzzik', 'Matt Walsh': 'Davith of Glencracken', 'Nicole Randall Johnson': 'Karen', 'Alexandra Stamler': 'Esplen       (as Allie Stamler)', 'Carly Craig': 'Connie'}\"\r\ntt0118689,\"{'Rowan Atkinson': 'Mr. Bean', 'Peter MacNicol': 'David Langley', 'John Mills': 'Chairman       (as Sir John Mills)', 'Pamela Reed': 'Alison Langley', 'Harris Yulin': 'George Grierson', 'Burt Reynolds': 'General Newton', 'Larry Drake': 'Elmer', 'Danny Goldring': 'Security Buck', 'Johnny Galecki': 'Stingo Wheelie', 'Chris Ellis': 'Det. Butler', 'Andrew Lawrence': 'Kevin Langley', 'Peter Egan': 'Lord Walton', 'Peter Capaldi': 'Gareth', 'June Brown': 'Delilah', 'Peter James': 'Dr. Rosenblum'}\"\r\ntt0117381,\"{'Richard Gere': 'Martin Vail', 'Laura Linney': 'Janet Venable', 'John Mahoney': 'Shaughnessy', 'Alfre Woodard': 'Shoat', 'Frances McDormand': 'Molly', 'Edward Norton': 'Aaron /              Roy', \"\"Terry O'Quinn\"\": 'Yancy', 'Andre Braugher': 'Goodman', 'Steven Bauer': 'Pinero', 'Joe Spano': 'Stenner', 'Tony Plana': 'Martinez', 'Stanley Anderson': 'Rushman', 'Maura Tierney': 'Naomi', 'Jon Seda': 'Alex', 'Reg Rogers': 'Connerman'}\"\r\ntt1486190,\"{'Gemma Arterton': 'Tamara Drewe', 'Roger Allam': 'Nicholas Hardiment', 'Bill Camp': 'Glen McCreavy', 'Dominic Cooper': 'Ben Sergeant', 'Luke Evans': 'Andy Cobb', 'Tamsin Greig': 'Beth Hardiment', 'Jessica Barden': 'Jody Long', 'Charlotte Christie': 'Casey Shaw', 'James Naughtie': 'Interviewer', 'John Bett': 'Diggory', 'Josie Taylor': 'Zoe', 'Bronagh Gallagher': 'Eustacia', 'Pippa Haywood': 'Tess', 'Susan Wooldridge': 'Penny Upminster', 'Amanda Lawrence': 'Mary'}\"\r\ntt0132477,\"{'Jake Gyllenhaal': 'Homer Hickam', 'Chris Cooper': 'John Hickam', 'Laura Dern': 'Miss Riley', 'Chris Owen': 'Quentin', 'William Lee Scott': 'Roy Lee', 'Chad Lindberg': \"\"O'Dell\"\", 'Natalie Canerday': 'Elsie Hickam', 'Scott Thomas': 'Jim Hickam       (as Scott Miles)', 'Randy Stripling': 'Leon Bolden', 'Chris Ellis': 'Principal Turner', 'Elya Baskin': 'Ike Bykovsky', 'Courtney Cole-Fendley': 'Dorothy Platt       (as Courtney Fendley)', 'David Dwyer': 'Jake Mosby', 'Terry Loughlin': 'Mr. Dantzler', 'Kaili Hollister': 'Valentine Carmina'}\"\r\ntt0284837,\"{'Sacha Baron Cohen': 'Ali G /              Borat', 'Emilio Rivera': 'Rico', 'Gina La Piana': 'Hoochie 1       (as Gina Lapiana)', 'Dana de Celis': 'Hoochie 2       (as Dana Pauley)', 'Dominic Delesilva': 'Young Boy', 'Jacqueline Castro': 'Mum       (as Jackeline Castro)', 'Jesse Acosta': 'Gangster', 'Mário Aguilar': 'Gangster       (as Mario Aguilar)', 'Gary Baxley': 'Gangster', 'Carlos Ayala': 'Gangster', 'John Estrada': 'Gangster', 'David Follosco': 'Gangster', 'Gerald Gonzales': 'Gangster', 'Manny Jimenez Sr.': 'Gangster       (as Manuel Jimenez)', 'Robert Jimenez': 'Gangster'}\"\r\ntt0103850,\"{'Tim Robbins': 'Bob Roberts', 'Giancarlo Esposito': 'Bugs Raplin', 'Alan Rickman': 'Lukas Hart III', 'Ray Wise': 'Chet MacGregor', 'Brian Murray': 'Terry Manchester', 'Gore Vidal': 'Senator Brickley Paiste', 'Rebecca Jenkins': 'Delores Perrigrew', 'Harry Lennix': 'Franklin Dockett', 'John Ottavino': 'Clark Anderson', 'Robert Stanton': 'Bart Macklerooney', 'Kelly Willis': 'Clarissa Flan', 'Merrilee Dale': 'Polly Roberts', 'Tom Atkins': 'Dr. Caleb Menck', 'David Strathairn': 'Mack Laflin', 'James Spader': 'Chuck Marlin'}\"\r\ntt0252866,\"{'Jason Biggs': 'Jim Levenstein', 'Shannon Elizabeth': 'Nadia', 'Alyson Hannigan': 'Michelle Flaherty', 'Chris Klein': 'Oz', 'Thomas Ian Nicholas': 'Kevin Myers', 'Natasha Lyonne': 'Jessica', 'Tara Reid': 'Vicky', 'Seann William Scott': 'Stifler', 'Mena Suvari': 'Heather', 'Eddie Kaye Thomas': 'Finch', 'Chris Owen': 'Chuck Sherman', 'Eugene Levy': \"\"Jim's Dad\"\", 'Molly Cheek': \"\"Jim's Mom\"\", 'Denise Faye': 'Danielle', 'Lisa Arturo': 'Amber'}\"\r\ntt0993842,\"{'Saoirse Ronan': 'Hanna', 'Eric Bana': 'Erik Heller', 'Vicky Krieps': 'Johanna Zadek       (as Vicky Kreips)', 'Cate Blanchett': 'Marissa Wiegler', 'Paris Arrowsmith': 'CIA Tech #1', 'John Macmillan': 'Lewis', 'Tim Beckmann': 'Walt', 'Paul Birchard': 'Bob', 'Christian Malcolm': 'Head of Ops', 'Jamie Beamish': 'Burton', 'Tom Hodgkins': 'Monitor', 'Vincent Montuel': 'Camp G Doctor #1', 'Nathan Nolan': 'Camp G Doctor #2', 'Michelle Dockery': 'False Marissa', 'Jessica Barden': 'Sophie'}\"\r\ntt1034389,\"{'Channing Tatum': 'Marcus', 'István Göz': 'Cohort Centurion', 'Bence Gerö': 'Celt Boy /              Young Marcus', \"\"Denis O'Hare\"\": 'Lutorius', 'Paul Ritter': 'Galba', 'Zsolt László': 'Paulus', 'Julian Lewis Jones': 'Cassius', 'Aladár Laklóth': 'Flavius Aquila', 'Marcell Miklós': 'Fort Legionary 1', 'Bálint Magyar': 'Fort Legionary 2', 'Ferenc Pataki': 'Fort Legionary 3', 'Bálint Antal': 'Young Legionary', 'Lukács Bicskey': 'Druid', 'Douglas Henshall': 'Cradoc', 'James Hayes': 'Stephanos'}\"\r\ntt0947810,\"{'Igal Naor': 'Al Rawi', 'Said Faraj': 'Seyyed Hamza', 'Faycal Attougui': 'Al Rawi Bodyguard       (as Faical Attougui)', 'Aymen Hamdouchi': 'Ayad Hamza', 'Matt Damon': 'Miller', 'Nicoye Banks': 'Perry', 'Jerry Della Salla': 'Wilkins', 'Sean Huze': 'Conway', 'Michael J. Dwyer': 'Met-D       (as Michael Dwyer)', 'Edouard H.R. Gluck': 'Met-D', 'Brian Siefkes': 'Met-D', 'Adam Wendling': 'Met-D', 'Abdul Henderson': 'Met-D', 'Paul Karsko': 'Met-D', 'Robert Miller': 'Met-D'}\"\r\ntt1234654,\"{'Greta Gerwig': 'Florence Marr', 'Koby Rouviere': 'Greenberg Boy', 'Sydney Rouviere': 'Greenberg Girl', 'Chris Messina': 'Phillip Greenberg', 'Susan Traylor': 'Carol Greenberg', 'Merritt Wever': 'Gina', 'Emily Lacy': 'Gallery Band Member', 'Aaron Wrinkle': 'Gallery Band Member', 'Heather Lockie': 'Gallery Band Member', 'Chris Coy': 'Guy at Gallery', 'Ben Stiller': 'Roger Greenberg', 'Zach Chassler': 'Marlon', 'Mina Badie': 'Peggy', 'Rhys Ifans': 'Ivan Schrank', 'Blair Tefkin': \"\"Megan - Beller's Party\"\"}\"\r\ntt1216492,\"{'Amy Adams': 'Anna', 'Matthew Goode': 'Declan', 'Adam Scott': 'Jeremy', 'John Lithgow': 'Jack', \"\"Noel O'Donovan\"\": 'Seamus', 'Tony Rohr': 'Frank', 'Pat Laffan': 'Donal', 'Alan Devlin': 'Joe', 'Ian McElhinney': 'Priest', 'Dominique McElligott': 'Bride', \"\"Mark O'Regan\"\": 'Captain', 'Maggie McCarthy': 'Eileen', \"\"Peter O'Meara\"\": 'Ron', 'Macdara Ó Fátharta': \"\"Father Malone       (as Macdara O'Fatharta)\"\", 'Kaitlin Olson': 'Libby'}\"\r\ntt0899106,\"{'Aaron Eckhart': 'Burke', 'Jennifer Aniston': 'Eloise', 'Dan Fogler': 'Lane', 'John Carroll Lynch': 'Walter', 'Martin Sheen': \"\"Burke's Father-in-Law\"\", 'Judy Greer': 'Marty', 'Frances Conroy': \"\"Eloise's Mom\"\", 'Joe Anderson': 'Tyler', 'Sasha Alexander': 'Photographer', 'Clyde Kusatsu': 'Cab Driver', 'Anne Marie DeLuise': 'Unicom Executive', 'Tyler McClendon': 'Unicom Executive', 'Panou': 'Unicom Executive', 'Michael Kopsa': 'Unicom CEO', 'Michelle Harrison': 'Cynthia'}\"\r\ntt0054215,\"{'Anthony Perkins': 'Norman Bates', 'Vera Miles': 'Lila Crane', 'John Gavin': 'Sam Loomis', 'Janet Leigh': 'Marion Crane', 'Martin Balsam': 'Det. Milton Arbogast', 'John McIntire': 'Sheriff Al Chambers', 'Simon Oakland': 'Dr. Fred Richman', 'Frank Albertson': 'Tom Cassidy', 'Patricia Hitchcock': 'Caroline       (as Pat Hitchcock)', 'Vaughn Taylor': 'George Lowery', 'Lurene Tuttle': 'Mrs. Chambers', 'John Anderson': 'California Charlie', 'Mort Mills': 'Highway Patrol Officer'}\"\r\ntt0107290,\"{'Sam Neill': 'Grant', 'Laura Dern': 'Ellie', 'Jeff Goldblum': 'Malcolm', 'Richard Attenborough': 'Hammond', 'Bob Peck': 'Muldoon', 'Martin Ferrero': 'Gennaro', 'BD Wong': 'Wu       (as B. D. Wong)', 'Joseph Mazzello': 'Tim', 'Ariana Richards': 'Lex', 'Samuel L. Jackson': 'Arnold', 'Wayne Knight': 'Nedry', 'Gerald R. Molen': 'Harding       (as Jerry Molen)', 'Miguel Sandoval': 'Rostagno', 'Cameron Thor': 'Dodgson', 'Christopher John Fields': 'Volunteer #1'}\"\r\ntt0083866,\"{'Dee Wallace': 'Mary', 'Henry Thomas': 'Elliott', 'Peter Coyote': 'Keys', 'Robert MacNaughton': 'Michael       (as Robert Macnaughton)', 'Drew Barrymore': 'Gertie', 'K.C. Martel': 'Greg', 'Sean Frye': 'Steve', 'C. Thomas Howell': 'Tyler       (as Tom Howell)', 'Erika Eleniak': 'Pretty Girl', \"\"David M. O'Dell\"\": \"\"Schoolboy       (as David O'Dell)\"\", 'Richard Swingler': 'Science Teacher', 'Frank Toth': 'Policeman', 'Robert Barton': 'Ultra Sound Man', 'Michael Darrell': 'Van Man', 'David Berkson': 'Medical Unit       (as David Berkson M.D.)'}\"\r\ntt0073195,\"{'Roy Scheider': 'Brody', 'Robert Shaw': 'Quint', 'Richard Dreyfuss': 'Hooper', 'Lorraine Gary': 'Ellen Brody', 'Murray Hamilton': 'Vaughn', 'Carl Gottlieb': 'Meadows', 'Jeffrey Kramer': 'Hendricks       (as Jeffrey C. Kramer)', 'Susan Backlinie': 'Chrissie', 'Jonathan Filley': 'Cassidy', 'Ted Grossman': 'Estuary Victim', 'Chris Rebello': 'Michael Brody', 'Jay Mello': 'Sean Brody', 'Lee Fierro': 'Mrs. Kintner', 'Jeffrey Voorhees': 'Alex Kintner', 'Craig Kingsbury': 'Ben Gardner'}\"\r\ntt0052357,\"{'James Stewart': \"\"John 'Scottie' Ferguson\"\", 'Kim Novak': 'Madeleine Elster /              Judy Barton', 'Barbara Bel Geddes': 'Midge Wood', 'Tom Helmore': 'Gavin Elster', 'Henry Jones': 'Coroner', 'Raymond Bailey': \"\"Scottie's Doctor\"\", 'Ellen Corby': 'Manager of McKittrick Hotel', 'Konstantin Shayne': 'Pop Leibel', 'Lee Patrick': 'Car Owner Mistaken for Madeleine'}\"\r\ntt0131857,\"{'Trey Parker': 'Joe Cooper', 'Matt Stone': 'Doug Remer', 'Dian Bachar': 'Squeak Scolari', 'Yasmine Bleeth': 'Jenna Reed', 'Jenny McCarthy': 'Yvette Denslow', 'Ernest Borgnine': 'Ted Denslow', 'Robert Vaughn': 'Baxter Cain', 'Trevor Einhorn': 'Joey Thomas', 'Bob Costas': 'Bob Costas', 'Al Michaels': 'Al Michaels', 'Robert Stack': 'Robert Stack - Unsolved Mysteries Host', 'Reggie Jackson': 'Reggie Jackson', 'Dan Patrick': 'Dan Patrick', 'Kenny Mayne': 'Kenny Mayne', 'Tim McCarver': 'Tim McCarver'}\"\r\ntt0131325,\"{'Steve Martin': 'Bowfinger', 'Eddie Murphy': 'Kit Ramsey /              Jiff Ramsey', 'Heather Graham': 'Daisy', 'Christine Baranski': 'Carol', 'Jamie Kennedy': 'Dave', 'Barry Newman': \"\"Kit's Agent\"\", 'Adam Alexi-Malle': 'Afrim', 'Kohl Sudduth': 'Slater', 'Terence Stamp': 'Terry Stricter', 'Robert Downey Jr.': 'Jerry Renfro', 'Alejandro Patiño': 'Sanchez       (as Alejandro Patino)', 'Alfred De Contreras': 'Martinez', 'Ramiro Fabian': 'Hector', 'Johnny Sanchez': 'Luis', 'Claude Brooks': 'Freddy'}\"\r\ntt0078723,\"{'Dan Aykroyd': 'Sgt. Frank Tree', 'Ned Beatty': 'Ward Douglas', 'John Belushi': 'Capt. Wild Bill Kelso', 'Lorraine Gary': 'Joan Douglas', 'Murray Hamilton': 'Claude Crumn', 'Christopher Lee': 'Capt. Wolfgang von Kleinschmidt', 'Tim Matheson': 'Capt. Loomis Birkhead', 'Toshirô Mifune': 'Cmdr. Akiro Mitamura       (as Toshiro Mifune)', 'Warren Oates': \"\"Col. 'Madman' Maddox\"\", 'Robert Stack': 'Maj. Gen. Joseph W. Stilwell', 'Treat Williams': \"\"Cpl. Chuck 'Stretch' Sitarski\"\", 'Nancy Allen': 'Donna Stratton', 'Lucille Benson': 'Gas Mama (Eloise)       (as Lucille Bensen)', 'Jordan Cohen': 'Macey Douglas       (as Jordan Brian)', 'John Candy': 'Pvt. Foley'}\"\r\ntt0091541,\"{'Tom Hanks': 'Walter Fielding', 'Shelley Long': 'Anna Crowley', 'Alexander Godunov': 'Max Beissart', 'Maureen Stapleton': 'Estelle', 'Joe Mantegna': 'Art Shirk', 'Philip Bosco': 'Curly', 'Josh Mostel': 'Jack Schnittman', 'Yakov Smirnoff': 'Shatov', 'Carmine Caridi': 'Brad Shirk', 'Brian Backer': 'Ethan', 'Billy Lombardo': 'Benny', 'Mia Dillon': 'Marika', 'John Van Dreelen': 'Carlos       (as John van Dreelen)', 'Douglass Watson': 'Walter Fielding, Sr.', 'Lucille Dobrin': 'Macumba Lady'}\"\r\ntt0113360,\"{'Christopher Lambert': 'Paul Racine', 'John Lone': 'Kinjo', 'Joan Chen': 'Kirina', 'Yoshio Harada': 'Takeda Sensei', 'Yôko Shimada': 'Mieko Takeda', 'Mari Natsuki': 'Junko', 'Tak Kubota': 'Oshima', 'Masumi Okada': 'Lt. Wadakura', 'Tatsuya Irie': 'Hiryu', 'Michael Warren': 'Chase', 'Bart Anderson': 'John', 'James Saito': 'Nemura', 'Seth Sakai': 'Dr. Otozo Yamura', 'Toshishiro Obata': 'Ryuma', 'Ken Kensei': 'Sujin'}\"\r\ntt0099141,\"{'Mel Gibson': 'Rick Jarmin', 'Goldie Hawn': 'Marianne Graves', 'David Carradine': 'Eugene Sorenson', 'Bill Duke': 'Albert Diggs', 'Stephen Tobolowsky': 'Joe Weyburn', 'Joan Severance': 'Rachel Varney', 'Harry Caesar': 'Marvin', 'Jeff Corey': 'Lou Baird', 'Alex Bruhanski': 'Raun', 'John Pyper-Ferguson': 'Jamie', 'Clyde Kusatsu': 'Mr. Takawaki', 'Jackson Davies': 'Paul Bernard', 'Florence Paterson': 'Molly Baird', 'Tim Healy': 'Paul', 'Wes Tritter': 'Scottie'}\"\r\ntt0056592,\"{'Gregory Peck': 'Atticus Finch', 'John Megna': 'Dill Harris', 'Frank Overton': 'Sheriff Heck Tate', 'Rosemary Murphy': 'Maudie Atkinson', 'Ruth White': 'Mrs. Dubose', 'Brock Peters': 'Tom Robinson', 'Estelle Evans': 'Calpurnia', 'Paul Fix': 'Judge Taylor', 'Collin Wilcox Paxton': 'Mayella Violet Ewell       (as Collin Wilcox)', 'James Anderson': 'Bob Ewell', 'Alice Ghostley': 'Aunt Stephanie Crawford', 'Robert Duvall': 'Boo Radley', 'William Windom': 'Mr. Gilmer', 'Crahan Denton': 'Walter Cunningham Sr.', 'Richard Hale': 'Nathan Radley'}\"\r\ntt0104231,\"{'Tom Cruise': 'Joseph Donnelly', 'Nicole Kidman': 'Shannon Christie', 'Thomas Gibson': 'Stephen Chase', 'Robert Prosky': 'Daniel Christie', 'Barbara Babcock': 'Nora Christie', 'Cyril Cusack': 'Danty Duff', 'Eileen Pollock': 'Molly Kay', 'Colm Meaney': 'Kelly', 'Douglas Gillison': 'Dermody', 'Michelle Johnson': 'Grace', 'Wayne Grace': 'Bourke', 'Niall Toibin': 'Joe', 'Barry McGovern': 'McGuire', 'Gary Lee Davis': 'Gordon', 'Jared Harris': 'Paddy'}\"\r\ntt0099329,\"{'Johnny Depp': 'Cry-Baby', 'Amy Locane': 'Allison Vernon-Williams', 'Susan Tyrrell': 'Ramona Rickettes', 'Polly Bergen': 'Mrs. Vernon-Williams', 'Iggy Pop': 'Belvedere Rickettes', 'Ricki Lake': 'Pepper Walker', 'Traci Lords': 'Wanda Woodward', 'Kim McGuire': \"\"Mona 'Hatchet-Face' Malnorowski\"\", 'Darren E. Burrows': 'Milton Hackett', 'Stephen Mailer': 'Baldwin', 'Kim Webb': 'Lenora Frigid', 'Alan J. Wendl': 'Toe-Joe', 'Troy Donahue': \"\"Hatchet's Father\"\", 'Mink Stole': \"\"Hatchet's Mother\"\", 'Joe Dallesandro': \"\"Milton's Father\"\"}\"\r\ntt0327597,\"{'Dakota Fanning': 'Coraline Jones       (voice)', 'Teri Hatcher': 'Mel Jones /              Other Mother /              Beldam       (voice)', 'Jennifer Saunders': 'Miss April Spink /              Other Spink       (voice)', 'Dawn French': 'Miss Miriam Forcible /              Other Forcible       (voice)', 'Keith David': 'The Cat       (voice)', 'John Hodgman': 'Charlie Jones /              Other Father       (voice)', 'Robert Bailey Jr.': \"\"Wyborne 'Wybie' Lovat       (voice)\"\", 'Ian McShane': 'Mr. Sergei Alexander Bobinsky /              Other Bobinsky       (voice)', 'Aankha Neal': 'Sweet Ghost Girl       (voice)', 'George Selick': 'Ghost Boy       (voice)', 'Hannah Kaiser': 'Tall Ghost Girl       (voice)', 'Harry Selick': 'Photo Friend       (voice)', 'Marina Budovsky': 'Photo Friend       (voice)', 'Emerson Tenney': 'Magic Dragonfly       (voice) (as Emerson Hatcher)', 'Jerome Ranft': 'Mover       (voice)'}\"\r\ntt0023969,\"{'The Marx Brothers': '(as The Four Marx Brothers)', 'Groucho Marx': 'Rufus T. Firefly', 'Harpo Marx': 'Pinky', 'Chico Marx': 'Chicolini', 'Zeppo Marx': 'Bob Roland', 'Margaret Dumont': 'Mrs. Gloria Teasdale', 'Raquel Torres': 'Vera Marcal', 'Louis Calhern': 'Ambassador Trentino', 'Edmund Breese': 'Zander', 'Leonid Kinskey': 'Sylvanian Agitator       (as Leonid Kinsky)', 'Charles Middleton': 'Prosecutor       (as Charles B. Middleton)', 'Edgar Kennedy': 'Lemonade Vendor'}\"\r\ntt0322589,\"{'Jessica Alba': 'Honey Daniels', 'Mekhi Phifer': 'Chaz', 'Romeo Miller': \"\"Benny       (as Lil' Romeo)\"\", 'Joy Bryant': 'Gina', 'David Moscow': 'Michael Ellis', 'Lonette McKee': 'Mrs. Daniels', 'Zachary Isaiah Williams': 'Raymond', 'Christian Monzon': 'Bar Customer', 'Al Shearer': 'Bar Customer', 'Jull Weber': 'Joey', 'Laurieann Gibson': 'Katrina       (as Laurie Ann Gibson)', \"\"O'Neal McKnight\"\": \"\"Katrina's Friend       (as O'Neal McNight)\"\", 'Kevin Duhaney': 'Otis', 'William Omar Tobar': 'Beat Boxer', \"\"Ivan 'Flipz' Velez\"\": 'Street Dancer'}\"\r\ntt0088763,\"{'Michael J. Fox': 'Marty McFly', 'Christopher Lloyd': 'Dr. Emmett Brown', 'Lea Thompson': 'Lorraine Baines', 'Crispin Glover': 'George McFly', 'Thomas F. Wilson': 'Biff Tannen', 'Claudia Wells': 'Jennifer Parker', 'Marc McClure': 'Dave McFly', 'Wendie Jo Sperber': 'Linda McFly', 'George DiCenzo': 'Sam Baines', 'Frances Lee McCain': 'Stella Baines', 'James Tolkan': 'Mr. Strickland', 'J.J. Cohen': 'Skinhead       (as Jeffrey Jay Cohen)', 'Casey Siemaszko': '3-D', 'Billy Zane': 'Match', 'Harry Waters Jr.': 'Marvin Berry'}\"\r\ntt0218967,\"{'Nicolas Cage': 'Jack Campbell', 'Téa Leoni': 'Kate Reynolds', 'Don Cheadle': 'Cash', 'Jeremy Piven': 'Arnie', 'Saul Rubinek': 'Alan Mintz', 'Josef Sommer': 'Peter Lassiter', 'Makenzie Vega': 'Annie Campbell', 'Jake Milkovich': 'Josh Campbell', 'Ryan Milkovich': 'Josh Campbell', 'Lisa Thornhill': 'Evelyn Thompson', 'Harve Presnell': 'Big Ed', 'Mary Beth Hurt': 'Adelle', 'Amber Valletta': 'Paula', 'Francine York': 'Lorraine', 'Ruth Williamson': 'Betty Peterson'}\"\r\ntt0101921,\"{'Kathy Bates': 'Evelyn Couch', 'Mary Stuart Masterson': 'Idgie Threadgoode', 'Mary-Louise Parker': 'Ruth Jamison', 'Jessica Tandy': 'Ninny Threadgoode', 'Cicely Tyson': 'Sipsey', \"\"Chris O'Donnell\"\": 'Buddy Threadgoode', 'Stan Shaw': 'Big George', 'Gailard Sartain': 'Ed Couch', 'Timothy Scott': 'Smokey Lonesome       (as Tim Scott)', 'Gary Basaraba': 'Grady Kilgore', 'Lois Smith': 'Mama Threadgoode', 'Jo Harvey Allen': \"\"Women's Awareness Teacher\"\", 'Macon McCalman': 'Prosecutor Percy', 'Richard Riehle': 'Reverend Scroggins', 'Raynor Scheine': 'Sheriff Curtis Smoote'}\"\r\ntt0166924,\"{'Naomi Watts': 'Betty /              Diane Selwyn', 'Jeanne Bates': 'Irene', 'Dan Birnbaum': \"\"Irene's Companion\"\", 'Laura Harring': 'Rita /              Camilla Rhodes       (as Laura Elena Harring)', 'Randall Wulff': 'Limo Driver       (as Scott Wulff)', 'Robert Forster': 'Detective McKnight', 'Brent Briscoe': 'Detective Domgaard', 'Maya Bond': 'Aunt Ruth', 'Patrick Fischler': 'Dan', 'Michael Cooke': 'Herb', 'Bonnie Aarons': 'Bum', 'Michael J. Anderson': 'Mr. Roque', 'Joseph Kearney': \"\"Roque's Manservant\"\", 'Enrique Buelna': 'Back of Head Man', 'Richard Mead': 'Hairy-Armed Man'}\"\r\ntt1596346,\"{'AnnaSophia Robb': 'Bethany Hamilton', 'Helen Hunt': 'Cheri Hamilton', 'Dennis Quaid': 'Tom Hamilton', 'Carrie Underwood': 'Sarah Hill', 'Kevin Sorbo': 'Holt Blanchard', 'Ross Thomas': 'Noah Hamilton', 'Chris Brochu': 'Timmy Hamilton', 'Lorraine Nicholson': 'Alana Blanchard', 'Jeremy Sumpter': 'Byron Blanchard', 'Sonya Balmores': 'Malina Birch       (as Sonya Balmores Chung)', 'Craig T. Nelson': 'Dr. Rovinsky', 'Cody Gomes': 'Keoki', 'Branscombe Richmond': 'Ben Aipa', 'Titus Kinimaka': 'Titus', 'John Philbin': 'Fuel TV Reporter #2'}\"\r\ntt0382856,\"{'Carmen Electra': 'Herself', 'Daniel Letterle': 'Josh', 'Mary Elizabeth Winstead': 'Maddy', 'La La Anthony': \"\"Herself       (as Alani 'La La' Vazquez)\"\", 'Nick Carter': 'Himself', 'Adam West': 'Dr. Harryhausen', 'C. Ernst Harth': 'Eightball', 'Cascy Beddow': 'Andy', 'Joe MacLeod': 'Stack', 'Chelan Simmons': 'Jen', 'Chris Harrison': 'Chase', 'Alana Husband': 'Lil Mindi', 'Jeff Geddis': 'G.T.', 'Bruce James': 'Bob Staton', 'Phillip Mitchell': 'Mombata Leader       (as Phil Mitchell)'}\"\r\ntt0382810,\"{'Cate Blanchett': 'Tracy', 'Sam Neill': 'The Jockey', 'Hugo Weaving': 'Lionel', 'Martin Henderson': 'Ray', 'Noni Hazlehurst': 'Janelle', 'Dustin Nguyen': 'Jonny', 'Joel Tobeck': 'Moss', 'Lisa McCune': 'Laura', 'Susie Porter': 'Jenny', 'Nina Liu': 'Mai', 'Linda Cropper': 'Denise', 'Daniela Farinacci': 'Donna', 'Ferdinand Hoang': 'Khiem', 'Anh Do': 'Tran', 'Jason Chong': 'Mingh'}\"\r\ntt1650062,\"{'Joel Courtney': 'Joe Lamb', 'Jessica Tuck': 'Mrs. Kaznyk', 'Joel McKinnon Miller': 'Mr. Kaznyk', 'Ryan Lee': 'Cary', 'Zach Mills': 'Preston', 'Riley Griffiths': 'Charles Kaznyk', 'Gabriel Basso': 'Martin', 'Kyle Chandler': 'Deputy Jackson Lamb', 'Ron Eldard': 'Louis Dainard', 'AJ Michalka': 'Jen Kaznyk', 'Andrew Miller': 'Kaznyk Twin', 'Jakob Miller': 'Kaznyk Twin', 'Jade Griffiths': 'Benji Kaznyk', 'Britt Flatmo': 'Peg Kaznyk', 'Elle Fanning': 'Alice Dainard'}\"\r\ntt1020773,\"{'Juliette Binoche': 'Elle', 'William Shimell': 'James Miller', 'Jean-Claude Carrière': \"\"L'homme de la place\"\", 'Agathe Natanson': 'La femme de la place', 'Gianna Giachetti': 'La patronne du café', 'Adrian Moore': 'Le fils', 'Angelo Barbagallo': 'Le traducteur', 'Andrea Laurenzi': 'Le guide', 'Filippo Trojano': 'Le marié       (as Filippo Troiano)', 'Manuela Balsimelli': 'La mariée       (as Manuela Balsinelli)'}\"\r\ntt0273453,\"{'Lee Tergesen': 'Peter', 'Heather Morgan': 'Lucy', 'Lisa Kudrow': 'Darla', \"\"Vincent D'Onofrio\"\": 'Malcolm', 'Hank Azaria': 'Sam', 'Mary Jo Deschanel': 'Betty', 'Scott Wilson': 'Harold', 'Aimee Graham': 'Rebecca', 'Wade Williams': 'Tom       (as Wade Andrews Williams)', 'Jane Chung': 'Elderly Woman', 'Lydia Look': 'Receptionist', 'Toshi Toda': 'Customer', 'Kim Robillard': 'Car Parking Man', 'Mary Jo Smith': 'Waitress', 'Kim Staunton': 'Dr. Felcrest'}\"\r\ntt1486185,\"{'Amanda Seyfried': 'Valerie', 'Gary Oldman': 'Solomon', 'Billy Burke': 'Cesaire', 'Shiloh Fernandez': 'Peter', 'Max Irons': 'Henry', 'Virginia Madsen': 'Suzette', 'Lukas Haas': 'Father Auguste', 'Julie Christie': 'Grandmother', 'Shauna Kain': 'Roxanne', 'Michael Hogan': 'The Reeve', 'Adrian Holmes': 'Captain', 'Cole Heppell': 'Claude', 'Christine Willes': 'Madame Lazar', 'Michael Shanks': 'Adrien Lazar', 'Kacey Rohl': 'Prudence'}\"\r\ntt1194263,\"{'Robert Duvall': 'Felix Bush', 'Sissy Spacek': 'Mattie Darrow', 'Bill Murray': 'Frank Quinn', 'Lucas Black': 'Buddy', 'Gerald McRaney': 'Rev. Gus Horton', 'Bill Cobbs': 'Rev. Charlie Jackson', 'Scott Cooper': 'Carl', 'Lori Beth Sikes': 'Kathryn       (as Lori Beth Edgeman)', 'Linds Edwards': 'WKNG Announcer', 'Andrea Powell': 'Bonnie', 'Chandler Riggs': 'Tom', 'Danny Vinson': 'Grier', 'Blerim Destani': 'Gary', 'Tomasz Karolak': 'Orville', 'Andy Stahl': 'Photographer       (as Andrew Stahl)'}\"\r\ntt0119738,\"{'Julia Roberts': 'Julianne Potter', 'Dermot Mulroney': \"\"Michael O'Neal\"\", 'Cameron Diaz': 'Kimberly Wallace', 'Rupert Everett': 'George Downes', 'Philip Bosco': 'Walter Wallace', 'M. Emmet Walsh': \"\"Joe O'Neal\"\", 'Rachel Griffiths': 'Samantha Newhouse', 'Carrie Preston': 'Amanda Newhouse', 'Susan Sullivan': 'Isabelle Wallace', 'Christopher Masterson': \"\"Scotty O'Neal       (as Chris Masterson)\"\", 'Raci Alexander': 'Title Sequence Performer', 'Jennifer Garrett': 'Title Sequence Performer', 'Kelleia Sheerin': 'Title Sequence Performer       (as Kelly Sheerin)', 'Bree Turner': 'Title Sequence Performer', 'Cassie Creasy': 'Flower Girl'}\"\r\ntt1255953,\"{'Mustafa Kamel': 'Barbier de la Milice /              Officer Milice Chrétienne', 'Hussein Sami': 'Nihad (5ans)', 'Rémy Girard': 'Notaire Jean Lebel', 'Mélissa Désormeaux-Poulin': 'Jeanne Marwan', 'Maxim Gaudette': 'Simon Marwan', 'Dominique Briand': 'Professor Niv Cohen', 'Lubna Azabal': 'Nawal Marwan', 'Frédéric Paquet': \"\"Médecin a l'urgence\"\", 'Hamed Najem': 'Wahab', 'Ahmad Massad': 'Bassem Marwan', 'Bader Alami': 'Nicolas Marwan', 'Majida Hussein': 'Grand-mére de Nawal', 'Asriah Nijres': 'Sage-Femme', 'John Dunn-Hill': 'Professeur Saïd Haidar', 'Nadia Essadiqi': 'Secrétaire Université'}\"\r\ntt1423894,\"{'Paul Giamatti': 'Barney Panofsky', 'Macha Grenon': 'Solange', 'Paul Gross': \"\"Constable O'Malley of the North\"\", 'Atom Egoyan': \"\"O'Malley Director #1\"\", 'Mark Camacho': 'T /              U Productions Executive #1', 'David Pryde': 'T /              U Productions Executive #2', 'Paula Jean Hixson': \"\"Bartender at Grumpy's\"\", 'Mark Addy': \"\"Detective O'Hearne\"\", 'Scott Speedman': 'Boogie', 'Marica Pellegrinelli': \"\"'The Countess'\"\", 'Thomas Trabacchi': 'Leo', 'Clé Bennett': 'Cedric', 'Rachelle Lefevre': \"\"Clara 'Chambers' Charnofsky\"\", 'Domenico Minutoli': 'Judge at Rome Wedding', 'Massimo Wertmüller': 'Rome Doctor       (as Massimo Wertmuller)'}\"\r\ntt1149361,\"{'Dany Boon': 'Bazil', 'André Dussollier': 'Nicolas Thibault de Fenouillet', 'Yolande Moreau': 'Tambouille', 'Dominique Pinon': 'Fracasse', 'Marie-Julie Baup': 'Calculette', 'Michel Crémadès': 'Petit Pierre', 'Nicolas Marié': 'François Marconi', 'Julie Ferrier': 'La Môme Caoutchouc', 'Omar Sy': 'Remington', 'Jean-Pierre Marielle': 'Placard', 'Urbain Cancelier': 'Le gardien de nuit de Marconi', 'Patrick Paroux': 'Gerbaud', 'Jean-Pierre Becker': 'Libarski', 'Stéphane Butet': 'Matéo', 'Philippe Girard': 'Gravier'}\"\r\ntt1038919,\"{'Gerard Butler': 'Milo Boyd', 'Jennifer Aniston': 'Nicole Hurley', 'Gio Perez': 'Uncle Sam', 'Joel Marsh Garland': 'Dwight', 'Jason Kolotouros': 'Gelman', 'Matt Malloy': 'Gary', 'Jason Sudeikis': 'Stewart', 'Adam Rose': 'Jimmy', 'Christine Baranski': 'Kitty Hurley', 'Dorian Missick': 'Bobby', 'David Costabile': 'Arthur', 'Lynda Gravatt': 'Judge', 'Peter Greene': 'Earl Mahler', 'Jeff Garlin': 'Sid', 'Siobhan Fallon Hogan': 'Teresa'}\"\r\ntt0762125,\"{'Dwayne Johnson': 'Captain Charles T. Baker       (voice)', 'Jessica Biel': 'Neera       (voice)', 'Justin Long': 'Lem       (voice)', 'Gary Oldman': 'General Grawl       (voice)', 'Seann William Scott': 'Skiff       (voice)', 'John Cleese': 'Professor Kipple       (voice)', 'Freddie Benedict': 'Eckle       (voice)', 'Alan Marriott': 'Glar       (voice)', 'Mathew Horne': 'Soldier Vesklin       (voice)', 'James Corden': 'Soldier Vernkot       (voice)', 'Lewis Macleod': 'Additional Voices       (voice)', 'Emma Tate': 'Additional Voices       (voice)', 'Rupert Degas': 'Additional Voices       (voice)', 'Pete Atkin': 'Additional Voices       (voice)', 'Rebecca Front': 'Additional Voices       (voice)'}\"\r\ntt0388182,\"{'Michael Douglas': 'Charlie', 'Evan Rachel Wood': 'Miranda', 'Willis Burks II': 'Pepper', 'Laura Kachergus': 'Rita', 'Paul Lieber': 'Doug', 'Kathleen Wilhoite': 'Kelly', 'Anne L. Nathan': \"\"Applebee's Manager       (as Anne Nathan)\"\", 'Arthur Santiago': \"\"McDonald's Manager\"\", 'Ashley Greene': \"\"McDonald's Customer\"\", 'Ian Hopps': 'Boy', 'Anna Khaja': 'Officer Contreras', 'Will Rothhaar': 'Security Guard', \"\"Annie O'Donnell\"\": 'Greeter', 'Greg Davis Jr.': 'Joseph', 'Jeanie Hackett': 'Teacher'}\"\r\ntt0323939,\"{'Joe Nicolo': 'Ritchie', 'Carl Mazzocone Sr.': 'Older Wiseguy       (as Carl M. Mazzocone Sr.)', 'George Tovar': 'Paulie', 'Frank Medrano': 'Sal', 'Jason Cerbone': 'Young Stevens', 'Mark De Alessandro': 'Hitman #1', 'Doc Duhame': 'Hitman #2', 'Shane T. Anderson': 'Hitman #3', 'Thandie Newton': 'Tiffany', 'Glenn Plummer': 'Attendant', 'Gabriel Byrne': 'Miller', 'Mick Rossi': 'Club Patron #1', 'Sean Stanek': 'Club Patron #2', 'Holly Cat': 'Girl in Hallway       (as Holly Catarancuic)', 'Carl Mazzocone': 'Doorman'}\"\r\ntt1020543,\"{'Chris Marquette': 'Cooper       (as Christopher Marquette)', 'Brooke Nevin': 'Sara', 'Kinsey Packard': 'Cindy', 'E. Quincy Sloan': 'Hugo', 'Wesley Thompson': 'Albert', 'Linda Park': 'Leechee', 'Deborah Geffner': 'Maureen', 'Jim Cody Williams': 'Jed', 'Bru Muller': 'Roger', \"\"Ismael 'East' Carlo\"\": 'Puerto Rican Man       (as Ismael Carlo)', 'Diane Gaeta': 'White Trash Girl', 'Ray Wise': 'Ethan', 'Atanas Srebrev': 'Wildeyes', 'Vlado Mihailov': 'PJ', 'Mike Straub': 'Chad'}\"\r\ntt1501652,\"{'Nick Stahl': 'Dylan', 'Rose McGowan': 'Charlie', 'Amy Smart': 'Natalie', 'Ben Marten': 'Steve', 'Brian Lynner': 'Decko', 'Kim Grimaldi': 'Liz', 'James Serpento': 'Detective Milano', 'Jack Mishler': 'Mr. Brennan', 'Justin Marxen': 'Jack', 'Shane Simmons': 'David', 'Rachel Storey': 'Tracy', 'Britt Slater': 'Megan       (as Brittany Slater)', 'Paul Nycz': 'The Tattooed Man', 'Justin Urich': 'Mad Terrence', 'Andrea Leon': 'Camilla'}\"\r\ntt0284929,\"{'Michael Reilly Burke': 'Ted Bundy', 'Boti Bliss': 'Lee       (as Boti Ann Bliss)', 'Julianna McCarthy': 'Professor', 'Jennifer Tisdale': 'Pretty Girl', 'Michael Santos': 'Man at the Window', 'Annalee Autumn': 'Girl Attacked on Street       (as Anna Lee Wooster)', 'Steffani Brass': 'Julie', 'Samantha Tabak': 'Vincennes       (as Tricia Dickson)', 'Meadow Sisto': 'Welch', 'Eric DaRe': 'Male Partygoer       (as Eric Dare)', 'Melissa Schmidt': 'Female Partygoer', 'Deborah Offner': 'Beverly', 'Zarah Little': 'Garber', 'Alison West': 'Randall', 'Matt Hoffman': 'Arnie'}\"\r\ntt0242508,\"{'Adrian Grenier': 'Alan Jensen', 'Sarah Michelle Gellar': 'Cindy Bandolini', 'Joey Lauren Adams': 'Chesney Cort', 'Eric Stoltz': 'Teddy Carter', 'Rebecca Gayheart': 'Kelly Morgan', 'Gianni Russo': 'Andrew Bandolini', 'Ray Allen': 'Marcus Blake', 'Mike Vetere': 'Russell       (as Michael Aparo)', 'Scottie Epstein': 'Mario', 'John Neville': 'Dr. Reese', 'Polly Shannon': 'Juliet', 'Phillip Jarrett': 'Coach Preston', 'Adam Bloch': 'Kenner', 'Lauren Collis': 'Connie', 'Landy Cannon': 'Butch'}\"\r\ntt0413466,\"{'Jonathan Velasquez': 'Jonathan', 'Francisco Pedrasa': 'Kico', 'Milton Velasquez': 'Milton /              Spermball', 'Usvaldo Panameno': 'Porky', 'Eddie Velasquez': 'Eddie', 'Luis Rojas-Salgado': 'Louie       (as Luis Rojas Salgado)', 'Carlos Ramirez': 'Carlos', 'Iris Zelaya': 'Iris', 'Ashley Maldonado': 'Rosalia', 'Laura Cellner': 'Jade', 'Jessica Steinbaum': 'Nikki', 'Chris Neville': 'Beverly Hills Cop', 'Jeremy Scott': 'Andre', 'David Livingston': 'Beverly Hills Actor', 'Joe Myles': 'Beverly Hills Detective'}\"\r\ntt0070047,\"{'Ellen Burstyn': 'Chris MacNeil', 'Max von Sydow': 'Father Merrin', 'Lee J. Cobb': 'Lt. William Kinderman', 'Kitty Winn': 'Sharon', 'Jack MacGowran': 'Burke Dennings', 'Jason Miller': 'Father Karras', 'Linda Blair': 'Regan', \"\"William O'Malley\"\": \"\"Father Dyer       (as Reverend William O'Malley S.J.)\"\", 'Barton Heyman': 'Dr. Klein', 'Peter Masterson': 'Dr. Barringer - Clinic Director       (as Pete Masterson)', 'Rudolf Schündler': 'Karl', 'Gina Petrushka': 'Willi', 'Robert Symonds': 'Dr. Taney', 'Arthur Storch': 'Psychiatrist', 'Thomas Bermingham': 'Tom - President of University       (as Reverend Thomas Bermingham S.J.)'}\"\r\ntt1242618,\"{'Brittany Murphy': 'Alice', 'Thora Birch': 'Lucy', 'Tammy Blanchard': 'Rebecca', 'Marc Blucas': 'David', 'Claudia Troll': \"\"David's Mother\"\", 'Michael Piscitelli': \"\"Ben's Voice       (voice)\"\"}\"\r\ntt0405163,\"{'Jeff Bridges': 'Andy Sargentee', 'Tim Blake Nelson': 'Barney Macklehatton', 'Joe Pantoliano': 'Some Idiot', 'Ted Danson': 'Moose', 'William Fichtner': 'Otis', 'Patrick Fugit': 'Emmett', 'John Hawkes': 'Moe', 'Brad William Henke': 'Ron       (as Brad Henke)', 'Dawn Didawick': 'Clara', 'Glenne Headly': 'Helen Tatelbaum', 'Tom Bower': 'Floyd', 'Jayne Taini': 'Mrs. Morrelli', 'Lauren Graham': 'Peggy', 'Jeanne Tripplehorn': 'Thelma', 'Alex D. Linz': 'Billy'}\"\r\ntt0338075,\"{'Jamie McShane': 'Radio Announcer', 'Johnny Knoxville': 'Phil Kaufman', 'Danielle Sapia': 'Girl at Joshua Tree Inn', 'Gabriel Macht': 'Gram Parsons', 'Robert Alan Beuth': 'Reporter', 'Sara Arrington': 'Crying Girl', 'Scott Adsit': 'Music Expert', 'Mary Pat Gleason': 'Nurse', 'David Caffrey': 'TV Interviewer', 'Alexa Sheehan': 'Nurse 2       (as Alexa Motley)', 'Wesley Mann': 'Doctor', 'Marley Shelton': 'Susie', 'Christina Applegate': 'Barbara', 'Jim Cody Williams': 'Truck Driver', 'Kay E. Kuter': 'Undertaker'}\"\r\ntt0446029,\"{'Michael Cera': 'Scott Pilgrim', 'Kieran Culkin': 'Wallace Wells', 'Anna Kendrick': 'Stacey Pilgrim', 'Alison Pill': 'Kim Pine', 'Aubrey Plaza': 'Julie Powers', 'Mary Elizabeth Winstead': 'Ramona Flowers', 'Jason Schwartzman': 'Gideon Graves', 'Johnny Simmons': 'Young Neil', 'Mark Webber': 'Stephen Stills', 'Ellen Wong': 'Knives Chau', 'Satya Bhabha': 'Matthew Patel', 'Will Bowes': 'Party Goer       (as Will Seatle Bowes)', 'Celine Lepage': 'Party Goer', 'Keita Saitou': 'Kyle Katayanagi       (as Keita Saito)', 'Mark Leroy': 'Party Goer       (as Mark LeRoy)'}\"\r\ntt0102175,\"{'Wesley Snipes': 'Flipper Purify', 'Annabella Sciorra': 'Angie Tucci', 'Spike Lee': 'Cyrus', 'Ossie Davis': 'The Good Reverend Doctor Purify', 'Ruby Dee': 'Lucinda Purify', 'Samuel L. Jackson': 'Gator Purify', 'Lonette McKee': 'Drew', 'John Turturro': 'Paulie Carbone', 'Frank Vincent': 'Mike Tucci', 'Anthony Quinn': 'Lou Carbone', 'Halle Berry': 'Vivian', 'Tyra Ferrell': 'Orin Goode', 'Veronica Webb': 'Vera', 'Veronica Timbers': 'Ming', 'David Dundara': 'Charlie Tucci'}\"\r\ntt1013752,\"{'Vin Diesel': 'Dominic Toretto', 'Paul Walker': \"\"Brian O'Conner\"\", 'Jordana Brewster': 'Mia', 'Michelle Rodriguez': 'Letty', 'John Ortiz': 'Campos', 'Laz Alonso': 'Fenix', 'Gal Gadot': 'Gisele', 'Jack Conley': 'Penning', 'Shea Whigham': 'Stasiak', 'Liza Lapira': 'Trinh', 'Sung Kang': 'Han', 'Tego Calderon': 'Tego', 'Don Omar': 'Don Omar', 'Mirtha Michelle': 'Cara', 'Greg Cipes': 'Dwight'}\"\r\ntt0337721,\"{'Barry Pepper': 'Charlie Halliday', 'Annabella Piugattuk': 'Kanaalaq', 'James Cromwell': 'Walter Shepherd', 'Kiersten Warren': 'Estelle', 'Jon Gries': 'Pierce', 'Robin Dunne': 'Carl', 'Malcolm Scott': 'Warren', 'Michael Bublé': 'Hap', 'Brad Sihvon': 'Mr. Izzard', 'Greg Spottiswood': 'Mr. Moss', 'Samson Jorah': 'Sammy', 'William MacDonald': 'Miner in Bar', 'Mariano Aupilardjuk': 'Elder Inuk', 'Peter Henry Arnatsiaq': 'Young Inuk', 'Peter Ipkornerk': 'Inuit Snow Camp'}\"\r\ntt0100107,\"{'Robert Davi': 'Det. Sean McKinney', 'Claudia Christian': 'Susan Riley', 'Michael Lerner': 'Edward Doyle', 'Bruce Campbell': 'Jack Forrest', 'Laurene Landon': 'Teresa Mallory', \"\"Robert Z'Dar\"\": 'Matt Cordell', 'Clarence Williams III': 'Blum', 'Leo Rossi': 'Turkell', 'Lou Bonacki': 'Detective Lovejoy', 'Paula Trickey': 'Cheryl', 'Charles Napier': 'Lew Brady', 'Santos Morales': 'Store Clerk', 'Robert Earl Jones': 'Harry', 'Andrew Hill Newman': 'Citizen', 'Ángel Salazar': 'Traffic Officer'}\"\r\ntt0104808,\"{'Robert Davi': 'Det. Sean McKinney', \"\"Robert Z'Dar\"\": 'Matt Cordell', 'Caitlin Dulany': 'Dr. Susan Fowler', 'Gretchen Becker': 'Katie Sullivan', 'Paul Gleason': 'Hank Cooney', 'Jackie Earle Haley': 'Frank Jessup', 'Julius Harris': 'Houngan', 'Grand L. Bush': 'Willie       (as Grand Bush)', 'Doug Savant': 'Dr. Peter Myerson', 'Robert Forster': 'Dr. Powell', 'Bobby Di Cicco': 'Bishop', 'Frank Pesce': 'Tribble', 'Lou Diaz': 'Leon', 'Brenda Varda': 'Lindsey', 'Vanessa Marquez': 'Terry'}\"\r\ntt0378407,\"{'Drew Barrymore': 'Herself', 'John August': 'Himself', 'Stephanie Bedell Quartararo': 'Herself       (as Stephanie Bedell)', 'Allison Burnett': 'Himself', \"\"Bill D'Elia\"\": 'Himself', 'Kerry David': 'Herself', 'Sonya Dakar': 'Herself', 'George DelHoyo': 'Himself - Voice Trailer Guy', 'Dylan': 'Himself - Limo Driver', 'Corey Feldman': 'Himself', 'Ross Forooghi': 'Himself', 'Jon Gunn': 'Himself', 'Lisa Furst': 'Herself       (as Lisa Gunn)', 'Lauren Hays': 'Herself', 'Brian Herzlinger': 'Himself'}\"\r\ntt0906665,\"{'Hideaki Itô': 'Gunman', 'Masanobu Andô': 'Yoichi', 'Kôichi Satô': 'Taira no Kiyomori', 'Kaori Momoi': 'Ruriko', 'Yûsuke Iseya': 'Minamoto no Yoshitsune', 'Renji Ishibashi': 'Village Mayor', 'Yoshino Kimura': 'Shizuka', 'Quentin Tarantino': 'Piringo', 'Takaaki Ishibashi': 'Benkei', 'Teruyuki Kagawa': 'Sheriff', 'Shun Oguri': 'Akira', 'Masato Sakai': 'Taira no Shigemori'}\"\r\ntt0210070,\"{'Emily Perkins': 'Brigitte', 'Katharine Isabelle': 'Ginger', 'Kris Lemche': 'Sam', 'Mimi Rogers': 'Pamela', 'Jesse Moss': 'Jason', 'Danielle Hampton': 'Trina', 'John Bourgeois': 'Henry', 'Peter Keleghan': 'Mr. Wayne', 'Christopher Redman': 'Ben', 'Jimmy MacInnis': 'Tim', 'Lindsay Leese': 'Nurse Ferry', 'Wendii Fulford': 'Ms. Sykes', 'Ann Baggley': 'Mother', 'Graeme Robertson': 'Toddler', 'Maxwell Robertson': 'Toddler'}\"\r\ntt1095217,\"{'Nicolas Cage': 'Terence McDonagh', 'Eva Mendes': 'Frankie Donnenfield', 'Val Kilmer': 'Stevie Pruit', 'Xzibit': \"\"Big Fate       (as Alvin 'Xzibit' Joiner)\"\", 'Fairuza Balk': 'Heidi', 'Shawn Hatosy': 'Armand Benoit', 'Jennifer Coolidge': 'Genevieve', 'Tom Bower': 'Pat McDonagh', 'Vondie Curtis-Hall': 'Captain James Brasser       (as Vondie Curtis Hall)', 'Brad Dourif': 'Ned Schoenholtz', 'Denzel Whitaker': 'Daryl', 'Irma P. Hall': 'Binnie Rogers', 'Shea Whigham': 'Justin', 'Michael Shannon': 'Mundt', 'Joe Nemmers': 'Larry Moy'}\"\r\ntt0118632,\"{'Todd Allen': 'Horace', 'Paul Bagget': 'Tag Team Preacher #3       (as Brother Paul Bagget)', 'Lenore Banks': 'Female Sonny Supporter', 'John Beasley': 'Brother Blackwell', 'Mary Lynette Braxton': 'Mother Blackwell', 'Brett Brock': 'Helper', 'Christopher Canady': \"\"Sister Johnson's Twin\"\", 'Christian Canady': \"\"Sister Johnson's Twin\"\", 'June Carter Cash': 'Mrs. Dewey Sr.', 'Elizabeth Chisolm': 'Singer', 'William Atlas Cole': 'Bayou Man       (as Brother William Atlas Cole)', 'Frank Collins Jr.': 'Soloist #4       (as Reverend Frank Collins Jr.)', 'Carl D. Cook': 'Civic Auditorium Preacher       (as Prophet Carl D. Cook)', 'Naomi Craig': 'Scripture Reader', 'Wayne Dehart': 'Liquor Store Preacher'}\"\r\ntt1294688,\"{'Keira Knightley': 'Joanna', 'Sam Worthington': 'Michael', 'Guillaume Canet': 'Alex', 'Eva Mendes': 'Laura', 'Daniel Eric Gold': 'Andy', 'Scott Adsit': 'Stuart', 'Griffin Dunne': 'Truman', 'Stephanie Romanov': 'Sandra', 'Anson Mount': 'Neal', 'Stephen Mailer': 'Client #1', 'John Treacy Egan': 'Client #2', 'Justine Cotsonas': 'Maggie', 'Karen Pittman': 'Caroline', 'Jon Norman Schneider': 'Server', 'Chriselle Almeida': 'Hostess'}\"\r\ntt1664894,\"{'Werner Herzog': 'Himself /              Narrator', 'Jean Clottes': 'Himself', 'Julien Monney': 'Himself', 'Jean-Michel Geneste': 'Himself', 'Michel Philippe': 'Himself', 'Gilles Tosello': 'Himself', 'Carole Fritz': 'Herself', 'Dominique Baffier': 'Herself', 'Valerie Feruglio': 'Herself', 'Nicholas Conard': 'Himself', 'Maria Malina': 'Herself', 'Wulf Hein': 'Himself', 'Maurice Maurin': 'Himself', 'Valerie Milenka Repnau': '(voice)'}\"\r\ntt1564367,\"{'Adam Sandler': 'Danny', 'Jennifer Aniston': 'Katherine', 'Nicole Kidman': 'Devlin Adams', 'Nick Swardson': 'Eddie', 'Brooklyn Decker': 'Palmer', 'Bailee Madison': 'Maggie', 'Griffin Gluck': 'Michael', 'Dave Matthews': 'Ian Maxtone Jones', 'Kevin Nealon': 'Adon', 'Rachel Dratch': 'Kirsten Brant', 'Allen Covert': 'Soul Patch', 'Dan Patrick': 'Tanner Patrick', 'Minka Kelly': 'Joanna Damon', 'Jackie Sandler': 'Veruca', 'Rakefet Abergel': 'Patricia'}\"\r\ntt1341188,\"{'Reese Witherspoon': 'Lisa', 'Paul Rudd': 'George', 'Owen Wilson': 'Matty', 'Jack Nicholson': 'Charles', 'Kathryn Hahn': 'Annie', 'Mark Linn-Baker': 'Ron', 'Lenny Venito': 'Al', 'Molly Price': 'Coach Sally', 'Ron McLarty': \"\"George's Lawyer\"\", 'Shelley Conn': 'Terry', 'Domenick Lombardozzi': 'Bullpen Pitcher', 'John Tormey': 'Doorman', 'Teyonah Parris': 'Riva', 'Tony Shalhoub': 'Psychiatrist', 'Dean Norris': 'Softball Coach'}\"\r\ntt1126591,\"{'Cher': 'Tess', 'Christina Aguilera': 'Ali', 'Eric Dane': 'Marcus', 'Cam Gigandet': 'Jack', 'Julianne Hough': 'Georgia', 'Alan Cumming': 'Alexis', 'Peter Gallagher': 'Vince', 'Kristen Bell': 'Nikki', 'Stanley Tucci': 'Sean', 'Dianna Agron': 'Natalie', 'Glynn Turman': 'Harold Saint', 'David Walton': 'Mark the DJ', 'Terrence Jenkins': 'Dave', 'Chelsea Traille': 'Coco', 'Tanee McCall': 'Scarlett'}\"\r\ntt0913354,\"{'Matt Dillon': 'Mike Cochrane', 'Jean Reno': 'Quinn', 'Laurence Fishburne': 'Baines', 'Amaury Nolasco': 'Palmer', 'Fred Ward': 'Duncan Ashcroft', 'Milo Ventimiglia': 'Eckehart', 'Skeet Ulrich': 'Dobbs', 'Columbus Short': 'Ty Hackett', 'Andre Jamal Kinney': 'Jimmy Hackett', 'Andrew Fiscella': 'Dispatcher #1', 'Nick Jameson': 'Homeless Man', 'Glenn Taranto': 'Joe the Cook', 'Lorna Raver': 'Child Welfare Agent', 'Garry Guerrier': 'Federal Guard', 'Robert Harvey': 'Bank Guard'}\"\r\ntt0844471,\"{'Bill Hader': 'Flint Lockwood       (voice)', 'Anna Faris': 'Sam Sparks       (voice)', 'James Caan': 'Tim Lockwood       (voice)', 'Andy Samberg': \"\"'Baby' Brent       (voice)\"\", 'Bruce Campbell': 'Mayor Shelbourne       (voice)', 'Mr. T': 'Earl Devereaux       (voice)', \"\"Bobb'e J. Thompson\"\": 'Cal Devereaux       (voice)', 'Benjamin Bratt': 'Manny       (voice)', 'Neil Patrick Harris': 'Steve       (voice)', 'Al Roker': 'Patrick Patrickson       (voice)', 'Lauren Graham': 'Fran Lockwood       (voice)', 'Will Forte': 'Joe Towne       (voice)', 'Max Neuwirth': 'Young Flint       (voice)', 'Peter Siragusa': 'Rufus       (voice)', 'Angela Shelton': 'Regina Devereaux       (voice)'}\"\r\ntt1136608,\"{'Sharlto Copley': 'Wikus Van De Merwe', 'Jason Cope': 'Grey Bradnam - UKNR Chief Correspondent /              Christopher Johnson', 'Nathalie Boltt': 'Sarah Livingstone - Sociologist', 'Sylvaine Strike': 'Dr Katrina McKenzie', 'Elizabeth Mkandawie': 'Interviewee', 'John Sumner': 'Les Feldman - MIL Engineer', 'William Allen Young': 'Dirk Michaels', 'Greg Melvill-Smith': 'Interviewer', 'Nick Blake': 'Francois Moraneu - CIV Engineer Team', 'Morena Busa Sesatsa': 'Interviewee', 'Themba Nkosi': 'Interviewee', 'Mzwandile Nqoba': 'Interviewee', 'Barry Strydom': 'Interviewee', 'Jed Brophy': 'James Hope - Police Officer', 'Louis Minnaar': 'Piet Smit'}\"\r\ntt0324133,\"{'Charlotte Rampling': 'Sarah Morton', 'Ludivine Sagnier': 'Julie', 'Charles Dance': 'John Bosload', 'Jean-Marie Lamour': 'Franck', 'Marc Fayolle': 'Marcel', 'Mireille Mossé': \"\"Marcel's Daughter\"\", 'Michel Fau': 'First Man', 'Jean-Claude Lecas': 'Second Man', 'Emilie Gavois-Kahn': 'Waitress at Cafe       (as Emilie Gavois Kahn)', 'Erarde Forestali': 'Old Man', 'Lauren Farrow': 'Julia', 'Sebastian Harcombe': 'Terry Long', 'Frances Cuka': 'Lady on the Underground', 'Keith Yeates': \"\"Sarah's Father\"\", 'Tricia Aileen': \"\"John Bosload's Secretary\"\"}\"\r\ntt1229822,\"{'Mia Wasikowska': 'Jane Eyre', 'Jamie Bell': 'St John Rivers', 'Su Elliot': 'Hannah       (as Su Elliott)', 'Holliday Grainger': 'Diana Rivers', 'Tamzin Merchant': 'Mary Rivers', 'Amelia Clarkson': 'Young Jane', 'Craig Roberts': 'John Reed', 'Sally Hawkins': 'Mrs. Reed', 'Lizzie Hopley': 'Miss Abbot', 'Jayne Wisener': 'Bessie', 'Freya Wilson': 'Eliza Reed', 'Emily Haigh': 'Georgiana Reed', 'Simon McBurney': 'Mr. Brocklehurst', 'Sandy McDade': 'Miss Scatcherd', 'Freya Parks': 'Helen Burns'}\"\r\ntt0881320,\"{'Richard Roxburgh': 'Frank', 'Ioan Gruffudd': 'Carl', 'Rhys Wakefield': 'Josh', 'Alice Parkinson': 'Victoria', 'Dan Wyllie': 'Crazy George       (as Daniel Wyllie)', 'Christopher James Baker': 'J.D.       (as Christopher Baker)', 'Nicole Downs': 'Liz', 'Allison Cratchley': 'Judes', 'Cramer Cain': 'Luko', 'Andrew Hansen': 'Dex', 'John Garvin': 'Jim Sergeant', 'Sean Dennehy': 'Chopper Pilot', 'Nea Diap': 'Kastom Shaman'}\"\r\ntt1385826,\"{'Matt Damon': 'David Norris', 'Emily Blunt': 'Elise Sellas', 'Lisa Thoreson': 'Suburban Mom', 'Florence Kastriner': 'Suburban Mom', 'Michael Kelly': 'Charlie Traynor', 'Phyllis MacBryde': 'Suburban Neighbor', 'Natalie Carter': 'Suburban Neighbor       (as Natalie E. Carter)', 'Chuck Scarborough': 'Chuck Scarborough', 'Jon Stewart': 'Jon Stewart', 'Gregory P. Hitchen': 'U.S. Coast Guard Officer       (as Capt. Gregory P. Hitchen)', 'Darrell Lenormand': 'Upstate Farmer       (as Darrell James LeNormand)', 'Michael Bloomberg': 'Mayor Michael R. Bloomberg       (as Mayor Michael R. Bloomberg)', 'Kar': 'Political Consultant', 'RJ Konner': 'Political Consultant', 'Susan D. Michaels': 'Reporter'}\"\r\ntt0328828,\"{'Jason Biggs': 'Jim Levenstein', 'Seann William Scott': 'Steve Stifler', 'Alyson Hannigan': 'Michelle Flaherty', 'Eddie Kaye Thomas': 'Paul Finch', 'Thomas Ian Nicholas': 'Kevin Myers', 'January Jones': 'Cadence Flaherty', 'Eugene Levy': \"\"Jim's Dad\"\", 'Molly Cheek': \"\"Jim's Mom\"\", 'Deborah Rush': 'Mary Flaherty', 'Fred Willard': 'Harold Flaherty', 'Angela Paton': 'Grandma', 'Eric Allan Kramer': 'Bear       (as Eric Allen Kramer)', 'Amanda Swisten': 'Fraulein Brandi', 'Nikki Ziering': 'Officer Krystal       (as Nikki Schieler Ziering)', 'Lawrence Pressman': 'Head Coach'}\"\r\ntt0872230,\"{'Max Thieriot': 'Bug', 'John Magaro': 'Alex', 'Denzel Whitaker': 'Jerome', 'Zena Grey': 'Penelope', 'Nick Lashaway': 'Brandon', 'Paulina Olszynski': 'Brittany', 'Jeremy Chu': 'Jay', 'Emily Meade': 'Fang', 'Raúl Esparza': 'Abel', 'Jessica Hecht': 'May', 'Frank Grillo': 'Paterson', 'Danai Gurira': 'Jeanne-Baptiste', 'Harris Yulin': 'Dr. Blake', 'Shareeka Epps': 'Chandele', 'Elena Hurst': 'Maria'}\"\r\ntt0887883,\"{'George Clooney': 'Harry Pfarrer', 'Frances McDormand': 'Linda Litzke', 'Brad Pitt': 'Chad Feldheimer', 'John Malkovich': 'Osborne Cox', 'Tilda Swinton': 'Katie Cox', 'Richard Jenkins': 'Ted', 'Elizabeth Marvel': 'Sandy Pfarrer', 'David Rasche': 'CIA Officer Palmer DeBakey Smith', 'J.K. Simmons': 'CIA Superior       (as JK Simmons)', 'Olek Krupa': 'Krapotkin', 'Michael Countryman': 'Alan', 'Kevin Sussman': 'Tuchman Marsh Man', 'J.R. Horne': 'Divorce Lawyer       (as JR Horne)', 'Hamilton Clancy': 'Peck', 'Armand Schultz': 'Olson'}\"\r\ntt0114746,\"{'Joseph Melito': 'Young Cole', 'Bruce Willis': 'James Cole', 'Jon Seda': 'Jose', 'Michael Chance': 'Scarface', 'Vernon Campbell': 'Tiny', 'H. Michael Walls': 'Botanist', 'Bob Adrian': 'Geologist', 'Simon Jones': 'Zoologist', 'Carol Florence': 'Astrophysicist /              Jones', 'Bill Raymond': 'Microbiologist', 'Ernest Abuba': 'Engineer', 'Irma St. Paule': 'Poet', 'Madeleine Stowe': 'Kathryn Railly', 'Joey Perillo': 'Detective Franki', 'Bruce Kirkpatrick': 'Policeman No. 1'}\"\r\ntt0095253,\"{'Dan Aykroyd': 'Roman Craig', 'John Candy': 'Chet Ripley', 'Stephanie Faracy': 'Connie Ripley', 'Annette Bening': 'Kate Craig', 'Chris Young': 'Buck Ripley', 'Ian Michael Giatti': 'Ben Ripley       (as Ian Giatti)', 'Hilary Gordon': 'Cara Craig', 'Rebecca Gordon': 'Mara Craig', 'Robert Prosky': 'Wally', 'Zoaunne LeRoy': 'Juanita', 'Lucy Deakins': 'Cammie', 'Nancy Lenehan': 'Waitress', 'John Bloom': 'Jimbo', 'Lewis Arquette': 'Herm', 'Britt Leach': 'Reg'}\"\r\ntt0842926,\"{'Julianne Moore': 'Jules', 'Annette Bening': 'Nic', 'Mark Ruffalo': 'Paul', 'Mia Wasikowska': 'Joni', 'Josh Hutcherson': 'Laser', 'Yaya DaCosta': 'Tanya       (as Yaya Dacosta)', 'Kunal Sharma': 'Jai', 'Eddie Hassell': 'Clay', 'Zosia Mamet': 'Sasha', 'Joaquín Garrido': 'Luis', 'Rebecca Lawrence Levy': 'Brooke       (as Rebecca Lawrence)', 'Lisa Eisner': 'Stella', 'Eric Eisner': 'Joel', 'Sasha Spielberg': 'Waify Girl', 'James MacDonald': \"\"Clay's Dad       (as James Macdonald)\"\"}\"\r\ntt0108052,\"{'Liam Neeson': 'Oskar Schindler', 'Ben Kingsley': 'Itzhak Stern', 'Ralph Fiennes': 'Amon Goeth', 'Caroline Goodall': 'Emilie Schindler', 'Jonathan Sagall': 'Poldek Pfefferberg       (as Jonathan Sagalle)', 'Embeth Davidtz': 'Helen Hirsch', 'Malgorzata Gebel': 'Wiktoria Klonowska       (as Malgoscha Gebel)', 'Shmuel Levy': 'Wilek Chilowicz       (as Shmulik Levy)', 'Mark Ivanir': 'Marcel Goldberg', 'Béatrice Macola': 'Ingrid       (as Beatrice Macola)', 'Andrzej Seweryn': 'Julian Scherner', 'Friedrich von Thun': 'Rolf Czurda       (as Friedrich Von Thun)', 'Krzysztof Luft': 'Herman Toffel', 'Harry Nehring': 'Leo John', 'Norbert Weisser': 'Albert Hujar'}\"\r\ntt0106770,\"{'Jason Scott Lee': 'Bruce Lee', 'Lauren Holly': 'Linda Lee', 'Robert Wagner': 'Bill Krieger', 'Michael Learned': 'Vivian Emery', 'Nancy Kwan': 'Gussie Yang', 'Kay Tong Lim': 'Philip Tan', 'Ric Young': \"\"Bruce's Father\"\", 'Luoyong Wang': 'Yip Man', 'Sterling Macer Jr.': 'Jerome Sprout       (as Sterling Macer)', 'Sven-Ole Thorsen': 'The Demon', 'Ong Soo Han': 'Luke Sun', 'Eric Bruskotter': 'Joe Henderson', 'Aki Aleong': 'Principal Elder', 'Chao Li Chi': 'Elder       (as Chao-Li Chi)', 'Iain M. Parker': 'Brandon Lee'}\"\r\ntt0413099,\"{'Steve Carell': 'Evan Baxter', 'Morgan Freeman': 'God', 'Lauren Graham': 'Joan Baxter', 'Johnny Simmons': 'Dylan Baxter', 'Graham Phillips': 'Jordan Baxter', 'Jimmy Bennett': 'Ryan Baxter', 'John Goodman': 'Congressman Long', 'Wanda Sykes': 'Rita', 'John Michael Higgins': 'Marty', 'Jonah Hill': 'Eugene', 'Molly Shannon': 'Eve Adams', 'Harve Presnell': 'Congressman Burrows', 'P.J. Byrne': \"\"Evan's Staffer\"\", 'Ralph Louis Harris': \"\"Evan's Staffer       (as Ralph Harris)\"\", 'Arden Myrin': \"\"Evan's Staffer\"\"}\"\r\ntt0101540,\"{'Robert De Niro': 'Max Cady', 'Nick Nolte': 'Sam Bowden', 'Jessica Lange': 'Leigh Bowden', 'Juliette Lewis': 'Danielle Bowden', 'Joe Don Baker': 'Claude Kersek', 'Robert Mitchum': 'Lieutenant Elgart', 'Gregory Peck': 'Lee Heller', 'Martin Balsam': 'Judge', 'Illeana Douglas': 'Lori Davis', 'Fred Dalton Thompson': 'Tom Broadbent', 'Zully Montero': 'Graciella', 'Craig Henne': 'Prisoner', 'Forest Burton': 'Prisoner', 'Edgar Allan Poe IV': 'Prisoner', 'Rod Ball': 'Prisoner'}\"\r\ntt0026138,\"{'Boris Karloff': 'The Monster       (as Karloff)', 'Colin Clive': 'Henry Frankenstein', 'Valerie Hobson': 'Elizabeth', 'Ernest Thesiger': 'Doctor Pretorius', 'Elsa Lanchester': \"\"Mary Wollstonecraft Shelley /              The Monster's Mate\"\", 'Gavin Gordon': 'Lord Byron', 'Douglas Walton': 'Percy Bysshe Shelley', \"\"Una O'Connor\"\": 'Minnie', 'E.E. Clive': 'Burgomaster', 'Lucien Prival': 'Butler - Albert', 'O.P. Heggie': 'Hermit', 'Dwight Frye': 'Karl Glutz', 'Reginald Barlow': 'Hans', 'Mary Gordon': \"\"Hans' Wife\"\", 'Anne Darling': 'Shepherdess       (as Ann Darling)'}\"\r\ntt0074281,\"{'Darrow Igus': 'Floyd', 'Otis Day': 'Lloyd       (as De Wayne Jessie)', 'James Spinks': 'Hippo', 'Antonio Fargas': 'Lindy', 'The Pointer Sisters': 'The Wilson Sisters', 'Richard Pryor': 'Daddy Rich', 'George Carlin': 'The Taxi Driver', 'Clarence Muse': 'Snapper', 'Franklyn Ajaye': 'T.C.', 'Tracy Reed': 'Mona', 'Bill Duke': 'Duane - Abdullah', 'Ivan Dixon': 'Lonnie', 'Henry Kingi': 'Goody', 'Pepe Serna': 'Chuco', 'Ray Vitte': 'Geronimo'}\"\r\ntt0115783,\"{'Damon Wayans': 'Keats', 'Adam Sandler': 'Moses', 'James Caan': 'Colton', 'Jeep Swenson': 'Bledsoe', 'James Farentino': 'Capt. Jensen', 'Kristen Wilson': 'Traci', 'Larry McCoy': 'Detective Sulliman', 'Allen Covert': 'Detective Jones', 'Bill Nunn': 'Finch', 'Mark Roberts': 'Charles', 'Mark Casella': 'Disneyland Cop', 'Andrew Shaifer': 'Cop at Airport', 'Monica Potter': \"\"Biker's Woman\"\", 'Jonathan Loughran': 'Rookie Cop', 'Steve White': 'Veteran Cop'}\"\r\ntt0129290,\"{'Robin Williams': 'Patch Adams', 'Daniel London': 'Truman', 'Monica Potter': 'Carin', 'Philip Seymour Hoffman': 'Mitch', 'Bob Gunton': 'Dean Walcott', 'Josef Sommer': 'Dr. Eaton', 'Irma P. Hall': 'Joletta', 'Frances Lee McCain': 'Judy', 'Harve Presnell': 'Dean Anderson', 'Daniella Kuhn': 'Adelane', 'Peter Coyote': 'Bill Davis', 'James Greene': 'Bile', 'Michael Jeter': 'Rudy', 'Harold Gould': 'Arthur Mendelson', 'Bruce Bohne': 'Trevor Beene'}\"\r\ntt0117218,\"{'Eddie Murphy': 'Sherman Klump /              Buddy Love /              Lance Perkins /              Papa Klump /              Mama Klump /              Grandma Klump /              Ernie Klump', 'Jada Pinkett Smith': 'Carla Purty       (as Jada Pinkett)', 'James Coburn': 'Harlan Hartley', 'Larry Miller': 'Dean Richmond', 'Dave Chappelle': 'Reggie Warrington', 'John Ales': 'Jason', 'Patricia Wilson': \"\"Dean's Secretary\"\", 'Jamal Mixon': 'Ernie Klump Jr.', 'Nichole McAuley': 'Fit Woman', 'Hamilton von Watts': 'Health Instructor       (as Hamilton Von Watts)', 'Chao Li Chi': 'Asian Man       (as Chao-Li Chi)', 'Tony Carlin': 'Host', 'Quinn Duffy': 'Bartender', 'Montell Jordan': 'Himself', 'Doug Williams': 'Band Leader'}\"\r\ntt0824747,\"{'Angelina Jolie': 'Christine Collins', 'Gattlin Griffith': 'Walter Collins', 'Michelle Gunn': 'Sandy', 'Jan Devereaux': 'Operator', 'Erica Grant': 'Operator', 'Antonia Bennett': 'Operator', 'Kerri Randles': 'Operator', 'Frank Wood': 'Ben Harris', 'Morgan Eastwood': 'Girl on Tricycle', 'Madison Hodges': 'Neighborhood Girl', 'John Malkovich': 'Rev. Gustav Briegleb', 'Colm Feore': 'Chief James E. Davis', 'Devon Conti': 'Arthur Hutchins', 'Ric Sarabia': 'Man at Diner', 'J.P. Bumstead': 'Cook'}\"\r\ntt0119643,\"{'Brad Pitt': 'Joe Black /              Young Man in Coffee Shop', 'Anthony Hopkins': 'William Parrish', 'Claire Forlani': 'Susan Parrish', 'Jake Weber': 'Drew', 'Marcia Gay Harden': 'Allison', 'Jeffrey Tambor': 'Quince', 'David S. Howard': 'Eddie Sloane', 'Lois Kelly-Miller': 'Jamaican Woman', 'Jahnni St. John': \"\"Jamaican Woman's Daughter\"\", 'Richard Clarke': 'Butler', 'Marylouise Burke': 'Lillian', 'Diane Kagan': 'Jennifer', 'June Squibb': 'Helen', 'Gene Canfield': 'Construction Foreman', 'Suzanne Hevner': 'Florist'}\"\r\ntt0120669,\"{'Johnny Depp': 'Raoul Duke', 'Benicio Del Toro': 'Dr. Gonzo', 'Tobey Maguire': 'Hitchhiker', 'Michael Lee Gogin': 'Uniformed Dwarf', 'Larry Cedar': 'Car Rental Agent - Los Angeles', 'Brian Le Baron': 'Parking Attendant       (as Brian LeBaron)', 'Katherine Helmond': 'Desk Clerk at Mint Hotel', 'Michael Warwick': 'Bell Boy', 'Craig Bierko': 'Lacerda', 'Tyde Kierney': 'Reporter', 'Mark Harmon': 'Magazine Reporter', 'Tim Thomerson': 'Hoodlum', 'Richard Riehle': 'Dune Buggy Driver', 'Ransom Gates': 'Dune Buggy Passenger', 'Laraine Newman': 'Frog-Eyed Woman'}\"\r\ntt0110950,\"{'Winona Ryder': 'Lelaina Pierce', 'Ethan Hawke': 'Troy Dyer', 'Janeane Garofalo': 'Vickie Miner', 'Steve Zahn': 'Sammy Gray', 'Ben Stiller': 'Michael Grates', 'Swoosie Kurtz': 'Charlane McGregor', \"\"Harry O'Reilly\"\": 'Wes McGregor', 'Susan Norfleet': 'Helen Anne Pierce', 'Joe Don Baker': 'Tom Pierce', 'Renée Zellweger': 'Tami       (as Renee Zellweger)', 'James Rothenberg': 'Rick', 'John Mahoney': 'Grant Gubler', 'Eric Morgan Stuart': 'Damien       (as Eric Stuart)', 'Barry Del Sherman': \"\"Grant's Producer       (as Barry Sherman)\"\", 'Chelsea Lagos': 'Troy Groupie'}\"\r\ntt0021884,\"{'Colin Clive': 'Henry Frankenstein', 'Mae Clarke': 'Elizabeth', 'John Boles': 'Victor Moritz', 'Boris Karloff': 'The Monster       (as Boris Karloff)', 'Edward Van Sloan': 'Doctor Waldman', 'Frederick Kerr': 'Baron Frankenstein', 'Dwight Frye': 'Fritz', 'Lionel Belmore': 'The Burgomaster', 'Marilyn Harris': 'Little Maria'}\"\r\ntt0095631,\"{'Robert De Niro': 'Jack Walsh', 'Charles Grodin': 'Jonathan Mardukas', 'Yaphet Kotto': 'Alonzo Mosely', 'John Ashton': 'Marvin Dorfler', 'Dennis Farina': 'Jimmy Serrano', 'Joe Pantoliano': 'Eddie Moscone', 'Richard Foronjy': 'Tony Darvo', 'Robert Miranda': 'Joey', 'Jack Kehoe': 'Jerry Geisler', 'Wendy Phillips': 'Gail', 'Danielle DuClos': 'Denise', 'Philip Baker Hall': 'Sidney', 'Tom McCleister': 'Red Wood       (as Thom McCleister)', 'Mary Gillis': 'Bus Ticket Clerk', 'John Toles-Bey': 'Monroe Bouchet'}\"\r\ntt0120601,\"{'John Cusack': 'Craig Schwartz', 'Cameron Diaz': 'Lotte Schwartz', 'Ned Bellamy': 'Derek Mantini', 'Eric Weinstein': 'Father at Puppet Show', 'Madison Lanc': 'Daughter at Puppet Show', 'Octavia Spencer': 'Woman in Elevator       (as Octavia L. Spencer)', 'Mary Kay Place': 'Floris', 'Orson Bean': 'Dr. Lester', 'Catherine Keener': 'Maxine Lund', 'K.K. Dodds': 'Wendy', 'Byrne Piven': 'Captain Mertin', 'Judith Wetzell': 'Tiny Woman', 'John Malkovich': 'John Horatio Malkovich', 'Kevin Carroll': 'Cab Driver', 'Willie Garson': 'Guy in Restaurant'}\"\r\ntt0034240,\"{'Joel McCrea': 'John L. Sullivan', 'Veronica Lake': 'The Girl', 'Robert Warwick': 'Mr. LeBrand', 'William Demarest': 'Mr. Jones', 'Franklin Pangborn': 'Mr. Casalsis', 'Porter Hall': 'Mr. Hadrian', 'Byron Foulger': 'Mr. Valdelle', 'Margaret Hayes': 'Secretary', 'Robert Greig': \"\"Sullivan's Butler\"\", 'Eric Blore': \"\"Sullivan's Valet\"\", 'Torben Meyer': 'The Doctor', 'Victor Potel': 'Cameraman', 'Richard Webb': 'Radio Man', 'Charles R. Moore': 'Colored Chef       (as Charles Moore)', 'Almira Sessions': 'Ursula'}\"\r\ntt0118928,\"{'Pierce Brosnan': 'Harry Dalton', 'Linda Hamilton': 'Rachel Wando', 'Jamie Renée Smith': 'Lauren Wando', 'Jeremy Foley': 'Graham Wando', 'Elizabeth Hoffman': 'Ruth', 'Charles Hallahan': 'Paul Dreyfus', 'Grant Heslov': 'Greg', 'Kirk Trutner': 'Terry Furlong', 'Arabella Field': 'Nancy', 'Tzi Ma': 'Stan', 'Brian Reddy': 'Les Worrell', 'Lee Garlington': 'Dr. Jane Fox', 'Bill Bolender': 'Sheriff Turner', 'Carole Androsky': 'Mary Kelly       (as Carol Androsky)', 'Peter Jason': 'Norman Gates'}\"\r\ntt0082200,\"{'John Belushi': 'Ernie Souchak', 'Blair Brown': 'Nell Porter', 'Allen Garfield': 'Howard McDermott       (as Allen Goorwitz)', 'Carlin Glynn': 'Sylvia', 'Tony Ganios': 'Max Bernbaum', 'Val Avery': 'Yablonowitz', 'Liam Russell': 'Deke Lewis', 'Everett Smith': 'Fiddle', 'Bill Henderson': 'Train Conductor', 'Bruce Jarchow': 'Hellinger', 'Eddie Schwartz': 'Jimmy', 'Harold Holmes': 'Mr. Feeney', 'Elizabeth Young': 'Mrs. Feeney', 'Ron Dean': 'Plesko', 'Frankie Hill': 'Agatha'}\"\r\ntt0094138,\"{'Casey Siemaszko': 'Jerry Mitchell', 'Annie Ryan': 'Franny Perrins       (as Anne Ryan)', 'Richard Tyson': 'Buddy Revell', 'Stacey Glick': 'Brei Mitchell', 'Jonathan Wise': 'Vincent Costello', 'Jeffrey Tambor': 'Mr. Rice', 'Philip Baker Hall': 'Detective Mulvahill', 'John P. Ryan': \"\"Mr. O'Rourke\"\", 'Liza Morrow': 'Karen Clarke', 'Scott Tiler': 'Bruce Chalmer', 'Guy Massey': 'Scott Cranston', 'Theron Read': 'Mark Bojeekus', 'Mike Jolly': 'Craig Mattey', 'Charles Macaulay': 'Voytek Dolinski', 'Mitch Pileggi': 'Duke Herman'}\"\r\ntt0473464,\"{'Nikki Reed': 'Shay Bettencourt', 'Jonathan Tucker': 'Jordan Wells', 'Julie Gonzalo': 'Desiree Thomas', \"\"Michael O'Keefe\"\": 'Detective Griffin', 'Haviland Morris': 'Julia Wells', 'Dennis Boutsikaris': 'Ben Wells', 'Frank Whaley': 'Wade Chandling', 'Brooke Mayer': 'Trish', 'Alessa Neeck': 'Abbey', 'Christopher Jon Martin': 'Jake Miles       (as Christopher Martin)', 'Patricia Lewis Browne': 'Older Woman', 'Billy Powell': 'Chemistry Teacher', 'Thomas Tripiciano': 'Dean Robert Mullen', 'Nick Lang': 'Wide Receiver', 'Ferdinand Jay Smith': 'DA Thomas       (as Ferdinand J. Smith)'}\"\r\ntt0036775,\"{'Fred MacMurray': 'Walter Neff', 'Barbara Stanwyck': 'Phyllis Dietrichson', 'Edward G. Robinson': 'Barton Keyes', 'Porter Hall': 'Mr. Jackson', 'Jean Heather': 'Lola Dietrichson', 'Tom Powers': 'Mr. Dietrichson', 'Byron Barr': 'Nino Zachetti', 'Richard Gaines': 'Mr. Norton', 'Fortunio Bonanova': 'Sam Gorlopis', 'John Philliber': 'Joe Pete'}\"\r\ntt0276751,\"{'Hugh Grant': 'Will Freeman', 'Nicholas Hoult': 'Marcus Brewer', 'Sharon Small': 'Christine', 'Madison Cook': 'Imogen', 'Jordan Cook': 'Imogen', 'Nicholas Hutchison': 'John', 'Ryan Speechley': 'Barney', 'Joseph Speechley': 'Barney', 'Toni Collette': 'Fiona Brewer', 'Natalia Tena': 'Ellie       (as Nat Gastiain Tena)', 'Laura Kennington': \"\"Ellie's Friend\"\", 'Tanika Swaby': \"\"Ellie's Friend\"\", 'Peter McNicholl': \"\"Ellie's Friend\"\", 'Chris Webster': \"\"Ellie's Friend       (as Christopher Webster)\"\", 'Ben Ridgeway': 'Lee'}\"\r\ntt0363547,\"{'Sarah Polley': 'Ana', 'Ving Rhames': 'Kenneth', 'Jake Weber': 'Michael', 'Mekhi Phifer': 'Andre', 'Ty Burrell': 'Steve', 'Michael Kelly': 'CJ', 'Kevin Zegers': 'Terry', 'Michael Barry': 'Bart', 'Lindy Booth': 'Nicole', 'Jayne Eastwood': 'Norma', 'Boyd Banks': 'Tucker', 'Inna Korobkina': 'Luda', 'R.D. Reid': 'Glen', 'Kim Poirier': 'Monica', 'Matt Frewer': 'Frank'}\"\r\ntt0322259,\"{'Paul Walker': \"\"Brian O'Conner\"\", 'Tyrese Gibson': 'Roman Pearce       (as Tyrese)', 'Eva Mendes': 'Monica Fuentes', 'Cole Hauser': 'Carter Verone', 'Ludacris': \"\"Tej       (as Chris 'Ludacris' Bridges)\"\", 'Thom Barry': 'Agent Bilkins', 'James Remar': 'Agent Markham', 'Devon Aoki': 'Suki', 'Amaury Nolasco': 'Orange Julius', 'Michael Ealy': 'Slap Jack', 'Jin Au-Yeung': 'Jimmy       (as Jin Auyeung)', 'Edward Finlay': 'Agent Dunn', 'Mark Boone Junior': 'Detective Whitworth', 'Mo Gallini': 'Enrique       (as Matt Gallini)', \"\"Roberto 'Sanz' Sanchez\"\": 'Roberto'}\"\r\ntt0230169,\"{'Steve Railsback': 'Ed Gein', 'Carrie Snodgress': 'Augusta W. Gein', 'Carol Mansell': 'Collette Marshall', 'Sally Champlin': 'Mary Hogan', 'Steve Blackwood': 'Brian', 'Nancy Linehan Charles': 'Eleanor', 'Bill Cross': 'George Gein', 'Travis McKenna': 'Ronnie', 'Jan Hoag': 'Irene Hill', 'Brian Evers': 'Henry Gein', 'Pat Skipper': 'Sheriff Jim Stillwell', 'Craig Zimmerman': 'Pete Anderson', 'Nicholas Stojanovich': 'Dale', 'Dylan Kasch': 'Melvin', 'Tish Hicks': 'Leigh Cross'}\"\r\ntt0081505,\"{'Jack Nicholson': 'Jack Torrance', 'Shelley Duvall': 'Wendy Torrance', 'Danny Lloyd': 'Danny', 'Scatman Crothers': 'Hallorann', 'Barry Nelson': 'Ullman', 'Philip Stone': 'Grady', 'Joe Turkel': 'Lloyd', 'Anne Jackson': 'Doctor', 'Tony Burton': 'Durkin', 'Lia Beldam': 'Young Woman in Bath', 'Billie Gibson': 'Old Woman in Bath', 'Barry Dennen': 'Watson', 'David Baxt': 'Forest Ranger 1', 'Manning Redwood': 'Forest Ranger 2', 'Lisa Burns': 'Grady Daughter'}\"\r\ntt0978764,\"{'Emily Browning': 'Babydoll', 'Abbie Cornish': 'Sweet Pea', 'Jena Malone': 'Rocket', 'Vanessa Hudgens': 'Blondie', 'Jamie Chung': 'Amber', 'Carla Gugino': 'Dr. Vera Gorski', 'Oscar Isaac': 'Blue Jones', 'Jon Hamm': 'High Roller /              Doctor', 'Scott Glenn': 'Wise Man', 'Richard Cetrone': 'CJ', 'Gerard Plunkett': 'Stepfather', 'Malcolm Scott': 'The Cook', 'Ron Selmour': 'Danforth', 'A.C. Peterson': 'Mayor /              Lighter Orderly       (as AC Peterson)', 'Revard Dufresne': 'Big Boss Thug /              Orderly #3'}\"\r\ntt1182350,\"{'Gemma Jones': 'Helena', 'Pauline Collins': 'Cristal', 'Anthony Hopkins': 'Alfie', 'Rupert Frazer': 'Jogging Partner', 'Kelly Harrison': 'Personal Trainer', 'Naomi Watts': 'Sally', 'Josh Brolin': 'Roy', 'Freida Pinto': 'Dia', 'Eleanor Gecks': 'Rollerblading Friend', 'Antonio Banderas': 'Greg', 'Fenella Woolgar': 'Jane', 'Ewen Bremner': 'Henry Strangler', 'Christian McKay': 'Poker Friend', 'Philip Glenister': 'Poker Friend', 'Jonathan Ryland': 'Poker Friend'}\"\r\ntt1265990,\"{'Leighton Meester': 'Rebecca', 'Minka Kelly': 'Sara Matthews', 'Cam Gigandet': 'Stephen', 'Aly Michalka': 'Tracy', 'Danneel Ackles': 'Irene       (as Danneel Harris)', 'Frances Fisher': \"\"Rebecca's Mom\"\", 'Tomas Arana': \"\"Rebecca's Dad\"\", 'Billy Zane': 'Professor Roberts', 'Nina Dobrev': 'Maria', 'Matt Lanter': 'Jason', 'Kat Graham': 'Kim       (as Katerina Graham)', 'Johannes Raassina': 'Band Member', 'Cameron Fisher Brousseau': 'Band Member', 'Evan Michael Brown': 'Band Member', 'Alex Meraz': 'Frat Boy'}\"\r\ntt1646111,\"{'Khomotso Manyaka': 'Chanda', 'Keaobaka Makanyane': 'Esther', 'Harriet Lenabe': 'Mrs. Tafa       (as Harriet Manamela)', 'Lerato Mvelase': 'Lillian', 'Tinah Mnumzana': 'Aunt Lizbet', 'Aubrey Poolo': 'Jonah', 'Mapaseka Mathebe': 'Iris', 'Thato Kgaladi': 'Soly', 'Kgomotso Ditshweni': 'Dudu', 'Rami Chuene': 'Aunty Ruth', 'Jerry Marobyane': 'Mr. Pheto', 'Tshepo Emmanuel Nonyane': 'Mr. Lesole', 'Johanna Refilwe Sihlangu': 'Mrs. Lesole', 'Vusi Muzi Given Nyathi': 'Mr. Nylo', 'Patrick Shai': 'Dr. Charles Chilume'}\"\r\ntt1588337,\"{'Lambert Wilson': 'Christian', 'Michael Lonsdale': 'Luc', 'Olivier Rabourdin': 'Christophe', 'Philippe Laudenbach': 'Célestin', 'Jacques Herlin': 'Amédée', 'Loïc Pichon': 'Jean-Pierre', 'Xavier Maly': 'Michel', 'Jean-Marie Frin': 'Paul', 'Abdelhafid Metalsi': 'Nouredine', 'Sabrina Ouazani': 'Rabbia', 'Abdellah Moundy': 'Omar       (as Abdallah Moundy)', 'Olivier Perrier': 'Bruno', 'Farid Larbi': 'Ali Fayattia', 'Adel Bencherif': 'Le terroriste', 'Benaïssa Ahaouari': 'Sidi Larbi'}\"\r\ntt1243957,\"{'Johnny Depp': 'Frank Tupelo', 'Angelina Jolie': 'Elise Clifton-Ward', 'Paul Bettany': 'Inspector John Acheson', 'Timothy Dalton': 'Chief Inspector Jones', 'Steven Berkoff': 'Reginald Shaw', 'Rufus Sewell': 'The Englishman', 'Christian De Sica': 'Colonnello Lombardi', 'Alessio Boni': 'Sergente Cerato', 'Daniele Pecci': 'Tenente Narduzzi', 'Giovanni Guidelli': 'Tenente Tommassini', 'Raoul Bova': 'Conte Filippo Gaggia', 'Bruno Wolkowitch': 'Capitaine Courson', 'Marc Ruchmann': 'Brigadier Kaiser', 'Julien Baumgartner': 'Brigadier Ricuort', 'François Vincentelli': 'Brigadier Marion'}\"\r\ntt0298203,\"{'Eminem': \"\"Jimmy 'B-Rabbit' Smith\"\", 'Kim Basinger': 'Stephanie Smith', 'Mekhi Phifer': \"\"David 'Future' Porter\"\", 'Brittany Murphy': 'Alex', 'Evan Jones': 'Cheddar Bob', 'Omar Benson Miller': 'Sol George', \"\"De'Angelo Wilson\"\": 'DJ Iz', 'Eugene Byrd': 'Wink', 'Taryn Manning': 'Janeane', 'Larry Hudson': 'Bouncer', 'Proof': \"\"Lil' Tic\"\", 'Mike Bell': 'Shorty Mike', 'DJ Head': 'Battle DJ', 'Michael Shannon': 'Greg Buehl', 'Chloe Greenfield': 'Lily Smith'}\"\r\ntt1220634,\"{'Milla Jovovich': 'Alice', 'Ali Larter': 'Claire Redfield', 'Kim Coates': 'Bennett', 'Shawn Roberts': 'Albert Wesker', 'Sergio Peris-Mencheta': 'Angel', 'Spencer Locke': 'K-Mart', 'Boris Kodjoe': 'Luther', 'Wentworth Miller': 'Chris Redfield', 'Sienna Guillory': 'Jill Valentine', 'Kacey Clarke': 'Crystal Waters       (as Kacey Barnfield)', 'Norman Yeung': 'Kim Yong', 'Fulvio Cecere': 'Wendell', 'Raymond Olubawale': 'Axeman       (as Ray Olubowale)', 'Christopher Kano': 'Sniper #1', 'Tatsuya Goke': 'Sniper #2'}\"\r\ntt0249462,\"{'Jamie Bell': 'Billy', 'Jean Heywood': 'Grandma', 'Jamie Draven': 'Tony', 'Gary Lewis': 'Dad', 'Stuart Wells': 'Michael', 'Mike Elliot': 'George Watson', 'Billy Fane': 'Mr Braithwaite', 'Nicola Blackwell': 'Debbie', 'Julie Walters': 'Mrs. Wilkinson', 'Carol McGuigan': 'Librarian', 'Joe Renton': 'Gary Poulson', 'Colin MacLachlan': 'Mr. Wilkinson       (as Colin Maclachlan)', 'Janine Birkett': \"\"Billy's Mum\"\", 'Trevor Fox': 'PC Jeff Peverly', 'Charlie Hardwick': 'Sheila Briggs'}\"\r\ntt0971209,\"{'Steve Zahn': 'Cliff', 'Timothy Olyphant': 'Nick', 'Milla Jovovich': 'Cydney', 'Kiele Sanchez': 'Gina', 'Marley Shelton': 'Cleo', 'Chris Hemsworth': 'Kale', 'Anthony Ruivivar': 'Chronic', 'Dale Dickey': 'Earth Momma', 'Peter Navy Tuiasosopo': 'Supply Guy', 'Wendy Braun': 'Debbie Mason /              Clerk', 'Jim Cruz': 'Helicopter Pilot', 'Angela Sun': 'Counter Girl', 'Leandra Gillis': 'TV Anchor', 'Amit Yogev': 'Waiter', 'Carlos Alberto Lopez': 'Camera Samaritan       (as Carlos Alberto López)'}\"\r\ntt0491152,\"{'Ginnifer Goodwin': 'Rachel', 'Kate Hudson': 'Darcy', 'Colin Egglesfield': 'Dex', 'John Krasinski': 'Ethan', 'Steve Howey': 'Marcus', 'Ashley Williams': 'Claire', 'Geoff Pierson': 'Dexter Thaler Sr.', 'Jill Eikenberry': 'Bridget Thaler', 'Jonathan Epstein': 'Professor Zigman', 'Leia Thompson': 'Bridal Consultant', 'Sarah Baldwin': 'June', 'Mark La Mura': \"\"Marcus's Dad\"\", 'Lindsay Ryan': 'Salesgirl', 'Kirsten Day': 'Pretty Brunette', 'Christopher Peuler': 'Husband'}\"\r\ntt0421238,\"{'Richard Wilson': 'Mike Burns', 'Noah Taylor': \"\"Brian O'Leary\"\", 'Jeremy Madrona': 'Asian Prostitute', 'Jae Mamuyac': 'Asian Prostitute', 'Guy Pearce': 'Charlie Burns', 'Mick Roughan': 'Mad Jack Bradshaw', 'Shane Watt': 'John Gordon', 'Ray Winstone': 'Captain Stanley', 'Robert Morgan': 'Sergeant Lawrence', 'David Gulpilil': 'Jacko', 'Bryan Probets': 'Officer Dunn', 'Oliver Ackland': 'Patrick Hopkins', 'Danny Huston': 'Arthur Burns', 'David Vallon': 'Tom Cox', 'Daniel Parker': 'Henry Clark'}\"\r\ntt1219289,\"{'Bradley Cooper': 'Eddie Morra', 'Robert De Niro': 'Carl Van Loon', 'Abbie Cornish': 'Lindy', 'Andrew Howard': 'Gennady', 'Anna Friel': 'Melissa', 'Johnny Whitworth': 'Vernon', 'Tomas Arana': 'Man in Tan Coat', 'Robert John Burke': 'Pierce', 'Darren Goldstein': 'Kevin Doyle', 'Ned Eisenberg': 'Morris Brandt', 'T.V. Carpio': 'Valerie', 'Richard Bekins': 'Hank Atwood', 'Patricia Kalember': 'Mrs. Atwood', 'Cindy Katz': 'Marla Sutton', 'Brian Anthony Wilson': 'Detective       (as Brian A. Wilson)'}\"\r\ntt1217613,\"{'Aaron Eckhart': 'Ssgt. Michael Nantz', 'Ramon Rodriguez': '2nd Lt. William Martinez', 'Will Rothhaar': 'Cpl. Lee Imlay', 'Cory Hardrict': 'Cpl. Jason Lockett', 'Jim Parrack': 'LCpl. Peter Kerns', 'Gino Anthony Pesi': 'Cpl. Nick Stavrou', 'Ne-Yo': 'Cpl. Kevin Harris', 'James Hiroyuki Liao': 'LCpl. Steven Mottola', 'Bridget Moynahan': 'Michele', 'Noel Fisher': 'Pfc. Shaun Lenihan', \"\"Adetokumboh M'Cormack\"\": 'Corpsman Jibril Adukwu', 'Bryce Cass': 'Hector Rincon', 'Michael Peña': 'Joe Rincon', 'Michelle Rodriguez': 'TSgt. Elena Santos', 'Neil Brown Jr.': 'LCpl. Richard Guerrero'}\"\r\ntt1174732,\"{'Carey Mulligan': 'Jenny Mellor', 'Olivia Williams': 'Miss Stubbs', 'Alfred Molina': 'Jack Mellor', 'Cara Seymour': 'Marjorie', 'William Melling': 'Small Boy', 'Connor Catchpole': 'Small Boy', 'Matthew Beard': 'Graham', 'Peter Sarsgaard': 'David Goldman', 'Amanda Fairbank-Hynes': 'Hattie', 'Ellie Kendrick': 'Tina', 'Dominic Cooper': 'Danny', 'Rosamund Pike': 'Helen', 'Nick Sampson': 'Auctioneer', 'Kate Duchêne': 'Latin Teacher       (as Kate Duchene)', 'Bel Parker': 'Small Girl'}\"\r\ntt0989757,\"{'Channing Tatum': 'John Tyree', 'Amanda Seyfried': 'Savannah Curtis', 'Richard Jenkins': 'Mr. Tyree', 'Henry Thomas': 'Tim', 'D.J. Cotrona': 'Noodles', 'Cullen Moss': 'Rooster (Dan Rooney)', 'Gavin McCulley': 'Starks', 'Jose Lucena Jr.': 'Berry       (as Jose Lucena)', 'Keith Robinson': 'Captain Stone', 'Scott Porter': 'Randy', 'Leslea Fisher': 'Susan', 'William Howard': 'Daniels', 'David Andrews': 'Mr. Curtis', 'Mary Rachel Quinn': 'Mrs. Curtis       (as Mary Rachel Dudley)', 'Bryce Hayes': 'Yellow Shirt'}\"\r\ntt0450405,\"{'John C. Reilly': 'Crepsley', 'Josh Hutcherson': 'Steve', 'Chris Massoglia': 'Darren', 'Jessica Carlson': 'Rebecca', 'Michael Cerveris': 'Mr. Tiny', 'Ray Stevenson': 'Murlaugh', 'Patrick Fugit': 'Evra the Snake Boy', 'Morgan Saylor': 'Annie', 'Don McManus': 'Mr. Shan', 'Colleen Camp': 'Mrs. Shan', 'Ken Watanabe': 'Mr. Tall', 'Salma Hayek': 'Madame Truska', 'Orlando Jones': 'Alexander Ribs', 'Frankie Faison': 'Rhamus Twobellies', 'Willem Dafoe': 'Gavner Purl'}\"\r\ntt0089560,\"{'Cher': 'Rusty Dennis', 'Sam Elliott': 'Gar', 'Eric Stoltz': 'Rocky Dennis', 'Estelle Getty': 'Evelyn', 'Richard Dysart': 'Abe', 'Laura Dern': 'Diana', 'Micole Mercurio': 'Babe', 'Harry Carey Jr.': 'Red', 'Dennis Burkley': 'Dozer', 'Lawrence Monoson': 'Ben', 'Ben Piazza': 'Mr. Simms', 'L. Craig King': 'Eric', 'Alexandra Powers': 'Lisa', 'Kelly Jo Minter': 'Lorrie       (as Kelly Minter)', 'Joe Unger': '1st Boyfriend'}\"\r\ntt0079367,\"{'Steve Martin': 'Navin /              Cat Juggler       (as Pig Eye Jackson also)', 'Bernadette Peters': 'Marie', 'Catlin Adams': 'Patty Bernstein', 'Mabel King': 'Mother', 'Richard Ward': 'Father', 'Dick Anthony Williams': 'Taj', 'Bill Macy': 'Stan Fox', 'M. Emmet Walsh': 'Madman', \"\"Dick O'Neill\"\": 'Frosty', 'Maurice Evans': 'Hobart', 'Helena Carroll': 'Hester', 'Renn Woods': 'Elvira       (as Ren Wood)', 'Pepe Serna': 'Punk #1', 'Sonny Terry': 'Blues Singer', 'Brownie McGhee': 'Blues Singer       (as Brownie McGee)'}\"\r\ntt0204946,\"{'Kirsten Dunst': 'Torrance Shipman', 'Eliza Dushku': 'Missy Pantone', 'Jesse Bradford': 'Cliff Pantone', 'Gabrielle Union': 'Isis', 'Clare Kramer': 'Courtney', 'Nicole Bilderback': 'Whitney', 'Tsianina Joelson': 'Darcy', 'Rini Bell': 'Kasey', 'Nathan West': 'Jan', 'Huntley Ritter': 'Les', 'Shamari Fears': 'Lava', 'Natina Reed': 'Jenelope', 'Brandi Williams': 'Lafred', 'Richard Hillman': 'Aaron', 'Lindsay Sloane': 'Big Red'}\"\r\ntt1545098,\"{'Ryan Brown': 'Superfan with puka shell necklace', 'Michael Chabes': 'Fan', 'Kenny Chesney': 'Himself'}\"\r\ntt1313092,\"{'James Frecheville': \"\"Joshua 'J' Cody\"\", 'Bryce Lindemann': 'Paramedic #1', 'Paul Smits': 'Paramedic #2', 'Jacki Weaver': \"\"Janine 'Smurf' Cody\"\", 'Joel Edgerton': \"\"Barry 'Baz' Brown\"\", 'Luke Ford': 'Darren Cody', 'Sullivan Stapleton': 'Craig Cody', 'Mirrah Foulkes': 'Catherine Brown', 'Anthony Ahern': 'Armed Robbery Detective', 'Justin Rosniak': 'Detective Randall Roache', 'Michael Vice': 'Hood #1', 'Chris Weir': 'Hood #2', 'Laura Wheelwright': 'Nicky Henry', 'Sarah Nguyen': 'Waitress', 'Lucia Cai': 'Cashier'}\"\r\ntt1431181,\"{'Jim Broadbent': 'Tom', 'Ruth Sheen': 'Gerri', 'Lesley Manville': 'Mary', 'Oliver Maltman': 'Joe', 'Peter Wight': 'Ken', 'David Bradley': 'Ronnie', 'Martin Savage': 'Carl', 'Karina Fernandez': 'Katie', 'Michele Austin': 'Tanya', 'Phil Davis': 'Jack', 'Imelda Staunton': 'Janet', 'Stuart McQuarrie': \"\"Tom's Colleague\"\", 'Eileen Davies': 'Mourner', 'Mary Jo Randle': 'Mourner', 'Ben Roberts': 'Mourner'}\"\r\ntt0775489,\"{'Jean-Claude Donda': 'The Illusionist /              French Cinema Manager       (voice)', 'Eilidh Rankin': 'Alice       (voice)', 'Duncan MacNeil': 'Additional Voices       (voice)', 'Raymond Mearns': 'Additional Voices       (voice)', 'James T. Muir': 'Additional Voices       (voice)', 'Tom Urie': 'Additional Voices       (voice)', 'Paul Bandey': 'Additional Voices       (voice)'}\"\r\ntt1371155,\"{'Sally Hawkins': \"\"Rita O'Grady\"\", 'Andrea Riseborough': 'Brenda', 'Jaime Winstone': 'Sandra', 'Lorraine Stanley': 'Monica', 'Nicola Duffett': 'Eileen', 'Geraldine James': 'Connie', 'Bob Hoskins': 'Albert Passingham', 'Matthew Aubrey': 'Brian       (as Matt Aubrey)', 'Daniel Mays': \"\"Eddie O'Grady\"\", 'Roger Lloyd Pack': 'George       (as Roger Lloyd-Pack)', 'Phil Cornwell': 'Dave', 'Karen Seacombe': 'Marge', 'Thomas Arnold': 'Martin', 'Sian Scott': \"\"Sharon O'Grady\"\", 'Robbie Kay': \"\"Graham O'Grady\"\"}\"\r\ntt0804497,\"{'Keir Gilchrist': 'Craig', 'Dana DeVestern': 'Alyssa       (as Dana De Vestern)', 'Lauren Graham': 'Lynn', 'Jim Gaffigan': 'George', 'Karen Chilton': 'Nurse Harper', 'Zach Galifianakis': 'Bobby', 'Aasif Mandvi': 'Dr. Mahmoud', 'Jared Goldstein': 'Ronny', 'Alan Aisenberg': 'Scuggs', 'Zoë Kravitz': 'Nia', 'Thomas Mann': 'Aaron', 'Jeremy Davies': 'Smitty', 'Rosalyn Coleman': \"\"Monica /              'Under Pressure' Nurse #1\"\", 'Viola Davis': 'Dr. Eden Minerva', 'Lou Myers': 'Jimmy'}\"\r\ntt1645089,\"{'Matt Damon': 'Himself - Narrator       (voice)', 'Gylfi Zoega': 'Himself - Professor of Economics, University of Iceland', 'Andri Snær Magnason': 'Himself - Writer & Filmmaker', 'Sigridur Benediktsdottir': 'Herself - Special Investigative Committee, Icelandic Parliament', 'Paul Volcker': 'Himself - Former Federal Reserve Chairman', 'Dominique Strauss-Kahn': 'Himself - Managing Director, International Monetary Fund', 'George Soros': 'Himself - Chairman, Soros Fund Management', 'Barney Frank': 'Himself - Chairman, Financial Services Committee', 'David McCormick': 'Himself - Under Secretary of the Treasury, Bush Administration', 'Scott Talbott': 'Himself - Chief Lobbyist, Financial Services Roundtable', 'Andrew Sheng': 'Himself - Chief Adviser, China Banking Regulatory Commission', 'Hsien Loong Lee': 'Himself - Prime Minister, Singapore', 'Christine Lagarde': 'Herself - Finance Minister, France', 'Gillian Tett': 'Herself - U.S. Managing Editor, The Financial Times', 'Nouriel Roubini': 'Himself - Professor, NYU Business School'}\"\r\ntt0110074,\"{'Tim Robbins': 'Norville Barnes', 'Jennifer Jason Leigh': 'Amy Archer', 'Paul Newman': 'Sidney J. Mussburger', 'Charles Durning': 'Waring Hudsucker', 'John Mahoney': 'Chief', 'Jim True-Frost': 'Buzz       (as Jim True)', 'Bill Cobbs': 'Moses', 'Bruce Campbell': 'Smitty', 'Harry Bugin': 'Aloysius', 'John Seitz': 'Benny', 'Joe Grifasi': 'Lou', 'Roy Brocksmith': 'Board Member', 'John Wylie': 'Board Member', 'I.M. Hobson': 'Board Member', 'Gary Allen': 'Board Member'}\"\r\ntt0117128,\"{'Trace Beaulieu': 'Dr. Clayton Forrester /              Crow T. Robot', 'Michael J. Nelson': 'Mike Nelson', 'Jim Mallon': 'Gypsy', 'Kevin Murphy': 'Tom Servo', 'John Brady': 'Benkitnorf'}\"\r\ntt1584016,\"{'Nev Schulman': \"\"Himself       (as Yaniv 'Nev' Schulman)\"\", 'Ariel Schulman': \"\"Himself       (as Ariel 'Rel' Schulman)\"\", 'Henry Joost': 'Himself', 'Angela Wesselman-Pierce': 'Herself       (as Angela Wesselman)', 'Melody C. Roscher': 'Herself', 'Wendy Whelan': 'Dancer: Morphoses', 'Craig Hall': 'Dancer: Morphoses', 'Tiler Peck': 'Dancer: Morphoses', 'Drew Jacoby': 'Dancer: Morphoses', 'Rubi Pronk': 'Dancer: Morphoses', 'Adrian Danchig-Waring': 'Dancer: Morphoses', 'Blake Alexandros': 'Nando'}\"\r\ntt1588170,\"{'Byung-Hun Lee': 'Kim Soo-hyeon', 'Min-sik Choi': 'Jang Kyung-chul', 'In-seo Kim': 'Se-jung', 'Joon-Hyuk Lee': 'Agent       (as Lee Joon-Hyeok)', 'Bo-ra Nam': \"\"Section chief's daughter\"\", 'Gook-hwan Jeon': 'Squad Chief Jang', 'Ho-jin Chun': 'Section Chief Oh', 'Moo-Seong Choi': 'Tae-joo', 'Kap-su Kim': 'Planning team deputy head', 'Tae-goo Eom': 'Detective 4', 'San-ha Oh': 'Joo-yeon', 'Seung-ah Yoon': \"\"The Cannibal's Girlfriend\"\", 'Seung-Ri Ha': 'Female high school student at harbor', 'Chae-young Yoon': 'Nurse Han Song-i', 'Seo-yeon Park': 'Woman at pension       (as Park Seo-Yeon)'}\"\r\ntt1440728,\"{'George Clooney': 'Jack /              Edward', 'Irina Björklund': 'Ingrid       (as Irina Bjorklund)', 'Lars Hjelm': 'Hunter #1', 'Björn Granath': 'Hunter #2', 'Johan Leysen': 'Pavel', 'Paolo Bonacelli': 'Father Benedetto', 'Giorgio Gobbi': 'Man on Vespa', 'Silvana Bosi': 'Old Cheese Vendor', 'Thekla Reuten': 'Mathilde', 'Guido Palliggiano': 'Waiter (Market)', 'Samuel Vauramo': 'Young Swedish Man       (as Samuli Vauramo)', 'Antonio Rampino': 'Postmaster', 'Violante Placido': 'Clara', 'Filippo Timi': 'Fabio', 'Ilaria Cramerotti': 'Hooker #2'}\"\r\ntt1135084,\"{'Chris Brown': 'Jesse Attica', 'Hayden Christensen': 'A.J.', 'Matt Dillon': 'Jack Welles', 'Michael Ealy': 'Jake Attica', 'Idris Elba': 'Gordon Jennings', 'Steve Harris': 'Lt. Carver', 'T.I.': \"\"Ghost       (as Tip 'T.I.' Harris)\"\", 'Jay Hernandez': 'Eddie Hatcher', 'Johnathon Schaech': 'Scott', 'Paul Walker': 'John Rahway', 'Marianne Jean-Baptiste': 'Naomi', 'Gaius Charles': 'Max', 'Gideon Emery': 'Sergei', 'Zulay Henao': 'Monica', 'Glynn Turman': 'Chief Detective Duncan'}\"\r\ntt1415283,\"{'Maggie Gyllenhaal': 'Isabel Green', 'Oscar Steer': 'Vincent Green', 'Asa Butterfield': 'Norman Green', 'Lil Woods': 'Megsie Green', 'Eros Vlahos': 'Cyril Gray', 'Rosie Taylor-Ritson': 'Celia Gray', 'Daniel Mays': 'Blenkinsop', 'Rhys Ifans': 'Phil Green', 'Maggie Smith': 'Mrs Docherty', 'Sinead Matthews': 'Miss Topsey', 'Katy Brand': 'Miss Turvey', 'Emma Thompson': 'Nanny McPhee', 'Bill Bailey': 'Farmer Macreadie', 'Ewan McGregor': 'Mr. Green', 'Sam Kelly': 'Mr. Docherty'}\"\r\ntt1438254,\"{'Zac Efron': 'Charlie St. Cloud', 'Charlie Tahan': 'Sam St. Cloud', 'Amanda Crew': 'Tess Carroll', 'Augustus Prew': 'Alistair Woolley', 'Donal Logue': 'Tink Weatherbee', 'Kim Basinger': 'Claire St. Cloud', 'Ray Liotta': 'Florio Ferrente', 'Dave Franco': 'Sully', 'Matt Ward': 'Connors', 'Miles Chalmers': 'Latham', 'Jesse Wheeler': 'Greene Student', 'Desiree Zurowski': 'Carla Ferrente', 'Adrian Hough': 'Ben Carroll', 'Jill Teed': 'Grace Carroll', 'Valerie Tian': 'Girl in Toy Store'}\"\r\ntt1375670,\"{'Adam Sandler': 'Lenny Feder', 'Kevin James': 'Eric Lamonsoff', 'Chris Rock': 'Kurt McKenzie', 'David Spade': 'Marcus Higgins', 'Rob Schneider': 'Rob Hilliard', 'Salma Hayek': 'Roxanne Chase-Feder       (as Salma Hayek Pinault)', 'Maria Bello': 'Sally Lamonsoff', 'Maya Rudolph': 'Deanne McKenzie', 'Joyce Van Patten': 'Gloria', 'Ebony Jo-Ann': 'Mama Ronzoni', 'Di Quon': 'Rita', 'Steve Buscemi': 'Wiley', 'Colin Quinn': 'Dickie Bailey', 'Tim Meadows': 'Malcolm', 'Madison Riley': 'Jasmine Hilliard'}\"\r\ntt0020629,\"{'Louis Wolheim': 'Kat', 'Lew Ayres': 'Paul       (as Lewis Ayres)', 'John Wray': 'Himmelstoss', 'Arnold Lucy': 'Kantorek', 'Ben Alexander': 'Kemmerich       (as Kemmerick)', 'Scott Kolk': 'Leer', 'Owen Davis Jr.': 'Peter', 'Walter Rogers': 'Behn       (as Walter Browne Rogers)', 'William Bakewell': 'Albert', 'Russell Gleason': 'Mueller', 'Richard Alexander': 'Westhus', 'Harold Goodwin': 'Detering', 'Slim Summerville': \"\"Tjaden       (as 'Slim' Summerville)\"\", 'G. Pat Collins': 'Bertinck       (as Pat Collins)', 'Beryl Mercer': \"\"Paul's Mother\"\"}\"\r\ntt0265298,\"{'Frankie Muniz': 'Jason Shepherd', 'Paul Giamatti': 'Marty Wolf', 'Amanda Bynes': 'Kaylee', 'Amanda Detmer': 'Monty Kirkham', 'Donald Faison': 'Frank Jackson', 'Sandra Oh': 'Mrs. Phyllis Caldwell', 'Russell Hornsby': 'Marcus Duncan', 'Michael Bryan French': 'Harry Shepherd', 'Christine Tucci': 'Carol Shepherd', 'Lee Majors': 'Vince', \"\"Sean O'Bryan\"\": 'Leo', 'Amy Hill': 'Joscelyn Davis', 'John Cho': \"\"Dustin 'Dusty' Wong\"\", 'Matthew Frauman': 'Lester Golub', 'Don Yesso': 'Rocco Malone'}\"\r\ntt1121977,\"{'Alexandria M. Salling': 'Karen (age 14)       (as Alexandria Salling)', 'Connor Kramme': 'Tom (age 14)', 'Annette Bening': 'Karen', 'Eileen Ryan': 'Nora', 'Samuel L. Jackson': 'Paul', 'Naomi Watts': 'Elizabeth', 'Cherry Jones': 'Sister Joanne', 'Kerry Washington': 'Lucy', 'David Ramsey': 'Joseph', \"\"Kay D'Arcy\"\": \"\"Karen's Hydrotherapy Patient\"\", 'Bradford Alex': 'Physical Therapist', 'Jimmy Smits': 'Paco', 'Elpidia Carrillo': 'Sofia', 'Simone Lopez': 'Cristi', 'Carla Gallo': 'Tracy'}\"\r\ntt1053424,\"{'Jude Law': 'Remy', 'Forest Whitaker': 'Jake', 'Alice Braga': 'Beth', 'Liev Schreiber': 'Frank', 'Carice van Houten': 'Carol', 'Chandler Canterbury': 'Peter', 'Joe Pingue': 'Ray', 'Liza Lapira': 'Alva', 'Tiffany Espensen': 'Little Alva', 'Yvette Nicole Brown': 'Rhodesia', 'RZA': 'T-Bone', 'Wayne Ward': 'John', 'Tanya Clarke': 'Hooker', 'Max Turnbull': 'Larry the Lung', 'Howard Hoover': 'Salesman'}\"\r\ntt1226273,\"{'Mel Gibson': 'Craven', 'Ray Winstone': 'Jedburgh', 'Danny Huston': 'Jack Bennett', 'Bojana Novakovic': 'Emma Craven', 'Shawn Roberts': 'Burnham', 'David Aaron Baker': 'Millroy', 'Jay O. Sanders': 'Whitehouse', \"\"Denis O'Hare\"\": 'Moore', 'Damian Young': 'Senator Jim Pine', 'Caterina Scorsone': 'Melissa', 'Frank Grillo': 'Agent One', 'Wayne Duvall': 'Chief of Police', 'Gbenga Akinnagbe': 'Detective Darcy Jones', 'Gabrielle Popa': 'Young Emma       (as Maria Gabrielle Popa)', 'Paul Sparks': 'Northampton Police Detective'}\"\r\ntt0369735,\"{'Jennifer Lopez': 'Charlie', 'Jane Fonda': 'Viola Fields', 'Michael Vartan': 'Dr. Kevin Fields', 'Wanda Sykes': 'Ruby', 'Adam Scott': 'Remy', 'Monet Mazur': 'Fiona', 'Annie Parisse': 'Morgan', 'Will Arnett': 'Kit', 'Elaine Stritch': 'Gertrude', 'Stephen Dunham': 'Dr. Paul Chamberlain', 'Randee Heller': 'Beverly Hills Dog Owner', 'Mark Moses': 'Coffee Shop Customer', 'Tomiko Fraser': 'Coffee Shop Clerk', 'Rochelle Flexer': \"\"Dr. Patel's Nurse\"\", 'Wayne Nickel': 'George'}\"\r\ntt0103919,\"{'Virginia Madsen': 'Helen Lyle', 'Tony Todd': 'The Candyman /              Daniel Robitaille', 'Xander Berkeley': 'Trevor Lyle', 'Kasi Lemmons': \"\"Bernadette 'Bernie' Walsh\"\", 'Vanessa Williams': 'Anne-Marie McCoy', 'DeJuan Guy': 'Jake', 'Marianna Elliott': 'Clara       (as Marianna Eliott)', 'Ted Raimi': 'Billy', 'Ria Pavia': 'Monica', 'Mark Daniels': 'Student', 'Lisa Ann Poggi': 'Diane', 'Adam Philipson': 'Danny', 'Eric Edwards': 'Harold', 'Carolyn Lowery': 'Stacey', 'Barbara Alston': 'Henrietta Mosely'}\"\r\ntt0335266,\"{'Scarlett Johansson': 'Charlotte', 'Bill Murray': 'Bob Harris', 'Akiko Takeshita': 'Ms. Kawasaki', 'Kazuyoshi Minamimagoe': 'Press Agent', 'Kazuko Shibata': 'Press Agent', 'Take': 'Press Agent', 'Ryuichiro Baba': 'Concierge', 'Akira Yamaguchi': 'Bellboy', 'Catherine Lambert': 'Jazz Singer', 'François du Bois': 'Sausalito Piano       (as Francois du Bois)', 'Tim Leffman': 'Sausalito Guitar', 'Gregory Pekar': 'American Businessman #1', 'Richard Allen': 'American Businessman #2', 'Giovanni Ribisi': 'John', 'Diamond Yukai': 'Commercial Director       (as Yutaka Tadokoro)'}\"\r\ntt0068699,\"{'Clint Eastwood': 'The Stranger', 'Verna Bloom': 'Sarah Belding', 'Marianna Hill': 'Callie Travers       (as Mariana Hill)', 'Mitchell Ryan': 'Dave Drake', 'Jack Ging': 'Morgan Allen', 'Stefan Gierasch': 'Mayor Jason Hobart', 'Ted Hartley': 'Lewis Belding', 'Billy Curtis': 'Mordecai', 'Geoffrey Lewis': 'Stacey Bridges', 'Scott Walker': 'Bill Borders', 'Walter Barnes': 'Sheriff Sam Shaw', 'Paul Brinegar': 'Lutie Naylor', 'Richard Bull': 'Asa Goodwin', 'Robert Donner': 'Preacher', 'John Hillerman': 'Bootmaker'}\"\r\ntt0492492,\"{'Melinda Page Hamilton': 'Amy', 'Bryce Johnson': 'John', 'Geoff Pierson': 'Dad', 'Colby French': 'Ed', 'Jack Plotnick': 'Dougie', 'Bonita Friedericy': 'Mom /              Wrestling Girl', 'Brian Posehn': 'Randy', 'Morgan Murphy': 'Linda', 'Steve Agee': 'Carl', 'Lisa Salzano': 'Wrestling Girl', 'Candiss Cogdill': 'Wrestling Girl', 'Harvey J. Alperin': 'Principal', 'Ernest Misko': 'Priest       (as Ernie Misko)', 'Rebecca Avery': 'Rest Area Mom', 'Kira Burri': 'Rest Area Girl'}\"\r\ntt1112782,\"{'Rade Serbedzija': 'Nicky /              Victor       (as Rade Sherbedgia)', 'Morgan Freeman': 'Ripley', 'Robert Forster': 'Lt. Weber', 'Corey Johnson': 'Voutiritsas', 'Antonio Banderas': 'Gabriel', 'Gerrit Vooren': 'Bakker', 'Charles Venn': 'Transit Cop #1       (as Chucky Venn)', 'Atanas Srebrev': 'Transit Cop #2', 'Darrell Las Quevas': 'Transit Cop #3', 'Tom Hardy': 'Michaels', 'Ivan Petrushinov': 'Émigré #1', 'Victor Boichev': 'Émigré #2       (as Victor Boytchev)', 'Nickolay Hadjiminev': 'Émigré #3', 'Mariana Stansheva': 'Madame Irina       (as Mariana Stanisheva)', 'Stefan Shterev': 'Giorgi'}\"\r\ntt1151359,\"{'Edward Norton': 'Bill Kincaid /              Brady Kincaid', 'Lucy DeVito': 'Anne Greenstein', 'Kent Jude Bernard': 'Philosophy Student', 'Amelia Campbell': 'Maggie Harmon', 'Tim Blake Nelson': 'Bolger', 'Randal Reeder': 'Shaver', 'Leo Fabian': 'Waddell', 'Pruitt Taylor Vince': 'Big Joe Sharpe', 'Tina Parker': 'Sharon', 'Susan Sarandon': 'Daisy', 'Ty Burrell': 'Professor Sorenson', 'Lee Wilkof': 'Professor Levy', 'Melanie Lynskey': 'Colleen', 'Josh Pais': 'Ken Feinman', 'Lisa Benavides-Nelson': 'Suzie Feinman'}\"\r\ntt0884224,\"{'John Cusack': 'Hauser', 'Hilary Duff': 'Yonica Babyyeah', 'Marisa Tomei': 'Natalie Hegalhuzen', 'Joan Cusack': 'Marsha Dillon', 'Dan Aykroyd': 'Mr. Vice President', 'Sergej Trifunovic': 'Ooq-Mi-Fay Taqnufmini', 'Ned Bellamy': 'Ooq-Yu-Fay Taqnufmini /              Zubleh', 'John McLaughlin': 'Himself', 'Montel Williams': 'GuideStar Voice       (voice)', 'Ben Kingsley': 'Walken /              The Viceroy', 'Lyubomir Neikov': 'Omar Sharif       (as Lubomir Neikov)', 'Nikolay Stanoev': 'Bhodi Bhundhang       (as Nikolai Stanoev)', 'George Zlatarev': 'Director       (as Georgi Zlatarev)', 'Bashar Rahal': 'Video Guy #1', 'Velislav Pavlov': 'Video Guy #2       (as Vesilav Pavlov)'}\"\r\ntt0104377,\"{'Drew Barrymore': 'Anita Minteer', 'Robert Greenberg': 'Mr. Sheets', 'Rodney Harvey': 'Tom', 'Jeremy Davies': 'Bill', 'Dan Eisenstein': 'Chuck', 'Joe Dallesandro': 'Rooney', 'Willow Tipton': 'School Girl', 'James Le Gros': 'Howard       (as James LeGros)', 'Ione Skye': 'Joy', 'James Oseland': 'Sally', 'Thomas E. Weyer': 'Guard', 'Billy Drago': 'Hank Fulton', 'Tom Smith-Alden': 'Parole Officer #1', 'James Wheaton': 'Parole Officer #2', 'Gerald Lynn Walker': 'Parole Officer #3'}\"\r\ntt0362590,\"{'Matt Dillon': 'David Walsh', 'Steve Zahn': 'Jack', 'Christina Applegate': 'Sara Goodwin', 'Andrea Bendewald': 'Wendy', 'Jay Leggett': 'Dorff', 'David Pasquesi': 'Kyle Lacopa', 'Peter Jason': 'Bill Gartin', 'Paul Dooley': 'Reverend Ben Goodwin', 'Noel Gugliemi': 'Chicken       (as Noel Guglielmi)', 'Dave Foley': 'Eric', 'Renee Albert': 'Martha', 'Enrique Almeida': 'Ruben', 'Mark Beltzman': 'Hank', 'Brian Blondell': 'Paulo, the Waiter', 'John Timothy Botka': 'Yuppie'}\"\r\ntt1186367,\"{'Rain': 'Raizo', 'Joon Lee': 'Teenage Raizo', 'Jonathan Chan-Pensley': 'Yakuza Henchman', 'Ill-Young Kim': 'Yakuza Mohawk', 'Yuki Iwamoto': 'Yakuza Couch', 'Ben Miles': 'Maslow', 'Naomie Harris': 'Mika', 'Sung Kang': 'Hollywood', 'Linh Dan Pham': 'Pretty Ninja       (as Linh-Dan Pham)', 'Fang Yu': 'Laundromat Manager       (as Yu Fang)', 'Adriana Altaras': 'Landlady', 'Shô Kosugi': 'Ozunu       (as Sho Kosugi)', 'Kylie Goldstein': 'Young Kiriko       (as Kylie Liya Goldstein)', 'Sungwoong Yoon': 'Young Raizo', 'Eleonore Weisgerber': 'Mrs. Sabatin'}\"\r\ntt0339727,\"{'Rachael Leigh Cook': 'Dori Lawrence', 'Jonathan Tucker': 'Mark Deloach', 'Agnes Bruckner': \"\"Sue 'of the Dubervilles' Dubois\"\", 'Val Kilmer': 'Staff Sergeant Skeer', 'Joe Mantegna': 'Gil Deloach', 'Carrie Fisher': 'Mrs. Dubois', 'Diane Venora': 'Mrs. Hengen', 'Ed Begley Jr.': 'Father Concoff', 'Michael Godere': 'Gregory Tripodi       (as Michael Goduti)', 'Daniel Franzese': 'Danny Tripodi', 'Zena Grey': 'Gina Deloach', 'André Vippolis': \"\"Dori's Agent, Ricky       (as Andre Vippolis)\"\", 'Paul Le Mat': \"\"Dori's Internist\"\", 'Bridget Barkan': 'Francine', 'Billy Lush': 'Nando'}\"\r\ntt0460732,\"{'Marsha Thomason': 'Rachel', 'Mena Suvari': 'Vanessa', 'Callum Blue': 'Charlie', 'Mark Pellegrino': 'Tom', 'Roz Witt': 'Lucy', 'Andrew Lee Potts': 'Mike', 'Mike Vogel': 'Danny', 'Breckin Meyer': 'Dylan', 'Sonya Walger': 'Gloria', 'Orlando Seale': 'Mark', 'Brian J. Watson': 'Porn Star', 'Katherine Heigl': 'Laura', 'Daz Crawford': 'Steve', 'Andrew Ableson': 'John', 'Mark Dymond': 'David'}\"\r\ntt0448564,\"{'Susan Sarandon': 'Sophie', 'Sam Neill': 'Craig', 'Emily Blunt': 'Mara', \"\"Charles 'Bud' Tingwell\"\": 'Sam       (as Bud Tingwell)', 'William McInnes': 'Jimmy', 'Georgie Parker': 'Jen', 'Terry Norris': 'Magistrate', 'Joanna Hunt-Prokhovnik': 'Elly', 'Lauren Mikkor': 'Ruby', 'Heather Mitchell': 'Rina', 'Jill Forster': 'Helen', 'Joelene Crnogorac': 'Anastasia', 'Geneviève Picot': \"\"Mara's Nurse\"\", 'Carolyn Bock': \"\"Sophie's Nurse\"\", 'Alethea McGrath': 'Maggie'}\"\r\ntt0800241,\"{'Woody Harrelson': 'Roy', 'Emily Mortimer': 'Jessie', 'Ben Kingsley': 'Grinko', 'Kate Mara': 'Abby', 'Eduardo Noriega': 'Carlos Ximénez', 'Thomas Kretschmann': 'Kolzak', 'Etienne Chicot': 'Frenchman', 'Mac McDonald': 'Minister', 'Colin Stinton': 'Embassy Official', 'Perlis Vaisieta': 'Manager Hotel Pushkin', 'Mindaugas Papinigis': 'Young Detective', 'Mindaugas Capas': 'Military Officer', 'Sonata Visockaite': 'Female Train Attendant #1', 'Larisa Kalpokaite': 'Female Train Attendant #2', 'Valentinas Krulikovskis': 'Young Waiter'}\"\r\ntt0362506,\"{'Lisa Blount': 'Chrystal', 'Billy Bob Thornton': 'Joe', 'Kamron Ross Stacey': 'Toddler', 'David Rhodes': 'Young Man', 'Christopher Davidson': 'Football Player', 'Max Kasch': 'Shorty', 'Grace Zabriskie': 'Gladys', 'Richard J. Mooney': 'Grandaddy', 'Harry Lennix': 'Kalid', 'Johnny Galecki': 'Barry', 'Kathryn Howell': 'Miss Mabel', 'Walton Goggins': 'Larry', 'Colin Fickes': 'Hog', 'Harry Dean Stanton': 'Pa Da', 'Jamie James': 'Guitar Player'}\"\r\ntt0105435,\"{'Jo Marr': 'College-Aged Cosmo       (as Jojo Marr)', 'Gary Hershberger': 'College-Aged Bishop', 'Robert Redford': 'Bishop', 'Sidney Poitier': 'Crease', 'David Strathairn': 'Whistler', 'Dan Aykroyd': 'Mother', 'River Phoenix': 'Carl', 'Bodhi Elfman': 'Centurion S&L Night Guard', 'Denise Dowse': 'Bank Teller', 'Hanyee': 'Bank Secretary', 'Timothy Busfield': 'Dick Gordon', 'Eddie Jones': 'Buddy Wallace', 'Time Winters': 'Homeless Man', 'Mary McDonnell': 'Liz', 'Jun Asai': 'Piano Prodigy'}\"\r\ntt0087262,\"{'David Keith': \"\"Andrew 'Andy' McGee\"\", 'Drew Barrymore': \"\"Charlene 'Charlie' McGee\"\", 'Freddie Jones': 'Doctor Joseph Wanless', 'Heather Locklear': \"\"Victoria 'Vicky' Tomlinson McGee\"\", 'Martin Sheen': 'Captain Hollister', 'George C. Scott': 'John Rainbird', 'Art Carney': 'Irv Manders', 'Louise Fletcher': 'Norma Manders', 'Moses Gunn': 'Doctor Pynchot', 'Antonio Fargas': 'Taxi Driver', 'Drew Snyder': 'Orville Jamieson', 'Curtis Credel': 'Bates', 'Keith Colbert': 'Mayo', 'Dick Warlock': 'Knowles       (as Richard Warlock)', 'Jeff Ramsey': 'Steinowitz'}\"\r\ntt0088128,\"{'Molly Ringwald': 'Samantha', 'Justin Henry': 'Mike Baker', 'Michael Schoeffling': 'Jake', 'Haviland Morris': 'Caroline', 'Gedde Watanabe': 'Long Duk Dong', 'Anthony Michael Hall': 'Geek', 'Paul Dooley': 'Jim Baker', 'Carlin Glynn': 'Brenda Baker', 'Blanche Baker': 'Ginny', 'Edward Andrews': 'Howard', 'Billie Bird': 'Dorothy', 'Carole Cook': 'Helen', 'Max Showalter': 'Fred', 'Liane Curtis': 'Randy', 'John Cusack': 'Bryce'}\"\r\ntt0104070,\"{'Meryl Streep': 'Madeline Ashton Menville', 'Bruce Willis': 'Dr. Ernest Menville', 'Goldie Hawn': 'Helen Sharp', 'Isabella Rossellini': 'Lisle Von Rhuman', 'Ian Ogilvy': 'Chagall', 'Adam Storke': 'Dakota', 'Nancy Fish': 'Rose', 'Alaina Reed-Hall': 'Psychologist       (as Alaina Reed Hall)', 'Michelle Johnson': 'Anna', 'Mary Ellen Trainor': 'Vivian Adams', 'William Frankfather': 'Mr. Franklin', 'John Ingle': 'Eulogist', 'Clement von Franckenstein': 'Opening Man', 'Petrea Burchard': 'Opening Woman', 'Jim Jansen': 'Second Man'}\"\r\ntt0088846,\"{'Jonathan Pryce': 'Sam Lowry', 'Robert De Niro': 'Harry Tuttle', 'Katherine Helmond': 'Mrs. Ida Lowry', 'Ian Holm': 'Mr. Kurtzmann', 'Bob Hoskins': 'Spoor', 'Michael Palin': 'Jack Lint', 'Ian Richardson': 'Mr. Warrenn', 'Peter Vaughan': 'Mr. Helpmann', 'Kim Greist': 'Jill Layton', 'Jim Broadbent': 'Dr. Jaffe', 'Barbara Hicks': 'Mrs. Terrain', 'Charles McKeown': 'Lime', \"\"Derrick O'Connor\"\": 'Dowser', 'Kathryn Pogson': 'Shirley', 'Bryan Pringle': 'Spiro'}\"\r\ntt0084707,\"{'Meryl Streep': 'Sophie', 'Kevin Kline': 'Nathan', 'Peter MacNicol': 'Stingo', 'Rita Karin': 'Yetta', 'Stephen D. Newman': 'Larry', 'Greta Turken': 'Leslie Lapidus', 'Josh Mostel': 'Morris Fink', 'Marcell Rosenblatt': 'Astrid Weinstein', 'Moishe Rosenfeld': 'Moishe Rosenblum', 'Robin Bartlett': 'Lillian Grossman', 'Eugene Lipinski': 'Polish Professor', 'John Rothman': 'Librarian', 'Joseph Leon': 'Dr. Blackstock', 'David Wohl': 'English Teacher', 'Nina Polan': 'Woman in English Class'}\"\r\ntt0128853,\"{'Tom Hanks': 'Joe Fox', 'Meg Ryan': 'Kathleen Kelly', 'Greg Kinnear': 'Frank Navasky', 'Parker Posey': 'Patricia Eden', 'Jean Stapleton': 'Birdie Conrad', 'Steve Zahn': 'George Pappas', 'Heather Burns': 'Christina Plutzker', 'Dave Chappelle': 'Kevin Jackson', 'Dabney Coleman': 'Nelson Fox', 'John Randolph': 'Schuyler Fox', 'Hallee Hirsh': 'Annabelle Fox', 'Jeffrey Scaperrotta': 'Matt Fox', 'Cara Seymour': 'Gillian Quinn', 'Katie Finneran': 'Maureen, the Nanny', 'Michael Badalucco': 'Charlie'}\"\r\ntt0396269,\"{'Owen Wilson': 'John Beckwith', 'Vince Vaughn': 'Jeremy Grey', 'Christopher Walken': 'Secretary Cleary', 'Rachel McAdams': 'Claire Cleary', 'Isla Fisher': 'Gloria Cleary', 'Jane Seymour': 'Kathleen Cleary', 'Ellen Albertini Dow': 'Grandma Mary Cleary', \"\"Keir O'Donnell\"\": 'Todd Cleary', 'Bradley Cooper': 'Sack Lodge', 'Ron Canada': 'Randolph', 'Henry Gibson': \"\"Father O'Neil\"\", 'Dwight Yoakam': 'Mr. Kroeger', 'Rebecca De Mornay': 'Mrs. Kroeger', 'David Conrad': 'Trap', 'Jennifer Alden': 'Christina Cleary       (as Jenny Alden)'}\"\r\ntt1130080,\"{'Matt Damon': 'Mark Whitacre', 'Lucas McHugh Carroll': 'Alexander Whitacre       (as Lucas Carroll)', 'Eddie Jemison': 'Kirk Schmidt', 'Rusty Schwimmer': 'Liz Taylor', 'Craig Ricci Shaynak': 'Discouraged Foreman', 'Tom Papa': 'Mick Andreas', 'Rick Overton': 'Terry Wilson', 'Melanie Lynskey': 'Ginger Whitacre', 'Thomas F. Wilson': 'Mark Cheviron       (as Tom Wilson)', 'Scott Bakula': 'FBI Special Agent Brian Shepard', 'Scott Adsit': 'Sid Hulse', 'Ann Dowd': 'FBI Special Agent Kate Medford', 'Allan Havey': 'FBI Special Agent Dean Paisley', 'Howie Johnson': 'Rusty Williams', 'Joel McHale': 'FBI Special Agent Bob Herndon'}\"\r\ntt0167260,\"{'Noel Appleby': 'Everard Proudfoot', 'Ali Astin': 'Elanor Gamgee       (as Alexandra Astin)', 'Sean Astin': 'Sam', 'David Aston': 'Gondorian Soldier 3', 'John Bach': 'Madril', 'Sean Bean': 'Boromir', 'Cate Blanchett': 'Galadriel', 'Orlando Bloom': 'Legolas', 'Billy Boyd': 'Pippin', 'Sadwyn Brophy': 'Eldarion', 'Alistair Browning': 'Damrod', 'Marton Csokas': 'Celeborn', 'Richard Edge': 'Gondorian Soldier 1', 'Jason Fitch': 'Uruk 2', 'Bernard Hill': 'Theoden'}\"\r\ntt0923671,\"{'Lily Alejandra': 'Temp Agency Manager', 'Salomón Carmona': 'Jesús Hernández', \"\"Max Da'Silva\"\": 'Wally', 'Christina De Leon': 'Carla Moreno', 'Kris Desautels': 'Garret', 'Ben Dubash': 'Johnny', 'Cyn Dulay': 'Samantha', 'Rosa Isela Frausto': 'Ana Lucia', 'Ruby Gonzalez': 'Community Center Woman', 'Ligaya Keeley': 'Trick-a-treater', 'Jim Kirwan': 'Sheriff Ruffin', 'Michelle Oquendo': 'Bell', 'Mark Peplow': 'Andy Ruffin       (as Mark Edwards)', 'Arthur Wood': 'Homeland Security Agent'}\"\r\ntt0280609,\"{'Sean Pertwee': 'Sgt. Harry G. Wells', 'Kevin McKidd': 'Pvt. Cooper', 'Emma Cleasby': 'Megan', 'Liam Cunningham': 'Capt. Ryan', 'Thomas Lockyer': 'Cpl. Bruce Campbell', 'Darren Morfitt': \"\"'Spoon' Witherspoon\"\", 'Chris Robson': 'Pvt. Joe Kirkley', 'Leslie Simpson': 'Pvt. Terry Milburn', 'Tina Landini': 'Camper', 'Craig Conway': 'Camper', \"\"Villrikke's Acer\"\": 'Sam the Dog', 'Bryn Walters': 'Werewolf', 'Ben Wright': 'Werewolf', 'Brian Claxton Payne': 'Werewolf'}\"\r\ntt0280438,\"{'Brian Burns': 'Cousin Mike Moran', 'Vincent Rubino': 'Vinny Boombata', 'James Michael Cummings': 'J.C.       (as James Cummings)', 'Elijah Wood': 'Sean Sullivan', 'Pat McNamara': 'Murph', 'John DiResta': 'Pete at the Bar', 'Edward Burns': 'Francis Sullivan', 'Malachy McCourt': 'Whitey', 'Chris McGovern': \"\"Whitey's Driver       (as Christopher McGovern)\"\", 'Peter Gerety': 'Uncle Handy', 'Jimmy Burke': 'Red Kelly       (as James Burke)', 'Stephen Murphy': \"\"Whitey's Man\"\", 'Brian Delate': 'Crazy George Cullen', 'Teresa Yenque': 'Mrs. Diaz', 'Julie Hale': 'Maggie Shea'}\"\r\ntt0802948,\"{'Ellen Page': 'Sylvia Likens', 'Hayley McFarland': 'Jennie Likens', 'Nick Searcy': 'Lester Likens', 'Romy Rosemont': 'Betty Likens', 'Catherine Keener': 'Gertrude Baniszewski', 'Ari Graynor': 'Paula Baniszewski', 'Scout Taylor-Compton': 'Stephanie Baniszewski', 'Tristan Jarred': 'Johnny Baniszewski', 'Hannah Leigh': 'Shirley Baniszewski       (as Hannah Leigh Dworkin)', 'Bradley Whitford': 'Prosecutor', \"\"Michael O'Keefe\"\": 'Reverend Bill Collier', 'Carlie Westerman': 'Marie Baniszewski', 'Michelle Benes': 'Hope Orbach', 'Patricia Place': 'Mrs. Doyle', 'Calvin Keet': 'Mr. Doyle'}\"\r\ntt0488085,\"{'David Schwimmer': 'Charlie', 'Simon Pegg': 'Gus', 'Alice Eve': 'Josie', 'Natascha McElhone': 'Penelope Wood', 'Jon Polito': 'Agent Hymes', 'Mimi Rogers': 'Mrs. Smalls', 'William Rosenfeld': 'Deputy Garman       (as Billy Asher)', 'Julian Glover': '80 Year Old Blind Man', 'Olivia Peterson': 'Emily', 'Sarah Edmondson': 'Isabella', 'Amber Sealey': 'Call Center Supervisor', 'Shauna Shim': 'Melanie #1', 'Laurence Bouvard': 'Melanie #2', 'Mindy Lee Raskin': 'Melanie #3', 'Kenneth Jay': 'Barman'}\"\r\ntt0349889,\"{'Wesley Snipes': 'Dean Cage', 'Jacqueline Obradors': 'Det. Amy Knight', 'Stuart Wilson': 'Sullivan', 'Kim Coates': 'Peterson', 'Mark Sheppard': 'Leitch', 'Adewale Akinnuoye-Agbaje': 'Agent Junod', 'Vincent Riotta': 'Det. Jay Miller', 'David Schofield': 'Dr. Collins', 'Nicholas Aaron': 'McNab', 'Kim Thomson': 'Agent Kennedy', 'Jo Stone-Fewings': 'Agent Gabriel', 'Cristian Solimeno': 'Scott Knight', 'Gary Oliver': \"\"Sullivan's Driver\"\", 'Raicho Vasilev': 'St. Nevis Guard 1', 'David Fleeshman': 'St. Nevis Guard 2'}\"\r\ntt1187064,\"{'Melissa George': 'Jess', 'Joshua McIvor': 'Tommy', 'Jack Taylor': 'Jack', 'Michael Dorman': 'Greg', 'Henry Nixon': 'Downey', 'Rachael Carpani': 'Sally', 'Emma Lung': 'Heather', 'Liam Hemsworth': 'Victor', 'Bryan Probets': 'Driver'}\"\r\ntt0071230,\"{'Cleavon Little': 'Bart', 'Gene Wilder': 'Jim', 'Slim Pickens': 'Taggart', 'Harvey Korman': 'Hedley Lamarr', 'Madeline Kahn': 'Lili Von Shtupp', 'Mel Brooks': 'Governor Lepetomane /              Indian Chief', 'Burton Gilliam': 'Lyle', 'Alex Karras': 'Mongo', 'David Huddleston': 'Olson Johnson', 'Liam Dunn': 'Rev. Johnson', 'John Hillerman': 'Howard Johnson', 'George Furth': 'Van Johnson', 'Jack Starrett': 'Gabby Johnson       (as Claude Ennis Starrett Jr.)', 'Carol Arthur': 'Harriett Johnson', 'Richard Collier': 'Dr. Sam Johnson'}\"\r\ntt0263101,\"{'Pawarith Monkolpisit': 'Kong       (as Pawalit Mongkolpisit)', 'Premsinee Ratanasopha': 'Fon', 'Patharawarin Timkul': 'Aom', 'Pisek Intrakanchit': 'Jo'}\"\r\ntt0473488,\"{'Dianne Wiest': 'Flori', 'Robert Downey Jr.': 'Dito', 'Shia LaBeouf': 'Young Dito', 'Melonie Diaz': 'Young Laurie', 'Laila Liliana Garro': 'Diane       (as Julia Garro)', 'Eleonore Hendricks': 'Jenny', 'Adam Scarimbolo': 'Guiseppe', 'Peter Anthony Tambakis': 'Young Nerf       (as Peter Tambakis)', 'Channing Tatum': 'Young Antonio', 'Anthony Tirado': 'Street Corner Puerto Rican       (credit only)', 'Erick Rosado': 'Puerto Rican Van Driver', 'Steve Payne': 'Beach Chair Guy       (as Steven Payne)', 'Chazz Palminteri': 'Monty', 'Tibor Feldman': 'Teacher', 'Martin Compston': \"\"Mike O'Shea\"\"}\"\r\ntt0084787,\"{'Kurt Russell': 'MacReady', 'Wilford Brimley': 'Dr. Blair       (as A. Wilford Brimley)', 'T.K. Carter': 'Nauls', 'David Clennon': 'Palmer', 'Keith David': 'Childs', 'Richard Dysart': 'Dr. Copper', 'Charles Hallahan': 'Vance Norris', 'Peter Maloney': 'George Bennings', 'Richard Masur': 'Clark', 'Donald Moffat': 'Garry', 'Joel Polis': 'Fuchs', 'Thomas G. Waites': 'Windows       (as Thomas Waites)', 'Norbert Weisser': 'Norwegian', 'Larry Franco': 'Norwegian Passenger with Rifle', 'Nate Irwin': 'Helicopter Pilot'}\"\r\ntt1212419,\"{'Cécile de France': 'Marie Lelay', 'Thierry Neuvic': 'Didier', 'Cyndi Mayo': 'Island Hotel Clerk       (as Cyndi Mayo Davis)', 'Lisa Griffiths': 'Stall Owner', 'Jessica Griffiths': 'Island Girl', 'Ferguson Reid': 'Rescuer', 'Derek Sakakura': 'Rescuer', 'Jay Mohr': 'Billy', 'Richard Kind': 'Christos', 'Matt Damon': 'George Lonegan', 'Charlie Creed-Miles': 'Photographer', 'Frankie McLaren': 'Marcus /              Jason', 'George McLaren': 'Marcus /              Jason', 'Lyndsey Marshal': 'Jackie', 'Rebekah Staton': 'Social Worker'}\"\r\ntt0285728,\"{'Jeremy Renner': 'Jeffrey Dahmer', 'Bruce Davison': 'Lionel Dahmer', 'Artel Great': 'Rodney       (as Artel Kayaru)', 'Matt Newton': 'Lance Bell', 'Dionysio Basco': 'Khamtay       (as Dion Basco)', 'Kate Williamson': 'Grandma', 'Christina Payano': 'Letitia', \"\"Tom'ya Bowden\"\": 'Shawna', 'Sean Blakemore': 'Corliss', 'Mickey Swenson': 'Officer Phillips', 'Julius Branca': 'Officer Powell', 'Pierson Blaetz': 'Officer Martin', 'Vincent Zangari': 'Ohio Officer', 'Xavier Lawrence': 'Young Man in Bar', 'David Manis': 'Shop Steward'}\"\r\ntt0320244,\"{'Seth Green': 'James', 'Macaulay Culkin': 'Michael', 'Diana Scarwid': 'Elke', 'Dillon Woolley': 'Young James', 'Marilyn Manson': 'Christina', 'Dylan McDermott': 'Peter Gatien', 'Mia Kirshner': 'Natasha', 'Wilmer Valderrama': 'Keoki', 'Elliot Kriss': 'Cabbie', 'Janis Dardaris': 'TV Reporter', 'Wilson Cruz': 'Angel', 'Manny Perez': 'Johnny', 'Justin Hagan': 'Freez', \"\"Brendan O'Malley\"\": 'Young Michael', 'Phillip Knasiak': 'Young Wrestler'}\"\r\ntt0780608,\"{'Anna Faris': 'Jane F.', 'Roscoe Lee Browne': 'Himself       (voice)', 'Danny Masterson': 'Steve the Roomate', 'Ben Falcone': 'Agent', 'Adam Brody': 'Steve the Dealer', 'Brian Posehn': 'Bus Driver', 'Rick Hoffman': 'Angry Face', 'Matthew J. Evans': 'Bobby       (as Matthew Evans)', 'Davenia McFadden': 'Bus Passenger', 'Joey Diaz': 'Security Guard       (as Joey Coco Diaz)', 'Jim Rash': 'Casting Assistant', 'Jayma Mays': 'Actress in Waiting Room', 'Jane Lynch': 'Casting Director', 'John Krasinski': 'Brevin', 'Kai Cofer': 'Man with Weird Beard'}\"\r\ntt1680059,\"{'Morgan Freeman': 'Narrator       (voice)', 'Birute Galdikas': 'Herself       (as Dr. Birute Mary Galdikas)', 'Daphne Sheldrick': 'Herself       (as Dr. Dame Daphne M. Sheldrick)'}\"\r\ntt0929618,\"{'Rider Strong': 'Kieran', 'Corey Large': 'Tyler', 'April Scott': 'Trista', 'James DeBello': 'Heath', 'Kaley Cuoco': 'Erica', 'Mya': 'Mitra', 'Nikki Griffin': 'Lexi', 'Lochlyn Munro': 'Barry', 'Jimmy Jean-Louis': 'Buzz McManus', 'Jon Abrahams': \"\"Tyler's Agent\"\", 'Jo De La Rosa': 'Realator', 'Brett Novek': 'Joey', 'Ed Begley Jr.': 'Nicholas', 'Kurupt': \"\"'Strangers' Host\"\", 'Lin Shaye': 'Frances'}\"\r\ntt1231287,\"{'Lindsay Lohan': 'Thea Clayhill', 'Luke Kirby': 'Nick Steinwald', 'Chris Parnell': 'Jerry Steinwald', 'Aaron Yoo': 'Miles', 'Bridgit Mendler': 'Emma Clayhill', 'Tracee Ellis Ross': 'Kristin', 'Kevin Covais': 'Greg', 'Bonnie Somerville': 'Suzi Cavandish', 'Cheryl Hines': 'Lisa DePardo', 'Creed Bratton': 'John Abbotts', 'Janeane Garofalo': 'Claire the Vista Host', 'Keiko Agena': 'Pregnant Bookstore Woman', 'Donald V. Allen': 'Umpire', 'Jack Axelrod': \"\"O'Keefe\"\", 'Alexandra Barreto': 'Pretty Woman'}\"\r\ntt0363143,\"{'Colin Firth': 'Ben', 'Naomie Harris': 'Elisa', 'Dorothy Duffy': 'Nurse', 'Cornelius Booth': 'Orderly', 'Dermot Murnaghan': 'Newscaster 1', 'Jamie Owen': 'Newscaster 2', 'Kirsty Young': 'Newscaster 3', 'Jamie Cameron': 'Reporter', 'Justin Edwards': 'Doctor', 'Nicola Cunningham': 'Reception Nurse', 'Paul Rattigan': \"\"Manor's Voice\"\", 'Sean Harris': 'Roland', 'Kenneth Cranham': 'Detective Constable Jackson       (as Ken Cranham)', 'Nina Hossain': 'Reporter', 'Alison David': 'Lauren Parris'}\"\r\ntt1334512,\"{'Russell Brand': 'Arthur', 'Helen Mirren': 'Hobson', 'Greta Gerwig': 'Naomi', 'Jennifer Garner': 'Susan', 'Geraldine James': 'Vivienne', 'Luis Guzmán': 'Bitterman', 'Nick Nolte': 'Burt Johnson', 'Christina Jacquelyn Calph': 'Tiffany       (as Christina Calph)', 'Murphy Guyer': 'Officer Kaplan', 'José Ramón Rosario': 'Employment Clerk', 'John Hodgman': 'Candy Store Manager', 'Scott Adsit': 'Gummy Bear Man', 'Evander Holyfield': 'Boxing Trainer', 'Peter Van Wagner': \"\"Naomi's Dad\"\", 'Robert Clohessy': 'Veteran Cop'}\"\r\ntt0083658,\"{'Harrison Ford': 'Rick Deckard', 'Rutger Hauer': 'Roy Batty', 'Sean Young': 'Rachael', 'Edward James Olmos': 'Gaff', 'M. Emmet Walsh': 'Bryant', 'Daryl Hannah': 'Pris', 'William Sanderson': 'J.F. Sebastian', 'Brion James': 'Leon Kowalski', 'Joe Turkel': 'Dr. Eldon Tyrell', 'Joanna Cassidy': 'Zhora', 'James Hong': 'Hannibal Chew', 'Morgan Paull': 'Holden', 'Kevin Thompson': 'Bear', 'John Edward Allen': 'Kaiser', 'Hy Pyke': 'Taffey Lewis'}\"\r\ntt0328031,\"{'Chris McKenna': 'Sean Crawley       (as Chris L. McKenna)', 'Kari Wuhrer': 'Susan Gatley', 'George Wendt': 'Duke Wayne', 'Vernon Wells': 'Beckett', 'Lionel Mark Smith': 'Carl', 'Timm Sharp': 'George', 'Daniel Baldwin': 'Ray Mathews', 'Carissa Kosta': 'Maureen       (as Carissa Koutantzis)', 'Briana Beghi': \"\"Maureen's Daughter\"\", 'Carlie Westerman': 'Catlin Gatley', 'Ian Patrick Williams': 'Tony', 'Antoine Joseph': 'Drooling Idiot', 'Shuko Akune': 'Meade Park', 'Steve Heller': 'Gary       (as Steven Heller)', \"\"Ken 'Bam Bam' Johnson Jr.\"\": 'Apartment Kid'}\"\r\ntt1233219,\"{'Michael Shannon': 'Brad Macallam', 'Willem Dafoe': 'Detective Havenhurst', 'Chloë Sevigny': 'Ingrid Gudmundson', 'Udo Kier': 'Lee Meyers', 'Michael Peña': 'Detective Vargas', 'Grace Zabriskie': 'Mrs Macallam', 'Brad Dourif': 'Uncle Ted', 'Irma P. Hall': 'Mrs Roberts       (as Irma Hall)', 'Loretta Devine': 'Ms Roberts', 'Candice Coke': 'Officer Slocum', 'Gabriel Pimentel': 'Little Man', 'Braden Lynch': 'Gary', 'James C. Burns': 'Brown', 'Noel Arthur': 'Naval Guard', 'Julius Morck': 'Phil       (as Julius Mørck)'}\"\r\ntt0480687,\"{'Owen Wilson': 'Rick', 'Jason Sudeikis': 'Fred', 'Jenna Fischer': 'Maggie', 'Christina Applegate': 'Grace', 'Nicky Whelan': 'Leigh', 'Richard Jenkins': 'Coakley', 'Stephen Merchant': 'Gary', 'Larry Joe Campbell': 'Hog-Head', 'Bruce Thomas': 'Rick Coleman', 'Tyler Hoechlin': 'Gerry', 'Derek Waters': 'Brent', 'Alexandra Daddario': 'Paige', 'Rob Moran': 'Ed Long', 'Lauren Bowles': 'Britney', 'Christa Beth Campbell': 'Emma       (as Christa Campbell)'}\"\r\ntt1401152,\"{'Liam Neeson': 'Dr. Martin Harris', 'Diane Kruger': 'Gina', 'January Jones': 'Elizabeth Harris', 'Aidan Quinn': 'Martin B', 'Bruno Ganz': 'Ernst Jürgen', 'Frank Langella': 'Rodney Cole', 'Sebastian Koch': 'Professor Bressler', 'Olivier Schneider': 'Smith', 'Stipe Erceg': 'Jones', 'Rainer Bock': 'Herr Strauss', 'Mido Hamada': 'Prince Shada', 'Clint Dyer': 'Biko', 'Karl Markovics': 'Dr. Farge', 'Eva Löbau': 'Nurse Gretchen', 'Helen Wiebensohn': 'Laurel Bressler'}\"\r\ntt1127180,\"{'Alison Lohman': 'Christine Brown', 'Justin Long': 'Clay Dalton', 'Lorna Raver': 'Mrs. Ganush', 'Dileep Rao': 'Rham Jas', 'David Paymer': 'Mr. Jacks', 'Adriana Barraza': 'Shaun San Dena', 'Chelcie Ross': 'Leonard Dalton', 'Reggie Lee': 'Stu Rubin', 'Molly Cheek': 'Trudy Dalton', 'Bojana Novakovic': 'Ilenka Ganush', 'Kevin Foster': 'Milos', 'Alexis Cruz': 'Farm Worker', 'Ruth Livier': \"\"Farm Worker's Wife\"\", 'Shiloh Selassie': \"\"Farm Worker's Son\"\", 'Flor de Maria Chahua': 'Young Shaun San Dena'}\"\r\ntt0056869,\"{'Rod Taylor': 'Mitch Brenner', 'Jessica Tandy': 'Lydia Brenner', 'Suzanne Pleshette': 'Annie Hayworth', 'Tippi Hedren': \"\"Melanie Daniels       (as 'Tippi' Hedren)\"\", 'Veronica Cartwright': 'Cathy Brenner', 'Ethel Griffies': 'Mrs. Bundy', 'Charles McGraw': 'Sebastian Sholes', 'Ruth McDevitt': 'Mrs. MacGruder', 'Lonny Chapman': 'Deke Carter', 'Joe Mantell': \"\"Traveling Salesman at Diner's Bar\"\", 'Doodles Weaver': 'Fisherman Helping with Rental Boat', 'Malcolm Atterbury': 'Deputy Al Malone', 'John McGovern': 'Postal Clerk', 'Karl Swenson': 'Drunken Doomsayer in Diner', 'Richard Deacon': \"\"Mitch's City Neighbor\"\"}\"\r\ntt0765443,\"{'Josef Altin': 'Ekrem', 'Mina E. Mina': 'Azim', 'Aleksandar Mikic': 'Soyka       (as Aleksander Mikic)', 'Sarah-Jeanne Labrosse': 'Tatiana       (as Sarah Jeanne Labrosse)', 'Lalita Ahmed': 'Customer', 'Badi Uzzaman': 'Chemist', 'Naomi Watts': 'Anna', 'Doña Croll': 'Nurse       (as Dona Croll)', 'Raza Jaffrey': 'Doctor Aziz', 'Sinéad Cusack': 'Helen       (as Sinead Cusack)', 'Jerzy Skolimowski': 'Stepan', 'Tatiana Maslany': 'Tatiana       (voice)', 'Viggo Mortensen': 'Nikolai', 'Vincent Cassel': 'Kirill', 'Armin Mueller-Stahl': 'Semyon'}\"\r\ntt0206634,\"{'Clive Owen': 'Theo Faron', 'Juan Gabriel Yacuzzi': 'Baby Diego       (as Juan Yacuzzi)', 'Michael Caine': 'Jasper', 'Mishal Husain': 'Newsreader', 'Rob Curling': 'Newsreader', 'Chiwetel Ejiofor': 'Luke', 'Jon Chevalier': 'Café Customer', 'Julianne Moore': 'Julian', 'Rita Davies': 'Café Customer', 'Charlie Hunnam': 'Patric', 'Kim Fenton': 'Café Customer', 'Chris Gilbert': 'Café Customer', 'Phoebe Hawthorne': 'Café Customer', 'Rebecca Howard': 'Café Customer', 'Atalanta White': 'Café Customer       (as Atlanta White)'}\"\r\ntt1161864,\"{'Anthony Hopkins': 'Father Lucas Trevant', \"\"Colin O'Donoghue\"\": 'Michael Kovak', 'Alice Braga': 'Angeline', 'Ciarán Hinds': 'Father Xavier', 'Toby Jones': 'Father Matthew', 'Rutger Hauer': 'Istvan Kovak', 'Marta Gastini': 'Rosaria', 'Maria Grazia Cucinotta': 'Aunt Andria', 'Arianna Veronesi': 'Francesca', 'Andrea Calligari': 'Vincenzo', 'Chris Marquette': 'Eddie', 'Torrey DeVitto': 'Nina', 'Ben Cheetham': 'Young Michael', 'Marija Karan': 'Sandra', 'Rosa Pianeta': 'Woman in Exorcism Video'}\"\r\ntt0472062,\"{'Tom Hanks': 'Charlie Wilson', 'Amy Adams': 'Bonnie Bach', 'Julia Roberts': 'Joanne Herring', 'Philip Seymour Hoffman': 'Gust Avrakotos', 'Terry Bozeman': 'CIA Award Presenter', 'Brian Markinson': 'Paul Brown', 'Jud Tylor': 'Crystal Lee', 'Hilary Angelo': 'Kelly', 'Cyia Batten': 'Stacey', 'Kirby Mitchell': 'Stoned Guy', 'Ed Regine': 'Limo Driver', 'Daniel Eric Gold': 'Donnelly', 'Emily Blunt': 'Jane Liddle', 'Peter Gerety': 'Larry Liddle', 'Wynn Everett': \"\"Receptionist - Charlie's Angels\"\"}\"\r\ntt0190590,\"{'George Clooney': 'Everett', 'John Turturro': 'Pete Hogwallop', 'Tim Blake Nelson': \"\"Delmar O'Donnell\"\", 'John Goodman': 'Big Dan Teague', 'Holly Hunter': 'Penny', 'Chris Thomas King': 'Tommy Johnson', 'Charles Durning': \"\"Pappy O'Daniel\"\", 'Del Pentecost': \"\"Junior O'Daniel\"\", 'Michael Badalucco': 'George Nelson', 'J.R. Horne': \"\"Pappy's Staff\"\", 'Brian Reddy': \"\"Pappy's Staff\"\", 'Wayne Duvall': 'Homer Stokes', 'Ed Gale': 'The Little Man', 'Ray McKinnon': 'Vernon T. Waldrip', 'Daniel von Bargen': 'Sheriff Cooley       (as Daniel Von Bargen)'}\"\r\ntt0023027,\"{'The Marx Brothers': '(as The Four Marx Brothers)', 'Groucho Marx': 'Professor Quincy Adams Wagstaff', 'Harpo Marx': 'Pinky', 'Chico Marx': 'Baravelli', 'Zeppo Marx': 'Frank Wagstaff', 'Thelma Todd': 'Connie Bailey', 'David Landau': 'Jennings'}\"\r\ntt0040068,\"{'Bud Abbott': 'Chick', 'Lou Costello': 'Wilbur', 'Lon Chaney Jr.': 'Lawrence Talbot       (as Lon Chaney)', 'Bela Lugosi': 'Dracula', 'Glenn Strange': 'Monster', 'Lenore Aubert': 'Sandra Mornay', 'Jane Randolph': 'Joan Raymond', 'Frank Ferguson': 'Mr. McDougal', 'Charles Bradstreet': 'Dr. Stevens'}\"\r\ntt0101615,\"{'Naomi Campbell': 'Singer at First Club', 'Vanilla Ice': 'Johnny', 'Deezer D': 'Jazz       (as Deezer D.)', 'Kevin Hicks': 'Sir D.', 'Allison Dean': 'Princess', 'Bobbie Brown': 'Monique       (as Bobby Brown)', 'Kristin Minter': 'Kathy', 'Sydney Lassick': 'Roscoe', 'Dody Goodman': 'Mae', 'John Newton': 'Nick       (as John Haymes Newton)', 'Candy Clark': 'Grace', 'Michael Gross': 'Gordon', 'Victor DiMattia': 'Tommy', 'Brooke Alexander': 'Reporter', 'Jack McGee': 'Clarke'}\"\r\ntt0020640,\"{'Groucho Marx': 'Captain Jeffrey Spaulding', 'Harpo Marx': 'The Professor', 'Chico Marx': 'Signor Emanuel Ravelli', 'Zeppo Marx': 'Horatio Jamison', 'Lillian Roth': 'Arabella Rittenhouse', 'Margaret Dumont': 'Mrs. Rittenhouse', 'Louis Sorin': 'Roscoe Chandler', 'Hal Thompson': 'John Parker', 'Margaret Irving': 'Mrs. Whitehead', 'Kathryn Reece': 'Grace Carpenter', 'Robert Greig': 'Hives', 'Edward Metcalfe': 'Hennessey', 'The Music Masters': 'Six Footmen'}\"\r\ntt0119567,\"{'Jeff Goldblum': 'Ian Malcolm', 'Julianne Moore': 'Sarah Harding', 'Pete Postlethwaite': 'Roland Tembo', 'Arliss Howard': 'Peter Ludlow', 'Richard Attenborough': 'John Hammond', 'Vince Vaughn': 'Nick Van Owen', 'Vanessa Chester': 'Kelly Curtis       (as Vanessa Lee Chester)', 'Peter Stormare': 'Dieter Stark', 'Harvey Jason': 'Ajay Sidhu', 'Richard Schiff': 'Eddie Carr', 'Thomas F. Duffy': 'Dr. Robert Burke', 'Joseph Mazzello': 'Tim', 'Ariana Richards': 'Lex', 'Thomas Rosales Jr.': 'Carter       (as Thomas Rosales)', 'Camilla Belle': 'Cathy Bowman'}\"\r\ntt1231583,\"{'Robert Downey Jr.': 'Peter Highman', 'Zach Galifianakis': 'Ethan Tremblay', 'Michelle Monaghan': 'Sarah Highman', 'Jamie Foxx': 'Darryl', 'Juliette Lewis': 'Heidi', 'Danny McBride': 'Lonnie', 'RZA': 'Airport Screener', 'Matt Walsh': 'TSA Agent', 'Brody Stevens': 'Limo Driver', 'Jakob Ulrich': 'Patrick', 'Naiia Ulrich': 'Alex', 'Todd Phillips': 'Barry', 'Bobby Tisdale': 'Carl', 'Sharon Conley': 'Airport X-Ray       (as Sharon Morris)', 'Nathalie Fay': 'Flight Attendant'}\"\r\ntt0386117,\"{'Max Records': 'Max', 'Pepita Emmerichs': 'Claire', 'Max Pfeifer': \"\"Claire's Friend\"\", 'Madeleine Greaves': \"\"Claire's Friend\"\", 'Joshua Jay': \"\"Claire's Friend\"\", 'Ryan Corr': \"\"Claire's Friend\"\", 'Catherine Keener': 'Mom', 'Steve Mouzakis': 'Teacher', 'Mark Ruffalo': 'The Boyfriend', 'James Gandolfini': 'Carol       (voice)', 'Vincent Crowley': 'Carol Suit Performer', 'Paul Dano': 'Alexander       (voice)', 'Sonny Gerasimowicz': 'Alexander Suit Performer', \"\"Catherine O'Hara\"\": 'Judith       (voice)', 'Nick Farnell': 'Judith Suit Performer'}\"\r\ntt1058017,\"{'Ricky Gervais': 'Mark Bellison', 'Jennifer Garner': 'Anna McDoogles', 'Jonah Hill': 'Frank', 'Louis C.K.': 'Greg', 'Jeffrey Tambor': 'Anthony', 'Fionnula Flanagan': 'Martha Bellison', 'Rob Lowe': 'Brad Kessler', 'Tina Fey': 'Shelley', 'Donna Sorbello': \"\"Anna's Mother\"\", 'Stephanie March': 'Blonde', 'Ruben Santiago-Hudson': 'Landlord', 'John Hodgman': 'Wedding Overseer', 'Nate Corddry': 'News Reporter', 'Jimmi Simpson': 'Bob', 'Martin Starr': 'Waiter #1'}\"\r\ntt0033804,\"{'Barbara Stanwyck': 'Jean', 'Henry Fonda': 'Charles', 'Charles Coburn': \"\"'Colonel' Harrington\"\", 'Eugene Pallette': 'Mr. Pike', 'William Demarest': 'Muggsy', 'Eric Blore': 'Sir Alfred McGlennan Keith', 'Melville Cooper': 'Gerald', \"\"Martha O'Driscoll\"\": 'Martha', 'Janet Beecher': 'Mrs. Pike', 'Robert Greig': 'Burrows', 'Dora Clement': 'Gertrude', 'Luis Alberni': \"\"Pike's Chef\"\"}\"\r\ntt0120188,\"{'George Clooney': 'Archie Gates', 'Mark Wahlberg': 'Troy Barlow', 'Ice Cube': 'Chief Elgin', 'Spike Jonze': 'Conrad Vig', 'Cliff Curtis': 'Amir Abdulah', 'Nora Dunn': 'Adriana Cruz', 'Jamie Kennedy': 'Walter Wogaman', 'Saïd Taghmaoui': 'Captain Said       (as Said Taghmaoui)', 'Mykelti Williamson': 'Colonel Horn', 'Holt McCallany': 'Captain Van Meter', 'Judy Greer': 'Cathy Daitch', 'Christopher Lohr': 'Teebaux', 'Jon Sklaroff': 'Paco', 'Liz Stauber': \"\"Debbie Barlow, Troy's Wife\"\", 'Marsha Horan': \"\"Amir's Wife\"\"}\"\r\ntt1219342,\"{'Emily Barclay': 'Gylfie       (voice)', 'Abbie Cornish': 'Otulissa       (voice)', 'Essie Davis': 'Marella       (voice)', 'Adrienne DeFaria': 'Eglantine       (voice)', 'Joel Edgerton': 'Metal Beak       (voice)', 'Deborra-Lee Furness': 'Barran       (voice)', 'Sacha Horler': 'Strix Struma       (voice)', 'Bill Hunter': 'Bubo       (voice)', 'Ryan Kwanten': 'Kludd       (voice)', 'Anthony LaPaglia': 'Twilight       (voice)', 'Miriam Margolyes': 'Mrs. Plithiver       (voice)', 'Helen Mirren': 'Nyra       (voice)', 'Sam Neill': 'Allomere       (voice)', 'Barry Otto': 'Echidna       (voice)', 'Richard Roxburgh': 'Boron       (voice)'}\"\r\ntt0840361,\"{'Ben Affleck': 'Doug MacRay', 'Rebecca Hall': 'Claire Keesey', 'Jon Hamm': 'FBI S.A. Adam Frawley', 'Jeremy Renner': 'James Coughlin', 'Blake Lively': 'Krista Coughlin', 'Slaine': \"\"Albert 'Gloansy' Magloan\"\", 'Owen Burke': 'Desmond Elden', 'Titus Welliver': 'Dino Ciampa', 'Pete Postlethwaite': \"\"Fergus 'Fergie' Colm\"\", 'Chris Cooper': 'Stephen MacRay', 'Dennis McLaughlin': 'Rusty', 'Corena Chase': 'Agent Quinlan', 'Brian Scannell': 'Henry', 'Kerri Dunbar': \"\"Henry's Girl\"\", 'Tony V.': 'Vericom Crew Chief       (as Tony V)'}\"\r\ntt0979434,\"{'Shad Moss': 'Kevin Carson       (as Bow Wow)', 'Brandon T. Jackson': 'Benny', 'Naturi Naughton': 'Stacie', 'Loretta Devine': 'Grandma', 'Ice Cube': 'Mr. Washington', 'Keith David': 'Sweet Tee', 'Terry Crews': 'Jimmy the Driver', 'Mike Epps': 'Reverend Taylor', 'Charlie Murphy': 'Semaj', 'Bill Bellamy': 'Giovanni', 'Gbenga Akinnagbe': 'Lorenzo', 'Chris Williams': 'Doug', 'Vince Green': 'Malik', 'Leslie Jones': 'Tasha', 'Malieek Straughter': 'Deangelo       (as Malieek W. Straughter)'}\"\r\ntt0817177,\"{'Madeline Carroll': 'Juli Baker', 'Callan McAuliffe': 'Bryce Loski', 'Rebecca De Mornay': 'Patsy Loski', 'Anthony Edwards': 'Steven Loski', 'John Mahoney': 'Chet Duncan', 'Penelope Ann Miller': 'Trina Baker', 'Aidan Quinn': 'Richard Baker', 'Kevin Weisman': 'Daniel Baker', 'Morgan Lily': 'Young Juli', 'Ryan Ketzner': 'Young Bryce', 'Gillian Pfaff': 'Young Lynetta', 'Michael Boza': 'Teasing Boy', 'Beau Lerner': 'Teasing Boy', 'Jacquelyn Evola': 'Playground Girl', 'Taylor Groothuis': 'Playground Girl'}\"\r\ntt1287468,\"{'James Marsden': 'Diggs       (voice)', 'Nick Nolte': 'Butch       (voice)', 'Christina Applegate': 'Catherine       (voice)', 'Katt Williams': 'Seamus       (voice)', 'Bette Midler': 'Kitty Galore       (voice)', 'Neil Patrick Harris': 'Lou       (voice)', 'Sean Hayes': 'Mr. Tinkles       (voice)', 'Wallace Shawn': 'Calico       (voice)', 'Roger Moore': 'Tab Lazenby       (voice)', 'Joe Pantoliano': 'Peek       (voice)', 'Michael Clarke Duncan': 'Sam       (voice)', \"\"Chris O'Donnell\"\": 'Shane', 'Jack McBrayer': 'Chuck', 'Fred Armisen': 'Freidrich', 'Kiernan Shipka': 'Little Girl'}\"\r\ntt1375666,\"{'Leonardo DiCaprio': 'Cobb', 'Joseph Gordon-Levitt': 'Arthur', 'Ellen Page': 'Ariadne', 'Tom Hardy': 'Eames', 'Ken Watanabe': 'Saito', 'Dileep Rao': 'Yusuf', 'Cillian Murphy': 'Robert Fischer', 'Tom Berenger': 'Browning', 'Marion Cotillard': 'Mal', 'Pete Postlethwaite': 'Maurice Fischer', 'Michael Caine': 'Miles', 'Lukas Haas': 'Nash', 'Tai-Li Lee': 'Tadashi', 'Claire Geare': 'Phillipa (3 Years Old)', 'Magnus Nolan': 'James (20 Months Old)'}\"\r\ntt1075747,\"{'Josh Brolin': 'Jonah Hex', 'John Malkovich': 'Quentin Turnbull', 'Megan Fox': 'Lilah', 'Michael Fassbender': 'Burke', 'Will Arnett': 'Lieutenant Grass', 'John Gallagher Jr.': 'Lieutenant Evan', 'Tom Wopat': 'Colonel Slocum', 'Michael Shannon': 'Doc Cross Williams', 'Wes Bentley': 'Adleman Lusk', 'Julia Jones': 'Cassie', 'Luke James Fleischmann': 'Travis', 'Rio Hackford': 'Grayden Nash', 'David Jensen': \"\"Turnbull's Henchman\"\", 'Billy Blair': \"\"Turnbull's Gang - Billy\"\", 'Sean Boyd': \"\"Turnbull's Gang - Preacher\"\"}\"\r\ntt1017460,\"{'Adrien Brody': 'Clive Nicoli', 'Sarah Polley': 'Elsa Kast', 'Delphine Chanéac': 'Dren       (as Delphine Chaneac)', 'Brandon McGibbon': 'Gavin Nicoli', 'Simona Maicanescu': 'Joan Chorot', 'David Hewlett': 'William Barlow', 'Abigail Chu': 'Child Dren'}\"\r\ntt1261945,\"{'Sarah Jessica Parker': 'Carrie Bradshaw', 'Kristin Davis': 'Charlotte York', 'Cynthia Nixon': 'Miranda Hobbes', 'Kim Cattrall': 'Samantha Jones', 'Minglie Chen': 'Bergdorf Salesgirl', 'Chris Noth': 'Mr. Big', 'David Eigenberg': 'Steve', 'Evan Handler': 'Harry', 'Alexandra Fong': 'Lily', 'Parker Fong': 'Lily', 'Mario Cantone': 'Anthony', 'Willie Garson': 'Stanford', 'Noah Mills': 'Nicky', 'Liza Minnelli': 'Liza Minnelli', 'Billy Stritch': 'Band Leader'}\"\r\ntt0480255,\"{'Jeffrey Dean Morgan': 'Clay', 'Zoe Saldana': 'Aisha       (as Zoë Saldana)', 'Chris Evans': 'Jensen', 'Idris Elba': 'Roque', 'Columbus Short': 'Pooch', 'Óscar Jaenada': 'Cougar       (as Oscar Jaenada)', 'Jason Patric': 'Max', 'Holt McCallany': 'Wade', 'Peter Macdissi': 'Vikram', 'Peter Francis James': 'Fadhil', 'Tanee McCall': 'Jolene', 'Mark Ginther': 'Goliath Guard', 'Daniel Kalal': 'Goliath Guard', 'Colin Follenweider': 'Goliath Guard', 'Garrett Warren': 'Goliath Guard'}\"\r\ntt1385867,\"{'Bruce Willis': 'Jimmy', 'Tracy Morgan': 'Paul', 'Juan Carlos Hernández': 'Raul       (as Juan Carlos Hernandez)', 'Cory Fernandez': 'Juan', 'Jason Hurt': 'Youth #1', 'Jeff Lima': 'Youth #2', 'Sean Cullen': 'Captain Romans', 'Kevin Pollak': 'Hunsaker', 'Adam Brody': 'Barry Mangold', 'Guillermo Díaz': 'Poh Boy', 'Alberto Bonilla': 'Julio', 'Robinson Aponte': 'Banger #1', 'Jeremy Dash': 'Banger #2', 'Mando Alvarado': 'Mexican Man #1', 'Michelle Trachtenberg': 'Ava'}\"\r\ntt1057500,\"{'Morgan Freeman': 'Nelson Mandela', 'Matt Damon': 'Francois Pienaar', 'Tony Kgoroge': 'Jason Tshabalala', 'Patrick Mofokeng': 'Linga Moonsamy', 'Matt Stern': 'Hendrick Booyens', 'Julian Lewis Jones': 'Etienne Feyder', 'Adjoa Andoh': 'Brenda Mazibuko', 'Marguerite Wheatley': 'Nerine', 'Leleti Khumalo': 'Mary', 'Patrick Lyster': 'Mr. Pienaar', 'Penny Downie': 'Mrs. Pienaar', 'Sibongile Nojila': 'Eunice', 'Bonnie Henna': 'Zindzi', 'Shakes Myeko': 'Minister of Sport', 'Louis Minnaar': 'Springbok Coach       (as Louis Minaar)'}\"\r\ntt0878804,\"{'Sandra Bullock': 'Leigh Anne Tuohy', 'Tim McGraw': 'Sean Tuohy', 'Quinton Aaron': 'Michael Oher', 'Jae Head': 'S.J. Tuohy', 'Lily Collins': 'Collins Tuohy', 'Ray McKinnon': 'Coach Cotton', 'Kim Dickens': 'Mrs. Boswell', 'Adriane Lenox': 'Denise Oher', 'Kathy Bates': 'Miss Sue', 'Catherine Dyer': 'Mrs. Smith', 'Andy Stahl': 'Principal Sandstrom', 'Tom Nowicki': 'Literature Teacher', 'Libby Whittemore': 'Sarcastic Teacher', 'Brian Hollan': 'Jay Collis', 'Melody Weintraub': 'History Teacher'}\"\r\ntt1186367,\"{'Rain': 'Raizo', 'Joon Lee': 'Teenage Raizo', 'Jonathan Chan-Pensley': 'Yakuza Henchman', 'Ill-Young Kim': 'Yakuza Mohawk', 'Yuki Iwamoto': 'Yakuza Couch', 'Ben Miles': 'Maslow', 'Naomie Harris': 'Mika', 'Sung Kang': 'Hollywood', 'Linh Dan Pham': 'Pretty Ninja       (as Linh-Dan Pham)', 'Fang Yu': 'Laundromat Manager       (as Yu Fang)', 'Adriana Altaras': 'Landlady', 'Shô Kosugi': 'Ozunu       (as Sho Kosugi)', 'Kylie Goldstein': 'Young Kiriko       (as Kylie Liya Goldstein)', 'Sungwoong Yoon': 'Young Raizo', 'Eleonore Weisgerber': 'Mrs. Sabatin'}\"\r\ntt0362478,\"{'Cameron Diaz': 'Norma Lewis', 'James Marsden': 'Arthur Lewis', 'Frank Langella': 'Arlington Steward', 'James Rebhorn': 'Norm Cahill', 'Holmes Osborne': 'Dick Burns', 'Sam Oz Stone': 'Walter Lewis', 'Gillian Jacobs': 'Dana', 'Celia Weston': 'Lana Burns', 'Deborah Rush': 'Clymene Steward', 'Lisa K. Wyatt': 'Rhonda Martin', 'Mark S. Cartier': 'Martin Teague       (as Mark Cartier)', 'Kevin Robertson': 'Wendell Matheson', 'Michele Durrett': 'Rebecca Matheson', 'Ian Kahn': 'Vick Brenner', 'John Magaro': 'Charles'}\"\r\ntt0093148,\"{'John Lithgow': 'George Henderson', 'Melinda Dillon': 'Nancy Henderson', 'Margaret Langrick': 'Sarah Henderson', 'Joshua Rudoy': 'Ernie Henderson', 'Kevin Peter Hall': 'Harry', 'David Suchet': 'Jacques Lafleur', 'Lainie Kazan': 'Irene Moffitt', 'Don Ameche': 'Dr. Wallace Wrightwood', 'M. Emmet Walsh': 'George Henderson Sr.', 'William Ontiveros': 'Sgt. Mancini       (as Bill Ontiverous)', 'David Richardt': 'Dirty Harry Officer', 'Jacqueline Moscou': 'DMV Clerk', 'Laura Kenny': \"\"'Mouse' Woman\"\", 'Richard Arnold': \"\"'Mouse' Spouse       (as Richard E. Arnold)\"\", 'Sean Morgan': 'Jerry Seville'}\"\r\ntt0390022,\"{'Billy Bob Thornton': 'Coach Gary Gaines', 'Lucas Black': 'Mike Winchell', 'Garrett Hedlund': 'Don Billingsley', 'Derek Luke': 'Boobie Miles', 'Jay Hernandez': 'Brian Chavez', 'Lee Jackson': 'Ivory Christian', 'Lee Thompson Young': 'Chris Comer', 'Tim McGraw': 'Charles Billingsley', 'Grover Coulson': 'L.V. Miles', 'Connie Britton': 'Sharon Gaines', 'Connie Cooper': 'Mrs. Winchell', 'Kasey Stevens': 'Flippy', 'Ryanne Duzich': 'Melissa', 'Amber Heard': 'Maria', 'Morgan Farris': 'Jennifer Gaines'}\"\r\ntt0080455,\"{'Tom Erhart': 'Prison Guard', 'Gerald Walling': 'Prison Guard       (as Gerald Walling S.J.)', 'John Belushi': 'Joliet Jake', 'Walter Levine': 'Prison Guard', 'Frank Oz': 'Corrections Officer', 'Dan Aykroyd': 'Elwood', 'Kathleen Freeman': 'Sister Mary Stigmata', 'Cab Calloway': 'Curtis', 'Donald Dunn': \"\"Donald 'Duck' Dunn       (as Donald 'Duck' Dunn)\"\", 'Alonzo Atkins': 'Choirmaster', 'James Brown': 'Reverend Cleophus James', 'Chaka Khan': 'Choir Soloist', 'Southern California Community Choir': \"\"Choir       (as James Cleveland's Southern California Community Choir)\"\", 'Armand Cerami': 'Trooper Daniel', 'Steven Williams': 'Trooper Mount       (as Steve Williams)'}\"\r\ntt0091244,\"{'Christopher Lambert': 'Michel       (as Christophe Lambert)', 'Eddy Mitchell': 'Yves', 'Flora Barillaro': 'Maria', 'Agnès Soral': 'Hélène       (as Agnes Soral)', 'Anémone': 'Barbara       (as Anemone)', 'Marc Berman': 'Pierre', 'Patrice Bertrand': 'Le client grincheux', 'Paula Dehelly': 'La mère de Pierre', 'Maurizio Donadoni': 'Georges', 'Fabrice Dumeur': 'Marcel', 'Carole Fredericks': 'Angèle', 'Laurence Le Guellan': 'Nicole       (as Laurence Leguellan)', 'Olinka Hardiman': 'La maîtresse       (as Olivia Link)', 'Laura Manszky': 'Camelia /              Isabelle', 'Jeanne Marine': 'La prostituée'}\"\r\ntt0352248,\"{'Russell Crowe': 'Jim Braddock', 'Renée Zellweger': 'Mae Braddock', 'Paul Giamatti': 'Joe Gould', 'Craig Bierko': 'Max Baer', 'Paddy Considine': 'Mike Wilson', 'Bruce McGill': 'Jimmy Johnston', 'David Huband': 'Ford Bond', 'Connor Price': 'Jay Braddock', 'Ariel Waller': 'Rosemarie Braddock', 'Patrick Louis': 'Howard Braddock', 'Rosemarie DeWitt': 'Sara', 'Linda Kash': 'Lucille Gould', 'Nicholas Campbell': 'Sporty Lewis', 'Gene Pyrz': 'Jake', 'Chuck Shamata': 'Father Rorick'}\"\r\ntt0372784,\"{'Christian Bale': 'Bruce Wayne /              Batman', 'Michael Caine': 'Alfred', 'Liam Neeson': 'Ducard', 'Katie Holmes': 'Rachel Dawes', 'Gary Oldman': 'Jim Gordon', 'Cillian Murphy': 'Dr. Jonathan Crane /              The Scarecrow', 'Tom Wilkinson': 'Carmine Falcone', 'Rutger Hauer': 'Earle', 'Ken Watanabe': \"\"Ra's Al Ghul\"\", 'Mark Boone Junior': 'Flass', 'Linus Roache': 'Thomas Wayne', 'Morgan Freeman': 'Lucius Fox', 'Larry Holden': 'Finch', 'Gerard Murphy': 'Judge Faden', 'Colin McFarlane': 'Loeb'}\"\r\ntt0045152,\"{'Gene Kelly': 'Don Lockwood', \"\"Donald O'Connor\"\": 'Cosmo Brown', 'Debbie Reynolds': 'Kathy Selden', 'Jean Hagen': 'Lina Lamont', 'Millard Mitchell': 'R.F. Simpson', 'Cyd Charisse': 'Dancer', 'Douglas Fowley': 'Roscoe Dexter', 'Rita Moreno': 'Zelda Zanders'}\"\r\ntt0324216,\"{'Jessica Biel': 'Erin', 'Jonathan Tucker': 'Morgan', 'Erica Leerhsen': 'Pepper', 'Mike Vogel': 'Andy', 'Eric Balfour': 'Kemper', 'Andrew Bryniarski': 'Thomas Hewitt (Leatherface)', 'R. Lee Ermey': 'Sheriff Hoyt', 'David Dorfman': 'Jedidiah', 'Lauren German': 'Teenage Girl', 'Terrence Evans': 'Old Monty', 'Marietta Marich': 'Luda May', 'Heather Kafka': 'Henrietta', 'Kathy Lamkin': 'Tea Lady in Trailer', 'Brad Leland': 'Big Rig Bob', 'Mamie Meek': 'Clerk'}\"\r\ntt0266915,\"{'Jackie Chan': 'Lee', 'Chris Tucker': 'Carter', 'John Lone': 'Ricky Tan', 'Ziyi Zhang': 'Hu Li       (as Zhang Ziyi)', 'Roselyn Sanchez': 'Isabella Molina', 'Alan King': 'Steven Reign', 'Harris Yulin': 'Agent Sterling', 'Kenneth Tsang': 'Captain Chin', 'Lisa LoCicero': 'Receptionist', 'Mei Melançon': 'Girl in Car       (as Meiling Melancon)', 'Maggie Q': 'Girl in Car', 'Patricia Chan': 'Club Hostess', 'Gelbert Coloma': 'Karaoke Singer', 'Lucy Lin': 'Heaven on Earth Hostess', 'Cindy Lu': 'Heaven on Earth Hostess #2'}\"\r\ntt0425061,\"{'Steve Carell': 'Maxwell Smart', 'Anne Hathaway': 'Agent 99', 'Dwayne Johnson': 'Agent 23', 'Alan Arkin': 'The Chief', 'Terence Stamp': 'Siegfried', 'Terry Crews': 'Agent 91', 'David Koechner': 'Larabee', 'James Caan': 'The President', 'Bill Murray': 'Agent 13', 'Patrick Warburton': 'Hymie', 'Masi Oka': 'Bruce', 'Nate Torrence': 'Lloyd', 'Ken Davitian': 'Shtarker', 'David S. Lee': 'Krstic', 'Dalip Singh': 'Dalip'}\"\r\ntt0332452,\"{'Julian Glover': 'Triopas', 'Brian Cox': 'Agamemnon', 'Nathan Jones': 'Boagrius', 'Adoni Maropis': \"\"Agamemnon's Officer\"\", 'Jacob Smith': 'Messenger Boy', 'Brad Pitt': 'Achilles', 'John Shrapnel': 'Nestor', 'Brendan Gleeson': 'Menelaus', 'Diane Kruger': 'Helen', 'Eric Bana': 'Hector', 'Orlando Bloom': 'Paris', 'Siri Svegler': 'Polydora', 'Lucie Barat': \"\"Helen's Handmaiden\"\", 'Ken Bones': 'Hippasus', 'Manuel Cauchi': 'Old Spartan Fisherman'}\"\r\ntt0431308,\"{'Hilary Swank': 'Holly', 'Gerard Butler': 'Gerry', 'Lisa Kudrow': 'Denise', 'Gina Gershon': 'Sharon', 'James Marsters': 'John', 'Kathy Bates': 'Patricia', 'Harry Connick Jr.': 'Daniel', 'Nellie McKay': 'Ciara', 'Jeffrey Dean Morgan': 'William', 'Dean Winters': 'Tom', 'Anne Kent': 'Rose Kennedy', 'Brian McGrath': 'Martin Kennedy', 'Sherie Rene Scott': 'Barbara', 'Susan Blackwell': 'Vicky', 'Michael Countryman': 'Ted'}\"\r\ntt0758794,\"{'Matthew McConaughey': 'Jack Lengyel', 'Matthew Fox': 'Red Dawson', 'Anthony Mackie': 'Nate Ruffin', 'David Strathairn': 'President Dedmon', 'Ian McShane': 'Paul Griffen', 'Kate Mara': 'Annie Cantrell', 'January Jones': 'Carole Dawson', 'Kimberly Williams-Paisley': 'Sandy Lengyel', 'Arlen Escarpeta': 'Reggie Oliver', 'Brian Geraghty': 'Tom Bogdan', 'Tommy Cresswell': 'Gene Morehouse', 'Christian Kanupke': 'Young Keith Morehouse', 'Nina Jones': 'Mrs. Morehouse', 'Kevin Atkins': 'George Olson', 'Mark Patton': 'Bill James'}\"\r\ntt0427327,\"{'John Travolta': 'Edna Turnblad', 'Michelle Pfeiffer': 'Velma Von Tussle', 'Christopher Walken': 'Wilbur Turnblad', 'Amanda Bynes': 'Penny Pingleton', 'James Marsden': 'Corny Collins', 'Queen Latifah': 'Motormouth Maybelle', 'Brittany Snow': 'Amber Von Tussle', 'Zac Efron': 'Link Larkin', 'Elijah Kelley': 'Seaweed', 'Allison Janney': 'Prudy Pingleton', 'Nikki Blonsky': 'Tracy Turnblad', 'Taylor Parks': 'Little Inez', 'Jayne Eastwood': 'Miss Wimsey', 'Paul Dooley': 'Mr. Spritzer', 'Jerry Stiller': 'Mr. Pinky'}\"\r\ntt0086200,\"{'Tom Cruise': 'Joel', 'Rebecca De Mornay': 'Lana', 'Joe Pantoliano': 'Guido', 'Richard Masur': 'Rutherford', 'Bronson Pinchot': 'Barry', 'Curtis Armstrong': 'Miles Dalby', 'Nicholas Pryor': \"\"Joel's Father\"\", 'Janet Carroll': \"\"Joel's Mother\"\", 'Shera Danese': 'Vicki', 'Raphael Sbarge': 'Glenn', 'Bruce A. Young': 'Jackie', 'Kevin Anderson': 'Chuck       (as Kevin C. Anderson)', 'Sarah Partridge': 'Kessler', 'Nathan Davis': 'Business Teacher', 'Scott Harlan': 'Stan Licata'}\"\r\ntt0070034,\"{'Bruce Lee': 'Lee', 'John Saxon': 'Roper', 'Jim Kelly': 'Williams', 'Ahna Capri': 'Tania', 'Kien Shih': 'Han       (as Shih Kien)', 'Robert Wall': 'Oharra       (as Bob Wall)', 'Angela Mao': 'Su Lin (Guest star)       (as Angela Mao Ying)', 'Betty Chung': 'Mei Ling', 'Geoffrey Weeks': 'Braithwaite', 'Bolo Yeung': 'Bolo       (as Yang Sze)', 'Peter Archer': 'Parsons', 'Li Jen Ho': 'Old Man       (as Ho Lee Yan)', 'Marlene Clark': 'Secretary', 'Allan Kent': 'Golfer', 'Bill Keller': 'L.A. Cop'}\"\r\ntt0335438,\"{'Ben Stiller': 'David Starsky', 'Owen Wilson': 'Ken Hutchinson', 'Snoop Dogg': 'Huggy Bear', 'Fred Williamson': 'Captain Doby', 'Vince Vaughn': 'Reese Feldman', 'Juliette Lewis': 'Kitty', 'Jason Bateman': 'Kevin', 'Amy Smart': 'Holly', 'Carmen Electra': 'Staci', 'George Cheung': 'Chau       (as George Kee Cheung)', 'Chris Penn': 'Manetti', 'Brande Roderick': 'Heather', 'Molly Sims': 'Mrs. Feldman', 'Matt Walsh': 'Eddie', 'G.T. Holme': 'Bartender'}\"\r\ntt0468569,\"{'Christian Bale': 'Bruce Wayne', 'Heath Ledger': 'Joker', 'Aaron Eckhart': 'Harvey Dent', 'Michael Caine': 'Alfred', 'Maggie Gyllenhaal': 'Rachel', 'Gary Oldman': 'Gordon', 'Morgan Freeman': 'Lucius Fox', 'Monique Gabriela Curnen': 'Ramirez', 'Ron Dean': 'Wuertz', 'Cillian Murphy': 'Scarecrow', 'Chin Han': 'Lau', 'Nestor Carbonell': 'Mayor', 'Eric Roberts': 'Maroni', 'Ritchie Coster': 'Chechen', 'Anthony Michael Hall': 'Mike Engel'}\"\r\ntt0209958,\"{'Jennifer Lopez': 'Catherine Deane', 'Colton James': 'Edward Baines', 'Dylan Baker': 'Henry West', 'Marianne Jean-Baptiste': 'Dr. Miriam Kent', 'Gerry Becker': 'Dr. Barry Cooperman', 'Musetta Vander': 'Ella Baines', 'Patrick Bauchau': 'Lucien Baines', \"\"Vincent D'Onofrio\"\": 'Carl Stargher', 'Catherine Sutherland': 'Anne Marie Vicksey', 'Vince Vaughn': 'Peter Novak', 'James Gammon': 'Teddy Lee', 'Jake Weber': 'Gordon Ramsey', 'Dean Norris': 'Cole', 'Tara Subkoff': 'Julia Hickson', 'Lauri Johnson': 'Mrs. Hickson'}\"\r\ntt0428803,\"{'Charles Berling': 'Le père       (voice)', 'Romane Bohringer': 'La mère       (voice)', 'Jules Sitruk': 'Le bébé       (voice)', 'Morgan Freeman': 'Narrator       (voice)', 'Amitabh Bachchan': 'Narrator       (voice)', 'Jose Coronado': 'Emperor Father       (voice)', 'Sky du Mont': 'Narrator       (voice)', 'Gösta Ekman': 'Narrator       (voice)', 'Fiorello': 'Narrator       (voice)', 'Sofie Gråbøl': 'Narrator       (voice)', 'Hikari Ishida': 'Haha-Penguin       (voice)', 'Ryûnosuke Kamiki': 'Ko-Penguin       (voice)', 'Adrian Killian': 'Penguin Baby       (voice)', 'Marek Kondrat': 'Narrator       (voice)', 'Andrea Kathrin Loewig': 'Penguin Mother       (voice)'}\"\r\ntt0455612,\"{'Tyler Perry': 'Madea /              Brian /              Joe', 'Blair Underwood': 'Carlos Armstrong', 'Lynn Whitfield': 'Victoria', 'Boris Kodjoe': 'Frankie Henderson', 'Lisa Arrindell': 'Vanessa       (as Lisa Arrindell Anderson)', 'Maya Angelou': 'May', 'Rochelle Aytes': 'Lisa', 'Jenifer Lewis': 'Milay Jenay Lori', 'Tangi Miller': 'Donna', 'Keke Palmer': 'Nikki', 'Henry Simmons': 'Issac', 'Cicely Tyson': 'Aunt Myrtle', 'China Anderson': 'Nima', 'Akhil Jackson': 'Jonathan', 'Alonzo Millsap': 'Tre'}\"\r\ntt0825232,\"{'Jack Nicholson': 'Edward', 'Morgan Freeman': 'Carter', 'Sean Hayes': 'Thomas', 'Beverly Todd': 'Virginia', 'Rob Morrow': 'Dr. Hollins', 'Alfonso Freeman': 'Roger', 'Rowena King': 'Angelica', 'Annton Berry Jr.': 'Kai', 'Verda Bridges': 'Chandra', 'Destiny Brownridge': 'Maya', 'Brian Copeland': 'Lee', 'Ian Anthony Dale': 'Instructor', 'Jennifer Defrancisco': 'Emily       (as Jennifer DeFrancisco)', 'Angela Gardner': 'Female Administrator', 'Noel Gugliemi': 'Mechanic       (as Noel Guglielmi)'}\"\r\ntt0496806,\"{'George Clooney': 'Danny Ocean', 'Brad Pitt': 'Rusty Ryan', 'Matt Damon': \"\"Linus Caldwell /              'Lenny Pepperidge'\"\", 'Michael Mantell': 'Dr. Stan', 'Elliott Gould': 'Reuben Tishkoff', 'Ray Xifo': \"\"Reuben's Butler\"\", 'Al Pacino': 'Willy Bank', 'Adam Lazarre-White': \"\"Bank's Junior Executive\"\", 'Eddie Jemison': 'Livingston Dell', 'Don Cheadle': 'Basher Tarr', 'Shaobo Qin': 'Yen', 'Casey Affleck': 'Virgil Malloy', 'Scott Caan': 'Turk Malloy', 'Bernie Mac': 'Frank Catton', 'Carl Reiner': 'Saul Bloom'}\"\r\ntt0120611,\"{'Wesley Snipes': 'Blade', 'Stephen Dorff': 'Deacon Frost', 'Kris Kristofferson': 'Whistler', \"\"N'Bushe Wright\"\": 'Karen', 'Donal Logue': 'Quinn', 'Udo Kier': 'Dragonetti', 'Arly Jover': 'Mercury', 'Traci Lords': 'Racquel', 'Kevin Patrick Walls': 'Krieger', 'Tim Guinee': 'Curtis Webb', 'Sanaa Lathan': 'Vanessa', 'Eric Edwards': 'Pearl', 'Donna Wong': 'Nurse', 'Carmen Thomas': 'Senior Resident', 'Shannon Lee': 'Resident'}\"\r\ntt0338751,\"{'Leonardo DiCaprio': 'Howard Hughes', 'Cate Blanchett': 'Katharine Hepburn', 'Kate Beckinsale': 'Ava Gardner', 'John C. Reilly': 'Noah Dietrich', 'Alec Baldwin': 'Juan Trippe', 'Alan Alda': 'Senator Ralph Owen Brewster', 'Ian Holm': 'Professor Fitz', 'Danny Huston': 'Jack Frye', 'Gwen Stefani': 'Jean Harlow', 'Jude Law': 'Errol Flynn', 'Adam Scott': 'Johnny Meyer', 'Matt Ross': 'Glenn Odekirk', 'Kelli Garner': 'Faith Domergue', 'Frances Conroy': 'Mrs. Hepburn', 'Brent Spiner': 'Robert Gross'}\"\r\ntt1000774,\"{'Sarah Jessica Parker': 'Carrie Bradshaw', 'Kim Cattrall': 'Samantha Jones', 'Kristin Davis': 'Charlotte York', 'Cynthia Nixon': 'Miranda Hobbes', 'Chris Noth': 'Mr. Big', 'Candice Bergen': 'Enid Frick', 'Jennifer Hudson': 'Louise', 'David Eigenberg': 'Steve Brady', 'Evan Handler': 'Harry Goldenblatt', 'Jason Lewis': 'Smith Jerrod', 'Mario Cantone': 'Anthony Marentino', 'Lynn Cohen': 'Magda', 'Willie Garson': 'Stanford Blatch', 'Joanna Gleason': 'Therapist', 'Joseph Pupo': 'Brady Hobbes'}\"\r\ntt0450259,\"{'Leonardo DiCaprio': 'Danny Archer', 'Djimon Hounsou': 'Solomon Vandy', 'Jennifer Connelly': 'Maddy Bowen', 'Kagiso Kuypers': 'Dia Vandy', 'Arnold Vosloo': 'Colonel Coetzee', 'Antony Coleman': 'Cordell Brown', 'Benu Mabhena': 'Jassie Vandy', 'Anointing Lukola': \"\"N'Yanda Vandy\"\", 'David Harewood': 'Captain Poison', 'Basil Wallace': 'Benjamin Kapanay', 'Jimi Mistry': 'Nabil', 'Michael Sheen': 'Rupert Simmons', 'Marius Weyers': 'Rudolf Van De Kaap', 'Stephen Collins': 'Ambassador Walker', 'Ntare Guma Mbaho Mwine': \"\"M'Ed       (as Ntare Mwine)\"\"}\"\r\ntt0332280,\"{'Tim Ivey': 'Rower', 'Gena Rowlands': 'Allie Calhoun', 'Starletta DuPois': 'Nurse Esther', 'James Garner': 'Duke', 'Anthony-Michael Q. Thomas': 'Nurse Keith', 'Ed Grady': 'Harry', 'Renée Amber': 'Nurse at Counter', 'Jennifer Echols': 'Nurse Selma', 'Geoffrey Knight': 'Barker', 'Kevin Connolly': 'Fin', 'Ryan Gosling': 'Noah', 'Heather Wahlquist': 'Sara Tuffington', 'Rachel McAdams': 'Allie', 'Andrew Schaff': 'Matthew Jamison III', 'Matt Shelly': 'Seabrook Boy'}\"\r\ntt0097958,\"{'Chevy Chase': 'Clark', \"\"Beverly D'Angelo\"\": 'Ellen', 'Juliette Lewis': 'Audrey', 'Johnny Galecki': 'Rusty', 'John Randolph': 'Clark, Sr.', 'Diane Ladd': 'Nora', 'E.G. Marshall': 'Art', 'Doris Roberts': 'Francis', 'Randy Quaid': 'Cousin Eddie Johnson', 'Miriam Flynn': 'Cousin Catherine Johnson', 'Cody Burger': 'Rocky', 'Ellen Latzen': 'Ruby Sue       (as Ellen Hamilton Latzen)', 'William Hickey': 'Lewis', 'Mae Questel': 'Bethany', 'Sam McMurray': 'Bill'}\"\r\ntt0032138,\"{'Judy Garland': 'Dorothy', 'Frank Morgan': 'Professor Marvel /              The Wizard of Oz /              The Gatekeeper /              The Carriage Driver /              The Guard', 'Ray Bolger': \"\"'Hunk' /              The Scarecrow\"\", 'Bert Lahr': \"\"'Zeke' /              The Cowardly Lion\"\", 'Jack Haley': \"\"'Hickory' /              The Tin Man\"\", 'Billie Burke': 'Glinda', 'Margaret Hamilton': 'Miss Gulch /              The Wicked Witch of the West', 'Charley Grapewin': 'Uncle Henry', 'Pat Walshe': 'Nikko', 'Clara Blandick': 'Auntie Em', 'Terry': 'Toto       (as Toto)', 'The Singer Midgets': 'The Munchkins       (as The Munchkins)'}\"\r\ntt0116529,\"{'Chelsea Holland': 'Lou       (as Chels Holland)', 'Ariel Mara': 'Betsy', 'Linzy Taylor': 'Lizzie       (as Linzy Kelley)', 'Sarah Jane Smith': 'Miss Callahan', 'Alicia Manta': 'Maureen', 'Hunter Johnson': 'School Principal', 'Frank Rosner': 'Mr. Hennessy', 'Matthew Pavlov': 'Mark Musinski', 'Apryl Wynter': 'Denise', 'Noah Wilson': 'Boy at the River', 'Brandon Winston': 'Boy at the River', 'Ashley Carlisle': 'Anabelle', 'Su Friedrich': 'Sex Ed Teacher', 'Maleena Waddy': 'Lead Singer', 'Kirsten Oriol': 'Backup Singer'}\"\r\ntt0117998,\"{'Helen Hunt': 'Dr. Jo Harding', 'Bill Paxton': 'Bill Harding', 'Cary Elwes': 'Dr. Jonas Miller', 'Jami Gertz': 'Dr. Melissa Reeves', 'Philip Seymour Hoffman': 'Dustin Davis', 'Lois Smith': 'Meg Greene', 'Alan Ruck': \"\"Robert 'Rabbit' Nurick\"\", 'Sean Whalen': 'Allan Sanders', 'Scott Thomson': \"\"Jason 'Preacher' Rowe\"\", 'Todd Field': \"\"Tim 'Beltzer' Lewis\"\", 'Joey Slotnick': 'Joey', 'Wendle Josepher': 'Haynes', 'Jeremy Davies': 'Laurence', 'Zach Grenier': 'Eddie', 'Gregory Sporleder': 'Willie'}\"\r\ntt0313737,\"{'Sandra Bullock': 'Lucy Kelson', 'Hugh Grant': 'George Wade', 'Alicia Witt': 'June Carver', 'Dana Ivey': 'Ruth Kelson', 'Robert Klein': 'Larry Kelson', 'Heather Burns': 'Meryl Brooks', 'David Haig': 'Howard Wade', 'Dorian Missick': 'Tony', 'Joseph Badalucco Jr.': 'Construction Foreman       (as Joseph Badalucco)', 'Jonathan Dokuchitz': 'Tom', 'Veanne Cox': 'Melanie Corman', 'Janine LaManna': 'Elaine Cominsky', 'Iraida Polanco': 'Rosario', 'Charlotte Maier': 'Helen Wade', 'Katheryn Winnick': 'Tiffany'}\"\r\ntt0139654,\"{'Denzel Washington': 'Alonzo', 'Ethan Hawke': 'Jake', 'Scott Glenn': 'Roger', 'Tom Berenger': 'Stan Gursky', 'Harris Yulin': 'Doug Rosselli', 'Raymond J. Barry': 'Lou Jacobs', 'Cliff Curtis': 'Smiley', 'Dr. Dre': 'Paul', 'Snoop Dogg': 'Blue', 'Macy Gray': \"\"Sandman's Wife\"\", 'Charlotte Ayanna': 'Lisa', 'Eva Mendes': 'Sara       (as Eva Mendez)', 'Nick Chinlund': 'Tim', 'Jaime Gomez': 'Mark       (as Jaime P. Gomez)', 'Raymond Cruz': 'Sniper'}\"\r\ntt0338348,\"{'Tom Hanks': 'Hero Boy /              Father /              Conductor /              Hobo /              Scrooge /              Santa Claus', 'Leslie Zemeckis': 'Sister Sarah /              Mother', 'Eddie Deezen': 'Know-It-All', 'Nona Gaye': 'Hero Girl       (voice)', 'Peter Scolari': 'Billy - Lonely Boy', 'Brendan King': 'Pastry Chef', 'Andy Pellick': 'Pastry Chef', 'Josh Eli': 'Waiter', 'Mark Mendonca': 'Waiter', 'Rolondas Hendricks': 'Waiter       (as Rolandas Hendricks)', 'Mark Goodman': 'Waiter', 'Jon Scott': 'Waiter', 'Gregory Gast': 'Waiter', 'Sean Scott': 'Waiter', 'Gordon Hart': 'Waiter'}\"\r\ntt0240772,\"{'George Clooney': 'Danny Ocean', 'Cecelia Ann Birt': 'Board Member #1       (voice) (as CeCeLia Birt)', 'Paul L. Nolan': 'Board Member #2       (voice)', 'Carol Florence': 'Board Member #3       (voice)', 'Lori Galinski': 'Blackjack Dealer', 'Bernie Mac': 'Frank Catton', 'Brad Pitt': 'Rusty Ryan', 'Mark Gantt': 'Bartender', 'Tim Perez': 'Security Guard       (as Timothy Paul Perez)', 'Elliott Gould': 'Reuben Tishkoff', 'Frank Patton III': 'Lockbox Carrier       (as Frank Patton)', 'Casey Affleck': 'Virgil Malloy', 'Scott Caan': 'Turk Malloy', 'Eddie Jemison': 'Livingston Dell', 'Jorge R. Hernandez': 'FBI Man #1'}\"\r\ntt0212346,\"{'Sandra Bullock': 'Gracie Hart', 'Michael Caine': 'Victor Melling', 'Benjamin Bratt': 'Eric Matthews', 'Candice Bergen': 'Kathy Morningside', 'William Shatner': 'Stan Fields', 'Ernie Hudson': 'Harry McDonald', 'John DiResta': 'Agent Clonsky', 'Heather Burns': 'Cheryl Frasier - Miss Rhode Island', 'Melissa De Sousa': 'Karen Krantz - Miss New York', 'Steve Monroe': 'Frank Tobin', 'Deirdre Quinn': 'Mary Jo Wright - Miss Texas', 'Wendy Raquel Robinson': 'Leslie Davis - Miss California', 'Asia De Marcos': 'Alana Krewson - Miss Hawaii', 'Ken Thomas': 'Agent Harris', 'Gabriel Folse': 'Agent Jerry Grant'}\"\r\ntt0373889,\"{'Daniel Radcliffe': 'Harry Potter', 'Harry Melling': 'Dudley Dursley', 'Jason Boyd': 'Piers', 'Richard Macklin': 'Malcolm', 'Kathryn Hunter': 'Mrs. Arabella Figg', 'Miles Jupp': 'TV Weatherman', 'Fiona Shaw': 'Petunia Dursley', 'Richard Griffiths': 'Vernon Dursley', 'Jessica Hynes': 'Mafalda Hopkirk       (voice) (as Jessica Stevenson)', 'Adrian Rawlins': 'James Potter', 'Geraldine Somerville': 'Lily Potter', 'Robert Pattinson': 'Cedric Diggory       (archive footage)', 'Ralph Fiennes': 'Lord Voldemort', 'Natalia Tena': 'Nymphadora Tonks', 'Brendan Gleeson': \"\"Alastor 'Mad-Eye' Moody\"\"}\"\r\ntt0110148,\"{'Brad Pitt': 'Louis', 'Christian Slater': 'Malloy', 'Virginia McCollam': 'Whore on Waterfront', 'John McConnell': 'Gambler', 'Tom Cruise': 'Lestat', 'Mike Seelig': 'Pimp', 'Bellina Logan': 'Tavern Girl', 'Thandie Newton': 'Yvette', 'Lyla Hay Owen': 'Widow St Clair', 'Lee E. Scharfstein': \"\"Widow's Lover       (as Lee Emery)\"\", 'Indra Ové': 'New Orleans Whore       (as Indra Ove)', 'Helen McCrory': '2nd Whore', 'Monte Montague': 'Plague Victim Bearer', 'Kirsten Dunst': 'Claudia', 'Nathalie Bloch-Lainé': 'Maid       (as Nathalie Bloch)'}\"\r\ntt0349903,\"{'Brad Pitt': 'Rusty Ryan', 'Catherine Zeta-Jones': 'Isabel Lahiri', 'George Clooney': 'Danny Ocean', 'Ed Kross': 'Bank Officer', 'Julia Roberts': 'Tess Ocean', 'Don Tiffany': 'House Painter', 'Anne Jacques': 'Shop Owner', 'David Sontag': 'Plainclothes Goon #1', 'Larry Sontag': 'Plainclothes Goon #2', 'Andy Garcia': 'Terry Benedict', 'Casey Affleck': 'Virgil Malloy', 'Dina Connolly': \"\"Virgil's Fiancée\"\", 'Scott Caan': 'Turk Malloy', 'Nelson Peltz': 'Partygoer', 'Mini Anden': 'Supermodel'}\"\r\ntt0120888,\"{'Adam Sandler': 'Robbie Hart', 'Drew Barrymore': 'Julia Sullivan', 'Christine Taylor': 'Holly Sullivan', 'Allen Covert': 'Sammy', 'Matthew Glave': 'Glenn Guglia', 'Ellen Albertini Dow': 'Rosie', 'Angela Featherstone': 'Linda', 'Alexis Arquette': 'George', 'Christina Pickles': 'Angie Sullivan', 'Jodi Thelen': 'Kate', 'Frank Sivero': 'Andy', 'Patrick McTavish': 'Tyler', 'Gemini Barnett': 'Petey', 'Teddy Castellucci': 'Robbie Hart Band Member', 'Randy Razz': 'Robbie Hart Band Member'}\"\r\ntt0110475,\"{'Jim Carrey': 'Stanley Ipkiss', 'Peter Riegert': 'Lt. Mitch Kellaway', 'Peter Greene': 'Dorian', 'Amy Yasbeck': 'Peggy Brandt', 'Richard Jeni': 'Charlie Schumaker', 'Orestes Matacena': 'Niko', 'Tim Bagley': 'Irv       (as Timothy Bagley)', 'Nancy Fish': 'Mrs. Peenman', 'Johnny Williams': 'Burt', 'Reg E. Cathey': 'Freeze       (as Reginald E. Cathey)', 'Jim Doughan': 'Doyle', 'Denis Forest': 'Sweet Eddy', 'Cameron Diaz': 'Tina Carlyle', 'Joseph Alfieri': 'Police Officer', 'B.J. Barie': 'Alley Punk #1'}\"\r\ntt0120812,\"{'Ken Leung': 'Sang', 'Jackie Chan': 'Lee', 'Tom Wilkinson': 'Griffin /              Juntao', 'Tzi Ma': 'Consul Han', 'Robert Littman': 'First Caucasian', 'Michael Chow': 'Dinner Guest', 'Julia Hsu': 'Soo Yung', 'Chris Tucker': 'Carter', 'Chris Penn': 'Clive', 'Kai Lennox': 'Cop at Diner', 'Larry Sullivan': 'Cop at Diner       (as Larry Sullivan Jr.)', 'Yang Lin': 'Consul Secretary       (as Yan Lin)', 'Roger Fan': \"\"Soo Yung's Bodyguard\"\", 'George Cheung': \"\"Soo Yung's Driver\"\", 'Lucy Lin': 'Exposition Official'}\"\r\ntt0330373,\"{'Eric Sykes': 'Frank Bryce', 'Timothy Spall': 'Wormtail', 'David Tennant': 'Barty Crouch Junior', 'Daniel Radcliffe': 'Harry Potter', 'Emma Watson': 'Hermione Granger', 'Rupert Grint': 'Ron Weasley', 'Mark Williams': 'Arthur Weasley', 'James Phelps': 'Fred Weasley', 'Oliver Phelps': 'George Weasley', 'Bonnie Wright': 'Ginny Weasley', 'Jeff Rawle': 'Amos Diggory', 'Robert Pattinson': 'Cedric Diggory', 'Jason Isaacs': 'Lucius Malfoy', 'Tom Felton': 'Draco Malfoy', 'Stanislav Yanevski': 'Viktor Krum       (as Stanislav Ianevski)'}\"\r\ntt0087363,\"{'Hoyt Axton': 'Randall Peltzer', 'John Louie': 'Chinese Boy', 'Keye Luke': 'Grandfather (Mr. Wing)', 'Don Steele': \"\"Rockin' Ricky Rialto       (voice)\"\", 'Susan Burgess': 'Little Girl', 'Scott Brady': 'Sheriff Frank', 'Arnie Moore': 'Alex', 'Corey Feldman': 'Pete Fountaine', 'Harry Carey Jr.': 'Mr. Anderson', 'Zach Galligan': 'Billy Peltzer', 'Dick Miller': 'Murray Futterman', 'Phoebe Cates': 'Kate Beringer', 'Polly Holliday': 'Ruby Deagle', 'Donald Elson': 'Man on Street       (as Don Elson)', 'Belinda Balaski': 'Mrs. Joe Harris'}\"\r\ntt0407887,\"{'Leonardo DiCaprio': 'Billy', 'Matt Damon': 'Colin Sullivan', 'Jack Nicholson': 'Frank Costello', 'Mark Wahlberg': 'Dignam', 'Martin Sheen': 'Queenan', 'Ray Winstone': 'Mr. French', 'Vera Farmiga': 'Madolyn', 'Anthony Anderson': 'Trooper Brown', 'Alec Baldwin': 'Ellerby', 'Kevin Corrigan': 'Cousin Sean', 'James Badge Dale': 'Trooper Barrigan', \"\"David O'Hara\"\": \"\"Fitzy       (as David Patrick O'Hara)\"\", 'Mark Rolston': 'Delahunt', 'Robert Wahlberg': 'Lazio - FBI', 'Kristen Dalton': 'Gwen'}\"\r\ntt0145660,\"{'Mike Myers': 'Austin Powers /              Dr. Evil /              Fat Bastard', 'Heather Graham': 'Felicity Shagwell', 'Michael York': 'Basil Exposition', 'Robert Wagner': 'Number Two', 'Rob Lowe': 'Young Number Two', 'Seth Green': 'Scott Evil', 'Mindy Sterling': 'Frau Farbissina', 'Verne Troyer': 'Mini-Me       (as Verne J. Troyer)', 'Elizabeth Hurley': 'Vanessa Kensington', 'Gia Carides': 'Robin Swallows', 'Oliver Muirhead': 'British Colonel', 'George Cheung': 'Chinese Teacher       (as George Kee Cheung)', 'Jeffrey Meng': 'Chinese Student', 'Muse Watson': 'Klansman', 'Scott Cooper': \"\"Klansman's Son - Bobby\"\"}\"\r\ntt0118655,\"{'Mike Myers': 'Austin Powers /              Dr. Evil', 'Elizabeth Hurley': 'Vanessa Kensington', 'Michael York': 'Basil Exposition', 'Mimi Rogers': 'Mrs. Kensington', 'Robert Wagner': 'Number Two', 'Seth Green': 'Scott Evil', 'Fabiana Udenio': 'Alotta Fagina', 'Mindy Sterling': 'Frau Farbissina', 'Paul Dillon': \"\"Patty O'Brien\"\", 'Charles Napier': 'Commander Gilmour', 'Will Ferrell': 'Mustafa', 'Joann Richter': '60s Model', 'Anastasia Sakelaris': '60s Model       (as Anastasia Nicole Sakelaris)', 'Afifi Alaouie': '60s Model', 'Monet Mazur': 'Mod Girl'}\"\r\ntt0486583,\"{'Vince Vaughn': 'Fred Claus', 'Paul Giamatti': \"\"Nick 'Santa' Claus\"\", 'John Michael Higgins': 'Willie', 'Miranda Richardson': 'Annette Claus', 'Rachel Weisz': 'Wanda', 'Kathy Bates': 'Mother Claus', 'Trevor Peacock': 'Papa Claus', 'Ludacris': \"\"DJ Donnie       (as Chris 'Ludacris' Bridges)\"\", 'Elizabeth Banks': 'Charlene', 'Jeremy Swift': 'Bob Elf', 'Elizabeth Berrington': 'Linda Elf', 'Kevin Spacey': 'Clyde', 'Rio Hackford': 'Leon', \"\"Bobb'e J. Thompson\"\": \"\"Samuel 'Slam' Gibbons\"\", 'Allan Corduner': 'Dr. Goldfarb'}\"\r\ntt0122933,\"{'Robert De Niro': 'Paul Vitti', 'Billy Crystal': 'Dr. Ben Sobel', 'Lisa Kudrow': 'Laura MacNamara Sobel', 'Chazz Palminteri': 'Primo Sidone', 'Kresh Novakovic': \"\"'50s Gangster       (as Kresimir Novakovic)\"\", 'Bart Tangredi': 'Young Vitti Sr.', 'Michael Straka': 'Young Dominic Manetta', 'Joseph Rigano': 'Dominic Manetta       (as Joe Rigano)', 'Joe Viterelli': 'Jelly', 'Richard C. Castellano': 'Jimmy Boots       (as Richard Castellano)', 'Molly Shannon': 'Caroline', 'Max Casella': 'Nicky Shivers', 'Frank Pietrangolare': 'Tuna', 'Kyle Sabihy': 'Michael Sobel', 'Bill Macy': 'Dr. Isaac Sobel'}\"\r\ntt0416449,\"{'Gerard Butler': 'King Leonidas', 'Lena Headey': 'Queen Gorgo', 'Dominic West': 'Theron', 'David Wenham': 'Dilios', 'Vincent Regan': 'Captain', 'Michael Fassbender': 'Stelios', 'Tom Wisdom': 'Astinos', 'Andrew Pleavin': 'Daxos', 'Andrew Tiernan': 'Ephialtes', 'Rodrigo Santoro': 'Xerxes', 'Giovani Cimmino': 'Pleistarchos       (as Giovani Antonio Cimmino)', 'Stephen McHattie': 'Loyalist', 'Greg Kramer': 'Ephor #1', 'Alex Ivanovici': 'Ephor #2', 'Kelly Craig': 'Oracle Girl'}\"\r\ntt0088939,\"{'Danny Glover': 'Albert', 'Whoopi Goldberg': 'Celie Johnson', 'Margaret Avery': 'Shug Avery', 'Oprah Winfrey': 'Sofia', 'Willard E. Pugh': 'Harpo Johnson       (as Willard Pugh)', 'Akosua Busia': 'Nettie Harris', 'Desreta Jackson': 'Young Celie Harris', 'Adolph Caesar': 'Old Mister Johnson', 'Rae Dawn Chong': 'Squeak', 'Dana Ivey': 'Miss Millie', 'Leonard Jackson': 'Pa Harris', 'Bennet Guillory': 'Grady', 'John Patton Jr.': 'Preacher', 'Carl Anderson': 'Reverend Samuel', 'Susan Beaubian': 'Corrine'}\"\r\ntt0367594,\"{'Johnny Depp': 'Willy Wonka', 'Freddie Highmore': 'Charlie Bucket', 'David Kelly': 'Grandpa Joe', 'Helena Bonham Carter': 'Mrs. Bucket', 'Noah Taylor': 'Mr. Bucket', 'Missi Pyle': 'Mrs. Beauregarde', 'James Fox': 'Mr. Salt', 'Deep Roy': 'Oompa Loompa', 'Christopher Lee': 'Dr. Wonka', 'Adam Godley': 'Mr. Teavee', 'Franziska Troegner': 'Mrs. Gloop', 'AnnaSophia Robb': 'Violet Beauregarde       (as Annasophia Robb)', 'Julia Winter': 'Veruca Salt', 'Jordan Fry': 'Mike Teavee', 'Philip Wiegratz': 'Augustus Gloop'}\"\r\ntt0295178,\"{'Mike Myers': 'Austin Powers /              Dr. Evil /              Goldmember /              Fat Bastard', 'Beyoncé': 'Foxxy Cleopatra       (as Beyoncé Knowles)', 'Seth Green': 'Scott Evil', 'Michael York': 'Basil Exposition', 'Robert Wagner': 'Number Two', 'Mindy Sterling': 'Frau Farbissina', 'Verne Troyer': 'Mini Me', 'Michael Caine': 'Nigel Powers', 'Fred Savage': 'Number Three', 'Diane Mizota': 'Fook Mi', 'Carrie Ann Inaba': 'Fook Yu', 'Nobu Matsuhisa': 'Mr. Roboto', 'Aaron Himelstein': 'Young Austin', 'Josh Zuckerman': 'Young Evil', 'Eddie Adams': 'Young Basil'}\"\r\ntt0096895,\"{'Michael Keaton': 'Batman /              Bruce Wayne', 'Jack Nicholson': 'Joker /              Jack Napier', 'Kim Basinger': 'Vicki Vale', 'Robert Wuhl': 'Alexander Knox', 'Pat Hingle': 'Commissioner Gordon', 'Billy Dee Williams': 'Harvey Dent', 'Michael Gough': 'Alfred', 'Jack Palance': 'Grissom', 'Jerry Hall': 'Alicia', 'Tracey Walter': 'Bob the Goon', 'Lee Wallace': 'Mayor', 'William Hootkins': 'Eckhardt', 'Richard Strange': 'Goon', 'Carl Chase': 'Goon', 'Mac McDonald': 'Goon       (as Mac Macdonald)'}\"\r\ntt0319343,\"{'Will Ferrell': 'Buddy', 'James Caan': 'Walter', 'Bob Newhart': 'Papa Elf', 'Edward Asner': 'Santa', 'Mary Steenburgen': 'Emily', 'Zooey Deschanel': 'Jovie', 'Daniel Tay': 'Michael', 'Faizon Love': \"\"Gimbel's Manager\"\", 'Peter Dinklage': 'Miles Finch', 'Amy Sedaris': 'Deb', 'Michael Lerner': 'Fulton', 'Andy Richter': 'Morris', 'Kyle Gass': 'Eugene', 'Artie Lange': \"\"Gimbel's Santa\"\", 'Leon Redbone': 'Leon the Snowman       (voice)'}\"\r\ntt0089218,\"{'Sean Astin': 'Mikey', 'Josh Brolin': 'Brand', 'Jeff Cohen': 'Chunk', 'Corey Feldman': 'Mouth', 'Kerri Green': 'Andy', 'Martha Plimpton': 'Stef', 'Ke Huy Quan': 'Data', 'John Matuszak': 'Sloth', 'Robert Davi': 'Jake', 'Joe Pantoliano': 'Francis', 'Anne Ramsey': 'Mama Fratelli', 'Lupe Ontiveros': 'Rosalita', 'Mary Ellen Trainor': 'Mrs. Walsh', 'Keith Walker': 'Mr. Walsh', 'Curt Hanson': 'Mr. Perkins       (as Curtis Hanson)'}\"\r\ntt0109686,\"{'Jim Carrey': 'Lloyd', 'Jeff Daniels': 'Harry', 'Lauren Holly': 'Mary', 'Mike Starr': 'Joe Mentalino', 'Karen Duffy': 'J.P. Shay', 'Charles Rocket': 'Nicholas Andre', 'Victoria Rowell': 'Athletic Beauty', 'Joe Baker': 'Barnard', 'Hank Brandt': 'Karl Swanson', 'Teri Garr': 'Helen Swanson', 'Brady Bluhm': 'Billy', 'Cam Neely': 'Sea Bass', 'Felton Perry': 'Detective Dale', 'Brad Lockerman': 'Bobby', 'Rob Moran': 'Bartender'}\"\r\ntt0034583,\"{'Humphrey Bogart': 'Rick Blaine', 'Ingrid Bergman': 'Ilsa Lund', 'Paul Henreid': 'Victor Laszlo', 'Claude Rains': 'Captain Louis Renault', 'Conrad Veidt': 'Major Heinrich Strasser', 'Sydney Greenstreet': 'Signor Ferrari', 'Peter Lorre': 'Ugarte', 'S.Z. Sakall': 'Carl       (as S.K. Sakall)', 'Madeleine Lebeau': 'Yvonne       (as Madeleine LeBeau)', 'Dooley Wilson': 'Sam', 'Joy Page': 'Annina Brandel', 'John Qualen': 'Berger', 'Leonid Kinskey': 'Sascha', 'Curt Bois': 'Pickpocket'}\"\r\ntt0133093,\"{'Keanu Reeves': 'Neo', 'Laurence Fishburne': 'Morpheus', 'Carrie-Anne Moss': 'Trinity', 'Hugo Weaving': 'Agent Smith', 'Gloria Foster': 'Oracle', 'Joe Pantoliano': 'Cypher', 'Marcus Chong': 'Tank', 'Julian Arahanga': 'Apoc', 'Matt Doran': 'Mouse', 'Belinda McClory': 'Switch', 'Anthony Ray Parker': 'Dozer', 'Paul Goddard': 'Agent Brown', 'Robert Taylor': 'Agent Jones', 'David Aston': 'Rhineheart', 'Marc Aden Gray': 'Choi       (as Marc Gray)'}\"\r\ntt0304141,\"{'Daniel Radcliffe': 'Harry Potter', 'Richard Griffiths': 'Uncle Vernon', 'Pam Ferris': 'Aunt Marge', 'Fiona Shaw': 'Aunt Petunia', 'Harry Melling': 'Dudley Dursley', 'Adrian Rawlins': 'James Potter', 'Geraldine Somerville': 'Lily Potter', 'Lee Ingleby': 'Stan Shunpike', 'Lenny Henry': 'Shrunken Head', 'Jimmy Gardner': 'Ernie the Bus Driver', 'Gary Oldman': 'Sirius Black', 'Jim Tavaré': 'Tom the Innkeeper', 'Robert Hardy': 'Cornelius Fudge', 'Abby Ford': 'Young Witch Maid', 'Rupert Grint': 'Ron Weasley'}\"\r\ntt0348150,\"{'Brandon Routh': 'Clark Kent /              Superman', 'Kate Bosworth': 'Lois Lane', 'Kevin Spacey': 'Lex Luthor', 'James Marsden': 'Richard White', 'Parker Posey': 'Kitty Kowalski', 'Frank Langella': 'Perry White', 'Sam Huntington': 'Jimmy Olsen', 'Eva Marie Saint': 'Martha Kent', 'Marlon Brando': 'Jor-El       (archive footage)', 'Kal Penn': 'Stanford', 'Tristan Lake Leabu': 'Jason White', 'David Fabrizio': 'Brutus', 'Ian Roberts': 'Riley', 'Vincent Stone': 'Grant', 'Jack Larson': 'Bo the Bartender'}\"\r\ntt0107050,\"{'Jack Lemmon': 'John Gustafson', 'Walter Matthau': 'Max Goldman', 'Ann-Margret': 'Ariel Truax', 'Burgess Meredith': 'Grandpa Gustafson', 'Daryl Hannah': 'Melanie', 'Kevin Pollak': 'Jacob Goldman', 'Ossie Davis': 'Chuck', 'Buck Henry': 'Snyder', 'Christopher McDonald': 'Mike', 'Steve Cochran': 'Weatherman', 'Joe Howard': 'Pharmacist', \"\"Isabell O'Connor\"\": 'Nurse       (as Isabell Monk)', 'Buffy Sedlachek': 'Punky       (as Buffy Sedlacheck)', 'John Carroll Lynch': 'Moving Man', 'Charles Brin': 'Fisherman'}\"\r\ntt0335266,\"{'Scarlett Johansson': 'Charlotte', 'Bill Murray': 'Bob Harris', 'Akiko Takeshita': 'Ms. Kawasaki', 'Kazuyoshi Minamimagoe': 'Press Agent', 'Kazuko Shibata': 'Press Agent', 'Take': 'Press Agent', 'Ryuichiro Baba': 'Concierge', 'Akira Yamaguchi': 'Bellboy', 'Catherine Lambert': 'Jazz Singer', 'François du Bois': 'Sausalito Piano       (as Francois du Bois)', 'Tim Leffman': 'Sausalito Guitar', 'Gregory Pekar': 'American Businessman #1', 'Richard Allen': 'American Businessman #2', 'Giovanni Ribisi': 'John', 'Diamond Yukai': 'Commercial Director       (as Yutaka Tadokoro)'}\"\r\ntt0031381,\"{'Thomas Mitchell': \"\"Gerald O'Hara\"\", \"\"Barbara O'Neil\"\": \"\"Ellen - His Wife       (as Barbara O'Neill)\"\", 'Vivien Leigh': 'Scarlett - Their Daughter', 'Evelyn Keyes': 'Suellen - Their Daughter', 'Ann Rutherford': 'Carreen - Their Daughter', 'George Reeves': \"\"Stuart Tarleton - Scarlett's Beau\"\", 'Fred Crane': \"\"Brent Tarleton - Scarlett's Beau\"\", 'Hattie McDaniel': 'Mammy - House Servant', 'Oscar Polk': 'Pork - House Servant', 'Butterfly McQueen': 'Prissy - House Servant', 'Victor Jory': 'Jonas Wilkerson - Field Overseer', 'Everett Brown': 'Big Sam - Field Foreman', 'Howard Hickman': 'John Wilkes', 'Alicia Rhett': 'India - His Daughter', 'Leslie Howard': 'Ashley - His Son'}\"\r\ntt0102798,\"{'Kevin Costner': 'Robin of Locksley', 'Morgan Freeman': 'Azeem', 'Mary Elizabeth Mastrantonio': 'Marian', 'Christian Slater': 'Will Scarlett', 'Alan Rickman': 'Sheriff of Nottingham', 'Geraldine McEwan': 'Mortianna', 'Michael McShane': 'Friar Tuck       (as Micheal McShane)', 'Brian Blessed': 'Lord Locksley', 'Michael Wincott': 'Guy of Gisborne', 'Nick Brimble': 'Little John', 'Soo Drouet': 'Fanny', 'Daniel Newman': 'Wulf', 'Daniel Peacock': 'Bull', 'Walter Sparrow': 'Duncan', 'Harold Innocent': 'Bishop'}\"\r\ntt0120689,\"{'Tom Hanks': 'Paul Edgecomb', 'David Morse': \"\"Brutus 'Brutal' Howell\"\", 'Bonnie Hunt': 'Jan Edgecomb', 'Michael Clarke Duncan': 'John Coffey', 'James Cromwell': 'Warden Hal Moores', 'Michael Jeter': 'Eduard Delacroix', 'Graham Greene': 'Arlen Bitterbuck', 'Doug Hutchison': 'Percy Wetmore', 'Sam Rockwell': \"\"'Wild Bill' Wharton\"\", 'Barry Pepper': 'Dean Stanton', 'Jeffrey DeMunn': 'Harry Terwilliger', 'Patricia Clarkson': 'Melinda Moores', 'Harry Dean Stanton': 'Toot-Toot', 'Dabbs Greer': 'Old Paul Edgecomb', 'Eve Brent': 'Elaine Connelly'}\"\r\ntt0325710,\"{'Ken Watanabe': 'Katsumoto', 'Tom Cruise': 'Nathan Algren', 'William Atherton': 'Winchester Rep', 'Chad Lindberg': 'Winchester Rep Assistant', 'Ray Godshall Sr.': 'Convention Hall Attendee', 'Billy Connolly': 'Zebulon Gant', 'Tony Goldwyn': 'Colonel Bagley', 'Masato Harada': 'Omura', 'Masashi Odate': \"\"Omura's Companion\"\", 'John Koyama': \"\"Omura's Bodyguard\"\", 'Timothy Spall': 'Simon Graham', 'Shichinosuke Nakamura': 'Emperor Meiji', 'Togo Igawa': 'General Hasegawa', 'Satoshi Nikaido': 'N.C.O.', 'Shintaro Wada': 'Young Recruit'}\"\r\ntt0234215,\"{'Ray Anthony': 'Power Station Guard', 'Christine Anu': 'Kali', 'Andy Arness': 'Police #2', 'Alima Ashton-Sheibu': \"\"Link's Niece\"\", 'Helmut Bakaitis': 'The Architect', 'Steve Bastoni': 'Soren', 'Don Battee': 'Vector       (as Don Batte)', 'Monica Bellucci': 'Persephone', 'Daniel Bernhardt': 'Agent Johnson', 'Valerie Berry': 'Priestess', 'Ian Bliss': 'Bane', 'Liliana Bogatko': 'Old Woman at Zion', 'Michael Budd': 'Zion Controller', 'Stoney Burke': 'Bike Carrier Driver', 'Kelly Butler': 'Ice'}\"\r\ntt0167261,\"{'Bruce Allpress': 'Aldor', 'Sean Astin': 'Sam', 'John Bach': 'Madril', 'Sala Baker': 'Man Flesh Uruk', 'Cate Blanchett': 'Galadriel', 'Orlando Bloom': 'Legolas', 'Billy Boyd': 'Pippin', 'Jed Brophy': 'Sharku /              Snaga', 'Sam Comery': 'Eothain', 'Brad Dourif': 'Wormtongue', 'Calum Gittins': 'Haleth', 'Bernard Hill': 'Theoden', 'Bruce Hopkins': 'Gamling', 'Paris Howe Strewe': 'Theodred', 'Christopher Lee': 'Saruman'}\"\r\ntt0120737,\"{'Alan Howard': 'Voice of the Ring       (voice)', 'Noel Appleby': 'Everard Proudfoot', 'Sean Astin': 'Sam', 'Sala Baker': 'Sauron', 'Sean Bean': 'Boromir', 'Cate Blanchett': 'Galadriel', 'Orlando Bloom': 'Legolas', 'Billy Boyd': 'Pippin', 'Marton Csokas': 'Celeborn', 'Megan Edwards': 'Mrs. Proudfoot', 'Michael Elsworth': 'Gondorian Archivist', 'Mark Ferguson': 'Gil-galad', 'Ian Holm': 'Bilbo', 'Christopher Lee': 'Saruman', 'Lawrence Makoare': 'Lurtz'}\"\r\ntt0120737,\"{'Alan Howard': 'Voice of the Ring       (voice)', 'Noel Appleby': 'Everard Proudfoot', 'Sean Astin': 'Sam', 'Sala Baker': 'Sauron', 'Sean Bean': 'Boromir', 'Cate Blanchett': 'Galadriel', 'Orlando Bloom': 'Legolas', 'Billy Boyd': 'Pippin', 'Marton Csokas': 'Celeborn', 'Megan Edwards': 'Mrs. Proudfoot', 'Michael Elsworth': 'Gondorian Archivist', 'Mark Ferguson': 'Gil-galad', 'Ian Holm': 'Bilbo', 'Christopher Lee': 'Saruman', 'Lawrence Makoare': 'Lurtz'}\"\r\ntt0295297,\"{'Daniel Radcliffe': 'Harry Potter', 'Rupert Grint': 'Ron Weasley', 'Emma Watson': 'Hermione Granger', 'Richard Griffiths': 'Uncle Vernon', 'Fiona Shaw': 'Aunt Petunia', 'Harry Melling': 'Dudley Dursley', 'Toby Jones': 'Dobby       (voice)', 'Jim Norton': 'Mr Mason', 'Veronica Clifford': 'Mrs Mason', 'James Phelps': 'Fred Weasley', 'Oliver Phelps': 'George Weasley', 'Julie Walters': 'Mrs. Weasley', 'Bonnie Wright': 'Ginny Weasley', 'Mark Williams': 'Mr. Weasley', 'Chris Rankin': 'Percy Weasley'}\"\r\ntt0241527,\"{'Richard Harris': 'Albus Dumbledore', 'Maggie Smith': 'Professor McGonagall', 'Robbie Coltrane': 'Hagrid', 'Saunders Triplets': 'Baby Harry Potter', 'Daniel Radcliffe': 'Harry Potter', 'Fiona Shaw': 'Aunt Petunia Dursley', 'Harry Melling': 'Dudley Dursley', 'Richard Griffiths': 'Uncle Vernon Dursley', 'Derek Deadman': 'Bartender in Leaky Cauldron', 'Ian Hart': 'Professor Quirrell', 'Ben Borowiecki': 'Diagon Alley Boy', 'Warwick Davis': 'Goblin Bank Teller /              Professor Flitwick /              Voice of Griphook', 'Verne Troyer': 'Griphook       (as Vern Troyer)', 'John Hurt': 'Mr. Ollivander', 'Richard Bremmer': 'He Who Must Not Be Named'}\"\r\ntt0122151,\"{'Mel Gibson': 'Martin Riggs', 'Danny Glover': 'Roger Murtaugh', 'Joe Pesci': 'Leo Getz', 'Rene Russo': 'Lorna Cole', 'Chris Rock': 'Detective Lee Butters', 'Jet Li': 'Wah Sing Ku', 'Steve Kahan': 'Captain Ed Murphy', 'Kim Chan': \"\"Benny 'Uncle Benny' Chan\"\", 'Darlene Love': 'Trish Murtaugh', 'Traci Wolfe': 'Rianne Murtaugh Butters', 'Eddy Ko': 'Hong, Chinese Refugee', 'Jack Kehler': 'State Department Man', 'Calvin Jung': 'Detective Ng', 'Damon Hines': 'Nick Murtaugh', 'Ebonie Smith': 'Carrie Murtaugh'}\"\r\ntt0405159,\"{'Clint Eastwood': 'Frankie Dunn', 'Hilary Swank': 'Maggie Fitzgerald', 'Morgan Freeman': 'Eddie Scrap-Iron Dupris', 'Jay Baruchel': 'Danger Barch', 'Mike Colter': 'Big Willie Little', 'Lucia Rijker': \"\"Billie 'The Blue Bear'\"\", \"\"Brían F. O'Byrne\"\": \"\"Father Horvak       (as Brían O'Byrne)\"\", 'Anthony Mackie': 'Shawrelle Berry', 'Margo Martindale': 'Earline Fitzgerald', 'Riki Lindhome': 'Mardell Fitzgerald', 'Michael Peña': 'Omar', 'Benito Martinez': \"\"Billie's Manager\"\", 'Bruce MacVittie': 'Mickey Mack', 'David Powledge': 'Counterman at Diner', \"\"Joe D'Angerio\"\": \"\"Cut Man       (as Joe d'Angerio)\"\"}\"\r\ntt0104714,\"{'Mel Gibson': 'Martin Riggs', 'Danny Glover': 'Roger Murtaugh', 'Joe Pesci': 'Leo Getz', 'Rene Russo': 'Lorna Cole', 'Stuart Wilson': 'Jack Travis', 'Steve Kahan': 'Captain Murphy', 'Darlene Love': 'Trish Murtaugh', 'Traci Wolfe': 'Rianne Murtaugh', 'Damon Hines': 'Nick Murtaugh', 'Ebonie Smith': 'Carrie Murtaugh', 'Gregory Millar': 'Tyrone', 'Nick Chinlund': 'Hatchett', 'Jason Rainwater': 'Young Cop       (as Jason Meshover-Iorg)', 'Alan Scarfe': 'Herman Walters', 'Delores Hall': 'Delores'}\"\r\ntt0177971,\"{'George Clooney': 'Billy Tyne', 'Mark Wahlberg': 'Bobby Shatford', 'John C. Reilly': \"\"Dale 'Murph' Murphy\"\", 'Diane Lane': 'Christina Cotter', 'William Fichtner': \"\"David 'Sully' Sullivan\"\", 'John Hawkes': \"\"Mike 'Bugsy' Moran\"\", 'Allen Payne': 'Alfred Pierre', 'Mary Elizabeth Mastrantonio': 'Linda Greenlaw', 'Karen Allen': 'Melissa Brown', 'Cherry Jones': 'Edie Bailey', 'Bob Gunton': 'Alexander McAnally III', 'Christopher McDonald': 'Todd Gross', 'Michael Ironside': 'Bob Brown', 'Rusty Schwimmer': \"\"Irene 'Big Red' Johnson\"\", 'Janet Wright': 'Ethel Shatford'}\"\r\ntt0114369,\"{'Morgan Freeman': 'Somerset', 'Andrew Kevin Walker': 'Dead Man at 1st Crime Scene       (as Andy Walker)', 'Daniel Zacapa': 'Detective Taylor at First Murder', 'Brad Pitt': 'Mills', 'Gwyneth Paltrow': 'Tracy', 'John Cassini': 'Officer Davis', 'Bob Mack': 'Gluttony Victim', 'Peter Crombie': \"\"Dr. O'Neill\"\", 'Reg E. Cathey': 'Dr. Santiago', 'R. Lee Ermey': 'Police Captain', 'George Christy': \"\"Workman at Door of Somerset's Office\"\", 'Endre Hules': 'Cab Driver', 'Hawthorne James': 'George the Night Guard at the Library', 'William Davidson': 'First Guard at the Library       (as Roscoe Davidson)', 'Bob Collins': 'Second Guard at the Library'}\"\r\ntt0293564,\"{'Chris Tucker': 'Carter', 'Jackie Chan': 'Lee', 'Max von Sydow': 'Reynard', 'Hiroyuki Sanada': 'Kenji', 'Yvan Attal': 'George', 'Yûki Kudô': 'Dragon Lady', 'Noémie Lenoir': 'Genevieve       (as Noemie Lenoir)', 'Jingchu Zhang': 'Soo Yung       (as Zhang Jingchu)', 'Tzi Ma': 'Ambassador Han', 'Dana Ivey': 'Sister Agnes', 'Henry O': 'Master Yu       (as Henry O.)', 'Mia Tyler': 'Marsha', 'Michael Chow': 'Chinese Foreign Minister', 'David Niven Jr.': 'British Foreign Minister', 'Oanh Nguyen': 'Mi'}\"\r\ntt0242653,\"{'Mary Alice': 'The Oracle', 'Tanveer K. Atwal': 'Sati', 'Helmut Bakaitis': 'The Architect', 'Kate Beahan': 'Coat Check Girl', 'Francine Bell': 'Councillor Grace', 'Monica Bellucci': 'Persephone', 'Rachel Blackman': 'Charra', 'Henry Blasingame': 'Deus Ex Machina', 'Ian Bliss': 'Bane', 'David Bowers': 'Q-Ball Gang Member #1', 'Zeke Castelli': 'Operations Officer Mattis', 'Collin Chou': 'Seraph', 'Essie Davis': 'Maggie', 'Laurence Fishburne': 'Morpheus', 'Nona Gaye': 'Zee'}\"\r\ntt6836772,\"{'Ifan Meredith': 'Lt. Calloway', 'Kimberley Hews': 'Angelique', 'Darren Hill': 'Vincent Harris', 'Kyle Hotz': 'Sgt. Walker', 'Conner P. Kelley': 'Thomas       (as Connor Kelley)', 'Tyler Cole': 'Roger King', 'Michael Wouters': 'Strasser', 'Brent Roske': 'Pierre', 'Gerard Pauwels': 'Colonel Plummer', 'Jerry L. Beasley': 'Harmon', 'Eddie Curry': 'German Scientist', 'Paul Nicely': 'Luc', 'Christopher W.D. Howe': 'Radio Operator', 'Charles J. Adams': 'Radio Operator', 'Alex Willey': 'German Soldier'}\"\r\ntt1521787,\"{'Lira Kellerman': 'Susan', 'Michael Holmes': 'Drake', 'Tomas Boykin': 'Harrison Dent', 'Kimberly Ables Jindra': 'Sarah Winchester', 'Patty Roberts': 'Haley       (as Barry Womack)', 'Jennifer Smart': 'Annie', 'Rob Ullett': 'James Clayhill', 'David McIntyre': 'Officer Cooper', 'Savannah Schoenecker': 'Margo Hunter', 'Sari Sheehan': 'Jessica Lloyd', 'Rya Meyers': 'Marlene', 'Mitch Toles': 'Blind Ghost       (as Mitcheal Toles)', 'Jefferson Wilmore': 'Civil War Ghost', 'Frank Weitzel': 'Gunshot Ghost', 'George Michael Lampe': 'Nasty Ghost'}\"\r\ntt1876517,\"{'Jon Heder': 'Fu       (voice)', 'Tom Arnold': 'Shifu       (voice)', 'Rebecca Black': 'Penny       (voice)', 'Claire Geare': 'Biggie       (voice)', 'Michael Clarke Duncan': 'Slash       (voice)'}\"\r\ntt2386490,\"{'Jay Baruchel': 'Hiccup       (voice)', 'America Ferrera': 'Astrid       (voice)', 'F. Murray Abraham': 'Grimmel       (voice)', 'Cate Blanchett': 'Valka       (voice)', 'Gerard Butler': 'Stoick       (voice)', 'Craig Ferguson': 'Gobber       (voice)', 'Jonah Hill': 'Snotlout       (voice)', 'Christopher Mintz-Plasse': 'Fishlegs       (voice)', 'Kristen Wiig': 'Ruffnut       (voice)', 'Kit Harington': 'Eret       (voice)', 'Justin Rupple': 'Tuffnut       (voice)', 'Robin Atkin Downes': 'Ack       (voice)', 'Kieron Elliott': 'Hoark       (voice)', 'Julia Emelin': 'Griselda the Grevious       (voice)', 'Gideon Emery': 'Trapper       (voice)'}\"\r\ntt2381317,\"{'Ming-Na Wen': 'Dr. Jenna Sparks       (as Ming-Na)', 'Nicholas Turturro': 'Travis Verdon', 'Andy Clemence': 'Dr. Percy Cavanaugh', 'Darin Cooper': 'Colonel Lee Chadwick', 'Jonathan Le Billon': 'Engineer Alex Rowell', 'Dylan Vox': 'Gary Winters', 'AnnaMaria Demara': 'Sgt. Maj. Ramona Peters', 'Steve Hanks': 'Captain Worley', 'Wayne Lopez': 'Uncle Clegg', 'Mitch Lerner': 'Dr. Flynn', 'Jamie Burton-Oare': 'Secretary West', 'Todd James Jackson': 'Lt. Davy Connelly', 'Gospel Jackson': 'Captain Williams', 'Mat Lageman': 'Pvt. Kramer', 'Tracy Winters': 'Mrs. Annabelle Moore'}\"\r\ntt7131870,\"{'Jing Wu': 'Leng Feng', 'Frank Grillo': 'Big Daddy', 'Celina Jade': 'Rachel Prescott Smith', 'Gang Wu': 'He Jianguo', 'Hans Zhang': 'Zhuo Yifan', 'Qian Yu': 'Bida Qian', 'Nan Yu': 'Long Xiaoyun', 'Shanshan Chunyu': 'Lin Zhixiong', 'Haifeng Ding': 'Captain Zhang', 'Oleg Prudius': 'Bear', 'Heidi Moneymaker': 'Athena', 'Aaron Ly': 'Ghost', 'Scott Adkins': 'Tomcat       (archive footage)', 'Paul Allica': 'Mercenary', 'Pierre Bourdaud': 'Jack'}\"\r\ntt2611408,\"{'The Evil Hate Monkey': 'The Evil Hate Monkey', 'Trixie Little': 'Trixie Little'}\"\r\ntt1610528,\"{'Meredith Baxter': 'President Harriet Franklin', 'Lindsey McKeon': 'Special Agent Gina Vitale', 'Scott Valentine': 'Joseph Franklin', 'Geoff Meed': 'Robert Stevens', 'Jude Gerard Prest': 'First Officer Bill Alexander', 'Matt Lagan': 'National Security Advisor Cason', 'Bart Baggett': 'Harry', 'Londale Theus': 'Agent Melville', 'Chip Bent': 'Fred', 'Nicholas J. Leinbach': 'DJ Rocker', 'Ed Callison': 'General Dillard', 'Jim Boeven': 'Snake', 'Carl Watts': 'Digrazzi', 'Peter Smith': 'Sky Marshall', 'Riley Polanski': 'Michael Franklin'}\"\r\ntt1757944,\"{'Fiona Perry': 'Princess Evelyn Cottington', 'Bill Oberst Jr.': 'Theodore Snyder', 'Bobbi Jo Lathan': 'Aunt Fay', 'Ron Hajak': 'Lawrence', 'Aubrey Wakeling': 'Fernando', 'Alison Lees-Taylor': 'Velora', 'Jonathan Nation': 'Sheriff Bartelbum', 'Olivia Stuck': 'Becky', 'Kim Little': 'Queen Matilda', 'Brian Ibsen': 'Roberts', 'Bennett Gillespie': 'Mr. Blair', 'Zachary Mitchell': 'Liam', 'Amber Lea Voiles': 'Lunacian News Reporter       (as Amber Wiles)', 'Debra Harrison-Lowe': 'British News Reporter', 'Lilan Bowden': 'Chinese News Reporter'}\"\r\ntt1107365,\"{'Joel McHale': 'Elliot       (voice)', 'Mike Epps': 'Boog       (voice)', 'Jane Krakowski': 'Giselle       (voice)', 'Billy Connolly': 'McSquizzy       (voice)', 'Crispin Glover': 'Fifi       (voice)', 'Steve Schirripa': 'Roberto       (voice)', 'Georgia Engel': 'Bobbie       (voice)', 'Diedrich Bader': 'Rufus       (voice)', 'Cody Cameron': 'Mr. Weenie       (voice)', 'Fred Stoller': 'Stanley       (voice)', 'Olivia Hack': 'Charlene       (voice)', 'Danny Mann': 'Serge       (voice)', 'Maddie Taylor': 'Deni /              Buddy /              Ian       (voice) (as Matt Taylor)', 'Nika Futterman': 'Rosie       (voice)', 'Sean Mullen': 'Roger       (voice) (as Sean P. Mullen)'}\"\r\ntt1636629,\"{'Patrick Muldoon': 'Adrian Sinbad', 'Sarah Desage': 'Loa', 'Bo Svenson': 'Simon Magnusson', \"\"Kelly O'Leary\"\": 'Gemma Hargrove', 'Dylan Jones': 'Joseph Atash', 'Berne Velasquez': 'Mehrak', 'Peter Greathouse': 'Whittaker', 'Clifford Garbutt': 'Abdi the Consul', 'Dax': 'Maxamillion', 'Gautam Sabnani': 'Lincoln', 'Horacio Louis Guerrero': 'Andrews', 'Rhondeen Pitts': 'Mei', 'Oliver Mason': 'Alex Degraves', 'Victoria Jeffries': 'Queen Siren', 'Maria Jeffery': 'Siren'}\"\r\ntt7204400,\"{'Matthew Pohlkamp': 'Matt Mason', 'Natalie Pelletier': 'Johanna Mason', 'Erich Riegelmann': 'Rick Mason', 'Maggie Rose Hudson': 'Kaley Mason', 'Isabella Bazler': 'Cassie Mason', 'M. Steven Felty': 'Roberto Gianelli', 'Deyo Forteza': 'Rajesh Vasquez', 'Nathan Leung': 'Noah Smith', 'Tammy Klein': 'Dr. M. Picciotto', 'Jay Cardell': 'Rodney Jackson', 'Annie Quigley': 'Aurora', 'Channing McKindra': 'May', 'Phong Tran': 'Motorcycle Guy', 'Eric Paul Erickson': 'Prepper Leader       (as Eric Erickson)', 'Ryan Patrick Shanahan': 'Oliver'}\"\r\ntt3417334,\"{'Dean Cain': 'Rick Pierce', 'Robin Givens': 'Lisa Whitmore', 'Tamara Goodwin': 'Rita Loss', 'Matt Mercer': 'Landon Todd', 'Morgan West': 'Specialist Neil Tully', 'Lawrence Hilton-Jacobs': 'Jim Kirkland', 'Graham Denman': 'Private Vaughn', 'Mike Jerome Putnam': 'Colonel Ryker', 'Anthony Marks': 'Frank Matthews', 'David Vega': 'Carlos Crieger', 'Ryan Budds': 'Private Thatch', 'Jonathan Nation': 'Captain Minor', 'Jeff Groff': 'Jeff Spair', 'Natalie Burtney': 'Jennifer', 'Zachary Haven': 'Tony'}\"\r\ntt7475886,{}\r\ntt0264734,\"{'Ben Affleck': 'Joseph       (voice)', 'Mark Hamill': 'Judah       (voice)', 'Richard Herd': 'Jacob       (voice)', 'Maureen McGovern': 'Rachel       (voice)', 'Jodi Benson': 'Asenath       (voice)', 'Judith Light': 'Zuleika       (voice)', 'James Eckhouse': 'Potiphar       (voice)', 'Richard McGonagle': 'Pharaoh       (voice)', 'David Campbell': 'Joseph       (singing voice)', 'Steven Weber': 'Simeon /              Slave Trader       (voice)', 'Dan Castellaneta': 'Auctioneer /              Horse Trader       (voice)', 'Rene Auberjonois': 'Butler       (voice)', 'Ken Hudson Campbell': 'Baker       (voice) (as Ken Campbell)', 'Tom Virtue': 'Reuben       (voice)', 'Jeff Bennett': 'Levi       (voice)'}\"\r\ntt1912996,\"{'Jeneta St. Clair': 'Cheryl', 'Lisa Younger': 'Lexi', 'Melissa Johnston': 'Sue', 'Morgan Benoit': 'Jake', 'Myko Olivier': 'Eric', 'Matthew Keoki Miller': 'Frank       (as Matt Miller)', 'Joy Amber Stephens': 'Johanna /              J.J.', 'Irec Hargrove': 'Rod', 'Wolfie Trausch': 'Chris', 'Andre Meadows': 'Tom', 'Lee Doud': 'Troy', 'Alex Arleo': 'Jeremy', 'Alex Zanger': 'Jesus       (as Alec Zanger)', 'Joseph O. Gara': 'Jo', 'Kevin Yarbrough': 'The Priest'}\"\r\ntt1911533,\"{'Yaz Canli': 'Sandy       (uncredited)', 'Kai Cofer': 'Dr. Frederick Gruber       (uncredited)', 'Christopher Karl Johnson': 'Father Renz       (uncredited)', 'Nikki Muller': 'Anneliese Michel       (uncredited)', 'Annette Remter': 'Anna Michel       (uncredited)', 'David Reynolds': 'Josef Michel       (uncredited)', 'Robert Shampain': 'Dr. Kenneth Landers       (uncredited)', 'Korey Simeone': 'Steve Parker       (uncredited)', 'Gerold Wunstel': 'Pastor Ernest Alt       (uncredited)'}\"\r\ntt1473801,\"{'Rollin Perry': \"\"Josh 'Spanky' Green\"\", 'Seth Cassell': 'Mert       (as Seth Adam Cassell)', 'Michelle Penick': 'Princess', 'Rana Davis': 'Strawberry', 'Maurice Constable': 'Mr. Clink', 'Lindsey Ahern': 'Pinky', 'Brent Anthony': 'Little Joe Joe', 'Teryl Brouillette': 'Ellen Green       (as Terry Brouillette)', 'Theresa Deveaux': 'Mama Love', 'Lola Forsberg': 'Leah', 'Elina Madison': 'Nancy', 'Jack Ross': 'Max       (as Matthew Ross)', 'T.J. Zale': 'Darlington', 'Giusy Castiglione': 'Dream Woman', 'Becky T. Bordo': 'Bikini Jane       (as Tahel Becky Bordo)'}\"\r\ntt1615480,\"{'Tom Sizemore': 'Leroy Lowe', 'Stacy Keach': 'Warden Merville', 'Kevin P. Farley': 'Bubba', 'Héctor Jiménez': 'Emilio', 'Olga Segura': 'Madalena', 'Bob Rickard': 'Judge', 'Rock Williams': 'Prison Guard', 'Tom Gulager': 'Prison Guard', 'Kaj Sturdivant': 'Prison Guard', 'Leighton R. Shields': 'Minister', 'Orock Orock': 'Prisoner', 'Scott Forrester': 'Prisoner', 'Pedro Alvarado': 'Prisoner', 'Darrell Britt': 'Prisoner /              KKK Member', 'Carlos Soto-Montes': 'Prisoner'}\"\r\ntt1912981,\"{'Bill Oberst Jr.': 'Wayne Downs', 'Courtney Abbiati': 'Carrie Downs', 'Jenna Stone': 'Alli Downs', 'Nicholas Harsin': 'Kyle Downs', 'Carey Van Dyke': 'Mike Goodwin', 'Gerald Webb': 'Mayor Avery Colllins', 'Jason Paul Field': 'Sheriff Underhill', 'Courtney DeCosky': 'Mrs. Underhill', 'Sam Kinsey': \"\"Underhill's Son\"\", 'Sonny King': 'McSwain       (as Alfred H. Sonny King)', 'Shaula Chambliss': 'Ms. Winston', 'Josh Roman': 'Kevin', 'Catherine Lidstone': 'Sara Good', 'Lauren Kelley': 'Rebecca Nurse', 'Shoshana Chagall': 'Witch #2       (as Shoshanna Chagall)'}\"\r\ntt0096118,\"{'Pamela Springsteen': 'Angela', 'Renée Estevez': 'Molly', 'Tony Higgins': 'Sean', 'Valerie Hartman': 'Ally', 'Brian Patrick Clarke': 'T.C.', 'Walter Gotell': 'Uncle John', 'Susan Marie Snyder': 'Mare', 'Terry Hobbs': 'Rob', 'Kendall Bean': 'Demi', 'Julie Murphy': 'Lea', 'Carol Chambers': 'Brooke', 'Amy Fields': 'Jodi', 'Benji Wilhoite': 'Anthony', 'Walter Franks III': 'Judd', 'Justin Nowell': 'Charlie'}\"\r\ntt1823051,\"{'Jaz Martin': 'Rick Merchant', 'Hennely Jimenez': 'Kelly Garcia', 'AnnaMaria Demara': 'Claudia', 'Darren Anthony Thomas': 'Kayce       (as Darren Thomas)', 'Zedrick Restauro': 'Phong', 'Jared Kahn': 'Albert       (as Jared M. Kahn)', 'Paul Logan': 'Officer Flynn', 'Janet Tracy Keijser': 'Debbie Merchant       (as Janet T. Keijser)', 'Tommy Nash': 'Tom Merchant', 'Sam Aaron': 'Lou', 'Cleo Berry': 'Jake', 'Mack-b': 'Domingo Juarez       (as Makelaie Brown)', 'Pason': 'Amber', 'Sean Cory': 'Attendant       (as Sean Cory Cooper)', 'Meredith Thomas': 'Cherrie the Manager'}\"\r\ntt1876517,\"{'Jon Heder': 'Fu       (voice)', 'Tom Arnold': 'Shifu       (voice)', 'Rebecca Black': 'Penny       (voice)', 'Claire Geare': 'Biggie       (voice)', 'Michael Clarke Duncan': 'Slash       (voice)'}\"\r\ntt2062996,\"{'Bun B': 'Himself', 'B-Real': 'Himself', 'Afrika Bambaataa': 'Himself', 'Derek Barbosa': 'Himself       (as Chino XL)', 'Yasiin Bey': 'Himself       (as Mos Def)', 'Big Daddy Kane': 'Himself', 'Kool Boy': 'Himself', 'Joe Budden': 'Himself', 'Busy Bee': 'Himself', 'Cashout Chris': 'Himself', 'Chuck D': 'Himself', 'Common': 'Himself', \"\"Anthony 'Treach' Criss\"\": 'Himself', 'Dana Dane': 'Himself', 'Feddie Demarco': 'Himself'}\"\r\ntt0264734,\"{'Ben Affleck': 'Joseph       (voice)', 'Mark Hamill': 'Judah       (voice)', 'Richard Herd': 'Jacob       (voice)', 'Maureen McGovern': 'Rachel       (voice)', 'Jodi Benson': 'Asenath       (voice)', 'Judith Light': 'Zuleika       (voice)', 'James Eckhouse': 'Potiphar       (voice)', 'Richard McGonagle': 'Pharaoh       (voice)', 'David Campbell': 'Joseph       (singing voice)', 'Steven Weber': 'Simeon /              Slave Trader       (voice)', 'Dan Castellaneta': 'Auctioneer /              Horse Trader       (voice)', 'Rene Auberjonois': 'Butler       (voice)', 'Ken Hudson Campbell': 'Baker       (voice) (as Ken Campbell)', 'Tom Virtue': 'Reuben       (voice)', 'Jeff Bennett': 'Levi       (voice)'}\"\r\ntt1473801,\"{'Rollin Perry': \"\"Josh 'Spanky' Green\"\", 'Seth Cassell': 'Mert       (as Seth Adam Cassell)', 'Michelle Penick': 'Princess', 'Rana Davis': 'Strawberry', 'Maurice Constable': 'Mr. Clink', 'Lindsey Ahern': 'Pinky', 'Brent Anthony': 'Little Joe Joe', 'Teryl Brouillette': 'Ellen Green       (as Terry Brouillette)', 'Theresa Deveaux': 'Mama Love', 'Lola Forsberg': 'Leah', 'Elina Madison': 'Nancy', 'Jack Ross': 'Max       (as Matthew Ross)', 'T.J. Zale': 'Darlington', 'Giusy Castiglione': 'Dream Woman', 'Becky T. Bordo': 'Bikini Jane       (as Tahel Becky Bordo)'}\"\r\ntt5218234,{}\r\ntt1576379,\"{'Cristina Murta': 'Lechuza', 'Alejandra Rubio': 'Gama Ciega'}\"\r\ntt6874406,\"{'Caroline Ivari': 'Emma Harper', 'Stephen Brown': 'Benjamin Robbins       (as Steve Brown)', 'Cedric Jonathan': 'Ishiro Tsubaraya', 'Michael Marcel': 'Freddie', 'Mishone Feigin': 'Bruce', 'Ana Zimhart': 'Sandrine', 'Britt George': 'General Wesley Augursin', 'Dennis Renard': 'Doran', 'Brandon George': 'Gas Station Attendant', 'Mike Duff': 'Security Guard', 'Kevin Duffin': 'Guard', 'Natalia Herrera': 'NASA Astrophycist', 'Sarah J. Bartholomew': 'Airman 1       (as Sarah Bartholomew)', 'Jude Williams': 'Child', 'Sari Sabella': 'Background person'}\"\r\ntt6874406,\"{'Caroline Ivari': 'Emma Harper', 'Stephen Brown': 'Benjamin Robbins       (as Steve Brown)', 'Cedric Jonathan': 'Ishiro Tsubaraya', 'Michael Marcel': 'Freddie', 'Mishone Feigin': 'Bruce', 'Ana Zimhart': 'Sandrine', 'Britt George': 'General Wesley Augursin', 'Dennis Renard': 'Doran', 'Brandon George': 'Gas Station Attendant', 'Mike Duff': 'Security Guard', 'Kevin Duffin': 'Guard', 'Natalia Herrera': 'NASA Astrophycist', 'Sarah J. Bartholomew': 'Airman 1       (as Sarah Bartholomew)', 'Jude Williams': 'Child', 'Sari Sabella': 'Background person'}\"\r\ntt6231792,\"{'Haiden Deegan': 'Himself', 'Josh Hill': 'Himself', 'Dean Wilson': 'Himself'}\"\r\ntt0842000,\"{'Troy Garity': 'Marchello       (voice)', 'Mara Lane': 'Hummingbird       (voice)', 'Michelle Rodriguez': 'Jujube       (voice)', 'Dominique Swain': 'Mom       (voice)', 'Troy Hall': 'Bunji /              Larry Black Shoes /              Side-Kick Crow /              Black Lab /              Black & White Dog /              High Wire Squirrel       (voice)', 'I.M. Pei': 'TV Personality', 'Jeremy Sisto': 'Jiminy Squirrel       (voice)', 'Mark Sussman': \"\"Jujube's Dog /              Black Lab's Master /              Blackie's 2 Dogs /              Rabbit /              Tortoise       (voice)\"\", 'Greg Lindsay': 'TV Personality /              Red Dog /              Rex       (voice)', 'Amy Jo Steele': 'Catnapper /              Sparrow /              Rosie the Terrier       (voice)', 'Shannon Conlon': 'Pinky       (voice)', 'Jeremy Piven': 'Blackie       (voice)', 'Richard Velazquez': 'Stinky /              Frog 4       (voice) (as Richie Velazquez)'}\"\r\ntt3410834,\"{'Shailene Woodley': 'Tris', 'Theo James': 'Four', 'Naomi Watts': 'Evelyn', 'Octavia Spencer': 'Johanna', 'Jeff Daniels': 'David', 'Zoë Kravitz': 'Christina', 'Ansel Elgort': 'Caleb', 'Miles Teller': 'Peter', 'Keiynan Lonsdale': 'Uriah', 'Daniel Dae Kim': 'Jack Kang', 'Maggie Q': 'Tori', 'Bill Skarsgård': 'Matthew', 'Jonny Weston': 'Edgar', 'Nadia Hilker': 'Nita', 'Andy Bean': 'Romit'}\"\r\ntt0385307,\"{'Sandra Bullock': 'Gracie Hart', 'Regina King': 'Sam Fuller', 'Enrique Murciano': 'Jeff Foreman', 'William Shatner': 'Stan Fields', 'Ernie Hudson': 'FBI Asst. Director Harry McDonald', 'Heather Burns': 'Cheryl Frasier', 'Diedrich Bader': 'Joel Meyers', 'Treat Williams': 'FBI Asst. Director Walter Collins', 'Abraham Benrubi': 'Lou Steele', 'Nick Offerman': 'Karl Steele', 'Eileen Brennan': 'Carol Fields', 'Elisabeth Röhm': 'Agent Janet McKaren', 'Leslie Grossman': 'Pam', 'Lusia Strus': 'Janine', 'Molly Gottlieb': 'Priscilla'}\"\r\ntt4172430,\"{'John Krasinski': 'Jack Silva', 'James Badge Dale': \"\"Tyrone 'Rone' Woods\"\", 'Pablo Schreiber': \"\"Kris 'Tanto' Paronto\"\", 'David Denman': \"\"Dave 'Boon' Benton\"\", 'Dominic Fumusa': \"\"John 'Tig' Tiegen\"\", 'Max Martini': \"\"Mark 'Oz' Geist\"\", 'Alexia Barlier': 'Sona Jillani', 'David Costabile': 'Bob', 'Payman Maadi': 'Amahl       (as Peyman Moaadi)', 'Matt Letscher': 'Ambassador Chris Stevens', 'Toby Stephens': \"\"Glen 'Bub' Doherty\"\", 'Demetrius Grosse': 'DS Dave Ubben', 'David Giuntoli': 'DS Scott Wickland', 'Kevin Kent': 'DS Vincent', 'David Furr': 'DS Alec'}\"\r\ntt1482459,\"{'Danny DeVito': 'The Lorax       (voice)', 'Ed Helms': 'The Once-ler       (voice)', 'Zac Efron': 'Ted       (voice)', 'Taylor Swift': 'Audrey       (voice)', 'Betty White': 'Grammy Norma       (voice)', 'Rob Riggle': \"\"Mr. O'Hare       (voice)\"\", 'Jenny Slate': \"\"Ted's Mom       (voice)\"\", 'Nasim Pedrad': \"\"Once-ler's Mom       (voice)\"\", 'Joel Swetow': '1st Marketing Guy       (voice)', 'Michael Beattie': '2nd Marketing Guy       (voice)', 'Dave B. Mitchell': '1st Commercial Guy       (voice) (as Dave Mitchell)', 'Dempsey Pappion': '2nd Commercial Guy       (voice)', 'Elmarie Wendel': 'Aunt Grizelda       (voice)', 'Danny Cooksey': 'Brett /              Chet       (voice)', 'Stephen Tobolowsky': 'Uncle Ubb       (voice)'}\"\r\ntt3250590,\"{'Leslie Acoca': 'Herself - Founder, National Girls Health and Justice Institute', 'Beth Adubato': 'Herself - Professor of Criminal Justice - New York Institute of Technology', 'Brigitte Alexander': 'Herself - Director, Sexual Assault Response Team, North Central Bronx Hospital', 'Patricia Arquette': 'Herself - Actress, Activist, Executive Producer', 'Naheed Bahram': 'Herself - Program Director - Women for Afghan Women', 'Dina Bakst': 'Herself - Co-Founder and Co-President - A Better Balance, The Work and Family Legal Center', 'Lucienne Beard': 'Herself', 'Helen Benedict': \"\"Herself - Columbia University's Graduate School of Journalism, Author (as Professor Helen Benedict)\"\", 'Kim Biddle': 'Herself - Founder, Executive Director, Saving Innocence', 'Kathryn Brown': 'Herself', 'Olivia Brown': 'Herself', 'Martha Burke': 'Herself - Founder, The Center for Advancement of Public Policy       (as Dr. Martha Burke)', 'Paula Caplan': \"\"Herself - Psychologist, Associate, Harvard University's Dubois Institute\"\", 'Karen Carroll': 'Herself - Forensic Nurse, Sexual Assault Response Team', 'Cayenne': 'Himself'}\"\r\ntt2923316,\"{'Hayden Christensen': 'James Kelly', 'Adrien Brody': 'Frankie Kelly', 'Jordana Brewster': 'Emily', 'Akon': 'Sugar', 'Tory Kittles': 'Ray', 'Luis Da Silva Jr.': 'Spoonie', 'Lance E. Nichols': 'Auto Shop Boss', 'John McConnell': 'Bank Manager', 'Joe Chrest': '(Police) Captain Sullivan', 'Aaron V. Williamson': 'House', 'Rachel Bilson': 'Eyewitness', 'Laura Cayouette': 'Loan Officer', 'Carol Sutton': 'Hostage Woman', 'Elena Sanchez': 'Katie', 'Belinda Delgado': 'Stripper'}\"\r\ntt0228333,\"{'Natasha Henstridge': 'Lieutenant Melanie Ballard', 'Ice Cube': 'Desolation Williams', 'Jason Statham': 'Sgt Jericho Butler', 'Clea DuVall': 'Bashira Kincaid', 'Pam Grier': 'Commander Helena Braddock', 'Joanna Cassidy': 'Whitlock', 'Richard Cetrone': 'Big Daddy Mars', 'Rosemary Forsyth': 'Inquisitor', 'Liam Waite': 'Michael Descanso', 'Duane Davis': 'Uno', 'Lobo Sebastian': 'Dos', 'Rodney A. Grant': 'Tres', 'Peter Jason': 'McSimms', 'Wanda De Jesus': 'Akooshay', 'Doug McGrath': 'Benchley'}\"\r\ntt0071675,\"{'John P. Ryan': 'Frank Davies       (as John Ryan)', 'Sharon Farrell': 'Lenore Davies', 'Andrew Duggan': 'The Professor', 'Guy Stockwell': 'Bob Clayton', 'James Dixon': 'Lt. Perkins', 'Michael Ansara': 'The Captain', 'Robert Emhardt': 'The Executive', 'William Wellman Jr.': 'Charley', 'Shamus Locke': 'The Doctor', 'Nancy Burnett': 'Nurse       (as Mary Nancy Burnett)', 'Patrick McAllister': 'Expectant Father       (as Patrick Macallister)', 'Daniel Holzman': 'Chris', 'Diana Hale': 'Secretary', 'Gerald York': 'Expectant Father', 'Jerry Taft': 'Expectant Father'}\"\r\ntt3949660,\"{'Megan Fox': \"\"April O'Neil\"\", 'Will Arnett': 'Vernon Fenwick', 'Laura Linney': 'Chief Vincent', 'Stephen Amell': 'Casey Jones', 'Noel Fisher': 'Michelangelo', 'Jeremy Howard': 'Donatello', 'Pete Ploszek': 'Leonardo', 'Alan Ritchson': 'Raphael', 'Tyler Perry': 'Baxter Stockman', 'Brian Tee': 'Shredder', 'Stephen Farrelly': 'Rocksteady       (as Sheamus)', 'Gary Anthony Williams': 'Bebop', 'Peter Donald Badalamenti II': 'Splinter       (as Peter D. Badalementi)', 'Tony Shalhoub': 'Splinter       (voice)', 'Brad Garrett': 'Krang       (voice)'}\"\r\ntt2538778,\"{'Armand Assante': 'Mussa', 'Karlygash Mukhamedzhanova': 'Aliya', 'Cary-Hiroyuki Tagawa': 'Khazar', \"\"Peter O'Toole\"\": 'Tugboat', 'Michael Madsen': 'Mike', \"\"Tommy 'Tiny' Lister\"\": 'Louie       (as Tommy Lister)', 'Don Wilson': \"\"Mister Lo       (as Don 'The Dragon' Wilson)\"\", 'Olivier Gruner': 'Tony', 'Assan Mazhit': 'Sorrel       (as Asan Mazhit)', 'Bolo Yeung': 'Bulo', 'Kanat Abishev': 'Mr. Wong', 'Zhanelya Alikova': 'Little Aliya', 'Nurlan Altaev': 'Arman       (as Nurlan Altayev)', 'Aleksandr An': 'Swift', 'Dzhangir Arifov': 'Boris'}\"\r\ntt3911554,\"{'Kengo Hioki': 'Himself', 'Kotaro Tsukada': 'Himself', 'Yumiko Hioki': 'Herself', 'Akiteru Ito': 'Himself', 'Akihiko Naruse': 'Herself'}\"\r\ntt0106452,\"{'Terry Kinney': 'Steve Malone', 'Meg Tilly': 'Carol Malone', 'Gabrielle Anwar': 'Marti Malone', 'Reilly Murphy': 'Andy Malone', 'Billy Wirth': 'Tim Young', 'Christine Elise': 'Jenn Platt', 'R. Lee Ermey': 'General Platt', 'Kathleen Doyle': 'Mrs. Platt', 'Forest Whitaker': 'Major Collins', 'G. Elvis Phillips': 'Pete', 'Stanley Small': \"\"Platt's Aide\"\", 'Tonea Stewart': 'Teacher', 'Keith Smith': 'Soldier Gas Station', 'Winston E. Grant': 'Gas Attendant', 'Phil Neilson': 'MP Gate Captain'}\"\r\ntt3700392,\"{'Anuk Steffen': 'Heidi', 'Anna Schinz': 'Dete', 'Lilian Naef': 'Barbel', 'Bruno Ganz': 'Alpöhi', 'Peter Jecklin': 'Pfarrer', 'Christoph Gaugler': 'Senner', 'Quirin Agrippi': 'Geissenpeter', 'Rebecca Indermaur': 'Geissenpeterin', 'Monica Gubser': 'Grossmutter', 'Arthur Bühler': 'Dörfler', 'Marietta Jemmi': 'Frau im Dorf', 'Peter Lohmeyer': 'Sebastian', 'Katharina Schüttler': 'Fräulein Rottenmeier', 'Isabelle Ottmann': 'Klara', 'Jella Haase': 'Tinette'}\"\r\ntt0096486,\"{'Yahoo Serious': 'Albert Einstein', 'Odile Le Clezio': 'Marie Curie', 'John Howard': 'Preston Preston', 'Peewee Wilson': 'Mr. Einstein', 'Su Cruickshank': 'Mrs. Einstein', 'Lulu Pinkus': 'The Blonde', 'Kaarin Fairfax': 'The Brunette', 'Michael Lake': 'Manager', 'Jonathan Coleman': 'Wolfgang Bavarian', 'Johnny McCall': 'Rudy Bavarian /              Tasmanian Devil', 'Michael Blaxland': 'Desk Clerk', 'Ray Fogo': 'Bright Clerk', 'Terry Pead': 'Inventor Couple', 'Alice Pead': 'Inventor Couple', 'Frank McDonald': 'Nihilist'}\"\r\ntt2403021,\"{'Lorenza Izzo': 'Justine', 'Ariel Levy': 'Alejandro', 'Daryl Sabara': 'Lars', 'Kirby Bliss Blanton': 'Amy', 'Magda Apanowicz': 'Samantha', 'Sky Ferreira': 'Kaycee', 'Nicolás Martínez': 'Daniel', 'Aaron Burns': 'Jonah', 'Ignacia Allamand': 'Kara', 'Ramón Llao': 'The Bald Headhunter', 'Richard Burgi': 'Charles', 'Matías López': 'Carlos', 'Antonieta Pari': 'The Village Elder', 'Tatiana Panaifo': 'Village Girl', 'Percy Chumbe': 'Guard Leader'}\"\r\ntt0191636,\"{'Juliette Binoche': 'Pauline (Madame La)', 'Daniel Auteuil': 'Jean (The Captain)', 'Emir Kusturica': 'Ariel Neel Auguste', 'Michel Duchaussoy': 'The Governor', 'Philippe Magnan': 'President Venot', 'Christian Charmetant': 'Supply and Secretariat Officer', 'Philippe du Janerand': 'Customs Officer', 'Maurice Chevit': \"\"The Governor's Father\"\", 'Catherine Lascault': 'La Malvilain', 'Ghyslain Tremblay': 'Monsieur Chevassus', 'Reynald Bouchard': 'Louis Ollivier', 'Marc Béland': 'Soldier Loïc', 'Yves Jacques': 'The Rear Admiral', 'Dominique Quesnel': 'The Proprietor', 'Anne-Marie Philipe': \"\"The Governor's Wife\"\"}\"\r\ntt3503840,\"{'Steven Seagal': 'John Alexander', 'Byron Mann': 'Chi', 'Howard Dell': 'Van Horn', 'Adina Stetcu': 'Nadia', 'Vinnie Jones': 'The Boss', 'Josh Barnett': 'Colt', 'Maria Bata': 'Diana', 'Cosmin Dominte': 'Sergei', 'Sergiu Costache': 'The Afghani', 'George Remes': 'Victor', 'Sabina Branduse': \"\"John's Wife\"\", 'Lavinia Geambasu': 'Working Girl', 'Massimo Dobrovic': 'Handler', 'Claudiu Bleont': \"\"Working Girl's John\"\", 'Andreea Afloarei': 'Receptionist'}\"\r\ntt2113075,\"{'Skylan Brooks': 'Mister', 'Ethan Dizon': 'Pete', 'Jennifer Hudson': 'Mom Gloria', 'Adewale Akinnuoye-Agbaje': 'Sergeant Pike', 'Jordin Sparks Thomas': 'Alice       (as Jordin Sparks)', 'Julito McCullum': 'Dip Stick', 'Anthony Mackie': 'Kris', 'Jeffrey Wright': 'Henry', 'Kenneth Maharaj': 'Store Owner       (as Ken Maharaj)', 'Nikkieli DeMone': 'Officer Redd', 'Joseph Adams': 'Mr. Carey', 'Kate Buddeke': 'Neighbor Lady', 'Joey Auzenne': 'Officer Duckworth', 'Adriane Lenox': 'Group Home Lady', 'Kate Geller': 'Assistant'}\"\r\ntt1353997,\"{'Marc Singer': 'Maxim', 'Brian Thompson': 'Kirill', 'Jason Connery': 'Gurion', 'Daniel Bonjour': 'Arkadi', 'Jennifer Dorogi': 'Katya', 'Russell Reynolds': 'Anson       (as G. Rusell Reynolds)', 'Jack Goldenberg': 'Frank', 'Richard Lund': 'King Agmar', 'Jonathan Nation': 'Rachek', 'Nihilist Gelo': 'Svetka       (as J. Scott)', 'Mona Lee Goss': \"\"Maxim's Mother\"\", 'Elvis Naumovski': 'General Tolfar', 'Jay Beyers': 'Tolfar Thug', 'Aleta Mackey': 'Tolfar Thug', 'Aoni Jackson': 'Tolfar Thug'}\"\r\ntt1999141,\"{'Dylan Jones': 'John the Brave', 'Cecily Fay': 'Aerona', 'Feth Greenwood': 'Eldred the Strong', 'Shinead Byrne': 'Neem', 'Tony Sams': 'Sigmund', 'Simon Lloyd-Roberts': 'Maldwyn', 'Charles Barrett': 'Harad', 'Christian Howard': 'Calvain', 'Gary Crosbie': 'Gerald', 'Ambrose Flemming': 'Anthony', 'Mark Richard Hayes': 'Janzoon       (as Mark Hayes)', 'Mike Lockley': 'Gruffud', 'William Huw': 'Gronwy', 'Kathy Francis': \"\"The Witch of Caer'lo\"\", 'Iona Thonger': 'Forest Queen'}\"\r\ntt3677466,\"{'Kelly Hu': 'Dr. Gordon', 'Anthony Marks': 'Captain James Wheeler', 'Robert Picardo': 'General Magowan', 'Lane Townsend': 'Chris Meher', 'Morgan West': 'Rick Sullivan', 'Mitchell Shawn': 'Colonel Mac       (as Mitchell Carpenter)', 'Nick Stellate': 'Major Blake', 'Nicholas Alexander': 'Sgt. Clayton', 'Sarah Karijan': 'Control', 'Joseph Price': 'Casey', 'Matt Mercer': 'Johnny Hansen', 'Laura Alexandra Ramos': 'Cabrera', 'Jennifer Marshall': 'Lieutenant Southard', 'Taylor Coliee': 'Lindsay', 'Patrick Lazzara': 'Fitzpatrick'}\"\r\ntt0073260,\"{'Doug McClure': 'Bowen Tyler', 'John McEnery': 'Captain Von Schoenvorts', 'Susan Penhaligon': 'Lisa Clayton', 'Keith Barron': 'Bradley', 'Anthony Ainley': 'Dietz', 'Godfrey James': 'Borg', 'Bobby Parr': 'Ahm', 'Declan Mulholland': 'Olson', 'Colin Farrell': 'Whiteley', 'Ben Howard': 'Benson', 'Roy Holder': 'Plesser', 'Andrew McCulloch': 'Sinclair', 'Ron Pember': 'Jones', 'Grahame Mallard': 'Deusett', 'Andrew Lodge': 'Reuther'}\"\r\ntt2175927,\"{'Mario Van Peebles': 'Captain James Winston', 'Carl Weathers': 'General Hugh McKraken', 'Johanna Watts': 'Lt. Caroline Bradley', 'Nikki McCauley': 'Dr. Julia Flynn', 'Elijah Chester': 'Secretary Of Defense Alter', 'Sean Patrick Smith': '1st Officer Bryant', 'Devin McGee': 'Lt. Cmdr. Juarez', 'Chris Hayes': 'Lt. Anders', 'April Ezell Wilson': 'Dr. Erica Billman', 'David Polinsky': 'Admiral Hollis', 'Gray Hawks': 'Communications Officer Wexler', 'Robin Robertson': 'Major       (as Robin Dale Robertson)', 'Josh Cohen': 'Weapons Officer Clancy', 'Aaron Griswold': 'Munitions Team Leader', 'Mandela Van Peebles': 'Lookout Dunbar'}\"\r\ntt1219671,\"{'Sean Cameron Michael': 'Allan Quatermain', 'Christopher Adamson': 'Anisley Hartford', 'Natalie Stone': 'Lady Anna Heresford', 'Daniel Bonjour': 'Sir Henry Curtis', 'Wittly Jourdan': 'Umbopa', 'Nick Everhart': 'Neville Heresford', 'Thomas Fakude': 'King Twala', 'Mzuza': 'Gagool', 'Phiwayinkosi Gumede': 'General Infadoos', 'Mduduz Nxumalo': 'Scragga', 'Mfafa Msimango': 'Bhekizizwe', 'Xolisile Khanyile': 'Nonkululeko', 'Nomkhosi Mthiyane': 'Nkosazana', 'Mpume Mthiyane': 'Sizwe', 'Kende Gamede': 'Mhambi'}\"\r\ntt1056026,\"{'Lorenzo Lamas': 'Lieutenant Michael Arronax', 'Sean Lawlor': 'Captain Nemo', 'Natalie Stone': 'Lieutenant Commander Lucille Conciel', 'Kim Little': 'Specialist Donna Sustin', 'Victor J. Springer': 'Captain Farragut', 'Emilio Roso': 'Ramirez       (as Emilio Rosso)', 'Michael Tower': 'Captain Anderson', 'Damien Puckler': 'Blackwell', 'Declan Joyce': 'Cooper', 'Rob Filson': 'Gunner', 'John Tessier': 'Canner', 'Kenn Jenkins': 'First Officer to Nemo', 'Spencer Jones': 'Navigator Ruskin', 'Dorothy Drury': 'First Officer Clarke', 'Dan Halladay': 'First Officer Means'}\"\r\ntt1136683,\"{'Michael Gross': 'Dr. Frank Reno', 'Christopher Atkins': 'Erik Reno', 'Greg Evigan': 'LCDR Ellis Dorn', 'Marie Westbrook': 'Ruth', 'Phil Burke': 'Stubbs', 'Wendy Carter': 'Betty', 'Geoff Meed': 'CPO Lopes', 'Stephen Blackehart': 'Lt. Robert Peet', 'Dean Kreyling': \"\"Chief 'Bud' Stark\"\", 'Daniel Ponsky': 'Billy Jones', 'Nick McCallum': 'Burke', 'Dustin Harnish': 'Young Frank Reno', 'Jeff Bornstein': 'LAPD Pilot', 'Eric Spudic': 'Police Co-Pilot', 'Aaron Stigger': 'Manriquez'}\"\r\ntt1075746,\"{'Mark Dacascos': 'Renchard', 'Geoff Meed': 'Vincent', 'Jennifer Lee Wiggins': 'Brianna', 'Ryan Lloyd': 'Mike', 'Joshua Schlegel': \"\"Renchard's Son       (as Joshua William Schlegel)\"\", 'Gregory Paul Smith': 'Various Zombies', 'Matthew Bolton': 'Tunnel Zombie', 'Myles McLane': 'Mutant Zombie', 'Frank Forbes': 'Cop Zombie', 'Afton Forbes': 'Girl Zombie', 'Hayden Forbes': 'Little Boy Zombie', 'Charles Peeke Jr.': 'Big Zombie', 'Wil Braithwaite': 'Various Zombies', 'Marlon Nash': 'Various Zombies', 'Bob Landau': 'Various Zombies'}\"\r\ntt1531911,\"{'Antonio Sabato Jr.': 'John Carter', 'Traci Lords': 'Dejah Thoris', 'Matt Lasky': 'Tars Tarkas', 'Chacko Vadaketh': 'Sarka /              Sab Than', 'Mitchell Gordon': 'Tal Hajus', 'Noelle Perris': 'Sola', 'Matt Lagan': 'Kantos Kan', 'Kimberly Ables Jindra': 'Saroh Kan', 'Tomas Boykin': 'Cornwell Sams', 'Rob Ullett': 'Hudson', 'Dean Kreyling': 'Atol Nard', 'Mohammad Kavianpour': 'Hosan', 'Jay Beyers': 'Thark Gordack', 'Ali Tagi Alexander': 'Jamal', 'Jonathan Footman': 'Thark'}\"\r\ntt2756412,\"{'Adrian Paul': 'Lt. Frank Baum', 'Richard Grieco': 'Capt. Sam Crowe', 'Bali Rodriguez': 'Lea', 'Gray Hawks': 'TIM', 'Jay Cardell': 'Sgt. Peebles', 'Daniel Ross Mix': 'Colin', 'Michelle Jones': 'Hannah', 'Erika Hidalgo': 'Victoria', 'Jessica Russo': 'Cassie', 'Martin Adebisi': 'Young Buck       (as Marin Esq.)', 'Winston Washington': 'Honda', 'Steve Bencich': 'Jason', 'Erik Werther': 'Arlo', 'Luna Lunerisima': 'Humanoid Queen', 'Cesar Alvarado': 'Humanoid Advisor'}\"\r\ntt2081255,\"{'Eliza Bennett': 'Snow White', 'Jane March': 'Queen Gwendolyn', 'Jamie Thomas King': 'Prince Alexander', 'Otto Jankovich': 'Hugh the Advisor', 'Ben Maddox': 'Huntsman Beasley', 'Sebastian Wimmer': 'Runt', 'Alan Burgon': 'Orlando', 'Frauke Steiner': 'Mara', 'Sabine Kranzelbinder': 'Isabella', 'Eric Lomas': 'Cyrus', 'Klara Steinhauser': 'Allura', 'Eberhard Wagner': 'The King', 'Bernhard Rusch': 'Wally the Stable Boy       (as Bernhard Georg Rusch)', 'Lukas Johne': 'Dungeon Master', 'Maciej Salamon': 'Captain       (as Mac Salamon)'}\"\r\ntt1183733,\"{'C. Thomas Howell': 'George Herbert', 'Christopher Reid': 'Pete', 'Kim Little': 'Victoria Reed', 'Jonathan Levit': 'Gorman', 'Danna Brady': 'Sissy', 'Fred Griffith': 'Major Kramer', 'Darren Dalton': 'Shackleford', 'David Regal': 'Finius', 'Leslie Gomez': 'Charleze', 'Zack Beseda': 'Squid killer', 'Jason S. Gray': 'Stingray', 'Jonathan Nation': 'Stram', 'Murray SawChuck': 'Tobias', 'Rebecca Baril': 'Selma', 'Liam Howell': 'Liam'}\"\r\ntt1846444,\"{'Patrick Labyorteaux': 'Bill Hart', 'Julie McCullough': 'Teri Hart', 'Katie Wilson': 'Julia Hart', 'Nick Afanasiev': 'Nelson Hart', 'Kyle Morris': 'Logan', 'Cedric Scott': 'Senator Hopper', 'Chacko Vadaketh': 'Divya', 'Ted Monte': 'Gary', 'David Light': 'Roy Larkings', 'Gerald Webb': 'Gerald', 'Sean Cory': 'Lt. Col. Sinor', 'Rae Latt': 'Airport Security Officer', 'Bryan Hanna': 'AWACS Pilot', 'Wesley Waite': 'Wesley', 'Darren Anthony Thomas': 'Cop       (as Darren Thomas)'}\"\r\ntt1325753,\"{'Fred Tatasciore': 'Hulk       (voice)', 'Matthew Wolf': 'Thor       (voice) (as Matt Wolf)', 'Graham McTavish': 'Loki       (voice)', 'Grey Griffin': 'Sif       (voice) (as Grey DeLisle)', 'Kari Wahlgren': 'Amora       (voice)', 'Bryce Johnson': 'Bruce Banner       (voice)', 'Janyse Jaud': 'Hela /              Lady Deathstrike       (voice)', 'Jay Brazeau': 'Volstagg       (voice)', 'Jonathan Holmes': 'Fandral       (voice)', 'Paul Dobson': 'Hogun       (voice)', 'Michael Adamthwaite': 'Balder       (voice)', 'French Tickner': 'Odin       (voice)', 'Nicole Oliver': 'Betty Ross /              Valkyrie       (voice)', 'Qayam Devji': 'Bruce Junior       (voice)', 'Scott McNeil': 'Additional Voices       (voice)'}\"\r\ntt1694508,\"{'Barry Bostwick': 'Captain Ahab', \"\"Renée O'Connor\"\": 'Dr. Michelle Herman', 'Matt Lagan': \"\"Capt. John 'Boomer' Enderby\"\", 'Adam Grimes': 'Lt. Commander Starbuck', 'Dean Kreyling': 'Admiral De Deers', 'Jay Gillespie': 'Young Ahab', 'Jay Beyers': 'Young Boomer', 'Carl Watts': 'Captain Pollard', 'Thom Rachford': 'Captan Chase', 'Carlos Antonio': 'Captain Macey', 'Brian Hall': 'Stubb', 'Bart Baggett': 'Lt. Flask', 'Michael Teh': 'Queequeg', 'Derrick Scott': 'Pip       (as Derrick A. Scott)', 'Durant': 'Doughby       (as Durant Fowler)'}\"\r\ntt0942903,\"{'Ben Browder': 'Lt. Col. Cameron Mitchell', 'Amanda Tapping': 'Lt. Col. Samantha Carter', 'Christopher Judge': \"\"Teal'c\"\", 'Michael Shanks': 'Dr. Daniel Jackson', 'Beau Bridges': 'Maj. Gen. Henry Landry', 'Claudia Black': 'Vala Mal Doran', 'Currie Graham': 'James Marrick', 'Morena Baccarin': 'Adria', 'Tim Guinee': 'Tomin', 'Julian Sands': 'Doci', 'Sarah Strange': 'Morgan Le Fay /              Ganos Lal', 'Michael Beach': 'Col. Abe Ellis', 'Gary Jones': 'Chief Master Sgt. Walter Harriman', 'Martin Christopher': 'Maj. Kevin Marks', 'Chris Gauthier': 'Hertis       (as Christopher Gauthier)'}\"\r\ntt0929629,\"{'Ben Browder': 'Lt. Col. Cameron Mitchell /              Captain of the Achilles', 'Amanda Tapping': 'Lt. Col. Samantha Carter', 'Christopher Judge': \"\"Teal'c\"\", 'Michael Shanks': 'Daniel Jackson', 'Beau Bridges': \"\"Maj. Gen. Henry 'Hank' Landry\"\", 'Claudia Black': 'Vala Mal Doran /              Qetesh', 'Richard Dean Anderson': \"\"General Jonathan 'Jack' O'Neill\"\", 'William Devane': 'President Hayes', 'Cliff Simon': \"\"Ba'al\"\", 'Don S. Davis': 'Maj. Gen. George Hammond', 'Steve Bacic': 'Camulus', 'Gary Jones': 'Chief Master Sgt. Walter Harriman', 'Jacqueline Samuda': 'Nirrti', 'Peter Williams': 'Apophis', 'Darcy Cadman': 'Russian Officer'}\"\r\ntt0115985,\"{'Rutger Hauer': 'A.T.', 'Josh Charles': 'Joe Talbot', 'Stuart Wilson': 'Ferris', 'Andrea Roth': 'Laura', 'Perry Anzilotti': 'Rebo', 'Jack Black': 'Steve', 'Richard McGregor': 'Stu', 'Ellen Geer': \"\"Joe's Mom\"\", 'Beverly Johnson': 'The Queen', 'Michael Stadvec': 'Cop #1', 'Michael Wiseman': 'Cop #2', 'Shani Rigsbee': 'The Dancer', 'Norita Golanos': 'Receptionist       (as Norita Galanos)', 'Tony Ervolina': \"\"Joe's Father\"\"}\"\r\ntt1479847,\"{'Brian Krause': 'Kelvin', 'Heather McComb': 'Laura', 'Najarra Townsend': 'Tina', 'Allura Lee': 'Dr. Kwang Ye', 'Alan Poe': 'Dzerzhinsky', 'Londale Theus': 'Captain Henreaux', 'Stephen Schneider': 'Captain James Moto', 'Rob Ullett': 'NASA Official', 'Dana Tomasko': 'NASA Technician', 'Rick L. Dean': 'NASA Technician       (as Rick Dean)', 'Pete Angelikus': 'NASA Technician', 'William Joseph Hutchins': 'NASA Technician', 'Doug Newman': 'NASA Technician', 'Jeff Crabtree': 'NASA Technician', 'Mays Jackson': 'NASA Technician'}\"\r\ntt1294699,\"{'Simon Lloyd-Roberts': 'Merlin', 'Joseph Stacey': 'Vendiger', 'Dylan Jones': 'Uther', 'Hefin Wyn': 'King Vortigen', 'Jürgen Prochnow': 'The Mage', 'William Huw': 'Torm', 'Gary Twomey': 'King Eringar', 'Carys Eleri': 'Lady Viviane', 'Nia Ann': 'Lady Nimue', 'Iona Thonger': 'Ingraine', 'Dylan Thomas': 'Ambrosis', 'Iago Patrick McGuire': 'Hengest', 'Dennis Carr': 'Kelvern', 'Peter Hind': 'Arvel', 'Iwan Benneyworth': 'Beneforth       (as Iwan James Benneyworth)'}\"\r\ntt2456594,\"{'Bai Ling': 'Laylan', 'Sun Korng': 'Goben', 'Srogn': 'Tak Tek', 'Khom Lyly': 'Omi', 'Christopher Judge': 'Amthar', 'Jerry Earr': 'Varm', 'Armani Nguon': 'Pesh', 'Antonis Greco': 'King Korm', 'Tom Eurt': 'Suta', 'Kreb': 'Koto', 'Savorne Horm': 'Chi-Cha', 'Neng Houy': 'Saytay', 'Hak Hoy': 'Java Picker', 'Hun Sophy': 'Gahargath', 'Ka': 'Balgog'}\"\r\ntt1758570,\"{'Nia Peeples': 'Capt. Karla Smaith', 'Kel Mitchell': 'Lt. Tyler Laughlin', 'Dylan Vox': 'Capt. Pete Rodgers', 'Theresa June-Tao': 'Lt. Solano', 'Gerald Webb': 'Lt. Jeffery Newman', 'Edward DeRuiter': 'Capt. Arnstead', 'Darin Cooper': 'Capt. Hadron', 'Robert Pike Daniel': 'Cmdr. Wakes', 'Tim Abell': 'Col. Macon', 'Michele Boyd': 'Pilot #1 - Lt. Jean Hendricks', 'Stephen Blackehart': 'Pilot #2 - Lt. Kirkman', \"\"Lorry O'Toole\"\": 'Pilot #3', 'Scot Nery': 'Kaor', 'Wayne Santoni': 'MJ12 Sentry #1', 'Natalia Fedner': 'MJ12 Sentry #2'}\"\r\ntt1261046,\"{'Violent J': 'Violent J', 'Shaggy 2 Dope': 'Shaggy 2 Dope', 'Scott Levy': 'Reaper       (as Raven)', 'Jason Ellefson': 'Fred the Hammer', 'Robert Pike Daniel': 'Governor Black', 'Stephen Blackehart': 'Harvey Winkler', 'Dean Kreyling': 'Dr. Shank', 'Anya Benton': 'Whore of Babylon', 'Caroline Attwood': 'Jennifer Ramirez', 'Jennifer Keith': 'Double Dee Destruction       (as Jennifer Elizabeth Keith)', 'Teri Corcoran': 'Queen B       (as Therese)', 'Krystle Connor': 'Candy Moore', 'Mark Hengst': 'Warden Junior', 'Dustin Fitzsimons': 'FX', 'Damien Puckler': 'Metal Machine Man'}\"\r\ntt2130142,\"{'Dominique Swain': 'Dr. Paige Morgan', 'Jake Busey': 'Dr. Adrian Riestad', 'Joshua Michael Allen': 'Dr. Lucas Moss       (as Josh Allen)', 'Christopher Karl Johnson': 'Dr. Josef Mengele       (as Christopher K. Johnson)', 'James Maxwell Young': 'Adolf Hitler       (as James Maxwell)', 'Lilan Bowden': 'May Yun', 'Marlene Okner': 'Silje Lagesen', 'Adam Burch': 'Dr. Mark Maynard', 'Maria Pallas': 'Angela Magliarossa', 'Abderrahim Halaimia': 'Rahul Jumani', 'Trevor Kuhn': 'Brian Moak', 'Andre Tenerelli': 'Aaron Blechman', 'Chris Sanders': 'Lieutenant       (as Cristofer Sanders)', 'Keith Allan Wilber': 'Sergeant', 'Kevin Allen': 'Soldier'}\"\r\ntt2740710,\"{'Graham Greene': 'General Hadley', \"\"Anthony 'Treach' Criss\"\": 'Lieutenant Jim Rushing       (as Treach)', 'David Chokachi': 'Red', 'Jackie Moore': 'Tracey', 'Nicole Alexandra Shipley': 'Stone', 'Larry Gamell Jr.': 'Smith       (as Lawrence Gamell Jr.)', 'Steven Marlow': 'Sheldon', 'Jinhi Evans': 'Quinn', 'Sara Bond': 'Jennifer', 'Melissa Foster': 'Ensign', 'William Shannon Williams': 'Dagger       (as Shannon Williams)', 'Marquez Linder': 'MP       (as Marquez Kinder)', 'Conner Bryan': 'Joey', 'Nicole Dickson': 'Margaret', 'Demetrius Stear': 'Lieutenant Wexler'}\"\r\ntt4296026,\"{'Casper Van Dien': 'Rumpelstiltskin', 'Lauren Parkinson': 'Snow White', 'Lou Ferrigno': 'Iron John', 'Milynn Sarley': 'Cinderella', 'Marah Fairclough': 'Sleeping Beauty', 'Rileah Vanderbilt': 'Rapunzel', 'Elizabeth Peterson': 'Red', 'Kimo Leopoldo': 'The Wolf', 'Andrew E. Tilles': 'Tucker', 'Justine Herron': 'Jessica', 'Henry Foster Brown': 'Officer LaGuardia       (as Henry Brown)', 'Jonathan Medina': 'Jack', 'Jonathan Nation': 'Officer Biggs', 'Daniel Nemes': 'Officer Ernst', 'Andrew Pinon': 'Officer Lyau'}\"\r\ntt4685096,\"{'Karrueche Tran': 'Maggie', 'Jason Simmons': 'Dr. Nelson       (as Jaason Simmons)', 'Rob Van Dam': 'Stanley', 'Danny Trejo': 'Max Burns', 'Jena Sims': 'Dr. Laura Thomas', 'Brad Mills': 'Greg', 'Scott Thomas Reynolds': 'Ryan       (as Scott Reynolds)', 'Rico Ball': 'Omar', 'Dawn Hamil': 'Alison', 'Bob Constance': 'Brad', 'James Poule': 'Brian', 'Steve Norris': 'Steve       (as Stephen Norris)', 'Larry Gamell Jr.': 'Dr. Leonard', 'Mark Nager': 'Seth', 'Preston Simmons': 'Zach'}\"\r\ntt2043757,\"{'Carmen Electra': 'Anne Babish', \"\"Charlie O'Connell\"\": 'Prof. Babish', 'Brooke Hogan': 'Kate', 'Christina Bach': 'Dana       (as Christina Bach Norman)', 'Gerald Webb': 'Han', 'David Gallegos': 'Paul', 'Geoff Ward': 'Cole', 'Mercedes Young': 'Liza       (as Mercedes C. Young)', 'Shannan Stewart': 'Lyndsey', 'Tihirah Taliaferro': 'Michelle', 'Michael Dicarluccio': 'Ethan', 'Lauren Vera': 'Jamie', 'Marckenson Charles': 'Ryan', 'Ashley Bissing': 'Kristen', 'Corinne Nobili': 'Kirsten'}\"\r\ntt0085750,\"{'Dennis Quaid': 'Mike Brody', 'Bess Armstrong': 'Kathryn Morgan', 'Simon MacCorkindale': 'Philip FitzRoyce', 'Louis Gossett Jr.': 'Calvin Bouchard', 'John Putch': 'Sean Brody', 'Lea Thompson': 'Kelly Ann Bukowski', 'P.H. Moriarty': 'Jack Tate', 'Dan Blasko': 'Dan', 'Liz Morris': 'Liz', 'Lisa Maurer': 'Ethel', 'Harry Grant': 'Shelby Overman', 'Andy Hansen': 'Silver Bullet', 'P.T. Horn': 'Tunnel Guide', 'John Edson': 'Bob Woodbury       (as John Edson Jr.)', 'Kaye Stevens': 'Mrs. Kallender'}\"\r\ntt1094162,\"{'William Katt': 'Lee Cussler', 'Dedee Pfeiffer': 'Hilary', 'Wittly Jourdan': 'Tammy', 'Randy Mulkey': 'Valentine', 'Jennifer Couch': 'Freckles', 'Jason S. Gray': 'Garrison', 'John Murphy Jr.': 'Figgus', 'Kevin Kazakoff': 'Two Fingers', 'Philip Bak': 'Javier', 'Josh Tessier': 'Styles', 'Matthew Bolton': 'Marty', 'Collin Brock': 'Sheriff Joel Armstrong', 'Darbi Gwynn': 'Marcy', 'Aaron Council': 'The Alien', 'Rob Filson': 'The Hunter'}\"\r\ntt1586261,\"{'Erin Marie Hogan': 'Samantha Finley       (uncredited)', 'Fia Perera': 'Ellen Finley       (uncredited)', 'Norman Saleet': 'Edgar Lauren       (uncredited)', 'Shane Van Dyke': 'Thomas Finley       (uncredited)'}\"\r\ntt1640571,\"{'Shane Van Dyke': 'Hayden Walsh', 'Marie Westbrook': 'Amy Maine', 'Bruce Davison': 'James Maine', 'Brooke Burns': 'Kim Patterson', 'Michelle Glavan': 'Kelly Wade', 'Carey Van Dyke': 'Elmer Coolidge', 'D.C. Douglas': 'Captain Howard', 'Dylan Vox': 'Dwayne Stevens', 'Wittly Jourdan': 'Elijia Stacks', 'Myles Cranford': 'Admiral Hadley', 'Josh Roman': 'Elliot Snipes', 'Cameron Gordon': 'Eric', 'Michael Gaglio': 'Daniels', 'Kendra Waldman': 'Madeline Kay       (as Kendra Sue Waldman)', 'Matt Lagan': 'Commander Grey'}\"\r\ntt0974959,\"{'John White': 'Erik Stifler', 'Christopher McDonald': 'Mr. Stifler', 'Jake Siegel': \"\"Mike 'Cooze' Coozeman\"\", 'Lexie Galante': 'Hot Girl #1       (as Alexandria Galante)', 'Meghan Heffern': 'Ashley', 'Nick Nicotera': 'Bobby       (as Nic Nac)', 'Christine Barger': 'Margie', 'Steve Talley': 'Dwight Stifler', 'Italia Ricci': 'Laura Johnson', 'Moshana Halbert': 'Sara Coleman', 'Sarah Power': 'Denise', 'Dan Petronijevic': 'Bull       (as Daniel Petronijevic)', 'Vas Saranga': 'Bandhu       (as Vasanth Saranga)', 'Joe Eigo': 'Dexter', 'Tyrone Savage': 'Edgar'}\"\r\ntt1653690,\"{'Tony Jaa': 'Tien', 'Primorata Dejudom': 'Pim       (as Primrata Det-Udom)', 'Dan Chupong': 'Bhuti Sangkha       (as Chupong Chungpruk)', 'Nirut Sirichanya': 'Master Bua', 'Petchtai Wongkamlao': 'Mhen       (as Phetthai Wongkhamlao)', 'Sarunyu Wongkrachang': 'Rat-Cha-Sei-Na       (as Sarunyoo Wongkrachang)', 'Sorapong Chatree': 'Chernung', 'Chumphorn Thepphithak': 'Uncle Mao       (as Chumporn Theppituk)', 'Philip Hersh': 'Additional Voices       (voice)'}\"\r\ntt0843873,\"{'A.J. Castro': 'Brujo       (as Alby Castro)', 'Julia Ruiz': 'Alma', 'Giovanni Bejarano': 'Miguel', 'Al Galvez': 'Julio', 'Amelia Jackson-Gray': 'Crystal', 'Shannon Gayle Hurd': 'Summer       (as Shannon Gayle)', 'Stephen A.F. Day': 'Conductor', 'Isaac Wade': 'Martin', 'Carolyn Meyer': 'Klara', 'Lola Forsberg': 'Lani', 'Madeleine Falk': 'Nancy', 'Derek Osedach': 'Mitch', 'Jay Costelo': 'Juan', 'Jason S. Gray': 'Chico', 'Sean Durrie': 'Dickie'}\"\r\ntt0072067,\"{'Jo Ann Harris': 'Linda', 'Peter Brown': 'Jack', 'Jennifer Lee Pryor': 'Nancy       (as Jennifer Lee)', 'Lisa Moore': 'Karen', 'Connie Strickland': 'Teresa', 'Patricia Estrin': 'Angie', 'Lada Edmund Jr.': 'Tiny', 'Tony Young': 'Bud', 'Steve Kanaly': 'Tom', 'Ross Elliott': 'Sgt. Long       (as Ross Elliot)', 'John Pickard': 'Dr. Schetman', 'Ninette Bravo': 'Joyce', 'Stanley Adams': 'Bernie /              Foul Mouth', 'Joan McCall': 'Gloria', 'Anneka Di Lorenzo': 'Chris       (as Anneka DeLorrenzo)'}\"\r\ntt1376460,\"{'Bruce Boxleitner': 'Officer Hadley Ryan', 'Jennifer Rubin': 'Dr. Jo Summers', 'Shane Van Dyke': 'Jake Van Ryberg', 'Alana DiMaria': 'Madison Ryan', 'Russ Kingston': 'Stan Weston', 'Silvy Kas': 'Officer Stevens', 'Jack Goldenberg': 'Sergeant Monroe', 'Debra Harrison-Lowe': 'Mary Jo', 'Amy Van Horne': 'Liz', 'Benjamin W. Smith': 'Guard', \"\"Vana O'Brien\"\": 'Grandma', 'Jay Beyers': 'Rocker Dude', 'Jason Yorrick': 'Drake', 'Londale Theus': 'Mayor Ethan Holt', 'Iona Thonger': 'Dr. Collins'}\"\r\ntt0960835,\"{'Matthew Wolf': 'Warren Mitchell', 'Amy Weber': 'Karina Nadir', 'Shaley Scott': 'Xandria Lux', 'Eliza Swenson': 'General Van Ryberg', 'Griff Furst': 'Itchy', 'Michael Tower': 'Dr. Voloslov Alextzavich', 'Sarah Hall': 'Blair', 'Erin Evans': 'Suzy       (as Erin Sullivan)', 'Noel Thurman': 'The Chairman', 'Troy Thomas': 'Clinton', 'Dennis Kinard': 'Jackson', 'Jason S. Gray': 'Otto', 'Elissa Dowling': 'Dr. Taddish', 'Jessica Bork': 'Bowers', 'Thomas Downey': 'Blackthorn'}\"\r\ntt1270792,\"{'Chris Chatman': 'Zachary', 'Candise Lakota': 'Savannah', 'Krystle Connor': 'Aundrea', 'Robert Acinapura': 'Miles', 'Amy Ganser': 'Margaret', 'Millena Gay': 'Anita', 'Dustin Fitzsimons': 'Charlie', 'Cliff Tan': 'Trevor       (as Hitcliff Leigh Tan)', 'Mark Hengst': 'Pastor Joe', 'Rae Silva': 'Aunt Janet', 'Kesha Ealy': 'Mrs. Howell', 'Shane Carther Thomas': 'Jake', 'Debra Lynn Hull': 'Mrs. Stewart', 'Justin Spanko': 'Dad - Robert Ryan', 'Daniel J. Roberts': 'Mr. Crane'}\"\r\ntt1705773,\"{'Gary Stretch': 'Nigel Putnam', 'Jaleel White': 'Dr. Terry McCormick', 'Sarah Lieving': 'Agent Hutchinson', 'Robert Picardo': 'Admiral Calvin', 'Gerald Webb': 'Jean', 'Dylan Vox': 'CWO Butowski', 'Hannah Cowley': 'Legatt', 'Steve Mason': 'Investigator', 'Robert R. Shafer': 'Charlie Ross       (as Bobby Ray Shafer)', 'Nicola Lambo': 'Corrine', 'Michael Gaglio': 'Captain Smalls       (as Mike Gaglio)', 'Sean Cory': 'Moise', 'Tarnue Massaquoi': 'Claude', 'Bechir Sylvain': 'Badawi', 'Anica Barbosa': 'Bartender'}\"\r\ntt3063516,\"{'Johnny Knoxville': 'Irving Zisman', 'Jackson Nicoll': 'Billy', 'Gregorio': 'Chuck       (as Greg Harris)', 'Georgina Cates': 'Kimmie', 'Kamber Hejlik': 'Doctor', 'Jill Killington': 'Pageant Reporter       (as Jill Kill)', 'Madison Davis': 'Juggalo Girl', 'George Faughnan': 'Juggalo Guy', 'Grasie Mercedes': 'Hostess', 'Marilynn Allain': 'Receptionist', 'Jack Polick': 'Funeral Worker', 'Spike Jonze': 'Gloria', 'Catherine Keener': 'Ellie', 'Marlon Davis': 'Himself', 'Quintin Duncan': 'Himself'}\"\r\ntt0110989,\"{'Macaulay Culkin': 'Richie Rich', 'John Larroquette': 'Lawrence Van Dough', 'Edward Herrmann': 'Richard Rich', 'Christine Ebersole': 'Regina Rich', 'Jonathan Hyde': 'Herbert Arthur Runcible Cadbury', 'Michael McShane': 'Professor Keenbean', 'Chelcie Ross': 'Ferguson', 'Mariangela Pino': 'Diane Pazinski', 'Stephi Lineburg': 'Gloria Pazinski', 'Michael Maccarone': 'Tony', 'Joel Robinson': 'Omar', 'Jonathan Hilario': 'Pee Wee', 'Reggie Jackson': 'Baseball Coach', 'Claudia Schiffer': 'Aerobics Instructor', 'Wanda Christine': 'Newswoman at Factory       (as Wandachristine)'}\"\r\ntt0758752,\"{'Jake Gyllenhaal': 'Jamie Randall', 'Anne Hathaway': 'Maggie Murdock', 'Oliver Platt': 'Bruce Winston', 'Hank Azaria': 'Dr. Stan Knight', 'Josh Gad': 'Josh Randall', 'Gabriel Macht': 'Trey Hannigan', 'Judy Greer': 'Cindy', 'George Segal': 'Dr. James Randall', 'Jill Clayburgh': 'Nancy Randall', 'Kate Jennings Grant': 'Gina', 'Katheryn Winnick': \"\"'Lisa'\"\", 'Kimberly Scott': 'Gail', 'Peter Friedman': 'California Man', 'Nikki Deloach': 'Christy', 'Natalie Gold': 'Dr. Helen Randall'}\"\r\ntt1879032,\"{'Craig Robinson': 'The Beast', 'Anna Kendrick': 'Lindsey Lewis', 'John Francis Daley': 'Ben House', 'Rob Corddry': 'Mr. House', 'Ana Gasteyer': 'Mrs. Lewis', 'John Michael Higgins': 'Mr. Lewis', 'Calum Worthy': 'Clark Lewis', 'Jesse Camacho': 'Fry', 'Thomas Lennon': 'Mr. Murphy       (as Tom Lennon)', 'Ken Jeong': 'God', 'Bjorn Yearwood': 'Little Beast', 'Adrianna Costa': 'Liz - Interviewer', \"\"Mike O'Connell\"\": 'First Wraith', 'Darcy Michael': 'Second Wraith', 'Paul Scheer': 'Security Wraith'}\"\r\ntt0995740,\"{'John Abraham': 'K', 'Ayesha Takia': 'Anjali /              Annie', 'Paresh Rawal': 'Shri Shri Prakash Guru Ghantal Baba Bangali Sealdah Wale', 'Ranvir Shorey': 'Abbas Tyrewala', 'Kiku Sharda': \"\"Doctor in charge of K's brother J\"\", 'Akhauri P. Sinha': 'ACP', 'Joy Fernandes': \"\"J's friend Alex\"\", 'Karan Makhija': \"\"J's friend, at the starting.\"\", 'Megh Pant': 'ACP Assistant', 'Vasan Bala': \"\"The man at the launch party of Alex's cigars\"\", 'Pravishi Das': 'Woman in Burkha       (as Pravishee)', 'Sanjay Gandhi': 'Chacha', 'Jesse Randhawa': 'Dancer /              Singer', 'Gajraj Rao': 'Rajendra Kishan Dhingra'}\"\r\ntt0081609,\"{'Natalya Belokhvostikova': 'Marie Louni /              Nathalie       (as Natacha Belokhvostikova)', 'Curd Jürgens': 'Maître Legraine', 'Igor Kostolevskiy': 'Andre Ilytch', 'Claude Jade': 'Françoise', 'Armen Dzhigarkhanyan': 'Max Richard       (as Armen Djigarkhanian)', 'Georges Géret': 'Dennis Pew', 'Albert Filozov': 'Scherner', 'Alain Delon': 'Inspector Georges Foche', 'Nikolay Grinko': 'Hermolin       (as Nicolas Grinko)', 'Mike Marshall': 'First Terrorist', 'Gleb Strizhenov': 'Simon       (as Glebe Strijenov)', 'Jess Hahn': 'Second Terrorist', 'Jacques Roux': 'Mr.Johnson', 'Evelyne Kraft': 'False Secretary', 'Natalya Naumova': 'Françoise as Child       (as Natasha Naumov)'}\"\r\ntt5093452,\"{'Sanaa Lathan': 'Ashe Akino10 episodes, 2017', 'Stephan James': 'Preston Terry10 episodes, 2017', 'Stephen Moyer': 'Lieutenant Breeland10 episodes, 2017', 'Will Patton': 'Sheriff Daniel Platt10 episodes, 2017', 'Tristan Mack Wilds': 'Deputy Joshua Beck10 episodes, 2017', 'Aisha Hinds': 'Pastor Janae James10 episodes, 2017', 'DeWanda Wise': 'Shameeka Campbell10 episodes, 2017', 'Clare-Hope Ashitey': 'Kerry Beck                  10 episodes, 2017', 'Conor Leslie': 'Sarah Ellis10 episodes, 2017', 'Helen Hunt': 'Governor Patricia Eamons10 episodes, 2017', 'Richard Dreyfuss': 'Arlen Cox9 episodes, 2017', 'Beau Knapp': 'Deputy Caleb Brooks                  9 episodes, 2017', 'Kylen Davis': 'Shawn Campbell                  9 episodes, 2017', 'Jill Hennessy': 'Alicia Carr8 episodes, 2017', 'Liam Ethan Dance': 'Christian Beck                  7 episodes, 2017', 'Jahlil Muhammad': 'Jeremiah Beck                  7 episodes, 2017', 'Anthony Dalton': 'Anthony                  7 episodes, 2017', 'Edwina Findley Dickerson': 'Shirlane                  6 episodes, 2017', 'Marqus Clae': 'Cory6 episodes, 2017', 'John Beasley': 'Mr. Dabney                  6 episodes, 2017', 'Mike Pniewski': 'Julian Carroll                  5 episodes, 2017', 'Jacob Leinbach': 'Jesse Carr                  5 episodes, 2017', 'Laila Lockhart Kraner': 'Kai                  5 episodes, 2017', 'Yohance Myles': 'Leon Grant                  5 episodes, 2017'}\"\r\ntt0055706,\"{'Groucho Marx': 'Himself - Host                  6 episodes, 1961-1962', 'Joy Harmon': 'Herself - Assistant                  4 episodes, 1962'}\"\r\ntt3305316,\"{'Nikolaj Coster-Waldau': 'Andreas', 'Roland Møller': 'Mand på klub', 'Nikolaj Lie Kaas': 'Tristan', 'Ulrich Thomsen': 'Simon', 'Maria Bonnevie': 'Anna Thomsen', 'Thomas Bo Larsen': 'Klaus', 'Ewa Fröling': 'Ingrid', 'Peter Haber': 'Gustav', 'Sarah Juel Werner': 'Pige på legeplads', 'Molly Blixt Egelind': 'Pige på klub', 'Bodil Jørgensen': 'Retsmediciner', 'Claus Riis Østergaard': 'Betjent på parkeringsplads', 'Mille Lehfeldt': 'Østeuropæisk danser', 'Frederik Meldal Nørgaard': 'Betjent på legeplads', 'May Andersen': 'Sanne       (as Lykke May Andersen)'}\"\r\ntt0498353,\"{'Lauren German': 'Beth', 'Roger Bart': 'Stuart', 'Heather Matarazzo': 'Lorna', 'Bijou Phillips': 'Whitney', 'Richard Burgi': 'Todd', 'Vera Jordanova': 'Axelle', 'Jay Hernandez': 'Paxton', 'Jordan Ladd': 'Stephanie', 'Milan Knazko': 'Sasha', 'Edwige Fenech': 'Art Class Professor', 'Stanislav Yanevski': 'Miroslav       (as Stanislav Ianevski)', 'Patrik Zigo': 'Bubblegum Gang Leader', 'Zuzana Geislerová': 'Inya', 'Ivan Furak': 'Big Guard', 'Monika Malácová': 'Mrs. Bathory'}\"\r\ntt3602442,\"{'Jay Bond': 'Himself', 'John Lyle': 'Himself', 'Collin Price': 'Himself'}\"\r\ntt0116861,\"{'Warwick Davis': 'Leprechaun', 'Brent Jasmer': 'Books', 'Jessica Collins': 'Tina', 'Guy Siner': 'Dr. Mittenhand', 'Gary Grossman': 'Harold', 'Rebecca Carlton': 'Princess Zarina       (as Rebekah Carlton)', 'Tim Colceri': 'Metal Head', 'Miguel A. Núñez Jr.': 'Sticks       (as Miguel A. Nunez Jr.)', 'Debbe Dunning': 'Delores', 'Mike Cannizzo': 'Danny       (as Michael Cannizzo)', 'Rick Peters': 'Mooch', 'Geoff Meed': 'Kowalski', 'Ladd York': 'Lucky', 'James Quinn': 'Computer Voice       (voice) (as James W. Quinn)'}\"\r\ntt0113636,\"{'Warwick Davis': 'Leprechaun', 'John Gatins': 'Scott McCoy', 'Lee Armstrong': 'Tammy Larsen', 'John DeMita': 'Fazio', 'Michael Callan': 'Mitch', 'Caroline Williams': 'Loretta', 'Marcelo Tubert': 'Gupta', 'Tom Dugan': 'Art', 'Leigh-Allyn Baker': 'Waitress', 'Richard Reicheg': 'Lucky', 'Linda Shayne': 'Nurse', 'Ian Gregory': 'Doctor', 'Roger Hewlett': 'Tony', 'Terry Lee Crisp': 'Elvis', 'Jennifer Stein': 'High Roller'}\"\r\ntt0118643,\"{'Christopher Walken': 'Gabriel', 'Russell Wong': 'Danyael', 'Jennifer Beals': 'Valerie Rosales', 'Brittany Murphy': 'Izzy', 'Eric Roberts': 'Michael', 'Glenn Danzig': 'Samayel', 'Steve Hytner': 'Joseph', 'Bruce Abbott': 'Thomas Daggett', 'William Prael': 'Rafayel', 'Renee Victor': 'Nana', 'Elizabeth Dennehy': 'Kathy Kimball', 'J.G. Hertzler': 'Father William', 'Nicki Micheaux': 'Detective Kreibel', 'Tom Towles': 'Detective Waltrip', 'Danny Strong': 'Julian'}\"\r\ntt0183678,\"{'Christopher Walken': 'Gabriel', 'Vincent Spano': 'Zophael', 'Dave Buzzotta': 'Danyael', 'Kayren Butler': 'Maggie       (as Kayren Ann Butler)', 'Steve Hytner': 'Joseph', 'Brad Dourif': 'Zealot', 'Scott Cleverdon': 'Pyriel', 'Jack McGee': 'Detective', 'Sandra Ellis Lafferty': 'Madge       (as Sandra Lafferty)', 'Mark Prince Edwards': 'Donut Guy', 'Tyrone Tann': 'Kyle', \"\"Moriah 'Shining Dove' Snyder\"\": 'Mary       (as Moriah Shining Dove Snyder)', 'J.D. Rosen': 'Tail Man', 'William Stanford Davis': 'Portly Coroner       (as Stan Davis)', 'Drew Swaine': 'Young Danyael'}\"\r\ntt5711820,\"{'Doug Walker': 'Nostalgia Critic', 'Malcolm Ray': 'The 3D Brothers'}\"\r\ntt0229440,\"{'Craig Sheffer': 'Det. Joseph Thorne', 'Nicholas Turturro': 'Det. Tony Nenonen', 'James Remar': 'Dr. Paul Gregory', 'Doug Bradley': 'Pinhead', 'Nicholas Sadler': 'Bernie', 'Noelle Evans': 'Melanie Thorne', 'Lindsay Taylor': 'Chloe', 'Matt George': 'Leon Gaultier', 'Michael Shamus Wiles': 'Mr. Parmagi', 'Sasha Barrese': 'Daphne Sharp', 'Kathryn Joosten': 'Mother', 'Jessica Elliot': \"\"Young Joseph's Mother\"\", 'Carmen Argenziano': 'Captain', 'Christopher Neiman': 'Pathologist', 'Christopher Kriesa': 'Older Detective'}\"\r\ntt0116514,\"{'Bruce Ramsay': \"\"Phillip L'Merchant /              John Merchant /              Dr. Paul Merchant\"\", 'Valentina Vargas': 'Angelique /              Peasant Girl', 'Doug Bradley': 'Pinhead', 'Charlotte Chatton': \"\"Genevieve L'Merchant\"\", 'Adam Scott': 'Jacques', 'Kim Myers': 'Bobbi Merchant', 'Mickey Cottrell': \"\"Duc de L'Isle\"\", 'Louis Turenne': 'Auguste', 'Courtland Mead': 'Jack Merchant', 'Louis Mustillo': 'Sharpe', 'Jody St. Michael': 'The Beast', 'Paul Perri': 'Edwards /              Skinless Parker', 'Pat Skipper': 'Carducci', 'Christine Harnos': 'Rimmer', 'Wren T. Brown': 'Parker       (as Wren Brown)'}\"\r\ntt0091431,\"{'Jackie Chan': 'Asian Hawk', 'Alan Tam': 'Alan', 'Rosamund Kwan': 'Lorelei', 'Lola Forner': 'May', 'Bozidar Smiljanic': 'Bannon', 'Ken Boyle': 'Grand Wizard', 'John Ladalski': 'Chief Lama', \"\"Robert O'Brien\"\": \"\"Witch Doctor       (as Robert O' Brien)\"\", 'Boris Gregoric': 'Man at Auction', 'Marcia Chisholm': 'Fighter', 'Alicia Shonte': 'Fighter', 'Vivian Wickliffe': 'Fighter', 'Stephanie Evans': 'Fighter', 'William Williams': 'Fighter', 'Linda Denley': 'Fighter'}\"\r\ntt0396184,\"{'Mads Mikkelsen': 'Tonny', 'Leif Sylvester': 'Smeden       (as Leif Sylvester Petersen)', 'Anne Sørensen': 'Charlotte', 'Øyvind Hagen-Traberg': 'Ø', 'Kurt Nielsen': 'Kusse-Kurt', 'Karsten Schrøder': 'Røde', 'Maria Erwolter': 'Gry', 'Dan Dommer': 'Den gamle', 'Sven Erik Eskeland Larsen': 'Svend', 'Jean Pierre Peuleve': 'Chief', 'Zlatko Buric': 'Milo', 'Maya Ababadjani': 'Prostituerende       (as Maya Sørensen)', 'Maria Mendoza': 'Prostituerende', 'Luis Werner Grau': 'Valdemar', 'Lasse Wenkers': 'Baby'}\"\r\ntt0489270,\"{'Tobin Bell': 'Jigsaw /              John Kramer', 'Shawnee Smith': 'Amanda Young', 'Angus Macfadyen': 'Jeff', 'Bahar Soomekh': 'Lynn Denlon', 'Donnie Wahlberg': 'Eric Matthews', 'Dina Meyer': 'Kerry', 'Leigh Whannell': 'Adam', 'Mpho Koaho': 'Tim', 'Barry Flatman': 'Judge Halden', 'Lyriq Bent': 'Rigg', 'J. LaRose': 'Troy       (as J Larose)', 'Debra McCabe': 'Danica       (as Debra Lynne McCabe)', 'Costas Mandylor': 'Forensic Hoffman', 'Betsy Russell': 'Jill', 'Jane Luk': 'Nurse - Emergency Room'}\"\r\ntt0112722,\"{'Sigourney Weaver': 'Helen Hudson', 'Holly Hunter': 'MJ Monahan', 'Dermot Mulroney': 'Ruben Goetz', 'William McNamara': 'Peter Foley', 'Harry Connick Jr.': 'Daryll Lee Cullum', 'J.E. Freeman': 'Lt. Quinn', 'Will Patton': 'Nicoletti', 'John Rothman': 'Andy', \"\"Shannon O'Hurley\"\": 'Susan Schiffer', 'Bob Greene': 'Pachulski', 'Tony Haney': 'Kerby', 'Danny Kovacs': 'Kostas', 'Tahmus Rounds': 'Landis', 'Scott DeVenney': 'Cop #1       (as Scott De Venney)', 'David Michael Silverman': 'Mike'}\"\r\ntt0082694,\"{'Mel Gibson': 'Max', 'Bruce Spence': 'The Gyro Captain', 'Michael Preston': 'Pappagallo       (as Mike Preston)', 'Max Phipps': 'The Toadie', 'Vernon Wells': 'Wez', 'Kjell Nilsson': 'The Humungus', 'Emil Minty': 'The Feral Kid', 'Virginia Hey': 'Warrior Woman', 'William Zappa': 'Zetta', 'Arkie Whiteley': \"\"The Captain's Girl\"\", 'Steve J. Spears': 'Mechanic', 'Syd Heylen': 'Curmudgeon', 'Moira Claux': 'Big Rebecca', 'David Downer': 'Nathan', 'David Slingsby': 'Quiet Man'}\"\r\ntt0082694,\"{'Mel Gibson': 'Max', 'Bruce Spence': 'The Gyro Captain', 'Michael Preston': 'Pappagallo       (as Mike Preston)', 'Max Phipps': 'The Toadie', 'Vernon Wells': 'Wez', 'Kjell Nilsson': 'The Humungus', 'Emil Minty': 'The Feral Kid', 'Virginia Hey': 'Warrior Woman', 'William Zappa': 'Zetta', 'Arkie Whiteley': \"\"The Captain's Girl\"\", 'Steve J. Spears': 'Mechanic', 'Syd Heylen': 'Curmudgeon', 'Moira Claux': 'Big Rebecca', 'David Downer': 'Nathan', 'David Slingsby': 'Quiet Man'}\"\r\ntt0385988,\"{'Lainie Kazan': 'Grandma', 'Henry Cavill': 'The Hunter', 'Morgan Thompson': 'Claire /              Red', 'Sam Oz Stone': 'Matt /              Rusty       (as Sam Stone)', 'Daniel Roebuck': \"\"Red's Dad\"\", 'Debi Mazar': \"\"Red's Mom\"\", 'Joey Fatone': 'Jack De Wolf /              Big Bad Wolf', 'Donzaleigh Abernathy': 'Newscaster', 'Andrea Bowen': 'Ashley #2', 'Mary Jo Catlett': 'Shopkeeper Woman', 'Jackson Englund': 'Village Boy #2', 'David Kaufman': \"\"Hunter's Dad\"\", 'Suzanne Kent': 'Gypsy Fortune Teller', 'Sung Hi Lee': 'TV Reporter', 'Bret Loehr': 'Boy Scout #2       (as Brett Loehr)'}\"\r\ntt0113026,\"{'Joel Grey': 'Bellomy', 'Barnard Hughes': 'Henry', 'Jean Louisa Kelly': 'Luisa', 'Joey McIntyre': 'Matt       (as Joe McIntyre)', 'Jonathon Morris': 'El Gallo', 'Brad Sullivan': 'Hucklebee', 'Teller': 'Mortimer', 'Arturo Gil': 'The Bavarian Baby', 'Tony Cox': 'His Assistant       (as Joe Anthony Cox)', 'Victoria Stevens': 'Jo Jo, The Chicken Lady', 'Trayne Thomas': 'Tattooed Man', 'Shaunery Stevens': 'Roustabout', 'Dyrk Ashton': 'Roustabout', 'Gregory Amato': 'Smuin Ballet /              SF Dancer', 'Lee Bell': 'Smuin Ballet /              SF Dancer'}\"\r\ntt1326972,\"{'Tony Chiu-Wai Leung': 'Zhou Yu       (as Tony Chiu Wai Leung)', 'Takeshi Kaneshiro': 'Zhuge Liang', 'Fengyi Zhang': 'Cao Cao', 'Chen Chang': 'Sun Quan', 'Wei Zhao': 'Sun Shangxiang', 'Jun Hu': 'Zhao Yun', 'Chiling Lin': 'Xiao Qiao', 'Shidô Nakamura': 'Gan Xing', 'Yong You': 'Liu Bei', 'Baasanjav Mijid': 'Guan Yu', 'Yong Hou': 'Lu Su', 'Chang Hai Chen': 'Qin Seng', 'Yu Gui Cui': 'Xu Chu', 'Nicole Dionne': 'Xiao Qiao       (voice)', 'Xiang Rui Fu': 'Baby Dou'}\"\r\ntt0097428,\"{'Bill Murray': 'Dr. Peter Venkman', 'Dan Aykroyd': 'Dr. Raymond Stantz', 'Sigourney Weaver': 'Dana Barrett', 'Harold Ramis': 'Dr. Egon Spengler', 'Rick Moranis': 'Louis Tully', 'Ernie Hudson': 'Winston Zeddemore', 'Annie Potts': 'Janine Melnitz', 'Peter MacNicol': 'Dr. Janosz Poha', 'Harris Yulin': 'The Judge', 'David Margulies': 'The Mayor of NY', 'Kurt Fuller': 'Hardemeyer', 'Janet Margolin': 'The Prosecutor', 'Wilhelm von Homburg': 'Vigo', 'William T. Deutschendorf': 'Baby Oscar       (as Will Deutschendorf)', 'Henry J. Deutschendorf II': 'Baby Oscar       (as Hank Deutschendorf)'}\"\r\ntt0120787,\"{'Michael Douglas': 'Steven Taylor', 'Gwyneth Paltrow': 'Emily Bradford Taylor', 'Viggo Mortensen': 'David Shaw', 'David Suchet': 'Mohamed Karaman', 'Sarita Choudhury': 'Raquel Martinez', 'Michael P. Moran': 'Bobby Fain', 'Novella Nelson': 'Ambassador Alice Wills', 'Constance Towers': 'Sandra Bradford', 'Will Lyman': 'Jason Gates', 'Maeve McGuire': 'Ann Gates', 'Stephen Singer': 'Effete Man at Met', 'Laurinda Barrett': 'Met Woman #1', \"\"Aideen O'Kelly\"\": 'Met Woman #2', 'Reed Birney': 'Merchant Prince #1', 'Robert Vincent Smith': 'Merchant Prince #2'}\"\r\ntt0425379,\"{'Zlatko Buric': 'Milo', 'Marinela Dekic': 'Milena', 'Slavko Labovic': 'Radovan', 'Ramadan Huseini': 'Rexho', 'Ilyas Agac': 'Lille Muhammed', 'Kujtim Loki': 'Luan', 'Vasilije Bojicic': 'Branco       (as Vanja Bajicic)', 'Levino Jensen': 'Mike', 'Marek Magierecki': 'Mitja', 'Sven Erik Eskeland Larsen': 'Svend', 'Karsten Schrøder': 'Røde', 'Hakan Turan': 'Ali', 'Susan Petersen': 'Marie', 'Gitte Dan': 'Lis', 'Tommy Christensen': 'KA Mand 1'}\"\r\ntt0110516,\"{'Melanie Griffith': 'V', 'Ed Harris': 'Tom', 'Michael Patrick Carter': 'Frank', 'Malcolm McDowell': 'Waltzer', 'Anne Heche': 'Betty', 'Casey Siemaszko': 'Cash', 'Philip Bosco': 'Jerry the Pope', 'Brian Christopher': 'Kevin', 'Adam LaVorgna': 'Brad', 'Kevin Scannell': 'Mr. Clean', 'Jessica Wesson': 'Stacey', 'Amanda Sharkey': 'Holly', 'Margaret Nagle': 'Mrs. Fetch', 'Katie Powell': 'Mrs. Clean       (as Kati Powell)', 'Tom Coop': \"\"Holly's Brother\"\"}\"\r\ntt1155056,\"{'Paul Rudd': 'Peter Klaven', 'Rashida Jones': 'Zooey Rice', 'Sarah Burns': 'Hailey', 'Greg Levine': \"\"Hailey's Date\"\", 'Jaime Pressly': 'Denise', 'Jon Favreau': 'Barry', 'Jane Curtin': 'Joyce Klaven', 'J.K. Simmons': 'Oswald Klaven', 'Andy Samberg': 'Robbie Klaven', 'Jean Villepique': 'Leanne (Davis Dunn Receptionist)', 'Rob Huebel': 'Tevin Downey', 'Kym Whitley': 'Female Co-Worker', 'Colleen Crabtree': 'Female Co-Worker', 'Caroline Farah': 'Female Co-Worker', 'Mather Zickel': 'Gil'}\"\r\ntt0212235,\"{'Aimee Graham': 'Screw', 'Chris Palermo': 'The Killer', 'Kim Greist': 'Mrs. Peacock', 'Harley Cross': 'Dawson', 'Simon Rex': 'Slab', 'Coolio': 'Principal (AFKAP)', 'Danny Strong': 'Boner', 'Julie Benz': 'Barbara', 'Majandra Delfino': 'Martina', 'Steven Anthony Lawrence': 'Chuckie', 'Tiffani Thiessen': 'Hagitha Utslay       (as Tiffani-Amber Thiessen)', 'Martin Diggs': 'Camerman', 'Tom Arnold': 'Doughy', 'Mink Stole': 'Madame La Tourneau', 'Rose Marie': 'Mrs. Tingle'}\"\r\ntt1132626,\"{'Tobin Bell': 'Jigsaw /              John', 'Costas Mandylor': 'Mark Hoffman', 'Scott Patterson': 'Agent Strahm', 'Betsy Russell': 'Jill', 'Julie Benz': 'Brit', 'Meagan Good': 'Luba', 'Mark Rolston': 'Dan Erickson', 'Carlo Rota': 'Charles', 'Greg Bryk': 'Mallick', 'Laura Gordon': 'Ashley', 'Joris Jarsky': 'Seth', 'Mike Butters': 'Paul', 'Al Sapienza': 'Chief of Police', 'Mike Realba': 'Detective Fisk', 'Jeff Pustil': 'Bernie'}\"\r\ntt1212023,\"{'David Carradine': 'Clive Jonis', 'Richard Lynch': 'Karl Lumis', 'Dee Wallace': 'Jean Applebe', 'Jeff Beorger': 'The Reverend - 1950', 'Christopher Bondy': 'The Reverend', 'Derek Brandon': 'Daniel Jonis', 'David G.B. Brown': 'Boyfriend', 'James Howard Carr': 'Ben Wheeler', 'J.J. Chidiac': 'Simon Wheeler', 'Paula Ciccone': 'Eleanor Lumis', 'Peter Coady': 'Sheriff', 'Adam Cooper': \"\"Dell's Boy\"\", 'Daniel Cooper': \"\"Dell's Boy\"\", 'Guy Copland': 'Dell /              Motel Manager', 'Colin Crenshaw': 'Jack Lumis'}\"\r\ntt0432348,\"{'Tobin Bell': 'Jigsaw /              John', 'Shawnee Smith': 'Amanda', 'Donnie Wahlberg': 'Eric Matthews', 'Erik Knudsen': 'Daniel Matthews', 'Franky G': 'Xavier', 'Glenn Plummer': 'Jonas', 'Emmanuelle Vaugier': 'Addison', 'Beverley Mitchell': 'Laura', 'Timothy Burd': 'Obi', 'Dina Meyer': 'Kerry', 'Lyriq Bent': 'Rigg', 'Noam Jenkins': 'Michael', 'Tony Nappo': 'Gus', 'Kelly Jones': 'SWAT Member Pete', 'Vincent Rother': 'SWAT Member Joe'}\"\r\ntt0109254,\"{'Eddie Murphy': 'Det. Axel Foley', 'Jon Tenney': 'Levine', 'Joey Travolta': 'Giolito', 'Eugene Collier': 'Leppert', 'Jimmy Ortega': 'Rondell', 'Ousaun Elam': 'Pederson', 'Ray Lykins': 'Nixon', 'Tim Gilbert': 'McKee', 'Rick Avery': 'Cline', 'Gilbert R. Hill': 'Insp. Douglas Todd       (as Gil Hill)', 'Dick Purtan': 'Detroit Disc Jockey', 'Fred Asparagus': 'Bobby', 'Louis Lombardi': 'Snake', 'Lindsey Ginter': 'Holloway', 'Timothy Carhart': 'Ellis De Wald'}\"\r\ntt1121931,\"{'Jason Statham': 'Chev Chelios', 'Amy Smart': 'Eve', 'Dwight Yoakam': 'Doc Miles', 'Efren Ramirez': 'Venus', 'Julanne Chidi Hill': 'Dark Chocolate', 'Jose Pablo Cantillo': 'Ricky Verona', 'Reno Wilson': 'Orlando', 'Keone Young': 'Don Kim', 'Art Hsu': 'Johnny Vang', 'Joseph Julian Soria': 'Chico', 'Bai Ling': 'Ria', 'Clifton Collins Jr.': 'El Huron', 'David Carradine': 'Poon Dong', 'Corey Haim': 'Randy', 'Geri Horner': 'Karen Chelios       (as Geri Halliwell)'}\"\r\ntt0325703,\"{'Angelina Jolie': 'Lara Croft', 'Gerard Butler': 'Terry Sheridan', 'Ciarán Hinds': 'Jonathan Reiss', 'Chris Barrie': 'Hillary       (as Christopher Barrie)', 'Noah Taylor': 'Bryce', 'Djimon Hounsou': 'Kosa', 'Til Schweiger': 'Sean', 'Simon Yam': 'Chen Lo', 'Terence Yin': 'Xien', 'Daniel Caltagirone': 'Nicholas Petraki', 'Fabiano Martell': 'Jimmy Petraki', 'Jonny Coyne': 'Gus Petraki       (as Jonathan Coyne)', 'Robert Cavanah': 'MI6 Agent Stevens', 'Ronan Vibert': 'MI6 Agent Calloway', 'Lenny Juma': 'Village Leader'}\"\r\ntt0105128,\"{'Edward Furlong': 'Jeff Matthews', 'Anthony Edwards': 'Chase Matthews', 'Clancy Brown': 'Gus Gilbert', 'Jared Rushton': 'Clyde Parker', 'Darlanne Fluegel': 'Renee Hallow', 'Jason McGuire': 'Drew Gilbert', 'Sarah Trigger': 'Marjorie Hargrove', 'Lisa Waltz': 'Amanda Gilbert', 'Jim Peck': 'Quentin Yolander', 'Len Hunt': 'Director', 'Reid Binion': 'Brad', 'David Ratajczak': 'Stevie', 'Lucius Houghton': 'Puppeteer', 'Wilbur Fitzgerald': 'First Assistant Director', 'Elizabeth Ziegler': 'Steadicam Operator'}\"\r\ntt0890870,\"{'Tobin Bell': 'Jigsaw /              John Kramer', 'Costas Mandylor': 'Lt. Mark Hoffman', 'Scott Patterson': 'Agent Peter Strahm', 'Betsy Russell': 'Jill Tuck', 'Lyriq Bent': 'Lt. Daniel Rigg', 'Athena Karkanis': 'Agent Lindsey Perez', 'Louis Ferreira': 'Art Blank       (as Justin Louis)', 'Simon Reynolds': 'Lamanna', 'Donnie Wahlberg': 'Eric Matthews', 'Angus Macfadyen': 'Jeff Denlon', 'Shawnee Smith': 'Amanda Young       (archive footage)', 'Bahar Soomekh': 'Lynn Denlon', 'Dina Meyer': 'Detective Allison Kerry', 'Mike Realba': 'Detective Fisk', 'Marty Adams': 'Ivan Landsness'}\"\r\ntt3595776,\"{'Matthew Perry': 'Oscar Madison38 episodes, 2015-2017', 'Thomas Lennon': 'Felix Unger38 episodes, 2015-2017', 'Lindsay Sloane': 'Emily38 episodes, 2015-2017', 'Yvette Nicole Brown': 'Dani38 episodes, 2015-2017', 'Wendell Pierce': 'Teddy38 episodes, 2015-2017'}\"\r\ntt0443295,\"{'Dennis Quaid': 'Frank Beardsley', 'Rene Russo': 'Helen North', 'Sean Faris': 'William Beardsley', 'Katija Pevec': 'Christina Beardsley', 'Dean Collins': 'Harry Beardsley', 'Tyler Patrick Jones': 'Michael Beardsley', 'Haley Ramm': 'Kelly Beardsley', 'Brecken Palmer': 'Ely Beardsley', 'Bridger Palmer': 'Otter Beardsley', 'Ty Panitz': 'Ethan Beardsley', 'Danielle Panabaker': 'Phoebe North', 'Drake Bell': 'Dylan North', 'Miki Ishikawa': 'Naoko North', 'Slade Pearce': 'Mick North', 'Lil J.J.': \"\"Jimi North       (as Lil' JJ)\"\"}\"\r\ntt0469999,\"{'Rudolf Waldemar Brem': '(archive footage)', 'Joyce Grinuk': 'Special Guest Star', 'Dina Cassiano': 'Special Guest Star', 'Vladimir Maksic': 'Michael Cosnick', 'Ulli Lommel': 'Simon Vale', 'Peter Beckman': 'J. Donald Fisk', 'Todd Jensen': 'Harry Prince', 'JayTon Tucker': 'Detective Rochelle', 'Gunter Ziegler': 'Willie Harman'}\"\r\ntt0339294,\"{'Warwick Davis': 'Leprechaun', 'Tangi Miller': 'Emily Woodrow', 'Laz Alonso': 'Rory', 'Page Kennedy': 'Jamie Davis', 'Sherrie Jackson': 'Lisa Duncan', 'Donzaleigh Abernathy': 'Esmeralda', 'Shiek Mahmud-Bey': 'Watson', 'Sticky Fingaz': 'Cedric', 'Keesha Sharp': 'Chanel', 'Sonya Eddy': 'Yolanda', 'Beau Billingslea': 'Thompson', 'Christopher Murray': 'Whitaker       (as Chris Murray)', 'Vickilyn Reynolds': 'Doria', 'Willie C. Carpenter': 'Father Jacob', 'Varee': 'Countergirl'}\"\r\ntt0088170,\"{'William Shatner': 'Kirk', 'Leonard Nimoy': 'Capt. Spock', 'DeForest Kelley': 'McCoy', 'James Doohan': 'Scotty', 'Walter Koenig': 'Chekov', 'George Takei': 'Sulu', 'Nichelle Nichols': 'Uhura', 'Robin Curtis': 'Saavik', 'Merritt Butrick': 'David', 'Phil Morris': 'Trainee Foster', 'Scott McGinnis': 'Mr. Adventure', 'Robert Hooks': 'Admiral Morrow', 'Carl Steven': 'Spock - age 9', 'Vadia Potenza': 'Spock - age 13', 'Stephen Manley': 'Spock - age 17'}\"\r\ntt0408524,\"{'Billy Bob Thornton': 'Morris Buttermaker', 'Greg Kinnear': 'Roy Bullock', 'Marcia Gay Harden': 'Liz Whitewood', 'Sammi Kane Kraft': 'Amanda Whurlitzer', 'Ridge Canipe': 'Toby Whitewood', 'Brandon Craggs': 'Mike Engelberg', 'Jeffrey Davies': 'Kelly Leak', 'Timmy Deters': 'Tanner Boyle', 'Carlos Estrada': 'Miguel Agilar', 'Emmanuel Estrada': 'Jose Agilar', 'Troy Gentile': 'Matthew Hooper', \"\"Kenneth 'K.C.' Harris\"\": 'Ahmad Abdul Rahim', 'Aman Johal': 'Prem Lahiri', 'Tyler Patrick Jones': 'Timmy Lupus', 'Jeffrey Tedmori': 'Garo Daragabrigadien'}\"\r\ntt6560426,\"{'Jessica Griffin': 'Herself - Host       (as Dr. Jessica Griffin)', 'Charles J. Orlando': 'Himself - Host'}\"\r\ntt0758746,\"{'Jared Padalecki': 'Clay Miller', 'Danielle Panabaker': 'Jenna', 'Amanda Righetti': 'Whitney Miller', 'Travis Van Winkle': 'Trent', 'Aaron Yoo': 'Chewie', 'Derek Mears': 'Jason Voorhees', 'Jonathan Sadowski': 'Wade', 'Julianna Guill': 'Bree', 'Ben Feldman': 'Richie', 'Arlen Escarpeta': 'Lawrence', 'Ryan Hansen': 'Nolan', 'Willa Ford': 'Chelsea', 'Nick Mennell': 'Mike', 'America Olivo': 'Amanda', 'Kyle Davis': 'Donnie'}\"\r\ntt0098382,\"{'William Shatner': 'Kirk', 'Leonard Nimoy': 'Spock', 'DeForest Kelley': 'McCoy', 'James Doohan': 'Scotty', 'Walter Koenig': 'Chekov', 'Nichelle Nichols': 'Uhura', 'George Takei': 'Sulu', 'David Warner': 'St. John Talbot', 'Laurence Luckinbill': 'Sybok', 'Charles Cooper': 'Korrd', 'Cynthia Gouw': 'Caithlin Dar', 'Todd Bryant': 'Captain Klaa', 'Spice Williams-Crosby': 'Vixis       (as Spice Williams)', 'Rex Holman': \"\"J'onn\"\", 'George Murdock': 'God'}\"\r\ntt0083530,\"{'Lloyd Bridges': 'Steve McCroskey', 'Raymond Burr': 'The Judge', 'Chuck Connors': 'The Sarge', 'Rip Torn': 'Bud Kruger', 'John Dehner': 'The Commissioner', 'Chad Everett': 'Simon Kurtz', 'Peter Graves': 'Captain Clarence Oveur', 'Julie Hagerty': 'Elaine Dickinson', 'Robert Hays': 'Ted Striker', 'Kent McCord': 'Unger', 'James A. Watson Jr.': 'Dunn', 'William Shatner': 'Commander Buck Murdock', 'Stephen Stucker': 'Jacobs /              Courtroom Clerk', 'John Vernon': 'Dr. Stone', 'Al White': 'Witness'}\"\r\ntt0424774,\"{'Taylor Lautner': 'Sharkboy', 'Taylor Dooley': 'Lavagirl', 'Cayden Boyd': 'Max', 'George Lopez': 'Mr. Electric /              Tobor /              Ice Guardian /              Mr. Electricidad', 'David Arquette': \"\"Max's Dad\"\", 'Kristin Davis': \"\"Max's Mom\"\", 'Jacob Davich': 'Linus /              Minus', 'Sasha Pieterse': 'Marissa /              Ice Princess', 'Rico Torres': \"\"Sharkboy's Dad\"\", 'Marc Musso': 'Classroom Kid #1', 'Shane Graham': 'Classroom Kid #2', 'Tiger Darrow': 'Classroom Kid #3', 'Rocket Rodriguez': 'Lug', 'Racer Rodriguez': 'Sharkboy, Age 7', 'Rebel Rodriguez': 'Sharkboy, Age 5'}\"\r\ntt0071562,\"{'Al Pacino': 'Michael', 'Robert Duvall': 'Tom Hagen', 'Diane Keaton': 'Kay', 'Robert De Niro': 'Vito Corleone       (as Robert DeNiro)', 'John Cazale': 'Fredo Corleone', 'Talia Shire': 'Connie Corleone', 'Lee Strasberg': 'Hyman Roth', 'Michael V. Gazzo': 'Frankie Pentangeli', 'G.D. Spradlin': 'Sen. Pat Geary', 'Richard Bright': 'Al Neri', 'Gastone Moschin': 'Fanucci       (as Gaston Moschin)', 'Tom Rosqui': 'Rocco Lampone', 'Bruno Kirby': 'Young Clemenza       (as B. Kirby Jr.)', 'Frank Sivero': 'Genco', 'Francesca De Sapio': 'Young Mama Corleone       (as Francesca de Sapio)'}\"\r\ntt0092007,\"{'William Shatner': 'Kirk', 'Leonard Nimoy': 'Spock', 'DeForest Kelley': 'McCoy', 'James Doohan': 'Scotty', 'George Takei': 'Sulu', 'Walter Koenig': 'Chekov', 'Nichelle Nichols': 'Uhura', 'Jane Wyatt': 'Amanda', 'Catherine Hicks': 'Gillian', 'Mark Lenard': 'Sarek', 'Robin Curtis': 'Lt. Saavik', 'Robert Ellenstein': 'Federation Council President', 'John Schuck': 'Klingon Ambassador', 'Brock Peters': 'Admiral Cartwright', 'Michael Snyder': 'Starfleet Communications Officer'}\"\r\ntt0099674,\"{'Al Pacino': 'Don Michael Corleone', 'Diane Keaton': 'Kay Adams Michelson', 'Talia Shire': 'Connie Corleone Rizzi', 'Andy Garcia': 'Vincent Mancini', 'Eli Wallach': 'Don Altobello', 'Joe Mantegna': 'Joey Zasa', 'George Hamilton': 'B.J. Harrison', 'Bridget Fonda': 'Grace Hamilton', 'Sofia Coppola': 'Mary Corleone', 'Raf Vallone': 'Cardinal Lamberto', \"\"Franc D'Ambrosio\"\": 'Anthony Vito Corleone', 'Donal Donnelly': 'Archbishop Gilday', 'Richard Bright': 'Al Neri', 'Helmut Berger': 'Frederick Keinszig', 'Don Novello': 'Dominic Abbandando'}\"\r\ntt1912398,\"{'Joel Murray': 'Frank', 'Tara Lynne Barr': 'Roxy', 'Melinda Page Hamilton': 'Alison', 'Mackenzie Brooke Smith': 'Ava', 'Rich McDonald': 'Brad', 'Maddie Hasson': 'Chloe', 'Larry Miller': \"\"Chloe's Dad\"\", 'Dorie Barton': \"\"Chloe's Mom\"\", 'Travis Wester': 'Ed', 'Lauren Benz Phillips': 'Donna       (as Lauren Phillips)', 'Guerrin Gardner': 'Tampon-Throwing Tuff Gurl', 'Kellie Ramdhanie': 'Melissa Tuff Gurl       (as Kellie Marie Ramdhanie)', 'Aris Alvarado': 'Steven Clark', 'Romeo Brown': 'John Tyler', 'Sandra Vergara': 'American Superstarz Judge'}\"\r\ntt9573086,\"{'Edwin Brienen': 'Heino', 'Ilse Schrier': 'Meesteres Petra', 'Gunnar Smitt': 'Norma Dazzling'}\"\r\ntt0361411,\"{'Aishwarya Rai Bachchan': 'Lalita Bakshi       (as Aishwarya Rai)', 'Martin Henderson': 'William Darcy', 'Nadira Babbar': 'Manorama Bakshi', 'Anupam Kher': 'Chaman Bakshi', 'Naveen Andrews': 'Balraj', 'Namrata Shirodkar': 'Jaya Bakshi', 'Daniel Gillies': 'Johnny Wickham', 'Indira Varma': 'Kiran', 'Sonali Kulkarni': 'Chandra Lamba', 'Nitin Ganatra': 'Mr. Kohli', 'Meghna Kothari': 'Maya Bakshi       (as Meghnaa)', 'Peeya Rai Chowdhary': 'Lakhi Bakshi       (as Peeya Rai Choudhuri)', 'Alexis Bledel': \"\"Georgina 'Georgie' Darcy\"\", 'Marsha Mason': 'Catherine Darcy', 'Ashanti': 'Ashanti'}\"\r\ntt0092644,\"{'Eddie Murphy': 'Axel Foley', 'Judge Reinhold': 'Billy Rosewood', 'Jürgen Prochnow': 'Maxwell Dent', 'Ronny Cox': 'Andrew Bogomil', 'John Ashton': 'John Taggart', 'Brigitte Nielsen': 'Karla Fry', 'Allen Garfield': 'Harold Lutz', 'Dean Stockwell': 'Chip Cain', 'Paul Reiser': 'Jeffrey Friedman', 'Gilbert R. Hill': 'Inspector Todd       (as Gil Hill)', 'Paul Guilfoyle': 'Nikos Thomopolis', 'Robert Ridgely': 'Mayor Egan       (as Robert Ridgley)', \"\"Brian Edward O'Connor\"\": \"\"Biddle       (as Brian O'Connor)\"\", 'Alice Adair': 'Jan Bogomil', 'Eugene Butler': 'May'}\"\r\ntt0120755,\"{'Tom Cruise': 'Ethan Hunt', 'Dougray Scott': 'Sean Ambrose', 'Thandie Newton': 'Nyah Hall', 'Ving Rhames': 'Luther Strickell', 'Richard Roxburgh': 'Hugh Stamp', 'John Polson': 'Billy Baird', 'Brendan Gleeson': 'McCloy', 'Rade Serbedzija': 'Dr. Nekhorvich       (as Radé Sherbedgia)', 'William Mapother': 'Wallis', 'Dominic Purcell': 'Ulrich', 'Mathew Wilkinson': 'Michael       (as Matthew Wilkinson)', 'Nicholas Bell': \"\"McCloy's Accountant\"\", 'Cristina Brogeras': 'Flamenco Dancer #4', 'Kee Chan': \"\"McCloy's Chemist\"\", 'Kim Fleming': 'Larrabee'}\"\r\ntt0085127,\"{'Jackie Chan': 'Sergeant Dragon Ma Yue Lung', 'Sammo Kam-Bo Hung': 'Fei', 'Biao Yuen': 'Captain Tzu', 'Dick Wei': 'Lor Sam Pau', 'Mars': 'Jaws', 'Isabella Wong': 'Winnie       (as Winnie Wong)', 'Tai-Bo': 'Tai       (as Pa Tai)', 'Ng-Long Cheung': 'VIP Club Bouncer       (as Wu Long Cheung)', 'Hoi Sang Lee': 'Li Chou Kou       (as Hai-Shung Lee)', 'Hoi-San Kwan': 'Captain Chi', 'Wai Wong': 'Chow Wing Ling', 'Fat Wan': 'Thug       (as Wan Tat)', 'Yeong-Mun Kwon': '(as Wing-Man Kwan)', 'Hark-Sun Lau': 'Admiral       (as Hak Suen Lau)'}\"\r\ntt0119396,\"{'Pam Grier': 'Jackie Brown', 'Samuel L. Jackson': 'Ordell Robbie', 'Robert Forster': 'Max Cherry', 'Bridget Fonda': 'Melanie Ralston', 'Michael Keaton': 'Ray Nicolette', 'Robert De Niro': 'Louis Gara', 'Michael Bowen': 'Mark Dargus', 'Chris Tucker': 'Beaumont Livingston', 'LisaGay Hamilton': 'Sheronda', \"\"Tommy 'Tiny' Lister\"\": \"\"Winston       (as Tommy 'Tiny' Lister Jr.)\"\", 'Hattie Winston': 'Simone', 'Sid Haig': 'Judge', 'Aimee Graham': 'Amy - Billingsley Sales Girl', 'Ellis Williams': 'Cockatoo Bartender       (as Ellis E. Williams)', 'Tangie Ambrose': 'Billingsley Sales Girl #2'}\"\r\ntt0321704,\"{'Olivier Gruner': 'Dirk', 'Jalal Merhi': 'Bill', 'Lorenzo Lamas': 'Max', 'Michael Blanks': 'Black Jack', 'Gail Thackray': 'Nicole       (as Gail Harris)', 'Shaun T. Benjamin': 'Warden Biggs       (as Shant Bejanian)', 'Gary Hudson': 'Baxter', 'Jim Shagen': 'Pike       (as Jim Schagen)', 'Lucas Bablin': 'Slash', 'Lovake Heyer': 'Dermot', 'Gerald Okamura': 'Ming Li', 'Elise Moller': 'Betsy', 'Mark Parra': 'Twist', 'Derek Barbosa': 'Parking Lot Thug       (as Chino XL - Haugen)', 'Nino Cappuccino': 'Parking Lot Thug'}\"\r\ntt1328910,\"{'Stacey Dash': 'Lady', 'Frida Farrell': 'Gretchen', 'Monti Domingue': 'Dusty', 'Jessika Brodosi': 'Molly', 'Eliza Swenson': 'Layla', 'Kristen Quintrall': 'K.J.', 'Jackey Hall': 'Tinkerbell', 'Laura Futch': 'Milwaukee', 'Brent Lydic': 'Blaine McCormick', 'Paul Le Mat': 'Elliot Davros', 'Collin Galyean': 'Bobby Dupree', 'Dean N. Arevalo': 'Gator', 'Marcus L. Brown': 'Jackie', 'Sofia Karstens': 'Suzy', 'Andre Le': 'Nomack'}\"\r\ntt0312640,\"{'Dean Cain': 'Capt. David Carver', 'Kristine Byers': 'Dr. Meredith Winter', 'Robert Zachar': 'Dr. Ian Drackovitch', 'Marcus Aurelius': 'Dr. Greg Travis', 'Robert DiTillio': 'Kevin Korisch', 'Vesela Dimitrova': 'Bailey Kent       (as Vassela Dimitrova)', 'Hristo Shopov': 'Capt. Sergei Petrov', 'Chuck Eckert': 'Cookie', 'Kelly Wilborn': 'Dying Mother', 'Hector Kleist': 'Knight #1', 'John Barnsall': 'Knight #2', 'Chad Boyer': 'Knight #3', 'Matthew Coe': 'Knight #4', 'Matt Harris': 'Knight #5', 'Darius Kerns': 'Knight #6'}\"\r\ntt0339526,\"{'Ving Rhames': 'Cue Ball Carl Bridgers', 'Roselyn Sanchez': 'Jezebel Black', 'Daniel Newman': 'Easy', 'Freddie Prinze Jr.': 'Jericho Hudson', 'Callum Keith Rennie': 'Michael Mortensen', 'Angus Macfadyen': 'Tenderloin Tony', 'Devon Sawa': 'Paul The Pawn', 'Dan Bell': 'Nickles', 'Jon Eyez': 'Mad Boy', 'Mark Krasnoff': 'Larry', 'Robert Pralgo': 'Robert Hudson       (as Rob Pralgo)', 'Leicester Landon': 'Janna', 'Jeffrey Huth': 'Tonight Show Ted', 'Bill Romanowski': 'Case', 'Phi-Long Nguyen': 'Jaime'}\"\r\ntt0489318,\"{'Wes Bentley': 'Mickey Gravatski', 'Mark Borkowski': 'James Lemac', 'Joanne Baron': 'Megan', 'Beth Grant': 'Emma Lemac', 'Albert López-Murtra': 'Gino', 'Marina Gatell': 'Jennifer', 'Kenny Johnson': 'Officer Murphy', 'Randy Cherkas': 'Detective', 'Sarah Crocker': 'Violinist', 'Sal Darigo': 'Desk Officer', 'Jenna DeYoung': 'Screaming Nurse', 'Brian Distance': 'Fisherman', 'Thomas Dunn': 'Bobby', 'Carol Florence': 'Social Worker', 'Margaret H. Flynn': 'Old Lady'}\"\r\ntt1151928,\"{'Bruce Greenwood': 'Simon Hart', 'Tiffani Thiessen': 'Lindsey Reardon', 'Rich Franklin': 'Isaac', 'Wendy Anderson': 'Janice Fraser', 'Aaron Abrams': 'Tyler Voller', 'Kevin Rushton': 'Beck', 'Jim Annan': 'Matt Larkin', 'Stephen Jackson': 'Sheriff Ottaway', 'Brian Frank': 'Taggart', 'Patrick Chilvers': 'Dunn', 'Vickie Papavs': 'Mother', 'Addison Holley': 'Young girl (Katie)', 'Kyra Harper': 'Delores', 'Fraser Young': 'Darryl', 'Matt Smith': 'JD'}\"\r\ntt0284491,\"{'Penélope Cruz': 'Carmen Ramos       (as Penelope Cruz)', 'Victoria Abril': 'Lola Nevado', 'Jero García': '(as Jeronimo Garcia)', 'Montse G. Romeu': 'Cajera Embarazada       (as Montse Garcia Romeu)', 'Paz Gómez': 'Cajera Joven       (as Paz Gomez)', 'Mercedes Arbizu': 'Cajera 1', \"\"Vicenta N'Dongo\"\": 'Cajera 2       (as Vicenta NDongo)', 'José Manuel Lorenzo': '(as Jose Manuel Lorenzo)', 'Joserra Cadiñanos': '(as Jose Ramon Cadiñanos)', 'Teresa Arbolí': '(as Teresa Arboli)', 'Yohana Cobo': '(as Yohanna Cobo)', 'Fernando Millán': '(as Fernando Millan)'}\"\r\ntt0337879,\"{'Paul Kaye': 'Cliff', 'James Cromwell': 'Ray', 'Alice Evans': 'Kerry', 'Bernard Cribbins': 'Mutley', 'Johnny Vegas': 'Trevor', 'Vince Vaughn': 'Rick', 'Imelda Staunton': 'Bridget', 'James Fleet': 'Alan the Pipe', 'David Ryall': 'Giles Wilton', 'Ian McNeice': 'Hugh The Sideburns', 'Kenneth Cranham': 'Chairman Collins', 'Terry Alderton': 'Bouncer Jonno', 'Emma Amos': 'Local News Reporter', 'Paul Bentall': 'Gate Guard       (as Paul Bental)', 'Neil Conrich': 'Reporter Dave'}\"\r\ntt5464234,\"{'Dan Stevens': 'Will Porter', 'Bérénice Marlohe': 'Abigail Vos       (as Berenice Marlohe)', 'Mike Reus': 'Dr. Klintsen', 'Bas Keijzer': 'Bektman', 'Tygo Gernandt': 'Michael', 'Gijs Scholten van Aschat': 'Reynard', 'Charity Wakefield': 'Mia', 'Kasper van Groesen': 'Donny', 'Mike Libanon': 'Hugo'}\"\r\ntt0367232,\"{'Dan Aykroyd': 'Dr. Cyril Kipp', 'Lynda Boyd': 'Cynthia Skyes', 'Christine Chatelain': 'Mitzi Cole', 'Maury Chaykin': \"\"Dr. Roger 'Tony' Toussant\"\", 'Dave Foley': 'Dr. Denton Whiteside', 'Matt Frewer': 'Dr. Anton Keller', 'Ingrid Kavelaars': 'Mira Towers', 'Pat Kelly': 'Dale Dodd', 'Viv Leacock': 'Marlon Thomas', 'Jane McLean': 'Christine Lee', 'Peter Oldring': 'Mike Bonnert', 'Carly Pope': 'Sarah Calder', 'Saul Rubinek': 'Dr. Sam Bonnert', 'Dave Thomas': 'Dr. Omar Olson', 'Sue Huff': 'Dr. Susan Bonnert'}\"\r\ntt1411697,\"{'Bradley Cooper': 'Phil', 'Ed Helms': 'Stu', 'Zach Galifianakis': 'Alan', 'Justin Bartha': 'Doug', 'Ken Jeong': 'Mr. Chow', 'Paul Giamatti': 'Kingsley', 'Mike Tyson': 'Mike Tyson', 'Jeffrey Tambor': 'Sid Garner', 'Mason Lee': 'Teddy', 'Jamie Chung': 'Lauren', 'Sasha Barrese': 'Tracy', 'Gillian Vigman': 'Stephanie', 'Aroon Seeboonruang': 'Monk', 'Nirut Sirichanya': 'Fohn', 'Yasmin Lee': 'Kimmy'}\"\r\ntt0411477,\"{'Ron Perlman': 'Hellboy', 'Selma Blair': 'Liz Sherman', 'Doug Jones': 'Abe Sapien /              Chamberlain /              Angel of Death', 'John Alexander': 'Johann Krauss /              Bethmoora Goblin', 'James Dodd': 'Johann Krauss', 'Seth MacFarlane': 'Johann       (voice)', 'Luke Goss': 'Prince Nuada', 'Anna Walton': 'Princess Nuala', 'Jeffrey Tambor': 'Tom Manning', 'John Hurt': 'Professor Broom', 'Brian Steele': 'Wink /              Cronie /              Spice Shop Troll /              Cathedral Head /              Fragglewump', 'Andrew Hefler': 'Agent Flint', 'Iván Kamarás': 'Agent Steel', 'Mike Kelly': 'Agent Marble', 'Jeremy Zimmermann': 'Auctioneer'}\"\r\ntt0144528,\"{'Eddie Murphy': 'Sherman Klump /              Buddy Love /              Granny Klump /              Mama Klump /              Papa Klump /              Young Papa Klump /              Ernie Klump /              Lance Perkins', 'Janet Jackson': 'Denise', 'Larry Miller': 'Dean Richmond', 'John Ales': 'Jason', 'Richard Gant': \"\"Denise's Father\"\", 'Anna Maria Horsford': \"\"Denise's Mother\"\", 'Melinda McGraw': 'Leanne Guilford', 'Jamal Mixon': 'Ernie Klump, Jr.', 'Gabriel Williams': 'Isaac', 'Chris Elliott': 'Restaurant Manager', 'Duffy Taylor': 'Restaurant Trainee', 'Earl Boen': 'Dr. Knoll', 'Nikki Cox': 'Bright Student', 'Freda Payne': 'Claudine', 'Sylvester Jenkins': 'Old Willie'}\"\r\ntt0096874,\"{'Michael J. Fox': 'Marty McFly /              Marty McFly Jr. /              Marlene McFly', 'Christopher Lloyd': 'Dr. Emmett Brown', 'Lea Thompson': 'Lorraine', 'Thomas F. Wilson': 'Biff Tannen /              Griff', 'Elisabeth Shue': 'Jennifer', 'James Tolkan': 'Strickland', 'Jeffrey Weissman': 'George McFly', 'Casey Siemaszko': '3-D', 'Billy Zane': 'Match', 'J.J. Cohen': 'Skinhead', 'Charles Fleischer': 'Terry', \"\"E'Casanova\"\": \"\"'Michael Jackson' Video Waiter       (as E. Casanova Evans)\"\", 'Jay Koch': \"\"'Ronald Reagan' Video Waiter\"\", 'Charles Gherardi': \"\"'Ayatollah Khomeini' Video Waiter\"\", 'Ricky Dean Logan': 'Data'}\"\r\ntt1743720,\"{'J.J. Abrams': 'Himself', 'Peter Berg': 'Himself', 'Paul Brennan': 'Himself', 'Noam Chomsky': 'Himself', 'Jimmy Kimmel': 'Himself', 'Rick Kurnit': 'Himself', 'Mark Crispin Miller': 'Himself', 'Ralph Nader': 'Himself', 'Brett Ratner': 'Himself', 'L.A. Reid': 'Himself       (as Antonio Reid)', 'Morgan Spurlock': 'Himself', 'Quentin Tarantino': 'Himself', 'Donald Trump': 'Himself', 'John Wells': 'Himself'}\"\r\ntt0849470,\"{'Gary Lundy': 'Adam Harris', 'Larry Miller': 'Mr. Frankfurt Dickwalder', 'Lea Thompson': 'Cathleen Harris', 'Tara Reid': 'Ellen Harris', 'Kayla Ewell': 'Cara', 'Talan Torriero': 'Scott', 'Chuck Carter': 'Tate', 'Taryn Southern': 'Isha', 'Lindsey Axelsson': 'Laura', 'Jessica Morris': 'Denise', 'Jackson Rathbone': 'Snippy', 'Clint Howard': 'Lionel Huffer', 'Russell Howard': 'Mark Sicki', 'Brett Claywell': 'Carl Smith', 'Derek Mio': 'Ralph Lee Cheng'}\"\r\ntt5801296,\r\ntt0099088,\"{'Michael J. Fox': 'Marty McFly /              Seamus McFly', 'Christopher Lloyd': 'Dr. Emmett Brown', 'Mary Steenburgen': 'Clara Clayton', 'Thomas F. Wilson': \"\"Buford 'Mad Dog' Tannen /              Biff Tannen\"\", 'Lea Thompson': 'Maggie McFly /              Lorraine McFly', 'Elisabeth Shue': 'Jennifer Parker', 'Matt Clark': 'Chester the Bartender', 'Richard Dysart': 'Barbwire Salesman', 'Pat Buttram': 'Jeb, Saloon Old-Timer #3', 'Harry Carey Jr.': 'Zeke, Saloon Old-Timer #2', 'Dub Taylor': 'Levi, Saloon Old-Timer #1', 'James Tolkan': 'Marshal James Strickland', 'Marc McClure': 'Dave McFly', 'Wendie Jo Sperber': 'Linda McFly', 'Jeffrey Weissman': 'George McFly'}\"\r\ntt0081505,\"{'Jack Nicholson': 'Jack Torrance', 'Shelley Duvall': 'Wendy Torrance', 'Danny Lloyd': 'Danny', 'Scatman Crothers': 'Hallorann', 'Barry Nelson': 'Ullman', 'Philip Stone': 'Grady', 'Joe Turkel': 'Lloyd', 'Anne Jackson': 'Doctor', 'Tony Burton': 'Durkin', 'Lia Beldam': 'Young Woman in Bath', 'Billie Gibson': 'Old Woman in Bath', 'Barry Dennen': 'Watson', 'David Baxt': 'Forest Ranger 1', 'Manning Redwood': 'Forest Ranger 2', 'Lisa Burns': 'Grady Daughter'}\"\r\ntt0330181,\"{'Mark Holton': 'John Wayne Gacy', 'Adam Baldwin': 'John Gacy, Sr.', 'Tom Waldman': 'Hal', 'Charlie Weber': 'Tom', 'Allison Lange': 'Gretchen', 'Edith Jefferson': 'Mother Gacy', 'Joleen Lutz': 'Kara Gacy', 'Scott Alan Henry': 'Young Gacy', 'Kenneth Swartz': 'Dave', 'Matt Farnsworth': 'Stu', 'Jer Adrianne Lelliott': 'Little Stevie       (as Jeremy Lelliot)', 'Joseph Sikora': 'Roger       (as Joe Sikora)', 'Oren Skoog': 'Jimmy', 'Joe Roncetti': 'Peter', 'Eddie Adams': 'Duane'}\"\r\ntt0390468,\"{'George Calil': \"\"Don 'Lars' Larson\"\", 'Wali Razaqi': 'Wali Zarif', 'Sunil Sadarangani': \"\"Sunil 'Sonny'\"\", 'Baba Jon': 'Rahman', 'General Dil Agha': 'Northern Alliance Commander', 'Dawood Zarif': 'Guard /              Gun Dealer 1', 'Zahir Zarif': 'Gun Dealer 2', 'Haroon Hadir': 'First Interview', 'Sher Alai': 'Second Interview', 'Sher Agah': 'Chief of Police', 'Shaw Mahmood': 'Guide at Airport', 'Nangilai': 'Man at Soccer Game', 'Ajmal Nasir': 'Hotel Manager', 'Zia Khadiri': 'Money-Store Owner', 'Sharif Omar': 'Man at Card Game'}\"\r\ntt0163025,\"{'Sam Neill': 'Dr. Alan Grant', 'William H. Macy': 'Paul Kirby', 'Téa Leoni': 'Amanda Kirby', 'Alessandro Nivola': 'Billy Brennan', 'Trevor Morgan': 'Eric Kirby', 'Michael Jeter': 'Udesky', 'John Diehl': 'Cooper', 'Bruce A. Young': 'Nash', 'Laura Dern': 'Ellie', 'Taylor Nichols': 'Mark', 'Mark Harelik': 'Ben Hildebrand', 'Julio Oscar Mechoso': 'Enrique Cardoso', 'Blake Michael Bryan': 'Charlie       (as Blake Bryan)', 'Sarah Danielle Madison': 'Cheryl', 'Linda Park': 'Hannah'}\"\r\ntt1627497,\"{'Fernanda Urrejola': 'Magdalena Reyes /              Esmeralda Martí', 'Álvaro Morales': 'Clemente Figueroa', 'Ignacia Allamand': 'Lietta Meyer', 'Héctor Noguera': 'Ronny Palma', 'Pablo Macaya': \"\"Lázaro 'Chaka' Moyano\"\", 'Catalina Guerra': \"\"Angélica 'Perla' Vargas\"\", 'Bárbara Ruiz-Tagle': \"\"Virginia 'Turquesa' Letelier\"\", 'Javiera Díaz de Valdés': \"\"Isidora 'Rubí' Baeza\"\", 'Marcela Del Valle': \"\"Blanca 'Amatista' Meyer\"\", 'Catalina Olcay': \"\"Liliana 'Zafiro' Escalante\"\", 'Paulo Brunetti': 'Valentino Ricci', 'Eduardo Paxeco': \"\"Sergio 'Tommy' Piña\"\", 'César Sepúlveda': 'Emmanuel Letelier', 'Nicolás Vigneaux': 'Moisés Moyano', 'Andrés Velasco': 'Aníbal Barahona'}\"\r\ntt0187738,\"{'Wesley Snipes': 'Blade', 'Kris Kristofferson': 'Whistler', 'Ron Perlman': 'Reinhardt', 'Leonor Varela': 'Nyssa', 'Norman Reedus': 'Scud', 'Thomas Kretschmann': 'Damaskinos', 'Luke Goss': 'Nomak', 'Matt Schulze': 'Chupa       (as Matthew Schulze)', 'Danny John-Jules': 'Asad       (as Danny John Jules)', 'Donnie Yen': 'Snowman', 'Karel Roden': 'Kounen', 'Marit Velle Kile': 'Verlaine', 'Tony Curran': 'Priest', 'Daz Crawford': 'Lighthammer', 'Santiago Segura': 'Rush'}\"\r\ntt0360717,\"{'Naomi Watts': 'Ann Darrow', 'Jack Black': 'Carl Denham', 'Adrien Brody': 'Jack Driscoll', 'Thomas Kretschmann': 'Captain Englehorn', 'Colin Hanks': 'Preston', 'Andy Serkis': 'Kong /              Lumpy', 'Evan Parke': 'Hayes', 'Jamie Bell': 'Jimmy', 'Lobo Chan': 'Choy', 'John Sumner': 'Herb', 'Craig Hall': 'Mike', 'Kyle Chandler': 'Bruce Baxter', 'William Johnson': 'Manny', 'Mark Hadlow': 'Harry', 'Geraldine Brophy': 'Maude'}\"\r\ntt3700392,\"{'Anuk Steffen': 'Heidi', 'Anna Schinz': 'Dete', 'Lilian Naef': 'Barbel', 'Bruno Ganz': 'Alpöhi', 'Peter Jecklin': 'Pfarrer', 'Christoph Gaugler': 'Senner', 'Quirin Agrippi': 'Geissenpeter', 'Rebecca Indermaur': 'Geissenpeterin', 'Monica Gubser': 'Grossmutter', 'Arthur Bühler': 'Dörfler', 'Marietta Jemmi': 'Frau im Dorf', 'Peter Lohmeyer': 'Sebastian', 'Katharina Schüttler': 'Fräulein Rottenmeier', 'Isabelle Ottmann': 'Klara', 'Jella Haase': 'Tinette'}\"\r\ntt1876517,\"{'Jon Heder': 'Fu       (voice)', 'Tom Arnold': 'Shifu       (voice)', 'Rebecca Black': 'Penny       (voice)', 'Claire Geare': 'Biggie       (voice)', 'Michael Clarke Duncan': 'Slash       (voice)'}\"\r\ntt0264734,\"{'Ben Affleck': 'Joseph       (voice)', 'Mark Hamill': 'Judah       (voice)', 'Richard Herd': 'Jacob       (voice)', 'Maureen McGovern': 'Rachel       (voice)', 'Jodi Benson': 'Asenath       (voice)', 'Judith Light': 'Zuleika       (voice)', 'James Eckhouse': 'Potiphar       (voice)', 'Richard McGonagle': 'Pharaoh       (voice)', 'David Campbell': 'Joseph       (singing voice)', 'Steven Weber': 'Simeon /              Slave Trader       (voice)', 'Dan Castellaneta': 'Auctioneer /              Horse Trader       (voice)', 'Rene Auberjonois': 'Butler       (voice)', 'Ken Hudson Campbell': 'Baker       (voice) (as Ken Campbell)', 'Tom Virtue': 'Reuben       (voice)', 'Jeff Bennett': 'Levi       (voice)'}\"\r\ntt1473801,\"{'Rollin Perry': \"\"Josh 'Spanky' Green\"\", 'Seth Cassell': 'Mert       (as Seth Adam Cassell)', 'Michelle Penick': 'Princess', 'Rana Davis': 'Strawberry', 'Maurice Constable': 'Mr. Clink', 'Lindsey Ahern': 'Pinky', 'Brent Anthony': 'Little Joe Joe', 'Teryl Brouillette': 'Ellen Green       (as Terry Brouillette)', 'Theresa Deveaux': 'Mama Love', 'Lola Forsberg': 'Leah', 'Elina Madison': 'Nancy', 'Jack Ross': 'Max       (as Matthew Ross)', 'T.J. Zale': 'Darlington', 'Giusy Castiglione': 'Dream Woman', 'Becky T. Bordo': 'Bikini Jane       (as Tahel Becky Bordo)'}\"\r\ntt2274064,\"{'Delay de la Beckwith': 'Himself', 'Jim Ingram': 'Himself', 'Donna Ladd': 'Herself', 'Jimmie Travis': 'Himself', 'Joe Harris': 'Himself', 'Harry Belafonte': 'Himself', 'Charles Evers': 'Himself', 'Myrlie Evers': 'Herself', 'Morgan Freeman': 'Himself', 'Joecephus Martin': 'Himself', 'John Lewis': 'Himself', 'Tbone Pruitt': 'Himself', 'Richard Barrett': 'Himself'}\"\r\n"
  },
  {
    "path": "data/metadata/clips.csv",
    "content": "videoid,year,clip_idx,clip_tot,upload_year,title,clip_name,imdbid\nSv-BxH3SVS8,2012.0,6,10,2019,Les Misérables,One Day More Scene,tt1707386\nIsZdfna1LKA,2012.0,8,10,2019,Les Misérables,Javert's Suicide Scene,tt1707386\ntdzX5AKWiDw,2019.0,9,10,2019,Downton Abbey,You Are the Future of Downton Scene,tt6398184\nmycAsRhAr_M,2019.0,8,10,2019,Downton Abbey,Til We Meet Again Scene,tt6398184\nWgXQnXPb-TA,2019.0,3,10,2019,Downton Abbey,Serving Staff Showdown Scene,tt6398184\nWgMhaDEPGXo,2019.0,5,10,2019,Downton Abbey,\"Goodnight, Mr. Branson Scene\",tt6398184\nHummNgSGn8k,2019.0,2,10,2019,Downton Abbey,Welcome to  Scene,tt6398184\n33uE1YctOf4,2019.0,10,10,2019,Downton Abbey,The Final Dance Scene,tt6398184\nbvl-DxX9N8g,2019.0,4,10,2019,Downton Abbey,The Royal Dinner Scene,tt6398184\nE0BY209ZNEY,2019.0,1,10,2019,Downton Abbey,The Royal Staff Takeover Scene,tt6398184\nq7S2ckr4IkM,2019.0,6,10,2019,Downton Abbey,For the Love of Me Scene,tt6398184\nfrZrAIZrOI8,2019.0,7,10,2019,Downton Abbey,Farewell to the Royal Staff Scene,tt6398184\nA-Ckh0slywY,2019.0,1,10,2019,Abominable,Meeting Everest Scene,tt6324278\nGU1zIn2BRN0,2019.0,9,10,2019,Abominable,Bridge Battle Scene,tt6324278\n0XLEGFSKVhs,2019.0,5,10,2019,Abominable,Jin's Sprint Scene,tt6324278\neNCK08cInIE,2019.0,6,10,2019,Abominable,Yak Attack! Scene,tt6324278\nLCj92toBBBE,2019.0,7,10,2019,Abominable,Magic Boat Chase Scene,tt6324278\nViQZwRewYl8,2019.0,2,10,2019,Abominable,Rooftop Escape Scene,tt6324278\nBtywn5TiBNQ,2019.0,10,10,2019,Abominable,Saving Everest Scene,tt6324278\nchvjkV0jRh8,2019.0,8,10,2019,Abominable,The Magic Violin Scene,tt6324278\nrRUVmTXpPyg,2019.0,4,10,2019,Abominable,Drone Attack Scene,tt6324278\nGZiLvbk8fL8,2019.0,3,10,2019,Abominable,Blueberry Bombs Scene,tt6324278\n88T3elu2wfE,2012.0,10,10,2019,Les Misérables,Epilogue Scene,tt1707386\nojoC-Kbzpo8,2012.0,7,10,2019,Les Misérables,Do You Hear The People Sing? Scene,tt1707386\ndeUgUoJ4z5I,2012.0,5,10,2019,Les Misérables,On My Own Scene,tt1707386\nocDL_b6BRE4,2012.0,4,10,2019,Les Misérables,In My Life/A Heart Full of Love Scene,tt1707386\n0BM-Q3BDrkw,2012.0,9,10,2019,Les Misérables,Empty Chairs at Empty Tables Scene,tt1707386\n9jfRE_FljrE,2012.0,2,10,2019,Les Misérables,The Confrontation Scene,tt1707386\niLN9GLRC5is,2012.0,3,10,2019,Les Misérables,Master of the House Scene,tt1707386\nulJXiB5i_q0,2012.0,1,10,2019,Les Misérables,I Dreamed A Dream Scene,tt1707386\nOk63vpXNhNc,2019.0,1,9,2020,Shazam!,New Superpowers Scene,tt0448115\nOfLhd_wJux8,2018.0,9,9,2020,Creed II,Drago Goes Down Scene,tt6343314\nTGghm3K1NXQ,2018.0,6,9,2020,Creed II,Broken Ribs Scene,tt6343314\nu0RqfETo2ok,2018.0,2,9,2020,Creed II,Heavyweight Championship Scene,tt6343314\noaKjYmfK_Pw,2018.0,5,9,2020,Creed II,Gotta Take the Fight Scene,tt6343314\noqGij9ylbAk,2018.0,1,9,2020,Creed II,Drago's Son Scene,tt6343314\nQT2Anb4MY38,2017.0,5,10,2020,Dunkirk,Fighting for the Wheel Scene,tt5013056\njbvQvJV_97M,2019.0,8,9,2020,Shazam!,Shazam vs. Dr. Sivana Scene,tt0448115\nUAYL8R2ZPuI,2019.0,2,9,2020,Shazam!,Convenience Store Robbery Scene,tt0448115\ng8pt9OoaPlY,2019.0,3,9,2020,Shazam!,Dr. Sivana Attacks Scene,tt0448115\nAONuDilRd5k,2019.0,6,9,2020,Shazam!,The Shazam Fam Scene,tt0448115\n_nSQhWq7etg,2019.0,7,9,2020,Shazam!,Fighting The Seven Deadly Sins Scene,tt0448115\n-W8pOz1fsD0,2019.0,5,9,2020,Shazam!,Playtime's Over Scene,tt0448115\nChIQpmBLPAo,2019.0,4,9,2020,Shazam!,Carnival of Sins Scene,tt0448115\nGC6ksHacdXI,2019.0,9,9,2020,Shazam!,Mister Mind Scene,tt0448115\nlsa5PDPgJmI,1994.0,7,10,2020,Blankman,Welcome to McDonald's Scene,tt0109288\nMGBHNeYbsbg,1994.0,2,10,2020,Blankman,The Pregnant Lady Scene,tt0109288\n-mXoZz1dqMQ,1994.0,10,10,2020,Blankman,The City's New Heroes Scene,tt0109288\nJgye_cEhfGQ,1994.0,3,10,2020,Blankman,Protecting the Neighborhood Scene,tt0109288\n-jpEsYBH3g4,1994.0,6,10,2020,Blankman,Blowing It Scene,tt0109288\nljAdSzBv0ug,1994.0,5,10,2020,Blankman,The Bank Heist Scene,tt0109288\nRFR3AJ-jE88,1994.0,1,10,2020,Blankman,Let the Lady Go Scene,tt0109288\nRLbry-3z8yQ,1994.0,8,10,2020,Blankman,Is This the End? Scene,tt0109288\nsM1I11qUM44,1994.0,9,10,2020,Blankman,The Jig is Up Scene,tt0109288\nRxwUv1BcPwg,1994.0,4,10,2020,Blankman,The Blank Wheel Scene,tt0109288\nsSc4Y4Z9lsk,2018.0,4,9,2020,Creed II,Drago's Challenge Scene,tt6343314\n9wCiCJ7KDs8,2018.0,7,9,2020,Creed II,The Rematch Begins Scene,tt6343314\nttiEgVcV-Xo,2018.0,3,9,2020,Creed II,Marry Me Scene,tt6343314\nb2MEP246DxY,2018.0,8,9,2020,Creed II,What's Your Name? Scene,tt6343314\nS3moqQqx3Nk,2017.0,9,10,2020,Dunkirk,Oil Blast Scene,tt5013056\nbgS0GPQhzHg,2017.0,8,10,2020,Dunkirk,Home Comes to Them Scene,tt5013056\nTIEtN-jVDbg,2017.0,7,10,2020,Dunkirk,The Bodies Come Back Scene,tt5013056\n2W3KDB0yHYM,2017.0,2,10,2020,Dunkirk,The First Bombing Scene,tt5013056\nK9j6xEBFek4,2017.0,4,10,2020,Dunkirk,The Night Bombing Scene,tt5013056\nc5mAaBl_qqk,2017.0,10,10,2020,Dunkirk,All We Did Is Survive Scene,tt5013056\nWygmbuU_78c,2017.0,3,10,2020,Dunkirk,Sinking the Medical Ship Scene,tt5013056\nX5_GpmLuea4,2017.0,1,10,2020,Dunkirk,Running to the Beach Scene,tt5013056\n7ycVIGqnLO8,2017.0,6,10,2020,Dunkirk,Dogfight over the English Channel Scene,tt5013056\ncg49Y3jpZsQ,2019.0,9,10,2019,Good Boys,Flying the Drone Home Scene,tt7343762\nNYRHTYWWiGU,2019.0,7,10,2019,Good Boys,Running Through Traffic Scene,tt7343762\nmlc2UyZdalQ,2019.0,1,10,2019,Good Boys,Kissing Practice Scene,tt7343762\n4-BWFsE_TQE,2019.0,8,10,2019,Good Boys,Frat House Fight Scene,tt7343762\ni_Rupd9NU4E,2019.0,3,10,2019,Good Boys,Citizen's Arrest! Scene,tt7343762\n_0gn0zQx4_s,2019.0,5,10,2019,Good Boys,Dislocated Arm Scene,tt7343762\ncV9dlsOzyVc,2019.0,6,10,2019,Good Boys,Stealing Beer Scene,tt7343762\nmcerWHb94yo,2019.0,10,10,2019,Good Boys,Thor's Song Scene,tt7343762\nuQ_nGVp6x6U,2019.0,2,10,2019,Good Boys,That's a Tampon Scene,tt7343762\nUECge-Vi8VA,2019.0,4,10,2019,Good Boys,My Parents' Weapons Scene,tt7343762\nj71oHN1i2pU,2019.0,9,10,2019,The Angry Birds Movie 2,Lava Ball Eruption Scene,tt6095472\nDXFN60x3vP4,2019.0,8,10,2019,The Angry Birds Movie 2,Great Balls of Ice Scene,tt6095472\nYvL_-Awg2gg,2019.0,10,10,2019,The Angry Birds Movie 2,Wittle Sisters Scene,tt6095472\nWzAHXnFWd5U,2019.0,7,10,2019,The Angry Birds Movie 2,Dance Off! Scene,tt6095472\ne198XToyAkk,2019.0,4,10,2019,The Angry Birds Movie 2,Piggy Gadgetland Scene,tt6095472\nA6d0qIZY3Hg,2019.0,2,10,2019,The Angry Birds Movie 2,Getting the Team Together Scene,tt6095472\n_bJYiiCvPW4,2019.0,3,10,2019,The Angry Birds Movie 2,Ice Ball Attack Scene,tt6095472\nWavZVQM3U00,2019.0,6,10,2019,The Angry Birds Movie 2,Bathroom Heist Scene,tt6095472\n480Hw45m9v8,2019.0,5,10,2019,The Angry Birds Movie 2,Eagle's Love Story Scene,tt6095472\nWncnbHD-JXI,2019.0,1,10,2019,The Angry Birds Movie 2,Frozen Paradise Scene,tt6095472\nMmKlIGkxGyM,2018.0,10,10,2019,The Grinch,I Stole Your Christmas Scene,tt2709692\neVmYZJQxawo,2018.0,8,10,2019,The Grinch,The Christmas Thief Scene,tt2709692\nHGZotWs54rU,2018.0,4,10,2019,The Grinch,The Quest for Reindeer Scene,tt2709692\nNjUtH1NBFyY,2018.0,3,10,2019,The Grinch,Lighting Whoville's Tree Scene,tt2709692\nDmXp6Pm-uLI,2018.0,9,10,2019,The Grinch,A Change of Heart Scene,tt2709692\n8coCtKWysGk,2018.0,5,10,2019,The Grinch,Grinch and the Guard Dog Scene,tt2709692\nBiPY5_H9EIw,2018.0,2,10,2019,The Grinch,Can't Escape Christmas Scene,tt2709692\nZhqHIrO4ePo,2018.0,6,10,2019,The Grinch,Whipped Cream & Sausages Scene,tt2709692\nXMGoOSCbul0,2018.0,1,10,2019,The Grinch,\"You're a Mean One, Mr. Grinch Scene\",tt2709692\n96pSGRvBg3I,2018.0,7,10,2019,The Grinch,Riding in Style Scene,tt2709692\n-r_-EnupRXo,2017.0,10,10,2019,mother!,Take My Heart Scene,tt5109784\nTcBlM3VLePM,2017.0,2,10,2019,mother!,Horrible Guests Scene,tt5109784\nnxc6kwBYFSM,2017.0,7,10,2019,mother!,Where's My Baby? Scene,tt5109784\nnXSfDMvXAxw,2017.0,8,10,2019,mother!,We Must Forgive Them Scene,tt5109784\neGXnEeW_KdA,2017.0,4,10,2019,mother!,The Police Raid Scene,tt5109784\nrQ3Qokn9t_w,2017.0,3,10,2019,mother!,Radicalized Fans Scene,tt5109784\niJDnG2RAlzk,2017.0,9,10,2019,mother!,Purged in Flame Scene,tt5109784\niPcAns5pKVw,2017.0,6,10,2019,mother!,The Agony of Birth Scene,tt5109784\niGsce-w4TtY,2017.0,5,10,2019,mother!,War Is Hell Scene,tt5109784\nlyd4tC8LH1s,2017.0,1,10,2019,mother!,Sibling Brutality Scene,tt5109784\n2LwWmJojqvM,1979.0,2,10,2019,La Cage aux Folles,The Parents' Reaction Scene,tt0077288\ntXhTaL04ByA,1979.0,5,10,2019,La Cage aux Folles,Just Like John Wayne Scene,tt0077288\nmBiT0g4TIYc,1979.0,10,10,2019,La Cage aux Folles,Escaping in Drag Scene,tt0077288\ncW7AkQihsa8,1979.0,4,10,2019,La Cage aux Folles,Buttering Toast Like a Man Scene,tt0077288\ndb1o8mTCBXU,1979.0,6,10,2019,La Cage aux Folles,Albin's Leaving Scene,tt0077288\nJYwvFPjJ7dM,1979.0,7,10,2019,La Cage aux Folles,A Real Butler Scene,tt0077288\n6RbMqRpNqmY,1979.0,1,10,2019,La Cage aux Folles,You Don't Love Me Anymore Scene,tt0077288\nRdpvBc4bahI,1979.0,9,10,2019,La Cage aux Folles,The Ruse is Ruined Scene,tt0077288\n9lqv-q15y1c,1979.0,8,10,2019,La Cage aux Folles,\"Laurent's \"\"Mother\"\" Scene\",tt0077288\nATNjQgr7LXc,1979.0,3,10,2019,La Cage aux Folles,He's Getting Married Scene,tt0077288\nTfKw3gvxff0,1973.0,9,10,2019,Don't Look Now,The Red Ghost in Fog Scene,tt0069995\nySINkZRkHi0,1973.0,3,10,2019,Don't Look Now,The Spectre of Venice Scene,tt0069995\nLWz_6w0paEg,1973.0,4,10,2019,Don't Look Now,Seance of Death Scene,tt0069995\nn-2Lxsj7sf4,1973.0,5,10,2019,Don't Look Now,The Church of Doom Scene,tt0069995\nJL_tj5M1o-c,1973.0,1,10,2019,Don't Look Now,Drowned in the Pond Scene,tt0069995\nr0iSxOsPGl8,1973.0,8,10,2019,Don't Look Now,Fetch Him! Scene,tt0069995\nHFTqyXV9Vio,1973.0,2,10,2019,Don't Look Now,The Blind Psychic Scene,tt0069995\nCMMzjgpnLGc,1973.0,6,10,2019,Don't Look Now,Fishing a Body Scene,tt0069995\nD2JzjzTWMxw,1973.0,7,10,2019,Don't Look Now,Murder Suspect Scene,tt0069995\n9zcAqShAXPo,1973.0,10,10,2019,Don't Look Now,Killer in Red Scene,tt0069995\nhtWhh0DIFgk,1973.0,2,10,2019,Serpico,Police Brutality Scene,tt0070666\n9_n15K7rv1Y,1973.0,1,10,2019,Serpico,Bleeding to Death Scene,tt0070666\nPOLkdKBw3LM,1973.0,5,10,2019,Serpico,\"I Love You, Paco! Scene\",tt0070666\n_1tCmEtAbnw,1973.0,9,10,2019,Serpico,Get Dead Cards Scene,tt0070666\n4WXN2HQ7PQ0,1973.0,10,10,2019,Serpico,The Knapp Commission Scene,tt0070666\nn0PS-QVcoJo,1973.0,7,10,2019,Serpico,What Kind of Shakedown Is This? Scene,tt0070666\nlYu_8OE3sCE,1973.0,8,10,2019,Serpico,The Last Drug Raid Scene,tt0070666\n0frXMGxB0Ko,1973.0,4,10,2019,Serpico,Where's the Money?! Scene,tt0070666\nfluKR9XbEjQ,1973.0,6,10,2019,Serpico,A Marked Man Scene,tt0070666\nmPDFATjS8l0,1973.0,3,10,2019,Serpico,You're Firing Without Looking? Scene,tt0070666\n-1W4xHNKvAk,2015.0,3,7,2019,Get Hard,\"Carlos, Leroy, and Dante Scene\",tt2561572\nx4IKGG_2L6I,2015.0,6,7,2019,Get Hard,First Time Holding a Gun Scene,tt2561572\nPvMk6sjZlTU,2015.0,7,7,2019,Get Hard,Mayo and Chocolate Scene,tt2561572\nRaicjdiN8ag,2015.0,1,7,2019,Get Hard,I Need Your Help Scene,tt2561572\nM7CL4l-bu68,2015.0,4,7,2019,Get Hard,Boyz N the Hood Scene,tt2561572\nThIBEo7fsSQ,2015.0,5,7,2019,Get Hard,Gangbanger Accountant Scene,tt2561572\ndhJPm7NolLc,2015.0,2,7,2019,Get Hard,Mad Dog Face Scene,tt2561572\nMgL18hwJZ0A,2005.0,7,10,2019,Munich,Grenade Assassination Scene,tt0408306\nZvvQ3CLveAA,2005.0,2,10,2019,Munich,Are You Wael Zwaiter? Scene,tt0408306\nPMdokZIn2_s,2005.0,3,10,2019,Munich,Calling in the Kill Scene,tt0408306\nzuFtCz663GQ,2005.0,9,10,2019,Munich,Love and Terror Scene,tt0408306\nCToeYdx6SsU,2005.0,4,10,2019,Munich,The Cross-Dressing Raid Scene,tt0408306\n0bR6pUOhZo4,2005.0,10,10,2019,Munich,Did I Commit Murder? Scene,tt0408306\nWzmAy1QyIH8,2005.0,1,10,2019,Munich,Black September Scene,tt0408306\nw3trh6DMpHI,2005.0,8,10,2019,Munich,Sniper Misfire Scene,tt0408306\nYoAV0xF7A2U,2005.0,6,10,2019,Munich,Israel vs. Palestine Scene,tt0408306\nazRJpVsJ7AM,2005.0,5,10,2019,Munich,Put the Gun Down! Scene,tt0408306\nhck3C2VMRzk,2019.0,2,10,2019,Dora and the Lost City of Gold,\"Swiper, No Swiping! Scene\",tt7547410\nYI8DWdXhg5Q,2019.0,3,10,2019,Dora and the Lost City of Gold,The Poo Hole Song Scene,tt7547410\nAjh84X59SH4,2019.0,5,10,2019,Dora and the Lost City of Gold,Sluice Gate Slide Scene,tt7547410\nNhj2rSOUjwU,2019.0,10,10,2019,Dora and the Lost City of Gold,Ending Dance Scene,tt7547410\nrQABiLDqdVc,2019.0,9,10,2019,Dora and the Lost City of Gold,Angering the Gods Scene,tt7547410\nvXQlXYcAksI,2019.0,8,10,2019,Dora and the Lost City of Gold,The Final Test Scene,tt7547410\n4IbNz68R49c,2019.0,6,10,2019,Dora and the Lost City of Gold,Boots to the Rescue Scene,tt7547410\nmPWo1Dsti3c,2019.0,7,10,2019,Dora and the Lost City of Gold,Spike Trap Scene,tt7547410\n8mDtsn0yrsA,2019.0,4,10,2019,Dora and the Lost City of Gold,Spore Field Scene,tt7547410\nF9vKkW_NNjE,2019.0,1,10,2019,Dora and the Lost City of Gold,Today's Adventure Scene,tt7547410\n36FYEbRBy48,1974.0,6,10,2019,Death Wish,What Else You Got? Scene,tt0071402\ncj5Mp68u2tY,1996.0,5,10,2019,Escape From L.A.,Shot and Sheared Scene,tt0116225\na3HOCIXroqQ,1996.0,7,10,2019,Escape From L.A.,Surfboard Car Chase Scene,tt0116225\nBMlHiDzHkSk,1996.0,6,10,2019,Escape From L.A.,Basketball to the Death Scene,tt0116225\n8OilisaAv0I,1996.0,3,10,2019,Escape From L.A.,The Surgeon General Scene,tt0116225\n0tro-o0fOk4,1996.0,10,10,2019,Escape From L.A.,Shutting Down the Earth Scene,tt0116225\n_X8bBE1M994,1996.0,8,10,2019,Escape From L.A.,Hang Glider Assault Scene,tt0116225\n4N_0iP8TSRo,1996.0,2,10,2019,Escape From L.A.,Bangkok Rules Scene,tt0116225\n40p6dkKil_8,1996.0,9,10,2019,Escape From L.A.,Helicopter Explosion Scene,tt0116225\nWCf36CQxBfY,1996.0,1,10,2019,Escape From L.A.,Torpedo Sub to L.A. Scene,tt0116225\naEIaR1nlEoo,1996.0,4,10,2019,Escape From L.A.,Fun Gun Injection Scene,tt0116225\nDWFZ7v72HjA,1974.0,8,10,2019,Death Wish,Draw! Scene,tt0071402\nsyjdYGc2A20,1974.0,1,10,2019,Death Wish,Followed Home Scene,tt0071402\nS8avj5d8G6s,1974.0,10,10,2019,Death Wish,The Vigilante's Still Out There Scene,tt0071402\nKbb4g4m68sc,1974.0,9,10,2019,Death Wish,Get a Transfer Scene,tt0071402\nMfV5DOQ9zac,1974.0,4,10,2019,Death Wish,\"Wrong Alley, Right Time Scene\",tt0071402\nb_Wpqni4yMQ,1974.0,3,10,2019,Death Wish,Stalked in the Park Scene,tt0071402\nL8JRx-zXz7w,1974.0,7,10,2019,Death Wish,Shot and Bleeding Scene,tt0071402\nBYN41wGmP8U,1974.0,5,10,2019,Death Wish,Subway Shooting Scene,tt0071402\nRkaM5GL1LTc,1974.0,2,10,2019,Death Wish,Cowboy Stunt Show Scene,tt0071402\nqDBjp7fdIVw,1988.0,10,10,2019,Crocodile Dundee II,Dundee Gets Shot Scene,tt0092493\npikL2Z9sykc,1988.0,5,10,2019,Crocodile Dundee II,Outback Shootout Scene,tt0092493\n2m2vmTtcCM8,1988.0,4,10,2019,Crocodile Dundee II,Better Than Average Scene,tt0092493\nQCkiT56VSR4,1988.0,2,10,2019,Crocodile Dundee II,Clint Eastwood Scene,tt0092493\ncrbN4daV5IU,1988.0,6,10,2019,Crocodile Dundee II,Booby Trap Scene,tt0092493\nJ7kO-7jEveA,1988.0,9,10,2019,Crocodile Dundee II,Bushfire Showdown Scene,tt0092493\nqFKVhx9wBZ4,1988.0,8,10,2019,Crocodile Dundee II,Crocodile Attack Scene,tt0092493\nFX1FiZxQo7k,1988.0,1,10,2019,Crocodile Dundee II,The Jumper Scene,tt0092493\ng05nAeO-uKY,1988.0,7,10,2019,Crocodile Dundee II,Animal Attack Scene,tt0092493\nVmCRT88HTWE,1988.0,3,10,2019,Crocodile Dundee II,Hung from a Rooftop Scene,tt0092493\n6JfQ82WowC8,1981.0,5,10,2019,My Bloody Valentine,Shower of Death Scene,tt0082782\nf06qimixOOI,1981.0,6,10,2019,My Bloody Valentine,Nail Gun Kill Scene,tt0082782\nrS_HIFTV7wM,1981.0,9,10,2019,My Bloody Valentine,Minecart Murder Scene,tt0082782\nEodzQpkDFYo,1981.0,4,10,2019,My Bloody Valentine,Peak-a-Boo Killing Scene,tt0082782\nuifDWAJ6rBY,1981.0,1,10,2019,My Bloody Valentine,Tunnel of Love Scene,tt0082782\nQfSL-PSHTkQ,1981.0,2,10,2019,My Bloody Valentine,This Town is Cursed Scene,tt0082782\n21Vg94SOqk0,1981.0,7,10,2019,My Bloody Valentine,Messy Hanging Scene,tt0082782\nacZDS8WDtHs,1981.0,3,10,2019,My Bloody Valentine,Laundromat Lashing Scene,tt0082782\nPku1UxtmkLM,1981.0,8,10,2019,My Bloody Valentine,Pickaxe to the Gut Scene,tt0082782\n7H3XPETdtmc,1981.0,10,10,2019,My Bloody Valentine,The Killer Revealed Scene,tt0082782\n3kvqIswrPhg,1973.0,1,10,2019,Charlotte's Web,There Must Be Something More Scene,tt0070016\nxE4RRKaCifU,1973.0,6,10,2019,Charlotte's Web,A Rat's Paradise Scene,tt0070016\n6HboqAtIPA0,1973.0,10,10,2019,Charlotte's Web,Charlotte's Daughters Scene,tt0070016\nkf1bu5sUXaU,1973.0,5,10,2019,Charlotte's Web,A Veritable Smorgasbord Scene,tt0070016\nnCm4_MJstGQ,1973.0,8,10,2019,Charlotte's Web,A Spider's Life Scene,tt0070016\nSaRtVS1Fx1Q,1973.0,7,10,2019,Charlotte's Web,Zuckerman's Famous Pig Scene,tt0070016\nrPh94cOW-MI,1973.0,9,10,2019,Charlotte's Web,Charlotte's Last Song Scene,tt0070016\nYHvTfLaOREg,1973.0,2,10,2019,Charlotte's Web,I Can Talk! Scene,tt0070016\n__7NUrkFirA,1973.0,4,10,2019,Charlotte's Web,Some Pig Scene,tt0070016\nqQjdOtebYns,1973.0,3,10,2019,Charlotte's Web,Chin Up! Scene,tt0070016\nOqyvMY1fcr4,1975.0,10,10,2019,Nashville,It Don't Worry Me Scene,tt0073440\ndbX-ekoWGWE,1975.0,7,10,2019,Nashville,I'm Easy Scene,tt0073440\nUVOJk8TFwpQ,1975.0,1,10,2019,Nashville,Highway Pileup Scene,tt0073440\nktCIr_DMGOI,1975.0,9,10,2019,Nashville,Barbara Jean's Last Song Scene,tt0073440\nJrn-OprEMLI,1975.0,5,10,2019,Nashville,An American Junkyard Scene,tt0073440\nhT_G4j4nI-8,1975.0,8,10,2019,Nashville,Go Finish the Show Scene,tt0073440\noNpeuCWJgCc,1975.0,4,10,2019,Nashville,Keep A-Goin' Scene,tt0073440\neclUi6kVFcM,1975.0,3,10,2019,Nashville,\"Who Was That, Babe? Scene\",tt0073440\nfO8fKHbg4kw,1975.0,2,10,2019,Nashville,\"Where You Goin', Tommy Brown? Scene\",tt0073440\nmr1bVID2qao,1975.0,6,10,2019,Nashville,On-Stage Breakdown Scene,tt0073440\nclDZPzwANeE,2018.0,9,10,2019,The Mustang,They're Ending the Program Scene,tt5952594\nhOH-oOCfsX4,2018.0,8,10,2019,The Mustang,Bucking Bronco Scene,tt5952594\n2qyJ5r7Wink,2018.0,10,10,2019,The Mustang,Set Free Scene,tt5952594\n_wkTjOjTafw,2018.0,3,10,2019,The Mustang,Finally Friends Scene,tt5952594\n4ZiwLxnl_9k,2018.0,1,10,2019,The Mustang,Punching a Mustang Scene,tt5952594\nlGAADj8laqo,2018.0,6,10,2019,The Mustang,Someday I'll Make It up to You Scene,tt5952594\ncpZIiyp8juU,2018.0,2,10,2019,The Mustang,Thunderstorm Scene,tt5952594\n23uAYGDpS_I,2018.0,4,10,2019,The Mustang,Anger Management Scene,tt5952594\nxSJaxpJHf-s,1997.0,2,10,2019,Batman & Robin,\"Stay Cool, Bird Boy Scene\",tt0118688\nerE6UlOi3E0,1997.0,5,10,2019,Batman & Robin,Catching Cold Scene,tt0118688\nUIxwyNULzdk,1997.0,8,10,2019,Batman & Robin,Tell Me and I'll Kiss You Scene,tt0118688\nMGJlq-gjQj8,1997.0,7,10,2019,Batman & Robin,vs. Bane & Poison Ivy Scene,tt0118688\nOE7aSKZDjTo,1997.0,10,10,2019,Batman & Robin,Take Two and Call Me in the Morning Scene,tt0118688\nZbmc8C3GaC8,2018.0,5,10,2019,The Mustang,My Baby Girl Scene,tt5952594\nL6w-80CFfAs,1997.0,1,10,2019,Batman & Robin,The Iceman Cometh Scene,tt0118688\ngSG9bZu1NtM,1997.0,6,10,2019,Batman & Robin,Arkham Asylum Break Out Scene,tt0118688\nZPDbP3gms30,2018.0,7,10,2019,The Mustang,Prison Shanking Scene,tt5952594\ngnallHWgupY,1997.0,4,10,2019,Batman & Robin,Bat Credit Card Scene,tt0118688\nk6dRH6fO3Xw,1997.0,9,10,2019,Batman & Robin,Let's Kick Some Ice Scene,tt0118688\n73Pm3rkTzb0,1997.0,3,10,2019,Batman & Robin,I'm Poison Scene,tt0118688\nes2xkV9Be20,2013.0,6,10,2019,Police Story: Lockdown,Wei's Story Scene,tt2599716\nBrGfzBJW-Do,2013.0,9,10,2019,Police Story: Lockdown,Your Life Or Your Daughter's Scene,tt2599716\nIMlPpjJlzFA,2013.0,10,10,2019,Police Story: Lockdown,Light At the End of the Tunnel Scene,tt2599716\nZyXHxrg-zTA,2013.0,5,10,2019,Police Story: Lockdown,Cage Match to Freedom Scene,tt2599716\nYbM3eHylkqY,2013.0,1,10,2019,Police Story: Lockdown,Hostage Scene,tt2599716\no-HlGWzIqec,2013.0,3,10,2019,Police Story: Lockdown,Fight or Die Scene,tt2599716\nyUVhyWMVx-A,2013.0,4,10,2019,Police Story: Lockdown,Down The Barrel Scene,tt2599716\nVP8hyYS5WjU,2013.0,2,10,2019,Police Story: Lockdown,Breaking Free Scene,tt2599716\n2xbv4AnWS3Q,2013.0,8,10,2019,Police Story: Lockdown,Storming The Fortress Scene,tt2599716\noMH9kIyIl1I,2019.0,8,10,2019,Yesterday,Help! Scene,tt8079248\n5EN4MulDX_A,2019.0,3,10,2019,Yesterday,Beatles Medley Scene,tt8079248\n5VgRuLQgeSE,2019.0,1,10,2019,Yesterday,Playing  Scene,tt8079248\nT16_n7praO4,2013.0,7,10,2019,Police Story: Lockdown,Kill Me Scene,tt2599716\nQ_UdYBBk9XI,2019.0,4,10,2019,Yesterday,Back in the USSR Scene,tt8079248\nXDlC8NyBBro,2019.0,2,10,2019,Yesterday,Let It Be Scene,tt8079248\n56v74zFOV58,2019.0,10,10,2019,Yesterday,Giving The Beatles to the World Scene,tt8079248\nyyPkV_leKEY,2019.0,7,10,2019,Yesterday,Wake Up and Love Me Scene,tt8079248\nPIHPbvviS2w,2019.0,5,10,2019,Yesterday,Ed Sheeran vs. The Beatles Scene,tt8079248\n0ONU_H0EjIg,2019.0,9,10,2019,Yesterday,John Lennon Scene,tt8079248\nSrvRkUwIFfk,2019.0,6,10,2019,Yesterday,Not a One-Night Stand Scene,tt8079248\n5Svd15hqUfs,2018.0,8,10,2019,Robin Hood,Medieval Riots Scene,tt4532826\nFGWPKiI0YJQ,2018.0,2,10,2019,Ocean's 8,The Plan Scene,tt5164214\n1VEMit7JERo,2018.0,8,10,2019,Ocean's 8,Welcome to the Team Scene,tt5164214\n_AElcgYtxpA,2018.0,5,10,2019,Robin Hood,Horse-Carriage Death Race Scene,tt4532826\n0tnKF_qcXTo,2018.0,4,10,2019,Robin Hood,Treasure Heist Scene,tt4532826\nV9GnOAfI4w4,2018.0,2,10,2019,Robin Hood,He's My Son! Scene,tt4532826\ntMcUZSJ3xDY,2018.0,1,10,2019,Robin Hood,Robin vs. Little John Scene,tt4532826\nO9Q_5-rAw_k,2018.0,3,10,2019,Robin Hood,Training a Legend Scene,tt4532826\n6hUiaXXj_Hg,2018.0,6,10,2019,Robin Hood,Rooftop Horse Chase Scene,tt4532826\n6LyYxpkxILE,2018.0,10,10,2019,Robin Hood,Two-Faced Sheriff of Nottingham Scene,tt4532826\nOe_cBDzqBUI,2018.0,9,10,2019,Robin Hood,Killing the Sheriff Scene,tt4532826\nwTf4njh9TnE,2018.0,7,10,2019,Robin Hood,This Is Our Crusade Scene,tt4532826\nQsP5Y1-eUIM,2018.0,10,10,2019,Ocean's 8,All the Necklaces Scene,tt5164214\nHiPRBsFF-zU,2018.0,7,10,2019,Ocean's 8,Insurance Fraud Investigator Scene,tt5164214\nvBtG9eqgf2Q,2018.0,3,10,2019,Ocean's 8,Copying the Necklace Scene,tt5164214\nCgwNoOUtr7s,2018.0,4,10,2019,Ocean's 8,Dirty Rotten Scoundrel Scene,tt5164214\n7Wyjo_hrIbM,2018.0,5,10,2019,Ocean's 8,Stealing the Necklace Scene,tt5164214\niaTG4JflfqM,2018.0,9,10,2019,Ocean's 8,Framing the Ex Scene,tt5164214\n1CTjGKT-hDY,2018.0,6,10,2019,Ocean's 8,Stripping the Diamonds Scene,tt5164214\nOkBaZLq7gnU,2018.0,1,10,2019,Ocean's 8,Con Artistry Scene,tt5164214\nZhGme4W06Kk,1964.0,7,11,2019,Topkapi,Wrestling Match Scene,tt0058672\nUa4pj7Sxy-8,1964.0,5,11,2019,Topkapi,A Clever Deduction Scene,tt0058672\n5LvcBgWzjwc,1964.0,10,11,2019,Topkapi,Stealing the Dagger Scene,tt0058672\nWbFri7eX_YA,1964.0,4,11,2019,Topkapi,A Nymphomaniac Scene,tt0058672\nIzp0m24gYRU,1964.0,11,11,2019,Topkapi,A Little Bird Told Me Scene,tt0058672\n5hriUO428pw,1964.0,9,11,2019,Topkapi,The Heist Begins Scene,tt0058672\nvITX2N0hpYE,1964.0,6,11,2019,Topkapi,Sofa Bet Scene,tt0058672\nJfsgeCwAYEM,1964.0,1,11,2019,Topkapi,It Can Be Done! Scene,tt0058672\n9ZBPZ4b5LRw,1964.0,8,11,2019,Topkapi,Crossing the Roof Scene,tt0058672\n55uK9Lg3TaY,1964.0,2,11,2019,Topkapi,The Floor-Mounted Alarm Scene,tt0058672\nhIokX-nhQd8,1964.0,3,11,2019,Topkapi,Interrogation Scene,tt0058672\n6nmLldKD8fw,2013.0,4,10,2019,Ip Man: The Final Fight,Fighting Master Ng Scene,tt2495118\nnEAgLZRGV98,2013.0,5,10,2019,Ip Man: The Final Fight,The Lion Dance Scene,tt2495118\nJKPRgXq8K1E,2013.0,7,10,2019,Ip Man: The Final Fight,High on Kung Fu Scene,tt2495118\nAvNNkDEqjdQ,2013.0,1,10,2019,Ip Man: The Final Fight,Unassailable Master Scene,tt2495118\nFo16J2G4bvU,2013.0,9,10,2019,Ip Man: The Final Fight,Rumble in the Rain Scene,tt2495118\neUGtEOY5ZLE,2013.0,10,10,2019,Ip Man: The Final Fight,Bruce Lee & the Future of Wing Chun Scene,tt2495118\nY7DGxkezqSc,2013.0,8,10,2019,Ip Man: The Final Fight,Meat Hooks vs. Martial Arts Scene,tt2495118\nxjYdRu4FiyA,2013.0,6,10,2019,Ip Man: The Final Fight,Unhappy New Year Scene,tt2495118\nvcURIKX8710,2013.0,3,10,2019,Ip Man: The Final Fight,Gang Fight Scene,tt2495118\nkurx75GAz74,2013.0,2,10,2019,Ip Man: The Final Fight,Shimmering Singer Scene,tt2495118\neLKbRagkB7M,2018.0,7,10,2019,What Men Want,How Was That? Scene,tt7634968\nhF_9GQFISow,2019.0,3,10,2019,What Men Want,How Men Think Scene,tt7634968\ntaOda6ZwWyw,2018.0,9,10,2019,What Men Want,Cheating Husbands Scene,tt7634968\nfhK8qpO-iD4,2018.0,10,10,2019,What Men Want,Kiss My Black Ass! Scene,tt7634968\n08cPFt1GzBs,2018.0,4,10,2019,What Men Want,The Sexy Neighbor Scene,tt7634968\nDys_AAhlGqU,2018.0,5,10,2019,What Men Want,Jamal's Balls Scene,tt7634968\npWfB7jrCgxk,2018.0,8,10,2019,What Men Want,Sexist & Racist Boss Scene,tt7634968\naNbtnYXp9-k,2019.0,1,10,2019,What Men Want,You Have a Condom on Your Back Scene,tt7634968\nKDXK5R3f01I,2019.0,2,10,2019,What Men Want,Men's Thoughts Scene,tt7634968\n75k4CoAyT4I,2018.0,6,10,2019,What Men Want,Shooting for Love Scene,tt7634968\nR76ux4iCRzI,2018.0,10,10,2019,Kin,Gateway to Another World Scene,tt6017942\nQKbA0PxeoaM,2018.0,5,10,2019,Kin,Slippery When Wet Scene,tt6017942\nzwLOflhZOBg,2018.0,7,10,2019,Kin,Holographic Crime Scene,tt6017942\n4xtCQLbXDqY,2018.0,8,10,2019,Kin,Get Away From My Brother! Scene,tt6017942\nzjXn9UGZt4o,2018.0,3,10,2019,Kin,Strip Club Fight Scene,tt6017942\ncXlRo6pJ9ig,2018.0,2,10,2019,Kin,Gangland Shooting Scene,tt6017942\n7rYqBdJdnqo,2018.0,6,10,2019,Kin,Robbing Gangsters Scene,tt6017942\nKTIw9F3TY88,2018.0,9,10,2019,Kin,You're One of Us Scene,tt6017942\ngp6FX1H99NA,2018.0,1,10,2019,Kin,The Laser Gun Scene,tt6017942\nA5CndWt2xrY,2018.0,4,10,2019,Kin,Field Testing Scene,tt6017942\n_YMLnL33X78,1954.0,5,12,2019,The Barefoot Contessa,Maria Had It Scene,tt0046754\nPrBVgtAeNhE,1954.0,8,12,2019,The Barefoot Contessa,You're a Liar Scene,tt0046754\n6oxCZ2CyGII,1954.0,10,12,2019,The Barefoot Contessa,You Are Not a Woman Scene,tt0046754\nx_6ZpxB4xIc,1954.0,2,12,2019,The Barefoot Contessa,When Harry Met Maria Scene,tt0046754\n8Q2WgdOSfms,1954.0,12,12,2019,The Barefoot Contessa,Posing for a Statue Scene,tt0046754\ni07yEczcujQ,1954.0,9,12,2019,The Barefoot Contessa,Maria On Display Scene,tt0046754\nq9sjo2J6hIk,1954.0,11,12,2019,The Barefoot Contessa,Maria Dances Scene,tt0046754\nd35M7d-E_PY,1954.0,3,12,2019,The Barefoot Contessa,A Lot of Talent Scene,tt0046754\nEoikWLSsmRk,1954.0,7,12,2019,The Barefoot Contessa,I'm Drunk Scene,tt0046754\nzUCWPJk-XHk,1954.0,6,12,2019,The Barefoot Contessa,What a Business Scene,tt0046754\ncJyhEAxnQ-U,1954.0,4,12,2019,The Barefoot Contessa,I Hate Shoes Scene,tt0046754\n-VnQ_KpOBm4,1954.0,1,12,2019,The Barefoot Contessa,Funeral for an Actress Scene,tt0046754\nb2P-oU216V4,2010.0,6,10,2019,Megamind,Titan's Rage Scene,tt1001526\nMuG157PWMWI,2010.0,5,10,2019,Megamind,Stalker Superhero Scene,tt1001526\nUayJYYeMANA,2010.0,9,10,2019,Megamind,Metro Man Returns Scene,tt1001526\nsvwcgrDZVPw,2010.0,3,10,2019,Megamind,Copper Drains My Powers! Scene,tt1001526\n-wwDqsmUkxQ,2016.0,9,10,2019,Ip Man 3,Fight For Wing Chun Scene,tt2888046\nnl5l8Vn3Syc,2016.0,3,10,2019,Ip Man 3,Two Against Many Scene,tt2888046\na_hsjTExzbw,2010.0,8,10,2019,Megamind,Making An Entrance Scene,tt1001526\nQ7r3HIkBJcg,2010.0,2,10,2019,Megamind,Dastardly Death Devices Scene,tt1001526\nGNAJWwqr8cM,2010.0,7,10,2019,Megamind,Metro Man Lives! Scene,tt1001526\ndwufX9GKI_4,2010.0,4,10,2019,Megamind,Training Titan Scene,tt1001526\nzeGRvFbWbz8,2010.0,1,10,2019,Megamind,Baby  Scene,tt1001526\nFIGj7z-7olo,2016.0,5,10,2019,Ip Man 3,Saving His Son Scene,tt2888046\nAbb6BQgz0N4,2016.0,10,10,2019,Ip Man 3,One Inch Punch Scene,tt2888046\n2Q7wnttjQgw,2010.0,10,10,2019,Megamind,Megamind vs. Titan Scene,tt1001526\nVMGKsJi34Ac,2016.0,4,10,2019,Ip Man 3,Shipyard Scuffle Scene,tt2888046\nO6Ap5AtXFbg,2016.0,8,10,2019,Ip Man 3,Fight For Fame Scene,tt2888046\nPhQsxcbo6gk,2016.0,7,10,2019,Ip Man 3,Three Minute Fight Scene,tt2888046\nW-KxBQyVfc0,2016.0,1,10,2019,Ip Man 3,Meeting Bruce Lee Scene,tt2888046\nb_fKzher8QQ,2016.0,6,10,2019,Ip Man 3,Elevator Fight Scene,tt2888046\n3WksbH_r10U,2016.0,2,10,2019,Ip Man 3,Saving the Principal Scene,tt2888046\n1SPMnqTUu1A,2013.0,10,10,2019,Turbo,Race to the Finish Scene,tt1860353\nVuUzda9kvJA,2013.0,3,10,2019,Turbo,The Shell Crusher Scene,tt1860353\nspy6L78o3-A,2013.0,8,10,2019,Turbo,Pit Stop Pep Talk Scene,tt1860353\n_Hxk9-WNdGQ,2013.0,2,10,2019,Turbo,Fast & Furious Race Scene,tt1860353\ngH1kstAfb5g,2013.0,7,10,2019,Turbo,Your Driver Is A Snail? Scene,tt1860353\nXUcN9bf_jP0,2013.0,5,10,2019,Turbo,The Great Snail Race Scene,tt1860353\npvACjy-tYFE,2013.0,1,10,2019,Turbo,vs. Evil Mower Scene,tt1860353\nJkrovwTh2rw,2013.0,4,10,2019,Turbo,Snail vs. Crows Scene,tt1860353\nlJf8EW9800o,2013.0,9,10,2019,Turbo,Broken Shell Scene,tt1860353\nj0c_RQDfjSM,2013.0,6,10,2019,Turbo,High Wire Race Scene,tt1860353\nMTSpAVqgSso,2011.0,9,10,2019,Ip Man 2,Boxer vs. Martial Artist Scene,tt1386932\nrTy_mgJIIrk,2011.0,10,10,2019,Ip Man 2,Wing Chun Wins Scene,tt1386932\n-ZJZF6PuwxE,2011.0,1,10,2019,Ip Man 2,Ip Man's First Student Scene,tt1386932\n8TTWKlJdWVE,2011.0,6,10,2019,Ip Man 2,Let's Give Them Something to Scream About Scene,tt1386932\nCyGOqLQTww0,2011.0,3,10,2019,Ip Man 2,Fighting Ten Men At Once Scene,tt1386932\n9aR0JkmZLk0,2011.0,8,10,2019,Ip Man 2,Hung Over Scene,tt1386932\nXkvSrgngUrw,2011.0,5,10,2019,Ip Man 2,Tabletop Duel Scene,tt1386932\n8kcd603M8vA,2011.0,2,10,2019,Ip Man 2,Meat Cleaver Fight Scene,tt1386932\nSajgVNIRdn8,2011.0,4,10,2019,Ip Man 2,Thank You for Letting Me Win Scene,tt1386932\nrA8NAlaMgPo,2011.0,7,10,2019,Ip Man 2,Hung vs. Twister Scene,tt1386932\nTXlioVAN41o,1989.0,2,10,2019,Friday the 13th: Jason Takes Manhattan,Seductive Anatomy Lesson Scene,tt0097388\nhktlkG0QuKY,1989.0,9,10,2019,Friday the 13th: Jason Takes Manhattan,Jason vs. New York Scene,tt0097388\nb8t5kX7k0vQ,1989.0,3,10,2019,Friday the 13th: Jason Takes Manhattan,Killer Dance Moves Scene,tt0097388\nCflcJ-HSA_Y,1989.0,8,10,2019,Friday the 13th: Jason Takes Manhattan,Subway Chase Scene,tt0097388\nVhYxVXimdIw,1989.0,5,10,2019,Friday the 13th: Jason Takes Manhattan,Jason Says No to Drugs Scene,tt0097388\nU74NUVSKuP0,1989.0,4,10,2019,Friday the 13th: Jason Takes Manhattan,Murder Caught on Tape Scene,tt0097388\n-vT2ztIXioo,1989.0,1,10,2019,Friday the 13th: Jason Takes Manhattan,Two for One Slaying Scene,tt0097388\no6tz9pga4H4,1989.0,6,10,2019,Friday the 13th: Jason Takes Manhattan,Knockout! Scene,tt0097388\njtSnHOkSJxM,1989.0,10,10,2019,Friday the 13th: Jason Takes Manhattan,Jason vs. Toxic Waste Scene,tt0097388\nGdp4SEfQzy8,1989.0,7,10,2019,Friday the 13th: Jason Takes Manhattan,Drowned in Toxic Waste Scene,tt0097388\nAVxDyv1h9Pw,2010.0,9,10,2019,Ip Man,Cotton Factory Brawl Scene,tt1220719\nz1hLLDMkdlM,2010.0,3,10,2019,Ip Man,vs. Master Shin Scene,tt1220719\nKv9ygN2B8WU,2010.0,6,10,2019,Ip Man,vs. 10 Black Belts Scene,tt1220719\naXYTDZr_rmU,2010.0,1,10,2019,Ip Man,vs. Master Lin Scene,tt1220719\nZ2SdWJJWe4I,2010.0,2,10,2019,Ip Man,Challenging the Masters Scene,tt1220719\nciue6Puy53s,2010.0,4,10,2019,Ip Man,Dojo Massacre Scene,tt1220719\nCqsCkhbCUr4,2010.0,10,10,2019,Ip Man,vs. General Miura Scene,tt1220719\ngCRokIMgn1A,2010.0,7,10,2019,Ip Man,Training with  Scene,tt1220719\nwBHZhBnXRew,2010.0,5,10,2019,Ip Man,Master Lin is Defeated Scene,tt1220719\nkQosO29X9Bo,2010.0,8,10,2019,Ip Man,The Japanese Invade Scene,tt1220719\nzfyDw7VR3Hg,2019.0,5,10,2019,The Dead Don't Die,Dead Hipsters from Cleveland Scene,tt8695030\nPSW5cd8WVwM,2019.0,4,10,2019,The Dead Don't Die,Kill the Head Scene,tt8695030\nkhX9fjqlf40,2019.0,7,10,2019,The Dead Don't Die,I've Read the Script Scene,tt8695030\nIuiKCwrTYO0,2019.0,6,10,2019,The Dead Don't Die,Fashion Zombie Scene,tt8695030\n4_SBdgdCwDA,2019.0,2,10,2019,The Dead Don't Die,Chardonnay Zombie Scene,tt8695030\nbICHpdNbsmU,2019.0,3,10,2019,The Dead Don't Die,Samurai Mortician Scene,tt8695030\nAX-qpuOuDVg,2019.0,8,10,2019,The Dead Don't Die,Was That in the Script? Scene,tt8695030\nbtVoaFC1Aqk,2019.0,9,10,2019,The Dead Don't Die,Warriors Among the Dead Scene,tt8695030\nPNwyZMNu1gA,2019.0,1,10,2019,The Dead Don't Die,Coffee Zombies Scene,tt8695030\niK03b228mmo,2019.0,10,10,2019,The Dead Don't Die,The End of the World Scene,tt8695030\nsw1tJoYrs7M,1953.0,9,10,2019,It Came From Outer Space,All We Needed Was Time Scene,tt0045920\nsAvGdule3fA,1953.0,4,10,2019,It Came From Outer Space,Don't Be Afraid Scene,tt0045920\ni4NRgUeziqA,1953.0,2,10,2019,It Came From Outer Space,Alien Avalanche Scene,tt0045920\n8fHMMPXUE5I,1953.0,1,10,2019,It Came From Outer Space,Crash Landing Scene,tt0045920\naGMiaQISzq0,1953.0,10,10,2019,It Came From Outer Space,They'll Be Back Scene,tt0045920\n5ZCaXimXaxo,1953.0,8,10,2019,It Came From Outer Space,Resorting to Violence Scene,tt0045920\neeWPnGsY-Xc,1953.0,6,10,2019,It Came From Outer Space,First Contact Scene,tt0045920\nge9ahoqNSLE,1953.0,7,10,2019,It Came From Outer Space,Anti-Alien Posse Scene,tt0045920\nVohdBtnMchg,1953.0,5,10,2019,It Came From Outer Space,Incognito Abduction Scene,tt0045920\n5lekLtatLl0,1953.0,3,10,2019,It Came From Outer Space,Stalked by Cosmic Evil Scene,tt0045920\nXq5eXYCKUF8,2019.0,9,10,2019,Ma,Just Like Your Daddy Scene,tt7958736\nX36kqKTClAg,2019.0,4,10,2019,Ma,Is Your Mom? Scene,tt7958736\n4F5AGPMRwgw,2019.0,1,10,2019,Ma,nipulative  Scene,tt7958736\n8a2aEHT7v54,2019.0,7,10,2019,Ma,Dog Blood Transfusion Scene,tt7958736\naL4dQo8iBLo,2019.0,10,10,2019,Ma,Burning the House Down Scene,tt7958736\ntBOZNOYMHEg,2019.0,6,10,2019,Ma,Running Over the Past Scene,tt7958736\nO0PDEEFMUB4,2019.0,2,10,2019,Ma,You Wanna See Something Cool? Scene,tt7958736\nsMLop6XZBEw,2019.0,3,10,2019,Ma,Drugged Drinks Scene,tt7958736\nnqzkyfeS2Oo,2019.0,8,10,2019,Ma,'s Vengeance Scene,tt7958736\nRf02bF9xoaY,2019.0,5,10,2019,Greta,Kidnapping Nightmare Scene,tt2639336\nwTfbHs4HlPo,2019.0,5,10,2019,Ma,This Is Your One Warning Scene,tt7958736\n2s7POrgTTzg,2019.0,4,10,2019,Greta,She Had to Die! Scene,tt2639336\n0DPfRUFGaLE,2019.0,7,10,2019,Greta,Bloody Lessons Scene,tt2639336\nDawumJOyTOU,2019.0,2,10,2019,Greta,Stalking and Spitting Scene,tt2639336\nNohgrc3m3z4,2019.0,8,10,2019,Greta,Classic Murder Scene,tt2639336\nfV4ApYBVa3w,2019.0,6,10,2019,Greta,Bed of Lies Scene,tt2639336\nc5IXZhctoV0,2019.0,9,10,2019,Greta,The Next Victim Scene,tt2639336\npwidWMvvsVc,2019.0,10,10,2019,Greta,In the Killer's Clutches Scene,tt2639336\nqI14dmYhHGE,2019.0,1,10,2019,Greta,Bait Purses Scene,tt2639336\nINGcULi_c2U,2019.0,3,10,2019,Greta,The Texting Stalker Scene,tt2639336\n2WDIu8XbVD8,1972.0,1,9,2019,Man of La Mancha,Cervantes Transforms Scene,tt0068909\nALWV_EA6x8I,1972.0,2,9,2019,Man of La Mancha,Scene,tt0068909\nv4U2mAwO6-4,1972.0,8,9,2019,Man of La Mancha,Follow the Quest Scene,tt0068909\nbD8bl3omDIU,1972.0,9,9,2019,Man of La Mancha,To Dream the Impossible Dream Scene,tt0068909\n14t7g8Yq8vE,1972.0,5,9,2019,Man of La Mancha,Little Bird Scene,tt0068909\noo7VlD66ISM,1972.0,6,9,2019,Man of La Mancha,The Impossible Dream Scene,tt0068909\nQPDuZ_Wq7ZA,1972.0,4,9,2019,Man of La Mancha,Vision of Dulcinea Scene,tt0068909\nPl8E_9CTS1Y,1972.0,7,9,2019,Man of La Mancha,The Knight of the Mirrors Scene,tt0068909\n0iUKZskQEso,1972.0,3,9,2019,Man of La Mancha,It's All the Same Scene,tt0068909\nd0ZOz1i5-PE,2019.0,4,8,2019,Buzzed,Mr. Mushroom Scene,tt10720210\ng3kYdbqIwBE,2019.0,2,8,2019,Buzzed,Flying Frog Scene,tt10720210\nMVo83HAnysQ,2019.0,5,8,2019,Buzzed,Ninja Bee Scene,tt10720210\nLZ7Thv4ztjg,2019.0,7,8,2019,Buzzed,Fun and Games ...and Punishment Scene,tt10720210\nUhL24j9G3tc,2019.0,8,8,2019,Buzzed,Hide-'n-Cheat Scene,tt10720210\nAxGMySJ6ySc,2019.0,3,8,2019,Buzzed,Dance Off Scene,tt10720210\nBCSe_CsI75w,2019.0,1,8,2019,Buzzed,Leap Frog Scene,tt10720210\nmsWWI02CG-o,2019.0,6,8,2019,Buzzed,Master of the Nunchucks Scene,tt10720210\nh7iSkEafJ0o,2017.0,7,10,2019,Paper Year,Drunken Dinner Meltdown Scene,tt6212136\nrIGsI26-Bg4,2017.0,5,10,2019,Paper Year,Christmas Dance Scene,tt6212136\nfnV93ymcOME,2017.0,1,10,2019,Paper Year,Newlyweds Scene,tt6212136\ndUMW1YRsWcY,2017.0,10,10,2019,Paper Year,The Divorce Party Scene,tt6212136\nl3H-hjiT6wg,2017.0,6,10,2019,Paper Year,I Don't Want a Baby Scene,tt6212136\nDqOU6NcRVe4,2017.0,8,10,2019,Paper Year,Roadside Cheating Scene,tt6212136\noRX8ramIWwI,2017.0,3,10,2019,Paper Year,You're Adorable Scene,tt6212136\nJcF3Ay4sjss,2017.0,4,10,2019,Paper Year,Stalker Fantasy Scene,tt6212136\nL38j8UMd4oM,2017.0,9,10,2019,Paper Year,It Only Gets Harder Scene,tt6212136\nIXyMkCDTmfA,2017.0,2,10,2019,Paper Year,What a Pack of Dicks Scene,tt6212136\nYPXkzktz5oA,2018.0,1,10,2019,Uncle Drew,Shot-Blocked Scene,tt7334528\n06qgu4XoNL4,2018.0,7,10,2019,Uncle Drew,Shaq Fu Scene,tt7334528\nTvFCzrDQrD8,2018.0,9,10,2019,Uncle Drew,The Game Never Loved Me Scene,tt7334528\netixMqUt8Ak,2018.0,2,10,2019,Uncle Drew,Mookie Steals the Team Scene,tt7334528\nFC9AZFwoLVg,2018.0,6,10,2019,Uncle Drew,\"Heads up, My Man Scene\",tt7334528\nK_NTydd3MqM,2018.0,5,10,2019,Uncle Drew,Tough Betty Lou Scene,tt7334528\nH4hjg6jAhOY,2018.0,5,10,2019,Pondemonium 3,Monster Egg Scene,tt8426112\nM5DZzTtbV1g,2018.0,4,10,2019,Pondemonium 3,Hot Air Balloon Fight Scene,tt8426112\n7ML-9r4M_qk,2018.0,10,10,2019,Uncle Drew,Dance-Off! Scene,tt7334528\njXReN1Nzlws,2018.0,7,10,2019,Pondemonium 3,Not So Sweet Bouncy Ball Scene,tt8426112\n0zHERbRFxTU,2018.0,1,10,2019,Pondemonium 3,Boat Envy Scene,tt8426112\naRav_8OWESA,2018.0,9,10,2019,Pondemonium 3,Slingshot Hijinks Scene,tt8426112\nkg3erAXOz34,2018.0,2,10,2019,Pondemonium 3,Duck-Slapping Scene,tt8426112\n6q2aPotJP7w,2018.0,8,10,2019,Uncle Drew,Teen Girls Game Scene,tt7334528\nbIpQoVucszI,2018.0,3,10,2019,Uncle Drew,Hold My Nuts Scene,tt7334528\n93qTzU2bNh8,2018.0,4,10,2019,Uncle Drew,\"Dunk Him, Preacher! Scene\",tt7334528\nMlUEy_9s0D0,2018.0,8,10,2019,Pondemonium 3,Manic Frog With a Slingshot Scene,tt8426112\nJye1gDePzgY,2018.0,10,10,2019,Pondemonium 3,Sticky Frog Scene,tt8426112\nI7pEk2hB5OQ,2018.0,6,10,2019,Pondemonium 3,Dung Ball Competition Scene,tt8426112\nwNRvgeiaVXA,2018.0,3,10,2019,Pondemonium 3,Balloon Blunder Scene,tt8426112\nuTOoWlYv95w,2019.0,1,10,2019,Hobbs & Shaw,Skyscraper Freefall Scene,tt6806448\nCFqO1y01qjs,2019.0,7,10,2019,Hobbs & Shaw,Samoan Warriors Scene,tt6806448\nxcTK6uPPiAo,2019.0,3,10,2019,Hobbs & Shaw,Hallway Beatdown Scene,tt6806448\nsfgNK5f04iY,2019.0,9,10,2019,Hobbs & Shaw,Bringing Down the Chopper Scene,tt6806448\n1afS6fOeldc,2019.0,5,10,2019,Hobbs & Shaw,Demolition Drone Derby Scene,tt6806448\nW9Rb6wHuQXU,2019.0,4,10,2019,Hobbs & Shaw,Badass Escape Scene,tt6806448\nR8JjTOsPHo4,2019.0,10,10,2019,Hobbs & Shaw,Hobbs and Shaw vs. Brixton Scene,tt6806448\ndapP5W153YE,2019.0,8,10,2019,Hobbs & Shaw,Helicopter vs. Trucks Scene,tt6806448\nv8CflcvxDJo,2019.0,2,10,2019,Hobbs & Shaw,Cyborg Motorcycle Chase Scene,tt6806448\nqabChviGItk,2019.0,6,10,2019,Hobbs & Shaw,Truck Bed Smackdown Scene,tt6806448\nI7-GvXsr40k,2018.0,1,10,2019,Pondemonium 2,Pond Monster Scene,tt8426846\n40NyqKryTUU,2018.0,8,10,2019,Pondemonium 2,Joe the Gardener Scene,tt8426846\n_myZeGUaveU,2018.0,7,10,2019,Pondemonium 2,On a Roll Scene,tt8426846\nhv_mYkUEGko,2018.0,5,10,2019,Pondemonium 2,Flying Frog Scene,tt8426846\nS0pCBDjC9Wk,2018.0,3,10,2019,Pondemonium 2,A Bone to Pick Scene,tt8426846\nJ9Sz39odDjw,2018.0,9,10,2019,Pondemonium 2,Cosmo Goes Crazy Scene,tt8426846\n7ygAdJYS9m0,2018.0,10,10,2019,Pondemonium 2,Grand Theft Froggo Scene,tt8426846\njUkqho3OUos,1987.0,8,12,2019,Baby Boom,J.C.'s Breakdown Scene,tt0092605\n4YPxIpLpLRM,1987.0,7,12,2019,Baby Boom,\"Firing Eve, Hiring Helga Scene\",tt0092605\nrwr1IzFzjqA,1987.0,6,12,2019,Baby Boom,The Nanny Interviews Scene,tt0092605\nGEB8rnOevpY,1987.0,11,12,2019,Baby Boom,A Kiss from Dr. Charm Scene,tt0092605\nhgLkypdC6wo,1987.0,4,12,2019,Baby Boom,Changing a Diaper Scene,tt0092605\nyjrvJkWU_5k,2018.0,2,10,2019,Pondemonium 2,Bungee Jumping Scene,tt8426846\nUGfYt2Ufipw,2018.0,4,10,2019,Pondemonium 2,Fart-Powered Victory Scene,tt8426846\nMm9Y9JEmekY,1987.0,1,12,2019,Baby Boom,Inheriting a Baby Scene,tt0092605\n_OaOalM_tcY,1987.0,10,12,2019,Baby Boom,Country Baby Scene,tt0092605\ntSpOMNC3WtQ,1987.0,5,12,2019,Baby Boom,Rectal Thermometer Scene,tt0092605\nnAqJV2olXN0,1987.0,12,12,2019,Baby Boom,Kitchen Kiss Scene,tt0092605\nAryZBe8C69U,2018.0,6,10,2019,Pondemonium 2,Stuck in a Can Scene,tt8426846\nAAByjopE2GE,1987.0,3,12,2019,Baby Boom,Baby Food Scene,tt0092605\nadxwpSdHj90,1987.0,9,12,2019,Baby Boom,You're a What? Scene,tt0092605\nrlMANFZdCkk,1987.0,2,12,2019,Baby Boom,Coat Checking the Kid Scene,tt0092605\nfyOv0TB4lXU,2017.0,8,9,2019,Pondemonium,Feather Fail Scene,tt7207158\nQtVEk0oKtkM,2017.0,7,10,2019,The Shack,Send Your Kids to Hell Scene,tt2872518\nJ90JKBCDzSs,2017.0,3,10,2019,The Shack,Revisiting the Shack Scene,tt2872518\ngHJwn_JEazA,2017.0,4,10,2019,The Shack,Meeting the Trinity Scene,tt2872518\n536GqWYOHdI,2017.0,10,10,2019,The Shack,Laying Her to Rest Scene,tt2872518\nt_9GTwEOdkY,2017.0,8,10,2019,The Shack,Reconciling With My Father Scene,tt2872518\n6Mr9bQJEuN0,2017.0,5,10,2019,The Shack,A Garden of You Scene,tt2872518\nns7B5fzH11c,2017.0,2,10,2019,The Shack,The Murderer's Shack Scene,tt2872518\ngjuizikJ2bk,2017.0,9,10,2019,The Shack,Understanding Forgiveness Scene,tt2872518\nK2NNznJJadY,2017.0,1,10,2019,The Shack,Boat Flip Scene,tt2872518\nVRuV5oMqkDg,2017.0,6,10,2019,The Shack,Drowning in Fear Scene,tt2872518\n3cBAmkzKEBU,2017.0,2,9,2019,Pondemonium,Bust a Nut Scene,tt7207158\ngJDpyQ1Efto,2017.0,1,9,2019,Pondemonium,Dancing Disaster Scene,tt7207158\nNKewr9uDDck,2017.0,5,9,2019,Pondemonium,The Whistling Frog Scene,tt7207158\nStUN1G5filU,2017.0,9,9,2019,Pondemonium,The Poop Pill Scene,tt7207158\niKi2wYZNAnE,2017.0,3,9,2019,Pondemonium,This Bites Scene,tt7207158\nkFuzbEylajA,2017.0,6,9,2019,Pondemonium,Stiff Neck Scene,tt7207158\ntHHqfGeeXps,2017.0,7,9,2019,Pondemonium,Do You Even Lift? Scene,tt7207158\n1JJjo2GcRrg,2017.0,4,9,2019,Pondemonium,Whistle Prank Scene,tt7207158\nTRCSLhYz9CA,1988.0,8,10,2019,Friday the 13th VII: The New Blood,The Face of Jason Voorhees Scene,tt0095179\n1rKzD4yNMoc,1988.0,7,10,2019,Friday the 13th VII: The New Blood,Jason vs. Psychic Scene,tt0095179\nD4sj2Yq5bnU,1988.0,3,10,2019,Friday the 13th VII: The New Blood,Nowhere to Hide Scene,tt0095179\nEd8T-GzBcIY,1988.0,2,10,2019,Friday the 13th VII: The New Blood,Sleeping Bag Kill Scene,tt0095179\nf0ui8NJnqN8,1988.0,4,10,2019,Friday the 13th VII: The New Blood,Party Horn Kill Scene,tt0095179\noY31D4QSB-Y,1988.0,1,10,2019,Friday the 13th VII: The New Blood,Resurrecting Jason Scene,tt0095179\nIrq818Ek0Ro,1988.0,10,10,2019,Friday the 13th VII: The New Blood,Undead Dad's Revenge Scene,tt0095179\nJivWELi2rFw,1988.0,5,10,2019,Friday the 13th VII: The New Blood,A Heady Surprise Scene,tt0095179\nYIhMJMRdGGY,1988.0,6,10,2019,Friday the 13th VII: The New Blood,Buzzsaw Bloodshed Scene,tt0095179\nVhzodI8yBUE,1988.0,9,10,2019,Friday the 13th VII: The New Blood,Psychic Showdown Scene,tt0095179\nS71iST-01VM,2013.0,7,10,2019,Young Detective Dee,The Wolf Flower Warriors Scene,tt2992146\naQ2aje8PZz0,2013.0,1,10,2019,Young Detective Dee,Sea Monster Attack Scene,tt2992146\nwBq7RLGDqKE,2013.0,2,10,2019,Young Detective Dee,Martial Arts & Monsters Scene,tt2992146\n1TY9TWCU1z8,2013.0,10,10,2019,Young Detective Dee,The Sea God Scene,tt2992146\nu4NTe-ZIrGs,2013.0,4,10,2019,Young Detective Dee,Zhenjin vs. Wang Pu Scene,tt2992146\nskrnn_M3e9A,2013.0,5,10,2019,Young Detective Dee,Drinking Pee Soup Scene,tt2992146\nOVSaW3-ehsQ,2013.0,6,10,2019,Young Detective Dee,A Monstrous Traitor Scene,tt2992146\nVK2Bz9yq2As,2013.0,9,10,2019,Young Detective Dee,Man-Eating Manta Ray Scene,tt2992146\npQwl5G0ZHdY,2013.0,3,10,2019,Young Detective Dee,Water Demon Ninjas Scene,tt2992146\nIagCGWtNyTQ,2013.0,8,10,2019,Young Detective Dee,Cliffside Killers Scene,tt2992146\neFF1grhBvsE,2018.0,3,10,2019,Overboard,I'm Married?! Scene,tt1563742\nJqYtHZw-M8c,2018.0,10,10,2019,Overboard,Married for Real Scene,tt1563742\nK3OlytfxzHU,2017.0,1,10,2019,How to Be a Latin Lover,Am I Making You Wet? Scene,tt4795124\nzvn05TBxdUo,2018.0,5,10,2019,Overboard,It's Our Anniversary! (Kinda) Scene,tt1563742\nGpLeHrROqRE,2018.0,4,10,2019,Overboard,Hard Labor Scene,tt1563742\nt45uy-QuRDU,2018.0,9,10,2019,Overboard,Reunited at Sea Scene,tt1563742\nAD26OcrFQOY,2018.0,8,10,2019,Overboard,I Don't Belong With You Scene,tt1563742\nvyb2Imfghkg,2017.0,10,10,2019,How to Be a Latin Lover,A Lover and a Pilot Scene,tt4795124\nMHPp7bN1kXI,2017.0,2,10,2019,How to Be a Latin Lover,How to Sexy Walk Scene,tt4795124\nQbJIRG4T680,2018.0,6,10,2019,Overboard,Every Time Is Like the First Time Scene,tt1563742\np5BfdwK92UI,2017.0,8,10,2019,How to Be a Latin Lover,Disarmed by Love Scene,tt4795124\nQqFuGUbvgnQ,2018.0,2,10,2019,Overboard,The Amnesiac Castaway Scene,tt1563742\nGNSkaIuTNao,2017.0,7,10,2019,How to Be a Latin Lover,Flirting with Disaster Scene,tt4795124\naD4ZPXHAVCA,2017.0,5,10,2019,How to Be a Latin Lover,The Sad One Salsa Scene,tt4795124\nXkNQZg7yTvw,2018.0,1,10,2019,Overboard,Meet-Hate Scene,tt1563742\nfRF7InV7TfI,2018.0,7,10,2019,Overboard,Will You Marry Me Again? Scene,tt1563742\naX9m-xzauMw,2017.0,4,10,2019,How to Be a Latin Lover,All Four Hands Scene,tt4795124\nI9NGZteE31I,2017.0,9,10,2019,How to Be a Latin Lover,You're Under Arrest Scene,tt4795124\n67dyb52zKRs,2017.0,3,10,2019,How to Be a Latin Lover,Sign-Flipping Fail Scene,tt4795124\n32pZcw3acD0,2017.0,6,10,2019,How to Be a Latin Lover,The Spa Treatment Scene,tt4795124\nhw3lBV-89M0,2018.0,10,10,2019,The Spy Who Dumped Me,Glam Spies Scene,tt6663582\nwB2w4t9dr0Y,2018.0,1,10,2019,The Spy Who Dumped Me,The Confused Assassin Scene,tt6663582\nFeLR7tVzVeA,2018.0,1,10,2019,I Can I Will I Did,Bullied and Hospitalized Scene,tt5186608\nkAKY4ZkKIPs,2018.0,6,10,2019,I Can I Will I Did,What Are You Saying? Scene,tt5186608\nyqlAjK0PVsU,2018.0,9,10,2019,The Spy Who Dumped Me,Death by Trapeze Scene,tt6663582\ngap2gWQy77A,2018.0,8,10,2019,The Spy Who Dumped Me,Circus Brawl Scene,tt6663582\nCtcQNdbPsSQ,2018.0,6,10,2019,The Spy Who Dumped Me,\"Edward Snowden, My Ex Scene\",tt6663582\nXC0h9nx3Pw4,2018.0,2,10,2019,The Spy Who Dumped Me,Swallow This! Scene,tt6663582\nAHLo7Vs6drM,2018.0,5,10,2019,The Spy Who Dumped Me,I Shoved It up There Scene,tt6663582\nnqEL7fP4Rvs,2018.0,4,10,2019,The Spy Who Dumped Me,The Gymnast Assassin Scene,tt6663582\nr2fHzai5ih4,2018.0,3,10,2019,The Spy Who Dumped Me,TMI Scene,tt6663582\nvo0cUbT4Lh4,2018.0,7,10,2019,The Spy Who Dumped Me,Thumbs Up Scene,tt6663582\nfR16yYVpcPw,2018.0,10,10,2019,I Can I Will I Did,Mastering Taekwondo Scene,tt5186608\npRwRO-DTniM,2018.0,3,10,2019,I Can I Will I Did,Ordered to Walk Scene,tt5186608\nAXZhl8klPfM,2018.0,7,10,2019,I Can I Will I Did,Beating the Bully Scene,tt5186608\nkQnmD2gLRVw,2018.0,4,10,2019,I Can I Will I Did,You're Leaving Me Behind! Scene,tt5186608\n6A7uz7Orp_c,2018.0,9,10,2019,I Can I Will I Did,It's Ok to Not Be Ok Scene,tt5186608\nM2UIT2nHDaU,2018.0,5,10,2019,I Can I Will I Did,PTSD Breakdown Scene,tt5186608\nNQbCRZG4-jo,2018.0,8,10,2019,I Can I Will I Did,Breaking and Entering Scene,tt5186608\n4EEMDr8l_gY,2018.0,2,10,2019,I Can I Will I Did,You Want a Sob Story? Scene,tt5186608\nV0sQmOr826A,1986.0,1,10,2019,Friday the 13th VI: Jason Lives,Jason Reborn Scene,tt0091080\nkT_dXxp7eAo,1986.0,5,10,2019,Friday the 13th VI: Jason Lives,RV Double-Kill Scene,tt0091080\nlFyh5QCd6kw,1986.0,7,10,2019,Friday the 13th VI: Jason Lives,Bulletproof Badass Scene,tt0091080\nR-wQWw1geBM,1986.0,8,10,2019,Friday the 13th VI: Jason Lives,Bent Backwards Scene,tt0091080\nr1N-Xby5AnA,1986.0,3,10,2019,Friday the 13th VI: Jason Lives,Paintball Massacre Scene,tt0091080\nS1NFRvZE3FA,1986.0,6,10,2019,Friday the 13th VI: Jason Lives,\"There's a Problem, Officer Scene\",tt0091080\nL91dx9ovcz8,1986.0,2,10,2019,Friday the 13th VI: Jason Lives,Road Rage Scene,tt0091080\ncrKAy2dGX_8,1986.0,10,10,2019,Friday the 13th VI: Jason Lives,Death by Boat Motor Scene,tt0091080\n5QMsr3UxzPk,1986.0,9,10,2019,Friday the 13th VI: Jason Lives,Burning Boat Battle Scene,tt0091080\nzbAsqngq2qY,1986.0,4,10,2019,Friday the 13th VI: Jason Lives,You'll Be the Death of Me Scene,tt0091080\nI-6xj25pOP4,2019.0,5,5,2019,Penguin League,Space Penguins Save the Day Scene,tt9251598\nNdaWQm_UAF0,2019.0,3,5,2019,Penguin League,Space Guardians Scene,tt9251598\n-G7OPYUlnT0,2019.0,2,5,2019,Penguin League,Anti-Cheese Mission Scene,tt9251598\ngeGO_emEsqs,2019.0,1,5,2019,Penguin League,Cheese! Scene,tt9251598\nYqNktpnzIf8,2019.0,4,5,2019,Penguin League,The Cheese Culprit Scene,tt9251598\nZ_WhAyucr_E,2004.0,11,12,2019,Saved!,The Fall of Hilary Faye Scene,tt0332375\nVlMy5-BAjzo,2004.0,9,12,2019,Saved!,Framed Scene,tt0332375\n1UbxL1MVZ7o,2004.0,7,12,2019,Saved!,Ladies' Room Heart-to-Heart Scene,tt0332375\no6MDdOWCCT8,2004.0,2,12,2019,Saved!,Drunk in the Cafeteria Scene,tt0332375\nij0JLKDJOrc,2004.0,6,12,2019,Saved!,Exorcism By Posse Scene,tt0332375\nbYt5SAF0M3I,2004.0,4,12,2019,Saved!,I'm Gonna Beat This Scene,tt0332375\nSaUYfjxV8Ic,2004.0,10,12,2019,Saved!,Prom Surprise Scene,tt0332375\ncvPIBkkwvD4,2004.0,1,12,2019,Saved!,I Think I'm Gay Scene,tt0332375\nDed2FG1gA0c,2004.0,12,12,2019,Saved!,Toppling Jesus Scene,tt0332375\nq2YwvMc96VY,2004.0,8,12,2019,Saved!,I Like You Scene,tt0332375\nDznDZ_VH_2c,2018.0,2,10,2019,The Legend of King Solomon,Demon of Hatred Scene,tt3887158\nEpCp0rAGDNo,2004.0,5,12,2019,Saved!,Telling off Hilary Faye Scene,tt0332375\nSeiUW113A_c,2018.0,6,10,2019,The Legend of King Solomon,Wedding at Swordpoint Scene,tt3887158\nEnt1UQJ4mdU,2004.0,3,12,2019,Saved!,Mary Crashes the Prayer Circle Scene,tt0332375\n1Quc4FFOwBM,2018.0,4,10,2019,The Legend of King Solomon,Freeing the Demon Scene,tt3887158\n8zqwJl6lq-4,2018.0,10,10,2019,The Legend of King Solomon,Defeating Asmodeus Scene,tt3887158\nhwQWBQjvbgM,2018.0,8,10,2019,The Legend of King Solomon,The Stone Worm Scene,tt3887158\nSemxtZJHxEQ,2018.0,5,10,2019,The Legend of King Solomon,On Eagle's Wings Scene,tt3887158\nuYV3p1yRHyg,2018.0,1,10,2019,The Legend of King Solomon,Riddles & Revenge Scene,tt3887158\nHpJfIRs8rfc,2018.0,9,10,2019,The Legend of King Solomon,The Animal War Scene,tt3887158\nZEXNPj-4clI,2018.0,3,10,2019,The Legend of King Solomon,Trapping the Demon Scene,tt3887158\nMDv-LBBUkVA,2018.0,7,10,2019,The Legend of King Solomon,The Devil's Army Scene,tt3887158\nESEKkJNt1P8,2018.0,1,10,2019,Hunter Killer,Hunting the Hunter Scene,tt1846589\n6ikH1EFDm6A,2018.0,7,10,2019,Instant Family,Naked Selfies Scene,tt7401588\nQ-ABzsALkYs,2018.0,3,10,2019,Instant Family,Cool Grandma Scene,tt7401588\n_i97zAZclkI,2018.0,5,10,2019,Instant Family,Daddy for the First Time Scene,tt7401588\nAAN85u-udis,2018.0,8,10,2019,Instant Family,Pervert Punishment Scene,tt7401588\n7-5kYQLJnFw,2018.0,9,10,2019,Instant Family,She's Not Coming Scene,tt7401588\nNCjjqtamXzU,2018.0,4,10,2019,Instant Family,Nail Gun Emergency Scene,tt7401588\nHceqAAw60vQ,2018.0,10,10,2019,Instant Family,You Were What Was Missing Scene,tt7401588\nJy8mz4gu2oQ,2018.0,2,10,2019,Instant Family,Christmas Dinner Hell Scene,tt7401588\nay1hpFWZQnI,2018.0,1,10,2019,Instant Family,Drug-Using Teenagers Scene,tt7401588\nQc9eycqDJKk,2018.0,6,10,2019,Instant Family,Smashing Therapy Scene,tt7401588\nIKo0Eu-Xk_0,2018.0,7,10,2019,Hunter Killer,Escaping Russia Scene,tt1846589\nCvnpRyO6pH0,2018.0,8,10,2019,Hunter Killer,The Destroyer Attacks Scene,tt1846589\nKGwANfqAjNY,2018.0,2,10,2019,Hunter Killer,Death in the Ice Scene,tt1846589\nw_XUAmQdKJI,2018.0,3,10,2019,Hunter Killer,Brace for Impact Scene,tt1846589\nDfKYwoHHceM,2018.0,6,10,2019,Hunter Killer,Sniper Support Scene,tt1846589\n1eg0tbBF6eo,2018.0,9,10,2019,Hunter Killer,Outsmarting the Unkillable Scene,tt1846589\n4XSuEmqtnRw,2018.0,5,10,2019,Hunter Killer,Rescue Ops Scene,tt1846589\nRcccijujIjE,2018.0,4,10,2019,Hunter Killer,Russian Minefield Scene,tt1846589\n7UQAjKVyjIs,2018.0,10,10,2019,Hunter Killer,Impact! Scene,tt1846589\nTxy4-5uYN0M,2017.0,8,10,2019,Operation Dunkirk,Explosive Confrontation Scene,tt6836772\nTrWMrEKpT7M,2017.0,4,10,2019,Operation Dunkirk,A Blaze of Glory Scene,tt6836772\npOlGqiWm9yY,2017.0,6,10,2019,Operation Dunkirk,Roasted Schwein Scene,tt6836772\nIBsHlPPeaY0,2017.0,1,10,2019,Operation Dunkirk,You Will Tell Me Everything Scene,tt6836772\n4mfQVFVg16s,2017.0,7,10,2019,Operation Dunkirk,Big Bald Bastard Scene,tt6836772\nrC3OdZQgztY,2017.0,10,10,2019,Operation Dunkirk,Our Boys to the Rescue Scene,tt6836772\n4JjOrujlaLg,2017.0,2,10,2019,Operation Dunkirk,A Bullet for Your Troubles Scene,tt6836772\nvL21VCK_zLk,2017.0,5,10,2019,Operation Dunkirk,Man vs. Tripwire Scene,tt6836772\n14drcivv0CE,2017.0,9,10,2019,Operation Dunkirk,The Bridge is Over Scene,tt6836772\ntyXI3CQSQJE,2017.0,3,10,2019,Operation Dunkirk,Bring Me the Bazooka Scene,tt6836772\nibcYEwzgai8,2018.0,2,10,2019,Overlord,Parachuting into Hell Scene,tt4530422\nmS4njwcS4dw,2018.0,8,10,2019,Overlord,Flamethrower vs. Zombie Scene,tt4530422\njUYCTHwAQvw,2018.0,7,10,2019,Overlord,Grenade Surprise Scene,tt4530422\n0yDzNGZc9DI,2018.0,9,10,2019,Overlord,Nazi Zombie Fight Scene,tt4530422\nlFGfoPuKx9o,2018.0,10,10,2019,Overlord,Escaping the Nazi Base Scene,tt4530422\nNYBMaVtMaEM,2018.0,1,10,2019,Overlord,D-Day Flight Scene,tt4530422\nngdsRt31sIc,2018.0,5,10,2019,Overlord,Zombie Transformation Scene,tt4530422\nIZxYRZdq2P0,2018.0,6,10,2019,Overlord,Wafner Escapes Scene,tt4530422\n3i-ooDJMOzo,2018.0,3,10,2019,Overlord,Nazi Zombie Experiments Scene,tt4530422\nZKgJtlJDPcc,2018.0,4,10,2019,Overlord,Resurrecting Private Chase Scene,tt4530422\nEZaYMKD6Iqs,1992.0,1,10,2019,Juice,Picking up Vinyl Scene,tt0104573\nCoXniP8kldY,1992.0,6,10,2019,Juice,I Don't Give a F***! Scene,tt0104573\n8b1jfsKFu2w,1992.0,2,10,2019,Juice,DJ Battle Scene,tt0104573\nq51BSsTrN_I,1992.0,9,10,2019,Juice,You Ready to Die? Scene,tt0104573\nP3imZIQJez8,1992.0,4,10,2019,Juice,Wrestling for the Gun Scene,tt0104573\nPldJ3snU1C0,1992.0,5,10,2019,Juice,Mourning Murderer Scene,tt0104573\nlv0CgSfmWxc,1992.0,10,10,2019,Juice,You Got the  Now Scene,tt0104573\nwuM_9dYtRwo,1992.0,3,10,2019,Juice,Robbery Gone Wrong Scene,tt0104573\ns7kCd2kuoME,1992.0,7,10,2019,Juice,Ever See Chinatown? Scene,tt0104573\nf8Jf9xoJQwI,1992.0,8,10,2019,Juice,You Ain't Crew No More Scene,tt0104573\n_vwllSx_Ew8,1984.0,8,10,2019,Friday the 13th: The Final Chapter,Out the Window Scene,tt0087298\nWZ6JK1mPT-A,1984.0,9,10,2019,Friday the 13th: The Final Chapter,Tricking Jason Scene,tt0087298\nYTdTD0TbEp4,1984.0,6,10,2019,Friday the 13th: The Final Chapter,Trapped in the Basement Scene,tt0087298\nqaQQ3LLyKvo,1984.0,5,10,2019,Friday the 13th: The Final Chapter,Slaying in the Shower Scene,tt0087298\nukNsgDQKqfY,1984.0,7,10,2019,Friday the 13th: The Final Chapter,Fresh Kills Scene,tt0087298\nXHuewsIKvP0,1984.0,10,10,2019,Friday the 13th: The Final Chapter,The New Jason Scene,tt0087298\nw80bZTK88mc,1984.0,2,10,2019,Friday the 13th: The Final Chapter,Skinny Dippers Die Scene,tt0087298\nEelncXXu150,1984.0,4,10,2019,Friday the 13th: The Final Chapter,Where's the Corkscrew? Scene,tt0087298\n_0vYFxJJcB4,1984.0,3,10,2019,Friday the 13th: The Final Chapter,Harpooned in the Groin Scene,tt0087298\nEj1lqvtmcMg,1984.0,1,10,2019,Friday the 13th: The Final Chapter,Murder in the Morgue Scene,tt0087298\nHbWD-eclNf4,1994.0,5,12,2019,Clifford,I Need Chocolate! Scene,tt0109447\nP3Mo5t61kO4,1980.0,3,9,2019,Caddyshack,\"How About a Nice, Cool Drink? Scene\",tt0080487\nI3akC_INsFc,1980.0,1,9,2019,Caddyshack,Be the Ball Scene,tt0080487\nS-pmcO6U8eg,1980.0,9,9,2019,Caddyshack,Mind If I Play Through? Scene,tt0080487\nPe5eL8LQdY0,1980.0,7,9,2019,Caddyshack,The Bishop's Final Round Scene,tt0080487\nbCYs8v0Xji4,1980.0,6,9,2019,Caddyshack,A Cinderella Story Scene,tt0080487\nGFpm2LR0sGQ,1980.0,2,9,2019,Caddyshack,Kill Every Gopher Scene,tt0080487\n40CAAtSZsbw,1980.0,5,9,2019,Caddyshack,Skinny-Dipping Seduction Scene,tt0080487\nQpmECKEHSQs,1980.0,4,9,2019,Caddyshack,Doodie! Scene,tt0080487\n5NlQiQfC4zQ,1980.0,8,9,2019,Caddyshack,Think Like a Gopher Scene,tt0080487\nk9utcDoerr0,1994.0,7,12,2019,Clifford,Obsessed with Dinosaur World Scene,tt0109447\nbbnkw5RyiCI,1994.0,6,12,2019,Clifford,Tabasco Toast Scene,tt0109447\n_HgOQNBkVvY,1994.0,3,12,2019,Clifford,Meets Sarah Scene,tt0109447\n_UvKhc0wVU8,1994.0,11,12,2019,Clifford,Larry the Scary Rex Scene,tt0109447\ni_9mM4F_JVI,1994.0,10,12,2019,Clifford,Martin's Model Goes Kaboom Scene,tt0109447\nPui9t9vPUTc,1994.0,12,12,2019,Clifford,Hyperdrive Scene,tt0109447\ny_LVaQiyLrM,1994.0,2,12,2019,Clifford,Loves Uncle Martin Scene,tt0109447\nRq3xZDyJtMk,1994.0,1,12,2019,Clifford,Dad is Furious Scene,tt0109447\nEGt-Nk6a1UQ,1994.0,9,12,2019,Clifford,Going Nutty Nuts Scene,tt0109447\nAszdXufdl3E,1994.0,4,12,2019,Clifford,The Bestest Looking Wig Scene,tt0109447\nS_lcxLCaxAw,1994.0,8,12,2019,Clifford,The Truth About Mr. Ellis Scene,tt0109447\nNZuXsiyF5Bk,2018.0,7,10,2019,Burning,I Burn Things Down Scene,tt7282468\n57X3MgtTMfM,2018.0,6,10,2019,Burning,Dancing at Dusk Scene,tt7282468\ngAI36zhS84Y,2018.0,10,10,2019,Burning,Vengeance Scene,tt7282468\n2NNOFLGL_VE,2018.0,8,10,2019,Burning,You Can't See Things Close To You Scene,tt7282468\nhegwdxt_FjA,2018.0,1,10,2019,Burning,Don't You Remember Me? Scene,tt7282468\nbyUbi9hlirE,2018.0,5,10,2019,Burning,The Dance of Great Hunger Scene,tt7282468\njJeed7K-6fQ,2018.0,4,10,2019,Burning,Fascinating Tears Scene,tt7282468\nCA66So14ydI,2018.0,9,10,2019,Burning,Well of Lies Scene,tt7282468\n456ZpoRaRWI,2018.0,2,10,2019,Burning,The Big Hunger Scene,tt7282468\nd47y-Jm4m_o,2018.0,3,10,2019,Burning,You're Really Ugly Scene,tt7282468\nv6nkTlU_iT8,2017.0,1,10,2019,The Villainess,First Person Killing Scene,tt6777338\nAJhPYwtbCo0,2017.0,6,10,2019,The Villainess,Killer Bride Scene,tt6777338\ns8gCo-QjtGk,2017.0,5,10,2019,The Villainess,Escort Assassination Scene,tt6777338\nr8SqKn2AmKc,2017.0,3,10,2019,The Villainess,From Victim to Killer Scene,tt6777338\n83BVVnFnQkA,2017.0,8,10,2019,The Villainess,I Killed Your Father Scene,tt6777338\n3yqsR2cziD0,2017.0,2,10,2019,The Villainess,Dojo of Death Scene,tt6777338\ncRj9pF0YGT8,2017.0,9,10,2019,The Villainess,Bus Brawl Scene,tt6777338\n-ecKc5pOEWk,2017.0,4,10,2019,The Villainess,Motorcycle Sword Fight Scene,tt6777338\nM_TCpfWTFjo,2017.0,10,10,2019,The Villainess,Revenge Killing Scene,tt6777338\nZxw1Z6pzKvA,2017.0,7,10,2019,The Villainess,Losing Everything Scene,tt6777338\npppK-fl9a2E,2018.0,9,10,2019,A Simple Favor,Violent Confessions Scene,tt7040874\n7uSfWo-jr8o,2018.0,2,10,2019,A Simple Favor,Sleeping With My Brother Scene,tt7040874\n-ZxtmDbqDRc,2018.0,10,10,2019,A Simple Favor,I Shot My Ex-Husband Scene,tt7040874\nxDZfwTsiLrk,2018.0,1,10,2019,A Simple Favor,Emily Is Dead Scene,tt7040874\nu6IAct0ow4c,2018.0,6,10,2019,A Simple Favor,Drinks and Death Scene,tt7040874\nvxFr0xNspFU,2018.0,7,10,2019,A Simple Favor,Skinny Dipping Slaughter Scene,tt7040874\nhZvud4MnaQ0,2018.0,5,10,2019,A Simple Favor,\"It's All Good, Baby Scene\",tt7040874\nfrV4tvni8H0,2018.0,8,10,2019,A Simple Favor,Murder and Manipulation Scene,tt7040874\njwjCPSUGPXU,2018.0,4,10,2019,A Simple Favor,Mile High Club Scene,tt7040874\nNEDEjJ5FyS4,2018.0,3,10,2019,A Simple Favor,Seducing a Widower Scene,tt7040874\nq-kSu3KWfEI,2018.0,10,10,2019,The Song of Sway Lake,You Saved Me Scene,tt6371588\nsWgPWKj2G7I,2018.0,5,10,2019,The Song of Sway Lake,Cabin Party Scene,tt6371588\nFFU7WJWXrvk,2018.0,7,10,2019,The Song of Sway Lake,Tantric Breathing Scene,tt6371588\nQ-D1e1u4ufk,2018.0,1,10,2019,The Song of Sway Lake,Drunken Fools Scene,tt6371588\nCKtUpbJ30Dg,2018.0,6,10,2019,The Song of Sway Lake,Love on the Lake Scene,tt6371588\nsQV6nuap8WA,2018.0,8,10,2019,The Song of Sway Lake,You Stole From Us! Scene,tt6371588\ntbty8Ao7_IE,2018.0,2,10,2019,The Song of Sway Lake,Cleaning Up the Grounds Scene,tt6371588\no2YKoT7jL4M,2018.0,4,10,2019,The Song of Sway Lake,I'm Really Into Creeps Scene,tt6371588\nML4CcaTFsZE,2018.0,9,10,2019,The Song of Sway Lake,Widow's Kiss Scene,tt6371588\nQ2GegbPq3Lg,2018.0,3,10,2019,The Song of Sway Lake,Ranking Records Scene,tt6371588\nvcdDRblTOmM,2019.0,7,10,2019,Brightburn,Heat Vision Kill Scene,tt7752126\nt6UyEPrqaQI,2019.0,10,10,2019,Brightburn,My Baby Boy Scene,tt7752126\nGdpx9aiEtmg,2019.0,8,10,2019,Brightburn,Cops vs. Supervillain Scene,tt7752126\n0h0FeEzxCaM,2019.0,3,10,2019,Brightburn,Diner Slaughter Scene,tt7752126\n3ge07nbMna0,2019.0,9,10,2019,Brightburn,Nowhere to Hide Scene,tt7752126\nCYO8cs7VRMc,2019.0,4,10,2019,Brightburn,Jaw-Dropping Death Scene,tt7752126\nvJhO79OGi20,2019.0,2,10,2019,Brightburn,Take the World Scene,tt7752126\n6mooNp4aWBo,2019.0,6,10,2019,Brightburn,He's Lying Scene,tt7752126\nMcmlPCS1kHc,2019.0,5,10,2019,Brightburn,Alien Baby Scene,tt7752126\n757qJxO5D6Y,2019.0,1,10,2019,Brightburn,Lawnmower Blade Scene,tt7752126\nBgxPmLpvxzc,2006.0,8,10,2019,When a Stranger Calls,Trapped in the Greenhouse Scene,tt0455857\n-pKrpqoPu1o,2006.0,6,10,2019,When a Stranger Calls,Death in the Shadows Scene,tt0455857\n4EWgdeVQzEk,2006.0,3,10,2019,When a Stranger Calls,Have You Checked the Children? Scene,tt0455857\nenG1CfTbT08,2006.0,4,10,2019,When a Stranger Calls,The Guest House Scene,tt0455857\ngnlvKhPzx5A,2006.0,10,10,2019,When a Stranger Calls,Driven to Madness Scene,tt0455857\nZXkKHnmKWoI,2006.0,5,10,2019,When a Stranger Calls,What Do You Want? Scene,tt0455857\n6w4Chzgna0c,2006.0,2,10,2019,When a Stranger Calls,Missing Maid Scene,tt0455857\n4gftIIxf7B4,2006.0,1,10,2019,When a Stranger Calls,Car Won't Start Scene,tt0455857\nkokQDLJ1104,2006.0,7,10,2019,When a Stranger Calls,Nowhere to Run Scene,tt0455857\nQR6Ds-Tvd1g,2006.0,9,10,2019,When a Stranger Calls,Fighting the Stranger Scene,tt0455857\nNxCa0cVaxQo,1994.0,2,10,2019,Little Women,A New Player Scene,tt0110367\nfWYs-bFK9_s,1954.0,6,9,2019,The Caine Mutiny,The Mutiny Scene,tt0046816\nA3Vm7zSOm7M,1994.0,4,10,2019,Little Women,Beth's Christmas Scene,tt0110367\nerX0T5r5xbE,1994.0,1,10,2019,Little Women,Jo & Laurie Scene,tt0110367\nXvyf7ml1ndo,1994.0,9,10,2019,Little Women,Introducing Mrs. Laurence Scene,tt0110367\nn_z0TcZkPzg,1994.0,3,10,2019,Little Women,Sally's Coming Out Scene,tt0110367\nnLDgcHxJ4Sc,1994.0,5,10,2019,Little Women,Unrequited Love Scene,tt0110367\nj_sD0t5L8kE,1994.0,7,10,2019,Little Women,Laurie & Amy Scene,tt0110367\nESUdqZoRu3A,1994.0,6,10,2019,Little Women,Meeting Mr. Bhaer Scene,tt0110367\n1Ylk2e-x--8,1994.0,10,10,2019,Little Women,My Hands Are Empty Scene,tt0110367\nLJye4-HVyCU,1994.0,8,10,2019,Little Women,I Shall Be Homesick for You Scene,tt0110367\nwzZ3S0ZC1Is,1954.0,1,9,2019,The Caine Mutiny,Sweep Drill Scene,tt0046816\n5SRxYONb12I,1954.0,9,9,2019,The Caine Mutiny,The Good Fight Scene,tt0046816\nKekChFdIe00,1954.0,8,9,2019,The Caine Mutiny,Paranoid Breakdown Scene,tt0046816\nR0CN7Enq4Rg,1954.0,3,9,2019,The Caine Mutiny,Cease Fire Scene,tt0046816\nmNd16XocjBg,1954.0,7,9,2019,The Caine Mutiny,Mutineer or Fool Scene,tt0046816\nUPIr8vb7OeI,1954.0,2,9,2019,The Caine Mutiny,Cutting Across the Towline Scene,tt0046816\nedQy5jBxhV8,1954.0,4,9,2019,The Caine Mutiny,Frozen Strawberries Scene,tt0046816\noDjuY9KCsI8,1954.0,5,9,2019,The Caine Mutiny,The Freezer Key Scene,tt0046816\nfAaVf_wel0c,1966.0,4,12,2019,Frankie and Johnny,Look Out Broadway Scene,tt0060429\nJAd3SSNqZlI,1966.0,10,12,2019,Frankie and Johnny,Hard Luck Scene,tt0060429\nXstux7DlrgU,1966.0,2,12,2019,Frankie and Johnny,Chesay Scene,tt0060429\naoc1wqaK8cc,1966.0,7,12,2019,Frankie and Johnny,Shout it Out Scene,tt0060429\nvm-rgqRKqz8,1966.0,5,12,2019,Frankie and Johnny,Let it Ride Scene,tt0060429\nwuzbUsy6snc,1966.0,1,12,2019,Frankie and Johnny,\"Petunia, the Gardener's Daughter Scene\",tt0060429\n8ISsNLwwmXg,1966.0,8,12,2019,Frankie and Johnny,Masquerade Scene,tt0060429\nSqFAf6aGTtw,1966.0,9,12,2019,Frankie and Johnny,Johnny Fights Braden Scene,tt0060429\nSmrdaRhZJt4,1966.0,6,12,2019,Frankie and Johnny,Beginner's Luck Scene,tt0060429\n8p1gevM0y-I,1966.0,3,12,2019,Frankie and Johnny,Lucky Redhead Scene,tt0060429\n4kIbIjoVakQ,1966.0,11,12,2019,Frankie and Johnny,Please Don't Stop Loving Me Scene,tt0060429\nsMrjeejmCpI,1966.0,1,10,2019,A Funny Thing Happened on the Way to the Forum,Comedy Tonight Scene,tt0060438\nr_tl6PA-Rd4,1966.0,12,12,2019,Frankie and Johnny,Scene,tt0060429\nlLgOrvsA9tw,1966.0,3,10,2019,A Funny Thing Happened on the Way to the Forum,Bring Me My Bride Scene,tt0060438\nNzCTDwlquaQ,1966.0,10,10,2019,A Funny Thing Happened on the Way to the Forum,Chariots of Fire Scene,tt0060438\ndoKP3Il9R1k,1966.0,7,10,2019,A Funny Thing Happened on the Way to the Forum,The Bride Is Dead Scene,tt0060438\nWAX89Cuk-Yc,1966.0,6,10,2019,A Funny Thing Happened on the Way to the Forum,Lovely Scene,tt0060438\n1EtA0HrUrYM,1966.0,8,10,2019,A Funny Thing Happened on the Way to the Forum,Smoked Virgin Scene,tt0060438\nW_fixpI0BL8,1966.0,9,10,2019,A Funny Thing Happened on the Way to the Forum,Gladiator Training Scene,tt0060438\nghfqnmL0d_A,1966.0,5,10,2019,A Funny Thing Happened on the Way to the Forum,Stalling Gloriosus Scene,tt0060438\ndvIzAdqrb4U,1966.0,4,10,2019,A Funny Thing Happened on the Way to the Forum,Captain Gloriosus Scene,tt0060438\nBCC8LOkisAI,1966.0,2,10,2019,A Funny Thing Happened on the Way to the Forum,The Soothsayer Scene,tt0060438\n2vIINq7m10Q,1992.0,9,10,2019,Cool World,Cartoon Apocalypse Scene,tt0104009\nFlCzygStNzM,1992.0,8,10,2019,Cool World,Falling for Holli Scene,tt0104009\nurk-FzNJvzE,2018.0,3,10,2019,Susanne Bartsch: On Top,Playing Susanne Scene,tt5537600\nu-PbWxhmJto,2018.0,7,10,2019,Susanne Bartsch: On Top,The AIDS Crisis Scene,tt5537600\ns9_C0lmrp1M,2018.0,1,10,2019,Susanne Bartsch: On Top,Queen of the Night Scene,tt5537600\n_PXmVLPkYVo,1091.0,10,10,2019,Susanne Bartsch: On Top,Challenging the Norm Scene,tt5537600\nQ4B11j9T3hE,2018.0,4,10,2019,Susanne Bartsch: On Top,Explosive Creativity Scene,tt5537600\nh846tnckLFE,2018.0,5,10,2019,Susanne Bartsch: On Top,Living a Double Life Scene,tt5537600\nHZbYIyL-tUQ,2018.0,2,10,2019,Susanne Bartsch: On Top,Giving People a Platform Scene,tt5537600\nvdZ7vQG2hzI,2018.0,6,10,2019,Susanne Bartsch: On Top,A Safe Place Scene,tt5537600\nKtumRXjIzQY,2018.0,8,10,2019,Susanne Bartsch: On Top,The Love Ball Scene,tt5537600\nY5B6H8G2WcE,2018.0,9,10,2019,Susanne Bartsch: On Top,Dragshow Wedding Scene,tt5537600\nCm6FChNhtSc,1992.0,4,10,2019,Cool World,Keep Your Pencil in Your Pocket Scene,tt0104009\nwM5rRXQZvjU,1992.0,10,10,2019,Cool World,Superman Jack Scene,tt0104009\nrhFw9HYTReY,1992.0,7,10,2019,Cool World,Crazy Doodle Scene,tt0104009\n-wci2oycOQA,1992.0,3,10,2019,Cool World,Poppers Car Chase Scene,tt0104009\n9zbF578--dE,1992.0,2,10,2019,Cool World,Keep Your Legs Crossed Scene,tt0104009\nfBpNFLngzT4,1992.0,6,10,2019,Cool World,Let's Make Love Scene,tt0104009\n3hOO0D1rH-w,1992.0,5,10,2019,Cool World,The Art of Seduction Scene,tt0104009\nDSyCwx2AlQc,1992.0,1,10,2019,Cool World,Holli Would Scene,tt0104009\nS1Xm1jBc84U,2019.0,6,10,2019,Rocketman,For My Next Trick Scene,tt2066051\nBGGyUpO3W-A,2019.0,2,10,2019,Rocketman,Crocodile Rock Scene,tt2066051\nCp2KrXtWwAA,2019.0,8,10,2019,Rocketman,Bennie and the Jets Scene,tt2066051\nM5ny5tMsxrs,2019.0,10,10,2019,Rocketman,I’m Still Standing Scene,tt2066051\n1kuNl2T_mjQ,2019.0,5,10,2019,Rocketman,Pinball Wizard Scene,tt2066051\n30IrWTTMWos,2019.0,3,10,2019,Rocketman,Take Me to the Pilot Scene,tt2066051\nyPJlBsQE96o,2019.0,1,10,2019,Rocketman,Your Song Scene,tt2066051\noPPxArk70IY,2016.0,8,10,2019,Goldstone,Sniper Shootout Scene,tt4911996\nM16l8dqWTuI,2019.0,4,10,2019,Rocketman,You'll Never Be Loved Scene,tt2066051\nkyfMjDlcisQ,2019.0,7,10,2019,Rocketman,Rocket Man Scene,tt2066051\nef7rQniaz5c,2019.0,9,10,2019,Rocketman,When Are You Going to Hug Me? Scene,tt2066051\nMnTKULzMhMs,2016.0,5,10,2019,Goldstone,Where the Bodies Are Scene,tt4911996\nPibr2kMG1HA,2016.0,10,10,2019,Goldstone,Race Against Time Scene,tt4911996\nInHZNhmQyd4,2016.0,3,10,2019,Goldstone,What Will You Do About It? Scene,tt4911996\nEYvn7xDKKtA,2016.0,7,10,2019,Goldstone,What's Your Life Worth? Scene,tt4911996\naNv_E1Gh-1k,2016.0,4,10,2019,Goldstone,This Is Your Destiny Scene,tt4911996\nMLv1hfiUaNk,2016.0,2,10,2019,Goldstone,The Girls Arrive Scene,tt4911996\nIyv1Br-dG8Q,2016.0,1,10,2019,Goldstone,Pinky's Love Bus Scene,tt4911996\n4fgrzQIolcc,2016.0,9,10,2019,Goldstone,Police Raid Scene,tt4911996\ndlzBcCsKQXY,2016.0,6,10,2019,Goldstone,Desert Death Race Scene,tt4911996\n5CxYctMSiw0,2019.0,2,10,2019,Men in Black: International,Alien Nightclub Scene,tt2283336\nBYrS2k5nPbw,2019.0,3,10,2019,Men in Black: International,Alien Shootout Scene,tt2283336\nDZlM8Wm7OKY,2005.0,4,10,2019,Fun With Dick and Jane,Anything for a Buck Scene,tt0369441\nvjDxkz5LO7A,2019.0,7,10,2019,Men in Black: International,Alien Beatdown Scene,tt2283336\nruwbVFvdfco,2019.0,9,10,2019,Men in Black: International,Nothing is Unkillable Scene,tt2283336\nobn9BZj6V-M,2019.0,10,10,2019,Men in Black: International,Destroying the Hive Scene,tt2283336\njgBGoS4a5rc,2019.0,1,10,2019,Men in Black: International,Becoming an Agent Scene,tt2283336\nc3vmsUcknhY,2019.0,5,10,2019,Men in Black: International,Hover Bike Chase Scene,tt2283336\ndXNu5a3KmMg,2019.0,4,10,2019,Men in Black: International,Meeting Pawny Scene,tt2283336\nuciRaLsFmfM,2019.0,6,10,2019,Men in Black: International,Star Gun Scene,tt2283336\nXr9GABUefT8,2019.0,8,10,2019,Men in Black: International,Molly? Scene,tt2283336\nr-IE6wNNbAI,2005.0,7,10,2019,Fun With Dick and Jane,The Muffin Heist Scene,tt0369441\nyQXi94aNwBU,2005.0,9,10,2019,Fun With Dick and Jane,Hardened Criminal Scene,tt0369441\n8bJzLt9AYqc,2005.0,10,10,2019,Fun With Dick and Jane,Jack's Got Your Back Scene,tt0369441\nmFA9-zsFtt8,2005.0,3,10,2019,Fun With Dick and Jane,Minimum Wage Hell Scene,tt0369441\nxBI5Rk9qYjU,2005.0,6,10,2019,Fun With Dick and Jane,Robbery Fail Scene,tt0369441\noflnRQP6Woo,2005.0,5,10,2019,Fun With Dick and Jane,Brain Freeze! Scene,tt0369441\nreyTknNqDjA,2005.0,2,10,2019,Fun With Dick and Jane,Interview Death Race Scene,tt0369441\nhA063IaOHyQ,2005.0,1,10,2019,Fun With Dick and Jane,Spinning Fraud Scene,tt0369441\nI8yvHZ7de2k,2005.0,8,10,2019,Fun With Dick and Jane,The Bank Job Scene,tt0369441\nZsf-encTJXk,2018.0,6,10,2019,The Monkey King 3,No Room for Babies Scene,tt6466464\nJPbZNEly1N0,2018.0,5,10,2019,The Monkey King 3,Pregnant Men Scene,tt6466464\nL46gYnVmYY8,2018.0,1,10,2019,The Monkey King 3,Giant Fish Attack Scene,tt6466464\n948o2mF4QAs,2018.0,9,10,2019,The Monkey King 3,The River Goddess Scene,tt6466464\nDjlih7ELcTA,2018.0,2,10,2019,The Monkey King 3,Psychos in Love Scene,tt6466464\n40vMiKmqaCk,2018.0,10,10,2019,The Monkey King 3,Hand of Fate Scene,tt6466464\n1HBiMXpncto,2018.0,3,10,2019,The Monkey King 3,All Men Must Die Scene,tt6466464\ni44zbRoYBtw,2018.0,4,10,2019,The Monkey King 3,Giant Scorpion Attack Scene,tt6466464\nsRGrUQRVPoI,2018.0,8,10,2019,The Monkey King 3,Turned to Stone Scene,tt6466464\nKiwEFBgGh-o,2018.0,7,10,2019,The Monkey King 3,Taking The Leap Scene,tt6466464\nY69UrBaCUAs,2019.0,9,10,2019,Kung Fu Bunny,Bamboo Forest Battle Scene,tt1876517\n0qzRQ3qxv5Y,2019.0,6,10,2019,Kung Fu Bunny,Standing on Eggs Scene,tt1876517\nR9l_adCi74g,2019.0,2,10,2019,Kung Fu Bunny,Polaris Fights Bunny Scene,tt1876517\nL6f07_-wG9o,2019.0,1,10,2019,Kung Fu Bunny,Snowboarding Scene,tt1876517\n0WKopiIhAdI,2019.0,10,10,2019,Kung Fu Bunny,Candy Fruit Prison Break Scene,tt1876517\ngnfp7yyQgH8,2019.0,5,10,2019,Kung Fu Bunny,Blowing Up the Bridge Scene,tt1876517\nWkEK2NyGq10,2019.0,4,10,2019,Kung Fu Bunny,Bad Memories Scene,tt1876517\nRHlGpxG_-wM,2019.0,8,10,2019,Kung Fu Bunny,Lawless Scoundrel Scene,tt1876517\n1jjQuF3a-7U,2019.0,7,10,2019,Kung Fu Bunny,Mastering Speed Scene,tt1876517\notOIqHsnQZY,2019.0,3,10,2019,Kung Fu Bunny,Acupuncture Scene,tt1876517\neS-f-9meg9E,2016.0,9,10,2019,The Monkey King 2,Colossal Skeleton Queen Scene,tt4591310\n_qw-Blkf5zU,2016.0,7,10,2019,The Monkey King 2,Skeleton Army Scene,tt4591310\n9FcSX6y6OCA,2016.0,10,10,2019,The Monkey King 2,The Ultimate Sacrifice Scene,tt4591310\nqIhQJubhA_Q,2016.0,4,10,2019,The Monkey King 2,Pig Demon Slapdown Scene,tt4591310\n_klWa7UqpwQ,2016.0,5,10,2019,The Monkey King 2,Creeping Death Scene,tt4591310\nPc4vZPJ4AVs,2016.0,3,10,2019,The Monkey King 2,The White Bone Spirit Attacks Scene,tt4591310\nEIHtZl__2tw,2016.0,2,10,2019,The Monkey King 2,Dragon from The Deep Scene,tt4591310\ncrSg7r225Hw,2016.0,1,10,2019,The Monkey King 2,Monkey King vs. Tiger Scene,tt4591310\nhCCpL0zgYoc,2016.0,6,10,2019,The Monkey King 2,Demon Women Scene,tt4591310\nWQth5UmIAbI,2016.0,8,10,2019,The Monkey King 2,The Monkey King Returns Scene,tt4591310\nMuYLaaVqJf0,2017.0,4,6,2019,Fishtales 2,Big Ball of Sardines Scene,tt7275200\nYIg4Pcmy8ww,2017.0,1,6,2019,Fishtales 2,Sea Monster Chase Scene,tt7275200\n6tVC53rH37g,2017.0,5,6,2019,Fishtales 2,Evil Skeleton Fish Scene,tt7275200\nYlbjPR7t1IU,2017.0,2,6,2019,Fishtales 2,Craziest Shark in the Sea Scene,tt7275200\n3GrjR4Fib1M,2017.0,3,6,2019,Fishtales 2,Best Friends Forever! Scene,tt7275200\nvpqzFo0aD0c,2017.0,6,6,2019,Fishtales 2,An Underwater Reunion Scene,tt7275200\n08rJmhhQHtY,1987.0,1,10,2019,Eddie Murphy Raw,Young Eddie's Poop Joke Scene,tt0092948\ngq1gSTF2oyA,1987.0,8,10,2019,Eddie Murphy Raw,Dexter St. Jacques Scene,tt0092948\nyr5x9xFoI04,1987.0,2,10,2019,Eddie Murphy Raw,Mr. T Scene,tt0092948\nqLFrdv2R8ng,1987.0,7,10,2019,Eddie Murphy Raw,I Make Love to You Scene,tt0092948\n91Z-_ujQGik,1987.0,3,10,2019,Eddie Murphy Raw,Michael Jackson Scene,tt0092948\nWOnHL_mSXRY,1987.0,6,10,2019,Eddie Murphy Raw,African Wife Scene,tt0092948\nzvGA7DNmxmw,1987.0,5,10,2019,Eddie Murphy Raw,Richard Pryor Scene,tt0092948\nr12JlwSBvVQ,1987.0,4,10,2019,Eddie Murphy Raw,Bill Cosby Scene,tt0092948\nL6HWF_-Vmbw,1987.0,9,10,2019,Eddie Murphy Raw,White People Can't Dance Scene,tt0092948\nOmewqh9iivg,1987.0,10,10,2019,Eddie Murphy Raw,Italians and Rocky Scene,tt0092948\nXF7nz6p4H9U,2018.0,3,6,2019,American Animals,Mr. Pink Scene,tt6212478\nE5M67kHOzyw,2018.0,1,6,2019,American Animals,Black Market Buyers Scene,tt6212478\n2aFfcz677qk,2018.0,5,6,2019,American Animals,One Day You'll Be Dead! Scene,tt6212478\nKH9yFcfLfOY,2018.0,4,6,2019,American Animals,Old Crooks Scene,tt6212478\nglDG7hJd9Hk,2018.0,6,6,2019,American Animals,You've Killed Us Scene,tt6212478\na6QMSQ9NtGM,2018.0,2,6,2019,American Animals,The Plan Doesn't Work Scene,tt6212478\nv0AyEpFDi48,2019.0,1,10,2019,Spider Man: Far From Home,Mysterio vs. Hydro-Man Scene,tt6320628\nq9X6tpvxZyE,2019.0,4,10,2019,Spider Man: Far From Home,Handing Over the Glasses Scene,tt6320628\nis4ZtB0U7Vo,2019.0,3,10,2019,Spider Man: Far From Home,Spider Man & Mysterio vs. Molten Man Scene,tt6320628\nj4onAJ-3FAM,2019.0,8,10,2019,Spider Man: Far From Home,Inside Mysterio's Illusion Scene,tt6320628\nqRQu4tZF1GA,2019.0,2,10,2019,Spider Man: Far From Home,Peter's Drone Strike Scene,tt6320628\n7R9gbSQenqg,2019.0,7,10,2019,Spider Man: Far From Home,Hit by a Train Scene,tt6320628\nHfEjIU7Qbj8,2019.0,5,10,2019,Spider Man: Far From Home,Peter + MJ Scene,tt6320628\nzErzJxN84iw,2019.0,10,10,2019,Spider Man: Far From Home,Don't Text and Swing! Scene,tt6320628\nP-mT2D6iM5k,2019.0,6,10,2019,Spider Man: Far From Home,Zombie Iron Man Scene,tt6320628\nNPY5Iq-tCvk,2019.0,9,10,2019,Spider Man: Far From Home,Spider Man vs. Mysterio Scene,tt6320628\nvh7_WKODlE8,2019.0,3,10,2019,Us,Meet the Tethered Scene,tt6857112\n29YDqiuyaOU,2019.0,10,10,2019,Us,Burning the Tethered Scene,tt6857112\nRbdGl6wRKDc,2019.0,9,10,2019,Us,Van Attack Scene,tt6857112\n3s2XMsUdd1k,2019.0,2,10,2019,Us,The Tethered Break in Scene,tt6857112\nhYvxbtiGvrk,2019.0,1,10,2019,Us,Hall of Mirrors Scene,tt6857112\n-uAEWFPmAwU,2019.0,7,10,2019,Us,\"Ophelia, Call the Police Scene\",tt6857112\nlVSMG8FTnpw,2019.0,8,10,2019,Us,Fighting the Tylers Scene,tt6857112\nfuCe9uaRx_0,2019.0,5,10,2019,Us,Get off My Car! Scene,tt6857112\nBc3PB049HQc,2019.0,4,10,2019,Us,Playing in the Closet Scene,tt6857112\n1ZJEtM585x0,2019.0,6,10,2019,Us,Motorboat Kill Scene,tt6857112\nxBr1UV3kWqA,1999.0,1,12,2019,Flawless,Rusty and Amazing Grace Scene,tt0155711\n8myhALdcfvI,1999.0,8,12,2019,Flawless,Rusty's Mother Scene,tt0155711\nCpcopOQAWWA,1999.0,4,12,2019,Flawless,Walt Tries to Sing Scene,tt0155711\nCEwyZcmwNiQ,1999.0,2,12,2019,Flawless,Drag Queen Fight Scene,tt0155711\np2CR0S7DHyQ,1999.0,11,12,2019,Flawless,Dancing With Tia Scene,tt0155711\nFbY1BfonRu4,1999.0,12,12,2019,Flawless,He's My Sister Scene,tt0155711\nFTO-jtC7Hf4,1999.0,9,12,2019,Flawless,The Gay Republicans Scene,tt0155711\nDCF_BXNE3oM,1999.0,5,12,2019,Flawless,Getting to Know Rusty Scene,tt0155711\nqrONj6Srq7M,1999.0,6,12,2019,Flawless,Paying For Love Scene,tt0155711\ndJBnRYy3mFI,1999.0,10,12,2019,Flawless,Cha-Cha Likes Walt Scene,tt0155711\nx1YvX61qS0Q,1999.0,7,12,2019,Flawless,Cha-Cha Embarrasses Walt Scene,tt0155711\ng6DnsZvudTI,1999.0,3,12,2019,Flawless,Singing Lessons Scene,tt0155711\nwWHOsR_cHt0,2011.0,7,10,2019,War of the Arrows,Royal Hostage Scene,tt2025526\nRJePUClQaCA,2011.0,4,10,2019,War of the Arrows,Freedom Fighters Scene,tt2025526\n6efkIA6C2h4,2011.0,3,10,2019,War of the Arrows,Run For Your Life Scene,tt2025526\n2oFTDbVMd18,2011.0,6,10,2019,War of the Arrows,Prince of Peril Scene,tt2025526\nkvEgzOjGpoA,2011.0,9,10,2019,War of the Arrows,The Tiger Trap Scene,tt2025526\nZR9qd2jynNA,2011.0,2,10,2019,War of the Arrows,Manchurian Massacre Scene,tt2025526\nqO6AV-o8fuw,2011.0,10,10,2019,War of the Arrows,Manchurian Standoff Scene,tt2025526\nWgCQS7EllP8,2011.0,8,10,2019,War of the Arrows,Across the Great Divide Scene,tt2025526\nabyQFrI-BTE,2011.0,1,10,2019,War of the Arrows,Attacking the Village Scene,tt2025526\nex2RuacnG5M,2011.0,5,10,2019,War of the Arrows,My Arrow Will Pierce Your Heart Scene,tt2025526\nzUtw46VWtVM,2010.0,10,10,2019,Legend of the Fist,\"Bloodied, but Never Beaten Scene\",tt1456661\nJgAmbGwTMbI,2010.0,6,10,2019,Legend of the Fist,Publisher's Killing House Scene,tt1456661\ndSSXODCgJOA,2010.0,9,10,2019,Legend of the Fist,One Man Army Scene,tt1456661\nLrDnPOOQ7mg,2010.0,5,10,2019,Legend of the Fist,The Death List Scene,tt1456661\nS_7ZwIV43zQ,2010.0,8,10,2019,Legend of the Fist,Bombing the Japanese Scene,tt1456661\nS5Y83cDu8II,2010.0,1,10,2019,Legend of the Fist,Knife vs. Machine Gun Scene,tt1456661\nsrpM16MbHAE,2010.0,7,10,2019,Legend of the Fist,Stabbed in the Gut Scene,tt1456661\naoe4V2f2AHg,2010.0,2,10,2019,Legend of the Fist,The Masked Warrior Rises Scene,tt1456661\nWf-GYKvvI58,2010.0,4,10,2019,Legend of the Fist,Staring Down Death Scene,tt1456661\nCtBWf0Oq0bQ,2010.0,3,10,2019,Legend of the Fist,Who Are You? Scene,tt1456661\nBHJTeH6TLx4,2018.0,3,10,2019,Hell Fest,Getting Hammered Scene,tt1999890\nx7TNrjPLDBs,2018.0,7,10,2019,Hell Fest,Off With Her Head! Scene,tt1999890\n164eTBYcySQ,2018.0,4,10,2019,Hell Fest,Technical Difficulties Scene,tt1999890\nxnv86GOjJz4,2018.0,8,10,2019,Hell Fest,Get Ready to Die Scene,tt1999890\nZ37CyC5UB5Q,2018.0,6,10,2019,Hell Fest,Maniac's in Love With You Scene,tt1999890\nHDOGthpW1Hs,2018.0,2,10,2019,Hell Fest,Photobooth Makeout Scene,tt1999890\nszVtrq1Wt8I,2018.0,10,10,2019,Hell Fest,The End... Until Next Year Scene,tt1999890\naR4h3HHzqlE,2018.0,9,10,2019,Hell Fest,Faces of Death Scene,tt1999890\n-_2TyCKWCcc,2018.0,1,10,2019,Hell Fest,Just Do It Scene,tt1999890\n2MyJctzA-4s,2018.0,5,10,2019,Hell Fest,Zombie Murder Maze Scene,tt1999890\n05s6W7dLEbY,1995.0,12,12,2019,Jeffrey,I Dare You Scene,tt0113464\nlunmhq3ZejE,1995.0,2,12,2019,Jeffrey,A Gay Superhero Scene,tt0113464\nO4PP1tdCHJA,1995.0,7,12,2019,Jeffrey,Phone Sex with Mom and Dad Scene,tt0113464\nwzlxR3dKjrg,1995.0,11,12,2019,Jeffrey,It's Still Our Party Scene,tt0113464\nhb4N2SJjXRM,1995.0,8,12,2019,Jeffrey,The True Face of God Scene,tt0113464\ngoRmKynyjqU,1995.0,6,12,2019,Jeffrey,The Pink Panthers Scene,tt0113464\nfPQJBHWr8zI,1995.0,3,12,2019,Jeffrey,It's Just Sex Scene,tt0113464\nPjYVxXOmsrc,1995.0,4,12,2019,Jeffrey,A Wholesome Gay Couple Scene,tt0113464\nA4g68fTngpA,1995.0,5,12,2019,Jeffrey,Self-Help Guru Scene,tt0113464\nVz1MWTi13qA,1995.0,9,12,2019,Jeffrey,Gay Pride Parade Scene,tt0113464\nliRaKtnWUAE,1995.0,10,12,2019,Jeffrey,\"Here, Queer and on TV Scene\",tt0113464\nPe3mEnRE-EI,1995.0,1,12,2019,Jeffrey,Makes a Decision Scene,tt0113464\nMczK8n5msJM,2016.0,4,10,2019,Nerve,Blindfolded Motorcycle Ride Scene,tt3531824\nyKw8Cw13NmY,2016.0,8,10,2019,Nerve,Crane Hang Dare Scene,tt3531824\nq8Wj4buHUtE,2016.0,2,10,2019,Nerve,I Was Hoping You'd Come Scene,tt3531824\nnQ2Y1gm0fRU,2016.0,6,10,2019,Nerve,Finishing Sydney's Dare Scene,tt3531824\nW4vPyEk5UK8,2016.0,10,10,2019,Nerve,Sign Out Scene,tt3531824\nce5cnb_5dVk,2016.0,1,10,2019,Nerve,Kiss a Stranger Scene,tt3531824\nG4ENL-T7Dyk,2016.0,5,10,2019,Nerve,Ladder Dare Scene,tt3531824\nIiQlYWhL_UI,2016.0,7,10,2019,Nerve,You Can't Go to the Police Scene,tt3531824\n-jg0_iXfTE4,2016.0,9,10,2019,Nerve,You Think That Takes ? Scene,tt3531824\nPYkBs86HnUc,2016.0,3,10,2019,Nerve,Underwear Escape Scene,tt3531824\n485KJTKt6RE,2018.0,3,5,2019,Bigfoot,The Power of Nice Scene,tt7042862\n2DpotjffI6U,2018.0,1,5,2019,Bigfoot,Death to Christmas Scene,tt7042862\nSjF_DpHczjE,2018.0,5,5,2019,Bigfoot,Wasting Your Time Scene,tt7042862\nu6W5OFK9jpU,2018.0,4,5,2019,Bigfoot,A Question With No Answer Scene,tt7042862\ncSO2u-StPbY,2018.0,2,5,2019,Bigfoot,Santa's in Trouble Scene,tt7042862\nCzbL7AJIhJI,-1.0,8,10,2019,Friday the 13th Part 3,Hanging Jason Scene,tt0083972\n-a1FAp677Vo,-1.0,4,10,2019,Friday the 13th Part 3,Hammock Kill Scene,tt0083972\n6zx4HGKU2E4,-1.0,2,10,2019,Friday the 13th Part 3,Slaughtering the Bike Gang Scene,tt0083972\nNxnafGrvcqU,-1.0,6,10,2019,Friday the 13th Part 3,Crushed Head Scene,tt0083972\nnfQr0dDL8jg,-1.0,10,10,2019,Friday the 13th Part 3,Undead Nightmare Scene,tt0083972\n8d3LDYM0GF4,-1.0,1,10,2019,Friday the 13th Part 3,Jason Returns Scene,tt0083972\nFVRaOepQ02I,-1.0,5,10,2019,Friday the 13th Part 3,Power Outage Killing Spree Scene,tt0083972\nhcb0vROvmWk,-1.0,7,10,2019,Friday the 13th Part 3,Surviving Jason Scene,tt0083972\nAQfWibFXtO4,-1.0,3,10,2019,Friday the 13th Part 3,Speargun Kill Scene,tt0083972\nTzAEE887L_g,-1.0,9,10,2019,Friday the 13th Part 3,Axing Jason Scene,tt0083972\n3lxLsyE0CRo,-1.0,6,10,2019,Unfriended: Dark Web,Dropped from a Ledge Scene,tt4761916\nFJWgF5XnVLY,-1.0,1,10,2019,Unfriended: Dark Web,Hidden Folder Scene,tt4761916\n0k_yjEiPLoc,-1.0,4,10,2019,Unfriended: Dark Web,Strangled to Death Scene,tt4761916\nD4gPEFccxPk,-1.0,5,10,2019,Unfriended: Dark Web,Bitcoin Blackmail Scene,tt4761916\naJgS31WWIG8,-1.0,10,10,2019,Unfriended: Dark Web,Should Matias Live? Scene,tt4761916\nszIOuIIbVfQ,-1.0,9,10,2019,Unfriended: Dark Web,Staged Suicide Scene,tt4761916\nwIloYFMzS6M,-1.0,3,10,2019,Unfriended: Dark Web,Kidnapped Women Scene,tt4761916\n5QJGkxbb0wE,-1.0,2,10,2019,Unfriended: Dark Web,Skull Drilling Scene,tt4761916\n11-AlLawdeg,-1.0,8,10,2019,Unfriended: Dark Web,Pushed into a Subway Train Scene,tt4761916\nrbhNKSWKWwU,-1.0,7,10,2019,Unfriended: Dark Web,AJ Gets Swatted Scene,tt4761916\nooS5gVdYgRQ,2018.0,3,3,2019,Imagination Land,Blue the Dragon Scene,tt8726116\nDh3WAI9JeJw,2018.0,2,3,2019,Imagination Land,Sounder Rabbit Scene,tt8726116\nQwr539L6kCI,2018.0,1,3,2019,Imagination Land,Victor the Vulture Scene,tt8726116\nkdrPUm5zBqA,2018.0,3,3,2019,Pixy Dragons,War of the  Scene,tt9251718\nxxGmwvrt4ZA,2018.0,2,3,2019,Pixy Dragons,Lacerta's Scary Visit Scene,tt9251718\n4hY7f4nOQtU,2018.0,1,3,2019,Pixy Dragons,The Big Bad Lacerta Scene,tt9251718\nZ0AxmKelYrE,-1.0,1,10,2019,The Secret Life of Pets 2,At the Vet Scene,tt5113040\nMrrYu07MIbk,-1.0,9,10,2019,The Secret Life of Pets 2,Fighting Sergei Scene,tt5113040\nUBWIoJF2X4A,-1.0,7,10,2019,The Secret Life of Pets 2,Cat Lady Backup Scene,tt5113040\n5Io8n3JYNUY,-1.0,6,10,2019,The Secret Life of Pets 2,Go Fetch the Sheep! Scene,tt5113040\nkMcvRpOOIwY,-1.0,8,10,2019,The Secret Life of Pets 2,Evil Circus Monkey Scene,tt5113040\nbr2rj_3KW1A,-1.0,2,10,2019,The Secret Life of Pets 2,\"It's Snowtime, Baby! Scene\",tt5113040\nu6HHla9ApmI,-1.0,4,10,2019,The Secret Life of Pets 2,Cat Lessons Scene,tt5113040\nJnuYlFhXWsU,-1.0,5,10,2019,The Secret Life of Pets 2,Dog vs. Cats Scene,tt5113040\nexu61pb5X68,-1.0,3,10,2019,The Secret Life of Pets 2,Chloe on Catnip Scene,tt5113040\n0C-qxjiDP1o,-1.0,10,10,2019,The Secret Life of Pets 2,Snowball's Rap Scene,tt5113040\nHbgLp9_yU_c,2017.0,2,7,2019,7 From Etheria,Gelatin Wrestling Scene,tt7073518\naa0NlkF7Rug,2017.0,6,7,2019,7 From Etheria,A Slave's Revenge Scene,tt7073518\nvT3QXNKoZKw,2017.0,5,7,2019,7 From Etheria,How Do We Stay in a Moment? Scene,tt7073518\nDX1p8C_FuxU,2017.0,4,7,2019,7 From Etheria,Surviving a Survivalist Scene,tt7073518\nN2s_Iij3Xfk,2017.0,3,7,2019,7 From Etheria,Queen of the Gelatin Scene,tt7073518\n3gD5egw3-Lg,2017.0,1,7,2019,7 From Etheria,I'm Really Hungry! Scene,tt7073518\nzhhLFNr_Jio,2017.0,7,7,2019,7 From Etheria,A Brutal Car Thief Scene,tt7073518\n2SJ3eoUGXy0,2005.0,5,10,2019,Land of the Dead,Zombie With a Machine Gun Scene,tt0418819\n6-s02HyO3XA,2005.0,1,10,2019,Land of the Dead,Anti-Zombie Fireworks Scene,tt0418819\n1s-qZUCH3xY,2005.0,6,10,2019,Land of the Dead,The Zombie War Begins Scene,tt0418819\nKJ_8vD4Rv9Y,2005.0,2,10,2019,Land of the Dead,Dead Reckoning Scene,tt0418819\n2w8LYlDlls4,2005.0,4,10,2019,Land of the Dead,Zombie Arena Scene,tt0418819\n7KByxGMoiO4,2005.0,7,10,2019,Land of the Dead,Zombie Uprising Scene,tt0418819\nNpjcjrKoeBs,2005.0,3,10,2019,Land of the Dead,Liquor Store Slaying Scene,tt0418819\naNA-hjvEyUY,2005.0,10,10,2019,Land of the Dead,Undead Vengeance Scene,tt0418819\nukWCpVUXs_E,2005.0,9,10,2019,Land of the Dead,Death on the Bridge Scene,tt0418819\n_3bYh7CffIQ,2005.0,8,10,2019,Land of the Dead,Mall Massacre Scene,tt0418819\nY--v_LdWlQA,1983.0,2,12,2019,Mr. Mom,Shopping with the Kids Scene,tt0085970\nNkzG9RZBERE,1983.0,8,12,2019,Mr. Mom,Daytime TV Scene,tt0085970\nKcmz-QxexRo,1983.0,10,12,2019,Mr. Mom,My Brain Is Like Oatmeal Scene,tt0085970\nfHerVxCsbyc,1983.0,1,12,2019,Mr. Mom,Canned Scene,tt0085970\n7RBqyBb-MlU,1983.0,9,12,2019,Mr. Mom,Coupon Poker Scene,tt0085970\nWBY5O2nTvSU,1983.0,7,12,2019,Mr. Mom,Jack Throws the Race Scene,tt0085970\nzBLsO7BKVHw,1983.0,4,12,2019,Mr. Mom,Jack Versus the Appliances Scene,tt0085970\nOvQctA3xsoE,1983.0,6,12,2019,Mr. Mom,The Company Party Scene,tt0085970\n1D8CfzvSy7g,1983.0,3,12,2019,Mr. Mom,Chainsaw Jack Scene,tt0085970\nBSWKnZ4-2eE,1983.0,11,12,2019,Mr. Mom,Rocky Montage Scene,tt0085970\ncrI67brUX84,1983.0,12,12,2019,Mr. Mom,A Stand-Up Guy Scene,tt0085970\nt794eVHOIvo,1983.0,5,12,2019,Mr. Mom,Diaper Change Scene,tt0085970\nBUqJMPAtmdY,2019.0,9,12,2019,John Wick: Chapter 3 Parabellum,Shinobi Assassin Fight Scene,tt6146586\nYduLKKYfgSk,2019.0,4,12,2019,John Wick: Chapter 3 Parabellum,Escaping Casablanca Scene,tt6146586\niw-0Y6HWb9Q,2019.0,3,12,2019,John Wick: Chapter 3 Parabellum,He Shot My Dog Scene,tt6146586\n-1zLU5N6uBU,2019.0,8,12,2019,John Wick: Chapter 3 Parabellum,Glass Room Fight Scene,tt6146586\n6eW1ht2HbtQ,2019.0,6,12,2019,John Wick: Chapter 3 Parabellum,Reaffirm Your Fealty Scene,tt6146586\nSw4pvbkQ-jk,2019.0,2,12,2019,John Wick: Chapter 3 Parabellum,Horse Stable Fight Scene,tt6146586\nU5EKQ63wREM,2019.0,7,12,2019,John Wick: Chapter 3 Parabellum,Motorcycle Fight Scene,tt6146586\nL-zzxADqlu8,2019.0,5,12,2019,John Wick: Chapter 3 Parabellum,Long Live the King Scene,tt6146586\nE9B65UGKQ5o,2019.0,12,12,2019,John Wick: Chapter 3 Parabellum,Never Cut a King Scene,tt6146586\n2i8C-GOsHo0,2019.0,11,12,2019,John Wick: Chapter 3 Parabellum,John Wick Has to Die Scene,tt6146586\n6CmxSs6Mmx4,2019.0,10,12,2019,John Wick: Chapter 3 Parabellum,Wick vs. Zero Scene,tt6146586\nv00zKyXbfD4,2019.0,1,12,2019,John Wick: Chapter 3 Parabellum,Throwing Knives Scene,tt6146586\nDu5YK5FnyF4,1988.0,4,10,2019,They Live,Here to Chew Bubble Gum and Kick Ass Scene,tt0096256\niVXVD0KxSug,1988.0,1,10,2019,They Live,The Church Raid Scene,tt0096256\nyjw_DuNkOUw,1988.0,2,10,2019,They Live,Seeing the Truth Scene,tt0096256\nvlTPIYTd32Q,1988.0,6,10,2019,They Live,The Fight Continues Scene,tt0096256\nGeAcikP5N7M,1988.0,8,10,2019,They Live,The Power Elite Scene,tt0096256\nqQgyoHsknIk,1988.0,3,10,2019,They Live,Aliens in the Grocery Store Scene,tt0096256\nvPpNgsJp4DA,1988.0,10,10,2019,They Live,Exposing the Aliens Scene,tt0096256\ndgyue1tT-uE,1988.0,5,10,2019,They Live,Fight in the Alley Scene,tt0096256\nQB8ken8pZ_s,1988.0,7,10,2019,They Live,Assault on the Hideout Scene,tt0096256\naFz1y45KaHA,1988.0,9,10,2019,They Live,TV Studio Attack Scene,tt0096256\nG7gklW3Xbn8,2019.0,4,10,2019,Happy Death Day 2U,Back in the Loop Scene,tt8155288\nxRShAxpUZ6Y,2019.0,8,10,2019,Happy Death Day 2U,\"The \"\"Blind\"\" French Girl Scene\",tt8155288\nQMBLWE0pu8U,2019.0,6,10,2019,Happy Death Day 2U,I Am So Done With This Scene,tt8155288\nhT_CiaTcnN8,2019.0,7,10,2019,Happy Death Day 2U,Power Plant Explosion Scene,tt8155288\n1jEe_vPgNJE,2019.0,3,10,2019,Happy Death Day 2U,Time Explosion Scene,tt8155288\nqUammhHxd1k,2019.0,5,10,2019,Happy Death Day 2U,Hard Times Scene,tt8155288\nx4L81QLGYuM,2019.0,9,10,2019,Happy Death Day 2U,Electromagnetic Death Scene,tt8155288\nSmMmQHR_F4Y,2019.0,2,10,2019,Happy Death Day 2U,Locker Room Attack Scene,tt8155288\nI8-3VpZrBww,2019.0,10,10,2019,Happy Death Day 2U,Post-Credits Scene,tt8155288\n2dn_r_sgBEE,2019.0,1,10,2019,Happy Death Day 2U,The Loop Begins Scene,tt8155288\nQAO6uTkGpjM,2002.0,10,10,2019,Red Dragon,A Visit From the Dragon Scene,tt0289765\nKq3TiuRC-VQ,2002.0,5,10,2019,Red Dragon,Do You See? Scene,tt0289765\n4WNq9Yy9m_g,2002.0,9,10,2019,Red Dragon,\"Don't Hurt Me, D Scene\",tt0289765\n6nSu2qhTmNU,2002.0,7,10,2019,Red Dragon,I Won't Give Her to You Scene,tt0289765\nHVgu-41adSY,2002.0,6,10,2019,Red Dragon,The Date With Reba Scene,tt0289765\nKb2WClrbrAc,2002.0,1,10,2019,Red Dragon,I Think I'll Eat Your Heart Scene,tt0289765\n4fwQKF64AWY,2002.0,2,10,2019,Red Dragon,Hannibal Lecter Meeting Scene,tt0289765\nUWlxRKXD6sY,2002.0,4,10,2019,Red Dragon,Toilet Paper Letter Scene,tt0289765\nl4S4IBACQCM,2002.0,3,10,2019,Red Dragon,Dolarhyde's Attic Scene,tt0289765\nG8_ch6wsWjs,2002.0,8,10,2019,Red Dragon,Eating the Painting Scene,tt0289765\nAp8p92HCAbg,2019.0,5,10,2019,Little,The Friend Zone Scene,tt3281548\n0IuOpt3p3WE,2019.0,8,10,2019,Little,Middle School Makeover Scene,tt3281548\nZ0sFhnkRCsQ,2019.0,4,10,2019,Little,Teacher's Pet Scene,tt3281548\nV6SMgd9L6Z0,2019.0,7,10,2019,Little,\"Kid, Stop Lookin'! Scene\",tt3281548\ngoEiURelfsM,2019.0,6,10,2019,Little,Breadstick Karaoke Scene,tt3281548\noNuGwa5Kd8E,2019.0,1,10,2019,Little,I Wish You Were ! Scene,tt3281548\nV-vgoh3ukPc,2019.0,2,10,2019,Little,Unusual Morning Scene,tt3281548\nHTFjrXA8bFI,2019.0,10,10,2019,Little,Talent Show Victory Scene,tt3281548\na_VIjZa76jI,2019.0,9,10,2019,Little,Epic Dance Scene,tt3281548\nz82GwvEQ3Vc,2019.0,3,10,2019,Little,Black Mama Whoopin' Scene,tt3281548\nuIsdG0ydS5o,2019.0,1,10,2019,How to Train Your Dragon 3,Fighting the Trappers Scene,tt2386490\ndHXVvD4FFas,2019.0,10,10,2019,How to Train Your Dragon 3,Toothless Returns Scene,tt2386490\nX4lUmgN_ByQ,2019.0,6,10,2019,How to Train Your Dragon 3,Glider Rescue Scene,tt2386490\ntJ1uXsPXyao,2019.0,7,10,2019,How to Train Your Dragon 3,Battle on Grimmel's Boat Scene,tt2386490\n_0FLP8sxv2E,2019.0,8,10,2019,How to Train Your Dragon 3,Hiccup Saves Toothless Scene,tt2386490\nyCHoWsMt0LY,2019.0,3,10,2019,How to Train Your Dragon 3,Flirting Fail Scene,tt2386490\n9JQEbj0uh0k,2019.0,9,10,2019,How to Train Your Dragon 3,\"Goodbye, Toothless Scene\",tt2386490\nw6YTq-3hmnA,2019.0,4,10,2019,How to Train Your Dragon 3,Ruffnut Is Annoying Scene,tt2386490\n-AZg55qXj7U,2019.0,5,10,2019,How to Train Your Dragon 3,The Hidden World Scene,tt2386490\nO-W3C2RQduY,2019.0,2,10,2019,How to Train Your Dragon 3,Grimmel's Warning Scene,tt2386490\nr5ilcq9hUZI,2018.0,5,10,2019,Thoroughbreds,Putting the Horse Down Scene,tt5649108\nPzTICfN0A-4,2018.0,8,10,2019,Thoroughbreds,Drugging Herself Scene,tt5649108\nC4DPvNXtOzA,2018.0,2,10,2019,Thoroughbreds,Being Honest Scene,tt5649108\nS1UpuPvAUss,2018.0,6,10,2019,Thoroughbreds,Do You Have A Gun? Scene,tt5649108\no5NPINxrB7g,2017.0,6,10,2019,Blueprint,Caught Cheating Scene,tt7287136\nF5NFCYDB5hI,2018.0,9,10,2019,Thoroughbreds,Framed for Murder Scene,tt5649108\nrsi2WcPIcQ0,2018.0,7,10,2019,Thoroughbreds,You Cannot Hesitate Scene,tt5649108\nIfZmBGcWkLI,2018.0,3,10,2019,Thoroughbreds,The Technique Scene,tt5649108\nDYPR82c0v00,2018.0,4,10,2019,Thoroughbreds,Contemplating Murder Scene,tt5649108\nj91qPMHaqbg,2018.0,1,10,2019,Thoroughbreds,I Don't Feel Anything Scene,tt5649108\n1bBOUr7rAHw,2018.0,10,10,2019,Thoroughbreds,Amanda's Letter Scene,tt5649108\nCwgIvhYyeTc,2017.0,3,10,2019,Blueprint,Mourning on the Court Scene,tt7287136\nkJVKPHBFNF8,2017.0,7,10,2019,Blueprint,Get Off My Floor Scene,tt7287136\n9Wy-6pabUwU,2017.0,10,10,2019,Blueprint,We Can't Give Up Scene,tt7287136\n3jEDXJvOCs8,2017.0,8,10,2019,Blueprint,Protection Against the Protectors Scene,tt7287136\nSZnZMhfusbA,2017.0,4,10,2019,Blueprint,Love On and Off the Court Scene,tt7287136\n_BK3aiBX43Q,2017.0,2,10,2019,Blueprint,They Didn't See Him as Human Scene,tt7287136\nB3bUD6nAKvU,2017.0,1,10,2019,Blueprint,\"I Am Beautiful, I Am Smart Scene\",tt7287136\nGM59PdNB7FI,2017.0,5,10,2019,Blueprint,Drunken Love Scene,tt7287136\nGcs2QIB_X5k,2017.0,9,10,2019,Blueprint,This All You Got? Scene,tt7287136\nE7XIYOvcjuE,2015.0,4,10,2019,Propeller,Elijah Berle's Epic Grinds Scene,tt4666228\n_iinqPkm6m4,2019.0,8,10,2019,Captive State,You Work for Me Now Scene,tt5968394\nMybqJCvM1z0,2019.0,10,10,2019,Captive State,Striking the First Blow Scene,tt5968394\nzZg6j228i3A,2019.0,7,10,2019,Captive State,Alien Hunters Scene,tt5968394\nvi8Kaoib33Y,2019.0,3,10,2019,Captive State,Bug Removal Scene,tt5968394\nA3yrtArn5zA,2019.0,1,10,2019,Captive State,Aliens in the Tunnel Scene,tt5968394\nV4hv2OSD3s4,2019.0,4,10,2019,Captive State,Unity Rally Bombing Scene,tt5968394\nc6EhzIb5NKo,2019.0,2,10,2019,Captive State,Roach Attack Scene,tt5968394\nDka4AUVm_j4,2019.0,6,10,2019,Captive State,Police Raids Scene,tt5968394\n4hA7ILi4l68,2019.0,9,10,2019,Captive State,The Plan Was to Fail Scene,tt5968394\nq0k-b9FeGFU,2019.0,5,10,2019,Captive State,Alien Face Off Scene,tt5968394\nM_h6qdnNiNw,2015.0,5,10,2019,Propeller,Dynamite Chris Pfanner Scene,tt4666228\no_rv7bmEDm0,2015.0,2,10,2019,Propeller,The Legend of Rowan Zorilla Scene,tt4666228\n22LBB9jJG60,2015.0,9,10,2019,Propeller,Pedro Barros Rides Like the Wind Scene,tt4666228\nrdc5PXKBFdE,2015.0,6,10,2019,Propeller,Gilbert Crockett Evades the Hammer Scene,tt4666228\nS_rNBw8E98s,2015.0,10,10,2019,Propeller,Kyle Walker Grinds and Ollies Scene,tt4666228\nN1UxH6P-Fgc,2015.0,1,10,2019,Propeller,Chima Ferguson vs. the World Scene,tt4666228\nss7eqc_SHsg,2015.0,7,10,2019,Propeller,Dustin Dollin: Skater Scene,tt4666228\nFqbR0-PbFOo,2015.0,8,10,2019,Propeller,The Outlaw Geoff Rowley Scene,tt4666228\nLjSeILLCe2M,2015.0,3,10,2019,Propeller,Tony Trujillo's Urban Domination Scene,tt4666228\nIKa2Mr-yHnE,2019.0,3,10,2019,Pet Sematary,Hit by a Truck Scene,tt0837563\n70eKt79PSQw,2019.0,7,10,2019,Pet Sematary,Living Dead Girl Scene,tt0837563\nY5Y0SYRZRtM,2019.0,6,10,2019,Pet Sematary,Jud's Death Scene,tt0837563\nxHtAfA2ctBs,2019.0,4,10,2019,Pet Sematary,Buried in the Sematary Scene,tt0837563\nH5LLqPyF11w,2019.0,1,10,2019,Pet Sematary,The Barrier Scene,tt0837563\ntMB7LgnO2Wo,2019.0,2,10,2019,Pet Sematary,Dead is Better Scene,tt0837563\nHUPoWdZ1ZdQ,2019.0,9,10,2019,Pet Sematary,Stabbed in the Gut Scene,tt0837563\n6_Ed23ettio,2019.0,8,10,2019,Pet Sematary,\"Evil Sister, Evil Daughter Scene\",tt0837563\nFMbSH8g9vsU,2019.0,5,10,2019,Pet Sematary,Back From the Dead Scene,tt0837563\newbUaMvCaYg,2019.0,10,10,2019,Pet Sematary,Undead Family Scene,tt0837563\nvizu1RigaBI,2016.0,2,10,2019,Embers,Maybe We're Married Scene,tt5599818\newANNniIEhc,2016.0,7,10,2019,Embers,\"Forgotten Pain, Forgotten Love Scene\",tt5599818\n4fKRyf8BI-Q,2016.0,9,10,2019,Embers,The Last Cello Performance Scene,tt5599818\nrKQEYi53rvQ,2016.0,4,10,2019,Embers,I Was a Queen Scene,tt5599818\ngbIKuFaDbV8,2016.0,3,10,2019,Embers,Working for Nothing Scene,tt5599818\nYoI_YkIGXXs,2016.0,5,10,2019,Embers,A Pale Horse Scene,tt5599818\nx7TPeGns0N8,2016.0,10,10,2019,Embers,Escape Into Oblivion Scene,tt5599818\n-krDTO77jrY,2016.0,1,10,2019,Embers,All Dressed up and Nowhere to Go Scene,tt5599818\nan5-b_99zH0,2016.0,8,10,2019,Embers,Raider Troubles Scene,tt5599818\nuD-VMe03AdY,2016.0,6,10,2019,Embers,Making Love Like the First Time Scene,tt5599818\nGOYpqqTsO-k,2014.0,5,10,2019,Everyday Rebellion,Power And Corruption Scene,tt3391782\nfgbjvvCPa88,1989.0,4,10,2019,Pet Sematary,Gage's Death Scene,tt0098084\nA_bC8fF6WZE,1989.0,5,10,2019,Pet Sematary,Dead is Better Scene,tt0098084\nJ-D8n4_fd6Q,1989.0,1,10,2019,Pet Sematary,Deadly Warning Scene,tt0098084\nOBXQr25dHQE,1989.0,6,10,2019,Pet Sematary,Killing Jud Scene,tt0098084\ngA-VU0mczSI,1989.0,7,10,2019,Pet Sematary,I Brought You Something Mommy Scene,tt0098084\nv3E4s7VN4xE,1989.0,3,10,2019,Pet Sematary,The Dying Sister Scene,tt0098084\nA949a8j5Boo,1989.0,8,10,2019,Pet Sematary,Killing Church Scene,tt0098084\nZbL_db16k0w,1989.0,2,10,2019,Pet Sematary,The Cat Comes Back Scene,tt0098084\ng0nhEzoCkJo,1989.0,9,10,2019,Pet Sematary,Killing Gage Scene,tt0098084\negC6XhnfuZk,1989.0,10,10,2019,Pet Sematary,Rachel Comes Home Scene,tt0098084\nMY-ZusWqyqs,2014.0,6,10,2019,Everyday Rebellion,Destroying Debt Scene,tt3391782\ngaz2wRxRZ7s,2014.0,2,10,2019,Everyday Rebellion,Evicting The Evictors Scene,tt3391782\npgkcX22u0SI,2014.0,1,10,2019,Everyday Rebellion,I Don't Want to Be on the Street Again Scene,tt3391782\nQmSSFYFSA00,2014.0,3,10,2019,Everyday Rebellion,Graffiti's Role In The Revolution Scene,tt3391782\nBf0HvoLXWdU,2014.0,9,10,2019,Everyday Rebellion,The Iran Tribunal Scene,tt3391782\n9aIOR7dl2CY,2014.0,4,10,2019,Everyday Rebellion,The Arab Spring Scene,tt3391782\nAajX1xvWnk0,2014.0,8,10,2019,Everyday Rebellion,Activism Takes Flight Scene,tt3391782\nS1C8tqyy3oc,2014.0,10,10,2019,Everyday Rebellion,Occupy Wall Street Scene,tt3391782\naYbKjHmTdMw,2014.0,7,10,2019,Everyday Rebellion,FEMEN Training Scene,tt3391782\noexJPg9rZqo,2019.0,5,10,2019,Wonder Park,Chimpanzombies Invasions Scene,tt6428676\nu_jemmhoj0Q,2019.0,1,10,2019,Wonder Park,Flying Fish Carousel Scene,tt6428676\nNCi4QNKpVB8,2019.0,7,10,2019,Wonder Park,Rebuilding the Park Scene,tt6428676\n3wLF8oDA3ZM,2019.0,9,10,2019,Wonder Park,A Splendiferous Idea Scene,tt6428676\n_t38ENQ9jlY,2019.0,8,10,2019,Wonder Park,Wild Ride Scene,tt6428676\nb5Q6A_1YyHg,2019.0,2,10,2019,Wonder Park,Homemade Roller Coaster Scene,tt6428676\n-sD2jY0KMA8,2019.0,3,10,2019,Wonder Park,Rocket Monkeys Scene,tt6428676\nPlJ-x-JNEj8,2019.0,4,10,2019,Wonder Park,Robot Spider Attack Scene,tt6428676\nANTOMowTXZU,2019.0,10,10,2019,Wonder Park,Saving Wonderland Scene,tt6428676\n-kKqgjrbb6I,2019.0,6,10,2019,Wonder Park,Balloon Chase Scene,tt6428676\nvKuvku8JEq0,2012.0,8,10,2019,You Drive Me Crazy,Getting Behind the Wheel Scene,tt2267858\nU5nphwXr8VY,2012.0,6,10,2019,You Drive Me Crazy,Non-Stop Failure Scene,tt2267858\ndP5e3MxjRiw,2012.0,3,10,2019,You Drive Me Crazy,Backseat Front Seat Driving Scene,tt2267858\nLN8iHxuFSts,2012.0,2,10,2019,You Drive Me Crazy,Learning to Drive in Japan Scene,tt2267858\nRsGRrlK84zM,2012.0,1,10,2019,You Drive Me Crazy,A Korean in Germany Scene,tt2267858\nVb9wR2ibCRw,2012.0,5,10,2019,You Drive Me Crazy,The Puja Ritual Scene,tt2267858\nF3yawE_0QaE,2012.0,9,10,2019,You Drive Me Crazy,Japan is About Patience and Frustration Scene,tt2267858\nYtceTJF_VhM,2012.0,7,10,2019,You Drive Me Crazy,Driving Into Eternity Scene,tt2267858\nz6JcuVWaVfQ,2012.0,4,10,2019,You Drive Me Crazy,An Army Wife Scene,tt2267858\nX3WA8eZ4Q_0,2012.0,10,10,2019,You Drive Me Crazy,Fighting Back Scene,tt2267858\n0Dp--gKKMJ8,2018.0,5,10,2019,Action Point,Catching Animals Scene,tt6495770\nyWSRVYU_JMo,1993.0,7,10,2019,Addams Family Values,Eat Me! Scene,tt0106220\nv9UIDDlnSgA,1993.0,8,10,2019,Addams Family Values,Thanksgiving Play Scene,tt0106220\nKe-MYW3XORg,1993.0,2,10,2019,Addams Family Values,Which One Will Bounce? Scene,tt0106220\nNIDabDkcS8o,1993.0,3,10,2019,Addams Family Values,Morticia and Gomez Dance Scene,tt0106220\nyprYw3FQUpQ,1993.0,9,10,2019,Addams Family Values,Bombing Fester Scene,tt0106220\nw80ZSg7kNbE,1993.0,6,10,2019,Addams Family Values,The Happy Hut Scene,tt0106220\nD1IshjFWDJk,1993.0,4,10,2019,Addams Family Values,Bachelor Party Scene,tt0106220\n7p0J9wVGwZ0,1993.0,1,10,2019,Addams Family Values,It's an Addams! Scene,tt0106220\nPmYdvwAqwDg,1993.0,10,10,2019,Addams Family Values,Shock Value Scene,tt0106220\noK1zfJausVM,1993.0,5,10,2019,Addams Family Values,Would You Die for Me? Scene,tt0106220\nZKxqB5gCX6E,2018.0,7,10,2019,Action Point,A Sticky Situation Scene,tt6495770\n1N81Dwye3VM,2018.0,3,10,2019,Action Point,No Speed Limits Scene,tt6495770\n3Cf6HfBCcso,2018.0,2,10,2019,Action Point,Stealing Wood Scene,tt6495770\nE4rFRdmeWqU,2018.0,9,10,2019,Action Point,Bus Jump Scene,tt6495770\nSTfoetR9Su8,2018.0,10,10,2019,Action Point,Rager Riot Scene,tt6495770\nVchw3dbVeUo,2018.0,1,10,2019,Action Point,The Sh**birds Scene,tt6495770\n9EFxRx8EbDk,2018.0,4,10,2019,Action Point,Bad Publicity is Good Publicity Scene,tt6495770\nUUAQ3T09_os,2018.0,8,10,2019,Action Point,Trebuchet Mishap Scene,tt6495770\nPyUqYOB4ey8,2018.0,6,10,2019,Action Point,Shooting the Commercial Scene,tt6495770\nALO5aag-ZIo,1996.0,6,10,2019,Thinner,The White Man from Town Scene,tt0117894\n9fFbDzUOD5o,1996.0,5,10,2019,Thinner,You Lose! Scene,tt0117894\nHiavOVW1Iv8,1996.0,9,10,2019,Thinner,Did You Try It? Scene,tt0117894\n6BBGO5M_2A0,1996.0,7,10,2019,Thinner,The Attack Scene,tt0117894\nuCG1EiqEAEg,1996.0,8,10,2019,Thinner,Die Clean Scene,tt0117894\nKy6GupHDuOw,1996.0,2,10,2019,Thinner,The Curse Scene,tt0117894\n-7cV5cWQmxg,1996.0,1,10,2019,Thinner,Still Thinking About Food? Scene,tt0117894\nOFJKL2POF5I,1996.0,3,10,2019,Thinner,Take the Gun! Scene,tt0117894\ngp7K6ZwuDow,1996.0,4,10,2019,Thinner,I'm Being Erased! Scene,tt0117894\n81oozSLS2CM,1996.0,10,10,2019,Thinner,What Have I Done? Scene,tt0117894\nPWihKQVb_aY,2012.0,2,10,2019,\"From Nothing, Something\",Top Female Chefs Scene,tt2062996\nZMIGwSNQA4Y,2012.0,7,10,2019,\"From Nothing, Something\",Deadline Hell Scene,tt2062996\nzdF8hHVUzM8,2012.0,10,10,2019,\"From Nothing, Something\",Achieving Success Scene,tt2062996\nQxzrv4GCwo0,2012.0,6,10,2019,\"From Nothing, Something\",The Creative Process Scene,tt2062996\nZ_5l0p0gmvA,2012.0,9,10,2019,\"From Nothing, Something\",The Mind Of A Creator Scene,tt2062996\neqarJw8A2YY,2012.0,4,10,2019,\"From Nothing, Something\",Fashion & Music Scene,tt2062996\nfp8Ob7kBqJc,2012.0,8,10,2019,\"From Nothing, Something\",Cancer Fighting Invention Scene,tt2062996\nkoahs44agqU,2012.0,1,10,2019,\"From Nothing, Something\",Young Creatives Scene,tt2062996\nEE2FUs9iI0A,2012.0,3,10,2019,\"From Nothing, Something\",Surprise Filmmakers Scene,tt2062996\nmiE1oJ9ysUs,2012.0,5,10,2019,\"From Nothing, Something\",Star Trek Alien Inspiration Scene,tt2062996\nsFRjPMAxn1k,2018.0,3,8,2019,The Ashram,Something Hard to Believe Scene,tt5596104\nMGuKcmxMPQk,2018.0,2,8,2019,The Ashram,Miracle Cure Scene,tt5596104\nZzkELXr8siQ,2018.0,1,8,2019,The Ashram,Belief Is All We Have Scene,tt5596104\nF2UxQiUoCD8,2018.0,4,8,2019,The Ashram,You Will See the Light Scene,tt5596104\nQymZP9taonU,2018.0,8,8,2019,The Ashram,A Spiritual Coma Scene,tt5596104\n_pZJUgFokcw,2018.0,5,8,2019,The Ashram,The Universal Consciousness Scene,tt5596104\nZ8lnce2Ij-4,2018.0,6,8,2019,The Ashram,Powers Awakened Scene,tt5596104\n7_ClXAzhDQ4,2018.0,7,8,2019,The Ashram,A Shallow Grave Scene,tt5596104\n6pUt6xlMorQ,2018.0,2,10,2019,Eighth Grade,Pool Party Scene,tt7014006\nRA0xUXiz_dc,2014.0,7,10,2019,Point and Shoot,The Freedom Fighter Scene,tt3576060\noSEQnREqfF4,2015.0,1,10,2019,Lola's Last Letter,You Have Really Good French Fries Scene,tt3206798\nMpPwsiwPhF4,2015.0,3,10,2019,Lola's Last Letter,What Do You Want From Me? Scene,tt3206798\nofrL7_UA04k,2015.0,9,10,2019,Lola's Last Letter,It Was My Fault Scene,tt3206798\nbocu5uL8siM,2015.0,5,10,2019,Lola's Last Letter,How Could I Ever Trust You Again? Scene,tt3206798\nW4zjAZcHUaE,2015.0,6,10,2019,Lola's Last Letter,Want to Come Inside? Scene,tt3206798\nyHo2Yx50F8c,2015.0,2,10,2019,Lola's Last Letter,Let's Do It on Camera Scene,tt3206798\nPeliEV1oD2A,2015.0,10,10,2019,Lola's Last Letter,Own Your Mistakes Scene,tt3206798\nZRdnTHyJQQM,2015.0,7,10,2019,Lola's Last Letter,A Drunk Driver Hit My Son Scene,tt3206798\n2c3-0yhNlfI,2015.0,4,10,2019,Lola's Last Letter,\"No Work, All Play Scene\",tt3206798\nR5h3Pynz-ts,2015.0,8,10,2019,Lola's Last Letter,I Love You The Way You Are Scene,tt3206798\nSdSQJTSYXJY,2014.0,4,10,2019,Point and Shoot,Was It Worth It? Scene,tt3576060\nOAqqb5FC_a0,2014.0,5,10,2019,Point and Shoot,The Madness of Solitary Confinement Scene,tt3576060\nyU6yKmqhhp8,2014.0,8,10,2019,Point and Shoot,Share on Facebook Scene,tt3576060\nyebKBYB7rEs,2014.0,6,10,2019,Point and Shoot,Libyan Prison Break Scene,tt3576060\n8nSGhJRDjX4,2014.0,1,10,2019,Point and Shoot,A Soldier's Life Scene,tt3576060\npf4EjhjgisM,2014.0,10,10,2019,Point and Shoot,Liberty for Libya Scene,tt3576060\n4MWlfC7QTDs,2014.0,2,10,2019,Point and Shoot,A Call to Arms Scene,tt3576060\nsa2LecdGh5Q,2014.0,9,10,2019,Point and Shoot,Did You Ever Kill Anyone? Scene,tt3576060\nHNPPD_4oD9M,2014.0,3,10,2019,Point and Shoot,You Will Never See America Again Scene,tt3576060\nkNtopT3-5t0,2018.0,4,10,2019,Eighth Grade,Can't Wait To Grow Up Scene,tt7014006\nYq9fKm8q0iY,2018.0,7,10,2019,Eighth Grade,I Get Nervous Scene,tt7014006\nsxY6Jc1MZSE,2018.0,2,10,2019,Duck Butter,Getting Intimate Scene,tt6958014\n6R2Uu5x6Imo,2018.0,4,10,2019,Duck Butter,Making Beautiful Music Together Scene,tt6958014\nVwkGKFFk-F4,2018.0,8,10,2019,Eighth Grade,Do I Make You Sad? Scene,tt7014006\nAcSDeQhGGFM,2018.0,6,10,2019,Eighth Grade,Truth or Dare Hell Scene,tt7014006\nLK-4Dmq6Hs0,2018.0,9,10,2019,Eighth Grade,Telling off the Bullies Scene,tt7014006\nNX12Wu1uqbI,2018.0,5,10,2019,Eighth Grade,Spying Dad Scene,tt7014006\nhH3peh07eq4,2018.0,1,10,2019,Eighth Grade,Being Yourself Scene,tt7014006\n6Ua_T32yaic,2018.0,10,10,2019,Eighth Grade,Szechuan Sauce Scene,tt7014006\nV9E9Nce1dC0,2018.0,3,10,2019,Eighth Grade,Thought You Hated Bananas Scene,tt7014006\nqiRW4OvzELU,2018.0,1,10,2019,Duck Butter,Sergio Sings Scene,tt6958014\nlUPTOiM_7CM,2018.0,8,10,2019,Duck Butter,Want to Try an Orgy? Scene,tt6958014\n2jqk0yyPkrY,2018.0,6,10,2019,Duck Butter,Manteca de Pato Scene,tt6958014\niwryTZf6bA0,2018.0,5,10,2019,Duck Butter,Do Stuff You Want to Do Scene,tt6958014\nGM1x6UcMp0Y,2018.0,9,10,2019,Duck Butter,This Has Been A Lot Scene,tt6958014\nIznFYCiGAPA,2018.0,3,10,2019,Duck Butter,I Want You Every Hour Scene,tt6958014\nuh4bsAP7K4k,2018.0,10,10,2019,Duck Butter,Say Hi To My S*** Scene,tt6958014\nqy58BaeEMyw,2018.0,7,10,2019,Duck Butter,Meeting Her Mom Scene,tt6958014\n5W19mLb-9JM,2018.0,10,10,2019,Johnny English Strikes Again,Virtual Reality Scene,tt6921996\nsuYDvQwikn4,2018.0,3,10,2019,Johnny English Strikes Again,Infiltrating the Ship Scene,tt6921996\nrpqgDDBcmcI,2018.0,4,10,2019,Johnny English Strikes Again,Running on Empty Scene,tt6921996\nJhzm2AvUGHA,2018.0,5,10,2019,Johnny English Strikes Again,A Hot Date Scene,tt6921996\n31fx9aF04ww,2018.0,6,10,2019,Johnny English Strikes Again,Dance Dance Assassination Scene,tt6921996\ns6moLb_ieqA,2018.0,1,10,2019,Johnny English Strikes Again,Pen Grenade Scene,tt6921996\ngFJT9ziRAUI,2018.0,9,10,2019,Johnny English Strikes Again,Knight in Shining Armor Scene,tt6921996\nwmu9xg12xuc,2018.0,7,10,2019,Johnny English Strikes Again,Driver's Ed Escape Scene,tt6921996\nlISiW7wcIVc,2018.0,2,10,2019,Johnny English Strikes Again,Fransh Waiters Scene,tt6921996\nlJ7F2kWLGuE,2018.0,8,10,2019,Johnny English Strikes Again,Mission Accomplished Scene,tt6921996\n9_SMqU969fw,2018.0,1,10,2019,Tully,A Special Baby Gift Scene,tt5610554\nNxrAVHpoBs4,2018.0,2,10,2019,Tully,Jonah's Dismissal Scene,tt5610554\nCmUXU3VLgGI,2018.0,4,10,2019,Tully,Being Trees Scene,tt5610554\n2W7WM3CuXPU,2018.0,6,10,2019,Tully,The Seductive Nanny Scene,tt5610554\nOCYRGGLywdQ,2018.0,9,10,2019,Tully,The Real  Scene,tt5610554\nEBu9PvRBPos,2018.0,10,10,2019,Tully,Saying Goodbye To  Scene,tt5610554\nqW7LtKsIfHM,2018.0,7,10,2019,Tully,Time To Move On Scene,tt5610554\nO3TmokjuQR0,2018.0,5,10,2019,Tully,Daddy's Darkest Desire Scene,tt5610554\n-Ian949JzDw,2018.0,3,10,2019,Tully,Meeting  Scene,tt5610554\nqDQo4nvQ2yw,2018.0,8,10,2019,Tully,Off The Deep End Scene,tt5610554\n3rb5s-BoCFM,2005.0,3,10,2019,Memoirs of a Geisha,\"Sweet, Shaved Ice Scene\",tt0397535\nKVnOa_HhgX4,2005.0,9,10,2019,Memoirs of a Geisha,The Heart Dies a Slow Death Scene,tt0397535\nHliXkWOMgaE,2005.0,6,10,2019,Memoirs of a Geisha,Snow Dance Scene,tt0397535\ndPaM45IreF4,2005.0,2,10,2019,Memoirs of a Geisha,Forbidden Love Scene,tt0397535\nHV6s5JiA82g,2005.0,5,10,2019,Memoirs of a Geisha,Sumo Match Scene,tt0397535\nHUZ-rA7L0uk,2005.0,1,10,2019,Memoirs of a Geisha,Sold to Geishas Scene,tt0397535\n0NAWQvMZpO8,2005.0,8,10,2019,Memoirs of a Geisha,You Have Ruined Me Scene,tt0397535\nlG40tBFlGMQ,2005.0,7,10,2019,Memoirs of a Geisha,Burning Vengeance Scene,tt0397535\nMyzSuy1v6DM,2005.0,10,10,2019,Memoirs of a Geisha,Closer to You Scene,tt0397535\nhhjLmbn5YoM,2016.0,5,10,2019,Love Is Thicker Than Water,We Wrote Our Own Vows Scene,tt4092422\nLeGBkG_sRNc,2005.0,4,10,2019,Memoirs of a Geisha,Becoming a Geisha Scene,tt0397535\n9qNFpkUBSro,2016.0,6,10,2019,Love Is Thicker Than Water,A Stiff Challenge Scene,tt4092422\ntQ_Ry1KTluA,2016.0,4,10,2019,Love Is Thicker Than Water,Living Together vs. Loving Together Scene,tt4092422\ntgBurIq9lGE,2016.0,10,10,2019,Love Is Thicker Than Water,Happy Beginnings Scene,tt4092422\nvAO2D0riCDg,2016.0,3,10,2019,Love Is Thicker Than Water,From Wank to Wedding Scene,tt4092422\nowUlPwoEfaM,2016.0,8,10,2019,Love Is Thicker Than Water,Bigotry in the Bathroom Scene,tt4092422\n3w6Z_-R4Kk8,2016.0,2,10,2019,Love Is Thicker Than Water,Staying the Night Scene,tt4092422\nr5ia1XDzIAU,2016.0,7,10,2019,Love Is Thicker Than Water,A Better Life Scene,tt4092422\nrc5v5EODszE,2016.0,9,10,2019,Love Is Thicker Than Water,I Love You Scene,tt4092422\nbqy-R0SemoM,2016.0,1,10,2019,Love Is Thicker Than Water,Come Like a Tornado Scene,tt4092422\nYOCEHKSgwlQ,2018.0,1,10,2019,Annihilation,Albino Alligator Attack Scene,tt2798920\nZrDL3HQCwE8,2018.0,4,10,2019,Annihilation,A Bear in the Cabin Scene,tt2798920\nxC3PGTTjX7E,2018.0,2,10,2019,Annihilation,Found Footage Scene,tt2798920\nmAB-hSPmzjk,2018.0,8,10,2019,Annihilation,Cosmic Birth Scene,tt2798920\nMg0bvyIEHcs,2018.0,5,10,2019,Annihilation,The Mutant Bear Scene,tt2798920\nGi3K-CApAS4,2018.0,9,10,2019,Annihilation,The Humanoid Scene,tt2798920\nRSl6bwZabjA,2018.0,6,10,2019,Annihilation,Josie's Refraction Scene,tt2798920\n282_VCffiTo,2018.0,10,10,2019,Annihilation,The End of Us Scene,tt2798920\nVHj96nAjRn0,2018.0,3,10,2019,Annihilation,The Fungal Horror Scene,tt2798920\nkVbmTKqZ31M,2018.0,7,10,2019,Annihilation,The Shimmer Speaks Scene,tt2798920\naPdxMGV1Y28,2018.0,1,6,2019,Monsterland 2,Brace Face Scene,tt7575702\n2kdSBZ2QieY,2018.0,4,6,2019,Monsterland 2,Alien Abortion Scene,tt7575702\njcmTZfv5z-k,2018.0,2,6,2019,Monsterland 2,The Beast Attacks Scene,tt7575702\nhq4lKhTXzXQ,2018.0,3,6,2019,Monsterland 2,Let's Feast Scene,tt7575702\nrdWIo5R10CM,2018.0,5,6,2019,Monsterland 2,Killing The Killer Scene,tt7575702\nZyMP_jN2Veg,2018.0,6,6,2019,Monsterland 2,A Simple Procedure Scene,tt7575702\nMFN2fMP05CI,2017.0,3,8,2019,The Purging Hour,Bump In The Night Scene,tt4953610\nS3MGT2fahAY,1995.0,10,10,2019,Tales From the Crypt: Demon Knight,I'm Gonna Take Your Heart Scene,tt0114608\n5zileWIEgoQ,1995.0,1,10,2019,Tales From the Crypt: Demon Knight,Hot and Squishy Scene,tt0114608\nKuy5Qgp5pvg,1995.0,4,10,2019,Tales From the Crypt: Demon Knight,I Can Give You Love Scene,tt0114608\n2sX5DMSCipI,1995.0,7,10,2019,Tales From the Crypt: Demon Knight,Possessed Uncle Willy Scene,tt0114608\newiNzru8Kek,1995.0,6,10,2019,Tales From the Crypt: Demon Knight,Monsters in the Mines Scene,tt0114608\n7sXlyaQ_ZHs,1995.0,2,10,2019,Tales From the Crypt: Demon Knight,Condemned to Hell Scene,tt0114608\nurbo6F_qD5k,1995.0,9,10,2019,Tales From the Crypt: Demon Knight,Blood-Covered Badass Scene,tt0114608\nfbDgv4huUp4,1995.0,3,10,2019,Tales From the Crypt: Demon Knight,Demons At The Door Scene,tt0114608\nMWc0I1-Sfj4,1995.0,8,10,2019,Tales From the Crypt: Demon Knight,You Ain't Such a Bad Fella Scene,tt0114608\nD7gk8nagjHU,1995.0,5,10,2019,Tales From the Crypt: Demon Knight,Demonic Hooker Scene,tt0114608\nH6jj52hYXeQ,2017.0,5,8,2019,The Purging Hour,Car Trouble Scene,tt4953610\nFFnlaQlI1So,2015.0,1,8,2019,The Purging Hour,Following the Blood Scene,tt4953610\nogUC0Fcvh7g,2015.0,2,8,2019,The Purging Hour,Stranger In The Woods Scene,tt4953610\nUkPkaNawTUw,2017.0,4,8,2019,The Purging Hour,Coming Unhinged Scene,tt4953610\nc_SJMeRltkA,2017.0,7,8,2019,The Purging Hour,Gory Garage Scene,tt4953610\n0yAYgv2YQ5k,2017.0,8,8,2019,The Purging Hour,Death at the Door Scene,tt4953610\nNirTc-GvKLk,2017.0,6,8,2019,The Purging Hour,A Father's Worst Nightmare Scene,tt4953610\nPkUS3Y9bR9s,2017.0,6,8,2019,Strange Events,Elevator Stabbing Scene,tt7043070\n5k-dlqqHE2M,2007.0,1,10,2019,Dead Silence,White As A Sheet Scene,tt0455760\nqTey0qxMboA,2007.0,2,10,2019,Dead Silence,Sleeping with the Enemy Scene,tt0455760\nn1VEmXiaFY4,2007.0,3,10,2019,Dead Silence,The Story of Mary Shaw Scene,tt0455760\np0cf4-1zuOk,2007.0,10,10,2019,Dead Silence,Now Who's The Dummy? Scene,tt0455760\nrOzJnj3UmNE,2007.0,4,10,2019,Dead Silence,Mortuary Massacre Scene,tt0455760\nX2X3DxFAFlQ,2007.0,5,10,2019,Dead Silence,Our Family's Curse Scene,tt0455760\nY9Nt3hlMUUI,2007.0,7,10,2019,Dead Silence,The Perfect Doll Scene,tt0455760\noEHayxH_YT8,2007.0,6,10,2019,Dead Silence,It's a Boy Scene,tt0455760\n-t06SZje8O0,2007.0,8,10,2019,Dead Silence,Attack of the Killer Dolls Scene,tt0455760\nz7J95xF4vW8,2007.0,9,10,2019,Dead Silence,Kill Billy Scene,tt0455760\nDyUus5cUe08,2017.0,2,8,2019,Strange Events,Scary Sister Scene,tt7043070\naHI-JX6Q3Xk,2017.0,3,8,2019,Strange Events,Hallway Of Horror Scene,tt7043070\nrHIIMIBMvng,2017.0,1,8,2019,Strange Events,Playback Scene,tt7043070\npy7xqlpvCIk,2017.0,7,8,2019,Strange Events,Death by Toothbrush Scene,tt7043070\n6puVCaR2E7M,2017.0,4,8,2019,Strange Events,Did You Miss Us? Scene,tt7043070\ndXk2wGeBUHE,2017.0,8,8,2019,Strange Events,Sexorcism Scene,tt7043070\neQSqgubHzn0,2017.0,5,8,2019,Strange Events,A Relaxing Bubble Death Scene,tt7043070\neB-ldQkL--0,2019.0,2,10,2019,Escape Room,The Oven Room Scene,tt5886046\nKiw89e1mHpM,2019.0,8,10,2019,Escape Room,You Can't Leave Scene,tt5886046\njjwg2PeDUxM,2019.0,6,10,2019,Escape Room,Hallucination Room Scene,tt5886046\naW3-E3My-kc,2019.0,1,10,2019,Escape Room,Walls Closing in Scene,tt5886046\n7mm8aQCp_oc,2019.0,5,10,2019,Escape Room,Test Your Limits Scene,tt5886046\nX8w0J4y5X4g,2019.0,10,10,2019,Escape Room,Let's Play Again Scene,tt5886046\nS6yZ-K4SHJU,2019.0,4,10,2019,Escape Room,Hold the Phone Scene,tt5886046\nz7siqPhc1qc,2019.0,3,10,2019,Escape Room,Trapped Under Ice Scene,tt5886046\nStoThowf7Y4,2019.0,9,10,2019,Escape Room,No Way Out Scene,tt5886046\nE-EDJ6Z8mS8,2019.0,7,10,2019,Escape Room,\"Breathe, Bitch! Scene\",tt5886046\n8uLL9nYu9YA,2009.0,1,10,2019,Haunting of Winchester House,Paranormal Investigator Scene,tt1521787\n6qXs7Yp75M8,2009.0,9,10,2019,Haunting of Winchester House,Exorcising the Ghosts Scene,tt1521787\nUU_Ly8gXV6M,2009.0,10,10,2019,Haunting of Winchester House,Stage Two Ghost Scene,tt1521787\nREkL4uLFnPs,2009.0,7,10,2019,Haunting of Winchester House,Stage One Ghost Scene,tt1521787\nST9ouIvHftA,2009.0,6,10,2019,Haunting of Winchester House,What Do You Want Scene,tt1521787\nntqVq02V2v0,2009.0,2,10,2019,Haunting of Winchester House,Demon Baby Scene,tt1521787\nLMcBi9a8_RQ,2009.0,5,10,2019,Haunting of Winchester House,Where It All Started Scene,tt1521787\nb31BhA8om1E,2009.0,8,10,2019,Haunting of Winchester House,Breaking the Circle Scene,tt1521787\nI3G-1_l97K4,2009.0,4,10,2019,Haunting of Winchester House,Chasing in the Dark Scene,tt1521787\nWjWpGhzYS6o,2009.0,3,10,2019,Haunting of Winchester House,Out of the Closet Scene,tt1521787\nG5aoRyZ-QtM,2019.0,2,10,2019,Miss Bala,Turning Informant Scene,tt5941692\ntEyY-ijoyaQ,2019.0,7,10,2019,Miss Bala,Trafficking Victims Scene,tt5941692\nHhmpYA22oio,2019.0,8,10,2019,Miss Bala,Just Smile and Accept Scene,tt5941692\nVLm7BuSsFK8,2019.0,9,10,2019,Miss Bala,The Seductive Assassin Scene,tt5941692\nPdmlJSk6QAk,2019.0,10,10,2019,Miss Bala,Deadly Miss Baja Scene,tt5941692\nd0c6KWKMAF8,2019.0,6,10,2019,Miss Bala,The Wrong Snitch Scene,tt5941692\nFbDFmWdG3NU,2019.0,4,10,2019,Miss Bala,Crossing the Border Scene,tt5941692\nqoXJJin1e7g,2019.0,1,10,2019,Miss Bala,Kidnapper Cop Scene,tt5941692\n891-YR-fgsk,2019.0,3,10,2019,Miss Bala,Take Your Clothes Off Scene,tt5941692\nfwITaMQj7S8,2019.0,5,10,2019,Miss Bala,Parking Lot Shootout Scene,tt5941692\n3TF7zAiuX1k,2016.0,1,10,2019,Almost Holy,The Ukrainian Punisher Scene,tt3080844\nqHizQ-En6Tk,2016.0,2,10,2019,Almost Holy,Restoring Childhoods Scene,tt3080844\nN7wkGjBcjp0,2016.0,4,10,2019,Almost Holy,Don't Force Me to Sin Scene,tt3080844\nNWNMrmwD7Xo,2016.0,10,10,2019,Almost Holy,All the Tears in the World Scene,tt3080844\nQteR6PIwTNk,2016.0,8,10,2019,Almost Holy,The President of Street Kids Scene,tt3080844\nfXn18S0O52A,2016.0,7,10,2019,Almost Holy,Lenin's Legacy Scene,tt3080844\nwS93oTI5JY8,2016.0,9,10,2019,Almost Holy,This Is the Real Ukraine Scene,tt3080844\n9J_YOz9jvG4,2016.0,6,10,2019,Almost Holy,You're Home Now Scene,tt3080844\nXP2jPEAalOw,2016.0,3,10,2019,Almost Holy,Becoming a Good Person Scene,tt3080844\nljzeZK56UeY,2016.0,5,10,2019,Almost Holy,The Soviet Superman Scene,tt3080844\nsxGRFqybDw8,2016.0,1,9,2019,The Pass,Erotic Tension Scene,tt5160154\nWUgVUfYuEiQ,2016.0,5,9,2019,The Pass,Trapped in the Closet Scene,tt5160154\nJXRw_5ug68w,2016.0,2,9,2019,The Pass,Blackface & Whiteface Scene,tt5160154\nVJECUbUadpg,2018.0,5,10,2019,Assassination Nation,Home Invasion Scene,tt6205872\nQh5tZM4ybhI,2016.0,7,9,2019,The Pass,Three's a Crowd Scene,tt5160154\ny-qCvfXMTlg,2018.0,4,10,2019,Assassination Nation,Shame and a Shovel Scene,tt6205872\njyDUZd-Orlc,2018.0,7,10,2019,Assassination Nation,Trapped in the Bathroom Scene,tt6205872\n944BOVL_y_U,2018.0,10,10,2019,Assassination Nation,Trigger Warning Scene,tt6205872\nQ1khILbP8yU,2018.0,9,10,2019,Assassination Nation,Saving Bex Scene,tt6205872\n5oHNA8muC4I,2018.0,2,10,2019,Assassination Nation,The Secret's Out Scene,tt6205872\n2k0S-F8VIhI,2018.0,3,10,2019,Assassination Nation,Cheerleader Knockout Scene,tt6205872\nNadEkwOLA7k,2018.0,6,10,2019,Assassination Nation,Taking Back the Night Scene,tt6205872\nS0X0KScmHvo,2018.0,8,10,2019,Assassination Nation,Calling Shotgun Scene,tt6205872\ntfUt-J2GCmA,2018.0,1,10,2019,Assassination Nation,Peeping Tom Scene,tt6205872\nlQm7hpsJsPA,2016.0,4,9,2019,The Pass,Do What You Agreed to Do Scene,tt5160154\nCVjRQMnURtM,2016.0,6,9,2019,The Pass,I Wanted You to Come Back Scene,tt5160154\nluE7cUCzQK4,2016.0,3,9,2019,The Pass,Their First Kiss Scene,tt5160154\noJT7pQyq63M,2016.0,8,9,2019,The Pass,I Dare You to Kiss Him Scene,tt5160154\n8510wKZLa6g,2016.0,9,9,2019,The Pass,Toying With Boys Scene,tt5160154\n_nnGxztgrQk,2014.0,7,10,2019,Mr. Peabody & Sherman,You Used the Wayback! Scene,tt0864835\njfhEIIK-jB8,2014.0,10,10,2019,Mr. Peabody & Sherman,Punching the Future in the Face Scene,tt0864835\nAhcxeUrWTRc,2014.0,5,10,2019,Mr. Peabody & Sherman,The Flying Machine Scene,tt0864835\nrWlFWMR9MfY,2014.0,6,10,2019,Mr. Peabody & Sherman,Going Greek Scene,tt0864835\nPiL1okP-jbc,2014.0,8,10,2019,Mr. Peabody & Sherman,Time Crash Scene,tt0864835\n9L-HJ7BVR6A,2014.0,2,10,2019,Mr. Peabody & Sherman,The French Revolution Scene,tt0864835\njjPq-r91oB4,2014.0,9,10,2019,Mr. Peabody & Sherman,I'm a Dog Too! Scene,tt0864835\nT1IyMJOC0JM,2014.0,4,10,2019,Mr. Peabody & Sherman,Egyptian Wedding Escape Scene,tt0864835\nRu_KziPyopw,2014.0,3,10,2019,Mr. Peabody & Sherman,My Beautiful Boy Scene,tt0864835\nZgeAaV-OFvs,2014.0,1,10,2019,Mr. Peabody & Sherman,The Story of Mr. Peabody Scene,tt0864835\nG-I4i0ClrmQ,2018.0,7,8,2019,Flower,Teen Killers on the Run Scene,tt2582784\nPf9UUPDJl9k,2018.0,6,8,2019,Flower,\"Good Cop, Bad Mom Scene\",tt2582784\niM0XndiNfd8,2018.0,4,8,2019,Flower,Parking Lot Makeout Scene,tt2582784\n_v0aLo9ualA,2018.0,3,8,2019,Flower,Market Meet Cute Scene,tt2582784\nZNQVHnzKvjg,2018.0,8,8,2019,Flower,Runaway Romance Scene,tt2582784\njWtYVevvApk,2018.0,1,8,2019,Flower,Blackmailing a Cop Scene,tt2582784\n0kM0c3Q-hHQ,2018.0,5,8,2019,Flower,What Did You Do?! Scene,tt2582784\nUpsprkCDFOs,2018.0,2,8,2019,Flower,Abuse Claim Scene,tt2582784\nKhS2-vKr1JY,2002.0,10,10,2019,Spirit,Finally Home Scene,tt0245429\nJrjycvHR0iI,2016.0,3,10,2019,Blue Jay,Here's to Eighty More Scene,tt5912454\nqlUJueukntw,2016.0,6,10,2019,Blue Jay,Dibs Scene,tt5912454\nfutultLrWms,2002.0,7,10,2019,Spirit,Sound the Bugle Scene,tt0245429\nBfF5J0uSC3E,2002.0,1,10,2019,Spirit,Grows Up Scene,tt0245429\nCa273QV9ik8,2002.0,6,10,2019,Spirit,Attack on the Lakota Scene,tt0245429\n-Kztqrjp2yw,2002.0,3,10,2019,Spirit,Breaking  Scene,tt0245429\n0J4K03Owgwc,2002.0,9,10,2019,Spirit,Canyon Chase Scene,tt0245429\ndRVq4Um7E5Q,2002.0,4,10,2019,Spirit,Training  Scene,tt0245429\nZ9h-ht1mVkw,2002.0,8,10,2019,Spirit,Engine of Destruction Scene,tt0245429\nQSqUVzkUvj8,2002.0,5,10,2019,Spirit,Horses in Love Scene,tt0245429\nweEay_Y4EeE,2002.0,2,10,2019,Spirit,Captured by Cowboys Scene,tt0245429\nWgRUpptAcAA,2016.0,10,10,2019,Blue Jay,You Are My World Scene,tt5912454\na88UYg3uwZw,2016.0,4,10,2019,Blue Jay,\"Happy Anniversary, Mr. Henderson Scene\",tt5912454\nVbQOa65nKqU,2016.0,2,10,2019,Blue Jay,Trashy Romance Novels Scene,tt5912454\nAL5i8ko_Blg,2016.0,5,10,2019,Blue Jay,Our Prom Song Scene,tt5912454\nvGqM44xx4zI,2016.0,7,10,2019,Blue Jay,Will You Kiss Me? Scene,tt5912454\n4x8o78xHel8,2016.0,9,10,2019,Blue Jay,We Would've Been So Happy Scene,tt5912454\nvEaLVMOwHn4,2016.0,8,10,2019,Blue Jay,High School Lovers Scene,tt5912454\noyXKvCRzYz8,2016.0,1,10,2019,Blue Jay,My Face Leaks Scene,tt5912454\nyEqjnlWEIcg,2006.0,3,10,2019,Flushed Away,Shrine To Beauty Scene,tt0424095\nOypxsTReBOM,2012.0,5,8,2019,500 MPH Storm,Acid Burn Scene,tt2518848\nmI6O2d4Ieok,2006.0,7,10,2019,Flushed Away,Rat-Mobile Chase Scene,tt0424095\ncbN7TQSGYlI,2006.0,2,10,2019,Flushed Away,Down The Toilet Scene,tt0424095\nr67faKKQyO4,2006.0,10,10,2019,Flushed Away,Saving The Sewer Scene,tt0424095\neOYwXi0B6KQ,2006.0,5,10,2019,Flushed Away,Painful Escape Scene,tt0424095\n2cxG6iiqEdk,2006.0,8,10,2019,Flushed Away,Le Frog and The Toad's Story Scene,tt0424095\nm3XsVwEuULw,2006.0,1,10,2019,Flushed Away,Dancing with Myself Scene,tt0424095\nuI7ijvSCHcI,2006.0,9,10,2019,Flushed Away,Le Frog Fight Scene,tt0424095\nePgiRqRIdwg,2006.0,6,10,2019,Flushed Away,Ice Cold Rita Scene,tt0424095\nVGcOGt-OV7s,2006.0,4,10,2019,Flushed Away,Getting Fridged Scene,tt0424095\nABLVvVkVtHo,2012.0,3,8,2019,500 MPH Storm,The Hypercane Scene,tt2518848\nDotrfvKEyiI,2012.0,6,8,2019,500 MPH Storm,Helicopter Crash Scene,tt2518848\nlXKwuj1pqrM,2012.0,2,8,2019,500 MPH Storm,The Mysterious Stranger Scene,tt2518848\nbMblXxTNWQg,2012.0,8,8,2019,500 MPH Storm,Blowing Up The Station Scene,tt2518848\np7h8oBhP_lE,2012.0,7,8,2019,500 MPH Storm,In The Eye Of The Storm Scene,tt2518848\nWtVDF5bNkqM,2012.0,1,8,2019,500 MPH Storm,Outrunning A Tornado Scene,tt2518848\nPFjN94zKbc4,2012.0,4,8,2019,500 MPH Storm,Escaping The Flood Scene,tt2518848\nKfxQi9_BfHI,1998.0,8,10,2019,Antz,Flooding The Colony Scene,tt0120587\njEeRRb8wnqQ,2012.0,6,10,2019,Super Cyclone,Swallowing Him Whole Scene,tt2381317\n3RWHkM-krJA,2012.0,4,10,2019,Super Cyclone,Everything's On Fire! Scene,tt2381317\nwZWNmL5VsIs,1998.0,2,10,2019,Antz,The Yowch Dance Scene,tt0120587\n6PrFocPT-Rs,1998.0,10,10,2019,Antz,The Mad General Mandible Scene,tt0120587\n-rsImQShehk,1998.0,3,10,2019,Antz,The Termite War Scene,tt0120587\nSbtm5uE3cCQ,1998.0,6,10,2019,Antz,Chip and Miffy Scene,tt0120587\ngFX14TEiBOw,1998.0,1,10,2019,Antz,You Are Insignificant Scene,tt0120587\n0h0S6EmQWrI,1998.0,7,10,2019,Antz,Stomped Flat Scene,tt0120587\nXrujkDtd0iY,1998.0,9,10,2019,Antz,A Ladder Of Ants Scene,tt0120587\neK20uOpc_AM,1998.0,4,10,2019,Antz,Weaver Fills in for Z Scene,tt0120587\nM9CgWWkwvdw,1998.0,5,10,2019,Antz,Kidnapping The Princess Scene,tt0120587\nT0gaeDWYHr4,2012.0,9,10,2019,Super Cyclone,Breaking Up Is Hard To Do Scene,tt2381317\nP430SxnueE4,2012.0,3,10,2019,Super Cyclone,Oil Tornado Scene,tt2381317\nqURMZDMKpxY,2012.0,2,10,2019,Super Cyclone,Men Overboard! Scene,tt2381317\nF0xKJcGIQZM,2012.0,5,10,2019,Super Cyclone,When The Dam Burst Scene,tt2381317\n1DNNWWORGo0,2012.0,1,10,2019,Super Cyclone,Exploding Volcano Scene,tt2381317\n2k-G7TPLUfk,2012.0,10,10,2019,Super Cyclone,A Brighter Future Scene,tt2381317\n86mBBMobUdY,2012.0,7,10,2019,Super Cyclone,Everybody Drowns Scene,tt2381317\nKq3ZaI7ccrM,2012.0,8,10,2019,Super Cyclone,Flying Into The Firestorm Scene,tt2381317\nBFWChdiNlEg,2013.0,3,10,2019,Alone for Christmas,Chandelier Shenanigans Scene,tt3120508\nSpg3JX8dRos,2013.0,2,10,2019,Alone for Christmas,Getting Decked By A Dog Scene,tt3120508\nMZG1HbQ3KCE,1994.0,10,10,2019,The Little Rascals,Winner By A Hair Scene,tt0110366\nE-F92GOLVcU,1994.0,9,10,2019,The Little Rascals,Bubble Trouble Scene,tt0110366\n7S2ffMUk7iI,1994.0,6,10,2019,The Little Rascals,Letter to Darla Scene,tt0110366\nufllQr0ClXg,1994.0,2,10,2019,The Little Rascals,Date With Destruction Scene,tt0110366\nVC0PPBrYBco,1994.0,1,10,2019,The Little Rascals,You Are So Beautiful To Me Scene,tt0110366\nmHGHJwXWh1k,1994.0,3,10,2019,The Little Rascals,Clubhouse Fire Scene,tt0110366\nF8UwjJzF4LY,1994.0,7,10,2019,The Little Rascals,Alfalfa Runs from the Bullies Scene,tt0110366\nDVA8vzEbm9Y,1994.0,5,10,2019,The Little Rascals,Taking Out a Loan Scene,tt0110366\naZJG26fSy94,1994.0,4,10,2019,The Little Rascals,Girls vs. Boys Scene,tt0110366\ntNvDa9kTDUw,1994.0,8,10,2019,The Little Rascals,L.O.V.E. Scene,tt0110366\nVO_llDPp0kY,2013.0,4,10,2019,Alone for Christmas,Gone Fishin' Scene,tt3120508\nzanh_ElKfdI,2013.0,6,10,2019,Alone for Christmas,Stupid Pet Tricks Scene,tt3120508\nW_aGbCWYX2Q,2013.0,5,10,2019,Alone for Christmas,Shock & Ow! Scene,tt3120508\n62Zbtotq0B8,2013.0,10,10,2019,Alone for Christmas,Wrapping It Up Scene,tt3120508\n5MpwO0oMUBY,2013.0,1,10,2019,Alone for Christmas,Breaking Out Of The Kennel Scene,tt3120508\nfar9-9beq-M,2013.0,8,10,2019,Alone for Christmas,Double Trouble Scene,tt3120508\nfrwyMLRko_8,2013.0,9,10,2019,Alone for Christmas,Treadmill Terror Scene,tt3120508\n3mhdNBdzHO8,2013.0,7,10,2019,Alone for Christmas,Bone Alone Scene,tt3120508\nKD6FsEaD-3U,2018.0,2,10,2019,A Quiet Place,Old Man's Death Scene,tt6644200\n4CmmKmlXD9I,2018.0,1,10,2019,A Quiet Place,Beau's Death Scene,tt6644200\nCeJQF4L0hx8,2018.0,4,10,2019,A Quiet Place,The Bathtub Scene,tt6644200\nZufljc_8uLk,2018.0,7,10,2019,A Quiet Place,Hunted in the Field Scene,tt6644200\n2F4ExP0q6RU,2018.0,5,10,2019,A Quiet Place,The Flooded Basement Scene,tt6644200\n1eoKvx5X9JQ,2018.0,9,10,2019,A Quiet Place,Finding the Weakness Scene,tt6644200\nrwDDgGuCVS0,2018.0,6,10,2019,A Quiet Place,Trapped in the Silo Scene,tt6644200\nThWvubM3qSs,2018.0,3,10,2019,A Quiet Place,They Hunt by Sound Scene,tt6644200\nkTtxe4pWpfQ,2018.0,10,10,2019,A Quiet Place,Killing the Alien Scene,tt6644200\n5WvXdaXIbYw,2018.0,8,10,2019,A Quiet Place,I Have Always Loved You Scene,tt6644200\nRKlctKGIpsA,2016.0,5,9,2019,Independents' Day,Anti-Alien Militiamen Scene,tt1628841\na1dqJn-r0-k,2016.0,1,9,2019,Independents' Day,Alien Dogfight Scene,tt1628841\n5tZeutuxfJw,2016.0,4,9,2019,Independents' Day,Poison Gas Attack Scene,tt1628841\nAySMP0SgVFY,2016.0,8,9,2019,Independents' Day,Shaking Hands with an Alien Scene,tt1628841\nDPU8L2vJvsc,2016.0,2,9,2019,Independents' Day,Aliens Over DC Scene,tt1628841\nyriA_JXQ8dw,2016.0,9,9,2019,Independents' Day,Taking Back the Planet Scene,tt1628841\n9TwfC7_M2b4,2016.0,3,9,2019,Independents' Day,The Healing Chamber Scene,tt1628841\nKdBP8sYgMT0,2016.0,7,9,2019,Independents' Day,Sabotaging the Spaceship Scene,tt1628841\n5nWugkh7A5U,2016.0,6,9,2019,Independents' Day,Uncovering the Alien Plans Scene,tt1628841\nKqdi0X9vJ0Q,2017.0,1,10,2019,Beauty Mark,Rental Negotiation Scene,tt4520924\n9EF7lRxLbtg,2017.0,2,10,2019,Beauty Mark,Legal Limits Scene,tt4520924\nFbI1dmDdLg8,2017.0,4,10,2019,Beauty Mark,Abuse Stories Scene,tt4520924\nz1PcJZEi_js,2017.0,3,10,2019,Beauty Mark,Religious Indifference Scene,tt4520924\nZgAf9AuNc6Q,2013.0,3,10,2019,The Great Gatsby,Gatsby's Wild Ride Scene,tt1343092\nA1-XFXX8rU4,2013.0,10,10,2019,The Great Gatsby,The Green Light Scene,tt1343092\n6rVFFaIyfH0,2013.0,6,10,2019,The Great Gatsby,Loving Daisy Scene,tt1343092\n2FlG1Z6jY-0,2013.0,8,10,2019,The Great Gatsby,It Was Daisy Scene,tt1343092\njL6rrLaw6rc,2013.0,5,10,2019,The Great Gatsby,Invitation to Tea Scene,tt1343092\nVKl41s51JvE,2013.0,7,10,2019,The Great Gatsby,A Fit of Rage Scene,tt1343092\n2zHHkSu1br4,2013.0,2,10,2019,The Great Gatsby,The Mysterious Mr. Gatsby Scene,tt1343092\n2Qz0AREgsdQ,2013.0,4,10,2019,The Great Gatsby,Kinda Takes Your Breath Away Scene,tt1343092\ntFkpixS3QZQ,2013.0,9,10,2019,The Great Gatsby,Poolside Murder Scene,tt1343092\nZQHhiZUNM3Q,2013.0,1,10,2019,The Great Gatsby,Beautiful Little Fool Scene,tt1343092\nRVVBffj2v8o,2017.0,5,10,2019,Beauty Mark,I Did Something With My Life Scene,tt4520924\n8cjxrd4MMMU,2017.0,10,10,2019,Beauty Mark,A Deal With The Devil Scene,tt4520924\nXgZDk5PcLYg,2017.0,8,10,2019,Beauty Mark,Strip Club Auditions Scene,tt4520924\ncUFdtdKFaOo,2017.0,9,10,2019,Beauty Mark,Going Down Scene,tt4520924\nCMMXbRt2zLQ,2017.0,7,10,2019,Beauty Mark,Nowhere Else To Go Scene,tt4520924\nqIsyU3MH-Zw,2017.0,6,10,2019,Beauty Mark,I Needed You To Be There! Scene,tt4520924\nUwN27CAbgFQ,2014.0,1,10,2019,Björk: Biophilia Live,Thunderbolt Scene,tt3626442\nOSEHYgl2-_M,2014.0,10,10,2019,Björk: Biophilia Live,Nattura Scene,tt3626442\nxY6bhYtH8Pw,2014.0,3,10,2019,Björk: Biophilia Live,Crystalline Scene,tt3626442\niNiZJmh1ALI,2014.0,5,10,2019,Björk: Biophilia Live,Hidden Place Scene,tt3626442\nnf_4vFdS80M,2014.0,8,10,2019,Björk: Biophilia Live,Mutual Core Scene,tt3626442\nDp8y3CiQDgw,2014.0,7,10,2019,Björk: Biophilia Live,Isobel Scene,tt3626442\ng_HrR50Z5LM,2014.0,6,10,2019,Björk: Biophilia Live,Possibly Maybe Scene,tt3626442\nOd3sXn4mOF0,2014.0,4,10,2019,Björk: Biophilia Live,Hollow Scene,tt3626442\n3hPy770hf_s,2014.0,9,10,2019,Björk: Biophilia Live,Cosmogony Scene,tt3626442\nbOge5t77CLw,2014.0,2,10,2019,Björk: Biophilia Live,Moon Scene,tt3626442\nY8AM8s9zoKY,2017.0,4,10,2019,Along for the Ride,The Disease Of Self-Destruction Scene,tt3986978\ndKX4NN38vpc,2017.0,8,10,2019,Along for the Ride,Out of the Blue Scene,tt3986978\nRcjY_I91okg,2017.0,10,10,2019,Along for the Ride,Blue Velvet Scene,tt3986978\nFzemDO1TITY,2017.0,9,10,2019,Along for the Ride,Plastered Into the Wall Scene,tt3986978\nWNU59WxKw-g,2017.0,1,10,2019,Along for the Ride,The Last Movie Behind the Scenes Scene,tt3986978\niFzuPtVopnE,2017.0,2,10,2019,Along for the Ride,Making The Last Movie Scene,tt3986978\nARQrc5qPDPE,2017.0,7,10,2019,Along for the Ride,Apocalypse Now Scene,tt3986978\npWREOi5GPZ4,2017.0,5,10,2019,Along for the Ride,Showdown At Los Compadres Scene,tt3986978\nTAN8GthZg7s,2017.0,3,10,2019,Along for the Ride,Dennis Hopper's Final Cut Scene,tt3986978\nCw7Ed1B3g18,2017.0,6,10,2019,Along for the Ride,A True Method Actor Scene,tt3986978\nPlKDQqKh03Y,2011.0,3,10,2019,Moneyball,He Gets On Base Scene,tt1210166\naNDj-H1jxV0,2011.0,2,10,2019,Moneyball,It's An Unfair Game Scene,tt1210166\nfkiY6TBT4mo,2011.0,6,10,2019,Moneyball,Not Worried Scene,tt1210166\nJXyisZLObHc,2011.0,1,10,2019,Moneyball,We Need Money Scene,tt1210166\nOfkb_7EnunM,2011.0,10,10,2019,Moneyball,That's My Offer Scene,tt1210166\nAKXKkeLQWac,2011.0,4,10,2019,Moneyball,The New Direction Scene,tt1210166\nIpoReT0HjsQ,2011.0,7,10,2019,Moneyball,Theoretically a Win Scene,tt1210166\nIgKQ8z_xNhk,2011.0,9,10,2019,Moneyball,Change the Game Scene,tt1210166\n1pzV9GoSuys,2011.0,5,10,2019,Moneyball,Soda Money Scene,tt1210166\nySC245RIiD8,2011.0,8,10,2019,Moneyball,Turn Around Scene,tt1210166\nHCGVmIe_V1c,2015.0,2,10,2019,Anomalisa,Come to My Room? Scene,tt2401878\nYJV5WB1wxdk,2015.0,6,10,2019,Anomalisa,The Only Other Person Scene,tt2401878\n6F_Wp3IlryI,2015.0,8,10,2019,Anomalisa,Did I Do Something Wrong? Scene,tt2401878\nmXvst0jlR9Q,2015.0,3,10,2019,Anomalisa,Kiss Me Again Scene,tt2401878\nNmSNUylSNvo,2015.0,10,10,2019,Anomalisa,Who Are You? Scene,tt2401878\nwTqLwoaEUmU,2015.0,1,10,2019,Anomalisa,I Might Have Psychological Problems Scene,tt2401878\nzSh-Wy2vvHY,2015.0,9,10,2019,Anomalisa,There's Something Wrong With Me Scene,tt2401878\nxPk6RGGwQC8,2015.0,4,10,2019,Anomalisa,An Anomaly Scene,tt2401878\nXAVgIM5X42w,2015.0,5,10,2019,Anomalisa,I Love You Scene,tt2401878\nG1uBkHVIGfc,2015.0,7,10,2019,Anomalisa,An Anomaly No More Scene,tt2401878\nAq4LMaeZAns,2018.0,2,10,2019,Modern Life Is Rubbish,All You Need Is Love Scene,tt2385752\noTd-6xia-xY,2018.0,9,10,2019,Modern Life Is Rubbish,Backstage Advice Scene,tt2385752\nUIpSn7Kma80,2018.0,3,10,2019,Modern Life Is Rubbish,Awkward First Sex Scene,tt2385752\nOj8S0fNum9g,2017.0,8,10,2019,Same Kind of Different as Me,Christmas Dinner Scene,tt1230168\nd7WraA-roN8,2017.0,3,10,2019,Same Kind of Different as Me,The Man From My Dream Scene,tt1230168\nWO0KS0mbu80,2017.0,6,10,2019,Same Kind of Different as Me,A History of Oppression Scene,tt1230168\npaPWv3HjXAI,2017.0,1,10,2019,Same Kind of Different as Me,Prophetic Dreams Scene,tt1230168\ns8tXE43jYho,2017.0,5,10,2019,Same Kind of Different as Me,Black Klansman Scene,tt1230168\nI-Iankzmv3I,2017.0,9,10,2019,Same Kind of Different as Me,Deborah's Last Dance Scene,tt1230168\nL4MyGhbXKZU,2017.0,7,10,2019,Same Kind of Different as Me,Denver Confesses Scene,tt1230168\nQ4r4jGPegHs,2017.0,4,10,2019,Same Kind of Different as Me,Compassion for the Homeless Scene,tt1230168\nsjEDF282UvY,2017.0,2,10,2019,Same Kind of Different as Me,Calling His Mistress Scene,tt1230168\n-pXlicO85dk,2017.0,10,10,2019,Same Kind of Different as Me,Welcome Home Scene,tt1230168\nTYJXBdLgPks,2018.0,4,10,2019,Modern Life Is Rubbish,First Gig Scene,tt2385752\ntbWLF2J10xY,2018.0,10,10,2019,Modern Life Is Rubbish,Natalie's Change of Heart Scene,tt2385752\n4a_1wkseCkQ,2018.0,6,10,2019,Modern Life Is Rubbish,The Shoplifter of the Soul Scene,tt2385752\n2Pl7zNuA-vY,2018.0,5,10,2019,Modern Life Is Rubbish,Weathering The Storm Scene,tt2385752\nsJALMf17QBg,2018.0,1,10,2019,Modern Life Is Rubbish,Romantic Record Rendezvous Scene,tt2385752\nTOzf01qWO-Y,2018.0,8,10,2019,Modern Life Is Rubbish,My Liquorice Allsort Girl Scene,tt2385752\niIPeQxzLVlY,2018.0,7,10,2019,Modern Life Is Rubbish,The Ex Meets the Next Scene,tt2385752\n9H8h3YZTsmg,2016.0,2,10,2019,The Take,Rooftop Chase Scene,tt2368619\nAqV77k80Iw0,2016.0,1,10,2019,The Take,Teddy Bear Bomb Scene,tt2368619\n7yg4b79rNQY,2016.0,8,10,2019,The Take,Storming the Bank of France Scene,tt2368619\n5BL8zybMd-M,2016.0,10,10,2019,The Take,Thief vs. Terrorist Scene,tt2368619\nQ7r5VtqG7cE,2016.0,9,10,2019,The Take,Bank Vault Explosion Scene,tt2368619\n7UANVfaybow,2016.0,5,10,2019,The Take,Aggressive Diplomacy Scene,tt2368619\nusoH9GnfJrA,2016.0,4,10,2019,The Take,You Have the Wrong Address Scene,tt2368619\nVq2YQ_fXZoA,2016.0,3,10,2019,The Take,Steal My Wallet Scene,tt2368619\nWn02SYyYhRA,2016.0,6,10,2019,The Take,Bar Fight Scene,tt2368619\nGr9p1MnLMj8,2016.0,7,10,2019,The Take,Van Smackdown Scene,tt2368619\nx6PMTIOZY4A,2015.0,1,8,2019,Sacred Blood,A Tall Drink of Blood Scene,tt5081618\n9JVQzj-iWI0,2015.0,3,8,2019,Sacred Blood,Vampire Shakedown Scene,tt5081618\nj1DtkoNFVHY,2015.0,7,8,2019,Sacred Blood,\"Wash Me, My Lover Scene\",tt5081618\nWgeM95snEhU,2015.0,5,8,2019,Sacred Blood,Fat Chance Scene,tt5081618\n3aBcNzAFnxY,2015.0,8,8,2019,Sacred Blood,Our Love Will Be Eternal Scene,tt5081618\naQ8UQmMypws,2015.0,4,8,2019,Sacred Blood,Strip Club Fight Scene,tt5081618\ngcoKGdZcf7A,2015.0,2,8,2019,Sacred Blood,The Circus of Death Scene,tt5081618\nN5oKlOWxzio,2015.0,6,8,2019,Sacred Blood,Girl on Vampire Girl Scene,tt5081618\nq3deD1S7v5I,2018.0,7,10,2019,Book Club,Love in the Air Scene,tt6857166\nDRTuzzBTrGs,2018.0,10,10,2019,Book Club,I Would Do Anything for Love Scene,tt6857166\nqVhR3cLu_zY,2018.0,4,10,2019,Book Club,He's Got a Cute Tush! Scene,tt6857166\nD_D9eQtLpCI,2018.0,1,10,2019,Book Club,Romance on the Runway Scene,tt6857166\na2RgwHcY9ZM,2018.0,2,10,2019,Book Club,Making a Splash Scene,tt6857166\nIrBymbqWH54,2018.0,6,10,2019,Book Club,Shut Up and Kiss Me Scene,tt6857166\n8c-NNYNy5Bk,2018.0,3,10,2019,Book Club,Mile High Flirting Scene,tt6857166\n3UBXU1m7rkk,2018.0,5,10,2019,Book Club,Get Your Motor Running Scene,tt6857166\nAvIUAlTg5J8,2018.0,9,10,2019,Book Club,You're My Person Scene,tt6857166\nimITvYE-QBo,2018.0,8,10,2019,Book Club,Driving Hard Scene,tt6857166\n788ZdV-LT0U,2017.0,7,9,2019,Mrs. Hyde,\"100,000 Volts Scene\",tt5338644\nhMYdeT6aOnE,2017.0,1,9,2019,Mrs. Hyde,School Bullies Scene,tt5338644\ngkeddnrEeV8,2017.0,2,9,2019,Mrs. Hyde,A Shock To Her System Scene,tt5338644\niVzz5FIaCkA,2017.0,4,9,2019,Mrs. Hyde,Extra Tutoring Scene,tt5338644\nNL_vaHjmqC0,2017.0,3,9,2019,Mrs. Hyde,Hustle & Glow Scene,tt5338644\nArOB5wVIf-Y,2017.0,5,9,2019,Mrs. Hyde,Roasted Alive Scene,tt5338644\nYYZSg-BBAmw,2017.0,6,9,2019,Mrs. Hyde,Dog Gone Scene,tt5338644\nEG9eUCA_MxE,2017.0,9,9,2019,Mrs. Hyde,Burning Rage Scene,tt5338644\nrLj7k4gxnRg,2017.0,8,9,2019,Mrs. Hyde,You Mustn't Come Here Scene,tt5338644\nvBAK4o8zHF4,2003.0,2,9,2019,Looney Tunes: Back in Action,Trouble on Set Scene,tt0318155\nwaeNIUB5wz4,2003.0,5,9,2019,Looney Tunes: Back in Action,Illegal Aliens,tt0318155\nc6pX60F0bsI,2013.0,3,10,2019,The Bell Witch Haunting,Blood In The Pipes Scene,tt2991532\nDk2BtXCzdzc,2003.0,4,9,2019,Looney Tunes: Back in Action,\"Wile E. Coyote, the Fixer Scene\",tt0318155\n0IWmniYe7aI,2003.0,7,9,2019,Looney Tunes: Back in Action,Martian Road Rage Scene,tt0318155\nD56dpMQVGTo,2003.0,6,9,2019,Looney Tunes: Back in Action,Taz's Bride Scene,tt0318155\nxfF-ZL3xvxw,2003.0,1,9,2019,Looney Tunes: Back in Action,Bugs Bunny vs. Daffy Duck Scene,tt0318155\nbYO_AhZaG24,2003.0,8,9,2019,Looney Tunes: Back in Action,Duck Dodgers in the 24 1/2th Century! Scene,tt0318155\n6Dg0qouE5Zo,2003.0,9,9,2019,Looney Tunes: Back in Action,\"Go Home, Folks Scene\",tt0318155\nWc_pikEIkcQ,2003.0,3,9,2019,Looney Tunes: Back in Action,Psycho Bugs Scene,tt0318155\ngQ8uzN8MSfM,2013.0,8,10,2019,The Bell Witch Haunting,The Exorcism Scene,tt2991532\nd4QJy7RMxok,2013.0,5,10,2019,The Bell Witch Haunting,Terror In The Trees Scene,tt2991532\neng2A_NwG04,2013.0,7,10,2019,The Bell Witch Haunting,Dad's Possessed Scene,tt2991532\nUHwiWw0vfps,2013.0,10,10,2019,The Bell Witch Haunting,Demon In The Cave Scene,tt2991532\nEqYD_u86J8E,2013.0,6,10,2019,The Bell Witch Haunting,Woodland Witch Scene,tt2991532\nNIZSw5HFr60,2013.0,1,10,2019,The Bell Witch Haunting,Bloody Crime Scene,tt2991532\nWhsSP-hValQ,2013.0,4,10,2019,The Bell Witch Haunting,Getting Electric With Denny Scene,tt2991532\n3U7pCM576i4,2013.0,2,10,2019,The Bell Witch Haunting,Haunted iPod Scene,tt2991532\nr28aUcqqgbA,2013.0,9,10,2019,The Bell Witch Haunting,Demonic Dana Scene,tt2991532\ntJ4H77qrLjI,1987.0,8,9,2019,Police Academy 4,Commandeering a Hot Air Balloon Scene,tt0093756\nRRDzDy5wLh4,1987.0,9,9,2019,Police Academy 4,Mid-Air Arrest Scene,tt0093756\nqTjz5LJwnOw,1987.0,1,9,2019,Police Academy 4,Skateboarding Punks Scene,tt0093756\n2UuM47BOqNA,1987.0,6,9,2019,Police Academy 4,Yama Yama Scene,tt0093756\nshal5AF2Gxc,1987.0,4,9,2019,Police Academy 4,Let's Get Physical Scene,tt0093756\nEq4GnUgNeMg,1987.0,7,9,2019,Police Academy 4,Cops vs. Ninjas Scene,tt0093756\nupPFFVaVSY4,1987.0,5,9,2019,Police Academy 4,Little Munchkin Voice Scene,tt0093756\nZrPvUd7E9HU,1987.0,2,9,2019,Police Academy 4,The .44 Magnum Scene,tt0093756\nhxi06yeErvk,1987.0,3,9,2019,Police Academy 4,\"Burn, Rinse, Repeat Scene\",tt0093756\n50CeayOz-rs,2017.0,5,10,2019,Wanderland,\"Danny, the Ice Cream Guy Scene\",tt6981634\nwkqss9zZOhc,2017.0,1,10,2019,Wanderland,Swim With Me Scene,tt6981634\nieXrbTpZsvM,2017.0,10,10,2019,Wanderland,The Nastiest Gnome Scene,tt6981634\ndfK91HGGVL8,2017.0,9,10,2019,Wanderland,The Music of the World Scene,tt6981634\n1bpUlGBdKyE,2017.0,3,10,2019,Wanderland,Sweet Singing Seduction Scene,tt6981634\n1wWk7qN62dI,2017.0,6,10,2019,Wanderland,Chased by the Ferryman Scene,tt6981634\naRJXM-rYZQM,2015.0,2,10,2019,Wanderland,Cougar on the Prowl Scene,tt6981634\nfvXLs4FFSJc,2017.0,8,10,2019,Wanderland,The Doctor's Swing Number Scene,tt6981634\nwLhu6Zy6ixo,2017.0,4,10,2019,Wanderland,Trains at the Station Scene,tt6981634\nnxDhsiiBH7Q,2017.0,7,10,2019,Wanderland,Naked and Blind Scene,tt6981634\n-zOoQRf6DNw,2015.0,2,10,2019,Just Eat It,Ugly Produce Scene,tt3597400\nPWebnyN1kSU,2015.0,10,10,2019,Just Eat It,The Cycle of Waste Scene,tt3597400\n6ZUg51T5ly8,2015.0,5,10,2019,Just Eat It,The Motherload Scene,tt3597400\naFIOmbHlYo4,2015.0,6,10,2019,Just Eat It,The Dangers of Scavenging Scene,tt3597400\nH_hW3ML6Ips,2017.0,9,10,2019,The Relationtrip,Couple's Therapy Scene,tt6149802\nDbJ1V4yEZP0,2016.0,7,10,2019,Rainbow Time,You're Kinda Ugly Scene,tt5167174\nPniQ5j9ZqQk,1984.0,9,9,2019,Police Academy,Beatbox Riot Scene,tt0087928\nJ3Dc6UV1ML4,1984.0,7,9,2019,Police Academy,Good Speech Scene,tt0087928\np7zS671gCo4,1984.0,3,9,2019,Police Academy,Shoe Polish Scene,tt0087928\nGIASYqV_Xds,1984.0,8,9,2019,Police Academy,Someone Call A Veterinarian! Scene,tt0087928\n6sfgXGPtVQk,1984.0,4,9,2019,Police Academy,Who's Next? Scene,tt0087928\nKBLBKR6bQCI,1984.0,2,9,2019,Police Academy,Let's See The Thighs Scene,tt0087928\nI4tqrGqT_b0,1984.0,6,9,2019,Police Academy,\"Yes, Ma'am! Scene\",tt0087928\n7a3vbSR4qWU,1984.0,5,9,2019,Police Academy,Come With Me! Scene,tt0087928\n6OKt2CZ4ULE,1984.0,1,9,2019,Police Academy,\"Larvell Jones, M.D. Scene\",tt0087928\n1JLugcZa7kw,2016.0,2,10,2019,Rainbow Time,Caught on Tape Scene,tt5167174\nMuLtmNixbdw,2016.0,5,10,2019,Rainbow Time,Self-Pleasure Nightmare Scene,tt5167174\nwQ0QXBmaY58,2016.0,4,10,2019,Rainbow Time,Do You Want to Take a Photo of Me? Scene,tt5167174\nvqGsQEGHl0w,2016.0,8,10,2019,Rainbow Time,You Let Him See Me Naked? Scene,tt5167174\nU9qK-5bDP4A,2016.0,6,10,2019,Rainbow Time,You Can't Grope People Scene,tt5167174\n7hDIu_ZNkbk,2016.0,10,10,2019,Rainbow Time,Shonzi to the Rescue Scene,tt5167174\no561o4AQdXQ,2016.0,3,10,2019,Rainbow Time,Do You Want Me to Flip Over? Scene,tt5167174\nXHEs28Z99so,2016.0,9,10,2019,Rainbow Time,Things Get Hot Scene,tt5167174\nTUmckZQBzvk,2016.0,1,10,2019,Rainbow Time,Let Me Make It Up to You Scene,tt5167174\n_-6IvJMziRc,2017.0,10,10,2019,The Relationtrip,Fight Your Demons Scene,tt6149802\nckSC7ZLyGG8,2017.0,7,10,2019,The Relationtrip,Strippers and Sandwiches Scene,tt6149802\nzZoxnqqZpDQ,2017.0,3,10,2019,The Relationtrip,Learning How To French Kiss Scene,tt6149802\nipt7yPT4Lkw,2017.0,4,10,2019,The Relationtrip,Ripping Your Face Off Scene,tt6149802\nJHvgBh9ZC3I,2017.0,2,10,2019,The Relationtrip,Dinner Delusions Scene,tt6149802\nm07ShpSpKJw,2015.0,5,10,2019,The Relationtrip,Shotgun Wedding Night Scene,tt6149802\nZoWhq3dNFn0,2015.0,6,10,2019,The Relationtrip,Dead Angel Stripper Scene,tt6149802\npsA_jrGe1PY,2017.0,8,10,2019,The Relationtrip,Giant Mommy Issues Scene,tt6149802\nPkO3bgn-Qgs,2017.0,1,10,2019,The Relationtrip,One Man Rap Battle Scene,tt6149802\nFYeKDtzDy60,2015.0,7,10,2019,Just Eat It,The Fat of the Land Scene,tt3597400\n6q5DmJCpaC0,2015.0,4,10,2019,Just Eat It,Dumpster Diving Scene,tt3597400\nWItFgdMdxDk,2015.0,1,10,2019,Just Eat It,Living Off Scraps Scene,tt3597400\nLUjMzKQtq8U,2015.0,9,10,2019,Just Eat It,The Truth About Expired Food Scene,tt3597400\nfpJjOz1Yy8c,2015.0,8,10,2019,Just Eat It,One Man's Garbage Scene,tt3597400\nz_98hXRRn2A,2015.0,3,10,2019,Just Eat It,Consumer Mindset Scene,tt3597400\nxq5lZuN6geo,2014.0,3,8,2019,Inherent Vice,Do You Like the Lighting? Scene,tt1791528\ntr8peYDm1fE,2014.0,2,8,2019,Inherent Vice,Heroin Milk Scene,tt1791528\nF9M5eGoCnO0,2014.0,1,8,2019,Inherent Vice,Frozen Banana Scene,tt1791528\n4RPigjaVctQ,2014.0,5,8,2019,Inherent Vice,It's Groovy to Be Insane Scene,tt1791528\n4lWui2b5GBI,2014.0,6,8,2019,Inherent Vice,Drug-Fueled Cult Scene,tt1791528\nnuhGjqaBzes,2014.0,8,8,2019,Inherent Vice,Did I Hit You? Scene,tt1791528\nk6pHxD7qB7k,2014.0,7,8,2019,Inherent Vice,Back Together Scene,tt1791528\neO-4vwbIJR8,2014.0,4,8,2019,Inherent Vice,Ouija Scene,tt1791528\nPJze0WsDW8o,2015.0,7,10,2019,Ovum,Positive Womb Energy Scene,tt3084904\nq9jTg_91KxU,2015.0,10,10,2019,Ovum,Harvesting the Eggs Scene,tt3084904\nzgEsN9EckAI,2015.0,8,10,2019,Ovum,A Little Bi-Curious Scene,tt3084904\nMcQ2XFcPCys,2015.0,5,10,2019,Ovum,A Thorough Examination,tt3084904\nvEOtK-qX4kE,2015.0,3,10,2019,Ovum,Nude Sketches Sceme,tt3084904\nbTpRY4tkyio,2015.0,1,10,2019,Ovum,\"No Nudity, No Distribution Scene\",tt3084904\nyPD2Vq50JlQ,2015.0,2,10,2019,Ovum,Rekindle Your Fire Scene,tt3084904\n8zomTUuLank,2015.0,4,10,2019,Ovum,Flirting Actresses Scene,tt3084904\nIoeYkolhKYM,2015.0,6,10,2019,Ovum,How to Use Needles Scene,tt3084904\nNVSG5djzkdo,2015.0,9,10,2019,Ovum,We're Going to Remove Your Womb Scene,tt3084904\nC_Emdu3KwHg,2012.0,4,6,2019,40 Days and Nights,\"Wrong Move, Sweetie Scene\",tt2439946\n48DTcfNRIoM,2012.0,2,6,2019,40 Days and Nights,Sinkhole! Scene,tt2439946\njFjy1RkmXUg,2017.0,10,10,2019,Daddy's Home 2,Do We Know It's Christmas? Scene,tt5657846\nJPjeOAVkSe4,2017.0,8,10,2019,Daddy's Home 2,Four Dads-a-Fighting Scene,tt5657846\nh7ZUKB_zYQ0,2017.0,9,10,2019,Daddy's Home 2,I Love You Scene,tt5657846\n7I6z51iYFg8,2017.0,6,10,2019,Daddy's Home 2,I Shot a Turkey and a Man Scene,tt5657846\n3D0gGgMTylk,2017.0,7,10,2019,Daddy's Home 2,Improv Nightmare Scene,tt5657846\nLF0dTioXk3A,2017.0,5,10,2019,Daddy's Home 2,Father-Son Bowling Scene,tt5657846\nEzjFE2CnTBQ,2017.0,1,10,2019,Daddy's Home 2,The Dads Arrive Scene,tt5657846\nC05qUz1ukWo,2017.0,3,10,2019,Daddy's Home 2,The Thermostat Scene,tt5657846\nvnh7gxa0z4Q,2017.0,4,10,2019,Daddy's Home 2,Chopping Down the Tree Scene,tt5657846\neVzxDwu506A,2017.0,2,10,2019,Daddy's Home 2,Lights Out Scene,tt5657846\nrd1w9BCiy1M,2017.0,3,10,2019,Wolf Warrior II,African Massacre Scene,tt7131870\nPBeP9JUk5cM,2017.0,10,10,2019,Wolf Warrior II,Blood For Blood Scene,tt7131870\nMvrl3jeiJlg,2017.0,2,10,2019,Wolf Warrior II,Inconvenience Store Scene,tt7131870\nN25MiYpmMVw,2017.0,9,10,2019,Wolf Warrior II,\"Flip the Bird, Flip a Tank Scene\",tt7131870\ny41KY83U1VQ,2016.0,9,9,2019,Train to Busan,Fight to the Undeath Scene,tt5700672\n0t7ZsuI05Uw,2012.0,6,6,2019,40 Days and Nights,Light The Line Scene,tt2439946\nw_iXru-XxwU,2012.0,5,6,2019,40 Days and Nights,Flooding In The Military Base Scene,tt2439946\nP_zAPM1cQdM,2012.0,1,6,2019,40 Days and Nights,Flash Flood In The Sahara Scene,tt2439946\n49BRJlMRZ18,2012.0,3,6,2019,40 Days and Nights,Denver Underwater Scene,tt2439946\nhwI9jLgUnbI,2017.0,6,10,2019,Wolf Warrior II,Drone Destruction,tt7131870\nj76FbuAQUsc,2017.0,8,10,2019,Wolf Warrior II,World of Tanks Scene,tt7131870\n5AMX5PaikhU,2017.0,5,10,2019,Wolf Warrior II,Shantytown Chase Scene,tt7131870\nGlrYbmdZk24,2017.0,1,10,2019,Wolf Warrior II,Underwater Sword Fight Scene,tt7131870\n56_IiZ3k0OY,2017.0,7,10,2019,Wolf Warrior II,Crossbow Carnage Scene,tt7131870\n0OmDcj8U3Xs,2017.0,4,10,2019,Wolf Warrior II,Hospital Hostages Scene,tt7131870\n15lEWX16LV0,2015.0,10,10,2019,Wolf Warrior,Ready to Die for Your Country? Scene,tt3540136\nK2bk8aUwIis,2015.0,1,10,2019,Wolf Warrior,Killing Enemies Is My Duty Scene,tt3540136\nC5o1JYo-4pU,2015.0,4,10,2019,Wolf Warrior,Wolf vs. Wolf Scene,tt3540136\n9AEbJDyNTSo,2014.0,10,10,2019,Ardennes Fury,Rescued Behind Enemy Lines Scene,tt3922754\nPY8WEjeHGTE,2014.0,1,10,2019,Ardennes Fury,Firefight In A French Village Scene,tt3922754\nXnvMGSn4KHQ,2014.0,2,10,2019,Ardennes Fury,Nazi Torture Scene,tt3922754\n79PCtxPbMlc,2014.0,8,10,2019,Ardennes Fury,Running Away From The Nazis Scene,tt3922754\nlGQFgsEBe4M,2014.0,9,10,2019,Ardennes Fury,The Grand Finale Scene,tt3922754\nl8L0q_dnoKA,2014.0,4,10,2019,Ardennes Fury,Griffin Sacrifices His Life Scene,tt3922754\njM2drh7uhsw,2014.0,5,10,2019,Ardennes Fury,Stepping On A Land Mine Scene,tt3922754\nuyMQqUwKVBY,2014.0,7,10,2019,Ardennes Fury,Rescuing Sgt. Lance Dawson Scene,tt3922754\nmos7tNLWRz0,2014.0,3,10,2019,Ardennes Fury,Killing A Child Scene,tt3922754\n7YpyRO7N1YI,2014.0,6,10,2019,Ardennes Fury,Torturing Sgt. Dawson Scene,tt3922754\nep-ggf8CcX8,2015.0,7,10,2019,Wolf Warrior,Under Enemy Fire Scene,tt3540136\n4YW2E3yaMjc,2015.0,8,10,2019,Wolf Warrior,Going On The Offensive Scene,tt3540136\ngcqk1NcWIGQ,2015.0,6,10,2019,Wolf Warrior,Dodging The Sniper Scene,tt3540136\nxzPgefI2u9k,2015.0,9,10,2019,Wolf Warrior,Do You Have a Boyfriend? Scene,tt3540136\nb8Dp_WyoPSU,2015.0,2,10,2019,Wolf Warrior,Police Massacre Scene,tt3540136\nv9VqcsF7s5E,2015.0,5,10,2019,Wolf Warrior,Assassin Ambush Scene,tt3540136\nddhfpfnwgRI,2015.0,3,10,2019,Wolf Warrior,Taking out the Enemy Commander Scene,tt3540136\n3S35Cy1GMMU,2018.0,1,9,2019,China Salesman,Boxing Brawl Scene,tt6015706\nSkefiJco10U,2018.0,2,9,2019,China Salesman,Punch-Out King Scene,tt6015706\n9qtw3cXqWfw,2018.0,8,9,2019,China Salesman,The Masked Rider Scene,tt6015706\ncOy7yCnHMAE,2018.0,7,9,2019,China Salesman,Shot by a Tank Scene,tt6015706\nPP4-LYtVpRg,2018.0,3,9,2019,China Salesman,An Unholy Ritual Scene,tt6015706\nEfX6L0wDT4Y,2018.0,5,9,2019,China Salesman,Desert War Scene,tt6015706\nAl7y7aRrASE,2018.0,6,9,2019,China Salesman,China's Ceasefire Scene,tt6015706\nruaqMoxwvjg,2018.0,4,9,2019,China Salesman,Bidding War Scene,tt6015706\nB4D0g5tfp7A,2018.0,9,9,2019,China Salesman,Ninja vs. Sheikh Scene,tt6015706\n85cnCW_4LIc,2011.0,8,10,2019,Footloose,Not Even a Virgin Scene,tt1068242\nMGIjofJUXyo,2011.0,3,10,2019,Footloose,Dance the Night Away Scene,tt1068242\n8Lv0BuXTgoY,2011.0,4,10,2019,Footloose,Demolition Deathmatch Scene,tt1068242\n-Nzbwerwks8,2011.0,9,10,2019,Footloose,Prom Night Brawl Scene,tt1068242\n5lgCxWubUnU,2011.0,6,10,2019,Footloose,Line Dancing Scene,tt1068242\np70o9g5gcdY,2011.0,7,10,2019,Footloose,Let's Hear It for the Boy Scene,tt1068242\njlCEAJXSwJc,2011.0,5,10,2019,Footloose,Never Dance Again Scene,tt1068242\nElidXD2F2eo,2011.0,10,10,2019,Footloose,Let's Dance! Scene,tt1068242\n1sz2oWajICY,2011.0,2,10,2019,Footloose,I'm Not a Child Scene,tt1068242\nQH2Z3rBA9C4,2011.0,1,10,2019,Footloose,Barn Dance Scene,tt1068242\nL9wacy030Kw,2017.0,10,10,2019,\"Us, Naked: Trixie & Monkey\",A Special Couple Scene,tt2611408\nwYumvThtFrc,2016.0,4,10,2019,Long Nights Short Mornings,Psycho Lovers Scene,tt2186712\ntdDDMrzq9lE,2016.0,5,10,2019,Long Nights Short Mornings,Mind Games Scene,tt2186712\nMASZNTnZals,2016.0,1,10,2019,Long Nights Short Mornings,Fingerbang Bus Ride Scene,tt2186712\n14I9e5jH9bw,2016.0,2,10,2019,Long Nights Short Mornings,I Don't Want to Do It in the Street,tt2186712\n0tg_TU8EfCs,2016.0,7,10,2019,Long Nights Short Mornings,Stairwell Seduction Scene,tt2186712\nyZgf5wSULog,2016.0,10,10,2019,Long Nights Short Mornings,Do It on My Face Scene,tt2186712\nfzG_88hJcqM,2016.0,8,10,2019,Long Nights Short Mornings,Barely Legal Scene,tt2186712\nPlPRa95iR3k,2016.0,6,10,2019,Long Nights Short Mornings,Love Is a Bad High Scene,tt2186712\nlTm0Gql9HME,2016.0,3,10,2019,Long Nights Short Mornings,Get Over Here Already Scene,tt2186712\nnRkXwphpaQ0,2016.0,9,10,2019,Long Nights Short Mornings,She's a Tease Scene,tt2186712\nv5YaaXLJw2A,2017.0,7,10,2019,\"Us, Naked: Trixie & Monkey\",The Evil Hate Monkey Scene,tt2611408\noMpbWgx0Cdk,2017.0,1,10,2019,\"Us, Naked: Trixie & Monkey\",Circus School Scene,tt2611408\niWHYx50w6ts,2017.0,3,10,2019,\"Us, Naked: Trixie & Monkey\",Glitter Baptism Scene,tt2611408\nVuGGlc9x5PE,2017.0,9,10,2019,\"Us, Naked: Trixie & Monkey\",A Burlesque Wedding Scene,tt2611408\nZhbolQxBK2s,2017.0,2,10,2019,\"Us, Naked: Trixie & Monkey\",The Burlesque Hall Of Fame Scene,tt2611408\nwX06J0jh7BU,2017.0,4,10,2019,\"Us, Naked: Trixie & Monkey\",Mumbo Scene,tt2611408\nMfM4qCHUPH8,2017.0,5,10,2019,\"Us, Naked: Trixie & Monkey\",\"The Hard, Hard Road of Burlesque Scene\",tt2611408\nyOrYFxd4En4,2017.0,8,10,2019,\"Us, Naked: Trixie & Monkey\",Going off Broadway! Scene,tt2611408\nlJmafWivAtQ,2017.0,6,10,2019,\"Us, Naked: Trixie & Monkey\",Viking Striptease Scene,tt2611408\n0gKYY9NCTvY,2016.0,5,10,2019,The Lonely Italian,Giving a Vegan Meat Scene,tt3261182\nLJK2Ox4UlM0,2016.0,8,10,2019,The Lonely Italian,Bad Dates Scene,tt3261182\nwQS5Cu_bGs0,2016.0,3,10,2019,The Lonely Italian,Two Deplorable Men Scene,tt3261182\nw0dNGg0OiAc,2016.0,9,10,2019,The Lonely Italian,Strong Woman Scene,tt3261182\nLGL0Gz_QgDk,2016.0,6,10,2019,The Lonely Italian,Tantric Stuff Scene,tt3261182\nxg5ZJAo_1v8,2016.0,1,10,2019,The Lonely Italian,Why Does No One Want to Love Me? Scene,tt3261182\nGDpzofT_Pdk,2016.0,10,10,2019,The Lonely Italian,Be a Man and Grow Up Scene,tt3261182\nekbIXnK0_ek,2016.0,7,10,2019,The Lonely Italian,A Cruel Mistress Scene,tt3261182\n3EdXrMS1gJc,2016.0,2,10,2019,The Lonely Italian,Crappy Photos Scene,tt3261182\nI51Z3trNfZo,2016.0,4,10,2019,The Lonely Italian,Swiping Right Scene,tt3261182\nGqa-biM6qKM,2016.0,8,8,2019,Conspiracy Theory,Alien Aftermath Scene,tt5354458\nkARcfM_M6VE,2016.0,1,8,2019,Conspiracy Theory,Dam Aliens Scene,tt5354458\n7szH-UZx2JU,2018.0,3,8,2019,Conspiracy Theory,Blackout Menace Scene,tt5354458\nuxj3cKArYDI,2016.0,2,8,2019,Conspiracy Theory,Fist up Your Butt Scene,tt5354458\nwLGpzRMJsVE,2016.0,6,8,2019,Conspiracy Theory,A Flash & A Rash Scene,tt5354458\nHeRIwSpHZCk,2018.0,4,8,2019,Conspiracy Theory,Interview With A Crackpot Scene,tt5354458\nADqmUtPjP0Q,2016.0,5,8,2019,Conspiracy Theory,Very Phallic Scene,tt5354458\nz8XPccwMkKE,2016.0,7,8,2019,Conspiracy Theory,An Alien Attacks Scene,tt5354458\nNg06lmNU4K8,2018.0,10,10,2019,Sherlock Gnomes,Moriarty Falls Scene,tt2296777\n7fOizvx1cUM,2018.0,5,10,2019,Sherlock Gnomes,\"I'm a Gargoyle, Mate! Scene\",tt2296777\n6fs-P3Vq9BI,2018.0,1,10,2019,Sherlock Gnomes,Moriarty's Madness Scene,tt2296777\nzpvTZ0G0UiM,2018.0,7,10,2019,Sherlock Gnomes,Stronger Than I Ever Was Scene,tt2296777\nHIOSYqainIs,2018.0,9,10,2019,Sherlock Gnomes,Watson Saves the Day Scene,tt2296777\n1xccuQBsJfU,2018.0,3,10,2019,Sherlock Gnomes,Soda Boat Chase Scene,tt2296777\nvuvmITfWFuo,2018.0,4,10,2019,Sherlock Gnomes,Unlucky Cats Scene,tt2296777\ntNYSeyXRkiE,2018.0,2,10,2019,Sherlock Gnomes,Flower Shop Fail Scene,tt2296777\n1aZDrjQGvIU,2018.0,6,10,2019,Sherlock Gnomes,The Pug of the Baskervilles Scene,tt2296777\n9cNdat9JJuE,2018.0,8,10,2019,Sherlock Gnomes,The Love Machine Scene,tt2296777\n8TcZDzWEVDM,2018.0,8,10,2019,Bumblebee,The Baddest Bee Scene,tt4701182\nnTAYbwY6oeU,2018.0,2,10,2019,Bumblebee,vs. Blitzwing Scene,tt4701182\nRuFd7DELPYc,2018.0,5,10,2019,Bumblebee,High-Speed Police Chase Scene,tt4701182\nZKuscOD0LOM,2018.0,4,10,2019,Bumblebee,The Egg Prank Scene,tt4701182\nXv9ME0TfQjk,2018.0,10,10,2019,Bumblebee,vs. Shatter Scene,tt4701182\njsbjmWo3c38,2018.0,7,10,2019,Bumblebee,Escaping the Decepticons Scene,tt4701182\nbu5m4sr6e6I,2018.0,1,10,2019,Bumblebee,The Cybertronian War Scene,tt4701182\nhD7KaqFoSq0,2018.0,9,10,2019,Bumblebee,vs. Dropkick Scene,tt4701182\nAVzJme0mGY8,2018.0,6,10,2019,Bumblebee,Wrecking the House Scene,tt4701182\nOk3_qMNWAo0,2018.0,3,10,2019,Bumblebee,Meeting  Scene,tt4701182\nyGrvM8gN0w0,2017.0,6,8,2019,Oceans Rising,A Singular Achievement Scene,tt6215044\n9tDGIpP7Kfc,2017.0,1,8,2019,Oceans Rising,Presidential Challenge Scene,tt6215044\nKBmsdzLFpvc,2017.0,4,8,2019,Oceans Rising,A Shocking Turn of Events Scene,tt6215044\ngTkzaR0pGgE,2017.0,8,8,2019,Oceans Rising,A Miraculous Call Scene,tt6215044\n_mnvg-i4Qks,2017.0,5,8,2019,Oceans Rising,Finding CERN Scene,tt6215044\nCpA9NJEL2EM,2017.0,3,8,2019,Oceans Rising,Open Water Rescue Scene,tt6215044\nt1V-lbe6gII,2017.0,2,8,2019,Oceans Rising,In Over Their Heads Scene,tt6215044\nw01pKxgINao,2017.0,7,8,2019,Oceans Rising,Suicide Mission Scene,tt6215044\nQABInjYQVes,2010.0,7,10,2019,Airline Disaster,Boss Fight Scene,tt1610528\nOBQcsOUZ2u0,2010.0,3,10,2019,Airline Disaster,Free Fallin' Scene,tt1610528\nDkd1ak3tQ5s,2010.0,6,10,2019,Airline Disaster,Killing A Kidnapper Scene,tt1610528\nUIkY2KKWmdk,2010.0,4,10,2019,Airline Disaster,Losing Control Scene,tt1610528\nGALfESO3afQ,2010.0,1,10,2019,Airline Disaster,Smash & Grab Scene,tt1610528\nljOOPtZAk2c,2010.0,5,10,2019,Airline Disaster,Storming The Hideout Scene,tt1610528\nUwhUd2cPOYE,2010.0,8,10,2019,Airline Disaster,Engine Explosion Scene,tt1610528\np74VOGdtMTw,2010.0,2,10,2019,Airline Disaster,Brutal Skyjacking Scene,tt1610528\n7_UHtWGKsuc,2010.0,10,10,2019,Airline Disaster,Crash Landing Scene,tt1610528\nlLScgb8ZP_8,2010.0,9,10,2019,Airline Disaster,Space Laser Scene,tt1610528\nDTWggpNq1a0,2017.0,2,10,2019,Active Adults,I Ate Your Grapefruit Scene,tt5460416\npJFZLCoqB9w,2011.0,4,10,2019,No Strings Attached,The Period Playlist Scene,tt1411238\n4ak8huhsVKc,2011.0,1,10,2019,No Strings Attached,Did I Have Sex? Scene,tt1411238\nqhGsK4yvxmg,2011.0,2,10,2019,No Strings Attached,Making It Happen Scene,tt1411238\nG3qOB7PGBXE,2011.0,5,10,2019,No Strings Attached,She's Quick Like a Puma Scene,tt1411238\nEBLS3sCB4rk,2011.0,7,10,2019,No Strings Attached,The First Date Scene,tt1411238\nRuOjVbqLiZU,2011.0,6,10,2019,No Strings Attached,My Dad is Screwing My Ex Scene,tt1411238\nQ3JqdmUTsLI,2011.0,8,10,2019,No Strings Attached,I Completely Love You Scene,tt1411238\ni4NIiCSEiTg,2011.0,10,10,2019,No Strings Attached,If You Come Any Closer Scene,tt1411238\nuL1Q5YZ0Ejc,2011.0,3,10,2019,No Strings Attached,Sex Friends Scene,tt1411238\nDIlHR2SWW9E,2011.0,9,10,2019,No Strings Attached,Awkward Romance Scene,tt1411238\nk67i1cISzsI,2017.0,9,10,2019,Active Adults,Do You Like to Watch? Scene,tt5460416\nHzvL4MonF-I,2017.0,8,10,2019,Active Adults,Two Rocks Broken Apart Scene,tt5460416\nAcvWJ8bgA8w,2017.0,5,10,2019,Active Adults,All My Friends Are Dead Scene,tt5460416\nfoQnR1eZO-Y,2017.0,3,10,2019,Active Adults,Expert Cunnilingus Scene,tt5460416\n3tuV7dBxBPU,2017.0,1,10,2019,Active Adults,A Sliver of Heaven Scene,tt5460416\nGXZSat3AqwE,2017.0,4,10,2019,Active Adults,Not Enough Experience Scene,tt5460416\nhDA_Bn7UhlA,2017.0,6,10,2019,Active Adults,Romance Is Dead Scene,tt5460416\nUPAs32xduAM,2017.0,7,10,2019,Active Adults,You Were Her Rock Scene,tt5460416\nrhfBzC5A79o,2017.0,10,10,2019,Active Adults,Positivity Juice Scene,tt5460416\nGsP6mQAcxj8,2017.0,2,9,2019,\"Sex, Guaranteed\",You Wanna Get Weird? Scene,tt3715296\ng2cIMCa6N64,2017.0,3,9,2019,\"Sex, Guaranteed\",It's Going to Explode! Scene,tt3715296\n_ZjTuvkIbcg,2017.0,8,9,2019,\"Sex, Guaranteed\",You're Sleeping With Her? Scene,tt3715296\nWcPbZiPqUlE,2017.0,4,9,2019,\"Sex, Guaranteed\",Vaggy Vag Scene,tt3715296\nSLC6o6KPuro,2017.0,5,9,2019,\"Sex, Guaranteed\",Now That's Unfortunate Scene,tt3715296\nwQR6vm3kDSI,2017.0,6,9,2019,\"Sex, Guaranteed\",She Has a Great Pair Scene,tt3715296\nyJ0RpuixpT4,2017.0,7,9,2019,\"Sex, Guaranteed\",I Got the Sauce Scene,tt3715296\nqkHBpSypnHI,2017.0,1,9,2019,\"Sex, Guaranteed\",You Don't Like the Chair? Scene,tt3715296\nurr-Zn5nq2w,2017.0,9,9,2019,\"Sex, Guaranteed\",Sex Stops Suicide Scene,tt3715296\n_GjXqTtZjDg,2017.0,4,9,2019,Dismissed,The Kid's a Psychopath Scene,tt5039994\nqNXYR0fe1Lk,2017.0,1,9,2019,Dismissed,I'll Staple Your Tongue Scene,tt5039994\n2eltEasOEig,2017.0,2,9,2019,Dismissed,Explosive Reaction Scene,tt5039994\n41v_zrra00A,2017.0,6,9,2019,Dismissed,Jailbait Scene,tt5039994\nnloEs-bbjXM,2017.0,3,9,2019,Dismissed,Sexual Education Scene,tt5039994\nPdYD2Sdt8s4,2017.0,8,9,2019,Dismissed,I Will Kill You Scene,tt5039994\nCYs5HBcQBNc,2017.0,7,9,2019,Dismissed,Psycho Killer Scene,tt5039994\nw_ZDbyiJlF8,2017.0,9,9,2019,Dismissed,Deadly Pop Quiz Scene,tt5039994\n4bT5OwL1UnY,2017.0,5,9,2019,Dismissed,The Report Card of Doom Scene,tt5039994\ngvTCSxLPy0Q,1995.0,4,10,2019,The Net,Captain America Scene,tt0113957\nBiVnGF_72u8,2016.0,7,9,2019,Miss Stevens,Billy's Monologue Scene,tt2693580\ncNjcecvssqE,2016.0,4,9,2019,Miss Stevens,Crying in the Bathroom Scene,tt2693580\naFQabbA_FMs,2016.0,6,9,2019,Miss Stevens,Like Losing Them Again Scene,tt2693580\nFpFqjfqGyRE,2016.0,2,9,2019,Miss Stevens,The Wife Bomb Scene,tt2693580\na7t6tQVX7T8,2016.0,8,9,2019,Miss Stevens,You Should Get Help Scene,tt2693580\npxQ07GfWFjs,2016.0,9,9,2019,Miss Stevens,Add Me Scene,tt2693580\nlKXUBB09y4k,2016.0,3,9,2019,Miss Stevens,Student-Teacher Bonding Scene,tt2693580\nJftv5w9B3So,2016.0,5,9,2019,Miss Stevens,I Can Make You Happy Scene,tt2693580\nAoHVBb8Bc_4,2016.0,1,9,2019,Miss Stevens,I Kissed a Girl Scene,tt2693580\n6IXjYpPtjWk,1995.0,6,10,2019,The Net,Bob Couldn't Make It Scene,tt0113957\n6ya9GVSPiXs,1995.0,9,10,2019,The Net,Virus Scene,tt0113957\nFETaRGJH_JE,1995.0,10,10,2019,The Net,It's Finally Over Scene,tt0113957\n6PEQcK6G_4M,1995.0,5,10,2019,The Net,I Am Angela Bennett Scene,tt0113957\nOo67jMp9UbI,1995.0,8,10,2019,The Net,From One Nightmare to the Next Scene,tt0113957\nhoWEYBSlctc,1995.0,2,10,2019,The Net,Mozart's Ghost Scene,tt0113957\nHZQlFhnFVjg,1995.0,7,10,2019,The Net,An Unsuccessful Getaway Scene,tt0113957\nyLm_tJ-ZrNc,1995.0,3,10,2019,The Net,Staged Robbery Scene,tt0113957\nD01cKQMu5Ew,1995.0,1,10,2019,The Net,One Of Us Scene,tt0113957\nT15XvRqmhqU,2011.0,2,10,2019,Born Bad,Call Me Tomorrow Scene,tt1869315\n8gUP_uUpmSw,2011.0,6,10,2019,Born Bad,Hitting on Her Ex Scene,tt1869315\nRKCrqtbqvio,2011.0,8,10,2019,Born Bad,Crooks Are Tools Scene,tt1869315\n4XHwJQfIyTo,2011.0,9,10,2019,Born Bad,\"I Love You, Baby Scene\",tt1869315\nAdmsyTzM7YY,2011.0,1,10,2019,Born Bad,\"Was It Good for You, Baby? Scene\",tt1869315\nDU8nLYGOMIc,2011.0,3,10,2019,Born Bad,Passion and Fury Scene,tt1869315\nb8bioz2Eb84,2011.0,5,10,2019,Born Bad,I Will Crucify You Scene,tt1869315\n-c5QAS76N_A,2011.0,4,10,2019,Born Bad,Intoxicating Love Scene,tt1869315\nOm-y-goxpYc,2011.0,10,10,2019,Born Bad,Between a Car and a Hard Place Scene,tt1869315\nY1RH4S7GPLA,2011.0,7,10,2019,Born Bad,What's the Combination? Scene,tt1869315\nRyQUewFDEx4,2017.0,1,10,2019,Kings,The Death of Latasha Harlins Scene,tt1972591\n_w2nm32Dbg4,2017.0,2,10,2019,Kings,Liquor Store Lothario Scene,tt1972591\nhaSWFp-ToRM,2017.0,8,10,2019,Kings,Surviving the Riots Scene,tt1972591\ngwdClG0txYM,2017.0,10,10,2019,Kings,Pole Position Scene,tt1972591\nNpQNeUSJLjI,2017.0,6,10,2019,Kings,Walking While Black Scene,tt1972591\n7mO_TD_Co1U,2017.0,4,10,2019,Kings,I'm Black & I'm Proud Scene,tt1972591\n042B8vTl0ig,2017.0,7,10,2019,Kings,Stabbing William Scene,tt1972591\nIGDViR244hs,2017.0,9,10,2019,Kings,Parking Lot Peril Scene,tt1972591\n_LNnkttaKXo,2017.0,3,10,2019,Kings,The Back of a Cop Car Scene,tt1972591\nYQxXtdN7j4U,2017.0,5,10,2019,Kings,Erotic Dreams Scene,tt1972591\nUoDOFJsC608,2017.0,3,9,2019,Thumper,Bust the Dealers Scene,tt5716380\n_i6Du5s9Il0,2017.0,5,9,2019,Thumper,Sex and Other Drugs Scene,tt5716380\n2uVdxC_gCro,2017.0,4,9,2019,Thumper,I Sacrificed for You People Scene,tt5716380\nwCFnoBDeauY,2017.0,1,9,2019,Thumper,A Picky Girl Scene,tt5716380\n92eioWPPuOI,2017.0,7,9,2019,Thumper,I'm a Businessman Scene,tt5716380\nHcjPZqjGuFA,2017.0,9,9,2019,Thumper,Tie Her Up! Scene,tt5716380\nRXkLf3ucqIY,2017.0,2,9,2019,Thumper,I Haven't F***ed Him Yet Scene,tt5716380\n3WIjC39hJF8,2017.0,6,9,2019,Thumper,I Waited for You Scene,tt5716380\n5jsb1xN8byg,2017.0,8,9,2019,Thumper,First Time Junkie Scene,tt5716380\nG4DcKX_XRA8,1980.0,6,10,2019,Superman II,Superman vs. Zod Scene,tt0081573\n9ccE4YIG76Y,2012.0,1,10,2019,Flight,The Freefall Scene,tt1907668\nhJ9hMyqKcg8,1980.0,2,10,2019,Superman II,Kryptonians On The Moon Scene,tt0081573\n_xUiCNlDeJk,1980.0,5,10,2019,Superman II,Kneel Before Zod Scene,tt0081573\nUZ7PTLCQZwU,1980.0,7,10,2019,Superman II,Blown Away Scene,tt0081573\n_rCRxCR06UY,1980.0,8,10,2019,Superman II,Fortress of Solitude Fight Scene,tt0081573\n4xLa-Rn-gdo,1980.0,3,10,2019,Superman II,Niagara Falls Hero Scene,tt0081573\nNRYvrDdntjA,1980.0,10,10,2019,Superman II,Diner Revenge Scene,tt0081573\nvAfD-vF8yss,1980.0,1,10,2019,Superman II,Eiffel Tower Rescue Scene,tt0081573\nrMH3omIA15k,1980.0,4,10,2019,Superman II,Clark Kent Is Superman Scene,tt0081573\nY3gJGuQQPnw,1980.0,9,10,2019,Superman II,Defeating Zod Scene,tt0081573\nedaHyeIxzcI,2012.0,2,10,2019,Flight,Inverting the Plane Scene,tt1907668\nD0bIbyAa_XE,2012.0,3,10,2019,Flight,Brace for Impact Scene,tt1907668\nu_G4el-62Ik,2012.0,8,10,2019,Flight,A Little Pick Me Up Scene,tt1907668\nJv7PzcVfULc,2012.0,4,10,2019,Flight,Chemo Brain Scene,tt1907668\nuzhsjyHUBt8,2012.0,5,10,2019,Flight,We're Talking Jail Time Scene,tt1907668\nbEpL6Mt_jrk,2012.0,9,10,2019,Flight,I'm Drunk Right Now Scene,tt1907668\nWHcarLLrz9Y,2012.0,7,10,2019,Flight,I Drank Three Bottles Scene,tt1907668\nvpEAO0gIAxE,2012.0,10,10,2019,Flight,At Least I'm Sober Scene,tt1907668\nfIfQbocblZc,2012.0,6,10,2019,Flight,Love Is Taking Off Scene,tt1907668\nrOu9FD63Z68,2000.0,4,10,2019,Little Nicky,The Devil is Here Scene,tt0185431\n0QLGAhQDgsE,2000.0,7,10,2019,Little Nicky,One on One Basketball Scene,tt0185431\nIQVt4ZtUzgc,2000.0,10,10,2019,Little Nicky,Ozzy Saves the Day Scene,tt0185431\nUovtut2ckMg,2000.0,8,10,2019,Little Nicky,You're All Going to Hell Scene,tt0185431\n9eI4mt_lKTw,2000.0,3,10,2019,Little Nicky,Nicky and the Train Scene,tt0185431\narzwnRoAQP0,2000.0,6,10,2019,Little Nicky,Demon Brother Scene,tt0185431\nZwQuo7dY_Dw,2000.0,5,10,2019,Little Nicky,Snoring Scene,tt0185431\nQ2x3eUH0ytI,2000.0,9,10,2019,Little Nicky,You Can Do It! Scene,tt0185431\nN7itFdNE2Qw,2000.0,2,10,2019,Little Nicky,Pineapple Punishment Scene,tt0185431\nW8fjSVywGGk,2000.0,1,10,2019,Little Nicky,Big Bird Scene,tt0185431\nU8fgto8IZLM,1988.0,4,10,2019,Short Circuit 2,One Pissed-Off Robot Scene,tt0096101\nZ6cDbMLcxQI,1988.0,7,10,2019,Short Circuit 2,I'm Alive Scene,tt0096101\nNTdHPAY7rOE,1988.0,9,10,2019,Short Circuit 2,Recycle This Scene,tt0096101\n2ADaXnuG-YM,1988.0,3,10,2019,Short Circuit 2,Gang Initiation Scene,tt0096101\ngWGhsJWFOrU,2012.0,8,10,2019,The Man With the Iron Fists,Blossom vs. Lion Scene,tt1258972\nh5f5GgqVWes,2012.0,1,10,2019,The Man With the Iron Fists,My Name is Mr. Knife! Scene,tt1258972\na8mImo0aNDo,2012.0,5,10,2019,The Man With the Iron Fists,Forging the Iron Fists,tt1258972\nzOvMmwnFVa0,2012.0,9,10,2019,The Man With the Iron Fists,Gears of Hell Scene,tt1258972\n_4oM1Sa1Pb8,2012.0,2,10,2019,The Man With the Iron Fists,The X-Blade Scene,tt1258972\nza8FVqsMmZ0,2012.0,4,10,2019,The Man With the Iron Fists,Gemini Fight Scene,tt1258972\nUWS3FOpdFMU,2012.0,10,10,2019,The Man With the Iron Fists,Fists of Vengeance Scene,tt1258972\nbfgJbZHRes8,2012.0,6,10,2019,The Man With the Iron Fists,The Prostitutes' Revenge Scene,tt1258972\nKo8vqBmZRfE,2012.0,7,10,2019,The Man With the Iron Fists,Brothel Battle Scene,tt1258972\nlS9V0oDrPfs,2012.0,3,10,2019,The Man With the Iron Fists,Brass Body vs. X-Blade Scene,tt1258972\nUVDRpF027l0,2010.0,9,10,2019,Shrek Forever After,Shrek Rides Again Scene,tt0892791\nqSd4Q3GY7dc,1988.0,5,10,2019,Short Circuit 2,Robot Rights Scene,tt0096101\nLABMISLl7Y8,1988.0,8,10,2019,Short Circuit 2,Bad Robot Scene,tt0096101\nJf7jVM7NoVE,1988.0,6,10,2019,Short Circuit 2,Prompting Love Scene,tt0096101\npR8Lt5DyU88,1988.0,10,10,2019,Short Circuit 2,Golden Johnny Five Scene,tt0096101\nR1zRKVLsmrM,1988.0,2,10,2019,Short Circuit 2,Manic Robot Scene,tt0096101\nl0zmCUVB0Yw,1988.0,1,10,2019,Short Circuit 2,Johnny Five Arrives,tt0096101\nXTjTXskLQO0,2010.0,7,10,2019,Shrek Forever After,Love Is a Battlefield Scene,tt0892791\n6I5B0jyLBUg,2010.0,3,10,2019,Shrek Forever After,Do the Roar Scene,tt0892791\nKJtfL83FLj8,2014.0,6,10,2019,The Sheik,Loses His Daughter,tt3607812\nNRuVbAAb_FU,2014.0,2,10,2019,The Sheik,Brings the Heat Scene,tt3607812\naOCAfIWw2H0,2014.0,10,10,2019,The Sheik,Don't Be a Jabroni Scene,tt3607812\nBc_4HO3jI1g,2014.0,3,10,2019,The Sheik,Hulkamania Scene,tt3607812\n25UN_cgKaxc,2014.0,9,10,2019,The Sheik,Real or Jabroni Scene,tt3607812\nvtdnjV0Q2fE,2014.0,5,10,2019,The Sheik,The Independent Circuit Scene,tt3607812\n5RFz0uu2ZuA,2014.0,4,10,2019,The Sheik,vs. Hacksaw Jim Duggan Scene,tt3607812\n3ZL5il1o-AQ,2014.0,7,10,2019,The Sheik,The Drugs Don't Work Scene,tt3607812\nYo8mYWU0oTk,2014.0,1,10,2019,The Sheik,Ignites Scene,tt3607812\nC1MsPeGKyMs,2014.0,8,10,2019,The Sheik,Iron Sheik's Comeback Scene,tt3607812\nPvva0sdUEkc,2011.0,5,10,2019,Puss in Boots,Stealing the Golden Goose Scene,tt0448694\nTJa_A5cVd-w,2010.0,6,10,2019,Shrek Forever After,Puss Let Himself Go Scene,tt0892791\nzkRkL94VQxY,2010.0,5,10,2019,Shrek Forever After,\"Fiona, Warrior Princess Scene\",tt0892791\nYNZmZ4ARr38,2010.0,2,10,2019,Shrek Forever After,Daddy Ever After Scene,tt0892791\n1IaDQdo8x1I,2010.0,1,10,2019,Shrek Forever After,A Deal with Rumpelstiltskin Scene,tt0892791\nhIJ0gMDZT_4,2010.0,8,10,2019,Shrek Forever After,Musical Ambush Scene,tt0892791\n0osA8jKKotc,2010.0,10,10,2019,Shrek Forever After,Happily Ever After... Again,tt0892791\nuuNy1Ibdk_Y,2010.0,4,10,2019,Shrek Forever After,The Old Shrek Scene,tt0892791\nMaqzxDPwOB4,2011.0,7,10,2019,Puss in Boots,Puss Meets Jack Beanstalk Scene,tt0448694\nFcSSNKWcReg,2011.0,8,10,2019,Puss in Boots,The Whole Time Scene,tt0448694\nu4gz2yNW_Go,2011.0,9,10,2019,Puss in Boots,Wild Goose Rampage Scene,tt0448694\nUpgP8aA8ABE,2011.0,6,10,2019,Puss in Boots,Victory Dance Scene,tt0448694\ngxuEGIzZrGc,2011.0,1,10,2019,Puss in Boots,Rooftop Chase Scene,tt0448694\n-19d_T472co,2011.0,2,10,2019,Puss in Boots,Cat Dance Fight Scene,tt0448694\nzHwUR2EqUO0,2011.0,3,10,2019,Puss in Boots,Magic Beans Heist Scene,tt0448694\nx2S78gnCkRg,2011.0,10,10,2019,Puss in Boots,Save the Last Dance Scene,tt0448694\ng1r-B5ZGZWY,2011.0,4,10,2019,Puss in Boots,The Magic Beanstalk Scene,tt0448694\navdSnNmqs7c,2018.0,7,10,2019,Connect,God's Truth Scene,tt8804688\nuw7rRlJvEl4,2011.0,4,10,2019,Rango,Showdown With the Hawk Scene,tt1192628\nBIg5_09Tcf8,2011.0,8,10,2019,Rango,Jake the Rattlesnake Scene,tt1192628\n7cZ3I9Bn9Rg,2011.0,9,10,2019,Rango,It Only Takes One Bullet Scene,tt1192628\nSW5_v_8r9VA,2011.0,2,10,2019,Rango,Between a Hawk and a Glass Place Scene,tt1192628\nde_Dik7HT6E,2011.0,7,10,2019,Rango,The Spirit of the West Scene,tt1192628\nqN_sGdVG0Yw,2011.0,10,10,2019,Rango,In Deep Water Scene,tt1192628\nnS4Zfx9BSX0,2011.0,5,10,2019,Rango,The Water Dance,tt1192628\nuAroGB_YCmw,2011.0,6,10,2019,Rango,Flight of the Mole People Scene,tt1192628\nXgGyrrzTBz4,2011.0,3,10,2019,Rango,Trouble at the Saloon,tt1192628\nTuBXSOUS-U4,2011.0,1,10,2019,Rango,The Car Crash Scene,tt1192628\nVkD1dhWMYts,2000.0,7,10,2019,Chicken Run,Building Suspense Scene,tt0120630\n8xgUm0plA8w,2000.0,8,10,2019,Chicken Run,Chickens Attack! Scene,tt0120630\nwQj8uFwQP2A,2000.0,5,10,2019,Chicken Run,Shake Your Tail Feathers Scene,tt0120630\nmlHF0Vv7yEc,2000.0,10,10,2019,Chicken Run,Fight Or Flight Scene,tt0120630\nqTj4aSPwTBk,2000.0,1,10,2019,Chicken Run,The (Not So) Great Escape Scene,tt0120630\nmjuNE5wyMzY,2000.0,9,10,2019,Chicken Run,Freedom Flyers Scene,tt0120630\nzQf0jUhqJYw,2000.0,6,10,2019,Chicken Run,The Pie Machine Scene,tt0120630\nZVlfttyv5js,2000.0,2,10,2019,Chicken Run,Roll Call Scene,tt0120630\ni_zdyGw0tEo,2000.0,4,10,2019,Chicken Run,Flight School Scene,tt0120630\n0hNbRd78jOE,2000.0,3,10,2019,Chicken Run,Rocky's Revival Scene,tt0120630\nj9FpQjinKMY,2018.0,9,10,2019,Connect,Fighting the Devil Scene,tt8804688\nmfgrntgrWTw,2018.0,2,10,2019,Connect,The Center of My Own Universe Scene,tt8804688\n3Bz0cqx4ZyI,2018.0,3,10,2019,Connect,Cultural Lies Scene,tt8804688\ne70y31Gbhpg,2018.0,6,10,2019,Connect,One Image Scene,tt8804688\n1rd6owpXoC4,2018.0,1,10,2019,Connect,Predatory Messaging Scene,tt8804688\nS5CmrYAWxh4,2018.0,4,10,2019,Connect,Social Stimulation Scene,tt8804688\nROf2H0OX39s,2018.0,5,10,2019,Connect,Rulers of the Dark Scene,tt8804688\nc_5924m1jNM,2018.0,8,10,2019,Connect,To Catch a Predator Scene,tt8804688\nI8qfzVFTQuo,2018.0,10,10,2019,Connect,The Transition Period Scene,tt8804688\nghUFMbHmw8s,2012.0,1,10,2019,Madagascar 3,Breaking into the Casino Scene,tt1277953\nOuQTes47k14,2012.0,5,10,2019,Madagascar 3,When in Rome Scene,tt1277953\nUZ2IjJCsxxo,2012.0,6,10,2019,Madagascar 3,Circus Fail Scene,tt1277953\n22xJjwTRC10,2012.0,3,10,2019,Madagascar 3,The Animal Control Terminator Scene,tt1277953\nGq43zgK0T94,2012.0,7,10,2019,Madagascar 3,Dubois Sings Scene,tt1277953\nA7mWnsrRu6w,2012.0,10,10,2019,Madagascar 3,Afro Circus Rescue Scene,tt1277953\nPXSMKQqZjaE,2012.0,8,10,2019,Madagascar 3,Zebras Can Fly Scene,tt1277953\njFWnVdsSgxs,2012.0,9,10,2019,Madagascar 3,Circus Fireworks Scene,tt1277953\nJFAAK6FfOSA,2012.0,4,10,2019,Madagascar 3,King Julien Falls in Love Scene,tt1277953\nwEvSZB_Dhqc,2012.0,2,10,2019,Madagascar 3,\"Is There a Problem, Officer? Scene\",tt1277953\nmZHlantNtwg,2007.0,5,10,2019,Shrek the Third,Three Little Squealers Scene,tt0413267\nsWjVe9dMRHU,2007.0,1,10,2019,Shrek the Third,Royal Pain Scene,tt0413267\nMriW09XMJeo,2007.0,9,10,2019,Shrek the Third,Stealing The Show Scene,tt0413267\n6TOx7qsyaxU,2007.0,10,10,2019,Shrek the Third,Surrounded by Villains Scene,tt0413267\n0L1sL54G45Q,2007.0,8,10,2019,Shrek the Third,Damsels of Destruction Scene,tt0413267\nO12Ve5AFu7o,2007.0,6,10,2019,Shrek the Third,Kill Them All! Scene,tt0413267\n0igqAlu8Oqc,2007.0,7,10,2019,Shrek the Third,Princess Prisoners Scene,tt0413267\nIEaqLI9HAmA,2007.0,4,10,2019,Shrek the Third,Revenge Of The Nerd Scene,tt0413267\nVs0CShp6HFA,2007.0,3,10,2019,Shrek the Third,Medieval High School Scene,tt0413267\nSVTxvLaac6A,2007.0,2,10,2019,Shrek the Third,Baby Nightmare Scene,tt0413267\nGaUGoueAS4Y,2013.0,1,10,2019,The Croods,Hunting For Breakfast Scene,tt0481499\nhlWL5Az4pow,2000.0,3,10,2019,The Road to El Dorado,The Trail We Blaze,tt0138749\nY0IXtktHTgk,2000.0,10,10,2019,The Road to El Dorado,You're Not a God? Scene,tt0138749\nFSXijk37oNs,2000.0,5,10,2019,The Road to El Dorado,It's Tough to Be A God Scene,tt0138749\ne-NMI6o5ynk,2000.0,1,10,2019,The Road to El Dorado,El Dorado Theme Scene,tt0138749\njG7W6jwCSd0,2000.0,6,10,2019,The Road to El Dorado,Without Question Scene,tt0138749\nh3AqOR2Ru1s,2000.0,2,10,2019,The Road to El Dorado,Gambling with Loaded Dice Scene,tt0138749\nbRehxlYZ_CE,2000.0,9,10,2019,The Road to El Dorado,The Stone Jaguar Attack Scene,tt0138749\nHm8hcRPGyME,2000.0,8,10,2019,The Road to El Dorado,Play Ball! Scene,tt0138749\nxaIlgOMjspo,2000.0,7,10,2019,The Road to El Dorado,Finally We're Connecting,tt0138749\nNipqouLNqAY,2000.0,4,10,2019,The Road to El Dorado,Entering El Dorado Scene,tt0138749\nz7tcVyV7wjw,2013.0,2,10,2019,The Croods,Friends With Fire Scene,tt0481499\nirnju0G-lBg,2013.0,10,10,2019,The Croods,Grug's Big Idea Scene,tt0481499\nxxl1Hrw2eQM,2013.0,8,10,2019,The Croods,Stuck In Tar Scene,tt0481499\nhR4oc1us1aU,2013.0,7,10,2019,The Croods,Grug's Inventions Scene,tt0481499\nBM29Ze3d_cs,2013.0,6,10,2019,The Croods,Try This On For Size Scene,tt0481499\nKToHdILd_p0,2013.0,5,10,2019,The Croods,Setting The Trap Scene,tt0481499\n29Pg9Oo6P2w,2013.0,9,10,2019,The Croods,A Tearful Goodbye,tt0481499\nyISManYcWqU,2013.0,3,10,2019,The Croods,Fighting Flyers With Fire Scene,tt0481499\nw6ivjvOqBy0,2013.0,4,10,2019,The Croods,Family Finds Fire Scene,tt0481499\n_QKwR14HKf8,2017.0,6,8,2019,Baby Fever,Dead Sexy Scene,tt7399158\nWdS4ZMa6tXM,2017.0,7,8,2019,Baby Fever,The Sperm Thieves,tt7399158\nYpFmmzisOy0,2017.0,5,8,2019,Baby Fever,Is There a Mood? Scene,tt7399158\nh41ylpWhV1I,2017.0,2,8,2019,Baby Fever,Accidental Homewrecker Scene,tt7399158\nwxhUTK7xbz8,2017.0,1,8,2019,Baby Fever,No Room for Love Scene,tt7399158\n-fRY1b6WAx4,2017.0,3,8,2019,Baby Fever,I Like My Women Mature Scene,tt7399158\nIT4vcwIvSCI,2017.0,8,8,2019,Baby Fever,Punctured Condoms Scene,tt7399158\nzyaOnPSzcPE,2017.0,4,8,2019,Baby Fever,Dating Service Hell Scene,tt7399158\ngjmt7I1OJfw,2012.0,4,10,2019,The Guilt Trip,I'm Not Changing the Label! Scene,tt1694020\njMxYv05A7B0,2012.0,1,10,2019,The Guilt Trip,I Named You After Him Scene,tt1694020\nDLzp0YkZnRc,2012.0,5,10,2019,The Guilt Trip,Drink Your Water Scene,tt1694020\n8v7xHt-CJZg,2012.0,2,10,2019,The Guilt Trip,I'm Not Sleeping With My Mom Scene,tt1694020\nP4aGofKtJsA,2012.0,3,10,2019,The Guilt Trip,Strip Club With Mom Scene,tt1694020\n39471A71y3w,2012.0,10,10,2019,The Guilt Trip,It Was Always You Scene,tt1694020\n6dA4C1NKChE,2012.0,9,10,2019,The Guilt Trip,Andy & Joyce Scene,tt1694020\nTgujxmrRUlw,2012.0,7,10,2019,The Guilt Trip,The Steak-Eating Contest Scene,tt1694020\nwR_e9lxh7Ds,2012.0,8,10,2019,The Guilt Trip,No One Wants That on TV Scene,tt1694020\nfZB65wj9nz8,2012.0,6,10,2019,The Guilt Trip,You're Not Giving My Mom a Drink Scene,tt1694020\nFHiB0ZTO8fU,1989.0,8,10,2019,Look Who's Talking,What's Right for Mikey Scene,tt0097778\n2NA_wZ2MWBc,1989.0,10,10,2019,Look Who's Talking,Mikey Stop! Scene,tt0097778\nvId4AoKDg2s,1989.0,7,10,2019,Look Who's Talking,Dancing With Mommy Scene,tt0097778\nBPuGsFSTy0Y,1989.0,2,10,2019,Look Who's Talking,Going Into Labor Scene,tt0097778\nQDARBy0jCgs,1989.0,9,10,2019,Look Who's Talking,Who's Albert? Scene,tt0097778\nvozjOGBUz2I,1989.0,4,10,2019,Look Who's Talking,That's Breast Milk Scene,tt0097778\nCeX8drgioLs,1989.0,1,10,2019,Look Who's Talking,Going Through a Selfish Phase Scene,tt0097778\n03uEq5dKcFs,1989.0,5,10,2019,Look Who's Talking,I'll Babysit Scene,tt0097778\neUogxXRPC7E,1989.0,6,10,2019,Look Who's Talking,James Babysits Scene,tt0097778\ngQgdweybPwk,1989.0,3,10,2019,Look Who's Talking,Get Me Some Drugs Scene,tt0097778\ncPVM14Bnf5I,2008.0,9,10,2019,Madagascar: Escape 2 Africa,The Lion Dance Scene,tt0479952\niNg7uRYtqLA,2008.0,1,10,2019,Madagascar: Escape 2 Africa,Baby Alex Goes to New York Scene,tt0479952\n5aY5jTL60pA,2014.0,6,10,2019,Penguins of Madagascar,Penguin Pilots Scene,tt1911658\nDpA2bMJlDpI,2008.0,4,10,2019,Madagascar: Escape 2 Africa,Moto Moto Likes You Scene,tt0479952\n9F3iBMYvQOs,2008.0,2,10,2019,Madagascar: Escape 2 Africa,Penguin Plane Crash Scene,tt0479952\nj2JFTz9KQhk,2008.0,5,10,2019,Madagascar: Escape 2 Africa,Grand Theft Penguin Scene,tt0479952\njQp4IlURoNg,2008.0,8,10,2019,Madagascar: Escape 2 Africa,Animal Sacrifice Scene,tt0479952\np2zDdb_MqmI,2008.0,10,10,2019,Madagascar: Escape 2 Africa,Monkey-Powered Airplane Scene,tt0479952\nOmdvu0f-Wuw,2008.0,6,10,2019,Madagascar: Escape 2 Africa,King Julian's the Match Maker Scene,tt0479952\nouQG7Pcq1S8,2008.0,3,10,2019,Madagascar: Escape 2 Africa,The Nana Cometh Scene,tt0479952\nUvRaab90nQ0,2008.0,7,10,2019,Madagascar: Escape 2 Africa,Before We Come to Our Senses Scene,tt0479952\n9mwgsjG2Vtw,2018.0,3,8,2019,Anchors Up,The Boat Rap Scene,tt7454138\nrmpFmJfEZXs,2004.0,2,10,2019,Shrek 2,An Awkward Dinner Scene,tt0298148\n_t4L-ZdoEr8,2004.0,6,10,2019,Shrek 2,I'm Wearing Ladies' Underwear Scene,tt0298148\nsOBIrjgDZr4,2004.0,9,10,2019,Shrek 2,Happy Endings Scene,tt0298148\nC9PYzGyIfF8,2004.0,10,10,2019,Shrek 2,Livin' La Vida Loca Scene,tt0298148\nZOfisAF09AA,2004.0,1,10,2019,Shrek 2,Accidentally in Love Scene,tt0298148\nvaJ2yQC_ktY,2004.0,3,10,2019,Shrek 2,Puss in Boots Scene,tt0298148\nA_HjMIjzyMU,2004.0,7,10,2019,Shrek 2,I Need a Hero Scene,tt0298148\nLzJ1fo-oUpk,2004.0,5,10,2019,Shrek 2,Human Shrek Scene,tt0298148\nUgiK8333Np0,2004.0,8,10,2019,Shrek 2,Fighting the Fairy Godmother Scene,tt0298148\nFFnyDGETjzA,2004.0,4,10,2019,Shrek 2,The Potions Factory Scene,tt0298148\nES20xt2nU10,2018.0,1,8,2019,Anchors Up,Rescue at Sea Scene,tt7454138\nUFFaqQYlg0E,2018.0,5,8,2019,Anchors Up,Cave of Crime Scene,tt7454138\nTm1fX-cqfxk,2018.0,2,8,2019,Anchors Up,A Hero's Welcome Scene,tt7454138\nL1AHpY6Gcbs,2018.0,4,8,2019,Anchors Up,The Love Boats Scene,tt7454138\neAx_rXKiO48,2018.0,6,8,2019,Anchors Up,Seagulls Attack Scene,tt7454138\ncIesHaxakmU,2018.0,8,8,2019,Anchors Up,Upside Down Boat Jump Scene,tt7454138\n157mo2VaYqc,2018.0,7,8,2019,Anchors Up,Sea Cove Cave-In Scene,tt7454138\nnHcRQhadzhY,2014.0,1,10,2019,Penguins of Madagascar,Canal Caper Scene,tt1911658\n5VmWe3LyUDM,2014.0,4,10,2019,Penguins of Madagascar,The Penguins Take Flight Scene,tt1911658\n81MNbVi5a64,2014.0,9,10,2019,Penguins of Madagascar,Saving The Penguins Scene,tt1911658\npAwdeWy9yYM,2014.0,7,10,2019,Penguins of Madagascar,Mutant Penguins Scene,tt1911658\ngIZ64_sZbCY,2014.0,10,10,2019,Penguins of Madagascar,Looks Don't Matter Scene,tt1911658\nzXR_4li9ZnA,2014.0,8,10,2019,Penguins of Madagascar,The Boys Are Back,tt1911658\nfqKdFZ1jKMY,2014.0,5,10,2019,Penguins of Madagascar,\"Operation Flash, Splash & Crash Scene\",tt1911658\nA1GJyyJzpCo,2014.0,2,10,2019,Penguins of Madagascar,Cute and Cuddly Secret Agents Scene,tt1911658\nsF-j-GhV6xw,2014.0,3,10,2019,Penguins of Madagascar,North Wind Headquarters Scene,tt1911658\ng2ElfIY2zfQ,2003.0,8,10,2019,The Cat in the Hat,Riding Mrs. Kwan,tt0312528\nPu8AnCsWdiM,2018.0,2,6,2019,Penguin Rescue,Penguin & Whale Facts Scene,tt7575480\nLAajBhbC5Y8,2018.0,3,6,2019,Penguin Rescue,Climate Change Scene,tt7575480\niGawlpfe6a0,2018.0,1,6,2019,Penguin Rescue,Unearthing Earth Scene,tt7575480\nEDywdraYOBA,2018.0,6,6,2019,Penguin Rescue,Penguin Trivia Scene,tt7575480\nd0hM2Ekkk-8,2018.0,4,6,2019,Penguin Rescue,Commander Cup-K Scene,tt7575480\n2iF-cU-qnbc,2018.0,5,6,2019,Penguin Rescue,Orca Knowledge Scene,tt7575480\nph7amveyJHY,2003.0,5,10,2019,The Cat in the Hat,Piñata In The Hat Scene,tt0312528\n3iJ8esboOjA,2003.0,7,10,2019,The Cat in the Hat,Cathouse Club Scene,tt0312528\n0gouIFYgm2k,2003.0,10,10,2019,The Cat in the Hat,Cleaning up the House Scene,tt0312528\nLOIF-564wKc,2003.0,4,10,2019,The Cat in the Hat,Thing 1 and Thing 2 Scene,tt0312528\n1SEsxhvzzT0,2003.0,6,10,2019,The Cat in the Hat,Three-Wheel Drive Scene,tt0312528\n57VO_eSiDG4,2003.0,3,10,2019,The Cat in the Hat,The Kupkake-inator! Scene,tt0312528\n8QbFslYlKIk,2003.0,9,10,2019,The Cat in the Hat,Kicking Out The Cat Scene,tt0312528\nyId_D0rOn8Y,2003.0,1,10,2019,The Cat in the Hat,The Cat Arrives Scene,tt0312528\nPq2Z7Qf45gM,2003.0,2,10,2019,The Cat in the Hat,\"Fun, Fun, Fun! Scene\",tt0312528\nG77jx5jd2-c,2011.0,7,9,2019,1st Furry Valentine,The (Not So) Fun House Scene,tt1757944\nItkWLEWFjVI,2011.0,1,9,2019,1st Furry Valentine,Skateboard Fail Scene,tt1757944\n0ov8ekqSAOU,2011.0,9,9,2019,1st Furry Valentine,The First Jubilee Scene,tt1757944\nwJROB9vIUFk,2011.0,4,9,2019,1st Furry Valentine,Putting The Pony Out To Pasture Scene,tt1757944\nIFETv7hMlqc,2011.0,2,9,2019,1st Furry Valentine,Dream Job Scene,tt1757944\nwnmtGj0vBo0,2011.0,3,9,2019,1st Furry Valentine,Training A Pony Scene,tt1757944\niH-ioakPz6s,2011.0,5,9,2019,1st Furry Valentine,The Princess Problem Scene,tt1757944\npPnfIsbcwfw,2011.0,6,9,2019,1st Furry Valentine,Beating The Bad Guys Scene,tt1757944\njxEVFU6EN_k,2011.0,8,9,2019,1st Furry Valentine,Running Down A Jerk Scene,tt1757944\nsRR3ukzqiGs,2008.0,6,10,2019,Open Season 2,I Can Sell This Scene,tt1107365\nQQaLVYSCwrc,2008.0,4,10,2019,Open Season 2,Fetch Weenie Fetch Scene,tt1107365\nqULlmr4lxb0,2008.0,8,10,2019,Open Season 2,A Plus Sized Grizzly Scene,tt1107365\nCBUtXwZNA8Y,2008.0,3,10,2019,Open Season 2,Freeing Mr. Weenie Scene,tt1107365\nXa0JBPt2cGU,2008.0,7,10,2019,Open Season 2,Trust The Plan Scene,tt1107365\nrjnLGy6uWKc,2008.0,5,10,2019,Open Season 2,S'mores Scene,tt1107365\nYn8Or4O6_9U,2008.0,2,10,2019,Open Season 2,Vicious Wild Animals Scene,tt1107365\nE-mnMI7Klyw,2008.0,1,10,2019,Open Season 2,My Large Rack Scene,tt1107365\nP7-rs7H1CAE,2008.0,9,10,2019,Open Season 2,Get The Remote! Scene,tt1107365\nH4YWQ0uEY2U,2008.0,10,10,2019,Open Season 2,Close to You Scene,tt1107365\ngSepgtf10wk,2016.0,8,10,2019,Izzie's Way Home,Volcano Surfing Scene,tt5667482\nv0xXbyXI6YI,2016.0,9,10,2019,Izzie's Way Home,The Great Coral Reef Scene,tt5667482\n5MINtb6BV6Q,2016.0,10,10,2019,Izzie's Way Home,In the Tentacles of Doom Scene,tt5667482\n9lOj8ThRAWI,2016.0,5,10,2019,Izzie's Way Home,Show Your Teeth Scene,tt5667482\ny10ao1Tib8A,2016.0,3,10,2019,Izzie's Way Home,Discovering the Ocean Scene,tt5667482\nGxDvAEsMvoc,2016.0,6,10,2019,Izzie's Way Home,On the Hook Scene,tt5667482\nLWtB2BdJ3kk,2016.0,7,10,2019,Izzie's Way Home,Killer Dolphin Scene,tt5667482\nsVc3ln7vaig,2016.0,2,10,2019,Izzie's Way Home,Ferocious Lionfish Scene,tt5667482\nh6klN0zNh64,2016.0,4,10,2019,Izzie's Way Home,Fart Escape Scene,tt5667482\nW112SAzt_FI,2016.0,1,10,2019,Izzie's Way Home,Fish Overboard Scene,tt5667482\nn3L8UVTe6Ak,2018.0,7,10,2019,Upgrade,Cyborg vs. Cyborg Scene,tt6499752\nwsooQlbj934,2018.0,1,10,2019,Upgrade,The Car Crash Scene,tt6499752\no_3BdeGhzrs,2018.0,6,10,2019,Upgrade,Chased by the Police Scene,tt6499752\ngi9EwdK-6L4,2018.0,9,10,2019,Upgrade,Fighting for Control Scene,tt6499752\nyn2p3AV23-Q,2018.0,5,10,2019,Upgrade,The Warehouse Fight Scene,tt6499752\nAZxn9md_aZI,2018.0,2,10,2019,Upgrade,The Kitchen Fight Scene,tt6499752\n-DqmTaUK-Ow,2018.0,10,10,2019,Upgrade,STEM Takes Over Scene,tt6499752\nxDkXQ7uBr5M,2018.0,8,10,2019,Upgrade,\"Don't Fight Me, Grey Scene\",tt6499752\n1GYZPg_aQdw,2018.0,3,10,2019,Upgrade,Bathroom Beatdown Scene,tt6499752\n4A-hmyHNaxM,2018.0,4,10,2019,Upgrade,Use the Knife Scene,tt6499752\nMcv-560wn_s,2015.0,1,9,2019,Martian Land,The Dust Storm Scene,tt4943934\nZVLaVxPjPcQ,2015.0,6,9,2019,Martian Land,Gasping for Air Scene,tt4943934\nclN9kykVhOs,2015.0,2,9,2019,Martian Land,The Wind Tunnels Scene,tt4943934\nN3_pKdxk5OM,2015.0,5,9,2019,Martian Land,Escape Through the Tunnels Scene,tt4943934\nTWUQypjv2Gw,2015.0,7,9,2019,Martian Land,Save My Family Scene,tt4943934\n11MponTu30M,2015.0,4,9,2019,Martian Land,Stick the Landing Scene,tt4943934\nQQsg9djZsRE,2015.0,3,9,2019,Martian Land,Enter the Storm Scene,tt4943934\n1UN6pgpke7o,2015.0,8,9,2019,Martian Land,Saving the Planet Scene,tt4943934\nRZM3dVWNLG0,2015.0,9,9,2019,Martian Land,Mars's Last Stand Scene,tt4943934\nC7vyta1sCfU,2012.0,8,8,2019,Alien Origin,The Alien Attacks Scene,tt2196430\nTd1oEs-H3QA,2012.0,7,8,2019,Alien Origin,Fighting The Alien Invasion Scene,tt2196430\nR0fmtWlMpHc,2012.0,3,8,2019,Alien Origin,The Mothership Lands! Scene,tt2196430\nW2sUalav-ak,2012.0,2,8,2019,Alien Origin,Ancient Alien Cave Scene,tt2196430\n0cQThjQfEEc,2012.0,5,8,2019,Alien Origin,Alien Firefight Scene,tt2196430\nSHwGQTJ73Mg,2012.0,4,8,2019,Alien Origin,Inside the Mothership Scene,tt2196430\nXGsmIO5GUZI,2012.0,6,8,2019,Alien Origin,First Contact Scene,tt2196430\n0dmwDGkQJR8,2012.0,1,8,2019,Alien Origin,Candid Camera Kill Scene,tt2196430\nwq-H7qGfF68,2015.0,6,10,2019,The Wedding Ringer,Grooms Gone Wild Scene,tt0884732\nEp30EE2v0mU,2015.0,1,10,2019,The Wedding Ringer,I'm Bic Mitchum Scene,tt0884732\nfvHgXzOY12Y,2015.0,5,10,2019,The Wedding Ringer,Let's Dance Scene,tt0884732\nk2s7U_7gHtE,2015.0,9,10,2019,The Wedding Ringer,Best Man Speech Scene,tt0884732\nClOGZ8IiO90,2015.0,7,10,2019,The Wedding Ringer,Bachelor Party Bust Scene,tt0884732\nOjkIBSE3yfY,2015.0,2,10,2019,The Wedding Ringer,Groomsmen Auditions Scene,tt0884732\nNa9qhz28ZWQ,2015.0,4,10,2019,The Wedding Ringer,Meet Your Groomsmen Scene,tt0884732\nRWfQwm_BgZY,2015.0,3,10,2019,The Wedding Ringer,Brunch With the Family Scene,tt0884732\nWhUvsKY-l28,2015.0,10,10,2019,The Wedding Ringer,The Best Honeymoon Ever Scene,tt0884732\nSe2zCvUqqWw,2015.0,8,10,2019,The Wedding Ringer,Family Football Scene,tt0884732\nK93YrK48ZG0,2002.0,10,10,2019,Undercover Brother,\"Mess With The 'Fro, You Got To Go Scene\",tt0279493\nIspZWYlmYZY,2002.0,6,10,2019,Undercover Brother,Selling Out Scene,tt0279493\nngLX1uDh-eg,2002.0,4,10,2019,Undercover Brother,Black Man's Kryptonite Scene,tt0279493\nFloKMOp4wN8,2002.0,7,10,2019,Undercover Brother,Fighting Dirty Scene,tt0279493\nl38Qliee6VE,2002.0,3,10,2019,Undercover Brother,Caucasian Overload! Scene,tt0279493\nDQjDI3NorAY,2002.0,2,10,2019,Undercover Brother,Brotherhood Headquarters Scene,tt0279493\nH1IhRMtTUno,2002.0,9,10,2019,Undercover Brother,New Recruits Scene,tt0279493\nlfUlATBIer8,2002.0,1,10,2019,Undercover Brother,Blackness Confirmed Scene,tt0279493\nH_pmwvIvi9Q,2002.0,5,10,2019,Undercover Brother,Mayonnaise Sandwich Scene,tt0279493\nRMWfAkUhGCM,2002.0,8,10,2019,Undercover Brother,Race Chase Scene,tt0279493\nNuwu9VTP3Ak,2012.0,9,10,2019,A Thousand Words,Show Her That You Love Her Scene,tt0763831\nf8dkNziRlHg,2012.0,10,10,2019,A Thousand Words,Making Peace Scene,tt0763831\nXPsddyf2EcY,2012.0,6,10,2019,A Thousand Words,Nailed It Scene,tt0763831\nB_cE7WEW5gM,2012.0,7,10,2019,A Thousand Words,Talk Dirty to Me Scene,tt0763831\n6AJH6b91rF8,2012.0,4,10,2019,A Thousand Words,You Found My Furry Tapes Scene,tt0763831\nPurV6BzV3fI,2012.0,1,10,2019,A Thousand Words,Freestyle Chanting Scene,tt0763831\nqvvcVzNqXVg,2012.0,8,10,2019,A Thousand Words,Because I Got High Scene,tt0763831\n8rX7fkDLEx0,2012.0,3,10,2019,A Thousand Words,\"Triple Shot, No Assassinations Scene\",tt0763831\nB2KSjVAskxM,2012.0,5,10,2019,A Thousand Words,Squirrels in My Pants Scene,tt0763831\n4vJ6xB6ctaA,2012.0,2,10,2019,A Thousand Words,Baby Back Ribs Scene,tt0763831\n9dqOdoFtNcM,2010.0,5,10,2019,Death at a Funeral,Secret Lovers Scene,tt1321509\nOxEcQFG6U4g,2010.0,4,10,2019,Death at a Funeral,The Little Lover Scene,tt1321509\nByRUwa_QiaE,2010.0,9,10,2019,Death at a Funeral,Moving the Body Scene,tt1321509\naEG9dwOsAAg,2010.0,2,10,2019,Death at a Funeral,The Coffin's Moving! Scene,tt1321509\nyXDgPREBssw,2010.0,10,10,2019,Death at a Funeral,Aaron's Eulogy Scene,tt1321509\nB-S7jkgEC8Y,2010.0,7,10,2019,Death at a Funeral,Death and Defecation Scene,tt1321509\nCnrR2upI8Jo,2010.0,1,10,2019,Death at a Funeral,Not My Father Scene,tt1321509\n6PAMZYS1Fqk,2010.0,6,10,2019,Death at a Funeral,Sibling Rivalry Scene,tt1321509\nDHzeRLN8UVc,2010.0,3,10,2019,Death at a Funeral,I've Been Drugged! Scene,tt1321509\nrgmKJYrtmkw,2010.0,8,10,2019,Death at a Funeral,Naked on the Roof Scene,tt1321509\naOX72bZr_LA,1999.0,2,10,2019,The Best Man,\"It's Karma, Baby Scene\",tt0168501\nauNkHDpPil4,1999.0,9,10,2019,The Best Man,She's The One Scene,tt0168501\nllTSaDl6Pcg,1999.0,7,10,2019,The Best Man,Love Never Fails Scene,tt0168501\nCTRZgOL-vA0,1999.0,10,10,2019,The Best Man,Best Man Proposal Scene,tt0168501\njs11RqXLkZg,1999.0,8,10,2019,The Best Man,Best Man's Speech Scene,tt0168501\nF0VmzZy-AF4,1999.0,1,10,2019,The Best Man,Lose Control & Get Freaky Scene,tt0168501\ntxybV-1ao_Y,1999.0,4,10,2019,The Best Man,A Kiss To Her Frontal Lobe Scene,tt0168501\ncm1NBLlRxy0,1999.0,3,10,2019,The Best Man,Merry Murch Scene,tt0168501\nxjAHbBY-UUM,1999.0,5,10,2019,The Best Man,Don't Blame Me Scene,tt0168501\nVCJrgPb3y80,1999.0,6,10,2019,The Best Man,She's My Queen Scene,tt0168501\nNQBMjZqgGEI,2011.0,2,10,2019,Jumping the Broom,Strike One Scene,tt1640484\ngeiub8WP_XE,2011.0,1,10,2019,Jumping the Broom,Surprise Proposal Scene,tt1640484\nxhj4CAFsPt0,2011.0,4,10,2019,Jumping the Broom,Strike Two Scene,tt1640484\n24adocMDT_U,2011.0,7,10,2019,Jumping the Broom,Sexual Healing Scene,tt1640484\nKVvqRC018VA,2011.0,9,10,2019,Jumping the Broom,A Family Tradition Scene,tt1640484\nYpa0nma0aSs,2011.0,3,10,2019,Jumping the Broom,Vow of Chastity Scene,tt1640484\ns7ougTo-pGg,2011.0,10,10,2019,Jumping the Broom,The Cupid Shuffle Scene,tt1640484\nfBXXvn4s-74,2011.0,6,10,2019,Jumping the Broom,Prayers & Traditions Scene,tt1640484\nwgkxKdTVrHo,2011.0,8,10,2019,Jumping the Broom,So Tasty Scene,tt1640484\nqnFWCagTOtw,2011.0,5,10,2019,Jumping the Broom,Strike Three Scene,tt1640484\noyU6En9HN8E,1980.0,3,10,2019,Stir Crazy,We're in Prison Scene,tt0081562\nar_o_qS68oA,1980.0,4,10,2019,Stir Crazy,Getting Chow Scene,tt0081562\n-H6l6-_elF0,1980.0,9,10,2019,Stir Crazy,Down in the Valley Scene,tt0081562\nJd3GwwxFDPY,1980.0,6,10,2019,Stir Crazy,New Cellmate Scene,tt0081562\n-FU65KX7aJs,1980.0,2,10,2019,Stir Crazy,Kiss the Baby Scene,tt0081562\nXvnWjkHgWEw,1980.0,7,10,2019,Stir Crazy,Cover Your Jewels Scene,tt0081562\n2vi_VeRSHbM,1980.0,10,10,2019,Stir Crazy,Get the Hell Out of This State Scene,tt0081562\ngDtB0Sr8sbY,1980.0,5,10,2019,Stir Crazy,Your Debt to Society Scene,tt0081562\nhM3nn30NxCE,1980.0,8,10,2019,Stir Crazy,The Secret Word Scene,tt0081562\nV6xx32EGypQ,1980.0,1,10,2019,Stir Crazy,Do You Get Much? Scene,tt0081562\njW2zOdceqr8,1995.0,8,10,2019,Money Train,Blowing Through the Barricade Scene,tt0113845\nV3aM1IFedho,1995.0,3,10,2019,Money Train,Sibling Rivalry Scene,tt0113845\nwTzfJT3zGz0,1995.0,10,10,2019,Money Train,Forty Ton Somersault Scene,tt0113845\nJzmD5wQpm5c,1995.0,4,10,2019,Money Train,Roasted Alive Scene,tt0113845\no6Jkz5TQv84,1995.0,7,10,2019,Money Train,Bleed the Brakes Scene,tt0113845\nr86n2JRUyRc,1995.0,1,10,2019,Money Train,Failed Heist Scene,tt0113845\nl94geYuwNJg,1995.0,6,10,2019,Money Train,Motorcycle vs. Subway Train Scene,tt0113845\nkLjET9nE2dQ,1995.0,5,10,2019,Money Train,Strip Club Beatdown Scene,tt0113845\nCaQWWTLOzhY,1995.0,9,10,2019,Money Train,Brotherly Love Scene,tt0113845\n4GRGY20zWkU,1995.0,2,10,2019,Money Train,Drop Him Scene,tt0113845\np4ylvDhfiQw,2002.0,6,10,2019,I Spy,Car Hopping Scene,tt0297181\nHNPRZ2M3h-M,2002.0,3,10,2019,I Spy,Man of Action Scene,tt0297181\nsJsHcwZsNnI,2002.0,1,10,2019,I Spy,Accidental Avalanche Scene,tt0297181\nEL-Zzx9ZrOw,2002.0,10,10,2019,I Spy,Pseudo-Double Agent Scene,tt0297181\n70tY44WxygM,2002.0,8,10,2019,I Spy,Sexual Healing Scene,tt0297181\nfM3FUot8TCY,2002.0,2,10,2019,I Spy,Let's Go To My Room Scene,tt0297181\nOeknFyEHaMw,2002.0,9,10,2019,I Spy,Double Vision Scene,tt0297181\n574oBJ7SR_8,2002.0,7,10,2019,I Spy,We're Twins Scene,tt0297181\nn0QO2xOuqp0,2002.0,5,10,2019,I Spy,Trolley Chase Scene,tt0297181\nfpwM2-jDwQU,2002.0,4,10,2019,I Spy,This is a Sock Scene,tt0297181\noJITCthevTE,2010.0,7,9,2019,The 7 Adventures of Sinbad,Escaping The Island Scene,tt1636629\n6DxeFNOzuWo,2010.0,2,9,2019,The 7 Adventures of Sinbad,Meeting The Natives Scene,tt1636629\n0PPstocAAAo,2010.0,5,9,2019,The 7 Adventures of Sinbad,Fight Or Die Scene,tt1636629\nDhn_1iKEsQE,2010.0,9,9,2019,The 7 Adventures of Sinbad,Changing The Tide Scene,tt1636629\ni23d4uqAG80,2018.0,8,10,2019,Detective K: Secret of the Living Dead,Carriage Chase Scene,tt7108976\nsbM9An15WNQ,2018.0,3,10,2019,Detective K: Secret of the Living Dead,A Deadly Surprise Scene,tt7108976\nO7s-DtIX_8g,2018.0,5,10,2019,Detective K: Secret of the Living Dead,\"Oldboy, the Vampire Slayer Scene\",tt7108976\n3dJLDhRGBpE,2018.0,9,10,2019,Detective K: Secret of the Living Dead,Vampire Ambush Scene,tt7108976\nBmuWHveTicc,2018.0,4,10,2019,Detective K: Secret of the Living Dead,Daywalker Attack Scene,tt7108976\nte4DfoUHm1s,2018.0,1,10,2019,Detective K: Secret of the Living Dead,Bloody Resurrection Scene,tt7108976\npDzvia9Yuk0,2018.0,7,10,2019,Detective K: Secret of the Living Dead,Regicidal Conspiracy Scene,tt7108976\nANEr1fSCLFw,2018.0,10,10,2019,Detective K: Secret of the Living Dead,Korean Zombies Scene,tt7108976\nL9reo1mJVMg,2018.0,2,10,2019,Detective K: Secret of the Living Dead,The Sword Box Scene,tt7108976\nnogLQrWY-bM,2018.0,6,10,2019,Detective K: Secret of the Living Dead,Vampire Ninja Attack Scene,tt7108976\nSyKWZOEqhzw,2010.0,1,9,2019,The 7 Adventures of Sinbad,A Bad Case Of Crabs Scene,tt1636629\nbPZwO18R-1Q,2010.0,3,9,2019,The 7 Adventures of Sinbad,Dragons Attack! Scene,tt1636629\nIQa9PQO3jhE,2010.0,4,9,2019,The 7 Adventures of Sinbad,Slaying The Cyclops Scene,tt1636629\n9jfaSZXLxGQ,2010.0,6,9,2019,The 7 Adventures of Sinbad,The Devil's Depths Scene,tt1636629\nCl5eAgx8K8Y,2010.0,8,9,2019,The 7 Adventures of Sinbad,Attack Of The Giant Squid Scene,tt1636629\nGJE9jRmD3RE,2016.0,2,8,2019,Sinbad and the War of the Furies,Holy Smackdown Scene,tt6231588\nl753e8ClbPI,2016.0,5,8,2019,Sinbad and the War of the Furies,Magic Carpet Escape Scene,tt6231588\nBL-fRfeQTNc,2016.0,6,8,2019,Sinbad and the War of the Furies,The Gor-Gun Scene,tt6231588\nMXa-QNQ1zfE,2016.0,3,8,2019,Sinbad and the War of the Furies,Sirens' Song Scene,tt6231588\nRe6AZiB6JQM,2016.0,1,8,2019,Sinbad and the War of the Furies,Steal Your Heart Scene,tt6231588\nfKTTAEY4cuo,2016.0,4,8,2019,Sinbad and the War of the Furies,The Legend of Sinbad Scene,tt6231588\ngBRwHB9FSas,2016.0,7,8,2019,Sinbad and the War of the Furies,Ticket to Slamtown Scene,tt6231588\ndYNP7UULtwM,2016.0,8,8,2019,Sinbad and the War of the Furies,The Fate of the Furies Scene,tt6231588\ngTKqZp_fABE,2019.0,10,10,2019,Glass,Mr.  Breaks Scene,tt6823368\nmNCLMfXv7ek,2019.0,7,10,2019,Glass,Water Tank Fight Scene,tt6823368\nc5JH3hyjFcY,2019.0,1,10,2019,Glass,Overseer vs. The Beast Scene,tt6823368\nnoakeL8pCX8,2019.0,3,10,2019,Glass,\"First Name Mister, Last Name  Scene\",tt6823368\nvU1mJ4LF3u0,2019.0,9,10,2019,Glass,The Horde Finds Peace Scene,tt6823368\ni71zp2X4XDw,2019.0,2,10,2019,Glass,We're Not Crazy! Scene,tt6823368\nE9uah5ldjvo,2019.0,8,10,2019,Glass,The Overseer's End Scene,tt6823368\nsw52VLDCFhk,2019.0,5,10,2019,Glass,The Vengeance of Mr.  Scene,tt6823368\naKFriCo_HWE,2019.0,4,10,2019,Glass,'s Escape Scene,tt6823368\nXLi1XYfldbg,2019.0,6,10,2019,Glass,Parking Lot Fight Scene,tt6823368\nR4JJihSXMRU,2010.0,1,10,2019,With Great Power: The Stan Lee Story,The Origin of Stan Lee Scene,tt1091863\nwwHjdOzIloc,2010.0,10,10,2019,With Great Power: The Stan Lee Story,Stan Lee Cameo Scene,tt1091863\nYIfrX-BJbgA,2010.0,6,10,2019,With Great Power: The Stan Lee Story,Steve Ditko & Stan Lee Scene,tt1091863\nTNPMRbIE9k8,2010.0,2,10,2019,With Great Power: The Stan Lee Story,Jack Kirby & Stan Lee Scene,tt1091863\n1zl35F7uPoo,2010.0,4,10,2019,With Great Power: The Stan Lee Story,The Hulk & Spider Man Scene,tt1091863\nQvMf6_foftw,2010.0,3,10,2019,With Great Power: The Stan Lee Story,The Fantastic Four Scene,tt1091863\n4mYsa1t21Mg,2010.0,5,10,2019,With Great Power: The Stan Lee Story,Creating Spider Man Scene,tt1091863\ndbGs2OWRYqM,2010.0,9,10,2019,With Great Power: The Stan Lee Story,Marvel Makes Movies Scene,tt1091863\nfaUJYzpcDec,2010.0,7,10,2019,With Great Power: The Stan Lee Story,Stan the Revolutionary Scene,tt1091863\novmEekx3IcA,2010.0,8,10,2019,With Great Power: The Stan Lee Story,Marvel Productions Scene,tt1091863\nplkfDAtzmjE,2017.0,1,10,2019,The Hero,The Cop Knock Scene,tt7745068\nENEIHMJjims,2017.0,8,10,2019,The Hero,Breaking Down Scene,tt7745068\no2gmatNTH1Y,2017.0,3,10,2019,The Hero,A Thing for Old Guys Scene,tt7745068\n1Igt8Zl7xwM,2017.0,10,10,2019,The Hero,Gently They Go Scene,tt7745068\nThBbbiT_cCU,2017.0,7,10,2019,The Hero,Comedy Routine Scene,tt7745068\nviJsUgnT_HY,2017.0,2,10,2019,The Hero,\"Looking At You, Looking at Me Scene\",tt7745068\niQxa0TuKY-c,2017.0,5,10,2019,The Hero,Grains of Sand Scene,tt7745068\nGwLec89XpYs,2017.0,4,10,2019,The Hero,Fairy Dust Scene,tt7745068\nRF_7uvTh-dI,2017.0,9,10,2019,The Hero,Fix Things Scene,tt7745068\nBN-FwrjSrFA,2017.0,6,10,2019,The Hero,I Don't Want You to Go Scene,tt7745068\n6AE1I5edCfQ,2015.0,8,10,2019,Project Almanac,Timequake Scene,tt2436386\ngK6JyAanVNE,2015.0,6,10,2019,Project Almanac,Backstage at Lollapallooza Scene,tt2436386\nn3tXVrGw3kY,2015.0,2,10,2019,Project Almanac,Groundhog Day This Scene,tt2436386\n0aX79Yt3Bno,2015.0,1,10,2019,Project Almanac,It's Yesterday! Scene,tt2436386\nmS1u_E53e10,2015.0,3,10,2019,Project Almanac,I'm Everywhere B*tch Scene,tt2436386\np4Pq9aZVV9Y,2015.0,4,10,2019,Project Almanac,Winning the Lottery Scene,tt2436386\n4RrAmzAYCQY,2015.0,5,10,2019,Project Almanac,Imagine Dragons Scene,tt2436386\nos1x0te4Waw,2015.0,9,10,2019,Project Almanac,What Did You Change? Scene,tt2436386\nx5Gwzy2FY10,2015.0,7,10,2019,Project Almanac,Did We Have Sex? Scene,tt2436386\n1ZVcZnWu57k,2015.0,10,10,2019,Project Almanac,Say Goodbye to Your Son Scene,tt2436386\niG5M3WSF1DY,1990.0,7,10,2019,Flatliners,Salvation Just Ahead Scene,tt0099582\nkPiMgLB7S7c,1990.0,5,10,2019,Flatliners,Bring Her Back Scene,tt0099582\nyi2YuSALRzs,1990.0,2,10,2019,Flatliners,Clear! Scene,tt0099582\nyMyXgCLhAXk,1990.0,4,10,2019,Flatliners,See You Soon Scene,tt0099582\niXo8qxLvcSs,1990.0,6,10,2019,Flatliners,Let It Go Scene,tt0099582\nR_4_btP862g,1990.0,9,10,2019,Flatliners,We Are All Responsible For This Scene,tt0099582\nlyM65FpQLlM,1990.0,10,10,2019,Flatliners,Nelson Lives Scene,tt0099582\nr76peMNNiyw,1990.0,3,10,2019,Flatliners,The Bully Train Scene,tt0099582\n9uXRIrNj_z4,1990.0,8,10,2019,Flatliners,Flatlining Alone Scene,tt0099582\nwpci2WuWy4E,1990.0,1,10,2019,Flatliners,Flatline Scene,tt0099582\nujFOaYo5QME,1941.0,1,10,2019,Dr. Jekyll and Mr. Hyde,Call It the Soul! Scene,tt0033553\nWGRVxwlEoio,1941.0,10,10,2019,Dr. Jekyll and Mr. Hyde,I've Done Nothing! Scene,tt0033553\n4kmeixKc9yk,1941.0,3,10,2019,Dr. Jekyll and Mr. Hyde,Dr. Jekyll's Transformation Scene,tt0033553\nWmzictYYVj4,1941.0,6,10,2019,Dr. Jekyll and Mr. Hyde,Champagne For Mr. Hyde Scene,tt0033553\nQS3UyqLs5KY,1941.0,9,10,2019,Dr. Jekyll and Mr. Hyde,Are You Ill? Scene,tt0033553\nuabEMv5Sr68,1941.0,2,10,2019,Dr. Jekyll and Mr. Hyde,Oh Doctor! Scene,tt0033553\nbxEqg39v9Ec,1941.0,5,10,2019,Dr. Jekyll and Mr. Hyde,\"Try, Try Anyway Scene\",tt0033553\nt5vDcrQIig0,1941.0,7,10,2019,Dr. Jekyll and Mr. Hyde,The Moment Is Mine! Scene,tt0033553\nYqkDor9GqqE,1941.0,8,10,2019,Dr. Jekyll and Mr. Hyde,Cheap Little Dreams Scene,tt0033553\n3K0KQCvu2Xo,1941.0,4,10,2019,Dr. Jekyll and Mr. Hyde,Can This Be Evil? Scene,tt0033553\nBDvjjQvM498,2000.0,7,10,2019,Vertical Limit,Wick's Revenge Scene,tt0190865\n3IZVz7ukKyU,2000.0,3,10,2019,Vertical Limit,Turbulence & Terror Scene,tt0190865\nD1YHdHw-doQ,2000.0,4,10,2019,Vertical Limit,He's Going to Die Scene,tt0190865\nQ0gx_D--iDw,2000.0,1,10,2019,Vertical Limit,Cut the Rope Scene,tt0190865\nUepHO767tO8,2000.0,5,10,2019,Vertical Limit,Collapsing Ledge Scene,tt0190865\ngH4dw-S1esk,2000.0,2,10,2019,Vertical Limit,Avalanche! Scene,tt0190865\nTMe71Lvy1lA,2000.0,10,10,2019,Vertical Limit,Involuntary Sacrifice Scene,tt0190865\noH-kAHKtbTE,2000.0,8,10,2019,Vertical Limit,Are You Going to Kill Me? Scene,tt0190865\nKfzxu_SIzGo,2000.0,6,10,2019,Vertical Limit,Explosive Avalanche Scene,tt0190865\nUvDzmAFiUj8,2000.0,9,10,2019,Vertical Limit,The Blood Bag Scene,tt0190865\nW7_EwytEz4w,2017.0,2,9,2019,Geo-Disaster,Wake of the Quake Scene,tt7204400\nnLlnq5zJKvo,2017.0,1,9,2019,Geo-Disaster,Hollywood Destroyed Scene,tt7204400\nP0yhCqbwnsU,2017.0,5,9,2019,Geo-Disaster,Minority Report Scene,tt7204400\n1Oxtu2-DlI4,2017.0,4,9,2019,Geo-Disaster,Carjacking in the Canyon Scene,tt7204400\nM8K1rD4PGkI,2017.0,7,9,2019,Geo-Disaster,A Good Time Scene,tt7204400\nEHOt9vYunt8,2017.0,9,9,2019,Geo-Disaster,Escaping Disaster Scene,tt7204400\nUadRg4D-PNI,2017.0,3,9,2019,Geo-Disaster,Aftershock Scene,tt7204400\nqOeIJ8YVJeg,2017.0,6,9,2019,Geo-Disaster,Lightning Storm Scene,tt7204400\nqybKU4uNtV0,2017.0,8,9,2019,Geo-Disaster,Tsunami Chase Scene,tt7204400\nHnhM0M5UzX0,1965.0,1,11,2019,The Greatest Story Ever Told,The Birth of Jesus Christ Scene,tt0059245\nl18i2Kxo8o4,2014.0,5,10,2019,Airplane vs Volcano,In Hot Water Scene,tt3417334\nAupnEJf5ZNw,2014.0,6,10,2019,Airplane vs Volcano,Saying Goodbye Scene,tt3417334\nGRpcj2aG6MI,2014.0,7,10,2019,Airplane vs Volcano,Crieger's Revenge Scene,tt3417334\nFVgkuDNTOa0,2014.0,1,10,2019,Airplane vs Volcano,Into A Burning Ring Of Fire Scene,tt3417334\ndzGkUGKULRI,2014.0,4,10,2019,Airplane vs Volcano,Extreme Weight Loss Scene,tt3417334\nwmm6PIPCg9c,2014.0,2,10,2019,Airplane vs Volcano,Adding Fuel To The Fire Scene,tt3417334\njpeq9SWXrQo,2014.0,3,10,2019,Airplane vs Volcano,Suicide Mission Scene,tt3417334\np1k68Ri9DKg,2014.0,9,10,2019,Airplane vs Volcano,Zipline Rescue Scene,tt3417334\ni7zzhK5XoAI,2014.0,10,10,2019,Airplane vs Volcano,The Ultimate Sacrifice Scene,tt3417334\nigmlE2TDEyw,2014.0,8,10,2019,Airplane vs Volcano,Shooting At The Volcano Scene,tt3417334\n3lQ1fd0hBe0,1965.0,10,11,2019,The Greatest Story Ever Told,Jesus Dies On The Cross Scene,tt0059245\nwyQmO-LFF4M,1965.0,2,11,2019,The Greatest Story Ever Told,John Baptizes Jesus Scene,tt0059245\nMaSm7idHMtI,1965.0,8,11,2019,The Greatest Story Ever Told,The Last Supper Scene,tt0059245\nDIkKczv9Eo4,1965.0,7,11,2019,The Greatest Story Ever Told,Lazarus Rises From the Dead Scene,tt0059245\n1LoGtPIr2-k,1965.0,6,11,2019,The Greatest Story Ever Told,You Are The Messiah Scene,tt0059245\nUWtFueVeqHc,1965.0,3,11,2019,The Greatest Story Ever Told,Jesus Heals Uriah Scene,tt0059245\nW-rC7PEsItw,1965.0,9,11,2019,The Greatest Story Ever Told,Your Will Be Done Scene,tt0059245\nDa02cZG3NDI,1965.0,5,11,2019,The Greatest Story Ever Told,Sermon on the Mount Scene,tt0059245\n4Tb7SrDUXWo,1965.0,11,11,2019,The Greatest Story Ever Told,Jesus Is Resurrected Scene,tt0059245\nepupZLvDDts,1965.0,4,11,2019,The Greatest Story Ever Told,Jesus Defends Mary Magdalene Scene,tt0059245\nsgs4FFD0oH4,2017.0,4,10,2019,It Came From the Desert,Swimsuit Striptease & Drunk Giant Ants Scene,tt4288674\nR8r9iHY2pCw,2017.0,2,10,2019,It Came From the Desert,Ants in the Kitchen Scene,tt4288674\nZCrTaNYTk_M,2017.0,6,10,2019,It Came From the Desert,Alien Ant Farm Scene,tt4288674\nX55PmVk-KvM,2017.0,1,10,2019,It Came From the Desert,The Eradicator Scene,tt4288674\n95jCkyuV0VQ,2017.0,5,10,2019,It Came From the Desert,I Like You! Scene,tt4288674\nFG31-KlqhCI,2017.0,7,10,2019,It Came From the Desert,Say Hello to My Little Friend! Scene,tt4288674\nOunFjTXpbMY,2017.0,10,10,2019,It Came From the Desert,Always Protect Your Beer Scene,tt4288674\nVBpCoOfLlgU,2017.0,3,10,2019,It Came From the Desert,Run and Evade Scene,tt4288674\nkxGdpZ6GCcs,2017.0,8,10,2019,It Came From the Desert,Ants vs. Heavy Artillery Scene,tt4288674\nBL_RaZ6VCgo,2017.0,9,10,2019,It Came From the Desert,Fighting the Alien Queen Ant Scene,tt4288674\nB_JVGEptSOw,2018.0,5,6,2019,Invoking 5,Missed Connection Scene,tt8671462\n-cdk5mhKuWc,2018.0,1,6,2019,Invoking 5,Witness to My Own Murder Scene,tt8671462\nKjbNSIIOEo4,2018.0,6,6,2019,Invoking 5,Dancing Dork Scene,tt8671462\n5CO6DsmrIDw,2018.0,2,6,2019,Invoking 5,Demonic Premonition Scene,tt8671462\nywlNZzvlaKE,2018.0,4,6,2019,Invoking 5,Psychedelic Death Scene,tt8671462\nplu5YA3t2l8,2018.0,3,6,2019,Invoking 5,Cthulhu Is Watching You Scene,tt8671462\nEc2ek8MmHRA,2017.0,5,10,2019,Invoking 4: Halloween Nights,The Captives Revolt Scene,tt7475886\nqv_DJYvELTQ,2017.0,3,10,2019,Invoking 4: Halloween Nights,I Am the Devil Scene,tt7475886\nGP8HnRCjLGg,2017.0,9,10,2019,Invoking 4: Halloween Nights,Mind Blown Scene,tt7475886\n6V22uyjiMpw,2017.0,8,10,2019,Invoking 4: Halloween Nights,Murderous Mime Scene,tt7475886\ntEs0OuspG4w,2017.0,6,10,2019,Invoking 4: Halloween Nights,Hold Your Tongue Scene,tt7475886\nNMbSKSzRvF8,2017.0,7,10,2019,Invoking 4: Halloween Nights,The Silent Killer Scene,tt7475886\n4XK1zU7zhkI,2017.0,10,10,2019,Invoking 4: Halloween Nights,Pantomime Payback Scene,tt7475886\nt09QqjBkg0c,2017.0,4,10,2019,Invoking 4: Halloween Nights,Demon Womb Scene,tt7475886\nsjmh7BViBtg,2017.0,1,10,2019,Invoking 4: Halloween Nights,Bump in the Night Scene,tt7475886\n2-1_64NeG_E,2017.0,2,10,2019,Invoking 4: Halloween Nights,What's in the Closet Scene,tt7475886\nHXmru6NrSAY,1998.0,7,10,2019,The Prince of Egypt,Smiting of the First Born Scene,tt0120794\nZw7lsVV14Yo,1998.0,10,10,2019,The Prince of Egypt,Swept Away Scene,tt0120794\nGJleW4TCQM0,1998.0,6,10,2019,The Prince of Egypt,The 10 Plagues Scene,tt0120794\nTzRrEgkfhG8,1998.0,9,10,2019,The Prince of Egypt,Parting the Red Sea Scene,tt0120794\nNieC8KA0EvI,1998.0,8,10,2019,The Prince of Egypt,When You Believe Scene,tt0120794\npsDtqypK3hI,1998.0,2,10,2019,The Prince of Egypt,All I Ever Wanted Scene,tt0120794\n1-WimijgGEU,1998.0,1,10,2019,The Prince of Egypt,Deliver Us Scene,tt0120794\nsDEWZnPJGRU,1998.0,3,10,2019,The Prince of Egypt,Through Heaven's Eyes Scene,tt0120794\ncLomnZIvoFs,1998.0,4,10,2019,The Prince of Egypt,Playing with the Big Boys Scene,tt0120794\nr5zhPLNGAOE,1998.0,5,10,2019,The Prince of Egypt,The River of Blood Scene,tt0120794\naG8bSNpEGoE,2000.0,8,10,2019,Joseph: King of Dreams,Seven Years of Harvest Scene,tt0264734\nSRy397r355A,2000.0,5,10,2019,Joseph: King of Dreams,Potiphar's Wife Scene,tt0264734\nQWiJ8VQXJzY,2000.0,7,10,2019,Joseph: King of Dreams,Pharaoh's Dreams Scene,tt0264734\n-pq4FpNnvcg,2000.0,10,10,2019,Joseph: King of Dreams,I Am Your Brother Scene,tt0264734\n7wgLb8Ykb24,2000.0,9,10,2019,Joseph: King of Dreams,Joseph's Brothers Return Scene,tt0264734\nVIA2wUCj36Q,2000.0,1,10,2019,Joseph: King of Dreams,The Miracle Child Scene,tt0264734\n7tXcQ8BBqXs,2000.0,3,10,2019,Joseph: King of Dreams,Sold Into Slavery Scene,tt0264734\nvI_kMlvUWDw,2000.0,2,10,2019,Joseph: King of Dreams,Betrayed by His Brothers Scene,tt0264734\nGuAHdW8FdLs,2000.0,6,10,2019,Joseph: King of Dreams,The Dreamseer Scene,tt0264734\nE-Ts3DuFLDg,2000.0,4,10,2019,Joseph: King of Dreams,Enslaved in Egypt Scene,tt0264734\nunWr90pLIvc,1988.0,4,10,2019,The Last Temptation of Christ,The Last Supper Scene,tt0095497\nJyTf7wR8vWI,1988.0,8,10,2019,The Last Temptation of Christ,Guardian Angel at Golgotha Scene,tt0095497\niGRj7rfPdQc,1988.0,10,10,2019,The Last Temptation of Christ,I Want To Be The Messiah! Scene,tt0095497\npXGsio9H1xs,1988.0,5,10,2019,The Last Temptation of Christ,Pontius Pilate Scene,tt0095497\nlZ_r2Q0FQ1A,1988.0,6,10,2019,The Last Temptation of Christ,Crown of Thorns Scene,tt0095497\npoTqVcSgFRE,1988.0,9,10,2019,The Last Temptation of Christ,Paul's False Testimony Scene,tt0095497\nPW20LbwAmng,1988.0,1,10,2019,The Last Temptation of Christ,Tempted by Satan Scene,tt0095497\nLJvCFAHRAFI,1988.0,7,10,2019,The Last Temptation of Christ,The Crucifixion Scene,tt0095497\nCB5qzQrDnZE,1988.0,3,10,2019,The Last Temptation of Christ,The Cleansing of the Temple Scene,tt0095497\nTpNPIxWdZgY,1988.0,2,10,2019,The Last Temptation of Christ,Jesus' Heart Scene,tt0095497\nDTqY1j7wgD4,2016.0,7,10,2019,Silence,The Only Given Sun Scene,tt0490215\nc_ByO08UsWg,2016.0,10,10,2019,Silence,A Buddhist Funeral Scene,tt0490215\nVNI6movTCuQ,2016.0,1,10,2019,Silence,Ferreira's Torture Scene,tt0490215\nEOX8-c-_uVY,2016.0,8,10,2019,Silence,Rodrigues's Step Scene,tt0490215\nukXfvR7wi0U,2016.0,4,10,2019,Silence,Faith Test Scene,tt0490215\nGyM8LvY5RW8,2016.0,3,10,2019,Silence,Crucifixion by the Sea Scene,tt0490215\nt6plGJhbkgM,2016.0,6,10,2019,Silence,Apostatize or Die Scene,tt0490215\nks7pfp1_V-o,2016.0,9,10,2019,Silence,The Apostate Priests Scene,tt0490215\ngDVYKkvkguQ,2016.0,5,10,2019,Silence,Garupe's Death Scene,tt0490215\nSEzrTYKabwI,2016.0,2,10,2019,Silence,Kichijiro's Confession Scene,tt0490215\nQUgviX8jMaY,2016.0,5,7,2019,In the Name of Ben Hur,Adrian's Revenge Scene,tt5582876\nPEg46xyJNPw,2016.0,2,7,2019,In the Name of Ben Hur,Trial By Sword Scene,tt5582876\nMDxkA-Msgdk,2016.0,3,7,2019,In the Name of Ben Hur,My Name Is Judah Ben Hur Scene,tt5582876\nzquC4ky_d6M,2016.0,4,7,2019,In the Name of Ben Hur,Chariots Of Ire Scene,tt5582876\nb4TJqx34ynE,2016.0,6,7,2019,In the Name of Ben Hur,Fighting For His Life Scene,tt5582876\nDq7TcTBsAJI,2016.0,1,7,2019,In the Name of Ben Hur,Don't Start A Fight You Can't Win Scene,tt5582876\nvY9yCPmqbc8,2016.0,7,7,2019,In the Name of Ben Hur,Freeing Ben Hur Scene,tt5582876\noWjtcWh-gyI,2011.0,8,10,2019,Hop,The Easter Chicken Scene,tt1411704\nX0uMMVqQgeY,2011.0,9,10,2019,Hop,Carlos Scene,tt1411704\nWK0fQueuPoI,2011.0,10,10,2019,Hop,Co-Easter Bunnies Scene,tt1411704\nXUyFzVAKCm4,2011.0,5,10,2019,Hop,I Want Candy! Scene,tt1411704\nGSkbcI9F5ec,2011.0,1,10,2019,Hop,Hollywood Hare Scene,tt1411704\nuy4F1IeShVA,2011.0,7,10,2019,Hop,The Pink Berets Scene,tt1411704\nqYZw_tL0j9U,2011.0,6,10,2019,Hop,Easter Bunny Training Scene,tt1411704\nsneQ02FCals,2011.0,4,10,2019,Hop,Playing the Drums Scene,tt1411704\ncbEbCrrgWiA,2011.0,3,10,2019,Hop,Wind-Up Bunny Scene,tt1411704\nXnfiKz-Zk7Y,2011.0,2,10,2019,Hop,Jellybean Poop Scene,tt1411704\nCvLrYbRzjAE,1991.0,10,10,2019,An American Tail: Fievel Goes West,Fighting Like Cats & Dogs Scene,tt0101329\ncglsMVVevx8,1991.0,9,10,2019,An American Tail: Fievel Goes West,Dog Training Scene,tt0101329\nTC41JxKq_xQ,1991.0,3,10,2019,An American Tail: Fievel Goes West,The Dog Chase Scene,tt0101329\nq5eGg_CgBPk,1991.0,8,10,2019,An American Tail: Fievel Goes West,Tanya Performs Scene,tt0101329\nS76Oq-NDyvw,1991.0,4,10,2019,An American Tail: Fievel Goes West,Way Out West Scene,tt0101329\nJWrDT-JGDug,1991.0,1,10,2019,An American Tail: Fievel Goes West,Alley Cat-astrophe Scene,tt0101329\nFLPGiFhKS28,1991.0,2,10,2019,An American Tail: Fievel Goes West,Marionette Mouse Scene,tt0101329\nDRtbf7iG8Nw,1991.0,7,10,2019,An American Tail: Fievel Goes West,Dreams To Dream Scene,tt0101329\nWq8gxNsz9ZQ,1991.0,6,10,2019,An American Tail: Fievel Goes West,In Tiger's Mouth Scene,tt0101329\nc9YJ-KJZKyY,1991.0,5,10,2019,An American Tail: Fievel Goes West,The Flying Aaah! Scene,tt0101329\nF7FEV8M0ZZQ,2017.0,8,9,2019,Super Dark Times,Josh is a Psychopath Scene,tt5112578\nzsiYUAF5Xtc,2017.0,4,9,2019,Super Dark Times,Killer's Kiss Scene,tt5112578\nTuceg816_j4,2017.0,3,9,2019,Super Dark Times,Burying the Body Scene,tt5112578\nTBLYqmHXPk8,2017.0,5,9,2019,Super Dark Times,He Survived Scene,tt5112578\nxlTl5F96ZVo,2017.0,7,9,2019,Super Dark Times,But I Like You Scene,tt5112578\nfxff52VbAa4,2017.0,2,9,2019,Super Dark Times,He Fell On My Sword Scene,tt5112578\naSQrrou9CbU,2017.0,9,9,2019,Super Dark Times,Please Be Alive Scene,tt5112578\nWeMJebErzLY,2017.0,6,9,2019,Super Dark Times,Memories of Murder Scene,tt5112578\ngs6FcpgTCqE,2017.0,1,9,2019,Super Dark Times,Boots on the Ground Scene,tt5112578\nX6zbmAt0YwI,2011.0,10,10,2019,Hugo,Endings and Beginnings Scene,tt0970179\nFuYjhxmpoOQ,2011.0,4,10,2019,Hugo,Where Dreams Are Made Scene,tt0970179\nE-fSwxZNG-0,2011.0,2,10,2019,Hugo,Méliès's Chest Scene,tt0970179\nIqsvjhHv5wo,2011.0,5,10,2019,Hugo,Stuck on the Tracks Scene,tt0970179\nUHaEsAcQQ6k,2011.0,7,10,2019,Hugo,Director of Dreams Scene,tt0970179\npuyN3edOOUY,2011.0,8,10,2019,Hugo,Clocktower Chase Scene,tt0970179\nc-ej3IOxBno,2011.0,9,10,2019,Hugo,A Tribute to Méliès Scene,tt0970179\nXqqckmSFUwo,2011.0,6,10,2019,Hugo,The Last Méliès Film Scene,tt0970179\nvn-PJRh_nFQ,2011.0,3,10,2019,Hugo,The Story of the First Movies Scene,tt0970179\nTSnlLU5k9lU,2011.0,1,10,2019,Hugo,The Metal Marvel Scene,tt0970179\nWCB6zM_9DQU,1983.0,5,12,2019,The Black Stallion Returns,The Black's New Rider Scene,tt0085248\nXlOaSZy_S50,1983.0,8,12,2019,The Black Stallion Returns,You Are The One Rider Scene,tt0085248\nX2YJECANG6A,1983.0,9,12,2019,The Black Stallion Returns,The Race Begins Scene,tt0085248\nrcIfzdLjjxU,1983.0,4,12,2019,The Black Stallion Returns,I Want To Be Your Guest Scene,tt0085248\nNBxg8a4TAng,1983.0,12,12,2019,The Black Stallion Returns,He Belongs Here Scene,tt0085248\nIXl4S2_5sX4,1983.0,10,12,2019,The Black Stallion Returns,Chased Down Scene,tt0085248\n1eP7huR6T3U,1983.0,6,12,2019,The Black Stallion Returns,Helping Tabari Scene,tt0085248\nqDjmN1TyJAU,1983.0,3,12,2019,The Black Stallion Returns,Return To Your People Scene,tt0085248\nhSBoEivF-hk,1983.0,7,12,2019,The Black Stallion Returns,The Black To The Rescue Scene,tt0085248\nqrIt5BPvCv8,1983.0,2,12,2019,The Black Stallion Returns,Alec Meets Raj Scene,tt0085248\ndJsuwhIpSDQ,1983.0,11,12,2019,The Black Stallion Returns,Winning The Race Scene,tt0085248\n1gj7X8C31Tg,1983.0,1,12,2019,The Black Stallion Returns,Taking The Black Scene,tt0085248\n6JIY7mRvsRE,1987.0,12,12,2019,Snow White,Wakes Up Scene,tt0093999\nSf47YRUStx8,1987.0,10,12,2019,Snow White,Evil Geisha Scene,tt0093999\nCRu7V9v8Nnk,1987.0,2,12,2019,Snow White,Let It Snow Scene,tt0093999\nb0p7_jQ8HiE,1987.0,7,12,2019,Snow White,The Bed Song Scene,tt0093999\n-mexzYsMSro,1987.0,3,12,2019,Snow White,The Good Queen Dies Scene,tt0093999\nt9XjAhGr8us,1987.0,9,12,2019,Snow White,Every Day Scene,tt0093999\nriSEerXD6nE,1987.0,11,12,2019,Snow White,Poison Apple Scene,tt0093999\n2-L4tBlUJos,1987.0,1,12,2019,Snow White,A True Princess Scene,tt0093999\nZauzaj2bpvM,1987.0,4,12,2019,Snow White,Daddy's Knee Scene,tt0093999\nJJwp_lEoOuI,1987.0,6,12,2019,Snow White,More Beautiful Than Me Scene,tt0093999\ngnbjy2tWfd4,1987.0,8,12,2019,Snow White,The Seven Dwarfs' Song Scene,tt0093999\n8xorDb45ajE,1987.0,5,12,2019,Snow White,Mirror Mirror Scene,tt0093999\n2T51K4xsBjg,2018.0,10,10,2019,A Dog's Way Home,Standing Up to the Dogcatcher Scene,tt7616798\nhcWY1CYRCsw,2018.0,8,10,2019,A Dog's Way Home,Hit by a Car Scene,tt7616798\nr3_IvtMPIi4,2018.0,1,10,2019,A Dog's Way Home,\"Goodbye, Bella Scene\",tt7616798\nmZYTLYXT-CQ,2018.0,6,10,2019,A Dog's Way Home,A Homeless Dog Scene,tt7616798\n87IqS4kQqgE,2018.0,2,10,2019,A Dog's Way Home,Big Kitten Scene,tt7616798\nYfKjUgN_RcY,2018.0,5,10,2019,A Dog's Way Home,The Avalanche Scene,tt7616798\nVqZAfqVCEnk,2018.0,4,10,2019,A Dog's Way Home,Fun in the Snow Scene,tt7616798\nM47Aq3yj_NQ,2018.0,9,10,2019,A Dog's Way Home,Finding Her Human Scene,tt7616798\n5XQqslDEoeI,2018.0,7,10,2019,A Dog's Way Home,Big Kitten Returns Scene,tt7616798\nTe32eYR3jo4,2018.0,3,10,2019,A Dog's Way Home,Hunted by Coyotes Scene,tt7616798\ndfoGRpHc4qA,2016.0,5,10,2019,A Street Cat Named Bob,Bob's First Day Scene,tt3606888\nQ1CJv_8XbmU,2016.0,6,10,2019,A Street Cat Named Bob,New Year's with Bob Scene,tt3606888\nPBMH9WdsHDc,2016.0,3,10,2019,A Street Cat Named Bob,Giving a Cat Medicine Scene,tt3606888\nGpMfzrGJvZY,2016.0,8,10,2019,A Street Cat Named Bob,Back on the Streets Scene,tt3606888\nN0V-2VgCwxk,2016.0,10,10,2019,A Street Cat Named Bob,I Never Gave Up On You Scene,tt3606888\nLn55e0EyX6E,2016.0,7,10,2019,A Street Cat Named Bob,You're an Addict Scene,tt3606888\nGfpVMjrhYQg,2016.0,4,10,2019,A Street Cat Named Bob,He Loves You Scene,tt3606888\nZCTCHQWhYCA,2016.0,2,10,2019,A Street Cat Named Bob,His Name Is Bob Scene,tt3606888\nGHKfMt_4V7U,2016.0,9,10,2019,A Street Cat Named Bob,Fighting Through Withdrawal Scene,tt3606888\nDyo5g-ozH2c,2016.0,1,10,2019,A Street Cat Named Bob,Home Intruder Scene,tt3606888\nES496lmmGcM,1992.0,8,10,2019,Beethoven,Where's My Dog? Scene,tt0103786\nAyYlJ6YQp3I,1992.0,2,10,2019,Beethoven,Naming  Scene,tt0103786\n7bFIUJ_voCs,1992.0,10,10,2019,Beethoven,Puppy Payback Scene,tt0103786\nRWYM4Npp9rI,1992.0,9,10,2019,Beethoven,Saves the Day Scene,tt0103786\nYG-plVmM7O4,1992.0,7,10,2019,Beethoven,Framing  Scene,tt0103786\nzDQHwzF1n4U,1992.0,3,10,2019,Beethoven,\"Big Puppy, Big Dog Scene\",tt0103786\nJcAdeY9KlpE,1992.0,6,10,2019,Beethoven,Leash Training Scene,tt0103786\n85A2rWA5O3o,1992.0,1,10,2019,Beethoven,The New Puppy Scene,tt0103786\ngCE5175IkoY,1992.0,5,10,2019,Beethoven,Drowning Rescue Scene,tt0103786\nWsgkiKu7AO8,1992.0,4,10,2019,Beethoven,In Bed Scene,tt0103786\nPWz21cujw28,2018.0,2,10,2019,Boy Erased,A Fateful Phone Call Scene,tt7008872\nvlK8CMKzWUY,2018.0,1,10,2019,Boy Erased,A Manly Shape Scene,tt7008872\nY2ZU8ZjyzoA,2018.0,6,10,2019,Boy Erased,Play The Part Scene,tt7008872\n_X6dHrTceEE,2018.0,7,10,2019,Boy Erased,Mental Torture Scene,tt7008872\n8VZctic_uTI,2018.0,10,10,2019,Boy Erased,I'm Not Going to Change Scene,tt7008872\nPLOSA5L0dxE,2018.0,5,10,2019,Boy Erased,There's More To The Story Scene,tt7008872\nMkkd7taPqEY,2018.0,4,10,2019,Boy Erased,Gay Blood Test Scene,tt7008872\nMOLAFbjjOl0,2018.0,9,10,2019,Boy Erased,Trapped In The Camp Scene,tt7008872\nSbP_EGRp9Kw,2018.0,3,10,2019,Boy Erased,Jared Comes Out Scene,tt7008872\ng511NYTRiOE,2018.0,8,10,2019,Boy Erased,I'm Not Angry! Scene,tt7008872\nOVCIGGHelu0,2017.0,9,9,2019,And Then I Go,Saying Goodbye To Gus Scene,tt2018111\naUSko3Om3sI,2017.0,6,9,2019,And Then I Go,Bully Begets Bully Scene,tt2018111\nQ7qNk9dKVpE,2017.0,4,9,2019,And Then I Go,Meeting With Principal Scene,tt2018111\nfr_ciJPUO1k,2017.0,8,9,2019,And Then I Go,Crying Under the Bed Scene,tt2018111\nneH8cVDLuac,2017.0,1,9,2019,And Then I Go,Soccer Field Bully Scene,tt2018111\nymoeXOQLtGY,2017.0,5,9,2019,And Then I Go,A Hard Time Scene,tt2018111\nvppCnOOwS_4,2017.0,2,9,2019,And Then I Go,I'm Not Playing Scene,tt2018111\nszqlpf28SRM,2017.0,7,9,2019,And Then I Go,Pick On Someone Your Own Size Scene,tt2018111\n2WF0XgWQles,2017.0,3,9,2019,And Then I Go,Planning The Act Scene,tt2018111\ncnM9pdjp5o4,2012.0,6,10,2019,The Dictator,The Vegan Jihad Scene,tt1645170\n7C-aB09i30E,2012.0,1,10,2019,The Dictator,The Aladeen Law Scene,tt1645170\nvV30irsal-w,2012.0,3,10,2019,The Dictator,Nuclear Nadal Scene,tt1645170\nBT_QpciXdcI,2012.0,5,10,2019,The Dictator,Death to Aladeen Scene,tt1645170\nGC8KstVPxPM,2012.0,9,10,2019,The Dictator,Delivering Love Scene,tt1645170\nsWqTiz8caoM,2012.0,2,10,2019,The Dictator,Seducing Megan Fox Scene,tt1645170\n0GEynXlmNYA,2012.0,4,10,2019,The Dictator,You're Making a Fool Out of Me! Scene,tt1645170\niN0ZnG7yo6o,2012.0,8,10,2019,The Dictator,You Need to Touch Yourself Scene,tt1645170\nhqslb1FVoQQ,2012.0,10,10,2019,The Dictator,A Snag on the Zipline Scene,tt1645170\nyWeMWD-Yagg,2012.0,7,10,2019,The Dictator,The Helicopter Scene,tt1645170\nRYP_NSi9g3Y,2016.0,9,10,2019,Whiskey Tango Foxtrot,The Rescue Mission Scene,tt3553442\n-dWENMR2aag,2016.0,4,10,2019,Whiskey Tango Foxtrot,Chinese Brothel and Karaoke Scene,tt3553442\nWPggG_9I20E,2016.0,3,10,2019,Whiskey Tango Foxtrot,I Bet You're Wet Scene,tt3553442\nM4fuweiQQCA,2016.0,7,10,2019,Whiskey Tango Foxtrot,\"Right Place, Wrong Strike Scene\",tt3553442\n801rBxBY-5w,2016.0,2,10,2019,Whiskey Tango Foxtrot,Javelin Scene,tt3553442\n8kzZwPsHkfo,2016.0,1,10,2019,Whiskey Tango Foxtrot,Kabul Cute Scene,tt3553442\nrFbe4I4SXGg,2016.0,6,10,2019,Whiskey Tango Foxtrot,A Kabubble Thing Scene,tt3553442\ny6uK9wxhl_w,2016.0,10,10,2019,Whiskey Tango Foxtrot,Journalistic Fault Scene,tt3553442\nsT7Xef0oYLU,2016.0,8,10,2019,Whiskey Tango Foxtrot,We Have to Make Good Calls Scene,tt3553442\nSiY9kPYOZuM,2016.0,5,10,2019,Whiskey Tango Foxtrot,Desert Heat Scene,tt3553442\nIXep9SfBhrg,2016.0,10,10,2019,I Was a Teenage Wereskunk,Skunks in Heat Scene,tt4225696\ncslI2draO_E,2016.0,1,10,2019,I Was a Teenage Wereskunk,Make Out Point Scene,tt4225696\n-ZRSgs6PHaY,2016.0,8,10,2019,I Was a Teenage Wereskunk,\"Clowns, Robots and Wereskunks Scene\",tt4225696\nHNV5ksTBzLk,2016.0,3,10,2019,I Was a Teenage Wereskunk,The Heartthrob Doctor Scene,tt4225696\ngWHvF157sFI,2016.0,5,10,2019,I Was a Teenage Wereskunk,Undressed in a Public Place Scene,tt4225696\nrglfoXHFty8,2016.0,9,10,2019,I Was a Teenage Wereskunk,Clown vs. Wereskunk Scene,tt4225696\nULu38sbUDdA,2016.0,4,10,2019,I Was a Teenage Wereskunk,Swimsuit Massacre Scene,tt4225696\nqwblOHgiG5E,2016.0,7,10,2019,I Was a Teenage Wereskunk,Don't Think Sexy Thoughts! Scene,tt4225696\n_-9wCERdcog,2016.0,6,10,2019,I Was a Teenage Wereskunk,I Could Show You! Scene,tt4225696\nJIMykDzqRbY,2016.0,2,10,2019,I Was a Teenage Wereskunk,The Smell of Love Scene,tt4225696\n7F1OGZeeva4,2017.0,6,10,2019,Kung Fu Yoga,Bazaar Brawl Scene,tt4217392\nNiQGOyewakw,2017.0,5,10,2019,Kung Fu Yoga,Lion Car Chase Scene,tt4217392\nHh823sEeCL8,2017.0,1,10,2019,Kung Fu Yoga,India vs. China Scene,tt4217392\nT6GiDpoGg0k,2017.0,4,10,2019,Kung Fu Yoga,Diamond Dogs Scene,tt4217392\nM1J7yqXNItw,2017.0,8,10,2019,Kung Fu Yoga,Deadly Cobras Scene,tt4217392\nV-uaIme1eqw,2017.0,2,10,2019,Kung Fu Yoga,Yoga and Brunch Scene,tt4217392\nW2UAnJuDL0A,2017.0,7,10,2019,Kung Fu Yoga,The Hyena Pit Scene,tt4217392\nVk2MgC2loOo,2017.0,9,10,2019,Kung Fu Yoga,The Fight for Shiva Scene,tt4217392\nTF2BDWsAg2U,2017.0,3,10,2019,Kung Fu Yoga,Fighting for the Treasure Scene,tt4217392\n9xp2WW4VPnI,2017.0,10,10,2019,Kung Fu Yoga,Bollywood Meets China Scene,tt4217392\njL_AtO4yMio,2014.0,10,10,2019,Kung Fu Elliot,Caught Cheating Scene,tt3228302\nCo6hnyHm9FU,2014.0,6,10,2019,Kung Fu Elliot,Fighting Shaolin Monks Scene,tt3228302\njatrkHMHR5s,2014.0,7,10,2019,Kung Fu Elliot,Kung Fu Boob Grip Scene,tt3228302\nzg0bUxwdano,2014.0,2,10,2019,Kung Fu Elliot,Small Time Actor Scene,tt3228302\nVBOg6u6zNUI,2014.0,4,10,2019,Kung Fu Elliot,A Big Actor from Canada Scene,tt3228302\ntCDK-8hzqYI,2014.0,8,10,2019,Kung Fu Elliot,He Lied About Everything Scene,tt3228302\nmxIe3BjQYq4,2014.0,3,10,2019,Kung Fu Elliot,Grandpa Metal Scene,tt3228302\nByIEbq6tv6g,2014.0,5,10,2019,Kung Fu Elliot,After Hours Massage Scene,tt3228302\nNggy-DIaf-0,2014.0,9,10,2019,Kung Fu Elliot,XXX Action Star Scene,tt3228302\nYLhHH7GXdkw,2014.0,1,10,2019,Kung Fu Elliot,You Killed My Cat Scene,tt3228302\nYRDc9SZWuE4,2013.0,1,7,2019,Barrio Brawler,There Are No Rules! Scene,tt2839312\nrCRl3aaJEdI,2013.0,7,7,2019,Barrio Brawler,Gunning Down A Gangster Scene,tt2839312\nZc61Xb1A3R8,2013.0,6,7,2019,Barrio Brawler,Grappling With A Gang Scene,tt2839312\ncqJitdI6d24,2013.0,3,7,2019,Barrio Brawler,Is That Guy Dead? Scene,tt2839312\ncH8ebYzr5f4,2013.0,2,7,2019,Barrio Brawler,First Round Knockout Scene,tt2839312\n6_BnBOUwAPo,2013.0,4,7,2019,Barrio Brawler,Finish Him! Scene,tt2839312\nx_3EEWK-YQc,2013.0,5,7,2019,Barrio Brawler,Bad Break Scene,tt2839312\nbDW3OVitFE8,2018.0,2,10,2019,White Boy Rick,Not Saying Nothing Scene,tt4537896\n5gOfKFlEJvo,2018.0,5,10,2019,White Boy Rick,Rick Gets Shot Scene,tt4537896\n-JhNO_E3aEE,2018.0,6,10,2019,White Boy Rick,You A Granddaddy Scene,tt4537896\n-FQOaUEE69I,2018.0,3,10,2019,White Boy Rick,Turning Snitch Scene,tt4537896\nxqeAW5qAHNQ,2018.0,9,10,2019,White Boy Rick,You Took A Life! Scene,tt4537896\nZD9DyYVR3BI,2018.0,4,10,2019,White Boy Rick,The Diner Scene,tt4537896\nQ9Vl1VGj0LE,2018.0,7,10,2019,White Boy Rick,Personality Crash Scene,tt4537896\nL3gtPb6y2xg,2018.0,8,10,2019,White Boy Rick,Rick Gets Arrested Scene,tt4537896\na-CS6CjnEw8,2018.0,10,10,2019,White Boy Rick,We Are Lions! Scene,tt4537896\nkgwjR-pQ29o,2018.0,1,10,2019,White Boy Rick,We're Going for Custard Scene,tt4537896\nxc_90HgCenY,2012.0,9,10,2019,Drug War,The Last Stand Scene,tt2165735\nRS01myY24NA,2012.0,1,10,2019,Drug War,Something's Wrong Scene,tt2165735\nYUF1PIe1RVY,2012.0,5,10,2019,Drug War,Who's Laughing Now? Scene,tt2165735\nnsDjpgWu8F0,2012.0,10,10,2019,Drug War,Death Sentence Scene,tt2165735\ns37owQJdelU,2012.0,7,10,2019,Drug War,They're All Cops Scene,tt2165735\nwuRzu_xHPa4,2012.0,8,10,2019,Drug War,Shots Across The Bow Scene,tt2165735\nF2GgBAXj69U,2012.0,4,10,2019,Drug War,Zhang Overdoses Scene,tt2165735\nPFG8nJ4gwvo,2012.0,3,10,2019,Drug War,It's Bad For Your Brain Scene,tt2165735\nGdMQOwEnATM,2012.0,6,10,2019,Drug War,Mute Bros. Melee Scene,tt2165735\nGgASWe5c8kE,2012.0,2,10,2019,Drug War,Fake Uncle Scene,tt2165735\nQB9AY9Em4To,2018.0,9,10,2019,The Girl in the Spider's Web,X-Ray Sniper Scene,tt5177088\n1J3WNRR4O60,2018.0,1,10,2019,Holmes & Watson,Kissing Ass Scene,tt1255919\na_DkEkfAO4s,2018.0,3,10,2019,Holmes & Watson,The Defendant Is a Wanker Scene,tt1255919\n0WRtWiz_Xvg,2018.0,5,10,2019,Holmes & Watson,Morgue Love Scene,tt1255919\nIhkrc6Srv0Y,2018.0,9,10,2019,Holmes & Watson,Selfie With the Queen Scene,tt1255919\nze8D_5hdmTE,2018.0,10,10,2019,Holmes & Watson,Watson Saves the Day Scene,tt1255919\nq928Wa_h_gg,2018.0,2,10,2019,Holmes & Watson,Not The Bees! Scene,tt1255919\niv_Q51lofKM,2018.0,6,10,2019,Holmes & Watson,I Poisoned You Scene,tt1255919\n8D7EY0zKevM,2018.0,7,10,2019,Holmes & Watson,Drunken Hijinks Scene,tt1255919\nwVFNjHAnpcI,2018.0,8,10,2019,Holmes & Watson,The First Drunk Text Scene,tt1255919\nQjZUS2455z8,2018.0,4,10,2019,Holmes & Watson,Sick Bucket Scene,tt1255919\now3Pf0LSXwc,2018.0,6,10,2019,The Girl in the Spider's Web,Toying with Security Scene,tt5177088\nuckdiNJ10LE,2018.0,4,10,2019,The Girl in the Spider's Web,Forced to Kill Scene,tt5177088\nATid397QdsY,2018.0,5,10,2019,The Girl in the Spider's Web,Car vs. Hacker Scene,tt5177088\ng_fIDwoORl4,2018.0,10,10,2019,The Girl in the Spider's Web,Why Did You Help Everyone But Me? Scene,tt5177088\nsOHoeZYeAeM,2018.0,1,10,2019,The Girl in the Spider's Web,Abuse Avenger Scene,tt5177088\nYr1quUpD0Y0,2018.0,7,10,2019,The Girl in the Spider's Web,Gassed and Thrashed Scene,tt5177088\nk8Vn9zLollY,2018.0,2,10,2019,The Girl in the Spider's Web,Water for Fire Scene,tt5177088\n6QfunXjWCpc,2018.0,3,10,2019,The Girl in the Spider's Web,On Thin Ice Scene,tt5177088\nCMfYaFpa3nY,2018.0,8,10,2019,The Girl in the Spider's Web,Black Latex Torture Scene,tt5177088\nMBgPSe_p1fk,2017.0,8,10,2019,The Snowman,Seduction Gone Wrong Scene,tt1758810\nC_fhEQGp9Hw,2017.0,5,10,2019,The Snowman,A Staged Suicide Scene,tt1758810\n1TX6svl0Qjc,2017.0,6,10,2019,The Snowman,A Familiar Murder Scene Scene,tt1758810\ncGDwEP-RWHo,2017.0,9,10,2019,The Snowman,A Killer Question Scene,tt1758810\nQxrBZStJOGk,2017.0,4,10,2019,The Snowman,A Visit to the Doctor Scene,tt1758810\nK6Kkwi0nfHg,2017.0,3,10,2019,The Snowman,The Snow Woman Scene,tt1758810\nOiJ8mt6Nn5s,2017.0,10,10,2019,The Snowman,Falls Scene,tt1758810\nLJgqSSZpdns,2017.0,1,10,2019,The Snowman,The Birth of a Killer Scene,tt1758810\nyV5w71aImSo,2017.0,7,10,2019,The Snowman,Sleeping with the Ex Scene,tt1758810\n4ZCtygwf67Y,2017.0,2,10,2019,The Snowman,A Missing Person Scene,tt1758810\nSj3sHAe1bAY,2011.0,5,9,2019,Barely Legal,Pushing Her Buttons Scene,tt1912996\niTH2RpdXTBA,2011.0,2,9,2019,Barely Legal,Their Steamiest Fantasies Scene,tt1912996\n1a3iljVEif4,2011.0,7,9,2019,Barely Legal,Getting Hot in the Weight Room Scene,tt1912996\nb_kHujzG_w0,2011.0,9,9,2019,Barely Legal,Getting On and Getting Off Scene,tt1912996\nKMcBrs0aWbo,2011.0,6,9,2019,Barely Legal,Powerful Pleasure Scene,tt1912996\nMEYupVDPDRE,2011.0,8,9,2019,Barely Legal,Revenge Hookup Scene,tt1912996\nqrd5QtOa6O4,2011.0,1,9,2019,Barely Legal,\"A Dirty, Dirty Priest Scene\",tt1912996\n8zdNf9EtW-A,2011.0,3,9,2019,Barely Legal,All Wrapped Up with Nowhere to Go Scene,tt1912996\nJYymQ87_t8o,2011.0,4,9,2019,Barely Legal,Deep Searching in the Closet Scene,tt1912996\n5LdmmsMZU-I,2014.0,8,10,2019,Killers,The Killer of My Family Scene,tt4504438\ng1bhGNv0Ei4,2014.0,4,10,2019,Killers,Bloody Revenge Scene,tt4504438\n4OyCzhF1A8s,2014.0,6,10,2019,Killers,I Thought You Understood Me Scene,tt4504438\n7d4Sd1W25xs,2014.0,1,10,2019,Killers,Let's Finish This Scene,tt4504438\n-jYZCqfUfVU,2014.0,3,10,2019,Killers,Vigilante Rising Scene,tt4504438\nMVxXoBHtBfs,2014.0,9,10,2019,Killers,It's Just Us Now Scene,tt4504438\nyRpnEq9A3vo,2014.0,5,10,2019,Killers,Trapped in the Hotel Scene,tt4504438\ncSjzA3Wl6hY,2014.0,2,10,2019,Killers,This is Jakarta Scene,tt4504438\nTllGibabkYg,2014.0,10,10,2019,Killers,Now You See Scene,tt4504438\nNTne-1oUAZU,2014.0,7,10,2019,Killers,She Didn't Make It Scene,tt4504438\nLv41GcKWfJg,2018.0,1,10,2019,The Front Runner,This is Beneath You Scene,tt7074886\nbTJAIONGv0Y,2018.0,8,10,2019,The Front Runner,Have You Ever Committed Adultery? Scene,tt7074886\nsdkgpg4Plxo,2018.0,3,10,2019,The Front Runner,Feel Stupid for a While Scene,tt7074886\nh5OjSHDUn8c,2018.0,6,10,2019,The Front Runner,Too Much Time With an Unmarried Woman Scene,tt7074886\nr3BS4jKjRkc,2018.0,7,10,2019,The Front Runner,Can You Ever Forgive Me? Scene,tt7074886\ncE2bc0vU9pg,2018.0,10,10,2019,The Front Runner,Hunters and the Hunted Scene,tt7074886\nZCdhsYpdRck,2018.0,4,10,2019,The Front Runner,The Other Woman Scene,tt7074886\nE1u3lo2EsMg,2018.0,2,10,2019,The Front Runner,Ambushed in the Alley Scene,tt7074886\n7AnDGdVit4w,2018.0,9,10,2019,The Front Runner,It's Time to Go Home Scene,tt7074886\n0qkVyahL10U,2018.0,5,10,2019,The Front Runner,It's Not Going to Blow Over Scene,tt7074886\nx24Olya2NLk,2018.0,3,10,2019,Aquaman,The Ring of Fire Scene,tt1477834\n5Fa3enGmEfA,2018.0,2,10,2019,Aquaman,Sunken Ship Battle Scene,tt1477834\n44MohOiWwnA,2018.0,5,10,2019,Aquaman,Black Manta's Revenge Scene,tt1477834\n0y5KiKKCD7A,2018.0,8,10,2019,Aquaman,The One True King Scene,tt1477834\nnF74obZFKp8,2018.0,4,10,2019,Aquaman,Escape from Atlantis Scene,tt1477834\n00QMS3Ldb20,2018.0,10,10,2019,Aquaman,vs. King Orm Scene,tt1477834\n8Q0KYSXhKMU,2018.0,7,10,2019,Aquaman,The Trench Attacks Scene,tt1477834\nob2QomOgStQ,2018.0,6,10,2019,Aquaman,Mera's Rooftop Chase Scene,tt1477834\nZeg6dl4L60M,2018.0,1,10,2019,Aquaman,Black Manta Submarine Fight Scene,tt1477834\nvEWPq-4sa3w,2018.0,9,10,2019,Aquaman,War for the Seas Scene,tt1477834\nxAlCbE-yCTw,2015.0,4,10,2019,The Big Short,I Want My Money Back Scene,tt1596363\n1RwwTgTVnJs,2015.0,6,10,2019,The Big Short,Risky Assessors Scene,tt1596363\n1Rhs3PVAP4o,2015.0,1,10,2019,The Big Short,Margot Robbie in a Bubble Bath Scene,tt1596363\nMfu_iFS-UY8,2015.0,5,10,2019,The Big Short,The Firm Investigates Florida Scene,tt1596363\nOpCXQJyiXQ8,2015.0,2,10,2019,The Big Short,Betting Against the Housing Market Scene,tt1596363\ntjRgzcM2HoU,2015.0,3,10,2019,The Big Short,The Jenga Pitch Scene,tt1596363\nWgxNguNEMpE,2015.0,10,10,2019,The Big Short,Fraud Never Works Scene,tt1596363\n0X0-NpZpx6U,2015.0,7,10,2019,The Big Short,The CDO Manager & Mark Baum Scene,tt1596363\nPxr_FzpPM2Q,2015.0,8,10,2019,The Big Short,Selena Gomez Teaches CDOs Scene,tt1596363\nHudtZNmmVwo,2015.0,9,10,2019,The Big Short,Cashing Out Scene,tt1596363\n0quxzV2i_gQ,2017.0,4,10,2019,Lady Bird,Teens in Love Scene,tt4925292\naG3Oc5TNd-Y,2017.0,2,10,2019,Lady Bird,First Heartbreak Scene,tt4925292\nKtwPWWCJHAE,2017.0,8,10,2019,Lady Bird,Crash Into Prom Scene,tt4925292\n836TMubeCfo,2017.0,9,10,2019,Lady Bird,Leaving It All Behind Scene,tt4925292\nDL-fT3OymQI,2017.0,10,10,2019,Lady Bird,College Kinda Sucks Scene,tt4925292\n4HgHU5fVqbI,2017.0,7,10,2019,Lady Bird,I'm Ready Scene,tt4925292\n3Avu3KdHGdo,2017.0,5,10,2019,Lady Bird,Friends Turn Enemies Scene,tt4925292\ntF3eceBqcik,2017.0,3,10,2019,Lady Bird,Plays for a Play Scene,tt4925292\nmpDGnFwbw0U,2017.0,1,10,2019,Lady Bird,Call Me  Scene,tt4925292\nkoZie6TLz3s,2017.0,6,10,2019,Lady Bird,The Abortion Seminar Scene,tt4925292\nR_moIp38Fk8,2012.0,8,10,2019,Fun Size,Trick or Treat Scene,tt1663143\npVB70-zPv5E,2012.0,5,10,2019,Fun Size,Halloween Rave Scene,tt1663143\n-ON8ZTCiuYo,2012.0,7,10,2019,Fun Size,She's a Handful Scene,tt1663143\nGOwehDo9xYQ,2012.0,4,10,2019,Fun Size,Chicken Mishap Scene,tt1663143\njo-aQkgNMKQ,2012.0,2,10,2019,Fun Size,A Sensitive Kitty Scene,tt1663143\nmyZDn8fFRLY,2012.0,10,10,2019,Fun Size,The Mixtape of Doom Scene,tt1663143\nqLCy66eZrQs,2012.0,1,10,2019,Fun Size,Your Malicious Neighborhood Spider Man Scene,tt1663143\n-1eKufUP5XQ,2012.0,9,10,2019,Fun Size,Now I Can Do This Scene,tt1663143\nFPYjy-ZWB-c,2012.0,6,10,2019,Fun Size,Poop Goes Boom Scene,tt1663143\nC5lMZZxrewE,2012.0,3,10,2019,Fun Size,Toilet Paper Disaster Scene,tt1663143\nrNxqb6KMtkg,2015.0,2,8,2019,Freaks of Nature,Breakups Suck Scene,tt1817771\nKLDQLqzbrPE,2015.0,3,8,2019,Freaks of Nature,Are We Going to Do This or What? Scene,tt1817771\nGlP6emuR3z8,2015.0,8,8,2019,Freaks of Nature,Werewolf vs. Vampire Scene,tt1817771\nNgAjrtEmWxI,2015.0,7,8,2019,Freaks of Nature,They're Twice the Size Now Scene,tt1817771\nde1vEYiEMro,2015.0,4,8,2019,Freaks of Nature,Vampire Fight Scene,tt1817771\n7AajEaNH7g4,2015.0,1,8,2019,Freaks of Nature,\"If It Doesn't Get Better, Kill Yourself Scene\",tt1817771\nMUeKujlb6gc,2015.0,6,8,2019,Freaks of Nature,The Virgin and the Vampire Scene,tt1817771\nPI8G4wCa8m4,2015.0,5,8,2019,Freaks of Nature,It's Not Hard to Be a Zombie Scene,tt1817771\ngs0WQmW1icQ,2018.0,5,8,2019,The Possession of Hannah Grace,Invasion of the Body Snatcher Scene,tt5734576\n__bdFiweOJY,2018.0,1,8,2019,The Possession of Hannah Grace,Your Whore Daughter Is Mine! Scene,tt5734576\nC3TAMx8Gqro,2018.0,6,8,2019,The Possession of Hannah Grace,Fatal Flashback Scene,tt5734576\nzGXxYW_Zisk,2018.0,7,8,2019,The Possession of Hannah Grace,Demon Caught on Camera Scene,tt5734576\nB5uw3qZ04NY,2018.0,3,8,2019,The Possession of Hannah Grace,My Daughter Is the Devil Scene,tt5734576\nVDCoR_PxceY,2018.0,8,8,2019,The Possession of Hannah Grace,Trapped in the Morgue Scene,tt5734576\nNInjsGq2yCA,2018.0,2,8,2019,The Possession of Hannah Grace,The Exorcism Scene,tt5734576\nf6Dan7z0p4c,2018.0,4,8,2019,The Possession of Hannah Grace,Morgue of Murder Scene,tt5734576\nYvoy77W0Ofg,2016.0,8,10,2019,Buster's Mal Heart,Kidnapped Christmas Dinner Scene,tt5173032\nPyK__VjhdEE,2016.0,9,10,2019,Buster's Mal Heart,That Was Buster Scene,tt5173032\n0g32SegeaTw,2016.0,4,10,2019,Buster's Mal Heart,The End is Coming Scene,tt5173032\n6WKFs4PhRkA,2016.0,7,10,2019,Buster's Mal Heart,Hotel Horror Scene,tt5173032\noH5Dww7Umog,2016.0,6,10,2019,Buster's Mal Heart,The Last Free Man Returns Scene,tt5173032\nysRnmU7UZLA,2016.0,1,10,2019,Buster's Mal Heart,The Last Free Man Scene,tt5173032\nki5XFDm1ufM,2016.0,3,10,2019,Buster's Mal Heart,Robbing Season Scene,tt5173032\ncvaUo282fEg,2016.0,2,10,2019,Buster's Mal Heart,Slaves To The System Scene,tt5173032\n2qqJr7uFeTA,2016.0,5,10,2019,Buster's Mal Heart,You're a Lunatic! Scene,tt5173032\neXHKngWBha0,2016.0,10,10,2019,Buster's Mal Heart,Buster's Last Stand Scene,tt5173032\nda1prguylik,2011.0,4,8,2019,Anneliese: The Exorcist Tapes,Killing The Doctor Scene,tt1911533\neAVgMr_VCH4,2011.0,8,8,2019,Anneliese: The Exorcist Tapes,Last Rites Scene,tt1911533\noSIR6UvH1G8,2011.0,2,8,2019,Anneliese: The Exorcist Tapes,The First Exorcism Scene,tt1911533\nxcYhjlyrjfc,2011.0,1,8,2019,Anneliese: The Exorcist Tapes,I'll Rip Out Your Eyes Scene,tt1911533\nFtoH7NJV5Go,2011.0,5,8,2019,Anneliese: The Exorcist Tapes,An Evil Tongue Scene,tt1911533\nvwrqj6aqJAw,2011.0,7,8,2019,Anneliese: The Exorcist Tapes,Putting An End To It Scene,tt1911533\nQbthrROkWXM,2011.0,3,8,2019,Anneliese: The Exorcist Tapes,Demonic Manic Scene,tt1911533\n9FA_bAXW-Y8,2011.0,6,8,2019,Anneliese: The Exorcist Tapes,Stairway To Hell Scene,tt1911533\nkSQaXjYkZpc,2018.0,8,10,2019,Goosebumps 2: Haunted Halloween,Army of Monsters Scene,tt5664636\n9We9JImjg-c,2018.0,2,10,2019,Goosebumps 2: Haunted Halloween,Slappy on the Stage Scene,tt5664636\nSKTvxXjJ_MU,2018.0,9,10,2019,Goosebumps 2: Haunted Halloween,Ventriloquist Mommy Scene,tt5664636\nmpG7K909Gi4,2018.0,10,10,2019,Goosebumps 2: Haunted Halloween,Never Judge a Book by Its Cover Scene,tt5664636\nMzzWzX-HGbA,2018.0,5,10,2019,Goosebumps 2: Haunted Halloween,Crash Test Dummy Scene,tt5664636\nR7P5OWV436c,2018.0,3,10,2019,Goosebumps 2: Haunted Halloween,The Power of Tesla Scene,tt5664636\nAhZw2QXKT1A,2018.0,6,10,2019,Goosebumps 2: Haunted Halloween,The Monsters Come Alive Scene,tt5664636\nUgSVWM44JBE,2018.0,4,10,2019,Goosebumps 2: Haunted Halloween,Mommy's Dummy Scene,tt5664636\nGr-s1mxnwM0,2018.0,1,10,2019,Goosebumps 2: Haunted Halloween,R.L. Stine's House of Horrors Scene,tt5664636\nlnPDc4XE77w,2018.0,7,10,2019,Goosebumps 2: Haunted Halloween,Evil Gummi Bears Scene,tt5664636\nrhnCmErsnYA,2016.0,7,10,2019,Kung Fu Panda 3,Double Dad Defense Scene,tt2267968\ntekVuL2mT7A,2016.0,4,10,2019,Kung Fu Panda 3,Secret Panda Village Scene,tt2267968\n30VlDItRAVk,2016.0,10,10,2019,Kung Fu Panda 3,I Am the Dragon Warrior Scene,tt2267968\nm7HLqZP-l7E,2016.0,6,10,2019,Kung Fu Panda 3,Destroying The Jade Palace Scene,tt2267968\nw86nTX6Iixo,2016.0,2,10,2019,Kung Fu Panda 3,Po's Real Dad Scene,tt2267968\nDVQQY4-us8k,2016.0,1,10,2019,Kung Fu Panda 3,The New Master Scene,tt2267968\ngRP3sdjszlQ,2016.0,5,10,2019,Kung Fu Panda 3,Panda Training Scene,tt2267968\nYeDjVvr-6Zc,2016.0,8,10,2019,Kung Fu Panda 3,Skadooshing the Spirit Warrior Scene,tt2267968\nsCsMjWjftZs,2016.0,9,10,2019,Kung Fu Panda 3,Saved by Family Scene,tt2267968\nFGwgHAqBLDY,2016.0,3,10,2019,Kung Fu Panda 3,Jombies! Scene,tt2267968\nM93XQJPV51c,1986.0,7,10,2019,An American Tail,A Duo Scene,tt0090633\ngQMtp2WxEA4,1986.0,2,10,2019,An American Tail,There Are No Cats In America Scene,tt0090633\nMi6CrAUhnzE,1986.0,9,10,2019,An American Tail,Fievel On Fire Scene,tt0090633\nXWgSKXw8ZwI,1986.0,3,10,2019,An American Tail,Mouse Overboard! Scene,tt0090633\n2jzlSeFLr7A,1986.0,5,10,2019,An American Tail,Somewhere Out There Scene,tt0090633\nsJsCKwZLztk,1986.0,10,10,2019,An American Tail,Finding Fievel Scene,tt0090633\n65pGOp7qa_s,1986.0,8,10,2019,An American Tail,The Secret Weapon Scene,tt0090633\nVro5qtVA4PE,1986.0,1,10,2019,An American Tail,Cossack Cats Scene,tt0090633\nHFAGAjkDaOU,1986.0,6,10,2019,An American Tail,The Cat's Out of The Bag Scene,tt0090633\nkXvNxXDDHSY,1986.0,4,10,2019,An American Tail,Never Say Never Scene,tt0090633\nyqVb0Ten3G4,2014.0,6,10,2019,Dead Snow: Red vs. Dead,Zombies vs. Goth vs. Tank Scene,tt2832470\ntsCGLuufHvk,2014.0,4,10,2019,Dead Snow: Red vs. Dead,Satan's Arm Scene,tt2832470\ne2FPI_ylwJg,2014.0,10,10,2019,Dead Snow: Red vs. Dead,Zombies in Love Scene,tt2832470\n71ZR5BcX-Pc,2014.0,7,10,2019,Dead Snow: Red vs. Dead,Fight to the Undeath Scene,tt2832470\ne5gfRaN5gaE,2014.0,8,10,2019,Dead Snow: Red vs. Dead,Zombie War Scene,tt2832470\nT5k1Olhmz_E,2014.0,2,10,2019,Dead Snow: Red vs. Dead,In the Mood for Head Scene,tt2832470\n__zoXOgNRvk,2014.0,9,10,2019,Dead Snow: Red vs. Dead,You'll Always Lose Scene,tt2832470\ne80EOZnHpLQ,2014.0,5,10,2019,Dead Snow: Red vs. Dead,The Nazis Are Coming! Scene,tt2832470\nqwgO1dNfBl0,2014.0,3,10,2019,Dead Snow: Red vs. Dead,Nazi Zombie Massacre Scene,tt2832470\ndvlZ2PtH_zc,2014.0,1,10,2019,Dead Snow: Red vs. Dead,Zombie Roadkill Scene,tt2832470\nwMclAYZ_6kU,2018.0,7,10,2019,BuyBust,Crushed by a Motorcycle Scene,tt5938084\nsG8uXeC_jNg,2018.0,10,10,2019,BuyBust,You With Us? Scene,tt5938084\ni3ywt-oTQv4,2018.0,5,10,2019,BuyBust,Electrocution Massacre Scene,tt5938084\n_65de63xao0,2018.0,2,10,2019,BuyBust,Stabbed to Death Scene,tt5938084\nbCtvFlr2hHI,2018.0,9,10,2019,BuyBust,Manigan vs. Biggie Scene,tt5938084\nLB08HHk7Ssk,2018.0,6,10,2019,BuyBust,Flaming Death Scene,tt5938084\nVLx6HcJ7sas,2018.0,8,10,2019,BuyBust,Unstoppable Warrior Scene,tt5938084\ngOeKwFPUA50,2018.0,4,10,2019,BuyBust,Molotov Cocktail Rain Storm Scene,tt5938084\n3_SZ0F3VTVU,2018.0,1,10,2019,BuyBust,Ambush in Manila Scene,tt5938084\n8C3n6k49Dmg,2018.0,3,10,2019,BuyBust,They're Inside! Scene,tt5938084\n9zZLmOA4OsA,2007.0,9,10,2019,Walk Hard: The Dewey Cox Story,Rehab Scene,tt0841046\nxVANxG9gI6g,2007.0,2,10,2019,Walk Hard: The Dewey Cox Story,The Devil's Music Scene,tt0841046\nPoAxZJMYRWE,2007.0,10,10,2019,Walk Hard: The Dewey Cox Story,The Right Kid Lived Scene,tt0841046\nR2lhQCxKx_Y,2007.0,4,10,2019,Walk Hard: The Dewey Cox Story,That's Amore & Walk Hard Scene,tt0841046\n8tLhtdDVqzg,2007.0,5,10,2019,Walk Hard: The Dewey Cox Story,Don't Want None of This Scene,tt0841046\nc7cm-r7oJ2E,2007.0,8,10,2019,Walk Hard: The Dewey Cox Story,Double Married Scene,tt0841046\noflbCHWZCBU,2007.0,7,10,2019,Walk Hard: The Dewey Cox Story,Duet Song Scene,tt0841046\na_iEYXLXbjY,2007.0,6,10,2019,Walk Hard: The Dewey Cox Story,Dewey on Drugs Scene,tt0841046\nSDIk9DOro4A,2007.0,1,10,2019,Walk Hard: The Dewey Cox Story,Half Brother Scene,tt0841046\nikcKKvKkf4Y,2007.0,3,10,2019,Walk Hard: The Dewey Cox Story,\"White Singer, Black Club Scene\",tt0841046\njY4nU1rwWv8,2011.0,3,10,2019,Kung Fu Panda 2,Dragon Costume Fight Scene,tt1302011\nhTpVCu5DzpA,2011.0,1,10,2019,Kung Fu Panda 2,Opening Battle Scene,tt1302011\nWsHqQAfZvc4,2011.0,4,10,2019,Kung Fu Panda 2,Rickshaw Chase Scene,tt1302011\nh5UGcMYOaaU,2011.0,5,10,2019,Kung Fu Panda 2,Shen's Weapon Scene,tt1302011\n22Xiae6LXdU,2011.0,7,10,2019,Kung Fu Panda 2,Cannonball Factory Scene,tt1302011\n4SDOcUPE1GI,2011.0,6,10,2019,Kung Fu Panda 2,Furious Five Faces Furious Fire Scene,tt1302011\nePtwxRF1WZA,2011.0,8,10,2019,Kung Fu Panda 2,The Boat Fight Scene,tt1302011\nQXeYlaZJ64k,2011.0,9,10,2019,Kung Fu Panda 2,Skadoosh Scene,tt1302011\nLn91UqmKxwI,2011.0,10,10,2019,Kung Fu Panda 2,Final Fight With Shen Scene,tt1302011\nnXait2wHOQc,2011.0,2,10,2019,Kung Fu Panda 2,Baby Po Scene,tt1302011\n8tFrGaU6p5U,2018.0,2,10,2019,BlacKkKlansman,Crank Calling the Klan Scene,tt7349662\nAxxKJ2QgPtY,2018.0,6,10,2019,BlacKkKlansman,The Birth of Two Nations Scene,tt7349662\ndmy8Lcf_TiE,2018.0,4,10,2019,BlacKkKlansman,Lie Detector Test Scene,tt7349662\nX3XwuyPljm4,2018.0,7,10,2019,BlacKkKlansman,Pictures with the Klan Scene,tt7349662\nruCFlIoCpJ8,2018.0,9,10,2019,BlacKkKlansman,The Real Ron Stallworth Scene,tt7349662\no6synmrDXqU,2018.0,1,10,2019,BlacKkKlansman,Too Late to Turn Back Now Scene,tt7349662\nyV5UTHVjMME,2018.0,3,10,2019,BlacKkKlansman,I'm Black and I'm Proud! Scene,tt7349662\nHQrM6Rk7WWE,2018.0,10,10,2019,BlacKkKlansman,The Ongoing Fight for Equality Scene,tt7349662\n1Aoukxd0GvI,2018.0,5,10,2019,BlacKkKlansman,The Tragedy of Jesse Washington Scene,tt7349662\nlIbBAWzE6H8,2018.0,8,10,2019,BlacKkKlansman,The Bomb Scene,tt7349662\naB6Tdk6f2Lw,2018.0,7,10,2019,Green Book,I'm Way Blacker Than You Scene,tt6966692\nnsp9ex69rQQ,2018.0,1,10,2019,Green Book,Tony's Job Interview Scene,tt6966692\n4RBnTZELQX8,2018.0,6,10,2019,Green Book,Dignity Always Prevails Scene,tt6966692\ne_fI5no9SKk,2018.0,5,10,2019,Green Book,After Midnight Scene,tt6966692\nKXoFUS5Dzto,2018.0,4,10,2019,Green Book,Caught In The Act Scene,tt6966692\ntnZ55SLhan4,2018.0,10,10,2019,Green Book,Christmas Dinner Scene,tt6966692\n89HcLOHubgo,2018.0,3,10,2019,Green Book,Barroom Brawl Scene,tt6966692\neiqBbLVXbQg,2018.0,9,10,2019,Green Book,At The Orange Bird Jukejoint Scene,tt6966692\nymmlNaUhZE8,2018.0,8,10,2019,Green Book,Dining Room Indignity Scene,tt6966692\nJCT1VtaBpqg,2018.0,2,10,2019,Green Book,Fried Chicken Etiquette Scene,tt6966692\n2HuQzKat6hU,2018.0,2,10,2019,The House With a Clock in Its Walls,I'm A Warlock Scene,tt2119543\nXA0J-wn1Esg,2018.0,4,10,2019,The House With a Clock in Its Walls,Raising The Dead Scene,tt2119543\nmpgaMjGOeJg,2018.0,3,10,2019,The House With a Clock in Its Walls,What A Little Weird Can Do Scene   Movie,tt2119543\nbwKwR3hV0zA,2018.0,6,10,2019,The House With a Clock in Its Walls,Betrayal of the Living Dead Scene,tt2119543\naWjBDI02kSE,2018.0,1,10,2019,The House With a Clock in Its Walls,The House Likes You Scene,tt2119543\nn8yUoQP6Rwo,2018.0,8,10,2019,The House With a Clock in Its Walls,Smashing Pumpkins Scene,tt2119543\nnpaLKZ0Egus,2018.0,10,10,2019,The House With a Clock in Its Walls,Stopping The Clock Scene,tt2119543\nqp-uFNB9jYo,2018.0,5,10,2019,The House With a Clock in Its Walls,Broken Magic Scene,tt2119543\n5noS6qGxcbM,2018.0,7,10,2019,The House With a Clock in Its Walls,Now I'm Indomitable Scene,tt2119543\nANigqhwwafs,2018.0,9,10,2019,The House With a Clock in Its Walls,Baby Jonathan Scene,tt2119543\n13h4zTXEjvw,2018.0,2,10,2019,Alpha,Feast for the Vultures Scene,tt4244998\n8wduU3eU6XQ,2018.0,4,10,2019,Alpha,A Peace Offering Scene,tt4244998\n4IHDSpacpbc,2018.0,3,10,2019,Alpha,Bonding with a Predator Scene,tt4244998\nLahMUQTEbcY,2018.0,9,10,2019,Alpha,Man's Best Friend Scene,tt4244998\nMDG6JsXqaRA,2018.0,1,10,2019,Alpha,Bison Hunting Scene,tt4244998\ncfnBcA2ckeQ,2018.0,7,10,2019,Alpha,Trapped Under Ice Scene,tt4244998\n0uyVs4iKp_E,2018.0,5,10,2019,Alpha,First Game of Fetch Scene,tt4244998\nf96ppJ3DSGE,2018.0,8,10,2019,Alpha,Sabretooth Attack Scene,tt4244998\nQFDZTfWnWGg,2018.0,6,10,2019,Alpha,Back to the Pack Scene,tt4244998\nU7jlC1QNaUM,2018.0,10,10,2019,Alpha,Wolf Puppies Scene,tt4244998\nvNk30YAdCEo,2016.0,8,9,2019,Train to Busan,Undead Cargo Scene,tt5700672\nPOpYt4cHlFs,2016.0,3,9,2019,Train to Busan,Train Station Hell Scene,tt5700672\nzpmd0YiERdQ,2016.0,2,9,2019,Train to Busan,Train of the Living Dead Scene,tt5700672\nEr_oU3Sl1GI,2016.0,1,9,2019,Train to Busan,The First Zombie Scene,tt5700672\ntKeJ34qjORQ,2016.0,6,9,2019,Train to Busan,Instant Karma Scene,tt5700672\nzhaVycw4FXI,2016.0,4,9,2019,Train to Busan,Zombie Melee Scene,tt5700672\nnKkgc9WTY38,2016.0,7,9,2019,Train to Busan,Trapped Scene,tt5700672\ndcR7fdkLhJ4,2016.0,5,9,2019,Train to Busan,Left to Die Scene,tt5700672\nzuSBq10_5go,2018.0,8,10,2019,Venom,vs. Riot Scene,tt1270797\nUCGdsPwcKKg,2018.0,5,10,2019,Venom,Getting Swatted Scene,tt1270797\nWl6COOA3V6Y,2018.0,9,10,2019,Venom,A Turd in the Wind Scene,tt1270797\n3kEL1doAC4M,2018.0,1,10,2019,Venom,Meeting  Scene,tt1270797\nxL3ZOCRgJZM,2018.0,2,10,2019,Venom,Eating Lobsters Scene,tt1270797\ndOZndhz24OA,2018.0,6,10,2019,Venom,I Am Kind of a Loser Scene,tt1270797\n09zP4iK6QuI,2018.0,10,10,2019,Venom,Carnage Scene,tt1270797\nvi9m0JRo71I,2018.0,4,10,2019,Venom,We Are  Scene,tt1270797\nrsnLwzzkF_Q,2018.0,7,10,2019,Venom,Riot Attacks Scene,tt1270797\n8zYGzyIpue8,2018.0,3,10,2019,Venom,Takes Control Scene,tt1270797\n-BgZFaMJRxM,2018.0,7,10,2019,The Equalizer 2,I Only Get to Kill You Once Scene,tt3766354\nrmE6nTzmDqI,2018.0,6,10,2019,The Equalizer 2,\"No Enemies, Just Unfortunates Scene\",tt3766354\nhN5We42pLhs,2018.0,3,10,2019,The Equalizer 2,Crackhouse Crackdown Scene,tt3766354\nbxs77K1DkD0,2018.0,2,10,2019,The Equalizer 2,Five-Star Rating Scene,tt3766354\n5D20G8qe4Qc,2018.0,1,10,2019,The Equalizer 2,Two Kinds of Pain Scene,tt3766354\n7HEi1kmCzEY,2018.0,4,10,2019,The Equalizer 2,You Don't Know Death Scene,tt3766354\nm43-bLl6ZwI,2018.0,8,10,2019,The Equalizer 2,This Ain't Home Alone Scene,tt3766354\nnNGz1GspkbM,2018.0,9,10,2019,The Equalizer 2,Cooking Explosives Scene,tt3766354\nGuqaloLJNJk,2018.0,10,10,2019,The Equalizer 2,Watchtower Showdown Scene,tt3766354\n1M00J5Q1Vv8,2018.0,5,10,2019,The Equalizer 2,A Rough Fare Scene,tt3766354\nXMKKYshEbzM,2018.0,8,10,2019,Spider Man: Into the Spider-Verse,Miles vs. Kingpin Scene,tt4633694\n5h2uLkqpVV8,2018.0,2,10,2019,Spider Man: Into the Spider-Verse,Meeting Gwen Scene,tt4633694\n5XnGKA75dtI,2018.0,5,10,2019,Spider Man: Into the Spider-Verse,Killing Spider Man Scene,tt4633694\nqCjSApp2o1E,2018.0,6,10,2019,Spider Man: Into the Spider-Verse,Doc Ock Scene,tt4633694\nzWW_SH8IFnI,2018.0,9,10,2019,Spider Man: Into the Spider-Verse,\"Get Up, Spider Man! Scene\",tt4633694\n3v9Pfg4Ocbg,2018.0,3,10,2019,Spider Man: Into the Spider-Verse,Miles Gets Bit Scene,tt4633694\nkDTjN5dVCzg,2018.0,1,10,2019,Spider Man: Into the Spider-Verse,I Love You Scene,tt4633694\nqcaVM8TcZbA,2018.0,10,10,2019,Spider Man: Into the Spider-Verse,The One and Only Spider Man Scene,tt4633694\n6bO4ZsAMowI,2018.0,4,10,2019,Spider Man: Into the Spider-Verse,Two Spider-Men? Scene,tt4633694\nGuqCibVW5wo,2018.0,7,10,2019,Spider Man: Into the Spider-Verse,Saying Goodbye Scene,tt4633694\ngC6gD7Qzry8,2018.0,6,10,2019,Searching,Crazy Dad Theater Attack Scene,tt7668870\njGXpyMDIZ_U,2018.0,7,10,2019,Searching,What Did You Do to My Daughter? Scene,tt7668870\nm-3Ohq-bVFA,2018.0,10,10,2019,Searching,Mommy's Gonna Make It Better Scene,tt7668870\nqjJnk3MgNgc,2018.0,2,10,2019,Searching,Detective Rosemary Vick Scene,tt7668870\njkmyjHYMH0Q,2018.0,8,10,2019,Searching,Stock Photo Killer Scene,tt7668870\npo0Gj897Tmk,2018.0,9,10,2019,Searching,Finding the Killer Scene,tt7668870\nSN8buDY-7LM,2018.0,3,10,2019,Searching,fish_n_chips Scene,tt7668870\nc2ecZiVEs70,2018.0,5,10,2019,Searching,Told Me She Ran Away Scene,tt7668870\nYeqQ-Iae_VI,2018.0,4,10,2019,Searching,You Don't Always Know Your Kid Scene,tt7668870\nIKnygn5ysHU,2018.0,1,10,2019,Searching,When We Were a Family Scene,tt7668870\n1iEOBKuW9TQ,1999.0,5,10,2019,Blue Streak,Dayum Scene,tt0181316\nysudBGghmnA,1999.0,9,10,2019,Blue Streak,No Jurisdiction Scene,tt0181316\nIfO6AIsvlKw,1999.0,1,10,2019,Blue Streak,Hot Pizza Scene,tt0181316\niswgTDjihrU,1999.0,8,10,2019,Blue Streak,Police Chase to Mexico Scene,tt0181316\nq7V1sM0VNaw,1999.0,3,10,2019,Blue Streak,Shaking Things Up Scene,tt0181316\nKNQpMgWWB5Y,1999.0,10,10,2019,Blue Streak,Tengo El Gato Los Pantalones Scene,tt0181316\nIoQ4G5p-Z-g,1999.0,4,10,2019,Blue Streak,Interrogating Tulley Scene,tt0181316\nW18J6bcq9YI,1999.0,6,10,2019,Blue Streak,Going Undercover Scene,tt0181316\nt3gqjXINvac,1999.0,7,10,2019,Blue Streak,Stone Cold Killer Scene,tt0181316\n5UjmbtIRvLY,1999.0,2,10,2019,Blue Streak,This is Gonna Hurt Scene,tt0181316\nR1eDE5bXCds,2015.0,3,10,2019,Paul Blart: Mall Cop 2,Your Lip is Sweating Scene,tt3450650\nm7xTE3rvkDk,2015.0,10,10,2019,Paul Blart: Mall Cop 2,Always Bet on Blart Scene,tt3450650\ncMwOJoesx8M,2015.0,1,10,2019,Paul Blart: Mall Cop 2,Being a Bit Transparent Scene,tt3450650\nXq4HZGi38qo,2015.0,5,10,2019,Paul Blart: Mall Cop 2,\"Big, Black Banana Scene\",tt3450650\nfo0KBFhChFU,2015.0,9,10,2019,Paul Blart: Mall Cop 2,We Are That Man Scene,tt3450650\nob_6XAhj_1U,2015.0,2,10,2019,Paul Blart: Mall Cop 2,Segway Stuntman Scene,tt3450650\n0zuW4KMG7XQ,2015.0,8,10,2019,Paul Blart: Mall Cop 2,I'm So Crazy! Scene,tt3450650\nN7vSJzq1zAY,2015.0,7,10,2019,Paul Blart: Mall Cop 2,The Bat-Segway Scene,tt3450650\nQ37sWrXU39s,2015.0,6,10,2019,Paul Blart: Mall Cop 2,La Reve Chase Scene,tt3450650\nvbJsLuL2YzQ,2015.0,4,10,2019,Paul Blart: Mall Cop 2,Man vs. Bird Scene,tt3450650\nt5nBikdQ1kE,1988.0,2,10,2019,Mississippi Burning,Welcome to Mississippi Scene,tt0095647\niJrgXYnUVe8,1988.0,1,10,2019,Mississippi Burning,\"We Into It Now, Boys Scene\",tt0095647\npHBKmT6eNGw,1988.0,3,10,2019,Mississippi Burning,Federal Bureau of Integration Scene,tt0095647\nqOeZ9TL0wHs,1988.0,9,10,2019,Mississippi Burning,Eulogy Scene,tt0095647\n1ovQhqQy7bE,1988.0,8,10,2019,Mississippi Burning,Anderson's Way Scene,tt0095647\ny8i5Nwg_TqU,1988.0,4,10,2019,Mississippi Burning,The Burning Cross Scene,tt0095647\nZCZyxZYgKIg,1988.0,10,10,2019,Mississippi Burning,A Razor-Sharp Interrogation Scene,tt0095647\nccr0gfJ5q0I,1988.0,5,10,2019,Mississippi Burning,Searching the Swamp Scene,tt0095647\nvWkJPL2Dt9A,1988.0,7,10,2019,Mississippi Burning,Hatred Is Taught Scene,tt0095647\nzvy5tDkETfQ,1988.0,6,10,2019,Mississippi Burning,Wringing Necks Scene,tt0095647\n2Ht6646WCMU,1987.0,9,10,2019,Angel Heart,Boiling Pot of Murder Scene,tt0092563\nisQIyXfV6Cw,1987.0,6,10,2019,Angel Heart,Anything Can Happen Day Scene,tt0092563\nKUdG72N_mek,1987.0,5,10,2019,Angel Heart,Epiphany Proudfoot Scene,tt0092563\nyGWUHeP16Zk,1987.0,3,10,2019,Angel Heart,Know What They Say About Slugs? Scene,tt0092563\neb1AjU67W2s,1987.0,10,10,2019,Angel Heart,I Know Who I Am! Scene,tt0092563\nij-qB9jrMnY,1987.0,2,10,2019,Angel Heart,Eye For An Eye Scene,tt0092563\n6SLhTIdGfhU,1987.0,7,10,2019,Angel Heart,Missing Pieces Scene,tt0092563\nTVSr02WLC4o,1987.0,8,10,2019,Angel Heart,Churches Give Me the Creeps Scene,tt0092563\noGFkOiYpEeE,1987.0,1,10,2019,Angel Heart,Deal With The Devil Scene,tt0092563\nUSjNhsetZWc,1987.0,4,10,2019,Angel Heart,Voodoo Snooping Scene,tt0092563\nTrvXqosqkls,2018.0,8,10,2019,First Man,The Eagle Has Landed Scene,tt1213641\n-2QFIXEHnOY,2018.0,4,10,2019,First Man,Test Flight Crash Scene,tt1213641\n2Y_CzHI89mQ,2018.0,6,10,2019,First Man,Telling The Kids Scene,tt1213641\nJgTgQvvqRqE,2018.0,1,10,2019,First Man,Landing the Test Plane Scene,tt1213641\natBUgwJAD0U,2018.0,2,10,2019,First Man,Astronaut Training Scene,tt1213641\noUKw4qcGHZs,2018.0,10,10,2019,First Man,The Bracelet Scene,tt1213641\nMevYeKlyQM8,2018.0,5,10,2019,First Man,What Are Your Chances? Scene,tt1213641\nFubpK1Tho6M,2018.0,7,10,2019,First Man,We Have Liftoff Scene,tt1213641\nrzuN9uvnsZI,2018.0,3,10,2019,First Man,Out of Control Scene,tt1213641\nr3L0e0izKG4,2018.0,9,10,2019,First Man,One Small Step For Man Scene,tt1213641\nd7-pWfZgFKU,2016.0,6,10,2019,Fences,Alberta Had the Baby Scene,tt2671706\nq_tMagfE-nM,2016.0,10,10,2019,Fences,The Best of What's In Me Scene,tt2671706\n2lh1uIhuujc,2016.0,3,10,2019,Fences,Becoming a Man Scene,tt2671706\nwAJQ-yWgSJs,2016.0,4,10,2019,Fences,Somebody's Daddy Scene,tt2671706\nxI9CLKI1h-g,2016.0,7,10,2019,Fences,Death Knocks Again Scene,tt2671706\nytEsz9ZEh_g,2016.0,8,10,2019,Fences,Sins of the Father Scene,tt2671706\nPomVYrPHoAg,2016.0,1,10,2019,Fences,Wrestling Death Scene,tt2671706\ntVxYCeRXzGo,2016.0,2,10,2019,Fences,I Ain't Got to Like You Scene,tt2671706\nVh7XH68xWKw,2016.0,9,10,2019,Fences,Troy's Victory Scene,tt2671706\n2hs-yt-Pmk0,2016.0,5,10,2019,Fences,The Same Spot As You Scene,tt2671706\naoBeDwBxv04,1963.0,9,12,2019,Lilies of the Field,Giving Thanks Scene,tt0057251\nKU5yx6v_Jr8,1963.0,5,12,2019,Lilies of the Field,We Build A Shapel Scene,tt0057251\nqgm_ou3TsIs,1963.0,1,12,2019,Lilies of the Field,\"A Big, Strong Man Scene\",tt0057251\nljMuEDlInLo,1963.0,8,12,2019,Lilies of the Field,The Sisters' Past Scene,tt0057251\n3hUkHF18IrI,1963.0,4,12,2019,Lilies of the Field,Catholic Breakfast Scene,tt0057251\n12iewuXNhbE,1963.0,7,12,2019,Lilies of the Field,A Real Breakfast Scene,tt0057251\nS0LBIxKRCHw,1963.0,10,12,2019,Lilies of the Field,Homer Quits Scene,tt0057251\nh5dCFGJp__0,1963.0,12,12,2019,Lilies of the Field,Amen! Scene,tt0057251\nRwMgEM9FNhE,1963.0,3,12,2019,Lilies of the Field,English Lesson Scene,tt0057251\nBfj5GHwgXno,1963.0,6,12,2019,Lilies of the Field,Consider The Lilies Scene,tt0057251\ns6JmX_n5oeo,1963.0,11,12,2019,Lilies of the Field,I Wanted To Build It Myself Scene,tt0057251\nScJijQn6RyI,1963.0,2,12,2019,Lilies of the Field,Language Record Scene,tt0057251\ngwGqg69sqi0,2018.0,9,10,2019,The Strangers: Prey at Night,A Bridge Too Far Scene,tt1285009\nuwta-bET3aQ,2018.0,6,10,2019,The Strangers: Prey at Night,Pool Of Blood Scene,tt1285009\nAv0pWtQ36tU,2018.0,1,10,2019,The Strangers: Prey at Night,Trailer Terror Scene,tt1285009\nSMd0299YDac,2018.0,4,10,2019,The Strangers: Prey at Night,Car Seat Dead Rests Scene,tt1285009\n4kaYp9uUNgw,2018.0,3,10,2019,The Strangers: Prey at Night,We've Just Started Scene,tt1285009\nLTESHXdMyQg,2018.0,7,10,2019,The Strangers: Prey at Night,Cop Killer Scene,tt1285009\nT_Kn_D-zfeg,2018.0,2,10,2019,The Strangers: Prey at Night,Bathroom Backstabbing Scene,tt1285009\nfKyoILW1Npw,2018.0,8,10,2019,The Strangers: Prey at Night,Road Rampage Scene,tt1285009\nElkY5U7WSiA,2018.0,10,10,2019,The Strangers: Prey at Night,Pickup Peril Scene,tt1285009\n9uGuf4e252w,2018.0,5,10,2019,The Strangers: Prey at Night,Crash Test Killers Scene,tt1285009\npmAZlEkONa0,1991.0,10,10,2019,Sometimes They Come Back,Back to the Tunnel Scene,tt0102960\n-dlOM4ocKUM,1991.0,2,10,2019,Sometimes They Come Back,The Incident Scene,tt0102960\nFz43jl18aiY,1991.0,7,10,2019,Sometimes They Come Back,Chip Gets Killed Scene,tt0102960\n2UOL-ZHUOC4,1991.0,4,10,2019,Sometimes They Come Back,A Familiar Face Scene,tt0102960\n_ZA8FE-nu3E,1991.0,6,10,2019,Sometimes They Come Back,Recurring Demons Scene,tt0102960\np9W9PhaNGOY,1991.0,3,10,2019,Sometimes They Come Back,Greaser Ghouls Chase Billy Scene,tt0102960\nbuIXWAgTUIU,1991.0,9,10,2019,Sometimes They Come Back,Unfinished Business Scene,tt0102960\nw4TCxFKaqIw,1991.0,8,10,2019,Sometimes They Come Back,Reliving the Past Scene,tt0102960\nOlLMqN-vjKk,1991.0,5,10,2019,Sometimes They Come Back,Finding Kate in the Barn Scene,tt0102960\nK3jk2RjLJ3c,1991.0,1,10,2019,Sometimes They Come Back,The New Teacher Scene,tt0102960\nGczlfeOFPDE,2006.0,7,12,2019,Crazy Eights,We're Not Orphans Scene,tt0470993\nPbCNDD4y-Zs,2006.0,4,12,2019,Crazy Eights,Window Pain Scene,tt0470993\n2nCjaCV1v0U,2006.0,11,12,2019,Crazy Eights,Blind Death Scene,tt0470993\nw_ZzqN2TWTI,2006.0,1,12,2019,Crazy Eights,What's In The Box? Scene,tt0470993\ndSOFfyFdHXA,2006.0,2,12,2019,Crazy Eights,That's A Dead Body! Scene,tt0470993\nxoTuKbJE9aw,2006.0,8,12,2019,Crazy Eights,They Were Experimenting on Us Scene,tt0470993\nKxOI0mEOHsY,2006.0,12,12,2019,Crazy Eights,Together Forever Scene,tt0470993\ndes_yFi9fiM,2006.0,9,12,2019,Crazy Eights,Blinded By The Fright Scene,tt0470993\nBiXpNk-huqQ,2006.0,10,12,2019,Crazy Eights,Holy Slit Scene,tt0470993\n9sVpipEqpD8,2006.0,6,12,2019,Crazy Eights,Remember Me? Scene,tt0470993\n4psRZr3sxHs,2006.0,5,12,2019,Crazy Eights,You've Been Here Before Scene,tt0470993\nMjrbUV78y5A,2006.0,3,12,2019,Crazy Eights,Praying For A Way Out Scene,tt0470993\nL9EPJ7ZYjHk,2013.0,6,10,2019,Hansel & Gretel: Witch Hunters,Troll Rampage Scene,tt1428538\nPDWuHeevSAk,2013.0,8,10,2019,Hansel & Gretel: Witch Hunters,War of the Witches Scene,tt1428538\nsxKLANwXzzg,2013.0,7,10,2019,Hansel & Gretel: Witch Hunters,Epic Magic Battle Scene,tt1428538\nHMyfwfUs64I,2013.0,9,10,2019,Hansel & Gretel: Witch Hunters,The End is Near Scene,tt1428538\nDbcOnkSMGK0,2013.0,1,10,2019,Hansel & Gretel: Witch Hunters,The Candy House Scene,tt1428538\ndTIoEMxqckg,2013.0,2,10,2019,Hansel & Gretel: Witch Hunters,Hag Hunting Scene,tt1428538\nPKKSqcq9iGU,2013.0,10,10,2019,Hansel & Gretel: Witch Hunters,Fairytale Beatdown Scene,tt1428538\ntc7rC53gLUU,2013.0,5,10,2019,Hansel & Gretel: Witch Hunters,A Splash of Color Scene,tt1428538\nuZ_X4w_9lgk,2013.0,3,10,2019,Hansel & Gretel: Witch Hunters,A Bloody Message Scene,tt1428538\nirxaBbMXsUk,2013.0,4,10,2019,Hansel & Gretel: Witch Hunters,\"You Move, You Die Scene\",tt1428538\nSDNStLatNk8,2016.0,6,9,2019,Sinister Squad,The Rumpy Noodle Scene,tt5481984\nVUljC2ih5YY,2016.0,2,9,2019,Sinister Squad,Rogue's Gallery Scene,tt5481984\nXFu7Fz4g1VM,2016.0,5,9,2019,Sinister Squad,DJ Mad Hatter Scene,tt5481984\nM32XWG0NQPQ,2016.0,8,9,2019,Sinister Squad,Bluebeard's Deception Scene,tt5481984\nSUruJPHdHUQ,2016.0,1,9,2019,Sinister Squad,Bluebeard's Blade Scene,tt5481984\n31G0GtKW8iM,2016.0,3,9,2019,Sinister Squad,Base Invasion Scene,tt5481984\nnxKAr1Gebjk,2016.0,4,9,2019,Sinister Squad,Villains Against Villains Scene,tt5481984\npt94aydCMXg,2016.0,7,9,2019,Sinister Squad,Make It Look Real Scene,tt5481984\nLaajQCWsyzE,2016.0,9,9,2019,Sinister Squad,Goldilocks to the Rescue Scene,tt5481984\nOoiw8ZYnzdU,2004.0,7,7,2019,You Got Served,Dancing for Lil' Kim Scene,tt0365957\n_ZzKJflnVHU,2004.0,4,7,2019,You Got Served,Defending the Title Scene,tt0365957\ncIEPiYHzTto,2004.0,5,7,2019,You Got Served,Training in the Rain Scene,tt0365957\nBpAvVBwO8J0,2004.0,2,7,2019,You Got Served,We Don't Practice Scene,tt0365957\nHJKL8Ta-kt8,2004.0,3,7,2019,You Got Served,Danceoff Betrayal Scene,tt0365957\n15MbDpZad74,2004.0,6,7,2019,You Got Served,Dance Trials Scene,tt0365957\n_oOULG_nhEc,2004.0,1,7,2019,You Got Served,Opening Dance Battle Scene,tt0365957\nTirgk-Is0QY,2015.0,1,10,2019,Bound,Just Suck and Blow Scene,tt4145324\nbHnpX4LBdGw,2015.0,4,10,2019,Bound,Ryan's Chamber Scene,tt4145324\n5rQD746bDOc,2015.0,6,10,2019,Bound,Improvised Foreplay Scene,tt4145324\nVlqxnvmTcAk,2015.0,10,10,2019,Bound,Business & Pleasure Scene,tt4145324\nH6pjCQosMxk,2015.0,2,10,2019,Bound,MILF Whisperer Scene,tt4145324\nCwqmd8pSkEo,2015.0,5,10,2019,Bound,Toying Around Scene,tt4145324\nqFnqH95k_rU,2015.0,3,10,2019,Bound,Little Daddy's Girl Scene,tt4145324\nYk2ZbS2FKe4,2015.0,9,10,2019,Bound,I Can Still Taste Your Daughter Scene,tt4145324\n4LCN8__54AQ,2015.0,7,10,2019,Bound,Becoming Submissive Scene,tt4145324\n7Ev8Q9RDC8k,2015.0,8,10,2019,Bound,I Am Your Master! Scene,tt4145324\nLiogBSpbSE8,2008.0,5,6,2019,Sex Pot,Cougar Attack! Scene,tt1473801\nWDAIccQnnV8,2008.0,6,6,2019,Sex Pot,The Craziest Ex-Girlfriend Scene,tt1473801\nBzKbRv8tcBc,2008.0,1,6,2019,Sex Pot,Pooping Tom Scene,tt1473801\ndtIqkgW18-0,2008.0,4,6,2019,Sex Pot,Insulting a Cop Scene,tt1473801\n1EkjxpUe5TY,2008.0,2,6,2019,Sex Pot,Bikini Car Wash Scene,tt1473801\ny5ysUSgyVqs,2008.0,3,6,2019,Sex Pot,Looking For Liquor Scene,tt1473801\n7PI0v2ZWDl0,2018.0,7,10,2019,Night School,Learning Herpes Scene,tt6781982\nsqLiTaVHPdo,2018.0,4,10,2019,Night School,Not Lying Scene,tt6781982\nOwG27DvQf68,2018.0,8,10,2019,Night School,In The Ring Scene,tt6781982\nnpSYPN8LXas,2018.0,10,10,2019,Night School,Spanking The Chicken Scene,tt6781982\n2UBYT9teTIs,2018.0,3,10,2019,Night School,This Is My House Scene,tt6781982\nhonAzu3xOP0,2018.0,1,10,2019,Night School,Hairy Dinner Scene,tt6781982\n8Ds9R9puftI,2018.0,2,10,2019,Night School,Fiery Proposal Scene,tt6781982\n6rHHZ3hiwcQ,2018.0,9,10,2019,Night School,Prom Problems Scene,tt6781982\nbgZWbi1o8bY,2018.0,6,10,2019,Night School,Rooftop Fail Scene,tt6781982\n4c_4MGTCgHY,2018.0,5,10,2019,Night School,Prison Rules Scene,tt6781982\nKoY720x5fuw,2016.0,9,10,2019,Everybody Wants Some!!,Freshman Hazing Scene,tt2937696\nnvAZrrDwecI,2016.0,5,10,2019,Everybody Wants Some!!,Pink Floyd vs. Van Halen Scene,tt2937696\nPTOkGaI3ZAE,2016.0,3,10,2019,Everybody Wants Some!!,Sock on the Door Scene,tt2937696\nH6XWqMB-Ow8,2016.0,1,10,2019,Everybody Wants Some!!,Baller's Delight Scene,tt2937696\njME-000LFNY,2016.0,2,10,2019,Everybody Wants Some!!,The Average Dick Theory Scene,tt2937696\nXIJ-TpmNlI0,2016.0,6,10,2019,Everybody Wants Some!!,Mud Wrestling Party Scene,tt2937696\nqpxUYzNSGn0,2016.0,10,10,2019,Everybody Wants Some!!,Astrology Blocking Scene,tt2937696\n5IzNXdsZUHk,2016.0,8,10,2019,Everybody Wants Some!!,Psycho Pitcher Scene,tt2937696\n7iajsLA5MKM,2016.0,4,10,2019,Everybody Wants Some!!,Screwdriver Brawl Scene,tt2937696\ncZy7qSG8RHQ,2016.0,7,10,2019,Everybody Wants Some!!,Jock Strap Prank Scene,tt2937696\nCXdc2L3QH9U,1986.0,2,12,2019,Back to School,Thornton Donates A Building Scene,tt0090685\nQXruKKf3my4,1986.0,3,12,2019,Back to School,Springsteen in the Parking Lot Scene,tt0090685\n4VDry9fy8UE,1986.0,12,12,2019,Back to School,The Triple Lindy Scene,tt0090685\nCHOpoOnkRJE,1986.0,1,12,2019,Back to School,Are You Fat? Scene,tt0090685\nlKBbFHMEvDc,1986.0,11,12,2019,Back to School,I Don't Take S*** From No One Scene,tt0090685\naP7GTu8tbvQ,1986.0,10,12,2019,Back to School,Academic Fraud Scene,tt0090685\nuSLscJ2cY04,1986.0,4,12,2019,Back to School,Thornton Talks Business Scene,tt0090685\nk9DO26O6dIg,1986.0,5,12,2019,Back to School,Professor Terguson Loses It Scene,tt0090685\n-8ajIeIeJpY,1986.0,7,12,2019,Back to School,I'm Kurt Vonnegut Scene,tt0090685\numKFAbLoUxQ,1986.0,9,12,2019,Back to School,Marge Takes Notes Scene,tt0090685\n4kAViGVuLmM,1986.0,8,12,2019,Back to School,Lab Monkeys Scene,tt0090685\n0T3hXtyuX0g,1986.0,6,12,2019,Back to School,Hot For Teacher Scene,tt0090685\nzqv3YesdtRU,2018.0,10,10,2019,Mamma Mia! Here We Go Again,Super Trouper Scene,tt6911608\nnB9rg6sxHhU,2018.0,8,10,2019,Mamma Mia! Here We Go Again,Fernando Scene,tt6911608\nbCZRAcsuRgY,2018.0,2,10,2019,Mamma Mia! Here We Go Again,One of Us Scene,tt6911608\nKOuClUYl0_U,2018.0,9,10,2019,Mamma Mia! Here We Go Again,\"My Love, My Life Scene\",tt6911608\nLrQqG7HxUao,2018.0,7,10,2019,Mamma Mia! Here We Go Again,I've Been Waiting For You Scene,tt6911608\nZo0d4xk3BXw,2018.0,4,10,2019,Mamma Mia! Here We Go Again,Why Did It Have to Be Me? Scene,tt6911608\n3lR-s-Q5XsQ,2018.0,6,10,2019,Mamma Mia! Here We Go Again,Dancing Queen Scene,tt6911608\nYSN08rz66zE,2018.0,1,10,2019,Mamma Mia! Here We Go Again,When I Kissed The Teacher Scene,tt6911608\njq_tO6NAlPI,2018.0,5,10,2019,Mamma Mia! Here We Go Again,Mamma Mia Scene,tt6911608\npHXL7yantDY,2018.0,3,10,2019,Mamma Mia! Here We Go Again,Waterloo Scene,tt6911608\nISKL5Sy_Mt8,2016.0,3,10,2019,Allied,Cut For Your Freedom Scene,tt3640424\nMkn0Iji6g9w,2016.0,1,10,2019,Allied,Difficult to Swallow Scene,tt3640424\nHpGmAvMtScw,2016.0,4,10,2019,Allied,Love in a Sandstorm Scene,tt3640424\nw5oWgKtku3Q,2016.0,9,10,2019,Allied,Is This Real? Scene,tt3640424\ns43ARFFNrz0,2016.0,10,10,2019,Allied,Take Care of Her Scene,tt3640424\nY6CLpg06kFE,2016.0,8,10,2019,Allied,Lucky Strike Scene,tt3640424\nntKYG1LdbV8,2016.0,5,10,2019,Allied,A Beautiful Diversion Scene,tt3640424\nQaUjGv3GLeg,2016.0,2,10,2019,Allied,Testing Your Resolve Scene,tt3640424\nE0og5D_sPpM,2016.0,6,10,2019,Allied,Put the Phone Down Scene,tt3640424\nPl1dl--4OBE,2016.0,7,10,2019,Allied,Bomber Crash Scene,tt3640424\n71pIZ76YvR4,2010.0,1,10,2019,Dinner for Schmucks,Meeting Barry Scene,tt0427152\nA_R76lKU0DI,2010.0,3,10,2019,Dinner for Schmucks,I Need to Be Spanked Scene,tt0427152\nHHRCWQEM7UQ,2010.0,6,10,2019,Dinner for Schmucks,An Awkward Proposal Scene,tt0427152\nC2KN6BHuPWA,2010.0,2,10,2019,Dinner for Schmucks,The Lion and the Penguin Scene,tt0427152\n-7-2-088LnM,2010.0,7,10,2019,Dinner for Schmucks,From Beyond the Plate Scene,tt0427152\nKaVglFjQynk,2010.0,9,10,2019,Dinner for Schmucks,Mind Control vs. Brain Control Scene,tt0427152\nMVRR0XlqA4g,2010.0,5,10,2019,Dinner for Schmucks,Therman's Laugh Scene,tt0427152\n9BdW5LHQvjM,2010.0,4,10,2019,Dinner for Schmucks,A Naughty Little Penguin Scene,tt0427152\nE_TbL7vdWGo,2010.0,10,10,2019,Dinner for Schmucks,Idiots Attack Scene,tt0427152\nzbHFgQ419Qs,2010.0,8,10,2019,Dinner for Schmucks,In Her Naughty Purse Scene,tt0427152\ndeUroRuOCwM,1978.0,9,11,2019,The End,A Date With A .38 Scene,tt0077504\nJuxyMqr7FNA,1978.0,3,11,2019,The End,The Coward's Way Out Scene,tt0077504\n0aKB_Qm-z6g,1978.0,6,11,2019,The End,Death Therapy Scene,tt0077504\ntDD6wnNN-IQ,1978.0,5,11,2019,The End,Straitjacket Surprise Scene,tt0077504\nlb6nAmbkk9Y,1978.0,2,11,2019,The End,Meeting Marlon Scene,tt0077504\nCjXwJJQ-8XM,1978.0,1,11,2019,The End,Elevator Tears Scene,tt0077504\nkZRq9scxIWM,1978.0,7,11,2019,The End,It Ain't High Enough! Scene,tt0077504\n7ZzaLI6n1pU,1978.0,11,11,2019,The End,Shooting Sonny Scene,tt0077504\nPUFwiKDWxUo,1978.0,8,11,2019,The End,A Game of Chicken Scene,tt0077504\nkCrtP_gPMwk,1978.0,4,11,2019,The End,Marlon's Last Straw Scene,tt0077504\n9qdMVMCGr48,1978.0,10,11,2019,The End,I Want To Live! Scene,tt0077504\nUsNnkax2wNA,1994.0,2,10,2019,The Shadow,The Living Shadow Scene,tt0111143\nRFBlDixa33k,1994.0,1,10,2019,The Shadow,The Evil in the Hearts of Men Scene,tt0111143\n6DlOr1PP0Fc,1994.0,4,10,2019,The Shadow,To Fight A Shadow Scene,tt0111143\nYKvG96jMVWE,1994.0,3,10,2019,The Shadow,Join Me or Die Scene,tt0111143\nybF7eOf_n4s,1994.0,10,10,2019,The Shadow,You Can't Run From  Scene,tt0111143\nROqfvY68ijM,1994.0,6,10,2019,The Shadow,The Nightmares of Heroes Scene,tt0111143\nfEsN1FMfBvI,1994.0,7,10,2019,The Shadow,A Water Filled Hell Scene,tt0111143\noZ1Mz78d3wI,1994.0,9,10,2019,The Shadow,\"You're Finished, Khan Scene\",tt0111143\nU7HxeKhKgwM,1994.0,8,10,2019,The Shadow,Showing Claymore the Exit Scene,tt0111143\nUeq8bUwdm80,1994.0,5,10,2019,The Shadow,You Know I'm Gonna Stop You Scene,tt0111143\nbHW5h5O-e5I,1996.0,7,11,2019,Mulholland Falls,General Timms Scene,tt0117107\nsGPeVmnAFAI,1996.0,8,11,2019,Mulholland Falls,The Burden of Leadership Scene,tt0117107\n31LlQhZmSYs,1996.0,1,11,2019,Mulholland Falls,The L.A. Way Scene,tt0117107\nTcJjhnPrM9o,1996.0,4,11,2019,Mulholland Falls,Max Meets Allison Scene,tt0117107\nMM1no56lIjw,1996.0,9,11,2019,Mulholland Falls,FBI Threats Scene,tt0117107\nuydWF18xoCQ,1996.0,5,11,2019,Mulholland Falls,The Bomb Site Scene,tt0117107\nMtyfXKbZUus,1996.0,11,11,2019,Mulholland Falls,I Never Wanted It Both Ways Scene,tt0117107\nO2yNsybczj4,1996.0,6,11,2019,Mulholland Falls,Military Law Scene,tt0117107\nVln90evTYog,1996.0,10,11,2019,Mulholland Falls,This Is My Town Scene,tt0117107\nNfQcD7ZLWL0,1996.0,2,11,2019,Mulholland Falls,Over  Scene,tt0117107\np9Bo67_slJY,1996.0,3,11,2019,Mulholland Falls,Trading Places Scene,tt0117107\ng2tNQ_6-kpg,2002.0,6,8,2019,Bubba Ho-Tep,Classified Sexual Information Scene,tt0281686\ns039YJGaP-Y,2002.0,4,8,2019,Bubba Ho-Tep,Soul Robbin' Scene,tt0281686\nFz7dtq-saJo,2002.0,5,8,2019,Bubba Ho-Tep,Time To Be A Hero Scene,tt0281686\nIRycPfFjVBI,2002.0,8,8,2019,Bubba Ho-Tep,\"TCB, Baby! Scene\",tt0281686\nkVujmsfAIUk,2002.0,3,8,2019,Bubba Ho-Tep,The Writing On The Wall Scene,tt0281686\n1R4FATHHlTU,2002.0,1,8,2019,Bubba Ho-Tep,Playing Elvis Scene,tt0281686\niGk7QYThMTk,2002.0,2,8,2019,Bubba Ho-Tep,Never F*** With The King Scene,tt0281686\nt_JOKNfSn1w,2002.0,7,8,2019,Bubba Ho-Tep,You Undead Sack of S*** Scene,tt0281686\n5H_MyLSpRSs,1985.0,3,10,2019,Lifeforce,Back From The Dead Scene,tt0089489\n_iUWKODwAN8,1985.0,1,10,2019,Lifeforce,Totally Dangerous Scene,tt0089489\nAsfxK5fWMu8,1985.0,4,10,2019,Lifeforce,Explosive Zombies Scene,tt0089489\n_5IVdeFrhv4,1985.0,8,10,2019,Lifeforce,The Fall of Fallada Scene,tt0089489\nzzabhummvzk,1985.0,9,10,2019,Lifeforce,Vanquishing An Alien Vampire Scene,tt0089489\nbQObeZ5R0mc,1985.0,5,10,2019,Lifeforce,She Wants Me To Hurt Her Scene,tt0089489\ne9_4oS3hTPk,1985.0,7,10,2019,Lifeforce,Space Girl Escapes Scene,tt0089489\nHsh6n5RfCoc,1985.0,10,10,2019,Lifeforce,Space Vampire Sacrifice Scene,tt0089489\n7uOhTRONUbY,1985.0,6,10,2019,Lifeforce,Her True Form Scene,tt0089489\n1d-Q6pT4pxo,1985.0,2,10,2019,Lifeforce,They Look Bloody Dead To Me Scene,tt0089489\na2xcMwtUQFY,2011.0,1,7,2019,The Amityville Haunting,Boo-tiful Woman Scene,tt2042447\nWafr97M23uU,2011.0,7,7,2019,The Amityville Haunting,Daddy's Gone Scene,tt2042447\noQnm8w8f-lM,2011.0,3,7,2019,The Amityville Haunting,Execution By Electrocution Scene,tt2042447\nbH3ulIPKNrc,2011.0,6,7,2019,The Amityville Haunting,The Kitchen Of Death Scene,tt2042447\nVbAh3UbaGHQ,2011.0,4,7,2019,The Amityville Haunting,Dad Loses It Scene,tt2042447\nlryUDOG6bS4,2011.0,2,7,2019,The Amityville Haunting,All's Fair in Love & Gore Scene,tt2042447\nVHkoII8ewWk,2011.0,5,7,2019,The Amityville Haunting,Lori's Waking Nightmare Scene,tt2042447\n6SDs2BTqYpw,2011.0,2,6,2019,A Haunting in Salem,A Freak in the Bedroom Scene,tt1912981\nISXVGrqvV1A,2011.0,5,6,2019,A Haunting in Salem,Remnants of a Family Scene,tt1912981\nG1Q68kAK4qc,2011.0,3,6,2019,A Haunting in Salem,A Face Full of Boiling Water Scene,tt1912981\nFJnJJOAN_PU,2011.0,1,6,2019,A Haunting in Salem,Massacre at the Sheriff's House Scene,tt1912981\nYU_Sm_2vH5w,2011.0,4,6,2019,A Haunting in Salem,The Second Massacre Scene,tt1912981\nLiA9AsjqVWU,2011.0,6,6,2019,A Haunting in Salem,The Death of the Downs Family Scene,tt1912981\nMuW72eVCQno,2018.0,6,10,2019,Halloween,Hit & Run Scene,tt1502407\nKuStVllxFuI,2018.0,7,10,2019,Halloween,Say Something Scene,tt1502407\nbEBQWhgGM1g,2018.0,2,10,2019,Halloween,Bathroom Bloodshed Scene,tt1502407\n4-3B-Y9bM0M,2018.0,8,10,2019,Halloween,Laurie's Fortress Scene,tt1502407\n0p2Oyd040pg,2018.0,4,10,2019,Halloween,Killing The Babysitter Scene,tt1502407\nJe3Vjos0TlQ,2018.0,10,10,2019,Halloween,Burned Alive Scene,tt1502407\n7qhNVDPZ-0I,2018.0,1,10,2019,Halloween,The Mask of Michael Myers Scene,tt1502407\nIy2kMtJa2q8,2018.0,3,10,2019,Halloween,Homicides Scene,tt1502407\nk0LLcRLSSlE,2018.0,5,10,2019,Halloween,\"Drunk, Horny, and Impaled Scene\",tt1502407\nj7m47I9BuuY,2018.0,9,10,2019,Halloween,Where's the Body? Scene,tt1502407\nJV05-E5FF2g,2018.0,10,10,2019,The First Purge,The Last Stand Scene,tt6133466\nNdbZtOpgsUY,2018.0,3,10,2019,The First Purge,I Got Your Sister Scene,tt6133466\nkEL5reRoNk8,2018.0,1,10,2019,The First Purge,Viral Violence Scene,tt6133466\nWQP_cY7FAyQ,2018.0,2,10,2019,The First Purge,A Dance With Death Scene,tt6133466\nP9jJ6Bejayg,2018.0,9,10,2019,The First Purge,The Devil at the Door Scene,tt6133466\nAVHPmsWZnb4,2018.0,8,10,2019,The First Purge,Stairway To Hell Scene,tt6133466\n7oDSPSwMw5k,2018.0,5,10,2019,The First Purge,Star Spangled Murder Scene,tt6133466\n_qxAcodjpCo,2018.0,4,10,2019,The First Purge,Fire Fight Scene,tt6133466\nlCL7DI3ah40,2018.0,7,10,2019,The First Purge,Drone Strike Scene,tt6133466\nUX1-VvE01iw,2018.0,6,10,2019,The First Purge,Taking Back The Streets Scene,tt6133466\nevM3k7ep4wo,2016.0,7,9,2019,Lights Out,Diana's Lair Scene,tt4786282\nmpfBH5WLlOA,2016.0,8,9,2019,Lights Out,Trapped in the Basement Scene,tt4786282\nzn9D_4bE0hM,2016.0,5,9,2019,Lights Out,Power Outage Scene,tt4786282\njYbI8iVYCpc,2016.0,2,9,2019,Lights Out,Bump in the Night Scene,tt4786282\ntw84SFLxC_o,2016.0,3,9,2019,Lights Out,\"Red Light, No Light Scene\",tt4786282\nM-HysTegELs,2016.0,9,9,2019,Lights Out,The Final Battle Scene,tt4786282\nMZaX-RbQ7ic,2016.0,6,9,2019,Lights Out,Stay in the Light Scene,tt4786282\nnD8KtgWozeM,2016.0,1,9,2019,Lights Out,Horrifying Opening Scene,tt4786282\nNqJ6llRZg-M,2016.0,4,9,2019,Lights Out,Wrong Delivery Scene,tt4786282\nLWoKa0wYTJk,1988.0,10,10,2019,Sleepaway Camp 2: Unhappy Campers,Cabin of Corpses Scene,tt0096118\nNPmAEqlzKqE,1988.0,2,10,2019,Sleepaway Camp 2: Unhappy Campers,Say No To Drugs Scene,tt0096118\nkzxz5xezOAI,1988.0,4,10,2019,Sleepaway Camp 2: Unhappy Campers,Mare Gets Drilled Scene,tt0096118\nU_MNiopwFxs,2013.0,2,10,2019,Pain & Gain,Saving All God's Creatures Scene,tt1980209\nj0z0V2JJ5II,1988.0,5,10,2019,Sleepaway Camp 2: Unhappy Campers,Freddy & Jason vs. Leatherface Scene,tt0096118\nAxrQtWFF91k,1988.0,7,10,2019,Sleepaway Camp 2: Unhappy Campers,You Talk Too Much Scene,tt0096118\nkSaOMRXiLVA,1988.0,3,10,2019,Sleepaway Camp 2: Unhappy Campers,Panty Raid! Scene,tt0096118\nvmWm02fUJ-o,1988.0,9,10,2019,Sleepaway Camp 2: Unhappy Campers,Angel of Death Scene,tt0096118\nIqJWWBRnrH4,1988.0,1,10,2019,Sleepaway Camp 2: Unhappy Campers,The Happy Camper Song Scene,tt0096118\nnjz1p35e_EU,1988.0,8,10,2019,Sleepaway Camp 2: Unhappy Campers,Angela's Nightmare Scene,tt0096118\nAaMkmiZ9bMM,1988.0,6,10,2019,Sleepaway Camp 2: Unhappy Campers,Ally Gets Flushed Scene,tt0096118\naZbGlkGWiZc,2013.0,6,10,2019,Pain & Gain,We Made It Scene,tt1980209\n5K6sh7HZri4,2013.0,3,10,2019,Pain & Gain,The Magic Touch Scene,tt1980209\niKp5ARBBpyc,2013.0,7,10,2019,Pain & Gain,The Neighborhood Watch Scene,tt1980209\nXOfjQQT9O08,2013.0,9,10,2019,Pain & Gain,No One Calls Me an Amateur Scene,tt1980209\nZ9vRmexWHUo,2013.0,1,10,2019,Pain & Gain,The American Dream Scene,tt1980209\nhIUrt0AsTjw,2013.0,8,10,2019,Pain & Gain,Easy as Robbing a Bank Scene,tt1980209\nJnjO0v-AYFo,2013.0,5,10,2019,Pain & Gain,Killing Kershaw Scene,tt1980209\nO0fQ_rrQedE,2013.0,4,10,2019,Pain & Gain,Gangster's Paradise Scene,tt1980209\nesg4w4b2xvc,2013.0,10,10,2019,Pain & Gain,Grilling Hands Scene,tt1980209\n0OppC7vTtY0,2006.0,9,12,2019,Crank,We All Gotta Die Sometime Scene,tt0479884\nswn9_FjwmJo,2006.0,2,12,2019,Crank,You Stop You Die Scene,tt0479884\nYNBtb-8zpko,2006.0,11,12,2019,Crank,Some Pills Scene,tt0479884\nUBNLrL7RvJM,2006.0,7,12,2019,Crank,Adrenaline Pumping Scene,tt0479884\nIHDzQ29EgsY,2006.0,3,12,2019,Crank,Want To Hold Hands? Scene,tt0479884\naH6N58NST30,2006.0,6,12,2019,Crank,Oblivious Eve Scene,tt0479884\nG_ee7q8w-PU,2006.0,8,12,2019,Crank,\"Ding, Time's Up Scene\",tt0479884\nnNtl5Hv0bv0,2006.0,12,12,2019,Crank,\"Goodbye, Baby Scene\",tt0479884\nIBwJ7rFHpE8,2006.0,10,12,2019,Crank,Welcome To My Life Scene,tt0479884\nU59aJCoJLRU,2006.0,1,12,2019,Crank,Have a Nice Death Scene,tt0479884\nY6hHVWwwfPA,2006.0,4,12,2019,Crank,Juice Me Scene,tt0479884\nKVV02IJlGCQ,2006.0,5,12,2019,Crank,\"Get Back, Pig Scene\",tt0479884\n2GvyC7s3RpU,2017.0,7,10,2019,Troy: The Odyssey,Fighting The Cyclops Scene,tt5734548\nd6263F3UkWo,2017.0,9,10,2019,Troy: The Odyssey,The Slaying Of The Suitors Scene,tt5734548\nV-hOCaVISok,2017.0,10,10,2019,Troy: The Odyssey,Release the Kraken Scene,tt5734548\ny_Zo1Wg4RAM,2017.0,8,10,2019,Troy: The Odyssey,I Am The King Of Ithaca Scene,tt5734548\nFXeNdV-FTjI,2017.0,5,10,2019,Troy: The Odyssey,Breaking The Sirens' Spell Scene,tt5734548\ns_SM1Hly-uw,2017.0,4,10,2019,Troy: The Odyssey,Begging For Death Scene,tt5734548\nZ1DO7_hHqbw,2017.0,3,10,2019,Troy: The Odyssey,The Island Of Sirens Scene,tt5734548\nkcrHhDoUS1k,2017.0,1,10,2019,Troy: The Odyssey,The Sacking Of Troy Scene,tt5734548\nwnvRIdndQdk,2017.0,6,10,2019,Troy: The Odyssey,The Paths Of The Dead Scene,tt5734548\nLVbkD8ZogwA,2017.0,2,10,2019,Troy: The Odyssey,The Death Of Achilles Scene,tt5734548\nl1X4RDCFmsE,2011.0,3,10,2019,Cowboys & Aliens,UFO Attack Scene,tt0409847\n4d9fx7umXgg,2013.0,6,10,2019,47 Ronin,The Swords of the Tengu Scene,tt1335975\nqC_pkxnYQfk,2013.0,7,10,2019,47 Ronin,Fiery Ambush Scene,tt1335975\nSroZoan9faw,2013.0,8,10,2019,47 Ronin,Storming The Castle Scene,tt1335975\nFZOF6ePjVcM,2013.0,3,10,2019,47 Ronin,Under The Witch's Spell Scene,tt1335975\nffmSFNEG6pM,2013.0,2,10,2019,47 Ronin,Duel To The Death Scene,tt1335975\nLoBAmFanDhY,2013.0,5,10,2019,47 Ronin,Rescuing The Ronin Scene,tt1335975\nT4WNCHc_MmQ,2013.0,1,10,2019,47 Ronin,Killing The Kirin Scene,tt1335975\nEEaUjfxQQFI,2013.0,10,10,2019,47 Ronin,The Seppuku Ceremony Scene,tt1335975\nVmT0mZH5ivo,2013.0,4,10,2019,47 Ronin,Escaping the Slave Pits Scene,tt1335975\n74DUcGnFH8g,2013.0,9,10,2019,47 Ronin,Samurai vs. Dragon Scene,tt1335975\nS6rgOlhmAHo,2011.0,1,10,2019,Cowboys & Aliens,Not Your Lucky Day Scene,tt0409847\nr1md9sIev2M,2011.0,7,10,2019,Cowboys & Aliens,Blowing Up The Mothership Scene,tt0409847\nI21bX4cEhRM,2011.0,8,10,2019,Cowboys & Aliens,We Got One Scene,tt0409847\nGfLc8Z4_lFw,2011.0,6,10,2019,Cowboys & Aliens,Alien Resurrection Scene,tt0409847\n1zQvfrTK6Y8,2011.0,5,10,2019,Cowboys & Aliens,Ella's Abduction Scene,tt0409847\n5dCI82ffuIc,2011.0,2,10,2019,Cowboys & Aliens,Arresting the Stranger Scene,tt0409847\nxW4xczuVMq4,2011.0,9,10,2019,Cowboys & Aliens,Freeing The Prisoners Scene,tt0409847\nAbV04B_yV34,2011.0,10,10,2019,Cowboys & Aliens,Explosive Encounter Scene,tt0409847\nxsM9jr1e4F4,2011.0,4,10,2019,Cowboys & Aliens,Night Terror Scene,tt0409847\nBkNCfTfR6fQ,1977.0,3,11,2019,Joyride,Paying for It Scene,tt0076239\npM87ObBNOk4,1977.0,11,11,2019,Joyride,False Alarm Scene,tt0076239\nemW6qKMxIUU,1977.0,8,11,2019,Joyride,The Getaway Scene,tt0076239\nxsK7WF3jWI4,1977.0,1,11,2019,Joyride,Dancing with Another Man Scene,tt0076239\nN26K5UeOTPE,1977.0,6,11,2019,Joyride,The Pissing Contest Scene,tt0076239\nFaX0hq8BZc8,1977.0,10,11,2019,Joyride,Run for the Border Scene,tt0076239\nJj6H6tJvRjU,1977.0,7,11,2019,Joyride,The Bank Job Scene,tt0076239\njlcZPO2FhGE,1977.0,2,11,2019,Joyride,I Don't Pay for It Scene,tt0076239\nRM0NW8MF9wY,1977.0,5,11,2019,Joyride,Wrecking the Car Scene,tt0076239\nf-DiniX_1mI,1977.0,4,11,2019,Joyride,Target Practice Scene,tt0076239\n96dlvQbYEds,1977.0,9,11,2019,Joyride,Stealing a Camera Scene,tt0076239\nBshBOgRLN28,2011.0,2,6,2019,200 mph,The Big Crash Scene,tt1823051\n9tx1z5_iVeo,2011.0,3,6,2019,200 mph,Fight At The Funeral Scene,tt1823051\n27ARVhE-a58,2011.0,1,6,2019,200 mph,Sepulveda Death Race Scene,tt1823051\nG6PcFmNCQpA,2011.0,5,6,2019,200 mph,Forced Into Stripping Scene,tt1823051\nHxfzrUYFsLk,2011.0,4,6,2019,200 mph,Rush Hour Horror Scene,tt1823051\nopXI29YEI5s,2011.0,6,6,2019,200 mph,The Final Race Scene,tt1823051\n9YJRtvamIjU,2016.0,3,10,2019,Arrival,The Nature of a Question Scene,tt2543164\nC2IvmQI_efs,2016.0,7,10,2019,Arrival,Death Process Scene,tt2543164\n2kt3CmzYGu4,2016.0,9,10,2019,Arrival,You Changed My Mind Scene,tt2543164\nsg39yDRzklg,2016.0,8,10,2019,Arrival,Past and Present in the Future Scene,tt2543164\nG6uZp-33qcY,2016.0,2,10,2019,Arrival,The Heptapods Speak Scene,tt2543164\nfOFGL7-qmqs,2016.0,10,10,2019,Arrival,You Have the Weapon Scene,tt2543164\nRd_gE_G9R1k,2016.0,6,10,2019,Arrival,Sabotaged Diplomacy Scene,tt2543164\ni6AtG8BdONE,2016.0,5,10,2019,Arrival,The Many Things We Don't Know Scene,tt2543164\ndQlExOgF5eU,2016.0,1,10,2019,Arrival,First Contact Scene,tt2543164\nmBdWBpsA5eQ,2016.0,4,10,2019,Arrival,A Proper Introduction Scene,tt2543164\n_EjWpjky5lU,2000.0,3,12,2019,Supernova,Space Survival Scene,tt0134983\nvrEjev5DoXc,2000.0,7,12,2019,Supernova,Left Behind Scene,tt0134983\nfgDgZGePcwk,2000.0,2,12,2019,Supernova,Dimension Jump Scene,tt0134983\nVILmrL5jP7s,2000.0,8,12,2019,Supernova,Infinite Loop Scene,tt0134983\nW-7hoLpXFXE,2000.0,5,12,2019,Supernova,This Is Your Worst Nightmare Scene,tt0134983\niSio5xjSYqs,2000.0,10,12,2019,Supernova,Nick's Revenge Scene,tt0134983\np-tvo3Hz3nw,2000.0,11,12,2019,Supernova,\"Say Goodbye, Karl Scene\",tt0134983\nrUbY9uikvWc,2000.0,6,12,2019,Supernova,The Opportunity of a Lifetime Scene,tt0134983\nedhJGqAjG7s,2000.0,12,12,2019,Supernova,Welcome Home Scene,tt0134983\nDC_6r5VR5_U,2000.0,4,12,2019,Supernova,A Pear of Lovers Scene,tt0134983\nS_QFbRtEF7I,2000.0,9,12,2019,Supernova,Shoot For The Stars Scene,tt0134983\n86xtQC4rp98,2000.0,1,12,2019,Supernova,Deep Space Doctor Scene,tt0134983\nGfje9_QRQbk,1968.0,5,6,2019,2001: A Space Odyssey,Beyond the Infinite Scene,tt0062622\nXDO8OYnmkNY,1968.0,2,6,2019,2001: A Space Odyssey,Hal Reads Lips Scene,tt0062622\nWy4EfdnMZ5g,1968.0,3,6,2019,2001: A Space Odyssey,\"I'm Sorry, Dave Scene\",tt0062622\n_XuDmoP5scY,1968.0,6,6,2019,2001: A Space Odyssey,Star Child Scene,tt0062622\navjdKTqiVvQ,1968.0,1,6,2019,2001: A Space Odyssey,From Bone to Satellite Scene,tt0062622\nHH37JTBpi2A,1968.0,4,6,2019,2001: A Space Odyssey,I'm Afraid Scene,tt0062622\n96IU0EisCes,1976.0,9,12,2019,Futureworld,The Master Plan Revealed Scene,tt0074559\nBkZ6lFCzAwM,1976.0,8,12,2019,Futureworld,They've All Been Replaced! Scene,tt0074559\nM4LidfkbW68,1976.0,7,12,2019,Futureworld,The Gunslinger Returns Scene,tt0074559\nNBfCeTdLDbQ,1976.0,1,12,2019,Futureworld,Discussing the Malfunctions Scene,tt0074559\nyR3zsO8pCMw,1976.0,10,12,2019,Futureworld,Chuck Kills Harry Scene,tt0074559\nQC5re6k5nLk,1976.0,3,12,2019,Futureworld,Gonna Have Sex With a Robot? Scene,tt0074559\nCq2Wzdd_PYs,1976.0,6,12,2019,Futureworld,Tracy's Brain Images Scene,tt0074559\nWhT70B0c7TE,1976.0,12,12,2019,Futureworld,Escaping Delos Scene,tt0074559\nuDAIoSeEoZA,1976.0,2,12,2019,Futureworld,Calling a Truce Scene,tt0074559\nBuPdA_CDITw,1976.0,5,12,2019,Futureworld,Seducing A Robot Scene,tt0074559\nhfzsR-3PLcg,1976.0,4,12,2019,Futureworld,Rock 'Em Sock 'Em Robots Scene,tt0074559\nS4WqfcnVT2g,1976.0,11,12,2019,Futureworld,Fighting Himself Scene,tt0074559\nR3KOKpvoLIo,2011.0,5,10,2019,The Adventures of Tintin,Duel to the Depths Scene,tt0983193\n93U_80mhzVk,2011.0,4,10,2019,The Adventures of Tintin,Crashing in the Desert Scene,tt0983193\nUsM7OBEMqnk,2011.0,10,10,2019,The Adventures of Tintin,Sword Fight on the Docks Scene,tt0983193\nkXXnZuu72DA,2011.0,1,10,2019,The Adventures of Tintin,Snowy to the Rescue Scene,tt0983193\noAjKMLcDlfc,2011.0,8,10,2019,The Adventures of Tintin,The Motorcycle Chase Scene,tt0983193\nSHaByZZvfFE,2011.0,3,10,2019,The Adventures of Tintin,Burp-Powered Plane Scene,tt0983193\ngQ48-nl8wwc,2011.0,9,10,2019,The Adventures of Tintin,After That Bird! Scene,tt0983193\nxUHjhz5U1bA,2011.0,7,10,2019,The Adventures of Tintin,An Explosive Duel Scene,tt0983193\nO7S9X8e2uhA,2011.0,6,10,2019,The Adventures of Tintin,Drunken Pirate Hallucination Scene,tt0983193\n02AyhONR_DQ,2011.0,2,10,2019,The Adventures of Tintin,Get the Key! Scene,tt0983193\nRRDbQPvtAxY,2015.0,3,10,2019,The SpongeBob Movie: Sponge Out of Water,Inside Spongebob's Mind Scene,tt2279373\nH92n6qsNHbY,2015.0,9,10,2019,The SpongeBob Movie: Sponge Out of Water,PlankTON Vs. BurgerBeard Scene,tt2279373\nRxyMbaDX22g,2015.0,7,10,2019,The SpongeBob Movie: Sponge Out of Water,Butt Kicking Scene,tt2279373\ngs3GHB24IaM,2015.0,4,10,2019,The SpongeBob Movie: Sponge Out of Water,A Sponge in Time Scene,tt2279373\n32OSGQmjP1Y,2015.0,1,10,2019,The SpongeBob Movie: Sponge Out of Water,Food Fight Scene,tt2279373\nctjucF9fiFw,2015.0,5,10,2019,The SpongeBob Movie: Sponge Out of Water,Bubbles the Dolphin Scene,tt2279373\n5TG1Wh04D1g,2015.0,10,10,2019,The SpongeBob Movie: Sponge Out of Water,Dolphin Rap Battle Scene,tt2279373\nW3x0ZxDSF38,2015.0,6,10,2019,The SpongeBob Movie: Sponge Out of Water,The Real World Scene,tt2279373\n3FKMUa7vCZU,2015.0,2,10,2019,The SpongeBob Movie: Sponge Out of Water,Spongebob Laughs Scene,tt2279373\ntPJJlCdrJ0M,2015.0,8,10,2019,The SpongeBob Movie: Sponge Out of Water,Justice Is Soft Served Scene,tt2279373\nwoSj0M9Decw,2017.0,6,10,2019,Monster Trucks,Train Hopping Scene,tt3095734\nYmC-BayMaDg,2017.0,2,10,2019,Monster Trucks,Creech's First Ride Scene,tt3095734\niNQYIdE6DOg,2017.0,9,10,2019,Monster Trucks,Giant Truck Jump Scene,tt3095734\n4QR_9BehbWc,2017.0,7,10,2019,Monster Trucks,Creech's Family Scene,tt3095734\nW1w1qcvdTi8,2017.0,1,10,2019,Monster Trucks,Meeting Creech Scene,tt3095734\nxNNd9Uc9J_8,2017.0,5,10,2019,Monster Trucks,Oil Town Chase Scene,tt3095734\nD_N9S0bAiWI,2017.0,10,10,2019,Monster Trucks,Monster Jam! Scene,tt3095734\nuioT_3dqzXc,2017.0,8,10,2019,Monster Trucks,Quarry Chase Scene,tt3095734\nN27ZYQKRYnQ,2017.0,3,10,2019,Monster Trucks,Monster Bros! Scene,tt3095734\nIg6hIs0jsjg,2017.0,4,10,2019,Monster Trucks,Hyperactive Truck Scene,tt3095734\njBMb3PU-2-w,2012.0,2,10,2019,Golden Winter,Puppy Escape! Scene,tt2202750\nR07vQvbALWk,2012.0,4,10,2019,Golden Winter,The Wrong Side of the Snacks Scene,tt2202750\nFJ_NU1sSk5A,2012.0,3,10,2019,Golden Winter,Break-In While Breaking Out Scene,tt2202750\n3XX9d9BO5qs,2012.0,6,10,2019,Golden Winter,Puppies to the Rescue! Scene,tt2202750\nFqtEB6j5jEQ,2012.0,5,10,2019,Golden Winter,A Wagonful Of Puppies Scene,tt2202750\njhMCxDi0Xs4,2012.0,9,10,2019,Golden Winter,The Puppies Save Christmas! Scene,tt2202750\n1rVMJNSZHZg,2012.0,7,10,2019,Golden Winter,Meet Uncle Frankie Scene,tt2202750\nRruqW_fwhEg,2012.0,1,10,2019,Golden Winter,Puppies Playing Tag Scene,tt2202750\noKdCaLj8b5o,2012.0,10,10,2019,Golden Winter,A Puppy Christmas Scene,tt2202750\nIRdxr5ilGfw,2012.0,8,10,2019,Golden Winter,Frankie Steals Christmas Scene,tt2202750\nfn9gU50qXvU,2017.0,4,10,2019,CarGo,Destruction Derby Scene,tt3860916\ncqUpOLpJ1iU,2017.0,6,10,2019,CarGo,Carshank Redemption Scene,tt3860916\nq_Gp2jL-V6I,2017.0,5,10,2019,CarGo,I Wanna Go Where Cars Go Scene,tt3860916\no2GcoDvPVuA,2017.0,7,10,2019,CarGo,The Spirit of the Forest Scene,tt3860916\ny8cL18qVz6E,2017.0,9,10,2019,CarGo,Where Cars Go Scene,tt3860916\nqTwgG6t94Ko,2017.0,2,10,2019,CarGo,I'm Just a Teenage Car Scene,tt3860916\nITaBaJEJLaA,2017.0,10,10,2019,CarGo,Revenge of the Monster Truck Scene,tt3860916\nUpYME9Wz8Xc,2017.0,8,10,2019,CarGo,We Are the Clunkers Scene,tt3860916\nl12dwyHThc8,2017.0,1,10,2019,CarGo,Break Some Rules Scene,tt3860916\nE9smjLi8m28,2017.0,3,10,2019,CarGo,Father/Son Car-versation Scene,tt3860916\nCm5NLiqmVtk,2010.0,5,10,2019,The Last Airbender,Zuko vs. Katara Scene,tt0938283\nKMOr9s3kfM0,2010.0,10,10,2019,The Last Airbender,The Avatar State Scene,tt0938283\nCYGCwkmaa1s,2010.0,4,10,2019,The Last Airbender,Aang vs. Master Pakku Scene,tt0938283\nNqt6-rPGGEo,2010.0,1,10,2019,The Last Airbender,The Avatar Escapes Scene,tt0938283\nPx2L96GVrKs,2010.0,9,10,2019,The Last Airbender,Uncle Iroh vs. Commander Zhao Scene,tt0938283\nkU74wgKk8lo,2010.0,7,10,2019,The Last Airbender,The Koi Spirits Scene,tt0938283\nbvnOqxRHjuc,2010.0,6,10,2019,The Last Airbender,Aang vs. Zuko Scene,tt0938283\nvejLIHky2HE,2010.0,8,10,2019,The Last Airbender,Princess Yue's Sacrifice Scene,tt0938283\nGif5ZnaOOQ8,2010.0,3,10,2019,The Last Airbender,The Blue Spirit Fight Scene,tt0938283\nHR2kbOK8i6I,2010.0,2,10,2019,The Last Airbender,Earthbenders Revolt! Scene,tt0938283\nJ-fa9awvFBY,1981.0,6,10,2019,Excalibur,Where Hides Evil? Scene,tt0082348\n3mNDakZu1JA,1981.0,7,10,2019,Excalibur,Merlin and Morgana Scene,tt0082348\n2C8fB8p6crY,1981.0,3,10,2019,Excalibur,The Lady of the Lake Scene,tt0082348\nbKbZTFrWing,1981.0,9,10,2019,Excalibur,Murdering Morgana Scene,tt0082348\n61nCIyBCmjg,1981.0,8,10,2019,Excalibur,The Holy Grail Scene,tt0082348\nAf-N8CLLoqU,1981.0,2,10,2019,Excalibur,King Arthur vs. Lancelot Scene,tt0082348\n7ZEqMqBLOOI,1981.0,10,10,2019,Excalibur,The Final Battle Scene,tt0082348\nH2hbov4Rb6g,1981.0,4,10,2019,Excalibur,The Knights of the Round Table Scene,tt0082348\nXAIeh0YarFs,1981.0,1,10,2019,Excalibur,Arthur's Knighthood Scene,tt0082348\n4gO9OFumO8U,1981.0,5,10,2019,Excalibur,Wedding Knight Scene,tt0082348\n7dgOcvrxxac,1935.0,12,12,2019,A Midsummer Night's Dream,Puck's Epilogue Scene,tt0026714\ncv8yjJQg4Nc,1935.0,9,12,2019,A Midsummer Night's Dream,Hermia Is Shunned by All Scene,tt0026714\n31vkz05skoc,1935.0,5,12,2019,A Midsummer Night's Dream,What Fools These Mortals Be Scene,tt0026714\np6IvB-2jYtY,1935.0,7,12,2019,A Midsummer Night's Dream,Titania Falls In Love Scene,tt0026714\nXurw2Ar9NNk,1935.0,2,12,2019,A Midsummer Night's Dream,Oberon Listens In Scene,tt0026714\n9dN7jGSbsVE,1935.0,3,12,2019,A Midsummer Night's Dream,The Love-In-Idleness Flower Scene,tt0026714\n2GFzqqC8iUg,1935.0,8,12,2019,A Midsummer Night's Dream,Two at Once Woo One Scene,tt0026714\nU0HHhK_MrWg,1935.0,1,12,2019,A Midsummer Night's Dream,Lysander Plans to Elope Scene,tt0026714\nwsFQrTAEs7A,1935.0,11,12,2019,A Midsummer Night's Dream,The Lovers Wake Scene,tt0026714\nyJ_3DswWIeI,1935.0,10,12,2019,A Midsummer Night's Dream,Oberon Lifts Titania's Spell Scene,tt0026714\nsZ6t_-wKImw,1935.0,6,12,2019,A Midsummer Night's Dream,Transformed into an Ass Scene,tt0026714\n9nwSOUvKyys,1935.0,4,12,2019,A Midsummer Night's Dream,Puck Makes a Mistake Scene,tt0026714\n585p7sJhiFk,2018.0,6,10,2019,Mission: Impossible Fallout,Hunley's Death Scene,tt4912910\nmqkYeGeQ1f4,2018.0,3,10,2019,Mission: Impossible Fallout,Prison Breakout Scene,tt4912910\n0pUMzDEV-DE,2018.0,1,10,2019,Mission: Impossible Fallout,The Halo Jump Scene,tt4912910\negwR6gS9UMM,2018.0,2,10,2019,Mission: Impossible Fallout,Bathroom Brawl Scene,tt4912910\nHsMVFxZ43iU,2018.0,7,10,2019,Mission: Impossible Fallout,I'm Jumping Out A Window! Scene,tt4912910\nWLKpgzXHKLA,2018.0,9,10,2019,Mission: Impossible Fallout,Helicopter Collision Scene,tt4912910\nVeh9KV9fm6s,2018.0,5,10,2019,Mission: Impossible Fallout,Hot Pursuit Scene,tt4912910\n14zxmnIDoLs,2018.0,8,10,2019,Mission: Impossible Fallout,Helicopter Hijacking Scene,tt4912910\nkvzzBebEAHQ,2018.0,10,10,2019,Mission: Impossible Fallout,Cliffside Showdown Scene,tt4912910\nQwx9wZgxUoQ,2018.0,4,10,2019,Mission: Impossible Fallout,Motorcycle Chase Scene,tt4912910\nwn_8YBvVugo,2014.0,6,10,2019,Jack Ryan: Shadow Recruit,Captured by Cossacks Scene,tt1205537\nWC7TpzxGktk,2014.0,3,10,2019,Jack Ryan: Shadow Recruit,Awaking the Sleeper Agents Scene,tt1205537\n8n6mcd5Odj8,2014.0,5,10,2019,Jack Ryan: Shadow Recruit,Shot in the Face Scene,tt1205537\nGQYCNF_zoDM,2014.0,7,10,2019,Jack Ryan: Shadow Recruit,Lightbulb Torture Scene,tt1205537\n8NZ9CLszc_g,2014.0,2,10,2019,Jack Ryan: Shadow Recruit,Hotel Assassin Scene,tt1205537\ntuusFUTcCO8,2014.0,1,10,2019,Jack Ryan: Shadow Recruit,Helicopter Crash Scene,tt1205537\nrelfjwjhscE,2014.0,10,10,2019,Jack Ryan: Shadow Recruit,\"Fake Cops, Real Terrorists Scene\",tt1205537\nnEGbOGGiENU,2014.0,8,10,2019,Jack Ryan: Shadow Recruit,Follow That Police Van Scene,tt1205537\nfKaiHVTL5nQ,2014.0,9,10,2019,Jack Ryan: Shadow Recruit,Sewer Fight Scene,tt1205537\n0zsUFpPjt8g,2014.0,4,10,2019,Jack Ryan: Shadow Recruit,Inebriated Infiltration Scene,tt1205537\nuqfD6UPvkR8,2013.0,3,10,2019,100 Degrees Below Zero,No Other Way Out Scene,tt2538128\n9cw9NI4BKnQ,2013.0,9,10,2019,100 Degrees Below Zero,Paris is Freezing Scene,tt2538128\nfD3pjFbgcyc,2013.0,7,10,2019,100 Degrees Below Zero,The English Channel Escape Scene,tt2538128\nbK_2x293Urw,2013.0,6,10,2019,100 Degrees Below Zero,Duck and Cover Scene,tt2538128\ntRuqSw7mX5A,2013.0,1,10,2019,100 Degrees Below Zero,A Change of Plans Scene,tt2538128\npHH7NwBwxM0,2013.0,5,10,2019,100 Degrees Below Zero,You Can't Leave Me Here Scene,tt2538128\n_NEfPBtUqS4,2013.0,10,10,2019,100 Degrees Below Zero,The Final Rescue Scene,tt2538128\n0ZkuRt2ZKRE,2013.0,8,10,2019,100 Degrees Below Zero,Crash Collision Scene,tt2538128\nh08whCp_tL4,2013.0,4,10,2019,100 Degrees Below Zero,All or Nothing Scene,tt2538128\n5zzYjkS_iMA,2013.0,2,10,2019,100 Degrees Below Zero,Earthquake In Paris Scene,tt2538128\ny64QBxHJiqI,1991.0,10,10,2019,Bill & Ted's Bogus Journey,Let's Rock! Scene,tt0101452\nR81ZAKQzJ5Q,1991.0,1,10,2019,Bill & Ted's Bogus Journey,Evil Bill and Ted Scene,tt0101452\npLqoZtmyxxk,1991.0,8,10,2019,Bill & Ted's Bogus Journey,Two Stations Merge Scene,tt0101452\n_ZwkQIBp4TA,1991.0,4,10,2019,Bill & Ted's Bogus Journey,The Seance Scene,tt0101452\nEGbVLHy9Lvw,1991.0,7,10,2019,Bill & Ted's Bogus Journey,Bill and Ted Talk to God Scene,tt0101452\n06L5y4Z9KcE,1991.0,3,10,2019,Bill & Ted's Bogus Journey,I Totally Possessed My Dad Scene,tt0101452\nS-WVZ-d28yg,1991.0,9,10,2019,Bill & Ted's Bogus Journey,Good Versus Evil Scene,tt0101452\nvLt5ei598CY,1991.0,5,10,2019,Bill & Ted's Bogus Journey,The Long Fall to Hell Scene,tt0101452\ntktoOXBmflI,1991.0,6,10,2019,Bill & Ted's Bogus Journey,You Have Sunk My Battleship! Scene,tt0101452\nOAtwRoFSlOE,1991.0,2,10,2019,Bill & Ted's Bogus Journey,We're Dead Dude Scene,tt0101452\nOroiRWIR2gQ,1994.0,2,8,2019,\"The Adventures of Priscilla, Queen of the Desert\",People Like You Scene,tt0109045\nZreZzV7y18Y,1994.0,3,8,2019,\"The Adventures of Priscilla, Queen of the Desert\",Opera Atop a Bus Scene,tt0109045\np2QiCFAQ-qQ,1994.0,1,8,2019,\"The Adventures of Priscilla, Queen of the Desert\",Christening Priscilla,tt0109045\nX5dtBoyZ33o,1994.0,5,8,2019,\"The Adventures of Priscilla, Queen of the Desert\",Ping-Pong Scene,tt0109045\nkevJJDQloNE,1994.0,7,8,2019,\"The Adventures of Priscilla, Queen of the Desert\",Finally Scene,tt0109045\nv0gGWiRkjYM,1994.0,4,8,2019,\"The Adventures of Priscilla, Queen of the Desert\",I Will Survive Scene,tt0109045\nec9h1IjltJg,1994.0,8,8,2019,\"The Adventures of Priscilla, Queen of the Desert\",The Mountain Top Scene,tt0109045\n9nc12yOA4jM,1994.0,6,8,2019,\"The Adventures of Priscilla, Queen of the Desert\",Now You're F***ed Scene,tt0109045\nIOV2-bbOHts,2012.0,8,10,2019,Celebrity Sex Tape,Meeting Mellony Scene,tt2136808\nGpc4_pqXMVo,2012.0,7,10,2019,Celebrity Sex Tape,Slap Fight Scene,tt2136808\nfin0EY5-n_s,2012.0,2,10,2019,Celebrity Sex Tape,The Morning After Scene,tt2136808\nwCmL4G9TYMk,2012.0,3,10,2019,Celebrity Sex Tape,Caught Wet Handed Scene,tt2136808\n59-Yznur6tg,2012.0,5,10,2019,Celebrity Sex Tape,Comic-Con Concubine Scene,tt2136808\nmr0RZ7hUrpU,2012.0,6,10,2019,Celebrity Sex Tape,An Indecent Proposal Scene,tt2136808\nZb10goz7guA,2012.0,1,10,2019,Celebrity Sex Tape,Caught White Handed Scene,tt2136808\nnX4t6GMjNqg,2012.0,9,10,2019,Celebrity Sex Tape,Dominating Her Agent Scene,tt2136808\nBSmKQGvL9ho,2012.0,4,10,2019,Celebrity Sex Tape,Agent Of Death Scene,tt2136808\n2JweD72Ains,2012.0,10,10,2019,Celebrity Sex Tape,A Happy Ending Scene,tt2136808\nTmALN8vdU0s,1964.0,2,11,2019,A Shot in the Dark,Sneak Attack Scene,tt0058586\nQsSD6_V2IYk,1964.0,4,11,2019,A Shot in the Dark,Billiards Buffoonery Scene,tt0058586\nE3yX8lT2UAI,1964.0,8,11,2019,A Shot in the Dark,Naked Traffic Jam Scene,tt0058586\nZjPPfwVPTDE,1964.0,6,11,2019,A Shot in the Dark,Naked Right Down To Your Mustache Scene,tt0058586\neRNCIg86DKs,1964.0,11,11,2019,A Shot in the Dark,Everything I Do Is Carefully Planned Scene,tt0058586\nxYfxboRtKJE,1964.0,7,11,2019,A Shot in the Dark,Dead Dudu Scene,tt0058586\n0oFdsgLP8n8,1964.0,3,11,2019,A Shot in the Dark,Nothing Matters But The Facts Scene,tt0058586\nTIu_CYwemFo,1964.0,9,11,2019,A Shot in the Dark,Dreyfus Cracks Scene,tt0058586\nsSRmhI94MUs,1964.0,5,11,2019,A Shot in the Dark,Right Off Cue Scene,tt0058586\nN9d-c9ooO7s,1964.0,1,11,2019,A Shot in the Dark,Clouseau Catches Fire Scene,tt0058586\nebkY0u1-NKk,1964.0,10,11,2019,A Shot in the Dark,A Bump Upon The Head Scene,tt0058586\nDdpMl3_vPmQ,1978.0,12,12,2019,Revenge of the Pink Panther,Clouseau Gets Rewarded Scene,tt0078163\ndX0dcSJE7ek,1978.0,9,12,2019,Revenge of the Pink Panther,The Great Balls Scene,tt0078163\nWT6DQ_NO5zw,1978.0,10,12,2019,Revenge of the Pink Panther,Shipyard Chase Scene,tt0078163\nCARc1uUq1lA,1978.0,8,12,2019,Revenge of the Pink Panther,Salty Swedish Sea Dog Scene,tt0078163\nnAuz36A1zG0,1978.0,4,12,2019,Revenge of the Pink Panther,Taking Out Chong Scene,tt0078163\n0z-FtAMg6Vw,1978.0,6,12,2019,Revenge of the Pink Panther,The Silver Hornet Scene,tt0078163\nshE7b_6NNpU,1978.0,3,12,2019,Revenge of the Pink Panther,Meeting Mr. Chong Scene,tt0078163\nBEKzJzaZ0Fk,1978.0,2,12,2019,Revenge of the Pink Panther,Office On Fire Scene,tt0078163\nq8HcMk_IimM,1978.0,11,12,2019,Revenge of the Pink Panther,Fireworks Factory Fire Fight Scene,tt0078163\nhaX0ACElUQc,1978.0,1,12,2019,Revenge of the Pink Panther,A Bomb! Scene,tt0078163\nXRtuUFYTctA,1978.0,5,12,2019,Revenge of the Pink Panther,Dropped Call Scene,tt0078163\noc8bWybEFFI,1978.0,7,12,2019,Revenge of the Pink Panther,Chinese Nookie Factory Scene,tt0078163\nUmynxNlSRaE,1958.0,4,12,2019,It! The Terror From Beyond Space,Strange Noises Scene,tt0051786\nIm39PGAb82I,1958.0,11,12,2019,It! The Terror From Beyond Space,Popping the Airlock Scene,tt0051786\nQbOo_FctFu4,1958.0,10,12,2019,It! The Terror From Beyond Space,What About Bob? Scene,tt0051786\n18ARBQLResg,1958.0,5,12,2019,It! The Terror From Beyond Space,Into the Air Duct Scene,tt0051786\nYPIfHEdHjHI,1958.0,3,12,2019,It! The Terror From Beyond Space,That Kind of Monster Scene,tt0051786\n7vWLiI04VCw,1958.0,7,12,2019,It! The Terror From Beyond Space,Nothing Stops Him Scene,tt0051786\ngPJFxEvmHpQ,1958.0,8,12,2019,It! The Terror From Beyond Space,Venturing Outside Scene,tt0051786\nT69FlogsAGI,1958.0,2,12,2019,It! The Terror From Beyond Space,It Creeps In Before Blast Off Scene,tt0051786\n3reg2k9xS9k,1958.0,1,12,2019,It! The Terror From Beyond Space,The Sole Survivor Scene,tt0051786\n2gzVWIUhUOg,1958.0,9,12,2019,It! The Terror From Beyond Space,Playing with Fire Scene,tt0051786\nCsOM7mptOLM,1958.0,6,12,2019,It! The Terror From Beyond Space,The Crew Fights Back Scene,tt0051786\n5W_sktmZuzI,1958.0,12,12,2019,It! The Terror From Beyond Space,Another Name for Mars Is Death Scene,tt0051786\nyNmBX5mZvRw,2017.0,5,10,2019,The 5th Kind,Knife Attack Scene,tt5160954\nh36wtoBcAS8,2017.0,1,10,2019,The 5th Kind,How to Use Rope Scene,tt5160954\nnPJFSx8RTzo,2017.0,2,10,2019,The 5th Kind,Natural Bottle Opener Scene,tt5160954\nj_txRPwTvpk,2017.0,6,10,2019,The 5th Kind,Alien Mind Warp Scene,tt5160954\n0z9b9_n8-Ek,2017.0,8,10,2019,The 5th Kind,Possessed by an Alien Scene,tt5160954\n6KYxDFGC2hE,2017.0,4,10,2019,The 5th Kind,Late Night Camera Confessions Scene,tt5160954\n1lxY4Sc9eNg,2017.0,7,10,2019,The 5th Kind,Forest of Fear Scene,tt5160954\nQBUTO2RVjXU,2017.0,10,10,2019,The 5th Kind,Aliens Attack Los Vegas Scene,tt5160954\nWcmMx1_lQmA,2017.0,3,10,2019,The 5th Kind,Wanna See How to Kill Something? Scene,tt5160954\n7RSJehegfZw,2017.0,9,10,2019,The 5th Kind,Abducted by Aliens Scene,tt5160954\n5RKld6BGJA4,2016.0,7,10,2019,Trolls,I'm Coming Out! Scene,tt1679335\nEn7TapBA84M,2016.0,6,10,2019,Trolls,Cloud Guy Scene,tt1679335\nwwnqJH8OF-I,2016.0,3,10,2019,Trolls,Party Pooper Scene,tt1679335\n9hPgjW2ou9E,2016.0,10,10,2019,Trolls,Can't Stop the Feeling! Scene,tt1679335\nwWRnv1V8iUY,2016.0,1,10,2019,Trolls,The Last tice Scene,tt1679335\n3Y-pMJ4IcTY,2016.0,9,10,2019,Trolls,True Colors Scene,tt1679335\nDNHmujbuC74,2016.0,8,10,2019,Trolls,Love on Rollerskates Scene,tt1679335\n9nOc2GqCQ2Y,2016.0,2,10,2019,Trolls,Move Your Feet / D.A.N.C.E. Scene,tt1679335\ngtHhlD6p8BY,2016.0,4,10,2019,Trolls,The Light Festival Scene,tt1679335\n7aYOGUPabd8,2016.0,5,10,2019,Trolls,Get Back Up Again Scene,tt1679335\n4UC_5gXVXUk,2017.0,10,10,2019,Space Guardians,Empty Your Mind Scene,tt8560130\n_f7p28YFgvc,2017.0,1,10,2019,Space Guardians,You've Failed Every Test Scene,tt8560130\nrpPm4pAJQbc,2017.0,7,10,2019,Space Guardians,Blast Off! Scene,tt8560130\n0N7ilB9wX3o,2017.0,5,10,2019,Space Guardians,Tacos Are Everywhere Scene,tt8560130\nnc0LwkqYGpM,2017.0,3,10,2019,Space Guardians,Crazy Robo Cat Scene,tt8560130\ngq6JKq3Q_uw,2017.0,9,10,2019,Space Guardians,A Galaxy of Tacos Scene,tt8560130\nxYHBAXUJ-Zs,2017.0,2,10,2019,Space Guardians,Galactic Samurai Training Scene,tt8560130\nDKtupzAQYv4,2017.0,6,10,2019,Space Guardians,Getting Vaporized Scene,tt8560130\nG8FhdcsVB_o,2017.0,4,10,2019,Space Guardians,The Space-Time Machine Scene,tt8560130\nkdbRwpxZHJY,2017.0,8,10,2019,Space Guardians,I'm Not Really Even Here Scene,tt8560130\n0yngsYrBCLg,2017.0,7,10,2019,Easter Bunny Adventure,The Goose With The Golden Eggs Scene,tt6408946\nWcsyV7eMrGI,2017.0,9,10,2019,Easter Bunny Adventure,The Tortoise & The Hare Scene,tt6408946\nSuSUwDgtq1g,2017.0,8,10,2019,Easter Bunny Adventure,Hogging Stories Scene,tt6408946\nxsHxWhCydMI,2017.0,2,10,2019,Easter Bunny Adventure,The Wolf & The Kid Scene,tt6408946\nxwfJyzB6dow,2017.0,4,10,2019,Easter Bunny Adventure,A Kindness Is Never Wasted Scene,tt6408946\nrS-P78D5US4,2017.0,6,10,2019,Easter Bunny Adventure,Frida the Frog Scene,tt6408946\n1maNhuFVhmk,2017.0,3,10,2019,Easter Bunny Adventure,Stories from the Bull Scene,tt6408946\nmsSsPzKVzW0,2017.0,5,10,2019,Easter Bunny Adventure,The Boy Who Cried Wolf Scene,tt6408946\nrYS9mUCFOAk,2017.0,10,10,2019,Easter Bunny Adventure,Evil Needs No Excuse Scene,tt6408946\nAfwy5S9__0E,2017.0,1,10,2019,Easter Bunny Adventure,The Rat & The Elephant Scene,tt6408946\n8fizKw4z9fI,2018.0,3,7,2019,Zoo Wars,Boo Boo Uses The Sauce Scene,tt9004516\nJ03m0CzUvJU,2016.0,10,10,2019,Star Paws,Time Paradox Scene,tt5936438\nxI-ehlRwN8o,2005.0,10,10,2019,Wallace & Gromit: The Curse of the Were-Rabbit,Rabbit Rescue Scene,tt0312004\naTxu-zthTgs,2005.0,9,10,2019,Wallace & Gromit: The Curse of the Were-Rabbit,Dogfight Scene,tt0312004\n5Tqsh3b_lb4,2005.0,3,10,2019,Wallace & Gromit: The Curse of the Were-Rabbit,Bunny Brainwashing Scene,tt0312004\nBgCgiRitEmM,2005.0,4,10,2019,Wallace & Gromit: The Curse of the Were-Rabbit,Hot On Its Tail Scene,tt0312004\n-nk6Gs6Z_Bo,2005.0,5,10,2019,Wallace & Gromit: The Curse of the Were-Rabbit,Wallace Transforms Scene,tt0312004\nf9wFKCfic8Q,2005.0,8,10,2019,Wallace & Gromit: The Curse of the Were-Rabbit,Rabbit Bait Scene,tt0312004\nJmf4o8UalVM,2005.0,6,10,2019,Wallace & Gromit: The Curse of the Were-Rabbit,Brain Swap Scene,tt0312004\nzZLAinjBShg,2005.0,1,10,2019,Wallace & Gromit: The Curse of the Were-Rabbit,Bunny Breakfast Scene,tt0312004\nE7fMOxGw-dw,2005.0,7,10,2019,Wallace & Gromit: The Curse of the Were-Rabbit,Beauty & The Beast Scene,tt0312004\negTtyS-PlRM,2005.0,2,10,2019,Wallace & Gromit: The Curse of the Were-Rabbit,The Bunny Vacuum Scene,tt0312004\nDECG3af2qh8,2018.0,4,7,2019,Zoo Wars,Moose Warrior Scene,tt9004516\nYsCeolAfbLw,2018.0,5,7,2019,Zoo Wars,Putting The Sauce On Tar Tar Scene,tt9004516\nLJym4mTtLRY,2018.0,6,7,2019,Zoo Wars,Meeting Bongo Bananas Scene,tt9004516\nHOjApJYsWC0,2018.0,1,7,2019,Zoo Wars,Hit Enter for the Ultimate Truth Scene,tt9004516\n4vekUOykIvw,2018.0,7,7,2019,Zoo Wars,Defeating Boo Boo Scene,tt9004516\nqMaZAi73HDo,2018.0,2,7,2019,Zoo Wars,The Sauce Dimension Scene,tt9004516\nb_aJy2SE60E,2016.0,8,10,2019,Star Paws,Stupid Stegosaurus Scene,tt5936438\nYprQvoOj6wM,2016.0,5,10,2019,Star Paws,One Smart Clucker Scene,tt5936438\nJHAtw0HRhho,2016.0,1,10,2019,Star Paws,Legend of the Bone Scene,tt5936438\n6kN5IkXFwcQ,2016.0,2,10,2019,Star Paws,I'm the Boss! Scene,tt5936438\nGqGPu-X3cv8,2016.0,9,10,2019,Star Paws,Deadly Dinosaur Danger Scene,tt5936438\nag2wbvh5VDs,2016.0,7,10,2019,Star Paws,In the Time of Dinosaurs Scene,tt5936438\nIgeW0MPX60Q,2016.0,6,10,2019,Star Paws,The Civil War Canine Scene,tt5936438\n--hendERqm0,2016.0,4,10,2019,Star Paws,Doggie Photoshoot Scene,tt5936438\npkogDQ3CK9E,2016.0,3,10,2019,Star Paws,Cat & Dog Fight Scene,tt5936438\n0D35LZ4UBX8,2014.0,7,8,2019,East Jerusalem / West Jerusalem,The Sound of Progress Scene,tt3604958\nBUB6TUH7N0A,2014.0,8,8,2019,East Jerusalem / West Jerusalem,\"Peace, Love, and Understanding Scene\",tt3604958\n5uEViMQGON4,2014.0,2,8,2019,East Jerusalem / West Jerusalem,No Such Thing as a Lost Cause Scene,tt3604958\nN6SPrarFcBA,2014.0,4,8,2019,East Jerusalem / West Jerusalem,Each Language Likes Different Things,tt3604958\nhYIWCm-Lpj0,2014.0,1,8,2019,East Jerusalem / West Jerusalem,Our Jerusalem Scene,tt3604958\nkvtsZ1Edkk4,2014.0,3,8,2019,East Jerusalem / West Jerusalem,Politics vs. War Scene,tt3604958\nHrFlTjySp8E,2014.0,5,8,2019,East Jerusalem / West Jerusalem,Refugee Jam Session Scene,tt3604958\nHC1LN5AgjRU,2014.0,6,8,2019,East Jerusalem / West Jerusalem,Midnight in Tel Aviv Scene,tt3604958\nn6zlrCAvNRg,2016.0,5,5,2019,In Between,Confronting the Abuser Scene,tt5974388\n7sQRpVCnRto,2016.0,2,5,2019,In Between,Feel Your Heart Scene,tt5974388\nVez07Q0O7c0,2016.0,1,5,2019,In Between,Danger! Electrifying! Scene,tt5974388\nv5oVPhcW9nk,2016.0,3,5,2019,In Between,Dinner & A Show Scene,tt5974388\nClUoUHjr-zE,2016.0,4,5,2019,In Between,Accept Me Or It's Over Scene,tt5974388\nZCU-wmL_XNw,2012.0,4,8,2019,Lines of Wellington,Do What You Want to Me Scene,tt1928329\nup86hjG02yU,2012.0,7,8,2019,Lines of Wellington,The Bastard French Scene,tt1928329\npDdLHI3b7lI,2012.0,2,8,2019,Lines of Wellington,Memories on the Run Scene,tt1928329\noUrT0qTcHBE,2012.0,3,8,2019,Lines of Wellington,I've Done It With My Brother Scene,tt1928329\nR-ciRNPLhWE,2012.0,1,8,2019,Lines of Wellington,Love and War Scene,tt1928329\nYJjM9EMhQ1E,2012.0,5,8,2019,Lines of Wellington,Beef Wellington Scene,tt1928329\nlMZzHaUh_Bc,2012.0,8,8,2019,Lines of Wellington,Another Man's Wife Scene,tt1928329\nNc6K_D4rtGU,2012.0,6,8,2019,Lines of Wellington,Putting a Horse Down Scene,tt1928329\nXNwDyM81lSE,1969.0,2,9,2019,Guns of the Magnificent Seven,That's My Horse! Scene,tt0064395\ntY5el7dZ9H0,1969.0,8,9,2019,Guns of the Magnificent Seven,You Have No Big Dreams Scene,tt0064395\n-5twCD8tAMc,1969.0,1,9,2019,Guns of the Magnificent Seven,Let Them Go Scene,tt0064395\nLVvJj9sDilQ,1969.0,5,9,2019,Guns of the Magnificent Seven,A Friendly Game of Cards Scene,tt0064395\nWLE2QEOBde4,1969.0,4,9,2019,Guns of the Magnificent Seven,The Buffalo Bill Show Scene,tt0064395\nyQ62WM_w2iM,1969.0,7,9,2019,Guns of the Magnificent Seven,Stick 'Em Up! Scene,tt0064395\nq3Vvto0REuc,1969.0,3,9,2019,Guns of the Magnificent Seven,I Need Your Help Scene,tt0064395\nyWP5eC822Ac,1969.0,6,9,2019,Guns of the Magnificent Seven,Talk Now or Never Talk Again Scene,tt0064395\ni3yO0OagpNY,1969.0,9,9,2019,Guns of the Magnificent Seven,Surprise Attack Scene,tt0064395\nM669rZIUGIs,2017.0,2,7,2019,Jasper Jones,Jasper's Story Scene,tt5091014\n7DnCFrbE88A,2017.0,5,7,2019,Jasper Jones,Just Digging Deeper Scene,tt5091014\nMO7Sa_dI0SM,2017.0,7,7,2019,Jasper Jones,Mom's New Lover Scene,tt5091014\nVD704T-c64c,2017.0,1,7,2019,Jasper Jones,The Body Scene,tt5091014\nUpWvuwMabSA,2017.0,4,7,2019,Jasper Jones,On the Run Scene,tt5091014\nUxVY9CTaNNQ,2017.0,3,7,2019,Jasper Jones,A Murderer's Farm Scene,tt5091014\noX3yOgEmFOI,2017.0,6,7,2019,Jasper Jones,Cricket Superstar Scene,tt5091014\nUNLFpS_xEZI,2012.0,4,4,2019,Forgetting the Girl,Hot Goth Bowling Scene,tt1492842\nW7BLikBY5Ak,2012.0,1,4,2019,Forgetting the Girl,I Just Want a Girl Scene,tt1492842\ndwK_rODYMrY,2012.0,3,4,2019,Forgetting the Girl,You Can Kiss Me Now Scene,tt1492842\nrXxBQRh89AA,2012.0,2,4,2019,Forgetting the Girl,You Are Beautiful Scene,tt1492842\nVAmXYYSt6TM,2018.0,4,10,2019,The Meg,Man vs. Shark Scene,tt4779682\nxYIhxXt58uE,2018.0,10,10,2019,The Meg,I'm Going to Make It Bleed Scene,tt4779682\nFovnKIV3VD0,2018.0,5,10,2019,The Meg,Shark Cage vs. Megalodon Scene,tt4779682\noiQPOmrEAxo,2018.0,9,10,2019,The Meg,Shark on My Tail Scene,tt4779682\np3zb4fwFd3E,2018.0,3,10,2019,The Meg,Shark Food Scene,tt4779682\nIxRCDx-YV4I,2018.0,1,10,2019,The Meg,Giant Squid Attack Scene,tt4779682\nLZ6HA66dXVw,2018.0,7,10,2019,The Meg,Killing the Meg Scene,tt4779682\nujA70PK6E7U,2018.0,8,10,2019,The Meg,The Beach Attack Scene,tt4779682\nsVfmACBWnIY,2018.0,6,10,2019,The Meg,We Killed the Meg! Scene,tt4779682\nQxReNyiIprw,2018.0,2,10,2019,The Meg,Submarine Rescue Scene,tt4779682\nSWlYiOtP5mI,2018.0,3,10,2019,Won't You Be My Neighbor?,Daniel Striped Tiger Is The Real Fred Scene,tt7681902\nUSWXF1XW2zo,2018.0,8,10,2019,Won't You Be My Neighbor?,Mister Rogers & Jeff Erlanger Scene,tt7681902\nuEW0FlmiNec,2018.0,9,10,2019,Won't You Be My Neighbor?,Fred Rogers' Death Scene,tt7681902\n4cl5cWYmvgc,2018.0,6,10,2019,Won't You Be My Neighbor?,Mister Rogers & Theme Weeks Scene,tt7681902\nwLuRwDl3MrE,2018.0,1,10,2019,Won't You Be My Neighbor?,Tackling Issues Scene,tt7681902\npQv0ZtpRdNk,2018.0,4,10,2019,Won't You Be My Neighbor?,What Does Assassination Mean? Scene,tt7681902\ngMdTl2R354A,2018.0,2,10,2019,Won't You Be My Neighbor?,Mister Rogers Saves PBS Scene,tt7681902\nHPcr2gT_cnA,2018.0,10,10,2019,Won't You Be My Neighbor?,What Would Fred Rogers Do? Scene,tt7681902\nK6O_Ep9bY0U,2018.0,5,10,2019,Won't You Be My Neighbor?,Officer Clemmons Scene,tt7681902\nDqSBqfDgOsQ,2018.0,7,10,2019,Won't You Be My Neighbor?,I Love You Just The Way You Are Scene,tt7681902\n14pZQ6VASRI,2016.0,2,8,2019,Line 41,\"\"\"Highly Decent\"\" Killers Scene\",tt5218234\nPmxzK5IzcaM,2016.0,8,8,2019,Line 41,The Death Of A Family Scene,tt5218234\nBSXK08_Ivac,2016.0,7,8,2019,Line 41,Your Brother Was A Hero Scene,tt5218234\n3ReLHqluiXY,2016.0,6,8,2019,Line 41,The Duality Of Dad Scene,tt5218234\nV9LA86HF3i8,2016.0,3,8,2019,Line 41,You Don't Have A Father Anymore Scene,tt5218234\nUd8doeLuJWk,2016.0,4,8,2019,Line 41,The Trains Scene,tt5218234\nvxEvNuW12dk,2016.0,1,8,2019,Line 41,Creating The Ghetto Scene,tt5218234\nFvN03fXmnQU,2016.0,5,8,2019,Line 41,Ghetto Within A Ghetto Scene,tt5218234\nbqUmYcmLCMI,2016.0,2,8,2019,The Paris Opera,\"Easy Rider, the Opera Cow Scene\",tt6599064\njP6-fvz9W04,2016.0,4,8,2019,The Paris Opera,Snow Ballerinas Scene,tt6599064\nMsIWigAwas8,2016.0,6,8,2019,The Paris Opera,Ballerina Practice Scene,tt6599064\nHCNwZZ3Baus,2016.0,8,8,2019,The Paris Opera,The Final Performance Scene,tt6599064\n3zgwoTgXXuc,2016.0,7,8,2019,The Paris Opera,The Performance of the Season Scene,tt6599064\ndaJzFEzxXos,2016.0,5,8,2019,The Paris Opera,Singer and Admirer Scene,tt6599064\npTxj-Dks1Mg,2016.0,1,8,2019,The Paris Opera,Opera Tryouts Scene,tt6599064\nO75p8X8YBtw,2016.0,3,8,2019,The Paris Opera,Moses and Aaron Scene,tt6599064\nsUQ9cisQpaY,2016.0,7,8,2019,Theory of Obscurity: A Film About The Residents,Cultural Observers Scene,tt2833768\nfRNR8-FqzM4,2016.0,2,8,2019,Theory of Obscurity: A Film About The Residents,Rusty Coathangers Scene,tt2833768\n5RUWalajNYE,2016.0,3,8,2019,Theory of Obscurity: A Film About The Residents,Give It to Someone Else,tt2833768\nt-B2zR5O5Ys,2016.0,6,8,2019,Theory of Obscurity: A Film About The Residents,Faster Than Culture Scene,tt2833768\nBCcw2q6KbbI,2016.0,4,8,2019,Theory of Obscurity: A Film About The Residents,Vileness Fats Scene,tt2833768\n9FAeJgWLKRo,2016.0,8,8,2019,Theory of Obscurity: A Film About The Residents,\"Help Us, Please! Scene\",tt2833768\ncnwddNSgakk,2016.0,5,8,2019,Theory of Obscurity: A Film About The Residents,Hello Skinny Scene,tt2833768\nNwru3-Uif_Q,2016.0,1,8,2019,Theory of Obscurity: A Film About The Residents,\"Oh Lordy, It's Madness\",tt2833768\njpEfgrff8z0,2007.0,6,10,2019,Bee Movie,The Trial Beegins Scene,tt0389790\n7h-q7bXYD1c,2007.0,4,10,2019,Bee Movie,Hitchhiking Honey Bee Scene,tt0389790\nO4brzUAaTS0,2007.0,10,10,2019,Bee Movie,Thinking Bee Scene,tt0389790\n-nswXtzrfQU,2007.0,8,10,2019,Bee Movie,I Speak For The Bees! Scene,tt0389790\n3WmyeqVxCV0,2007.0,9,10,2019,Bee Movie,Unacceptable Beehavior Scene,tt0389790\n74ZjOVz3gs4,2007.0,5,10,2019,Bee Movie,Bathroom Bee Brawl Scene,tt0389790\noNWAiWBup2Q,2007.0,1,10,2019,Bee Movie,Pollen Power Scene,tt0389790\nvubylfvbMhk,2007.0,7,10,2019,Bee Movie,A Stinging Testimony Scene,tt0389790\nIFBAXbrw31g,2007.0,2,10,2019,Bee Movie,Anyone For Tennis? Scene,tt0389790\nL46syxgju18,2007.0,3,10,2019,Bee Movie,Ya Like Jazz? Scene,tt0389790\nBGOL5YmTrAY,2017.0,10,10,2019,Jungle Tales,River Boat Attack Scene,tt1576379\n-Qq6ZZy0yGg,2017.0,8,10,2019,Jungle Tales,Training Song Scene,tt1576379\nphGwatUEyzc,2017.0,5,10,2019,Jungle Tales,The Extinction Song Scene,tt1576379\n6VvluTE_w14,2017.0,3,10,2019,Jungle Tales,The Monster Attacks Scene,tt1576379\nueMuCbXkDhw,2017.0,6,10,2019,Jungle Tales,Chased by Dogs Scene,tt1576379\nTd3qZIf5Swg,2017.0,9,10,2019,Jungle Tales,My Jungle Friends Scene,tt1576379\n4Fa5YPKxwRU,2017.0,7,10,2019,Jungle Tales,Fighting the Monster Scene,tt1576379\neG2Yo0l78tM,2017.0,2,10,2019,Jungle Tales,Surprise Party Scene,tt1576379\np0CQcDumPh8,2017.0,1,10,2019,Jungle Tales,Flamingo Stockings Scene,tt1576379\nhudgzkYfSvU,2017.0,4,10,2019,Jungle Tales,A Traitorous Bird Scene,tt1576379\nGZauEya_plU,2016.0,3,8,2019,Fishtales,Seahorse Stable Scene,tt5363648\naPFbf954LJ0,2016.0,2,8,2019,Fishtales,Jellyfish Bloom Scene,tt5363648\nqL5_xmtFVDo,2016.0,4,8,2019,Fishtales,Amazing and Terrifying Eels Scene,tt5363648\nmT3_2sDEBJQ,2016.0,8,8,2019,Fishtales,Seal Of Approval Scene,tt5363648\nVTTj-7UumYk,2016.0,7,8,2019,Fishtales,Frog Facts Scene,tt5363648\njH07BdMRP0g,2016.0,1,8,2019,Fishtales,Learning About Sea Turtles Scene,tt5363648\nNQcQ3bA_NXw,2016.0,6,8,2019,Fishtales,Crustacean Invasion Scene,tt5363648\nUvm8N3wQDTo,2016.0,5,8,2019,Fishtales,Swarm Of Sharks Scene,tt5363648\n_5kQ0ekY5l8,2012.0,7,8,2019,Broken,It's Not Your Fault Scene,tt1235522\nLbxeyn5IS8Q,2012.0,3,8,2019,Broken,Stand Accused Scene,tt1235522\n3Sot46WTjcY,2012.0,5,8,2019,Broken,Juvenile Delinquents Scene,tt1235522\nwVCf-70SKKg,2012.0,2,8,2019,Broken,Picking a Fight Scene,tt1235522\nWuvoHScKCR0,2012.0,4,8,2019,Broken,Daddy's Gotta Go Now Scene,tt1235522\nsZdVc2KAfWQ,2012.0,1,8,2019,Broken,A Random Act of Violence Scene,tt1235522\n9sSxcSntcyE,2012.0,8,8,2019,Broken,I Just Want Your Goodness Scene,tt1235522\nIIJZj1M4tN8,2012.0,6,8,2019,Broken,You Pervert! Scene,tt1235522\nGklme1-eQGE,1991.0,9,12,2019,The Man in the Moon,Court's Accident Scene,tt0102388\nsCSTQpBwqqs,1991.0,8,12,2019,The Man in the Moon,Love at First Sight Scene,tt0102388\nmiJ26dYcbBw,1991.0,10,12,2019,The Man in the Moon,Bad News Scene,tt0102388\noT_RsXOPjTs,1991.0,2,12,2019,The Man in the Moon,Dani Goes Skinny Dipping Scene,tt0102388\nYzIWoPLLktE,1991.0,6,12,2019,The Man in the Moon,I'm Not a Little Girl Scene,tt0102388\nHYWSAtLFgXg,1991.0,3,12,2019,The Man in the Moon,Wild Ride Scene,tt0102388\nTiQaVmutQwg,1991.0,4,12,2019,The Man in the Moon,Jump with Me Scene,tt0102388\ndaVOnsL2wkU,1991.0,7,12,2019,The Man in the Moon,First Kiss Scene,tt0102388\nN7i4yZhm6V0,1991.0,5,12,2019,The Man in the Moon,Love Sick Scene,tt0102388\nR5wXxo6yIU4,1991.0,1,12,2019,The Man in the Moon,Scene,tt0102388\noefn8TJ3_H8,1991.0,11,12,2019,The Man in the Moon,Fatherly Advice Scene,tt0102388\npUPliO3qy04,1991.0,12,12,2019,The Man in the Moon,Is It Always Going to Hurt This Bad? Scene,tt0102388\nUAoJ_mv0Pqo,2018.0,4,10,2019,Skyscraper,Bridge Of Fire Scene,tt5758778\nioUedV29CQE,2018.0,2,10,2019,Skyscraper,They're Going To Kill You Scene,tt5758778\nUo1FfULMJ5E,2018.0,8,10,2019,Skyscraper,Backseat Cat Fight Scene,tt5758778\nM06KzvYxlsc,2018.0,10,10,2019,Skyscraper,Reboot The Building Scene,tt5758778\n3PoW8y_3rzU,2018.0,7,10,2019,Skyscraper,Rooftop Mirror Showdown Scene,tt5758778\nKMkdp0Uy8t0,2018.0,3,10,2019,Skyscraper,Crane Jump Scene,tt5758778\naKE0S2gCOfc,2018.0,6,10,2019,Skyscraper,Life & Limb Scene,tt5758778\nRtRffVRFz6M,2018.0,1,10,2019,Skyscraper,Brothers In Arms Scene,tt5758778\ne_S58iPZYu8,2018.0,5,10,2019,Skyscraper,Elevator Escape Scene,tt5758778\nS7A0JYPGklw,2018.0,9,10,2019,Skyscraper,Grenade Standoff Scene,tt5758778\nVFWn3fpVdEk,2011.0,4,4,2019,A Very Harold & Kumar Christmas,Saving Santa Scene,tt1268799\n6nrumyJrmZ8,2011.0,3,4,2019,A Very Harold & Kumar Christmas,They Serve Pancakes in Hell Scene,tt1268799\n75EThT2il7k,2011.0,1,4,2019,A Very Harold & Kumar Christmas,Egg Attack Scene,tt1268799\nJzJ0EVqZAzU,2011.0,2,4,2019,A Very Harold & Kumar Christmas,The Roldy Roll Scene,tt1268799\n9YyC1Uq84v8,2013.0,1,9,2018,The Hangover Part III,Daddy's Funeral Scene,tt1951261\nelmk8Hsbw_0,2013.0,5,9,2018,The Hangover Part III,We Love You Chow Scene,tt1951261\nmkbZvLfg2Yg,2013.0,8,9,2018,The Hangover Part III,Somebody's Gotta Pay Scene,tt1951261\nefkuXTpfxhc,2013.0,9,9,2018,The Hangover Part III,A Nice Gesture Scene,tt1951261\nXsHBLhORcls,2013.0,6,9,2018,The Hangover Part III,Chow's Chickens Scene,tt1951261\nlSmcbUFG-W4,2013.0,7,9,2018,The Hangover Part III,Colorblind Chow Scene,tt1951261\nv4np7L0aJd0,2013.0,2,9,2018,The Hangover Part III,Alan's Intervention Scene,tt1951261\nBo8mRH33NCw,2013.0,4,9,2018,The Hangover Part III,Looking for Chow Scene,tt1951261\nxPI7JdEPCP8,2013.0,3,9,2018,The Hangover Part III,Black Doug Scene,tt1951261\ns55ay3OA1vE,2017.0,8,10,2018,That's Not Me,Cheating as My Sister Scene,tt4738802\nQsY1JHFo9c0,2017.0,2,10,2018,That's Not Me,We're Only Interested In Your Sister Scene,tt4738802\nEaizaMokSqI,2017.0,10,10,2018,That's Not Me,Tricked by My Sister Scene,tt4738802\nurNeTIDRg6A,2017.0,6,10,2018,That's Not Me,Something Fishy Scene,tt4738802\nKhOfO0lI9-E,2017.0,3,10,2018,That's Not Me,I Have to Let You Go Scene,tt4738802\nEHqhCxcRkwc,2017.0,9,10,2018,That's Not Me,The Love Rhombus Scene,tt4738802\neEt5ebZFVWE,2017.0,7,10,2018,That's Not Me,Why Do You Do It? Scene,tt4738802\nWka1m7CSEro,2017.0,5,10,2018,That's Not Me,You're Not an Actor Scene,tt4738802\nnFpK9Si2uUc,2017.0,1,10,2018,That's Not Me,Albino Love Scene,tt4738802\nL5Ub_8HT6HE,2017.0,4,10,2018,That's Not Me,Never Use the C-Word Scene,tt4738802\ntiu9_CUkGn0,2013.0,7,10,2018,The Director,The Women of Gucci Scene,tt2767266\npFmo1haIgtA,2013.0,1,10,2018,The Director,The Archives of Gucci Scene,tt2767266\nPwBs-mLkZyo,2013.0,5,10,2018,The Director,China Represents the Future Scene,tt2767266\n8bZMd3JUu0c,2013.0,6,10,2018,The Director,\"Peace, Love, Gucci Scene\",tt2767266\n2WZkIK0cbLc,2013.0,2,10,2018,The Director,The Ultimate Souvenir Scene,tt2767266\nrJ6wWIo3hFA,2013.0,8,10,2018,The Director,Gucci Seasonal Transition Scene,tt2767266\nubwNf0oYYZI,2013.0,10,10,2018,The Director,A Gucci Woman is Always an Evolution Scene,tt2767266\nYlHQAbd3Pvc,2013.0,4,10,2018,The Director,Walking Like a Gucci Boy Scene,tt2767266\nEqiDQxAatPQ,2013.0,3,10,2018,The Director,Famous Faces of Gucci Scene,tt2767266\n0QNpXi4k5eU,2013.0,9,10,2018,The Director,This is a Family and a Job Scene,tt2767266\nvJi3kGaAQfo,2018.0,10,10,2018,Breaking In,You Broke Into the Wrong House Scene,tt7137846\ncycPu9OddzU,2018.0,2,10,2018,Breaking In,Hostile Negotiations Scene,tt7137846\nF2V5i3EyRd4,2018.0,7,10,2018,Breaking In,Vengeful Hit and Run Scene,tt7137846\nz5NuK6qTdBc,2018.0,8,10,2018,Breaking In,I Will Kill Your Husband Scene,tt7137846\ne7qjmOp9G34,2018.0,6,10,2018,Breaking In,First Kill is the Hardest Scene,tt7137846\nxUNy6fZy4WE,2018.0,5,10,2018,Breaking In,Capable of Killing a Man Scene,tt7137846\nGbZZ2TDY5dA,2018.0,3,10,2018,Breaking In,Is This a Bad Time? Scene,tt7137846\nyWGLNaCYevk,2018.0,4,10,2018,Breaking In,Hiding from Danger Scene,tt7137846\nSpOd7BwzlMU,2018.0,1,10,2018,Breaking In,Strangled in the Dark Scene,tt7137846\n-agdK2N5wX4,2018.0,9,10,2018,Breaking In,He Had It Coming Scene,tt7137846\noZ-BCSM4O8g,2017.0,6,8,2018,Outside In,Ted Apologizes Scene,tt7260048\nKc2Hv1tPMig,2017.0,5,8,2018,Outside In,I Have An Idea Scene,tt7260048\ndye8cQvz0Kc,2017.0,3,8,2018,Outside In,Premature Evacuation Scene,tt7260048\nzllKdwaYi50,2017.0,2,8,2018,Outside In,I Know You Love Me Scene,tt7260048\nxWYBaNVEpVY,2017.0,8,8,2018,Outside In,I'm Free Now Scene,tt7260048\nZcO9A2DK_8o,2017.0,7,8,2018,Outside In,Mother & Daughter Reunion Scene,tt7260048\nQId6ztQeHCI,2017.0,1,8,2018,Outside In,Together At Last Scene,tt7260048\nTFfe7ZgIVUc,2017.0,4,8,2018,Outside In,A Very Unhappy Birthday Scene,tt7260048\njT09lgUTdFg,2015.0,6,10,2018,The Gallows,The Hallway Scene,tt2309260\nkKH0IEVUhNw,2015.0,7,10,2018,The Gallows,Right Behind You Scene,tt2309260\nsIGoScxocUY,2015.0,9,10,2018,The Gallows,The Hangman's Revenge Scene,tt2309260\nD7LCHE4pTe0,2015.0,8,10,2018,The Gallows,Don't Look Scene,tt2309260\nnBRbD7RKrK0,2015.0,1,10,2018,The Gallows,Freak Accident Scene,tt2309260\nACvjoLAtwnU,2015.0,4,10,2018,The Gallows,Show Me Something Scene,tt2309260\niwZzRrzGLfE,2015.0,2,10,2018,The Gallows,The Hangman's Target Scene,tt2309260\nt6w2XWv2A7M,2015.0,3,10,2018,The Gallows,The Noose Scene,tt2309260\nbCBpo6H97oY,2015.0,5,10,2018,The Gallows,There's Someone In Here Scene,tt2309260\nWyqeTjEcUTk,2015.0,10,10,2018,The Gallows,Family Videos Scene,tt2309260\nB41g0ZjS8M8,2017.0,6,9,2018,The Devil and Father Amorth,Exorcism Caught on Film Scene,tt6883152\n1CjLSig2Hv0,2017.0,9,9,2018,The Devil and Father Amorth,Trapped With the Devil Scene,tt6883152\ny-1iNc7NzNM,2017.0,4,9,2018,The Devil and Father Amorth,Thumbing His Nose at the Devil Scene,tt6883152\nVKonjShA8Rg,2017.0,1,9,2018,The Devil and Father Amorth,The Inspiration for The Exorcist Scene,tt6883152\nR5BlH8IPv9Y,2017.0,2,9,2018,The Devil and Father Amorth,She Crawled Like an Animal Scene,tt6883152\nk6VGwPFIctQ,2017.0,5,9,2018,The Devil and Father Amorth,She Belongs to Us! Scene,tt6883152\nyMo3ISSjYn4,2017.0,8,9,2018,The Devil and Father Amorth,The Power of Christ Scene,tt6883152\nhaeQVOcIyKY,2017.0,7,9,2018,The Devil and Father Amorth,This Is Your Brain on Satan Scene,tt6883152\nDstF9Ge_6wI,2017.0,3,9,2018,The Devil and Father Amorth,Possessed by Satan Scene,tt6883152\nsSu-nM25zqw,2016.0,9,10,2018,Ghosthunters,Henry's Deadly Plan Scene,tt5725894\n8X5miLF1n5M,2016.0,3,10,2018,Ghosthunters,Poltergeist Kitchen Scene,tt5725894\nljifYuVnH1Y,-1.0,4,10,2018,Ghosthunters,The Killer's Office Scene,tt5725894\njz7WEh-DK0w,2017.0,5,10,2018,Ghosthunters,Ritual Killing Scene,tt5725894\nFdy2A4nbNik,2016.0,2,10,2018,Ghosthunters,Seeing a Ghost Scene,tt5725894\nSCRZD2_Tkeo,2016.0,10,10,2018,Ghosthunters,Predator Becomes the Prey Scene,tt5725894\nYe3l05tkIcQ,2016.0,8,10,2018,Ghosthunters,The Killer Revealed Scene,tt5725894\nzA1afZS6G_c,2016.0,6,10,2018,Ghosthunters,Human Meat Market Scene,tt5725894\ngIig_bRnDz0,2016.0,1,10,2018,Ghosthunters,The Night Stalker Scene,tt5725894\nMXcA1Ow7Lzw,2016.0,7,10,2018,Ghosthunters,What Are You Doing Here? Scene,tt5725894\nlpBYHa7VDRk,1988.0,1,10,2018,Return of the Living Dead Part II,I Want Your Brains! Scene,tt0095990\nXAa7RcPdE2U,1988.0,4,10,2018,Return of the Living Dead Part II,Zombie Head Scene,tt0095990\nNqXxeZTvuYQ,1988.0,3,10,2018,Return of the Living Dead Part II,Worm Food Scene,tt0095990\ndq_RCN3esGk,1988.0,6,10,2018,Return of the Living Dead Part II,Undead Road Rage Scene,tt0095990\nSSQJIBb_9gw,1988.0,8,10,2018,Return of the Living Dead Part II,I'm Not Into Dead Guys Scene,tt0095990\n7mPDafCQ5iQ,1988.0,7,10,2018,Return of the Living Dead Part II,Torso of the Damned Scene,tt0095990\neYCV5Zm4Ov0,1988.0,2,10,2018,Return of the Living Dead Part II,A Lively Graveyard Scene,tt0095990\nxIsVK254RXU,1988.0,9,10,2018,Return of the Living Dead Part II,The Enemy's Already Dead Scene,tt0095990\nzHqM-oKCPBY,1988.0,10,10,2018,Return of the Living Dead Part II,Electric Zombies Scene,tt0095990\n4ozs0VI04xI,1988.0,5,10,2018,Return of the Living Dead Part II,My Son Isn't Feeling Well Scene,tt0095990\niMlCK0hr8Is,2017.0,4,9,2018,Tilt,Foul Play Suspected Scene,tt5435476\nIW3rXhNFyVw,2017.0,8,9,2018,Tilt,Homeless Homicide Scene,tt5435476\noB1yULtM2Mw,2017.0,5,9,2018,Tilt,You Have To Step Up Scene,tt5435476\nNGmtKz6HMkI,2017.0,3,9,2018,Tilt,Stray Slaying Scene,tt5435476\nCB73lI-OjOE,2017.0,7,9,2018,Tilt,Something's Wrong With Me Scene,tt5435476\nAZlZO5TT0wo,2017.0,6,9,2018,Tilt,Uncomfortable Interview Scene,tt5435476\nxxoeXvIeZXQ,2017.0,2,9,2018,Tilt,Over The Cliff Scene,tt5435476\nJXiJ7GS-9aA,2017.0,9,9,2018,Tilt,Bloodthirsty Babysitter Scene,tt5435476\n-XnDw75Lp1Y,2017.0,1,9,2018,Tilt,Parenthood Nightmares Scene,tt5435476\nH6ZNmRApuGw,2017.0,1,9,2018,Alien Convergence,Paraplegic Pilots Scene,tt6874406\nPuUMs6fNGo0,2017.0,4,9,2018,Alien Convergence,The Monster Approaches Scene,tt6874406\nDrOLHuvOMi0,2017.0,8,9,2018,Alien Convergence,Alien Retaliation Scene,tt6874406\nJKJsu3JatYk,2017.0,5,9,2018,Alien Convergence,Precision Exercises Scene,tt6874406\nYIqAz8SfE2M,2017.0,3,9,2018,Alien Convergence,The Alien's Lair Scene,tt6874406\nHV_SMZR6gjg,2017.0,2,9,2018,Alien Convergence,Mysterious Flying Monster Scene,tt6874406\nvaWlmr2BwuE,2017.0,7,9,2018,Alien Convergence,It's Not Dead Scene,tt6874406\nuun8fsWOaeE,2017.0,6,9,2018,Alien Convergence,Alien Dogfight Scene,tt6874406\nKZJetTa4DjQ,2016.0,9,9,2018,Alien Convergence,Taking Down the Alien Scene,tt6874406\n80fHUAW_up0,1983.0,12,12,2018,Easy Money,Regular Guy Fashion Show Scene,tt0085470\nL90uDzDbdV0,1983.0,3,12,2018,Easy Money,Jumping the Jockey Scene,tt0085470\njJ8rgMkWFWA,1983.0,2,12,2018,Easy Money,The Wedding Dress Scene,tt0085470\nH1_mdoiwhBY,1983.0,1,12,2018,Easy Money,Who's the Big Birthday Girl? Scene,tt0085470\nT7kklmGWLDk,1983.0,11,12,2018,Easy Money,Just Browsing Scene,tt0085470\nV99QCtwXKsI,1983.0,7,12,2018,Easy Money,Julio and the Hedge Scene,tt0085470\nDC3rYQXOTjA,1983.0,9,12,2018,Easy Money,Not So Stationary Bike Scene,tt0085470\nvcw4b2U_0nU,1983.0,6,12,2018,Easy Money,Wedding Night-Mare Scene,tt0085470\nnUpmxMzBCjk,1983.0,4,12,2018,Easy Money,The Wedding Cake Scene,tt0085470\nTcaAWs46kog,1983.0,5,12,2018,Easy Money,I Always Cry at Weddings Scene,tt0085470\nwhFoAKQ10gY,1983.0,8,12,2018,Easy Money,That's Love! Scene,tt0085470\nbtMisVovQKk,1983.0,10,12,2018,Easy Money,Fat Little Bastard Scene,tt0085470\nULElX0fO5JE,2017.0,4,10,2018,The Fast and the Fierce,Paranoid Passengers Scene,tt6580394\n2T01Xm19LJM,2017.0,3,10,2018,The Fast and the Fierce,Air Traffic Out of Control Scene,tt6580394\nWcmGju9lzAY,2017.0,2,10,2018,The Fast and the Fierce,Flying Too Low Scene,tt6580394\n1bKCN4B2g-g,2017.0,10,10,2018,The Fast and the Fierce,Welcome Home Scene,tt6580394\nv2iOrjYQOHQ,2017.0,8,10,2018,The Fast and the Fierce,Thumb Drive to the Eye,tt6580394\n9C5A-YyMLnY,2017.0,1,10,2018,The Fast and the Fierce,Prepare for Collision Scene Scene,tt6580394\nV3JGZdiYwIg,2017.0,7,10,2018,The Fast and the Fierce,In-Flight Terror Scene,tt6580394\ndHxPxFeI6GQ,2017.0,6,10,2018,The Fast and the Fierce,Mid-Air Rescue Scene,tt6580394\ndeth7hZBzxs,2017.0,9,10,2018,The Fast and the Fierce,In-Flight Fist Fight Scene,tt6580394\nAUppZZuFnJI,2017.0,5,10,2018,The Fast and the Fierce,Extreme Turbulence Scene,tt6580394\nmXgY4vnucPc,2014.0,3,10,2018,No No: A Dockumentary,Greenies Scene,tt3399112\nyqvlrJQVAP4,2014.0,1,10,2018,No No: A Dockumentary,I Had the Acid in Me Scene,tt3399112\nSndhPCSVtuc,2014.0,4,10,2018,No No: A Dockumentary,Two Brothers Against Each Other Scene,tt3399112\nTHmBqW0zLuY,2014.0,7,10,2018,No No: A Dockumentary,It Was a No-No Scene,tt3399112\ns5F51a7xkiA,2014.0,5,10,2018,No No: A Dockumentary,Dock Ellis' Activism Scene,tt3399112\nwIw19V0b390,2014.0,2,10,2018,No No: A Dockumentary,Hair Curlers Scene,tt3399112\nE-OEyIQ12Mw,2014.0,6,10,2018,No No: A Dockumentary,The Pirates' All-Minority Lineup Scene,tt3399112\n--UgPWRVt8A,2014.0,10,10,2018,No No: A Dockumentary,Remembering Dock Scene,tt3399112\nrJv6bP5Lvao,2014.0,9,10,2018,No No: A Dockumentary,Passing On His Wisdom Scene,tt3399112\nJn23_pn6aAE,2014.0,8,10,2018,No No: A Dockumentary,Rehab and a Changed Man Scene,tt3399112\nJkQzE831VM8,1967.0,8,8,2018,Cool Hand Luke,That Ol' Luke Smile Scene,tt0061512\nBzk_5Jzvxdk,1967.0,3,8,2018,Cool Hand Luke,Stay Down Scene,tt0061512\n9T4kKk7zH34,1967.0,4,8,2018,Cool Hand Luke,Arletta Scene,tt0061512\nSMaYCguBHAA,1967.0,5,8,2018,Cool Hand Luke,I Can Eat 50 Eggs Scene,tt0061512\ncINFeXqwbDo,1967.0,2,8,2018,Cool Hand Luke,Car Wash Scene,tt0061512\n_WUyZXhLHMk,1967.0,7,8,2018,Cool Hand Luke,Failure To Communicate Scene,tt0061512\nk3oMPqUTxCE,1967.0,6,8,2018,Cool Hand Luke,Eating the Eggs Scene,tt0061512\nqqhyIIZt87A,1967.0,1,8,2018,Cool Hand Luke,A Night in the Box Scene,tt0061512\nPaqNqocHJ-o,2000.0,8,9,2018,Final Destination,Cheating Death Again Scene,tt0195714\nklg2YuapPFY,2000.0,5,9,2018,Final Destination,Train Death Scene,tt0195714\nweDQxJm9K-Y,2000.0,2,9,2018,Final Destination,Defying Death Scene,tt0195714\niU908ncV2q0,2000.0,9,9,2018,Final Destination,You're Still Next Scene,tt0195714\n0p9Q6tDJJ1w,2000.0,4,9,2018,Final Destination,I'll See You Soon Scene,tt0195714\nUc0Cd3LErFs,2000.0,7,9,2018,Final Destination,Death in the Woods Scene,tt0195714\n6HrTgWedKG0,2000.0,6,9,2018,Final Destination,100% Death Proof Scene,tt0195714\n2ReEFgaq_9g,2000.0,1,9,2018,Final Destination,The Premonition Scene,tt0195714\n8R0wW6GTMk4,2000.0,3,9,2018,Final Destination,Slippery When Wet Scene,tt0195714\nY5EkcuhBwiU,1982.0,4,10,2018,The Best Little Whorehouse in Texas,Watchdog Report Scene,tt0083642\ngcPY3RIvtCw,1982.0,9,10,2018,The Best Little Whorehouse in Texas,Hard Candy Christmas Scene,tt0083642\nAd2-FiCzJxc,1982.0,2,10,2018,The Best Little Whorehouse in Texas,A Lil' Ole Bitty Pissant Country Place Scene,tt0083642\nCkKUHwyFqJw,1982.0,1,10,2018,The Best Little Whorehouse in Texas,20 Fans Scene,tt0083642\nMuIkmspTRo0,1982.0,6,10,2018,The Best Little Whorehouse in Texas,Courtyard Shag Scene,tt0083642\n8O9FIRPJRXc,1982.0,5,10,2018,The Best Little Whorehouse in Texas,The Aggie Song Scene,tt0083642\niy-SmSGYYBM,1982.0,7,10,2018,The Best Little Whorehouse in Texas,Chicken Ranch Raid Scene,tt0083642\nAALREbJZEZk,1982.0,8,10,2018,The Best Little Whorehouse in Texas,Sidestep Scene,tt0083642\n0KjO3YwlhEE,1982.0,10,10,2018,The Best Little Whorehouse in Texas,I Will Always Love You Scene,tt0083642\nwr5-v7rYg70,1982.0,3,10,2018,The Best Little Whorehouse in Texas,Sneakin' Around With You Scene,tt0083642\nFgG9LDxHHv0,2017.0,1,8,2018,Us and Them,It's Called Class War Scene,tt8033592\nUu2u8T7tS9o,2017.0,2,8,2018,Us and Them,Confidence Man Scene,tt8033592\nKD5-tY6m9Cw,2017.0,7,8,2018,Us and Them,Playing With Fire Scene,tt8033592\ntt5BJlT7f6I,2017.0,3,8,2018,Us and Them,Let's a Play a Game Scene,tt8033592\n6EAVY3gCWpY,2017.0,5,8,2018,Us and Them,Danny's Plan Scene,tt8033592\nAURxtujY4MM,2017.0,4,8,2018,Us and Them,Downfall Of My Generation Scene,tt8033592\nfJDl0RSPWBg,2017.0,8,8,2018,Us and Them,What Glen's Been Up To Scene,tt8033592\n_H0EYJHeddU,2017.0,6,8,2018,Us and Them,It's A Fake Scene,tt8033592\nIOUbfaHj2HU,1994.0,7,10,2018,Wes Craven's New Nightmare,A Familiar Slaughter Scene,tt0111686\nV4SyBSgOIgM,1994.0,8,10,2018,Wes Craven's New Nightmare,Sleepwalking Nightmare Scene,tt0111686\nJlvCQXYfOAI,1994.0,9,10,2018,Wes Craven's New Nightmare,The Demon's Lair Scene,tt0111686\ndJltbkhK6-s,1994.0,3,10,2018,Wes Craven's New Nightmare,Funeral Nightmare Scene,tt0111686\n_HcDe70cSRU,1994.0,1,10,2018,Wes Craven's New Nightmare,Animatronic Bloodbath Scene,tt0111686\nZOhpE4LjR5E,1994.0,2,10,2018,Wes Craven's New Nightmare,Giving the Driver a Hand Scene,tt0111686\nTqRBV9xkrAU,1994.0,4,10,2018,Wes Craven's New Nightmare,Getting a Hand in Bed Scene,tt0111686\nXTtjLtf_Tw8,1994.0,10,10,2018,Wes Craven's New Nightmare,\"Die, Freddy, Die Scene\",tt0111686\ndShLedyR4eg,1994.0,5,10,2018,Wes Craven's New Nightmare,Miss Me? Scene,tt0111686\nZObhl67NCzQ,1995.0,6,10,2018,Wes Craven's New Nightmare,Dr. Freddy Scene,tt0111686\n49rUb1-JaIM,1991.0,7,9,2018,Freddy's Dead: The Final Nightmare,I Am Forever Scene,tt0101917\nS0_bjXPRlio,1991.0,5,9,2018,Freddy's Dead: The Final Nightmare,Grounded Scene,tt0101917\njorhoh0NNQI,1991.0,3,9,2018,Freddy's Dead: The Final Nightmare,Nice Hearing From You Scene,tt0101917\nDgpMTfkui0w,1991.0,2,9,2018,Freddy's Dead: The Final Nightmare,Lend Me Your Ear Scene,tt0101917\n1U146AYx6-M,1991.0,8,9,2018,Freddy's Dead: The Final Nightmare,Inside Freddy's Brain Scene,tt0101917\nG7RTm-c2aXc,1991.0,6,9,2018,Freddy's Dead: The Final Nightmare,No Honey for Daddy? Scene,tt0101917\n_RG4iCmljGE,1991.0,4,9,2018,Freddy's Dead: The Final Nightmare,Your Brain on Drugs Scene,tt0101917\ngGz0wTHCHK4,1991.0,9,9,2018,Freddy's Dead: The Final Nightmare,\"Happy Father's Day, Freddy Scene\",tt0101917\nsg-d9ZBsiWo,1991.0,1,9,2018,Freddy's Dead: The Final Nightmare,Bus to Hell Scene,tt0101917\nZ0k-0HG4fR0,2006.0,4,10,2018,Snakes on a Plane,Sucking the Venom Scene,tt0417148\ny7-LHFxFS8o,2006.0,2,10,2018,Snakes on a Plane,Snakes Attack! Scene,tt0417148\n3U0EdULZGes,2006.0,1,10,2018,Snakes on a Plane,Snake in the Restroom Scene,tt0417148\nh3-FAzeYut4,2006.0,7,10,2018,Snakes on a Plane,Python Attack Scene,tt0417148\nUqXJc-VxorY,2006.0,8,10,2018,Snakes on a Plane,Power Up Scene,tt0417148\n7pzz0eGQdyQ,2006.0,9,10,2018,Snakes on a Plane,I Have Had It! Scene,tt0417148\nws7Ve4mehqs,2006.0,10,10,2018,Snakes on a Plane,Rough Landing Scene,tt0417148\nov5KEgF0hgo,2006.0,6,10,2018,Snakes on a Plane,\"No Pilot, Big Problem Scene\",tt0417148\nsbb9Re-KYlE,2006.0,5,10,2018,Snakes on a Plane,Snakes on Crack Scene,tt0417148\n5nDwwq0ANPE,2006.0,3,10,2018,Snakes on a Plane,Who's Your Daddy Now? Scene,tt0417148\nGgnrvt77YOM,1991.0,7,10,2018,The Last Boy Scout,Can You Make Him Talk? Scene,tt0102266\nQeTaNmnwFHo,1991.0,1,10,2018,The Last Boy Scout,How Was My Wife? Scene,tt0102266\n2Zi7Y1-rgts,1991.0,6,10,2018,The Last Boy Scout,\"Touch Me Again, I'll Kill Ya Scene\",tt0102266\n06MiYpKxjCY,1991.0,2,10,2018,The Last Boy Scout,Fifth Street Shootout Scene,tt0102266\nwmBGdpkagEc,1991.0,9,10,2018,The Last Boy Scout,The Kind That Shred Scene,tt0102266\nfdw_aFH3To4,1991.0,8,10,2018,The Last Boy Scout,Point and Shoot,tt0102266\nN2Yk8EvrrBU,-1.0,10,10,2018,The Last Boy Scout,Joe Dances a Jig Scene,tt0102266\nx91Nyuo55_c,1991.0,3,10,2018,The Last Boy Scout,Open the Trunk Scene,tt0102266\naWNJKbGrETo,1991.0,5,10,2018,The Last Boy Scout,Joe's Biggest Hero Scene,tt0102266\nuKlIPUovwIc,1991.0,4,10,2018,The Last Boy Scout,Life Sucks Scene,tt0102266\nw-nqMWvpzY8,2010.0,8,10,2018,The Book of Eli,Solara Makes a Stand Scene,tt1037705\neHj2IgKYofo,2010.0,6,10,2018,The Book of Eli,Saving Solara Scene,tt1037705\n-6IX1nWqW3o,2010.0,5,10,2018,The Book of Eli,Street Shootout Scene,tt1037705\n5qE52hylNT0,2010.0,3,10,2018,The Book of Eli,Bar Fight Sermon Scene,tt1037705\nR_rN21oKxSE,2010.0,10,10,2018,The Book of Eli,Eli's Final Prayer Scene,tt1037705\nQ-_wlz6jYSw,2010.0,1,10,2018,The Book of Eli,Getting Cat Food Scene,tt1037705\n2bvUOFDgo_c,2010.0,2,10,2018,The Book of Eli,Silhouette Slaughter Scene,tt1037705\n-7uYlaqkkzw,2010.0,4,10,2018,The Book of Eli,Hurting Mother Scene Scene,tt1037705\naRK4YcnTtIk,2010.0,7,10,2018,The Book of Eli,Pray for Me Scene Scene,tt1037705\nPv2MlxSgwv4,2010.0,9,10,2018,The Book of Eli,The Braille Bible Scene,tt1037705\nq8NwQoVkAr0,2017.0,4,10,2018,Moto 9: The Movie,Wild Wally Palmer Scene,tt6231792\nM1dWcUcCAgk,2017.0,9,10,2018,Moto 9: The Movie,The Amateur Motocross Championship Scene,tt6231792\ndEAaneP7a3g,2017.0,6,10,2018,Moto 9: The Movie,Motocross In The Country Scene,tt6231792\ngZE1B2zL1fg,2017.0,5,10,2018,Moto 9: The Movie,Christian Craig Scene,tt6231792\nF0YzQbNdlpI,2017.0,2,10,2018,Moto 9: The Movie,Harry Bink's Motorcycle Tricks Scene,tt6231792\ndWdQG4BEX3s,2017.0,1,10,2018,Moto 9: The Movie,Free Ride Scene,tt6231792\nz4216EVIfdE,2017.0,10,10,2018,Moto 9: The Movie,AMA Pro Motocross Championship Scene,tt6231792\ndwULCnXeEOA,2017.0,8,10,2018,Moto 9: The Movie,Carson Mumford Scene,tt6231792\nRfGOwHvIyK8,2017.0,7,10,2018,Moto 9: The Movie,Ben Townley In New Zealand Scene,tt6231792\nvtEw8hLJKzo,2017.0,3,10,2018,Moto 9: The Movie,First Ever Rock Solid Frontflip Scene,tt6231792\n94pYLwdWTW0,2014.0,6,10,2018,Miffy the Movie,I Can Go Slow Too Scene,tt1690991\nwgb4Fz7D7wI,2014.0,5,10,2018,Miffy the Movie,The Animal With Stripes Scene,tt1690991\nPMFU8b_2cC0,2014.0,8,10,2018,Miffy the Movie,Camel Rides Scene,tt1690991\n2dOsofLx6jc,2014.0,4,10,2018,Miffy the Movie,Grunty Saves the Day Scene,tt1690991\nEv2Z-YUO2f4,2014.0,7,10,2018,Miffy the Movie,The Monkey Dance Scene,tt1690991\nbbtIanfT4oo,2014.0,10,10,2018,Miffy the Movie,I'm Happy to Say We Are Friends Scene,tt1690991\nYwn0PmxYgGo,2014.0,1,10,2018,Miffy the Movie,We're Going on a Treasure Hunt Scene,tt1690991\ns_8zJYpN2mc,2014.0,3,10,2018,Miffy the Movie,When I Get Big Scene,tt1690991\n8jfrU0a-Ayk,2014.0,9,10,2018,Miffy the Movie,Sing Hoo Hoo! Scene,tt1690991\naB6SfK9qD5Y,2014.0,2,10,2018,Miffy the Movie,Which Way? Scene,tt1690991\n104odr4s7Yc,2008.0,6,10,2018,A Cat's Tale,Crazy Squirrels Scene,tt0842000\nQrXSZJ3am_s,2008.0,8,10,2018,A Cat's Tale,Tag or Hide and Seek? Scene,tt0842000\n71_zrDEkRc0,2008.0,10,10,2018,A Cat's Tale,Cats in Love Scene,tt0842000\nszDAoChHbrQ,2008.0,9,10,2018,A Cat's Tale,Home is Where the Heart Is Scene,tt0842000\n4Tu7_tAe2tk,2008.0,3,10,2018,A Cat's Tale,Kitty Hide and Seek Scene,tt0842000\nSVtUDd2sBwE,2008.0,5,10,2018,A Cat's Tale,A Privileged Kitty Scene,tt0842000\n2pOMv-jM5lU,2008.0,2,10,2018,A Cat's Tale,Beware the Cat-Napper Scene,tt0842000\nH1sEkNAlW9w,2008.0,4,10,2018,A Cat's Tale,Cat vs. Dog Scene,tt0842000\nu3E23a-SpF0,2008.0,1,10,2018,A Cat's Tale,Marchello Escapes Scene,tt0842000\ngNdQdrKADh0,2008.0,7,10,2018,A Cat's Tale,Cat Fight! Scene,tt0842000\nqYEOmZzqX28,2018.0,8,10,2018,Teen Titans GO! to the Movies,The End of Robin Scene,tt7424200\nPitkS4aYur8,2018.0,3,10,2018,Teen Titans GO! to the Movies,\"Deathstroke, NOT Deadpool Scene\",tt7424200\nGgBt0TlbwUY,2018.0,1,10,2018,Teen Titans GO! to the Movies,The Teen Titans Rap Scene,tt7424200\ny4fdm5gdvnE,2018.0,4,10,2018,Teen Titans GO! to the Movies,This is an Inspirational Song Scene,tt7424200\nNKhTArRP31Q,2018.0,6,10,2018,Teen Titans GO! to the Movies,Time Cycle Trouble Scene,tt7424200\n7XBizI9jArU,2018.0,10,10,2018,Teen Titans GO! to the Movies,Fighting A Giant Robot Scene,tt7424200\nqB93c2JU4uQ,2018.0,9,10,2018,Teen Titans GO! to the Movies,Justice League vs Teen Titans Scene,tt7424200\ndnrJELv76n4,2018.0,2,10,2018,Teen Titans GO! to the Movies,Everybody Gets A Movie! Scene,tt7424200\nVqAqUVcgQdE,2018.0,7,10,2018,Teen Titans GO! to the Movies,Slaying Slade Scene,tt7424200\nhFfQhVgQU44,2018.0,5,10,2018,Teen Titans GO! to the Movies,My Super Hero Movie Scene,tt7424200\nOYSVICsTq78,2018.0,4,8,2018,Jonathan,His First Time Scene,tt5639446\nSEmSJCzcxyc,2018.0,6,8,2018,Jonathan,There Used to Be Three of Us Scene,tt5639446\nO0PAT4-kuY4,2018.0,1,8,2018,Jonathan,You Have a Girlfriend Scene,tt5639446\nQulj96h_-W0,2018.0,3,8,2018,Jonathan,Single Body Multi-Consciousness Scene,tt5639446\ncEyfq9j80Do,2018.0,2,8,2018,Jonathan,My Split Personality's Ex Scene,tt5639446\n5-kt5Av0s2M,2018.0,7,8,2018,Jonathan,Cheating on Myself Scene,tt5639446\n7Z3ccysbMwE,2018.0,5,8,2018,Jonathan,Waking up With Another Woman Scene,tt5639446\nt3nm6EPiuyw,2018.0,8,8,2018,Jonathan,Have Me Removed Scene,tt5639446\nIJnig4nc0xg,2017.0,3,10,2018,The Boss Baby,Tim vs. Baby Gang Scene,tt3874544\n9WpO5zPo8Dg,2017.0,2,10,2018,The Boss Baby,New Baby Brother Scene,tt3874544\nA_CGtuDwl-A,2017.0,8,10,2018,The Boss Baby,Catch that Baby! Scene,tt3874544\nrxkB20Tpvx0,2017.0,1,10,2018,The Boss Baby,Where Babies Come From Scene,tt3874544\nmIGCgzqFR0s,2017.0,4,10,2018,The Boss Baby,BabyCo Headquarters Scene,tt3874544\nVbP7jMN_v-w,2017.0,7,10,2018,The Boss Baby,Baby Vomit Fountain Scene,tt3874544\nUXldWskFeFY,2017.0,10,10,2018,The Boss Baby,A Family of My Own Scene,tt3874544\nuNjrnjiEEY8,2017.0,5,10,2018,The Boss Baby,Brotherly Love Scene,tt3874544\nprTlJO34AHE,2017.0,6,10,2018,The Boss Baby,Puppy Pants Scene,tt3874544\nKjWPSq6-Ets,2017.0,9,10,2018,The Boss Baby,Saving Puppies and Parents Scene,tt3874544\ndVLMfoIop9M,1967.0,6,10,2018,How to Succeed in Business Without Really Trying,Been a Long Day Scene,tt0061791\nluF2eyiYlyE,1967.0,3,10,2018,How to Succeed in Business Without Really Trying,Mrs. Jones & Me Scene,tt0061791\nLKJOXcFUSzc,1967.0,8,10,2018,How to Succeed in Business Without Really Trying,Rosemary Scene,tt0061791\n1GbNS7IcCj0,1967.0,9,10,2018,How to Succeed in Business Without Really Trying,Big Presentation Scene,tt0061791\n8FHO7Ry4_Jc,1967.0,4,10,2018,How to Succeed in Business Without Really Trying,The Boss's Wife Scene,tt0061791\nSKC8iPeIvEA,1967.0,2,10,2018,How to Succeed in Business Without Really Trying,The Company Way Scene,tt0061791\nuETwKF_fgKw,1967.0,5,10,2018,How to Succeed in Business Without Really Trying,A Secretary Is Not a Toy Scene,tt0061791\nDhUcvFP_Tas,1967.0,10,10,2018,How to Succeed in Business Without Really Trying,Brotherhood of Man Scene,tt0061791\nGwvrEz7vTZY,1967.0,7,10,2018,How to Succeed in Business Without Really Trying,I Believe In You Scene,tt0061791\nNV9oKGj_CcU,1967.0,1,10,2018,How to Succeed in Business Without Really Trying,Working Girls Scene,tt0061791\nUvSGGd3ewFI,2001.0,5,10,2018,Shrek,Rescuing Princess Fiona Scene,tt0126029\nAxGXZOLn-U0,2001.0,6,10,2018,Shrek,Princess vs Merry Men Scene,tt0126029\niropsnsCEjA,2001.0,4,10,2018,Shrek,The Highest Room in the Tallest Tower Scene,tt0126029\nem9lziI07M4,2001.0,1,10,2018,Shrek,An All-Star Ogre Opening Scene,tt0126029\nmFl8nzZuExE,2001.0,2,10,2018,Shrek,Do You Know the Muffin Man? Scene,tt0126029\nLSD1fq3xDA8,2001.0,9,10,2018,Shrek,True Love's True Kiss Scene,tt0126029\nxvZRXcg4iS8,2001.0,7,10,2018,Shrek,Love in the Air Scene,tt0126029\naQqAUXKn7t4,2001.0,3,10,2018,Shrek,Kill the Ogre Scene,tt0126029\nxURDJ-IW5YM,2001.0,8,10,2018,Shrek,Hallelujah Scene,tt0126029\na3bI7kbVBwM,2001.0,10,10,2018,Shrek,Now I'm a Believer Scene,tt0126029\nf2FzrfnfQPY,2017.0,3,10,2018,Justice League,The Story of Steppenwolf Scene,tt0974015\n9QJ2mqXdr5I,2017.0,1,10,2018,Justice League,Wonder Woman Saves London Scene,tt0974015\nNC34ce5BkWQ,2017.0,10,10,2018,Justice League,The Fastest Man Alive Scene,tt0974015\nCKc8xHhxP0Q,2017.0,8,10,2018,Justice League,Superman Returns Scene,tt0974015\nJQOay4rjHas,2017.0,9,10,2018,Justice League,Final Crisis Scene,tt0974015\n3sP7UMxhGYw,2017.0,5,10,2018,Justice League,Superman vs. the  Scene,tt0974015\nz79ikmr3JY8,2017.0,7,10,2018,Justice League,Superhero Team Up Scene,tt0974015\nb3OlGLDk4pY,2017.0,4,10,2018,Justice League,Escaping the Tunnels Scene,tt0974015\nf9Od8yx9gmg,2017.0,2,10,2018,Justice League,Amazons vs. Steppenwolf Scene,tt0974015\nWXne2B_inx8,2017.0,6,10,2018,Justice League,Lasso of Truth Scene,tt0974015\nCLxHRE-Knmc,2015.0,6,10,2018,San Andreas,San Francisco Skydive Scene,tt2126355\nn4bsNkDyF2s,2015.0,7,10,2018,San Andreas,San Francisco Gets Destroyed Scene,tt2126355\n2UPj8FTPaXg,2015.0,3,10,2018,San Andreas,Parking Garage Quake Scene,tt2126355\nOfXLQt6B8v4,2015.0,9,10,2018,San Andreas,Not High Enough Scene,tt2126355\nOqGw-1_vIWk,2015.0,1,10,2018,San Andreas,Helicopter Rescue Scene,tt2126355\nZ-WSedqa5zA,2015.0,8,10,2018,San Andreas,Tsunami Hits the Bay Scene,tt2126355\nfYbbxzLGpbI,2015.0,2,10,2018,San Andreas,Hoover Dam Destruction Scene,tt2126355\n0ERIepJUdPc,2015.0,10,10,2018,San Andreas,Don't You Quit on Me Scene,tt2126355\nxGon_kZAVtU,2015.0,4,10,2018,San Andreas,The Big One,tt2126355\nNE6nLFq0eqc,2015.0,5,10,2018,San Andreas,Rooftop Rescue Scene,tt2126355\nkPE7ZCGjw4o,2005.0,1,10,2018,Madagascar,Caught in Grand Central Station Scene,tt0351283\nJaTAjmSppvA,2005.0,3,10,2018,Madagascar,Penguin Boat Takeover Scene,tt0351283\nU1_VGnnMle8,2005.0,10,10,2018,Madagascar,A Spitting Toast to Alex Scene,tt0351283\nFpekkNyDPcc,2005.0,7,10,2018,Madagascar,Alex Goes Crazy Scene,tt0351283\n8ty1025m6XQ,2005.0,6,10,2018,Madagascar,Crying Mort Scene,tt0351283\nrPuW7T25Yuw,2005.0,8,10,2018,Madagascar,What a Wonderful World Scene,tt0351283\nCyJglP6k8lE,2005.0,9,10,2018,Madagascar,Penguins to the Rescue Scene,tt0351283\nYoIcmX40-_s,2005.0,4,10,2018,Madagascar,On the Beach Scene,tt0351283\nApuFuuCJc3s,2005.0,5,10,2018,Madagascar,I Like to Move It Move It Scene,tt0351283\nwV7vM4-FzJM,2005.0,2,10,2018,Madagascar,Shipped to Africa Scene,tt0351283\nrHvCQEr_ETk,2008.0,10,10,2018,Kung Fu Panda,The True Secret Ingredient Scene,tt0441773\n_7DVsN761n0,2008.0,4,10,2018,Kung Fu Panda,The Origin of Tai Lung Scene,tt0441773\nAhbCYVILusc,2008.0,9,10,2018,Kung Fu Panda,Fight for the Dragon Scroll Scene,tt0441773\nGQM4dSjjQuE,2008.0,8,10,2018,Kung Fu Panda,Tai Lung's Revenge Scene,tt0441773\nJy2_J5WCzDY,2008.0,7,10,2018,Kung Fu Panda,Our Battle Will Be Legendary! Scene,tt0441773\nUsZNj9srzR8,2008.0,3,10,2018,Kung Fu Panda,Tai Lung's Escape Scene,tt0441773\nzvY-EPgYB4Y,2008.0,6,10,2018,Kung Fu Panda,Kung Fu Training Scene,tt0441773\nihKHvNOTcwk,2008.0,2,10,2018,Kung Fu Panda,The Dragon Warrior Trials Scene,tt0441773\nSTqJ_Up4iFg,2008.0,1,10,2018,Kung Fu Panda,The Legendary Warrior Scene,tt0441773\n0_1NU60qHWs,2008.0,5,10,2018,Kung Fu Panda,Impersonations at Dinner Scene,tt0441773\nwMr2d10-xf0,2016.0,7,10,2018,Storks,Birds Can't See Glass Scene,tt4624424\nkzZQYnvw-6E,2016.0,3,10,2018,Storks,Wolves Love Babies! Scene,tt4624424\nZPCSC8NM87k,2016.0,9,10,2018,Storks,One Million Babies Scene,tt4624424\n9NTvToplMlw,2016.0,6,10,2018,Storks,Putting The Baby To Sleep Scene,tt4624424\nbx_rua3EXFc,2016.0,10,10,2018,Storks,Boss Fight Scene,tt4624424\nU6GY91u1I_c,2016.0,4,10,2018,Storks,Running From Wolves Scene,tt4624424\nsCr9YZRDsJA,2016.0,1,10,2018,Storks,The Orphan Tulip Scene,tt4624424\nuTUupV0ZfBk,2016.0,8,10,2018,Storks,Quiet Riot Penguins Scene,tt4624424\nSQH8if7dbqw,2016.0,2,10,2018,Storks,The Baby Factory Scene,tt4624424\n-pix6UL8ONk,2016.0,5,10,2018,Storks,Sing to Her Scene,tt4624424\nLiODoFVKD40,2015.0,3,10,2018,Home,Bathroom Break Scene,tt1935859\nY-rxY2LxPI8,2015.0,10,10,2018,Home,The Lonely Gorg Scene,tt1935859\nAD3baa_nijI,2015.0,5,10,2018,Home,Eiffel Tower Chase Scene,tt1935859\nhMGHJFVuqpg,2015.0,9,10,2018,Home,Fixing My Mistakes Scene,tt1935859\nrLVwKpyUwWI,2015.0,4,10,2018,Home,Boov Do Not Dancing Scene,tt1935859\nkWHOafRR0Sk,2015.0,2,10,2018,Home,The Interrupting Cow Scene,tt1935859\nHiwu7Hu2hAs,2015.0,7,10,2018,Home,You Lied to Me! Scene,tt1935859\nK8yA801TQVQ,2015.0,8,10,2018,Home,Tip Finds 'My Mom' Scene,tt1935859\nfwZw8vujVMU,2015.0,6,10,2018,Home,The Gorg Attacks Scene,tt1935859\nykQ9g2HT2sU,2015.0,1,10,2018,Home,The Slushious Scene,tt1935859\n8H_aePfIMzQ,1968.0,4,12,2018,\"Yours, Mine and Ours\",I Have Eight Children Scene,tt0063829\nUiqk92r4luQ,1968.0,5,12,2018,\"Yours, Mine and Ours\",Helen Loses Her Eyelash Scene,tt0063829\nWbcZ3k4Mr6Q,1968.0,10,12,2018,\"Yours, Mine and Ours\",The Doctor Makes a House Call Scene,tt0063829\nOGEfW_fV9ZI,1968.0,2,12,2018,\"Yours, Mine and Ours\",He Doesn't Know About Us? Scene,tt0063829\nD93GR0PGUD0,1968.0,9,12,2018,\"Yours, Mine and Ours\",Firing Squad Marriage Scene,tt0063829\nLiioO2L5ZA4,1968.0,3,12,2018,\"Yours, Mine and Ours\",A Teenybopper Dress Scene,tt0063829\nmvH6IhKpehk,1968.0,7,12,2018,\"Yours, Mine and Ours\",Monkey in the Middle Scene,tt0063829\nG5_nIhUCuhk,1968.0,8,12,2018,\"Yours, Mine and Ours\",Drunk Dinner Scene,tt0063829\nx7S89GM5N7w,1968.0,12,12,2018,\"Yours, Mine and Ours\",What Love Really Is Scene,tt0063829\nmkG2YdCogPY,1968.0,1,12,2018,\"Yours, Mine and Ours\",Widow and Widower Scene,tt0063829\nExsSDD8Lpsc,1968.0,11,12,2018,\"Yours, Mine and Ours\",Beardsley! Scene,tt0063829\ncyUf4tLI53o,1968.0,6,12,2018,\"Yours, Mine and Ours\",I Have Ten Children Scene,tt0063829\ngzbYTUXZkSI,2012.0,4,10,2018,Rise of the Guardians,The Sandman vs. Pitch Scene,tt1446192\nBpnlB0ILpWw,2012.0,6,10,2018,Rise of the Guardians,Sentenced to Solitude Scene,tt1446192\nlNVb-ZNIO-A,2012.0,10,10,2018,Rise of the Guardians,Dreams Come True Scene,tt1446192\nLgpg6frCrvw,2012.0,9,10,2018,Rise of the Guardians,Battling the Boogeyman Scene,tt1446192\nvqPT1IbJrX8,2012.0,8,10,2018,Rise of the Guardians,Guardians Reassemble Scene,tt1446192\n1OxDZKordaM,2012.0,1,10,2018,Rise of the Guardians,A New Guardian Scene,tt1446192\nmpBQ883QIUs,2012.0,5,10,2018,Rise of the Guardians,Easter Egg Land Scene,tt1446192\nz9uP9znP-mA,2012.0,2,10,2018,Rise of the Guardians,Everyone Loves the Sleigh Scene,tt1446192\nfYVAGoTb8w4,2012.0,7,10,2018,Rise of the Guardians,The Origin of Jack Frost Scene,tt1446192\n89RJwGDFpC4,2012.0,3,10,2018,Rise of the Guardians,Honorary Tooth Fairies Scene,tt1446192\n_-9Pewr-JgY,1982.0,9,10,2018,Creepshow,Devouring Divorce Scene,tt0083767\njkZtAzrw3Q8,1982.0,6,10,2018,Creepshow,We're Already Dead Scene,tt0083767\nL_nh3Rtyj-Y,1982.0,5,10,2018,Creepshow,The Lonesome Death of Jordy Verrill Scene,tt0083767\nWMFxWlrpnLM,1982.0,2,10,2018,Creepshow,Joining the Family Cemetery Scene,tt0083767\nintjK7aTbjs,1982.0,8,10,2018,Creepshow,The Beast Under the Stairs Scene,tt0083767\nbJ09DFHWeXk,1982.0,3,10,2018,Creepshow,Grandpa is Back Scene,tt0083767\nGOpFSBhGjuU,1982.0,4,10,2018,Creepshow,Happy Father's Day Scene,tt0083767\n9E1ulvRRYFM,1982.0,1,10,2018,Creepshow,Where's My Cake? Scene,tt0083767\n2LsMNs4hW1s,1982.0,10,10,2018,Creepshow,Death By Roaches Scene,tt0083767\nWXeW1HiwAtE,1982.0,7,10,2018,Creepshow,The Crate Monster Scene,tt0083767\n7nWfsF7ThLw,1982.0,6,12,2018,Death Wish II,Goodbye Scene,tt0082250\nIGaJfcOD6gs,1982.0,10,12,2018,Death Wish II,Wrestling With the Police Scene,tt0082250\nzH80pWTYSLg,1982.0,4,12,2018,Death Wish II,Fence Impalement Scene,tt0082250\nA8xy9h5olhQ,1982.0,8,12,2018,Death Wish II,Tracking the Thugs Scene,tt0082250\nduZLaW_6qLc,1982.0,7,12,2018,Death Wish II,A Very Good Citizen Scene,tt0082250\nYh03Vnp8pCk,1982.0,5,12,2018,Death Wish II,You Believe in Jesus? Scene,tt0082250\nsbZB1drlKWI,1982.0,1,12,2018,Death Wish II,Where's My Wallet? Scene,tt0082250\nvh-mdPoc92Y,1982.0,12,12,2018,Death Wish II,A Hair-Raising Conclusion Scene,tt0082250\nLw5Ss6z8IoM,1982.0,11,12,2018,Death Wish II,Will Ya Marry Me? Scene,tt0082250\nL7FVtB7mKEU,1982.0,9,12,2018,Death Wish II,Showdown in the Park Scene,tt0082250\naDcfm_9GTyU,1982.0,3,12,2018,Death Wish II,Home Invasion Scene,tt0082250\nRNPPrvhTKuc,1982.0,2,12,2018,Death Wish II,Break In Scene,tt0082250\nLT9qOeKcL-o,2015.0,4,10,2018,No Control,The Reach Of Gun Violence Scene,tt3230934\n_RsxXzFxqdg,2015.0,5,10,2018,No Control,Intro to Handguns Scene,tt3230934\nENmpNBFdwFQ,2015.0,1,10,2018,No Control,AR-15 Art Installation Scene,tt3230934\nIGCJTr90IZk,2015.0,10,10,2018,No Control,Erasing Gun Violence Scene,tt3230934\nln_5-pRR-HQ,2015.0,7,10,2018,No Control,Colorado Gun Law Debate Scene,tt3230934\nHexOzLEvLGA,2015.0,6,10,2018,No Control,The Erasers Scene,tt3230934\nB1bYkou_mnY,2015.0,8,10,2018,No Control,What You Need To Feel Safe Scene,tt3230934\nlsES3-QXzZQ,2015.0,3,10,2018,No Control,Gun Laws Pushback Scene,tt3230934\n4o1x3FxQLf8,2015.0,2,10,2018,No Control,The Liberator Scene,tt3230934\nL5jFIw9yBbA,2015.0,9,10,2018,No Control,The Grand Compromise Scene,tt3230934\nwO4P6Yz_LZg,2003.0,2,11,2018,Bulletproof Monk,The Monk with No Name Disappears Scene,tt0245803\nqqAzmt1d8kU,2003.0,9,11,2018,Bulletproof Monk,Sewer Fight  Scene,tt0245803\nVwlkxIN9tfQ,2003.0,11,11,2018,Bulletproof Monk,Bulletproof Too Scene,tt0245803\nsVfuigRSl8g,2003.0,8,11,2018,Bulletproof Monk,Fighting and Flirting Scene,tt0245803\nXT2IS2dn8gM,2003.0,6,11,2018,Bulletproof Monk,Mind Over Matter Scene,tt0245803\nleSpIIaEblk,2003.0,5,11,2018,Bulletproof Monk,Chased in Chinatown Scene,tt0245803\nioE_djgs810,2003.0,7,11,2018,Bulletproof Monk,Attacked by Mercenaries Scene,tt0245803\nLBm4aJ0ZcqY,2003.0,10,11,2018,Bulletproof Monk,Rooftop Rumble Scene,tt0245803\nGW475l4IoyU,2003.0,4,11,2018,Bulletproof Monk,Kar Meets the Monk with No Name Scene,tt0245803\nDHXHxop1gPw,2003.0,3,11,2018,Bulletproof Monk,Pipe Fight Scene,tt0245803\nDtH30Cz2Zec,2003.0,1,11,2018,Bulletproof Monk,Rope Bridge Fight Scene,tt0245803\nJNcNy7bJxDg,1966.0,3,10,2018,The Russians Are Coming! The Russians Are Coming!,Arnold Benedict Scene,tt0060921\nMYErK-XLJv0,1966.0,9,10,2018,The Russians Are Coming! The Russians Are Coming!,Not Personal Scene,tt0060921\nYmRuVv2V5Go,1966.0,4,10,2018,The Russians Are Coming! The Russians Are Coming!,Hanging Around Scene,tt0060921\n1PRZi8t38OQ,1966.0,7,10,2018,The Russians Are Coming! The Russians Are Coming!,Trust the Enemy Scene,tt0060921\nILkyIHOOoq4,1966.0,2,10,2018,The Russians Are Coming! The Russians Are Coming!,Finding the Key Scene,tt0060921\nVzXMcMcBwA8,1966.0,8,10,2018,The Russians Are Coming! The Russians Are Coming!,Down the Stairs Scene,tt0060921\nijBU9q7fb3U,1966.0,5,10,2018,The Russians Are Coming! The Russians Are Coming!,The Militia Scene,tt0060921\nk3TpBfnaEmI,1966.0,10,10,2018,The Russians Are Coming! The Russians Are Coming!,Under Arrest Scene,tt0060921\nPBHYbeg2nao,1966.0,1,10,2018,The Russians Are Coming! The Russians Are Coming!,The Norwegians Scene,tt0060921\njMqI9UV3ob4,1966.0,6,10,2018,The Russians Are Coming! The Russians Are Coming!,Got to Organize Scene,tt0060921\nBrLcbi68R_A,1985.0,8,8,2018,A Chorus Line,One Scene,tt0088915\nPahRJMVNho0,1985.0,5,8,2018,A Chorus Line,Let Me Dance for You Scene,tt0088915\n4t7oXxFAlHM,1985.0,1,8,2018,A Chorus Line,I Hope I Get It Scene,tt0088915\nFhsFZDrRvoM,1985.0,4,8,2018,A Chorus Line,\"Dance: Ten, Looks: Three Scene\",tt0088915\nt1RkYJaG9bo,1985.0,3,8,2018,A Chorus Line,Nothing Scene,tt0088915\n8TbUl9dhTRg,1985.0,7,8,2018,A Chorus Line,What I Did for Love Scene,tt0088915\n7bCqTdKJPFo,1985.0,6,8,2018,A Chorus Line,Paul's First Job Scene,tt0088915\n5Ehdu6XTlBc,1985.0,2,8,2018,A Chorus Line,I Can Do That Scene,tt0088915\nozkF8KRjeO8,1987.0,5,12,2018,Teen Wolf Too,The Wolf Comes Out Scene,tt0094118\nndpVsMLr424,1987.0,12,12,2018,Teen Wolf Too,Winning as a Man Scene,tt0094118\nkFeduM49hBY,1987.0,11,12,2018,Teen Wolf Too,Todd Fights On Scene,tt0094118\nxKYgXZQuqm8,1987.0,6,12,2018,Teen Wolf Too,The Werewolf Wins Scene,tt0094118\nOflOQW_pkvc,1987.0,8,12,2018,Teen Wolf Too,Frog Fight! Scene,tt0094118\nHavLrFJcqMs,1987.0,10,12,2018,Teen Wolf Too,You Don't Know Who You're Dealing With Scene,tt0094118\nKgnrxjgHngA,1987.0,3,12,2018,Teen Wolf Too,Dancing With a Dog Scene,tt0094118\nDYAdSce8Rd0,1987.0,4,12,2018,Teen Wolf Too,Ants in His Pants Scene,tt0094118\njTkt23CfSp4,1987.0,1,12,2018,Teen Wolf Too,Stiles's Plan Scene,tt0094118\nffknf2fIpiY,1987.0,9,12,2018,Teen Wolf Too,You've Become a Jerk Scene,tt0094118\n95FV_p0Rivo,1987.0,2,12,2018,Teen Wolf Too,I'd Like to Change Classes Scene,tt0094118\nfb-9_MV15I4,1987.0,7,12,2018,Teen Wolf Too,Todd Fetches a Frisbee Scene,tt0094118\neGtDmvtBZQY,2009.0,2,10,2018,Monsters vs. Aliens,Meet the Monsters Scene,tt0892782\neoREjwjeH30,2009.0,6,10,2018,Monsters vs. Aliens,Captured by Aliens Scene,tt0892782\ntLXNDzc-2fA,2009.0,3,10,2018,Monsters vs. Aliens,First Contact Scene,tt0892782\nnmaCobIvt2w,2009.0,9,10,2018,Monsters vs. Aliens,Doctor Of Dance Scene,tt0892782\nJcC5XdvOWWM,2009.0,8,10,2018,Monsters vs. Aliens,Destroy All Monsters! Scene,tt0892782\nBTJ-smMan7Y,2009.0,5,10,2018,Monsters vs. Aliens,Golden Gate Grapple Scene,tt0892782\nXF5omSq8eRQ,2009.0,10,10,2018,Monsters vs. Aliens,Go Big Or Go Home Scene,tt0892782\nXcgNkFuPBV8,2009.0,1,10,2018,Monsters vs. Aliens,The Bride's Big Day Scene,tt0892782\nETu553EnTJM,2009.0,7,10,2018,Monsters vs. Aliens,Alien Clones Scene,tt0892782\npjF6bofXAvQ,2009.0,4,10,2018,Monsters vs. Aliens,The Monster Files Scene,tt0892782\nUciEIYZ-Eos,2017.0,3,10,2018,Captain Underpants: The First Epic Movie,The Saturday Song Scene,tt2091256\nevQcKvkQCl0,2017.0,7,10,2018,Captain Underpants: The First Epic Movie,The Fart Symphony Scene,tt2091256\nlGuivq-6xrw,2017.0,9,10,2018,Captain Underpants: The First Epic Movie,End of Laughter Scene,tt2091256\nuzTuGHYRJ9w,2017.0,2,10,2018,Captain Underpants: The First Epic Movie,School Pranks Scene,tt2091256\nkv-hhf-kPkw,2017.0,8,10,2018,Captain Underpants: The First Epic Movie,The School Fair Scene,tt2091256\nrilZTyv9RLo,2017.0,1,10,2018,Captain Underpants: The First Epic Movie,The Origin Story Scene,tt2091256\ngrwlYBNyMk4,2017.0,10,10,2018,Captain Underpants: The First Epic Movie,Saving the Day Scene,tt2091256\ndSdY41CWixQ,2017.0,5,10,2018,Captain Underpants: The First Epic Movie,The Real-Life Hero Scene,tt2091256\nu-eTCyG0jpA,2017.0,6,10,2018,Captain Underpants: The First Epic Movie,Stop That Gorilla! Scene,tt2091256\n7wZdMPB-O6Y,2017.0,4,10,2018,Captain Underpants: The First Epic Movie,Our World is Destroyed Scene,tt2091256\nL_l2ii_25tc,1968.0,10,12,2018,Chitty Chitty Bang Bang,Music Box Dance Scene,tt0062803\nkBErrmmqnkI,1968.0,11,12,2018,Chitty Chitty Bang Bang,Freeing the Children Scene,tt0062803\nyuU4pFcEgWo,1968.0,12,12,2018,Chitty Chitty Bang Bang,Capturing the Baron and Baroness Scene,tt0062803\noY0spjrKFdM,1968.0,1,12,2018,Chitty Chitty Bang Bang,You Two Scene,tt0062803\nLehcJeNbFBw,1968.0,8,12,2018,Chitty Chitty Bang Bang,The Child Catcher Scene,tt0062803\nSUr7fu-LXj4,1968.0,4,12,2018,Chitty Chitty Bang Bang,Me Ol' Bam-Boo Scene,tt0062803\ngo4K4rCFjMQ,1968.0,6,12,2018,Chitty Chitty Bang Bang,Truly Scrumptious Scene,tt0062803\naak6BqNR150,1968.0,9,12,2018,Chitty Chitty Bang Bang,Chu-Chi Face Scene,tt0062803\nf1bk5a_jaEA,1968.0,2,12,2018,Chitty Chitty Bang Bang,Toot Sweets Scene,tt0062803\nWuer3mLqIxc,1968.0,7,12,2018,Chitty Chitty Bang Bang,Chitty Gets Airborne Scene,tt0062803\nYfdRr7MWax4,1968.0,3,12,2018,Chitty Chitty Bang Bang,Hushabye Mountain Scene,tt0062803\n1lt4euqZLsY,1968.0,5,12,2018,Chitty Chitty Bang Bang,Scene,tt0062803\nYSfBTZfswSg,2014.0,6,10,2018,How to Train Your Dragon 2,Alpha Battle Scene,tt1646971\n6_eBGV71X0w,2014.0,4,10,2018,How to Train Your Dragon 2,The Land Of Dragons Scene,tt1646971\nIvFBobchMoc,2014.0,10,10,2018,How to Train Your Dragon 2,Toothless vs. The Bewilderbeast Scene,tt1646971\nTiJBxtM5iKw,2014.0,1,10,2018,How to Train Your Dragon 2,The Wingsuit Scene,tt1646971\nawuqJuO5WOc,2014.0,3,10,2018,How to Train Your Dragon 2,A Mother Never Forgets Scene,tt1646971\nDBUXGB_L5q8,2014.0,5,10,2018,How to Train Your Dragon 2,Drago Attacks! Scene,tt1646971\npDjY4qorZrg,2014.0,2,10,2018,How to Train Your Dragon 2,Dragon Trappers Scene,tt1646971\nPMjbPEGDJ7w,2014.0,7,10,2018,How to Train Your Dragon 2,Evil Toothless Scene,tt1646971\nS-EfnfP_cGY,2014.0,8,10,2018,How to Train Your Dragon 2,\"Goodbye, Father Scene\",tt1646971\n07kluxoO8j8,2014.0,9,10,2018,How to Train Your Dragon 2,Rescuing Toothless Scene,tt1646971\njFQUE_6Zhn0,2010.0,3,10,2018,How to Train Your Dragon,A New Tail Scene,tt0892769\nUp7TU2t7_8g,2010.0,9,10,2018,How to Train Your Dragon,Dragon vs. Dragon Scene,tt0892769\nVvNX7pOAK58,2010.0,8,10,2018,How to Train Your Dragon,The Red Death Dragon Scene,tt0892769\n2iD5pPwbDJ8,2010.0,6,10,2018,How to Train Your Dragon,Going For A Ride Scene,tt0892769\naFnS18LM8Ws,2010.0,7,10,2018,How to Train Your Dragon,Hiccup's Final Test Scene,tt0892769\nZDyEERuK31Y,2010.0,5,10,2018,How to Train Your Dragon,Learning To Fly Scene,tt0892769\nVv9KJYUnVvA,2010.0,2,10,2018,How to Train Your Dragon,Dinner With A Dragon Scene,tt0892769\nT5KjTcbQVMs,2010.0,10,10,2018,How to Train Your Dragon,We Have Dragons Scene,tt0892769\nc95YKkIbTGg,2010.0,1,10,2018,How to Train Your Dragon,Freeing The Night Fury Scene,tt0892769\nyHjejU3HvRE,2010.0,4,10,2018,How to Train Your Dragon,Training Tips Scene,tt0892769\n8m3HqHIpcWU,2018.0,8,10,2018,Superfly,Necessary Violence Scene,tt7690670\nCUnezbuG4fo,2018.0,5,10,2018,Superfly,You Started a War Scene,tt7690670\nKekb8jHfDxI,2018.0,9,10,2018,Superfly,Fighting Fire With Fire Scene,tt7690670\nysLBlalu91s,2018.0,6,10,2018,Superfly,Crooked Cops Scene,tt7690670\nGaIcAaHFc0U,2018.0,1,10,2018,Superfly,Where's My Money? Scene,tt7690670\nnIW73heJdg4,2018.0,7,10,2018,Superfly,Don't Touch Me Again Scene,tt7690670\nKBCL6GBurNw,2018.0,2,10,2018,Superfly,Drugs and Jiu-Jitsu Scene,tt7690670\n9svQ60inP0g,2018.0,10,10,2018,Superfly,No Honor Among Drug Dealers Scene,tt7690670\nEOavA469Z24,2018.0,4,10,2018,Superfly,Sky High Scene,tt7690670\n-npMZStX7dU,2018.0,3,10,2018,Superfly,Barbershop Hit Scene,tt7690670\nF70EkgLs4DM,1971.0,9,9,2018,Shaft,to the Rescue Scene,tt0067741\ndxzktMx1jbY,1971.0,4,9,2018,Shaft,Don't Jive Me Scene,tt0067741\nhfNlv4HLZ5k,1971.0,8,9,2018,Shaft,She's Our Ace Scene,tt0067741\nup1wTd5shfc,1971.0,6,9,2018,Shaft,My Name is John  Scene,tt0067741\nIBRkROD4KAU,1971.0,5,9,2018,Shaft,\"You Got Problems, Baby? Scene\",tt0067741\ndzabuGq1wIE,1971.0,3,9,2018,Shaft,You Ain't So Black Scene,tt0067741\n94k4a1GI9rY,1971.0,1,9,2018,Shaft,Where You Going? Scene,tt0067741\nuo6yyV0N7y4,1971.0,2,9,2018,Shaft,Bumpy Sent Us Scene,tt0067741\nUaCGeQifvdo,1971.0,7,9,2018,Shaft,Close It Yourself Scene,tt0067741\nikqLKMZ86d8,1988.0,7,12,2018,I'm Gonna Git You Sucka,Cherry Surprise Scene,tt0095348\nEzRtOVxgKCI,1988.0,12,12,2018,I'm Gonna Git You Sucka,Jack's Booboo Scene,tt0095348\nuhDhzHrffBQ,1988.0,6,12,2018,I'm Gonna Git You Sucka,Trained for Combat Scene,tt0095348\nfJlJX4Rj_WU,1988.0,11,12,2018,I'm Gonna Git You Sucka,Kung Fu Joe Gets Pulled Over Scene,tt0095348\n38jXOaoZQZI,1988.0,2,12,2018,I'm Gonna Git You Sucka,Ma Protects the Homefront Scene,tt0095348\nTjvHy-IYET8,1988.0,1,12,2018,I'm Gonna Git You Sucka,OG: Over Gold Scene,tt0095348\nHb8I1My6zOM,1988.0,10,12,2018,I'm Gonna Git You Sucka,Cramps! Scene,tt0095348\nLJl8SSI8MHA,1988.0,5,12,2018,I'm Gonna Git You Sucka,Ma Brings It Scene,tt0095348\nNJNAE_e-gM0,1988.0,4,12,2018,I'm Gonna Git You Sucka,Youth Gang Competition Scene,tt0095348\n4MbRVVP6rPg,1988.0,3,12,2018,I'm Gonna Git You Sucka,Mr. Big Scene,tt0095348\ntgHcYxKjwVE,1988.0,8,12,2018,I'm Gonna Git You Sucka,One Rib! Scene,tt0095348\n4CVFOnmW6v8,1988.0,9,12,2018,I'm Gonna Git You Sucka,Pimp of the Year Scene,tt0095348\nSiwL_3yOWRM,1994.0,1,10,2018,The Shawshank Redemption,Andy Meets Red Scene,tt0111161\nU_74PjS1Epk,1994.0,5,10,2018,The Shawshank Redemption,Brooks Was Here Scene,tt0111161\nHT4kxxCpWYM,1994.0,8,10,2018,The Shawshank Redemption,I Just Miss My Friend Scene,tt0111161\n9UE8ospTDgA,1994.0,4,10,2018,The Shawshank Redemption,Institutionalized Scene,tt0111161\ns0ADj-PzbF0,1994.0,9,10,2018,The Shawshank Redemption,Red's Parole Hearing Scene,tt0111161\n-nCYpOC-Gtk,1994.0,3,10,2018,The Shawshank Redemption,The Sisters Scene,tt0111161\naP22KbKvaMg,1994.0,2,10,2018,The Shawshank Redemption,Tax Advice Scene,tt0111161\nwMu4IBsX--I,1994.0,6,10,2018,The Shawshank Redemption,Get Busy Living or Get Busy Dying Scene,tt0111161\nk1jq4jHNYpg,1994.0,10,10,2018,The Shawshank Redemption,Hope is a Good Thing Scene,tt0111161\nfR-2fk_qusE,1994.0,7,10,2018,The Shawshank Redemption,Andy Escapes Scene,tt0111161\nAWi8x9ctlps,1958.0,7,9,2018,The Defiant Ones,Afraid of Catching My Color? Scene,tt0051525\nMFmLZibi7DE,1958.0,9,9,2018,The Defiant Ones,Chasing the Train Scene,tt0051525\nBN77UGYk5tg,1958.0,5,9,2018,The Defiant Ones,\"You Can't Go Lynching Me, I'm a White Man Scene\",tt0051525\nwpQ4R1jlFHs,1958.0,8,9,2018,The Defiant Ones,You Don't Even Know My Name Scene,tt0051525\nsgB8cpEi_zU,1958.0,3,9,2018,The Defiant Ones,Trapped in the Quarry Scene,tt0051525\nXPKzmSSQ2xk,1958.0,4,9,2018,The Defiant Ones,I Been Mad All My Natural Life Scene,tt0051525\nKGV-R-dVuGA,1958.0,1,9,2018,The Defiant Ones,North vs. South Scene,tt0051525\ne8EAVtsvfxc,1958.0,6,9,2018,The Defiant Ones,I'm Lettin' Ya Loose Scene,tt0051525\nuqVEYJGg3J0,1958.0,2,9,2018,The Defiant Ones,Words That Stick Like Needles Scene,tt0051525\nX0vQQA32UAs,2003.0,7,11,2018,Out of Time,Battle on the Balcony Scene,tt0313443\nXNZRK35VNrk,2003.0,10,11,2018,Out of Time,At the Old Boat Scene,tt0313443\nS99xKAAo43k,2003.0,2,11,2018,Out of Time,Prowler in the Neighborhood Scene,tt0313443\nyiPqxnLMKbs,2003.0,4,11,2018,Out of Time,Ann's Flowers Scene,tt0313443\nLh3y_KLTwWc,2003.0,6,11,2018,Out of Time,Fax Tampering Scene,tt0313443\nINrZ0l5JbrA,2003.0,8,11,2018,Out of Time,Double Identity Scene,tt0313443\nzpsNG-exYxE,2003.0,5,11,2018,Out of Time,The Usual Suspect Scene,tt0313443\nWNAjVd38Q1E,2003.0,3,11,2018,Out of Time,I'm Banging Your Wife Scene,tt0313443\nH-Mr-QmgheY,2003.0,11,11,2018,Out of Time,Don't Shoot Me Scene,tt0313443\n0g2o-CfakW0,2003.0,1,11,2018,Out of Time,Scene of the Crime Scene,tt0313443\nm3qnMx_kA2A,2003.0,9,11,2018,Out of Time,Ann's Lie Scene,tt0313443\nP3WCkLjKW-k,1984.0,9,10,2018,A Nightmare on Elm Street,Don't Fear Freddy Scene,tt0087800\ncl3sud_uDhc,1984.0,4,10,2018,A Nightmare on Elm Street,Not Just a Dream Scene,tt0087800\nrSAWPBO-ewA,1984.0,2,10,2018,A Nightmare on Elm Street,Boiler Room Terror Scene,tt0087800\n0OqXqd_s0ho,1984.0,6,10,2018,A Nightmare on Elm Street,Glen's Bloody Death Scene,tt0087800\nTf9j5763-Gc,1984.0,3,10,2018,A Nightmare on Elm Street,Bathtime with Freddy Scene,tt0087800\naaGgRabJ0NI,1984.0,5,10,2018,A Nightmare on Elm Street,Suicidal Sleep Scene,tt0087800\nHcrTqof683A,1984.0,1,10,2018,A Nightmare on Elm Street,Tina's Nightmare Scene,tt0087800\nmD5CrAC4LPI,1984.0,10,10,2018,A Nightmare on Elm Street,Nightmare Never Ends Scene,tt0087800\n5aegHe2iS8w,1984.0,7,10,2018,A Nightmare on Elm Street,Back to Fight Freddy Scene,tt0087800\nS0hTkEECANg,1984.0,8,10,2018,A Nightmare on Elm Street,Trapping Freddy Scene,tt0087800\nvq0OqfmArnY,1985.0,5,12,2018,Remo Williams: The Adventure Begins,You Rely on What You Know Scene,tt0089901\n1V4SU2_-Ppg,1985.0,2,12,2018,Remo Williams: The Adventure Begins,Fighting Chiun Scene,tt0089901\nupoh7LbKZR0,1985.0,3,12,2018,Remo Williams: The Adventure Begins,Breathe Scene,tt0089901\nHcGpEScyT5o,1985.0,6,12,2018,Remo Williams: The Adventure Begins,Ferris Wheel Training Scene,tt0089901\n2Q0IkYxSo3w,1985.0,4,12,2018,Remo Williams: The Adventure Begins,Korean Fingerboard Scene,tt0089901\nJmSmZRCl6A4,1985.0,12,12,2018,Remo Williams: The Adventure Begins,Walking on Water Scene,tt0089901\nROXLPqlbJck,1985.0,1,12,2018,Remo Williams: The Adventure Begins,Pushed Into the River Scene,tt0089901\nkbpdM9ORaI8,1985.0,7,12,2018,Remo Williams: The Adventure Begins,Elevator Attack! Scene,tt0089901\n3NRVJdoihjY,1985.0,11,12,2018,Remo Williams: The Adventure Begins,Explode and Walk Away Scene,tt0089901\nqwwLKFCR4K0,1985.0,8,12,2018,Remo Williams: The Adventure Begins,Wet Cement Scene,tt0089901\nZTsUO_9AT20,1985.0,9,12,2018,Remo Williams: The Adventure Begins,Glasshole Scene,tt0089901\n5OkvZ-y_dgI,1985.0,10,12,2018,Remo Williams: The Adventure Begins,Log Attack Scene,tt0089901\n43OVm86-4rU,2018.0,10,10,2018,Hotel Transylvania 3,DJ Battle Scene,tt5220122\nU9WHLcpvVz0,2018.0,7,10,2018,Hotel Transylvania 3,Welcome To Atlantis Scene,tt5220122\nL2inhzv1Rs8,2018.0,6,10,2018,Hotel Transylvania 3,Dracula's Date Scene,tt5220122\nZ4kBo6FO8bc,2018.0,2,10,2018,Hotel Transylvania 3,Care to Dance? Scene,tt5220122\nIAaXyDc1gjk,2018.0,3,10,2018,Hotel Transylvania 3,Dracula Zings Scene,tt5220122\n9oS260wm-UM,2018.0,4,10,2018,Hotel Transylvania 3,Everybody in the Pool Scene,tt5220122\nOjDuQ7O9XUo,2018.0,9,10,2018,Hotel Transylvania 3,Dracula vs. the Kraken Scene,tt5220122\nNM0WEaC8LcQ,2018.0,5,10,2018,Hotel Transylvania 3,Monsters Under the Sea Scene,tt5220122\nbC0vGFJbMjo,2018.0,8,10,2018,Hotel Transylvania 3,A Dangerous Dance Scene,tt5220122\nvM7QMLTm1so,2018.0,1,10,2018,Hotel Transylvania 3,Vanquishing Van Helsing Scene,tt5220122\na8cviBPaWJ0,2010.0,2,9,2018,A Nightmare on Elm Street,Sleeping in Class Scene,tt1179056\nrvpFERo3ZnA,2010.0,4,9,2018,A Nightmare on Elm Street,Jesse's Prison Nightmare Scene,tt1179056\nQ2-Jg_2l1FA,2010.0,6,9,2018,A Nightmare on Elm Street,The Death of Fred Krueger Scene,tt1179056\nPQ3Qc8bOqlY,2010.0,5,9,2018,A Nightmare on Elm Street,Bathtime Terror Scene,tt1179056\nuycL6ws3vMc,2010.0,1,9,2018,A Nightmare on Elm Street,They're Just Dreams Scene,tt1179056\ne2Cuc3oHb4U,2010.0,8,9,2018,A Nightmare on Elm Street,Wet Dream Scene,tt1179056\nq4feCJ__GwI,2010.0,9,9,2018,A Nightmare on Elm Street,You're in My World Now Scene,tt1179056\nvMzDPwqnJfw,2010.0,7,9,2018,A Nightmare on Elm Street,I'm Real Scene,tt1179056\nTp5Q4AyqFOM,2010.0,3,9,2018,A Nightmare on Elm Street,Kris's Dream Scene,tt1179056\nqlfI_AppyIk,2018.0,1,10,2018,Truth or Dare,The Truth of The Game Scene,tt6772950\n2dvchK48Z-o,2018.0,8,10,2018,Truth or Dare,Olivia's Darkest Secret Scene,tt6772950\nftDkeswkEYU,2018.0,4,10,2018,Truth or Dare,Living Life On The Edge Scene,tt6772950\nP6c_kQL3ZdU,2018.0,5,10,2018,Truth or Dare,Dare You to Kill Scene,tt6772950\nEAd7cMSm4Ng,2018.0,10,10,2018,Truth or Dare,The Game Goes Viral Scene,tt6772950\nDGW436DH8Yw,2018.0,3,10,2018,Truth or Dare,The Pen is Mightier Scene,tt6772950\np07sXB8H3zQ,2018.0,2,10,2018,Truth or Dare,A Real Bad Break Scene,tt6772950\neMHv9pPuDiI,2018.0,9,10,2018,Truth or Dare,Cut Out Your Tongue! Scene,tt6772950\nFgUKDQA1qFg,2018.0,7,10,2018,Truth or Dare,Taking a Cop's Gun Scene,tt6772950\n9WQJxS6-2iI,2018.0,6,10,2018,Truth or Dare,Dirty Decision Scene,tt6772950\nTazw08OZpwU,2016.0,2,10,2018,Blair Witch,A Bit Irritated Scene,tt1540011\n37O1H9YiBJo,2016.0,3,10,2018,Blair Witch,The Sun Isn't Coming Up Scene,tt1540011\n5XZcn9qR5SE,2016.0,7,10,2018,Blair Witch,Have to Do What She Tells You Scene,tt1540011\nUP6UWl1Y1-Q,2016.0,1,10,2018,Blair Witch,Lore Scene,tt1540011\npVqOcGEbZvo,2016.0,9,10,2018,Blair Witch,Chased by the Witch Scene,tt1540011\nLJ8UoUA2_uE,2016.0,10,10,2018,Blair Witch,Don't Look At It Scene,tt1540011\nwyHOKleZzFM,2016.0,4,10,2018,Blair Witch,The Group Finally Snaps Scene,tt1540011\nsf2RRCNlz38,2016.0,8,10,2018,Blair Witch,The Tunnel Scene,tt1540011\nbmBh8DSdcnU,2016.0,6,10,2018,Blair Witch,\"Looking for Heather, Finding Hell Scene\",tt1540011\ne80zdJ6pWlI,2016.0,5,10,2018,Blair Witch,Caught in a Tree Scene,tt1540011\nHYctFVhe2Rc,2016.0,9,10,2018,Star Trek Beyond,Yorktown Chase Scene,tt2660888\n5PaUTnk9k9Y,2016.0,8,10,2018,Star Trek Beyond,Sabotage Scene,tt2660888\nqu68Gym5PvE,2016.0,7,10,2018,Star Trek Beyond,Jump Beacon Scene,tt2660888\ne5LZR3vCkzo,2016.0,6,10,2018,Star Trek Beyond,Prisoner Rescue Scene,tt2660888\nQ4KRYWe3ngs,2016.0,4,10,2018,Star Trek Beyond,The Deadly Jaylah Scene,tt2660888\nmtsQ0CR4Z28,2016.0,2,10,2018,Star Trek Beyond,Destruction of the Enterprise Scene,tt2660888\nssgm3-sCY-Y,2016.0,3,10,2018,Star Trek Beyond,Abandon Ship Scene,tt2660888\nFf20ZDSj7d8,-1.0,10,10,2018,Star Trek Beyond,Kirk Against Krall Scene,tt2660888\nYRpgfi7L9Rs,2016.0,1,10,2018,Star Trek Beyond,The Peace Offering Scene,tt2660888\nnvldRH4OC_k,2016.0,5,10,2018,Star Trek Beyond,Thruster Run Scene,tt2660888\n2AmY_TaUh8M,1978.0,2,10,2018,Superman,Outrunning a Train Scene,tt0078346\nbfKu5Jc8TjA,1978.0,4,10,2018,Superman,Super Rescue Scene,tt0078346\nYwnX8My7428,1978.0,1,10,2018,Superman,Escape From Krypton Scene,tt0078346\nju9K6nk07iE,1978.0,5,10,2018,Superman,Flying with Lois Scene,tt0078346\nOv6nBKuu6pI,1978.0,7,10,2018,Superman,Saving  Scene,tt0078346\nTZyl-21DgPo,1978.0,6,10,2018,Superman,Kryptonite Necklace Scene,tt0078346\nLoCaeI5RffI,1978.0,10,10,2018,Superman,Turning Back Time Scene,tt0078346\nnprJvYKz3QQ,1978.0,3,10,2018,Superman,Faster Than a Speeding Bullet Scene,tt0078346\n3gSOZW-vNFk,1978.0,9,10,2018,Superman,The Death of Lois Lane Scene,tt0078346\n3oIQCt6GVcY,1978.0,8,10,2018,Superman,West Coast Chaos Scene,tt0078346\nCRjB5ImoHXk,1995.0,6,6,2018,Outbreak,You'll Have to Take Us Out Scene,tt0114069\nHaK75RHhEEw,1995.0,2,6,2018,Outbreak,People Are Dying Scene,tt0114069\nZ6cRw6CU7l0,1995.0,4,6,2018,Outbreak,The Carrier of Death Scene,tt0114069\nMZq_z08pLqI,1995.0,5,6,2018,Outbreak,Helicopter Chase Scene,tt0114069\npW-ZHlM3RxI,1995.0,1,6,2018,Outbreak,Your Morbid Desire Scene,tt0114069\nHRkSVkOdXcU,1995.0,3,6,2018,Outbreak,The Virus is Airborne Scene,tt0114069\na2H-pXAgx6s,1987.0,9,9,2018,Burglar,I'm Pissed at You Scene,tt0092710\nZUmTlIUmbmE,1987.0,4,9,2018,Burglar,Cops at the Door Scene,tt0092710\n76dXe1ePSrQ,1987.0,5,9,2018,Burglar,Interrogating the Insane Scene,tt0092710\nMnosttqGIfw,1987.0,8,9,2018,Burglar,I Know You Killed Him Scene,tt0092710\nPjPEnXNEX_E,1987.0,3,9,2018,Burglar,Trapped in the Closet Scene,tt0092710\na3GgzkKvBVY,1987.0,1,9,2018,Burglar,Never Steal From Me Scene,tt0092710\nSBIpGdJA_5Q,1987.0,7,9,2018,Burglar,An Aggressive Delivery Man Scene,tt0092710\n_bUaFRyP80A,1987.0,6,9,2018,Burglar,Don't Want to Upset You Scene,tt0092710\n-DXQJLwDAwg,1987.0,2,9,2018,Burglar,A Dentist With an Offer Scene,tt0092710\nT4wxOGDv980,1991.0,10,10,2018,New Jack City,I'm Not Guilty Scene,tt0102526\nRQUwqHaBuOk,1991.0,4,10,2018,New Jack City,Nino Makes Change Scene,tt0102526\n3jYu-qta0mU,1991.0,6,10,2018,New Jack City,Wedding Shootout Scene,tt0102526\nb6WK3MwYFSk,1991.0,3,10,2018,New Jack City,This Crack's Got Me Scene,tt0102526\nD6OAWdqi-s0,1991.0,2,10,2018,New Jack City,Finding Pookie Scene,tt0102526\n4dNwoRFjOkQ,1991.0,5,10,2018,New Jack City,Killing Your Own People Scene,tt0102526\n7SybWD4iYMA,1991.0,7,10,2018,New Jack City,Cops vs. CMB Scene,tt0102526\nwstckFfu1z4,1991.0,9,10,2018,New Jack City,I Wanna Shoot You So Bad Scene,tt0102526\ntaGt2UqFdm0,1991.0,1,10,2018,New Jack City,The Carter Scene,tt0102526\nK4lTsRzlorA,1991.0,8,10,2018,New Jack City,My Brother's Keeper Scene,tt0102526\n_3v30bJGaCg,1993.0,1,8,2018,Boiling Point,He Never Had a Chance Scene,tt0106455\nExvYKH9z-9A,1993.0,6,8,2018,Boiling Point,Tell Us What You Know Scene,tt0106455\nku4GcEUQ0TA,1993.0,8,8,2018,Boiling Point,He's Got a Gun Scene,tt0106455\nb4kRHpvisxE,1993.0,4,8,2018,Boiling Point,So Do We Talk or What? Scene,tt0106455\nOTp5qNMBuRY,1993.0,5,8,2018,Boiling Point,Sounds Fair Enough Scene,tt0106455\nK0QjNiVA6NU,1993.0,2,8,2018,Boiling Point,Seven Days Scene,tt0106455\nLunIbcmUQtE,1993.0,7,8,2018,Boiling Point,One Last Job Scene,tt0106455\nlx420G7IDnE,1993.0,3,8,2018,Boiling Point,I Ain't Saying a Thing Scene,tt0106455\nfZrN9LabLQQ,2016.0,10,11,2018,Gods of Egypt,To Protect My People Scene,tt2404233\nX_4WgfjyOyg,2016.0,3,11,2018,Gods of Egypt,Stealing Horus's Eye Scene,tt2404233\nVJW2e8_cIfw,2016.0,2,11,2018,Gods of Egypt,You're Not Fit to Be King Scene,tt2404233\ndp2MR9fswWk,2016.0,6,11,2018,Gods of Egypt,The God of Wisdom Scene,tt2404233\nr9ae_frgcpU,2016.0,1,11,2018,Gods of Egypt,Bow Before Me or Die Scene,tt2404233\nuOHMPcGgInI,2016.0,5,11,2018,Gods of Egypt,The Goddess & The Giant Snakes Scene,tt2404233\nTfbuiIc3pME,2016.0,11,11,2018,Gods of Egypt,Horus vs. Set Scene,tt2404233\nfKpKz3dysY0,2016.0,8,11,2018,Gods of Egypt,I'm Not Just One God Scene,tt2404233\nkDDU-k-5v6s,2016.0,4,11,2018,Gods of Egypt,Minotaur Attack Scene,tt2404233\nCUYNZo-8cDM,2016.0,7,11,2018,Gods of Egypt,The Riddle of the Sphinx Scene,tt2404233\n89OqkIyNnfQ,2016.0,9,11,2018,Gods of Egypt,The Battle for Mankind Begins Scene,tt2404233\nGewQTlvA_3Y,1992.0,2,6,2018,Final Analysis,A Loaded Gun Scene,tt0104265\ntVubEM2oUj4,1992.0,3,6,2018,Final Analysis,A Reason Scene,tt0104265\ntr2hYRUEkHk,1992.0,1,6,2018,Final Analysis,Meeting Heather Scene,tt0104265\nSriHCm7dhyw,1992.0,5,6,2018,Final Analysis,Why'd You Do It? Scene,tt0104265\nRxLb-Iqyqps,1992.0,6,6,2018,Final Analysis,The Butterfly Scene,tt0104265\nTvmzk3Ce8-s,1992.0,4,6,2018,Final Analysis,Was That a Look? Scene,tt0104265\nOxLmmTv6CTs,2016.0,11,11,2018,Now You See Me 2,An Eye For An Eye Scene,tt3110958\nDQU7X4QDX80,2016.0,9,11,2018,Now You See Me 2,Controlling the Rain Scene,tt3110958\nLoG_2u-0rWo,2016.0,8,11,2018,Now You See Me 2,Magic Combat Scene,tt3110958\nDr6eV4y0atg,2016.0,5,11,2018,Now You See Me 2,Sibling Rivalry Scene,tt3110958\nCWS1CWSAmjs,2016.0,3,11,2018,Now You See Me 2,The Big Reveal Scene,tt3110958\nvRUQ_q5mivc,2016.0,10,11,2018,Now You See Me 2,Happy New Year! Scene,tt3110958\n3IVugy6dK3E,2016.0,7,11,2018,Now You See Me 2,Hidden Card Heist Scene,tt3110958\nKEc0SGkBDJ4,2016.0,1,11,2018,Now You See Me 2,Introducing Lula Scene,tt3110958\n_uwVIMdk7hc,2016.0,4,11,2018,Now You See Me 2,So Happy to Be Working With You Scene,tt3110958\n5ve2E8iEbSQ,2016.0,2,11,2018,Now You See Me 2,Listen to Your Own Voice Scene,tt3110958\nYmGBAiHnK0U,2016.0,6,11,2018,Now You See Me 2,Disappearing Card Trick Scene,tt3110958\n4N-rVUkv-lw,1991.0,5,9,2018,Guilty by Suspicion,Are You Alright? Scene,tt0101984\nnA3-p6SeWtc,1991.0,7,9,2018,Guilty by Suspicion,Fired on Set Scene,tt0101984\nXlS3PKbK2Wc,1991.0,8,9,2018,Guilty by Suspicion,Un-American Activities Committee Scene,tt0101984\nQdgk7Q1dn34,1991.0,6,9,2018,Guilty by Suspicion,It's Not in the Script Scene,tt0101984\noNySP0X32eI,1991.0,9,9,2018,Guilty by Suspicion,Is Your Wife a Communist? Scene,tt0101984\nAeM2PgL5hm0,1991.0,2,9,2018,Guilty by Suspicion,A Scared Loyal American Scene,tt0101984\nF67qzjMABFQ,1991.0,3,9,2018,Guilty by Suspicion,A Communist Sympathizer Scene,tt0101984\nWn73_KG11Wo,1991.0,1,9,2018,Guilty by Suspicion,Don't Make Me Do This Scene,tt0101984\n3ND0jZIthFo,1991.0,4,9,2018,Guilty by Suspicion,You Think I'd Name You? Scene,tt0101984\nxe6kO-SJYCk,2011.0,1,6,2018,The Hangover Part II,Alan's Toast Scene,tt1411697\nFb1v9LGaZ1w,2011.0,3,6,2018,The Hangover Part II,Monk Beatdown Scene,tt1411697\nyxOMkjGIZYI,2011.0,2,6,2018,The Hangover Part II,He's Dead! Scene,tt1411697\nkgd0wuSVHXo,2011.0,4,6,2018,The Hangover Part II,Phil Gets Shot Scene,tt1411697\nb_SJOg2q3PM,2011.0,5,6,2018,The Hangover Part II,They Shot the Monkey! Scene,tt1411697\nD0yfau4bAXM,2011.0,6,6,2018,The Hangover Part II,\"Gotcha, Leslie Scene\",tt1411697\nXMt98-MEWmw,2009.0,2,10,2018,The Hangover,\"Checking In, Wimping Out Scene\",tt1119646\ndaULewxdD8w,2009.0,1,10,2018,The Hangover,Immature Friends Scene,tt1119646\nJZCM0ZW-GMw,2009.0,6,10,2018,The Hangover,Stun Gun Demonstration Scene,tt1119646\nHl1mw0-APy8,2009.0,3,10,2018,The Hangover,The Wolf Pack Scene,tt1119646\nG-lDaFtb7eE,2009.0,7,10,2018,The Hangover,Tyson's Still Got It Scene,tt1119646\nh4Zho4DUcXw,2009.0,4,10,2018,The Hangover,The Morning After Scene,tt1119646\nznjpkKX6bek,2009.0,5,10,2018,The Hangover,You Got Married! Scene,tt1119646\nDdNfSuTpDbA,2009.0,8,10,2018,The Hangover,What Do Tigers Dream Of? Scene,tt1119646\nsIbYUg1FKK4,2009.0,10,10,2018,The Hangover,The Wedding Reception Scene,tt1119646\nu_6tnXDfxBo,2009.0,9,10,2018,The Hangover,The Wrong Doug Scene,tt1119646\nAUbfGwY4Fco,2018.0,3,10,2018,Sicario: Day of the Soldado,No Rules Today Scene,tt5052474\nch_JeDyNaFM,2018.0,6,10,2018,Sicario: Day of the Soldado,Police Escort Shootout Scene,tt5052474\nHXubLg3o3qY,2018.0,4,10,2018,Sicario: Day of the Soldado,War on Everyone Scene,tt5052474\neMyuRmZNaTk,2018.0,10,10,2018,Sicario: Day of the Soldado,A Single Grenade Scene,tt5052474\nYOUt-qq-snc,2018.0,2,10,2018,Sicario: Day of the Soldado,Night Raid Scene,tt5052474\ngA0u3Iir0CU,2018.0,7,10,2018,Sicario: Day of the Soldado,Racing to the Border Scene,tt5052474\nxVWAp3OLYTM,2018.0,8,10,2018,Sicario: Day of the Soldado,The End of Alejandro Scene,tt5052474\n99wezqewopU,2018.0,1,10,2018,Sicario: Day of the Soldado,Border Bombing Scene,tt5052474\nuvZImlL51Io,2018.0,9,10,2018,Sicario: Day of the Soldado,Kill 'Em All Scene,tt5052474\n6hT5xOszncI,2018.0,5,10,2018,Sicario: Day of the Soldado,Cartel Kidnapping Scene,tt5052474\notlsrvaxpdE,1995.0,3,10,2018,Assassins,Taxi Ride Scene,tt0112401\nTpz4Dl8focY,1995.0,9,10,2018,Assassins,No Way to Talk to a Lady Scene,tt0112401\ninfMR62l_dc,1995.0,2,10,2018,Assassins,Officers Down Scene,tt0112401\nD0p6abBHjZU,1995.0,6,10,2018,Assassins,Waiting in the Balcony Scene,tt0112401\n6MaOE8YiJy8,1995.0,5,10,2018,Assassins,Happy Birthday Shootout Scene,tt0112401\npK35em6gl0Q,1995.0,7,10,2018,Assassins,Who Can You Trust? Scene,tt0112401\nwbROoMNi8Ho,1995.0,4,10,2018,Assassins,Kill Her Scene,tt0112401\nFOXEyMTnekU,1995.0,1,10,2018,Assassins,Cemetery Shootout Scene,tt0112401\nhowhfMAoEt0,1995.0,10,10,2018,Assassins,Number One Scene,tt0112401\nTZXt5K8U_HM,1995.0,8,10,2018,Assassins,Step Outside Scene,tt0112401\nelR_OgHND1c,1994.0,2,10,2018,The Specialist,The First Bomb Scene,tt0111255\nRGaBXM3EHUo,1994.0,7,10,2018,The Specialist,How Did I Look? Scene,tt0111255\nB9SkWFyq-EQ,1994.0,1,10,2018,The Specialist,That Seat's Taken Scene,tt0111255\ng4BV-MbeTjM,1994.0,9,10,2018,The Specialist,Crabs Scene,tt0111255\nuraQr7J0Tlw,1994.0,3,10,2018,The Specialist,Craziest Person You'll Ever Meet Scene,tt0111255\nNqWsINBcm2o,1994.0,6,10,2018,The Specialist,\"No Mercy, No Loyalty, No Code Scene\",tt0111255\nD6XNq3CrDBU,1994.0,4,10,2018,The Specialist,Car Bomb Scene,tt0111255\nPJ0NkZgbrUw,1994.0,10,10,2018,The Specialist,Total Destruction Scene,tt0111255\nHOePjj-M63Y,1994.0,8,10,2018,The Specialist,You Set Me Up Scene,tt0111255\nc82FD6lh2LQ,1994.0,5,10,2018,The Specialist,Poolside Explosion Scene,tt0111255\nlp1s4-tc2U0,2018.0,2,10,2018,Pacific Rim Uprising,The Rogue Jaeger Scene,tt2557478\n1qYVJgixc3U,2018.0,7,10,2018,Pacific Rim Uprising,Giant Monsters Attack Japan Scene,tt2557478\nE9pB6_WUR-U,2018.0,3,10,2018,Pacific Rim Uprising,Jaeger vs. Jaeger Scene,tt2557478\nO7jHiw8IyxQ,2018.0,5,10,2018,Pacific Rim Uprising,Kaiju Killswitch Scene,tt2557478\nj66Fsl_q5Ig,2018.0,1,10,2018,Pacific Rim Uprising,Scrapper's Wild Ride Scene,tt2557478\n4KkCEjawUHM,2018.0,8,10,2018,Pacific Rim Uprising,King Kaiju Scene,tt2557478\nDtV4RnADOeA,2018.0,9,10,2018,Pacific Rim Uprising,Mega-Kaiju Violence Scene,tt2557478\nU22aGOTlIy8,2018.0,10,10,2018,Pacific Rim Uprising,Operation Jaeger Drop Scene,tt2557478\n836dGO4v65I,2018.0,4,10,2018,Pacific Rim Uprising,Mutant Mech Massacre Scene,tt2557478\n4sNyWmYN-rM,2018.0,6,10,2018,Pacific Rim Uprising,The Inspirational Speech Scene,tt2557478\nt5GdZx7AS-E,2016.0,8,10,2018,The Divergent Series: Allegiant,Peter's Mistake Scene,tt3410834\n6O_dprt5rts,2016.0,7,10,2018,The Divergent Series: Allegiant,Drone Fight Scene,tt3410834\npwSkfvXD_ug,2016.0,3,10,2018,The Divergent Series: Allegiant,Into the Fringe Scene,tt3410834\nmmH76155CuU,2016.0,4,10,2018,The Divergent Series: Allegiant,Four Fights Back Scene,tt3410834\nI9r1j1ZKBYk,2016.0,10,10,2018,The Divergent Series: Allegiant,A Message from Tris Scene,tt3410834\nFlQd5p9_XvY,2016.0,1,10,2018,The Divergent Series: Allegiant,Over the Wall Scene,tt3410834\ntlSscKeO9Cc,2016.0,6,10,2018,The Divergent Series: Allegiant,Stealing the Hovercraft Scene,tt3410834\nQ7--4JW6y6E,2016.0,2,10,2018,The Divergent Series: Allegiant,Welcome to the Future Scene,tt3410834\nDrt2w_iit1M,2016.0,5,10,2018,The Divergent Series: Allegiant,The Memory Serum Scene,tt3410834\nVn5WazNB5sU,2016.0,9,10,2018,The Divergent Series: Allegiant,It's Over Scene,tt3410834\noXGJeQDRuxE,2002.0,6,6,2018,Friday After Next,Money Mike Loses His Grip Scene,tt0293815\nREWaiDiKDIE,2018.0,7,10,2018,Blockers,The Best Coach Ever Scene,tt2531344\nQc-E0u_1Ei4,2018.0,5,10,2018,Blockers,The Fast & The Vomitous Scene,tt2531344\nQzcXi2irovs,2018.0,2,10,2018,Blockers,Prom Parents Scene,tt2531344\nV9RhgEHIxkI,2018.0,3,10,2018,Blockers,Peeping Parents Scene,tt2531344\nRgPuswoKZtw,2018.0,10,10,2018,Blockers,Women Amongst Girls Scene,tt2531344\nNizLAsFlvww,2018.0,6,10,2018,Blockers,Breaking & Fondling Scene,tt2531344\nx3OTeacsT84,2018.0,9,10,2018,Blockers,\"Dad, I'm a Lesbian Scene\",tt2531344\nZvGaiZMBOOI,2018.0,8,10,2018,Blockers,Daughter's First Time Scene,tt2531344\nEu1EfSDUKFg,2018.0,1,10,2018,Blockers,Explaining Sex Emojis Scene,tt2531344\nTfsGgp4go6k,2018.0,4,10,2018,Blockers,Butt Chug Scene,tt2531344\nA7a7RtpKzYY,2002.0,3,6,2018,Friday After Next,Craig Meets Donna Scene,tt0293815\nXUnfvueexSk,2002.0,2,6,2018,Friday After Next,Top Flight Security Scene,tt0293815\nTRgkvisG4yg,2002.0,5,6,2018,Friday After Next,We Are Not In Prison Scene,tt0293815\nD4E8UpMb8SI,2002.0,1,6,2018,Friday After Next,OG Triple OG Scene,tt0293815\nxNSWp7Hb5tU,2002.0,4,6,2018,Friday After Next,Money Mike Got Robbed Scene,tt0293815\nnma6daFY6b0,2016.0,6,10,2018,Jack Reacher: Never Go Back,Warehouse Fight Scene,tt3393786\n3Blk7Vo0abY,2016.0,1,10,2018,Jack Reacher: Never Go Back,I'd Just Kill You Scene,tt3393786\nmfCwgYR1yS8,2016.0,10,10,2018,Jack Reacher: Never Go Back,Reacher's Revenge Scene,tt3393786\nkjLqB63ihJE,2016.0,3,10,2018,Jack Reacher: Never Go Back,Prison Break Scene,tt3393786\n6R3tTi_m8VQ,2016.0,9,10,2018,Jack Reacher: Never Go Back,My Life for Hers Scene,tt3393786\njk2mjuWhQ_0,2016.0,8,10,2018,Jack Reacher: Never Go Back,Arrest Him Scene,tt3393786\nKkBUMdYMw-8,2016.0,7,10,2018,Jack Reacher: Never Go Back,Heavily Armed Rescue Scene,tt3393786\nrrWLFKZafAc,2016.0,4,10,2018,Jack Reacher: Never Go Back,Kitchen Combat Scene,tt3393786\nvYm_2A_cg0Y,2016.0,5,10,2018,Jack Reacher: Never Go Back,Flight Fight Scene,tt3393786\njF6JN1VSpmY,2016.0,2,10,2018,Jack Reacher: Never Go Back,Don't Like to Be Followed Scene,tt3393786\nYkfEc-PYJ8A,2012.0,4,10,2018,Jack Reacher,The Zec Scene,tt0790724\n9g5pe-B6uL8,2012.0,1,10,2018,Jack Reacher,Sniper Shooting Scene,tt0790724\nPxuQ1n3xaRQ,2012.0,10,10,2018,Jack Reacher,Reacher vs. Charlie Scene,tt0790724\nnXrsB2RMo2w,2012.0,8,10,2018,Jack Reacher,The Shooting Range Scene,tt0790724\nmySMw3VkEBE,2012.0,9,10,2018,Jack Reacher,I Am Not a Hero Scene,tt0790724\ncgLMSMIU124,2012.0,5,10,2018,Jack Reacher,Bathroom Brawl Scene,tt0790724\nlfeYgfKa2cY,2012.0,6,10,2018,Jack Reacher,1970 Chevelle Chase Scene,tt0790724\nILbn3iOiOiU,2012.0,7,10,2018,Jack Reacher,Lost in the Crowd Scene,tt0790724\n5U8scp5J9Is,2012.0,3,10,2018,Jack Reacher,5 Against 1 Scene,tt0790724\nh8Rxb-9snJQ,2012.0,2,10,2018,Jack Reacher,He Called Me a Hooker Scene,tt0790724\nhhmPqQpJWks,2005.0,3,6,2018,Miss Congeniality 2: Armed and Fabulous,Positive Role Model Scene,tt0385307\nFQH9s2dJe50,2005.0,4,6,2018,Miss Congeniality 2: Armed and Fabulous,World Peace Scene,tt0385307\n1etjTR5wYhU,2005.0,6,6,2018,Miss Congeniality 2: Armed and Fabulous,You're Gracie Hart! Scene,tt0385307\nHi93mYJyO8I,2005.0,1,6,2018,Miss Congeniality 2: Armed and Fabulous,Live with Regis Scene,tt0385307\nc0N60xOU9yk,2005.0,2,6,2018,Miss Congeniality 2: Armed and Fabulous,Loving the Sluts Scene,tt0385307\nH6Y2GNQfNo4,2005.0,5,6,2018,Miss Congeniality 2: Armed and Fabulous,You Work for Me Scene,tt0385307\nCaG_6UWfyLE,2010.0,2,6,2018,Life as We Know It,Surprise Visit Scene,tt1055292\n0SNckpLgK_Q,2010.0,6,6,2018,Life as We Know It,I Was Scared Scene,tt1055292\ngvANfpQnohw,2010.0,5,6,2018,Life as We Know It,Worst Timing Scene,tt1055292\n_ICXfAWaISQ,2010.0,1,6,2018,Life as We Know It,Poopfaced Scene,tt1055292\n2DCjXk4qpLo,2010.0,3,6,2018,Life as We Know It,The Messer Magic Scene,tt1055292\n_O8yGbcFmc4,2010.0,4,6,2018,Life as We Know It,Motorcycle Crash Scene,tt1055292\n9QwQbE5Eu-I,2010.0,6,7,2018,Going the Distance,Long Distance Love Scene,tt1322312\nFYZrWswLpu0,2010.0,7,7,2018,Going the Distance,I'll Cut Your Balls Off Scene,tt1322312\nyceziOf95-0,2010.0,1,7,2018,Going the Distance,Can I Get Your Drink Order? Scene,tt1322312\n3QoYCS0iOq4,2010.0,2,7,2018,Going the Distance,I'm Crazy About You Scene,tt1322312\nWEvTEdLLa2s,2010.0,5,7,2018,Going the Distance,In the Marriage Trenches Scene,tt1322312\n9Ro2O9YAkAo,2010.0,4,7,2018,Going the Distance,The Mustache Time Machine Scene,tt1322312\ndJhNjpuc9eo,2010.0,3,7,2018,Going the Distance,Dry Humping Scene,tt1322312\nHj7OFElSIlM,2007.0,4,9,2018,In the Land of Women,Awake to Life Scene,tt0419843\nXSX3JKL0DpU,2007.0,5,9,2018,In the Land of Women,Awkward Encounter Scene,tt0419843\nRf161T4RyxA,2007.0,7,9,2018,In the Land of Women,Kiss in the Rain Scene,tt0419843\nGwtcfnmV68I,2007.0,1,9,2018,In the Land of Women,Hi Grandma Scene,tt0419843\nl17e0M4TTBA,2007.0,3,9,2018,In the Land of Women,Real Love Scene,tt0419843\n8ZSuFOPBDmI,2007.0,8,9,2018,In the Land of Women,\"A Big, Messy World Scene\",tt0419843\nJhMO7RA7-VI,2007.0,9,9,2018,In the Land of Women,Keep Loving You Scene,tt0419843\nWCM5kknf5nI,2007.0,2,9,2018,In the Land of Women,A Great Listener Scene,tt0419843\nF8q-K4BTbEk,2007.0,6,9,2018,In the Land of Women,John Hughes Stuff Scene,tt0419843\nAEBd24_Uxfk,2015.0,2,10,2018,Terminator Genisys,Come With Me Scene,tt1340138\nwXLFg03in2U,2015.0,9,10,2018,Terminator Genisys,John Connor vs. The Terminator Scene,tt1340138\n5Le4OlAvuME,2015.0,5,10,2018,Terminator Genisys,John Connor 2.0 Scene,tt1340138\nXGoagkYcJ38,2015.0,10,10,2018,Terminator Genisys,Pop's Sacrifice Scene,tt1340138\nLTfMvliqiGk,2015.0,4,10,2018,Terminator Genisys,Killing the T-1000 Scene,tt1340138\ny5vxDOma1Ok,2015.0,6,10,2018,Terminator Genisys,Taking Down the T-3000 Scene,tt1340138\nNBYfDP0IO18,2015.0,7,10,2018,Terminator Genisys,Golden Gate Chase Scene,tt1340138\nRtxMw4sua3Q,2015.0,8,10,2018,Terminator Genisys,I'll Be Back Scene,tt1340138\nC9rUREflwDI,2015.0,3,10,2018,Terminator Genisys,T-800 is Back Scene,tt1340138\nUZnkAElIe_c,2015.0,1,10,2018,Terminator Genisys,Pops vs. the T-800 Scene,tt1340138\nEdiZzm9bA2I,1986.0,10,10,2018,Cobra,No Hard Feelings Scene,tt0090859\npdwGNiv2q4U,1986.0,2,10,2018,Cobra,You're Too Violent Scene,tt0090859\nYcv2RoyxW1w,1986.0,3,10,2018,Cobra,Kill Her Scene,tt0090859\no6sD0PvhkWc,1986.0,7,10,2018,Cobra,An Army of Killers Scene,tt0090859\n99ziSsaLUpU,1986.0,6,10,2018,Cobra,The Chase Scene,tt0090859\nVbj9JcYGo_w,1986.0,9,10,2018,Cobra,Where the Law Stops Scene,tt0090859\nF_cS_kmSiRY,1986.0,1,10,2018,Cobra,You're a Disease and I'm the Cure Scene,tt0090859\nUqPsrqpwLmU,1986.0,8,10,2018,Cobra,Motorcycle Maniacs Scene,tt0090859\nq1bV-D8cSz8,1986.0,4,10,2018,Cobra,Kills Scene,tt0090859\nVqL0Mr9uNL8,1986.0,5,10,2018,Cobra,The Night Slasher Scene,tt0090859\ndZjgSYTxWsY,2017.0,6,10,2018,Baywatch,YOU People Scene,tt1469304\nx35VnGsGrFc,2017.0,5,10,2018,Baywatch,Little Girl's Bedroom Fight Scene,tt1469304\nWd5RTjtSSxk,2017.0,7,10,2018,Baywatch,A Feminine Disguise Scene,tt1469304\naxhUtepWokA,2017.0,3,10,2018,Baywatch,Dance Distraction Scene,tt1469304\nWDuIl_uPY_s,2017.0,2,10,2018,Baywatch,The Big Boy Competition Scene,tt1469304\nCDTnjLPgMKM,2017.0,1,10,2018,Baywatch,Let Me Help You Scene,tt1469304\nFFvaLp9s1p0,2017.0,4,10,2018,Baywatch,Someone's Coming Scene,tt1469304\nQlDqtuo10fA,2017.0,9,10,2018,Baywatch,I'm Oceanic Scene,tt1469304\nHfgFZz6gCOM,2017.0,10,10,2018,Baywatch,Happy Endings For Everyone Scene,tt1469304\nN_qIfvDbZjc,2017.0,8,10,2018,Baywatch,The Original Mitch Scene,tt1469304\nwka4snE-AmU,1988.0,6,7,2018,Funny Farm,Stopping the Mailman Scene,tt0095188\ndqfoyAnszH0,1988.0,2,7,2018,Funny Farm,Fishing Fiasco Scene,tt0095188\noo5SkNM3c1Y,1988.0,5,7,2018,Funny Farm,Andy the Squirrel Scene,tt0095188\nvIgFGJRGlkk,1988.0,1,7,2018,Funny Farm,Phone Trouble Scene,tt0095188\nmxnq8jkwttE,1988.0,4,7,2018,Funny Farm,What'd You Think? Scene,tt0095188\nQNUbwijCKfw,1988.0,3,7,2018,Funny Farm,Sheep Balls Scene,tt0095188\ngMCgkXpEOIY,1988.0,7,7,2018,Funny Farm,Selling the Farm Scene,tt0095188\ns-vP7WgMkpA,2018.0,4,10,2018,Jurassic World: Fallen Kingdom,Saved by Rexy Scene,tt4881806\nhAf3IBKWubo,2018.0,1,10,2018,Jurassic World: Fallen Kingdom,Mosasaurus Attack Scene,tt4881806\nan9Zfn3IZCY,2018.0,9,10,2018,Jurassic World: Fallen Kingdom,\"Goodbye, Blue Scene\",tt4881806\nCkAf_qzHNwo,2018.0,7,10,2018,Jurassic World: Fallen Kingdom,The Jaws of the Indoraptor Scene,tt4881806\nNFj82X1Fdh4,2018.0,10,10,2018,Jurassic World: Fallen Kingdom,Welcome to Jurassic World Scene,tt4881806\nxgX9WrVFO0Q,2018.0,5,10,2018,Jurassic World: Fallen Kingdom,The Death of Jurassic Park Scene,tt4881806\nEQWtaLTOwCw,2018.0,8,10,2018,Jurassic World: Fallen Kingdom,Indoraptor vs. Blue Scene,tt4881806\njwnPI-d36vU,2018.0,2,10,2018,Jurassic World: Fallen Kingdom,Reunited with Blue Scene,tt4881806\nXUSzvNtSsFE,2018.0,6,10,2018,Jurassic World: Fallen Kingdom,T-Rex Blood Transfusion Scene,tt4881806\nBfRUV4g8sYw,2018.0,3,10,2018,Jurassic World: Fallen Kingdom,Baryonyx Attack Scene,tt4881806\n4UzVKW_Iqi0,2016.0,4,10,2018,10 Cloverfield Lane,Let Me In! Scene,tt1179933\nDJTF3NmqF7U,2016.0,5,10,2018,10 Cloverfield Lane,I Accept Your Apology Scene,tt1179933\nMc_zp1s60NY,2016.0,3,10,2018,10 Cloverfield Lane,Frank & Mildred Scene,tt1179933\nbMjYOV8VnYk,2016.0,7,10,2018,10 Cloverfield Lane,A Narrow Escape Scene,tt1179933\nlLeY8-bhEuQ,2016.0,10,10,2018,10 Cloverfield Lane,The Hungry Space Ship Scene,tt1179933\njypAc6XYFfA,2016.0,2,10,2018,10 Cloverfield Lane,Everyone Outside Is Dead Scene,tt1179933\nUglfLjHUNbU,2016.0,6,10,2018,10 Cloverfield Lane,This Is How You Repay Me? Scene,tt1179933\niQJh6I8kH_E,2016.0,1,10,2018,10 Cloverfield Lane,A Stab at Freedom Scene,tt1179933\npl7JzW6eGZg,2016.0,8,10,2018,10 Cloverfield Lane,Cornered by an Alien Scene,tt1179933\nInkyowbQcIs,2016.0,9,10,2018,10 Cloverfield Lane,Alien Crop Duster Scene,tt1179933\nVh-olAK5vrs,2016.0,8,10,2018,13 Hours: The Secret Soldiers of Benghazi,Mortar Storm Scene,tt4172430\n_IwNoboTiHU,2016.0,2,10,2018,13 Hours: The Secret Soldiers of Benghazi,Attack on the Consulate Scene,tt4172430\n0K6bVf4ra1w,2016.0,7,10,2018,13 Hours: The Secret Soldiers of Benghazi,Holding Off Hostiles Scene,tt4172430\npAwoA-XPzsQ,2016.0,6,10,2018,13 Hours: The Secret Soldiers of Benghazi,The First Wave Scene,tt4172430\n2pCUsMk0Zs0,2016.0,9,10,2018,13 Hours: The Secret Soldiers of Benghazi,Fallen Soldiers Scene,tt4172430\nOxBd2RQI4eQ,2016.0,10,10,2018,13 Hours: The Secret Soldiers of Benghazi,They're With Us Scene,tt4172430\nhgqJjr7pBa0,2016.0,1,10,2018,13 Hours: The Secret Soldiers of Benghazi,Welcome to Benghazi Scene,tt4172430\n88dS92rgWhA,2016.0,4,10,2018,13 Hours: The Secret Soldiers of Benghazi,Escaping the Compound Scene,tt4172430\ncWj-sdxFiY4,2016.0,5,10,2018,13 Hours: The Secret Soldiers of Benghazi,Wrong Turn Scene,tt4172430\nEL3Ma917bug,2016.0,3,10,2018,13 Hours: The Secret Soldiers of Benghazi,Take Out the Technical Scene,tt4172430\nUDINZf4W4mw,2015.0,1,10,2018,The Final Girls,Casually Watching a Murder Scene,tt2118624\nLQFc7IKhUuE,2015.0,6,10,2018,The Final Girls,Slow Motion Horror Scene,tt2118624\nYNAv6w5RDIs,2015.0,9,10,2018,The Final Girls,The Final Victim Scene,tt2118624\nFTzUto6toxY,2015.0,3,10,2018,The Final Girls,The Bloody Legend of Billy Scene,tt2118624\nBGZN_6xPw64,2015.0,4,10,2018,The Final Girls,You Literally Can't Leave the Movie Scene,tt2118624\ngpjYU0C2yrY,2015.0,10,10,2018,The Final Girls,Slasher vs. Virgin Scene,tt2118624\nQgqXAXhRvYU,2015.0,2,10,2018,The Final Girls,Stuck in a Horror Movie Scene,tt2118624\nywRWNlbXD8s,2015.0,7,10,2018,The Final Girls,Saved By a Flashback Scene,tt2118624\nkfdeG-hRX7A,2015.0,5,10,2018,The Final Girls,Seducing the Slasher Scene,tt2118624\nHfFM7RZ5GxI,2015.0,8,10,2018,The Final Girls,No More Killing Scene,tt2118624\nPBaQezez_UU,2011.0,2,10,2018,Priest,Get Her Down Below Scene,tt0822847\n2nclzm_QlLw,2011.0,5,10,2018,Priest,No More Masters Scene,tt0822847\nSJSDO3IHsrs,2011.0,1,10,2018,Priest,The Vampire War Scene,tt0822847\nsdwghUH-K14,2011.0,3,10,2018,Priest,Ex-Communicated Scene,tt0822847\nBN8VnFVqRRI,2011.0,7,10,2018,Priest,Terror Symphony Scene,tt0822847\n5uvhg1AtZlQ,2011.0,9,10,2018,Priest,A Holy Light Scene,tt0822847\niktC8imMBnw,2011.0,4,10,2018,Priest,Fear No Evil Scene,tt0822847\nkCxqmweKXZ0,2011.0,8,10,2018,Priest,Human & Vampire Scene,tt0822847\nusmBCn2WxYU,2011.0,10,10,2018,Priest,Taking Down Black Hat Scene,tt0822847\nnixHRzTvCUE,2011.0,6,10,2018,Priest,The Hive Guardian Scene,tt0822847\nrt3FEbzjM3o,2016.0,3,10,2018,The 5th Wave,The Parasites True Form Scene,tt2304933\n9UrJ60MVNao,2016.0,6,10,2018,The 5th Wave,Afraid You'd Shoot Me Scene,tt2304933\nxLdIkC6qcow,2016.0,7,10,2018,The 5th Wave,We Are the 5th Wave Scene,tt2304933\ntmUleIek9Fc,2016.0,4,10,2018,The 5th Wave,Shot in the Leg Scene,tt2304933\n2oLqQw8jHts,2016.0,5,10,2018,The 5th Wave,The New Guy Scene,tt2304933\nQNlazlRan6A,2016.0,9,10,2018,The 5th Wave,I Choose You Scene,tt2304933\nHGgfJkZAx8Y,2016.0,2,10,2018,The 5th Wave,Losing Family Scene,tt2304933\n3IUoqFHJ6wk,2016.0,10,10,2018,The 5th Wave,Hope Makes Us Human Scene,tt2304933\nr2GpJzIdoYQ,2016.0,8,10,2018,The 5th Wave,Did You Shoot Me? Scene,tt2304933\nLTyelOWIGh0,2016.0,1,10,2018,The 5th Wave,The End of the World Scene,tt2304933\ngxqt6x5ThcU,2015.0,4,10,2018,The Perfect Guy,A Stalker in the House Scene,tt3862750\n6QB5kS_JcuU,2015.0,7,10,2018,The Perfect Guy,Fatal Car Trouble Scene,tt3862750\nAvPVexWamGg,2015.0,2,10,2018,The Perfect Guy,A Jealous Attack Scene,tt3862750\nOByY45anMr4,2015.0,1,10,2018,The Perfect Guy,Right Guy at the Right Time Scene,tt3862750\noNiW2ftWINg,2015.0,5,10,2018,The Perfect Guy,Take the Hint Scene,tt3862750\nQP_o0yWJYKM,2015.0,8,10,2018,The Perfect Guy,Lesson in Self Defense Scene,tt3862750\neJ93IIgvVyI,2015.0,3,10,2018,The Perfect Guy,We Need to Move On Scene,tt3862750\n_JoP_xhSETM,2015.0,10,10,2018,The Perfect Guy,A Permanent Break-Up Scene,tt3862750\nrey_J7jIvno,2015.0,9,10,2018,The Perfect Guy,Stalking Him Back Scene,tt3862750\n-Xb-ryuTDlE,2015.0,6,10,2018,The Perfect Guy,Keepin' An Eye Out Scene,tt3862750\nLFO-xqbWYpw,2009.0,5,9,2018,Obsessed,Overdose Scene,tt1198138\nRp8A7gf0dZ8,2009.0,1,9,2018,Obsessed,Christmas Party Seduction Scene,tt1198138\ny2wupV34DRk,2009.0,7,9,2018,Obsessed,She Took My Baby Scene,tt1198138\nROeFmcvZRf8,2009.0,8,9,2018,Obsessed,Battle to be Queen Bee Scene,tt1198138\nDbORPqtzyx4,2009.0,9,9,2018,Obsessed,Flawless Victory Scene,tt1198138\n-YaPh7shnWQ,2009.0,6,9,2018,Obsessed,Get Out of My House Scene,tt1198138\nHRmLJScvW8M,2009.0,2,9,2018,Obsessed,Passion in the Parking Lot Scene,tt1198138\nO6Stx_mwAVY,2009.0,4,9,2018,Obsessed,Crazy in Love Scene,tt1198138\ng425SDBoDBI,2009.0,3,9,2018,Obsessed,Happy to See You Scene,tt1198138\nb60DLSEemEY,2014.0,2,10,2018,No Good Deed,Visiting the Ex Scene,tt2011159\n9Wfswn2lkAo,2014.0,7,10,2018,No Good Deed,Getting Pulled Over Scene,tt2011159\nnjfu6wuNC_w,2014.0,4,10,2018,No Good Deed,Are You Having an Affair? Scene,tt2011159\nNcMHcR5IzEY,2014.0,9,10,2018,No Good Deed,Fighting Back Scene,tt2011159\nWrb8nkLKkxU,2014.0,10,10,2018,No Good Deed,It Didn't Mean Anything Scene,tt2011159\nPECLt8uCcRk,2014.0,5,10,2018,No Good Deed,Put Her Down Scene,tt2011159\nxCvyw2bipUM,2017.0,6,10,2018,No Good Deed,Undress Scene,tt2011159\ndfLN2aPZ5sM,2014.0,8,10,2018,No Good Deed,Your Girlfriend is Dead Scene,tt2011159\nKXTBm9eUiko,2014.0,3,10,2018,No Good Deed,Man at the Door Scene,tt2011159\nbhtJNsUfHIM,2014.0,1,10,2018,No Good Deed,Malignant Narcissist Scene,tt2011159\nfegOYb4_PSk,2015.0,8,10,2018,Mission: Impossible Rogue Nation,The Bomb Around Benji Scene,tt2381249\nu4T7slD8Mq4,2015.0,2,10,2018,Mission: Impossible Rogue Nation,Torture Tag Team Scene,tt2381249\njBMZnAIY_Ng,2015.0,10,10,2018,Mission: Impossible Rogue Nation,Ilsa's Knife Fight Scene,tt2381249\nOy9R8mpKSmM,2015.0,7,10,2018,Mission: Impossible Rogue Nation,Mountain Motorcycle Chase Scene,tt2381249\nJf8Sheh4MD4,2015.0,5,10,2018,Mission: Impossible Rogue Nation,Underwater Rescue Scene,tt2381249\n880-MqUhhEk,2015.0,4,10,2018,Mission: Impossible Rogue Nation,Sniper vs. Sniper vs. Sniper Scene,tt2381249\ne56FOw5rIhw,2015.0,9,10,2018,Mission: Impossible Rogue Nation,Keep Hunt Alive Scene,tt2381249\nOArHd5pe8Ls,2015.0,3,10,2018,Mission: Impossible Rogue Nation,Stage Fight Scene,tt2381249\nelpUGB9Ap1Y,2015.0,1,10,2018,Mission: Impossible Rogue Nation,Ethan Catches a Plane Scene,tt2381249\nGSrtUVzdt6M,2015.0,6,10,2018,Mission: Impossible Rogue Nation,Marrakech Car Chase Scene,tt2381249\nThCnJ2m0exo,2005.0,5,10,2018,Doom,The BFG Scene,tt0419706\nD1Iu4JKRGIM,2005.0,1,10,2018,Doom,Mutant Zombie Outbreak Scene,tt0419706\nFBpdDE96XhE,2005.0,6,10,2018,Doom,Space Zombies! Scene,tt0419706\nnUxHF4O3GYU,2005.0,7,10,2018,Doom,Punishable by Death Scene,tt0419706\n-Jf-E7oEguU,2005.0,9,10,2018,Doom,First Person Shooting Scene,tt0419706\nnr1sLngjJXQ,2005.0,10,10,2018,Doom,Sarge vs. Reaper Scene,tt0419706\nJyEvCZ8kwW4,2005.0,4,10,2018,Doom,Hostile Activity Scene,tt0419706\ny0DYykDLU0Y,2005.0,8,10,2018,Doom,I'm Not Supposed to Die! Scene,tt0419706\nlPOo7SzR7Sc,2005.0,2,10,2018,Doom,Mutants and Monkeys Scene,tt0419706\nMPQojemDuDo,2005.0,3,10,2018,Doom,The Sewer Imp Scene,tt0419706\nSEn179T1Apk,2008.0,7,10,2018,Doomsday,Gladiatorial Combat Scene,tt0483607\neWuiIzqZryQ,2008.0,10,10,2018,Doomsday,An Explosive Getaway Scene,tt0483607\nUYzF0CAcN3I,2008.0,9,10,2018,Doomsday,Carmageddon Scene,tt0483607\n4T8OrSXKqVo,2008.0,1,10,2018,Doomsday,Terrorist Boat Raid Scene,tt0483607\njf_-d13-UNw,2008.0,6,10,2018,Doomsday,Murdercycles and a Murder Bus Scene,tt0483607\n-yzEjTjo2IA,2008.0,5,10,2018,Doomsday,Eden vs Viper Scene,tt0483607\nXN7uqQnAxIc,2008.0,4,10,2018,Doomsday,Cannibal Strippers Scene,tt0483607\n9IVd9X91fiI,2008.0,8,10,2018,Doomsday,Road Rage Scene,tt0483607\nb0kunBGZmK4,2008.0,3,10,2018,Doomsday,Raider Onslaught Scene,tt0483607\nTL91ZYSxoag,2008.0,2,10,2018,Doomsday,Mohawks and Molotov Cocktails Scene,tt0483607\nBXlYuaycRbU,2012.0,7,10,2018,Dr. Seuss' the Lorax,How Bad Can I Be Scene,tt1482459\nOqvD4NC-s9E,2012.0,10,10,2018,Dr. Seuss' the Lorax,Let It Grow Scene,tt1482459\nr0eg-ieT77g,2012.0,9,10,2018,Dr. Seuss' the Lorax,Need for Seed Scene,tt1482459\n9KYrqmQdvsI,2012.0,6,10,2018,Dr. Seuss' the Lorax,Stop That Bed! Scene,tt1482459\nStvrI9z9kLY,2012.0,2,10,2018,Dr. Seuss' the Lorax,The Girl Next Door Scene,tt1482459\naecYY1vUiDU,2012.0,3,10,2018,Dr. Seuss' the Lorax,Grammy's Tale of the Once-ler Scene,tt1482459\ngV6Y3OwR2n0,2012.0,8,10,2018,Dr. Seuss' the Lorax,Unless Scene,tt1482459\n92lO2Bum7v4,2012.0,1,10,2018,Dr. Seuss' the Lorax,Thneedville Scene,tt1482459\nGZ3fgYIUrJU,2012.0,5,10,2018,Dr. Seuss' the Lorax,The Guardian of the Forest Scene,tt1482459\ntp1eVLXEXm8,2012.0,4,10,2018,Dr. Seuss' the Lorax,This Is the Place Scene,tt1482459\nKEfLE_bvsSo,2008.0,2,10,2018,The Strangers,A Face at the Window Scene,tt0482606\nPmNdhL9_nPM,2008.0,1,10,2018,The Strangers,Someone's In the House Scene,tt0482606\nZpwDcgHhFDQ,2008.0,6,10,2018,The Strangers,A Fatal Mistake Scene,tt0482606\n018kRNbZj0I,2008.0,8,10,2018,The Strangers,Captured by Killers Scene,tt0482606\nVjRhsK7p8gY,2008.0,10,10,2018,The Strangers,Are You a Sinner? Scene,tt0482606\nhFNZy6iBNVs,2008.0,9,10,2018,The Strangers,Masked Murderers Scene,tt0482606\nhyopxkr7RuY,2008.0,3,10,2018,The Strangers,You Can't Go Out There Scene,tt0482606\n06qgPR9Eqww,2008.0,7,10,2018,The Strangers,Making a Run For It Scene,tt0482606\n8pbM30ZMO84,2008.0,5,10,2018,The Strangers,Axe at the Door Scene,tt0482606\nGLQiaEzx03A,2008.0,4,10,2018,The Strangers,We Need a Gun Scene,tt0482606\n6qZZWAScCn8,2017.0,10,10,2018,Conor McGregor: Notorious,Conor McGregor vs. Nate Diaz Rematch Scene,tt7518466\nXdtbL0dP0X0,2017.0,3,10,2018,Conor McGregor: Notorious,Aldo's Broken Rib Scene,tt7518466\nMLCZ_B7FKc8,2017.0,7,10,2018,Conor McGregor: Notorious,Conor McGregor vs. Jose Aldo Scene,tt7518466\n4C7VpH9VvC0,2017.0,6,10,2018,Conor McGregor: Notorious,Jose Aldo Press Conference Scene,tt7518466\ndjPS3AC9DKk,2017.0,2,10,2018,Conor McGregor: Notorious,Meeting Arnold Schwarzenegger Scene,tt7518466\nUB1xsj0ZiKA,2017.0,5,10,2018,Conor McGregor: Notorious,Conor McGregor vs. Chad Mendes Scene,tt7518466\nNQw5e3HJgfk,2017.0,9,10,2018,Conor McGregor: Notorious,Violent Press Conference Scene,tt7518466\na7vAR-7YBWE,2017.0,4,10,2018,Conor McGregor: Notorious,A Crack in the Knee Scene,tt7518466\nj1tXIl0snEk,2017.0,8,10,2018,Conor McGregor: Notorious,Conor McGregor vs. Nate Diaz Scene,tt7518466\nJvTQZxz-KBk,2017.0,1,10,2018,Conor McGregor: Notorious,Winning Streak Scene,tt7518466\nalhVUKh36_Q,2008.0,6,10,2018,Mamma Mia!,Voulez-Vous Scene,tt0795421\n2GvL0jFY7u8,2008.0,10,10,2018,Mamma Mia!,Waterloo Scene,tt0795421\nbu9YxTb6gf8,2008.0,7,10,2018,Mamma Mia!,SOS Scene,tt0795421\nnLkmfL6IVQs,2008.0,9,10,2018,Mamma Mia!,Take a Chance on Me Scene,tt0795421\nCyUZe8xRNnQ,2008.0,4,10,2018,Mamma Mia!,Our Last Summer Scene,tt0795421\nQRoWiTcO7dk,2008.0,3,10,2018,Mamma Mia!,Dancing Queen Scene,tt0795421\n05qid4p_cfw,2008.0,1,10,2018,Mamma Mia!,Honey Honey Scene,tt0795421\nQe2m1wxb5_w,2008.0,8,10,2018,Mamma Mia!,Slipping Through My Fingers Scene,tt0795421\nmIeU7y3CGKQ,2008.0,5,10,2018,Mamma Mia!,Lay All Your Love on Me Scene,tt0795421\nDUjB9LTtzGg,2008.0,2,10,2018,Mamma Mia!,Mamma Mia (Here I Go Again) Scene,tt0795421\n1dwtsZ4IJQE,2017.0,10,10,2018,Happy Death Day,Killing Me Over Some Stupid Guy? Scene,tt5308322\nNnDKut3pxoU,2017.0,4,10,2018,Happy Death Day,Paging Doctor Death Scene,tt5308322\nrtn4-lDSB80,2017.0,5,10,2018,Happy Death Day,Driven to Murder Scene,tt5308322\nIlH-egwG2pQ,2017.0,7,10,2018,Happy Death Day,\"See You Soon, A-hole Scene\",tt5308322\nidvqLiOeLgc,2017.0,3,10,2018,Happy Death Day,What's Wrong With Being Confident? Scene,tt5308322\nYAmnMBHMPso,2017.0,8,10,2018,Happy Death Day,Just Say Yes Scene,tt5308322\nyQpFQFL-YLI,2017.0,6,10,2018,Happy Death Day,Flaming Death! Scene,tt5308322\nuAjGtAOqMQw,2017.0,9,10,2018,Happy Death Day,Safety's Off Scene,tt5308322\n86Vd7XFiYZA,2017.0,1,10,2018,Happy Death Day,A Deathday Present Scene,tt5308322\n_y_We1FV_RQ,2017.0,2,10,2018,Happy Death Day,Welcome to the Pleasure Dome Scene,tt5308322\nMNmdm8voYFE,2017.0,4,10,2018,Phantom Thread,Take the Dress Off! Scene,tt5776858\nfn5dXUu_qxM,2017.0,5,10,2018,Phantom Thread,Back to Where You Came From Scene,tt5776858\nKfAm5nyHM3U,2017.0,6,10,2018,Phantom Thread,\"It's Not Very Good, Is It? Scene\",tt5776858\na87b-bsz1Mg,2017.0,8,10,2018,Phantom Thread,An Air of Quiet Death in This House Scene,tt5776858\nURDzGjLruJU,2017.0,3,10,2018,Phantom Thread,The Fashion Show Scene,tt5776858\niHQZhYadNwQ,2017.0,9,10,2018,Phantom Thread,I Want You Flat on Your Back Scene,tt5776858\nWQLTwtwUnEI,2017.0,2,10,2018,Phantom Thread,You Have the Ideal Shape Scene,tt5776858\nw424xCe0eGQ,2017.0,10,10,2018,Phantom Thread,Life Is No Great Mystery Scene,tt5776858\nUQes95Ouciw,2017.0,7,10,2018,Phantom Thread,Will You Marry Me? Scene,tt5776858\nvvBW4Szes1U,2017.0,1,10,2018,Phantom Thread,For the Hungry Boy Scene,tt5776858\n3PhcsTMfqIs,2017.0,3,10,2018,Neat: The Story of Bourbon,The Bottled-In-Bond Act Scene,tt7109844\nK3Po5dqfTgc,2017.0,5,10,2018,Neat: The Story of Bourbon,The Right Way To Drink Bourbon Scene,tt7109844\nxpQ1_5xZuKY,2017.0,10,10,2018,Neat: The Story of Bourbon,Meant To Be Enjoyed Scene,tt7109844\n-HwJeE-iuIY,2017.0,9,10,2018,Neat: The Story of Bourbon,Bourbon is Eternal Scene,tt7109844\nMqiNJmj_ODg,2017.0,2,10,2018,Neat: The Story of Bourbon,The Importance Of Corn Scene,tt7109844\nldzjtk016bY,2017.0,7,10,2018,Neat: The Story of Bourbon,The Beauty Of The Barrel Scene,tt7109844\nEIrEOL6S6sk,2017.0,8,10,2018,Neat: The Story of Bourbon,The Rise Of Small Batch Bourbon Scene,tt7109844\nDZuHwW24HUY,2017.0,4,10,2018,Neat: The Story of Bourbon,How Grain Turns To Bourbon Scene,tt7109844\n9tqaHOTOasE,2017.0,6,10,2018,Neat: The Story of Bourbon,Bourbon Falling Out Of Favor Scene,tt7109844\nSBSzom7RbCs,2017.0,1,10,2018,Neat: The Story of Bourbon,What Is Bourbon? Scene,tt7109844\nRG4exoyldqw,2015.0,10,10,2018,We Are Blood,Skating in Paradise Scene,tt4542660\nL0-Ye--I0Uo,2015.0,5,10,2018,We Are Blood,Skateboarding in China Scene,tt4542660\nwXc9z1SmLJM,2015.0,1,10,2018,We Are Blood,Skating in Spain Scene,tt4542660\nwcYfLYh8ixg,2015.0,8,10,2018,We Are Blood,How to Deal With Pain Scene,tt4542660\nTcnr8WoHAOI,2015.0,9,10,2018,We Are Blood,Burning Boards Scene,tt4542660\nHMQpYC2SMX8,2015.0,7,10,2018,We Are Blood,Skatopia Scene,tt4542660\nUIRhpmPhehk,2015.0,4,10,2018,We Are Blood,The Deaf Skater Scene,tt4542660\nqiAPls8Te0k,2015.0,3,10,2018,We Are Blood,Skateboarding is Everywhere Scene,tt4542660\nfLRlh8AHh8k,2015.0,2,10,2018,We Are Blood,The Excavated Skate Park Scene,tt4542660\nlMYtQlLlu3c,2015.0,6,10,2018,We Are Blood,Security Hates Skaters Scene,tt4542660\nposwRRB_2i0,2017.0,10,10,2018,The Star,The Nativity Scene,tt2527336\nn5tMCxz-9uY,2018.0,2,10,2018,Peter Rabbit,House Party Scene,tt5117670\n4FppyDurg7c,2018.0,4,10,2018,Peter Rabbit,Wet Willy Rescue,tt5117670\nA9QknjLLso4,2018.0,1,10,2018,Peter Rabbit,Losing Peter's Father Scene,tt5117670\n51IaQuowCcA,2018.0,6,10,2018,Peter Rabbit,Electric Fence Scene,tt5117670\n9VwWPnHZMrs,2018.0,7,10,2018,Peter Rabbit,Allergy Attack! Scene,tt5117670\nYSOUTJUdTgs,2018.0,8,10,2018,Peter Rabbit,Playing With Fire Scene,tt5117670\nQkrYlP8-Cmo,2018.0,3,10,2018,Peter Rabbit,\"No Guts, No Glory Scene\",tt5117670\nroST4TM0ccM,2018.0,5,10,2018,Peter Rabbit,Skirmish In The Studio Scene,tt5117670\n9fEMKGFr-Sk,2018.0,10,10,2018,Peter Rabbit,Forgiveness Scene,tt5117670\nizWrKfUUP9o,2018.0,9,10,2018,Peter Rabbit,Rabbits in a Toy Store Scene,tt5117670\nc6mLa5_GvCQ,2017.0,4,10,2018,The Star,This Bird Can Dance! Scene,tt2527336\nVgO0K_0mi1U,2017.0,6,10,2018,The Star,Marketplace Disaster Scene,tt2527336\nsYdqpWTQyaI,2017.0,9,10,2018,The Star,When Animals Attack Scene,tt2527336\nfDeQjTPTlDE,2017.0,3,10,2018,The Star,The King of the Shoes Scene,tt2527336\n-qGU1hiiJfU,2017.0,5,10,2018,The Star,Animal Impersonations Scene,tt2527336\nr2x4QueC2As,2017.0,7,10,2018,The Star,Prayers from Donkeys Scene,tt2527336\ne48T01eVXtU,2017.0,2,10,2018,The Star,Bo's Big Escape Scene,tt2527336\nCp3FHbNWi64,2017.0,8,10,2018,The Star,Good Tidings of Great Joy Scene,tt2527336\ndj0MEV7d1NE,2017.0,1,10,2018,The Star,The Angel Appears Before Mary Scene,tt2527336\nm-L3k3ElIQE,2017.0,8,10,2018,\"Roman J. Israel, Esq.\",Live in What You Did Wrong Scene,tt6000478\nsYWS5RSmJ-s,2017.0,5,10,2018,\"Roman J. Israel, Esq.\",A Really Bad Day at the Office Scene,tt6000478\nc9oE47YW6YM,2017.0,4,10,2018,\"Roman J. Israel, Esq.\",Standing Up For Who Can't Scene,tt6000478\ni_SnR25Zoho,2017.0,3,10,2018,\"Roman J. Israel, Esq.\",Sistahs Stand Up Scene,tt6000478\nhp3HX9PAkcA,2017.0,6,10,2018,\"Roman J. Israel, Esq.\",Lack of Success is Self-Imposed Scene,tt6000478\nrCEbhr55ISU,2017.0,10,10,2018,\"Roman J. Israel, Esq.\",I'm Going Away Scene,tt6000478\nZFrDw6oQai4,2017.0,9,10,2018,\"Roman J. Israel, Esq.\",The Time Has Come Scene,tt6000478\n9V_GlFhNX2g,2017.0,7,10,2018,\"Roman J. Israel, Esq.\",Hanging By a Thread Scene   Moiveclips,tt6000478\nHs8mVGI7uVc,2017.0,2,10,2018,\"Roman J. Israel, Esq.\",\"Underwear Model, Esq. Scene\",tt6000478\noR3h33DSGPM,2017.0,1,10,2018,\"Roman J. Israel, Esq.\",White People's Court Scene,tt6000478\nJpQqyJbdb44,2017.0,5,10,2018,The Rape of Recy Taylor,A Letter From Rosa Parks Scene,tt6116682\nG90tPiniLd8,2017.0,3,10,2018,The Rape of Recy Taylor,Black Woman in Jim Crow South Scene,tt6116682\n8O8gYNK3ULc,2017.0,1,10,2018,The Rape of Recy Taylor,The Night It Happened Scene,tt6116682\n43mOz_bosUY,2017.0,9,10,2018,The Rape of Recy Taylor,Injustice Survives Scene,tt6116682\n0nEWiH0pYR8,2017.0,6,10,2018,The Rape of Recy Taylor,The Infrastructure of Injustice Scene,tt6116682\nzzkjLhitH7c,2017.0,10,10,2018,The Rape of Recy Taylor,Recy Speaks Scene,tt6116682\nZNzEreKcfUU,2017.0,8,10,2018,The Rape of Recy Taylor,The Confession Scene,tt6116682\nsr7zvUpRxIU,2017.0,7,10,2018,The Rape of Recy Taylor,Testimony From the Rapists Scene,tt6116682\nSTcAVDuOkv8,2017.0,4,10,2018,The Rape of Recy Taylor,Rosa Parks Comes to Town Scene,tt6116682\nLjKWOmIeSQs,2017.0,2,10,2018,The Rape of Recy Taylor,The Night Recy Came Home Scene,tt6116682\nl46yjkR0SqU,2017.0,10,10,2018,The Book of Henry,Believe in Magic Scene,tt4572792\nJJrTnnaEZ_w,2017.0,3,10,2018,The Book of Henry,Henry Has a Tumor Scene,tt4572792\ngVdIiTE1ykg,2017.0,6,10,2018,The Book of Henry,Henry's Big Plan Scene,tt4572792\nfTIIhYZ_CzA,2017.0,9,10,2018,The Book of Henry,Know Who You're Up Against Scene,tt4572792\nAX4i2YZqE14,2017.0,7,10,2018,The Book of Henry,The Talent Show Scene,tt4572792\n34FTDewDftA,2017.0,1,10,2018,The Book of Henry,The Genius and the Nobody Scene,tt4572792\n9C6DANHgdrE,2017.0,4,10,2018,The Book of Henry,Peter's Special Mission Scene,tt4572792\nsIwsArbH5ck,2017.0,2,10,2018,The Book of Henry,Something's Wrong with Henry Scene,tt4572792\ndg6PaO0e6wA,2017.0,8,10,2018,The Book of Henry,Christina's Dance Scene,tt4572792\nMYkSUEjYLc0,2017.0,5,10,2018,The Book of Henry,The Best Part of Me Scene,tt4572792\nAvPljYL3Sq4,2014.0,10,10,2018,Equal Means Equal,Ending Gender And Sexual Discrimination Scene,tt3250590\ne0oLpONe5O0,2014.0,8,10,2018,Equal Means Equal,Foster Care & Child Sex Trafficking Scene,tt3250590\n2h6NGVrMQ20,2014.0,9,10,2018,Equal Means Equal,The Abusive World of Pimps Scene,tt3250590\nIqkw8K2hT74,2014.0,1,10,2018,Equal Means Equal,Wal-Mart's Gender Discrimination Scene,tt3250590\n06456EaXTVM,2014.0,7,10,2018,Equal Means Equal,Pregnancy Discrimination Scene,tt3250590\n5JjVwGi4aHU,2014.0,2,10,2018,Equal Means Equal,The Equal Rights Amendment Scene,tt3250590\nD2l0Qk_lxo0,2014.0,5,10,2018,Equal Means Equal,Rape Culture in Schools Scene,tt3250590\nm_Wx68QkJSU,2014.0,6,10,2018,Equal Means Equal,Sexual Assault In The U.S. Military Scene,tt3250590\nv8L3Lyit8Ro,2014.0,4,10,2018,Equal Means Equal,Failing Domestic Violence Victims Scene,tt3250590\nawhN-boYW_I,2014.0,3,10,2018,Equal Means Equal,The International Women's Bill Of Rights Scene,tt3250590\nOg88KQM5nVk,2015.0,8,8,2018,Atheist America,Atheist vs Christian Scene,tt2923316\nz8NcTAIV0Wc,2015.0,4,8,2018,Atheist America,Guns in Church Scene,tt2923316\nSZCtfLaCWO0,2015.0,3,8,2018,Atheist America,Situational Ethics Scene,tt2923316\nzdOov2A4-os,2015.0,7,8,2018,Atheist America,Easter Egg Drop Scene,tt2923316\nQcFKRqQENrI,2015.0,1,8,2018,Atheist America,Prayer Circle Scene,tt2923316\nW4jxHLn-00g,2015.0,5,8,2018,Atheist America,Joel Osteen's Megachurch Scene,tt2923316\n8TwlBdCGS24,2015.0,2,8,2018,Atheist America,Dominion Over Animals Scene,tt2923316\nEchEZ7BmRos,2015.0,6,8,2018,Atheist America,Faster Than the Speed of Christ Scene,tt2923316\ndmASD5tRwV4,2001.0,6,10,2018,John Carpenter's Ghosts of Mars,Drugs vs Ghosts Scene,tt0228333\nm-2WmcLl_PQ,2001.0,5,10,2018,John Carpenter's Ghosts of Mars,Battling the Possessed Scene,tt0228333\nKwpO_4Rq13o,2001.0,9,10,2018,John Carpenter's Ghosts of Mars,Desolation Takes On Big Daddy Scene,tt0228333\nCG2YRWPhfiA,2001.0,2,10,2018,John Carpenter's Ghosts of Mars,I Saved Your Life Scene,tt0228333\nGvHBefStM7o,2001.0,4,10,2018,John Carpenter's Ghosts of Mars,War Ready Scene,tt0228333\nZUchY9Hw48A,2001.0,8,10,2018,John Carpenter's Ghosts of Mars,Catching the Train Outta Hell Scene,tt0228333\nX1SJgm2hIAY,2001.0,7,10,2018,John Carpenter's Ghosts of Mars,Party Time Scene,tt0228333\n6TVik8mYxrY,2001.0,3,10,2018,John Carpenter's Ghosts of Mars,The Horrors Behind the Hill Scene   Moviecl,tt0228333\nF0ga5pmQjnc,2001.0,10,10,2018,John Carpenter's Ghosts of Mars,Let's Kick Some Ass Scene,tt0228333\nQEfuINMgcnI,2001.0,1,10,2018,John Carpenter's Ghosts of Mars,I Like You Already Scene,tt0228333\nZrW_1_rFaw0,2016.0,5,8,2018,My Art,Cougar Hunting Scene,tt5325030\nQm-fzB7OmEU,2016.0,3,8,2018,My Art,The Misfits Scene,tt5325030\nbq5vS1a-smo,2016.0,7,8,2018,My Art,Bell Book and Candle Scene,tt5325030\n6P5yW3rYuMs,2016.0,8,8,2018,My Art,Some Like It Hot Scene,tt5325030\nXHCai_8cuiU,2016.0,2,8,2018,My Art,Shake That Butt Scene,tt5325030\nW-phG8nc1Xc,2016.0,1,8,2018,My Art,A Pot Dinner Scene,tt5325030\nOro8uCubA84,2016.0,4,8,2018,My Art,Dinner and Dancing Scene,tt5325030\nHpeiPgkqEro,2016.0,6,8,2018,My Art,A Clockwork Orange Scene,tt5325030\nkIIY1-f_rBg,2011.0,10,10,2018,The Dilemma,One Shot Scene,tt1578275\naSsFjcw8R3Y,2011.0,3,10,2018,The Dilemma,Peeping Tom Scene,tt1578275\nuR7yS87K1tA,2011.0,7,10,2018,The Dilemma,Honesty Scene,tt1578275\nLHcbbXpKIrc,2011.0,2,10,2018,The Dilemma,Helping the Little Porkers Scene,tt1578275\nvDzbcWty6m0,2011.0,6,10,2018,The Dilemma,Are You Crying? Scene,tt1578275\nUFiKhV_Ay70,2011.0,9,10,2018,The Dilemma,Kill Your Bookie Scene,tt1578275\nTChg5dQ36WM,2011.0,8,10,2018,The Dilemma,Come Inside Scene,tt1578275\nBLElh2JGufs,2011.0,4,10,2018,The Dilemma,Stay Out of My Marriage Scene,tt1578275\n8aK7LsC0G-4,2011.0,1,10,2018,The Dilemma,Serious Lady Wood Scene,tt1578275\n8sURhgulh7E,2011.0,5,10,2018,The Dilemma,I Know Where You Live Scene,tt1578275\n1DDHNN3oums,2015.0,5,6,2018,Gun Runners,Your Running Brings Us Nothing Scene,tt3957170\nnQuKmZkCDZ8,2015.0,1,6,2018,Gun Runners,How Many People Have You Killed? Scene,tt3957170\n01rrDGEzBc4,2015.0,6,6,2018,Gun Runners,Financial Disaster Scene,tt3957170\na-qtnTRl6HA,2015.0,3,6,2018,Gun Runners,The Prague Marathon Scene,tt3957170\nUX8ua4_z-kg,2015.0,4,6,2018,Gun Runners,Running for Office Scene,tt3957170\nDTZylvspsps,2015.0,2,6,2018,Gun Runners,\"Kenya, the Home of Champions Scene\",tt3957170\nTunbuB_bBb8,2014.0,7,10,2018,The Equalizer,Disrespect the Badge Scene,tt0455944\nDyxkjYmlzhg,2014.0,8,10,2018,The Equalizer,Brick by Brick Scene,tt0455944\n4zBMw2XqgWY,2014.0,9,10,2018,The Equalizer,Head of the Snake Scene,tt0455944\nZ-l7wGkNyko,2014.0,10,10,2018,The Equalizer,A New Start Scene,tt0455944\nBdZgC84uYUo,2014.0,6,10,2018,The Equalizer,Deadly Diner Patron Scene,tt0455944\nEWSHsRBP88Y,2014.0,5,10,2018,The Equalizer,Evening Tea Scene,tt0455944\n1DvFzLRPc_w,2014.0,3,10,2018,The Equalizer,Her Life Will Go On Scene,tt0455944\nGtqIqWKdlD4,2014.0,4,10,2018,The Equalizer,Pay It Back Scene   Movielcips,tt0455944\nQLkt-SfsCsQ,2014.0,1,10,2018,The Equalizer,Just Kinda Lost Scene,tt0455944\n40ryheWGyZY,2014.0,2,10,2018,The Equalizer,Walking Terri Home Scene,tt0455944\nwDFOO-dC-Nw,2017.0,10,10,2018,American Made,Pablo's Revenge Scene,tt3532216\nzDEPob22tHs,2017.0,8,10,2018,American Made,A Cadillac for Your Troubles Scene,tt3532216\nSxJcAxTBKOk,2017.0,7,10,2018,American Made,Barry Gets Burned Scene,tt3532216\n2XmLLBZnvDg,2017.0,1,10,2018,American Made,Becoming a Drug Plane Scene,tt3532216\nODIZKyevVxQ,2018.0,4,10,2018,American Made,Outflying the DEA Scene,tt3532216\nWi4OhwrVwP8,2017.0,5,10,2018,American Made,Bringing Snow to the Suburbs Scene,tt3532216\n4gSkh86zcaU,2017.0,2,10,2018,American Made,The Gringo Who Delivers Scene,tt3532216\nHBj5pxrFyE4,2017.0,9,10,2018,American Made,Setting Up Escobar Scene,tt3532216\nCHBydX2-I50,2017.0,6,10,2018,American Made,\"Goodbye, JB Scene\",tt3532216\nWBreuW9LLSw,2017.0,3,10,2018,American Made,Summer '82 Scene,tt3532216\nKMHmLy9C2hU,2006.0,9,12,2018,Rescue Dawn,The Escape Scene,tt0462504\nsxo7GjhsghQ,2006.0,8,12,2018,Rescue Dawn,I Can't Take It Anymore Scene,tt0462504\nBFAfiz1daR4,2006.0,5,12,2018,Rescue Dawn,Unfriendly Fire Scene,tt0462504\n6kktAYxwo7M,2006.0,7,12,2018,Rescue Dawn,Eating Worms Scene,tt0462504\nUN5YOny_U8g,2006.0,1,12,2018,Rescue Dawn,G.I. Training Scene,tt0462504\nxmihht20Z0E,2006.0,11,12,2018,Rescue Dawn,Scene,tt0462504\n6i7cWj1WqDU,2006.0,3,12,2018,Rescue Dawn,Tortured Scene,tt0462504\nZekXmBuhS5c,2006.0,12,12,2018,Rescue Dawn,\"Welcome Back, Dieter Scene\",tt0462504\nW_qA7Xt_UPw,2006.0,10,12,2018,Rescue Dawn,Duane's Death Scene,tt0462504\nXUdBdsMc5EQ,2006.0,4,12,2018,Rescue Dawn,\"Eugene from Eugene, Oregon Scene\",tt0462504\n99qifKCGPfA,2006.0,6,12,2018,Rescue Dawn,Daydreaming About Food Scene,tt0462504\n-OMiOIbouaA,2006.0,2,12,2018,Rescue Dawn,I Cannot Sign This Scene,tt0462504\n_0X1jPgLo-A,1991.0,4,11,2018,Little Man Tate,Horseback Ride Scene,tt0102316\n-oL4NpO7eAw,1991.0,11,11,2018,Little Man Tate,\"Happy Birthday, Fred Scene\",tt0102316\nRjDv_swo0rY,1991.0,2,11,2018,Little Man Tate,The Math Magician Scene,tt0102316\nSCn7SurOKdw,1991.0,3,11,2018,Little Man Tate,A Mathematics Challenge Scene,tt0102316\nGBu5QE-EsSg,1991.0,10,11,2018,Little Man Tate,\"I Love You, Mom Scene\",tt0102316\nUs1MxXdSHw8,1991.0,8,11,2018,Little Man Tate,My Name's Eddie Scene,tt0102316\nqjUsrdzDbuY,1991.0,9,11,2018,Little Man Tate,A Kid & A Grown-Up Scene,tt0102316\n_Du0A1y4Wh4,1991.0,5,11,2018,Little Man Tate,If Anything Happens to Him... Scene,tt0102316\n0m5VGBc8VrQ,1991.0,1,11,2018,Little Man Tate,He's Smarter Than All Those Other Plateheads Scene,tt0102316\nUrCi_k2TXOA,1991.0,6,11,2018,Little Man Tate,Now Can I Have a Coke? Scene,tt0102316\nFVGKgrxQP9M,1991.0,7,11,2018,Little Man Tate,A Flying Globe Scene,tt0102316\nCN6dU8mcuMY,1962.0,8,9,2018,Mutiny on the Bounty,Just Another Way of Dying Scene,tt0056264\njpoR10Zh0ig,1962.0,1,9,2018,Mutiny on the Bounty,Cruelty with Purpose Scene,tt0056264\nXyEHIOZf5yE,1962.0,6,9,2018,Mutiny on the Bounty,A Big Price to Pay Scene,tt0056264\n6IJ8LfJnJvQ,1962.0,3,9,2018,Mutiny on the Bounty,Kissing the Princess Scene,tt0056264\nt0oqEjxOUww,1962.0,5,9,2018,Mutiny on the Bounty,The Mutiny Scene,tt0056264\nBznPcrTUYvg,1962.0,9,9,2018,Mutiny on the Bounty,A Useless Way to Die Scene,tt0056264\nuNcKTuAqLag,1962.0,4,9,2018,Mutiny on the Bounty,Punishment With Relish Scene,tt0056264\nEPa8iQyK5mQ,1962.0,2,9,2018,Mutiny on the Bounty,Poisoned With Contempt Scene,tt0056264\noNoOFf527GU,1962.0,7,9,2018,Mutiny on the Bounty,Mutineers Must Hang Scene,tt0056264\npBd7XYjjvRw,2017.0,2,10,2018,Darkest Hour,\"Conquer We Must, Conquer We Shall Scene\",tt4555426\nhtHKbsUKDDw,2017.0,1,10,2018,Darkest Hour,\"Blood, Toil, Tears and Sweat Scene\",tt4555426\nskrdyoabmgA,2017.0,10,10,2018,Darkest Hour,We Shall Fight on the Beaches Scene,tt4555426\nWo4U1SqnRpA,2017.0,5,10,2018,Darkest Hour,Churchill & Roosevelt Scene,tt4555426\n7SZcDW_1o8g,2017.0,7,10,2018,Darkest Hour,The Campaign of Resistance Scene,tt4555426\ngCHCR0wZclg,2017.0,9,10,2018,Darkest Hour,Death Before Disarmament Scene,tt4555426\nTs8WRHAQvk4,2017.0,8,10,2018,Darkest Hour,The People of England Scene,tt4555426\n1YpDd1nVthI,2017.0,4,10,2018,Darkest Hour,Saving Dunkirk Scene,tt4555426\nJwlhFfOC5Zo,2017.0,3,10,2018,Darkest Hour,Up Your Bum Scene,tt4555426\nxA1Uz_TMzhs,2017.0,6,10,2018,Darkest Hour,Subterfuge in the Bunker Scene,tt4555426\n_PSZEvsYD6o,1978.0,11,11,2018,Force 10 From Navarone,The Dam Bursts Scene,tt0077572\nTEZq-_XkcRA,1978.0,9,11,2018,Force 10 From Navarone,Eliminating the Traitor Scene,tt0077572\njgosH8zc83Q,1978.0,5,11,2018,Force 10 From Navarone,An Awkward Position Scene,tt0077572\nMwjIdhPU43A,1978.0,7,11,2018,Force 10 From Navarone,The Wrong Target Scene,tt0077572\nJJyK0EX6s_Q,1978.0,4,11,2018,Force 10 From Navarone,Playing Dead Scene,tt0077572\n69v1tcsG6nc,1978.0,2,11,2018,Force 10 From Navarone,We're Deserters Scene,tt0077572\ng3D2eGiLoeI,1978.0,3,11,2018,Force 10 From Navarone,You Can Get up Now Scene,tt0077572\nxFoBu7P_Kwc,1978.0,10,11,2018,Force 10 From Navarone,It Didn't Work! Scene,tt0077572\ntMYOmMWbUME,1978.0,1,11,2018,Force 10 From Navarone,Meet the Partisans Scene,tt0077572\nkDSiyU72RpA,1978.0,6,11,2018,Force 10 From Navarone,Equal Consideration Scene,tt0077572\nDEKdqE9W_i8,1978.0,8,11,2018,Force 10 From Navarone,Betrayed by Their Own Scene,tt0077572\nXxWjAkr7ujk,2016.0,4,7,2018,The War Show,Money Buys Freedom Scene,tt5719108\nZtgEJOBzX6A,2016.0,3,7,2018,The War Show,Lies Fuel Revolution Scene,tt5719108\nLbPm19yBPis,2016.0,5,7,2018,The War Show,Faces of Rebellion Scene,tt5719108\nRxPJd3_j5O0,2016.0,1,7,2018,The War Show,Child of the Revolution Scene,tt5719108\nyzSjRcABUBY,2016.0,6,7,2018,The War Show,The Fundamentalists Rise Scene,tt5719108\nZbtcQZ1yDjc,2016.0,7,7,2018,The War Show,The Resistance Falls Apart Scene,tt5719108\nGP9FOGsbYsw,2016.0,2,7,2018,The War Show,Suppressing the Revolution Scene,tt5719108\nmbzNdI-1iUc,1992.0,4,10,2018,El Mariachi,Mistaken Identity Scene,tt0104815\n7yBBNmR1CLg,1992.0,6,10,2018,El Mariachi,Sing or Die Scene,tt0104815\nPGbBz0m0pTc,1992.0,2,10,2018,El Mariachi,Looking for Work Scene,tt0104815\nSnbbz0C_ZiA,1992.0,5,10,2018,El Mariachi,They Were Thieves Scene,tt0104815\n2kK1wyTEMUQ,1992.0,9,10,2018,El Mariachi,Calling Your Bluff Scene,tt0104815\nk7ej9E5b8js,1992.0,8,10,2018,El Mariachi,The Wrong Case Scene,tt0104815\nlqnKLTA2GVE,1992.0,10,10,2018,El Mariachi,No More Moco Scene,tt0104815\nxNc951Hq2WA,1992.0,3,10,2018,El Mariachi,Mariachi Day Scene,tt0104815\nKQzNG70KguM,1992.0,7,10,2018,El Mariachi,Sings Scene,tt0104815\nLVGZy2YKAh8,1992.0,1,10,2018,El Mariachi,\"Pronto, Azul Scene\",tt0104815\n5ckqhebte9o,1970.0,7,7,2018,There Was a Crooked Man,The Worst Luck Scene,tt0066448\n_uXfbxevYyg,1970.0,1,7,2018,There Was a Crooked Man,Bonding Over a Prison Fight Scene,tt0066448\n1GiYwJRA2NA,1970.0,3,7,2018,There Was a Crooked Man,You Must Be the New Warden Scene,tt0066448\nIgTIy5MUBxM,1970.0,6,7,2018,There Was a Crooked Man,This Is as Far as You Go Scene,tt0066448\nJ9qv_a_s7Gs,1970.0,2,7,2018,There Was a Crooked Man,Prison Riot Scene,tt0066448\nIaeWrM5PlmU,1970.0,5,7,2018,There Was a Crooked Man,Prison Break Scene,tt0066448\njZXuLQdIrEg,1970.0,4,7,2018,There Was a Crooked Man,Being a Leader of Men Scene,tt0066448\nuXUPYAomwDU,1965.0,2,6,2018,Tiempo de Morir,The Lame Gunman Scene,tt0059803\nCMPJ23f8BeM,1965.0,3,6,2018,Tiempo de Morir,Your Father Was Crazy Scene,tt0059803\nOhM4B8B6B28,1965.0,6,6,2018,Tiempo de Morir,Beaten With a Belt Scene,tt0059803\nuhOCeh9oGK4,1965.0,5,6,2018,Tiempo de Morir,I'll Settle This Scene,tt0059803\nn0MX1a8uh3w,1965.0,4,6,2018,Tiempo de Morir,I Don't Want to Die Scene,tt0059803\nRRfoHyYJnAc,1965.0,1,6,2018,Tiempo de Morir,Jail or the Cemetery Scene,tt0059803\n64tSUb_LTdI,2018.0,10,10,2018,Fifty Shades Freed,I Await Your Pleasure Scene,tt4477536\nrvQZ6MdHSEk,2018.0,5,10,2018,Fifty Shades Freed,A Knife to My Neck Scene,tt4477536\n5BLZxhN2lDE,2018.0,8,10,2018,Fifty Shades Freed,I'm Pregnant Scene,tt4477536\nX7Jay8hlfHY,2018.0,6,10,2018,Fifty Shades Freed,I Want to Drive You Wild Scene,tt4477536\n_OZS09-GVTg,2018.0,9,10,2018,Fifty Shades Freed,Mrs. Grey's Revenge Scene,tt4477536\nOFDJnI4RczY,-1.0,2,10,2018,Fifty Shades Freed,Call Me Mrs. Grey Scene,tt4477536\nvmpSyqa5kXQ,2018.0,7,10,2018,Fifty Shades Freed,Tasting Her Ice Cream Scene,tt4477536\nAdKWXA8npgE,2018.0,4,10,2018,Fifty Shades Freed,Sexy Stylist Scene,tt4477536\nLmsnknGIx74,2018.0,3,10,2018,Fifty Shades Freed,She Drives Stick Scene,tt4477536\nsC78ImgOLQI,2018.0,1,10,2018,Fifty Shades Freed,Do You Remember Your Safety Word? Scene,tt4477536\nz08tZYDrY_8,2005.0,1,10,2018,Stealth,Test Run Scene,tt0382992\ndiNo0cO2Je0,2005.0,10,10,2018,Stealth,North Korean Rescue Scene,tt0382992\nfBTODK66ymw,2005.0,2,10,2018,Stealth,High Dive Missile Attack Scene,tt0382992\nsa9AzlyS9h0,2005.0,7,10,2018,Stealth,Clipped Wing Scene,tt0382992\n4InwO1SSp5o,2005.0,4,10,2018,Stealth,Love in Thailand Scene,tt0382992\nnotFMAwEQeM,2005.0,5,10,2018,Stealth,Collateral Damage Scene,tt0382992\nY_U49qqwDGI,2005.0,6,10,2018,Stealth,\"Goodbye, Henry Scene\",tt0382992\nmpr3XG5Tzmk,2005.0,8,10,2018,Stealth,The Ring of Fire Scene,tt0382992\nJIsrqAWzVoA,2005.0,3,10,2018,Stealth,Private Waterfalls Scene,tt0382992\nnP-P4IYLJWY,2005.0,9,10,2018,Stealth,EDI Dogfight Scene,tt0382992\nqVDMu-erGtc,2003.0,9,10,2018,S.W.A.T.,Bridge Shootout Scene,tt0257076\naDU5CcINqyI,2003.0,1,10,2018,S.W.A.T.,Bank Robbery Assault Scene,tt0257076\nrhkkbjKcaJ0,2003.0,10,10,2018,S.W.A.T.,The End of Line Scene,tt0257076\n8N9oQUJJstQ,2003.0,6,10,2018,S.W.A.T.,Violent Ambush Scene,tt0257076\nt0tIXAlLX8s,2003.0,2,10,2018,S.W.A.T.,Suspect on Foot Scene,tt0257076\nhV55sjy1QFI,2003.0,7,10,2018,S.W.A.T.,Between Old Partners Scene,tt0257076\nDc-fBk3yoqs,2003.0,3,10,2018,S.W.A.T.,Training Day Scene,tt0257076\nMBeBFVoomg8,2003.0,4,10,2018,S.W.A.T.,Answering the Call Scene,tt0257076\nraSWINBYtuc,2003.0,8,10,2018,S.W.A.T.,Sixth Street Landing Scene,tt0257076\nG61d-lcbLT4,2003.0,5,10,2018,S.W.A.T.,Sniping the Transport Scene,tt0257076\n9ykMeXdU_Ng,1955.0,3,10,2018,Mister Roberts,What Do You Really Think of Me? Scene,tt0048380\n4DKTOdul0_I,1955.0,4,10,2018,Mister Roberts,What's Your Name Again? Scene,tt0048380\nGHpQUOP8vcE,1955.0,1,10,2018,Mister Roberts,Nurse Watching Scene,tt0048380\nPTQLBv8sgDI,1955.0,2,10,2018,Mister Roberts,Making Scotch Scene,tt0048380\nlCF6_l8gtdA,1955.0,8,10,2018,Mister Roberts,You Stabbed Me in the Back Scene,tt0048380\nNZzeLRspnMg,1955.0,9,10,2018,Mister Roberts,A Letter From Roberts Scene,tt0048380\nALSUu2CSBOg,1955.0,7,10,2018,Mister Roberts,A Soapy Explosion Scene,tt0048380\nPPhxsJho48c,1955.0,5,10,2018,Mister Roberts,Beautiful Visitors Scene,tt0048380\nqFH0mR6eVLg,1955.0,10,10,2018,Mister Roberts,Pulver Takes a Stand Scene,tt0048380\n-rkhqMzCUnA,1955.0,6,10,2018,Mister Roberts,A Firecracker Scene,tt0048380\nOHCVQcnqGcY,2001.0,6,8,2018,See Spot Run,This Is Satan's Dog Scene,tt0250720\nivG26TnBWGI,2001.0,7,8,2018,See Spot Run,The Mailman Fights Back Scene,tt0250720\nZ0Fm3Ym-aJM,2001.0,4,8,2018,See Spot Run,We're a Team Scene,tt0250720\nz2NhPvlzjcg,2001.0,1,8,2018,See Spot Run,Dog Town Scene,tt0250720\nE6AYVGKx6Es,2001.0,5,8,2018,See Spot Run,Whose Dog Is That? Scene,tt0250720\nKpxk3UkX5s4,2001.0,2,8,2018,See Spot Run,Giving Sugar to a Child Scene,tt0250720\ntD8f4Xk30bg,2001.0,3,8,2018,See Spot Run,The FBI's Top Dog Scene,tt0250720\ng8hPeRFRiHY,2001.0,8,8,2018,See Spot Run,He Needs a Family Scene,tt0250720\ne0UZ0rc0KH4,1978.0,6,10,2018,Big Wednesday,\"Goodbye, Jack Scene\",tt0077235\nFAK7ssvx3oE,1978.0,2,10,2018,Big Wednesday,Summer Surfing Scene,tt0077235\niaCvBhskyk0,1978.0,3,10,2018,Big Wednesday,Get off the Beach Scene,tt0077235\n5T17qRlPIiA,1978.0,9,10,2018,Big Wednesday,Matt's Big Wave Scene,tt0077235\n2WJjBuXiXK0,1978.0,7,10,2018,Big Wednesday,Remembering Waxer Scene,tt0077235\ngUeHamRZkSY,1978.0,5,10,2018,Big Wednesday,Avoiding the Draft Scene,tt0077235\n6moZJqA4iuc,1978.0,10,10,2018,Big Wednesday,The Hottest Ride Ever Scene,tt0077235\nmfkzA9zjRdM,1978.0,8,10,2018,Big Wednesday,Reunited Scene,tt0077235\n0B3lnfdJ_iE,1978.0,1,10,2018,Big Wednesday,This Is Matt Johnson Scene,tt0077235\nAN21TljYB8E,1978.0,4,10,2018,Big Wednesday,I'm a Screw Up Scene,tt0077235\npE0vTejjWuk,1942.0,3,8,2018,Cat People,Instrument of Death  Scene,tt0034587\ncRpMdH1D55o,1942.0,7,8,2018,Cat People,A Deadly Kiss Scene,tt0034587\n16xSXPPqBfM,1942.0,2,8,2018,Cat People,Frightened to Death Scene,tt0034587\nlz98akbX_NE,1942.0,5,8,2018,Cat People,Pool of Terror,tt0034587\nWf6feYvdHs4,1942.0,1,8,2018,Cat People,Cats Know Who's Not Right Scene,tt0034587\nyiOUEU4KG6s,1942.0,6,8,2018,Cat People,Leave Us in Peace Scene,tt0034587\nDrrwX4AnbMk,1942.0,8,8,2018,Cat People,Killed by Her Own Kind Scene,tt0034587\nRFtZAVgf1Yg,1942.0,4,8,2018,Cat People,Stalked  Scene,tt0034587\nctd3NPx1pdM,1944.0,8,8,2018,Gaslight,A Wife's Revenge Scene,tt0036855\nBICqcEvzhVw,1944.0,5,8,2018,Gaslight,You Think I'm Insane Scene,tt0036855\nFp5iPmpZiNE,1944.0,6,8,2018,Gaslight,You're Being Driven Insane Scene,tt0036855\n6o8Eq0LEpf0,1944.0,3,8,2018,Gaslight,The Missing Painting Scene,tt0036855\nty68MEZQPS0,1944.0,1,8,2018,Gaslight,Bloodthirsty Bessie Scene,tt0036855\neIlzY-UcYZU,1944.0,2,8,2018,Gaslight,Flirting with the Maid Scene,tt0036855\nkFhDGoJh4O4,1944.0,7,8,2018,Gaslight,Did I Dream? Scene,tt0036855\n_HoKFu0orAs,1944.0,4,8,2018,Gaslight,I'm Frightened of Myself Scene,tt0036855\nzNT4XSI1doU,1974.0,2,7,2018,It's Alive,Monster in the Milk Truck Scene,tt0071675\nPvEongWRs5Q,1974.0,1,7,2018,It's Alive,The Birth from Hell Scene,tt0071675\njaSSXV5AFHk,1979.0,4,7,2018,It's Alive,No Relation to Me Scene,tt0071675\nilRq_PR6oi4,1979.0,5,7,2018,It's Alive,Bloody Playtime Scene,tt0071675\naTSa6E4_Zgs,1979.0,7,7,2018,It's Alive,A Father's Love Scene,tt0071675\n_gVrJIUmCqU,1974.0,3,7,2018,It's Alive,The Davis Monster Scene,tt0071675\nwxlD2wwIgVk,1979.0,6,7,2018,It's Alive,Something's in the Cradle Scene,tt0071675\nt3mwyiOBDrk,1979.0,7,9,2018,The Great Santini,Put Him on the Deck Scene,tt0079239\nMxDtKTClKGI,1979.0,5,9,2018,The Great Santini,Mama's Boy Scene,tt0079239\nWnrOQRdqiQ4,1979.0,1,9,2018,The Great Santini,Bull Meechum Don't Try Scene,tt0079239\nJJ0IOFvfu3Q,1979.0,3,9,2018,The Great Santini,Surprise Bathroom Attack Scene,tt0079239\nw294_yaM85M,1979.0,6,9,2018,The Great Santini,To My Son Scene,tt0079239\ndroww43JVyA,1979.0,4,9,2018,The Great Santini,Hack It or Pack It Scene,tt0079239\nfz_9uPJnGEQ,1979.0,9,9,2018,The Great Santini,Comforting Ben Scene,tt0079239\nLgNSetWhfhw,1979.0,8,9,2018,The Great Santini,You Disobeyed a Direct Order Scene,tt0079239\nPj2K4FrqTmw,1979.0,2,9,2018,The Great Santini,Marine Kids Scene,tt0079239\n5Zpj9911g6I,2017.0,1,10,2018,Trophy,Rhino Horn Cutting Scene,tt6333066\nEVy-c7ZaMvI,2017.0,9,10,2018,Trophy,Cecil the Lion Scene,tt6333066\n_jl40Gzivhs,2017.0,10,10,2018,Trophy,This Is My  Scene,tt6333066\ndtQLSM8VvfU,2017.0,3,10,2018,Trophy,Millions of Dollars in Rhino Horns Scene,tt6333066\n6IdswAQLBKk,2017.0,7,10,2018,Trophy,It Doesn't Have the  Quality Scene,tt6333066\n5bTmqPTQPOg,2017.0,2,10,2018,Trophy,Hunting Convention Scene,tt6333066\noBeMUEkfDtk,2017.0,4,10,2018,Trophy,\"It's Not Sport, It's Just Killing Scene\",tt6333066\nHgqmQ4RN9vo,2017.0,5,10,2018,Trophy,Killing a Croc Scene,tt6333066\nVcH7mgvr2jY,2017.0,8,10,2018,Trophy,Anti-Poaching Raid Scene,tt6333066\nTV1QrgMYa3M,2017.0,6,10,2018,Trophy,They Become Like a Friend Scene,tt6333066\nwmEQUpu_zeA,2015.0,4,10,2018,Motivation 2: The Chris Cole Story,Skating Love Park Scene,tt4397414\nio8KUjovuYo,2015.0,10,10,2018,Motivation 2: The Chris Cole Story,Chris's Legacy Scene,tt4397414\nlZrD7xTi8Ss,2015.0,5,10,2018,Motivation 2: The Chris Cole Story,Chris Enters the Philly Scene,tt4397414\n5CrXuWBxVVk,2015.0,1,10,2018,Motivation 2: The Chris Cole Story,The Legend of Rodney Mullen Scene,tt4397414\nPnNS71ethmI,2015.0,8,10,2018,Motivation 2: The Chris Cole Story,The Most Brutal Grilling Scene,tt4397414\nddGbf6I8UH4,2015.0,2,10,2018,Motivation 2: The Chris Cole Story,The Demo Tapes Scene,tt4397414\nwUkrRABqkzg,2015.0,6,10,2018,Motivation 2: The Chris Cole Story,Jumping the Gap Scene,tt4397414\nOC6SxQVSMHo,2015.0,3,10,2018,Motivation 2: The Chris Cole Story,Meeting Your Heroes Scene,tt4397414\nlK8cWFLr5qE,2015.0,9,10,2018,Motivation 2: The Chris Cole Story,Shut Up and Skate Scene,tt4397414\nUW80kY7-HkY,2015.0,7,10,2018,Motivation 2: The Chris Cole Story,Meeting Bam Margera Scene,tt4397414\nKnI9MBbPCT8,2017.0,2,10,2018,Wonder Woman,War Comes to Themyscira Scene,tt0451279\nc2k_kuU84ro,2017.0,7,10,2018,Wonder Woman,Saving Veld Scene,tt0451279\nQnDgw7XXaOU,2017.0,3,10,2018,Wonder Woman,Typical Example of Your Sex Scene,tt0451279\npJCgeOAKXyg,2017.0,6,10,2018,Wonder Woman,No Man's Land Scene,tt0451279\n1-9573qxk5g,2017.0,5,10,2018,Wonder Woman,Alleyway Fight Scene,tt0451279\njEav9DdL4iI,2017.0,4,10,2018,Wonder Woman,Dress Shopping Scene,tt0451279\n_CuE3lto5XA,2017.0,9,10,2018,Wonder Woman,Steve Trevor's Sacrifice Scene,tt0451279\nCNuEnlaPuls,2017.0,1,10,2018,Wonder Woman,Diana's Training Scene,tt0451279\n0v74ANWBqv0,2017.0,10,10,2018,Wonder Woman,I Believe in Love Scene,tt0451279\nFNA0Ejpu22Y,2017.0,8,10,2018,Wonder Woman,How to Dance Scene,tt0451279\nTKpYtp4Io9U,2016.0,7,9,2018,The Legend of Tarzan,Tarzan vs. Mbonga Scene,tt0918940\nhwe32v3I7R0,2016.0,2,9,2018,The Legend of Tarzan,Capturing Tarzan Scene,tt0918940\nQYUhwlQe0IU,2016.0,9,9,2018,The Legend of Tarzan,The Future Belongs to Me Scene,tt0918940\n9ecrIMjE4GQ,2016.0,5,9,2018,The Legend of Tarzan,Hippo River Escape Scene,tt0918940\nE7mB8U4nCCU,2016.0,3,9,2018,The Legend of Tarzan,Train Fight Scene,tt0918940\nYz7PedIGC6A,2016.0,4,9,2018,The Legend of Tarzan,Battle with Akut Scene,tt0918940\nrTvJrOUuOTM,2016.0,8,9,2018,The Legend of Tarzan,Wildebeest Stampede Scene,tt0918940\nhIMv_pWXqFY,2016.0,1,9,2018,The Legend of Tarzan,Jane Meets Tarzan Scene,tt0918940\npXQjNz6Pyzo,2016.0,6,9,2018,The Legend of Tarzan,Rescuing Akut Scene,tt0918940\nueeK1V8j-WQ,2001.0,1,10,2018,Jason X,A Prisoner Named Jason Scene,tt0211443\niog7zMkTVmQ,2001.0,9,10,2018,Jason X,Uber Jason Scene,tt0211443\n4f7U_YO0fVc,2001.0,10,10,2018,Jason X,Jason's College Girl Weakness Scene,tt0211443\nK2zen737biU,2001.0,2,10,2018,Jason X,A Frozen Friday Scene,tt0211443\n285uHkPZOkE,2001.0,4,10,2018,Jason X,Jason Plays Deathmatch Scene,tt0211443\nm-5pPy7zuyc,2001.0,3,10,2018,Jason X,Face Freeze Death Scene,tt0211443\nSP8YbyZwVeQ,2001.0,8,10,2018,Jason X,Jason vs. Warrior Woman Android Scene,tt0211443\ngdkJ2WwMhAg,2001.0,5,10,2018,Jason X,Space Marines vs. Jason Scene,tt0211443\njBxvOT0p-1k,2001.0,6,10,2018,Jason X,He Just Wants His Machete Scene,tt0211443\nP9_EB2_tUGA,2001.0,7,10,2018,Jason X,A Bad Time to Lose it Scene,tt0211443\nsrpCm9gPmZI,2016.0,5,5,2018,Killing Hasselhoff,Crushing It (Dance Hoff) Scene,tt2967226\nUz8w8WHmWMI,2016.0,1,5,2018,Killing Hasselhoff,Child Actor in the VIP Scene,tt2967226\nlHxzWs9NcS0,2016.0,3,5,2018,Killing Hasselhoff,I'll Shoot the First White Dude Scene,tt2967226\n1didVrNjTpQ,2016.0,2,5,2018,Killing Hasselhoff,Homosexual Hitman Scene,tt2967226\nJSqbIAemGcs,2016.0,4,5,2018,Killing Hasselhoff,Killing Me Hoffly Scene,tt2967226\n4HOgujwklBY,2016.0,3,5,2018,Countdown,Punching Out of the Precinct Scene,tt4872162\nMVY7ci-BTI4,2016.0,1,5,2018,Countdown,Terrorist at WWE Match Scene,tt4872162\ntAHCa87P8YI,2016.0,2,5,2018,Countdown,Bikinis and Bullets Scene,tt4872162\ndcSalZZ5YjM,2016.0,5,5,2018,Countdown,Child Bomb Scene,tt4872162\njCSsP6ooQf8,2016.0,4,5,2018,Countdown,Perfect Timing Scene,tt4872162\nzoo3aMvQdMw,2016.0,3,5,2018,Interrogation,White Supremacist Bar Scene,tt4497338\nklpN-W3Z8Cw,2016.0,1,5,2018,Interrogation,5 Seconds to Reload Scene,tt4497338\n1cHRBd6l2UM,2016.0,5,5,2018,Interrogation,If These Walls Could Explode Scene,tt4497338\nQkKXJ82vfJU,2016.0,4,5,2018,Interrogation,Coked Up Nazi Knife Fight Scene,tt4497338\n6H6RGCBUcf4,2016.0,2,5,2018,Interrogation,Server Room Fight Scene,tt4497338\nsPlsA3_6hB8,2015.0,3,5,2018,12 Rounds 3: Lockdown,Hard Wired Scene,tt3957956\neuCWQcrBwPY,2015.0,1,5,2018,12 Rounds 3: Lockdown,Bullet Soaked Sedan Scene,tt3957956\n8PALGqaFoFI,2015.0,2,5,2018,12 Rounds 3: Lockdown,Firing Policy Scene,tt3957956\nAQpPxTYahZo,2015.0,4,5,2018,12 Rounds 3: Lockdown,Rookie Mistake Scene,tt3957956\nZdhLQ1toP9s,2015.0,5,5,2018,12 Rounds 3: Lockdown,I Don't Play Nice Scene,tt3957956\nC_06Kac9rpg,2017.0,8,10,2018,Pitch Perfect 3,Toxic Fight Scene,tt4765284\n2aKkSYvLvXk,2017.0,2,10,2018,Pitch Perfect 3,Riff-Off Scene,tt4765284\n3MhzaQnLhRY,2017.0,7,10,2018,Pitch Perfect 3,Meeting DJ Khaled Scene,tt4765284\nVPaFRrTJZ4U,2017.0,6,10,2018,Pitch Perfect 3,\"I Don't Like It, I Love It Scene\",tt4765284\n41BnkhKxWHA,2017.0,5,10,2018,Pitch Perfect 3,Destroying Khaled's Suite Scene,tt4765284\nfoV6LGohzBI,2017.0,10,10,2018,Pitch Perfect 3,Freedom! 90 Scene,tt4765284\n5x1FeyWYp9s,2017.0,4,10,2018,Pitch Perfect 3,Cheap Thrills Scene,tt4765284\nrxWQfQcLAUA,2017.0,3,10,2018,Pitch Perfect 3,Zombie Apocalypse Scene,tt4765284\ngDVyEzQNvhU,2017.0,9,10,2018,Pitch Perfect 3,Fat Amy Saves the Day Scene,tt4765284\nDyCfCl46JSE,2017.0,1,10,2018,Pitch Perfect 3,\"Sit Still, Look Pretty Scene\",tt4765284\nqsyYw2x1-js,2018.0,7,9,2018,Insidious: The Last Key,Hands Off My Little Girl Scene,tt5726086\nfKGjSXtCou4,2018.0,6,9,2018,Insidious: The Last Key,The Key Demon Scene,tt5726086\nXHuo5etrwvY,2018.0,4,9,2018,Insidious: The Last Key,Silent Scream Scene,tt5726086\nSTh780YGgIo,2018.0,9,9,2018,Insidious: The Last Key,The Red Faced Demon Scene,tt5726086\nddQe0gG79zk,2018.0,1,9,2018,Insidious: The Last Key,It's Right in Front of You Scene,tt5726086\n8pDCGWKvBlk,2018.0,2,9,2018,Insidious: The Last Key,The Chained Girl Scene,tt5726086\nQS8fJMeJqsQ,2018.0,8,9,2018,Insidious: The Last Key,Through the Red Door Scene,tt5726086\n5mcjt53aqlE,2018.0,3,9,2018,Insidious: The Last Key,Specs Runs For His Life Scene,tt5726086\nbp5HRI2hEW0,2018.0,5,9,2018,Insidious: The Last Key,The Suitcase Horror Scene,tt5726086\ngKJerAxfSzw,2018.0,10,10,2018,Proud Mary,The Mothering Type Scene,tt6421110\nvdMEu03CjTk,2018.0,4,10,2018,Proud Mary,Nail Gun Torture Scene,tt6421110\nIGFdF06VVF8,2018.0,8,10,2018,Proud Mary,Let Us Go Scene,tt6421110\n2k6F2WITgac,2018.0,6,10,2018,Proud Mary,I Just Wanted Us Back Scene,tt6421110\noyuHdD6ORAg,2018.0,9,10,2018,Proud Mary,Rollin' and Reloadin' on the River Scene,tt6421110\nDsMU1n2HUDo,2018.0,7,10,2018,Proud Mary,The Russian Mansion Raid Scene,tt6421110\nhwevrtap9AY,2018.0,3,10,2018,Proud Mary,\"Getting Fit, Getting Even Scene\",tt6421110\n_pH9HcBNO2I,2018.0,1,10,2018,Proud Mary,Danny's Hustle Scene,tt6421110\nfAiJAcgjWeQ,2018.0,5,10,2018,Proud Mary,A Nice Fit Scene,tt6421110\nC41s4A5Wq1Y,2018.0,2,10,2018,Proud Mary,A Visit From Mary Scene,tt6421110\ns2TbUio6uF0,2017.0,9,10,2018,Only the Brave,It Should've Been Me Scene,tt3829920\nnAbqTdINpOk,2017.0,3,10,2018,Only the Brave,The Water Drop Scene,tt3829920\nvAaBuA-ZeuI,2017.0,10,10,2018,Only the Brave,In Memorial Scene,tt3829920\n7p9YNPcOJ-4,2017.0,7,10,2018,Only the Brave,The Yarnell Hill Fire Scene,tt3829920\nOkZ0AKNb82c,2017.0,4,10,2018,Only the Brave,The Dragon Fire Scene,tt3829920\nBVAo7tAxtVw,2017.0,1,10,2018,Only the Brave,Trail of Hard Knocks Scene,tt3829920\naHoNp7pBeCA,2017.0,5,10,2018,Only the Brave,Saving the Heritage Tree Scene,tt3829920\nCre1DOpQFx8,2017.0,8,10,2018,Only the Brave,The Sacrifice of American Heroes Scene,tt3829920\nXG3hNDnidfk,2017.0,2,10,2018,Only the Brave,The Granite Mountain Hotshots Scene,tt3829920\nPIAvGkpGZXw,2017.0,6,10,2018,Only the Brave,Rattlesnake Bite Scene,tt3829920\nvVqCU0iWlFM,2016.0,3,11,2018,La La Land,You're Fired Scene,tt3783958\nDOmIpiTMs2w,2016.0,4,11,2018,La La Land,I Ran Scene,tt3783958\nSY40M1lhknY,2016.0,11,11,2018,La La Land,A Different Ending Scene,tt3783958\n7CVfTd-_qbc,2016.0,1,11,2018,La La Land,Another Day of Sun Scene,tt3783958\nlNFbbWOM5FU,2016.0,6,11,2018,La La Land,Dancing in the Stars Scene,tt3783958\nb65C_muXajk,2016.0,9,11,2018,La La Land,I'm Not Good Enough Scene,tt3783958\nRHz9rXVt3cQ,2016.0,8,11,2018,La La Land,This is Not Your Dream Scene,tt3783958\nFAmaskY8eXE,2016.0,10,11,2018,La La Land,Audition (The Fools Who Dream) Scene,tt3783958\nwSOMPH85zvQ,2016.0,7,11,2018,La La Land,City of Stars Scene,tt3783958\ncmkZeTX5fq0,2016.0,2,11,2018,La La Land,Someone in the Crowd Scene,tt3783958\n_8w9rOpV3gc,2016.0,5,11,2018,La La Land,A Lovely Night Scene,tt3783958\nM_7k0PCONF0,2017.0,5,9,2018,Wonder,The Not So Only Child Scene,tt0451279\nzJMCctR8ivc,2017.0,2,9,2018,Wonder,Two Things About Yourself Scene,tt0451279\nZoL1epfoq-g,2017.0,3,9,2018,Wonder,My First Friend Scene,tt0451279\n29VjYkPPY2s,2017.0,7,9,2018,Wonder,Jack Will's Redemption Scene,tt0451279\nceWNY5eNSWY,2017.0,1,9,2018,Wonder,School Tour Scene,tt0451279\nl2zrJ_LZrhg,2017.0,9,9,2018,Wonder,Seventh Graders Attack Scene,tt0451279\nvYH5urNq1Ao,2017.0,8,9,2018,Wonder,No Tolerance for Bullying Scene,tt0451279\nC0KLb_v50-k,2017.0,4,9,2018,Wonder,There Are No Nice People Scene,tt0451279\nAmCR7Owu6R8,2017.0,6,9,2018,Wonder,Miranda's Story Scene,tt0451279\nnbssDN3Y75Q,2017.0,6,10,2018,Ghost in the Shell,The Ghost is Yours Scene,tt1219827\nvOQ211AFtLU,2017.0,10,10,2018,Ghost in the Shell,Consent to Kill Scene,tt1219827\nbNFWITNVAKU,2017.0,3,10,2018,Ghost in the Shell,Data Jump Scene,tt1219827\nuPQcsSuWlB4,2017.0,4,10,2018,Ghost in the Shell,Strip Club Shootout Scene,tt1219827\nCt21N7taYlc,2017.0,5,10,2018,Ghost in the Shell,Invisible Chase Scene,tt1219827\nsB1jRg2iQsg,2017.0,9,10,2018,Ghost in the Shell,The Spider-Tank Scene,tt1219827\nfDcZoI_wy_w,2017.0,2,10,2018,Ghost in the Shell,The Jump Scene,tt1219827\nV9mx4UV8DNc,2017.0,7,10,2018,Ghost in the Shell,To Kill a Fox Scene,tt1219827\nOtjQUwKlR0U,2017.0,8,10,2018,Ghost in the Shell,The Truth About Us Scene,tt1219827\nCw9FQ_X-gP0,2017.0,1,10,2018,Ghost in the Shell,The Opening Scene,tt1219827\nHjQPsZjrgkY,2017.0,6,8,2018,Shadowman,No Market for Landscapes Scene,tt4966046\nmji8ZFst3ws,2017.0,7,8,2018,Shadowman,The Armani Show Scene,tt4966046\ntB7Ml4tO7d4,2017.0,5,8,2018,Shadowman,Warhol & Basquiat Scene,tt4966046\nUoNbV-qxEJE,2017.0,1,8,2018,Shadowman,Murder Paintings Scene,tt4966046\nAmYSeovvscE,2017.0,8,8,2018,Shadowman,I Was Alive When I Died Scene,tt4966046\ng0PEGEYvZd8,2017.0,2,8,2018,Shadowman,I Only Have Eyes for You Scene,tt4966046\nmce5xJi8uH8,2017.0,4,8,2018,Shadowman,Is That What's in My Lungs? Scene,tt4966046\nEaCGKhxR0P0,2017.0,3,8,2018,Shadowman,The Shadow People Scene,tt4966046\nMtRlOvoq9Ls,2017.0,8,10,2018,Transformers: The Last Knight,The Judgement is Death Scene,tt3371366\nMdoBOoR576Y,2017.0,3,10,2018,Transformers: The Last Knight,What's in That Pipe? Scene,tt3371366\nM2E0xzfvDMw,2017.0,2,10,2018,Transformers: The Last Knight,The Town Battle Scene,tt3371366\nKJtmyW2urUk,2017.0,1,10,2018,Transformers: The Last Knight,A One Robot Army Scene,tt3371366\nrbrIQjVNl0E,2017.0,7,10,2018,Transformers: The Last Knight,Bumblebee vs Nemesis Prime Scene,tt3371366\nOfnIw7Y8IUY,2017.0,5,10,2018,Transformers: The Last Knight,Undead Transformers Scene,tt3371366\n4g_oMoSgIas,2017.0,9,10,2018,Transformers: The Last Knight,Optimus Arrives Scene,tt3371366\nWS8Sc1nCi8U,2017.0,10,10,2018,Transformers: The Last Knight,Meet Your Maker Scene,tt3371366\nDGOews8SVLw,2017.0,6,10,2018,Transformers: The Last Knight,Robot Road Rage Scene,tt3371366\n2rSSxAdDhuU,2017.0,4,10,2018,Transformers: The Last Knight,Bumblebee Hates Nazis Scene,tt3371366\nX3nIJPj_7J0,2017.0,5,6,2018,Bad Lucky Goat,The Police Are Stupid Scene,tt6094944\n3s--5gsc4bs,2017.0,1,6,2018,Bad Lucky Goat,Speed Trap Scam Scene,tt6094944\nYn8ZE58MFEc,2017.0,2,6,2018,Bad Lucky Goat,Watch Out for the Goat! Scene,tt6094944\n5eNVHUxlR1Y,2017.0,3,6,2018,Bad Lucky Goat,The Butcher Scene,tt6094944\n-XuS9JQgu4M,2017.0,6,6,2018,Bad Lucky Goat,Collection Plate Heist Scene,tt6094944\nBuQKVYgI8S0,2017.0,4,6,2018,Bad Lucky Goat,\"Bottles, Shells and Goat Heads Scene\",tt6094944\nkvBiMHIuFbw,2017.0,3,8,2018,The White King,The Frunza Twins Scene,tt4211312\n6SAzrCAaFG8,2017.0,6,8,2018,The White King,Treasure or Tomb? Scene,tt4211312\noZVMUM4k29o,2017.0,7,8,2018,The White King,A Forgotten Dream Scene,tt4211312\noJAYU5a8zTs,2017.0,8,8,2018,The White King,A State Funeral Scene,tt4211312\n7Ecvvu9ovIU,2017.0,2,8,2018,The White King,Pull the Trigger Scene,tt4211312\ng50ARHr0mkA,2017.0,5,8,2018,The White King,The General's Mansion Scene,tt4211312\nacBlGJZCIiQ,2017.0,1,8,2018,The White King,Lowest Form of Scum Scene,tt4211312\nKM6fEMvPvqc,2017.0,4,8,2018,The White King,Battle Royale Scene,tt4211312\n9v-2_YOVxGw,2014.0,8,10,2018,Teenage Mutant Ninja Turtles,Elevator Freestyle Scene,tt1291150\nbY6jLt3owBQ,2016.0,1,10,2018,Teenage Mutant Ninja Turtles 2,Schoolgirl Spy Scene,tt3949660\nlh5IiK9eQhA,2016.0,2,10,2018,Teenage Mutant Ninja Turtles 2,Turtle Tactical Truck Scene   Movie,tt3949660\n_OrEOa0TYTY,2016.0,5,10,2018,Teenage Mutant Ninja Turtles 2,Casey Meets the Turtles Scene,tt3949660\nhITWJ6vE1os,2016.0,4,10,2018,Teenage Mutant Ninja Turtles 2,Saved by Casey Jones Scene,tt3949660\nCdVuOYKr2cQ,2016.0,6,10,2018,Teenage Mutant Ninja Turtles 2,NYPD Escape Scene,tt3949660\nnpkzgnKAgXU,2016.0,10,10,2018,Teenage Mutant Ninja Turtles 2,Fighting Krang Scene,tt3949660\nHkXGq2kJAlM,2016.0,9,10,2018,Teenage Mutant Ninja Turtles 2,Krang & The Technodrome Scene,tt3949660\nlKStI-3GHDc,2016.0,8,10,2018,Teenage Mutant Ninja Turtles 2,Mutant vs Mutant Scene,tt3949660\n4xg-5TeGvQY,2016.0,7,10,2018,Teenage Mutant Ninja Turtles 2,Turtles Can Fly Scene,tt3949660\n6MJJXdBz1q0,2016.0,3,10,2018,Teenage Mutant Ninja Turtles 2,Bebop & Rocksteady Scene,tt3949660\n-W_4EZvbrEI,2014.0,6,10,2018,Teenage Mutant Ninja Turtles,Snow Mountain Chase Scene,tt1291150\nOLZhL2R4cfg,2014.0,2,10,2018,Teenage Mutant Ninja Turtles,April Meets the Turtles Scene,tt1291150\nTKszvumsyFY,2014.0,9,10,2018,Teenage Mutant Ninja Turtles,Turtles Against Shredder Scene,tt1291150\nSWgcv5EwMgI,2014.0,1,10,2018,Teenage Mutant Ninja Turtles,Subway Ninja Attack Scene,tt1291150\nwKIL7__ybL0,2014.0,5,10,2018,Teenage Mutant Ninja Turtles,Raphael vs. Shredder Scene,tt1291150\n3gLxv0qizPY,2014.0,7,10,2018,Teenage Mutant Ninja Turtles,Give 'Em Shell Scene,tt1291150\nJ3Sl8B7RzUg,2014.0,10,10,2018,Teenage Mutant Ninja Turtles,Shredder's Downfall Scene,tt1291150\nZyirxKE2aFs,2014.0,4,10,2018,Teenage Mutant Ninja Turtles,Splinter vs. Shredder Scene,tt1291150\n1JHqVsXnQxQ,2014.0,3,10,2018,Teenage Mutant Ninja Turtles,Turtle Origin Story Scene,tt1291150\nKKsaYBeEr1w,2016.0,6,6,2018,The Teacher,Seducing a Single Parent Scene,tt5061162\nyadi1fTl4p0,2016.0,2,6,2018,The Teacher,Danke Schon Scene,tt5061162\nwcN3fX7oiSQ,2016.0,3,6,2018,The Teacher,Are You Threatening Me? Scene,tt5061162\n3K3KlDWq-qo,2016.0,1,6,2018,The Teacher,Know Your Limits Scene,tt5061162\n9KTEYDd0F7g,2016.0,4,6,2018,The Teacher,Suicide and Brutality Scene,tt5061162\nOEvu7pkH8o4,2016.0,5,6,2018,The Teacher,His Mother Betrayed Him Scene,tt5061162\nxmcpR-iaa7o,2016.0,7,8,2018,Apprentice,A Life of Mistakes Scene,tt5529680\nctB6OIa3Pz0,2016.0,2,8,2018,Apprentice,Learning the Ropes Scene,tt5529680\nj6kHHLVRPak,2016.0,1,8,2018,Apprentice,The Hangman Scene,tt5529680\nZiNx61K8QT8,2016.0,6,8,2018,Apprentice,Sins of the Father Scene,tt5529680\n2aTxwlSE2mw,2016.0,3,8,2018,Apprentice,Deadman's Family Scene,tt5529680\n8wMS2SCtVM4,2016.0,4,8,2018,Apprentice,Hanging Innocent Men Scene,tt5529680\nAfNCKS2a3nU,2016.0,5,8,2018,Apprentice,The First Hanging Scene,tt5529680\n2-qyN66Kr24,2016.0,8,8,2018,Apprentice,The First of Many Scene,tt5529680\n-0SHIbuEO3w,2017.0,3,10,2018,xXx: Return of Xander Cage,Jungle Skiing Scene,tt1293847\ndMri-2QuZtI,2016.0,4,5,2018,Conduct! Every Move Counts,Prophets of Composition Scene,tt3773378\nESgYnVVq9AY,2016.0,5,5,2018,Conduct! Every Move Counts,The Final Rehearsal Scene,tt3773378\nVDwI61e2_6I,2015.0,2,10,2018,Area 51,Breaking and Entering Scene,tt1519461\njh_EME9M-mg,2015.0,8,10,2018,Area 51,Alien Playroom Scene,tt1519461\nSy_thm1fviY,2015.0,5,10,2018,Area 51,Hidden in the Showers Scene,tt1519461\nduU5cdQtpSE,2015.0,4,10,2018,Area 51,Sneaking Onto the Base Scene,tt1519461\nGVqoyzJUzJk,2015.0,9,10,2018,Area 51,Hunted By Aliens Scene,tt1519461\nqj3TqaXp2Mg,2015.0,7,10,2018,Area 51,A Real UFO Scene,tt1519461\nQvVUxPcMZQE,2015.0,6,10,2018,Area 51,The Horrors in the Lab Scene,tt1519461\nyAo3144gBw4,2015.0,3,10,2018,Area 51,The Family Comes Home Scene,tt1519461\nKwfnVFtdn_E,2015.0,1,10,2018,Area 51,Disappearing Friend Scene,tt1519461\nICJi_nMcUQc,2015.0,10,10,2018,Area 51,Abducted Scene,tt1519461\nnXV8YHeJfOs,2017.0,9,10,2018,xXx: Return of Xander Cage,The Return of Darius Stone Scene,tt1293847\neAp8Vm19uQU,2017.0,2,10,2018,xXx: Return of Xander Cage,Board Meeting Bloodbath Scene,tt1293847\n9T7zP4Ui9VE,2017.0,1,10,2018,xXx: Return of Xander Cage,Soccer Soldier Scene,tt1293847\nPRk69Z74hPs,2017.0,6,10,2018,xXx: Return of Xander Cage,Ski-Bike Chase Scene,tt1293847\nr29P93wUiMg,2017.0,8,10,2018,xXx: Return of Xander Cage,Deadly Girls With Guns Scene,tt1293847\neg8WzaSrZpg,2017.0,7,10,2018,xXx: Return of Xander Cage,Cars vs. Fists Scene,tt1293847\nVdAC6kNpXeM,2017.0,10,10,2018,xXx: Return of Xander Cage,I Live for This Scene,tt1293847\nvq6ofw0hqkU,2017.0,4,10,2018,xXx: Return of Xander Cage,Grenade Roulette Scene,tt1293847\noS6AtbHHjSo,2017.0,5,10,2018,xXx: Return of Xander Cage,Motorbike Bar Fight,tt1293847\nM9C1xAQdSKk,2016.0,2,5,2018,Conduct! Every Move Counts,The Shape of Music Scene,tt3773378\nchCsCDHJZtY,2016.0,1,5,2018,Conduct! Every Move Counts,The Competition Roster Scene,tt3773378\npLXw-1RPsJs,2016.0,3,5,2018,Conduct! Every Move Counts,The Young Conductor Scene,tt3773378\n2pw_36yxgXI,2017.0,3,10,2018,Jumanji: Welcome to the Jungle,Learning to Pee Scene,tt2283362\nC0NVo07t9UI,2017.0,1,10,2018,Jumanji: Welcome to the Jungle,Choose Your Character Scene,tt2283362\niKduvC0uNs8,2017.0,10,10,2018,Jumanji: Welcome to the Jungle,Saving Jumanji Scene,tt2283362\nvhEOInyNr54,2017.0,9,10,2018,Jumanji: Welcome to the Jungle,I'm Into You Scene,tt2283362\nw5yJV_TKOWg,2017.0,7,10,2018,Jumanji: Welcome to the Jungle,\"Run, Fridge, Run Scene\",tt2283362\nV3Gnq8VFai4,2017.0,2,10,2018,Jumanji: Welcome to the Jungle,Motorcycle Assault Scene,tt2283362\nVx0MQxIFBW8,2017.0,5,10,2018,Jumanji: Welcome to the Jungle,Dance Fighting Scene,tt2283362\nIB7BvgXIKOs,2017.0,4,10,2018,Jumanji: Welcome to the Jungle,How to Be Sexy Scene,tt2283362\nrKh4muRk_s0,2017.0,6,10,2018,Jumanji: Welcome to the Jungle,Helicopter Rhino Chase Scene,tt2283362\n5YgMl4JQxKw,2017.0,8,10,2018,Jumanji: Welcome to the Jungle,CPR Excitement Scene,tt2283362\nbN7jTZKITG8,2016.0,3,10,2018,Swing State,Lobster & Flirtation Scene,tt5301544\nIXOq5goG2G0,2016.0,1,10,2018,Swing State,The Conservative Liberal Scene,tt5301544\nvTUM5grJwTE,2016.0,5,10,2018,Swing State,Interview with Dick Scene,tt5301544\n0w8oeXvLXOw,2016.0,7,8,2018,Suicide Squad,Diablo vs. Incubus Scene,tt1386697\nnCw-UbptqD4,2017.0,10,10,2018,F... the Prom,More Than Friends Scene,tt5612742\nS-2cloMm4Lk,2016.0,3,8,2018,Suicide Squad,Deadshot Frenzy Scene,tt1386697\n_bS2cHSqgnE,2016.0,1,8,2018,Suicide Squad,King and Queen of Crime Scene,tt1386697\nT2IZiCyLFmI,2016.0,4,8,2018,Suicide Squad,Office Building Battle Scene,tt1386697\ng5-KsABvVzU,2016.0,6,8,2018,Suicide Squad,The Villain Bar Scene,tt1386697\nwdcRrpMHIGM,2016.0,8,8,2018,Suicide Squad,Ending the Enchantress Scene,tt1386697\ngQATrdAXELg,2016.0,5,8,2018,Suicide Squad,Kill Harley Quinn Scene,tt1386697\nQ0IHL6WGFY0,2016.0,2,8,2018,Suicide Squad,A Visit From The Joker Scene,tt1386697\nBK9Rn_s8idI,2017.0,4,10,2018,F... the Prom,The Outcasts Scene,tt5612742\nPR1WWVvDs3s,2017.0,5,10,2018,F... the Prom,Guaranteed to Get Laid Scene,tt5612742\n-yMT2S8fJ9g,2017.0,3,10,2018,F... the Prom,Losers and Victims Scene,tt5612742\nMPY58gIH65M,2017.0,6,10,2018,F... the Prom,The Legend of Stuffs Scene,tt5612742\nM-LhdLDYOps,2017.0,9,10,2018,F... the Prom,Tighty Lives! Scene,tt5612742\nJfJSwQkRgbk,2017.0,7,10,2018,F... the Prom,Prom Sabotage Sabotaged Scene,tt5612742\nw0A-YZ0Yd2Q,2017.0,8,10,2018,F... the Prom,Prom Gets Carrie'd Away Scene,tt5612742\naF4SahLqcxw,2017.0,2,10,2018,F... the Prom,Bad Besties Scene,tt5612742\ncvuTnguNL8g,2017.0,1,10,2018,F... the Prom,The Beginning of the End Scene,tt5612742\nUTGEXJSxPvY,2016.0,8,10,2018,Swing State,Swing That Way Scene,tt5301544\naqTS6jAqmUA,2016.0,4,10,2018,Swing State,The Show Must Go On Scene,tt5301544\nEhyXopafOeA,2016.0,2,10,2018,Swing State,Liberal Crybabies Scene,tt5301544\nwyRpsUOH4f0,2016.0,9,10,2018,Swing State,Charles Must Die Scene,tt5301544\nBYQ0Q0oqYOA,2016.0,10,10,2018,Swing State,Right Wing Martyr Scene,tt5301544\nKtEzZuRX23M,2016.0,7,10,2018,Swing State,I'm Charles Fern Scene,tt5301544\ny3E0ot-4Egw,2016.0,6,10,2018,Swing State,Right-Wing Seduction Scene,tt5301544\n3wjBPKUDk_Y,2017.0,10,10,2018,Fits and Starts,I Don't Write For You Scene,tt4848010\n1spvdwcb7jg,2017.0,7,10,2018,Fits and Starts,Challenging Literature Scene,tt4848010\nUYhBmdQ0VWc,2017.0,3,10,2018,Fits and Starts,I Lost My Wife Scene,tt4848010\n-QGGk3M5S3c,2017.0,5,10,2018,Fits and Starts,Do You Like It? Scene,tt4848010\ntJwt-LcbRIw,2017.0,9,10,2018,Fits and Starts,\"Shave The Beard, Sell The Book Scene\",tt4848010\nxmbmcfVs1u4,2017.0,2,10,2018,Fits and Starts,Roadside Romance Scene,tt4848010\nAaF3SiD4IYM,2017.0,1,10,2018,Fits and Starts,The Wheelshare Incident Scene,tt4848010\nBpP_rFPFUPM,2017.0,4,10,2018,Fits and Starts,Bruce Wayne the Dentist Scene,tt4848010\nPSWftrnsEcU,2017.0,6,10,2018,Fits and Starts,A Real Firecracker Scene,tt4848010\n4l4OmZk59Gc,2017.0,8,10,2018,Fits and Starts,What's the Kinkiest Thing You've Done? Scene,tt4848010\nbPL9A5VyKrY,2014.0,2,10,2018,Harmontown,Spencer the Dungeon Master Scene,tt3518988\noP_Y5LgieXA,2014.0,8,10,2018,Harmontown,The Nerd King Scene,tt3518988\nmWB4xc6-Pdk,2014.0,6,10,2018,Harmontown,Moonshine Dan Scene,tt3518988\nX_7TJFVH3R4,2014.0,3,10,2018,Harmontown,Heat Vision and Jack Scene,tt3518988\n7X59lLfqm3c,2014.0,9,10,2018,Harmontown,The Creation of Community Scene,tt3518988\nwZ6Dlo8z04I,2014.0,1,10,2018,Harmontown,Who's Dan Harmon? Scene,tt3518988\nKu3KKPEi-Ag,2014.0,4,10,2018,Harmontown,A High Dungeon Master Scene,tt3518988\nwHgeI9HnroU,2014.0,5,10,2018,Harmontown,The Sarah Silverman Show Scene,tt3518988\niQPvgoJ5l2s,2014.0,10,10,2018,Harmontown,The Big Fight Scene,tt3518988\ncgGOnelqMi8,2014.0,7,10,2018,Harmontown,Pranking Chevy Chase Scene,tt3518988\nAUCbYHVFnf0,2015.0,1,10,2018,Toonstone,Matthew McCoughna-Horse Scene,tt1754767\n23zu-1Nsqg4,2013.0,8,9,2018,Coal Rush,Coal Killed Our Daughter Scene,tt1540115\nUz6jhOP_nm8,2013.0,2,9,2018,Coal Rush,Don't Apologize for Them Scene,tt1540115\nW08YzBOfqV8,2013.0,5,9,2018,Coal Rush,It's Starting to Burn Scene,tt1540115\nP-SVl6Ql7xU,2013.0,7,9,2018,Coal Rush,Blankenship's Deposition Scene,tt1540115\nCsfBuhXV2lA,2013.0,9,9,2018,Coal Rush,Massey Settles Scene,tt1540115\nKC2YLhHiXv4,2015.0,4,10,2018,Toonstone,Attempted Jailbreak Scene,tt1754767\nnyJ00UjcA0c,2015.0,6,10,2018,Toonstone,She Wants to Make Love To Ya Scene,tt1754767\naB5g_U4qo_Q,2015.0,3,10,2018,Toonstone,Gunslinging Practice Scene,tt1754767\nUxo5LmSDK34,2015.0,7,10,2018,Toonstone,Jawless & Lawless Scene,tt1754767\n7Mz5jmOePsk,2015.0,10,10,2018,Toonstone,Alien Attack Scene,tt1754767\nNO9Qt8NB7JQ,2015.0,2,10,2018,Toonstone,Deputy Horse Scene,tt1754767\nA9MNy__qBaQ,2015.0,8,10,2018,Toonstone,Horse Interruption Scene,tt1754767\nrBy7ZDob8a8,2015.0,9,10,2018,Toonstone,Gun vs. Apple Scene,tt1754767\nD4x3BaaJ2gY,2015.0,5,10,2018,Toonstone,Do Something Cool Scene,tt1754767\n91GNWPp-a38,2017.0,9,9,2018,Everything Beautiful Is Far Away,I Want a Body Scene,tt3605266\nT8qZ73IazvY,2017.0,4,9,2018,Everything Beautiful Is Far Away,Three's a Crowd Scene,tt3605266\nRi408Ie3zQs,2017.0,3,9,2018,Everything Beautiful Is Far Away,Someone New Scene,tt3605266\nvKT_HKcwxFY,2017.0,7,9,2018,Everything Beautiful Is Far Away,You'll Be Dead in 30 Seconds Scene,tt3605266\nHBYW2199vpo,2017.0,6,9,2018,Everything Beautiful Is Far Away,I Like You Scene,tt3605266\nwNuVF4lnszE,2017.0,5,9,2018,Everything Beautiful Is Far Away,Desert Fun Scene,tt3605266\nAGi49DPszHg,2017.0,8,9,2018,Everything Beautiful Is Far Away,The Crystal Lake Scene,tt3605266\nsnkc0SvbR4M,2017.0,1,9,2018,Everything Beautiful Is Far Away,Forbidden Fruit Scene,tt3605266\nsxyaSXAF5kI,2017.0,2,9,2018,Everything Beautiful Is Far Away,Susan the Robot Scene,tt3605266\nnL3o4MGY9NQ,2017.0,2,10,2018,Blade Runner 2049,Real Joi Scene,tt1856101\njUgr32wtqiM,2013.0,3,9,2018,Coal Rush,Perpetual Victims Scene,tt1540115\ncj8XKnVdCDs,2013.0,1,9,2018,Coal Rush,Bad Water Scene,tt1540115\nYZN59OZIz30,2013.0,4,9,2018,Coal Rush,Massey Energy v. the People Scene,tt1540115\nLSUPf57En54,2013.0,6,9,2018,Coal Rush,Slurry in the Stream Scene,tt1540115\nZjEnS3hA1B4,2017.0,3,10,2018,Blade Runner 2049,The Scrapyard Ambush Scene,tt1856101\neCvY-ualWwY,2017.0,9,10,2018,Blade Runner 2049,Luv's Goodbye Scene,tt1856101\nE_PIi8tRcCo,2017.0,4,10,2018,Blade Runner 2049,The Memory Maker Scene,tt1856101\nI4_AaEazcbk,2017.0,7,10,2018,Blade Runner 2049,They Found Us Scene,tt1856101\nlIbKD5ovjok,2017.0,5,10,2018,Blade Runner 2049,I Had to Kill You Scene,tt1856101\nPLgNzEctkO4,2017.0,10,10,2018,Blade Runner 2049,The Best Memories Are Hers Scene,tt1856101\nbbX5KM0tFVk,2017.0,1,10,2018,Blade Runner 2049,Sapper's Last Stand Scene,tt1856101\ntJya-fbl4R8,2017.0,6,10,2018,Blade Runner 2049,Finding Rick Deckard Scene,tt1856101\nBLSFQUjyBQo,2017.0,8,10,2018,Blade Runner 2049,K vs. Luv Scene,tt1856101\nYFIIcUg_C4I,2017.0,3,10,2018,The Emoji Movie,A Helping Hand Scene,tt4877122\nOIf1BFh8UwA,2017.0,4,10,2018,The Emoji Movie,Cheese & Hackers Scene,tt4877122\ncbH10o2VTXI,2017.0,1,10,2018,The Emoji Movie,Intro to Textopolis Scene,tt4877122\nnWwlcubR7s0,2017.0,7,10,2018,The Emoji Movie,Fireball and the Firewall Scene,tt4877122\njXIFh5Gwqno,2017.0,5,10,2018,The Emoji Movie,Candy Crush Scene,tt4877122\n-vvxRiJkXAs,2017.0,9,10,2018,The Emoji Movie,Smiler's Revenge Scene,tt4877122\n1Pk2FQUbnm0,2017.0,10,10,2018,The Emoji Movie,A New Face Scene,tt4877122\nxzBC35K-vug,2017.0,6,10,2018,The Emoji Movie,Just Dance Scene,tt4877122\nWEwS34zf8mk,2017.0,2,10,2018,The Emoji Movie,Making the Wrong Face Scene,tt4877122\nnYvvM0FXKWQ,2017.0,8,10,2018,The Emoji Movie,Birds Love Princesses Scene,tt4877122\nJVRdRQaccL0,2011.0,3,8,2018,Super 8,Gas Station Terror Scene,tt1650062\nDtuXEqWdWCI,2011.0,6,8,2018,Super 8,Tanks Invade the Neighborhood Scene,tt1650062\nu1MRGbWEI9M,2011.0,5,8,2018,Super 8,Allie is Abducted Scene,tt1650062\nfWgpZ_2oYfE,2011.0,1,8,2018,Super 8,Train Crash Scene,tt1650062\nKFzIZnYLKSo,2011.0,8,8,2018,Super 8,Final Goodbye Scene,tt1650062\nekSSp-zvdgk,2011.0,7,8,2018,Super 8,The Creature's Lair Scene,tt1650062\nn_3Fsg5qGfk,2011.0,2,8,2018,Super 8,He's Alive Scene,tt1650062\nDRGjkQ_iBL8,2011.0,4,8,2018,Super 8,My Father's Fault Scene,tt1650062\nulFxMs35-P0,2017.0,9,10,2018,The Dark Tower,The Dixie Pig Shootout Scene,tt1648190\nCtYTXG1RFQ0,2017.0,6,10,2018,The Dark Tower,Shoot With My Mind Scene,tt1648190\noIlpo2mj_qk,2017.0,7,10,2018,The Dark Tower,The Gunslinger's Creed Scene,tt1648190\nCn_70ds_Slw,2017.0,2,10,2018,The Dark Tower,Dutch Hill Mansion Demon Scene,tt1648190\nw0qfQaJtF2E,2017.0,10,10,2018,The Dark Tower,Roland vs. The Man in Black Scene,tt1648190\nvVmZO3W0I1A,2017.0,8,10,2018,The Dark Tower,Gunslinger in a Gun Store Scene,tt1648190\nR7vFG7jQZGY,2017.0,1,10,2018,The Dark Tower,The Face of My Father Scene,tt1648190\n5Cv1ENey4yU,2017.0,5,10,2018,The Dark Tower,The Taheen Attack Scene,tt1648190\ny1-gPBJ-C_U,2017.0,3,10,2018,The Dark Tower,Fire & Darkness Scene,tt1648190\nwWKQ2aOTfN0,2017.0,4,10,2018,The Dark Tower,Something Got Out Scene,tt1648190\nmQTPziHf9Qc,2017.0,5,12,2018,The Hitman's Bodyguard,Beauty & Violence Scene,tt1959563\n1mVk7wal9bk,2017.0,7,12,2018,The Hitman's Bodyguard,I Was Up Here Scene,tt1959563\nGh9kc9DiDnE,2017.0,12,12,2018,The Hitman's Bodyguard,You Shot My Bodyguard Scene,tt1959563\nISQMNhOd96w,2017.0,6,12,2018,The Hitman's Bodyguard,A Personal Touch Scene,tt1959563\nq7tLJC4pC14,2017.0,9,12,2018,The Hitman's Bodyguard,The Key to Torture Scene,tt1959563\nkTNDYiONld8,2017.0,8,12,2018,The Hitman's Bodyguard,Amsterdam Canal Chase Scene,tt1959563\nsohDA6TQuiE,2017.0,10,12,2018,The Hitman's Bodyguard,Construction Site Chase Scene,tt1959563\n9pF_vfzjbpY,2017.0,1,12,2018,The Hitman's Bodyguard,Convoy Hijacking Scene,tt1959563\nhX-ezXejcU0,2017.0,11,12,2018,The Hitman's Bodyguard,Unkillable Scene,tt1959563\nBCyz82L_61E,2017.0,2,12,2018,The Hitman's Bodyguard,Bodyguard vs. Hitman Fight Scene,tt1959563\nUlxZ06150xI,2017.0,4,12,2018,The Hitman's Bodyguard,A Perfectly Laid Plan Scene,tt1959563\niLJtz-2nkGk,2017.0,3,12,2018,The Hitman's Bodyguard,Subtle Violence Scene,tt1959563\nnbxAMHD0_dc,2015.0,2,10,2018,Alleluia! The Devil's Carnival,All Aboard Scene,tt3892618\n21rlL3oxEIY,2015.0,5,10,2018,Alleluia! The Devil's Carnival,Forbidden Fruit Scene,tt3892618\n6MIGRX1AVKo,2015.0,6,10,2018,Alleluia! The Devil's Carnival,Hitting on All Sevens Scene,tt3892618\nU5XIY-s43aQ,2015.0,7,10,2018,Alleluia! The Devil's Carnival,Fair Game Scene,tt3892618\niLH6Fzd2V94,2015.0,4,10,2018,CODE: Debugging the Gender Gap,Coding for Children Scene,tt4335520\n9lnovJPbLTc,2015.0,10,10,2018,CODE: Debugging the Gender Gap,Legacy & the Future Scene,tt4335520\ngqe-oAUoEto,2017.0,2,10,2018,The Glass Castle,Sink or Swim Scene,tt2378507\nzm9XOZXVyyU,2017.0,5,10,2018,The Glass Castle,Arm Wrestle for Your Honor Scene,tt2378507\nwcjCEUeC8nk,2017.0,1,10,2018,The Glass Castle,Hospital Breakout Scene,tt2378507\nH7tyPUAH1lo,2017.0,4,10,2018,The Glass Castle,You Can't Take Care of Us Scene,tt2378507\n7l79p5apaqQ,2017.0,8,10,2018,The Glass Castle,She's a Big Girl Scene,tt2378507\nB9r99FImuSc,2017.0,3,10,2018,The Glass Castle,The Nicest House in the County Scene,tt2378507\nj_3wS3OIgc8,2017.0,7,10,2018,The Glass Castle,Throw Mama Out the Window Scene,tt2378507\nqp-Jr4oEFWo,2017.0,9,10,2018,The Glass Castle,Never Want to See You Again Scene,tt2378507\nEd__PtLnaeo,2017.0,6,10,2018,The Glass Castle,Grandma's Rules Scene,tt2378507\nF70k-PX3p0o,2017.0,10,10,2018,The Glass Castle,A Lot to Regret in My Life Scene,tt2378507\nbTPrlCglvFo,2017.0,3,10,2018,My Little Pony: The Movie,I'm the Friend You Need Scene,tt4131800\nKxoJQx_MgAc,2017.0,9,10,2018,My Little Pony: The Movie,Friendship is Sacrifice Scene,tt4131800\nsH8nzHarprc,2017.0,2,10,2018,My Little Pony: The Movie,The Terror of Tempest Shadow Scene,tt4131800\nyaWmlDjvMs8,2017.0,8,10,2018,My Little Pony: The Movie,Battle Ponies Scene,tt4131800\nnSH_S3LDUYI,2017.0,10,10,2018,My Little Pony: The Movie,Rainbow Scene,tt4131800\nXEF8mU3Vanc,2017.0,5,10,2018,My Little Pony: The Movie,Seaponies Scene,tt4131800\nvhmFJKHhdw4,2017.0,7,10,2018,My Little Pony: The Movie,Open Up Your Eyes Scene,tt4131800\n7VOpGn2RTP4,2017.0,1,10,2018,My Little Pony: The Movie,We Got This Together Scene,tt4131800\nrsktGDtzKhg,2017.0,6,10,2018,My Little Pony: The Movie,One Small Thing Scene,tt4131800\n2gUFZCRHHvE,2017.0,4,10,2018,My Little Pony: The Movie,Time to Be Awesome Scene,tt4131800\nccgVkEP4hLs,2015.0,9,10,2018,Alleluia! The Devil's Carnival,Bells of the Black Sunday Scene,tt3892618\n1lVlP8o6t94,2015.0,10,10,2018,Alleluia! The Devil's Carnival,Hoof and Lap (Devil's Carnival) Scene,tt3892618\nql8RBlb-IJQ,2015.0,1,10,2018,Alleluia! The Devil's Carnival,Shovel & Bone Scene,tt3892618\nrvYoAzmAcAI,2015.0,4,10,2018,Alleluia! The Devil's Carnival,The Midnight Rectory Scene,tt3892618\neesYEZ3pp5Q,2015.0,3,10,2018,Alleluia! The Devil's Carnival,Good Little Dictation Machines Scene,tt3892618\nOzg8nU5yyWc,2015.0,8,10,2018,Alleluia! The Devil's Carnival,After the Fall Scene,tt3892618\nzDGDWdvLCrM,2015.0,5,10,2018,CODE: Debugging the Gender Gap,Black Girls Code Scene,tt4335520\nkE8qSUcrrmk,2015.0,2,10,2018,CODE: Debugging the Gender Gap,Female Pioneers in Programming Scene,tt4335520\n-c6nNzrAqs0,2015.0,3,10,2018,CODE: Debugging the Gender Gap,Code for Progress Scene,tt4335520\n-EZS68nXwHo,2015.0,7,10,2018,CODE: Debugging the Gender Gap,Origin of Computer Bug Scene,tt4335520\nYtprbvdApU4,2015.0,6,10,2018,CODE: Debugging the Gender Gap,You Are Not Your User Scene,tt4335520\nU4fHvCvrTjQ,2015.0,8,10,2018,CODE: Debugging the Gender Gap,Stereotype Threat Scene,tt4335520\n9w3jysNGqeA,2015.0,9,10,2018,CODE: Debugging the Gender Gap,Bullying in the Industry Scene,tt4335520\nqULQCbfqJm8,2015.0,1,10,2018,CODE: Debugging the Gender Gap,What is Coding? Scene,tt4335520\n9riBff-h-hM,2017.0,9,10,2017,Despicable Me 3,Bubblegum Rescue Scene,tt3469046\nP94mqkWtfxU,2017.0,8,10,2017,Despicable Me 3,The Brothers' Heist Scene,tt3469046\n_RG8hoGMxKw,2017.0,5,10,2017,Despicable Me 3,Minion Idol Scene,tt3469046\nm9Gg_VQP2zw,2017.0,10,10,2017,Despicable Me 3,Dance Fight Scene,tt3469046\nPs3MsEdfpAw,2017.0,1,10,2017,Despicable Me 3,Balthazar vs. Gru Scene,tt3469046\nyijQXDtxgic,2017.0,4,10,2017,Despicable Me 3,Was It Fluffy? Scene,tt3469046\nC0H2SnzitoM,2017.0,6,10,2017,Despicable Me 3,Minions in Jail Scene,tt3469046\n2tqG6KMgyv8,2017.0,7,10,2017,Despicable Me 3,Margo's Engagement Scene,tt3469046\nB5goHV7tFnE,2017.0,3,10,2017,Despicable Me 3,Gru and Dru Scene,tt3469046\nH9PmpwhBg8w,2017.0,2,10,2017,Despicable Me 3,A Minion Luau Scene,tt3469046\nJ4ZnYc3tNyw,2017.0,5,10,2017,Girls Trip,Swing Over Bourbon Street Scene,tt3564472\nwXDgyuxBuBU,2017.0,1,10,2017,Girls Trip,Inappropriate White Friend Scene,tt3564472\n193KvPnLO4I,2017.0,3,10,2017,Girls Trip,Lady Mouth Scene,tt3564472\nkxvkI8K7fTo,2017.0,2,10,2017,Girls Trip,Where The Sun Don't Shine Scene,tt3564472\nG8r48HzrYHE,2017.0,6,10,2017,Girls Trip,Grapefruiting Scene,tt3564472\nFbV4VCCk3Sc,2017.0,9,10,2017,Girls Trip,Dance Battle to Bar Fight Scene,tt3564472\nm0etOugqkPU,2017.0,8,10,2017,Girls Trip,Trippin in the Club Scene,tt3564472\nN_aPyfiVWEE,2017.0,7,10,2017,Girls Trip,How to Treat a Sausage Scene,tt3564472\nCYQXYJIN3Jw,2017.0,10,10,2017,Girls Trip,The Flossy Posse Breaks Up Scene,tt3564472\nh4lbn5nDXwY,2017.0,4,10,2017,Girls Trip,I Will End You Scene,tt3564472\nLQVzgO14oIU,2016.0,10,10,2017,Office Christmas Party,Too Fast and Furious Scene,tt1711525\nI3XgtCzF5UY,2016.0,6,10,2017,Office Christmas Party,Dating Troubles Scene,tt1711525\ny5_Q3HufngU,2016.0,7,10,2017,Office Christmas Party,Uber Mad Scene,tt1711525\nUUDv-oUehMU,2016.0,3,10,2017,Office Christmas Party,DJ vs. HR Scene,tt1711525\nsf1LMw0a95g,2016.0,2,10,2017,Office Christmas Party,Sibling Rivalry Scene,tt1711525\nCJGeUFtiJP0,2016.0,4,10,2017,Office Christmas Party,Crazy Pimp Scene,tt1711525\nj4OMpEp-bFk,2016.0,1,10,2017,Office Christmas Party,Christmas is Canceled Scene,tt1711525\ntgpGrfh6gM8,2016.0,5,10,2017,Office Christmas Party,Egg Nog Luge Scene,tt1711525\nOgqkqYeNbOM,2016.0,8,10,2017,Office Christmas Party,Shut Down Scene,tt1711525\nkm_nixuzb1A,2016.0,9,10,2017,Office Christmas Party,Members Only Scene,tt1711525\nw3hwZ-7CWeg,2017.0,4,10,2017,Rings,Samara's Grave Scene,tt0498381\no9-cFlOdXn8,2017.0,5,10,2017,Rings,Death of Professor Gabriel Scene,tt0498381\nYptUTTJjUVs,2017.0,3,10,2017,Rings,A New Tape Scene,tt0498381\n_qbp2nGRp1Q,2017.0,9,10,2017,Rings,May The Lord Save You Scene,tt0498381\ncwgaR1xDiyE,2017.0,8,10,2017,Rings,She Can't Hurt Me Scene,tt0498381\npN5RlyFWJBA,2017.0,10,10,2017,Rings,It's Never Over Scene,tt0498381\nQiT-jk74QMw,2017.0,7,10,2017,Rings,Samara's Father Scene,tt0498381\n_GJG2JDvCes,2017.0,2,10,2017,Rings,Fear the Flatscreen Scene,tt0498381\nPm_7ga5bxeI,2017.0,6,10,2017,Rings,Mother of a Ghost Scene,tt0498381\n-p4TkuB20bs,2017.0,1,10,2017,Rings,In-Flight Movie Scene,tt0498381\nvsU27J8K3Tw,2015.0,2,10,2017,Paranormal Activity: The Ghost Dimension,The Darkness Scene,tt2473510\niErVeElswus,2015.0,5,10,2017,Paranormal Activity: The Ghost Dimension,He's Gonna Take Me Away Scene,tt2473510\n4F_jLtYFT6Y,2015.0,9,10,2017,Paranormal Activity: The Ghost Dimension,Exorcism Gone Wrong Scene,tt2473510\ngBdbUMTXKIA,2015.0,7,10,2017,Paranormal Activity: The Ghost Dimension,The Portal Scene,tt2473510\nUgtSRZHvyWY,2015.0,1,10,2017,Paranormal Activity: The Ghost Dimension,Backyard Ghost Scene,tt2473510\nFPpYxPOjtsw,2015.0,10,10,2017,Paranormal Activity: The Ghost Dimension,Hi Toby Scene,tt2473510\nmAD2gJTRSbI,2015.0,3,10,2017,Paranormal Activity: The Ghost Dimension,The Demon Appears Scene,tt2473510\nKeiJDMd8loM,2015.0,6,10,2017,Paranormal Activity: The Ghost Dimension,Demon in the Kitchen Scene,tt2473510\nGUw4G1lDGYE,2015.0,4,10,2017,Paranormal Activity: The Ghost Dimension,They're Watching Us Scene,tt2473510\nv8kB6cqv8qM,2015.0,8,10,2017,Paranormal Activity: The Ghost Dimension,He Knows Scene,tt2473510\nLKrcDYvwV1Q,2016.0,2,10,2017,The Conjuring 2,The Crooked Man Scene,tt3065204\nTrx5K54MNp8,2016.0,6,10,2017,The Conjuring 2,Ghost in the Water Scene,tt3065204\nW8EhiYDVPEU,2016.0,3,10,2017,The Conjuring 2,I Come From the Grave Scene,tt3065204\npiYwvMvqXPg,2014.0,1,10,2017,Annabelle,While You Slept Scene,tt3322940\n8Qw1dYiaCto,2014.0,7,10,2017,Annabelle,No Dolls in Church Scene,tt3322940\naxWtCnuctw0,2014.0,3,10,2017,Annabelle,Rumble in the Darkness Scene,tt3322940\n_8hB8umrGlo,2014.0,6,10,2017,Annabelle,Trapped by a Demon Scene,tt3322940\n_2gI4vpq9fo,2014.0,2,10,2017,Annabelle,A Little Girl Ghost Scene,tt3322940\nEPj1eq1csm4,2014.0,9,10,2017,Annabelle,What Do You Want? Scene,tt3322940\nKTVlvs7mtkM,2014.0,8,10,2017,Annabelle,Have Mercy on Your Soul Scene,tt3322940\nGfUqvGxa6YE,2014.0,10,10,2017,Annabelle,My Sacrifice Scene,tt3322940\nNGkLen8TbHc,2014.0,4,10,2017,Annabelle,Devil on Your Back Scene,tt3322940\nCsn39S3c0kI,2014.0,5,10,2017,Annabelle,Baby in the Carriage Scene,tt3322940\nPg_mCxaEa10,2016.0,2,8,2017,The Nice Guys,Fistfight at the Party Scene,tt3799694\n7fxvOlQLJWo,2016.0,8,8,2017,The Nice Guys,The Year's Most Wanted Film Scene,tt3799694\n3snpAmY2xeE,2016.0,6,8,2017,The Nice Guys,Cold Coffee Scene,tt3799694\nXdp-MXh84BA,2016.0,3,8,2017,The Nice Guys,You Ain't Got Long to Live Scene,tt3799694\nbKWBb1_NJe8,2016.0,7,8,2017,The Nice Guys,Auto Show Shootout Scene,tt3799694\n-wBOjw_08o8,2016.0,1,8,2017,The Nice Guys,Messenger Service Scene,tt3799694\n1nwaifplKCI,2016.0,4,8,2017,The Nice Guys,Hotel Massacre Scene,tt3799694\nQQAd5xx0XHc,2016.0,5,8,2017,The Nice Guys,John Boy Attacks Scene,tt3799694\nAC9URVogG3g,2017.0,9,10,2017,Cult of Chucky,Andy vs. Chucky Scene,tt3280262\nuQR_i0ydJik,2017.0,2,10,2017,Cult of Chucky,I'm a Toy From the 80s Scene,tt3280262\nxD9G6rUq_5I,2017.0,5,10,2017,Cult of Chucky,Giving Mommy a Hand Scene,tt3280262\nJCo3QW-S310,2017.0,4,10,2017,Cult of Chucky,Hypno Horror Scene,tt3280262\nI4mtL3Zs0Zs,2017.0,6,10,2017,Cult of Chucky,New Playmates Scene,tt3280262\nwPmgfWpamb0,2017.0,10,10,2017,Cult of Chucky,Lover Reunion Scene,tt3280262\nUA1QG3_VoQ4,2017.0,8,10,2017,Cult of Chucky,Feminine Face Crusher Scene,tt3280262\nsHjCcVC1uR0,2017.0,3,10,2017,Cult of Chucky,Sometimes I Scare Myself Scene,tt3280262\nbdFo-WtjOmA,2017.0,1,10,2017,Cult of Chucky,Let's Play Scene,tt3280262\nv04j4-SBv9M,2017.0,7,10,2017,Cult of Chucky,Welcome to the Cult Scene,tt3280262\nPsRTAWDrNYo,2016.0,8,10,2017,Batman v Superman: Dawn of Justice,Your Doomsday Scene,tt2975590\nMWAMJWYNpK8,2016.0,4,10,2017,Batman v Superman: Dawn of Justice,Battle of the Titans Scene,tt2975590\ni5dTE5dgWOw,2016.0,2,10,2017,Batman v Superman: Dawn of Justice,Do You Bleed? Scene,tt2975590\n4GlXOOYL_5I,2016.0,1,10,2017,Batman v Superman: Dawn of Justice,The Knightmare Scene,tt2975590\nttEZ7b4Cf9w,2016.0,10,10,2017,Batman v Superman: Dawn of Justice,The Death of Superman Scene,tt2975590\nUeeK-Fgup9w,2016.0,5,10,2017,Batman v Superman: Dawn of Justice,Hero vs. Hero Scene,tt2975590\nXu0QBBxHZWs,2016.0,6,10,2017,Batman v Superman: Dawn of Justice,Martha Scene,tt2975590\n7HlSKPTYZhs,2016.0,3,10,2017,Batman v Superman: Dawn of Justice,Superman on Trial Scene,tt2975590\n4JE04So6OqU,2016.0,9,10,2017,Batman v Superman: Dawn of Justice,The Trinity Scene,tt2975590\nrRlfzy7Rxdo,2016.0,7,10,2017,Batman v Superman: Dawn of Justice,Warehouse Rescue Scene,tt2975590\nRmEZwxFSsWE,2015.0,6,10,2017,Daddy's Home,It's a Pony! Scene,tt1528854\nvk5Kr-zV8AE,2015.0,10,10,2017,Daddy's Home,New Dad on the Block Scene,tt1528854\nWrY9UuucSUs,2015.0,9,10,2017,Daddy's Home,Dancing Dads Scene,tt1528854\ntaf0MZ5VgDc,2015.0,3,10,2017,Daddy's Home,Skateboard Dad Scene,tt1528854\nvLw24Xr1zKo,2015.0,2,10,2017,Daddy's Home,Motorcycle Accident Scene,tt1528854\n3OFda9AT-U4,2015.0,5,10,2017,Daddy's Home,Bedtime Stories Scene,tt1528854\nvPYiq9JNq_c,2015.0,7,10,2017,Daddy's Home,Halfcourt Fail Scene,tt1528854\nIii55E60gfg,2015.0,1,10,2017,Daddy's Home,Cinnabons & Tumor Scene,tt1528854\nfPcbyFeefXs,2015.0,4,10,2017,Daddy's Home,Sperm Envy Scene,tt1528854\n6fJNyx7kI6w,2015.0,8,10,2017,Daddy's Home,Two Dads and a Bully Scene,tt1528854\nIMT0EqTWI6I,1984.0,2,9,2017,Supergirl,A Super Girl Scene,tt0088206\nJT_59yK4Gm4,1984.0,7,9,2017,Supergirl,Demon Storm Scene,tt0088206\n2IIA6TYZynQ,1984.0,1,9,2017,Supergirl,New Powers Scene,tt0088206\nZWe2pwIiWsk,1984.0,3,9,2017,Supergirl,Date Interrupted Scene,tt0088206\nEMKD4L6Peto,1984.0,5,9,2017,Supergirl,Enjoy Your Prison Scene,tt0088206\nf0-Ea9Ki7YU,1984.0,9,9,2017,Supergirl,The Final Battle Scene,tt0088206\nhzmZJcPlJlE,1984.0,8,9,2017,Supergirl,vs. Selena Scene,tt0088206\nVM8ViJw7uNs,1984.0,6,9,2017,Supergirl,The Phantom Zone Scene,tt0088206\n0zQAUQGwv4A,1984.0,4,9,2017,Supergirl,Linda is Alright Scene,tt0088206\nMkKO-Z_Sjm4,2014.0,2,10,2017,300: Rise of an Empire,The Birth of Xerxes Scene,tt1253863\nqMMl8NYzcNQ,2015.0,3,10,2017,Bad Roomies,Threesome Scene,tt3482062\nvDL4qARSaBA,2015.0,4,10,2017,Bad Roomies,I'm Not Leaving Scene,tt3482062\n5wcg-4j9CZ0,2017.0,4,10,2017,Atomic Blonde,Love with Delphine Scene,tt2406566\nrCUNazDU2mg,2017.0,7,10,2017,Atomic Blonde,Fasten Your Seatbelt Scene,tt2406566\nzNMpSVorNr0,2017.0,9,10,2017,Atomic Blonde,Truth and Lies Scene,tt2406566\niG5oSrAW9FQ,2017.0,8,10,2017,Atomic Blonde,This is the Game Scene,tt2406566\ngQO9bgOLhmg,2017.0,1,10,2017,Atomic Blonde,Car Escape Scene,tt2406566\nDxCjqhDD7X4,2017.0,2,10,2017,Atomic Blonde,Apartment Fight Scene,tt2406566\nq8-xQspXFag,2017.0,10,10,2017,Atomic Blonde,I Never Worked for You Scene,tt2406566\nVOk7mIZRPzI,2014.0,9,10,2017,300: Rise of an Empire,Surrender to Me Scene,tt1253863\n4-hiooEmi-I,2017.0,6,10,2017,Atomic Blonde,Hand to Hand Fight Scene,tt2406566\nxwjw5TFPKwA,2017.0,3,10,2017,Atomic Blonde,Movie Theater Fight Scene,tt2406566\nXarGS1AeEcE,2017.0,5,10,2017,Atomic Blonde,Savage Stairwell Fight Scene,tt2406566\nXDnXI6KXoeg,2014.0,6,10,2017,300: Rise of an Empire,The Ecstasy Scene,tt1253863\nsN16d6mhe-A,2014.0,5,10,2017,300: Rise of an Empire,Massacre Amid the Wreckage Scene,tt1253863\naex6V8aGvxY,2014.0,3,10,2017,300: Rise of an Empire,My Heart is Persian Scene,tt1253863\nVONBpGWaxL8,2014.0,8,10,2017,300: Rise of an Empire,Artemisia's Wrath Scene,tt1253863\nqbRoK8WhJQQ,2014.0,1,10,2017,300: Rise of an Empire,Shock Combat Scene,tt1253863\nVA6nnlleAb4,2014.0,4,10,2017,300: Rise of an Empire,First Battle at Sea Scene,tt1253863\nPHJisUS7KSg,2014.0,7,10,2017,300: Rise of an Empire,Ocean of Fire Scene,tt1253863\n-jtzzs0_bM4,2014.0,10,10,2017,300: Rise of an Empire,Spartan Rescue Scene,tt1253863\ntOeINWwKvoA,2017.0,7,10,2017,Keanu,Hulka in the Trunk Scene,tt4139124\n-s52VEAQmKc,2017.0,4,10,2017,Keanu,Getting to Know the Team Scene,tt4139124\nUkZVQNNzUAA,2017.0,2,10,2017,Keanu,17th Street Blips Scene,tt4139124\nI8gdjJYDJ4o,2017.0,9,10,2017,Keanu,Kitty Car Chase Scene,tt4139124\nHthNICfVKS0,2017.0,3,10,2017,Keanu,Tectonic and Shark Tank Meet Cheddar Scene,tt4139124\n2jHKPubCPDY,2017.0,5,10,2017,Keanu,We Killed 'Em Together Scene,tt4139124\nUc2sp69O0uU,2017.0,6,10,2017,Keanu,We Have Killed People Scene,tt4139124\n7qjZeHpcVtI,2017.0,8,10,2017,Keanu,Dealbreaker Scene,tt4139124\n7_G8cPqQwEM,2017.0,10,10,2017,Keanu,Undercover Scene,tt4139124\n1DgOAPBMXws,2017.0,1,10,2017,Keanu,Meeting  Scene,tt4139124\nv4X6u53WL0U,2015.0,3,10,2017,Minecraft: Into the Nether,Minecraft Competition Scene,tt10146586\nRwN3A9iBARI,2015.0,7,8,2017,Minecraft: Into the Nether,Why is Minecraft Popular? Scene,tt10146586\naBACy7VwhhA,2015.0,8,8,2017,Minecraft: Into the Nether,Microsoft's Minecraft Scene,tt10146586\nmtZ90MN57TE,2015.0,4,8,2017,Minecraft: Into the Nether,YouTube Celebrities Scene,tt10146586\nqLBpHZ9dUZk,2015.0,2,8,2017,Minecraft: Into the Nether,Minecraft Basics Scene,tt10146586\nRvZfy1w-M7g,2015.0,7,10,2017,Finders Keepers,Media Whirlwhind Scene,tt3534842\nGCdylltS-m8,2015.0,4,10,2017,Finders Keepers,Foot Fight Scene,tt3534842\neFs__fovQyk,2015.0,3,10,2017,Finders Keepers,The Plane Crash Scene,tt3534842\nZlFVmr9iJjc,2015.0,5,10,2017,Finders Keepers,Drug Addiction Scene,tt3534842\n56o2aefvmRA,2015.0,6,10,2017,Finders Keepers,Shannon's Big Break Scene,tt3534842\n5ArOFrHp9Lo,2015.0,2,10,2017,Finders Keepers,Foot in a Grill Scene,tt3534842\n9Ou3nVQc4V8,2015.0,1,8,2017,Minecraft: Into the Nether,Ali A Scene,tt10146586\nXPhVzIgYjhc,2015.0,8,10,2017,Finders Keepers,Judge Mathis Show Scene,tt3534842\nVAfaWTc3WlQ,2015.0,9,10,2017,Finders Keepers,What Happened to Reality? Scene,tt3534842\ns0rlNw_cXqI,2015.0,10,10,2017,Finders Keepers,Got My Life Back Scene,tt3534842\n43nQlnNaU-8,2015.0,1,10,2017,Finders Keepers,Mummified Leg Scene,tt3534842\nlsSC_8Aqums,2015.0,5,8,2017,Minecraft: Into the Nether,Minecraft Channels Scene,tt10146586\nhMCFlfCw0HA,2015.0,6,10,2017,Bad Roomies,We're Shrooming Scene,tt3482062\n0cWnOxMXOEo,2015.0,1,10,2017,Bad Roomies,The Perfect Roommate Scene,tt3482062\nYQJoemnpWaM,2015.0,8,10,2017,Bad Roomies,We're Having a Sleepover Scene,tt3482062\nIJIeGOw5bXk,2015.0,5,10,2017,Bad Roomies,Prank War Scene,tt3482062\nmN22-ZrX-tc,2015.0,2,10,2017,Bad Roomies,Don't Let Crazy Move In Scene,tt3482062\nM5mJMC_RpNc,2015.0,7,10,2017,Bad Roomies,The Gloves Are Off Scene,tt3482062\nGoqDlg4px4M,2015.0,9,10,2017,Bad Roomies,Unbridled Passion Scene,tt3482062\nfm12-rhW8cU,2015.0,6,8,2017,Minecraft: Into the Nether,Dealing with Celebrity Scene,tt10146586\nONBLhIZCtQU,2016.0,1,10,2017,Newtown,The Barden Family Scene,tt5278578\ntVBI-Fup8EI,2016.0,7,10,2017,Newtown,What To Do? Scene,tt5278578\npQ62TmdWnyI,2016.0,8,10,2017,Newtown,The Waiting Room Scene,tt5278578\nPPhGRj0W8e4,2015.0,10,10,2017,Bad Roomies,Knife Fight Scene,tt3482062\nwxiEJrmUlL0,2016.0,10,10,2017,Newtown,Someday Scene,tt5278578\nZ_7N4TS_AzA,2016.0,2,10,2017,Newtown,The Wheelers Scene,tt5278578\nayq1fVd6Qhk,2016.0,4,10,2017,Newtown,One of Many Scene,tt5278578\n1YsmGZIZG0U,2016.0,9,10,2017,Newtown,This Can't Be Scene,tt5278578\n2anI_i9YYf4,2016.0,3,10,2017,Newtown,The Hockleys Scene,tt5278578\nXocJyNxHsW0,2016.0,5,10,2017,Newtown,Living Next to Evil Scene,tt5278578\nPzjOxjO_LuI,2016.0,6,10,2017,Newtown,A Special Child Scene,tt5278578\nVkldXV8Pgi8,2017.0,2,10,2017,Spider Man: Homecoming,Damage Control Warehouse Scene,tt2250912\numcyzRBeJtE,2017.0,4,10,2017,Spider Man: Homecoming,A Poor Interrogation Scene,tt2250912\nPCn1uAs_0VQ,2017.0,9,10,2017,Spider Man: Homecoming,A Trapped Hero Scene,tt2250912\nr8-BFx3xFJ4,2017.0,1,10,2017,Spider Man: Homecoming,That Spider Guy Scene,tt2250912\ndR3cjXncoSk,2017.0,3,10,2017,Spider Man: Homecoming,Washington Monument Rescue Scene,tt2250912\nsR_tidD4M_8,2017.0,10,10,2017,Spider Man: Homecoming,Bringing Down The Vulture Scene,tt2250912\nfB5HTcFhCso,2017.0,6,10,2017,Spider Man: Homecoming,The Dad Talk Scene,tt2250912\nORrQKFliVLM,2017.0,5,10,2017,Spider Man: Homecoming,Ferry Fight Scene,tt2250912\n_sHXbqFJCr0,2017.0,8,10,2017,Spider Man: Homecoming,They Don't Care About Us Scene,tt2250912\ntu6FDI4JBDY,2017.0,7,10,2017,Spider Man: Homecoming,Shocker's Revenge Scene,tt2250912\nC0vM89y4088,2017.0,2,10,2017,Power Rangers,You Are Not Rangers Scene,tt3717490\nwa_9eIwrEK8,2017.0,7,10,2017,Power Rangers,The Destructive Goldar Scene,tt3717490\nopSAGkaqx6Y,2017.0,1,10,2017,Power Rangers,The Coins Chose You Scene,tt3717490\nYtqU_6Imito,2017.0,6,10,2017,Power Rangers,\"Go, Go, ! Scene\",tt3717490\nenNm82zd1Ho,2017.0,10,10,2017,Power Rangers,Megazord Fights Goldar Scene,tt3717490\njgk96izcJbw,2017.0,4,10,2017,Power Rangers,It's Morphin' Time Scene,tt3717490\nte2WMrdJ3yQ,2017.0,3,10,2017,Power Rangers,Rita Captures the Rangers Scene,tt3717490\nKdu22nQNZmQ,2017.0,8,10,2017,Power Rangers,Crush Them Scene,tt3717490\njojFdN-oysU,2017.0,9,10,2017,Power Rangers,The Mighty Megazord Scene,tt3717490\nV11YeYfaxv0,2017.0,5,10,2017,Power Rangers,Rangers vs. Putties Scene,tt3717490\nf03hKUGdtzY,2014.0,2,10,2017,One Direction: The Inside Story,The Beginning Scene,tt4005332\n06h5HJo7A6I,2014.0,8,10,2017,One Direction: The Inside Story,America's Favorite,tt4005332\nUwvIz7Vdhn0,2014.0,6,10,2017,One Direction: The Inside Story,Live While We're Young Scene,tt4005332\nKk3XhT9UJAM,2014.0,9,10,2017,One Direction: The Inside Story,This Is Us,tt4005332\noOhFc0F3jVw,2014.0,7,10,2017,One Direction: The Inside Story,Harry Styles & Taylor Swift Scene,tt4005332\nuHltDaQU1uc,2017.0,8,10,2017,Baby Driver,\"Song's Over, Baby Scene\",tt3890160\n6O554p-ovsI,2017.0,3,10,2017,Baby Driver,Songs for Debora Scene,tt3890160\nZFXOR2yoWCg,2017.0,5,10,2017,Baby Driver,Tequila Shootout Scene,tt3890160\nUFo40MSG5Ss,2017.0,7,10,2017,Baby Driver,\"Goodbye, Darling Scene\",tt3890160\n276AIPEK_JA,2017.0,6,10,2017,Baby Driver,A Robbery Habit Scene,tt3890160\niDnE3PV4YNc,2017.0,9,10,2017,Baby Driver,Told You to Run Scene,tt3890160\nHlsvFTNrKK8,2017.0,10,10,2017,Baby Driver,Baby vs. Buddy Scene,tt3890160\nPDnA3LOm-xY,2017.0,4,10,2017,Baby Driver,A Score for a Score Scene,tt3890160\nKVbBkEyaoT8,2017.0,2,10,2017,Baby Driver,Is He Slow? Scene,tt3890160\n_oLBVF_VYRM,2017.0,1,10,2017,Baby Driver,Blues Explosion Chase Scene,tt3890160\nbkLs-xLbpNY,2017.0,2,10,2017,Residente,No Such Thing as Pure Music Scene,tt6414866\n-r_EtRqgj_o,2017.0,8,10,2017,Residente,Our Own Culture Scene,tt6414866\nP-M4AnVnnyU,2017.0,6,10,2017,Residente,Where You Become a Princess Scene,tt6414866\n8KuNjb2xEoM,2017.0,5,10,2017,Residente,Rap Meets Chinese Opera Scene,tt6414866\nC3lLA69xOc0,2017.0,4,10,2017,Residente,Made Out of War Scene,tt6414866\nPK14gY9Gn-A,2017.0,10,10,2017,Residente,A Song for Puerto Rico Scene,tt6414866\nVB_ZrC1u74w,2017.0,9,10,2017,Residente,Feat. Lin Manuel Miranda Scene,tt6414866\nzm44ZmISCac,2017.0,3,10,2017,Residente,An Ignored Genocide Scene,tt6414866\npmU6-1I7eyQ,2017.0,1,10,2017,Residente,The Story of Rene Perez Scene,tt6414866\nxSM_nz6gKOI,2017.0,8,10,2017,John Wick: Chapter 2,Museum Fight Scene,tt4425200\n7-TZCEyok_o,2017.0,9,10,2017,John Wick: Chapter 2,Hall of Mirrors Scene,tt4425200\nCt-zGV4TgKY,2017.0,1,10,2017,John Wick: Chapter 2,With a Pencil Scene,tt4425200\nrsuNowyCF0c,2017.0,6,10,2017,John Wick: Chapter 2,Pencil Kill Scene,tt4425200\nPv70ImW-l3s,2017.0,5,10,2017,John Wick: Chapter 2,John vs. Cassian Scene,tt4425200\nqIalODmFrZk,2017.0,2,10,2017,John Wick: Chapter 2,Gun Shopping Scene,tt4425200\nCujcdaQpYWE,2017.0,7,10,2017,John Wick: Chapter 2,Subway Fight Scene,tt4425200\neVJhlVgr9lM,2017.0,4,10,2017,John Wick: Chapter 2,Catacombs Shootout Scene,tt4425200\n-xZKHX91z9I,2017.0,10,10,2017,John Wick: Chapter 2,Rule Breaker Scene,tt4425200\n0xSSnfRYBQY,2017.0,3,10,2017,John Wick: Chapter 2,Concert Fight Scene,tt4425200\nR66bHMRd6L4,2017.0,7,10,2017,Residente,The Shadow of Africa Scene,tt6414866\n6rvbWWlv_qY,2015.0,4,10,2017,Club Life,Date with a Model Scene,tt3038734\nKh60xjnuAhA,2015.0,5,10,2017,Club Life,Who's Using Who? Scene,tt3038734\nTgWu1QcM1Tg,2016.0,5,10,2017,Southbound,DIY Paramedic Scene,tt4935334\n2dPi-jM7Jzo,2016.0,4,10,2017,Southbound,Road Accident Scene,tt4935334\nPq9kAmZ3X_k,2016.0,6,10,2017,Southbound,I Don't Deserve This Scene,tt4935334\n31ZrzeS_ymg,2016.0,7,10,2017,Southbound,You Have to Leave Scene,tt4935334\n3uIw6INr36g,2016.0,8,10,2017,Southbound,Home Invasion Scene,tt4935334\nw4GgZsdpMDA,2016.0,9,10,2017,Southbound,What Do You Want? Scene,tt4935334\nJ8hfrE2LBSk,2016.0,10,10,2017,Southbound,We Told You to Run Scene,tt4935334\nWx98L_LssbI,2016.0,1,10,2017,Southbound,They've Come to Collect Scene,tt4935334\nQHcl5XE4XuM,2016.0,2,10,2017,Southbound,Mystery Meat Dinner Scene,tt4935334\nP7J3raOVLNU,2016.0,3,10,2017,Southbound,Cult Initiation Scene,tt4935334\nB493yqCgpZQ,2015.0,6,10,2017,Club Life,Bad Fathers Scene,tt3038734\n516x-cH_Cpk,2015.0,8,10,2017,Club Life,Somebody Help Scene,tt3038734\nlUyHKva8Wfg,2015.0,7,10,2017,Club Life,Ain't No Original Ideas Scene,tt3038734\ncmJRHlOcTVw,2015.0,2,10,2017,Club Life,The Model House Scene,tt3038734\n285xhqP7D_Q,2015.0,1,10,2017,Club Life,The Life of a Promoter Scene,tt3038734\n9cJ1ZWXeOXg,2015.0,9,10,2017,Club Life,Vice Bust Scene,tt3038734\nTvxfLhFGRzY,2015.0,10,10,2017,Club Life,A Complete Success Scene,tt3038734\nQwjfMOhKcTw,2015.0,3,10,2017,Club Life,How This Works Scene,tt3038734\n9ZmqIpTPFmM,2014.0,10,10,2017,One Direction: The Inside Story,Best Song Ever Scene,tt4005332\nv7Z3aLND9Xg,2014.0,1,10,2017,One Direction: The Inside Story,The Directioners Scene,tt4005332\nFq5yX9ENZh0,2014.0,3,10,2017,One Direction: The Inside Story,What Makes You Beautiful Scene,tt4005332\n9F5v795Cfo4,2014.0,4,10,2017,One Direction: The Inside Story,The BRIT Awards Scene,tt4005332\nFRvhNHgU6fI,2014.0,5,10,2017,One Direction: The Inside Story,Morals and Making Money Scene,tt4005332\nIYHAqyiQ2i4,2016.0,9,10,2017,Ghost Team,Paintball Escape Scene,tt5115546\nPcyonXZoHfQ,2016.0,3,10,2017,Ghost Team,Get Rid of Them Scene,tt5115546\ns_B1ul97bfE,2016.0,4,10,2017,Ghost Team,We Got a Face Scene,tt5115546\nDv-ibHmFlS8,2016.0,8,10,2017,Ghost Team,Meth Lab Scene,tt5115546\nqXu7Ts5FWqA,2016.0,7,10,2017,Ghost Team,Ghosts Making Meth Scene,tt5115546\nIr4wUoK_-c4,2016.0,1,10,2017,Ghost Team,Ouija Board Scene,tt5115546\nvMWCg4TNWIg,2016.0,2,10,2017,Ghost Team,Sucky Ghosts Scene,tt5115546\nJKbrP4cjzo8,2016.0,10,10,2017,Ghost Team,Daddy's Sorry Scene,tt5115546\n4w6WN2_l0wA,2016.0,5,10,2017,Ghost Team,You're All Gonna Die Scene,tt5115546\npwuNGRVWB9w,2016.0,6,10,2017,Ghost Team,Chasing the Ghost Scene,tt5115546\nVCLJGenGyB4,2017.0,4,10,2017,The Big Sick,You Can Go Now Scene,tt5462602\nQiK2W8YshS4,2017.0,10,10,2017,The Big Sick,Emily Returns Scene,tt5462602\nmbRL9NE5NXk,2017.0,3,10,2017,The Big Sick,Medically Induced Coma Scene,tt5462602\nocqy8r8rDI0,2017.0,2,10,2017,The Big Sick,I Can't Lose My Family Scene,tt5462602\nVpmnPgUwVO8,2017.0,5,10,2017,The Big Sick,Comedy Show Interrupted Scene,tt5462602\nuJ2RTDbq1IU,2017.0,1,10,2017,The Big Sick,Not Really Dating Scene,tt5462602\nvrluM6pe89w,2017.0,6,10,2017,The Big Sick,I Cheated on Her Scene,tt5462602\nNTTyF1mDtgw,2017.0,8,10,2017,The Big Sick,Fast Food Freakout Scene,tt5462602\nzsmP1h809F4,2017.0,7,10,2017,The Big Sick,You're Not My Son Scene,tt5462602\nIk8q8LDqWiE,2017.0,9,10,2017,The Big Sick,Not Leaving This Family Scene,tt5462602\nQHjr51lAne4,2016.0,10,10,2017,Moto 8: The Movie,Off-Road Mecca Scene,tt6231792\n5rVB1DFakzA,2015.0,2,10,2017,View From a Blue Moon,John's Story Scene,tt5199588\nlQLchoQRlZk,2015.0,9,10,2017,View From a Blue Moon,No Place Like Home Scene,tt5199588\nAe3HbC1X-_A,2015.0,4,10,2017,View From a Blue Moon,Airborne in Australia Scene,tt5199588\nmat5twjYjJ8,2015.0,1,10,2017,View From a Blue Moon,Young John Scene,tt5199588\n9fHiacvqXLY,2015.0,10,10,2017,View From a Blue Moon,Pipeline Scene,tt5199588\nzY2G4v0b5IU,2015.0,6,10,2017,View From a Blue Moon,Rio De Janeiro Scene,tt5199588\nih4MIVjS8yU,2015.0,5,10,2017,View From a Blue Moon,South Africa Surf Scene,tt5199588\ncscOz4NHIWY,2015.0,3,10,2017,View From a Blue Moon,My View of the World Scene,tt5199588\nGwowcP5KIIA,2015.0,8,10,2017,View From a Blue Moon,The Mother Continent Scene,tt5199588\n6U61OQAOe84,2015.0,7,10,2017,View From a Blue Moon,Because It Is There Scene,tt5199588\nToI9OHLE068,2016.0,5,10,2017,The Fourth Phase,Snowy Hills of Japan Scene,tt5226436\nuJ_dVRo08Sc,2016.0,4,10,2017,The Fourth Phase,Gods of Nature Scene,tt5226436\nD8gSV_8abXc,2016.0,8,10,2017,The Fourth Phase,Avalanche Scene,tt5226436\n2wN8f0ezRS8,2016.0,3,10,2017,The Fourth Phase,Hydrology and Sports Scene,tt5226436\nTLOD07LZw90,2016.0,6,10,2017,The Fourth Phase,Let the Fire Burn Scene,tt5226436\nfWRkpKq-9f0,2016.0,2,10,2017,The Fourth Phase,The Cycle We Ride Scene,tt5226436\n3N5u8TKtmfk,2016.0,7,10,2017,The Fourth Phase,\"I'm Scared, Finally Scene\",tt5226436\n64-EdvBcZYg,2016.0,1,10,2017,The Fourth Phase,We Build Jumps Scene,tt5226436\npNRl-3kZPzY,2016.0,9,10,2017,The Fourth Phase,Falling Over the Edge Scene,tt5226436\njNNX5a8ogr8,2016.0,10,10,2017,The Fourth Phase,The Process Scene,tt5226436\nftOTPUX7vss,2017.0,9,10,2017,Diamond Cartel,Cliffside Showdown Scene,tt2538778\ntuh3yZXagYE,2017.0,2,10,2017,Diamond Cartel,Schizophrenics and Narcotics Scene,tt2538778\nmPxP11XFKcw,2017.0,7,10,2017,Diamond Cartel,All Out War Scene,tt2538778\naYNntWtMi24,2017.0,10,10,2017,Diamond Cartel,Mission Completed Scene,tt2538778\ndyupZilayXY,2017.0,4,10,2017,Diamond Cartel,My Assassin Girlfriend Scene,tt2538778\na7dRLlirThw,2017.0,1,10,2017,Diamond Cartel,Lethal Lady Death Squad Scene,tt2538778\n0mRRULBvuj0,2017.0,6,10,2017,Diamond Cartel,The Boatkeeper Scene,tt2538778\ntStZuBeyeok,2017.0,8,10,2017,Diamond Cartel,The Way of the Drug Lords Scene,tt2538778\nJtgnLYdR2ec,2017.0,5,10,2017,Diamond Cartel,Minigun Car Chase Scene,tt2538778\nmMG-Op_PPEE,2017.0,3,10,2017,Diamond Cartel,Female Assassin School Scene,tt2538778\noUXKSovzDMw,2016.0,7,10,2017,Neruda,The Masterpiece Scene,tt4698584\niQrYqaPeMlc,2016.0,9,10,2017,Neruda,The Fugitive Scene,tt4698584\nmu9cObUl8Gg,2016.0,4,10,2017,Neruda,Man to Man Scene,tt4698584\nUIKJTZC53hY,2016.0,10,10,2017,Neruda,The Inspector's Journey Scene,tt4698584\nPDVyr--ODQs,2016.0,6,10,2017,Neruda,The Humble Servant Scene,tt4698584\nE-gwIn1O1pE,2016.0,3,10,2017,Neruda,This Is My Art Scene,tt4698584\n2r_EHD8QVYg,2016.0,8,10,2017,Neruda,The Enemy of the State Scene,tt4698584\noeKyva3fU1c,2016.0,5,10,2017,Neruda,The People's Poet Scene,tt4698584\n3oQd25IcII8,2016.0,1,10,2017,Neruda,The Dutch Wife Scene,tt4698584\nhgQC-VGKUHo,2016.0,2,10,2017,Neruda,He is Not a Traitor Scene,tt4698584\n0fAHVLBuwVU,2016.0,1,10,2017,Operator,Offensive Pseudo-Person Scene,tt4939066\nRo4xPHjRH8k,2016.0,5,10,2017,Operator,Emily vs. Emily Scene,tt4939066\nTy0O5WKbLkU,2016.0,7,10,2017,Operator,Abusive Caller Scene,tt4939066\n8rSdR6dU7KA,2016.0,2,10,2017,Operator,Welcome to Welltrix Scene,tt4939066\nKmnf2USgtiA,2016.0,8,10,2017,Operator,I Miss You Scene,tt4939066\nwPw9GesZAcw,2016.0,10,10,2017,Operator,Anything for You Scene,tt4939066\nSe3ZAXB8sU4,2016.0,4,10,2017,Operator,Emily Helps Beth Scene,tt4939066\nABYeVd_JWss,2016.0,9,10,2017,Operator,Nothing Stays the Same Scene,tt4939066\n9DmxaUyjKTk,2016.0,3,10,2017,Operator,Not Your Science Experiment Scene,tt4939066\nDDaR9vzYJWA,2016.0,6,10,2017,Operator,Jealous of Her Scene,tt4939066\n8PB5sU_QcUc,2017.0,8,10,2017,Carrie Pilby,Daddy to the Rescue Scene,tt2989524\nYzCruCXU8Xc,2017.0,9,10,2017,Carrie Pilby,An Honest Therapist Scene,tt2989524\n77DXn43fhVw,2017.0,6,10,2017,Carrie Pilby,Do One Thing For Me Scene,tt2989524\nTYCfoxmY_vg,2017.0,5,10,2017,Carrie Pilby,Difficulties of Being a Mistress Scene,tt2989524\nS_l6py_n6RM,2017.0,10,10,2017,Carrie Pilby,New Year's Eve Scene,tt2989524\nnqJIAz0C5Ig,2017.0,7,10,2017,Carrie Pilby,Grown Up Conversation Scene,tt2989524\nM6W-zjN_LYQ,2017.0,3,10,2017,Carrie Pilby,Rat Out a Cheater Scene,tt2989524\nBvS7NWvYZb0,2017.0,2,10,2017,Carrie Pilby,The Enlightened Professor Scene,tt2989524\nt9SNzY1Hq1k,2017.0,4,10,2017,Carrie Pilby,I Knew You Weren't a Virgin Scene,tt2989524\n0qzhcuRwBnY,2017.0,1,10,2017,Carrie Pilby,Flirty Chit-Chat Scene,tt2989524\n7tb3_GWTIaU,2016.0,10,10,2017,Hunter Gatherer,Follow Me Scene,tt3717316\noKW6UxOdICg,2016.0,8,10,2017,Hunter Gatherer,Everybody Dies Scene,tt3717316\nlKzUGYETlU4,2016.0,2,10,2017,Hunter Gatherer,The Other Man Scene,tt3717316\n7jXZpvSkCaM,2016.0,6,10,2017,Hunter Gatherer,It's Burning Scene,tt3717316\n-LfB7USrdis,2016.0,1,10,2017,Hunter Gatherer,The Power of Positivity Scene,tt3717316\n7n9xJpld-0s,2016.0,4,10,2017,Hunter Gatherer,Lab Rat Scene,tt3717316\nZnxMS3Nf6Ws,2016.0,7,10,2017,Hunter Gatherer,Losing Everything Scene,tt3717316\nZeuUMdNQTHQ,2016.0,5,10,2017,Hunter Gatherer,Visiting Santa Claus Scene,tt3717316\nkHAHQMb4Lmc,2016.0,3,10,2017,Hunter Gatherer,Are Those Panties? Scene,tt3717316\n97E7Kft_bno,2016.0,9,10,2017,Hunter Gatherer,Lesson Learned Scene,tt3717316\n9hNNrKNPGVo,2017.0,2,6,2017,Moka,Breaking & Entering Scene,tt5072406\nermD7PGA3Do,2017.0,1,6,2017,Moka,A Test Drive Scene,tt5072406\naiiJ0fBFjCQ,2017.0,3,6,2017,Moka,Swim Class Scene,tt5072406\n24B-_HU7NLs,2017.0,4,6,2017,Moka,An Impromptu Dinner Scene,tt5072406\nZdv1_Iimmgg,2017.0,5,6,2017,Moka,Unwanted Detour Scene,tt5072406\ntm_W36kWahM,2017.0,6,6,2017,Moka,You Killed My Son Scene,tt5072406\ng_C56llGC1E,2017.0,3,5,2017,Mad Tiger,Just Kotaro Scene,tt3911554\n4tMdFDBXDpk,2017.0,5,5,2017,Mad Tiger,The Last Show Scene,tt3911554\nWShQx7lNPi4,2017.0,1,5,2017,Mad Tiger,The History of Peelander-Z Scene,tt3911554\nrZyjko9lXo0,2017.0,4,5,2017,Mad Tiger,Killing My Art Scene,tt3911554\nHCRagorblVI,2017.0,2,5,2017,Mad Tiger,Red Says Goodbye Scene,tt3911554\naGE--b9ilhk,2017.0,4,6,2017,Glory,Retaliation Scene,tt7456468\n7SNohNGz_f0,2017.0,2,6,2017,Glory,A New Watch Scene,tt7456468\nwz0UlSqctTI,2017.0,1,6,2017,Glory,A Difficult Interview Scene,tt7456468\n97gMDmQV_es,2017.0,5,6,2017,Glory,Forced Confession Scene,tt7456468\nnvCEzZ3P_x8,2017.0,6,6,2017,Glory,A Good Job Scene,tt7456468\nKS1iOmeMGEU,2017.0,3,6,2017,Glory,Stolen  Scene,tt7456468\ngXVvoSa1xBg,2015.0,3,8,2017,Blush,Good Night Out Scene,tt5022872\n4iLKU2WRo4k,2017.0,2,8,2017,Afterimage,A Polish Citizen Scene,tt5186236\nKW7bMwCb2_4,2015.0,8,8,2017,Blush,Heartbreak Scene,tt5022872\nJdWS7JkUno8,2015.0,7,8,2017,Blush,Carried Away Scene,tt5022872\no71CfblYCqI,2015.0,2,8,2017,Blush,First Kiss Scene,tt5022872\ndIx1J8hHVkw,2015.0,4,8,2017,Blush,An Arab Boyfriend Scene,tt5022872\nArnlIuuyPJ0,2015.0,1,8,2017,Blush,Bongs and Boyfriends Scene,tt5022872\nrHYsSCKGZGo,2015.0,6,8,2017,Blush,Don't Be a Baby Scene,tt5022872\nfZMKMakjV_A,2015.0,5,8,2017,Blush,Our Duty Scene,tt5022872\n7eYTzvoxmk4,2017.0,6,8,2017,Afterimage,Artists Can Be Killed Scene,tt5186236\n_sMqmGJObDU,2017.0,3,8,2017,Afterimage,Art and Ideology Scene,tt5186236\ninMPeTx6hoA,2017.0,1,8,2017,Afterimage,The Professor Scene,tt5186236\nQHTbbfdmYuc,2017.0,7,8,2017,Afterimage,Banned from Art Scene,tt5186236\nYDBqQMQB_ls,2017.0,4,8,2017,Afterimage,Silencing Art Scene,tt5186236\npUtBYdlwUNA,2017.0,5,8,2017,Afterimage,Destroying the Art Scene,tt5186236\nmymHgUYBTfk,2017.0,8,8,2017,Afterimage,Always Loved You Scene,tt5186236\nhfXW-z1-aUY,2015.0,1,8,2017,I Am the Blues,The Juke Joint Scene,tt5120042\nqlk05SwGu10,2015.0,5,8,2017,I Am the Blues,Carol Fran and Emmitt Lee Scene,tt5120042\nlFzZCgFxUSc,2015.0,3,8,2017,I Am the Blues,The Blues Made Me Scene,tt5120042\nWDrQaK1i_9U,2015.0,7,8,2017,I Am the Blues,Racism on the Chitlin' Circuit Scene,tt5120042\nkJg9uBKvDZ4,2015.0,4,8,2017,I Am the Blues,The Real Blues Scene,tt5120042\nQx1wXZHymV8,2015.0,6,8,2017,I Am the Blues,The Fish Fry Scene,tt5120042\nfhCVsKgC12w,2015.0,2,8,2017,I Am the Blues,Songs of Yester-year Scene,tt5120042\n636QHxJvvjc,2015.0,8,8,2017,I Am the Blues,Back on Stage Scene,tt5120042\nMsUXCqHc8xE,2016.0,2,10,2017,Moto 8: The Movie,Broke My Neck in 3 Places,tt6231792\ngw4boF1v2YI,2016.0,5,10,2017,Moto 8: The Movie,Dangerboy Deegan Scene,tt6231792\n0xHPBlFPCwo,2016.0,8,10,2017,Moto 8: The Movie,The Sand Dunes of Idaho Scene,tt6231792\no00oxyBzsb4,2016.0,7,10,2017,Moto 8: The Movie,The California Hills Scene,tt6231792\nttjmXS4de4Y,2016.0,1,10,2017,Moto 8: The Movie,Ripping Through the Vineyards Scene,tt6231792\nVD-_YgrNOk4,2016.0,3,10,2017,Moto 8: The Movie,The Florida Tracks Scene,tt6231792\nE6T4nHj8afI,2016.0,4,10,2017,Moto 8: The Movie,Everything Pays Off Scene,tt6231792\nQ2P2WsgH6mQ,2016.0,6,10,2017,Moto 8: The Movie,Motocross Mini Me Scene,tt6231792\nT6P6Jyhmj6E,2016.0,9,10,2017,Moto 8: The Movie,A World of Snow and Ice Scene,tt6231792\nGGK2S2wy9sA,2016.0,2,10,2017,Christine,Bob Anderson Scene,tt4666726\nTgfJD9geSac,2016.0,8,10,2017,Christine,Mental Breakdown Scene,tt4666726\njakEl-SL35c,2016.0,7,10,2017,Christine,Grisly Stuff Scene,tt4666726\n31XcssmnGvM,2016.0,9,10,2017,Christine,Group Therapy Scene,tt4666726\nkidICVXLnRY,2016.0,3,10,2017,Christine,Make Your Stories Juicy Scene,tt4666726\nNXedF2XcFkA,2016.0,5,10,2017,Christine,I Feel Like Bob Woodward Scene,tt4666726\nMX7c3F1q8UQ,2016.0,4,10,2017,Christine,Apologize to Me Scene,tt4666726\nkNAO6eHuCjY,2016.0,6,10,2017,Christine,Funny Girl Scene,tt4666726\npoVn84doiN8,2016.0,10,10,2017,Christine,\"Yes, But Scene\",tt4666726\n5YEw7F6ri_0,2016.0,1,10,2017,Christine,\"If It Bleeds, It Leads Scene\",tt4666726\nwTLo8CdhxGs,2017.0,2,10,2017,Rough Night,Dance Routine Scene,tt4799050\ns9TKR7rSFfA,2017.0,6,10,2017,Rough Night,Jet Ski Accident Scene,tt4799050\nc0XTkj3PIWg,2017.0,7,10,2017,Rough Night,Seducing the Neighbors Scene,tt4799050\nFr6fIMIc_Jo,2017.0,10,10,2017,Rough Night,The Kiwi Song Scene,tt4799050\n05foBuX_brU,2017.0,9,10,2017,Rough Night,Tampon! Scene,tt4799050\n5NTDlhH174M,2017.0,5,10,2017,Rough Night,Horny Neighbors Scene,tt4799050\nfEwSNiZ3zn4,2017.0,8,10,2017,Rough Night,The Human Frentipede Scene,tt4799050\nra9UQb-OVqQ,2017.0,3,10,2017,Rough Night,Dead Stripper and Pizza Scene,tt4799050\nOnJAp2emJ4U,2017.0,4,10,2017,Rough Night,Hiding the Body Scene,tt4799050\nSwOfGb9QwTc,2017.0,1,10,2017,Rough Night,Doing Drugs Scene,tt4799050\n_yxKJaVk4kI,2017.0,5,10,2017,T2 Trainspotting,Diane the Lawyer Scene,tt2763304\nN35FsMxEmSc,2017.0,9,10,2017,T2 Trainspotting,You Robbed Us Scene,tt2763304\n3x0UxzeZBso,2017.0,10,10,2017,T2 Trainspotting,Begbie vs. Renton Scene,tt2763304\nI_X6zWElJdw,2017.0,2,10,2017,T2 Trainspotting,Be Addicted Scene,tt2763304\n2EQCpQbUrzI,2017.0,3,10,2017,T2 Trainspotting,No More Catholics Scene,tt2763304\nlQhQeus0ItY,2017.0,4,10,2017,T2 Trainspotting,Begbie's Son Scene,tt2763304\neKCkxzJFP5M,2017.0,7,10,2017,T2 Trainspotting,Tommy's Memorial Scene,tt2763304\ncvNjYmDiV0Y,2017.0,1,10,2017,T2 Trainspotting,Saving Spud Scene,tt2763304\nfBNzgfFkvEo,2017.0,8,10,2017,T2 Trainspotting,Begbie Chases Renton Scene,tt2763304\nahxDiseuAak,2017.0,6,10,2017,T2 Trainspotting,Choose Life Scene,tt2763304\nF6dN5Kq5NZ8,2015.0,8,10,2017,Nasty Baby,The Last Straw Scene,tt3121332\nJIkmOqrneTU,2015.0,1,10,2017,Nasty Baby,Bad Results Scene,tt3121332\n9SYhu10qJ-o,2015.0,10,10,2017,Nasty Baby,We Can't Call the Cops Scene,tt3121332\naiWJhEMskMU,2015.0,2,10,2017,Nasty Baby,Meeting the Bishop Scene,tt3121332\nYqRwOf0XHUg,2015.0,5,10,2017,Nasty Baby,A Menace to the Neighborhood Scene,tt3121332\nyQ7JLXkHq2M,2015.0,6,10,2017,Nasty Baby,Normal in New York Scene,tt3121332\n5W60oPaZOIc,2015.0,9,10,2017,Nasty Baby,What Did I Do? Scene,tt3121332\nEntbO16GpNA,2015.0,3,10,2017,Nasty Baby,You're Pretty Scene,tt3121332\nw7DIFgkIh4o,2015.0,4,10,2017,Nasty Baby,Stink Bomb Scene,tt3121332\nVDGE0RPwLH4,2015.0,7,10,2017,Nasty Baby,Our Child's Conception Scene,tt3121332\nDUYaGj7RBfk,2015.0,10,10,2017,What We Do in the Shadows,Stu Lives Scene,tt3416742\nIae-A9s8Nk4,2015.0,4,10,2017,What We Do in the Shadows,Not Eating Stu Scene,tt3416742\ncWKL1gFCS54,2015.0,1,10,2017,What We Do in the Shadows,Flat Meeting Scene,tt3416742\nCaIXZsmUl4I,2015.0,8,10,2017,What We Do in the Shadows,Party Fight Scene,tt3416742\nqL_XE00jzXM,2015.0,6,10,2017,What We Do in the Shadows,Nothing to See Here Scene,tt3416742\ne1BdvP4zenI,2015.0,7,10,2017,What We Do in the Shadows,Get Stu Out of Here Scene,tt3416742\nYr3YqpkoN_o,2015.0,5,10,2017,What We Do in the Shadows,Bat Fight Scene,tt3416742\nqQJmr9kI9uw,2015.0,9,10,2017,What We Do in the Shadows,Werewolves Unchained Scene,tt3416742\nRAqYpOzllmM,2015.0,2,10,2017,What We Do in the Shadows,Basghetti Dinner Scene,tt3416742\nrF9Z6Hvmf5M,2015.0,3,10,2017,What We Do in the Shadows,\"Werewolves, Not Swear Wolves Scene\",tt3416742\nFRSfDQyoav8,2017.0,6,10,2017,Resident Evil: The Final Chapter,Martial Arts and Zombies Scene,tt2592614\nILwJA2feDRs,2017.0,2,10,2017,Resident Evil: The Final Chapter,Roadblock Scene,tt2592614\nz2PH2-yl5Ho,2017.0,4,10,2017,Resident Evil: The Final Chapter,Defense Fortress Scene,tt2592614\nRDBywHkU6Wg,2017.0,7,10,2017,Resident Evil: The Final Chapter,The Turbine Scene,tt2592614\neGLC0vhemeA,2017.0,10,10,2017,Resident Evil: The Final Chapter,Laser Corridor Confrontation Scene,tt2592614\nO7z6rV8Gdbs,2017.0,3,10,2017,Resident Evil: The Final Chapter,Zombie Convoy Escape Scene,tt2592614\n0mPTGVoG248,2017.0,1,10,2017,Resident Evil: The Final Chapter,Winged Demon Scene,tt2592614\nelcYyXvJF7U,2017.0,9,10,2017,Resident Evil: The Final Chapter,Laser System Reactivated Scene,tt2592614\nEXUzqVIocHI,2017.0,5,10,2017,Resident Evil: The Final Chapter,Tower Inferno Scene,tt2592614\nOpAEdqIIWpY,2017.0,8,10,2017,Resident Evil: The Final Chapter,The Bioweapon Scene,tt2592614\nKSZN8iThGZ8,2017.0,8,10,2017,Life,I Trust You Scene,tt5442430\nXaI13YBdi_M,2017.0,6,10,2017,Life,On the Hunt Scene,tt5442430\nr3fnCEjvPCQ,2017.0,2,10,2017,Life,Alien Handshake Scene,tt5442430\niwGU5hY6stw,2017.0,9,10,2017,Life,Face to Face Scene,tt5442430\niPgcg3DVoUY,2017.0,7,10,2017,Life,No Rescue Scene,tt5442430\nm-PsCZ_57MY,2017.0,3,10,2017,Life,Calvin Comes Out Scene,tt5442430\nzfUzaYV1xfE,2017.0,5,10,2017,Life,He Has to Kill Us Scene,tt5442430\nV022pMeqRjA,2017.0,10,10,2017,Life,Escape to Earth Scene,tt5442430\nViF6HrzoOj4,2017.0,4,10,2017,Life,Keeping Calvin Out Scene,tt5442430\n_SdYxgbXnHs,2017.0,1,10,2017,Life,Extraterrestrial  Scene,tt5442430\n32QcvEuJYFA,2016.0,2,10,2017,Hunt for the Wilderpeople,Auntie's Funeral Scene,tt4698684\nQfATkY6jMtM,2016.0,4,10,2017,Hunt for the Wilderpeople,Just Got Real Scene,tt4698684\nav2VWuMUFCM,2016.0,7,10,2017,Hunt for the Wilderpeople,Psycho Sam the Bush-man Scene,tt4698684\n_s3bHABazDA,2016.0,1,10,2017,Hunt for the Wilderpeople,Ricky's Birthday Scene,tt4698684\njirWCRbgK8E,2016.0,6,10,2017,Hunt for the Wilderpeople,What Would Uncle Do? Scene,tt4698684\nTr_OzL7mupk,2016.0,3,10,2017,Hunt for the Wilderpeople,Reading's Stupid Scene,tt4698684\n8AXEzcuMQp4,2016.0,5,10,2017,Hunt for the Wilderpeople,The Famous Ricky Baker Scene,tt4698684\nWyBvHGU-djg,2016.0,10,10,2017,Hunt for the Wilderpeople,You Shot Me! Scene,tt4698684\nqTANCNgUW2Q,2016.0,9,10,2017,Hunt for the Wilderpeople,The Skux Life Chose Me Scene,tt4698684\nie6rKW_Giqc,2016.0,8,10,2017,Hunt for the Wilderpeople,Make Our Escape Scene,tt4698684\n5UOJUZhe85M,2016.0,2,10,2017,\"Life, Animated\",He's Still in There Scene,tt3917210\nfpOQzt9NtX4,2016.0,3,10,2017,\"Life, Animated\",Speaking in Disney Scene,tt3917210\nBNgJCuwM7CQ,2016.0,7,10,2017,\"Life, Animated\",Owen's Apartment Scene,tt3917210\nxchco5BLMQU,2016.0,8,10,2017,\"Life, Animated\",Pain and Tragedy Scene,tt3917210\n7oOKwZlj4VE,2016.0,4,10,2017,\"Life, Animated\",Emily Scene,tt3917210\n9WKilpdUoWQ,2016.0,6,10,2017,\"Life, Animated\",Protector of the Sidekicks Scene,tt3917210\n9UslcBJkmyc,2016.0,1,10,2017,\"Life, Animated\",Owen Vanishes Scene,tt3917210\n0vI1R3VEREQ,2016.0,5,10,2017,\"Life, Animated\",Meeting Gilbert Gottfried Scene,tt3917210\nMf0pWnkN_vc,2016.0,9,10,2017,\"Life, Animated\",Owen's Speech Scene,tt3917210\nwZj44nizNJ0,2016.0,10,10,2017,\"Life, Animated\",Moving Forward Scene,tt3917210\nccH057kbWTg,2017.0,9,10,2017,Smurfs: The Lost Village,Mourning a Friend Scene,tt2398241\nWG_LG1CfsCE,2017.0,3,10,2017,Smurfs: The Lost Village,What Are You Hiding?,tt2398241\n-U9v7Nz6hOs,2017.0,2,10,2017,Smurfs: The Lost Village,Branch-Boarding Scene,tt2398241\nxmzkZ12GMAs,2016.0,9,10,2017,Don't Breathe,Trapped in a Car Scene,tt4160708\npZRDwBXv7T0,2016.0,4,10,2017,Don't Breathe,Lights Out Scene,tt4160708\nuUEpwPiiGco,2016.0,10,10,2017,Don't Breathe,Rocky's Revenge Scene,tt4160708\n54x4n4FlV4U,2016.0,7,10,2017,Don't Breathe,A Fair Exchange Scene,tt4160708\nPB-KpT4zhWo,2016.0,1,10,2017,Don't Breathe,Robbery Gone Wrong Scene,tt4160708\ngsG8sEK2md8,2016.0,2,10,2017,Don't Breathe,The Secret in the Basement Scene,tt4160708\nVfi1V_SL9H8,2016.0,6,10,2017,Don't Breathe,A Thief's End Scene,tt4160708\nyk73thpx_B8,2016.0,5,10,2017,Don't Breathe,A Way Out Scene,tt4160708\nQO0gZrQw9KU,2016.0,8,10,2017,Don't Breathe,The Turkey Baster Scene,tt4160708\n8le-4mOgJco,2016.0,3,10,2017,Don't Breathe,Blind Man with a Gun Scene,tt4160708\npmqBmTWq420,2017.0,7,10,2017,Smurfs: The Lost Village,Can't Escape Your Evil Destiny Scene,tt2398241\nVGhUlUHKv7s,2017.0,4,10,2017,Smurfs: The Lost Village,The Great Escape Scene,tt2398241\n9IYFHAnqOKM,2017.0,5,10,2017,Smurfs: The Lost Village,You're a Girl Scene,tt2398241\nFjT4_Bi-F0I,2017.0,1,10,2017,Smurfs: The Lost Village,What is a Smurfette? Scene,tt2398241\n2rFXR3_DeMU,2017.0,6,10,2017,Smurfs: The Lost Village,Smurfy Grove Hospitality Scene,tt2398241\ndcCsAQTY9lQ,2017.0,10,10,2017,Smurfs: The Lost Village,I'm a Lady Scene,tt2398241\n9MhRoo23Wak,2017.0,8,10,2017,Smurfs: The Lost Village,The Power of Smurfette Scene,tt2398241\nQft-ZvHFfmE,1979.0,9,11,2017,Phantasm,Inter-dimensional Portal Scene,tt0079714\nH_xWhF2sSb0,1979.0,1,11,2017,Phantasm,The Fortuneteller Scene,tt0079714\nQjEfREkwJe0,1979.0,5,11,2017,Phantasm,Giant Monster Fly Scene,tt0079714\nzpSLlRt7KGE,1979.0,10,11,2017,Phantasm,Victory Over the Tall Man Scene,tt0079714\nNONRLC7wAlM,1979.0,3,11,2017,Phantasm,The Tall Man Scene,tt0079714\n9d30_Y2bF64,1979.0,4,11,2017,Phantasm,Flying Death Sphere Scene,tt0079714\ny04Q-2-ut0I,1979.0,2,11,2017,Phantasm,Hot as Love Scene,tt0079714\nbm3QkHapg3Q,1979.0,11,11,2017,Phantasm,Boy! Scene,tt0079714\nE3lprGIkEic,1979.0,8,11,2017,Phantasm,Demonic Dwarves Scene,tt0079714\nPj5ds2Q_tJg,1979.0,7,11,2017,Phantasm,Who's Driving the Car? Scene,tt0079714\n07KUTJpbNAQ,1979.0,6,11,2017,Phantasm,Deadly Dwarf in the Basement Scene,tt0079714\nxgkspBFxLi4,1992.0,11,11,2017,Once Upon a Crime,The Killers Are Revealed Scene,tt0101625\nfCNsIYsWjXo,1992.0,1,11,2017,Once Upon a Crime,I Smell Big Reward Scene,tt0101625\n3WfRT1c7Tz0,1992.0,7,11,2017,Once Upon a Crime,\"Sir, Your Suitcase! Scene\",tt0101625\nEYKOpaD_s1U,1992.0,4,11,2017,Once Upon a Crime,You're Jinxing Me Scene,tt0101625\nwn-e7FlYRJU,1992.0,9,11,2017,Once Upon a Crime,You Got Nothing on Us Scene,tt0101625\nI_TkNxwnJiY,1992.0,6,11,2017,Once Upon a Crime,\"Don't Shoot, I'm an Actor! Scene\",tt0101625\nfxBoqr7OicA,1992.0,8,11,2017,Once Upon a Crime,Phoebe Under Arrest Scene,tt0101625\nzmdsY7PIJDg,1992.0,10,11,2017,Once Upon a Crime,Between One and One Thirty Scene,tt0101625\n6ZgWwouKUXg,1992.0,2,11,2017,Once Upon a Crime,The Only Way to Win in a Casino Scene,tt0101625\nVCvOWhT1TiA,1992.0,5,11,2017,Once Upon a Crime,Augie's Gambling Relapse Scene,tt0101625\ncGd2BBjzb0Y,1992.0,3,11,2017,Once Upon a Crime,Are You Finnish? Scene,tt0101625\nE2WZXK79_d0,2005.0,3,8,2017,Zathura,The Stranded Astronaut Scene,tt0406375\nWM3TedgbwIc,2005.0,2,8,2017,Zathura,Cryonic Sleeping Sister Scene,tt0406375\nUfv54teYXAw,2005.0,1,8,2017,Zathura,Meteor Shower Scene,tt0406375\ncPfMxQLlirI,2005.0,7,8,2017,Zathura,Reprogramming the Killer Robot Scene,tt0406375\nUinILaRACDA,2005.0,6,8,2017,Zathura,Wishing Star Scene,tt0406375\n_dEEXgs7T1k,2005.0,8,8,2017,Zathura,Chased by Zorgons Scene,tt0406375\nL5Jg3OVjPoo,2005.0,5,8,2017,Zathura,Caught Cheating Scene,tt0406375\n9hMrzEWpZM0,2005.0,4,8,2017,Zathura,Time Sphincter Scene,tt0406375\nFQwv6AGpdus,1979.0,10,10,2017,Dracula,The Defeat of  Scene,tt0079073\nCtDBcCXiE3M,1979.0,8,10,2017,Dracula,The King of Vampires Scene,tt0079073\ncXm_h4Zdwpc,1979.0,4,10,2017,Dracula,I Love the Night Scene,tt0079073\ngrdxSWSHJaY,1979.0,6,10,2017,Dracula,A Vampire Van Helsing Scene,tt0079073\nw8mbmSijd4o,1979.0,2,10,2017,Dracula,The Charming Count  Scene,tt0079073\nNyamI2ALbIA,1979.0,5,10,2017,Dracula,Flesh of My Flesh Scene,tt0079073\n15WevUMiJI8,1979.0,3,10,2017,Dracula,A Visitor in the Night Scene,tt0079073\n7rJZx_l_h1w,1979.0,7,10,2017,Dracula,An Unusual Creature Scene,tt0079073\n0NXkZZqCGjs,1979.0,1,10,2017,Dracula,Death Ship Scene,tt0079073\nuPS3iKFXKR4,1979.0,9,10,2017,Dracula,Lucy's Sharp Kiss Scene,tt0079073\nbx50ueZJgns,2017.0,6,10,2017,The Mummy,Mr. Hyde Comes Out Scene,tt2345759\nKsmXx3hB968,2017.0,4,10,2017,The Mummy,Ambulance Attack Scene,tt2345759\nRyZ-saoiIzY,2017.0,7,10,2017,The Mummy,Escapes Scene,tt2345759\n25_58Uww0bc,2017.0,5,10,2017,The Mummy,Dr. Jekyll Scene,tt2345759\nj8nLPMys3b8,2017.0,10,10,2017,The Mummy,Death Kiss Scene,tt2345759\nUJ_zLBr1NxE,2017.0,1,10,2017,The Mummy,The Plane Crash Scene,tt2345759\nXTCEl_MFfHA,2017.0,8,10,2017,The Mummy,The Dead Rise Scene,tt2345759\nAV3CrPe-1q0,2017.0,9,10,2017,The Mummy,Underwater Zombies Scene,tt2345759\n7dtQiqaxf_o,2017.0,3,10,2017,The Mummy,Undead Fight Scene,tt2345759\n1Ltz-vQPqgo,2017.0,2,10,2017,The Mummy,Nick Wakes Up Scene,tt2345759\nQch6oK4qX2k,2014.0,10,10,2017,A Little Chaos,The Fountain Revealed Scene,tt2639254\nJ5KvaQzBDoc,2014.0,5,10,2017,A Little Chaos,A Matter of Feeling Special Scene,tt2639254\nxd9K2o_ZDdU,2014.0,9,10,2017,A Little Chaos,Stop! Scene,tt2639254\nCpAVT7Y3vpM,2014.0,4,10,2017,A Little Chaos,The King's Gardener Scene,tt2639254\n_1fHeesAez0,2014.0,8,10,2017,A Little Chaos,A Wise Rose Scene,tt2639254\nMdfwpCH1Ksk,2014.0,7,10,2017,A Little Chaos,A Mother's Heart Scene,tt2639254\nhdnrorjl0WM,2014.0,1,10,2017,A Little Chaos,Do You Believe in Order? Scene,tt2639254\nTPDKmRQddq0,2014.0,6,10,2017,A Little Chaos,Flooding the Grove Scene,tt2639254\nMe3eSvA2K9k,2014.0,2,10,2017,A Little Chaos,Search for Eden Scene,tt2639254\nZKfVrsrm_ac,2014.0,3,10,2017,A Little Chaos,His Highness Phillipe Scene,tt2639254\nyZ773W4UICY,1933.0,8,10,2017,The Invisible Man,Killing Kemp Scene,tt0024184\nKXMOURHEMpY,1933.0,1,10,2017,The Invisible Man,I'll Show You Who I Am Scene,tt0024184\nbD8jQGwyuBU,1933.0,2,10,2017,The Invisible Man,Terrorizing the Village Scene,tt0024184\nvsQak7aKH30,1933.0,5,10,2017,The Invisible Man,Terrible Power Scene,tt0024184\nrW1_EfZ2pWU,1933.0,3,10,2017,The Invisible Man,A Visible Partner Scene,tt0024184\nhvuQCnADQRM,1933.0,7,10,2017,The Invisible Man,\"Murder, Money, Madness Scene\",tt0024184\nr7aXjBDUk8w,1933.0,9,10,2017,The Invisible Man,Trapped in a Barn Scene,tt0024184\nZmKECCbMc88,1933.0,6,10,2017,The Invisible Man,Escapes Scene,tt0024184\n9D5WsQNIAcE,1933.0,10,10,2017,The Invisible Man,Visible at the End Scene,tt0024184\nzZcYZmsSGs0,1933.0,4,10,2017,The Invisible Man,He's Here! Scene,tt0024184\nI-93Ijkhy4I,1941.0,9,10,2017,The Wolf Man,The Hunt is On Scene,tt0034398\nGYexCnV6cLY,1941.0,8,10,2017,The Wolf Man,They're Hunting Me Scene,tt0034398\n8CouO6czPic,1941.0,6,10,2017,The Wolf Man,Bear Trap Scene,tt0034398\nEqNTVkdsTL0,1941.0,4,10,2017,The Wolf Man,Protection From Me Scene,tt0034398\nVAnkBQ7eWyc,1941.0,5,10,2017,The Wolf Man,First Kill Scene,tt0034398\nR1hh6MVyQYg,1941.0,1,10,2017,The Wolf Man,A Beautiful Girl Scene,tt0034398\n4mMrCXPCZAA,1941.0,3,10,2017,The Wolf Man,Heaven Help You Scene,tt0034398\nF1nejgJdusQ,1941.0,2,10,2017,The Wolf Man,Wolf Attack Scene,tt0034398\nuqS2-v7iZr8,1941.0,10,10,2017,The Wolf Man,Your Suffering Has Ended Scene,tt0034398\nKFwzRnTqgDU,1941.0,7,10,2017,The Wolf Man,I'm a Murderer Scene,tt0034398\nT_pKvfMT5ck,2005.0,3,10,2017,Lords of Dogtown,Pool Skating Scene,tt0355702\n8RuMflmyF9k,2005.0,8,10,2017,Lords of Dogtown,Skateboard Championship Scene,tt0355702\nByRXX8KHS5o,2005.0,4,10,2017,Lords of Dogtown,Skip's Troubles Scene,tt0355702\nXwFR9NZfhUI,2005.0,1,10,2017,Lords of Dogtown,Surfing the Streets Scene,tt0355702\njR_kxdUm1bc,2005.0,7,10,2017,Lords of Dogtown,Fame and Fortune Scene,tt0355702\nY8eSWYGZXe0,2005.0,10,10,2017,Lords of Dogtown,Skating with Sid Scene,tt0355702\nNfDBhc__ntM,2005.0,5,10,2017,Lords of Dogtown,Bailing on Skip Scene,tt0355702\n8e5fzbsfGCI,2005.0,6,10,2017,Lords of Dogtown,No Team Anymore Scene,tt0355702\nXQEr5FlhFDc,2005.0,9,10,2017,Lords of Dogtown,Sorry I Left Scene,tt0355702\n3ghKgAcPBC8,2005.0,2,10,2017,Lords of Dogtown,Not Looking Good Scene,tt0355702\nZxlo0xmD51Y,2016.0,3,10,2017,Pride and Prejudice and Zombies,Zombie Trap Scene,tt1374989\niRdSH-u1wWI,2016.0,8,10,2017,Pride and Prejudice and Zombies,Rescuing Darcy Scene,tt1374989\naYSdnLgl-FQ,2016.0,6,10,2017,Pride and Prejudice and Zombies,Elizabeth vs. Catherine Scene,tt1374989\nNlPC4ag5S54,2016.0,7,10,2017,Pride and Prejudice and Zombies,Zombie Graveyard Scene,tt1374989\nabXL2HrEjyE,2016.0,2,10,2017,Pride and Prejudice and Zombies,Jane is Attacked Scene,tt1374989\nxs8jGY2dnCg,2016.0,4,10,2017,Pride and Prejudice and Zombies,Elizabeth Fights Darcy Scene,tt1374989\nBKYpzJIAkeo,2016.0,5,10,2017,Pride and Prejudice and Zombies,Deeply Under Your Spell Scene,tt1374989\nBSQeVY2fdL8,2016.0,1,10,2017,Pride and Prejudice and Zombies,Zombie Killers Scene,tt1374989\nuFTd09NNJzo,2016.0,9,10,2017,Pride and Prejudice and Zombies,Irrevocably Caught Scene,tt1374989\nZCTqZhZRYl0,2016.0,10,10,2017,Pride and Prejudice and Zombies,The Love of My Life Scene,tt1374989\nAvDUQXknug8,2016.0,8,10,2017,Billy Lynn's Long Halftime Walk,You Can Have Me Scene,tt2513074\n5wErjt1ukFE,2016.0,1,10,2017,Billy Lynn's Long Halftime Walk,For My Sister Scene,tt2513074\nJIRijCir934,2016.0,6,10,2017,Billy Lynn's Long Halftime Walk,It's Going Down Scene,tt2513074\n0-Whu5Hlbz8,2016.0,5,10,2017,Billy Lynn's Long Halftime Walk,Sergeant's Ritual Scene,tt2513074\n5JCbdlUra28,2016.0,9,10,2017,Billy Lynn's Long Halftime Walk,Make You Proud of Me,tt2513074\n1vhyMvNS3Ek,2016.0,7,10,2017,Billy Lynn's Long Halftime Walk,Heroes Onstage Scene,tt2513074\nMhS1b56Koxc,2016.0,4,10,2017,Billy Lynn's Long Halftime Walk,Ever Kill Somebody? Scene,tt2513074\nKNwhBAOLCXQ,2016.0,10,10,2017,Billy Lynn's Long Halftime Walk,I Love You Scene,tt2513074\ngiajSDY8kCs,2016.0,3,10,2017,Billy Lynn's Long Halftime Walk,Backstage Love Scene,tt2513074\nkwvSRZG285g,2016.0,2,10,2017,Billy Lynn's Long Halftime Walk,A Soldier's Story Scene,tt2513074\nB46nugc-4c4,2017.0,4,10,2017,Underworld: Blood Wars,I've Seen So Much Killing Scene,tt3717252\nSwarL21fqj0,2017.0,3,10,2017,Underworld: Blood Wars,Rescuing Selene Scene,tt3717252\nkqFgnN10khg,2017.0,2,10,2017,Underworld: Blood Wars,Betrayed and Framed Scene,tt3717252\nrM5Bg89j9qo,2017.0,10,10,2017,Underworld: Blood Wars,Spine-Ripping Death Scene,tt3717252\nDSO1F6sM63s,2017.0,1,10,2017,Underworld: Blood Wars,I am Hunted Scene,tt3717252\n6vAYIYN2Iac,2017.0,9,10,2017,Underworld: Blood Wars,Vampire Vengeance Scene,tt3717252\nj0IXQIUh3jQ,2017.0,7,10,2017,Underworld: Blood Wars,Lycan Siege Scene,tt3717252\ny9NhqnuoSAs,2017.0,5,10,2017,Underworld: Blood Wars,Lycans at the Gate Scene,tt3717252\ndQNrOoc3NTA,2017.0,6,10,2017,Underworld: Blood Wars,Laid to Rest Scene,tt3717252\nSqnrzd0HCRY,2017.0,8,10,2017,Underworld: Blood Wars,The Return of Selene Scene,tt3717252\naJZL2uoPRZg,2016.0,3,10,2017,Passengers,Partner Mode Scene,tt1355644\nxQyVBxABGxw,2016.0,1,10,2017,Passengers,Live a Little Scene,tt1355644\nqeaiVveZWD8,2016.0,7,10,2017,Passengers,Gravity Loss Scene,tt1355644\n0LArIo7OUJ8,2016.0,9,10,2017,Passengers,Saving Jim Scene,tt1355644\nBH-EprDz8wI,2016.0,4,10,2017,Passengers,Space Date Scene,tt1355644\n21aXGNHDBWQ,2016.0,5,10,2017,Passengers,Did You Wake Me Up? Scene,tt1355644\nBJWR0io_SuE,2016.0,2,10,2017,Passengers,Meeting Aurora Scene,tt1355644\nFCJSJ2xtky8,2016.0,6,10,2017,Passengers,You Took My Life Scene,tt1355644\nCiqtsKGMblU,2016.0,8,10,2017,Passengers,We're Out of Time Scene,tt1355644\n6-IGOKWYCDc,2016.0,10,10,2017,Passengers,Hell of a Life Scene,tt1355644\nGoQhe_ntnR4,2014.0,1,8,2017,Theeb,Blood in the Well Scene,tt3170902\nY0TF3T90a8U,2014.0,4,8,2017,Theeb,In the Well Scene,tt3170902\nIE_d_MBVR6s,2014.0,5,8,2017,Theeb,Help Me! Scene,tt3170902\nMfKGLmjlyLo,2014.0,8,8,2017,Theeb,Revenge Scene,tt3170902\n25UjaIMN-rY,2014.0,6,8,2017,Theeb,The Helpless Rabbit Scene,tt3170902\n0LwM6-xXVQU,2014.0,3,8,2017,Theeb,Too Late for Prayers Scene,tt3170902\nlFet5R_g-vY,2014.0,2,8,2017,Theeb,Canyon Ambush Scene,tt3170902\noNtGqOsseNQ,2014.0,7,8,2017,Theeb,The Dagger's Tip Scene,tt3170902\n64cRTXIxwws,2016.0,8,8,2017,After the Storm,I Always Understood Scene,tt5294966\nFeETSw95wp8,2016.0,4,8,2017,After the Storm,Before the Storm Scene,tt5294966\nP1bTMEsYPug,2016.0,3,8,2017,After the Storm,A Day Out Scene,tt5294966\na7lxoNJJYEc,2016.0,7,8,2017,After the Storm,Like a Daughter Scene,tt5294966\n1A08em6Y-kk,2016.0,5,8,2017,After the Storm,A New Relationship Scene,tt5294966\nPSpIMEVCsV0,2016.0,6,8,2017,After the Storm,You Can't Find Happiness Scene,tt5294966\ngfmtB17vowo,2016.0,2,8,2017,After the Storm,Bad Detective Scene,tt5294966\nstqgd2mbvlo,2016.0,1,8,2017,After the Storm,Bathroom Visitation Scene,tt5294966\n9xbk-7HBIOw,2016.0,8,8,2017,37,Happy Birthday Scene,tt4882174\n15wjOeT6Qo4,2016.0,3,8,2017,37,The Attack Scene,tt4882174\nQj7OIg9Vc-g,2016.0,1,8,2017,37,The Neighbors Scene,tt4882174\nocXYjytHb40,2016.0,7,8,2017,37,A Coward Scene,tt4882174\nUiHAMypGBPo,2016.0,6,8,2017,37,No One to Help Scene,tt4882174\n7WkMxJKKITM,2016.0,5,8,2017,37,Daddy's Lying Scene,tt4882174\nUjOJ-AMtAzY,2016.0,2,8,2017,37,Come to Bed Scene,tt4882174\nCf_0ggNhHMY,2016.0,4,8,2017,37,She's Crying Scene,tt4882174\nSrqVUFbk_sE,2015.0,6,7,2017,Take Me to the River,Gun Lesson Scene,tt3142366\n2g96QnNekOc,2015.0,1,7,2017,Take Me to the River,What Happened to Her? Scene,tt3142366\nvFPRSImZev4,2015.0,5,7,2017,Take Me to the River,Are You Okay? Scene,tt3142366\nyJTucB8fH04,2015.0,4,7,2017,Take Me to the River,Awkward Family Dinner Scene,tt3142366\nQt6F9WCle9k,2015.0,7,7,2017,Take Me to the River,It Wasn't My Idea Scene,tt3142366\nLBLIa7bqcfY,2015.0,3,7,2017,Take Me to the River,Keep Away From My Daughter Scene,tt3142366\n7MWts8-_LUo,2015.0,2,7,2017,Take Me to the River,Look Me in My Eye Scene,tt3142366\neKxv7whkFMM,1983.0,6,8,2017,Kamikaze '89,The Laughing Contest Scene,tt0084191\nNa3loD5Xpew,1983.0,3,8,2017,Kamikaze '89,Krysmopompas Scene,tt0084191\nykcCGhbl1H4,1983.0,5,8,2017,Kamikaze '89,Freeway Freak Scene,tt0084191\n0lCR_c5Su1M,1983.0,2,8,2017,Kamikaze '89,Rooftop Shootout Scene,tt0084191\nzOHL9JZPELk,1983.0,1,8,2017,Kamikaze '89,Premature Death Scene,tt0084191\nOstLbMEQM4Q,1983.0,8,8,2017,Kamikaze '89,Peace and Tranquility Scene,tt0084191\nw9-ylaUijdc,1983.0,7,8,2017,Kamikaze '89,The Chief Scene,tt0084191\n6WX8Ct4xMvE,1983.0,4,8,2017,Kamikaze '89,My Devoted Fans Scene,tt0084191\ncrZlpaRXKFE,2013.0,8,8,2017,Not Another Happy Ending,I Do Scene,tt1808339\nbplKA4fZ8dI,2013.0,5,8,2017,Not Another Happy Ending,He's Using You Scene,tt1808339\nCsXhHyDeJO0,2013.0,4,8,2017,Not Another Happy Ending,A Father's Anguish Scene,tt1808339\nC77hQJ-zDeA,2013.0,2,8,2017,Not Another Happy Ending,You Changed My Title? Scene,tt1808339\nVY50Mu29LxE,2013.0,7,8,2017,Not Another Happy Ending,You're the Reason Scene,tt1808339\nTprgpfkdiRc,2013.0,6,8,2017,Not Another Happy Ending,Changing the Ending Scene,tt1808339\nf6Oo9vLtKtA,2013.0,1,8,2017,Not Another Happy Ending,Never Been So Happy Scene,tt1808339\nkpufOE3FIXA,2013.0,3,8,2017,Not Another Happy Ending,Meeting Darsie Scene,tt1808339\ndBif8nb20_g,2016.0,3,8,2017,Glassland,Your Dad Was Never Around Scene,tt3407428\ng_TTG6vhg_4,2016.0,5,8,2017,Glassland,You're Breaking My Heart Scene,tt3407428\n8M0uWmbBrCc,2016.0,2,8,2017,Glassland,You're Gonna Drink Scene,tt3407428\ndLxHFwfWIcQ,2016.0,1,8,2017,Glassland,Her Liver is Dying Scene,tt3407428\nwnMPRSiIiUI,2016.0,6,8,2017,Glassland,Drinking Herself to Death Scene,tt3407428\nk62E1AtOYnM,2016.0,8,8,2017,Glassland,Meet Your Son Scene,tt3407428\nTqivtOAy2No,2016.0,7,8,2017,Glassland,Someone to Dance With Scene,tt3407428\nEAKyvP2Rnqc,2016.0,4,8,2017,Glassland,That Child Ripped My Life Apart Scene,tt3407428\nLK5QIZgbfZQ,2017.0,1,10,2017,Split,I Think You Have the Wrong Car Scene,tt4972582\nI8-FxxgRACE,2017.0,9,10,2017,Split,Rejoice! Scene,tt4972582\nMy8kfz_Ddqg,2017.0,10,10,2017,Split,How Powerful We Can Be Scene,tt4972582\nQAiVcQifKfE,2017.0,2,10,2017,Split,Help Us Hedwig Scene,tt4972582\nI-6XHJFUBDI,2017.0,7,10,2017,Split,The Horde Takes Over Scene,tt4972582\nFnFMS11g4fM,2017.0,6,10,2017,Split,Hedwig's Dance Scene,tt4972582\nUc--n6RoIgw,2017.0,4,10,2017,Split,Escape Attempt Scene,tt4972582\nVPeXTe_6uOc,2017.0,3,10,2017,Split,Claire's Escape Scene,tt4972582\nC83hfoyHHHk,2017.0,8,10,2017,Split,He's Coming Scene,tt4972582\nH6ImGh1Xolc,2017.0,5,10,2017,Split,Hedwig's First Kiss Scene,tt4972582\n2DgFlZwrD-Q,2016.0,3,10,2017,Ouija: Origin of Evil,Creepy Little Sister Scene,tt4361050\ncn35LhT9zBg,2016.0,7,10,2017,Ouija: Origin of Evil,We'll Take All of You Scene,tt4361050\nLSTU_JJcJxQ,2016.0,2,10,2017,Ouija: Origin of Evil,Family Seance Scene,tt4361050\n-OUuZojE3aM,2016.0,9,10,2017,Ouija: Origin of Evil,I Didn't Mean To Scene,tt4361050\ntFEKMdUMjEk,2016.0,10,10,2017,Ouija: Origin of Evil,Institutionalized Scene,tt4361050\nrC9MhZGgJy4,2016.0,4,10,2017,Ouija: Origin of Evil,Channeling Forces Scene,tt4361050\nDpQHj1R8kXk,2016.0,5,10,2017,Ouija: Origin of Evil,They Are Watching Us Scene,tt4361050\nlwruhQqFttU,2016.0,6,10,2017,Ouija: Origin of Evil,Possessed Priest Scene,tt4361050\nEiYxgC78ScI,2016.0,8,10,2017,Ouija: Origin of Evil,Sewing Her Fate Scene,tt4361050\n8hWbptEarkA,2016.0,1,10,2017,Ouija: Origin of Evil,We Can See You Scene,tt4361050\nU-Sqe0DN_E8,2017.0,9,10,2017,A Dog's Purpose,The Right Fit Scene,tt1753383\ntg4jLJ6OiDY,2017.0,1,10,2017,A Dog's Purpose,I Had a Boy Scene,tt1753383\ncOXVnmVPdtQ,2017.0,7,10,2017,A Dog's Purpose,My Best Life Scene,tt1753383\nBhHv3Yxcuro,2017.0,10,10,2017,A Dog's Purpose,Bailey Comes Home Scene,tt1753383\nZ4ScRG9SDSI,2017.0,6,10,2017,A Dog's Purpose,Corgi in Love Scene,tt1753383\nBCGzM3s9-1o,2017.0,8,10,2017,A Dog's Purpose,I Found You! Scene,tt1753383\nf-3Bldu8BJ4,2017.0,4,10,2017,A Dog's Purpose,Bailey Passes On Scene,tt1753383\nALw553euzsc,2017.0,5,10,2017,A Dog's Purpose,I Need to Rest Scene,tt1753383\nnfFsHF8guzM,2017.0,3,10,2017,A Dog's Purpose,Doggie Matchmaker Scene,tt1753383\nvhhiJqQBMMY,2017.0,2,10,2017,A Dog's Purpose,Coin Collecting Scene,tt1753383\n1xhIWaxWINs,2017.0,8,10,2017,Almost Christmas,Inviting the Mistress to Dinner Scene,tt4649416\nvLgTWXjMlWI,2017.0,6,10,2017,Almost Christmas,Blackaroni and Cheese Scene,tt4649416\nu_n1SEwWmYc,2017.0,2,10,2017,Almost Christmas,He Killed Santa Scene,tt4649416\n3B40Rhnt4PA,2017.0,4,10,2017,Almost Christmas,Dance Break Scene,tt4649416\nwXQ1EhVW2xQ,2017.0,9,10,2017,Almost Christmas,I Looked Up To You Scene,tt4649416\n318L0jBVIKM,2017.0,10,10,2017,Almost Christmas,Prom Do-Over Scene,tt4649416\nCHs36bNm7xk,2017.0,7,10,2017,Almost Christmas,Christmas Dinner Scene,tt4649416\nSzVC7ErC8RY,2017.0,1,10,2017,Almost Christmas,Five Days as a Family,tt4649416\nu7yQ7qs6Zew,2017.0,5,10,2017,Almost Christmas,Caught Cheating Scene,tt4649416\n7URRIBRCm8E,2017.0,3,10,2017,Almost Christmas,You Locked Me Out Scene,tt4649416\nBG3bNlh0qiU,2017.0,8,10,2017,The Great Wall,Balloon Attack Scene,tt2034800\nS7iDxRJpDZU,2017.0,9,10,2017,The Great Wall,The Cadet's Sacrifice Scene,tt2034800\nV6B3elF2pYU,2017.0,4,10,2017,The Great Wall,Learning to Trust Scene,tt2034800\nDefILRrX77k,2017.0,1,10,2017,The Great Wall,The First Attack Scene,tt2034800\n4m15WAC5khw,2017.0,3,10,2017,The Great Wall,Archery Test Scene,tt2034800\nJWbqI-m3A3w,2017.0,10,10,2017,The Great Wall,Killing the Queen Scene,tt2034800\n6D64t1trSRs,2017.0,5,10,2017,The Great Wall,Nighttime Trap Scene,tt2034800\nz23vdob1grU,2017.0,7,10,2017,The Great Wall,Fighting Blind Scene,tt2034800\nahCg__rBh1Q,2017.0,6,10,2017,The Great Wall,Death Blades and Harpoons Scene,tt2034800\nCLWCgMVf6U0,2017.0,2,10,2017,The Great Wall,Close Combat Scene,tt2034800\nWurqpe5tNjA,2016.0,9,10,2017,Nocturnal Animals,A Good Man Scene,tt4550098\n5PsKwqiRjEM,2016.0,5,10,2017,Nocturnal Animals,Did They Suffer? Scene,tt4550098\ngeoi6Sxyg7g,2016.0,10,10,2017,Nocturnal Animals,A Nice Guy Like You Scene,tt4550098\nvrhgkmAzWvo,2016.0,7,10,2017,Nocturnal Animals,Do You Love Me? Scene,tt4550098\niAlU6xt7Y_s,2016.0,3,10,2017,Nocturnal Animals,Eyes Like Your Mother Scene,tt4550098\nz-4DtLFGzG0,2016.0,2,10,2017,Nocturnal Animals,Get in My Car Scene,tt4550098\nl-GbvgBXi18,2016.0,4,10,2017,Nocturnal Animals,Recognize this Man? Scene,tt4550098\n5sMFxEL3zhw,2016.0,6,10,2017,Nocturnal Animals,Make Him Suffer Scene,tt4550098\na6--cEjo3bY,2016.0,8,10,2017,Nocturnal Animals,Any Last Words? Scene,tt4550098\nFHeC_tenzrw,2016.0,1,10,2017,Nocturnal Animals,Pull Over! Scene,tt4550098\nCEO9YAsxMfI,2016.0,7,10,2017,The Girl on the Train,Did You Murder Megan? Scene,tt3631112\nSW-1sk_U8vU,2016.0,3,10,2017,The Girl on the Train,Stay Away Scene,tt3631112\nX1ByBEw-WxM,2016.0,8,10,2017,The Girl on the Train,Tell Her the Truth Scene,tt3631112\nyYQtZCaPFaM,2016.0,6,10,2017,The Girl on the Train,Taking the Baby Scene,tt3631112\nB2zzhcU9f9U,2016.0,9,10,2017,The Girl on the Train,The Truth Comes Out Scene,tt3631112\nahCOQjOPTZw,2016.0,10,10,2017,The Girl on the Train,Revenge Scene,tt3631112\nqJznSue3tEs,2016.0,1,10,2017,The Girl on the Train,Megan's Malaise Scene,tt3631112\nyHw5A9BAZ98,2016.0,2,10,2017,The Girl on the Train,Pure Rage Scene,tt3631112\nlKqBsgfSSU8,2016.0,4,10,2017,The Girl on the Train,Afraid of Myself Scene,tt3631112\nIegMpeJM1QU,2016.0,5,10,2017,The Girl on the Train,You're Lying to Me Scene,tt3631112\n5rGPKIgdV6A,2017.0,3,10,2017,The Fate of the Furious,Prison Escape Scene,tt4630562\n5d1P50L28LU,2017.0,7,10,2017,The Fate of the Furious,Roman Goes Swimming Scene,tt4630562\nox1SVCutwv4,2017.0,2,10,2017,The Fate of the Furious,Wrecking Ball Chase Scene,tt4630562\n6ZygVYbMrfc,2017.0,8,10,2017,The Fate of the Furious,Torpedoes Scene,tt4630562\nAoB_mdZxNlY,2017.0,5,10,2017,The Fate of the Furious,Raining Cars Scene,tt4630562\nG76ThtqLvWk,2017.0,6,10,2017,The Fate of the Furious,Harpooning Dom's Car Scene,tt4630562\nwHfXZ9jcX3A,2017.0,10,10,2017,The Fate of the Furious,Heat Seeking Missile Scene,tt4630562\nZ9kPRWAjSNo,2017.0,1,10,2017,The Fate of the Furious,The Cuban Mile Scene,tt4630562\nTr3_HOXg4Ug,2017.0,9,10,2017,The Fate of the Furious,Baby Fight Scene,tt4630562\n4FkUmPvbDQs,2017.0,4,10,2017,The Fate of the Furious,Save Your Son Scene,tt4630562\nv4tdwXAnFnU,2015.0,3,8,2017,Somewhere in the Middle,You Never Called Scene,tt3263408\nxIeyPrdc2Yo,2015.0,1,8,2017,Somewhere in the Middle,Show Me How to Seduce Scene,tt3263408\ntkNKZ8e4aPc,2015.0,5,8,2017,Somewhere in the Middle,You Can't Sleep With Me Then Leave Scene,tt3263408\nYaj2tnjamhM,2015.0,7,8,2017,Somewhere in the Middle,An Unsatisfying Night Scene,tt3263408\nV6W8AZMUipE,2015.0,4,8,2017,Somewhere in the Middle,Enough With the Lies Scene,tt3263408\nl0CbM-jK_eI,2015.0,8,8,2017,Somewhere in the Middle,What is Wrong With You? Scene,tt3263408\nVonhME1FiMk,2015.0,2,8,2017,Somewhere in the Middle,Don't Embarrass Me Scene,tt3263408\n-Q6oYNUhNes,2015.0,6,8,2017,Somewhere in the Middle,Trying New Things Scene,tt3263408\n2ZyxEFqlA1Y,2014.0,8,8,2017,The Dark Valley,Make It Quick Scene,tt2650978\nwAzEOzfIX_0,2014.0,6,8,2017,The Dark Valley,Cabin Shootout Scene,tt2650978\nDjypYuuAvDY,2014.0,3,8,2017,The Dark Valley,The Wedding Scene,tt2650978\naZGpjXdKQXw,2014.0,1,8,2017,The Dark Valley,Blinded Scene,tt2650978\n3a_nj9e_5bs,2014.0,5,8,2017,The Dark Valley,Eat It! Scene,tt2650978\nway2bfS3z1M,2014.0,7,8,2017,The Dark Valley,Blacksmith Fight Scene,tt2650978\nwDfgx1Cj97Y,2014.0,2,8,2017,The Dark Valley,Punishment and Revenge Scene,tt2650978\noymR3xfYh4c,2014.0,4,8,2017,The Dark Valley,Saving Luzi Scene,tt2650978\nmfP8p7raf0s,2017.0,7,8,2017,Harmonium,We're Going to Kill You Scene,tt5182856\ntpmqajLJQz0,2017.0,3,8,2017,Harmonium,A Wild Rose Scene,tt5182856\nPzk9hsEacmQ,2017.0,8,8,2017,Amnesia,The Night is Young Scene,tt8071196\nEduv1gpvg6w,2017.0,5,8,2017,Amnesia,War Stories Scene,tt8071196\nhN-1U-g15NU,2017.0,3,8,2017,Amnesia,Martha's Memory Scene,tt8071196\nRbU9NjiFLV0,2017.0,2,8,2017,Amnesia,Making Music Scene,tt8071196\n6C3HDhgTv8Y,2017.0,7,8,2017,Amnesia,You Ran Away Scene,tt8071196\n4Mzzy3KQNoI,2017.0,1,8,2017,Amnesia,To Music Scene,tt8071196\n-FDEcmWJ2GU,2017.0,6,8,2017,Amnesia,What Happened to the Girls? Scene,tt8071196\nr_SuoUET-ok,2017.0,4,8,2017,Amnesia,Pouring Concrete Onto Truth Scene,tt8071196\nJ73K7gabt-U,2017.0,8,8,2017,Harmonium,Tired of Life Scene,tt5182856\nPXEJAEDVUkM,2017.0,2,8,2017,Harmonium,Lust in the Back Room Scene,tt5182856\nzN8bZ1JjWWI,2017.0,4,8,2017,Harmonium,What Did You Do? Scene,tt5182856\nos6khU56n2g,2017.0,1,8,2017,Harmonium,Do I Scare You? Scene,tt5182856\nQD1AjTF83ds,2017.0,6,8,2017,Harmonium,A Proper Couple Scene,tt5182856\nvh2wmVvFUZI,2017.0,5,8,2017,Harmonium,A Secret Revealed Scene,tt5182856\nbI1MOyt8dXE,2016.0,2,8,2017,Soul on a String,Men's Business Scene,tt5974624\nEML4kWiax44,2016.0,7,8,2017,Soul on a String,Gouri vs. Tabei Scene,tt5974624\nnfteV9Dkml8,2016.0,3,8,2017,Soul on a String,The Wrong Man Scene,tt5974624\nXC3h9PPpQtI,2016.0,5,8,2017,Soul on a String,Men Like You Scene,tt5974624\n_0No4OkGHt4,2016.0,8,8,2017,Soul on a String,We've Lost Scene,tt5974624\nB6OtAXBRTSI,2016.0,4,8,2017,Soul on a String,The Dying Man Scene,tt5974624\nmCO14xw1nJo,2016.0,1,8,2017,Soul on a String,A Map On Your Body Scene,tt5974624\nBGHB4Eyjqt4,2016.0,6,8,2017,Soul on a String,The Prayer Scene,tt5974624\nbnLhMGzgfSM,1990.0,9,10,2017,Kindergarten Cop,Hitting Back Scene,tt0099938\n0noY-XrAJRg,1990.0,10,10,2017,Kindergarten Cop,Saving Dominic Scene,tt0099938\nm1JgMM8b9_w,1990.0,5,10,2017,Kindergarten Cop,They're Horrible Scene,tt0099938\nt_FRWUPcR7Y,1990.0,6,10,2017,Kindergarten Cop,It's Not a Tumor! Scene,tt0099938\nYSrOLez2GbE,1990.0,8,10,2017,Kindergarten Cop,You Belong to Me! Scene,tt0099938\nq9FYBjSc3cU,1990.0,1,10,2017,Kindergarten Cop,The Party Pooper Scene,tt0099938\nk96h1dYQrj0,1990.0,3,10,2017,Kindergarten Cop,Boys Have a Penis Scene,tt0099938\nIxoCv_JpQVs,1990.0,2,10,2017,Kindergarten Cop,Kids on the Plane Scene,tt0099938\n-yPwW5V4mhI,1990.0,7,10,2017,Kindergarten Cop,Who is Your Daddy? Scene,tt0099938\nIMQADg1Dp9g,1990.0,4,10,2017,Kindergarten Cop,Shut Up! Scene,tt0099938\nkn8k_ox5OXs,1995.0,2,11,2017,Apollo 13,Suiting Up Scene,tt0112384\nlMtWWls4oas,1995.0,3,11,2017,Apollo 13,Go for Launch Scene,tt0112384\nf6F6MzMT2g8,1995.0,8,11,2017,Apollo 13,Duct Tape and Cardboard Scene,tt0112384\nry55--J4_VQ,1995.0,7,11,2017,Apollo 13,Square Peg in a Round Hole Scene,tt0112384\nC3J1AO9z0tA,1995.0,4,11,2017,Apollo 13,\"Houston, We Have a Problem Scene\",tt0112384\nzZTH3HdE8Sg,1995.0,10,11,2017,Apollo 13,It's Been a Privilege Flying With You Scene,tt0112384\ns_7PfocHTmc,1995.0,11,11,2017,Apollo 13,Re-Entry Scene,tt0112384\nXLMDSjCzEx8,1995.0,5,11,2017,Apollo 13,A New Mission Scene,tt0112384\nTid44iy6Rjs,1995.0,6,11,2017,Apollo 13,Failure Is Not an Option Scene,tt0112384\n7RJnMME0XAw,1995.0,1,11,2017,Apollo 13,Did You Know the Astronauts in the Fire? Scene,tt0112384\nUNYBtjHAuSA,1995.0,9,11,2017,Apollo 13,Just Breathe Normal Scene,tt0112384\nIgs1WM2pA54,1954.0,2,10,2017,Dial M for Murder,Your Word Against Mine Scene,tt0046912\nLWIAWDjHhx4,1954.0,1,10,2017,Dial M for Murder,A Far More Sensible Idea Scene,tt0046912\n8HiCEPL6oa8,1954.0,4,10,2017,Dial M for Murder,\"Dialing \"\"M\"\" for Murder Scene\",tt0046912\njPRiyRmsLBo,1954.0,3,10,2017,Dial M for Murder,Planning the Murder Scene,tt0046912\n9qorxa6iMm4,1954.0,5,10,2017,Dial M for Murder,Manipulating the Crime Scene Scene,tt0046912\ntUiVEKK8rWM,1954.0,9,10,2017,Dial M for Murder,A Fantastic Story Scene,tt0046912\nDaWi5EoJVGA,1954.0,7,10,2017,Dial M for Murder,A Very Serious Position Scene,tt0046912\nOh0635HLx5s,1954.0,6,10,2017,Dial M for Murder,Reenacting the Murder Scene,tt0046912\nJY4UoItJ_lA,1954.0,10,10,2017,Dial M for Murder,Caught by the Wrong Key Scene,tt0046912\n9MSGSOjdViQ,1954.0,8,10,2017,Dial M for Murder,Guilty! Scene,tt0046912\n3KdgZgQRDU0,1986.0,2,10,2017,Platoon,Dance! Scene,tt0091763\ntImxhYu2PG8,1986.0,5,10,2017,Platoon,We're Gonna Lose This War Scene,tt0091763\nr_3ofu2x8qM,1986.0,6,10,2017,Platoon,Elias is Betrayed Scene,tt0091763\ntlLSqeVA_no,1986.0,3,10,2017,Platoon,Barnes Crosses the Line Scene,tt0091763\ncCwn-ROhwyo,1986.0,10,10,2017,Platoon,Retribution Scene,tt0091763\n8cGUULb2K-0,1986.0,4,10,2017,Platoon,Burning the Village Scene,tt0091763\nQEv3zzKyiFQ,1986.0,7,10,2017,Platoon,The Death of Sgt. Elias Scene,tt0091763\nS0IfbNVCoCE,1986.0,9,10,2017,Platoon,\"Pecker Hard, Powder Dry Scene\",tt0091763\n0bw8UM1eLFo,1986.0,8,10,2017,Platoon,I Am Reality Scene,tt0091763\nPvqQnJ7Fvz4,1986.0,1,10,2017,Platoon,Hell Is the Impossibility of Reason Scene,tt0091763\nnKDUDF3cgRA,1988.0,4,12,2017,Dirty Rotten Scoundrels,Meeting Ruprecht Scene,tt0095031\n14nilke-mtQ,1988.0,9,12,2017,Dirty Rotten Scoundrels,Do You Feel This? Scene,tt0095031\nBYmHra1d_Nw,1988.0,8,12,2017,Dirty Rotten Scoundrels,Freddy's Sad Story Scene,tt0095031\nr2RzBizjKT0,1988.0,7,12,2017,Dirty Rotten Scoundrels,Wheelchair Roulette Scene,tt0095031\n08NzJRNAFGc,1988.0,2,12,2017,Dirty Rotten Scoundrels,Lawrence Meets Freddy Scene,tt0095031\nxxulNn8UDtY,1988.0,10,12,2017,Dirty Rotten Scoundrels,\"Freddy's \"\"Suicide\"\" Scene\",tt0095031\nNePF08sMSDA,1988.0,3,12,2017,Dirty Rotten Scoundrels,Freddy Goes to Jail Scene,tt0095031\nyMiJp1nYlNA,1988.0,11,12,2017,Dirty Rotten Scoundrels,Freddy Walks! Scene,tt0095031\nnkuKrymtuCg,1988.0,5,12,2017,Dirty Rotten Scoundrels,Ruprecht Gets Angry Scene,tt0095031\nSKDX-qJaJ08,1988.0,6,12,2017,Dirty Rotten Scoundrels,Dinner With Ruprecht Scene,tt0095031\nxof2LkhAFGU,1988.0,12,12,2017,Dirty Rotten Scoundrels,Janet's Return Scene,tt0095031\nEOyAHaO7lwA,1988.0,1,12,2017,Dirty Rotten Scoundrels,Freddy Cons a Free Meal Scene,tt0095031\n3wqXNKYn-fQ,2017.0,7,10,2017,Get Out,She's a Genius Scene,tt5052448\nOT61p6s77_U,2017.0,5,10,2017,Get Out,Give Me the Keys Scene,tt5052448\nn9hjsuaj448,2017.0,9,10,2017,Get Out,Chris's Revenge Scene,tt5052448\ny1OhC9h3flY,2017.0,3,10,2017,Get Out,\"No, No, No Scene\",tt5052448\n85O_vS9vSCA,2017.0,8,10,2017,Get Out,Saved by Cotton Scene,tt5052448\nT31h3L_egm8,2017.0,2,10,2017,Get Out,Good to See Another Brother Scene,tt5052448\nKJhlJ8p8v7A,2017.0,6,10,2017,Get Out,Abducting Black People Scene,tt5052448\nkBwVWrBk_uo,2017.0,1,10,2017,Get Out,The Sunken Place Scene,tt5052448\nuG_KHjd_PSc,2017.0,4,10,2017,Get Out,of Here Scene,tt5052448\nsLLp4bO6dDI,2017.0,10,10,2017,Get Out,I Love You Scene,tt5052448\n4TsgjtL0Qx4,2017.0,6,10,2017,Fifty Shades Darker,Unwelcome Visitor Scene,tt4465564\ngT7MQhe8gRE,2017.0,4,10,2017,Fifty Shades Darker,Love in an Elevator Scene,tt4465564\nX4jdgckXC9I,2017.0,9,10,2017,Fifty Shades Darker,The Answer is Yes Scene,tt4465564\nUVXRswx8I8g,2017.0,2,10,2017,Fifty Shades Darker,Auction Seduction Scene,tt4465564\nCoQM9K_r3kY,2017.0,1,10,2017,Fifty Shades Darker,Re-Negotiation Scene,tt4465564\nb-w1bY8qhnc,2017.0,8,10,2017,Fifty Shades Darker,Miss Me? Scene,tt4465564\n97qWmPkODZA,2017.0,3,10,2017,Fifty Shades Darker,Going the Extra Mile Scene,tt4465564\nrDnazOBaF1U,2017.0,7,10,2017,Fifty Shades Darker,Submissive Sadist Scene,tt4465564\nwEPZVYQqdMY,2017.0,5,10,2017,Fifty Shades Darker,A Friendly Wager Scene,tt4465564\n0IiCOhajpS8,2017.0,10,10,2017,Fifty Shades Darker,A Proper Proposal Scene,tt4465564\nRsJmRjseSzo,2004.0,11,13,2017,Hotel Rwanda,I Cannot Leave Them to Die Scene,tt0395169\nAk8uiLVkpy4,2004.0,9,13,2017,Hotel Rwanda,There Will Be No Rescue Scene,tt0395169\nd46cDtFv_Rw,2004.0,5,13,2017,Hotel Rwanda,Tatiana's Brother Scene,tt0395169\nwZTaXoogvDQ,2004.0,8,13,2017,Hotel Rwanda,The Hutu Leave Scene,tt0395169\nbtfIH4Q2BQA,2004.0,7,13,2017,Hotel Rwanda,A Grave Situation Scene,tt0395169\nbY-jTccddQo,2004.0,4,13,2017,Hotel Rwanda,The Hutu Arrive Scene,tt0395169\nty_jbbvZDkQ,2004.0,3,13,2017,Hotel Rwanda,Capturing the Massacre Scene,tt0395169\n1Kk_oah-wCM,2004.0,13,13,2017,Hotel Rwanda,There's Always Room Scene,tt0395169\nFGLxQHJ5NEs,2004.0,12,13,2017,Hotel Rwanda,A Marked Man Scene,tt0395169\n5tz8013avVU,2004.0,6,13,2017,Hotel Rwanda,Help Arrives Scene,tt0395169\nvKcEalTIwfQ,2004.0,1,13,2017,Hotel Rwanda,Paul Finds Roger Scene,tt0395169\npsW7sLoNutA,2004.0,2,13,2017,Hotel Rwanda,How Can People Not Intervene? Scene,tt0395169\nTffPDHIwQtc,2004.0,10,13,2017,Hotel Rwanda,The Fog Clears Scene,tt0395169\n9OMdSRrUdy8,2011.0,5,10,2017,Sanctum,The Squeeze Scene,tt0881320\ns2QlioAboes,2011.0,10,10,2017,Sanctum,Can You Help Me? Scene,tt0881320\nTGqv7BxCgYg,2011.0,1,10,2017,Sanctum,Into the Cave Scene   Moveiclips,tt0881320\ngkqqhFre2RE,2011.0,3,10,2017,Sanctum,He Killed Her Scene,tt0881320\nN5fCeYm3-rQ,2011.0,6,10,2017,Sanctum,The Bends Scene,tt0881320\nOF_frDHo_nw,2011.0,4,10,2017,Sanctum,Sealed In Scene,tt0881320\nei4m-fQ0bak,2011.0,7,10,2017,Sanctum,Traversing the Chasm Scene,tt0881320\nqZk2O6OlYJo,2011.0,2,10,2017,Sanctum,Buddy Breathing Scene,tt0881320\ncKUwdiog-n8,2011.0,8,10,2017,Sanctum,Put Your Knife Away Scene,tt0881320\nUjm2mTIaGC0,2011.0,9,10,2017,Sanctum,What About Carl? Scene,tt0881320\nuQpHx3lBGms,1988.0,5,11,2017,Married to the Mob,Deadly Drive Thru Scene,tt0095593\nJYLVFSmlNFs,1988.0,9,11,2017,Married to the Mob,Hotel Shootout Scene,tt0095593\nBXNuNJhLWyw,1988.0,6,11,2017,Married to the Mob,Mike Opens Up Scene,tt0095593\nMpaMbLDTxyY,1988.0,1,11,2017,Married to the Mob,Frank's Revolver Scene,tt0095593\n0wTKzzRtGqY,1988.0,7,11,2017,Married to the Mob,The Mob vs. the FBI Scene,tt0095593\nCUzNygPSRZM,1988.0,3,11,2017,Married to the Mob,Frank's Funeral Scene,tt0095593\nXF33SnFIDAQ,1988.0,11,11,2017,Married to the Mob,A Second Chance Scene,tt0095593\n4us4K3KLRM0,1988.0,4,11,2017,Married to the Mob,Peeping Tom at Chicken Lickin' Scene,tt0095593\nbPH152eXEfU,1988.0,8,11,2017,Married to the Mob,Are You Being Straight With Me? Scene,tt0095593\nFiVYtNf5Hos,1988.0,10,11,2017,Married to the Mob,Kiss it Goodbye! Scene,tt0095593\novPXL1WPTMA,1988.0,2,11,2017,Married to the Mob,Tony Kills Frank Scene,tt0095593\n1CKEXvHN9es,2007.0,4,12,2017,Lions for Lambs,The Cost of Leaving Afghanistan Scene,tt0891527\nq2EU-k9I5yg,2007.0,10,12,2017,Lions for Lambs,A Conscience Attack Scene,tt0891527\nwQc-GpTtnR0,2007.0,6,12,2017,Lions for Lambs,The Senator Challenges Janine Scene,tt0891527\nq_u6njqBaB8,2007.0,7,12,2017,Lions for Lambs,A Greater Depression Scene,tt0891527\nMvRfyxGjA90,2007.0,3,12,2017,Lions for Lambs,\"The \"\"Science\"\" in Politics Scene\",tt0891527\nAks95ziAQXU,2007.0,8,12,2017,Lions for Lambs,Lions Led by Lambs Scene,tt0891527\nbtk4Wp0RssY,2007.0,11,12,2017,Lions for Lambs,Malley on Adulthood Scene,tt0891527\nE2wr_tRqNZQ,2007.0,1,12,2017,Lions for Lambs,Funneling Through Iran Scene,tt0891527\nDzQjdpw73ZY,2007.0,5,12,2017,Lions for Lambs,A Tipping Point Scene,tt0891527\nC1PilkENI-k,2007.0,9,12,2017,Lions for Lambs,News vs. Business Scene,tt0891527\n2dB26bOiT4E,2007.0,2,12,2017,Lions for Lambs,Helicopter Attack Scene,tt0891527\n8i7z8cEA4IM,2007.0,12,12,2017,Lions for Lambs,Not Laying Down Scene,tt0891527\nlMmTZ7oTDRI,1992.0,7,8,2017,Body Snatchers,Discovered Scene,tt0106452\nP_Iz-WhpmXY,1992.0,2,8,2017,Body Snatchers,What's in the Water? Scene,tt0106452\njF0RYgX6Hgo,1991.0,6,8,2017,Body Snatchers,It's the Race That's Important Scene,tt0106452\nh8wzJimC5Zc,1992.0,8,8,2017,Body Snatchers,You Can Only Stay Awake So Long Scene,tt0106452\nuSCNsJDEf1M,1992.0,5,8,2017,Body Snatchers,It's Too Late! Scene,tt0106452\nNUmE-c4ym40,1992.0,1,8,2017,Body Snatchers,They Get You When You Sleep Scene,tt0106452\nLk2gIdLgwz4,1992.0,4,8,2017,Body Snatchers,Where You Gonna Go? Scene,tt0106452\nqqZPej42OkE,1992.0,3,8,2017,Body Snatchers,Fingerpainting Scene,tt0106452\njEveVtZmPu0,2001.0,9,9,2017,Osmosis Jones,Osmosis vs. Thrax  Scene,tt0181739\nFnPOuK9RHH0,2001.0,2,9,2017,Osmosis Jones,\"Careful, I'm Contagious  Scene\",tt0181739\n5c1qYWHkPEc,2001.0,8,9,2017,Osmosis Jones,Pep Talk at Bladder Station  Scene,tt0181739\nMucDLDFYNDE,2001.0,3,9,2017,Osmosis Jones,The Smell of Change  Scene,tt0181739\nNlREC9TagHY,2001.0,7,9,2017,Osmosis Jones,Big Bad Pickanosis  Scene,tt0181739\nmGAaR9KKszs,2001.0,6,9,2017,Osmosis Jones,Fluish Informant  Scene,tt0181739\n0_0U4bhe6ag,2001.0,4,9,2017,Osmosis Jones,The Baddest Illness You've Ever Seen  Scene,tt0181739\nRn0Qk4aHYfs,2001.0,5,9,2017,Osmosis Jones,Blowing the Snot Dam  Scene,tt0181739\nCU7-qLo7GPo,2001.0,1,9,2017,Osmosis Jones,Germicidal Maniac  Scene,tt0181739\nA0FwoprE1cQ,1997.0,5,10,2017,Mad City,Is Anybody Listening? Scene,tt0119592\nj_1k-SzcOrs,1997.0,10,10,2017,Mad City,We Killed Him Scene,tt0119592\n89FuExOuBbI,1997.0,8,10,2017,Mad City,Shots Fired Scene,tt0119592\nWm_7niZcI1s,1997.0,4,10,2017,Mad City,Public Opinion Scene,tt0119592\nCeE4xdFmuVs,1997.0,9,10,2017,Mad City,You're Going to Destroy Him Scene,tt0119592\nY9HqtZTcTJk,1997.0,7,10,2017,Mad City,I Ain't Going to Prison Scene,tt0119592\nNvKYxRmWYEs,1997.0,6,10,2017,Mad City,I Just Want to Go Home Scene,tt0119592\nGbOXTIymvqc,1997.0,1,10,2017,Mad City,We Have Real News Scene,tt0119592\nRehVwEopIQ4,1997.0,2,10,2017,Mad City,Shot on Live TV Scene,tt0119592\no-kmndqHfF0,1997.0,3,10,2017,Mad City,Helping a Negotiation Scene,tt0119592\nJou60MhXBcw,1992.0,3,12,2017,Diggstown,Boxing and Betting Scene,tt0104107\ngtngV41jpcw,1992.0,1,12,2017,Diggstown,The Warden Don't Carry Blanks Scene,tt0104107\nb1MxW8nf_lU,1992.0,10,12,2017,Diggstown,One Punch Knockout Scene,tt0104107\nQ_GqOe9HFRY,1992.0,4,12,2017,Diggstown,Caine Meets Emily Scene,tt0104107\n_kGt7Vv2Pyw,1992.0,6,12,2017,Diggstown,John Gillon's Plan Scene,tt0104107\nlMiVewLfZKI,1992.0,12,12,2017,Diggstown,I'm Stopping the Fight Scene,tt0104107\nP20hrE8pmoI,1992.0,7,12,2017,Diggstown,Flatulence Scene,tt0104107\n9di5MvVZb1k,1992.0,5,12,2017,Diggstown,Old Man Training Scene,tt0104107\n0ePC0mh4rCY,1992.0,8,12,2017,Diggstown,Desperation Scene,tt0104107\nWlvCTpjwaXE,1992.0,9,12,2017,Diggstown,You Better Win Scene,tt0104107\niwxe2sIgQL0,1992.0,2,12,2017,Diggstown,Hustler and a Con Man Scene,tt0104107\n6l0tsxNujWA,1992.0,11,12,2017,Diggstown,You Are Black Scene,tt0104107\nhjuvr5uGA4s,1949.0,9,10,2017,Adam's Rib,Licorice Scene,tt0041090\nn7l2RLvI7Ss,1939.0,3,8,2017,The Roaring Twenties,The Truth Behind the Fantasy Scene,tt0031867\nq8woScnBklo,1939.0,8,8,2017,The Roaring Twenties,He Used to Be a Big Shot Scene,tt0031867\nlKh7qSp6zIc,1939.0,2,8,2017,The Roaring Twenties,If I Ever Get Back Scene,tt0031867\ntNuPwipxx94,1939.0,5,8,2017,The Roaring Twenties,A Partnership Built on Betrayal Scene,tt0031867\nQuZ_ak2qxeE,1939.0,7,8,2017,The Roaring Twenties,Here's One Rap Ya Won't Beat Scene,tt0031867\nFhXn_kxlWno,1939.0,1,8,2017,The Roaring Twenties,Making Friends in a Shell Hole Scene,tt0031867\nD143VuAxr-k,1939.0,6,8,2017,The Roaring Twenties,He Had it Coming Scene,tt0031867\n2NR-tebGw3U,1939.0,4,8,2017,The Roaring Twenties,The Boat Raid Scene,tt0031867\nJxbvOwAB-xI,1949.0,4,10,2017,Adam's Rib,A Woman Scorned Scene,tt0041090\nVR0NIF6PbCo,1949.0,3,10,2017,Adam's Rib,Equal Rights for Women Scene,tt0041090\nyAmTu-R5MQM,1949.0,1,10,2017,Adam's Rib,This Deplorable System Scene,tt0041090\nPOu3JnhEmT4,1949.0,6,10,2017,Adam's Rib,Contempt for the Law Scene,tt0041090\n8RGjds-aK00,1949.0,8,10,2017,Adam's Rib,Mutual Everything,tt0041090\n6oqDO7aHVFo,1949.0,5,10,2017,Adam's Rib,A Little Slap Scene,tt0041090\nhdQOL2aFufE,1949.0,7,10,2017,Adam's Rib,Equality Scene,tt0041090\nHl9OzCY9fVE,1949.0,10,10,2017,Adam's Rib,Vive Le Difference Scene,tt0041090\nP27sTXSGrhQ,1949.0,2,10,2017,Adam's Rib,A Word in Edgewise Scene,tt0041090\ni-2kXcQgs_w,1988.0,4,10,2017,Colors,Nothing But a Gangster Scene,tt0094894\n003kLKX8n3E,1988.0,2,10,2017,Colors,Hodges' Alley Scene,tt0094894\n00I2Ofraf4A,1988.0,10,10,2017,Colors,One-Eight-Seven Scene,tt0094894\nvhfk-aOAgIE,1988.0,9,10,2017,Colors,Gangster Dance Party Scene,tt0094894\nf4wmj-Nq9xA,1988.0,8,10,2017,Colors,T-Bone Represents Scene,tt0094894\nVxKyoOxyrdU,1988.0,1,10,2017,Colors,Drive-By Scene,tt0094894\nLJQAKDbq0hI,1988.0,3,10,2017,Colors,The One About the Two Bulls Scene,tt0094894\nDkGLIu6lnT4,1988.0,6,10,2017,Colors,Chasing High Top Scene,tt0094894\nt80UDdbV3Mk,1952.0,1,10,2017,Hans Christian Andersen,The King's New Clothes Scene,tt0044685\njn_D02Tvr4k,1988.0,5,10,2017,Colors,Five Names Scene,tt0094894\nzYTsJkuEPWQ,1988.0,7,10,2017,Colors,T-Bone's Rabbit Scene,tt0094894\nZDbWeYRT7wo,1952.0,4,10,2017,Hans Christian Andersen,Thumbelina Scene,tt0044685\n0RDDbfd_K74,1952.0,7,10,2017,Hans Christian Andersen,A Surprise in the Newspaper Scene,tt0044685\n-Ok6Y77DeNA,1952.0,6,10,2017,Hans Christian Andersen,The Ugly Duckling Scene,tt0044685\nn_lSwXF8wfw,1952.0,5,10,2017,Hans Christian Andersen,The Ballerina's Shoes Scene,tt0044685\nKx56Aefjn7s,1952.0,10,10,2017,Hans Christian Andersen,You'll Go On Telling Stories Scene,tt0044685\nZ7QbvD-gd0s,1952.0,8,10,2017,Hans Christian Andersen,The Little Mermaid Scene,tt0044685\nUsBN2NyjX94,1952.0,2,10,2017,Hans Christian Andersen,I've Never Seen a Worrier Like You Scene,tt0044685\nS3phStzHz34,1952.0,3,10,2017,Hans Christian Andersen,Either He Leaves or I Do Scene,tt0044685\nM1TkG_zlh6E,1952.0,9,10,2017,Hans Christian Andersen,I Let My Heart Speak Scene,tt0044685\nFPtvpjBEEqo,1978.0,3,7,2017,The Last Waltz,Helpless Scene,tt0077838\nZ2eTW8qZBtk,1978.0,4,7,2017,The Last Waltz,The Weight Scene,tt0077838\n-zNnJiwo_5Y,1978.0,7,7,2017,The Last Waltz,\"Baby, Let Me Follow You Down Scene\",tt0077838\n6dDbnwQlCek,1978.0,5,7,2017,The Last Waltz,The Night They Drove Old Dixie Down Scene,tt0077838\nQzgJIF00Xdw,1978.0,6,7,2017,The Last Waltz,Caravan Scene,tt0077838\nJsdUzN20Sow,1978.0,2,7,2017,The Last Waltz,Up on Cripple Creek Scene,tt0077838\nki3zzZ-GsGI,1978.0,1,7,2017,The Last Waltz,Don't Do It Scene,tt0077838\nO3-W1ng-UWI,1989.0,9,11,2017,She-Devil,Sad Mary Fisher Scene,tt0098309\nmTYe5PvlRno,1989.0,6,11,2017,She-Devil,French for Dog Puke Scene,tt0098309\n9f1adgpyRjM,1989.0,5,11,2017,She-Devil,The Kids' New Home Scene,tt0098309\nVbBi8ZIWbUc,1989.0,3,11,2017,She-Devil,\"Four Assets, One Liability Scene\",tt0098309\nJ_wbvP9hEFQ,1989.0,2,11,2017,She-Devil,Dinner Disaster Scene,tt0098309\nAEYh9Sh6kk8,1989.0,10,11,2017,She-Devil,Taking Back Control Scene,tt0098309\nrGtJbW9sRbo,1989.0,8,11,2017,She-Devil,The New Novel Scene,tt0098309\nUPhZaK9jxYs,1989.0,1,11,2017,She-Devil,Mary's Research Scene,tt0098309\nxqtbz-pVp2g,1989.0,7,11,2017,She-Devil,Olivia Honey Scene,tt0098309\nW5-oHwzdWos,1989.0,11,11,2017,She-Devil,Court Hearing Scene,tt0098309\nZ9zrMe8Gn1E,1989.0,4,11,2017,She-Devil,Ruth's Exit Scene,tt0098309\nN6bOUves6hI,1992.0,7,11,2017,Article 99,A Disgrace to the Profession Scene,tt0101371\nX8qBorenkn8,1992.0,10,11,2017,Article 99,Unconditional Surrender Scene,tt0101371\n2NkV6POGLOc,1992.0,8,11,2017,Article 99,Patients' Effects Scene,tt0101371\nBuN4WOVbk7s,1992.0,11,11,2017,Article 99,No Surrender Scene,tt0101371\nrlXKgVlILbM,1992.0,5,11,2017,Article 99,Turfing the Patients Scene,tt0101371\nQgx38Vxw7Bc,1992.0,9,11,2017,Article 99,Time to Pull the Plug Scene,tt0101371\n81YXRcpQSpE,1992.0,6,11,2017,Article 99,Counting Q-Tips Scene,tt0101371\nLurs1FzrSio,1992.0,4,11,2017,Article 99,Taking Hostages Scene,tt0101371\nItDFQOAqEuA,1992.0,3,11,2017,Article 99,Crashing the Hospital Scene,tt0101371\n0GGOfY9uE1Y,1992.0,2,11,2017,Article 99,\"First the Ventricles, Then the Testicles Scene\",tt0101371\nWNUJIR9y-N4,1992.0,1,11,2017,Article 99,There's Always  Scene,tt0101371\n8rlAQ3q4RDk,2003.0,4,9,2017,Jeepers Creepers 2,It Eats Us Scene,tt0301470\nsoynQCpGMz8,2003.0,6,9,2017,Jeepers Creepers 2,Getting a New Head Scene,tt0301470\nlPB6exj8Kgo,2003.0,1,9,2017,Jeepers Creepers 2,Cornfield Attack Scene,tt0301470\nfEA9BJfaaYA,2003.0,3,9,2017,Jeepers Creepers 2,The Creeper Creeps Scene,tt0301470\nnhvRzLcCk40,2003.0,7,9,2017,Jeepers Creepers 2,Harpoon to the Heart Scene,tt0301470\nE6AQQLVI68g,2003.0,8,9,2017,Jeepers Creepers 2,The Creeper Goes Down! Scene,tt0301470\nEVvEtTyJYCo,2003.0,5,9,2017,Jeepers Creepers 2,The Students Fight Back,tt0301470\nisct-XNu38E,2003.0,2,9,2017,Jeepers Creepers 2,Abducting the Adults Scene,tt0301470\n5RGxUKhhRWA,2003.0,9,9,2017,Jeepers Creepers 2,A Bat Out of Hell Scene,tt0301470\n6Tz9krF1K68,1967.0,9,10,2017,Casino Royale,Insignificant Little Monster Scene,tt0061452\nj2MbvFYy_8Y,1967.0,8,10,2017,Casino Royale,Jimmy's Box of Goodies Scene,tt0061452\njVH_NN7phnA,1967.0,10,10,2017,Casino Royale,Dr. Noah is Poisoned Scene,tt0061452\nBGlWalxUId0,1967.0,4,10,2017,Casino Royale,Miss Goodthighs Scene,tt0061452\nOqgFY6ZhOfQ,1967.0,7,10,2017,Casino Royale,Evelyn is Tortured Scene,tt0061452\nSDq_ZTxHLh4,1967.0,6,10,2017,Casino Royale,Vesper is Kidnapped Scene,tt0061452\nmOicvmEloyY,1967.0,5,10,2017,Casino Royale,Le Chiffre Loses to Evelyn Scene,tt0061452\nIrTJjUQ_xGQ,1967.0,3,10,2017,Casino Royale,007 Training Scene,tt0061452\n5U72xvlbn-k,1967.0,2,10,2017,Casino Royale,Firing Squad Fumble Scene,tt0061452\n9ukjNhwdbGY,1967.0,1,10,2017,Casino Royale,To the Laird! Scene,tt0061452\nLiAiWknkwcc,1957.0,12,12,2017,Witness for the Prosecution,Don't Leave Me Scene,tt0051201\nXlEkeUg2z8I,1957.0,11,12,2017,Witness for the Prosecution,Wilfrid Is Duped Scene,tt0051201\nkOfY6wIKT40,1957.0,6,12,2017,Witness for the Prosecution,You've Bombed My Trousers Scene,tt0051201\nMLaMV6zQND4,1957.0,7,12,2017,Witness for the Prosecution,A Hearing Aid Scene,tt0051201\ntskpXGAJMhw,1957.0,10,12,2017,Witness for the Prosecution,Damn You! Damn You! Scene,tt0051201\nV9JniMBfW18,1957.0,9,12,2017,Witness for the Prosecution,Christine in Disguise Scene,tt0051201\ngDOSJkcKPbo,1957.0,8,12,2017,Witness for the Prosecution,A Chronic and Habitual Liar Scene,tt0051201\nMrWZWfsif3E,1957.0,4,12,2017,Witness for the Prosecution,Sneaking a Cigar Scene,tt0051201\nSaz3f-zPYeI,1957.0,5,12,2017,Witness for the Prosecution,I May Never Go Home Scene,tt0051201\nT-ELiRFK_v0,1957.0,3,12,2017,Witness for the Prosecution,Wilfrid's New Lift Scene,tt0051201\n0zImze5PCFg,1957.0,2,12,2017,Witness for the Prosecution,Wilfrid the Fox Scene,tt0051201\nYCiimJ7d2Cs,1957.0,1,12,2017,Witness for the Prosecution,You Talk Too Much Scene,tt0051201\nDII9AQZoUTo,1990.0,8,11,2017,Navy SEALS,Your God Doesn't Help You Now Scene,tt0100232\na7gZgEpgKiY,1990.0,7,11,2017,Navy SEALS,Dead to Rights Scene,tt0100232\noyZblWujofQ,1990.0,9,11,2017,Navy SEALS,A Fiery Rescue Scene,tt0100232\nvUzF61mtilA,1990.0,10,11,2017,Navy SEALS,The Getaway Car Scene,tt0100232\niRIIcZuSiBo,1990.0,5,11,2017,Navy SEALS,Hawkins Gets His Car Back Scene,tt0100232\nV8M4lPWWr3o,1990.0,2,11,2017,Navy SEALS,Bad Timing Scene,tt0100232\ntRRQX1SXcMM,1990.0,11,11,2017,Navy SEALS,Underwater Fight Scene,tt0100232\nWThmGeHf4hA,1990.0,1,11,2017,Navy SEALS,Hawkins Hops Off a Bridge Scene,tt0100232\nJ96X6ei7LRE,1990.0,3,11,2017,Navy SEALS,God Goes Thermal Scene,tt0100232\ntF6XBuvWdPs,1990.0,4,11,2017,Navy SEALS,Naval Intelligence Scene,tt0100232\nIrf50_-vVtI,1990.0,6,11,2017,Navy SEALS,Halo Jumping Scene,tt0100232\ngcGvs4dw9CE,1985.0,2,8,2017,Spies Like Us,What's a Dickfer? Scene,tt0090056\nDV_eqkGxAa4,1985.0,3,8,2017,Spies Like Us,Intelligence Training Scene,tt0090056\ne0xPCas2tHQ,1985.0,7,8,2017,Spies Like Us,Alien Impressions Scene,tt0090056\nhoe24aSvLtw,1985.0,4,8,2017,Spies Like Us,\"Doctor, Doctor Scene\",tt0090056\nd7Aot4Wr-Yo,1985.0,1,8,2017,Spies Like Us,Cheating on the Exam Scene,tt0090056\nT5rzOU-4Bkc,1985.0,8,8,2017,Spies Like Us,Going Out with a Bang Scene,tt0090056\n7Rx90r--Xss,1985.0,6,8,2017,Spies Like Us,Rescue Mission Scene,tt0090056\n1iOnKJA2H7I,1985.0,5,8,2017,Spies Like Us,The Operation Scene,tt0090056\nfB8_lNQJ-JM,1995.0,4,7,2017,Grumpier Old Men,Maybe Scene,tt0113228\nx5z9VZO--G4,1995.0,1,7,2017,Grumpier Old Men,Quite a Catch Scene,tt0113228\nbFfnDQ3bDfA,1995.0,2,7,2017,Grumpier Old Men,Meeting Maria Scene,tt0113228\npJImKCcPIsU,1995.0,6,7,2017,Grumpier Old Men,Max and Maria Scene,tt0113228\nlfKcANi5Zrk,1995.0,7,7,2017,Grumpier Old Men,I Know How To Treat a Lady Scene,tt0113228\ncMPXArN7f9k,1995.0,5,7,2017,Grumpier Old Men,Would it Be Alright if I Kissed You? Scene,tt0113228\n8R8mxS2E_UQ,1995.0,3,7,2017,Grumpier Old Men,My Cannelloni Scene,tt0113228\nPk-vHw-mstI,1985.0,9,9,2017,Mad Max Beyond Thunderdome,\"Goodbye, Soldier Scene\",tt0089530\nc_u4oXd_Lfo,1985.0,7,9,2017,Mad Max Beyond Thunderdome,The Final Chase Scene,tt0089530\nfWx9V0xoYsI,1985.0,2,9,2017,Mad Max Beyond Thunderdome,Underworld Scene,tt0089530\nGbQy-0SzshA,1985.0,5,9,2017,Mad Max Beyond Thunderdome,Mad Max vs. Blaster Scene,tt0089530\nOv2ErYiFemg,1985.0,8,9,2017,Mad Max Beyond Thunderdome,An Air Escape Scene,tt0089530\nywcKkb5buJI,1985.0,1,9,2017,Mad Max Beyond Thunderdome,Welcome to Barter Town Scene,tt0089530\n9yDL0AKUCKo,1985.0,4,9,2017,Mad Max Beyond Thunderdome,\"Two Men Enter, One Man Leaves Scene\",tt0089530\nYLjwEodCmT4,1985.0,6,9,2017,Mad Max Beyond Thunderdome,\"Bust a Deal, Face the Wheel Scene\",tt0089530\nkJ-UZ4DvYBg,1985.0,3,9,2017,Mad Max Beyond Thunderdome,Master Blaster Scene,tt0089530\nZJF_1LQbKiM,1996.0,10,10,2017,Executive Decision,Crash Landing Scene,tt0116253\niewhzdra0DU,1996.0,9,10,2017,Executive Decision,It's Not Over Scene,tt0116253\nXaj3Ohn7YrE,1996.0,2,10,2017,Executive Decision,Elevator Exchange Scene,tt0116253\nNsRhhZPAGLI,1996.0,4,10,2017,Executive Decision,Second In Command Scene,tt0116253\nLtFw6_YJiFs,1996.0,1,10,2017,Executive Decision,Boarding Party Scene,tt0116253\nn3YqrYcnfpE,1996.0,8,10,2017,Executive Decision,Cabin Pressure Scene,tt0116253\nRY_D9rFoWLo,1996.0,7,10,2017,Executive Decision,Taking The Sleeper Scene,tt0116253\n0EQXnRlIbXs,1996.0,3,10,2017,Executive Decision,Inside Help Scene,tt0116253\nNJQz-0F61yA,1996.0,5,10,2017,Executive Decision,Decoy Bomb Scene,tt0116253\nbBHFfXCAPLc,1996.0,6,10,2017,Executive Decision,Hail Mary Scene,tt0116253\nh5nhyFFSweU,1959.0,2,10,2017,North by Northwest,Love on a Train Scene,tt0053125\nGRrLWGMz5XY,1959.0,3,10,2017,North by Northwest,I Like Your Flavor Scene,tt0053125\n7bCca1RYtao,1959.0,10,10,2017,North by Northwest,The Ending Scene,tt0053125\naU9RYKxkRJk,1959.0,8,10,2017,North by Northwest,I've Never Felt More Alive Scene,tt0053125\nnPeH0w6ZXZM,1959.0,9,10,2017,North by Northwest,Mount Rushmore Scene,tt0053125\nL7YVcnBbeeI,1959.0,7,10,2017,North by Northwest,Surprise Shooting Scene,tt0053125\nsIY7BQkbIT8,1959.0,4,10,2017,North by Northwest,The Crop Duster Scene,tt0053125\nA7gKFleV_JU,1959.0,1,10,2017,North by Northwest,Framed for Murder Scene,tt0053125\nXBz2wuGU9Cs,1959.0,5,10,2017,North by Northwest,The Art of Survival Scene,tt0053125\nYEv7cVW8hBA,1959.0,6,10,2017,North by Northwest,A Genuine Idiot Scene,tt0053125\n7qNZYicSJPk,1987.0,3,8,2017,Pelle the Conqueror,Egg Thief Scene,tt0093713\nwIuKvNAGsH4,1987.0,7,8,2017,Pelle the Conqueror,The Widow and the Widower Scene,tt0093713\nsPbOZXWbYNI,1987.0,5,8,2017,Pelle the Conqueror,Niels's Redemption Scene,tt0093713\nObCiRECeCdM,1987.0,6,8,2017,Pelle the Conqueror,Erik's Fate Scene,tt0093713\ntK4GDziddRU,1987.0,1,8,2017,Pelle the Conqueror,A Father's Word Scene,tt0093713\n_P97eUT7NH8,1987.0,4,8,2017,Pelle the Conqueror,I Killed It Scene,tt0093713\nz-p4LnzhnvE,1987.0,2,8,2017,Pelle the Conqueror,Ice Dive Scene,tt0093713\nG2EcYJ6Zjrk,1987.0,8,8,2017,Pelle the Conqueror,Chased Onto the Ice Scene,tt0093713\npQX-KEXTwmM,2011.0,8,8,2017,Resistance,I Will Join You Scene,tt1391116\nFAhcPXtCykY,2011.0,6,8,2017,Resistance,Choices Scene,tt1391116\nDTNDgoCP5TA,2011.0,1,8,2017,Resistance,The Story of Hermann Scene,tt1391116\n6K-d8DN3wDA,2011.0,2,8,2017,Resistance,Why Are You Here? Scene,tt1391116\nSNHn_jgFxIA,2011.0,5,8,2017,Resistance,Collaboration Will Not Be Tolerated Scene,tt1391116\nlXS7GWgCBWM,2011.0,4,8,2017,Resistance,The Boys from the Railroad Scene,tt1391116\nT2SlDOf410Q,2011.0,7,8,2017,Resistance,We Must Leave Scene,tt1391116\njKPc2IbQQOQ,2011.0,3,8,2017,Resistance,Hello There Scene,tt1391116\nbmIP1NM8GwU,2015.0,6,8,2017,The Ardennes,Trailer Fight Scene,tt2586118\np4lBFrh79OI,2015.0,4,8,2017,The Ardennes,Meat in the Trunk Scene,tt2586118\ntwPxMYSEJ-8,2015.0,1,8,2017,The Ardennes,He Takes Care of Me Scene,tt2586118\nQLXSp9erPv0,2015.0,7,8,2017,The Ardennes,It Was Stef's Idea Scene,tt2586118\ngCF11he-_iU,2015.0,2,8,2017,The Ardennes,No One Touches Sylvie Scene,tt2586118\nPywpJSG1dTM,2015.0,8,8,2017,The Ardennes,What Have You Done? Scene,tt2586118\nu_nHHDkfBWQ,2015.0,5,8,2017,The Ardennes,As Brothers Scene,tt2586118\nLyhRCLswT6A,2015.0,3,8,2017,The Ardennes,They're All Whores Scene,tt2586118\n-HjYVQXvxVk,2017.0,4,8,2017,Heidi,Sneaking in Kittens Scene,tt3700392\nEfHvcHYz-tY,2017.0,3,8,2017,Heidi,City Etiquette Scene,tt3700392\nlwH4vtb9GA0,2017.0,5,8,2017,Heidi,Learning to Read Scene,tt3700392\nxM4-RnBk-9Y,2017.0,1,8,2017,Heidi,To A Prominent Family Scene,tt3700392\nmKLjOr5M5zg,2017.0,6,8,2017,Heidi,Leaving Clara Scene,tt3700392\nFH6ODEaH5hI,2017.0,8,8,2017,Heidi,Clara Chases a Butterfly Scene,tt3700392\nKXXwH7C3UjE,2017.0,7,8,2017,Heidi,Country Etiquette Scene,tt3700392\nKkg6cnUZ2vU,2017.0,2,8,2017,Heidi,Teaching Manners Scene,tt3700392\nONRzdzRMVsQ,2001.0,7,9,2017,I Am Sam,All You Need Is Love,tt0277027\ni7QDt-z8ZjY,2001.0,6,9,2017,I Am Sam,It Matters to Me Scene,tt0277027\noBURpv30IkA,2001.0,3,9,2017,I Am Sam,Shoe Shopping Scene,tt0277027\nMqIJKnUkGLY,2001.0,8,9,2017,I Am Sam,A Good Parent Scene,tt0277027\nlRlgx_GFwyI,2001.0,9,9,2017,I Am Sam,People Like Me Scene,tt0277027\n81XTZOlNHEU,2001.0,5,9,2017,I Am Sam,I Wouldn't Want Any Daddy But You Scene,tt0277027\n1SkWbujEeLM,2001.0,4,9,2017,I Am Sam,You Are Not Stupid Scene,tt0277027\ndAlYuokC9R0,2001.0,2,9,2017,I Am Sam,You're Not Like Other Daddies Scene,tt0277027\n9fUtcVIlocI,2001.0,1,9,2017,I Am Sam,Lucy is Born Scene,tt0277027\nKQDbtR9Z-zo,1993.0,3,9,2017,Dennis the Menace,A Apple Scene,tt0106701\nTiz3eN3KJRQ,1993.0,9,9,2017,Dennis the Menace,Eat Your Dinner Scene,tt0106701\neL62rDiuqDE,1993.0,6,9,2017,Dennis the Menace,The Forty Year Orchid Scene,tt0106701\nzUhsEXaj_oY,1993.0,8,9,2017,Dennis the Menace,Tied Up Scene,tt0106701\nfmRWWrBqiJE,1993.0,1,9,2017,Dennis the Menace,Take an Aspirin Scene,tt0106701\nPkCxda_9xRc,1993.0,7,9,2017,Dennis the Menace,Shut Your Yap Scene,tt0106701\nuE8yYJmpxeI,1993.0,5,9,2017,Dennis the Menace,Bathroom Mishaps Scene,tt0106701\nJX2gQZj3-NI,1993.0,4,9,2017,Dennis the Menace,Only a Boy Scene,tt0106701\ndkjBBdHZNUs,1993.0,2,9,2017,Dennis the Menace,Where Babies Come From Scene,tt0106701\n8CZcZ_b-Cmg,1991.0,8,8,2017,Curly Sue,First Day of School Scene,tt0101635\nFT1C1QdiMhw,1991.0,3,8,2017,Curly Sue,Pizza for Dinner Scene,tt0101635\noRe8EuewinY,1991.0,6,8,2017,Curly Sue,Breaking up with Walker Scene,tt0101635\nCL3IXUZKbto,1991.0,7,8,2017,Curly Sue,A New Life Scene,tt0101635\nnS-0lfCTcrk,1991.0,5,8,2017,Curly Sue,I Feel Like an Idiot Scene,tt0101635\nQfv31xWBgGI,1991.0,2,8,2017,Curly Sue,She Was Too Pretty Scene,tt0101635\nBGmXnidRtoA,1991.0,4,8,2017,Curly Sue,Give Her a Chance Scene,tt0101635\nn4pUbyGBD18,1991.0,1,8,2017,Curly Sue,You Killed My Daddy Scene,tt0101635\neU4-wIieuWU,1988.0,9,9,2017,Stand and Deliver,Racism and Discrimination Scene,tt0094027\nPI35KfPB7nM,1988.0,8,9,2017,Stand and Deliver,Accused of Cheating Scene,tt0094027\nmbKiHp_ljJY,1988.0,6,9,2017,Stand and Deliver,Think Cool Scene,tt0094027\nLauRAuoFO0U,1988.0,4,9,2017,Stand and Deliver,The Gigolo Problem Scene,tt0094027\nA2yqIm58ULo,1988.0,3,9,2017,Stand and Deliver,All We Need is Ganas Scene,tt0094027\nvEj9ZwIzk44,1988.0,1,9,2017,Stand and Deliver,Finger Man Scene,tt0094027\nobnODOdLD7k,1988.0,2,9,2017,Stand and Deliver,Tough Guys Don't Do Math Scene,tt0094027\nT8KFieVkVkU,1988.0,7,9,2017,Stand and Deliver,What's Calculus? Scene,tt0094027\na81pNygdAXw,1988.0,5,9,2017,Stand and Deliver,I Want to Teach Calculus Scene,tt0094027\nHIBYaeYQF0k,1997.0,3,9,2017,Selena,Twice As Perfect Scene,tt0120094\nfFE8_U07a5I,1997.0,7,9,2017,Selena,\"Kids, Career and a Farm Scene\",tt0120094\nYR4qgOi7VQ0,1997.0,1,9,2017,Selena,Be Who You Are Scene,tt0120094\nFYnYxm5Awfg,1997.0,8,9,2017,Selena,Don't Know How to Let You Go Scene,tt0120094\naB0ABzNHvAE,1997.0,4,9,2017,Selena,I Love You Scene,tt0120094\n_CuZqXrhEZI,1997.0,6,9,2017,Selena,Let's Get Married Scene,tt0120094\nf86_fLGHu6M,1997.0,5,9,2017,Selena,I Love Him Scene,tt0120094\nKkl4-30oHVU,1997.0,2,9,2017,Selena,Anything for s Scene,tt0120094\na66f39DMwtY,1997.0,9,9,2017,Selena,'s Death Scene,tt0120094\nzkWthOfGYgM,2010.0,7,9,2017,Valentine's Day,One Person for Life Scene,tt0817230\nhbDdiPNS3ck,2010.0,6,9,2017,Valentine's Day,How Did You Guys Meet? Scene,tt0817230\nqVzY2wmo8C4,2010.0,8,9,2017,Valentine's Day,The Lying Stinking Pig Scene,tt0817230\nBR-kA4Jnn8M,2010.0,5,9,2017,Valentine's Day,Young Love Scene,tt0817230\nSTl0s9g_FwA,2010.0,9,9,2017,Valentine's Day,When You Love Someone Scene,tt0817230\ncmgeSY8YdO4,2010.0,4,9,2017,Valentine's Day,I Hate  Scene,tt0817230\nWZNe0TD1E-I,2010.0,1,9,2017,Valentine's Day,The Sweetest Thing Ever Scene,tt0817230\nPBVW7az0PkM,2010.0,3,9,2017,Valentine's Day,A Problem with Romance Scene,tt0817230\n__f2KtcXAxI,2010.0,2,9,2017,Valentine's Day,Valentine Gifts Scene,tt0817230\ntDlL6QWvKNk,1970.0,3,7,2017,The Ballad of Cable Hogue,2 Acres In Cable Springs Scene,tt0065446\n-KVNfZo-cfc,1970.0,7,7,2017,The Ballad of Cable Hogue,A Funeral Sermon Scene,tt0065446\nxcfYbwSXFVw,1970.0,1,7,2017,The Ballad of Cable Hogue,10 Cents a Head Scene,tt0065446\nQyvbqZqQ0xI,1970.0,5,7,2017,The Ballad of Cable Hogue,Worth Something Scene,tt0065446\nMcf2hNBzwqg,1970.0,6,7,2017,The Ballad of Cable Hogue,Revenge Scene,tt0065446\nyxlXYm5Uo08,1970.0,2,7,2017,The Ballad of Cable Hogue,Hildy Scene,tt0065446\nyaoCvjqu_co,1970.0,4,7,2017,The Ballad of Cable Hogue,My Name is Hildy Scene,tt0065446\najm_632U-Ac,1986.0,7,8,2017,Club Paradise,Mama Feels Good Tonight Scene,tt0090856\nRFAiq0Qr6uQ,1986.0,1,8,2017,Club Paradise,Flotsam & Jetsam Scene,tt0090856\nYihADAPOCWU,1986.0,4,8,2017,Club Paradise,Scoring Some Weed Scene,tt0090856\nnS1ePEA5XeQ,1986.0,2,8,2017,Club Paradise,The Sky is Yours Scene,tt0090856\n8DrF70mcr38,1986.0,6,8,2017,Club Paradise,In Jail Scene,tt0090856\nyat2WR8Ishk,1986.0,5,8,2017,Club Paradise,Wrong Tank Scene,tt0090856\n530g3-fuGGU,1986.0,8,8,2017,Club Paradise,Guns in the Sun Scene,tt0090856\n2heRUn56wrg,1986.0,3,8,2017,Club Paradise,Chef Hat Scene,tt0090856\n4qseBKnxIpQ,1988.0,5,9,2017,Crossing Delancey,This One I'll Meet Scene,tt0094921\n76pNjmVp58w,1988.0,8,9,2017,Crossing Delancey,Ida's Story Scene,tt0094921\nB3thiUpvzKo,1988.0,2,9,2017,Crossing Delancey,I Don't Need That Scene,tt0094921\n40JQrUnvKUw,1988.0,4,9,2017,Crossing Delancey,A New Hat Scene,tt0094921\noQIubudKQQE,1988.0,6,9,2017,Crossing Delancey,Awkward Introduction Scene,tt0094921\npWt-GnERki0,1988.0,1,9,2017,Crossing Delancey,Meeting the Matchmaker Scene,tt0094921\nMP414NY4kfA,1988.0,7,9,2017,Crossing Delancey,Get It Right Scene,tt0094921\nHAal8jdk5gk,1988.0,9,9,2017,Crossing Delancey,A Good Match Scene,tt0094921\nKxyzb8LbVKQ,1988.0,3,9,2017,Crossing Delancey,This Isn't My Style Scene,tt0094921\n5rOdGpkURD8,1983.0,2,10,2017,Christine,Choking the New Girlfriend Scene,tt0085333\nIurXrQqZufM,1983.0,9,10,2017,Christine,Death on Wheels Scene,tt0085333\n056HlHORCIU,1998.0,5,10,2017,The Avengers,\"Insects, Bigger Every Year Scene\",tt0118661\nTx1mcALQCFg,1998.0,9,10,2017,The Avengers,High Wire Fight Scene,tt0118661\nIqiyy26sW-Q,1998.0,6,10,2017,The Avengers,I Hope He Was a Baddie Scene,tt0118661\nmsqRzlYXXQE,1998.0,8,10,2017,The Avengers,Going Mad Scene,tt0118661\nw_5OidjXy5o,1998.0,10,10,2017,The Avengers,Time to Die Scene,tt0118661\nIjGKv209gAE,1998.0,1,10,2017,The Avengers,Secret Agent John Steed Scene,tt0118661\nW1c-QSe7uU0,1998.0,3,10,2017,The Avengers,Welcome to Wonderland Weather Scene,tt0118661\noXpKBkMq_OM,1998.0,4,10,2017,The Avengers,A Silly Thing to Do Scene,tt0118661\njCh_3SFr7M4,1998.0,2,10,2017,The Avengers,A Lady of Hidden Talents Scene,tt0118661\nHGL0CEjSHog,1998.0,7,10,2017,The Avengers,Never Trust the Weather Scene,tt0118661\nxrO8AQ4CrKk,1983.0,5,10,2017,Christine,\"Run, Moochie, Run Scene\",tt0085333\nzNSDAaeIh7U,1983.0,6,10,2017,Christine,The Fiery Fury Scene,tt0085333\noezKQEF0deY,1983.0,4,10,2017,Christine,Show Me Scene,tt0085333\ngt6_2qd75F8,1983.0,10,10,2017,Christine,Gets Crushed Scene,tt0085333\nA8BfSnbFxj4,1983.0,7,10,2017,Christine,A Life Ending Seat Adjustment Scene,tt0085333\n4koPfEQVo44,1983.0,1,10,2017,Christine,\"Body by Plymouth, Soul by Satan Scene\",tt0085333\nHYqSugRiG5Y,1983.0,8,10,2017,Christine,Love Eats Everything Scene,tt0085333\ngjjJePytKig,1983.0,3,10,2017,Christine,The Wrecking Crew Scene,tt0085333\nAOVHdyazjWM,2014.0,5,10,2017,Endless Love,I Love You Scene,tt2318092\noVLfIoIujHE,2014.0,8,10,2017,Endless Love,Meet Me Tonight Scene,tt2318092\nM8yhM7zXdSI,2014.0,1,10,2017,Endless Love,Earning Our Three Minutes Scene,tt2318092\n1J1osn73VYs,2014.0,3,10,2017,Endless Love,She's Amazing Scene,tt2318092\nwxV84RoUr_U,2014.0,10,10,2017,Endless Love,Love You Fight For Scene,tt2318092\nXlJpElakwP4,2014.0,2,10,2017,Endless Love,Dance Contest Scene,tt2318092\nbpNxVXA5dcQ,2014.0,4,10,2017,Endless Love,Jade's First Time Scene,tt2318092\n3bHDHRxatZg,2014.0,9,10,2017,Endless Love,It's Not Too Late Scene,tt2318092\n_GAA_LvDQMQ,2014.0,6,10,2017,Endless Love,You're a Coward Scene,tt2318092\nRHVyIHN6qOE,2014.0,7,10,2017,Endless Love,If It's Meant to Be Scene,tt2318092\nVBHqNEADzfY,2013.0,7,10,2017,A Birder's Guide to Everything,Carpe Diem Scene,tt1582465\nrzC1mABvnao,2013.0,8,10,2017,A Birder's Guide to Everything,Don't Confuse Me With a Role Model Scene,tt1582465\nx3Uw69aKF-Y,2013.0,4,10,2017,A Birder's Guide to Everything,\"Fillers, Listers and Watchers Scene\",tt1582465\nB1OK0eWfDB8,2013.0,1,10,2017,A Birder's Guide to Everything,Young Birder's Society Scene,tt1582465\n-48m6UiKt_0,2013.0,2,10,2017,A Birder's Guide to Everything,A Lazarus Species Scene,tt1582465\nNvUnzCHEfoo,2013.0,5,10,2017,A Birder's Guide to Everything,Dork Baiting Scene,tt1582465\nKwZmZ6mybdo,2013.0,9,10,2017,A Birder's Guide to Everything,David's Duck Scene,tt1582465\ncFl_xXXCo3s,2013.0,6,10,2017,A Birder's Guide to Everything,I Don't Really Have a Boyfriend Scene,tt1582465\nlQdx2baN7Co,2013.0,3,10,2017,A Birder's Guide to Everything,Project ANAS Scene,tt1582465\n5KgptmAR3KM,2013.0,10,10,2017,A Birder's Guide to Everything,You Shot An Extinct Duck Scene,tt1582465\njDD8IQgUPEU,1942.0,2,10,2017,The Magnificent Ambersons,A Princely Terror Scene,tt0035015\n326RvY72nmE,2001.0,6,10,2017,Summer Catch,Lawn Girl Scene,tt0234829\nwt0klpk3tBA,2001.0,5,10,2017,Summer Catch,Coming Undone Scene,tt0234829\nvOJ1HPBID5A,2001.0,4,10,2017,Summer Catch,I'm the Nothing You Picked Scene,tt0234829\ncE5l32W6Oxc,2001.0,8,10,2017,Summer Catch,Another Baseball Legend Scene,tt0234829\nV4UM9BrSqos,2001.0,2,10,2017,Summer Catch,Not That You're Fat Scene,tt0234829\nJzVCSXWeNnA,2001.0,9,10,2017,Summer Catch,Gonna Miss You Scene,tt0234829\na7XZaIy4a9k,2001.0,3,10,2017,Summer Catch,Allow Yourself to Succeed Scene,tt0234829\n-Svsz19yyPM,2001.0,1,10,2017,Summer Catch,Thong Boy Scene,tt0234829\nxz3nif1TPDk,2001.0,10,10,2017,Summer Catch,I Love Her Scene,tt0234829\nChD8PRF0hBg,2001.0,7,10,2017,Summer Catch,Why Are You So Scared? Scene,tt0234829\n3jWrsTACVn4,1990.0,3,8,2017,Young Einstein,The Theory of Relativity Scene,tt0096486\nIkVavN1lo9E,1990.0,8,8,2017,Young Einstein,Returning Home Scene,tt0096486\n9YgorDRKoEo,1990.0,7,8,2017,Young Einstein,Atomic Overload Scene,tt0096486\nx9mLSJS0n3Q,1990.0,4,8,2017,Young Einstein,Einstein's Success Scene,tt0096486\nuhkfz535fR8,1990.0,6,8,2017,Young Einstein,Rock and Roll Scene,tt0096486\nPXaE-weoKCo,1990.0,5,8,2017,Young Einstein,Mad Scientist's Dinner Scene,tt0096486\nyQVdwJcerjw,1990.0,2,8,2017,Young Einstein,Marie Curie Scene,tt0096486\nRa7oqFqj9uU,1990.0,1,8,2017,Young Einstein,Bubbles into Beer Scene,tt0096486\nJSX5qtBpL2g,1962.0,8,12,2017,The Manchurian Candidate,A Cold War Scene,tt0056218\np3ZnaRMhD_A,1962.0,11,12,2017,The Manchurian Candidate,I Wanted a Killer Scene,tt0056218\nw_92-vVfgrw,1963.0,8,10,2017,\"It's a Mad, Mad, Mad, Mad World\",Raining Money Scene,tt0057193\nFxvvnlcqLz0,1963.0,7,10,2017,\"It's a Mad, Mad, Mad, Mad World\",Chasing Captain Culpepper Scene,tt0057193\nHln19l9RtWg,1963.0,2,10,2017,\"It's a Mad, Mad, Mad, Mad World\",Preoccupation With Bosoms Scene,tt0057193\nBnnkcdH5v14,1963.0,6,10,2017,\"It's a Mad, Mad, Mad, Mad World\",The Money Is Found Scene,tt0057193\nCY5X8DD0ams,1963.0,4,10,2017,\"It's a Mad, Mad, Mad, Mad World\",Everything's Going Wrong Scene,tt0057193\n1fp6lBNB7aw,1963.0,3,10,2017,\"It's a Mad, Mad, Mad, Mad World\",Fisticuffs Scene,tt0057193\nj-7pVks8avo,1963.0,1,10,2017,\"It's a Mad, Mad, Mad, Mad World\",Every Man for Himself Scene,tt0057193\nTt-GdLwV4dA,1963.0,9,10,2017,\"It's a Mad, Mad, Mad, Mad World\",Ladder Rescue Scene,tt0057193\nvZqr-1GJIAk,1963.0,10,10,2017,\"It's a Mad, Mad, Mad, Mad World\",Laughing in the Hospital Scene,tt0057193\noiYBUM-EE-w,1963.0,5,10,2017,\"It's a Mad, Mad, Mad, Mad World\",Pull Over Scene,tt0057193\nU1GUJMTmoMY,1962.0,1,12,2017,The Manchurian Candidate,Manchurian Garden Club Scene,tt0056218\nTzNPYPp_v78,1962.0,4,12,2017,The Manchurian Candidate,The Red Queen Scene,tt0056218\nD7tCnGstwcs,1962.0,7,12,2017,The Manchurian Candidate,Rose Picks Up Marco Scene,tt0056218\nsTcofHd5IlE,1962.0,6,12,2017,The Manchurian Candidate,Marco Fights Chunjin Scene,tt0056218\nwH-i4ImreXs,1962.0,2,12,2017,The Manchurian Candidate,Marco's Nightmare Scene,tt0056218\nMZXC37sbqUM,1962.0,5,12,2017,The Manchurian Candidate,Meeting Rose on the Train Scene,tt0056218\nGI67NK5cmxk,1962.0,9,12,2017,The Manchurian Candidate,Killing Senator Jordan and Jocie Scene,tt0056218\nUwfFWXUEyfQ,1962.0,12,12,2017,The Manchurian Candidate,Assassination Scene,tt0056218\nb8Dv782UIb4,1962.0,3,12,2017,The Manchurian Candidate,Melvin's Nightmare Scene,tt0056218\nEnfAVLatlmY,1962.0,10,12,2017,The Manchurian Candidate,52 Red Queens Say Its Over Scene,tt0056218\n3EeGyS1BOGk,1942.0,9,10,2017,The Magnificent Ambersons,It's Not Hot! It's Cold! Scene,tt0035015\nYauDSh8CfwI,1942.0,7,10,2017,The Magnificent Ambersons,\"Goodbye, Lucy Scene\",tt0035015\nYs_zYL7K3KQ,1942.0,8,10,2017,The Magnificent Ambersons,Major Amberson Scene,tt0035015\n3pEtiCv07Yc,1942.0,3,10,2017,The Magnificent Ambersons,The Queer Looking Duck Scene,tt0035015\nvA1fVHBWuBU,1942.0,5,10,2017,The Magnificent Ambersons,Automobiles Are a Useless Nuisance Scene,tt0035015\ncorlGzKJqAc,1942.0,1,10,2017,The Magnificent Ambersons,The Magnificence of the Ambersons Scene,tt0035015\ndUbNFv_h6Kc,1942.0,4,10,2017,The Magnificent Ambersons,Get a Horse Scene,tt0035015\ndudDh8KZiTE,1942.0,6,10,2017,The Magnificent Ambersons,The Talk of the Town Scene,tt0035015\nBrWwVhnztcg,1942.0,10,10,2017,The Magnificent Ambersons,George's Comeuppance Scene,tt0035015\nRZdQIbRXNCU,2011.0,5,10,2017,The Change-Up,How to Be a Grownup Scene,tt1488555\n6p-S9nS21Wc,2011.0,4,10,2017,The Change-Up,Feeding the Twins Scene,tt1488555\nKaqzKhM9-nU,2011.0,6,10,2017,The Change-Up,You Two Should Go Out Scene,tt1488555\nf0sDG0nnftw,2011.0,7,10,2017,The Change-Up,Violence is Cool Scene,tt1488555\n4G6VXPkfDvo,2011.0,8,10,2017,The Change-Up,Something We Really Regret Scene,tt1488555\ncgoMJXAmLdc,2011.0,3,10,2017,The Change-Up,Guns Hot Scene,tt1488555\nQ0IQ3GHGXdM,2011.0,1,10,2017,The Change-Up,Sabotaging the Merger Scene,tt1488555\n-2KGPYEFnsU,2011.0,9,10,2017,The Change-Up,We Always Come Second Scene,tt1488555\nlCcWPDXqKi0,2011.0,10,10,2017,The Change-Up,We Are Here to Have Fun Scene,tt1488555\n1eSURYocFiM,2011.0,2,10,2017,The Change-Up,Somehow We Switched Bodies Scene,tt1488555\nvr2jJkcTcxk,2007.0,10,10,2017,Charlie Bartlett,Dinner and a Movie Scene,tt0423977\nVmo12BffgQc,2007.0,6,10,2017,Charlie Bartlett,Yankee Doodle Dandy Scene,tt0423977\nRNJ7CL89IFM,2007.0,8,10,2017,Charlie Bartlett,Backseat Date Scene,tt0423977\ngTt8yvw4MJE,2007.0,1,10,2017,Charlie Bartlett,Fake I.D.s Scene,tt0423977\nJCGqUJddlS4,2007.0,2,10,2017,Charlie Bartlett,Those Were the Days Scene,tt0423977\nCvoAG6pgdC4,2007.0,3,10,2017,Charlie Bartlett,Misadventures of a Teenage Renegade Scene,tt0423977\nVlfBJLU-8us,2007.0,7,10,2017,Charlie Bartlett,First Kiss Scene,tt0423977\nvAYzTJIog1U,2007.0,9,10,2017,Charlie Bartlett,Charlie's First Time Scene,tt0423977\n-arTRBtT9d4,2007.0,5,10,2017,Charlie Bartlett,After School Fights Scene,tt0423977\nQHU65AAx6uk,2007.0,4,10,2017,Charlie Bartlett,Popping Pills Scene,tt0423977\njNIMe9C25BY,2001.0,1,10,2017,Charlotte Gray,Bravery Scene,tt0245046\nq_xuviCDyCk,2001.0,2,10,2017,Charlotte Gray,Arrested Scene,tt0245046\nv7tTCb-WU-A,2001.0,7,10,2017,Charlotte Gray,Leave With Me Scene,tt0245046\ng2GlXX8nFHg,2001.0,10,10,2017,Charlotte Gray,My Name is  Scene,tt0245046\n6rbUAMnadso,2001.0,3,10,2017,Charlotte Gray,Blowing the Train Scene,tt0245046\nNTvvUL9OgLU,2001.0,8,10,2017,Charlotte Gray,The Letter Scene,tt0245046\nz4NqFwQCHQg,2001.0,9,10,2017,Charlotte Gray,Can't Go Back Scene,tt0245046\nJf_AooayjPw,2001.0,4,10,2017,Charlotte Gray,Somebody Told Them Scene,tt0245046\nXKlt7H8_De0,2001.0,5,10,2017,Charlotte Gray,Jewish Heritage Scene,tt0245046\nv6Tkyyi43OU,2001.0,6,10,2017,Charlotte Gray,Kiss Me Scene,tt0245046\nssZ1pf2Zuas,1990.0,6,10,2017,Reversal of Fortune,You're Debating Me Scene,tt0100486\nFrxenZhf78I,1990.0,2,10,2017,Reversal of Fortune,Everybody Hates You Scene,tt0100486\n1fN7M_u4xt0,1990.0,5,10,2017,Reversal of Fortune,You Think I'm Scum? Scene,tt0100486\nB13fDbQ75Sk,1990.0,9,10,2017,Reversal of Fortune,Introducing New Evidence Scene,tt0100486\na7Y0CTo21uQ,1990.0,7,10,2017,Reversal of Fortune,Be a Man! Scene,tt0100486\nN5PNlMUcaPE,1990.0,4,10,2017,Reversal of Fortune,Why Help Guilty People? Scene,tt0100486\nDCW8XHP8ap4,1990.0,3,10,2017,Reversal of Fortune,What an Innocent Man Would Say Scene,tt0100486\n15bAAD-awjk,1990.0,10,10,2017,Reversal of Fortune,\"Morally, You're on Your Own Scene\",tt0100486\nY5L_REhifRg,1990.0,1,10,2017,Reversal of Fortune,A Vegetable Scene,tt0100486\nm7gCydjomXE,1990.0,8,10,2017,Reversal of Fortune,You Have No Idea Scene,tt0100486\n5H7YGAM9Na0,1987.0,9,9,2017,Nuts,The Judge's Decision Scene,tt0093660\nCDwnIJ5ohu4,1987.0,8,9,2017,Nuts,I Won't Be  for You Scene,tt0093660\nL0PPveTZVsw,1987.0,4,9,2017,Nuts,A Father's Dark Secret Scene,tt0093660\nd1ZUnCbVoZQ,1987.0,5,9,2017,Nuts,Do You Understand Manslaughter? Scene,tt0093660\nl7X3t5SOcFY,1987.0,2,9,2017,Nuts,They Say You're Crazy Scene,tt0093660\nAOv5WvKX57s,1987.0,6,9,2017,Nuts,Money for Fantasies Scene,tt0093660\n0_UCPY-mSZU,1987.0,3,9,2017,Nuts,I'm a Sane Woman Scene,tt0093660\noMt4F9ELo3U,1987.0,1,9,2017,Nuts,I'm Not Incompetent Scene,tt0093660\nBo-2-sJi7Uk,1987.0,7,9,2017,Nuts,Do You Trust Anyone Here? Scene,tt0093660\nppfnHlRju7Y,1998.0,7,10,2017,Virus,You Are  Scene,tt0120458\nMeHr3ZYy_g8,1998.0,6,10,2017,Virus,Robotic Friends Scene,tt0120458\nUISLDo5JtiI,1998.0,4,10,2017,Virus,Robot Factory Scene,tt0120458\nOlt04UetqMA,1998.0,1,10,2017,Virus,Space Station Power Surge Scene,tt0120458\ngAbn72Nu_MM,1998.0,3,10,2017,Virus,A Trigger Happy Surprise Scene,tt0120458\nPKnfWnfvSGM,1998.0,10,10,2017,Virus,Destroying Hardware Scene,tt0120458\n13UIqhovLmI,1998.0,8,10,2017,Virus,A Cyborg Captain Scene,tt0120458\nusImFOQQEIg,1998.0,2,10,2017,Virus,Tiny Terror in the Engine Room Scene,tt0120458\njcjMYkD-e80,1998.0,9,10,2017,Virus,Tortured By a Killer Machine Scene,tt0120458\nk_tU5DWlyeo,1998.0,5,10,2017,Virus,A New Life Form Scene,tt0120458\nqV6EOCw8Zu8,2010.0,9,10,2017,Skyline,Nowhere to Run Scene,tt1564585\nMxMpRqQQ6o4,1989.0,2,10,2017,Her Alibi,I Do Not Like Bugs Scene,tt0097500\nt8vRwv9kRjg,1989.0,7,10,2017,Her Alibi,Words of Love Scene,tt0097500\naSwi8mzc1gA,1989.0,1,10,2017,Her Alibi,I Confess Scene,tt0097500\n7ZTCXQOU5oM,1989.0,10,10,2017,Her Alibi,Clown Fight Scene,tt0097500\nxXLQhqwMT3A,1989.0,8,10,2017,Her Alibi,The Explosion Scene,tt0097500\njc2T3qbPJNI,1989.0,6,10,2017,Her Alibi,Romanian Driver Scene,tt0097500\n8MSvuqf--9o,1989.0,5,10,2017,Her Alibi,Getting the Shaft Scene,tt0097500\nRcZo8hHZqkY,1989.0,4,10,2017,Her Alibi,Doing Something Scene,tt0097500\nvXXDqjLe4Ls,1989.0,3,10,2017,Her Alibi,Sexy Haircut Scene,tt0097500\nZBqZpBkiLiI,1989.0,9,10,2017,Her Alibi,Opening Up to the Family Scene,tt0097500\nH7zXX6EqGbI,1998.0,6,9,2017,A Perfect Murder,Steven's Story Scene,tt0120787\nG7_Mq3-ivsM,1998.0,9,9,2017,A Perfect Murder,The Key Scene,tt0120787\nm2tk7RatWsk,1998.0,8,9,2017,A Perfect Murder,Wet Work Scene,tt0120787\nxeLH_cCCgr0,1998.0,5,9,2017,A Perfect Murder,Blackmail Scene,tt0120787\nTMeiAg1kXKs,1998.0,7,9,2017,A Perfect Murder,Lies Scene,tt0120787\nja00D_L5tm8,1998.0,4,9,2017,A Perfect Murder,Something Wrong? Scene,tt0120787\n5cbim7n9ARs,1998.0,3,9,2017,A Perfect Murder,Planning the Murder Scene,tt0120787\njy9IGBTGVRQ,1998.0,2,9,2017,A Perfect Murder,Killing My Wife Scene,tt0120787\nJanwLiyFPAU,1998.0,1,9,2017,A Perfect Murder,Nice to Meet You Scene,tt0120787\nhQm4WGUJtQo,1995.0,2,10,2017,Murder in the First,3 Years Lost Scene,tt0113870\nF9ScROJxATc,1995.0,4,10,2017,Murder in the First,I Accuse Alcatraz Scene,tt0113870\nNZ-u1BXI0YQ,1995.0,7,10,2017,Murder in the First,Inhumane Treatment Scene,tt0113870\nhR8yyXbTjNg,1995.0,8,10,2017,Murder in the First,It is Not Okay Scene,tt0113870\naTc9vNCS8vo,1995.0,3,10,2017,Murder in the First,30 Minutes of Exercise Scene,tt0113870\nJZzbTqTLiqU,1995.0,10,10,2017,Murder in the First,I Won Scene,tt0113870\n9zdo9xIvR9M,1995.0,1,10,2017,Murder in the First,Action Reaction Scene,tt0113870\nYwUShaY_lew,1995.0,9,10,2017,Murder in the First,Stop Being Afraid Scene,tt0113870\nANAUjvgYxjQ,1995.0,6,10,2017,Murder in the First,I Am Not the Bad Guy Scene,tt0113870\nXiXa1C9FECU,1995.0,5,10,2017,Murder in the First,They Will Eat You For Breakfast Scene,tt0113870\np_jspptikh8,2007.0,3,7,2017,The Reaping,Bugs For Dinner Scene,tt0444682\nGfhCds4VHbo,2007.0,7,7,2017,The Reaping,God's Will Scene,tt0444682\nBVrhwsgCuFU,2007.0,5,7,2017,The Reaping,Are You Gonna Kill My Girl? Scene,tt0444682\n57MtQQ5sm24,2007.0,6,7,2017,The Reaping,The Queen of Locusts Scene,tt0444682\nNWUxk3JPaqU,2007.0,4,7,2017,The Reaping,Mad Cow Scene,tt0444682\nTt2oL1sVVhM,2009.0,9,10,2017,The Unborn,When An Exorcism Fails Scene,tt1139668\nioQQ3gbY0vY,2009.0,4,10,2017,The Unborn,The Glory Hole of Terror Scene,tt1139668\ngq5WIcSz2ko,2009.0,6,10,2017,The Unborn,Chased by the Dybbuk Scene Scene,tt1139668\nRsSltFwkLPE,2009.0,3,10,2017,The Unborn,The Child Behind the Mirror Scene,tt1139668\nn9uVWlO0GAs,2009.0,5,10,2017,The Unborn,Sleeping With a Ghost Child Scene,tt1139668\njaM0sgoi0vw,2009.0,1,10,2017,The Unborn,Follow the Dog Scene,tt1139668\ntKei1kTWmKU,2009.0,8,10,2017,The Unborn,Don't Answer the Door Scene,tt1139668\nyoYPBCFehng,2009.0,7,10,2017,The Unborn,A Strange Beast Scene,tt1139668\n7UnKOlleCCw,2009.0,2,10,2017,The Unborn,Jumby Wants to Be Born Now Scene,tt1139668\nd5gSQLPcya0,2009.0,10,10,2017,The Unborn,Casting Out the Evil Spirit Scene,tt1139668\nkZQ87E53U_A,2007.0,1,7,2017,The Reaping,A Dark Vision Scene,tt0444682\nSSY6_T2oAow,2007.0,2,7,2017,The Reaping,Raining Frogs Scene,tt0444682\noYet52yPgu0,2009.0,3,10,2017,2012,The Sinking of Los Angeles Scene,tt1190080\nS1Kbym7WYzs,2009.0,4,10,2017,2012,Yellowstone Erupts Scene,tt1190080\nmvgRi4K58U8,2010.0,3,10,2017,Skyline,Aliens Hate Cars Scene,tt1564585\nEqW_b9Ec75w,2010.0,7,10,2017,Skyline,Monster On the Roof Scene,tt1564585\nQrj9qKZCuCw,2010.0,8,10,2017,Skyline,A Last Stand Scene,tt1564585\nC0gEMF9Tx7o,2010.0,4,10,2017,Skyline,They're After Your Brain Scene,tt1564585\nYnfvc7uaDMo,2010.0,5,10,2017,Skyline,Outrunning the Beast,tt1564585\njW9JF2lCjqg,2010.0,10,10,2017,Skyline,The Alien Bodyguard Scene,tt1564585\nUczxnDAsQjs,2010.0,6,10,2017,Skyline,Air Force to the Rescue Scene,tt1564585\nTiQrmXZ_SZU,2010.0,1,10,2017,Skyline,The Blue Lights Scene,tt1564585\nppJ38u-KyYM,2010.0,2,10,2017,Skyline,The Abduction of a City Scene,tt1564585\nJ440ql0zXuE,2011.0,5,10,2017,The Adjustment Bureau,You Ruined Me Scene,tt1385826\n7oczRhQvSlE,2011.0,9,10,2017,The Adjustment Bureau,Come With Me Scene,tt1385826\nlyvAjZw6O_Q,2011.0,6,10,2017,The Adjustment Bureau,You Can Change the World Scene,tt1385826\nFz2HMTuqy98,2011.0,8,10,2017,The Adjustment Bureau,Running From Fate Scene,tt1385826\nKblaujDjQ4g,2011.0,3,10,2017,The Adjustment Bureau,I Can Read Your Mind Scene,tt1385826\np1e3NC3IIF8,2011.0,2,10,2017,The Adjustment Bureau,Elise on the Bus Scene,tt1385826\nsd2pBde6gkw,2011.0,1,10,2017,The Adjustment Bureau,Love In the Men's Room Scene,tt1385826\nQiCNpDYavbg,2011.0,10,10,2017,The Adjustment Bureau,Rewriting the Ending Scene,tt1385826\nFMDgoOi_HLk,2011.0,4,10,2017,The Adjustment Bureau,Meeting Elise Again Scene,tt1385826\np6oIR31ZgyA,2011.0,7,10,2017,The Adjustment Bureau,Her Dreams Scene,tt1385826\nBxh85MB9FOE,2014.0,9,10,2017,The Signal,I Need You To Go Scene,tt2910814\nzU19JLG88tA,2014.0,8,10,2017,The Signal,Jonah's Ambush Scene,tt2910814\nehxd3S2foDg,2014.0,7,10,2017,The Signal,Area 51 Scene,tt2910814\ntIj1luuOfO4,2014.0,6,10,2017,The Signal,As Fast As a Truck Scene,tt2910814\nhAVDAEaxv_8,2014.0,5,10,2017,The Signal,Breaking Out Scene,tt2910814\nKUMhlMS-z2I,2014.0,10,10,2017,The Signal,Run Like Fire Scene,tt2910814\nmBdFXXV9hwY,2014.0,4,10,2017,The Signal,What Did They Do To My Legs? Scene,tt2910814\nPXmtu0Kd0ms,2014.0,2,10,2017,The Signal,Contact with an EBE Scene,tt2910814\nBKkw8FslzOI,2014.0,1,10,2017,The Signal,Abandoned and Abducted Scene,tt2910814\nNPYyV_mq97M,2014.0,3,10,2017,The Signal,Shapes and Colors Scene,tt2910814\nB-Wf5QOHPxw,2009.0,10,10,2017,2012,The Ark Launch Scene,tt1190080\n1id63E3KgH0,2009.0,6,10,2017,2012,Get to the Plane Scene,tt1190080\nCmMeT8MW1LA,2009.0,7,10,2017,2012,Cruise Ship Tsunami Scene,tt1190080\n_TmztVM7Z4s,2009.0,5,10,2017,2012,Trust in Prayer Scene,tt1190080\nsIDHrcDf-N0,2009.0,8,10,2017,2012,Rough Landing in Tibet Scene,tt1190080\nYnnxVknsLk0,2009.0,1,10,2017,2012,Something Pulling Us Apart Scene,tt1190080\nqgRXFJqB-9Q,2009.0,9,10,2017,2012,The Arks Scene,tt1190080\nNclH5qEfL5c,2009.0,2,10,2017,2012,Do Not Panic Scene,tt1190080\nnkVUb4kdhig,2014.0,8,10,2017,Non-Stop,You Failed Miserably Scene,tt2024469\n8QNDAaCu9dI,2014.0,10,10,2017,Non-Stop,Crash Landing Scene,tt2024469\n10TW3rcKMtA,2014.0,9,10,2017,Non-Stop,\"8,000 Feet Scene\",tt2024469\nuUA0a8U7PdY,2014.0,7,10,2017,Non-Stop,Preparing for the Worst Scene,tt2024469\nosFbJZfBOyA,2014.0,5,10,2017,Non-Stop,Why the Window Seat? Scene,tt2024469\n-PzL4MTu3to,2014.0,6,10,2017,Non-Stop,I'm Not a Good Man Scene,tt2024469\nzT4OxEg_-cY,2014.0,4,10,2017,Non-Stop,There Was Nothing I Could Do Scene,tt2024469\nLtjiyd-THC0,2014.0,3,10,2017,Non-Stop,Don't Do This Scene,tt2024469\nmDViU8OSRkA,2014.0,2,10,2017,Non-Stop,How's Your Daughter? Scene,tt2024469\nJjqnoH4D3mo,2014.0,1,10,2017,Non-Stop,Set Your Watch Scene,tt2024469\nehv1cHqfQ-U,2014.0,8,10,2017,A Walk Among the Tombstones,A Sudden Strangling Scene,tt0365907\n6f1VnWuk4C8,2014.0,9,10,2017,A Walk Among the Tombstones,Your Choice Scene,tt0365907\nXQ0Tlb8z3ow,2014.0,5,10,2017,A Walk Among the Tombstones,The Kidnapping Scene,tt0365907\n5ZT2Mc8TEIY,2014.0,7,10,2017,A Walk Among the Tombstones,The Exchange Scene,tt0365907\ngvaa1ZpqoUc,2014.0,6,10,2017,A Walk Among the Tombstones,Setting Up the Meeting Scene,tt0365907\nS52bKF-hXu4,2014.0,2,10,2017,A Walk Among the Tombstones,Kenny's Story Scene,tt0365907\nslegOy-GQMc,2014.0,4,10,2017,A Walk Among the Tombstones,Don't Feel Sorry for Me Scene,tt0365907\nSk0iV1R72OM,2014.0,10,10,2017,A Walk Among the Tombstones,Silent Kill Scene,tt0365907\nQ780MiOrLwg,2014.0,3,10,2017,A Walk Among the Tombstones,Shoot Yourself in the Head Scene,tt0365907\neFzzQuYRw34,2014.0,1,10,2017,A Walk Among the Tombstones,Morning Shootout Scene,tt0365907\nh9WDm1k4Hz4,2014.0,7,10,2017,Kill the Messenger,What Happened in Cleveland Scene,tt1216491\nrtYKhaQStZE,2014.0,3,10,2017,Kill the Messenger,The Ends Justify the Means Scene,tt1216491\nQ2-4x2KuRqE,2014.0,5,10,2017,Kill the Messenger,Home Invasion Scene,tt1216491\njjDuR4d7Iik,2014.0,8,10,2017,Kill the Messenger,Shades of Grey Scene,tt1216491\nod6IxUWPMcs,2014.0,4,10,2017,Kill the Messenger,Too True to Tell Scene,tt1216491\nuLhrOeavvOY,2014.0,9,10,2017,Kill the Messenger,Have You Seen a Bike? Scene,tt1216491\nHYzSQZdBWVQ,2014.0,1,10,2017,Kill the Messenger,\"\"\"Freeway\"\" Ricky Ross Scene\",tt1216491\nNRBLTtDkQXU,2014.0,6,10,2017,Kill the Messenger,This Is About You Scene,tt1216491\nhQUBid6LIPU,2014.0,10,10,2017,Kill the Messenger,My Job Was To Tell the Truth Scene,tt1216491\nMfcqb8DD400,2014.0,2,10,2017,Kill the Messenger,Interrogating Blandon Scene,tt1216491\ndwzoyEaHxSM,1960.0,2,10,2017,Ocean's 11,Drowned in Champagne Scene,tt0054135\nPkLpd8Eaah0,1960.0,8,10,2017,Ocean's 11,New Year's Heist Scene,tt0054135\nU-7MSowBlG8,1960.0,4,10,2017,Ocean's 11,Just In Time for the Fun Scene,tt0054135\nZtHl67Oeb5I,1960.0,6,10,2017,Ocean's 11,Red Skelton Gets Thrown Out Scene,tt0054135\nIXwwGEJkx8Y,1960.0,10,10,2017,Ocean's 11,50% of Something Scene,tt0054135\nlV2XAU1JzuI,1960.0,9,10,2017,Ocean's 11,Garbage Truck Full of Money Scene,tt0054135\n14Et05Okf8w,1960.0,3,10,2017,Ocean's 11,In Love With Danger Scene,tt0054135\nnpvFfvyT8Pc,1960.0,1,10,2017,Ocean's 11,Bravery Rhymes with Stupid Scene,tt0054135\nklt86blKwaA,1960.0,7,10,2017,Ocean's 11,Getting Rid of the Girl Scene,tt0054135\n1D4VF4WqJSE,1960.0,5,10,2017,Ocean's 11,You Really Are a Rat Scene,tt0054135\n_eHwoQ4VQ1o,2015.0,9,11,2017,Mississippi Grind,Rainbow Road Scene,tt2349144\npzG1ckuBqpg,2015.0,8,11,2017,Mississippi Grind,Toto's Revenge Scene,tt2349144\nE0i4dabbAcI,2015.0,6,11,2017,Mississippi Grind,A Bad Beat Scene,tt2349144\nwZcRiRs1x-8,2015.0,10,11,2017,Mississippi Grind,The Winning Streak Scene,tt2349144\nJbuGOroCWaI,2015.0,1,11,2017,Mississippi Grind,Want a Woodford? Scene,tt2349144\nePlb7b2nQm4,2015.0,11,11,2017,Mississippi Grind,Bet It All Scene,tt2349144\nVU3Tu4K4MOo,2015.0,5,11,2017,Mississippi Grind,Playing the Piano Scene,tt2349144\ngxhMfM0QlwM,2015.0,2,11,2017,Mississippi Grind,Stake Me Scene,tt2349144\niTQ4b0d3HxM,2015.0,4,11,2017,Mississippi Grind,Tell Me Something Scene,tt2349144\novxjAnlr7qg,2015.0,3,11,2017,Mississippi Grind,Simone Scene,tt2349144\nTn44a8_14LU,2015.0,7,11,2017,Mississippi Grind,Where's the Money? Scene,tt2349144\n2l_mfcc2I8E,2002.0,5,5,2017,Murder by Numbers,The Choice to Kill,tt0264935\nNCUOJMkDAyI,2002.0,1,5,2017,Murder by Numbers,Freedom is Crime Scene,tt0264935\nvlg5VPKbGQg,2002.0,3,5,2017,Murder by Numbers,Whoever Talks First Scene,tt0264935\n0IQgjMYWVGc,2002.0,2,5,2017,Murder by Numbers,Committing the Perfect Murder Scene,tt0264935\nyzera03y4_0,2002.0,4,5,2017,Murder by Numbers,We Killed a Woman Scene,tt0264935\njXKc-0nVIkQ,2014.0,7,10,2017,Deliver Us From Evil,The First Stage Scene,tt2377322\n_zHhry-Ot0Y,2014.0,10,10,2017,Deliver Us From Evil,The Beast Is Gone Scene,tt2377322\nL9x5p-s4zKs,2014.0,4,10,2017,Deliver Us From Evil,A Darkness Growing Inside Scene,tt2377322\nMgc3y6p-Bys,2014.0,6,10,2017,Deliver Us From Evil,Where's My Family? Scene,tt2377322\niVsfWht3zmo,2014.0,8,10,2017,Deliver Us From Evil,Leg Eater Scene,tt2377322\nonO71_aItKA,2014.0,3,10,2017,Deliver Us From Evil,A Biting Suspect Scene,tt2377322\nX67GWsa_NNM,2014.0,9,10,2017,Deliver Us From Evil,\"Silence, Beast Scene\",tt2377322\nHPir9pU9shw,2014.0,5,10,2017,Deliver Us From Evil,POP Goes the Demon! Scene,tt2377322\nDooTtUcpKM4,2014.0,2,10,2017,Deliver Us From Evil,The Writing on the Wall Scene,tt2377322\n-Lrndfrc9yU,2014.0,1,10,2017,Deliver Us From Evil,Scratching Noises Scene,tt2377322\nhRg2HEpwD5A,1991.0,8,8,2017,Showdown in Little Tokyo,\"Kick His Ass, Samurai Scene\",tt0102915\nb7AjNXAF-7Y,1991.0,4,8,2017,Showdown in Little Tokyo,A Fully Loaded Savior Scene,tt0102915\nfmMPmWO6b4E,1991.0,7,8,2017,Showdown in Little Tokyo,The Right to Be Dead Scene,tt0102915\nBRBSfKmp3vs,2005.0,2,10,2017,Deuce Bigalow: European Gigolo,I Ain't Gay! Scene,tt0367652\nw71pHLUz2i0,2005.0,10,10,2017,Deuce Bigalow: European Gigolo,What a Woman Wants Scene,tt0367652\nbeearAU0yn0,1991.0,6,8,2017,Showdown in Little Tokyo,Assault on the Red Dragon Brewery Scene,tt0102915\nfB_fwuJOx7I,2005.0,9,10,2017,Deuce Bigalow: European Gigolo,Killer Girlfriend Scene,tt0367652\nXcDzb6AeAI0,2005.0,8,10,2017,Deuce Bigalow: European Gigolo,Farting Fail Scene,tt0367652\nxM1MNPKYl5g,2005.0,5,10,2017,Deuce Bigalow: European Gigolo,Bad Pussy Scene,tt0367652\nb0KSEziycmw,2005.0,4,10,2017,Deuce Bigalow: European Gigolo,I Stood Down Scene,tt0367652\nhZPz4w3jLXI,2005.0,7,10,2017,Deuce Bigalow: European Gigolo,Porn Interrupted Scene,tt0367652\n2_BwhA8M9-w,2005.0,1,10,2017,Deuce Bigalow: European Gigolo,Space Cake Scene,tt0367652\n_qh-4JFLd-s,2005.0,6,10,2017,Deuce Bigalow: European Gigolo,Aquarium Bully Scene,tt0367652\n-kHMOXNsE2k,2005.0,3,10,2017,Deuce Bigalow: European Gigolo,Chicken and Waffles Scene,tt0367652\nVnLaIBz4VMg,1991.0,5,8,2017,Showdown in Little Tokyo,Enjoy Being Dead Scene,tt0102915\nZIHWAugnBWI,1991.0,3,8,2017,Showdown in Little Tokyo,Critiquing Your Partner Scene,tt0102915\nYGwPTU-SvbI,1991.0,2,8,2017,Showdown in Little Tokyo,I'm Your New Partner Scene,tt0102915\ne3RDBiiOJaY,1991.0,1,8,2017,Showdown in Little Tokyo,You're Under Arrest Scene,tt0102915\nvjmHq57MZso,2005.0,7,10,2017,Bewitched,I Want My Husband Scene,tt0374536\nNHg_SEfj38M,2005.0,8,10,2017,Bewitched,She Has Her Broomstick Scene,tt0374536\nQ49KVa7jotI,2005.0,10,10,2017,Bewitched,Home is With Me Scene,tt0374536\nT5p0IaOt3tQ,2005.0,9,10,2017,Bewitched,Uncle Arthur Scene,tt0374536\nHUKu_iqYDOA,2005.0,2,10,2017,Bewitched,Be My TV Wife Scene,tt0374536\nJx-I8OfW0GI,2005.0,6,10,2017,Bewitched,He's Being a Jerk! Scene,tt0374536\nkZg0_oypRpU,2005.0,3,10,2017,Bewitched,Where's My Dog? Scene,tt0374536\nfYNZsz9o3Sg,2005.0,5,10,2017,Bewitched,Who Would Want to Marry You? Scene,tt0374536\nKOBGjFHXnqY,2005.0,1,10,2017,Bewitched,I Want to Feel Thwarted Scene,tt0374536\nD_FRoxgOUNA,2005.0,4,10,2017,Bewitched,Hexed Date Scene,tt0374536\nb2hhdMiOTOE,1988.0,10,10,2017,Pumpkinhead,Kill Me! Scene,tt0095925\ngxacglqQMqE,1988.0,6,10,2017,Pumpkinhead,Maggie is Taken Scene,tt0095925\nhwb1MK66new,1988.0,7,10,2017,Pumpkinhead,I'm the One You Want!,tt0095925\nabTZPgqiEto,1988.0,4,10,2017,Pumpkinhead,Rises Scene,tt0095925\n_oEolYMce4c,1988.0,5,10,2017,Pumpkinhead,Kills Steve Scene   Movielcips,tt0095925\ncfB1QaweRKU,1988.0,8,10,2017,Pumpkinhead,A Rifle Through the Chest Scene,tt0095925\nALYPTuyCxqI,1988.0,3,10,2017,Pumpkinhead,Death of a Child Scene,tt0095925\nYZ5Y_GhXMKw,1988.0,2,10,2017,Pumpkinhead,There Ain't No ! Scene,tt0095925\nek0jTQAdN8Y,1988.0,9,10,2017,Pumpkinhead,Unholy Act Scene,tt0095925\nfvNfhUZ-5z8,1988.0,1,10,2017,Pumpkinhead,It's Coming Scene,tt0095925\nIsG-jJcrlr0,2014.0,3,10,2017,The Interview,The Money Shot Scene,tt2788710\nOyziGbUQBIc,2014.0,1,10,2017,The Interview,Haters Gonna Hate Scene,tt2788710\nfnpUxSXWy6I,2014.0,2,10,2017,The Interview,They're Honeypotting Us Scene,tt2788710\ndN1RMOrtK7A,2014.0,4,10,2017,The Interview,Aardvark vs. Tiger Scene,tt2788710\nEFtdTsawXK0,2014.0,5,10,2017,The Interview,Secure the Package Scene,tt2788710\nB8dPQzwGcZI,2014.0,6,10,2017,The Interview,The Coolest Dictator,tt2788710\npb8pWn_yyF4,2014.0,7,10,2017,The Interview,Crying with Kim Scene,tt2788710\neWP8JMcy3O0,2014.0,8,10,2017,The Interview,No Hand Stuff Scene,tt2788710\nYo3rEGWrlws,2014.0,9,10,2017,The Interview,Interview Gone Wrong Scene,tt2788710\n74PUHyVj4BQ,2014.0,10,10,2017,The Interview,A Fake Friend Scene,tt2788710\nssK4Uc8SXnU,2013.0,2,10,2017,Bad Words,Don't Look at Me Scene,tt2170299\n0PtKzdvq7bc,2013.0,9,10,2017,Bad Words,Misspelling Bee Scene,tt2170299\nkg2o35acq4c,2013.0,5,10,2017,Bad Words,Insults and Nipples Scene,tt2170299\n3tMHSQGSUzc,2013.0,8,10,2017,Bad Words,Take Him Out! Scene,tt2170299\nkzVO5JrnEJ8,2013.0,3,10,2017,Bad Words,Give These To Your Mother Scene,tt2170299\nGzL4f-4uQVM,2013.0,1,10,2017,Bad Words,Autofellatio Scene,tt2170299\ns2Tpk6RnkaA,2013.0,4,10,2017,Bad Words,Like an Elephant's Trunk Scene,tt2170299\nTSAdyzdX4eA,2013.0,6,10,2017,Bad Words,These Are Not Light Pants Scene,tt2170299\nSWKDbfvyZMU,2013.0,10,10,2017,Bad Words,Chaitanya the Champion Scene,tt2170299\nnifcKdVjpbw,2013.0,7,10,2017,Bad Words,A Little Liar Scene,tt2170299\npEJHzQIMH5k,2001.0,1,10,2017,Wet Hot American Summer,Cleaning Up & Breaking Down Scene,tt0243655\nYygwTWUI8vc,2001.0,5,10,2017,Wet Hot American Summer,An Unlikely Team of Misfits Scene,tt0243655\niYf3nqYQXDI,2001.0,9,10,2017,Wet Hot American Summer,Higher and Higher Montage Scene,tt0243655\nB9oxe-Dvvj0,2001.0,6,10,2017,Wet Hot American Summer,Less Than Scene,tt0243655\nVSdIYNSkQL8,2001.0,2,10,2017,Wet Hot American Summer,Making Out Scene,tt0243655\nD-9zx3m6lLU,2001.0,4,10,2017,Wet Hot American Summer,\"Wait for Me, Abbie Bernstein! Scene\",tt0243655\nE1e4f8YdkLg,2001.0,10,10,2017,Wet Hot American Summer,Where's the Phone? Scene,tt0243655\nlYtc2lvkpTw,2001.0,3,10,2017,Wet Hot American Summer,Going into Town Scene,tt0243655\nUyOxOyfX4uM,2001.0,7,10,2017,Wet Hot American Summer,The Talking Can Scene,tt0243655\nglJzhylsfoc,2001.0,8,10,2017,Wet Hot American Summer,Hump the Fridge Scene,tt0243655\nSZ3oe7dJdMc,2008.0,10,10,2017,Hancock,Back From the Dead Scene,tt0448157\nyr-gQl9CKIU,1997.0,1,10,2017,Booty Call,A Brother Named Bunz Scene,tt0118750\nTt7qQmpLA2U,1997.0,3,10,2017,Booty Call,Dancing Nasty Scene,tt0118750\ndTVEd7WtyAw,1997.0,4,10,2017,Booty Call,Footsie Scene,tt0118750\nadatkf9XY44,1997.0,6,10,2017,Booty Call,Gimme the Money Scene,tt0118750\ngIaqrkn0ymo,1997.0,8,10,2017,Booty Call,\"No Insurance, No Problem Scene\",tt0118750\ngDSrAm2CKdU,1997.0,5,10,2017,Booty Call,Sexual Frustration Scene,tt0118750\nwSpvR9B8QXw,1997.0,10,10,2017,Booty Call,Sex At Last Scene,tt0118750\nYG0VNVGxyYs,1997.0,9,10,2017,Booty Call,Only Good For One Thing Scene,tt0118750\nmlkWgiyQ-8g,1997.0,2,10,2017,Booty Call,Chinese Smack Talk Scene,tt0118750\nI2v7jlIBL1A,1997.0,7,10,2017,Booty Call,Plastic Wrap Scene,tt0118750\nyRlyvNmVWK0,1994.0,5,10,2017,The Next Karate Kid,Dancing Monks Scene,tt0110657\nlkoWhWGcVR4,1994.0,3,10,2017,The Next Karate Kid,The Sacred Garden Scene,tt0110657\nhprw4GtCu1w,1994.0,7,10,2017,The Next Karate Kid,Zen Archery Scene,tt0110657\n7D_6z1EnSik,1994.0,2,10,2017,The Next Karate Kid,Gas Station Fight Scene,tt0110657\nczJL-TPz-5M,1994.0,8,10,2017,The Next Karate Kid,Karate Waltz Scene,tt0110657\nLlK6pn4qyrc,1994.0,1,10,2017,The Next Karate Kid,Boys Are Easier Scene,tt0110657\nzIKq7DqdZa4,1994.0,10,10,2017,The Next Karate Kid,Miyagi Finishes Dugan Scene,tt0110657\nyGYPTb9T3MU,1994.0,4,10,2017,The Next Karate Kid,Respect All Living Things Scene,tt0110657\nxc2Ctw8pGrc,1994.0,9,10,2017,The Next Karate Kid,Julie Fights Ned Scene,tt0110657\n06DLNzLaTlE,1994.0,6,10,2017,The Next Karate Kid,Julie's Training Scene,tt0110657\nJLvkvjU_iyY,1998.0,8,10,2017,Stepmom,Isabel's Plan Works Scene,tt0120686\nmExTnHwAcYY,1998.0,10,10,2017,Stepmom,You Have Made My Life So Wonderful Scene,tt0120686\nfQy1yr_K_L4,1998.0,9,10,2017,Stepmom,You Have Their Future Scene,tt0120686\nRmxqK1np7rY,1998.0,3,10,2017,Stepmom,Will You Marry Me? Scene,tt0120686\ndH3dqXHH0yU,1998.0,2,10,2017,Stepmom,Losing Ben Scene,tt0120686\nGhexrw8bpc8,1998.0,5,10,2017,Stepmom,Mommy's Sick Scene,tt0120686\niuPDl6n2vO0,1998.0,7,10,2017,Stepmom,The Worst Day Until Now Scene,tt0120686\nns3j2exbdbU,1998.0,4,10,2017,Stepmom,Are You Dying? Scene,tt0120686\ngj_BH6Suku0,1998.0,1,10,2017,Stepmom,Underlying Hostility Scene,tt0120686\nGx1K7ynF1JM,1998.0,6,10,2017,Stepmom,Ain't No Mountain High Enough Scene,tt0120686\n9j3y-J8IzYo,1991.0,1,10,2017,The People Under the Stairs,I Busted This House's Cherry Scene,tt0105121\n1kPvrYaCi4c,1991.0,9,10,2017,The People Under the Stairs,You're Not My Mother Scene,tt0105121\nMQ2PrvpAT-k,1991.0,6,10,2017,The People Under the Stairs,Total Spring Cleaning Scene,tt0105121\nEYdIrPSIgio,1991.0,2,10,2017,The People Under the Stairs,The House That Keeps You In Scene,tt0105121\nKnXZP5yMlgw,1991.0,7,10,2017,The People Under the Stairs,Dead Meat Scene,tt0105121\nIBTpVVTZJ5c,1991.0,3,10,2017,The People Under the Stairs,\"Run, Fool! Scene\",tt0105121\nUkamBJTqN8c,1991.0,4,10,2017,The People Under the Stairs,Don't Go in the Basement Scene,tt0105121\nmRIaK9Vf0Ns,1991.0,5,10,2017,The People Under the Stairs,A Dog and a Roach Scene,tt0105121\nJOzVMqp3vMc,1991.0,8,10,2017,The People Under the Stairs,Get Away From the Walls Scene,tt0105121\ncY8yXitzluU,1991.0,10,10,2017,The People Under the Stairs,Kiss Your Ass Goodbye Scene,tt0105121\niqZB7SIbeL4,2015.0,7,7,2017,The Green Inferno,Don't Shoot! Scene,tt2403021\nGwM5LleRnAI,2015.0,6,7,2017,The Green Inferno,Fed to Ants Scene,tt2403021\n13YnorzVWTE,2015.0,4,7,2017,The Green Inferno,I'm Really Sick Scene,tt2403021\nVXDHzJ1LYRs,2015.0,5,7,2017,The Green Inferno,Vegan Death Scene,tt2403021\nfJqWAvvKS1A,2015.0,2,7,2017,The Green Inferno,Crash in the Jungle Scene,tt2403021\nt1SbH-c0m_0,2015.0,1,7,2017,The Green Inferno,Kill Her and See What Happens Scene,tt2403021\nb5I9yFdAMzg,2015.0,3,7,2017,The Green Inferno,Captured Scene,tt2403021\nTVViHShXqC4,1991.0,6,10,2017,My Girl,First Kiss Scene,tt0102492\nwoLbaFLoJI8,1991.0,8,10,2017,My Girl,He Can't See Without His Glasses Scene,tt0102492\nc4w-IE-Hsqc,1991.0,1,10,2017,My Girl,Teased By the Girls Scene,tt0102492\niJKQl3uGg0I,1991.0,2,10,2017,My Girl,Ode to Ice Cream Scene,tt0102492\nIE9S8CehYco,1991.0,3,10,2017,My Girl,Do You Think I'm Pretty? Scene,tt0102492\nukzIFp4Kj90,1991.0,5,10,2017,My Girl,I'm Hemorrhaging! Scene,tt0102492\nkP5GKIrGoeQ,1991.0,9,10,2017,My Girl,Did I Kill My Mother? Scene,tt0102492\nfV-wb1gZOyo,1991.0,7,10,2017,My Girl,It Hurts So Bad Scene,tt0102492\n2vbGcYm8u1o,1991.0,10,10,2017,My Girl,Vada's Poem Scene,tt0102492\n6e4xlcfKHxY,1991.0,4,10,2017,My Girl,My Best Friend Scene,tt0102492\nxJb5tOlE1Fs,1999.0,8,10,2017,Stuart Little,Too Good to Be True Scene,tt0164912\nVCLL9aD-VKw,1999.0,4,10,2017,Stuart Little,Playing With George Scene,tt0164912\nKdOgihoZjZY,1999.0,10,10,2017,Stuart Little,Not Bad for a House Cat,tt0164912\nK9z6npGGZAM,1999.0,3,10,2017,Stuart Little,A Mouse With a Pet Cat Scene,tt0164912\n-MNpOKICOx8,1999.0,1,10,2017,Stuart Little,Meeting the Family Scene,tt0164912\nYEdNAX9h_vI,1999.0,2,10,2017,Stuart Little,Stuck in the Washing Machine Scene,tt0164912\nsPHeq8OM-dU,1999.0,6,10,2017,Stuart Little,Tell Him the Truth! Scene,tt0164912\nP-KZ7N30lFY,1999.0,7,10,2017,Stuart Little,Roadster Chase Scene,tt0164912\nOO4LqRUxinE,1999.0,5,10,2017,Stuart Little,Boat Race Scene,tt0164912\nICRVd--TY-U,1999.0,9,10,2017,Stuart Little,You Saved Me? Scene,tt0164912\nN45Gbn2AtWk,2002.0,9,10,2017,Stuart Little 2,It Wouldn't Change a Thing Scene,tt0243585\nSVSzVDnvkHw,2002.0,5,10,2017,Stuart Little 2,Down the Drain Scene,tt0243585\nnJ1hrmVHUJg,2002.0,1,10,2017,Stuart Little 2,Stuart Plays Soccer Scene,tt0243585\nt9vWi2ItxMc,2002.0,3,10,2017,Stuart Little 2,You Don't Have a Home? Scene,tt0243585\nZd27SaRdxiE,2002.0,10,10,2017,Stuart Little 2,I'll Miss You Scene,tt0243585\nyYCVu5ZSki0,2002.0,6,10,2017,Stuart Little 2,Lying for Stuart Scene,tt0243585\n3cdlwCCzujo,2002.0,8,10,2017,Stuart Little 2,Tiny Little Vandals Scene,tt0243585\nopWPxmr2h2s,2002.0,4,10,2017,Stuart Little 2,Silver Lining Scene,tt0243585\nilCjx9gigWI,2002.0,7,10,2017,Stuart Little 2,In the Can Scene,tt0243585\nCfRKGG52TPY,2002.0,2,10,2017,Stuart Little 2,Flying in the House Scene,tt0243585\nb58Zg_TRqn0,2006.0,4,10,2017,Slither,You Betrayed Me Scene,tt0439815\nZQ6XwJOrBiE,2006.0,2,10,2017,Slither,Tentacle Temptation Scene,tt0439815\nPfBi1PAfWcI,2006.0,3,10,2017,Slither,Alien Love Scene,tt0439815\nbOqZC-DXvk4,2006.0,10,10,2017,Slither,\"A Gun, a Grenade & an Alien Scene\",tt0439815\nLWCK6VFF6n4,2006.0,5,10,2017,Slither,For Better or Worse Scene,tt0439815\n71kAAVlpENY,2006.0,6,10,2017,Slither,Ripped Apart From the Inside Scene,tt0439815\nYqRnYf2cyI0,2006.0,7,10,2017,Slither,Bathtime Scene,tt0439815\n9CD23yDPEF4,2006.0,9,10,2017,Slither,Zombie Deer Scene,tt0439815\nUAa5Lw5lseQ,2006.0,8,10,2017,Slither,The Worms Are in Their Brains Scene,tt0439815\nx0rCYl4e1Lw,2006.0,1,10,2017,Slither,The Thing in the Woods Scene,tt0439815\nMBSxl8y36zg,2015.0,6,10,2017,Concussion,Accepted as an American Scene,tt3322364\n_zPImuBvnOA,2015.0,8,10,2017,Concussion,Indicted Scene,tt3322364\nzFDNg1Swx0s,2015.0,9,10,2017,Concussion,We Will Have This Family Scene,tt3322364\nab4MM9cHidM,2015.0,7,10,2017,Concussion,I'm Here For Science Scene,tt3322364\nS60NRfBYTl4,2015.0,4,10,2017,Concussion,It's Business Scene,tt3322364\nryyEEyKD9EU,2015.0,2,10,2017,Concussion,The NFL Owns Neuroscience Scene,tt3322364\nNXTrMtrTjlI,2015.0,3,10,2017,Concussion,Their Boogeyman Scene,tt3322364\nRY1FQGd1Bb4,2015.0,1,10,2017,Concussion,Football Killed Mike Webster Scene,tt3322364\nMdp4T_G0Xsc,2015.0,10,10,2017,Concussion,The Gift of Knowing Scene,tt3322364\n59wvo9e2XQY,2015.0,5,10,2017,Concussion,You Want to End the NFL Scene,tt3322364\nH5pj6ZuBgeE,2008.0,8,10,2017,Hancock,\"Gods, Angels, Superheroes\",tt0448157\ntqmbgqyc1bc,2008.0,9,10,2017,Hancock,Call Me Crazy One More Time Scene,tt0448157\nyt1pZiuyKJE,2008.0,7,10,2017,Hancock,Defusing the Detonator Scene,tt0448157\ntG1crFI87ro,2008.0,3,10,2017,Hancock,Causing a Trainwreck Scene,tt0448157\np1dzglJEqac,2008.0,2,10,2017,Hancock,Superpowered Climax Scene,tt0448157\ndgM9V3lEZvE,2008.0,4,10,2017,Hancock,Call Me A**hole One More Time Scene,tt0448157\nqEH9lnYIndY,2008.0,6,10,2017,Hancock,Good Job Scene,tt0448157\nE-MOzwWySaQ,2008.0,1,10,2017,Hancock,Drunk Heroism Scene,tt0448157\nHKcDfO71N1E,2008.0,5,10,2017,Hancock,Your Head is Going Up His A** Scene,tt0448157\nIC21keB1yaM,2012.0,1,10,2017,That's My Boy,Hot for Teacher Scene,tt1232200\nYdowX3H-hGo,2012.0,6,10,2017,That's My Boy,Spa Day Scene,tt1232200\n4XKZFS7EoCU,2012.0,7,10,2017,That's My Boy,Uncle Vanny Scene,tt1232200\nykBG9mW1yC4,2012.0,4,10,2017,That's My Boy,Back Tattoos Scene,tt1232200\ncfB9siDjpLk,2012.0,8,10,2017,That's My Boy,Riding a Bike Scene,tt1232200\nG64ubBUMVek,2012.0,2,10,2017,That's My Boy,Marine Brother Scene,tt1232200\nptOc-HdvEW0,2012.0,3,10,2017,That's My Boy,Worst Dad Ever Scene,tt1232200\nfZNHk9DKvtM,2012.0,5,10,2017,That's My Boy,Priest Fight Scene,tt1232200\n0GCwhGQEZ90,2012.0,10,10,2017,That's My Boy,Broken Wedding Scene,tt1232200\nAkaPD_qTmok,2012.0,9,10,2017,That's My Boy,Like a Model-T Scene,tt1232200\nZFMSluy-4gE,2011.0,7,10,2017,Just Go With It,Fake Hugs Scene,tt1564367\n4WdyyPhh4-k,2011.0,6,10,2017,Just Go With It,Cooling Off Scene,tt1564367\nlMA48vIxajE,2011.0,4,10,2017,Just Go With It,My Pretend Children Scene,tt1564367\nV6WWK1gvpjc,2011.0,3,10,2017,Just Go With It,My Hot First Wife Scene,tt1564367\nVXlMfWObFCA,2011.0,8,10,2017,Just Go With It,What Do You Love? Scene,tt1564367\nnJwGWiuonws,2011.0,1,10,2017,Just Go With It,Brows Gone Wild Scene,tt1564367\nXz-BR8gyPhg,2011.0,2,10,2017,Just Go With It,You're Married? Scene,tt1564367\nWmo60ltq-TA,2011.0,10,10,2017,Just Go With It,The One I Love Scene,tt1564367\nqfq5VozCshY,2011.0,9,10,2017,Just Go With It,Let's Get Married! Scene (9/10  ),tt1564367\ndgdEr-mXQT4,2011.0,5,10,2017,Just Go With It,Sheep Shipper Scene,tt1564367\n_1rqGyHtE4Q,2008.0,1,10,2017,You Don't Mess With the Zohan,Introducing the Zohan Scene,tt0960144\nJAXij_5Rr0U,2008.0,7,10,2017,You Don't Mess With the Zohan,Pushups Scene,tt0960144\nutYsQTUae5w,2008.0,4,10,2017,You Don't Mess With the Zohan,Pretzel Fight Scene,tt0960144\nYg1qC5VGoLw,2008.0,5,10,2017,You Don't Mess With the Zohan,Salon Mistakes Scene,tt0960144\nNdGB1rnPcR0,2008.0,8,10,2017,You Don't Mess With the Zohan,The Coco Package Scene,tt0960144\nSb8ufI6z0zM,2008.0,2,10,2017,You Don't Mess With the Zohan,Super Agent Zohan Scene,tt0960144\n8DkbFJ3uz54,2008.0,9,10,2017,You Don't Mess With the Zohan,The Goat Scene,tt0960144\n5OfAMHeIr7k,2008.0,3,10,2017,You Don't Mess With the Zohan,I Feel No Pain Scene Scene,tt0960144\nhl1z_vp3kXg,2008.0,6,10,2017,You Don't Mess With the Zohan,Phantom Muchentuchen Scene,tt0960144\nOr4t1d_h0Y0,2008.0,10,10,2017,You Don't Mess With the Zohan,Hezbollah Hotline Scene,tt0960144\nZT0-DtdC93w,2004.0,4,10,2017,Spanglish,Don't Be Wonderful Scene,tt0371246\n6GpeTJqqtG4,2004.0,2,10,2017,Spanglish,Sleep on It Scene,tt0371246\nVW_Bmy2Cm2c,2004.0,6,10,2017,Spanglish,A Crack in the Planet Scene,tt0371246\npCFld9GCy_Q,2004.0,3,10,2017,Spanglish,Hypocritical Scene,tt0371246\n208MQEPGWLA,2004.0,10,10,2017,Spanglish,My Mother's Daughter Scene,tt0371246\noeF5tq_zeqU,2004.0,8,10,2017,Spanglish,I Love You Scene,tt0371246\nnO7qxQsQK44,2004.0,1,10,2017,Spanglish,\"Good Guy, Bad Guy Scene\",tt0371246\n-Ww_Bo5ghiw,2004.0,5,10,2017,Spanglish,Get Out of the Wind! Scene,tt0371246\nCyAW5eAhhPo,2004.0,7,10,2017,Spanglish,Drop Dead Crazy Gorgeous Scene,tt0371246\n6La5YCYlMZY,2004.0,9,10,2017,Spanglish,I'm So Glad You're Back Scene,tt0371246\n912ib1YghJ4,2006.0,1,10,2017,Click,Morty's Universal Remote Scene,tt0389860\nyywlulXZ0ls,2006.0,7,10,2017,Click,I'm A Fat Guy Scene,tt0389860\nVmZ1ni2IDdo,2006.0,5,10,2017,Click,First Kiss Time Scene,tt0389860\npDj1GM3RRWs,2006.0,9,10,2017,Click,Last Time with Dad Scene,tt0389860\nhjhBzRH-plo,2006.0,4,10,2017,Click,Sexual Harassment Day Scene,tt0389860\n9O-NfAWrkDM,2006.0,10,10,2017,Click,Family Comes First Scene,tt0389860\nCKIh_vKo7Fg,2006.0,8,10,2017,Click,Bad Future Scene,tt0389860\ndVFDYCPO19A,2006.0,6,10,2017,Click,Farting on the Boss Scene,tt0389860\n9LvgzVmAFxo,2006.0,3,10,2017,Click,Boobs and Colors Scene,tt0389860\nwUVJf2CkNNw,2006.0,2,10,2017,Click,Speedy Sex Scene,tt0389860\nZIdKsGWToLo,1994.0,2,9,2017,Being Human,Kill Myself by Tomorrow Morning Scene,tt0106379\n1QC88NQZM-8,1994.0,1,9,2017,Being Human,Mine! Scene,tt0106379\nbWo3nlFcH5k,1994.0,3,9,2017,Being Human,Two Till the End Scene,tt0106379\n32Fz-BBjVXs,1994.0,6,9,2017,Being Human,Hector Apologizes to Ursula Scene,tt0106379\ng3WSsm57iVM,1994.0,4,9,2017,Being Human,Time to Go Home Scene,tt0106379\nhf1wQVWs0DA,1994.0,5,9,2017,Being Human,Don't Let Them Eat Us Scene,tt0106379\nWIZlfA5kV7Q,1994.0,7,9,2017,Being Human,She Fell Through the Floor Scene,tt0106379\nHKRXTzENFa4,1994.0,8,9,2017,Being Human,I Left You Scene,tt0106379\nZfyjpKP8zDk,1994.0,9,9,2017,Being Human,As Good as It Gets Scene,tt0106379\nQk1y1yVQkJQ,1985.0,8,9,2017,American Flyers,Last Day of the Race Scene,tt0088707\nSccBZYmyjxE,1985.0,7,9,2017,American Flyers,Danger on the Track Scene,tt0088707\nngSM_wxh0lE,1985.0,9,9,2017,American Flyers,Race to the Finish Scene,tt0088707\neZc3GMgzwyk,1985.0,6,9,2017,American Flyers,Is That Legal? Scene,tt0088707\nDGpJ1ndBxOA,1985.0,5,9,2017,American Flyers,The Race Begins Scene,tt0088707\nDEmZWy1aDuo,1985.0,3,9,2017,American Flyers,Picking up Becky Scene,tt0088707\nTBHjt3AyALw,1985.0,4,9,2017,American Flyers,Gonna Make Him Bleed Scene,tt0088707\nV15AidhVCSw,1985.0,1,9,2017,American Flyers,\"A Family of \"\"Could Haves\"\" Scene\",tt0088707\nevJPzjgv-2s,1985.0,2,9,2017,American Flyers,Treadmill Torture Scene,tt0088707\nHp93d2bsfQc,1985.0,9,9,2017,After Hours,Art Is Forever Scene,tt0088680\nA-rs-kWL5-s,1985.0,7,9,2017,After Hours,Just Let Me In Scene,tt0088680\nMsKaN_QrVT8,1985.0,8,9,2017,After Hours,Phone Call Scene,tt0088680\nZPMDA9N1itk,1985.0,6,9,2017,After Hours,Did You Miss Me? Scene,tt0088680\ndjTKMhvuXGM,1985.0,5,9,2017,After Hours,Dead Person Scene,tt0088680\n6iGsAYTmnLg,1985.0,4,9,2017,After Hours,Where Are the Paperweights? Scene,tt0088680\nzt4ek_5zQgY,1985.0,2,9,2017,After Hours,You Have a Great Body Scene,tt0088680\n-iK4M_EFvjc,1985.0,3,9,2017,After Hours,Surrender Dorothy Scene,tt0088680\nyEKOx9OHEz8,1985.0,1,9,2017,After Hours,Stuck Doing This Scene,tt0088680\nktt64clTkj4,2002.0,8,12,2017,24 Hour Party People,Miss U.K. Scene,tt0274309\nYH_vICd0WQ0,2002.0,2,12,2017,24 Hour Party People,Two Tonys Scene,tt0274309\nfwkzz6A_Qv4,2002.0,10,12,2017,24 Hour Party People,Tony Doesn't Sell Out Scene,tt0274309\n3a6TxHEyLdo,2002.0,9,12,2017,24 Hour Party People,30 Grand Table Scene,tt0274309\nUoMiVPjDb10,2002.0,1,12,2017,24 Hour Party People,Hang Gliding Scene,tt0274309\n_B6AZdgQbeU,2002.0,12,12,2017,24 Hour Party People,Tony Sees God Scene,tt0274309\nSK4l-e7UvRs,2002.0,11,12,2017,24 Hour Party People,Take It All Scene,tt0274309\ndfrJhivMJJY,2002.0,6,12,2017,24 Hour Party People,The Hacienda Scene,tt0274309\nSYffGozxMbU,2002.0,5,12,2017,24 Hour Party People,Poisoning Pigeons Scene,tt0274309\nNQgAVrZRz3o,2002.0,4,12,2017,24 Hour Party People,Please Don't Leave Me Scene,tt0274309\n90j6V8EjSuI,2002.0,3,12,2017,24 Hour Party People,Faster But Slower Scene,tt0274309\nghZ6ntXQp3E,2002.0,7,12,2017,24 Hour Party People,Last Refuge of the Untalented Scene,tt0274309\nmbBhikLj86Y,1991.0,11,12,2017,Delirious,Do You Hear Bells? Scene,tt0101701\nGusR6qF81kc,1991.0,12,12,2017,Delirious,I'm the Lox Scene,tt0101701\nvD6FkjOtIIs,1991.0,9,12,2017,Delirious,Robert Wagner! Scene,tt0101701\n_x3KSXMXzwM,1991.0,10,12,2017,Delirious,Don't Write Drunk Scene,tt0101701\nXKNZy6gahyc,1991.0,8,12,2017,Delirious,A Game Called Trust Scene,tt0101701\npfOJfhbqJhY,1991.0,6,12,2017,Delirious,Horseback Riding Scene,tt0101701\nVPXd9ANX3Bw,1991.0,7,12,2017,Delirious,I Am Jack Gates Scene,tt0101701\nE8x4G2WceJA,1991.0,5,12,2017,Delirious,I Created This Whole Town Scene,tt0101701\n_g-f7cZGqJ0,1991.0,1,12,2017,Delirious,The Cable Guy Scene,tt0101701\nVXx_DVHO0go,1991.0,2,12,2017,Delirious,\"Nervous, Huh? Scene\",tt0101701\nARgghWSmq7Q,1991.0,4,12,2017,Delirious,Jack's Personal Hell Scene,tt0101701\nnKuJ6UvlGek,1991.0,3,12,2017,Delirious,Beyond Our Dreams Scene,tt0101701\n7AB4ab4LtFo,1990.0,10,10,2017,Night of the Living Dead,\"They Are Us, We Are Them Scene\",tt0100258\no5CBItcNkFs,1990.0,3,10,2017,Night of the Living Dead,Zombies At the Doorstep Scene,tt0100258\nhH1TgDvC7sY,1990.0,8,10,2017,Night of the Living Dead,Shoot Your Daughter Scene,tt0100258\nbLX_zt_MhW0,1990.0,9,10,2017,Night of the Living Dead,They Got That Right Scene,tt0100258\nETxIJN_avuM,1990.0,6,10,2017,Night of the Living Dead,Getting to the Gas Pumps Scene,tt0100258\naPUaHUwJJk8,1990.0,7,10,2017,Night of the Living Dead,A Daughter's Hunger Scene,tt0100258\nQvdszN3x7M4,1990.0,2,10,2017,Night of the Living Dead,Undead Visitors Scene,tt0100258\nNZ2qhFm6LO8,1990.0,1,10,2017,Night of the Living Dead,They're Coming to Get You Scene,tt0100258\nMrhV0mA-bWg,1990.0,4,10,2017,Night of the Living Dead,Is He Dead? Scene,tt0100258\nz1RLdJwkFZA,1990.0,5,10,2017,Night of the Living Dead,We Can Get Away Scene,tt0100258\n-uPSVWxV6d8,2010.0,7,10,2017,Easy A,Can We Be Friends? Scene,tt1282140\nVBLIuICtHuo,2010.0,9,10,2017,Easy A,Knock On Wood Scene,tt1282140\nKKD0B8uROMI,2010.0,10,10,2017,Easy A,The End of the Webcast Scene,tt1282140\n32I5RODje3o,2010.0,8,10,2017,Easy A,I'm a Mess Scene,tt1282140\nEXwr6U_YypE,2010.0,6,10,2017,Easy A,100 Bucks for Second Base Scene,tt1282140\nh9GHe5K0kOI,2010.0,5,10,2017,Easy A,Go Down Moses Scene,tt1282140\nylvh800i85I,2010.0,1,10,2017,Easy A,A Pocketful of Sunshine Scene,tt1282140\nwJZP20y0R2Q,2010.0,4,10,2017,Easy A,Bad Reputation Scene,tt1282140\nXFKhIBH23-Q,2010.0,2,10,2017,Easy A,Imaginary Sex Scene,tt1282140\nS04wIhoGYQY,2010.0,3,10,2017,Easy A,Faking It Scene,tt1282140\nR0HGeVmyI5I,2008.0,10,10,2017,The House Bunny,Be a Zeta Scene,tt0852713\nio-hA6pxffU,2008.0,4,10,2017,The House Bunny,Sexy Car Wash Scene,tt0852713\njEKFfdQEbcg,2008.0,7,10,2017,The House Bunny,Hot Manhole Scene,tt0852713\nvBLcmGPbryg,2008.0,6,10,2017,The House Bunny,Aztec Night Scene,tt0852713\nQUI-9FAwA8w,2008.0,9,10,2017,The House Bunny,Your Girlfriend Scene,tt0852713\nOJyRbpjlrmA,2008.0,8,10,2017,The House Bunny,Second Date Scene,tt0852713\n61cBscxr69E,2008.0,5,10,2017,The House Bunny,Makeover Scene,tt0852713\nwySz6ysIDhs,2008.0,3,10,2017,The House Bunny,Exorcist Introductions Scene,tt0852713\nsL6gDhH7FpE,2008.0,2,10,2017,The House Bunny,T and A Scene,tt0852713\nYgnhijYmavY,2008.0,1,10,2017,The House Bunny,Blow on This Scene,tt0852713\nVb6cuUI7B3E,2010.0,3,10,2017,Eat Pray Love,Ruin is a Gift Scene,tt0879870\njsyzJJFZzsg,2010.0,10,10,2017,Eat Pray Love,I Decided on My Word Scene,tt0879870\nMGGGksL1ziM,2010.0,9,10,2017,Eat Pray Love,Do You Love Me? Scene,tt0879870\nGbCytLu1-3k,2010.0,2,10,2017,Eat Pray Love,Through with the Guilt Scene,tt0879870\nuA1Kloz4Ics,2010.0,7,10,2017,Eat Pray Love,You Need a Champion Scene,tt0879870\nfJV0KtMZ7x8,2010.0,5,10,2017,Eat Pray Love,Wayan the Healer Scene,tt0879870\nmxz_RfabdUo,2010.0,6,10,2017,Eat Pray Love,Tour Guide Scene,tt0879870\nkRuKg_khl8Q,2010.0,8,10,2017,Eat Pray Love,It's Time Scene,tt0879870\n8Ojsvc_KsDY,2010.0,4,10,2017,Eat Pray Love,So Miss Him Scene,tt0879870\nbvITByUy5fA,2010.0,1,10,2017,Eat Pray Love,I Have No Pulse Scene,tt0879870\nF8Y0hCMWyFg,2009.0,1,10,2017,Paul Blart: Mall Cop,Obstacle Course Fail Scene,tt1114740\nEpcWBu5f2uY,2009.0,8,10,2017,Paul Blart: Mall Cop,Impossible to Underestimate Scene,tt1114740\nMeyU68qSBMI,2009.0,5,10,2017,Paul Blart: Mall Cop,Tanning Bed Trap Scene,tt1114740\nBvcBo3De8Hc,2009.0,10,10,2017,Paul Blart: Mall Cop,Your Flight's Been Cancelled Scene,tt1114740\nYb4Lrplxq_A,2009.0,9,10,2017,Paul Blart: Mall Cop,Minivan Jump Scene,tt1114740\n7EcK-LuhzAA,2009.0,2,10,2017,Paul Blart: Mall Cop,Getting Wasted Scene,tt1114740\nJjbIo_301ZA,2009.0,7,10,2017,Paul Blart: Mall Cop,Rainforest Attack Scene,tt1114740\nCfaPUQMa1gc,2009.0,3,10,2017,Paul Blart: Mall Cop,Air Vent Attack Scene,tt1114740\nptAdtShJa_0,2009.0,4,10,2017,Paul Blart: Mall Cop,A Guy on the Inside Scene,tt1114740\ngmSeaKdO9IQ,2009.0,6,10,2017,Paul Blart: Mall Cop,The Corner of Ne and Ver Scene,tt1114740\nEy-zuaZV8pM,1996.0,1,10,2017,Matilda,They Named Her  Scene,tt0117008\nmwMmZ8dtWNM,1996.0,10,10,2017,Matilda,A Loving Family Scene,tt0117008\nfqnhqkXclUk,1996.0,9,10,2017,Matilda,And the Trunchbull Was Gone Scene,tt0117008\nrDTZ6A5zsYc,1996.0,7,10,2017,Matilda,Little Bitty Pretty One Scene,tt0117008\nq289a8P8Ht8,1996.0,6,10,2017,Matilda,Escape from Trunchbull Scene,tt0117008\nalE17GLFoQE,1996.0,8,10,2017,Matilda,\"I Will Get You, Agatha Scene\",tt0117008\nntirWguFrfM,1996.0,3,10,2017,Matilda,Pigtail Hammer Throw Scene,tt0117008\nEOQeU_6vbeg,1996.0,4,10,2017,Matilda,Bruce vs. Chocolate Cake Scene,tt0117008\nWoN5cCs0l2M,1996.0,2,10,2017,Matilda,\"I'm Smart, You're Dumb Scene\",tt0117008\nIeCZqVq7_pY,1996.0,5,10,2017,Matilda,It's a Newt Scene,tt0117008\nsfWe6CUZUtc,1990.0,12,12,2017,Cadillac Man,Calling Mom Scene,tt0099204\noyqIjdFcJVg,1990.0,9,12,2017,Cadillac Man,I Shot a Cop! Scene,tt0099204\nj2ZsEQ4Fr4c,1990.0,11,12,2017,Cadillac Man,Joey's a Busy Boy Scene,tt0099204\nri8WqeTAUDE,1990.0,10,12,2017,Cadillac Man,Love Sucks Scene,tt0099204\nMnLvPe6VSTM,1990.0,8,12,2017,Cadillac Man,His Name Is Chuck Scene,tt0099204\nsdvrA5qnZo4,1990.0,5,12,2017,Cadillac Man,Open Season on Everyone's Wife Scene,tt0099204\nVVlECM2KyYg,1990.0,2,12,2017,Cadillac Man,Wheeling and Dealing Scene,tt0099204\nyfg9cb_9NWQ,1990.0,7,12,2017,Cadillac Man,Joey Calls a Time-Out Scene,tt0099204\nXLAGTl0Nnws,1990.0,6,12,2017,Cadillac Man,Larry Releases the Ladies Scene,tt0099204\n4ri_ybNiTPU,1990.0,3,12,2017,Cadillac Man,Has She Run Well for You? Scene,tt0099204\n8gvuU-U64d0,1990.0,1,12,2017,Cadillac Man,Sale at a Funeral Scene,tt0099204\nVQjjlqVjiII,1990.0,4,12,2017,Cadillac Man,Larry Shoots Up the Dealership Scene,tt0099204\nz_a4zak_zk0,1990.0,10,12,2017,Mermaids,You Kissed Him! Scene,tt0097757\n27moTiftkCc,1990.0,1,12,2017,Mermaids,You Drive Like Old People Scene,tt0097757\nDTdDzcr-7UM,1990.0,9,12,2017,Mermaids,Pregnancy Scare Scene,tt0097757\nblQ8Wi0VAn0,1990.0,8,12,2017,Mermaids,Running Away Scene,tt0097757\n7OIn2KFDWjM,1990.0,12,12,2017,Mermaids,Dancing in the Kitchen Scene,tt0097757\ntV7wQ19UBqg,1990.0,11,12,2017,Mermaids,Can't We Just Stay? Scene,tt0097757\nkpYZ4G1AQ0c,1990.0,6,12,2017,Mermaids,Charlotte Babbles Scene,tt0097757\nrGAjkzbV8zw,1990.0,3,12,2017,Mermaids,Shoe Shopping Scene,tt0097757\n_sZ4U5aOee0,1990.0,7,12,2017,Mermaids,Charlotte and Joe Kiss Scene,tt0097757\nkswPGoPPdwE,1990.0,4,12,2017,Mermaids,Bus Ride Home Scene,tt0097757\n3XZ9vtsDiuM,1990.0,2,12,2017,Mermaids,Dear God Scene,tt0097757\nFSlLXYohrJg,1990.0,5,12,2017,Mermaids,He's Late Scene,tt0097757\nVnp8CkPERus,2006.0,5,10,2017,Poseidon,A Way Across,tt0409182\nFk69RQS7D8Y,2006.0,10,10,2017,Poseidon,Destroying the Propeller,tt0409182\nqcYPASs4jMQ,2006.0,9,10,2017,Poseidon,A Hero's Sacrifice,tt0409182\nnjnCT6sD1Bk,2006.0,3,10,2017,Poseidon,Some Good Pushin',tt0409182\ni3VNgECX8Ko,2006.0,7,10,2017,Poseidon,Under Pressure,tt0409182\n2HMLj2siVxY,2006.0,8,10,2017,Poseidon,Losing Elena,tt0409182\noZ28XpWmN00,2006.0,6,10,2017,Poseidon,Flooding Vents,tt0409182\n9VsHtn_RSHY,2006.0,1,10,2017,Poseidon,Capsized,tt0409182\n-TqNDG7L__A,2006.0,4,10,2017,Poseidon,Lucky Larry,tt0409182\nb74611maYgQ,2006.0,2,10,2017,Poseidon,Shake Him Off!,tt0409182\nkndeWhsNlJs,1985.0,10,10,2017,Fright Night,Goodbye Neighbor Scene,tt0089175\nVNLN5xyxwAY,1985.0,7,10,2017,Fright Night,The Death of Evil Ed Scene,tt0089175\nPvoBUI7uz-w,1985.0,9,10,2017,Fright Night,Dawn Arrives Scene,tt0089175\nCxrQd6Sn5PA,1985.0,8,10,2017,Fright Night,Billy's Gruesome Demise Scene,tt0089175\nvfc3TGvcjEY,1985.0,5,10,2017,Fright Night,Vampire Dance Trance Scene,tt0089175\nMBqT-UEySlI,1985.0,4,10,2017,Fright Night,You Don't Have to Be Afraid of Me Scene,tt0089175\n68igl3sbzFI,1985.0,6,10,2017,Fright Night,A Girl's First Bite Scene,tt0089175\ndshJG5PEOqY,1985.0,3,10,2017,Fright Night,Holy Water Test Scene,tt0089175\nw98xbfLGWro,1985.0,2,10,2017,Fright Night,You Can't Murder a Vampire Scene,tt0089175\ngnWkYf8Peo8,1985.0,1,10,2017,Fright Night,Uninvited Guest Scene,tt0089175\nUnllAPMRnKE,2016.0,3,10,2017,Money Monster,I Can Make You Whole Scene,tt2241351\npUmu0VJuwOA,2016.0,1,10,2017,Money Monster,Intruder in the Studio Scene,tt2241351\nOpwYfz6uFaQ,2016.0,4,10,2017,Money Monster,Staying Above Water Scene,tt2241351\n_pzN5x6Pepw,2016.0,9,10,2017,Money Monster,It Was Wrong Scene,tt2241351\nL06qVvXrJus,2016.0,10,10,2017,Money Monster,Friday Night Dinner Scene,tt2241351\nIVRy-Jac660,2016.0,7,10,2017,Money Monster,They're Shooting At Me! Scene,tt2241351\nBf6I7N-DC7g,2016.0,2,10,2017,Money Monster,You Said It Was Safe Scene,tt2241351\nkt1aHAlXi4g,2016.0,8,10,2017,Money Monster,What Am I Gonna Do? Scene,tt2241351\nEjAwbjng__4,2016.0,5,10,2017,Money Monster,You're Not a Man Scene,tt2241351\n58DPO_8Bd88,2016.0,6,10,2017,Money Monster,Human Fingerprints Scene,tt2241351\nF58XJgGx3DY,1999.0,5,10,2017,\"Girl, Interrupted\",Downtown Scene,tt0172493\n6VhCGQODB5U,1999.0,9,10,2017,\"Girl, Interrupted\",Playing the Villain Scene,tt0172493\nDTexn9N2HMI,1999.0,10,10,2017,\"Girl, Interrupted\",You're Already Dead Scene,tt0172493\nTq9zhCo-PTQ,1999.0,8,10,2017,\"Girl, Interrupted\",The End of the World Scene,tt0172493\npvNA2JkMfSI,1999.0,6,10,2017,\"Girl, Interrupted\",Ambivalent Scene,tt0172493\nGdrUYcOTUvY,1999.0,7,10,2017,\"Girl, Interrupted\",My Father Loves Me Scene,tt0172493\nWnAVeKAUxPY,1999.0,2,10,2017,\"Girl, Interrupted\",Drugs and Chicken Scene,tt0172493\nS3Po0Tld8Po,1999.0,4,10,2017,\"Girl, Interrupted\",Ice Cream and Crazy People Scene,tt0172493\nGnpxe9kO_V8,1999.0,1,10,2017,\"Girl, Interrupted\",Where's Jamie? Scene,tt0172493\nGEAh4nF90iw,1999.0,3,10,2017,\"Girl, Interrupted\",Borderline Scene,tt0172493\nDubYVqV92OQ,1995.0,5,11,2017,Dead Man Walking,I Ain't No Victim Scene,tt0112818\n_9qsxe5kHdo,1995.0,4,11,2017,Dead Man Walking,Say Your Goodbyes Scene,tt0112818\npz6wAzZlnhE,1995.0,9,11,2017,Dead Man Walking,Last Words Scene,tt0112818\nUQmQ7d-wXQE,1995.0,11,11,2017,Dead Man Walking,Final Breath Scene,tt0112818\ntG2qsoC_-hs,1995.0,3,11,2017,Dead Man Walking,You Brought the Enemy Into This House Scene,tt0112818\nryqyAX_lA7w,1995.0,10,11,2017,Dead Man Walking,Lethal Injection Scene,tt0112818\nqaAz6YklimY,1995.0,2,11,2017,Dead Man Walking,Keep Your Speed Down Scene,tt0112818\nqAfsU2gI408,1995.0,1,11,2017,Dead Man Walking,Entering the Prison Scene,tt0112818\nvUbnqySPN8E,1995.0,8,11,2017,Dead Man Walking,A Face of Love Scene,tt0112818\nexCuIisMWl0,1995.0,7,11,2017,Dead Man Walking,Time Is Running Out Scene,tt0112818\n6wyRTKGY2Tw,1995.0,6,11,2017,Dead Man Walking,Matthew's Confession Scene,tt0112818\nDC2QaWmat7A,2002.0,11,11,2017,Bowling for Columbine,Charlton Heston Walks Out Scene,tt0310793\nrczP7CJB4Hs,2002.0,10,11,2017,Bowling for Columbine,Charlton Heston on Guns Scene,tt0310793\noeQ4HWhPEdA,2002.0,7,11,2017,Bowling for Columbine,Marilyn Manson Talks About Fear Scene,tt0310793\nvJZe9sHz10M,2002.0,9,11,2017,Bowling for Columbine,K-Mart's Statement Scene,tt0310793\njY2PzzjO3zo,2002.0,1,11,2017,Bowling for Columbine,\"Open a Bank Account, Get a Free Gun Scene\",tt0310793\n0C4yBk6syOE,2002.0,5,11,2017,Bowling for Columbine,A Gun Under His Pillow Scene,tt0310793\nyEyQgxLmGmI,2002.0,4,11,2017,Bowling for Columbine,Tyrannical Governments Scene,tt0310793\ndjr5QNJG73k,2002.0,2,11,2017,Bowling for Columbine,Dog Shoots Man Scene,tt0310793\nb4vpGhO2LwA,2002.0,3,11,2017,Bowling for Columbine,Militia Babes Scene,tt0310793\n58BDrZH7SX8,2002.0,8,11,2017,Bowling for Columbine,A Brief History of the United States Scene,tt0310793\n0_-45EGFtA4,2002.0,6,11,2017,Bowling for Columbine,Matt Stone on High School Scene,tt0310793\nNkmUIQL4spM,1932.0,1,9,2017,Freaks,Children in the Woods Scene,tt0022913\nhqqlSTB5CfU,1932.0,9,9,2017,Freaks,It Wasn't Your Fault Scene,tt0022913\nCrlVTZFPnzA,1932.0,8,9,2017,Freaks,The Code of the  Scene,tt0022913\nknJ438gN25k,1932.0,7,9,2017,Freaks,The Little Black Bottle Scene,tt0022913\n39Bnk6VU53Y,1932.0,6,9,2017,Freaks,One of Us! Scene,tt0022913\nSF5EacV4NI0,1932.0,5,9,2017,Freaks,The Wedding Reception Scene,tt0022913\nNTswp_20tsA,1932.0,4,9,2017,Freaks,The Living Torso and Schlitze Scene,tt0022913\n-DXU2ZHuiTs,1932.0,3,9,2017,Freaks,Daisy and Violet Scene,tt0022913\nRUUhcK3Pt14,1932.0,2,9,2017,Freaks,Josephine Joseph Scene,tt0022913\nyEeyJzItKAg,2013.0,9,10,2017,Captain Phillips,Two in the Water Scene,tt1535109\nng95gpwSjZU,2013.0,10,10,2017,Captain Phillips,You're Safe Now Scene,tt1535109\n9z8uqVHf39M,2013.0,6,10,2017,Captain Phillips,Kidnapped Captain Scene,tt1535109\nbPiv1wP8q7g,2013.0,7,10,2017,Captain Phillips,Too Much Talk Scene,tt1535109\nKgmFWHZXmiY,2013.0,8,10,2017,Captain Phillips,Not Here to Negotiate Scene,tt1535109\nXM3MRt89zy4,2013.0,5,10,2017,Captain Phillips,We Have Your Captain Scene,tt1535109\nj21idqW08wU,2013.0,3,10,2017,Captain Phillips,Pirates On Board Scene,tt1535109\nkSmAfIP9CoQ,2013.0,2,10,2017,Captain Phillips,Hit the Hoses Scene,tt1535109\ntf_RRItKJm0,2013.0,1,10,2017,Captain Phillips,Radio Ruse Scene,tt1535109\nKHsn2smp4N4,2013.0,4,10,2017,Captain Phillips,I'm the Captain Now Scene,tt1535109\nXuGD4tGeLFc,2015.0,4,10,2017,The Gift,Listen to Me! Scene,tt4178092\nmmCjPdu2TC4,2015.0,1,10,2017,The Gift,Stop Playing Games Scene,tt4178092\n8gfk5E2iwdU,2015.0,2,10,2017,The Gift,The Wrong House Scene,tt4178092\nR4ZGoNehEp4,2015.0,3,10,2017,The Gift,Robyn's Accident Scene,tt4178092\nWzUMVMrEGnE,2015.0,6,10,2017,The Gift,Accept My Apology Scene,tt4178092\nEtKt8Q32_Rk,2015.0,5,10,2017,The Gift,It Was All a Lie Scene,tt4178092\n3vjTjf7m3Bs,2015.0,8,10,2017,The Gift,Fired and Divorced Scene,tt4178092\nFnT4pAV1Cg4,2015.0,10,10,2017,The Gift,It's All in the Eyes Scene,tt4178092\n5T4sIC7SB_4,2015.0,9,10,2017,The Gift,The Final Gift Scene,tt4178092\nTmnPP66kwwg,2015.0,7,10,2017,The Gift,I Know It Was You Scene,tt4178092\nHtp6crkePuw,2014.0,2,10,2017,Blackhat,Raiding Kassar's Hideout Scene,tt2717822\nb3lOpSXhT0c,2014.0,1,10,2017,Blackhat,Piss Off and Die Scene,tt2717822\n7HWfwLBqSQ4,2014.0,4,10,2017,Blackhat,Hacking the NSA Scene,tt2717822\nqB311wvyggM,2014.0,9,10,2017,Blackhat,Killing Kassar Scene,tt2717822\nlCqHKRjIMu8,2014.0,10,10,2017,Blackhat,It's Not About Zeroes or Ones Scene,tt2717822\ntru0WMH7yic,2014.0,3,10,2017,Blackhat,Move Fast Scene,tt2717822\nngRthItc3Yc,2014.0,6,10,2017,Blackhat,Escaping the Ambush Scene,tt2717822\ngPAI19a84KU,2014.0,5,10,2017,Blackhat,Don't Blame Your Brother Scene,tt2717822\nLr04AEabtnY,2014.0,7,10,2017,Blackhat,Truck Through the Roof Scene,tt2717822\nfPEGcx4MFHI,2014.0,8,10,2017,Blackhat,You're Having a Bad Day Scene,tt2717822\nJcRuXU7cvmo,1999.0,9,9,2017,The Thomas Crown Affair,Reunited Scene,tt0155267\nC3rDWENRI7c,1999.0,7,9,2017,The Thomas Crown Affair,Bowler Hat Guy Scene,tt0155267\nMODlCaeiT0M,1999.0,8,9,2017,The Thomas Crown Affair,Chasing Thomas Scene,tt0155267\nyCrq5v5cg1A,1999.0,5,9,2017,The Thomas Crown Affair,Do You Wanna Dance? Scene,tt0155267\n2zSE8r8jU_U,1999.0,6,9,2017,The Thomas Crown Affair,Burning Renoir Scene,tt0155267\ngp8OWUqg4r4,1999.0,2,9,2017,The Thomas Crown Affair,I'm Catherine Banning Scene,tt0155267\necmDPqCP8ms,1999.0,4,9,2017,The Thomas Crown Affair,You Like the Chase Scene,tt0155267\nkJKWjeMtEDM,1999.0,1,9,2017,The Thomas Crown Affair,Master Monet Thief Scene,tt0155267\nGUDrinKzSus,1999.0,3,9,2017,The Thomas Crown Affair,Always Gets Her Man Scene,tt0155267\nKAE8h2rqA6g,1968.0,11,11,2017,The Thomas Crown Affair,Telegram From Tommy Scene,tt0063688\nz21tJkx07J8,1968.0,9,11,2017,The Thomas Crown Affair,Let's Play Something Else Scene,tt0063688\nk5bN73OnGmo,1968.0,8,11,2017,The Thomas Crown Affair,The Chess Game Scene,tt0063688\naWIcfkvKj9Q,1968.0,10,11,2017,The Thomas Crown Affair,It's Me and the System Scene,tt0063688\na6XtVMtUZI8,1968.0,7,11,2017,The Thomas Crown Affair,Like Ice Scene,tt0063688\n688uSEwvYnQ,1968.0,5,11,2017,The Thomas Crown Affair,He Sounds Just Perfect for You Scene,tt0063688\nbzSIHZcXwvQ,1968.0,6,11,2017,The Thomas Crown Affair,\"A Funny, Dirty Little Job Scene\",tt0063688\n6XRJuEv5Ya4,1968.0,4,11,2017,The Thomas Crown Affair,Vicki Arrives Scene,tt0063688\nfwkB6wAxNVM,1968.0,2,11,2017,The Thomas Crown Affair,\"Crown Says \"\"Go\"\" Scene\",tt0063688\nut_z2-96X0o,1968.0,1,11,2017,The Thomas Crown Affair,In or Out? Scene,tt0063688\nFw19beLDqn8,1968.0,3,11,2017,The Thomas Crown Affair,Crown Has a Laugh Scene,tt0063688\njHl4T9F9Vjw,1996.0,9,11,2017,The Pillow Book,The Book of the Lover Scene,tt0114134\n2oDVJbZxmtk,2014.0,10,10,2017,Pawn Sacrifice,The Greatest Chess Game Ever Played Scene,tt1596345\n_aj999HtbtE,2014.0,9,10,2017,Pawn Sacrifice,Spassky Loses Scene,tt1596345\nZqCnbtz5IgI,2014.0,5,10,2017,Pawn Sacrifice,Nothing To Prove Scene,tt1596345\nGlVzp0Ldv4k,2014.0,6,10,2017,Pawn Sacrifice,Bobby Falls Apart Scene,tt1596345\ntQQ2Cp7xQho,2014.0,8,10,2017,Pawn Sacrifice,I Will Not Win This Way Scene,tt1596345\nFBhqtV3pVe4,2014.0,7,10,2017,Pawn Sacrifice,Win By Forfeit Scene,tt1596345\ndluHLk1Hm64,2014.0,4,10,2017,Pawn Sacrifice,Are You Spying On Me? Scene,tt1596345\nntVZPACMOYA,2014.0,3,10,2017,Pawn Sacrifice,Bobby's Conditions Scene,tt1596345\nPgotX7s-2YY,2014.0,2,10,2017,Pawn Sacrifice,\"Bobby Won't Crack, He Will Explode Scene\",tt1596345\nMa_h1r7VTME,2014.0,1,10,2017,Pawn Sacrifice,He Hates Draws Scene,tt1596345\n-7Qoxub52B0,2015.0,1,10,2017,Woodlawn,Failed Integration Scene,tt4183692\nM89zKEGFuME,2015.0,3,10,2017,Woodlawn,A Star Being Born Scene,tt4183692\nUUD5-dcDdBw,2015.0,2,10,2017,Woodlawn,On This Day Scene,tt4183692\n6VUothtoSeM,2015.0,4,10,2017,Woodlawn,A Hateful Attack Scene,tt4183692\nx26Mst06IoY,2015.0,5,10,2017,Woodlawn,More Important Than Winning Scene,tt4183692\nws5scfTVUA0,2015.0,10,10,2017,Woodlawn,Born to Be a Coach Scene,tt4183692\nAl3TIVxEPm4,2015.0,9,10,2017,Woodlawn,Touchdown Tony Nathan Scene,tt4183692\nH0Bzz3gzvk8,2015.0,6,10,2017,Woodlawn,Because of You Scene,tt4183692\njSStdc_wWV8,2015.0,8,10,2017,Woodlawn,The Power of Prayer Scene,tt4183692\nL6ayQbTmoxg,2015.0,7,10,2017,Woodlawn,When God Shows Up Scene,tt4183692\nOTjYvVfWORo,1995.0,9,9,2017,The Doom Generation,The Three-Way Scene,tt0112887\nTShV3gWFAIY,1995.0,8,9,2017,The Doom Generation,\"Long, Slow and Deep Scene\",tt0112887\nCyetT8hwwtk,1995.0,7,9,2017,The Doom Generation,Tinfoil Bar Fight Scene,tt0112887\nMq3CFDYCWfA,1995.0,5,9,2017,The Doom Generation,I Got Jesus Inside Me Scene,tt0112887\n-vNo9qyUHho,1995.0,6,9,2017,The Doom Generation,My One True Love Scene,tt0112887\n5oEUU8YjUkg,1995.0,1,9,2017,The Doom Generation,Smothered Gerbil Scene,tt0112887\nV0qYlLqMPNI,1995.0,3,9,2017,The Doom Generation,Kwik-E-Kill Scene,tt0112887\nx9GGBivRItA,1995.0,2,9,2017,The Doom Generation,\"Beam Me Up, Scotty Scene\",tt0112887\nAMHSm2gTUmA,1995.0,4,9,2017,The Doom Generation,Welcome to Carnoburger Scene,tt0112887\nTlxOj02Wodk,1996.0,7,11,2017,The Pillow Book,I Could Be Your Messenger Scene,tt0114134\naENEFwxcrBs,1996.0,11,11,2017,The Pillow Book,The Book of the Dead Scene,tt0114134\n2thZKjnQnK4,1996.0,8,11,2017,The Pillow Book,A Jealous Rage Scene,tt0114134\np-0nV3vGvTQ,1996.0,5,11,2017,The Pillow Book,Use My Body Scene,tt0114134\n45MzBLAUUpk,1996.0,6,11,2017,The Pillow Book,The Ritual Scene,tt0114134\nt_GWHV52Tds,1996.0,10,11,2017,The Pillow Book,Jerome's Funeral Scene,tt0114134\nMFUZGrdKqtM,1996.0,4,11,2017,The Pillow Book,I Need Writing Scene,tt0114134\nuMWI1q_J3mk,1996.0,3,11,2017,The Pillow Book,Sweet Pain and Bitter Pleasure Scene,tt0114134\nfoPz4rJfgSQ,1996.0,2,11,2017,The Pillow Book,The Scent of Skin Scene,tt0114134\nATOpJHEjvlI,1996.0,1,11,2017,The Pillow Book,Signing His Own Name Scene,tt0114134\n271ymG6B7aw,1973.0,4,10,2017,Day for Night,A Cat That Can't Act Scene,tt0070460\nVvSlUEWVleo,2015.0,9,10,2017,Legend,When Love Is Gone Scene,tt3569230\noYQWryzBuhs,2015.0,7,10,2017,Legend,A Genius Idea Scene,tt3569230\nR7qVgpQEVBM,2015.0,10,10,2017,Legend,Cause I Can't Kill You Scene,tt3569230\nWXUGWaYOnUs,2015.0,5,10,2017,Legend,Ron vs. Reggie Scene,tt3569230\nQy6dBc-9HRQ,2015.0,8,10,2017,Legend,Are You Mad? Scene,tt3569230\n84WvFryk-1E,2015.0,6,10,2017,Legend,Twin Tussle Scene,tt3569230\nAxUh8zdgPeM,2015.0,4,10,2017,Legend,A Window Proposal Scene,tt3569230\ny-gs5U3OMMM,2015.0,2,10,2017,Legend,50/50 It Is Scene,tt3569230\nxNwPw7mQnpo,2015.0,3,10,2017,Legend,You're Nothing In Here Scene,tt3569230\nj1eQNUaOfZ4,2015.0,1,10,2017,Legend,Bar Beatdown Scene,tt3569230\nOYpO9k6l8Bk,2015.0,10,10,2017,Suffragette,Lead On Scene,tt3077214\n0KZ6EPv2Gio,2015.0,9,10,2017,Suffragette,We Go On Scene,tt3077214\nuov-TD5osLM,2015.0,7,10,2017,Suffragette,Force-Feeding Scene,tt3077214\nsyM_HVHMynw,2015.0,6,10,2017,Suffragette,We Will Win Scene,tt3077214\n9i9S12dwwKM,2015.0,8,10,2017,Suffragette,Emily's Sacrifice Scene,tt3077214\ncazTXFYZ9gw,2015.0,5,10,2017,Suffragette,\"Will You Find Me, George? Scene\",tt3077214\ntTlhLBjQdPc,2015.0,4,10,2017,Suffragette,A Battle None of You Can Win Scene,tt3077214\nhsK4vleN-fE,2015.0,2,10,2017,Suffragette,No Votes For Women Scene,tt3077214\necRAEoKp51M,2015.0,1,10,2017,Suffragette,Maud's Testimony Scene,tt3077214\nbuqRQWuVcw0,2015.0,3,10,2017,Suffragette,The Power Women Have Scene,tt3077214\nzKATih1nvVo,2003.0,10,12,2017,The Cooler,\"Pain, Pain, Pain Scene\",tt0318374\nwRN8Q_Lts7k,2003.0,12,12,2017,The Cooler,Drunk Driver Scene,tt0318374\n-2KG4lLGEl0,2003.0,1,12,2017,The Cooler,\"A Cheap, Fat Whore Scene\",tt0318374\nRZKKrQ8y_Uw,2003.0,4,12,2017,The Cooler,Luck Be a Lady Scene,tt0318374\ndjh21tkgGJ4,2003.0,2,12,2017,The Cooler,I Got You Covered in This Town Scene,tt0318374\nAoKtg7t1Y0M,2003.0,7,12,2017,The Cooler,I Had a Son Scene,tt0318374\nvkXY0EqahbY,2003.0,6,12,2017,The Cooler,Stickler for the Old Ways Scene,tt0318374\nW4kci76gyn0,2003.0,3,12,2017,The Cooler,Pride of Lions Scene,tt0318374\nuWY60oFlfxs,2003.0,5,12,2017,The Cooler,Family Reunion Scene,tt0318374\ns33dP0ETrCo,2003.0,8,12,2017,The Cooler,Shangri-La Scene,tt0318374\n5Ii0_2kAYlU,2003.0,9,12,2017,The Cooler,Bernie's Grandson Scene,tt0318374\nlzo2hgdDUDw,2003.0,11,12,2017,The Cooler,Big Roller Scene,tt0318374\nPW3WxPo74c8,1993.0,9,10,2017,The Saint of Fort Washington,An Untimely Death Scene,tt0108026\nQwkW-Rbo3kE,1993.0,6,10,2017,The Saint of Fort Washington,A Place to Stay Scene,tt0108026\nJoh9cLv0bp4,1993.0,10,10,2017,The Saint of Fort Washington,An Emotional Goodbye Scene,tt0108026\nS1_AkfEVPpI,1993.0,8,10,2017,The Saint of Fort Washington,Back to the Shelter Scene,tt0108026\niJGazi2EdrQ,1993.0,7,10,2017,The Saint of Fort Washington,The Saint of the Homeless Scene,tt0108026\n9ZEUnzRzvGg,1993.0,5,10,2017,The Saint of Fort Washington,Schizophrenic Meltdown Scene,tt0108026\nS1sbKYDgyWA,1993.0,4,10,2017,The Saint of Fort Washington,\"White Eyes, Black Body Scene\",tt0108026\nNQtL20JoP3Q,1993.0,3,10,2017,The Saint of Fort Washington,We Do Take Gratuities Scene,tt0108026\nSuEt5n-k0e8,1993.0,1,10,2017,The Saint of Fort Washington,He's My Son Scene,tt0108026\nezOyoEG6GW8,1993.0,2,10,2017,The Saint of Fort Washington,Hearing Voices Scene,tt0108026\njSnvLrw4YR0,1973.0,9,10,2017,Day for Night,Everyone's Magic Scene,tt0070460\ntlI--ATerwo,1973.0,8,10,2017,Day for Night,What a Funny Life We Lead Scene,tt0070460\nzFxkzMB3qCE,1973.0,5,10,2017,Day for Night,Actors Are So Vulnerable Scene,tt0070460\np4HqnBtsz1I,1973.0,10,10,2017,Day for Night,Life is Rotten Scene,tt0070460\nnBsxbjTIJxs,1973.0,2,10,2017,Day for Night,What is a Director? Scene,tt0070460\nDj9G_kEq5W8,1973.0,6,10,2017,Day for Night,Cinema is King Scene,tt0070460\nuFNIrs3jtEQ,1973.0,3,10,2017,Day for Night,The Wrong Door Scene,tt0070460\nkYFrx0jdcoY,1973.0,7,10,2017,Day for Night,The Car Stunt Scene,tt0070460\nW6KRJEKYY7k,1973.0,1,10,2017,Day for Night,\"Filming \"\"Meet Pamela\"\" Scene\",tt0070460\nJFeaWHDQzQA,2010.0,10,10,2017,The Social Network,I'm Not a Bad Guy Scene,tt1285016\ny3NLNK72mzI,2010.0,9,10,2017,The Social Network,I Was Your Only Friend Scene,tt1285016\nDwiczhta4e0,2010.0,8,10,2017,The Social Network,Putting Out Fires Scene,tt1285016\nTGqOd_3mrr4,2010.0,4,10,2017,The Social Network,We Have Groupies Scene,tt1285016\nk5fJmkv02is,2010.0,6,10,2017,The Social Network,A Billion Dollars Scene,tt1285016\n6-_tIPShuwQ,2010.0,3,10,2017,The Social Network,Cease and Desist Scene,tt1285016\nVlSkPA60ujQ,2010.0,1,10,2017,The Social Network,You're Breaking Up With Me? Scene,tt1285016\nrX6oUNKUbI8,2010.0,5,10,2017,The Social Network,Right and Wrong Scene,tt1285016\n6KHyMISpE18,2010.0,7,10,2017,The Social Network,\"I'm CEO, Bitch Scene\",tt1285016\n-Koj9hvcBMk,2010.0,2,10,2017,The Social Network,I Deserve Some Recognition Scene,tt1285016\n9jL7oaQAPMI,2011.0,3,10,2017,The Girl with the Dragon Tattoo,Shots and Stitches Scene,tt1568346\ni2xyQnF1kro,2011.0,2,10,2017,The Girl with the Dragon Tattoo,Help Me Catch a Killer Scene,tt1568346\n5enqrVvjxg0,2011.0,6,10,2017,The Girl with the Dragon Tattoo,May I Kill Him? Scene,tt1568346\n63Lf9kwyWd4,2011.0,4,10,2017,The Girl with the Dragon Tattoo,I Wanna Show You Something Scene,tt1568346\ngTakZ13l8xY,2011.0,5,10,2017,The Girl with the Dragon Tattoo,Satisfying My Urges Scene,tt1568346\nvP7uKAQLwXc,2011.0,7,10,2017,The Girl with the Dragon Tattoo,The Crash Scene,tt1568346\nYvNjJgJM728,2011.0,8,10,2017,The Girl with the Dragon Tattoo,I Tried to Kill My Father Scene,tt1568346\nmCSno4xODKY,2011.0,9,10,2017,The Girl with the Dragon Tattoo,I'd Like to Make a Deposit Scene,tt1568346\nDSaBwTpdfkQ,2011.0,10,10,2017,The Girl with the Dragon Tattoo,Unmet Expectations Scene,tt1568346\niddBzE3syI4,2011.0,1,10,2017,The Girl with the Dragon Tattoo,I Just Want My Money Scene,tt1568346\nbwoxnQ4eLR4,2015.0,7,10,2017,Dope,The N Word Scene,tt3850214\nP2eknXZ8aLk,2015.0,10,10,2017,Dope,Student A or Student B Scene,tt3850214\nTktPJgdwMtQ,2015.0,8,10,2017,Dope,Real or Fake? Scene,tt3850214\nytHR10ZesTY,2015.0,6,10,2017,Dope,William the Drug Dealer Scene,tt3850214\nw-juhvM7yug,2015.0,4,10,2017,Dope,Criplexia Scene,tt3850214\nMnMwbnAWawE,2015.0,5,10,2017,Dope,Nobody Got Time for This! Scene,tt3850214\nEHUO2DqnD-o,2015.0,3,10,2017,Dope,Find My iPhone Scene,tt3850214\n_4Od7V2mVG8,2015.0,2,10,2017,Dope,Drone Strikes and Gang Fights Scene,tt3850214\nrLNN6Kef3Yk,2015.0,1,10,2017,Dope,Malcolm the Geek Scene,tt3850214\n8BplQQtTt_A,2015.0,9,10,2017,Dope,Blackmailing Jacoby Scene,tt3850214\n7doKgPFilPg,2014.0,2,10,2017,Get on Up,Welcome to America Scene,tt2473602\n7DP-JKwZrA0,2014.0,1,10,2017,Get on Up,Settle Down Captain Scene,tt2473602\nIfecgEak80I,2014.0,3,10,2017,Get on Up,\"It Don't Move, It Don't Move Nobody Scene\",tt2473602\npKsa_9TFG48,2014.0,4,10,2017,Get on Up,The Battle Royale Scene,tt2473602\np_wCMFyHeUE,2014.0,6,10,2017,Get on Up,The Night Train Scene,tt2473602\nYYo5jJy61T8,2014.0,5,10,2017,Get on Up,James Brown and His Famous Flames Scene,tt2473602\n_PSEaTZSZEE,2014.0,7,10,2017,Get on Up,A Brand New Bag Scene,tt2473602\n2rSnCcaMDdg,2014.0,8,10,2017,Get on Up,We're Together or We Ain't Scene,tt2473602\n4At_9_s2lDY,2014.0,10,10,2017,Get on Up,Soul Power Scene,tt2473602\n9OlXAy0L0yI,2014.0,9,10,2017,Get on Up,Papa Don't Take No Mess Scene,tt2473602\n5X_ZiFC5RMg,2008.0,7,7,2017,Speed Racer,\"Spearhook, He Got Me! Scene\",tt0811080\nqIs2PMXvAmQ,2008.0,6,7,2017,Speed Racer,Mountain Pass Aggression Scene,tt0811080\nYiCzTGRqCQ4,2008.0,5,7,2017,Speed Racer,More Like A Non-ja Scene,tt0811080\nO-QaGllHqN0,2008.0,1,7,2017,Speed Racer,Following in His Brother's Footsteps Scene,tt0811080\ngC672314kEU,2008.0,2,7,2017,Speed Racer,Trixie Meets Speed Scene,tt0811080\nYYsdcBacV2U,2008.0,3,7,2017,Speed Racer,Racing a Legacy Scene,tt0811080\ngZ-QU3KT1PE,2008.0,4,7,2017,Speed Racer,Racer X Rescue Scene,tt0811080\nsR0wCC271s4,2001.0,1,10,2017,The Man Who Wasn't There,I Just Cut the Hair Scene,tt0243133\nGC9MkHzTnRg,2001.0,3,10,2017,The Man Who Wasn't There,The Murder Scene,tt0243133\nZti44ptZTrc,2001.0,2,10,2017,The Man Who Wasn't There,A Blackmail Note Scene,tt0243133\nKsimmeikE7w,2001.0,4,10,2017,The Man Who Wasn't There,Freddy Reidenschneider Scene,tt0243133\nBjsuTimPBAM,2001.0,5,10,2017,The Man Who Wasn't There,It Stinks Scene,tt0243133\ngM8trQSURdg,2001.0,8,10,2017,The Man Who Wasn't There,A Diamond in the Rough Scene,tt0243133\nf2Hz2k2PcfI,2001.0,6,10,2017,The Man Who Wasn't There,Reasonable Doubt Scene,tt0243133\nXtduKM28ohU,2001.0,9,10,2017,The Man Who Wasn't There,An Enthusiast Scene,tt0243133\nZLjp7ahdbWc,2001.0,10,10,2017,The Man Who Wasn't There,The End Scene,tt0243133\nhOB4Qm1IiOY,2001.0,7,10,2017,The Man Who Wasn't There,The Ghost Scene,tt0243133\nxPwAEt1Ajmk,1997.0,10,11,2017,Eve's Bayou,I Will Kill You Scene,tt0119080\nIN0Nrftr8a0,1997.0,11,11,2017,Eve's Bayou,A Letter from Louis Scene,tt0119080\nXzUFmbuyrCc,1997.0,9,11,2017,Eve's Bayou,I Want Him Dead! Scene,tt0119080\nDYt__vjvf9s,1997.0,6,11,2017,Eve's Bayou,You Little Ingrate Scene,tt0119080\nB0vxLqX3oAQ,1997.0,7,11,2017,Eve's Bayou,\"Mozelle, Hosea and Maynard Scene\",tt0119080\n10f-q34JJZs,1997.0,8,11,2017,Eve's Bayou,Life Is Filled With Goodbyes Scene,tt0119080\nWUVa_vf09dg,1997.0,3,11,2017,Eve's Bayou,Blind to My Own Life Scene,tt0119080\nkIPK3l5gd9g,1997.0,5,11,2017,Eve's Bayou,The Black Widow Scene,tt0119080\nO60YQRhi0s0,1997.0,1,11,2017,Eve's Bayou,Caught in the Act Scene,tt0119080\n6LBW-X4DnSU,1997.0,4,11,2017,Eve's Bayou,Something for the Pain Scene,tt0119080\nDbUDOZoHYkU,1997.0,2,11,2017,Eve's Bayou,How Come You Never Dance With Me? Scene,tt0119080\nMF_RlYTOmco,1969.0,6,10,2017,Topaz,Exposed Scene,tt0065112\nNz4zu_fSHYY,1969.0,1,10,2017,Topaz,The Red Case Scene,tt0065112\n5SkzHjQrCXk,1969.0,2,10,2017,Topaz,A Woman in Cuba Scene,tt0065112\ntS36ZnWoR70,1969.0,4,10,2017,Topaz,I Will Raise Such Hell Scene,tt0065112\nHLw1Og_JXK8,1969.0,3,10,2017,Topaz,Presents and Passion Scene,tt0065112\ndkAv65bo8a8,1969.0,5,10,2017,Topaz,The Purple Dress Scene,tt0065112\nFQoR9fu-CIE,1969.0,8,10,2017,Topaz,This Cannot Be Escaped Scene,tt0065112\njVu_cuFHZnc,1969.0,7,10,2017,Topaz,A Ring of Spies Scene,tt0065112\n7A6HQOrRDiw,1969.0,10,10,2017,Topaz,Portrait of a Dead Traitor Scene,tt0065112\n8yACSHANED0,1969.0,9,10,2017,Topaz,Death Discovered Scene,tt0065112\nACcJF4BpXXU,1990.0,11,11,2017,Rosencrantz & Guildenstern Are Dead,That's It Then Scene,tt0100519\ntdADTzvJtSY,1990.0,6,11,2017,Rosencrantz & Guildenstern Are Dead,Life in a Box Scene,tt0100519\nzJ3hgBFfQy0,1990.0,7,11,2017,Rosencrantz & Guildenstern Are Dead,An Intuition of Mortality Scene,tt0100519\nC_TfdNAXOwE,1990.0,1,11,2017,Rosencrantz & Guildenstern Are Dead,Heads Scene,tt0100519\ng3FFfmWvyAk,1990.0,3,11,2017,Rosencrantz & Guildenstern Are Dead,Delve! Scene,tt0100519\nexFv7Srgwpk,1990.0,10,11,2017,Rosencrantz & Guildenstern Are Dead,The Player Fakes His Death Scene,tt0100519\nfxVsGcxK1nc,1990.0,9,11,2017,Rosencrantz & Guildenstern Are Dead,Pirates Attack the Ship Scene,tt0100519\n7wniAznxp08,1990.0,8,11,2017,Rosencrantz & Guildenstern Are Dead,You Call That an Ending? Scene,tt0100519\nBLgX2oB_qn4,1990.0,5,11,2017,Rosencrantz & Guildenstern Are Dead,Silent But Deadly Scene,tt0100519\npf0erXl4pwQ,1990.0,4,11,2017,Rosencrantz & Guildenstern Are Dead,At the Mercy of the Elements Scene,tt0100519\nu3xIs0aajN4,1990.0,2,11,2017,Rosencrantz & Guildenstern Are Dead,Playing Questions Scene,tt0100519\n5lCObNv4T5M,1999.0,1,7,2017,Buena Vista Social Club,Ibrahim and Omara Scene,tt0186508\nyTq_QU464Aw,1999.0,2,7,2017,Buena Vista Social Club,Francisco Scene,tt0186508\nK8PDbQK7Jro,1999.0,3,7,2017,Buena Vista Social Club,The Pianist Scene,tt0186508\nqzjPtczHQkU,1999.0,4,7,2017,Buena Vista Social Club,Barbarito Scene,tt0186508\ntdfhiqOFtjk,1999.0,5,7,2017,Buena Vista Social Club,Bringing the Band Together Scene,tt0186508\nqodNg2Xr7mA,1999.0,6,7,2017,Buena Vista Social Club,This is the Life Scene,tt0186508\ne7uz82t68To,1999.0,7,7,2017,Buena Vista Social Club,Chan Chan Scene,tt0186508\nFJZR935H0hw,2000.0,8,9,2017,Dr. T and the Women,Run Away With Me! Scene,tt0205271\nLEq4-b61Hoo,2011.0,9,10,2017,Friends with Benefits,Who Needs Friends? Scene,tt1632708\n-SkeK7t74oo,2011.0,3,10,2017,Friends with Benefits,Times Square Flash Mob Scene,tt1632708\n7fduMinwJZ8,2011.0,1,10,2017,Friends with Benefits,Two Break-Ups Scene,tt1632708\nq8nzGlXDvO8,2011.0,8,10,2017,Friends with Benefits,Glad I Met You Scene,tt1632708\nkzf7hr9O00k,2011.0,2,10,2017,Friends with Benefits,Welcome to New York Scene,tt1632708\n8Pd2fpoD0Xg,2011.0,5,10,2017,Friends with Benefits,Just Sex Scene,tt1632708\nY9b8tw9TR2k,2011.0,10,10,2017,Friends with Benefits,I Want My Best Friend Back Scene,tt1632708\nPI6Q87pjO0o,2011.0,4,10,2017,Friends with Benefits,I Wish Life Was a Movie Scene,tt1632708\nPX5QjCErMgU,2011.0,6,10,2017,Friends with Benefits,Mommy's Little Slampiece Scene,tt1632708\nqqSS99m2dQ0,2011.0,7,10,2017,Friends with Benefits,Seeing Other People Scene,tt1632708\nwJeeueogQQ4,2000.0,6,9,2017,Dr. T and the Women,A Nice Massage Scene,tt0205271\nLEQ9ISPbfyM,2000.0,7,9,2017,Dr. T and the Women,The Wedding Scene,tt0205271\np9d7IXlAVUo,2000.0,9,9,2017,Dr. T and the Women,Texas Tornado Scene,tt0205271\nSRlJ2SMwwYg,2000.0,5,9,2017,Dr. T and the Women,Yeast Infection Scene,tt0205271\nZ-DbvvyH6Q4,2000.0,1,9,2017,Dr. T and the Women,The Hestia Complex Scene,tt0205271\nK1ubjdkdmkc,2000.0,4,9,2017,Dr. T and the Women,I Surprised All Three of Us! Scene,tt0205271\nJZ5bvcWLEW4,2000.0,2,9,2017,Dr. T and the Women,Bridal Shower Scene,tt0205271\nQWPntJVp6cM,2000.0,3,9,2017,Dr. T and the Women,Lady of the Lake Scene,tt0205271\nGae_um_eNZU,1991.0,6,8,2017,Defending Your Life,Suck it Up Scene,tt0101698\nwdS1l__SWms,1991.0,8,8,2017,Defending Your Life,Brave Enough Scene,tt0101698\nwfq7O3AgXdE,1991.0,5,8,2017,Defending Your Life,How Did You Die? Scene,tt0101698\nN8QzCj1RdpU,1991.0,3,8,2017,Defending Your Life,Friendly Sushi Scene,tt0101698\nbaNc64S4DHY,1999.0,10,10,2017,Things You Can Tell Just by Looking at Her,Carol's Broken Heart Scene,tt0210358\nQeWifFsvr8o,1999.0,8,10,2017,Things You Can Tell Just by Looking at Her,When We First Met Scene,tt0210358\nkZcr7bw6k_k,1999.0,5,10,2017,Things You Can Tell Just by Looking at Her,New Neighbor Scene,tt0210358\nf8-6UgJ6dSo,1999.0,7,10,2017,Things You Can Tell Just by Looking at Her,\"Love Rules, Baby Scene\",tt0210358\n_DtsWj_e2vI,1999.0,9,10,2017,Things You Can Tell Just by Looking at Her,Blind Date Preparation Scene,tt0210358\naL_6-dQCzwg,1999.0,6,10,2017,Things You Can Tell Just by Looking at Her,Neighborhood Welcome Scene,tt0210358\nYpDpOphD1zo,1999.0,2,10,2017,Things You Can Tell Just by Looking at Her,Parking Lot Cigarette Scene,tt0210358\nNKjZRRw3-Fs,1999.0,4,10,2017,Things You Can Tell Just by Looking at Her,A Snake and a Whore Scene,tt0210358\n_5uHK-fVMcY,1999.0,1,10,2017,Things You Can Tell Just by Looking at Her,A Great Pretender Scene,tt0210358\nU9t_bzEKBnA,1999.0,3,10,2017,Things You Can Tell Just by Looking at Her,Looking for Trouble Scene,tt0210358\nbJ63bxSclsU,1986.0,10,11,2017,Shanghai Surprise,Scene,tt0091934\n4_mFP5qAVqM,1986.0,8,11,2017,Shanghai Surprise,Drunk With the Ducks Scene,tt0091934\nkeTP_H6jqZk,1986.0,11,11,2017,Shanghai Surprise,The Crate Escape Scene,tt0091934\n2_ix6kre_tA,1986.0,7,11,2017,Shanghai Surprise,Under Obligation Scene,tt0091934\ng0RJFzg31xY,1986.0,9,11,2017,Shanghai Surprise,Someplace Else Scene,tt0091934\n5QEWc2zmxGE,1986.0,6,11,2017,Shanghai Surprise,The Whip and the Horse Scene,tt0091934\n8wx1XlXs4Ss,1986.0,5,11,2017,Shanghai Surprise,Fish Food Scene,tt0091934\nP3YJLGWoPL0,1986.0,1,11,2017,Shanghai Surprise,A Man Can Always Use Luck Scene,tt0091934\nxW2pDmzhD4o,1986.0,4,11,2017,Shanghai Surprise,Rickshaw Chase Scene,tt0091934\nwbWWF1RwQU4,1986.0,2,11,2017,Shanghai Surprise,The Devil Himself Scene,tt0091934\nVk1Ca1ruQKA,1986.0,3,11,2017,Shanghai Surprise,Sorely Lacking in Moral Fiber Scene,tt0091934\nWL4kf1SZAE8,2012.0,8,10,2017,Seeking a Friend for the End of the World,Pulled Over Scene,tt1307068\nAtgkgRgn8Y0,2012.0,4,10,2017,Seeking a Friend for the End of the World,Rest of Your Life Scene,tt1307068\nxAf9G9cqQbw,2012.0,10,10,2017,Seeking a Friend for the End of the World,To Be With You Scene,tt1307068\nf6-8wpMn_8I,2012.0,9,10,2017,Seeking a Friend for the End of the World,I'm Sorry Scene,tt1307068\nPMLfJk1X64I,2012.0,7,10,2017,Seeking a Friend for the End of the World,Too Friendly Scene,tt1307068\nYFnErcVxB-Q,2012.0,6,10,2017,Seeking a Friend for the End of the World,Friendsy's Scene,tt1307068\n1yi8Mc-5kLc,2012.0,5,10,2017,Seeking a Friend for the End of the World,The Hit Man Scene,tt1307068\nOt5G0Nh6EyY,2012.0,3,10,2017,Seeking a Friend for the End of the World,Double Stuffing Scene,tt1307068\nEHqjx0MHej0,2012.0,2,10,2017,Seeking a Friend for the End of the World,This is the Titanic Scene,tt1307068\neT4bhNABlYM,2012.0,1,10,2017,Seeking a Friend for the End of the World,Anyone Want to Be CFO? Scene,tt1307068\n2kV2EVWNqXQ,1986.0,5,9,2017,Police Academy 3: Back in Training,Tear Gas Training Scene,tt0091777\nwI1LRBDvSFs,1986.0,8,9,2017,Police Academy 3: Back in Training,The Blue Oyster Scene,tt0091777\nN6jkWHo8D_s,1986.0,6,9,2017,Police Academy 3: Back in Training,I Love America! Scene,tt0091777\nsrLwGlDe598,1986.0,9,9,2017,Police Academy 3: Back in Training,Identify Your Quarter Scene,tt0091777\n--ifbq2xY6I,1986.0,7,9,2017,Police Academy 3: Back in Training,Naked Proctor Scene,tt0091777\n1e_9GirqmoI,1986.0,1,9,2017,Police Academy 3: Back in Training,Welcome to Police Academy Scene,tt0091777\nqo1cSaFhPiQ,1986.0,4,9,2017,Police Academy 3: Back in Training,Basic Training Scene,tt0091777\ncil6HFXlccw,1986.0,2,9,2017,Police Academy 3: Back in Training,Nice Bike! Scene,tt0091777\n7g5k1qwVLjw,1986.0,3,9,2017,Police Academy 3: Back in Training,Roommate Problems Scene,tt0091777\nREwimg6y1Cg,1985.0,7,9,2017,Police Academy 2,Fight at the Blue Oyster Scene,tt0089822\nWqWefwlmFmI,1985.0,3,9,2017,Police Academy 2,Lighting Up the Light Store Scene,tt0089822\nkPNy_yGvpKI,1985.0,5,9,2017,Police Academy 2,Shopping Spree Scene,tt0089822\nu7IXETT9OEQ,1985.0,4,9,2017,Police Academy 2,If Caring Is a Crime  Scene,tt0089822\nTUMru_xqvMU,1985.0,9,9,2017,Police Academy 2,Family Roughhousing Scene,tt0089822\nWFUAl0Nly7Y,1985.0,2,9,2017,Police Academy 2,That's a Nice Piece Scene,tt0089822\n3EIqxstBVCs,1985.0,1,9,2017,Police Academy 2,Loud Lunch Scene,tt0089822\nhH0av1iDYVI,1985.0,6,9,2017,Police Academy 2,He Thinks He's Bruce Lee Scene,tt0089822\nakSjCFfKAMo,1985.0,8,9,2017,Police Academy 2,Disrobe and Disarm Scene,tt0089822\n3i7EvW15Lyk,1991.0,10,10,2017,Mannequin: On the Move,A Princess Rescue Scene,tt0102395\nLWvcLI0lcFQ,1991.0,9,10,2017,Mannequin: On the Move,Butch Montrose Scene,tt0102395\nOwfT8yTBPYs,1991.0,8,10,2017,Mannequin: On the Move,Department Store Chase Scene,tt0102395\nHRJ1g7i0Ob8,1991.0,1,10,2017,Mannequin: On the Move,Hollywood Montrose Scene,tt0102395\n_525BmUkPmI,1991.0,5,10,2017,Mannequin: On the Move,Bubble Bath and Breakfast Scene,tt0102395\n4JtubCgodCE,1991.0,7,10,2017,Mannequin: On the Move,A Few Good Men Scene,tt0102395\noToIYlwJY9I,1991.0,4,10,2017,Mannequin: On the Move,This Is Dancing Scene,tt0102395\nUxjYMYu0F8o,1991.0,6,10,2017,Mannequin: On the Move,Hollywood Montrose Mannequin Scene,tt0102395\nq1SFvQhjK5I,1991.0,3,10,2017,Mannequin: On the Move,On a Date Scene,tt0102395\nJ5K0XKyL3i8,1987.0,2,12,2017,Mannequin,Felix & Rambo Scene,tt0093493\nDGQkgqsHQns,1987.0,12,12,2017,Mannequin,Window Wedding Scene,tt0093493\np6HbXVaNFfc,1987.0,4,12,2017,Mannequin,Dancing in The Store Scene,tt0093493\nvW7-H-GGYwk,1987.0,9,12,2017,Mannequin,Hollywood Hose Down Scene,tt0093493\nqA_zzk2c7G8,1987.0,1,12,2017,Mannequin,You're Fired! Scene,tt0093493\nUg6yhGuDcUQ,1987.0,5,12,2017,Mannequin,Don't Mess With a  Scene,tt0093493\nz7gYF5LF-ec,1987.0,3,12,2017,Mannequin,Emmy Comes Alive Scene,tt0093493\ndIy6QpVNPuo,1987.0,7,12,2017,Mannequin,A Motorcycle and a  Scene,tt0093493\nTeeNLFHot1Q,1987.0,6,12,2017,Mannequin,\"Bye, Roxie Scene\",tt0093493\nYvT0GTWPw0M,1987.0,8,12,2017,Mannequin,Stealing Emmy Scene,tt0093493\n0RM_Ehtb5C4,1987.0,10,12,2017,Mannequin,I'm Alive Scene,tt0093493\nORV1uYzvZzo,1987.0,11,12,2017,Mannequin,B.J. & Co. Get Served Scene,tt0093493\nwBM9Aa_HG8g,1991.0,2,10,2017,Mannequin: On the Move,Coming to Life Scene,tt0102395\nQQFxcGwtEBY,1989.0,1,11,2017,Little Monsters,Monsters Under My Bed Scene,tt0097758\nMQ1YkJX4SJM,1989.0,8,11,2017,Little Monsters,Revenge on Ronnie Scene,tt0097758\nwzYPC7FOJtc,1989.0,7,11,2017,Little Monsters,Fun Down Under Scene,tt0097758\ndHSjJmNISjs,1989.0,9,11,2017,Little Monsters,A Trial Separation Scene,tt0097758\n_5HRlIFjZiw,1989.0,6,11,2017,Little Monsters,First Trip to Monster Land Scene,tt0097758\nAbU-6GsTbyE,1989.0,5,11,2017,Little Monsters,Lights Out Scene,tt0097758\nraGaJdEHjEI,1989.0,11,11,2017,Little Monsters,Saying Goodbye Scene,tt0097758\nIWZLSjyJPsU,1989.0,4,11,2017,Little Monsters,Brian Meets Maurice Scene,tt0097758\n75AdYZPT3nE,1989.0,3,11,2017,Little Monsters,A Scary Story Scene,tt0097758\nAgCF4dXv2JE,1989.0,2,11,2017,Little Monsters,First Fight at the New School Scene,tt0097758\nKVWBllfyysk,1989.0,10,11,2017,Little Monsters,Brother to the Rescue Scene,tt0097758\nKrBI7YdIPYk,1982.0,10,10,2017,Swamp Thing,Monster Mash Scene,tt0084745\nosE84bZ1jNc,1982.0,6,10,2017,Swamp Thing,\"Goodbye Arm, Goodbye Ferret Scene\",tt0084745\n71Nmq8VOKnY,1982.0,9,10,2017,Swamp Thing,He's Taken the Formula! Scene,tt0084745\n1GfDQpfUaHQ,1982.0,7,10,2017,Swamp Thing,Swamp Romance Scene,tt0084745\nsISJ7r3kERg,1982.0,8,10,2017,Swamp Thing,Bruno Gets Dosed Scene,tt0084745\nbWQ1ekGzhwU,1982.0,5,10,2017,Swamp Thing,Attack on the  Scene,tt0084745\nq42thgSKkpo,1982.0,3,10,2017,Swamp Thing,Arrives Scene,tt0084745\nCony281khiE,1982.0,4,10,2017,Swamp Thing,Protecting Alice Scene,tt0084745\nzLkNUykewic,1982.0,2,10,2017,Swamp Thing,Burned Alive Scene,tt0084745\ncio6rIbCs-I,1982.0,1,10,2017,Swamp Thing,My Name Is Arcane Scene,tt0084745\nT5cFTmim4Rw,2001.0,10,11,2017,Jeepers Creepers,Stalk and Sniff Scene,tt0263488\nVBTrQhEwFqA,2001.0,11,11,2017,Jeepers Creepers,The Creeper Takes Darry Scene,tt0263488\nkJnH45GslL0,2001.0,9,11,2017,Jeepers Creepers,Confronting Jezelle Scene,tt0263488\nvFD6BbYg0-0,2001.0,8,11,2017,Jeepers Creepers,A Hole in a Cop Scene,tt0263488\nBXXY48jjLtw,2001.0,7,11,2017,Jeepers Creepers,Running Over the Creeper Scene,tt0263488\n5ZUgU9CsjDc,2001.0,6,11,2017,Jeepers Creepers,The Creeper Shows His Face Scene,tt0263488\nP5kDAUzl-T4,2001.0,5,11,2017,Jeepers Creepers,Tongue Eater Scene,tt0263488\nnI6agjxMa2s,2001.0,2,11,2017,Jeepers Creepers,Run Off the Road Scene,tt0263488\noWSIUe5wYvc,2001.0,4,11,2017,Jeepers Creepers,Finding the Body Scene,tt0263488\n6QYw68kf4sI,2001.0,1,11,2017,Jeepers Creepers,Crazy Truck Driver Scene,tt0263488\nAZfCHDSJc8c,2001.0,3,11,2017,Jeepers Creepers,Down the Pipe Scene,tt0263488\n6loInvUSYEM,1989.0,2,11,2017,Leviathan,A Skin Sample Scene,tt0097737\n5vFi7gu-g-w,1989.0,9,11,2017,Leviathan,We're Still Here! Scene,tt0097737\nRPW4sx3UYjU,1989.0,3,11,2017,Leviathan,Skin Exam Scene,tt0097737\n3lex4AAgAfs,1989.0,7,11,2017,Leviathan,It's Growing Scene,tt0097737\nwa1uJbTy6XE,1989.0,11,11,2017,Leviathan,\"Say \"\"Ahh\"\" Scene\",tt0097737\n8IJEqeoPPs8,1989.0,10,11,2017,Leviathan,One Minute to Implosion Scene,tt0097737\nNP2fSxIpvis,1989.0,6,11,2017,Leviathan,Everybody's Jumpy Scene,tt0097737\nKMI-Sxq9Npg,1989.0,5,11,2017,Leviathan,Don't F*** with Mother Nature Scene,tt0097737\nzeSe5X9ALXg,1989.0,8,11,2017,Leviathan,The Monster Escapes Scene,tt0097737\nZP73cUcxidQ,1989.0,4,11,2017,Leviathan,Flushing the Bodies Scene,tt0097737\nw9I7PBSMBZw,1989.0,1,11,2017,Leviathan,A New Discovery Scene,tt0097737\njqpkvCebSmU,1999.0,10,10,2017,The Rage: Carrie 2,Epilogue Scene,tt0144814\nJmls6360U9Q,1999.0,1,10,2017,The Rage: Carrie 2,Early Symptoms Scene,tt0144814\nE_14d8dHpns,1999.0,7,10,2017,The Rage: Carrie 2,One Killer Party Scene,tt0144814\n7SojZ1TuMsk,1999.0,8,10,2017,The Rage: Carrie 2,A Penetrating Vengeance Scene,tt0144814\nxTKfpU41hbY,1999.0,9,10,2017,The Rage: Carrie 2,Burning Love Scene,tt0144814\nRt3u4bU6EMU,1999.0,5,10,2017,The Rage: Carrie 2,True or False? Scene,tt0144814\nUK0wGi3JHrY,1999.0,4,10,2017,The Rage: Carrie 2,Drop Those Trousers Scene,tt0144814\nqWiGcXSaKUc,1999.0,6,10,2017,The Rage: Carrie 2,Twisted Memorial Scene,tt0144814\nATU0Znam5Pw,1999.0,3,10,2017,The Rage: Carrie 2,Counseling Scene,tt0144814\ncrIlIvBYMoc,1999.0,2,10,2017,The Rage: Carrie 2,Jumper Scene,tt0144814\nnm86_ZWeUzk,2013.0,10,10,2017,White House Down,No Jail for You Scene,tt2334879\nUF2c01_glHU,2013.0,9,10,2017,White House Down,Millions of People Are Gonna Die Scene,tt2334879\naucs5KRFzhE,2013.0,6,10,2017,White House Down,Helicopter Hunting Scene,tt2334879\nc4ibjfBu1IY,2013.0,8,10,2017,White House Down,Air Force One Destroyed Scene,tt2334879\nPZBy1m-MmlQ,2013.0,7,10,2017,White House Down,Hand-to-Hand Combat Scene,tt2334879\nvqxbLAcIgiw,2013.0,5,10,2017,White House Down,You're Not Going to Shoot the President Scene,tt2334879\nWCaRP0aT9CU,2013.0,4,10,2017,White House Down,Presidential Rocket Launcher Scene,tt2334879\nbp_GxHYCq90,2013.0,3,10,2017,White House Down,Ground Force One Scene,tt2334879\nJV2dQauaWCU,2013.0,2,10,2017,White House Down,Mr. President Pulls the Trigger Scene,tt2334879\n_Mr6MQB8vRg,2013.0,1,10,2017,White House Down,Consider This My Resignation Scene,tt2334879\nsnTvACYp8NA,2012.0,9,10,2017,Safe House,Housekeeping Scene,tt1599348\ng9d1TR6Lb9g,2012.0,7,10,2017,Safe House,Bullets Over Shantytown Scene,tt1599348\nKyfXb39rGT0,2012.0,10,10,2017,Safe House,We Got Him Scene,tt1599348\nXJsuAUwGz0M,2012.0,8,10,2017,Safe House,Who Do You Work For? Scene,tt1599348\nCn_nTq97C7Y,2012.0,6,10,2017,Safe House,I Only Kill Professionals Scene,tt1599348\nmr3L2D4yv-0,2012.0,2,10,2017,Safe House,Armed Intruders Scene,tt1599348\nmlpkQuvDJbs,2012.0,1,10,2017,Safe House,Mercenaries Everywhere Scene,tt1599348\n5asGTRoIqCw,2012.0,5,10,2017,Safe House,Dangerous Passenger Scene,tt1599348\nNkhIROsY7Pg,2012.0,4,10,2017,Safe House,Pursued By Killers Scene,tt1599348\nqCYYMqHyPKk,2012.0,3,10,2017,Safe House,They Want Me Alive Scene,tt1599348\nBQ8vGslccwQ,2015.0,6,10,2017,Self/less,Who Are You? Scene,tt2140379\nnwQtd7csTKo,2015.0,3,10,2017,Self/less,How Is It Possible? Scene,tt2140379\nLFVi_krq2PM,2015.0,7,10,2017,Self/less,Someone Else's Son Scene,tt2140379\nohZ_J5yHSkc,2015.0,9,10,2017,Self/less,Standing Between You and Oblivion Scene,tt2140379\nM4LzhjtD3YQ,2015.0,10,10,2017,Self/less,\"Welcome Back, Mark Scene\",tt2140379\n8gIZMane5sI,2015.0,8,10,2017,Self/less,Damian's Dangerous Distraction Scene,tt2140379\nnJIecTXKUrc,2015.0,2,10,2017,Self/less,Adjusting to a New Body Scene,tt2140379\nEeQ_0rq-z1M,2015.0,1,10,2017,Self/less,The Transformation Scene,tt2140379\n_wAX37x54hk,2015.0,4,10,2017,Self/less,Light Him Up! Scene,tt2140379\n_iMsHacXWd4,2015.0,5,10,2017,Self/less,Ask Your Husband Scene,tt2140379\njz6VC23rVTE,2005.0,5,8,2017,V for Vendetta,Different Became Dangerous Scene,tt0434409\nZ4RCK8LAFM0,2005.0,1,8,2017,V for Vendetta,\"You May Call Me \"\"V\"\" Scene\",tt0434409\na7KgMV3DXw0,2005.0,8,8,2017,V for Vendetta,We're Both About to Die Scene,tt0434409\n0IyuK069I-w,2005.0,2,8,2017,V for Vendetta,V on TV Scene,tt0434409\n6qxQ2l1DC6Y,2005.0,6,8,2017,V for Vendetta,Completely Free Scene,tt0434409\n_VEDJMixt3c,2005.0,7,8,2017,V for Vendetta,My Gift to You Scene,tt0434409\nQO0K8wfZrHc,2005.0,3,8,2017,V for Vendetta,Which One is V? Scene,tt0434409\n3wXG_J4cPpg,2005.0,4,8,2017,V for Vendetta,V's Vengeful Visit Scene,tt0434409\nswEgflM5Ol4,1995.0,7,10,2017,Sudden Death,A Good Goalie Scene,tt0114576\nlQr3va8emXg,1995.0,9,10,2017,Sudden Death,Hero From Above Scene,tt0114576\nHo0k513yN6E,1995.0,8,10,2017,Sudden Death,Last Minute Save Scene,tt0114576\n2NNTVLRN-Ms,1995.0,10,10,2017,Sudden Death,Bad Guy On Ice Scene,tt0114576\nWksivsiSF_o,1995.0,6,10,2017,Sudden Death,A Toy Flamethrower Scene,tt0114576\nqFprLPWDd-Y,1995.0,2,10,2017,Sudden Death,The Penguin Mascot Fight Scene,tt0114576\n5M4VIDlRYjQ,1995.0,4,10,2017,Sudden Death,I'll Find the Bombs Myself Scene,tt0114576\noRRupV-lwbU,1995.0,1,10,2017,Sudden Death,The Best Kind of Lunatic Scene,tt0114576\n3tvpgXQ4y4Q,1995.0,5,10,2017,Sudden Death,\"Bye Bye, Terrorist Scene\",tt0114576\nSe38Z08pYS0,1995.0,3,10,2017,Sudden Death,Death by Chicken Bone Scene,tt0114576\nmdHpbI8Y7Oo,1991.0,4,8,2017,Defending Your Life,Misjudgments Scene,tt0101698\nV26hcTgoDLY,1991.0,2,8,2017,Defending Your Life,Dying Onstage Scene,tt0101698\nZsqkTaYITKQ,1991.0,7,8,2017,Defending Your Life,Tired of Being Judged Scene,tt0101698\nx1FhrhoudSE,1991.0,1,8,2017,Defending Your Life,Little Brains Scene,tt0101698\nsILyPxN_1Dc,2012.0,7,10,2017,Here Comes the Boom,Fixing His Shoulder Scene,tt1648179\n4LvvutsvgrE,2012.0,4,10,2017,Here Comes the Boom,He Stole My Song! Scene,tt1648179\nxdnibOE5L40,2012.0,10,10,2017,Here Comes the Boom,You Got Yourself a Fight Scene,tt1648179\nyKv7A92MoBY,2012.0,6,10,2017,Here Comes the Boom,Time to Eat Scene,tt1648179\nFAAKfmF5Jl4,2012.0,9,10,2017,Here Comes the Boom,Weirdest Date Ever Scene,tt1648179\nJfEde8D6XE8,2012.0,8,10,2017,Here Comes the Boom,Learning Through Song Scene,tt1648179\nNSTXoI3j4ko,2012.0,5,10,2017,Here Comes the Boom,Vomiting Victory Scene,tt1648179\nBTeAQ_QLObc,2012.0,2,10,2017,Here Comes the Boom,Niko's Training Scene,tt1648179\neuJyO4E3FzE,2012.0,1,10,2017,Here Comes the Boom,Intimidation Scene,tt1648179\nEvUbi66AGKI,2012.0,3,10,2017,Here Comes the Boom,This Isn't Baseball Scene,tt1648179\nNuTbNeev0sk,2013.0,9,10,2017,Last Vegas,I Don't Need a Pill Scene,tt1204975\ngPjQr9sSrmQ,2013.0,10,10,2017,Last Vegas,We Gotta Talk Scene,tt1204975\nmAhhCpdnVkI,2013.0,6,10,2017,Last Vegas,The Bachelor Party Scene,tt1204975\nmJ7S9aUZgZA,2013.0,8,10,2017,Last Vegas,Archie Busts a Move Scene,tt1204975\nVhdCpMoShM4,2013.0,5,10,2017,Last Vegas,The Penthouse Villa Scene,tt1204975\nmmSNq3ELTDE,2013.0,7,10,2017,Last Vegas,Mafia Bosses Scene,tt1204975\nrDpyBEorPeY,2013.0,4,10,2017,Last Vegas,What Brings You Boys to Vegas? Scene,tt1204975\n7vx5baLs0NE,2013.0,1,10,2017,Last Vegas,The Senior Years Scene,tt1204975\nRCp2lpFkeeE,2013.0,2,10,2017,Last Vegas,\"We're Invincible, Baby Scene\",tt1204975\nkK6P8gN99eo,2013.0,3,10,2017,Last Vegas,The Great Escape Scene,tt1204975\naazXc06Oycs,2012.0,10,10,2017,Wanderlust,Ready For Sex Scene,tt1655460\nGZxal1kvCfY,2012.0,1,10,2017,Wanderlust,Money Buys Nothing Scene,tt1655460\nDaDZptGm6nI,2012.0,6,10,2017,Wanderlust,Truth Circle Scene,tt1655460\nhIHC635Q9dc,2012.0,9,10,2017,Wanderlust,Nude Protest Scene,tt1655460\npbv02n_zKvo,2012.0,8,10,2017,Wanderlust,Open Sexual Boundaries Scene,tt1655460\nKei4Jlhhz-Q,2012.0,7,10,2017,Wanderlust,Tripping Your Balls Off Scene,tt1655460\nPAw7vAf6HMg,2012.0,4,10,2017,Wanderlust,Primal Gesticulating Scene,tt1655460\n3k7E9zkTPLA,2012.0,2,10,2017,Wanderlust,You're Doing it Wrong Scene,tt1655460\ncTQRH6MPV3A,2012.0,3,10,2017,Wanderlust,I Don't Need a Door Scene,tt1655460\nMAi6B_AFhH8,2012.0,5,10,2017,Wanderlust,You're the Beans Scene,tt1655460\nZF_2tUzPnvw,2015.0,5,10,2017,Rock the Kasbah,We Will Die Scene,tt3164256\nyw2hoxOuiaw,2015.0,1,10,2017,Rock the Kasbah,Hell Flight Scene,tt3164256\nN13exKaQgXo,2015.0,9,10,2017,Rock the Kasbah,You Will Feel It Scene,tt3164256\nXftKutOVjQs,2015.0,2,10,2017,Rock the Kasbah,Welcome to the Jungle Scene,tt3164256\nTA4zkT8ov_Y,2015.0,4,10,2017,Rock the Kasbah,This Wasn't the Deal! Scene,tt3164256\n8FJZS4bwRrk,2015.0,6,10,2017,Rock the Kasbah,Why Are You in My Trunk? Scene,tt3164256\nhNiDZEwkT84,2015.0,3,10,2017,Rock the Kasbah,Swimming Pool Seduction Scene,tt3164256\nSlwofvltpRw,2015.0,8,10,2017,Rock the Kasbah,Do Something Scene,tt3164256\nNWdhUnTq3gg,2015.0,7,10,2017,Rock the Kasbah,The Shameless Singer Scene,tt3164256\nHhs2RLxDgok,2015.0,10,10,2017,Rock the Kasbah,The Peace Train Scene,tt3164256\nxG6__eK9jIE,1995.0,9,10,2017,Village of the Damned,Friendly Fire Scene,tt0114852\nCyhOZgd8ahs,1995.0,8,10,2017,Village of the Damned,Self-Dissection Scene,tt0114852\n6Kfqy-8C3o0,1995.0,10,10,2017,Village of the Damned,Explosive Secrets Scene,tt0114852\nWOBy9Q8Gf9I,1995.0,7,10,2017,Village of the Damned,Reverends Shouldn't Play With Guns Scene,tt0114852\nF-HZzW_NS88,1995.0,1,10,2017,Village of the Damned,A Town Falls Asleep Scene,tt0114852\nPlkvQ0NbjUs,1995.0,6,10,2017,Village of the Damned,Life is Cruelty Scene,tt0114852\ne4Dlc6yqJuA,1995.0,5,10,2017,Village of the Damned,Don't Argue With the Children Scene,tt0114852\nNVXDwL6XG_c,1995.0,2,10,2017,Village of the Damned,Boiling Barbara Scene,tt0114852\nvaCI48KHW1k,1995.0,3,10,2017,Village of the Damned,The Eye Doctor Scene,tt0114852\ntD3vc9KZ9lQ,1995.0,4,10,2017,Village of the Damned,The Children From Hell Scene,tt0114852\nujgbo-_khSM,2011.0,3,10,2017,Bad Teacher,Bathroom Chat Scene,tt1284575\njdd1py-ilwc,2011.0,10,10,2017,Bad Teacher,Check My Urine! Scene,tt1284575\njmC2y7EsXqk,2011.0,8,10,2017,Bad Teacher,Not Working Hard Enough Scene,tt1284575\nSCR9s8egrmo,2011.0,7,10,2017,Bad Teacher,Amy's Overwhelmed Scene,tt1284575\nQsCBiq5cET4,2011.0,9,10,2017,Bad Teacher,A Bad Apple Scene,tt1284575\nuzMEc37DGZA,2011.0,1,10,2017,Bad Teacher,You Never Loved Me Scene,tt1284575\nfbkfr-S420o,2011.0,6,10,2017,Bad Teacher,Recess is Over Scene,tt1284575\nXPsDyk5bJdE,2011.0,5,10,2017,Bad Teacher,Christmas with Garrett Scene,tt1284575\n9HRIGCog9UQ,2011.0,2,10,2017,Bad Teacher,Sexy Car Wash Scene,tt1284575\nPk-zBUDgesM,2011.0,4,10,2017,Bad Teacher,Weapons of Math Instruction Scene,tt1284575\n2G5KN2wt048,2011.0,9,10,2017,Paul,Escaping the Farm Scene,tt1092026\nb9pr0K7SuYk,2011.0,10,10,2017,Paul,The Big Guy Scene,tt1092026\nHwczxp7h7Gg,2011.0,7,10,2017,Paul,Really Strong Weed Scene,tt1092026\n2vJOE2qvIEM,2011.0,5,10,2017,Paul,New to Cursing Scene,tt1092026\nP8ZCZJpluDA,2011.0,4,10,2017,Paul,Farting Buttholes Scene,tt1092026\nlsmWjQdGHMI,2011.0,8,10,2017,Paul,Spaceman Balls Scene,tt1092026\nmz6dgt11n-E,2011.0,6,10,2017,Paul,Awkward Makeout Scene,tt1092026\n9JTGNwLdSDA,2011.0,1,10,2017,Paul,Spaz Attack Scene,tt1092026\nVrXUYjVCX2o,2011.0,2,10,2017,Paul,Dead Bird Scene,tt1092026\ndtgOzzBMl2o,2011.0,3,10,2017,Paul,Evolve This Scene,tt1092026\npS-KE1LXpXU,1991.0,2,11,2017,Life Stinks,Am I Interrupting? Scene,tt0102303\ntvxjJd08MMc,1991.0,7,11,2017,Life Stinks,Molly's Many Layers Scene,tt0102303\n-YiImyOVCj4,1991.0,5,11,2017,Life Stinks,Molly's Nervous Breakdown Scene,tt0102303\nkpFSJhQ_30c,1991.0,11,11,2017,Life Stinks,Heavy Machinery Battle Scene,tt0102303\napasYYh6nEA,1991.0,9,11,2017,Life Stinks,I'm Richer! Scene,tt0102303\nvndiMloYcYU,1991.0,10,11,2017,Life Stinks,! Scene,tt0102303\n4E55_uKSR40,1991.0,8,11,2017,Life Stinks,You Lost Everything Scene,tt0102303\nk6u3YvvvgjQ,1991.0,6,11,2017,Life Stinks,A Sh**load of Money Scene,tt0102303\npYaJ7p8RrzM,1991.0,3,11,2017,Life Stinks,No Place to Sleep Scene,tt0102303\nBEsaqfzc6wQ,1991.0,4,11,2017,Life Stinks,Ziggity Bing Bam Boom! Scene,tt0102303\n2VgamrBe_vM,1991.0,1,11,2017,Life Stinks,Bolt Center Scene,tt0102303\nnxmaYsZjnXo,1997.0,9,10,2017,\"Oh, God!\",Courtroom Miracle Scene,tt0076489\nrzIs51GUVgg,1997.0,8,10,2017,\"Oh, God!\",God Sent Me to You Scene,tt0076489\npuXiyRw_L6g,1997.0,5,10,2017,\"Oh, God!\",Raining in the Car Scene,tt0076489\n6x0i-FfeA44,1997.0,10,10,2017,\"Oh, God!\",\"You Talk, I'll Listen Scene\",tt0076489\njPgV4d4ZmZo,1997.0,7,10,2017,\"Oh, God!\",The Theologians Scene,tt0076489\nonesjJyXdFQ,1997.0,6,10,2017,\"Oh, God!\",Don't Blow It Scene,tt0076489\nIBdgRBvFwlM,1997.0,4,10,2017,\"Oh, God!\",Grocery Store Appearance Scene,tt0076489\nkheP3iy8-6E,1997.0,2,10,2017,\"Oh, God!\",Spread the Word Scene,tt0076489\nVVvKuI8oK3c,1997.0,3,10,2017,\"Oh, God!\",God Reveals Himself Scene,tt0076489\nzd6ZUTrW5b4,1997.0,1,10,2017,\"Oh, God!\",Interview with God Scene,tt0076489\nyk5d161ytXE,1972.0,8,10,2017,\"What's Up, Doc?\",First Time Driving Scene,tt0069495\noUo_8mKGHvY,1972.0,4,10,2017,\"What's Up, Doc?\",Let's Say Goodbye Scene,tt0069495\npiTAjb8dd2Y,1972.0,6,10,2017,\"What's Up, Doc?\",Madcap Mayhem Scene,tt0069495\nPhkGK4ga-Gs,1972.0,1,10,2017,\"What's Up, Doc?\",Meeting Judy Scene,tt0069495\ngU886wmXhQo,1972.0,2,10,2017,\"What's Up, Doc?\",You Again? Scene,tt0069495\ndR0_tMYKwXE,1972.0,9,10,2017,\"What's Up, Doc?\",Howard's Send-Off Scene,tt0069495\nXYc1XujRb1w,1972.0,7,10,2017,\"What's Up, Doc?\",Judy Seduces Howard Scene,tt0069495\nkbVtjc-ygTM,1972.0,5,10,2017,\"What's Up, Doc?\",No Choice But to Jump Scene,tt0069495\nPoIuiCAepLU,1972.0,3,10,2017,\"What's Up, Doc?\",Dangerously Unbalanced Woman Scene,tt0069495\nm-ETkZmPNiM,1972.0,10,10,2017,\"What's Up, Doc?\",That's All Folks! Scene,tt0069495\nhTzUYt__ogY,2015.0,10,10,2017,Everest,Aftermath Scene,tt2719848\n34K-mcoEFuk,2015.0,8,10,2017,Everest,\"Goodbye, My Love Scene\",tt2719848\nfAdsL7AXW6A,2015.0,7,10,2017,Everest,Left to Freeze Scene,tt2719848\nMmBx8AMHTxE,2015.0,9,10,2017,Everest,Mountain Chopper Scene,tt2719848\neA-V5wUcWos,2015.0,6,10,2017,Everest,The Ice Storm Scene,tt2719848\nXO4HxR3dPsI,2015.0,2,10,2017,Everest,Why Are You Climbing ? Scene,tt2719848\nQ54GdrlgRoQ,2015.0,1,10,2017,Everest,Across the Chasm Scene,tt2719848\npXrMAjB8ka0,2015.0,4,10,2017,Everest,Dig Deep Scene,tt2719848\nj0iplsU1qa4,2015.0,5,10,2017,Everest,Out of Oxygen Scene,tt2719848\nwmXFSQdF3PM,2015.0,3,10,2017,Everest,We Made It! Scene,tt2719848\nYZrVYAXYyws,2014.0,10,10,2017,Seventh Son,Tom's Destiny Scene,tt1121096\nuPFxRUeRfu8,2014.0,7,10,2017,Seventh Son,A Taste of What's to Come Scene,tt1121096\nHSjPTdKWcLA,2014.0,9,10,2017,Seventh Son,Dragons at the Blood Moon Scene,tt1121096\nrW59kLTHdBE,2014.0,8,10,2017,Seventh Son,Fight for the Pendant Scene,tt1121096\nQzf3SFbaODw,2014.0,6,10,2017,Seventh Son,Boggart Attack Scene,tt1121096\nxPwq9go3HDc,2014.0,5,10,2017,Seventh Son,You Can't Hide From Destiny Scene,tt1121096\nlLItY-Oyvt0,2014.0,4,10,2017,Seventh Son,Master Gregory vs. Urag Scene,tt1121096\nXCJxGxYDjQE,2014.0,2,10,2017,Seventh Son,Tom's First Test Scene,tt1121096\nRJEoUwZdwfk,2014.0,1,10,2017,Seventh Son,An Apprentice Lost Scene,tt1121096\nah_Egywb780,2014.0,3,10,2017,Seventh Son,Sparks in the Moonlight Scene,tt1121096\nKW1fyTqH0oE,2005.0,10,10,2017,The Legend of Zorro,An Explosive End Scene,tt0386140\ng_O0J66490k,2005.0,7,10,2017,The Legend of Zorro,Good Boy Scene,tt0386140\nYg53M7TYpuo,2005.0,9,10,2017,The Legend of Zorro,Runaway Train Scene,tt0386140\nQtQpMjuyHnM,2005.0,8,10,2017,The Legend of Zorro,Train Fight Scene,tt0386140\nDJWKWwfURtI,2005.0,5,10,2017,The Legend of Zorro,This Changes Nothing Scene,tt0386140\nuZpvHkGMn5k,2005.0,1,10,2017,The Legend of Zorro,Sword Fight on the Bridge Scene,tt0386140\nZlzhOaHLFBM,2005.0,6,10,2017,The Legend of Zorro,Unmasking Zorro Scene,tt0386140\nZ6SklaeTne8,2005.0,3,10,2017,The Legend of Zorro,Barn Fight Scene,tt0386140\nm31MSgGEIAk,2005.0,4,10,2017,The Legend of Zorro,A Definite Maybe Scene,tt0386140\nZ2-9fWRAwMo,2005.0,2,10,2017,The Legend of Zorro,Perilous Polo Scene,tt0386140\nNTUNJ7f0tHU,1986.0,7,9,2017,The Mission,The Church vs. The Chief Scene,tt0091530\nP13rZWwIXmM,1986.0,1,9,2017,The Mission,Gabriel's Oboe Scene,tt0091530\nI0E-0kTdg-k,1986.0,9,9,2017,The Mission,I Can't Bless You Scene,tt0091530\nvVbXluPyrTA,1986.0,6,9,2017,The Mission,God and the Guarani Scene,tt0091530\nEqRYx6Zgphw,1986.0,8,9,2017,The Mission,You Promised Your Life to God Scene,tt0091530\nPk_-jIncT5I,1986.0,2,9,2017,The Mission,There is No Redemption Scene,tt0091530\nCYt5p4a8YzE,1986.0,5,9,2017,The Mission,\"Welcome Home, Brother Scene\",tt0091530\nmnXN-mRFoPI,1986.0,3,9,2017,The Mission,Rodrigo's Penance Scene,tt0091530\nCYTRQAy2o4E,1986.0,4,9,2017,The Mission,Accepted by the Tribe Scene,tt0091530\n3HMU2k7i59M,2000.0,10,10,2017,The Widow of St. Pierre,Run Away! Scene,tt0191636\nFNKYIVZOjqs,2000.0,5,10,2017,The Widow of St. Pierre,No Executioners Here Scene,tt0191636\ntZ2yXL_RLEc,2000.0,9,10,2017,The Widow of St. Pierre,A Rebel Scene,tt0191636\nVRN37FGgEic,2000.0,6,10,2017,The Widow of St. Pierre,The Executioner Scene,tt0191636\nnPGxeiD4mgM,2000.0,7,10,2017,The Widow of St. Pierre,The Volunteer Scene,tt0191636\nSuoDkikuZjo,2000.0,8,10,2017,The Widow of St. Pierre,A Man Who Loves His Wife Scene,tt0191636\n_9lOz8mySPk,2000.0,1,10,2017,The Widow of St. Pierre,People Change Scene,tt0191636\n6PumiBR18C4,2000.0,4,10,2017,The Widow of St. Pierre,Local Hero Scene,tt0191636\ncY3aFhbBzoc,2000.0,2,10,2017,The Widow of St. Pierre,Mind Your Own Business Scene,tt0191636\n5gQ3nWBmAak,2000.0,3,10,2017,The Widow of St. Pierre,I Demand an Apology Scene,tt0191636\n9EOazpvA7-U,2016.0,9,10,2017,Inferno,Kill Billions to Save Lives Scene,tt3062096\nZ2-qppnyM3s,2016.0,10,10,2017,Inferno,It's Contained Scene,tt3062096\nGzMBisWrn_M,2016.0,8,10,2017,Inferno,We Create Illusions Scene,tt3062096\n7LxG9WBUbf8,2016.0,7,10,2017,Inferno,Dedicated Disciple Scene,tt3062096\n2ycw0UUyCm0,2016.0,1,10,2017,Inferno,Apocalyptic Nightmares Scene,tt3062096\n9oiFkoROlu0,2016.0,6,10,2017,Inferno,Hidden Memory Scene,tt3062096\n8UscACJkVxY,2016.0,5,10,2017,Inferno,Unknown Ally Scene,tt3062096\ncRZ7bc3nqwA,2016.0,2,10,2017,Inferno,The Battle of Marciano Scene,tt3062096\nf-EjBwpuVFI,2016.0,3,10,2017,Inferno,The Case of the Missing Mask Scene,tt3062096\nWrZN5ouSodc,2016.0,4,10,2017,Inferno,Secrets of the Palazzo Scene,tt3062096\n5LX01_nSeZU,2015.0,8,10,2017,Sinister 2,A Dangerous Man Scene,tt2752772\nLd8KOUtkHHY,2015.0,6,10,2017,Sinister 2,Sunday Service Murders Scene,tt2752772\nG8_iVf44j-s,2015.0,10,10,2017,Sinister 2,\"It's Over, Zach Scene\",tt2752772\nkJEvR6GEb7U,2015.0,9,10,2017,Sinister 2,Zach's Murder Movie Scene,tt2752772\neoffuyXUhLs,2015.0,7,10,2017,Sinister 2,Made for Murder Scene,tt2752772\no2wFqjb9AU0,2015.0,5,10,2017,Sinister 2,Bughuul Scene,tt2752772\nyDxNlPIFWHM,2015.0,4,10,2017,Sinister 2,Jealous of the Jinxed Scene,tt2752772\np39lIRTEPY4,2015.0,3,10,2017,Sinister 2,Ghosts in the Church Scene,tt2752772\nbqwS3qz3GhE,2015.0,2,10,2017,Sinister 2,Compelled to Watch Scene,tt2752772\nEh_0E0UdJcc,2015.0,1,10,2017,Sinister 2,A Dark Presence Scene,tt2752772\nqyZXW5Md1HM,2014.0,10,10,2017,Unfriended,One Last Thing Scene,tt3713166\nokdTt3VfJ6s,2014.0,9,10,2017,Unfriended,It Was Him Scene,tt3713166\nqzQdwPNUcME,2014.0,7,10,2017,Unfriended,The Note Scene,tt3713166\nSwCNp21CKes,2014.0,6,10,2017,Unfriended,NSFW: Adam & Blaire Scene,tt3713166\n5Q52XfZ9no0,2014.0,8,10,2017,Unfriended,Call the Police! Scene,tt3713166\nwN1iAzPTBbM,2014.0,5,10,2017,Unfriended,Never Have I Ever Scene,tt3713166\nfQWMKUF7dvA,2014.0,1,10,2017,Unfriended,We'll Call Them Back Scene,tt3713166\ngNCkFkii-tA,2014.0,3,10,2017,Unfriended,Something for Billie Scene,tt3713166\neYrt5n8DA2M,2014.0,4,10,2017,Unfriended,Something in Ken's Room Scene,tt3713166\n198uP07pieE,2014.0,2,10,2017,Unfriended,Hacked By a Dead Girl Scene,tt3713166\nWLq3zSm5SkQ,2014.0,10,10,2017,\"As Above, So Below\",On Three Scene,tt2870612\nduEErwP8eds,2014.0,9,10,2017,\"As Above, So Below\",Saving George Scene,tt2870612\nm1p-vJzqPKw,2014.0,8,10,2017,\"As Above, So Below\",Returning the Stone Scene,tt2870612\n6IM3wUpXVfA,2014.0,7,10,2017,\"As Above, So Below\",We Have to Keep Going Scene,tt2870612\nekqjBZdbYJU,2014.0,6,10,2017,\"As Above, So Below\",Benji's Close Encounter Scene,tt2870612\nW3cldIDgcoE,2014.0,5,10,2017,\"As Above, So Below\",It Can't Bring Back the Dead Scene,tt2870612\nUtyiyBw401w,2014.0,3,10,2017,\"As Above, So Below\",How Did They Get a Piano Down Here? Scene,tt2870612\nAwR1RawiBU0,2014.0,4,10,2017,\"As Above, So Below\",Discovering the Stone Scene,tt2870612\ntFBSGc3v7BI,2014.0,2,10,2017,\"As Above, So Below\",The Catacombs Scene,tt2870612\nbqvMCDQ3HEU,2014.0,1,10,2017,\"As Above, So Below\",My Father Wasn't Crazy Scene,tt2870612\n_mPOfQw2fmY,2014.0,9,10,2017,Think Like a Man Too,Good Enough For My Son Scene,tt2239832\nC5UD270jxfs,2014.0,8,10,2017,Think Like a Man Too,Marry Me Scene,tt2239832\nvagva7xKyE8,2014.0,2,10,2017,Think Like a Man Too,Cedric's Dance Scene,tt2239832\nRmkFsYUz4cs,2014.0,10,10,2017,Think Like a Man Too,The Wedding Scene,tt2239832\n7T5KMMZfc_U,2014.0,3,10,2017,Think Like a Man Too,Back in the Saddle Scene,tt2239832\niKS_327EF84,2014.0,5,10,2017,Think Like a Man Too,Strip Club Fight Scene,tt2239832\nY15QXiFUV8U,2014.0,7,10,2017,Think Like a Man Too,Preoccupied with Gail Scene,tt2239832\nmqYkD0nMs04,2014.0,1,10,2017,Think Like a Man Too,I Am Daenerys Scene,tt2239832\n7oi0cS5tNRg,2014.0,6,10,2017,Think Like a Man Too,The New Boss Scene,tt2239832\n8VhgYX8xRuw,2014.0,4,10,2017,Think Like a Man Too,Poison Scene,tt2239832\nhM6KNsz7_mk,2012.0,5,10,2017,Think Like a Man,The Women Had No Chance Scene,tt1621045\nAHV1LepZ2KM,2012.0,9,10,2017,Think Like a Man,The Number One Woman In My Life Scene,tt1621045\nZWszIB0z50k,2012.0,10,10,2017,Think Like a Man,I Want You Back Scene,tt1621045\nqv4BPYX4B8U,2012.0,8,10,2017,Think Like a Man,I Wanna Be Your Wife Scene,tt1621045\n7qi8llEviYY,2012.0,6,10,2017,Think Like a Man,All This For Me Scene,tt1621045\nr_ckU9PkTbM,2012.0,7,10,2017,Think Like a Man,I Need to Be Held Scene,tt1621045\npLlcwabi5AQ,2012.0,4,10,2017,Think Like a Man,We Need to Talk Scene,tt1621045\nwOSP7YOuOH4,2012.0,1,10,2017,Think Like a Man,Types of Men Scene,tt1621045\n3A97Vc1eExE,2012.0,2,10,2017,Think Like a Man,First Dates Scene,tt1621045\ncmlELkvVPeQ,2012.0,3,10,2017,Think Like a Man,Honesty is Overrated Scene,tt1621045\nAtcaQ4_DBOs,2012.0,7,10,2017,The Five-Year Engagement,Fake Orgasm Scene,tt1195478\nGfc_7pOTR28,2012.0,6,10,2017,The Five-Year Engagement,Crossbow Scene,tt1195478\nUYYIYehBS_s,2012.0,10,10,2017,The Five-Year Engagement,Choose Your Own Wedding Scene,tt1195478\nVWMSjhr1BZE,2012.0,4,10,2017,The Five-Year Engagement,Wedding Planning Scene,tt1195478\npzE6SVUHAYE,2012.0,8,10,2017,The Five-Year Engagement,Elmo and Cookie Monster Scene,tt1195478\n-LCqZeb1de0,2012.0,9,10,2017,The Five-Year Engagement,The Happiest Girl in the World Scene,tt1195478\nnjq3H2iy2X0,2012.0,3,10,2017,The Five-Year Engagement,Awkward Party Scene,tt1195478\nuU_ftZ6EfX8,2012.0,2,10,2017,The Five-Year Engagement,Beautiful Wedding Scene,tt1195478\n2HwVVwlGHU0,2012.0,5,10,2017,The Five-Year Engagement,Chewbacca's Cup Scene,tt1195478\nrYHCZi-tmTE,2012.0,1,10,2017,The Five-Year Engagement,The Engagement Dinner Scene,tt1195478\ngx-03rUq-1Q,2009.0,8,10,2017,Julie & Julia,The Business of Getting Published Scene,tt1135503\nisFVKJA4E-k,2009.0,7,10,2017,Julie & Julia,Bon Appetit Scene,tt1135503\naSwH4lpuKE8,2009.0,6,10,2017,Julie & Julia,Dirty Mouth Scene,tt1135503\nzXF0zcwPGuI,2009.0,10,10,2017,Julie & Julia,\"I Love You, Julia Scene\",tt1135503\nApANYuSl7A0,2009.0,9,10,2017,Julie & Julia,Julia Child Hates Me Scene,tt1135503\nptcDoIfzLtI,2009.0,4,10,2017,Julie & Julia,Finding Her Calling Scene,tt1135503\nzPuVP5U-xag,2009.0,5,10,2017,Julie & Julia,The Butter to My Bread Scene,tt1135503\nAsR-WnELodI,2009.0,3,10,2017,Julie & Julia,A Quick Learner Scene,tt1135503\nczOgJJqehv0,2009.0,2,10,2017,Julie & Julia,You Can Never Have Too Much Butter Scene,tt1135503\nTSQ770iqDgY,2009.0,1,10,2017,Julie & Julia,I Love to Eat Scene,tt1135503\nsvAY8Rg8HFY,2006.0,8,10,2017,The Holiday,I'm in Love with You Scene,tt0457939\nLKeegFM5SdU,2006.0,2,10,2017,The Holiday,Amanda Dances Scene,tt0457939\ncoDyfoCUaSk,2006.0,10,10,2017,The Holiday,Going Back for Graham Scene,tt0457939\n5OGX-e6WT88,2006.0,7,10,2017,The Holiday,If You Were a Melody Scene,tt0457939\neZHlWaIYjNE,2006.0,6,10,2017,The Holiday,Falling for the Wrong Person Scene,tt0457939\nJ7_oE1uN1pU,2006.0,9,10,2017,The Holiday,Done Being in Love with You Scene,tt0457939\niraWz0XdffE,2006.0,5,10,2017,The Holiday,Hold Please! Scene,tt0457939\nGKNkucKoryE,2006.0,1,10,2017,The Holiday,Things End Scene,tt0457939\n1O9BbPEZRBs,2006.0,4,10,2017,The Holiday,Mr. Napkin Head Scene,tt0457939\nfY1s5Sn-GDE,2006.0,3,10,2017,The Holiday,You are a Leading Lady Scene,tt0457939\nvn8YIDxEGrw,2016.0,10,10,2017,The Magnificent Seven,Pray With Me Scene,tt2404435\no-cA_1F05bU,2016.0,3,10,2017,The Magnificent Seven,Fastest Knife in the West Scene,tt2404435\n7uYoJwMuN_8,2016.0,7,10,2017,The Magnificent Seven,Gatling Gun Scene,tt2404435\nAwtSK1gLBBk,2016.0,8,10,2017,The Magnificent Seven,Comanche Fight Scene,tt2404435\n2X8O8PN7GOQ,2016.0,6,10,2017,The Magnificent Seven,Battling Bogue's Brigade Scene,tt2404435\n9_T2VQgL2XY,2016.0,9,10,2017,The Magnificent Seven,Farraday's Redemption Scene,tt2404435\nD6MN7T-tnDw,2016.0,4,10,2017,The Magnificent Seven,Town Shootout Scene,tt2404435\nbZhBhpm6m_A,2016.0,5,10,2017,The Magnificent Seven,Goodnight's Inspiration Scene,tt2404435\nvNPCXKmF9LI,2016.0,2,10,2017,The Magnificent Seven,Farraday's Magic Trick Scene,tt2404435\nzadI5ngwLsM,2016.0,1,10,2017,The Magnificent Seven,Money for Blood Scene,tt2404435\n1rP402h6Euo,1986.0,8,12,2017,The Delta Force,\"One Man, One Motorcycle Scene\",tt0090927\nXR7br4b3gsg,2003.0,10,10,2017,Bad Boys II,A Live Minefield Scene,tt0172156\nLfL2xCfIMIU,1990.0,7,11,2017,Delta Force 2,School's Out Scene,tt0099399\npJIGy4zHo6E,1990.0,2,11,2017,Delta Force 2,Always the Hard Way Scene,tt0099399\nByPtVBI4_MI,1990.0,11,11,2017,Delta Force 2,Not Today Scene,tt0099399\nd2uvpiz5up0,1990.0,9,11,2017,Delta Force 2,Out of the Sky Scene,tt0099399\nBxB1Mpj8NiM,1986.0,5,12,2017,The Delta Force,McCoy Doesn't Negotiate Scene,tt0090927\nPf2LbcDDW5E,1986.0,10,12,2017,The Delta Force,\"Bye, Bye Abdul Scene\",tt0090927\nTYA75RnDMGI,2003.0,1,10,2017,Bad Boys II,Swamp Shootout Scene,tt0172156\nAIQHqvG9Ql8,2003.0,2,10,2017,Bad Boys II,Haitian Gang Shootout Scene,tt0172156\nv9Cq9nThaNs,2003.0,4,10,2017,Bad Boys II,Car Chase Scene,tt0172156\nLoRpJTD3HFY,2003.0,5,10,2017,Bad Boys II,Gun Fights and Train Bites Scene,tt0172156\nF2AbEJnPRYM,2003.0,3,10,2017,Bad Boys II,Video Store Partners Scene,tt0172156\nnEf2ML7wkBE,2003.0,6,10,2017,Bad Boys II,Intimidating Reggie Scene,tt0172156\nXMPTy7Iaw9s,2003.0,9,10,2017,Bad Boys II,Crashing Through Cuba Scene,tt0172156\nedHmOaS0lRU,2003.0,8,10,2017,Bad Boys II,Saving Syd Scene,tt0172156\ncibZY1GwVQg,2003.0,7,10,2017,Bad Boys II,Marcus on Drugs Scene,tt0172156\njeYdR_r0iGo,1990.0,8,11,2017,Delta Force 2,Escaping the Chamber Scene,tt0099399\nYZGetnQQU48,1990.0,3,11,2017,Delta Force 2,Eliminating the Traitor Scene,tt0099399\nIMPHXKW9ntw,1990.0,10,11,2017,Delta Force 2,If You Had the Courage Scene,tt0099399\nnqK7Kk3ZKvY,1990.0,6,11,2017,Delta Force 2,I Was Just in the Neighborhood Scene,tt0099399\nlkT9aqC6Tqw,1990.0,5,11,2017,Delta Force 2,Unleashing Delta Force Scene,tt0099399\ncqHKducp4MY,1990.0,4,11,2017,Delta Force 2,Delta Force Training Scene,tt0099399\n_O9lT22rCj8,1990.0,1,11,2017,Delta Force 2,A Motivational Seminar Scene,tt0099399\nPJTb9EdYZDg,1986.0,12,12,2017,The Delta Force,Liftoff! Scene,tt0090927\ncSWMU_rISfw,1986.0,9,12,2017,The Delta Force,Going Somewhere? Scene,tt0090927\nXssDZqS6WzE,1986.0,1,12,2017,The Delta Force,Prepared to Die Scene,tt0090927\nTwnfJ8d9NqY,1986.0,11,12,2017,The Delta Force,It's About Time Scene,tt0090927\n2yWYCKoqKmE,1986.0,7,12,2017,The Delta Force,Surprise Party Scene,tt0090927\nhp3n_sA4Sqo,1986.0,6,12,2017,The Delta Force,Hostage Rescue Scene,tt0090927\n1ugiiAH40_w,1986.0,2,12,2017,The Delta Force,Jewish Passengers Scene,tt0090927\nudwKI7oFT6Y,1986.0,3,12,2017,The Delta Force,One Marine Killer Scene,tt0090927\nWFAu7jYslik,1986.0,4,12,2017,The Delta Force,\"Sleep Tight, Sucker Scene\",tt0090927\n5-Xw_z9dODw,1986.0,10,10,2017,Heat,I'm Gonna Rip Your Face Off Scene,tt0093164\neNZnCwkHaDM,1986.0,7,10,2017,Heat,I'm an Addict Scene,tt0093164\nauMBMds7lQo,1986.0,8,10,2017,Heat,No Pain Scene,tt0093164\nh4QvAd6nC10,1986.0,9,10,2017,Heat,Electrified Scene,tt0093164\nGokp5Aq-Yuw,1986.0,4,10,2017,Heat,The Envy of All Mankind Scene,tt0093164\n9xS3XqTSRr4,1986.0,6,10,2017,Heat,Bust Scene,tt0093164\nzMbx4rZOMig,1986.0,3,10,2017,Heat,Thinking About Venice Scene,tt0093164\nKXa2pXA7v6I,1986.0,5,10,2017,Heat,Blackjack Scene,tt0093164\nR0jAHXVoZ4E,1986.0,1,10,2017,Heat,I'm Your Man Scene,tt0093164\nW3u0prIyDTs,1986.0,2,10,2017,Heat,Ozzie-Wozzie Scene,tt0093164\nA83gS4JJXXE,2001.0,9,11,2017,Ghost World,Seymour Attacks Josh Scene,tt0162346\nabgTPYfdbOE,2001.0,10,11,2017,Ghost World,Enid's Hero Scene,tt0162346\n6nfXJd8nV9E,2001.0,11,11,2017,Ghost World,Therapy Session Scene,tt0162346\n_XSFVQhMC5k,2001.0,6,11,2017,Ghost World,Seymour's Dating Service Scene,tt0162346\nrQWpTKfljVg,2001.0,8,11,2017,Ghost World,Enid Gets Hired and Fired Scene,tt0162346\nxHDeLp0sWBc,2001.0,7,11,2017,Ghost World,Enid Visits Rebecca at Work Scene,tt0162346\nQoWIRCVeXBc,2001.0,5,11,2017,Ghost World,Amusing Cartoons Scene,tt0162346\nHLlaSoozZbM,2001.0,2,11,2017,Ghost World,Nunchucks at the Sidewinder Scene,tt0162346\nCd1Q6LsOR8o,2001.0,3,11,2017,Ghost World,\"Mirror, Father, Mirror Scene\",tt0162346\n8lsl4cNrpzI,2001.0,1,11,2017,Ghost World,High School Graduation Scene,tt0162346\nUb88RPZnHQM,2001.0,4,11,2017,Ghost World,Meeting Seymour Scene,tt0162346\ncIscGgQD4uE,1998.0,2,10,2017,I Still Know What You Did Last Summer,The Horror of Karaoke Scene,tt0130018\nD8NMSoCRPV8,1998.0,10,10,2017,I Still Know What You Did Last Summer,He Always Comes Back Scene,tt0130018\nLgKIQbxZZgY,1998.0,9,10,2017,I Still Know What You Did Last Summer,Just Die Scene,tt0130018\nTYJ-1E4hKAU,1998.0,6,10,2017,I Still Know What You Did Last Summer,Psycho Killer Scene,tt0130018\npkqyDC9YnfM,1998.0,7,10,2017,I Still Know What You Did Last Summer,Keep Running Scene,tt0130018\n5VSg6c8TKNc,1998.0,8,10,2017,I Still Know What You Did Last Summer,It's Not My Blood Scene,tt0130018\nCShHiYrQPGM,1998.0,5,10,2017,I Still Know What You Did Last Summer,Tanning Bed Terror Scene,tt0130018\nh3g5B5JhFcY,1998.0,3,10,2017,I Still Know What You Did Last Summer,Death on the Dock Scene,tt0130018\nJd0XiJie7Lo,1998.0,4,10,2017,I Still Know What You Did Last Summer,Come to Papa Scene,tt0130018\nf9Wq05WVXiQ,1998.0,1,10,2017,I Still Know What You Did Last Summer,Trouble on the Road Scene,tt0130018\n2DdCmT_j5nE,2005.0,11,11,2017,Hard Candy,This Is Who I Am Scene,tt0424136\nsidgUs-5R64,2005.0,10,11,2017,Hard Candy,Stunned Scene,tt0424136\n58pw6PJAqZg,2005.0,9,11,2017,Hard Candy,This is For the Best Scene,tt0424136\njJnJFGaJwV8,2005.0,6,11,2017,Hard Candy,You Know Nothing About Me Scene,tt0424136\nGVGyBNIfPL4,2005.0,5,11,2017,Hard Candy,I'm a Decent Guy Scene,tt0424136\naIKVAAfZZeM,2005.0,7,11,2017,Hard Candy,This Is Officially Sick Scene,tt0424136\nZkZvK6v-L7s,2005.0,8,11,2017,Hard Candy,Don't Do That to Yourself Scene,tt0424136\nRgaUubM7yyY,2005.0,3,11,2017,Hard Candy,Shoot Me Scene,tt0424136\nKGPW4PnJtoY,2005.0,2,11,2017,Hard Candy,Take It All Scene,tt0424136\nSjbUk89pY7Y,2005.0,1,11,2017,Hard Candy,More Chocolate Scene,tt0424136\nab927ug4_xY,2005.0,4,11,2017,Hard Candy,Busted Scene,tt0424136\nbwnrdj6zZfQ,1997.0,11,11,2017,Affliction,Don't You Sass Me Scene,tt0118564\nPIeiRgfL9e8,1997.0,10,11,2017,Affliction,Pulling Teeth Scene,tt0118564\nUcEl21V2btA,1997.0,8,11,2017,Affliction,I'll Shoot You Dead Scene,tt0118564\nB7yi-MaUZaQ,1997.0,9,11,2017,Affliction,You're Fired Scene,tt0118564\nlg0P7zox2V8,1997.0,7,11,2017,Affliction,Afflicted by Violence Scene,tt0118564\nh72ZN-oKzTU,1997.0,5,11,2017,Affliction,A Modest Proposal Scene,tt0118564\nmc082fyyMQw,1997.0,6,11,2017,Affliction,Jesus Freaks and Candy-Asses Scene,tt0118564\nOaGLdGjlV7Y,1997.0,2,11,2017,Affliction,Don't Make a Scene,tt0118564\niIP23U3q5FU,1997.0,4,11,2017,Affliction,Hunting Accident Scene,tt0118564\nRZieTQla0dM,1997.0,1,11,2017,Affliction,Halloween Scene,tt0118564\nAAE6HOrW3rk,1997.0,3,11,2017,Affliction,A Lesson in Work Scene,tt0118564\nV_dtlMkvp2Q,2014.0,2,10,2017,The Amazing Spider Man 2,I'm Electro Scene,tt1872181\nmNUnCTKwS8Q,2014.0,1,10,2017,The Amazing Spider Man 2,Kissing in the Closet Scene,tt1872181\nVflasoWmuoA,2014.0,6,10,2017,The Amazing Spider Man 2,I Love You Scene,tt1872181\nj0cqqCpIZHE,2014.0,3,10,2017,The Amazing Spider Man 2,Peter's Father Scene,tt1872181\nU-R21NaE91o,2014.0,4,10,2017,The Amazing Spider Man 2,Breaking Out Electro Scene,tt1872181\nSD0eJL4D6q0,2014.0,5,10,2017,The Amazing Spider Man 2,Becoming Goblin Scene,tt1872181\nmsoyjm3gCBM,2014.0,8,10,2017,The Amazing Spider Man 2,Electro Overload Scene,tt1872181\ng1jO4_HQQX4,2014.0,9,10,2017,The Amazing Spider Man 2,Spider Man vs. Goblin Scene,tt1872181\nJOw4LqyJKyg,2014.0,7,10,2017,The Amazing Spider Man 2,Spider Man vs. Electro Scene,tt1872181\nXi3P8vUveVQ,2014.0,10,10,2017,The Amazing Spider Man 2,Gwen's Fall Scene,tt1872181\nXdzv5V4MVus,2011.0,9,10,2017,The Green Hornet,That's a Very Big Gun Scene,tt0990407\n1x3IKujLO-E,2011.0,10,10,2017,The Green Hornet,That Was Incredibly Dangerous Scene,tt0990407\nyvzmLB30MwM,2011.0,5,10,2017,The Green Hornet,Every Man For Himself Scene,tt0990407\nMdI5DrJ6V3k,2011.0,8,10,2017,The Green Hornet,You Get Stung Scene,tt0990407\n6wXeUrZ6p5E,2011.0,6,10,2017,The Green Hornet,Heroes Beat Sidekicks Scene,tt0990407\n3xtKas3-ctQ,2011.0,7,10,2017,The Green Hornet,The Good Half of the Team Scene,tt0990407\nWa3l6Q7e5aA,2011.0,2,10,2017,The Green Hornet,The Black Beauty Scene,tt0990407\nZbi-MbMsnIM,2011.0,3,10,2017,The Green Hornet,I Am the Green Hornet Scene,tt0990407\nlR8KTwcC8fc,2011.0,4,10,2017,The Green Hornet,The Hornet Gun Scene,tt0990407\nre_liKgRGew,2011.0,1,10,2017,The Green Hornet,Wanna See Something Cool? Scene,tt0990407\n6Gd4JbJxaf4,2000.0,10,10,2017,Hollow Man,For Old Times' Sake Scene,tt0164052\n2rPDGz_0qvw,2000.0,9,10,2017,Hollow Man,Escaping the Exploding Lab Scene,tt0164052\naDq_JsN2Y6c,2000.0,5,10,2017,Hollow Man,This is a Gift Scene,tt0164052\nucYwV7EWIRU,2000.0,8,10,2017,Hollow Man,I'll Show You God Scene,tt0164052\nGCSbGFMWzC4,2000.0,7,10,2017,Hollow Man,You're Not Gonna Die In Here Scene,tt0164052\nJwAVnG8iemw,2000.0,1,10,2017,Hollow Man,Gorilla Visible Scene,tt0164052\nCxQ4aL5IXZw,2000.0,6,10,2017,Hollow Man,Peeping Tom Jealousy Scene,tt0164052\nCYgNbOsiKtk,2000.0,2,10,2017,Hollow Man,The First Invisible Man Scene,tt0164052\nf7l5I6ZPt_Y,2000.0,3,10,2017,Hollow Man,One More Experiment Scene,tt0164052\nfVoHEZb6imE,2000.0,4,10,2017,Hollow Man,Unseen Predator Scene,tt0164052\nadjuOPzkpw4,1991.0,10,10,2017,F/X2,A Flying Clown Scene,tt0101846\nn44APWaJZ58,1991.0,9,10,2017,F/X2,Give Me the Gun Scene,tt0101846\nKbRMCmnLU8o,1991.0,8,10,2017,F/X2,Cue Ball Corner Pocket Scene,tt0101846\na_9dO9k2TPQ,1991.0,6,10,2017,F/X2,Exploding Beans Scene,tt0101846\ntGg3h7NtiXs,1991.0,7,10,2017,F/X2,I Want Some Answers! Scene,tt0101846\ncSSYFjtc4SY,1991.0,3,10,2017,F/X2,Clown Fights Back Scene,tt0101846\nof7H9H_aPxg,1991.0,5,10,2017,F/X2,Making Popcorn Scene,tt0101846\nDd0f82f8ymk,1991.0,4,10,2017,F/X2,Gotcha! Scene,tt0101846\nAtWL0iQxE7U,1991.0,2,10,2017,F/X2,Mike is Murdered Scene,tt0101846\nmhCiFB07I2w,1991.0,1,10,2017,F/X2,I Don't Do Windows Scene,tt0101846\nGwdgbTQ5cgU,1986.0,5,9,2017,F/X,Giving 'Em the Slip Scene,tt0089118\n_KzpueROmto,1986.0,3,9,2017,F/X,Marked for Death Scene,tt0089118\nrqdEaDM2PWM,1986.0,7,9,2017,F/X,Playing Games Scene,tt0089118\nhE5rsmIsYPA,1986.0,9,9,2017,F/X,Escape From the Morgue Scene,tt0089118\nMWxa84PirUc,1986.0,8,9,2017,F/X,Krazy-Glued Gun Scene,tt0089118\nRV0EbFEZpT8,1986.0,4,9,2017,F/X,Trunk Torture Scene,tt0089118\nMrtT-vOpAfc,1986.0,2,9,2017,F/X,No Loose Ends Scene,tt0089118\nZ8JHamH3gW4,1986.0,1,9,2017,F/X,Nobody Dies Like You Scene,tt0089118\no-_ochO9CFQ,1986.0,6,9,2017,F/X,Borrowing a Badge Scene,tt0089118\nUvojHP56dnQ,2016.0,9,10,2017,American Honey,You Think You're Special Scene,tt3721936\niHkMTqikRg4,2016.0,8,10,2017,American Honey,You Missed Your Pickup Scene,tt3721936\nlGTsRcHaMic,2016.0,6,10,2017,American Honey,The Only Wolf Scene,tt3721936\n2fbk5E4JTkI,2016.0,7,10,2017,American Honey,We're Sales Associates Scene,tt3721936\njV76HSEeAPQ,2016.0,10,10,2017,American Honey,Singing in the Van Scene,tt3721936\nuqn1bgQX1lg,2016.0,4,10,2017,American Honey,Keep On Dreaming Scene,tt3721936\nynG2qpTbFP0,2016.0,5,10,2017,American Honey,A Crazy One Scene,tt3721936\n4tVEuWxns6g,2016.0,3,10,2017,American Honey,The Devil Has a Hold on You Scene,tt3721936\nWInIV1tcI28,2016.0,1,10,2017,American Honey,Come With Us Scene,tt3721936\n4GYKaKvJ4Ng,2016.0,2,10,2017,American Honey,Leaving the Kids Scene,tt3721936\nJb2egULZePg,2005.0,4,11,2017,Fierce People,Dying to Do It Scene,tt0401420\nH9bQdTtfGCU,2009.0,9,11,2017,The Haunting in Connecticut,Jonah's Fate Scene,tt0492044\nlensYsrpsVY,1990.0,8,11,2017,\"After Dark, My Sweet\",If I Only Knew What You Wanted Scene,tt0098994\naRMHp-wDvnE,1990.0,9,11,2017,\"After Dark, My Sweet\",A Bad Feeling Scene,tt0098994\ndWWjjk3Ody8,1990.0,2,11,2017,\"After Dark, My Sweet\",I'm Not Stupid Scene,tt0098994\nXqtGRpyXGXg,1990.0,7,11,2017,\"After Dark, My Sweet\",Picking Up Charlie Scene,tt0098994\nwdlhhgAT1EU,1990.0,5,11,2017,\"After Dark, My Sweet\",Punching His Brains Out Scene,tt0098994\nHDPj29dAC-g,1990.0,3,11,2017,\"After Dark, My Sweet\",Glad You Came Back Scene,tt0098994\nOQjvys5lLk4,1990.0,4,11,2017,\"After Dark, My Sweet\",You Know Where I'll Be Scene,tt0098994\nBr0BUZWEDQg,1990.0,10,11,2017,\"After Dark, My Sweet\",I've Seen You Scene,tt0098994\nbsbgDqKys5g,1990.0,1,11,2017,\"After Dark, My Sweet\",Bert's Bar Scene,tt0098994\nIltqQORdPjY,1990.0,11,11,2017,\"After Dark, My Sweet\",The Crazy Stuff Scene,tt0098994\ndBbxzOOGUqA,1990.0,6,11,2017,\"After Dark, My Sweet\",That's the Wrong Boy Scene,tt0098994\n-CSIqCS1WIk,2005.0,11,11,2017,Fierce People,Caught in the Act Scene,tt0401420\nPxKcm6wWUJ0,2005.0,10,11,2017,Fierce People,You Never Want to Kiss Me Scene,tt0401420\n2BofOahaB0w,2005.0,8,11,2017,Fierce People,Let's Get High Together Scene,tt0401420\n6xmaoTphmLY,2005.0,9,11,2017,Fierce People,Hot Air Balloon Race Scene,tt0401420\njqzTeVVmTvc,2005.0,7,11,2017,Fierce People,Take Off Your Clothes Scene,tt0401420\n-XggDv2QdHg,2005.0,6,11,2017,Fierce People,A Eunuch Scene,tt0401420\n1IyD0DjLrrc,2005.0,5,11,2017,Fierce People,A Pretty Girl Scene,tt0401420\nV5P-1Vedt5E,2005.0,3,11,2017,Fierce People,Bear Trap Scene,tt0401420\nrcA0MBnPPM8,2005.0,1,11,2017,Fierce People,The Meanest People in the World Scene,tt0401420\ngm-sqEK2InM,2005.0,2,11,2017,Fierce People,Wanna Shotgun? Scene,tt0401420\nQlYSFCvUGoI,2013.0,7,10,2017,The Haunting in Connecticut 2,The Station Master Scene,tt1457765\ndkDGK_eFw5c,2013.0,8,10,2017,The Haunting in Connecticut 2,Death by Taxidermy Scene,tt1457765\n_liUxE_lefE,2013.0,9,10,2017,The Haunting in Connecticut 2,The Station Master's Secret Scene,tt1457765\nrb_iLvMVihA,2013.0,6,10,2017,The Haunting in Connecticut 2,Slave Ghosts Scene,tt1457765\nUJ12I9sHqK8,2013.0,4,10,2017,The Haunting in Connecticut 2,That's Mr. Gordy Scene,tt1457765\n3tbDLfgTAuI,2013.0,5,10,2017,The Haunting in Connecticut 2,Ghosts in the Woods Scene,tt1457765\n8dcA5NLO_GQ,2013.0,3,10,2017,The Haunting in Connecticut 2,Mr. Gordy's Gifts Scene,tt1457765\nLKVJLiiBlOs,2013.0,10,10,2017,The Haunting in Connecticut 2,Facing the Station Master Scene,tt1457765\nI7pOcssa5uE,2013.0,2,10,2017,The Haunting in Connecticut 2,Listen to Your Mother Scene,tt1457765\nKgbASFn2Pv8,2013.0,1,10,2017,The Haunting in Connecticut 2,The Old Wreck Scene,tt1457765\nGMnwXB4A1iI,2009.0,10,11,2017,The Haunting in Connecticut,Shower Scare Scene,tt0492044\n6hfzPfOrftY,2009.0,11,11,2017,The Haunting in Connecticut,Into the Fire Scene,tt0492044\n4VaSyU3yfMw,2009.0,4,11,2017,The Haunting in Connecticut,Among the Dead Scene,tt0492044\n5Vo99FUjbrc,2009.0,7,11,2017,The Haunting in Connecticut,Night Shock Scene,tt0492044\nhK62U-Gm_hI,2009.0,1,11,2017,The Haunting in Connecticut,Things That Go Bump in the Night Scene,tt0492044\nMgYmK3cDFq8,2009.0,5,11,2017,The Haunting in Connecticut,Ectoplasm Scene,tt0492044\nhfCRzaZuY6s,2009.0,8,11,2017,The Haunting in Connecticut,Vengeful Spirit Scene,tt0492044\nAjAJNPCQ1Fs,2009.0,2,11,2017,The Haunting in Connecticut,I'm Not Seeing Things Scene,tt0492044\nOYsV5RbHvA4,2009.0,3,11,2017,The Haunting in Connecticut,Eye Opener Scene,tt0492044\nEwsHFGh6fkE,2009.0,6,11,2017,The Haunting in Connecticut,Afraid of the Dark Scene,tt0492044\nlzJV7k-LiC4,2016.0,10,10,2017,Sing,Just Start ing Scene,tt3470600\nUK-vT8iapA8,2016.0,9,10,2017,Sing,I Did It My Way Scene,tt3470600\nengSFG20kaA,2016.0,8,10,2017,Sing,Set It All Free Scene,tt3470600\nZ2xooz6844k,2016.0,6,10,2017,Sing,Shake It Off Scene,tt3470600\nETC85CgzTHM,2016.0,7,10,2017,Sing,Johnny's Still Standing Scene,tt3470600\nbCOc7VCSox4,2016.0,5,10,2017,Sing,Buster's Car Wash Scene,tt3470600\ncUT0WQ9cTrg,2016.0,4,10,2017,Sing,Squid Power Scene,tt3470600\nWDAlAqy9WUM,2016.0,1,10,2017,Sing,Open the Doors Scene,tt3470600\nukl9qBvRXfc,2016.0,3,10,2017,Sing,\"$100,000 Prize Scene\",tt3470600\n10khF4-1rbU,2016.0,2,10,2017,Sing,Auditions Scene,tt3470600\n15gPYqGlkwc,2016.0,10,10,2017,Kubo and the Two Strings,The Most Powerful Magic Scene,tt4302938\nq_VK4zsJWNw,2016.0,9,10,2017,Kubo and the Two Strings,All Stories Have an End Scene,tt4302938\nAwr5m5-ocv8,2016.0,7,10,2017,Kubo and the Two Strings,You Are My Quest Scene,tt4302938\nhKTAeQKaKu0,2016.0,8,10,2017,Kubo and the Two Strings,Tearing Apart the Family Scene,tt4302938\nKdr51Y91SQE,2016.0,5,10,2017,Kubo and the Two Strings,The Hall of Bones Scene,tt4302938\nzjdesHuied8,2016.0,6,10,2017,Kubo and the Two Strings,The Battle on the Boat Scene,tt4302938\n7Q6ywfDSm_0,2016.0,2,10,2017,Kubo and the Two Strings,The Sinister Sisters Scene,tt4302938\ndpKQxs7ashU,2016.0,4,10,2017,Kubo and the Two Strings,A Warrior Beetle Scene,tt4302938\nLfL_KOOZvLw,2016.0,1,10,2017,Kubo and the Two Strings,The Legend of Hanzo Scene,tt4302938\nQrl_BpahMRs,2016.0,3,10,2017,Kubo and the Two Strings,Don't Mess With the Monkey Scene,tt4302938\nyg42xdVf9mM,2007.0,5,7,2017,Nancy Drew,Birthday Party Emergency Scene,tt0479500\nXqwQlCAM3P0,2007.0,7,7,2017,Nancy Drew,Everything Ends Up Okay Scene,tt0479500\nrzCeSHk3aVY,2007.0,6,7,2017,Nancy Drew,Escape From a Moving Car Scene,tt0479500\nEce-FTMuKFU,2007.0,2,7,2017,Nancy Drew,You're Awesome Scene,tt0479500\nPdzjDn5zVXo,2007.0,4,7,2017,Nancy Drew,I Have to Defuse This Bomb Scene,tt0479500\nDjNVqYjp3E4,2007.0,3,7,2017,Nancy Drew,Who Tried to Kill Us? Scene,tt0479500\ndXNmLJXEgQU,2007.0,1,7,2017,Nancy Drew,\"Hello, I'm  Scene\",tt0479500\nmHRbCgVCbIA,2010.0,6,10,2017,Legend of the Guardians,The Echidna Scene,tt1219342\nPSWgZzUr_Yw,2010.0,1,10,2017,Legend of the Guardians,Taken From Home Scene,tt1219342\nPD4Gq5GPcN8,2010.0,2,10,2017,Legend of the Guardians,Chasing the Bluebird Scene,tt1219342\nraDWhK7iSqU,2010.0,3,10,2017,Legend of the Guardians,Soaring to Safety Scene,tt1219342\nq9Wip3v8h40,2010.0,5,10,2017,Legend of the Guardians,Captured by Crows Scene,tt1219342\n0YOmyGX2kmQ,2010.0,4,10,2017,Legend of the Guardians,We're Flying! Scene,tt1219342\nXjp16xSdsp0,2010.0,7,10,2017,Legend of the Guardians,Guardian Rescue Scene,tt1219342\n3NpYTks1mDI,2010.0,8,10,2017,Legend of the Guardians,To Battle! Scene,tt1219342\nn94um7eDILg,2010.0,9,10,2017,Legend of the Guardians,Kludd's Betrayal Scene,tt1219342\nhRfF8Kes77E,2010.0,10,10,2017,Legend of the Guardians,The Death of Metal Beak Scene,tt1219342\n51reM6wq2XU,2001.0,6,10,2017,A Knight's Tale,Take the Bad With the Good Scene,tt0183790\n95N85bGdzw4,2001.0,9,10,2017,A Knight's Tale,Sir William Scene,tt0183790\nPVEIr4MGaT8,2001.0,10,10,2017,A Knight's Tale,The Tournament Scene,tt0183790\nNj61hQhTwW0,2001.0,8,10,2017,A Knight's Tale,Do It For Love Scene,tt0183790\n1WwlHv69kik,2001.0,7,10,2017,A Knight's Tale,Father and Son Scene,tt0183790\neAC2kNiKuEg,2001.0,1,10,2017,A Knight's Tale,Tournament Training Scene,tt0183790\nyygNdTxoHus,2001.0,4,10,2017,A Knight's Tale,A Dance From Gelderland Scene,tt0183790\nMBNiDwytFow,2001.0,3,10,2017,A Knight's Tale,Dance Lessons Scene,tt0183790\nmXz39lQAEmY,2001.0,5,10,2017,A Knight's Tale,Love Letter Scene,tt0183790\nyLFZcXeZymY,2001.0,2,10,2017,A Knight's Tale,My Foxy Lady Scene,tt0183790\ngO6qemCFhEU,1955.0,2,10,2017,Abbott and Costello Meet the Mummy,Snake Charmer Scene,tt0047795\n2m-I23sWzEI,1955.0,1,10,2017,Abbott and Costello Meet the Mummy,Making a Date Scene,tt0047795\nfcFKVVHQn7o,1955.0,3,10,2017,Abbott and Costello Meet the Mummy,Finding the Medallion Scene,tt0047795\nkOe-yLCbA4E,1955.0,6,10,2017,Abbott and Costello Meet the Mummy,Pickpockets Scene,tt0047795\n-utei4CzIzc,1955.0,4,10,2017,Abbott and Costello Meet the Mummy,Selling the Medallion Scene,tt0047795\nYg6sZ2htZfc,1955.0,5,10,2017,Abbott and Costello Meet the Mummy,The Medallion of Death Scene,tt0047795\nCECosJ9_6MI,1955.0,8,10,2017,Abbott and Costello Meet the Mummy,Pick the Pick Scene,tt0047795\n4WibEcqn1c8,1955.0,9,10,2017,Abbott and Costello Meet the Mummy,Mummies Everywhere Scene,tt0047795\ni_rch_cy7dM,1955.0,7,10,2017,Abbott and Costello Meet the Mummy,You Can Come Out Now Scene,tt0047795\nGRADFiFVLJQ,1955.0,10,10,2017,Abbott and Costello Meet the Mummy,Opening Night Scene,tt0047795\nb6vOp7_rI6Q,2015.0,3,10,2017,The Witch,Witch of the Wood Scene,tt4263482\niBptyagVaEQ,2015.0,10,10,2017,The Witch,I Will Guide Thy Hand Scene,tt4263482\nLxAebgxJHyg,2015.0,8,10,2017,The Witch,Black Phillip's Revenge Scene,tt4263482\nALhR_LDm5Is,2015.0,9,10,2017,The Witch,Matricide Scene,tt4263482\nYjJ2tMg4tTA,2015.0,6,10,2017,The Witch,Take Me to Thy Lap Scene,tt4263482\noS_Iap5D9jQ,2015.0,7,10,2017,The Witch,Black Magic Madness Scene,tt4263482\nAE4RhPMAtp0,2015.0,2,10,2017,The Witch,Black Phillip Scene,tt4263482\natQYOl5KL-o,2015.0,4,10,2017,The Witch,Witch's Lair Scene,tt4263482\nu7DV5coBXSA,2015.0,1,10,2017,The Witch,Peek-a-Boo Scene,tt4263482\naSajnx9QK-0,2015.0,5,10,2017,The Witch,The Apple Scene,tt4263482\ncMmi5sRe8wc,2002.0,8,8,2017,Ghost Ship,Sinking the Ship Scene,tt0288477\nn3D3JTzaiwA,2002.0,6,8,2017,Ghost Ship,Arctic Warrior Explodes Scene,tt0288477\nRdTIzSuw-nI,2002.0,7,8,2017,Ghost Ship,Fighting Dead Friends Scene,tt0288477\nhqhm_-sWbFg,2002.0,5,8,2017,Ghost Ship,Don't Go in There Scene,tt0288477\nsaTBYjmhcok,2002.0,1,8,2017,Ghost Ship,The Antonia Graza Scene,tt0288477\n13wgcygv86Q,2002.0,2,8,2017,Ghost Ship,Be Careful Where You Step Scene,tt0288477\nV5hfxgrLuoU,2002.0,3,8,2017,Ghost Ship,Death in the Water Scene,tt0288477\nyNhbLL3Xvcw,2002.0,4,8,2017,Ghost Ship,A Box of Rats Scene,tt0288477\n7Fj5JAYfWVc,1988.0,6,10,2017,Ghoulies II,Man vs. Ghoulie Scene,tt0093091\nbd0IiiCDDGI,1988.0,2,10,2017,Ghoulies II,My Little Muffy Scene,tt0093091\nPwgxGA6pLhc,1988.0,1,10,2017,Ghoulies II,Hitching a Ride Scene,tt0093091\nvzzuOkCkHlQ,1988.0,3,10,2017,Ghoulies II,Slimed in Satan's Den Scene,tt0093091\nN-ZFty2-G7I,1988.0,4,10,2017,Ghoulies II,Tortured Scene,tt0093091\nT2ph28ghuEU,1988.0,9,10,2017,Ghoulies II,Conjuring a Giant Ghoulie Scene,tt0093091\nD4HGK-_5TkY,1988.0,5,10,2017,Ghoulies II,You Can't Kill a Magician Scene,tt0093091\nH_sYBmKxmvs,1988.0,7,10,2017,Ghoulies II,Dunk Tank Scene,tt0093091\nY4SSkX4sRMQ,1988.0,8,10,2017,Ghoulies II,Ghoulie in the Toilet Scene,tt0093091\nH1TQv3qA7PI,1988.0,10,10,2017,Ghoulies II,Molotov Cocktail Scene,tt0093091\nZG60oroE7AI,2004.0,7,11,2017,Dumplings,I Don't Want to Die Scene,tt0472458\n6bxX5ZV1qn0,2004.0,6,11,2017,Dumplings,Now You Need Me Scene,tt0472458\ngLWaU-LKIwQ,2004.0,10,11,2017,Dumplings,The First Taste Scene,tt0472458\nT535zq4Kpt8,2004.0,3,11,2017,Dumplings,You Promised to Stay Scene,tt0472458\nn03zeBpWC0M,2004.0,9,11,2017,Dumplings,A Cursed Child Scene,tt0472458\n8QPhWhQ6zS8,2004.0,8,11,2017,Dumplings,A Strange Smell Scene,tt0472458\nqC7HofT0v4g,2004.0,11,11,2017,Dumplings,I Want Your Baby Scene,tt0472458\n9-_TcYrv2YU,2004.0,2,11,2017,Dumplings,I Cleansed Them Scene,tt0472458\npjKnwaYJi6Y,2004.0,5,11,2017,Dumplings,The Most Nutritious Scene,tt0472458\nOwDRBPO9eKw,2004.0,1,11,2017,Dumplings,Secret Exchange Scene,tt0472458\nLYBdGadPNz8,2004.0,4,11,2017,Dumplings,We Can't Keep the Child Scene,tt0472458\n1Jk8IZYcxmQ,2016.0,3,10,2017,Sausage Party,Firewater's Truth Scene,tt1700841\ng7bQ7ynurn8,2016.0,5,10,2017,Sausage Party,I Would Do Anything for Love Scene,tt1700841\nSWl87YF_hHQ,2016.0,9,10,2017,Sausage Party,Make It Rain Scene,tt1700841\nVcnAtRLJS84,2016.0,2,10,2017,Sausage Party,Bagel vs. Lavash Scene,tt1700841\nvmynulColPI,2016.0,8,10,2017,Sausage Party,The Gods Can Be Killed Scene,tt1700841\nDI5t1Bxfy90,2016.0,10,10,2017,Sausage Party,The Fruits Attack Scene,tt1700841\n4pSAjI9lOGY,2016.0,7,10,2017,Sausage Party,The Great Beyond is B.S. Scene,tt1700841\nYKZRedzkeU8,2016.0,6,10,2017,Sausage Party,\"Not Tweaking, Just Peaking Scene\",tt1700841\niqZmwwUvgVU,2016.0,4,10,2017,Sausage Party,We're All Gonna Die! Scene,tt1700841\nMvIqR1cMbv0,2016.0,1,10,2017,Sausage Party,The Great Beyond Song Scene,tt1700841\nbxxHPYFtbE4,1997.0,5,7,2017,Fathers' Day,Big Trouble Scene,tt0119109\nq_y6O1yflZI,1997.0,7,7,2017,Fathers' Day,Sugar Ray & the German Producer Scene,tt0119109\n44BkOqV2jDc,1997.0,1,7,2017,Fathers' Day,I'm Your Dad Scene,tt0119109\nH79X1JQ_S30,1997.0,3,7,2017,Fathers' Day,What Is Going On? Scene,tt0119109\nHQCava8QqK8,1997.0,2,7,2017,Fathers' Day,Bridge Anxiety Scene,tt0119109\nXNUers0BuD4,1997.0,6,7,2017,Fathers' Day,Sexy Wife Scene,tt0119109\nqHA5R-Q1Od8,1997.0,4,7,2017,Fathers' Day,Parents Screw Up Sometimes Scene,tt0119109\n1I2xNdoQXM4,1991.0,8,10,2017,Doc Hollywood,I Hate a Tight Hat Scene,tt0101745\nhQIL99lP484,1991.0,9,10,2017,Doc Hollywood,Roadside Delivery Scene,tt0101745\nQc3voNxG1NM,1991.0,5,10,2017,Doc Hollywood,Hee Haw Hell Scene,tt0101745\nSUfo49TsWOQ,1991.0,6,10,2017,Doc Hollywood,Panties Are Optional Scene,tt0101745\n1eN1O1j3LcY,1991.0,10,10,2017,Doc Hollywood,The Halberstrom Clinic Scene,tt0101745\nCpIgfRGUpU0,1991.0,2,10,2017,Doc Hollywood,A Permanent Position Scene,tt0101745\nI0jOVXcnjdg,1991.0,1,10,2017,Doc Hollywood,Wrecked Fence Scene,tt0101745\nxMjEmE1YLSU,1991.0,4,10,2017,Doc Hollywood,\"Nice Work, Hollywood Scene\",tt0101745\nvp7r-h8OLm0,1991.0,7,10,2017,Doc Hollywood,Peeing in the Woods Scene,tt0101745\njmuC1ebmYQg,1991.0,3,10,2017,Doc Hollywood,I'm Cured Scene,tt0101745\nTv5BC6yJ61o,1990.0,10,10,2017,Awakenings,The Simplest Things Scene,tt0099077\nXtL5tGpGIN8,1990.0,9,10,2017,Awakenings,I Won't See You Anymore Scene,tt0099077\nq-nQtR-WbIs,1990.0,8,10,2017,Awakenings,Don't Give Up on Me Scene,tt0099077\nfZflzybv5T0,1990.0,3,10,2017,Awakenings,We're Talking About Money Scene,tt0099077\n2yZlrJWBLac,1990.0,7,10,2017,Awakenings,The Drug Isn't Working Scene,tt0099077\nvKhAdR1G9io,1990.0,6,10,2017,Awakenings,You Woke A Person Scene,tt0099077\nOxKXKwijH_g,1990.0,5,10,2017,Awakenings,Remind Them How Good It Is Scene,tt0099077\nHj52vD7KGxs,1990.0,1,10,2017,Awakenings,The Will of the Ball Scene,tt0099077\nkS_QskTI8WI,1990.0,2,10,2017,Awakenings,You're Awake Scene,tt0099077\nfNjMYPeG8IU,1990.0,4,10,2017,Awakenings,The Strangest Dream Scene,tt0099077\nVEsvArkVtYQ,1989.0,9,9,2017,Dream a Little Dream,Under the Gun Scene,tt0097236\nJIvq1ObEOrs,1989.0,6,9,2017,Dream a Little Dream,Dancing the Dream Scene,tt0097236\n_cZ-D5Q-26M,1989.0,7,9,2017,Dream a Little Dream,Bobby Gets Beat Up Scene,tt0097236\n415kITLNgvg,1989.0,8,9,2017,Dream a Little Dream,The Dance Scene,tt0097236\nqlyJNTOwkAI,1989.0,1,9,2017,Dream a Little Dream,The Accident Scene,tt0097236\noOBu3uqpW1A,1989.0,5,9,2017,Dream a Little Dream,Wake Up Scene,tt0097236\n_WE7Il9dZCE,1989.0,4,9,2017,Dream a Little Dream,Willing to Believe Scene,tt0097236\n7LoHCPOvmuo,1989.0,2,9,2017,Dream a Little Dream,Welcome to Dreamland Scene,tt0097236\nmHgXG0tmomg,1989.0,3,9,2017,Dream a Little Dream,Another First Day Scene,tt0097236\nD3fVS2I9ZVM,2015.0,9,10,2017,Extraction,Sorry Scene,tt4382872\nX0d8qyjQ20M,2015.0,10,10,2017,Extraction,I Like Complicated Scene,tt4382872\nSJdUJZ7odoU,2015.0,8,10,2017,Extraction,For Your Mother Scene,tt4382872\nUBnufwe-p_c,2015.0,5,10,2017,Extraction,You're Crazy Scene,tt4382872\nn1GlWng3oOQ,2015.0,6,10,2017,Extraction,The CIA Gave Up My Cover Scene,tt4382872\naDZSH05DM_c,2015.0,7,10,2017,Extraction,Condor Activated Scene,tt4382872\nE67jk75CRWM,2015.0,1,10,2017,Extraction,You Look Stupid With That Pen in Your Neck Scene,tt4382872\nArGWpUHkEmc,2015.0,4,10,2017,Extraction,Bathroom Assassin Scene,tt4382872\no3ya6zEv3eM,2015.0,2,10,2017,Extraction,He's Been Training For Years Scene,tt4382872\n0mjSZpCpsdc,2015.0,3,10,2017,Extraction,Biker Bar Brawl Scene,tt4382872\nxMoCoTO3d-Y,2014.0,8,10,2017,American Heist,Buying Time Scene,tt2923316\noEddtexPCso,2014.0,5,10,2017,American Heist,The Bank Robbery Scene,tt2923316\nQmEz0udgJsA,2014.0,10,10,2017,American Heist,Not a Hostage Scene,tt2923316\n2OrlbOFhcUs,2014.0,9,10,2017,American Heist,Frankie's Sacrifice Scene,tt2923316\nwytpJXfw86w,2014.0,7,10,2017,American Heist,Not Without Frankie Scene,tt2923316\nMMxE41xM9ic,2014.0,6,10,2017,American Heist,Robbery Gone Wrong Scene,tt2923316\nkPXFWplmSyA,2014.0,1,10,2017,American Heist,It's Been Ten Years Scene,tt2923316\nNufzJ2YVJB4,2014.0,3,10,2017,American Heist,They Broke Me Scene,tt2923316\nwkoHQdbhfOc,2014.0,4,10,2017,American Heist,Me and You Against the World Scene,tt2923316\nsRUb0GR0ZiE,2014.0,2,10,2017,American Heist,You're Complicit Scene,tt2923316\niAzMFB3QaBk,2014.0,6,10,2017,Tell,Blackmail and Gay Porn Scene,tt4195278\n5gtFQegr2xA,2014.0,3,10,2017,Tell,God Where the Money Is Scene,tt4195278\nToF0U78xIyA,2014.0,5,10,2017,Tell,Shooting the Safe Scene,tt4195278\ntXF23iSwW3I,2014.0,1,10,2017,Tell,The Robbery Scene,tt4195278\n9u6xaK00otk,2014.0,10,10,2017,Tell,Just Aunt Beverly Scene,tt4195278\noOWl14GlJx4,2014.0,9,10,2017,Tell,'s Trick Scene,tt4195278\nh5KBS20Ke6U,2014.0,4,10,2017,Tell,You Just Killed Me For No Reason Scene,tt4195278\nye38FmLnLBo,2014.0,2,10,2017,Tell,Something Came Over Me Scene,tt4195278\npzZ9UdUTRNA,2014.0,7,10,2017,Tell,Anything But This Scene,tt4195278\n8OS1xorvbAs,2014.0,8,10,2017,Tell,Us Where the Money Is Scene,tt4195278\npoU8QxFJjbo,2015.0,10,10,2017,Mercenary: Absolution,Up Close and Personal Scene,tt3503840\n2uZV27BttLM,2015.0,1,10,2017,Mercenary: Absolution,Erasing Liabilities Scene,tt3503840\n1BS3mo_yHvY,2015.0,9,10,2017,Mercenary: Absolution,I Wanna Kill You Scene,tt3503840\nG77UaCXuoOs,2015.0,8,10,2017,Mercenary: Absolution,Don't Say I Never Did Nothing for You Scene,tt3503840\nHYog4UvM1zI,2015.0,6,10,2017,Mercenary: Absolution,Escaping with the Evidence Scene,tt3503840\ngUKbFeHjYX8,2015.0,7,10,2017,Mercenary: Absolution,Nadia's Revenge Scene,tt3503840\nhM1OunX-QBg,2015.0,2,10,2017,Mercenary: Absolution,Leave Her Alone Scene,tt3503840\ngxsDfmzU-Lo,2015.0,4,10,2017,Mercenary: Absolution,The Wrong Kind of People Scene,tt3503840\nk2-SBnbz7pE,2015.0,5,10,2017,Mercenary: Absolution,Who's the Boss? Scene,tt3503840\nMkNhAG2CUso,2015.0,3,10,2017,Mercenary: Absolution,For My Own Absolution Scene,tt3503840\nyMe-7hW4evU,2014.0,10,10,2017,Mercenaries,Big Women Fall Hard Scene,tt3598222\nWK_rWzm86RI,2014.0,9,10,2017,Mercenaries,Evasive Driving and Clear Shooting Scene,tt3598222\nVlCkdkzOwFk,2014.0,7,10,2017,Mercenaries,One Woman Army Scene,tt3598222\nvpTj6-4d5qA,2014.0,8,10,2017,Mercenaries,Like a Poodle Scene,tt3598222\nacVDpeSHw44,2014.0,5,10,2017,Mercenaries,It's Go Time Scene,tt3598222\nZFGBlZw2kIM,2014.0,6,10,2017,Mercenaries,A Change in Plans Scene,tt3598222\nVHF31ybakiM,2014.0,1,10,2017,Mercenaries,Kidnapping the President's Daughter Scene,tt3598222\nfbnpdWhOwIs,2014.0,2,10,2017,Mercenaries,Uncle Sam Wants You Scene,tt3598222\nSEtuhB8LEZU,2014.0,3,10,2017,Mercenaries,Don't Sample the Merchandise Scene,tt3598222\nHuUhj-abydY,2014.0,4,10,2017,Mercenaries,Ulrika's Ultimatum Scene,tt3598222\ndjTx7slpfHI,2014.0,10,10,2017,See No Evil 2,Death by Embalming Fluid Scene,tt3106120\ngmnU4tK8GOo,2014.0,9,10,2017,See No Evil 2,Nobody's Safe Scene,tt3106120\nOS0rZQtDsoc,2014.0,6,10,2017,See No Evil 2,Run Scene,tt3106120\nsfCQQLSwz3s,2014.0,8,10,2017,See No Evil 2,Electric Knife Scene,tt3106120\nN-v-x6qmtcc,2014.0,5,10,2017,See No Evil 2,I See the Sin on You Scene,tt3106120\ng9hEJv2uZLM,2014.0,7,10,2017,See No Evil 2,Will vs. Jacob Scene,tt3106120\nkBTPEpA8BzU,2014.0,4,10,2017,See No Evil 2,Trapped in the Dark Scene,tt3106120\nymShdFJoqiw,2014.0,1,10,2017,See No Evil 2,Hot and Cold Scene,tt3106120\nYRdXmtGnwCI,2014.0,3,10,2017,See No Evil 2,Goodnight Returns Scene,tt3106120\n29D9SkdtVBU,2014.0,2,10,2017,See No Evil 2,Sex and Death Scene,tt3106120\nKY-bRBsLLtA,2007.0,6,10,2017,Dead Wood,Seduction and Death Scene,tt1043791\nHBPQtYCDKrk,2007.0,10,10,2017,Dead Wood,Killing the Forest Spirit Scene,tt1043791\n-wqnmuzG51c,2007.0,7,10,2017,Dead Wood,Specters in the Woods Scene,tt1043791\nFecoe2kJdD0,2007.0,8,10,2017,Dead Wood,Bleeding Horror Scene,tt1043791\nLRHNkBU6YWw,2007.0,9,10,2017,Dead Wood,Becoming a Tree Scene,tt1043791\nRxEkm4dDAL4,2007.0,5,10,2017,Dead Wood,Skinny Dipping Threeway Scene,tt1043791\n-KW0wz1xBfw,2007.0,1,10,2017,Dead Wood,Death Force Chase Scene,tt1043791\nkTUnQubJMoc,2007.0,2,10,2017,Dead Wood,Strangling a Deer Scene,tt1043791\nlcIuJs1vHrg,2007.0,4,10,2017,Dead Wood,Sex and Scares Scene,tt1043791\nUiQdZRBhBAE,2007.0,3,10,2017,Dead Wood,Swarm of Bees Scene,tt1043791\n1YrP2ICd6ro,2006.0,4,10,2017,Beyond the Wall of Sleep,Eldritch Horror Acid Trip Scene,tt0279688\nSdFZEeR8a2s,2006.0,5,10,2017,Beyond the Wall of Sleep,Gore-Soaked Delirium Scene,tt0279688\n_eyLdmCxtPo,2006.0,3,10,2017,Beyond the Wall of Sleep,Cadaver Sex Toy Scene,tt0279688\nBWR9aK0vAAY,2006.0,6,10,2017,Beyond the Wall of Sleep,Skull Drilling Scene,tt0279688\n2UK1aSp3bUY,2006.0,2,10,2017,Beyond the Wall of Sleep,Electrotherapy Orgasm Scene,tt0279688\nnWd-gLPa5fs,2006.0,1,10,2017,Beyond the Wall of Sleep,I Wake With Bad Things Scene,tt0279688\n4UOnDFoEPUQ,2006.0,7,10,2017,Beyond the Wall of Sleep,Ring Around the Rosy Scene,tt0279688\nti39GhRZkrw,2006.0,8,10,2017,Beyond the Wall of Sleep,Conduit of Brains Scene,tt0279688\n1dLZuGiJRXA,2006.0,10,10,2017,Beyond the Wall of Sleep,H. P. Lovecraft Cameo Scene,tt0279688\nTp9iK2u30qQ,2006.0,9,10,2017,Beyond the Wall of Sleep,Summoning the Horror Scene,tt0279688\n-Nj1XUtmKDo,2012.0,3,10,2017,The Haunting of Whaley House,Come and Get Me Scene,tt2396701\nsG_cgDlDyEg,2012.0,7,10,2017,The Haunting of Whaley House,Come Out Wherever You Are Scene,tt2396701\niaxDwgBzVFk,2012.0,9,10,2017,The Haunting of Whaley House,\"Come Home, Sweetie Scene\",tt2396701\neYt5GYOLjNI,2012.0,10,10,2017,The Haunting of Whaley House,The Cries of a Ghost Scene,tt2396701\nj4W7FAGrpiQ,2012.0,8,10,2017,The Haunting of Whaley House,You Deserve to Die Scene,tt2396701\nEnAegC2mT8I,2012.0,4,10,2017,The Haunting of Whaley House,\"He Died Bad, He Stayed Bad Scene\",tt2396701\nLiZ_h3tUmMs,2012.0,5,10,2017,The Haunting of Whaley House,\"Never Fear, the Cops are Here Scene\",tt2396701\nm2yxUTpM3IQ,2012.0,6,10,2017,The Haunting of Whaley House,This is My House Scene,tt2396701\neret8dNSTqo,2012.0,1,10,2017,The Haunting of Whaley House,Happy to Oblige Scene,tt2396701\npRlsbwGqx8g,2012.0,2,10,2017,The Haunting of Whaley House,Unlucky Penny Scene,tt2396701\n9GBxXdJBSPU,2012.0,9,10,2017,Hold Your Breath,\"Two Ghosts, One Host Scene\",tt2240312\nbvEJjjYbgtk,2012.0,10,10,2017,Hold Your Breath,Hello Gorgeous Scene,tt2240312\n1UtDbLZsJ4Q,2012.0,7,10,2017,Hold Your Breath,Eye Beaters Scene,tt2240312\nZsDOHhqqLCQ,2012.0,6,10,2017,Hold Your Breath,Jerry is Possessed Scene,tt2240312\njzxMo2UKUKM,2012.0,8,10,2017,Hold Your Breath,Ghost Battle Scene,tt2240312\na6cUudbbHl0,2012.0,5,10,2017,Hold Your Breath,Did You ? Scene,tt2240312\nvmOBZjVBCUo,2012.0,3,10,2017,Hold Your Breath,Jump Start Your Death Scene,tt2240312\nQPaP-XRQeM8,2012.0,1,10,2017,Hold Your Breath,Van Claus' Last Words Scene,tt2240312\n15XqLhQ0_Oo,2012.0,2,10,2017,Hold Your Breath,A Suspicion of Possession Scene,tt2240312\na2ZdXUZt3iw,2012.0,4,10,2017,Hold Your Breath,You Almost Killed Me Scene,tt2240312\nyquyze0QbPk,2015.0,3,11,2017,Freeheld,Happy Domestic Partnership Day Scene,tt1658801\nmdgbtrpVBm8,2015.0,5,11,2017,Freeheld,Not My Roommate Scene,tt1658801\nYjbYhnnEDRo,2015.0,1,11,2017,Freeheld,You Should Come Home With Me Scene,tt1658801\nPQbyl1vsn1o,2015.0,2,11,2017,Freeheld,I Thought I'd Never Survive It Scene,tt1658801\nrqKaJ4Yp_oU,2015.0,4,11,2017,Freeheld,Tire Rotation Competition Scene,tt1658801\nQDroSLQiSRI,2015.0,8,11,2017,Freeheld,Trying to Buy a Little Time Scene,tt1658801\nHgee-O7ZAnY,2015.0,9,11,2017,Freeheld,You Have the Power Scene,tt1658801\nNrhBIkWlIfA,2015.0,11,11,2017,Freeheld,The Motion is Passed Scene,tt1658801\n1rJ_NvTBOmc,2015.0,7,11,2017,Freeheld,An Opportunity to Change the World Scene,tt1658801\n0Cufl5Gao98,2015.0,10,11,2017,Freeheld,Political Theater Scene,tt1658801\nPqOlbM-zmuI,2016.0,9,10,2017,Central Intelligence,See You on the Other Side Scene,tt1489889\nVPOd_Y2qFJk,2016.0,10,10,2017,Central Intelligence,Hero of Your Own Story Scene,tt1489889\nM3Jts1DPcWk,2016.0,8,10,2017,Central Intelligence,Grabbing the Codes Scene,tt1489889\nBbyMGiPjDOw,2016.0,7,10,2017,Central Intelligence,One Regret in Life Scene,tt1489889\nYjfLp0bll5U,2016.0,6,10,2017,Central Intelligence,I Did the Thing! Scene,tt1489889\nssxqmxjrx2c,2016.0,4,10,2017,Central Intelligence,Marriage Counseling Scene,tt1489889\n3SsvC_2wKI0,2016.0,5,10,2017,Central Intelligence,\"Once a Fat Kid, Always a Fat Kid Scene\",tt1489889\nyVRmafc7cqQ,2015.0,6,11,2017,Freeheld,It Offends Traditional Values Scene,tt1658801\nMNQQS7QR9Vo,2016.0,2,10,2017,Central Intelligence,Stop Including Me! Scene,tt1489889\nbdJPnMKhsnY,2016.0,1,10,2017,Central Intelligence,I Don't Like Bullies Scene,tt1489889\nM4YOZHoDSyg,2016.0,3,10,2017,Central Intelligence,Time's Up Scene,tt1489889\nDxdOJYRdABY,2013.0,7,11,2017,The Inevitable Defeat of Mister and Pete,Hate Your Mom Scene,tt2113075\nNOACyJ1CYfo,2016.0,9,10,2017,The Boss,A Literal Sword Fight Scene,tt2702724\nhAbVFxYi_q0,2016.0,4,10,2017,The Boss,Dandelion Meeting Scene,tt2702724\naHQQs4D3krU,2016.0,10,10,2017,The Boss,Don't Make Out With the Sociopath Scene,tt2702724\nxRw3fodr6jY,2016.0,8,10,2017,The Boss,Plan B Scene,tt2702724\nmG_G5waoSeo,2016.0,5,10,2017,The Boss,Darlings vs. Dandelions Scene,tt2702724\nodvIh7iwK2E,2016.0,6,10,2017,The Boss,Jostling Each Other's Bosoms Scene,tt2702724\nEb9WH9OiKn8,2016.0,7,10,2017,The Boss,The Closest Thing to a Family Scene,tt2702724\nZLmRWzBjbtU,2016.0,3,10,2017,The Boss,\"Get It Together, Michelle Scene\",tt2702724\ni1igdJh44yU,2016.0,1,10,2017,The Boss,The 47th Richest Woman in America Scene,tt2702724\nsm5Zgj8kjD8,2015.0,10,10,2017,Miss You Already,The Bar Upstairs Scene,tt2245003\nYRruOzr9_w0,2016.0,2,10,2017,The Boss,Who's On My Baseball? Scene,tt2702724\nEuZM3sfjqno,2015.0,9,10,2017,Miss You Already,You Can Have That Baby Now Scene,tt2245003\nopyh8AAgisI,2015.0,5,10,2017,Miss You Already,Even Your Scars Are Beautiful Scene,tt2245003\njzhXtCHYrAM,2015.0,7,10,2017,Miss You Already,I'm Legally Blind Also Scene,tt2245003\nqR9MgJkOFJ0,2015.0,8,10,2017,Miss You Already,Last Wishes Scene,tt2245003\ndZmGh0bXqqw,2015.0,4,10,2017,Miss You Already,Visiting the Moors Scene,tt2245003\nfuwfQJrMgLI,2015.0,3,10,2017,Miss You Already,Surprise Birthday Party Scene,tt2245003\npKHAhc31MOI,2015.0,6,10,2017,Miss You Already,This One Takes the Biscuit Scene,tt2245003\nHLTpxttylTM,2015.0,1,10,2017,Miss You Already,I'm Gonna Be Bald Scene,tt2245003\nDLb9vR3Zu3g,2015.0,2,10,2017,Miss You Already,My Tits Died Scene,tt2245003\niJ_DrM05hp4,2014.0,10,10,2017,She's Funny That Way,You Changed My Life Scene,tt1767372\nDcpIpj7RbxQ,2014.0,9,10,2017,She's Funny That Way,Jane's Fed Up Scene,tt1767372\nm9aEg5dlFOI,2014.0,7,10,2017,She's Funny That Way,Twice in a Night Scene,tt1767372\n91nX46JsnlU,2014.0,5,10,2017,She's Funny That Way,Squirrels to the Nuts Scene,tt1767372\nuBP8cPLPWrQ,2014.0,6,10,2017,She's Funny That Way,Nobody Has Me Scene,tt1767372\n7-H5Yu3_Py8,2014.0,8,10,2017,She's Funny That Way,Shut Up and Kiss Me Scene,tt1767372\nKTxT13DzNsc,2014.0,4,10,2017,She's Funny That Way,Awkward Dinner Scene,tt1767372\nTknTP23YYFI,2014.0,3,10,2017,She's Funny That Way,Call Girl Audition Scene,tt1767372\nCu5F2Z9mKmo,2014.0,2,10,2017,She's Funny That Way,Therapy Works Scene,tt1767372\nbkhUe1txLoc,2014.0,1,10,2017,She's Funny That Way,Even a Muse Needs a Muse Scene,tt1767372\nTmFKGDfxH_4,2013.0,10,11,2017,The Inevitable Defeat of Mister and Pete,The Audition Scene,tt2113075\n8z4QVBaCAJM,2013.0,11,11,2017,The Inevitable Defeat of Mister and Pete,Mom Returns Scene,tt2113075\ndjpX32_UUvc,2013.0,9,11,2017,The Inevitable Defeat of Mister and Pete,You Seen My Mom? Scene,tt2113075\nZYB22miPyjY,2013.0,8,11,2017,The Inevitable Defeat of Mister and Pete,Kissing Alice Scene,tt2113075\nzpccIJubm5g,2013.0,6,11,2017,The Inevitable Defeat of Mister and Pete,I Make This Look Good Scene,tt2113075\nmZmMhrrh5vs,2013.0,2,11,2017,The Inevitable Defeat of Mister and Pete,What's Your Problem? Scene,tt2113075\nWIQhvHsTDU8,2013.0,3,11,2017,The Inevitable Defeat of Mister and Pete,Riding with Alice Scene,tt2113075\npiJUrPp2U2Q,2013.0,5,11,2017,The Inevitable Defeat of Mister and Pete,You Promised Scene,tt2113075\npduwe6sUsu4,2013.0,1,11,2017,The Inevitable Defeat of Mister and Pete,Eat Your Cheeseburger Scene,tt2113075\nZNo6GHJYrFc,2013.0,4,11,2017,The Inevitable Defeat of Mister and Pete,Hiding From the Police Scene,tt2113075\nLW8M-U3Q8ug,2016.0,7,10,2017,Exposed,Have You Ever Been Sodomized? Scene,tt4019560\nyB1w-AypA_s,2016.0,8,10,2017,Exposed,\"Game Over, Playboy Scene\",tt4019560\n--ABd2SeIGE,2016.0,3,10,2017,Exposed,Killed in Action Scene,tt4019560\n3nVP-DM1egA,2016.0,5,10,2017,Exposed,I'm Pregnant Scene,tt4019560\nlOJnFwgpcMQ,2016.0,9,10,2017,Exposed,The Truth About That Night Scene,tt4019560\nsMjmQzP9D6o,2016.0,10,10,2017,Exposed,He Hurt Elisa Scene,tt4019560\nUJQvNi4m4LM,2016.0,6,10,2017,Exposed,Joey Wasn't No Choir Boy Scene,tt4019560\nTZdCMfr0Um8,2016.0,4,10,2017,Exposed,Taking Elisa Home Scene,tt4019560\nnlJqcYb65o0,2016.0,1,10,2017,Exposed,The Floating Man Scene,tt4019560\nZW-xfRn8vFY,2016.0,2,10,2017,Exposed,Frightening Phantoms Scene,tt4019560\nLagXmjL6EeM,2014.0,9,10,2017,Dying of the Light,\"Salaam Alaikum, A**hole Scene\",tt1274586\nIAb5uq3GzZI,2014.0,10,10,2017,Dying of the Light,Values Scene,tt1274586\n-wSqiksvdD8,2014.0,8,10,2017,Dying of the Light,Was it Worth it? Scene,tt1274586\nDCThJoIT-bY,2014.0,7,10,2017,Dying of the Light,How Will You Kill Me? Scene,tt1274586\nWdzNa6wmtpw,2014.0,5,10,2017,Dying of the Light,Cutting Loose Ends Scene,tt1274586\nroLboEc4M-w,2014.0,6,10,2017,Dying of the Light,He's Made His Choice Scene,tt1274586\ntOcnYAE2i4Q,2014.0,1,10,2017,Dying of the Light,Frontotemporal Dementia Scene,tt1274586\nyLtC-gH6ktw,2014.0,4,10,2017,Dying of the Light,I Got Anxious Scene,tt1274586\nrA69NDoXRhI,2014.0,3,10,2017,Dying of the Light,What's Left of My Time Scene,tt1274586\n9VY3OKScxP4,2014.0,2,10,2017,Dying of the Light,I Resign! Scene,tt1274586\n1PkqpkQQmwg,2016.0,6,10,2017,The Huntsman: Winter's War,Worthy of Each Other Scene,tt2381991\n1m8Ac21hxO4,2016.0,1,10,2017,The Huntsman: Winter's War,Freya's Icy Heart Scene,tt2381991\nQM8StMC7V6Y,2016.0,2,10,2017,The Huntsman: Winter's War,A Wall of Ice Scene,tt2381991\n32iBCneCYcI,2016.0,5,10,2017,The Huntsman: Winter's War,I Never Miss Scene,tt2381991\nizP8mDH8XOc,2016.0,4,10,2017,The Huntsman: Winter's War,The Goblin Scene,tt2381991\nAxhQq_-31FY,2016.0,3,10,2017,The Huntsman: Winter's War,Saved By Sara Scene,tt2381991\n2BaBf4EEO10,2016.0,10,10,2017,The Huntsman: Winter's War,Conquering the Queen Scene,tt2381991\naPdLYN69cfE,2016.0,9,10,2017,The Huntsman: Winter's War,The Stronger Sister Scene,tt2381991\nTZ9xan53wuA,2016.0,8,10,2017,The Huntsman: Winter's War,I've Missed You Scene,tt2381991\nXWAuh7S1zjk,2016.0,7,10,2017,The Huntsman: Winter's War,Kill Him Scene,tt2381991\nFU0HEv8SNrs,2009.0,9,10,2017,Dragonquest,She Has Failed You Scene,tt1353997\nzATNPZTinmM,2009.0,10,10,2017,Dragonquest,Arkadi's Magic Scene,tt1353997\nDflN8U5mO00,2009.0,7,10,2017,Dragonquest,Breathe in the Darkness Scene,tt1353997\n98O6geBet-w,2009.0,6,10,2017,Dragonquest,Rewarding Rigor Scene,tt1353997\nSormU7hbgk0,2009.0,8,10,2017,Dragonquest,My Name is Maxim Scene,tt1353997\nwXzgVOU3Yrs,2009.0,5,10,2017,Dragonquest,The Bathing Beauty Scene,tt1353997\ntMQjzrxE2Kc,2009.0,4,10,2017,Dragonquest,A Medieval Stoner No More Scene,tt1353997\nUjjSZfAe8sE,2009.0,1,10,2017,Dragonquest,Arkadi's Destiny Scene,tt1353997\nMwdekXx-4ls,2009.0,3,10,2017,Dragonquest,Meeting Maxim Scene,tt1353997\nORQ7CGUilMs,2009.0,2,10,2017,Dragonquest,For the Keeper Scene,tt1353997\n6lv7o-rzkWM,2011.0,3,10,2017,Dragon Crusaders,'Tis A Revenant Scene,tt1999141\nZvytnyM6lRY,2011.0,10,10,2017,Dragon Crusaders,Dragon vs. Gargoyle Scene,tt1999141\naiN0_53Rwjg,2011.0,6,10,2017,Dragon Crusaders,Your Time Has Come Scene,tt1999141\nDkpNYjgUlhw,2011.0,7,10,2017,Dragon Crusaders,\"Less Haste, More Explosions Scene\",tt1999141\nukZg66d96_Q,2011.0,9,10,2017,Dragon Crusaders,Dodging the Dragon Scene,tt1999141\nzksgFqKxbVY,2011.0,8,10,2017,Dragon Crusaders,Don't Look Down Scene,tt1999141\nP1R_JOEIMS4,2011.0,2,10,2017,Dragon Crusaders,He's Gone Mad! Scene,tt1999141\n-O7sJe9k8w0,2011.0,1,10,2017,Dragon Crusaders,The Curse of Anathor Scene,tt1999141\nkjMmwtxIRbg,2011.0,5,10,2017,Dragon Crusaders,Maldwyn's Metamorphosis Scene,tt1999141\nZN_59UzKu-8,2011.0,4,10,2017,Dragon Crusaders,Kill Me Scene,tt1999141\n1DGrM6qhZHY,2008.0,2,12,2017,Dark Floors,They Can't See Me Scene,tt0985025\nbdJcCwoJ4KQ,2008.0,1,12,2017,Dark Floors,Elevator to Nowhere Scene,tt0985025\nrKUEBIPe5F8,2008.0,12,12,2017,Dark Floors,Light vs. Darkness Scene,tt0985025\nhMbcMlAVxeg,2008.0,8,12,2017,Dark Floors,Death By Defibrillators Scene,tt0985025\nTlyHBaAJVbk,2008.0,11,12,2017,Dark Floors,Hospital Zombies Scene,tt0985025\nL_0imHGhC3o,2008.0,5,12,2017,Dark Floors,The Terror Is Real Scene,tt0985025\neTepvIyKhIo,2008.0,10,12,2017,Dark Floors,Ghost vs. Psychic Scene,tt0985025\nVl3IiVDwgpY,2008.0,6,12,2017,Dark Floors,Unstoppable Monster Scene,tt0985025\nrGnXd_krGA0,2008.0,9,12,2017,Dark Floors,Death in the Hell Hospital Scene,tt0985025\n68av2-Ti-GU,2008.0,7,12,2017,Dark Floors,Forcible Organ Removal Scene,tt0985025\nCTpAikAZ2aA,2008.0,4,12,2017,Dark Floors,Horror in the Elevator Scene,tt0985025\nmVUQ88T2S6E,2008.0,3,12,2017,Dark Floors,The Shrieking Ghost Scene,tt0985025\nGoDxjaW2if0,2014.0,4,10,2017,Bermuda Tentacles,Nonterrestrial Scene,tt3307726\n-fqOpmu8014,2014.0,3,10,2017,Bermuda Tentacles,Cut the Power! Scene,tt3307726\n5yGE_RpI45U,2014.0,5,10,2017,Bermuda Tentacles,Airplane Graveyard Scene,tt3307726\n_06GrnWiGqI,2014.0,10,10,2017,Bermuda Tentacles,Bombing the Mothership Scene,tt3307726\n-Bxv4jtiR-U,2014.0,9,10,2017,Bermuda Tentacles,Destroy the Hell Out of That Ship Scene,tt3307726\nyRec3myBtsM,2014.0,7,10,2017,Bermuda Tentacles,We're Surrounded by Tentacles Scene,tt3307726\nB1uEaZ1xSaI,2014.0,8,10,2017,Bermuda Tentacles,Authorizing Nuclear Weapons Scene,tt3307726\n81mLKFXLNSs,2014.0,6,10,2017,Bermuda Tentacles,The President is Alive Scene,tt3307726\nhotQs5eawqM,2014.0,1,10,2017,Bermuda Tentacles,Evacuate the President Scene,tt3307726\n9v9MVT2X0_M,2014.0,2,10,2017,Bermuda Tentacles,Sea Monster Slaughter Scene,tt3307726\npMFzy56i7RA,2014.0,6,10,2017,Age of Tomorrow,Fighting for Survival Scene,tt3677466\nJPA1TtBEIbc,2014.0,9,10,2017,Age of Tomorrow,Welcome to Oblivion Scene,tt3677466\n_g79FGuo2GE,2014.0,8,10,2017,Age of Tomorrow,Blast the Hell Out of Everything Scene,tt3677466\nJ66HeAFlMV0,2014.0,7,10,2017,Age of Tomorrow,Mankind's Final Hope Scene,tt3677466\n1reD-PYDpvk,2014.0,10,10,2017,Age of Tomorrow,It's Not Over Yet Scene,tt3677466\nQAJTgMZpigM,2014.0,5,10,2017,Age of Tomorrow,Vengeance for Vaporization Scene,tt3677466\n26nqXIUqVhE,2014.0,3,10,2017,Age of Tomorrow,Wheeler Through Wormhole Scene,tt3677466\notsIUxrcoXQ,2014.0,2,10,2017,Age of Tomorrow,It's an Invasion! Scene,tt3677466\nDUU7WFTBgBM,2014.0,1,10,2017,Age of Tomorrow,Hundreds of Bogeys Scene,tt3677466\nM9p2ix0s-D0,2014.0,4,10,2017,Age of Tomorrow,Alien Ambush Scene,tt3677466\ncP63R4QwDFI,2015.0,6,10,2017,Last Knights,The Siege Begins Scene,tt2493486\nTEvVc1vsO2U,2015.0,7,10,2017,Last Knights,You Fought Well Scene,tt2493486\nLE0TUN0Po7I,2015.0,10,10,2017,Last Knights,Raiden's Sentence Scene,tt2493486\nBdZN3EJVjo8,2015.0,9,10,2017,Last Knights,The Death of Geza Mott Scene,tt2493486\nbN1E4vf9FlM,2015.0,8,10,2017,Last Knights,Raiden Fights Ito Scene,tt2493486\nqY7EPDCU5hc,2015.0,5,10,2017,Last Knights,Plotting the Attack Scene,tt2493486\nafBwkWnwlD0,2015.0,3,10,2017,Last Knights,Bartok's Confession Scene,tt2493486\nFcqJ2a3Dazs,2015.0,1,10,2017,Last Knights,The Heir to My Spirit Scene,tt2493486\n94J4AzRTLE8,2015.0,4,10,2017,Last Knights,The Wounds of Honor Scene,tt2493486\njJvvT_Sb0jo,2015.0,2,10,2017,Last Knights,You Are Irrelevant Scene,tt2493486\ntIy7sQGKtJA,2013.0,3,10,2017,Jack the Giant Killer,\"Come, My Destroyer Scene\",tt2552498\nIMr_irerhRE,2013.0,2,10,2017,Jack the Giant Killer,A Narrow Escape Scene,tt2552498\n6DmSVYtMoyQ,2013.0,10,10,2017,Jack the Giant Killer,Jack Faces the Beast Scene,tt2552498\n1J-U8tLUlsg,2013.0,1,10,2017,Jack the Giant Killer,Up the Beanstalk Scene,tt2552498\nkKUsYDTykUQ,2013.0,9,10,2017,Jack the Giant Killer,Monster vs. Motorcycle Scene,tt2552498\nSd4y4XC-qvw,2013.0,8,10,2017,Jack the Giant Killer,I Control Them Now Scene,tt2552498\nMZIPOu6WeGg,2013.0,5,10,2017,Jack the Giant Killer,We Have a Major Situation Here Scene,tt2552498\nFTGtcjSMjy0,2013.0,4,10,2017,Jack the Giant Killer,Who Does She Think She Is? Scene,tt2552498\nE-NXKcnsDJ8,2013.0,7,10,2017,Jack the Giant Killer,The Crashing Castle Scene,tt2552498\n7EmNSHq1mh0,2013.0,6,10,2017,Jack the Giant Killer,\"And Now, the Descent Scene\",tt2552498\nuHd2oehKwuA,2015.0,4,10,2017,Hansel vs. Gretel,I'm Gonna Eat You All Up Scene,tt4145350\n_a9IqPr1kdg,2015.0,6,10,2017,Hansel vs. Gretel,A Nice Little Treat Scene,tt4145350\n8QDZKTF75Zs,2015.0,2,10,2017,Hansel vs. Gretel,Cemetery Shootout Scene,tt4145350\nDUiEMltmojE,2015.0,5,10,2017,Hansel vs. Gretel,You've Been a Bad Boy Scene,tt4145350\nheoNF-PyZ8Y,2015.0,1,10,2017,Hansel vs. Gretel,I Want the Little Girls Scene,tt4145350\n_j0onVyO18I,2015.0,3,10,2017,Hansel vs. Gretel,I Taste Killer On You Scene,tt4145350\n1m_aN2-vauc,2015.0,9,10,2017,Hansel vs. Gretel,\"Willy is Dead, Darling Scene\",tt4145350\nTt7LWRxtRcE,2015.0,8,10,2017,Hansel vs. Gretel,I am a Queen! Scene,tt4145350\nMw8bNmfoC48,2015.0,10,10,2017,Hansel vs. Gretel,This Ends Now Scene,tt4145350\n9xp2F5kPbRQ,2015.0,7,10,2017,Hansel vs. Gretel,Grandma's Gruesome Goodbye Scene,tt4145350\noY1tp2HG06w,2013.0,9,10,2017,Hansel & Gretel,We'll Eat Youth Scene,tt1428538\n-whQdRI7wUQ,2013.0,7,10,2017,Hansel & Gretel,Where Are My Kids? Scene,tt1428538\nTXAJapM6E-U,2013.0,1,10,2017,Hansel & Gretel,Round and Round We Go Scene,tt1428538\n31sP1-4GgsA,2013.0,8,10,2017,Hansel & Gretel,Who Was That Guy Anyway? Scene,tt1428538\ne6B-T4KYIFQ,2013.0,3,10,2017,Hansel & Gretel,\"We Kill Them, All of Them Scene\",tt1428538\nc7-u-fyUSkM,2013.0,6,10,2017,Hansel & Gretel,Out Through the Oven Scene,tt1428538\novFDrgui4a0,2013.0,5,10,2017,Hansel & Gretel,Trapped with a Demon Scene,tt1428538\n9_LX8b0kmiI,2013.0,2,10,2017,Hansel & Gretel,Dig In Scene,tt1428538\nipb0Bfg_FTs,2013.0,10,10,2017,Hansel & Gretel,What They Do To Witches Scene,tt1428538\nJyQczb2eCf8,2013.0,4,10,2017,Hansel & Gretel,You're a Failure Scene,tt1428538\nOt5T_oe47Xs,2011.0,1,10,2017,3 Musketeers,Undercover Assault Scene,tt1509767\nSCeW4Y-XPfo,2011.0,10,10,2017,3 Musketeers,Fatal Fencing Scene,tt1509767\nCShX9zc_Zgg,2011.0,9,10,2017,3 Musketeers,I'm Gonna CTL ALT DEL Your Ass! Scene,tt1509767\n-wHSMnaUzWY,2011.0,6,10,2017,3 Musketeers,Confronted by the Cardinal Scene,tt1509767\n5Wpy4Luh_uY,2011.0,5,10,2017,3 Musketeers,Never Get in the Middle of a Chick Fight Scene,tt1509767\n-GRPXrEaqn4,2011.0,8,10,2017,3 Musketeers,Dodging the Drones Scene,tt1509767\nbhEMe--tKlY,2011.0,7,10,2017,3 Musketeers,Where are the Musketeers? Scene,tt1509767\nMzvFEBBZuwA,2011.0,4,10,2017,3 Musketeers,D'Artangan Questions Athos Scene,tt1509767\nsL0fO-3JquE,2011.0,3,10,2017,3 Musketeers,Three Days to Stop WWIII Scene,tt1509767\nPdKfp8IWgGI,2011.0,2,10,2017,3 Musketeers,Escaping North Korea Scene,tt1509767\n1O9Sgq0FK4c,2010.0,1,10,2017,The Last Circus,Why Are You a Clown? Scene,tt1572491\nWQwgtpaIVkE,2010.0,5,10,2017,The Last Circus,The Hunting Dog Scene,tt1572491\nuMx7RJLn08w,2010.0,2,10,2017,The Last Circus,I Decide What's Funny Scene,tt1572491\nEm-hPjFyY-w,2010.0,9,10,2017,The Last Circus,I'm Mad About You Scene,tt1572491\ntNnxJK7L3N0,2010.0,8,10,2017,The Last Circus,The Ballad of the Sad Trumpet Scene,tt1572491\n-cPDC0me1iM,2010.0,10,10,2017,The Last Circus,The Funny Clown and The Sad Clown Scene,tt1572491\nSHIG5bfYTs0,2010.0,7,10,2017,The Last Circus,The Diner Scene,tt1572491\nI9XmewMPVdo,2010.0,6,10,2017,The Last Circus,The Angel of Death Scene,tt1572491\niyVCFSW_W1w,2010.0,3,10,2017,The Last Circus,Screwing Her Senseless Scene,tt1572491\n0djt409Dqps,2010.0,4,10,2017,The Last Circus,Javier Attacks Sergio Scene,tt1572491\nTEtlsYtj5-s,2008.0,2,10,2017,Splinter,Flat Tire Scene,tt1031280\nMki2fo1Ou-s,2008.0,7,10,2017,Splinter,A Severed Hand Scene,tt1031280\nTvQmXzgtOeQ,2008.0,9,10,2017,Splinter,The Fire! Scene,tt1031280\nr0MABEixxRM,2008.0,10,10,2017,Splinter,Get Out of Here Scene,tt1031280\neQ449GDHSA8,2008.0,8,10,2017,Splinter,I'm Going to Have to Cut It Scene,tt1031280\n8QcReRkM8wQ,2008.0,6,10,2017,Splinter,Reaching the Radio Scene,tt1031280\nXc2OmGesDgo,2008.0,1,10,2017,Splinter,Get Out of the Car! Scene,tt1031280\noe59hoX10vU,2008.0,3,10,2017,Splinter,A Man With Spikes Scene,tt1031280\n1GHCAqKWA58,2008.0,4,10,2017,Splinter,It's Not Her Anymore Scene,tt1031280\nm3UDahZjiK4,2008.0,5,10,2017,Splinter,There's Something Out There! Scene,tt1031280\n9T60vF2EZNg,2014.0,3,10,2017,Mischief Night,Daphne's Going to Be Late Scene,tt2872810\nGr18osLHHsE,2014.0,9,10,2017,Mischief Night,Halloween Disembowelment Scene,tt2872810\nGV_pMBUT-24,2014.0,10,10,2017,Mischief Night,A Killer Inside Both of Us Scene,tt2872810\nBg17-zWqpkU,2014.0,8,10,2017,Mischief Night,I Want It to Hurt Scene,tt2872810\nM4YhJdAsgdU,2014.0,7,10,2017,Mischief Night,The Angry God Scene,tt2872810\n5YbynyAXAL8,2014.0,6,10,2017,Mischief Night,You Probably Can't Get It Up Scene,tt2872810\nEeNJbbrT8e8,2014.0,5,10,2017,Mischief Night,I Don't Want to Die a Virgin Scene,tt2872810\nuj0x3TbEE7g,2014.0,4,10,2017,Mischief Night,The Killer vs. Glassware Scene,tt2872810\nFzlxL1f-E54,2014.0,1,10,2017,Mischief Night,Are You Alone Here Tonight? Scene,tt2872810\n2nJCpOeT9x4,2014.0,2,10,2017,Mischief Night,Tempting the Killer Scene,tt2872810\nPSDHvN95YgA,2013.0,10,10,2017,Killer Holiday,Catfight to the Death Scene,tt1982735\njHw_p75_LfU,2013.0,9,10,2017,Killer Holiday,Seducing the Spider Scene,tt1982735\nPKG3eCpwYBM,2013.0,7,10,2017,Killer Holiday,Death in the Bottle Maze Scene,tt1982735\nJ3J92iSdERQ,2013.0,6,10,2017,Killer Holiday,TV Will Kill You Scene,tt1982735\ndACX3WiPVU4,2013.0,8,10,2017,Killer Holiday,The Spider's Mania Scene,tt1982735\ng1R5DmGvMCY,2013.0,5,10,2017,Killer Holiday,Murder and a Hot Girl Scene,tt1982735\nmz4JJWjy-Uk,2013.0,3,10,2017,Killer Holiday,Bonfire Lap Dance Scene,tt1982735\nIzFSwZqBjFM,2013.0,1,10,2017,Killer Holiday,Welcome to Muerto Ride Land Scene,tt1982735\n0-vcQg70AX0,2013.0,4,10,2017,Killer Holiday,Funhouse Mirror Kill Scene,tt1982735\nSWrq6xYYIbs,2013.0,2,10,2017,Killer Holiday,Horror in the Haunted House Scene,tt1982735\n_41AKvC_uGk,2002.0,10,11,2017,Deathwatch,Eaten Alive by Rats Scene,tt0286306\n03jGqiF-0Gg,2002.0,11,11,2017,Deathwatch,The Corpse Pit Scene,tt0286306\nuXG9v1_X8jc,2002.0,9,11,2017,Deathwatch,Living Barbed Wire Scene,tt0286306\nS-M0BOzttdg,2002.0,8,11,2017,Deathwatch,Slaying a Superior Officer Scene,tt0286306\nUmRkYrYgnN4,2002.0,6,11,2017,Deathwatch,The Death Spirit Scene,tt0286306\nev-4cz3hlr0,2002.0,7,11,2017,Deathwatch,Crucifixion Scene,tt0286306\nAJQd_pt3-pk,2002.0,4,11,2017,Deathwatch,Phantom War Scene,tt0286306\nX4JETt9w9Zw,2002.0,5,11,2017,Deathwatch,Red Mist of Death Scene,tt0286306\n6rDCHgWk7dI,2002.0,3,11,2017,Deathwatch,A Soldier Gets No Private Time Scene,tt0286306\ndCyrhdW9e8M,2002.0,1,11,2017,Deathwatch,The Chaos of War Scene,tt0286306\nLmK0bMGzHpU,2002.0,2,11,2017,Deathwatch,The Mudman Scene,tt0286306\nxgA6VKUVRWY,2008.0,10,10,2017,Autopsy,Tree of Organs Scene,tt0443435\nrAiLoLA4cyc,2008.0,8,10,2017,Autopsy,A Pile of Legs Scene,tt0443435\nqnD5qOyIonw,2008.0,9,10,2017,Autopsy,Cranial Intrusion Scene,tt0443435\nRMaNfwSn-pw,2008.0,1,10,2017,Autopsy,Car Crash Victim Scene,tt0443435\nQGLQ6YvCo3A,2008.0,7,10,2017,Autopsy,Human Chop Shop Scene,tt0443435\n7LraDj4Pjgk,2008.0,6,10,2017,Autopsy,Spinal Tap Scene,tt0443435\nfcAhSCTiJm4,2008.0,5,10,2017,Autopsy,Drugged Up Scene,tt0443435\nLrsnIyCjvB8,2008.0,2,10,2017,Autopsy,Glass in the Stomach Scene,tt0443435\nIWmzBLX4j8s,2008.0,4,10,2017,Autopsy,Demented Doctor Scene,tt0443435\npLra48c-SuA,2008.0,3,10,2017,Autopsy,The Crazed Patient Scene,tt0443435\nKAT5h_fimTM,2014.0,1,10,2017,Apocalypse Pompeii,Volcanic Destruction Scene,tt3384904\nNhtvtnrHon8,2014.0,4,10,2017,Apocalypse Pompeii,Stealing a Ride Scene,tt3384904\nIT236O8f-J8,2014.0,10,10,2017,Apocalypse Pompeii,A Daring Rescue Scene,tt3384904\n-v_2hFPseDg,2014.0,8,10,2017,Apocalypse Pompeii,Downed by Volcanic Bombs Scene,tt3384904\nyWu4GUFpwWo,2014.0,5,10,2017,Apocalypse Pompeii,Outrunning the Mudslide Scene,tt3384904\nuB-53DTWD3k,2014.0,9,10,2017,Apocalypse Pompeii,The Unstoppable Flood Scene,tt3384904\nboGgXcQIe-8,2014.0,3,10,2017,Apocalypse Pompeii,The Heat Surge Scene,tt3384904\nDzqzlpAo9s4,2014.0,2,10,2017,Apocalypse Pompeii,Burned and Buried Scene,tt3384904\nk3KR3Wz29FY,2014.0,6,10,2017,Apocalypse Pompeii,Whose Got the Biggest Cojones Scene,tt3384904\na_DO8nd7FeA,2014.0,7,10,2017,Apocalypse Pompeii,Saved by Science Scene,tt3384904\nZBvJyUTIU0k,2014.0,10,10,2017,Jessabelle,It's  Scene,tt2300975\nvnL8uiqp6_k,2014.0,9,10,2017,Jessabelle,You're Dead Scene,tt2300975\n4V4jhMSJRW8,2014.0,6,10,2017,Jessabelle,Grave in the Bayou Scene,tt2300975\nWfAp-jZV5Bo,2014.0,5,10,2017,Jessabelle,Demon in the Mirror Scene,tt2300975\neDPbu2vNrWk,2014.0,8,10,2017,Jessabelle,Attacked by the Ghost Scene,tt2300975\n4QYYeDp44H8,2014.0,7,10,2017,Jessabelle,Exhuming the Body Scene,tt2300975\nv3bWb5qZMu8,2014.0,3,10,2017,Jessabelle,Ghost in the Bathtub Scene,tt2300975\nnudL_t9u78o,2014.0,2,10,2017,Jessabelle,Bloody Nightmare Scene,tt2300975\nEwpzngfnvcc,2014.0,4,10,2017,Jessabelle,Burning the Tape Scene,tt2300975\n6Tax5ajZYsY,2014.0,1,10,2017,Jessabelle,The Tarot Tape Scene,tt2300975\nYDkE97uXjRo,2009.0,1,11,2017,Dread,The Axe-Murderer Scene,tt1331307\n6w5n1TfIFjk,2009.0,11,11,2017,Dread,The Study Concluded Scene,tt1331307\n83Lfw7BxsQE,2009.0,6,11,2017,Dread,\"You Are Sexy, You Know Scene\",tt1331307\nWGxfP216OFI,2009.0,5,11,2017,Dread,What's Wrong With Your Face? Scene,tt1331307\nZPjREKxiNsQ,2009.0,4,11,2017,Dread,The Sole Survivor Scene,tt1331307\nyuQipNK_BiQ,2009.0,3,11,2017,Dread,Why I'm a Vegetarian Scene,tt1331307\nnVvMBs0TFWA,2009.0,9,11,2017,Dread,\"Rotten, Maggoty Meat Scene\",tt1331307\niLFMRsi07_I,2009.0,10,11,2017,Dread,Two Victims for the Price of One Scene,tt1331307\nfRhJPuDCXRk,2009.0,2,11,2017,Dread,Fear Test Subjects Scene,tt1331307\nxR6jSh2HrAA,2009.0,7,11,2017,Dread,Fear of Deafness Scene,tt1331307\nWxIgfDZXS4k,2009.0,8,11,2017,Dread,Bleach Bath Scene,tt1331307\nSBIKhBgxq6M,2007.0,10,10,2017,Shrooms,Can You Help Me? Scene,tt0492486\n99kt5BrTa4Y,2007.0,1,10,2017,Shrooms,The Indigenous People Scene,tt0492486\nVIxumCmygzw,2007.0,4,10,2017,Shrooms,This is Just a Trip Scene,tt0492486\nE7AA7Qv9LkM,2007.0,8,10,2017,Shrooms,A Permanent Rest Scene,tt0492486\nc2v3ZXKLzh8,2007.0,6,10,2017,Shrooms,The Killer in the River Scene,tt0492486\nX2aVRBuYsNI,2007.0,2,10,2017,Shrooms,A Talking Cow Scene,tt0492486\njS-7DpkGT_E,2007.0,7,10,2017,Shrooms,Only One Escape Scene,tt0492486\nuwkMYWXtFu0,2007.0,9,10,2017,Shrooms,The Killer Within Scene,tt0492486\n9RpdDbHL550,2007.0,5,10,2017,Shrooms,The Figure in the Woods Scene,tt0492486\nnry9GG4Z0CY,2007.0,3,10,2017,Shrooms,Soft and Wet Scene,tt0492486\nSV6R0ym_s1M,2009.0,10,10,2017,The Land That Time Forgot,Not Without You Scene,tt0073260\nBmd8v7RypQk,2009.0,8,10,2017,The Land That Time Forgot,It's Gonna Take a Lot of Digging Scene,tt0073260\nm0FsyBlZtkk,2009.0,9,10,2017,The Land That Time Forgot,One Man to Stop a Dinosaur Scene,tt0073260\nKngGYZgu02o,2009.0,7,10,2017,The Land That Time Forgot,Bombing the T-Rex Scene,tt0073260\naPDfc08u_s8,2009.0,5,10,2017,The Land That Time Forgot,A Way to Escape Scene,tt0073260\nqFvJloqBYTQ,2009.0,6,10,2017,The Land That Time Forgot,Distilling Fuel Scene,tt0073260\nbwH_nxsCKp8,2009.0,3,10,2017,The Land That Time Forgot,The Devil's Triangle Scene,tt0073260\nrdCzBg9Xw8A,2009.0,2,10,2017,The Land That Time Forgot,What Is This Place? Scene,tt0073260\nCRPf4U_MRVw,2009.0,4,10,2017,The Land That Time Forgot,Dinosaur Distraction Scene,tt0073260\naPcCjI--Cz4,2009.0,1,10,2017,The Land That Time Forgot,Dead in the Water Scene,tt0073260\nTXLZrVcUcq4,2012.0,4,10,2017,American Warships,\"Not Koreans, Aliens Scene\",tt2175927\nGVzyzXZuzOU,2012.0,6,10,2017,American Warships,Here Comes the Cavalry Scene,tt2175927\nr2C-3xQskdg,2012.0,3,10,2017,American Warships,The Alien Control Room Scene,tt2175927\nKlvWPWFYvo0,2012.0,8,10,2017,American Warships,Captain's Kiss Scene,tt2175927\n9qwsfjnC0kM,2012.0,7,10,2017,American Warships,Not Gonna Sink My Battleship Scene,tt2175927\nHCtR23MGwn0,2012.0,10,10,2017,American Warships,Alien Awakening Scene,tt2175927\n-QdBG7PfFeE,2012.0,9,10,2017,American Warships,The Mothership Scene,tt2175927\nup79gU3V8sk,2012.0,2,10,2017,American Warships,Like Nothing I've Ever Seen Scene,tt2175927\ngsVcJ5gGsE0,2012.0,5,10,2017,American Warships,The Invisible Battleship Scene,tt2175927\nOe4jP8WV9lQ,2012.0,1,10,2017,American Warships,We Are Feet Wet Scene,tt2175927\npkwGEagSVT0,2015.0,10,10,2017,Jem and the Holograms,I'm Still Here Scene,tt3614530\n6AWMlRhBN5U,2015.0,6,10,2017,Jem and the Holograms,Going Solo Scene,tt3614530\nSV_eLd8wm70,2015.0,9,10,2017,Jem and the Holograms,Rio's Ready Scene,tt3614530\nybRy055wBsw,2015.0,7,10,2017,Jem and the Holograms,The Way I Was Scene,tt3614530\nhKuh_h2nzN8,2015.0,5,10,2017,Jem and the Holograms,Youngblood Scene,tt3614530\n9I-FCJRX2Cc,2015.0,8,10,2017,Jem and the Holograms,Dad's Final Message Scene,tt3614530\n2oFuSvs-WU0,2015.0,1,10,2017,Jem and the Holograms,You're Not Alone Scene,tt3614530\n_t1yxHW97xE,2015.0,3,10,2017,Jem and the Holograms,We Got Heart Scene,tt3614530\nqEb51O12XFw,2015.0,4,10,2017,Jem and the Holograms,Rules For the Red Carpet Scene,tt3614530\nBwWzZtG_6fA,2015.0,2,10,2017,Jem and the Holograms,Never Fear the Unknown Scene,tt3614530\nPF2hIgWupGU,2012.0,6,10,2017,The Frozen Ground,Shock at the Strip Club Scene,tt2005374\nizLhF-Oodrg,2012.0,5,10,2017,The Frozen Ground,On the Run Scene,tt2005374\nFLjWVccRPOA,2012.0,8,10,2017,The Frozen Ground,From Bad to Worse Scene,tt2005374\n3oqt6V9aJIM,2012.0,7,10,2017,The Frozen Ground,The Interrogation Scene,tt2005374\nvZHS1nXJaGU,2012.0,4,10,2017,The Frozen Ground,Hunting Her Scene,tt2005374\nkcniTaNYikg,2012.0,1,10,2017,The Frozen Ground,Chained Scene,tt2005374\npPCq9SIyHqE,2012.0,9,10,2017,The Frozen Ground,He's Coming Scene,tt2005374\ny87LPJHRfOI,2012.0,2,10,2017,The Frozen Ground,The Lucky One Scene,tt2005374\n8ILiVgno0_0,2012.0,3,10,2017,The Frozen Ground,Pole Dancing Scene,tt2005374\nF6E2ojebPlA,2012.0,10,10,2017,The Frozen Ground,The Truth Comes Out Scene,tt2005374\nybFMkEvDx60,2008.0,11,11,2017,Return to Sleepaway Camp,Angela's Back Scene,tt0382943\ndDX_fyIlXXg,2008.0,9,11,2017,Return to Sleepaway Camp,A Bed of Nails Scene,tt0382943\nJVo7oslbnjA,2008.0,10,11,2017,Return to Sleepaway Camp,A Hanging in the Rec Hall Scene,tt0382943\nyK9Y-rD7XGY,2008.0,8,11,2017,Return to Sleepaway Camp,Some Major Wood Scene,tt0382943\nGLBlIYIlND4,2008.0,7,11,2017,Return to Sleepaway Camp,Late Night Castration Scene,tt0382943\n3oFSNCmEZyE,2008.0,5,11,2017,Return to Sleepaway Camp,I Hate You All Scene,tt0382943\nQlZ28Do9WmY,2008.0,6,11,2017,Return to Sleepaway Camp,Rats in a Cage Scene,tt0382943\n4o1O6Pt7zr8,2008.0,1,11,2017,Return to Sleepaway Camp,Are You Insane? Scene,tt0382943\n5DaiI6epRCU,2008.0,3,11,2017,Return to Sleepaway Camp,Deep Fryer Death Scene,tt0382943\n0tVy79pRaBs,2008.0,2,11,2017,Return to Sleepaway Camp,Frogs Are My Friends Scene,tt0382943\n1asspYdV3as,2008.0,4,11,2017,Return to Sleepaway Camp,Drugs Can Kill Scene,tt0382943\nPXokYGWGASA,2011.0,7,10,2017,Apartment 143,Tell Me About Your Wife Scene,tt1757742\n8lnd2BulFkU,2011.0,8,10,2017,Apartment 143,Don't Panic Scene,tt1757742\n0vuS4vo4c94,2011.0,9,10,2017,Apartment 143,Keep Filming Scene,tt1757742\nxV0HfZSFsiE,2011.0,6,10,2017,Apartment 143,Possessed and Angry Scene,tt1757742\nT4ZusOrLSoY,2011.0,10,10,2017,Apartment 143,Caught on Camera Scene,tt1757742\nJkW-iBe_WyQ,2011.0,5,10,2017,Apartment 143,That's My Daughter Scene,tt1757742\nUZVhwFUQwcs,2011.0,2,10,2017,Apartment 143,A Ghost is Calling Scene,tt1757742\n6OYZi5KUFzg,2011.0,1,10,2017,Apartment 143,The Sound in the Walls Scene,tt1757742\nPPl4KzH-bGc,2011.0,4,10,2017,Apartment 143,What the Hell Was That? Scene,tt1757742\no33ZCLXEHIU,2011.0,3,10,2017,Apartment 143,Tell Me You Got That Scene,tt1757742\nijaNlufpcMs,2013.0,1,10,2017,Attila,The Dark Power of the Staff Scene,tt2474438\nJzr8lXSNRA8,2013.0,2,10,2017,Attila,Death Is a Dream Scene,tt2474438\nGJwsVhQHggU,2013.0,4,10,2017,Attila,\"If We Can't Handle It, No One Can Scene\",tt2474438\nmCfKPXX19Gw,2013.0,3,10,2017,Attila,Nomad Rises Scene,tt2474438\nf8P51JbIp9g,2013.0,10,10,2017,Attila,Father vs. Son Scene,tt2474438\nC-uCzmnXn-g,2013.0,9,10,2017,Attila,I Am the Demon That Torments You Scene,tt2474438\nz542q4dYk-0,2013.0,6,10,2017,Attila,An Unstoppable Force Scene,tt2474438\n7S3biRDwbAc,2013.0,8,10,2017,Attila,Kill the Hostile Scene,tt2474438\nU714emx9EJQ,2013.0,7,10,2017,Attila,Officers Down Scene,tt2474438\nrbYJb_i2czc,2013.0,5,10,2017,Attila,Wanna Bang? Scene,tt2474438\nnW92suQFQ5c,2012.0,10,10,2017,The Cold Light of Day,Will is Cornered Scene,tt1366365\nBefYI15la84,2012.0,8,10,2017,The Cold Light of Day,Battle for the Briefcase Scene,tt1366365\n8gLOoFW3ke0,2012.0,9,10,2017,The Cold Light of Day,Chase Through Madrid Scene,tt1366365\nBxIcBWi4ETk,2012.0,5,10,2017,The Cold Light of Day,Finding a Way Down Scene,tt1366365\nk_pB_zV6kVw,2012.0,7,10,2017,The Cold Light of Day,The Deal Scene,tt1366365\nsVZLKLWFDYs,2012.0,6,10,2017,The Cold Light of Day,He Was My Father Too Scene,tt1366365\nFAnP3FAu5sU,2012.0,4,10,2017,The Cold Light of Day,Caldera's Office Scene,tt1366365\n4Gs6pBwn5w8,2012.0,3,10,2017,The Cold Light of Day,Do You Want to Save Your Family? Scene,tt1366365\nSqQmfQfAzzg,2012.0,2,10,2017,The Cold Light of Day,Did You Set Me Up? Scene,tt1366365\np0vZhGqM_Rs,2012.0,1,10,2017,The Cold Light of Day,A Special Agent Scene,tt1366365\nBK5ad9GV4NQ,2013.0,10,10,2017,Enemies Closer,You Can Always Say Almost Scene,tt2395199\n7j5VT6oDcVw,2013.0,9,10,2017,Enemies Closer,Playing in Trees Scene,tt2395199\nGy9Wan4jskg,2013.0,7,10,2017,Enemies Closer,Fight in the Woods Scene,tt2395199\njmwfCk8MBhk,2013.0,6,10,2017,Enemies Closer,Kiss My Geriatric Ass Scene,tt2395199\nP8RUrH3UmPY,2013.0,5,10,2017,Enemies Closer,Showdown at the House Scene,tt2395199\n-a4N0JuAW8A,2013.0,8,10,2017,Enemies Closer,On the Dock Scene,tt2395199\nBSaGnAC8boM,2013.0,4,10,2017,Enemies Closer,Work Together Scene,tt2395199\nOZJUtFROusE,2013.0,3,10,2017,Enemies Closer,Caught Him Night Fishing Scene,tt2395199\n96CVkRhfoKU,2013.0,2,10,2017,Enemies Closer,I Had To Protect My Team Scene,tt2395199\nbJbTcRnSFAA,2013.0,1,10,2017,Enemies Closer,The Guy With the Gun Scene,tt2395199\nE1k9eRHXFX8,2008.0,8,10,2017,Allan Quatermain and the Temple of Skulls,The Claw of Vengeance Scene,tt1219671\n2_W3saVv0qw,2014.0,6,10,2017,Repentance,Broken Glass Torture Scene,tt2012665\nBLejeXcxLdg,2014.0,7,10,2017,Repentance,You're Guilty Scene,tt2012665\n2Dlgg0Yqsd0,2014.0,9,10,2017,Repentance,You Are All About to Die Scene,tt2012665\nkgs8NvXfI9c,2014.0,5,10,2017,Repentance,I'm Not Crazy Scene,tt2012665\nW09CmZtBFRQ,2014.0,8,10,2017,Repentance,Captured Scene,tt2012665\nIoRpcIVgtUc,2014.0,10,10,2017,Repentance,We're Spiritually Dead Scene,tt2012665\np6AK2S2N6hA,2014.0,1,10,2017,Repentance,I Ain't Gonna Tell Your Secret Scene,tt2012665\ndY9zZS6BNkU,2014.0,3,10,2017,Repentance,I Can't Let You Go Scene,tt2012665\nF1ZPE23KT_4,2014.0,4,10,2017,Repentance,She Says You Can't Leave Scene,tt2012665\n2cgMKpAGSQw,2014.0,2,10,2017,Repentance,I Need Your Mind to Be Clear Scene,tt2012665\ngwEoo0r_8EY,2013.0,9,10,2017,Throwdown,I'm Not Your Property Scene,tt3036676\nBjPUO_4HJeo,2013.0,4,10,2017,Throwdown,Cross-Examination Scene,tt3036676\nG_Rd3TcODj4,2013.0,10,10,2017,Throwdown,Revenge Scene,tt3036676\n4OEhuma-rrY,2013.0,6,10,2017,Throwdown,No One Withdraws Scene,tt3036676\n0ekAvNp_F9c,2013.0,7,10,2017,Throwdown,I'm a Goddamn Winner Scene,tt3036676\nosLhRtHZ4Gw,2013.0,5,10,2017,Throwdown,No One Can Protect You Scene,tt3036676\n6oUzjN26DoM,2013.0,8,10,2017,Throwdown,Defending the Guilty Scene,tt3036676\nrlaRlCFXUqk,2013.0,3,10,2017,Throwdown,Represent Me or Die Scene,tt3036676\nTTOlRTmEdoY,2013.0,1,10,2017,Throwdown,Courtroom Tragedy Scene,tt3036676\nRdG9KwpjxA0,2013.0,2,10,2017,Throwdown,Sex Slaves Scene,tt3036676\nQUtc_tjyrsI,2008.0,7,10,2017,Allan Quatermain and the Temple of Skulls,I'm Not For Sale Scene,tt1219671\n7taghufoJY4,2008.0,5,10,2017,Allan Quatermain and the Temple of Skulls,Captured by the Natives Scene,tt1219671\nZdNa-FoYEo8,2008.0,4,10,2017,Allan Quatermain and the Temple of Skulls,The Look of Lust Scene,tt1219671\nAW8Vxng7dDY,2008.0,10,10,2017,Allan Quatermain and the Temple of Skulls,Earthquake Escape Scene,tt1219671\ndh6yBmJDLpQ,2008.0,9,10,2017,Allan Quatermain and the Temple of Skulls,Anna Lives Scene,tt1219671\n1gjaw2BNg7U,2008.0,3,10,2017,Allan Quatermain and the Temple of Skulls,Attack of the Swarm! Scene,tt1219671\n1rowOWuYacM,2008.0,1,10,2017,Allan Quatermain and the Temple of Skulls,A Liar and a Thief Scene,tt1219671\nXf2ZsLFeD24,2008.0,2,10,2017,Allan Quatermain and the Temple of Skulls,Fine Time to Bathe Scene,tt1219671\nfZ99iSkvkec,2008.0,6,10,2017,Allan Quatermain and the Temple of Skulls,Lose Your Head Scene,tt1219671\nA_n2FjVMiVY,2015.0,8,10,2017,Child 44,Train Car Attack Scene,tt1014763\n1q-FL1Wd0EE,2015.0,4,10,2017,Child 44,Are You A Spy? Scene,tt1014763\neJPXQfvokV8,2015.0,10,10,2017,Child 44,A Fight for Survival Scene,tt1014763\n5DWrrqP_HNk,2015.0,9,10,2017,Child 44,We're Both Killers Scene,tt1014763\nv7QfNBfZT3w,2015.0,7,10,2017,Child 44,Blood On Our Hands Scene,tt1014763\nrTlfnymyrrQ,2015.0,5,10,2017,Child 44,Where Are They Taking Us? Scene,tt1014763\ni7Jg_6-fYF8,2015.0,2,10,2017,Child 44,Making An Example Scene,tt1014763\n8zMlPNdRRLY,2015.0,6,10,2017,Child 44,Another Victim is Found Scene,tt1014763\n68CXG6t1mxU,2015.0,3,10,2017,Child 44,No Murder in Paradise Scene,tt1014763\nhCN8UAdH55A,2015.0,1,10,2017,Child 44,The Battle of Berlin Scene,tt1014763\nFJStfF_7w9k,2014.0,7,10,2017,Reasonable Doubt,Jimmy Attacked Scene,tt2304953\nRgM_mn4oP04,2014.0,8,10,2017,Reasonable Doubt,He's Trying to Kill Me Scene,tt2304953\nNawsWUndVQQ,2014.0,9,10,2017,Reasonable Doubt,You Don't Know My Pain Scene,tt2304953\n8fBQzlJdubE,2014.0,6,10,2017,Reasonable Doubt,I Know What You Did Scene,tt2304953\nELAfnYfUaAI,2014.0,10,10,2017,Reasonable Doubt,Who Dies First? Scene,tt2304953\nxk9PtV1-Dl4,2014.0,1,10,2017,Reasonable Doubt,Hit and Run Scene,tt2304953\nhFZGh14H_J4,2014.0,5,10,2017,Reasonable Doubt,Deadly Suspicions Scene,tt2304953\n3hcHRAFPBVY,2014.0,3,10,2017,Reasonable Doubt,Enough for a Conviction Scene,tt2304953\nx17F1j6spHw,2014.0,2,10,2017,Reasonable Doubt,The Suspected Killer Scene,tt2304953\nBtvvvXRUks8,2014.0,4,10,2017,Reasonable Doubt,The Caller's Identity Scene,tt2304953\ne1oUspIUHEw,2012.0,10,10,2017,For the Love of Money,The Road Less Traveled Scene,tt1730294\n_J6ipSZnD2c,2012.0,7,10,2017,For the Love of Money,The Straight and Narrow Path Scene,tt1730294\nZoYZl8-VEGU,2012.0,9,10,2017,For the Love of Money,They Kidnapped Yoni Scene,tt1730294\nHv3mUXCo46M,2012.0,4,10,2017,For the Love of Money,I Had No Choice Scene,tt1730294\nFY8vuvzZHl4,2012.0,6,10,2017,For the Love of Money,We'd Like Some Diamonds Scene,tt1730294\nwmKfHN7NxeA,2012.0,5,10,2017,For the Love of Money,Opportunity's Knocking Scene,tt1730294\nDEeqxarMzg0,2012.0,8,10,2017,For the Love of Money,Red is Dead Scene,tt1730294\nNy0jtHcjrbg,2012.0,1,10,2017,For the Love of Money,Meeting Aline Scene,tt1730294\nG_5pbKwl4hE,2012.0,2,10,2017,For the Love of Money,At the Club Scene,tt1730294\nG1OstoTh_Bo,2012.0,3,10,2017,For the Love of Money,Things Would Only Get Worse Scene,tt1730294\nbgoBjzXp3ww,2000.0,3,11,2017,Barking Dogs Never Bite,Feasting Alone Scene,tt0269743\nwqQYEQ-fsLA,2000.0,11,11,2017,Barking Dogs Never Bite,It Was Me Scene,tt0269743\njF6mqjUiljk,2000.0,10,11,2017,Barking Dogs Never Bite,Is that Your Dog? Scene,tt0269743\n_wU_3DGbYS8,2000.0,9,11,2017,Barking Dogs Never Bite,Saving the Dog Scene,tt0269743\nMBDyD5A2mQk,2000.0,7,11,2017,Barking Dogs Never Bite,The Chase Scene,tt0269743\nX-lp4KfK9Qk,2000.0,6,11,2017,Barking Dogs Never Bite,Hurling the Dog Scene,tt0269743\nTYiEofdhOgQ,2000.0,8,11,2017,Barking Dogs Never Bite,100 Meters Scene,tt0269743\nbHoe-hfh9WE,2000.0,4,11,2017,Barking Dogs Never Bite,Boiler Kim Scene,tt0269743\n9Wy6ekMz_Yk,2000.0,5,11,2017,Barking Dogs Never Bite,The Dog-napping Scene,tt0269743\n08zyIFMP-LE,2000.0,2,11,2017,Barking Dogs Never Bite,The Wrong Dog Scene,tt0269743\nZp6CvBIvqZo,2000.0,1,11,2017,Barking Dogs Never Bite,Disposing of the Dog Scene,tt0269743\nUCac6K5YWns,2014.0,10,10,2017,Reclaim,Don't Kill Me Scene,tt3202890\nvgEq476aHxk,2014.0,6,10,2017,Reclaim,Chased Scene,tt3202890\njA83iWbczFc,2014.0,8,10,2017,Reclaim,He's Back Scene,tt3202890\nK2LCoTSVORY,2014.0,9,10,2017,Reclaim,It's Been a Big Day Scene,tt3202890\njKIG_-544gY,2014.0,7,10,2017,Reclaim,Hanging off the Cliff Scene,tt3202890\nwx-HWqbwssg,2014.0,5,10,2017,Reclaim,The Stakes Scene,tt3202890\nODeWs0Eu8n0,2014.0,2,10,2017,Reclaim,She's Not Here! Scene,tt3202890\nFmYGC2QdXd4,2014.0,3,10,2017,Reclaim,ing Scene,tt3202890\nf1mbRj3ejAk,2014.0,4,10,2017,Reclaim,Kidnapped Scene,tt3202890\n3yVGaKmJrUY,2014.0,1,10,2017,Reclaim,Puerto Rican Manners Scene,tt3202890\nExw1_k7Hj6o,2009.0,11,11,2017,Legend of the Bog,Burning the Bog Body Scene,tt0928375\nzjQSWtB7Kp4,2009.0,10,11,2017,Legend of the Bog,Zombie Bait Scene,tt0928375\nTgzbVMwrr7s,2009.0,8,11,2017,Legend of the Bog,\"I'm a Hunter, Not a Priest Scene\",tt0928375\nDHk_bI_wMcY,2009.0,9,11,2017,Legend of the Bog,Car Start Fail Scene,tt0928375\nybDsC1DzIPk,2009.0,7,11,2017,Legend of the Bog,Mudhole Corpse Scene,tt0928375\ngm0I_zdgs8o,2009.0,5,11,2017,Legend of the Bog,Zombies Don't Drink Scene,tt0928375\nF8vcszMAya4,2009.0,6,11,2017,Legend of the Bog,Dead Bodies and Little Boys Scene,tt0928375\ng1lpI9wZtiI,2009.0,2,11,2017,Legend of the Bog,Don't Moon Zombies Scene,tt0928375\nX-VYaCvJwxY,2009.0,4,11,2017,Legend of the Bog,Shower Tease Scene,tt0928375\nBB3VbfL6Xyg,2009.0,3,11,2017,Legend of the Bog,Zombie Needs Water Scene,tt0928375\nxDe-990DWEw,2009.0,1,11,2017,Legend of the Bog,Swamp Resurrection Scene,tt0928375\n07mbIgWikmQ,2012.0,8,10,2017,Bigfoot County,Sacrifices Scene,tt2108605\nGrJGkWkkHZo,2012.0,9,10,2017,Bigfoot County,Surrounded in the Dark Scene,tt2108605\ne4EL5s__uC0,2012.0,7,10,2017,Bigfoot County,Noises in the Night Scene,tt2108605\ns6QIbe248NI,2012.0,6,10,2017,Bigfoot County,Redneck With a Rifle Scene,tt2108605\nxEnYDuZSSy4,2012.0,5,10,2017,Bigfoot County,Lost in the Woods Scene,tt2108605\nRpr0n3A3_BU,2012.0,10,10,2017,Bigfoot County,Feeding Bigfoot Scene,tt2108605\nw8mpECLURqk,2012.0,3,10,2017,Bigfoot County,Man With an Axe Scene,tt2108605\nBF6tMv04X9M,2012.0,4,10,2017,Bigfoot County,I Saw Bigfoot Scene,tt2108605\nJ_hkf20P6FM,2012.0,1,10,2017,Bigfoot County,Bigfoot 911 Call Scene,tt2108605\n1RsuQNxE43A,2012.0,2,10,2017,Bigfoot County,Interviewing the Locals Scene,tt2108605\nor6rCLpiS10,2012.0,1,10,2017,Bigfoot,Only He Can Prevent Wildfires Scene,tt1876261\nQ2gFrTuZhFM,2012.0,4,10,2017,Bigfoot,Watch Your 12! Scene,tt1876261\nms_ERfOYnqI,2012.0,8,10,2017,Bigfoot,Sasquatch the Sheriff Slayer Scene,tt1876261\nDoVnHRhvtKI,2012.0,9,10,2017,Bigfoot,Sorry Dude Scene,tt1876261\n_2vMtzWb6q0,2012.0,7,10,2017,Bigfoot,Ambushing the Beast Scene,tt1876261\nMh51HEise7Q,2012.0,6,10,2017,Bigfoot,Bombarding  Scene,tt1876261\n_6RI-8Ia4do,2012.0,3,10,2017,Bigfoot,Rafter Ravage Scene,tt1876261\n961QhyKlg34,2012.0,2,10,2017,Bigfoot,Kickin' It with Alice Cooper Scene,tt1876261\nROlSjAgE93Q,2012.0,5,10,2017,Bigfoot,Sasquashed Scene,tt1876261\nZSQBKh64SJA,2012.0,10,10,2017,Bigfoot,Rushmore Rampage Scene,tt1876261\nAYy3qj5Y84I,2013.0,6,10,2017,Battledogs,Taking on the Pack Scene,tt2457138\nDvMB2pgYRMM,2013.0,10,10,2017,Battledogs,I Already Dropped It! Scene,tt2457138\nb3IInexeGWE,2013.0,8,10,2017,Battledogs,We're Not Gonna Make It! Scene,tt2457138\nKKDCqTCoLQ4,2013.0,9,10,2017,Battledogs,\"Chew on This, Mother! Scene\",tt2457138\nsu9foi8t6NI,2013.0,5,10,2017,Battledogs,We're Here to Protect You Scene,tt2457138\niDTYtgkzpZo,2013.0,4,10,2017,Battledogs,We Need Her Alive Scene,tt2457138\ngm5nPntwGQA,2013.0,7,10,2017,Battledogs,Get Back! Scene,tt2457138\nOTAO1MRbmNY,2013.0,3,10,2017,Battledogs,Time to Go to Work Scene,tt2457138\n_6IlaKlrXbs,2013.0,2,10,2017,Battledogs,Let's See What These Things Can Do Scene,tt2457138\ncRc7p5HzKIQ,2013.0,1,10,2017,Battledogs,Transformation Scene,tt2457138\n8ITOvb7Des0,2014.0,9,10,2017,Sex Tape,I'm Gonna Buy a Horse Scene,tt1956620\nAHjOZLikqoM,2014.0,10,10,2017,Sex Tape,I Jumped Off A Balcony! Scene,tt1956620\naRPInpAD3_o,2014.0,8,10,2017,Sex Tape,The Mayor of Thousand Oaks Scene,tt1956620\nR1GZ5ajb_xc,2014.0,7,10,2017,Sex Tape,What is Happening? Scene,tt1956620\nIvgFrEk1JqA,2014.0,6,10,2017,Sex Tape,Let's Do Cocaine! Scene,tt1956620\nR2DhcfXooy8,2014.0,5,10,2017,Sex Tape,Kids with Oversize Kidneys Scene,tt1956620\nJyAbZxxgLw8,2014.0,2,10,2017,Sex Tape,Enjoyed Your Video Scene,tt1956620\nXc3bqi1G5xk,2014.0,3,10,2017,Sex Tape,Who Else Has These Things? Scene,tt1956620\nLszhBmIWjeE,2014.0,4,10,2017,Sex Tape,The Full Lincoln Scene,tt1956620\nlxlwKE2-3fg,2014.0,1,10,2017,Sex Tape,Instant Boner-Giver Scene,tt1956620\nwC4MzUvxVa0,2014.0,10,11,2017,My Man Is a Loser,I Have Feelings for You Scene,tt2166934\ncwOh20xN82E,2014.0,11,11,2017,My Man Is a Loser,Love the Flaws Scene,tt2166934\nr1NUy3Rq8n4,2014.0,9,11,2017,My Man Is a Loser,Fight in the Club Scene,tt2166934\n4YuwbC-9aDI,2014.0,7,11,2017,My Man Is a Loser,A Ladies Day Scene,tt2166934\nHVlrXQ3qWqo,2014.0,6,11,2017,My Man Is a Loser,The Happy Kidnap Scene,tt2166934\nNqmZSSpvghU,2014.0,8,11,2017,My Man Is a Loser,Three Stages of Cuddling Scene,tt2166934\nYfqg-PxRCD8,2014.0,4,11,2017,My Man Is a Loser,\"Look, Listen and Learn Scene\",tt2166934\nlUglQukweZY,2014.0,1,11,2017,My Man Is a Loser,Relationship Advice Scene,tt2166934\nzjdTL3Z77G8,2014.0,2,11,2017,My Man Is a Loser,Married Men in the Club Scene,tt2166934\niKscMa0XRXo,2014.0,3,11,2017,My Man Is a Loser,The Fix Scene,tt2166934\ndfofju459FA,2014.0,5,11,2017,My Man Is a Loser,A Couple That Cries Together Scene,tt2166934\nS98AgHKyX8o,2013.0,9,12,2017,Pulling Strings,On the Town With Mariachis Scene,tt3203890\nYn_W5-xgf28,2013.0,11,12,2017,Pulling Strings,You Used Me Scene,tt3203890\nhY0SFHtFq9w,2013.0,12,12,2017,Pulling Strings,I'm Sorry I Hurt You Scene,tt3203890\nH0-STiAQTqQ,2013.0,10,12,2017,Pulling Strings,Paying Off a Gangster Scene,tt3203890\n1WlF1nxQKgw,2013.0,6,12,2017,Pulling Strings,A Daughter's Love Scene,tt3203890\np7CweK_hS90,2013.0,8,12,2017,Pulling Strings,Why You Don't See Me Scene,tt3203890\nhV6I03_cIks,2013.0,7,12,2017,Pulling Strings,Maria's Song Scene,tt3203890\n3BIyw7X0j74,2013.0,5,12,2017,Pulling Strings,Mexican Seer Scene,tt3203890\n7LmO5fAuT8U,2013.0,3,12,2017,Pulling Strings,Drunk American Girl Scene,tt3203890\nOSeQk_f4hSY,2013.0,2,12,2017,Pulling Strings,A Fateful Party Scene,tt3203890\nnSCUWDt53fw,2013.0,1,12,2017,Pulling Strings,Visa Denied Scene,tt3203890\ntbMeRyWgdW4,2013.0,4,12,2017,Pulling Strings,Alejandro's Scheme Scene,tt3203890\nH3jNVPIi5YQ,2013.0,9,10,2017,Instructions Not Included,I Don't Wanna Go! Scene,tt2378281\n0_s8rbNokS4,2013.0,8,10,2017,Instructions Not Included,Different Families Scene,tt2378281\nKarwL_yYLcY,2013.0,4,10,2017,Instructions Not Included,Valentin Takes a Dive Scene,tt2378281\n5Ka1bqIBXH0,2013.0,5,10,2017,Instructions Not Included,Stuntman Hell Scene,tt2378281\nnaPW3XAHz0g,2013.0,7,10,2017,Instructions Not Included,What Does Mom Look Like? Scene,tt2378281\npjHBTYOeSxE,2013.0,6,10,2017,Instructions Not Included,A Letter From Mom Scene,tt2378281\nYz6pNUcMwzo,2013.0,3,10,2017,Instructions Not Included,Father and Daughter Bonding Scene,tt2378281\nqfKQJyqMnvw,2013.0,10,10,2017,Instructions Not Included,Maggie's Big Day Scene,tt2378281\nhKH27VchVb4,2013.0,2,10,2017,Instructions Not Included,You're the Father Scene,tt2378281\n1NnwUUf3RMg,2013.0,1,10,2017,Instructions Not Included,Big Fears and Small Fears Scene,tt2378281\nnLpJ76VuXsA,2010.0,10,10,2017,Sound of Noise,Electric Love Scene,tt1278449\n6eV48Ir-RYc,2010.0,8,10,2017,Sound of Noise,I Wrote This for You Scene,tt1278449\n9_GelFK6rdw,2010.0,9,10,2017,Sound of Noise,The Grand Finale Scene,tt1278449\ntpnUv93AAp4,2010.0,7,10,2017,Sound of Noise,I Want Silence! Scene,tt1278449\nY2NT0jeoBXk,2010.0,6,10,2017,Sound of Noise,Construction Music Scene,tt1278449\nfkQHKvo7ZAw,2010.0,3,10,2017,Sound of Noise,Medical Music Scene,tt1278449\n_pe3ht3F0A4,2010.0,4,10,2017,Sound of Noise,Musicians Scene,tt1278449\nblGRLfNok3E,2010.0,2,10,2017,Sound of Noise,Drum Off Scene,tt1278449\nqS1MeoM8iA0,2010.0,5,10,2017,Sound of Noise,Money 4 U Honey Scene,tt1278449\n2iMVLR9jP1E,2010.0,1,10,2017,Sound of Noise,Drums vs. Cop Scene,tt1278449\nfDSyuyOtPRU,2013.0,10,10,2017,Joe,Rescuing Dorothy Scene,tt2382396\nm3CMdoMIX2k,2013.0,8,10,2017,Joe,Get the Hell Away From Me Scene,tt2382396\nXIhDPwuwQdc,2013.0,9,10,2017,Joe,I'm Gonna Make Trouble Scene,tt2382396\nQ-X3-JDIQLM,2013.0,7,10,2017,Joe,A Little Drink Never Hurt Nobody Scene,tt2382396\n3Ks6tKs541g,2013.0,6,10,2017,Joe,Restraint Keeps Me Alive Scene,tt2382396\nZJ1UwZPZN6A,2013.0,5,10,2017,Joe,Don't Disrespect My Family Scene,tt2382396\nQRWluPmgyow,2013.0,2,10,2017,Joe,Looking for Work Scene,tt2382396\nn6mWh_43Azs,2013.0,3,10,2017,Joe,Hello  Scene,tt2382396\nuJDmoisR-28,2013.0,1,10,2017,Joe,\"Scene  A Selfish, Old Drunk\",tt2382396\n6ya4pGA6zPk,2013.0,4,10,2017,Joe,Teach You About Break Dancin' Scene,tt2382396\nRybQmyBoWEQ,1993.0,8,10,2017,Kalifornia,Shoot The Dog Scene,tt0107302\negB-SG97EcI,1993.0,7,10,2017,Kalifornia,I Think I Gotta Kill You Scene,tt0107302\n_pin0H9Udho,1993.0,10,10,2017,Kalifornia,Adele's Goodbye Scene,tt0107302\n1c5xWXSWSgo,1993.0,9,10,2017,Kalifornia,Bri Came Back Scene,tt0107302\nJ329mOtIQ_Q,1993.0,6,10,2017,Kalifornia,Torture Tape Scene,tt0107302\nYWJMmQUGP00,1993.0,4,10,2017,Kalifornia,Black Dahlia Theory Scene,tt0107302\nOqzgxMFTQfU,1993.0,5,10,2017,Kalifornia,Teaching Brian to Shoot Scene,tt0107302\nUxHXWhEq5lo,1993.0,3,10,2017,Kalifornia,Bathroom Kill Scene,tt0107302\nyFSvuz5aHy8,1993.0,2,10,2017,Kalifornia,Bad Luck and Karma Scene,tt0107302\nx_BYzj4jQEM,1993.0,1,10,2017,Kalifornia,Poor White Trash Scene,tt0107302\n4cyZctbdFik,2014.0,4,10,2017,Cymbeline,He Hath Enjoyed Her Scene,tt3093522\nmmdPZs0Nvvg,2014.0,8,10,2017,Cymbeline,Where Is Thy Head? Scene,tt3093522\ns6n8HGwboO4,2014.0,10,10,2017,Cymbeline,Reunited Scene,tt3093522\nTAK8DeL_w00,2014.0,1,10,2017,Cymbeline,A Covenant Scene,tt3093522\nkZCgrTDVRbI,2014.0,2,10,2017,Cymbeline,Be Revenged Scene,tt3093522\nGYh7IHTeLus,2014.0,9,10,2017,Cymbeline,I Killed Thy Daughter Scene,tt3093522\n99IsS-uXJzQ,2014.0,7,10,2017,Cymbeline,Hold Me Your Loyal Servant Scene,tt3093522\nGylxYHpdxVQ,2014.0,6,10,2017,Cymbeline,Art Not Afeard? Scene,tt3093522\n5QFZ_Kh7vP0,2014.0,3,10,2017,Cymbeline,Taking the Treasure Scene,tt3093522\ng_wEMoy_wi0,2014.0,5,10,2017,Cymbeline,What Is It To Be False? Scene,tt3093522\nuzeSNmjxyNg,2014.0,10,10,2017,Revenge of the Green Dragons,Paying the Price Scene,tt1396523\nFmEHRr23Hro,2014.0,8,10,2017,Revenge of the Green Dragons,Restaurant Murder Scene,tt1396523\nSq7RMukT_sY,2014.0,5,10,2017,Revenge of the Green Dragons,Moon Cakes Scene,tt1396523\nU4fnEAu1--0,2014.0,9,10,2017,Revenge of the Green Dragons,A Heated Trial Scene,tt1396523\nnGx3WY944DU,2014.0,7,10,2017,Revenge of the Green Dragons,Going too Far Scene,tt1396523\nwyifbBO6sAY,2014.0,6,10,2017,Revenge of the Green Dragons,Love and a Drug Bust Scene,tt1396523\nsk0mjld_eow,2014.0,4,10,2017,Revenge of the Green Dragons,Revenge on the White Tigers Scene,tt1396523\nUbb88WMrdmo,2014.0,3,10,2017,Revenge of the Green Dragons,Shootout in the Club Scene,tt1396523\n4wv_1umbZ-w,2014.0,1,10,2017,Revenge of the Green Dragons,Green Dragons Are Somebody Scene,tt1396523\nkHQq6ri9MDI,2014.0,2,10,2017,Revenge of the Green Dragons,The Killer Child Scene,tt1396523\nvJ6XJtlqqZo,2013.0,11,11,2017,Life of Crime,A New Plan Scene,tt1663207\nn6H7zga2Ks0,2013.0,10,11,2017,Life of Crime,You're Different Scene,tt1663207\nSOR9UOc-alI,2013.0,9,11,2017,Life of Crime,I Know What You Did Scene,tt1663207\nCFOC-_DYKXk,2013.0,8,11,2017,Life of Crime,I'm Ready to Go Home Scene,tt1663207\nMGRJhDyY9ls,2013.0,5,11,2017,Life of Crime,The Peep Hole Scene,tt1663207\nrZs0ZkhzpsI,2013.0,6,11,2017,Life of Crime,Telling Mickey the Truth Scene,tt1663207\nTHuOIvlbIjM,2013.0,7,11,2017,Life of Crime,Take Your Clothes Off Scene,tt1663207\nWeSHSxMfC0A,2013.0,2,11,2017,Life of Crime,The Kidnapping Scene,tt1663207\n07GcBnddoMU,2013.0,3,11,2017,Life of Crime,Who Is This? Scene,tt1663207\nRIInmRkYOXc,2013.0,4,11,2017,Life of Crime,The Ransom Call Scene,tt1663207\ncMFosgxgPAs,2013.0,1,11,2017,Life of Crime,I Hope He Learned Something Scene,tt1663207\nu5hpQ0KeRgY,2014.0,7,10,2017,A Most Wanted Man,God's Will Scene,tt1972571\nJ6osFXTp7WQ,2014.0,10,10,2017,A Most Wanted Man,The Aftermath Scene,tt1972571\nB0nhCPv8VB8,2014.0,4,10,2017,A Most Wanted Man,The Chase Scene,tt1972571\nkqBMHRX-c-4,2014.0,8,10,2017,A Most Wanted Man,It Takes a Minnow Scene,tt1972571\noG-MKxVWwi4,2014.0,2,10,2017,A Most Wanted Man,You're Going to Help Me Scene,tt1972571\nvZ3nHOtlQiU,2014.0,9,10,2017,A Most Wanted Man,The Abduction Gone Wrong Scene,tt1972571\nM9FAInQwCm0,2014.0,6,10,2017,A Most Wanted Man,You've Crossed the Line Scene,tt1972571\nilXtCX0-CkE,2014.0,1,10,2017,A Most Wanted Man,Annabel Richter Scene,tt1972571\nXvOKgNVwLes,2014.0,5,10,2017,A Most Wanted Man,You Gotta Tell Me Scene,tt1972571\nAoPqvTGZv6g,2014.0,3,10,2017,A Most Wanted Man,The Bad in a Man Scene,tt1972571\nvOfFVhSiwiA,2014.0,10,10,2017,The Prince,Let's Go Home Scene,tt1754656\n6nZJPF_VgIQ,2014.0,9,10,2017,The Prince,Assassin Showdown Scene,tt1754656\nHj12WETYG0U,2014.0,8,10,2017,The Prince,Kidnapped Scene,tt1754656\nyLJ5hUWH0yE,2014.0,5,10,2017,The Prince,Assassins on the Highway Scene,tt1754656\npizMaFdtY-s,2014.0,7,10,2017,The Prince,Life and Death Situation Scene,tt1754656\nIfNo8NJyy8U,2014.0,3,10,2017,The Prince,Sexual Tension Scene,tt1754656\ns_cz5JFWpzE,2014.0,4,10,2017,The Prince,Poolside Assassination Scene,tt1754656\nAUPdPriOg6I,2014.0,6,10,2017,The Prince,That Man Brings Hell With Him Scene,tt1754656\nZ4G5St8apOQ,2014.0,1,10,2017,The Prince,Lap Dance Fail Scene,tt1754656\nGLeGjBbLSJI,2014.0,2,10,2017,The Prince,You're Not Going Anywhere Scene,tt1754656\nVh4rJorGhHQ,2011.0,9,9,2017,Headhunters,Revenge Scene,tt1614989\nxHTAYPp_gzs,2011.0,7,9,2017,Headhunters,Diana Tells the Truth Scene,tt1614989\nC3ajmVuQPk8,2011.0,8,9,2017,Headhunters,Scared Scene,tt1614989\n7-juqE5ASnc,2011.0,2,9,2017,Headhunters,Finding Ove Scene,tt1614989\niiYX4JT6C_w,2011.0,5,9,2017,Headhunters,The Car Crash Scene,tt1614989\n7UQFQ-FyV98,2011.0,6,9,2017,Headhunters,Cas's Plan Scene,tt1614989\nXr3vKjP1PUg,2011.0,4,9,2017,Headhunters,The Toilet Scene,tt1614989\n8-S0Drs1N9Q,2011.0,3,9,2017,Headhunters,Don't Do Anything Stupid Scene,tt1614989\ndFuy0W8-Wj4,2011.0,1,9,2017,Headhunters,A Startling Discovery Scene,tt1614989\nRMdS3Hi-rMA,2006.0,4,10,2017,Special,We Have a Problem Scene,tt0479162\nDE6io8Y3FQQ,2006.0,10,10,2017,Special,I'm Losing My Mind Scene,tt0479162\nR8UDjs0FAdI,2006.0,6,10,2017,Special,You Don't Have a Clue Scene,tt0479162\nOrHgSvrG8Z4,2006.0,9,10,2017,Special,Invisible Attackers Scene,tt0479162\nnBGdf1uWu5A,2006.0,8,10,2017,Special,I'll Make You Disappear Scene,tt0479162\nhHRWVczf8d8,2006.0,3,10,2017,Special,I'm Not Like Most People Scene,tt0479162\nVq5QdeqLYOw,2006.0,7,10,2017,Special,This is About Money? Scene,tt0479162\nwdwd_fCVhFM,2006.0,1,10,2017,Special,You're Telepathic Scene,tt0479162\nMUvtyyo1vdc,2006.0,5,10,2017,Special,Teleportation Scene,tt0479162\n8tnIy3PuDiY,2006.0,2,10,2017,Special,Grocery Store Heroics Scene,tt0479162\n44zsdC87LJs,2007.0,9,10,2017,\"30,000 Leagues Under the Sea\",Abandon Ship! Scene,tt1056026\nXhWl0YaZKfY,2007.0,10,10,2017,\"30,000 Leagues Under the Sea\",We Got Her Sir Scene,tt1056026\nEPFnZSvRq6s,2007.0,8,10,2017,\"30,000 Leagues Under the Sea\",Neutralizing the Squid Scene,tt1056026\nL7rGRnu-2UE,2007.0,5,10,2017,\"30,000 Leagues Under the Sea\",The 8th Continent of the World Scene,tt1056026\nmRXz6hTAW88,2007.0,6,10,2017,\"30,000 Leagues Under the Sea\",Everyone is the Enemy Scene,tt1056026\nt8_p_4sqv4k,2007.0,7,10,2017,\"30,000 Leagues Under the Sea\",Let's Make a Deal Scene,tt1056026\n7Tx0kjtoAks,2007.0,3,10,2017,\"30,000 Leagues Under the Sea\",Captain Nemo Scene,tt1056026\n1LwSe_JnByw,2007.0,1,10,2017,\"30,000 Leagues Under the Sea\",Operation USS Scotia Scene,tt1056026\n6rNaFgA6YlY,2007.0,4,10,2017,\"30,000 Leagues Under the Sea\",Robot Squid Attack Scene,tt1056026\ndfALZ10xUyA,2007.0,2,10,2017,\"30,000 Leagues Under the Sea\",Breathless Scene,tt1056026\nvdwWjsJLaJQ,2008.0,10,10,2017,100 Million BC,Extinct Again Scene,tt1136683\ngtmmKXgSUwo,2008.0,9,10,2017,100 Million BC,Dino Trap Fail Scene,tt1136683\nnDrjVVyUjZo,2008.0,5,10,2017,100 Million BC,Pterodactyl Trouble Scene,tt1136683\nfN0w62AurJA,2008.0,8,10,2017,100 Million BC,Tyrannosaurus on the Loose Scene,tt1136683\nB1uklxoaP24,2008.0,7,10,2017,100 Million BC,Time Traveling T-Rex Scene,tt1136683\naViOusNEtoU,2008.0,6,10,2017,100 Million BC,Portal to the 21st Century Scene,tt1136683\n6GEll0BI7ko,2008.0,2,10,2017,100 Million BC,Harmless or Hostile? Scene,tt1136683\n0I8xeAEpb8E,2008.0,4,10,2017,100 Million BC,Leave Me Scene,tt1136683\nsSLdFuRVlmc,2008.0,3,10,2017,100 Million BC,Strange Saviors Scene,tt1136683\nwWpNqaKrq8o,2008.0,1,10,2017,100 Million BC,Cretaceous Search and Rescue Scene,tt1136683\n3SVCkLf0NiM,2015.0,4,10,2017,Jupiter Ascending,Claim Your Title Scene,tt1617661\nFE42Xc_laYU,2015.0,7,10,2017,Jupiter Ascending,To Live is to Consume Scene,tt1617661\nFeaVbBKg8tw,2015.0,8,10,2017,Jupiter Ascending,Refusal to Abdicate Scene,tt1617661\nIQuxKuLkByg,2015.0,10,10,2017,Jupiter Ascending,Your Majesty Scene,tt1617661\n8SvHSEy3xCs,2015.0,1,10,2017,Jupiter Ascending,Alien Operation Rescue Scene,tt1617661\nI2s3FG8KpKc,2015.0,5,10,2017,Jupiter Ascending,Caine in the Void Scene,tt1617661\nBZTDkSXwBD4,2015.0,9,10,2017,Jupiter Ascending,You Begged Me to Do It Scene,tt1617661\nkKBsDfBDmG0,2014.0,2,10,2017,Draft Day,Burning the Draft Analysis Scene,tt2223990\nLDmKhGcB0Xs,2015.0,3,10,2017,Jupiter Ascending,They're Here Scene,tt1617661\nLdRoFo6JuNs,2015.0,6,10,2017,Jupiter Ascending,Crashing the Wedding Scene,tt1617661\nL589GA-KKq4,2015.0,2,10,2017,Jupiter Ascending,Spaceship Chase Through Chicago Scene,tt1617661\nM1hXX6aq1wA,2014.0,10,10,2017,Draft Day,Nothing Into Something Scene,tt2223990\nqjqJtri_EG4,2014.0,8,10,2017,Draft Day,I Have the Pick Scene,tt2223990\n4kRRDuR7OBM,2014.0,7,10,2017,Draft Day,Trading With the Jaguars Scene,tt2223990\nS989EXPoZKs,2014.0,4,10,2017,Draft Day,Bo vs. Mack Scene,tt2223990\nQT1Tl6npLic,2014.0,9,10,2017,Draft Day,I Want My Picks Back Scene,tt2223990\nCOSkA00zJlo,2014.0,3,10,2017,Draft Day,\"If I Trade You, I Trade You Scene\",tt2223990\n8CcVO0mQ1go,2014.0,6,10,2017,Draft Day,The NFL Draft Scene,tt2223990\nlnfpTgAQ0Ys,2014.0,5,10,2017,Draft Day,Why Did You Hate Your Father? Scene,tt2223990\n3UbNdsZot98,2014.0,1,10,2017,Draft Day,We Have First Pick Scene,tt2223990\nmKrFcdRLGQI,2014.0,12,12,2017,Cesar Chavez,A Better Tomorrow Scene,tt1621046\n8_oVkRFKukY,2014.0,8,12,2017,Cesar Chavez,A Leader Not a Martyr Scene,tt1621046\niMaL4la2Q78,2014.0,11,12,2017,Cesar Chavez,Chavez Goes to Europe Scene,tt1621046\n2cg4S8JO_hQ,2014.0,10,12,2017,Cesar Chavez,Nixon Becomes President Scene,tt1621046\ntNheq6EGWuU,2014.0,9,12,2017,Cesar Chavez,The Grape Boycott Scene,tt1621046\nisY1TQ26Gnc,2014.0,5,12,2017,Cesar Chavez,Senator Kennedy Scene,tt1621046\nw01G5wVBQKs,2014.0,7,12,2017,Cesar Chavez,The Fast Scene,tt1621046\nJnlOLl7Ew8I,2014.0,6,12,2017,Cesar Chavez,Advocating Nonviolence Scene,tt1621046\nAPxaNrWnSq0,2014.0,4,12,2017,Cesar Chavez,The Next Step Scene,tt1621046\n2MFlcONJD-A,2014.0,2,12,2017,Cesar Chavez,Huelga! Scene,tt1621046\nYACsFmbB9Ok,2014.0,3,12,2017,Cesar Chavez,Stay Together! Scene,tt1621046\nNbSduHWUQDc,2014.0,1,12,2017,Cesar Chavez,Have You Read the Bill of Rights? Scene,tt1621046\nwzkoiXWdFzw,2012.0,11,11,2017,Emperor,I Need Your Help Scene,tt2103264\ny-m4KWfeyvs,2012.0,9,11,2017,Emperor,Bring Me the  Scene,tt2103264\nbmYXbieirM4,2012.0,10,11,2017,Emperor,Meeting the  Scene,tt2103264\nt8VC4GBHwds,2012.0,8,11,2017,Emperor,Complete Devotion Scene,tt2103264\njBt5rfpIjws,2012.0,5,11,2017,Emperor,A Web of Power Scene,tt2103264\nVP5nSFxqyxo,2012.0,6,11,2017,Emperor,Another Way Scene,tt2103264\naKidFnGJDYA,2012.0,7,11,2017,Emperor,Tatemae and Honne Scene,tt2103264\nFkjBXGnq8Jk,2012.0,1,11,2017,Emperor,10 Days Scene,tt2103264\nx_Gr6RT8Aho,2012.0,2,11,2017,Emperor,A Spark Scene,tt2103264\n5S8moDSqK0U,2012.0,3,11,2017,Emperor,A New Mission Scene,tt2103264\nKzw5aWCSZs8,2012.0,4,11,2017,Emperor,It's Not Black and White Scene,tt2103264\nx5ajdqqytyA,2013.0,5,10,2017,Burning Blue,\"If We're Careful, We Can Do This Scene\",tt1811307\nbNiztacMAJ0,2013.0,10,10,2017,Burning Blue,A Disgrace to the Uniform Scene,tt1811307\nzElzcOQWLLo,2013.0,9,10,2017,Burning Blue,Homophobic Investigation Scene,tt1811307\nw5mtX7FnO3M,2013.0,7,10,2017,Burning Blue,A Kiss Scene,tt1811307\n2EojVDDg3xM,2013.0,8,10,2017,Burning Blue,I Loved Matt Scene,tt1811307\ne1FWoMLjAU0,2013.0,6,10,2017,Burning Blue,Trouble Brewing Scene,tt1811307\njsUGvhq2MLM,2013.0,4,10,2017,Burning Blue,The Party Scene,tt1811307\n4V9xYmVeNL4,2013.0,2,10,2017,Burning Blue,A Magic Trick Scene,tt1811307\nlP-A8UaVbLE,2013.0,1,10,2017,Burning Blue,Jet Fighter Crash Scene,tt1811307\nxkjfSZtHBXc,2013.0,3,10,2017,Burning Blue,Forbidden Love Scene,tt1811307\nLl-Ff-PIPOQ,2012.0,5,10,2017,The Hunt,A Sick Person Scene,tt2106476\n8o1QfQXKstU,2012.0,10,10,2017,The Hunt,Scene,tt2106476\nlhzE7_0RSow,2012.0,1,10,2017,The Hunt,The Accusation Scene,tt2106476\nvWNDTaQG9jE,2012.0,2,10,2017,The Hunt,Get Out of Here Scene,tt2106476\nwdLfTMSAErQ,2012.0,4,10,2017,The Hunt,He Didn't Do Anything Scene,tt2106476\nlh8UIXq5ELc,2012.0,3,10,2017,The Hunt,Talking to Theo Scene,tt2106476\nByN3jkG-PzQ,2012.0,8,10,2017,The Hunt,I Want My Groceries Scene,tt2106476\ni7Y0sXYRwhg,2012.0,6,10,2017,The Hunt,Marcus Confronts Klara Scene,tt2106476\nJEbShXn2-Vs,2012.0,7,10,2017,The Hunt,Hate Crimes Scene,tt2106476\niUuWyMhkd9A,2012.0,9,10,2017,The Hunt,There Is Nothing Scene,tt2106476\nUbQlBLCvOk0,2012.0,9,10,2017,The Bay,Too Much Pain Scene,tt1713476\n7InJqZBrCuw,2012.0,2,10,2017,The Bay,Bacterial Infection Scene,tt1713476\nzIWGx1aneus,2012.0,3,10,2017,The Bay,Something Really Bad Scene,tt1713476\nv1ef0grzZWM,2012.0,10,10,2017,The Bay,Help Me Scene,tt1713476\nw2z6YPTKVsA,2012.0,8,10,2017,The Bay,If You Find This Tape Scene,tt1713476\nO4fYclm_0As,2012.0,7,10,2017,The Bay,Go Away! Scene,tt1713476\nXztayplmOsE,2012.0,6,10,2017,The Bay,Never Been So Scared Scene,tt1713476\naELUig9qu3w,2012.0,1,10,2017,The Bay,Bring Me to a Hospital Scene,tt1713476\nOdJlNbw8ru4,2012.0,5,10,2017,The Bay,They're Eating Their Flesh Scene,tt1713476\ni3VHMIy8wHI,2012.0,4,10,2017,The Bay,The Last Swim Scene,tt1713476\nL1hEpMsgttE,2009.0,10,10,2017,Survival of the Dead,Mayhem! Scene,tt1134854\nVJgFWMPoK1M,2009.0,8,10,2017,Survival of the Dead,Not My Hat Scene,tt1134854\nm_udTXudsnM,2009.0,9,10,2017,Survival of the Dead,Life Changing Scene,tt1134854\neiKrNt30jS4,2009.0,6,10,2017,Survival of the Dead,May You Get Into Heaven Scene,tt1134854\n772oaU4DFTI,2009.0,7,10,2017,Survival of the Dead,Keeping Them in Chains Scene,tt1134854\nsfqjgFBIBFQ,2009.0,4,10,2017,Survival of the Dead,Pole Trouble Scene,tt1134854\nd82uV320Fzw,2009.0,5,10,2017,Survival of the Dead,Extinguished Scene,tt1134854\nJqwzeAkRcJA,2009.0,2,10,2017,Survival of the Dead,Miracles Scene,tt1134854\nBl6M9MfRbcU,2009.0,3,10,2017,Survival of the Dead,Gettin' to Know Each Other Scene,tt1134854\ngmJtNjLjsNQ,2007.0,10,10,2017,I Am Omega,Outrunning the Bombs Scene,tt1075746\nI30x5dMvcA8,2007.0,7,10,2017,I Am Omega,We Got Company Scene,tt1075746\nh6usdPpiqho,2009.0,1,10,2017,Survival of the Dead,I Can't! Scene,tt1134854\nj-TPDJFWErg,2007.0,9,10,2017,I Am Omega,Fight to the Death Scene,tt1075746\nwmbN_BXQaho,2007.0,5,10,2017,I Am Omega,Let's Get Goin' Scene,tt1075746\nMge3npvF4R0,2007.0,6,10,2017,I Am Omega,Nice to Meet You Scene,tt1075746\nIORWBsyIivo,2007.0,8,10,2017,I Am Omega,A Perfect Utopia Scene,tt1075746\n4aKmbFnV-mI,2007.0,3,10,2017,I Am Omega,Communication Issues Scene,tt1075746\n1AhrD2-cvrw,2007.0,4,10,2017,I Am Omega,Tried to Ask Ya Nice Scene,tt1075746\nCGwzaIS-tLk,2007.0,2,10,2017,I Am Omega,Property Check Scene,tt1075746\nKxcKAGtHl3A,2007.0,1,10,2017,I Am Omega,Nightmare of the Undead Scene,tt1075746\n218nJYQ3oMI,2015.0,7,10,2017,Spare Parts,The Competition Begins Scene,tt3233418\nDKqFCG3UTEs,2015.0,1,10,2017,Spare Parts,An Underwater Robotics Competition Scene,tt3233418\nynC2_22yuGA,2015.0,9,10,2017,Spare Parts,A Finish Line Always Appears Scene,tt3233418\nUyKyxHFIT3A,2015.0,5,10,2017,Spare Parts,You Wanna Be His Father? Scene,tt3233418\n6ldKc6yXTyg,2015.0,3,10,2017,Spare Parts,Buying the Parts Scene,tt3233418\nS3-atF715Mg,2015.0,4,10,2017,Spare Parts,Have You Seen Ramiro? Scene,tt3233418\nxLZDij_-ZRw,2015.0,2,10,2017,Spare Parts,I Need You to Slap Me Scene,tt3233418\nDHYCHYsyqTc,2015.0,8,10,2017,Spare Parts,Finish Strong Scene,tt3233418\nRHmp-rhCrLo,2015.0,10,10,2017,Spare Parts,First Prize Scene,tt3233418\nHgQDAW28DsA,2015.0,6,10,2017,Spare Parts,Am I Up For This? Scene,tt3233418\nBy05PXEvGWA,2014.0,5,10,2017,What We Did on Our Holiday,In the End None of it Matters Scene,tt2725962\nQMmxxD7h5-Y,2014.0,10,10,2017,What We Did on Our Holiday,Love Those Around You Scene,tt2725962\nIPPeDiU4Vdo,2014.0,9,10,2017,What We Did on Our Holiday,We're All Ridiculous Scene,tt2725962\nFr1A3ok_kfw,2014.0,7,10,2017,What We Did on Our Holiday,Have a Good Valhalla Scene,tt2725962\nhAU8AQ6xlw8,2014.0,8,10,2017,What We Did on Our Holiday,Granddad Died Scene,tt2725962\nu1Pgftn5H94,2014.0,6,10,2017,What We Did on Our Holiday,Our Present to Granddad Scene,tt2725962\nGvDcscZXfl8,2014.0,3,10,2017,What We Did on Our Holiday,What is Your Actual Job? Scene,tt2725962\n4I9-0dipqo0,2014.0,4,10,2017,What We Did on Our Holiday,A Warrior's Farewell Scene,tt2725962\n5xnSzPHjw10,2014.0,1,10,2017,What We Did on Our Holiday,Thank You Jesus Scene,tt2725962\nItMY_4RobkM,2014.0,2,10,2017,What We Did on Our Holiday,Pissed Off With This Dying Thing Scene,tt2725962\n213l0Kv26uQ,2009.0,4,10,2017,Princess of Mars,Bugs for Dessert Scene,tt1531911\nnPRUkMAdukE,2009.0,2,10,2017,Princess of Mars,You Want Me to Jump? Scene,tt1531911\n-E0UUIoS5xU,2009.0,9,10,2017,Princess of Mars,Sarka Sword Fight Scene,tt1531911\nncErLtJBlHw,2009.0,1,10,2017,Princess of Mars,I Owe You One Scene,tt1531911\nSOa5HP_FHoQ,2009.0,8,10,2017,Princess of Mars,Time to End This Scene,tt1531911\n_jF3JZMHL30,2009.0,10,10,2017,Princess of Mars,John Carter vs. Sarka Scene,tt1531911\nP2NiGznbIcI,2009.0,7,10,2017,Princess of Mars,There Can Be Only One Scene,tt1531911\nez6GguY40SQ,2009.0,6,10,2017,Princess of Mars,Bug Blasters Scene,tt1531911\na1DuE8E4DpM,2009.0,3,10,2017,Princess of Mars,Spider Slayers Scene,tt1531911\n1Dd5HFJn88E,2009.0,5,10,2017,Princess of Mars,Airship Ambush Scene,tt1531911\nq30Pl1M6_DE,2013.0,9,10,2017,AE: Apocalypse Earth,River Rescue Scene,tt2756412\nkL8e9CEgm6A,2013.0,5,10,2017,AE: Apocalypse Earth,More Than a Machine Scene,tt2756412\nbBjLUZgx4WA,2013.0,10,10,2017,AE: Apocalypse Earth,Relativity's a Bitch Scene,tt2756412\nV300Gtn8NVs,2013.0,7,10,2017,AE: Apocalypse Earth,Chameleon Counter-Offensive Scene,tt2756412\nxME4tintsqs,2013.0,4,10,2017,AE: Apocalypse Earth,Let the River Take You Scene,tt2756412\nHsg_ZUoSlCs,2013.0,8,10,2017,AE: Apocalypse Earth,Get Back to the Ship Scene,tt2756412\nWIBrEMlCGSM,2013.0,3,10,2017,AE: Apocalypse Earth,Best Damn Camouflage I Ever Saw Scene,tt2756412\nl081UdHizvg,2013.0,6,10,2017,AE: Apocalypse Earth,Uniting Two Peoples Scene,tt2756412\nJ38c6k11K3U,2013.0,2,10,2017,AE: Apocalypse Earth,Crash-Landed Scene,tt2756412\nM0iif-dNJus,2013.0,1,10,2017,AE: Apocalypse Earth,Emergency Launch Now! Scene,tt2756412\njra4awMyUr0,2004.0,7,10,2017,Control Room,The Picture Has Changed Scene,tt0391024\nyYUtAKXuicA,2004.0,10,10,2017,Control Room,History is Written By the Victors Scene,tt0391024\ntoiIOy7q4xg,2004.0,3,10,2017,Control Room,The Human Cost Scene,tt0391024\nmo2-63epZAM,2004.0,4,10,2017,Control Room,Images of War Scene,tt0391024\ns_h-ZXgEtNo,2004.0,8,10,2017,Control Room,Losing Tarek Scene,tt0391024\n5yGKubkHrio,2004.0,5,10,2017,Control Room,Most-Wanted Iraqi Cards Scene,tt0391024\nQoT8ZUDDmKs,2004.0,9,10,2017,Control Room,America Prevails Scene,tt0391024\nFsIaDwn2EtQ,2004.0,2,10,2017,Control Room,We Don't Have Those Pictures Scene,tt0391024\noS3Bld83J_o,2004.0,1,10,2017,Control Room,The American Media Were Hijacked Scene,tt0391024\ngc19hOdR99c,2004.0,6,10,2017,Control Room,No Spin Scene,tt0391024\nlEykI65QtSQ,2013.0,3,10,2017,The Smurfs 2,A Smurfday Surprise Scene,tt2017020\nxbhm9F1ST6I,2013.0,2,10,2017,The Smurfs 2,The Naughties Scene,tt2017020\nfQ09ePfYLpU,2013.0,1,10,2017,The Smurfs 2,How Smurfette Came to Be Scene,tt2017020\na8EeFNXk1TE,2013.0,6,10,2017,The Smurfs 2,Freedom Flighter Scene,tt2017020\n6Xn4tr2grtc,2013.0,5,10,2017,The Smurfs 2,Paris Stork Race Scene,tt2017020\nKEwC94CY-Go,2013.0,4,10,2017,The Smurfs 2,Candy Store Mischief Scene,tt2017020\nWJOMiXmwfYE,2013.0,10,10,2017,The Smurfs 2,\"Happy Smurfday, Smurfette! Scene\",tt2017020\nWEfMDGtX3K0,2013.0,8,10,2017,The Smurfs 2,Saving the Smurfs Scene,tt2017020\nhn3XR4o8M4c,2013.0,7,10,2017,The Smurfs 2,Brewing the Formula Scene,tt2017020\npdmo-_KXg0Y,2013.0,9,10,2017,The Smurfs 2,Gargamel Goes Flying Scene,tt2017020\nK2hcF1oOHb8,2011.0,1,10,2017,The Smurfs,Welcome to Smurf Village Scene,tt0472181\nCVxgFZixwlg,2011.0,2,10,2017,The Smurfs,Through the Blue Portal Scene,tt0472181\n5Ugqj1RATYE,2011.0,5,10,2017,The Smurfs,The Genius That Is Gargamel Scene,tt0472181\nWsffSfKc-mw,2011.0,4,10,2017,The Smurfs,Meeting the Smurfs Scene,tt0472181\nfLswSc81mw8,2011.0,3,10,2017,The Smurfs,Clumsy in the Bathroom Scene,tt0472181\nGJ0-xGnrjBU,2011.0,6,10,2017,The Smurfs,Toy Store Teamwork Scene,tt0472181\nIvGwIRIYlBo,2011.0,8,10,2017,The Smurfs,The Blue Moon Scene,tt0472181\nWSYe57h6YUE,2011.0,7,10,2017,The Smurfs,Papa Smurf's Sacrifice Scene,tt0472181\nx7qvOFN1QZg,2011.0,10,10,2017,The Smurfs,Clumsy Smurfs the Day Scene,tt0472181\nHMUbL4Vgb2E,2011.0,9,10,2017,The Smurfs,Prepare to Get Smurfed Scene,tt0472181\nxNzE5UoQmZw,2008.0,10,10,2017,Is Anybody There?,Saying Goodbye Scene,tt1130088\n-Dny2rWieIA,2008.0,2,10,2017,Is Anybody There?,Grave Dance Scene,tt1130088\nbugH1m4LteI,2008.0,4,10,2017,Is Anybody There?,I'll Teach You a Few Tricks Scene,tt1130088\nnoAefY8KRoQ,2008.0,9,10,2017,Is Anybody There?,Annie's Grave Scene,tt1130088\nkjo_zi4cLJo,2008.0,8,10,2017,Is Anybody There?,Getting Involved,tt1130088\nZagt2ld1pwE,2008.0,6,10,2017,Is Anybody There?,You Don't Come Back Scene,tt1130088\n9gEtABdjiiI,2008.0,7,10,2017,Is Anybody There?,Magic Show Scene,tt1130088\nVpBuUC1P2jo,2008.0,5,10,2017,Is Anybody There?,Car Accident Scene,tt1130088\nS88bgODlrbk,2008.0,3,10,2017,Is Anybody There?,Seance Scene,tt1130088\n7SBBMiyv0kY,2008.0,1,10,2017,Is Anybody There?,Sorry For Not Saying Sorry Scene,tt1130088\ng3vxfUb7Sr4,2012.0,10,10,2017,Much Ado About Nothing,Man is a Giddy Thing Scene,tt2094064\n6AWo-9MFBug,2012.0,8,10,2017,Much Ado About Nothing,Is Not that Strange? Scene,tt2094064\nU6PrB5bbWRM,2012.0,1,10,2017,Much Ado About Nothing,A Battle of Wits Scene,tt2094064\nKJI1SIvGZEY,2012.0,7,10,2017,Much Ado About Nothing,Not To Be Married Scene,tt2094064\nz4cGnSZQni4,2012.0,9,10,2017,Much Ado About Nothing,You Are an Ass! Scene,tt2094064\nKlC81iup2Jo,2012.0,5,10,2017,Much Ado About Nothing,Horribly In Love With Her Scene,tt2094064\n8ZkCvzJqCUY,2012.0,4,10,2017,Much Ado About Nothing,Tricking Benedick Scene,tt2094064\nC919Gt7Yd2g,2012.0,6,10,2017,Much Ado About Nothing,The Night Watch Scene,tt2094064\nyzTbstnZYro,2012.0,3,10,2017,Much Ado About Nothing,Sigh No More Scene,tt2094064\njH1hWH-WvLg,2012.0,2,10,2017,Much Ado About Nothing,I Will Live a Bachelor Scene,tt2094064\n4D1OVjTF1E4,2012.0,7,10,2017,Grimm's Snow White,Decimate Them All Scene,tt2081255\nVMteZw9UU-U,2012.0,6,10,2017,Grimm's Snow White,War is Upon Us Scene,tt2081255\neiuVC_cdyIA,2012.0,1,10,2017,Grimm's Snow White,A False Heart Scene,tt2081255\nGuMg7x6_8No,2012.0,2,10,2017,Grimm's Snow White,Prince Alexander: Beast Slayer Scene,tt2081255\ncRgXwpwVe4U,2012.0,3,10,2017,Grimm's Snow White,Snow & the Crow Scene,tt2081255\nagzK8ig7rR0,2012.0,5,10,2017,Grimm's Snow White,A Prince in Prison Scene,tt2081255\nwvknCnZ8HJ0,2012.0,4,10,2017,Grimm's Snow White,Saving Snow White Scene,tt2081255\nEJOewEP6tKQ,2012.0,8,10,2017,Grimm's Snow White,A Prince Impaled Scene,tt2081255\nvMs9qHAQaZE,2012.0,9,10,2017,Grimm's Snow White,The Headless Queen of Whitevale Scene,tt2081255\nSH-HSmrjmBw,2012.0,10,10,2017,Grimm's Snow White,Happily Ever After Scene,tt2081255\nc1K32XLhn1M,2013.0,6,10,2017,Angels Sing,Christmas is Stupid Scene,tt1833888\nIrU4ze3VfD8,2013.0,7,10,2017,Angels Sing,Amazing Grace Scene,tt1833888\np9kL3O1TuMQ,2013.0,5,10,2017,Angels Sing,It Was All My Fault Scene,tt1833888\n_q1BSBGTR2M,2013.0,2,10,2017,Angels Sing,Making a Deal Scene,tt1833888\njWP3sgGz2F8,2013.0,1,10,2017,Angels Sing,Uncle David Scene,tt1833888\nJOXYV6UN3S0,2013.0,8,10,2017,Angels Sing,Memories Scene,tt1833888\n8knM2DiWkUk,2013.0,4,10,2017,Angels Sing,There's Been an Accident Scene,tt1833888\nuPcTCWfQbzQ,2013.0,3,10,2017,Angels Sing,The Crown Jewel Scene,tt1833888\npgDUFZ9TfPc,2013.0,9,10,2017,Angels Sing,Hanging Christmas Lights Scene,tt1833888\nkC1Q45BQbY4,2013.0,10,10,2017,Angels Sing,Turning the Lights On Scene,tt1833888\n6Nb7rSggCns,2013.0,1,10,2017,After Earth,What's in the Cage? Scene,tt1815862\n1Zwl6vfqjNQ,2013.0,2,10,2017,After Earth,The Asteroid Storm Scene,tt1815862\nSV8jbzudYJ8,2013.0,6,10,2017,After Earth,Fear is a Choice Scene,tt1815862\ndDGMTl1Ya78,2013.0,3,10,2017,After Earth,Crashing on Earth Scene,tt1815862\nt-lIuwPGT9w,2013.0,4,10,2017,After Earth,Baboon Attack Scene,tt1815862\neMgfTq1Z2n8,2013.0,5,10,2017,After Earth,Blood Contamination Scene,tt1815862\n4KICpbB5YQY,2013.0,7,10,2017,After Earth,I'm Not a Coward! Scene,tt1815862\n0vcXvLUt1E4,2013.0,10,10,2017,After Earth,Kitai Battles the Ursa Scene,tt1815862\nHxc048RM18U,2013.0,8,10,2017,After Earth,Defending the Nest Scene,tt1815862\n8M1kdeDluRE,2013.0,9,10,2017,After Earth,It Has Found You Scene,tt1815862\nFllAsMCrdJE,2008.0,10,10,2017,Mutant Chronicles,Running Out of Time Scene,tt0490181\nXfeN42X2UHk,2008.0,8,10,2017,Mutant Chronicles,What Do You Believe? Scene,tt0490181\nPS2CC6WdNMk,2008.0,1,10,2017,Mutant Chronicles,Mutant Attack! Scene,tt0490181\n9QHYm5IVhHI,2008.0,9,10,2017,Mutant Chronicles,Making a Monster Scene,tt0490181\nVCDY6MTuU6Y,2008.0,6,10,2017,Mutant Chronicles,War is Hell Scene,tt0490181\nSNXqtm-WAh0,2008.0,7,10,2017,Mutant Chronicles,We're Still Human Scene,tt0490181\n-05NPfkubKo,2008.0,5,10,2017,Mutant Chronicles,Juba's Last Stand Scene,tt0490181\nJrPRGahKOoI,2008.0,4,10,2017,Mutant Chronicles,What Do You Weigh? Scene,tt0490181\nVfos_yqayxw,2008.0,3,10,2017,Mutant Chronicles,Crash Landing Scene,tt0490181\nz3t0ltbfMJ8,2008.0,2,10,2017,Mutant Chronicles,How Do You Kill Them? Scene,tt0490181\nXFHh8V9eIaU,2012.0,9,10,2017,Hellbenders,God Is on Our Side Scene,tt1865393\ngSpHZ8Kuh4o,2012.0,10,10,2017,Hellbenders,Send Me to Hell Scene,tt1865393\nufhTl0M3rn4,2012.0,7,10,2017,Hellbenders,Priest Brawl Scene,tt1865393\nY8ML1TO5-JY,2012.0,8,10,2017,Hellbenders,The God Killer Scene,tt1865393\nehyYdjaZnoA,2012.0,5,10,2017,Hellbenders,The Demon's Revenge Scene,tt1865393\nlxl55rsNihE,2012.0,6,10,2017,Hellbenders,Down and Out Scene,tt1865393\nZ4nVqjAr_n8,2012.0,4,10,2017,Hellbenders,Demon Beatdown Scene,tt1865393\nABrBbozUYaI,2012.0,3,10,2017,Hellbenders,Sin Quota Scene,tt1865393\n8oZJuop-N_g,2012.0,2,10,2017,Hellbenders,Getting High Scene,tt1865393\n3YGQ4oen7gM,2012.0,1,10,2017,Hellbenders,Possessed Rabbi Scene,tt1865393\nwMAAK7i1ib0,2008.0,3,10,2017,War of the Worlds 2,Inside the Alien Scene,tt1183733\nQjJO-cEmxWg,2008.0,8,10,2017,War of the Worlds 2,\"Vaporized, Again Scene\",tt1183733\np8zwrVyJHxw,2008.0,2,10,2017,War of the Worlds 2,What Are You Waiting For? Scene,tt1183733\nbp4HJ3JRxag,2008.0,9,10,2017,War of the Worlds 2,Suck On That Scene,tt1183733\nCKtSDzT-SOo,2008.0,10,10,2017,War of the Worlds 2,Get Us Out of Here Scene,tt1183733\nmkSxYpK4ALw,2008.0,7,10,2017,War of the Worlds 2,Entering the Martian Atmosphere Scene,tt1183733\n4Q0eWJZIev0,2008.0,6,10,2017,War of the Worlds 2,Braving the Swarm Scene,tt1183733\nSBW3d6oYdkU,2008.0,5,10,2017,War of the Worlds 2,Don't Touch the Walls Scene,tt1183733\nS5fwxvrutg8,2008.0,4,10,2017,War of the Worlds 2,Fortune Favors the Bold Scene,tt1183733\nq5ZwRphkFuc,2008.0,1,10,2017,War of the Worlds 2,I'm Gonna Find You Scene,tt1183733\nJq0iZ5okXgU,2005.0,5,10,2017,War of the Worlds,The Essence of Faith Scene,tt0407304\nIwOoajZyRZU,2005.0,6,10,2017,War of the Worlds,I Don't Need the Lord! Scene,tt0407304\n8Chr00fm6AM,2005.0,10,10,2017,War of the Worlds,Family Reunion Scene,tt0407304\njk1IJ5ggyQs,2005.0,2,10,2017,War of the Worlds,Bombing the Bridge Scene,tt0407304\nsG41m7hVl9E,2005.0,9,10,2017,War of the Worlds,Come With Us or Die Scene,tt0407304\nkzh2pWa1lzk,2005.0,3,10,2017,War of the Worlds,Horror in the Streets Scene,tt0407304\n0Ij2veeSsE4,2005.0,8,10,2017,War of the Worlds,I Believed in Lies and Fiction Scene,tt0407304\nMkiewChfW9k,2005.0,7,10,2017,War of the Worlds,This Is the Rapture Scene,tt0407304\n90EupUjxPIM,2005.0,4,10,2017,War of the Worlds,\"I Love You, Bro Scene\",tt0407304\nedjnSDwMFXQ,2005.0,1,10,2017,War of the Worlds,The Invasion Begins Scene,tt0407304\n5dlDHt93ng8,2013.0,8,10,2017,Gangster Squad,Cops vs. Gangsters Scene,tt1321870\n2onL0hkBVJc,2013.0,9,10,2017,Gangster Squad,Here Comes Santy Claus Scene,tt1321870\nFOeyhFQK19c,2013.0,10,10,2017,Gangster Squad,Fistfight Arrest Scene,tt1321870\n01Im5dacdqE,2013.0,7,10,2017,Gangster Squad,Dropping Dirty Cops Scene,tt1321870\nOjmXuqNMrDY,2013.0,6,10,2017,Gangster Squad,The Chinatown Trap Scene,tt1321870\nqG0W2UhUKRc,2013.0,5,10,2017,Gangster Squad,Get Out of Town Scene,tt1321870\nRdl0ApAeczQ,2013.0,4,10,2017,Gangster Squad,You're Officially Retired Scene,tt1321870\nq5_LSGwd19k,2013.0,3,10,2017,Gangster Squad,Bugging Mickey's House Scene,tt1321870\nz3H-ozBnwQ4,2013.0,2,10,2017,Gangster Squad,Gangster Warfare Scene,tt1321870\nmEmmWa3xK8k,2013.0,1,10,2017,Gangster Squad,The Squad's First Mission Scene,tt1321870\ngyRxos8xOyM,2012.0,5,10,2017,To the Wonder,Chasing Moonbeams Scene,tt1595656\nwMa7Xd9GuUo,2012.0,2,10,2017,To the Wonder,How I Loved You Scene,tt1595656\nR_qiBsGsQfI,2012.0,3,10,2017,To the Wonder,Human and Divine Love Scene,tt1595656\nO-Odu2P8X1M,2012.0,4,10,2017,To the Wonder,How Long Will You Hide Yourself? Scene,tt1595656\n9isn7V7c2gg,2012.0,9,10,2017,To the Wonder,\"Christ, Be With Me Scene\",tt1595656\n0K-qOSq4vz0,2012.0,1,10,2017,To the Wonder,Love Makes Us One Scene,tt1595656\nmt6D8QQ-nIY,2012.0,6,10,2017,To the Wonder,Be Free Scene,tt1595656\nD97vMpPHzDg,2012.0,7,10,2017,To the Wonder,You Shall Love Scene,tt1595656\nMviysUwcItA,2012.0,10,10,2017,To the Wonder,Love that Loves Us Scene,tt1595656\nQw9ltquDJRs,2012.0,8,10,2017,To the Wonder,Forgive Me Scene,tt1595656\nRuZhnKanGQ4,2012.0,9,11,2017,Drift,60 Seconds Left Scene,tt1667889\nh0aovIIojck,2012.0,11,11,2017,Drift,JB Departs Scene,tt1667889\n-bYLI4I8vkI,2012.0,10,11,2017,Drift,The Front Page Scene,tt1667889\n54CMOjYbovs,2012.0,8,11,2017,Drift,Qualifying Round Scene,tt1667889\nZQfZtwole3U,2012.0,7,11,2017,Drift,Goodbye Scene,tt1667889\ngjODxXACjnc,2012.0,5,11,2017,Drift,The Big Wave Scene,tt1667889\nM2AUEpmLf68,2012.0,6,11,2017,Drift,Heroin Scene,tt1667889\nLLeKCWFnlW0,2012.0,1,11,2017,Drift,The New Boards Scene,tt1667889\n2bdQKmp6hc0,2012.0,4,11,2017,Drift,Opens Scene,tt1667889\nTU_iltXEntg,2012.0,3,11,2017,Drift,Peace Scene,tt1667889\nTyo-f87JA38,2012.0,2,11,2017,Drift,Living the Dream Scene,tt1667889\nx7yAcIuyOb4,1989.0,4,11,2017,The Fabulous Baker Boys,A Very Special Lady Scene,tt0097322\ngQNFCRom7c0,1989.0,6,11,2017,The Fabulous Baker Boys,Makin' Whoopee Scene,tt0097322\nBX-hxkRsaT4,1989.0,9,11,2017,The Fabulous Baker Boys,The Telethon Scene,tt0097322\n_4DRXSdPuCo,1989.0,10,11,2017,The Fabulous Baker Boys,Brother vs. Brother Scene,tt0097322\nQyeYgwO4ADg,1989.0,11,11,2017,The Fabulous Baker Boys,A Final Drink Scene,tt0097322\nmbTKo5Ylypw,1989.0,5,11,2017,The Fabulous Baker Boys,One Happy Family Scene,tt0097322\noZlQMLXqw0g,1989.0,1,11,2017,The Fabulous Baker Boys,Miracle Hair Scene,tt0097322\ndyXlsD7Gx0Y,1989.0,7,11,2017,The Fabulous Baker Boys,Ballroom Back Massage Scene,tt0097322\n7hacgmRbdMM,1989.0,8,11,2017,The Fabulous Baker Boys,\"\"\"Feelings\"\" Is Parsley Scene\",tt0097322\npxSjP6JkAis,1989.0,3,11,2017,The Fabulous Baker Boys,Susie Diamond Scene,tt0097322\nHxtm9DG4k4o,1989.0,2,11,2017,The Fabulous Baker Boys,Painful Auditions Scene,tt0097322\nBtL6iIh95ag,2012.0,5,12,2017,Stand Up Guys,Car Chase Scene,tt1389096\nMD9AvOexMWY,2012.0,12,12,2017,Stand Up Guys,Final Shootout Scene,tt1389096\nMI0ZlakXWFM,2012.0,9,12,2017,Stand Up Guys,The Nutcracker Scene,tt1389096\naCqeaDIGLD4,2012.0,2,12,2017,Stand Up Guys,Do You Like to Dance? Scene,tt1389096\n4QCMLXFfJyY,2012.0,6,12,2017,Stand Up Guys,Menage a Trois Scene,tt1389096\nUUSLRRjc57o,2012.0,10,12,2017,Stand Up Guys,Hirsch's Eulogy Scene,tt1389096\nvVaBlzQzmjQ,2012.0,11,12,2017,Stand Up Guys,I Love You Scene,tt1389096\nxKrzCRKABjY,2012.0,8,12,2017,Stand Up Guys,Time to Kick Ass Scene,tt1389096\nfuyK26nKaPw,2012.0,7,12,2017,Stand Up Guys,Someone's in the Trunk Scene,tt1389096\n6FtMdJEg2ak,2012.0,1,12,2017,Stand Up Guys,Deliver the Package Scene,tt1389096\nziue9g2nXZ0,2012.0,4,12,2017,Stand Up Guys,Erection Emergency Scene,tt1389096\nca3ejioEyiE,2012.0,3,12,2017,Stand Up Guys,You're My Only Friend Scene,tt1389096\neMru-ZnAzUk,2013.0,1,10,2017,Hours,\"I'm Sorry, Mr. Hayes Scene\",tt2094018\nh1wWMu4nyRE,2013.0,3,10,2017,Hours,I Want You Back Scene,tt2094018\nFYUDzpVRYio,2013.0,7,10,2017,Hours,Calling for Help Scene,tt2094018\n3rlz8tdE5Mg,2013.0,8,10,2017,Hours,You'll Be an Amazing Father Scene,tt2094018\nyjQqsPi138w,2013.0,5,10,2017,Hours,Floods and a Dying Battery Scene,tt2094018\nekakyXFzHwM,2013.0,4,10,2017,Hours,The Power Goes Out Scene,tt2094018\nADy7gUvipWw,2013.0,6,10,2017,Hours,The Proposal Scene,tt2094018\nRWm6781MWb8,2013.0,2,10,2017,Hours,There She Is Scene,tt2094018\nTR6tZ5CKRVg,2013.0,9,10,2017,Hours,Drug Looters Scene,tt2094018\nrVQAt6GkMgk,2013.0,10,10,2017,Hours,Proud Father Scene,tt2094018\nRZvJ5MoPjGs,2013.0,10,10,2017,Blood Ties,Racing to Save a Brother Scene,tt1747958\np6SMuW5b91o,2013.0,7,10,2017,Blood Ties,I Love You Scene,tt1747958\niKQIxiobVGM,2013.0,5,10,2017,Blood Ties,Robbery In Progress Scene,tt1747958\nNOe3intBN0w,2013.0,8,10,2017,Blood Ties,What's in it for Me? Scene,tt1747958\njQVO3AWAgHU,2013.0,9,10,2017,Blood Ties,I Will Kill You Scene,tt1747958\n0H3xMXZWU78,2013.0,3,10,2017,Blood Ties,Wanna Get Married? Scene,tt1747958\np0Iwafu7J4Q,2013.0,6,10,2017,Blood Ties,Chasing a Criminal Scene,tt1747958\nbCAXuyqUJzs,2013.0,4,10,2017,Blood Ties,I Want You to Leave Scene,tt1747958\nylzTTNLGlD4,2013.0,1,10,2017,Blood Ties,I Want to Be With You Scene,tt1747958\nIFVWE5XHflo,2013.0,2,10,2017,Blood Ties,The Job Scene,tt1747958\nI6JIv4ht8OU,2009.0,9,10,2017,Raging Phoenix,Fighting the Gang Scene,tt1551621\n4qdHRWWX2gM,2009.0,8,10,2017,Raging Phoenix,Bridge Fight Scene,tt1551621\nBcRrXppXfEU,2009.0,10,10,2017,Raging Phoenix,Deu vs. the Gang Leader Scene,tt1551621\nlBIi9tKMz2g,2009.0,5,10,2017,Raging Phoenix,Ninja Fight Scene,tt1551621\n0EXwWYHzUNM,2009.0,7,10,2017,Raging Phoenix,The Dark Truth Scene,tt1551621\nFb3LibJlRdM,2009.0,6,10,2017,Raging Phoenix,Beach Fight Scene,tt1551621\nmClqKZl0KEs,2009.0,4,10,2017,Raging Phoenix,Dance Fighting Scene,tt1551621\n5K-YqPyi3BA,2009.0,1,10,2017,Raging Phoenix,Stilt Fight Scene,tt1551621\nXRKrwa_--2U,2009.0,2,10,2017,Raging Phoenix,Breakdance Fight Scene,tt1551621\ncSOwRJe9hSs,2009.0,3,10,2017,Raging Phoenix,Drunk Fighting Lessons Scene,tt1551621\niv8bdd2-Y0w,2011.0,6,10,2017,2012: Ice Age,Your Whole Family Is Dead! Scene,tt1846444\nvk3s_WgZl1M,2011.0,5,10,2017,2012: Ice Age,A Crushing Cold Scene,tt1846444\n7x43p4KHLLI,2011.0,1,10,2017,2012: Ice Age,Every Volcano Is Erupting Scene,tt1846444\noHAtHxDF6DQ,2011.0,7,10,2017,2012: Ice Age,Through the Storm Scene,tt1846444\ntrKur9bR2aE,2011.0,2,10,2017,2012: Ice Age,Watch For Falling Ice Scene,tt1846444\nhxwuvmJyM8s,2011.0,4,10,2017,2012: Ice Age,A Little Science Project Scene,tt1846444\nRbI_bPsWnmQ,2011.0,8,10,2017,2012: Ice Age,Icy Escape Scene,tt1846444\nW8tB9ZTiPpw,2011.0,9,10,2017,2012: Ice Age,Frozen Explosion Scene,tt1846444\nU-FFwUkA2QU,2011.0,10,10,2017,2012: Ice Age,Saved by the Statue of Liberty Scene,tt1846444\nEpzearSkgOM,2011.0,3,10,2017,2012: Ice Age,Ice Storm Accident Scene,tt1846444\nzFIHYJAp2rc,2013.0,2,10,2017,Elysium,Exoskeleton Surgery Scene,tt1535108\n60V3JFUPvIE,2013.0,1,10,2017,Elysium,Doomed to Die Scene,tt1535108\n1kNZdy-IxNQ,2013.0,4,10,2017,Elysium,Kruger's Kill Scene,tt1535108\n_BjawJWZIxo,2013.0,8,10,2017,Elysium,Max vs. Kruger Scene,tt1535108\n3uUUeNqdMMU,2013.0,5,10,2017,Elysium,Crash Landing Scene,tt1535108\nf4gmgTebHog,2013.0,10,10,2017,Elysium,Max's Destiny Scene,tt1535108\nOzliqFzK36E,2013.0,3,10,2017,Elysium,Bot Combat Scene,tt1535108\n6j-vjtJ7PRI,2013.0,6,10,2017,Elysium,Facial Reconstruction Scene,tt1535108\nc_6SIVs_M5Q,2013.0,7,10,2017,Elysium,I Will Hunt You Down Scene,tt1535108\n2cJGGVlQ8X8,2013.0,9,10,2017,Elysium,No Coming Back Scene,tt1535108\nVMLlpJdCYG0,2012.0,10,10,2017,Arbitrage,Ellen's Blackmail Scene,tt1764183\nVIlnM_wcw0w,2012.0,8,10,2017,Arbitrage,Making the Deal Scene,tt1764183\na5AnZBVyCCw,2012.0,7,10,2017,Arbitrage,Too Complicated Scene,tt1764183\n1psPf8n2AKo,2012.0,9,10,2017,Arbitrage,How Much is Ten Years Worth? Scene,tt1764183\nOg1Ptc7w7GI,2012.0,6,10,2017,Arbitrage,You Work for Me! Scene,tt1764183\nzJ08DhVEAiI,2012.0,1,10,2017,Arbitrage,A Deal Goes Bad Scene,tt1764183\ngkStl7MVRnU,2012.0,5,10,2017,Arbitrage,Questioned by the Police Scene,tt1764183\nvyVGOQCHbTA,2012.0,2,10,2017,Arbitrage,The Car Crash Scene,tt1764183\naBMH3MEYNIg,2012.0,3,10,2017,Arbitrage,We're Not Here Scene,tt1764183\nOOfMTt2XfWU,2012.0,4,10,2017,Arbitrage,They're Going to Come to You Scene,tt1764183\nW6Y6riI56Dg,2012.0,10,10,2017,Shadow Dancer,The Ending Scene,tt1770734\nYb9EnN_gvu0,2012.0,4,10,2017,Shadow Dancer,You Have to Be Sure Scene,tt1770734\n1dcHIATBkS0,2012.0,5,10,2017,Shadow Dancer,I'm Inside Scene,tt1770734\ntjpRBPJGPjY,2012.0,3,10,2017,Shadow Dancer,\"Nobody Dies, Nobody Gets Hurt Scene\",tt1770734\ncvvBpQoiZpg,2012.0,6,10,2017,Shadow Dancer,Assassination Attempt Scene,tt1770734\ncPBHxDtI3Ok,2012.0,9,10,2017,Shadow Dancer,I'm Dead Scene,tt1770734\nfF8O4drwH-I,2012.0,7,10,2017,Shadow Dancer,Interrogation Scene,tt1770734\nNtn3ksJwDpk,2012.0,1,10,2017,Shadow Dancer,Family Tragedy Scene,tt1770734\n-rMac-9Z66w,2012.0,8,10,2017,Shadow Dancer,A Soldier's Funeral Scene,tt1770734\n2U2zhXAXdhQ,2012.0,2,10,2017,Shadow Dancer,The Bomb Scene,tt1770734\nwbwXHxqxDwc,1979.0,6,11,2017,Murder by Decree,Mary Kelly Scene,tt0079592\n_RWkRZDPnao,1979.0,11,11,2017,Murder by Decree,The Story of Annie Crook Scene,tt0079592\nNvvU_4PsiKo,1979.0,9,11,2017,Murder by Decree,Discovering the Killers Scene,tt0079592\nVAaeEoQq6jY,1979.0,2,11,2017,Murder by Decree,Investigating the Crime Scene,tt0079592\n6EfYYxmfABk,1979.0,5,11,2017,Murder by Decree,Confronting Sir Charles,tt0079592\nyq571gv49HQ,1979.0,10,11,2017,Murder by Decree,Fight for Survival Scene,tt0079592\n86sXLVakflE,1979.0,8,11,2017,Murder by Decree,The Radical Informant Scene,tt0079592\nraM63LAHuwo,1979.0,4,11,2017,Murder by Decree,Meeting at the Wharf Scene,tt0079592\ncEezHIqQrEw,1979.0,1,11,2017,Murder by Decree,Insulting the Prince Scene,tt0079592\nh1aJoWg4vGo,1979.0,3,11,2017,Murder by Decree,The Last Pea Scene,tt0079592\nt5zrRGTShZA,1979.0,7,11,2017,Murder by Decree,Don't Let Them Hurt Me Scene,tt0079592\nTXRHf6Hzg0g,2009.0,4,5,2017,Hulk Vs.,Sif and Enchantress,tt1325753\nkYlPBN4yMe0,2009.0,5,5,2017,Hulk Vs.,Thor and Loki Team Up Scene,tt1325753\nd3HAOZbAj1Q,2009.0,2,5,2017,Hulk Vs.,Hulk vs. Thor: Round One Scene,tt1325753\n5vY-zNTuq8E,2009.0,3,5,2017,Hulk Vs.,Puny God Scene,tt1325753\nieVPPV5S0Ps,2009.0,1,5,2017,Hulk Vs.,Banner Meets the Hulk Scene,tt1325753\nDU1C6QrVmuU,2008.0,8,10,2017,2012 Doomsday,The Chosen Messengers of Christ Scene,tt1132130\nfLFf012Auvc,2008.0,2,10,2017,2012 Doomsday,Clearing Out of California Scene,tt1132130\nEur_GSTH4oA,2008.0,10,10,2017,2012 Doomsday,Just the Beginning Scene,tt1132130\nWKoY2kS1UNo,2008.0,7,10,2017,2012 Doomsday,Death by Hail Scene,tt1132130\nS5EWvpoWIBk,2008.0,6,10,2017,2012 Doomsday,\"So Close, Yet So Far Scene\",tt1132130\nfXElquKFrMo,2008.0,4,10,2017,2012 Doomsday,A Bumpy Ride Scene,tt1132130\neBx_WJQ25Ec,2008.0,3,10,2017,2012 Doomsday,We Must Make it to the Pyramid Scene,tt1132130\nhG2yx-PTxys,2008.0,1,10,2017,2012 Doomsday,End of Days Scene,tt1132130\nEi9RooSCn14,2008.0,5,10,2017,2012 Doomsday,The Rapture Scene,tt1132130\nA6b9rDbdOzI,2008.0,9,10,2017,2012 Doomsday,A Doomsday Birth Scene,tt1132130\nhgGi1ODlBBo,2012.0,6,10,2017,Total Recall,Traitors Get Put to Death Scene,tt1386703\nqLoufJLKN6Q,2012.0,5,10,2017,Total Recall,Delusion or Reality? Scene,tt1386703\ndzzijuZof1w,2012.0,8,10,2017,Total Recall,Anti-Gravity Gun Fight Scene,tt1386703\nibAU8weiUOI,2012.0,1,10,2017,Total Recall,Secret Agent Scene,tt1386703\nd_A4tfEukp4,2012.0,3,10,2017,Total Recall,Who the Hell Am I? Scene,tt1386703\nBf6FD5UbSns,2012.0,4,10,2017,Total Recall,Car Chase Scene,tt1386703\nRgubwsCVg1o,2012.0,2,10,2017,Total Recall,I'm Not Your Wife Scene,tt1386703\ndw95Qsj59NA,2012.0,9,10,2017,Total Recall,Hauser vs. Cohaagen Scene,tt1386703\n_92v2IFT7WE,2012.0,7,10,2017,Total Recall,Elevator Explosion Scene,tt1386703\n68SlAT125f8,2012.0,10,10,2017,Total Recall,Destroying the Fall Scene,tt1386703\nwfAfwKUkfHU,2009.0,1,12,2017,Blood Creek,The Power of the Occult Scene,tt0450336\n5V-C6ziFKMA,2009.0,10,12,2017,Blood Creek,You Made This Possible Scene,tt0450336\nH4d8EcquSUM,2009.0,2,12,2017,Blood Creek,Wake Up! Scene,tt0450336\no-6E3Hd2OW0,2009.0,7,12,2017,Blood Creek,Possession Scene,tt0450336\nBbbXgjwlOpI,2009.0,8,12,2017,Blood Creek,Book Burning Scene,tt0450336\nA6oAEu3DbKk,2009.0,6,12,2017,Blood Creek,Zombie Horse Scene,tt0450336\nTc7e-4kbDto,2009.0,3,12,2017,Blood Creek,Breaking Into the House Scene,tt0450336\nnBZ39gX_FlU,2009.0,5,12,2017,Blood Creek,Evil Breaks Free Scene,tt0450336\nxuhl1rceZdE,2009.0,12,12,2017,Blood Creek,You Poisoned Me! Scene,tt0450336\n8wY9r2cpbxQ,2009.0,4,12,2017,Blood Creek,Time Doesn't Touch Us Scene,tt0450336\npadXZANlFwE,2009.0,9,12,2017,Blood Creek,You're Going to Feed Me Scene,tt0450336\nD8Cra7i2kGc,2009.0,11,12,2017,Blood Creek,Gaining Power Scene,tt0450336\nK3dG3JrXAJc,2006.0,1,11,2017,Fido,Zomcon Newsreel Scene,tt0457572\nCfsveeSvZNw,2006.0,6,11,2017,Fido,Zombie Troubles Scene,tt0457572\ndK2oGZK490w,2006.0,7,11,2017,Fido,Zombies Can't Drink Scene,tt0457572\n6_yYxTkdIk8,2006.0,8,11,2017,Fido,Blast Him! Scene,tt0457572\nV2RKM83CQ_A,2006.0,9,11,2017,Fido,A Crazy Wonderful Zombie Scene,tt0457572\nY9OrRbeB-rU,2006.0,11,11,2017,Fido,I Call Him Daddy Scene,tt0457572\nERlyrvQbqP8,2006.0,3,11,2017,Fido,A Surprise Scene,tt0457572\ndEqrnOk8P1Q,2006.0,2,11,2017,Fido,Dead or Alive? Scene,tt0457572\nEDq1QNZ_JJo,2006.0,4,11,2017,Fido,Let's Call You  Scene,tt0457572\n5dE-JjnKznQ,2006.0,5,11,2017,Fido,That's Mrs. Henderson! Scene,tt0457572\njpTj6qTyIwY,2006.0,10,11,2017,Fido,The Wrong Side of the Fence Scene,tt0457572\nqKT2-0WUbGY,2007.0,9,10,2017,The Signal,Surrounded by Crazy People Scene,tt0780607\na1ewWPS5ULg,2007.0,8,10,2017,The Signal,Lewis Meets Ben Scene,tt0780607\n8I1qHr1kjF8,2007.0,4,10,2017,The Signal,I Was Shot Scene,tt0780607\ntbu7lOVTric,2007.0,6,10,2017,The Signal,Desperate Measures Scene,tt0780607\nXQO-ftv4ePQ,2007.0,5,10,2017,The Signal,The Party's Been Canceled Scene,tt0780607\n81ZejwnzklY,2007.0,10,10,2017,The Signal,I'm You Scene,tt0780607\n4A-T8umqRYE,2010.0,8,10,2017,2010: Moby Dick,Going Down Twice Scene,tt1694508\neTGHFj1kdsI,2007.0,1,10,2017,The Signal,Where Have You Been? Scene,tt0780607\nhca09uawN_8,2007.0,2,10,2017,The Signal,Put the Bat Down Scene,tt0780607\nEpzv2FLSjhk,2007.0,3,10,2017,The Signal,Murder the World Scene,tt0780607\nfthLa-kq3WI,2007.0,7,10,2017,The Signal,Act Natural Scene,tt0780607\n-V7_zk4wpQs,2010.0,5,10,2017,2010: Moby Dick,He's the Devil! Scene,tt1694508\nzpCCg4DtXCU,2010.0,3,10,2017,2010: Moby Dick,Nuclear Strike Scene,tt1694508\nbc4_fCULOKk,2010.0,1,10,2017,2010: Moby Dick,\"You're Wrong, Ahab Scene\",tt1694508\njdYgR4Vqwuw,2010.0,2,10,2017,2010: Moby Dick,He Will Roll in His Own Blood Scene,tt1694508\ns1-5EZM82lM,2010.0,4,10,2017,2010: Moby Dick,Cutting it Close Scene,tt1694508\nGGVL7N6Wz8I,2010.0,6,10,2017,2010: Moby Dick,I Am the Fates Scene,tt1694508\nXkYj78aDy2I,2010.0,7,10,2017,2010: Moby Dick,He's Under Us! Scene,tt1694508\n_txmRGsX5ss,2010.0,9,10,2017,2010: Moby Dick,I Spit My Last Breath at You Scene,tt1694508\nXjYQd3hE6xI,2010.0,10,10,2017,2010: Moby Dick,The Unkillable Beast Scene,tt1694508\nteoyewW1bUY,2008.0,3,10,2017,Stargate: The Ark of Truth,Going to Hell Scene,tt0942903\nN9EnEuH0Tgo,2008.0,5,10,2017,Stargate: The Ark of Truth,Teal'c Down Scene,tt0942903\nOSkFsRL177o,2008.0,10,10,2017,Stargate: The Ark of Truth,\"I Was Blind, But Now I See Scene\",tt0942903\n1CXkATQLZGk,2008.0,9,10,2017,Stargate: The Ark of Truth,Replicator Reckoning Scene,tt0942903\nImO-q-hTdAc,2008.0,8,10,2017,Stargate: The Ark of Truth,Morgan Le Fay Scene,tt0942903\neRITzdlHJXA,2008.0,7,10,2017,Stargate: The Ark of Truth,A True God By Any Definition Scene,tt0942903\n2b-ip6hZYgE,2008.0,6,10,2017,Stargate: The Ark of Truth,Marrick the Replicator Scene,tt0942903\nRU2IP_oUqyc,2008.0,4,10,2017,Stargate: The Ark of Truth,Replicated Replicators Scene,tt0942903\ny2_oXPF2b3Y,2008.0,1,10,2017,Stargate: The Ark of Truth,Inside This Ark Scene,tt0942903\nhuxXgcGvTPk,2008.0,2,10,2017,Stargate: The Ark of Truth,Visions and Replicators Scene,tt0942903\ngrpGRWYL6mQ,2008.0,10,10,2017,Stargate: Continuum,The Extraction Scene,tt0929629\npPcxCk8YBVs,2008.0,9,10,2017,Stargate: Continuum,We're About to Be Boarded Scene,tt0929629\nGeLDjQIIkdI,2008.0,8,10,2017,Stargate: Continuum,In the Nick of Time Travel Scene,tt0929629\nUCCkKfTVEy4,2008.0,7,10,2017,Stargate: Continuum,Shoot the People Chasing Us Scene,tt0929629\nkFbDy90VZQY,2008.0,6,10,2017,Stargate: Continuum,As the Sovereign Wishes Scene,tt0929629\nAkjImI2Qpew,2008.0,5,10,2017,Stargate: Continuum,An Honor to Serve Lord Ba'al Scene,tt0929629\nWv07oUFHGRQ,2008.0,4,10,2017,Stargate: Continuum,Supposed to Be Scene,tt0929629\nf4LEgmt0roE,2008.0,3,10,2017,Stargate: Continuum,Not How It's Supposed To Be Scene,tt0929629\nry9yNbMVeMQ,2008.0,2,10,2017,Stargate: Continuum,Saving the Ship Scene,tt0929629\ns1QgQny2o5E,2008.0,1,10,2017,Stargate: Continuum,All the Time in the World Scene,tt0929629\n9ltpGvaDfBM,1997.0,9,10,2017,Crossworlds,You Are the Weapon Scene,tt0115985\nI5RKRQcsDKU,1997.0,10,10,2017,Crossworlds,Just Plain Joe Scene,tt0115985\nVV26lYf6VyM,1997.0,8,10,2017,Crossworlds,Teleporting Smackdown Scene,tt0115985\nprAOME_9oP8,1997.0,7,10,2017,Crossworlds,A Trunk of Explosives Scene,tt0115985\nCDQw1Ez9yOs,1997.0,6,10,2017,Crossworlds,I Believe in the Floor Scene,tt0115985\n1C84oQva04A,1997.0,5,10,2017,Crossworlds,Shoved Off a Skyscraper Scene,tt0115985\nwpxS1xSxUDY,1997.0,4,10,2017,Crossworlds,Let's Watch the World Go to Hell Scene,tt0115985\nh0i2KfT2SB0,1997.0,3,10,2017,Crossworlds,Try Not to Die Scene,tt0115985\nCdppQAIYPzY,1997.0,2,10,2017,Crossworlds,Living Suits of Armor Scene,tt0115985\nKccpJ0xD-7E,1997.0,1,10,2017,Crossworlds,She's Dangerous in Bed Scene,tt0115985\nP4KHpL7ZHlA,2007.0,9,10,2017,Timecrimes,The Second Time Traveler Scene,tt0480669\ng1axUa-NsEE,2007.0,10,10,2017,Timecrimes,The Timeline Restored? Scene,tt0480669\nKxyzb-o56QQ,2007.0,8,10,2017,Timecrimes,I Have to Get Back In Scene,tt0480669\nAqAm2IAg5Fw,2007.0,7,10,2017,Timecrimes,The Timeline Destroyed Scene,tt0480669\n9Q2UjqahNSw,2007.0,6,10,2017,Timecrimes,What About My Panties? Scene,tt0480669\nm8KBXUCttEw,2007.0,5,10,2017,Timecrimes,Pull Up Your Shirt Scene,tt0480669\nWQXNChLdnvI,2007.0,4,10,2017,Timecrimes,I Am the Bandage Killer Scene,tt0480669\nwVC_xkrm6kU,2007.0,3,10,2017,Timecrimes,\"Hector 1, Hector 2 Scene\",tt0480669\nd5n-bZf3eVE,2007.0,2,10,2017,Timecrimes,You Went Back in Time Scene,tt0480669\nYZ8k016_bvc,2007.0,1,10,2017,Timecrimes,The Bandage Killer Scene,tt0480669\n1tryt4ddnWw,2009.0,8,10,2017,2012: Supernova,A Shocking Revelation Scene,tt1479847\n-Kv4O5dyrzM,2009.0,10,10,2017,2012: Supernova,We're Still Here Scene,tt1479847\nKmuxPl7RkK4,2009.0,9,10,2017,2012: Supernova,A Sacrifice to Save the World Scene,tt1479847\n5N86yJbOjYM,2009.0,7,10,2017,2012: Supernova,Our Finest Final Hour Scene,tt1479847\nC-NaBwskUp8,2009.0,6,10,2017,2012: Supernova,Surviving the Storm Scene,tt1479847\n-4Qk4eACpXI,2009.0,4,10,2017,2012: Supernova,Ninja Heist Scene,tt1479847\nnf1DA90KAIY,2009.0,5,10,2017,2012: Supernova,Too Much at Stake Scene,tt1479847\nU87C_o3_qOo,2009.0,3,10,2017,2012: Supernova,Rock 'N' Roll Scene,tt1479847\nN-dpQITO2fo,2009.0,1,10,2017,2012: Supernova,We're All in Danger Scene,tt1479847\n4q5rmjaO9Cw,2009.0,2,10,2017,2012: Supernova,Supernova Scare Scene,tt1479847\nkAFxKPtwYuU,2012.0,4,10,2017,This Is 40,Are Those Real? Scene,tt1758830\njjpQORCD0ZU,2012.0,5,10,2017,This Is 40,You're Acting Like a B Scene,tt1758830\nGH-oJGZKmq8,2012.0,9,10,2017,This Is 40,Bodies By Jason Scene,tt1758830\n-mlfefNP8cw,2012.0,3,10,2017,This Is 40,I Do Want to Kill You Scene,tt1758830\nc4X58OjlVPo,2012.0,8,10,2017,This Is 40,Oxy Kitten Scene,tt1758830\nMIZSWO65BXQ,2012.0,10,10,2017,This Is 40,The Jew Card Scene,tt1758830\nrrMvGHoW7aw,2012.0,2,10,2017,This Is 40,Making Some Changes Scene,tt1758830\nmFH_r2w28rM,2012.0,6,10,2017,This Is 40,Simon and Garfunkel Scene,tt1758830\n6CBfg5X9Z3Y,2012.0,7,10,2017,This Is 40,He Touched My Nipple Scene,tt1758830\ncT1iUwGGUAg,2012.0,1,10,2017,This Is 40,Sex and Loneliness Scene,tt1758830\n84UF11bJDFY,2012.0,2,12,2017,The Big Wedding,Hell it is Then Scene,tt1931435\n6UNDrO9PrzE,2012.0,12,12,2017,The Big Wedding,The Truth Scene,tt1931435\nTjMQwe-R_5Y,2012.0,10,12,2017,The Big Wedding,I'm Your Daughter Scene,tt1931435\nO_CorWKpGvU,2012.0,11,12,2017,The Big Wedding,Bebe Marries Don Scene,tt1931435\nCbPAADCg6ns,2012.0,9,12,2017,The Big Wedding,Eloping on the Dock Scene,tt1931435\n6iOxj7Lgn4I,2012.0,8,12,2017,The Big Wedding,True Symmetry Scene,tt1931435\n3FeBwyb5g0U,2012.0,7,12,2017,The Big Wedding,Breakfast in Bed Scene,tt1931435\nMJ9QAW4LUEY,2012.0,6,12,2017,The Big Wedding,I'm Pregnant Scene,tt1931435\nx2jLrsMN6YY,2012.0,4,12,2017,The Big Wedding,Confession Scene,tt1931435\nvhv17audEAo,2012.0,5,12,2017,The Big Wedding,A Wonderful Dinner Scene,tt1931435\nNFgP1bVZCy4,2012.0,1,12,2017,The Big Wedding,An Unexpected Visitor Scene,tt1931435\ncVGZCFgH-Dg,2012.0,3,12,2017,The Big Wedding,We Aren't Divorced Scene,tt1931435\nANXSdv-KaCQ,2014.0,9,10,2017,Date and Switch,Caterpillar Song Scene,tt1878942\ngSZ82TOHWc0,2014.0,10,10,2017,Date and Switch,Pot Brownie Scene,tt1878942\nXIPjMKd3-1U,2014.0,7,10,2017,Date and Switch,Go-Cart Bumping Scene,tt1878942\nZyHoPZAsm60,2014.0,8,10,2017,Date and Switch,The Prom Scene,tt1878942\nPbC7alhpFBE,2014.0,2,10,2017,Date and Switch,Gay Research Scene,tt1878942\nVvfIdmaKwfQ,2014.0,5,10,2017,Date and Switch,The Stephen Hawking of Luchadores Scene,tt1878942\nXBCML9xJI8I,2014.0,4,10,2017,Date and Switch,\"No Shirt, No Shoes, No Pants Scene\",tt1878942\nYDeGYXbeQV8,2014.0,6,10,2017,Date and Switch,Make-Out Point Scene,tt1878942\nHwaqZA54GTk,2014.0,3,10,2017,Date and Switch,The Gay Bar Scene,tt1878942\nHOY92xiGY2M,2014.0,1,10,2017,Date and Switch,I'm a Gay Dude Scene,tt1878942\nM3DlQK8xFBQ,2012.0,7,10,2017,The Magic of Belle Isle,One Hell of a Mentor Scene,tt1839654\nmbl4cWCn6z4,2012.0,10,10,2017,The Magic of Belle Isle,They Gave Me My Life Back Scene,tt1839654\nh36L-NdLDhI,2012.0,1,10,2017,The Magic of Belle Isle,A Writer Nobody Reads Scene,tt1839654\nPzUxcPh1zPI,2012.0,8,10,2017,The Magic of Belle Isle,\"Reach for the Sky, Mr. Clown Scene\",tt1839654\nkVQN0ZDzIqU,2012.0,9,10,2017,The Magic of Belle Isle,I'll Stick With Real Life Scene,tt1839654\nBxvRz4RftFY,2012.0,6,10,2017,The Magic of Belle Isle,Why Did You Stop Writing? Scene,tt1839654\neaFX0rKv2Fc,2012.0,3,10,2017,The Magic of Belle Isle,So You Write Stories? Scene,tt1839654\n2haHRRfKLJ0,2012.0,5,10,2017,The Magic of Belle Isle,The Mystery of Imagination Scene,tt1839654\nx2EI9M1XFOA,2012.0,4,10,2017,The Magic of Belle Isle,You Want a Mentor Scene,tt1839654\nVqYLWPoXeuc,2012.0,2,10,2017,The Magic of Belle Isle,Discussion With a Dog Scene,tt1839654\nVXkEBRtERnA,1963.0,11,11,2017,Irma la Douce,Baby Girl and Mystery Guest Scene,tt0057187\nrxno2wz0eKc,1963.0,9,11,2017,Irma la Douce,Call-Girl Catfight Scene,tt0057187\nJvG1hHsOFUA,1963.0,10,11,2017,Irma la Douce,A Love Triangle For Two Scene,tt0057187\nBi8Spey13uY,1963.0,4,11,2017,Irma la Douce,Unleashing the Tiger Scene,tt0057187\nkbGvnI1qIz8,1963.0,8,11,2017,Irma la Douce,Meeting With Lord X Scene,tt0057187\niMPV0eFLxbQ,1963.0,7,11,2017,Irma la Douce,A Sticky Wicket Scene,tt0057187\nk01VcZkKDME,1963.0,6,11,2017,Irma la Douce,Lord X Scene,tt0057187\nVXPxIwL1e5g,1963.0,5,11,2017,Irma la Douce,Becoming Lord X Scene,tt0057187\nZQ0JJpvMq-g,1963.0,2,11,2017,Irma la Douce,Harem on Wheels Scene,tt0057187\nZH81ElJu-Jw,1963.0,3,11,2017,Irma la Douce,The World is Full of Opportunities Scene,tt0057187\nlLbWBsRVUAU,1963.0,1,11,2017,Irma la Douce,That Kind of Love Is Illegal Scene,tt0057187\ntXrxBy-CDPc,1988.0,4,8,2017,Arthur 2: On the Rocks,How to Be Poor Scene,tt0094678\ndAoRRTPPIys,1988.0,8,8,2017,Arthur 2: On the Rocks,I Want My Life Back Scene,tt0094678\n84gYIl6Zjks,1988.0,6,8,2017,Arthur 2: On the Rocks,The New Apartment Scene,tt0094678\nkD0zHgK3BJ8,1988.0,7,8,2017,Arthur 2: On the Rocks,It's Up to You Scene,tt0094678\nSqSZ5RSaT8k,1988.0,3,8,2017,Arthur 2: On the Rocks,The Party's Over Scene,tt0094678\nvw44oj_STSw,1988.0,2,8,2017,Arthur 2: On the Rocks,The Adoption Counselor Scene,tt0094678\nUkIwAAKv_iA,1988.0,5,8,2017,Arthur 2: On the Rocks,Thankful for Meatloaf Scene,tt0094678\nan8Z9J29zWo,1988.0,1,8,2017,Arthur 2: On the Rocks,Messing with Fairchild Scene,tt0094678\nS-Io377-jmE,2004.0,6,10,2017,A Love Song for Bobby Long,Not in Love With You Scene,tt0369672\nXYD3ysriZ3k,2004.0,8,10,2017,A Love Song for Bobby Long,Everybody Seeing My Peter Scene,tt0369672\nrcWb_qea8Eo,2004.0,5,10,2017,A Love Song for Bobby Long,Made Up Memories Scene,tt0369672\nW2QDEiF7SGU,2004.0,10,10,2017,A Love Song for Bobby Long,A Toast to Pursy Scene,tt0369672\n1DSkJxktHFY,2004.0,7,10,2017,A Love Song for Bobby Long,Merry Christmas Scene,tt0369672\n0pPOxAQwRgQ,2004.0,9,10,2017,A Love Song for Bobby Long,You're My Father Scene,tt0369672\ni_3ktf3XwNU,2004.0,4,10,2017,A Love Song for Bobby Long,The Senior Male Scene,tt0369672\ni4l0vA9bzaw,2004.0,3,10,2017,A Love Song for Bobby Long,A Tiny Piece of Love Scene,tt0369672\nz1e_c3E9ZR4,2004.0,2,10,2017,A Love Song for Bobby Long,The Heart is a Lonely Hunter Scene,tt0369672\nKuLvoPT5PQM,2004.0,1,10,2017,A Love Song for Bobby Long,This is Our Home Scene,tt0369672\nsWCjRo30-Ls,1990.0,3,9,2017,The Hot Spot,Breaking and Entering Scene,tt0099797\nst8QRZbJdPY,1990.0,9,9,2017,The Hot Spot,Screwing George to Death Scene,tt0099797\n7oqRCOYvOS4,1990.0,8,9,2017,The Hot Spot,Tough Guy Scene,tt0099797\nSJ1_epc6q2E,1990.0,2,9,2017,The Hot Spot,A Real Lady Scene,tt0099797\nkd01w5eLVwo,1990.0,7,9,2017,The Hot Spot,Taking a Dip Scene,tt0099797\nrA6AZeHyw8Q,1990.0,6,9,2017,The Hot Spot,Harry Robs the Bank Scene,tt0099797\nRVu3EPJ4-jA,1990.0,5,9,2017,The Hot Spot,Recognize These? Scene,tt0099797\nBANrqTBnEy4,1990.0,4,9,2017,The Hot Spot,I Don't Know What I'm Doing Here Scene,tt0099797\n3TzAJdCNpZw,1990.0,1,9,2017,The Hot Spot,Bad Boy Scene,tt0099797\nlZltw3ubrGo,2011.0,8,10,2017,The Devil's Double,Assassination Attempt Scene,tt1270262\nKusz_-SyLfE,2011.0,7,10,2017,The Devil's Double,A Murderer and Rapist Scene,tt1270262\nXa36SdTlCZE,2011.0,6,10,2017,The Devil's Double,Meeting Saddam Hussein Scene,tt1270262\nlGVU-OuhTlw,2011.0,9,10,2017,The Devil's Double,Destroying a Marriage Scene,tt1270262\nP2qz2B9snxE,2011.0,10,10,2017,The Devil's Double,Killing Uday Scene,tt1270262\n-ZTTZtzzbmI,2011.0,5,10,2017,The Devil's Double,The Price of Defiance Scene,tt1270262\nxxxnlkTZlCk,2011.0,2,10,2017,The Devil's Double,You Belong to Him Scene,tt1270262\ndDqhjzd8wXk,2011.0,3,10,2017,The Devil's Double,Becoming Uday Scene,tt1270262\nE7CPLxlfKaw,2011.0,4,10,2017,The Devil's Double,One of the Family Scene,tt1270262\nQQe-fCLVBVU,2011.0,1,10,2017,The Devil's Double,You're Asking Me to Extinguish Myself Scene,tt1270262\nFgIgeE7C6bU,2011.0,8,10,2017,Blackthorn,A Well-Deserved Rest Scene,tt1629705\nDdj5oGNtezI,2011.0,7,10,2017,Blackthorn,The Salt Flats Scene,tt1629705\nSAQN4EyLqZk,2011.0,6,10,2017,Blackthorn,My Own Man Scene,tt1629705\nffxg6IB27GM,2011.0,10,10,2017,Blackthorn,Don't Leave Me Here Scene,tt1629705\nMVZn5gTph6M,2011.0,9,10,2017,Blackthorn,The Death of Sundance Scene,tt1629705\nfuXPZqYtnjo,2011.0,3,10,2017,Blackthorn,Butch and Sundance Scene,tt1629705\n_-GaobqA1LE,2011.0,1,10,2017,Blackthorn,You're Empty Scene,tt1629705\nh7i8GGtWf_E,2011.0,2,10,2017,Blackthorn,Shoot the Lights Scene,tt1629705\nXB2CUyVSAq0,2011.0,4,10,2017,Blackthorn,Etta Place Scene,tt1629705\ngj2Y2uEcubE,2011.0,5,10,2017,Blackthorn,Ranch Shootout Scene,tt1629705\naDJgv1iARPg,2010.0,1,10,2017,The Other Guys,Tuna vs. Lion Scene,tt1386588\nXP0SZTwlmMk,2010.0,3,10,2017,The Other Guys,Quiet Fight Scene,tt1386588\n74Od5-Fmf60,2010.0,5,10,2017,The Other Guys,\"Bad Cop, Bad Cop Scene\",tt1386588\ng4FOpeshqA8,2010.0,4,10,2017,The Other Guys,Gator the Pimp Scene,tt1386588\noeW9lZBY-VM,2010.0,6,10,2017,The Other Guys,Pimps Don't Cry Scene,tt1386588\neq3vD93GgLs,2010.0,8,10,2017,The Other Guys,Conference Room Shootout Scene,tt1386588\nMvkN3003iU4,2010.0,2,10,2017,The Other Guys,Aim for the Bushes Scene,tt1386588\nxGeYzlEV5KY,2010.0,9,10,2017,The Other Guys,Old Lady Dirty Talk Scene,tt1386588\nJdZHXwqDXB4,2010.0,7,10,2017,The Other Guys,Big Boy Pants and Suicide Negotiation Scene,tt1386588\njBotZTDEcP8,2010.0,10,10,2017,The Other Guys,Shooting the Golden Goose Scene,tt1386588\nA8nTO1XWlME,2010.0,11,11,2017,Everything Must Go,See You Around Scene,tt1531663\nf_8dti9p0f0,2010.0,7,11,2017,Everything Must Go,Your Momma's So Fat Scene,tt1531663\nB0sO3FekHUU,2010.0,10,11,2017,Everything Must Go,The 13th Step Scene,tt1531663\nEx-eX7zpZno,2010.0,9,11,2017,Everything Must Go,The Yard Sale Scene,tt1531663\nQGRAdMGb5tw,2010.0,8,11,2017,Everything Must Go,What's Normal? Scene,tt1531663\n0i1ihIW8eCY,2010.0,6,11,2017,Everything Must Go,Bark for Me! Scene,tt1531663\nslDxIGhBuIE,2010.0,5,11,2017,Everything Must Go,What Happened? Scene,tt1531663\nmEv2dXzZTV0,2010.0,4,11,2017,Everything Must Go,Selling Mouthwash Scene,tt1531663\nh9HV76Jl2WE,2010.0,2,11,2017,Everything Must Go,Meeting Kenny Scene,tt1531663\n4TBnG3RuU88,2010.0,3,11,2017,Everything Must Go,We Got a Deal? Scene,tt1531663\nTanjysfo1SE,2010.0,1,11,2017,Everything Must Go,Kicked Out Scene,tt1531663\na4OWkIrQUJw,1987.0,5,12,2017,Overboard,Cooking Fiasco Scene,tt0093693\nSM2LxRKqYR8,1987.0,11,12,2017,Overboard,Joanna Regains Her Memory Scene,tt0093693\ndYafG2EuZjs,1987.0,1,12,2017,Overboard,Haughty Joanna Scene,tt0093693\nrKwnRWbuCx4,1987.0,12,12,2017,Overboard,\"Dean and Annie,  Scene\",tt0093693\nYtWJKXNMmhI,1987.0,4,12,2017,Overboard,I'm Your Husband Scene,tt0093693\njt2BPBAWiEQ,1987.0,2,12,2017,Overboard,Rich Bitch Scene,tt0093693\nj_z70ZaqWUE,1987.0,3,12,2017,Overboard,Grant Ditches Joanna Scene,tt0093693\nQPbUj6Ks8j4,1987.0,6,12,2017,Overboard,No Boom Boom Scene,tt0093693\nNpzigSg-YkI,1987.0,7,12,2017,Overboard,Annie Is Catatonic Scene,tt0093693\n3S5E22b49-Q,1987.0,9,12,2017,Overboard,The Washing Machine Scene,tt0093693\n12KcnPMV3OM,1987.0,10,12,2017,Overboard,Billy Claims the Panties Scene,tt0093693\nFBpzRIzISeY,1987.0,8,12,2017,Overboard,Was I Always This Miserable? Scene,tt0093693\n_4juqo20ABE,1987.0,10,11,2017,My Best Friend Is a Vampire,Saving Ralph's Neck Scene,tt0095684\nOosAKayGMj4,1987.0,5,11,2017,My Best Friend Is a Vampire,This is Totally Humiliating Scene,tt0095684\nUBmxdy6C4JI,1987.0,9,11,2017,My Best Friend Is a Vampire,Bad Blood Club Scene,tt0095684\nnToATRUkpMI,1987.0,7,11,2017,My Best Friend Is a Vampire,The Advantages of Vampirism Scene,tt0095684\nti3HSBmEoVU,1987.0,6,11,2017,My Best Friend Is a Vampire,\"First Time, Eh Kid? Scene\",tt0095684\no1RMSG4bnrg,1987.0,11,11,2017,My Best Friend Is a Vampire,We Want to Live in Peace Scene,tt0095684\nNjfviAKKVj4,1987.0,8,11,2017,My Best Friend Is a Vampire,I'm a Vampire Scene,tt0095684\nFkEU_g5u_1c,1987.0,1,11,2017,My Best Friend Is a Vampire,The Dream Scene,tt0095684\n8jyiXMPl6EU,1987.0,3,11,2017,My Best Friend Is a Vampire,I'm Glad You Came Scene,tt0095684\nqyXpj-yVjVg,1987.0,2,11,2017,My Best Friend Is a Vampire,An Unusual Delivery Scene,tt0095684\nL3aF2hwu8yE,1987.0,4,11,2017,My Best Friend Is a Vampire,A Vampire? Scene,tt0095684\nrjLuhEOhj-I,2009.0,9,10,2017,MegaFault,Boomer Bust Scene,tt1436432\nh5WL8to9Gq8,2009.0,10,10,2017,MegaFault,Reunited Scene,tt1436432\nccJ95yYf3Ms,2009.0,8,10,2017,MegaFault,An Extinction Event Scene,tt1436432\ndYaOu80atDo,2009.0,6,10,2017,MegaFault,A Family Rescue Scene,tt1436432\nw5WmCh-cRCA,2009.0,5,10,2017,MegaFault,How Do You Uncouple a Trailer? Scene,tt1436432\nuqA0WkLSyKI,2009.0,3,10,2017,MegaFault,Following the Quake Scene,tt1436432\nh4XKQMfI3B0,2009.0,7,10,2017,MegaFault,Outracing the Beam Scene,tt1436432\nOyUea4_exRU,2009.0,4,10,2017,MegaFault,Freezing the Phreatic Zone Scene,tt1436432\nPIfFHypWnf4,2009.0,2,10,2017,MegaFault,A Level 7 Quake Scene,tt1436432\nZJDgkjbsitw,2009.0,1,10,2017,MegaFault,Demolition Surprise Scene,tt1436432\nNIMWmy-1l4Y,2011.0,3,10,2017,Your Highness,The Wise Wizard Scene,tt1240982\nTFDiCTUAJuE,2011.0,4,10,2017,Your Highness,A Love So True Scene,tt1240982\nFEiK98h1IDc,2011.0,10,10,2017,Your Highness,Storming the Castle Scene,tt1240982\nXeasXb98akc,2011.0,8,10,2017,Your Highness,Things Get Nasty Scene,tt1240982\nNulXXh0cw4c,2011.0,2,10,2017,Your Highness,Stealing the Bride Scene,tt1240982\nkoWhZSL1Kwo,2011.0,9,10,2017,Your Highness,The Blade of Unicorn Scene,tt1240982\nXuNDB-xL6uc,2011.0,7,10,2017,Your Highness,I'm the Chosen One Scene,tt1240982\njiHXahhmzjw,2011.0,6,10,2017,Your Highness,Sex By Campfire Scene,tt1240982\nP2rpcVDPZEY,2011.0,5,10,2017,Your Highness,The Fair Isabel Scene,tt1240982\nrxC2ZWU4IPo,2011.0,1,10,2017,Your Highness,I Want to Be King Scene,tt1240982\nPdgSo4Ts7D4,1984.0,10,10,2017,Conan the Destroyer,Conan vs. Dagoth Scene,tt0087078\nnqF0yFLjiXs,1984.0,8,10,2017,Conan the Destroyer,To Take Care of a Wizard Scene,tt0087078\nhEZcqWRB2iU,1984.0,3,10,2017,Conan the Destroyer,Setting Zula Free Scene,tt0087078\nbLqJo78X3OI,1984.0,9,10,2017,Conan the Destroyer,Stopping a Sacrifice Scene,tt0087078\nPLr1f84fj8U,1984.0,5,10,2017,Conan the Destroyer,The Wizard Toth-Amon Scene,tt0087078\ntEWLG9sG1VM,1984.0,4,10,2017,Conan the Destroyer,Zula Joins the Group Scene,tt0087078\nmUVup2pr_eM,1984.0,1,10,2017,Conan the Destroyer,They Want to Capture Us Scene,tt0087078\nBDZK9B4Gu6g,1984.0,7,10,2017,Conan the Destroyer,Enough Talk! Scene,tt0087078\nbe9FJeol_aQ,1984.0,6,10,2017,Conan the Destroyer,Rescuing Princess Jehnna Scene,tt0087078\nsLKnt2jBax4,1984.0,2,10,2017,Conan the Destroyer,Tribe of Cannibals Scene,tt0087078\nBL312TpdPQQ,2010.0,1,10,2017,Black Death,What is a Necromancer? Scene,tt1181791\n0dC7aMWCULU,2010.0,9,10,2017,Black Death,I Will Renounce God Scene,tt1181791\nGn7MHo0ZZg8,2010.0,2,10,2017,Black Death,A Suspected Witch Scene,tt1181791\nTg_Z2u4GShE,2010.0,8,10,2017,Black Death,Crucified Scene,tt1181791\nrp07bmYWtog,2010.0,10,10,2017,Black Death,I Am Death Scene,tt1181791\nBxne2K4K5GM,2010.0,7,10,2017,Black Death,Who Wants to Live? Scene,tt1181791\n6fJ9PDZDS1M,2010.0,4,10,2017,Black Death,Bandit Attack Scene,tt1181791\nTfGXctZRcLg,2010.0,6,10,2017,Black Death,You Have No Heart Scene,tt1181791\nppaA4P4tr88,2010.0,3,10,2017,Black Death,His Journey's Finished Scene,tt1181791\nl3acfaQKSnk,2010.0,5,10,2017,Black Death,We Seek Refuge Scene,tt1181791\n6VeUp8hdqj0,2008.0,9,10,2017,Merlin and the War of the Dragons,Merlin's Dragons Scene,tt1294699\nBOKbcDdlAAc,2008.0,6,10,2017,Merlin and the War of the Dragons,You're Losing Your Touch Scene,tt1294699\nCnyvrkabX5U,2008.0,10,10,2017,Merlin and the War of the Dragons,Not the Only Son Scene,tt1294699\ndHaZflS9Qag,2008.0,8,10,2017,Merlin and the War of the Dragons,For Britain! Scene,tt1294699\nT6ji12DwRQk,2008.0,7,10,2017,Merlin and the War of the Dragons,Death is Nigh Scene,tt1294699\n2CY78EjBHIY,2008.0,1,10,2017,Merlin and the War of the Dragons,I Want the Child Scene,tt1294699\nuV-0kDRYYbU,2008.0,5,10,2017,Merlin and the War of the Dragons,Merlin's Magic Scene,tt1294699\ncNuHBU3DIAk,2008.0,2,10,2017,Merlin and the War of the Dragons,You're Not Ready Scene,tt1294699\ndbGKS4GQbv4,2008.0,3,10,2017,Merlin and the War of the Dragons,The Mage's Sanctuary Scene,tt1294699\n3WAg9OI2wn8,2008.0,4,10,2017,Merlin and the War of the Dragons,Vendiger the Dragon Master Scene,tt1294699\nklnVwzouc_k,1995.0,11,11,2017,Frank & Jesse,Outlaws and Legends Scene,tt0109835\nwKPbi9oL5xU,1995.0,10,11,2017,Frank & Jesse,The Death of Jesse James Scene,tt0109835\n4_p4EAmMa-M,1995.0,9,11,2017,Frank & Jesse,Downfall of the Gang Scene,tt0109835\n8oq28m4uqe8,1995.0,8,11,2017,Frank & Jesse,The Ill-fated Robbery at Northfield Scene,tt0109835\noLJ7246t3-c,1995.0,7,11,2017,Frank & Jesse,Zee James Scene,tt0109835\nFdq_l2-C1wg,1995.0,2,11,2017,Frank & Jesse,Killing the Railroad Man Scene,tt0109835\nfi7cppyGPPw,1995.0,4,11,2017,Frank & Jesse,Bank Robbery Scene,tt0109835\n2AoKTalyiUA,1995.0,3,11,2017,Frank & Jesse,Let's Be Hunters Scene,tt0109835\nukOx2hZvXkE,1995.0,5,11,2017,Frank & Jesse,The Pinkerton Man Scene,tt0109835\nrefu69Hu5R0,1995.0,6,11,2017,Frank & Jesse,Shooting in the Bathtub Scene,tt0109835\nGbvml-bH5Uc,1995.0,1,11,2017,Frank & Jesse,A Dollar Per Acre Scene,tt0109835\nxqb_BP27cMo,2006.0,8,10,2017,Material Girls,You're Different Than I Thought Scene,tt0433412\nBcdz003oBg8,2010.0,1,12,2017,Frankie & Alice,Frankie is Not Here Scene,tt1221208\n8qWfNcUZoW8,2006.0,10,10,2017,Material Girls,Six Months Later Scene,tt0433412\nJu6_z5Wx9iY,2006.0,6,10,2017,Material Girls,\"No Skills, No Resume Scene\",tt0433412\nlwB834Vz_tA,2006.0,4,10,2017,Material Girls,Credit Card Declined Scene,tt0433412\nwrRy2TR4WtM,2006.0,7,10,2017,Material Girls,Spa Seduction Scene,tt0433412\n5i-LMWpJ_E0,2006.0,9,10,2017,Material Girls,Exfoliation Scene,tt0433412\nbf0eKlTbGtI,2006.0,3,10,2017,Material Girls,Marchetta Everdew Nightmare Scene,tt0433412\nESv_Pi8qlE0,2006.0,5,10,2017,Material Girls,Never Talking to You Again Scene,tt0433412\nO4TI2Nx8RjQ,2006.0,2,10,2017,Material Girls,We Help People Who Are Poor Scene,tt0433412\nLxKahh3H-3U,2006.0,1,10,2017,Material Girls,Our Future Is in the Crapper Scene,tt0433412\nAi5tZ8_dQUU,1987.0,2,10,2017,Who's That Girl,Mr. Louden Clear Scene,tt0094321\nqItvl5cX4-A,1995.0,3,10,2017,Tank Girl,Who Wants an Oil Change Scene,tt0114614\nZLhyjNnrb6s,1995.0,10,10,2017,Tank Girl,I Win Scene,tt0114614\njFQAy28o7Kc,1995.0,9,10,2017,Tank Girl,See You Cats Later Scene,tt0114614\n_XST7hft6k8,1995.0,8,10,2017,Tank Girl,Recite a Poem Scene,tt0114614\n2MxnokvI6c0,1995.0,2,10,2017,Tank Girl,Surprise Attack Scene,tt0114614\nZlqovh9U5v0,1995.0,7,10,2017,Tank Girl,This is a Committee Scene,tt0114614\nYtktNetGOKU,1995.0,4,10,2017,Tank Girl,Sounds Wicked Scene,tt0114614\nQ3n3k6XRQ8s,1995.0,6,10,2017,Tank Girl,That's for Being a Perv! Scene,tt0114614\nCj80JkVCCpg,1995.0,5,10,2017,Tank Girl,The Rippers Scene,tt0114614\nbIfMAhK7Boo,1995.0,1,10,2017,Tank Girl,\"Take Off Your Boots, Captain Scene\",tt0114614\na46m8g3grB8,1987.0,5,10,2017,Who's That Girl,Your Lips Are Moving Scene,tt0094321\nKUMoWS98jXM,1987.0,4,10,2017,Who's That Girl,Dropping Raoul Scene,tt0094321\nR6nZpcweYXw,1987.0,9,10,2017,Who's That Girl,The Groom is in Love With Me Scene,tt0094321\n1Dvx_8APGEo,1987.0,10,10,2017,Who's That Girl,I Love You Nikki Finn Scene,tt0094321\nebHQ50ZRvM4,1987.0,8,10,2017,Who's That Girl,Bell's Rainforest Scene,tt0094321\n6T_01swH-OY,1987.0,7,10,2017,Who's That Girl,Extraordinary Scene,tt0094321\nIH8u5eKHNhs,1987.0,6,10,2017,Who's That Girl,Fake Fiance Scene,tt0094321\nxm2ztDqbbZE,1987.0,3,10,2017,Who's That Girl,Are You the Anti-Christ? Scene,tt0094321\nieoN6CC-9ns,2010.0,11,12,2017,Frankie & Alice,Frankie's Baby Scene,tt1221208\nb2jnKIitsx8,2010.0,10,12,2017,Frankie & Alice,You're Not Alone Scene,tt1221208\n6JIxbckE6MU,2010.0,9,12,2017,Frankie & Alice,You Came for Me Scene,tt1221208\ntcgo6nFJXmc,2010.0,12,12,2017,Frankie & Alice,Things to Face Scene,tt1221208\nAt_y4RGfW4g,2010.0,8,12,2017,Frankie & Alice,I Will Never Let Her Win Scene,tt1221208\n0W_kwmGYIS0,2010.0,7,12,2017,Frankie & Alice,Code Green Scene,tt1221208\n1Y11eIVNgQA,2010.0,6,12,2017,Frankie & Alice,I'm Crazy as a Rat Scene,tt1221208\nmBAPx0F4e4k,2010.0,5,12,2017,Frankie & Alice,Multiple Personalities Scene,tt1221208\nJkC83ugjyNw,2010.0,3,12,2017,Frankie & Alice,Medical History Scene,tt1221208\nOppcXf2Vp6g,2010.0,4,12,2017,Frankie & Alice,Somebody Played a Trick on You Scene,tt1221208\n-45cXUSpOw8,2010.0,2,12,2017,Frankie & Alice,Do I Know You? Scene,tt1221208\ntxQcaXvbRB8,1987.0,1,10,2017,Who's That Girl,A Ride with Nikki Scene,tt0094321\nXh8fDMTvNew,2004.0,10,11,2017,Woman Thou Art Loosed,Remember When We Were Little? Scene,tt0399901\ntvxi9MyoiGE,2004.0,3,11,2017,Woman Thou Art Loosed,Revival Scene,tt0399901\nVAb8s41LLCs,2004.0,11,11,2017,Woman Thou Art Loosed,I Want to Be Loosed Scene,tt0399901\nWOSAa_l3azw,2004.0,7,11,2017,Woman Thou Art Loosed,Did You Touch Her? Scene,tt0399901\n9y7hXwrVgpY,2004.0,9,11,2017,Woman Thou Art Loosed,Thank You for Being So Honest Scene,tt0399901\nim_-maHhOew,2004.0,8,11,2017,Woman Thou Art Loosed,House of God Scene,tt0399901\n_EPtenKdrDc,2004.0,4,11,2017,Woman Thou Art Loosed,You Clean Up Pretty Well Scene,tt0399901\n-GThoBQbPjI,2004.0,2,11,2017,Woman Thou Art Loosed,Snakes Scene,tt0399901\nctDyR3Nosis,2004.0,6,11,2017,Woman Thou Art Loosed,He Hurt Me Scene,tt0399901\nOUztRf_TSHE,2004.0,5,11,2017,Woman Thou Art Loosed,Living in Sin Scene,tt0399901\nVBahsJrr01E,2004.0,1,11,2017,Woman Thou Art Loosed,Building a Strong House Scene,tt0399901\nsjZ5I8l32CI,1994.0,4,10,2017,Street Fighter,It Was Tuesday Scene,tt0111301\nPt6VzQ_0k_I,2010.0,10,10,2017,The Karate Kid,Dre's Victory Scene,tt1155076\nQhZbpE7mdoU,2010.0,5,10,2017,The Karate Kid,Dance-Off Scene,tt1155076\nDVR6p7Iopec,2010.0,7,10,2017,The Karate Kid,Kung Fu Training Scene,tt1155076\nIvAjNuhubIM,2010.0,9,10,2017,The Karate Kid,Dre vs. Cheng Scene,tt1155076\nG6f0w5BRasw,2010.0,4,10,2017,The Karate Kid,Everything is Kung Fu Scene,tt1155076\n5bWanpZTnSQ,2010.0,6,10,2017,The Karate Kid,Picking Yourself Back Up Scene,tt1155076\n0pRYoClF9w4,2010.0,3,10,2017,The Karate Kid,Festival Romance Scene,tt1155076\n5WT1QRZ2z6A,2010.0,8,10,2017,The Karate Kid,I Want Him Broken Scene,tt1155076\nE-wr7dD1n5w,2010.0,1,10,2017,The Karate Kid,Six Versus One Scene,tt1155076\n8INjmc-WWSY,2010.0,2,10,2017,The Karate Kid,Pick Up Your Jacket Scene,tt1155076\nFoiZPbPUnlc,1994.0,10,10,2017,Street Fighter,You Win Scene,tt0111301\nCWwcW-iuP6c,1994.0,8,10,2017,Street Fighter,Ryu vs. Vega Scene,tt0111301\nFKeJtRtug4Q,1994.0,7,10,2017,Street Fighter,Colonel Guile vs. General M. Bison Scene,tt0111301\nlPFulJcbm0c,1994.0,9,10,2017,Street Fighter,The Defeat of General M. Bison Scene,tt0111301\n8jIPR2QUl_k,1994.0,5,10,2017,Street Fighter,You Are Harmless Scene,tt0111301\nCXOjc3b_FZ8,1994.0,6,10,2017,Street Fighter,Game Over Scene,tt0111301\nhY6HUmWzaO8,1994.0,3,10,2017,Street Fighter,Who Wants to Go With Me? Scene,tt0111301\nrjc3Et5D-2w,1994.0,1,10,2017,Street Fighter,Prison Break Scene,tt0111301\nLNPf_P9svHQ,1994.0,2,10,2017,Street Fighter,Things Can't Get Worse Scene,tt0111301\npFXW-7VNngk,2010.0,9,10,2017,The Next Three Days,Highway Spin-Out Scene,tt1458175\nNBY0l7A2uLA,2010.0,8,10,2017,The Next Three Days,Breaking Lara Out Scene,tt1458175\n1zi4R4EklsI,2010.0,6,10,2017,The Next Three Days,I Know Who You Are Scene,tt1458175\nQIIE8CobvEU,2010.0,10,10,2017,The Next Three Days,Escape Scene,tt1458175\nQP3Pzr7UFE4,2010.0,4,10,2017,The Next Three Days,False Passports Scene,tt1458175\nLbCGyHkR0ko,2010.0,5,10,2017,The Next Three Days,The Bump Key Scene,tt1458175\nSVQDD7TK-qA,2010.0,7,10,2017,The Next Three Days,Drug Lord Robbery Scene,tt1458175\ndf2QdWqKC6Q,2010.0,3,10,2017,The Next Three Days,Planning a Prison Break Scene,tt1458175\nX6keMEfkZok,2010.0,2,10,2017,The Next Three Days,Visiting Lara in Prison Scene,tt1458175\nmCsu9hGvNEc,2010.0,1,10,2017,The Next Three Days,Lara's Arrest Scene,tt1458175\nqjl77Gp88RM,2008.0,7,10,2017,The Great Buck Howard,Jay Leno is Satan Scene,tt0460810\nxerkgvDm4Ig,2008.0,6,10,2017,The Great Buck Howard,Buck is Hip Now Scene,tt0460810\nLRGzyb7-EeA,2008.0,8,10,2017,The Great Buck Howard,It's Over Scene,tt0460810\nVeGtHpQzC6I,2008.0,9,10,2017,The Great Buck Howard,How About Entertainment Law? Scene,tt0460810\nRPXI3xQ2aus,2008.0,2,10,2017,The Great Buck Howard,Buck's Quirks Scene,tt0460810\naaaPoObIxrM,2008.0,10,10,2017,The Great Buck Howard,The Hidden Money Trick Scene,tt0460810\nueC2ZLsV5DI,2008.0,5,10,2017,The Great Buck Howard,Mass-Hypnosis Scene,tt0460810\ndmfgNHfdn8U,2008.0,4,10,2017,The Great Buck Howard,Drop the Coin Scene,tt0460810\n8_2tkIqD3Io,2008.0,1,10,2017,The Great Buck Howard,\"You Do Know Who I Am, Don't You? Scene\",tt0460810\npQZkA0jRiKo,2008.0,3,10,2017,The Great Buck Howard,I Thought He Was In Law School Scene,tt0460810\nrgd8TC1Q09g,2006.0,8,10,2017,Jesus Camp,Dead Churches Scene,tt0486358\nxXi-6s-qrQM,2006.0,9,10,2017,Jesus Camp,Levi Preaches Scene,tt0486358\nr8swYmKUGJ0,2006.0,2,10,2017,Jesus Camp,At Five I Got Saved Scene,tt0486358\n_Vyg1SVaZu4,2006.0,10,10,2017,Jesus Camp,A Separation of Church and State Scene,tt0486358\nF55uFHs0d-o,2006.0,6,10,2017,Jesus Camp,Dancing for the Flesh Scene,tt0486358\noP07gJASrGg,2006.0,3,10,2017,Jesus Camp,What's Wrong With This Reasoning? Scene,tt0486358\ngSsaIqwGR1E,2006.0,4,10,2017,Jesus Camp,Religion Is Not Science Scene,tt0486358\nYxQJTlFyebM,2006.0,5,10,2017,Jesus Camp,You're On God's Mind Scene,tt0486358\ncNMRDmf3000,2006.0,7,10,2017,Jesus Camp,You're a Phony and a Hypocrite Scene,tt0486358\nNLfY3XAZ6c0,2006.0,1,10,2017,Jesus Camp,An Entanglement of Politics With Religion Scene,tt0486358\nPpxLYsi1Yk4,2010.0,9,10,2017,Salt,Spy vs. Spy Scene,tt0944835\nBQl4CNHsgvc,2010.0,10,10,2017,Salt,I'm Free Scene,tt0944835\nZMlGZcr95To,2010.0,8,10,2017,Salt,Launch Sequence Aborted Scene,tt0944835\nk7_V-3ApEiM,2010.0,6,10,2017,Salt,Satisfied Scene,tt0944835\ndry7kY2BMlk,2010.0,7,10,2017,Salt,Nikolai Tarkovsky Scene,tt0944835\nN_ooI6Wa0H0,2010.0,5,10,2017,Salt,My Name is Evelyn  Scene,tt0944835\nfC1zzL9DjdU,2010.0,1,10,2017,Salt,You Are a Russian Spy Scene,tt0944835\nNY9q_Vfbi5Q,2010.0,4,10,2017,Salt,Assassination Scene,tt0944835\nwTGRsKLqkGM,2010.0,3,10,2017,Salt,Freeway Chase Scene,tt0944835\nsGLXpKnQfSs,2010.0,2,10,2017,Salt,Explosive Escape Scene,tt0944835\nuuTeJ6tbyB4,1995.0,1,10,2017,Mortal Kombat,Johnny Cage the Movie Star Scene,tt0113855\ni_uA0oZ3xnI,1995.0,9,10,2017,Mortal Kombat,Reptile Attack Scene,tt0113855\nKsYil1zPabA,1995.0,4,10,2017,Mortal Kombat,We Got Company Scene,tt0113855\n_AYtVmu9BkM,1995.0,5,10,2017,Mortal Kombat,Sonya Blade Fights Kano Scene,tt0113855\nqXKeIDlP-ys,1995.0,10,10,2017,Mortal Kombat,Flawless Victory Scene,tt0113855\nYaUe_zBgQ9I,1995.0,7,10,2017,Mortal Kombat,Sub-Zero vs. Liu Kang Scene,tt0113855\nq_v3jNjwHNQ,1995.0,6,10,2017,Mortal Kombat,Scorpion vs. Johnny Cage Scene,tt0113855\nmR0c0i1bCCM,1995.0,8,10,2017,Mortal Kombat,Those Were $500 Sunglasses Scene,tt0113855\nzuqEfWjAAEM,1995.0,3,10,2017,Mortal Kombat,Welcome to  Scene,tt0113855\nxlAwSNbAY8E,1995.0,2,10,2017,Mortal Kombat,Enter Sub-Zero and Scorpion Scene,tt0113855\ngHluHS9kX5A,2008.0,10,10,2017,Chocolate,Zen's Revenge Scene,tt0397044\n5NuvfSWbggc,2008.0,9,10,2017,Chocolate,Father to the Rescue Scene,tt0397044\ntqTDKWhqvn4,2008.0,7,10,2017,Chocolate,Dojo Beat Down Scene,tt0397044\nCQ0Bt9PxosE,2008.0,8,10,2017,Chocolate,Autistic Fight Scene,tt0397044\nuKtbfkmIT-A,2008.0,6,10,2017,Chocolate,Rooftop Battle Scene,tt0397044\nqPVePtS52Gc,2008.0,3,10,2017,Chocolate,Candy Factory Brawl Scene,tt0397044\n8_4rJG5TmBg,2008.0,4,10,2017,Chocolate,Meat Factory Brawl Scene,tt0397044\nN7CWWZi58bI,2008.0,5,10,2017,Chocolate,Reaching a Solution Scene,tt0397044\nx_-G1IuNv-o,2008.0,2,10,2017,Chocolate,Debt Collector Scene,tt0397044\npfPBf3mKwFc,2008.0,1,10,2017,Chocolate,Street Performers Scene,tt0397044\nTDsPAXyCA9A,2010.0,9,10,2017,Buried,Last Will and Testament Scene,tt1462758\n3R7OdK-F91c,2010.0,7,10,2017,Buried,The Bombing Scene,tt1462758\nRIzrkbF1-SU,2010.0,6,10,2017,Buried,Pamela's Video Scene,tt1462758\n9LqrBRqFxmk,2010.0,10,10,2017,Buried,So Sorry Scene,tt1462758\nHwZeiTzih4Y,2010.0,8,10,2017,Buried,\"It's Over, Isn't It? Scene\",tt1462758\n1_CfcecGCVA,2010.0,1,10,2017,Buried,Help? Scene,tt1462758\nbwj9ig-venA,2010.0,4,10,2017,Buried,Ransom Video Scene,tt1462758\ndhNjb67EpIU,2010.0,5,10,2017,Buried,The Snake Scene,tt1462758\nwIC34lZi_NU,2010.0,3,10,2017,Buried,Calling Mom Scene,tt1462758\nRN-F41EZQK0,2010.0,2,10,2017,Buried,You Make Video Scene,tt1462758\n8tdYFT9BIuE,-1.0,7,10,2017,King of the Lost World,Sacrificial Squash Scene,tt0478188\nFNX19RFNdGk,-1.0,8,10,2017,King of the Lost World,Nowhere is Safe Scene,tt0478188\nDlkXnN0cENI,-1.0,10,10,2017,King of the Lost World,Blowing Up the Beast Scene,tt0478188\nGcgIg6HEB7E,-1.0,9,10,2017,King of the Lost World,Only One Solution Scene,tt0478188\nguEyoPzTkQw,-1.0,5,10,2017,King of the Lost World,The Scorpion's Sting Scene,tt0478188\nlHgEqIvG14k,-1.0,4,10,2017,King of the Lost World,One Grabby Vine Scene,tt0478188\nmjbU4wy8VwE,-1.0,6,10,2017,King of the Lost World,All for the Nuke Scene,tt0478188\nt5nPC50ST0A,-1.0,1,10,2017,King of the Lost World,Crashed in a Faraway Land Scene,tt0478188\nJey2YsDSyoI,-1.0,2,10,2017,King of the Lost World,A Group Divided Scene,tt0478188\nQqmSUjxUg1M,-1.0,3,10,2017,King of the Lost World,Giant Jungle Spider Scene,tt0478188\nEYHLDJuEUoc,-1.0,1,10,2017,Charlie's Angels: Full Throttle,Surfboard Stakeout Scene,tt0305357\nt-t8eVDckH8,-1.0,2,10,2017,Charlie's Angels: Full Throttle,Motocross Mayhem Scene,tt0305357\nbn_Df5UNy3s,-1.0,4,10,2017,Charlie's Angels: Full Throttle,Striptease Distraction Scene,tt0305357\nXeGGNf_-nYM,-1.0,3,10,2017,Charlie's Angels: Full Throttle,Undercover Nuns Scene,tt0305357\njMvR4K4QICQ,-1.0,5,10,2017,Charlie's Angels: Full Throttle,Fighting With the Light On Scene,tt0305357\ni6oNzS6kCR8,-1.0,7,10,2017,Charlie's Angels: Full Throttle,Last Dance Scene,tt0305357\ncjy-8dXBljk,-1.0,6,10,2017,Charlie's Angels: Full Throttle,Fire Starter Scene,tt0305357\n0ACTvENkyD8,-1.0,10,10,2017,Charlie's Angels: Full Throttle,Go to Hell Scene,tt0305357\nfUKoBAi7qCg,-1.0,9,10,2017,Charlie's Angels: Full Throttle,Rooftop Rumble Scene,tt0305357\nvF-tPvPAqhQ,-1.0,8,10,2017,Charlie's Angels: Full Throttle,\"Sorry, Charlie Scene\",tt0305357\nrpy7vhvX8jw,2007.0,3,10,2017,Lucky You,The 1-900 King Scene,tt0338216\n9n23ISvkbFQ,2007.0,10,10,2017,Lucky You,Nice Hand Scene,tt0338216\n4NGNbrLnvhA,2007.0,7,10,2017,Lucky You,18 Holes of Golf Scene,tt0338216\n6rGBqovePfY,2007.0,9,10,2017,Lucky You,Three of a Kind Scene,tt0338216\nDHnwNo7Z6Ts,2007.0,8,10,2017,Lucky You,Making a Good Fold Scene,tt0338216\n_r6i8Ae0cvo,2007.0,6,10,2017,Lucky You,Father vs. Son Scene,tt0338216\nY0uLpcThaeU,2007.0,5,10,2017,Lucky You,Breast Implants Scene,tt0338216\nsqZ6ZrVIemM,2007.0,4,10,2017,Lucky You,Poker Face Scene,tt0338216\nDEcY6WXL6_Y,2007.0,1,10,2017,Lucky You,Sometimes Nothing's Enough Scene,tt0338216\nvwbryjr2BKg,2007.0,2,10,2017,Lucky You,Pays to be Prudent Scene,tt0338216\nG9D_0pXaM68,1992.0,12,12,2017,Honeymoon in Vegas,Jack Goes Skydiving Scene,tt0104438\nzjm_GqK-Kmo,1992.0,3,12,2017,Honeymoon in Vegas,Let's Get Married Scene,tt0104438\nBW1kpbOz5Eo,1992.0,11,12,2017,Honeymoon in Vegas,The Flying Elvises Scene,tt0104438\nrx4sKoITt-Q,1992.0,9,12,2017,Honeymoon in Vegas,Chief Orman Scene,tt0104438\niz3ETniN1NI,1992.0,10,12,2017,Honeymoon in Vegas,Is It Kapa'a or Kapa'aa? Scene,tt0104438\nm4SWkyqSFxM,1992.0,8,12,2017,Honeymoon in Vegas,Holding Up the Line Scene,tt0104438\nFZlm1ledK-I,1992.0,4,12,2017,Honeymoon in Vegas,The Poker Game Scene,tt0104438\nElBy0fKa9Ic,1992.0,6,12,2017,Honeymoon in Vegas,You Turned Me Into a Whore! Scene,tt0104438\n9tli2kwH5mY,1992.0,7,12,2017,Honeymoon in Vegas,He's Taking Me to Hawaii Scene,tt0104438\nT3zIklxWw44,1992.0,5,12,2017,Honeymoon in Vegas,Your Girlfriend for the Weekend Scene,tt0104438\n0CYdSfhwWVY,1992.0,2,12,2017,Honeymoon in Vegas,My Wife and Mike Tyson Scene,tt0104438\nIS-TH-YQbL8,1992.0,1,12,2017,Honeymoon in Vegas,Never Get Married Scene,tt0104438\ngpLzES4A7zY,2009.0,10,10,2017,Ondine,The Real Truth Scene,tt1235796\nic7g820jOqI,2009.0,9,10,2017,Ondine,I'm Beginning to Hope Scene,tt1235796\nnzglM3ROd_8,2009.0,7,10,2017,Ondine,Swimming Lessons Scene,tt1235796\nbp0aVPeUCrY,2009.0,8,10,2017,Ondine,How Many Lives Do You Have? Scene,tt1235796\n6FxHQNSukfM,2006.0,3,10,2017,Cashback,A New Job Scene,tt0460740\ndTQORe5M1tY,2009.0,6,10,2017,Ondine,There's a Girl Here Scene,tt1235796\nH85jp6COWak,2009.0,5,10,2017,Ondine,Curiouser and Curiouser Scene,tt1235796\nLFg8eGuhlak,2009.0,4,10,2017,Ondine,Annie Meets  Scene,tt1235796\nu6YtIOaN264,2009.0,1,10,2017,Ondine,From the Sea Scene,tt1235796\nT4v_27FwSbc,2009.0,2,10,2017,Ondine,You Bring Me Luck Scene,tt1235796\nd6N8yKrG2Ps,2009.0,3,10,2017,Ondine,Stealing Ladies' Clothes Scene,tt1235796\nDBooQQKsDac,2006.0,1,10,2017,Cashback,The Break-up Scene,tt0460740\nczLSpZb6aWo,2006.0,2,10,2017,Cashback,She Was Never Far From My Mind Scene,tt0460740\nL6Z80A-avdA,2006.0,5,10,2017,Cashback,Freezing Time Scene,tt0460740\nIJe-gy5sR6I,2006.0,4,10,2017,Cashback,The Clock is the Enemy Scene,tt0460740\nAapjOgixmfQ,2006.0,6,10,2017,Cashback,Grab My Arm Scene,tt0460740\n5GZbCRzKoTQ,2006.0,8,10,2017,Cashback,Dreams Scene,tt0460740\nc5ZISrFKFP0,2006.0,7,10,2017,Cashback,Crushed Scene,tt0460740\nHHc1myygH_A,2006.0,9,10,2017,Cashback,Drawing Sharon Scene,tt0460740\ngS5vt3ZE-jI,2006.0,10,10,2017,Cashback,Love is There Scene,tt0460740\nzha1tYGnAC8,2003.0,10,10,2017,Hulk,Father vs. Son Scene,tt0286716\n9j3KAnX0Nhk,2003.0,9,10,2017,Hulk,He's Got My Missile Scene,tt0286716\nqe8IY41zyCc,2003.0,8,10,2017,Hulk,Send in the Tanks Scene,tt0286716\nNpoB6-TCGWw,2003.0,7,10,2017,Hulk,Breaks Out Scene,tt0286716\nuSZi8oPRUkE,2003.0,6,10,2017,Hulk,Talbot Confronts the  Scene,tt0286716\n5jv7TlhbjAQ,2003.0,5,10,2017,Hulk,The Absorbing Man Scene,tt0286716\nuEMTQYe1ro0,2003.0,4,10,2017,Hulk,vs.  Dogs Scene,tt0286716\nHj9q4NlwcXo,2003.0,2,10,2017,Hulk,The  is Born Scene,tt0286716\n7ZUVMim8ebM,2003.0,1,10,2017,Hulk,Gamma Accident Scene,tt0286716\nYdcWFWm4n6g,2003.0,3,10,2017,Hulk,You're Making Me Angry Scene,tt0286716\nv2qDlGbaqSQ,2004.0,9,9,2017,De-Lovely,So In Love Scene,tt0352277\nq6j_0vS_NNM,2004.0,5,9,2017,De-Lovely,Begin the Beguine Scene,tt0352277\nNWvUNDAsYqE,2004.0,7,9,2017,De-Lovely,Blackmailed Scene,tt0352277\nSUKdlcCiE60,2004.0,8,9,2017,De-Lovely,Spoiled Behavior Scene,tt0352277\nECirl_sSf-M,2004.0,6,9,2017,De-Lovely,Linda's Miscarriage Scene,tt0352277\nmM5dRMY2u28,2004.0,4,9,2017,De-Lovely,Night and Day Scene,tt0352277\naiJtAU0V_60,2004.0,3,9,2017,De-Lovely,Happiness Scene,tt0352277\nUkH65BsZg_g,2004.0,1,9,2017,De-Lovely,Easy to Love Scene,tt0352277\nOui5yj3OvxQ,2004.0,2,9,2017,De-Lovely,Let's Do It Scene,tt0352277\nfQEGMNLTYPs,1978.0,11,11,2017,Capricorn One,Biplane Helicopter Chase Scene,tt0077294\nAZ0AsuZu4ds,1978.0,3,11,2017,Capricorn One,Threatening Their Families Scene,tt0077294\njPH8I5QWFUU,1978.0,10,11,2017,Capricorn One,Avoiding Capture Scene,tt0077294\nS9EIFSWUoOc,1978.0,9,11,2017,Capricorn One,Hiring a Plane Scene,tt0077294\n35FF7e1-zCg,1978.0,8,11,2017,Capricorn One,I Don't Like You Scene,tt0077294\naVHgGXnna94,1978.0,6,11,2017,Capricorn One,Escaping From Captivity Scene,tt0077294\nok6H1OFTmyA,1978.0,7,11,2017,Capricorn One,How to Break Bad News Scene,tt0077294\nd5Pc-tNsvT4,1978.0,1,11,2017,Capricorn One,Launching Scene,tt0077294\nVx3I6XjqCho,1978.0,5,11,2017,Capricorn One,Runaway Car Scene,tt0077294\nUDq-H6B36g8,1978.0,2,11,2017,Capricorn One,Revealing the Landing Studio Scene,tt0077294\n2LhsuPLvtFk,1978.0,4,11,2017,Capricorn One,Faked Mars Landing Scene,tt0077294\no9dLO77OSao,1961.0,4,11,2017,Judgment at Nuremberg,The Loyalty Oath Scene,tt0055031\nTyS98_jQIA0,1961.0,10,11,2017,Judgment at Nuremberg,What A Country Stands For Scene,tt0055031\njRSw_0zpNE8,1961.0,11,11,2017,Judgment at Nuremberg,You Must Believe It Scene,tt0055031\nSfMSiaxLslA,1961.0,6,11,2017,Judgment at Nuremberg,To Prevent Worse Things Scene,tt0055031\nptJ8x9AERwA,1961.0,9,11,2017,Judgment at Nuremberg,We Were Doing Our Duty Scene,tt0055031\nlbqDuUjm4aU,1961.0,8,11,2017,Judgment at Nuremberg,The Guilt of the World Scene,tt0055031\n9_yf1HCH5CY,1961.0,3,11,2017,Judgment at Nuremberg,Justice Handed Over to Dictatorship Scene,tt0055031\nALfuWSv9YVc,1961.0,7,11,2017,Judgment at Nuremberg,It Was Only Temporary Scene,tt0055031\n4HB9b-ttI3I,1961.0,1,11,2017,Judgment at Nuremberg,Judge Haywood Scene,tt0055031\ndi3Xh95aXp8,1961.0,2,11,2017,Judgment at Nuremberg,Judges in the Dock Scene,tt0055031\nWfCufFRo-hU,1961.0,5,11,2017,Judgment at Nuremberg,Instead of Water Scene,tt0055031\nTSCcj7mYuhc,1960.0,4,12,2017,Inherit the Wind,The Right to Think Scene,tt0053946\nv757jrOBkng,1960.0,12,12,2017,Inherit the Wind,The Atheist Who Believes in God Scene,tt0053946\nFRhbIIkLlFI,1960.0,11,12,2017,Inherit the Wind,Death of Matthew Brady Scene,tt0053946\n3l3rJxuxpDo,1960.0,9,12,2017,Inherit the Wind,Brady Breaks Down Scene,tt0053946\nEsTniU7j_yw,1960.0,7,12,2017,Inherit the Wind,The Power to Think Scene,tt0053946\n8YUnOHihAU0,1960.0,5,12,2017,Inherit the Wind,Fanaticism and Ignorance Scene,tt0053946\noqQGFh5yiWE,1960.0,10,12,2017,Inherit the Wind,The Sentence Is Delivered Scene,tt0053946\nIYfuTlTiixA,1960.0,8,12,2017,Inherit the Wind,Meet the Prophet From Nebraska! Scene,tt0053946\nFQLXXM-nktc,1960.0,6,12,2017,Inherit the Wind,Calling Brady to the Stand Scene,tt0053946\nnepc-GLWtfc,1960.0,3,12,2017,Inherit the Wind,Excusing the Juror Scene,tt0053946\nFYDEheLGrKw,1960.0,2,12,2017,Inherit the Wind,Drummond Meets Brady Scene,tt0053946\nvYtc_bS47oM,1960.0,1,12,2017,Inherit the Wind,Arrested for Teaching Darwin Scene,tt0053946\nxjdKPS6-8XU,1967.0,9,9,2017,Bonnie and Clyde,The Story of Bonnie & Clyde Scene,tt0061418\n21b9Nr4VIcI,1967.0,7,9,2017,Bonnie and Clyde,This is The Barrow Gang Scene,tt0061418\nIL-_pNnEuk8,1967.0,8,9,2017,Bonnie and Clyde,I'm An Undertaker Scene,tt0061418\nwjVPv5aO_no,1967.0,6,9,2017,Bonnie and Clyde,Blanche Loses It Amid Bullets Scene,tt0061418\n2GM0LKQ-ml0,1967.0,3,9,2017,Bonnie and Clyde,We Rob Banks Scene,tt0061418\nPb1N5TcA5to,1967.0,5,9,2017,Bonnie and Clyde,Parking The Car Scene,tt0061418\nSLC0omm3N98,1967.0,4,9,2017,Bonnie and Clyde,A Getaway Driver Scene,tt0061418\nFS3hFDdeX30,1967.0,1,9,2017,Bonnie and Clyde,Birdcaged Bonnie Scene,tt0061418\n9smHLhj75CU,1967.0,2,9,2017,Bonnie and Clyde,What's It Like? Scene,tt0061418\nh7NG9ZEfyKo,1968.0,9,10,2017,Bullitt,Runway Escape Scene,tt0062765\ntRx8N7mJU9g,1968.0,5,10,2017,Bullitt,Ford Mustang vs. Dodge Charger Scene,tt0062765\nt-5usV6m4J4,1968.0,1,10,2017,Bullitt,The Hotel Hit Scene,tt0062765\nsWCQm58jJsk,1968.0,2,10,2017,Bullitt,Who Else Knew Where He Was? Scene,tt0062765\nik-n-L9UNTY,1968.0,3,10,2017,Bullitt,Hospital Hunt Scene,tt0062765\n0xHe1zkABYo,1968.0,8,10,2017,Bullitt,We Must All Compromise Scene,tt0062765\nOvyfd29a1ik,1968.0,6,10,2017,Bullitt,Giving Up the John Doe Scene,tt0062765\ncWiljyh4NR4,1968.0,7,10,2017,Bullitt,What Will Happen to Us? Scene,tt0062765\nno7XR7s8Z7o,1968.0,4,10,2017,Bullitt,San Francisco Car Chase Scene,tt0062765\nMmtvzIGaH1I,1968.0,10,10,2017,Bullitt,Airport Shootout Scene,tt0062765\nGrCmVFX9tyQ,1940.0,8,12,2017,His Girl Friday,Not Afraid to Die Scene,tt0032599\nx-_17t-v9dA,1940.0,12,12,2017,His Girl Friday,The Power of the Press Scene,tt0032599\n_4EkJkuiwIg,1940.0,11,12,2017,His Girl Friday,A Cock-Eyed Liar Scene,tt0032599\nOPuOk309lSE,-1.0,9,12,2017,Back to the Secret Garden,If She Lost the Key Scene,tt0233277\n9tHwS5Ymvag,1940.0,7,12,2017,His Girl Friday,What's the Story? Scene,tt0032599\nWsaXEsBV6b4,1940.0,6,12,2017,His Girl Friday,Hildy's Farewell Scene,tt0032599\nrz2FxTVVJi4,1940.0,9,12,2017,His Girl Friday,This Is War Scene,tt0032599\ne5cg1EeFISo,1940.0,10,12,2017,His Girl Friday,Hiring a Poet Scene,tt0032599\nm8lzyaMZ-mA,1940.0,1,12,2017,His Girl Friday,A Better Offer Scene,tt0032599\nsbIfW_Pf9vk,-1.0,5,12,2017,Back to the Secret Garden,Tea Lesson Gone Wrong Scene,tt0233277\nFN3SPnr9EZg,1940.0,3,12,2017,His Girl Friday,Hildy's New Beau Scene,tt0032599\nEom_iOkd0-I,1940.0,4,12,2017,His Girl Friday,Hildy's Getting Married Scene,tt0032599\ngA3wJRuClks,1940.0,5,12,2017,His Girl Friday,Jailhouse Interview Scene,tt0032599\nv8UDjwdqzKY,1940.0,2,12,2017,His Girl Friday,You're a Newspaper Man Scene,tt0032599\nV32SkmBB1KU,1994.0,10,10,2017,Black Beauty,Coming Home Scene,tt0109279\ncBFrfA6TrB0,1994.0,9,10,2017,Black Beauty,My Precious Friend Scene,tt0109279\niga0_T5B8dU,1994.0,7,10,2017,Black Beauty,The Bearing Rein Scene,tt0109279\nSXVUCgoOcfs,1994.0,4,10,2017,Black Beauty,Stable Fire Scene,tt0109279\nV-mlZvBRoOQ,1994.0,8,10,2017,Black Beauty,A Good Place Scene,tt0109279\nVZM1S9VcjAM,-1.0,2,12,2017,Back to the Secret Garden,A Green Nose Scene,tt0233277\nzeV1-Ito9HM,1994.0,6,10,2017,Black Beauty,A New Home Scene,tt0109279\ngQ5KDSBMFRU,-1.0,7,12,2017,Back to the Secret Garden,Giving Lizzie the Key Scene,tt0233277\nKm2lbJKGAqA,1994.0,5,10,2017,Black Beauty,Goodbye My Beauty Scene,tt0109279\ntkWWtYRbnq8,1994.0,1,10,2017,Black Beauty,Training Scene,tt0109279\nGo55LztXeQA,1994.0,3,10,2017,Black Beauty,Danger on the Bridge Scene,tt0109279\nq5RSKejDWo8,1994.0,2,10,2017,Black Beauty,Beauty is as Beauty Does Scene,tt0109279\nxcc3vzgR9QQ,-1.0,1,12,2017,Back to the Secret Garden,I Can't Find the Door Scene,tt0233277\ns3mwDA8sv8I,-1.0,12,12,2017,Back to the Secret Garden,A Children's Garden Scene,tt0233277\nDV5EHuaa23c,-1.0,3,12,2017,Back to the Secret Garden,The Sacred Garden Scene,tt0233277\ntD9DfbbK6OE,-1.0,11,12,2017,Back to the Secret Garden,I Say Play Scene,tt0233277\nw-6lVMklaKY,-1.0,6,12,2017,Back to the Secret Garden,Fire! Fire! Scene,tt0233277\nQqQYNj15OfI,-1.0,10,12,2017,Back to the Secret Garden,I Threw It in the Lake Scene,tt0233277\nrNP5uIQxAfY,-1.0,8,12,2017,Back to the Secret Garden,My Mother's Roses Scene,tt0233277\nulALOA2LeNw,-1.0,4,12,2017,Back to the Secret Garden,The Garden is Dying Scene,tt0233277\nAH4E6mdxZDw,2015.0,1,10,2017,Spotlight,Survivor Story Scene,tt1895587\ncsRJ-T2LNI0,2015.0,10,10,2017,Spotlight,Success Scene,tt1895587\n4pUi3hbXF2c,2015.0,9,10,2017,Spotlight,Nobody Can Get Away With This! Scene,tt1895587\n5Abq-DZrjB0,2015.0,8,10,2017,Spotlight,Sensitive Records Scene,tt1895587\n8ilbyubEDhM,2015.0,6,10,2017,Spotlight,\"Off the Record, It's All Public Scene\",tt1895587\nogW6YDmEb1M,2015.0,7,10,2017,Spotlight,Everybody Already Knows Scene,tt1895587\nk60eGmxn7Rk,2015.0,4,10,2017,Spotlight,Six Percent Of All Priests Scene,tt1895587\nCW2M1ZyYArk,2015.0,5,10,2017,Spotlight,Sure I Fooled Around Scene,tt1895587\nf5RQrcIrlBA,2015.0,3,10,2017,Spotlight,It Really Messed Me Up Scene,tt1895587\nkGQbCYm2kx4,2015.0,2,10,2017,Spotlight,He Was Nice At First Scene,tt1895587\nd9TdwetEIQ8,-1.0,9,9,2017,Argo,Cleared For Take-Off Scene,tt1024648\n79WfcpXDbg4,-1.0,8,9,2017,Argo,Studio 6 Confirms Scene,tt1024648\nEqFFgltjVbg,-1.0,7,9,2017,Argo,Confirm the Tickets Scene,tt1024648\nBleQjp9zglY,-1.0,6,9,2017,Argo,I'm Responsible Scene,tt1024648\nt2NytKIhd68,-1.0,5,9,2017,Argo,Americans at the Bazaar Scene,tt1024648\n5A98txE5nno,-1.0,4,9,2017,Argo,The Best Bad Idea We Have Scene,tt1024648\nPiMWCFay_sE,-1.0,3,9,2017,Argo,A Fake Movie Scene,tt1024648\nTd_5-DJdFQM,-1.0,2,9,2017,Argo,Taking Hostages Scene,tt1024648\n8j4k-10bZC0,-1.0,1,9,2017,Argo,Over the Wall Scene,tt1024648\n5qKySTAWpiY,-1.0,8,10,2017,The Danish Girl,I Need My Husband Scene,tt0810819\n8Cyv7f65bbY,-1.0,9,10,2017,The Danish Girl,A Complex Surgery Scene,tt0810819\nPXMASW5YQl8,-1.0,10,10,2017,The Danish Girl,Lili Finally Scene,tt0810819\nC-FH-TOuFpQ,-1.0,5,10,2017,The Danish Girl,I Thought You Knew Scene,tt0810819\nJyEYiaZW3Ok,-1.0,7,10,2017,The Danish Girl,Sorry Einar Couldn't Be Here Scene,tt0810819\nTSclZRaacyA,-1.0,6,10,2017,The Danish Girl,Your Husband Is Insane Scene,tt0810819\nejD-W0F0hr8,-1.0,1,10,2017,The Danish Girl,A Model Called Lili Scene,tt0810819\n8p6L3Vl8ezA,-1.0,3,10,2017,The Danish Girl,Different From Most Girls Scene,tt0810819\n2hcGeToc17I,-1.0,2,10,2017,The Danish Girl,Role Play Scene,tt0810819\n5Ackdv3pgmU,-1.0,4,10,2017,The Danish Girl,Identity Crisis Scene,tt0810819\nUk1MJFwGMjI,1955.0,10,10,2017,Rebel Without a Cause,I Got The Bullets! Scene,tt0048545\nntnqp7-SG7k,1955.0,9,10,2017,Rebel Without a Cause,Live It Up Scene,tt0048545\n1AlMY9fDHu0,1955.0,7,10,2017,Rebel Without a Cause,The Chickie-Run Scene,tt0048545\n7014C_6ABAg,1955.0,8,10,2017,Rebel Without a Cause,Stand Up For Me! Scene,tt0048545\n_RHrQlqoTTA,1955.0,6,10,2017,Rebel Without a Cause,Disappointing Parents Scene,tt0048545\nvJv647j5Ig4,1955.0,5,10,2017,Rebel Without a Cause,The Knife Fight Scene,tt0048545\nhoKvbJSMShA,1955.0,4,10,2017,Rebel Without a Cause,I Go With the Kids Scene,tt0048545\n_EpizUY_las,1955.0,3,10,2017,Rebel Without a Cause,I Don't Ever Wanna Be Like Him Scene,tt0048545\nUBOcWFBBB04,1955.0,2,10,2017,Rebel Without a Cause,You're Tearing Me Apart Scene,tt0048545\n8JhRzlsZPas,1955.0,1,10,2017,Rebel Without a Cause,He Called Me A Dirty Tramp Scene,tt0048545\ndc8glsGbIus,1956.0,4,10,2017,The Searchers,Cowboys vs. Indians Scene,tt0049730\njTz_VNAGqog,1956.0,6,10,2017,The Searchers,Buying a Wife Scene,tt0049730\n8Wgkpfa5HMw,1956.0,2,10,2017,The Searchers,The Raid Scene,tt0049730\nS6iFW-HoFwc,1956.0,5,10,2017,The Searchers,Don't Ever Ask Me More! Scene,tt0049730\nKAByPJJecxQ,1956.0,7,10,2017,The Searchers,Stand Aside! Scene,tt0049730\n99IRJoGX238,1956.0,8,10,2017,The Searchers,Fighting for Laurie Scene,tt0049730\nrZpeepxXh7I,1956.0,3,10,2017,The Searchers,Finishing the Job Scene,tt0049730\n5_j3NrcDiS4,1956.0,1,10,2017,The Searchers,\"Welcome Home, Ethan Scene\",tt0049730\nKvfIsbhIQLA,1956.0,10,10,2017,The Searchers,The Doorway Scene,tt0049730\nIC-u2-aQXS4,1956.0,9,10,2017,The Searchers,\"Let's Go Home, Debbie Scene\",tt0049730\nxKaCxkf1Ccs,-1.0,6,10,2017,\"Hail, Caesar!\",Fixin' to Be Friendly Scene,tt0475290\nS64LeYg3Tg4,-1.0,10,10,2017,\"Hail, Caesar!\",\"Thanks, But No Thanks Scene\",tt0475290\nG629a_3MkkI,-1.0,2,10,2017,\"Hail, Caesar!\",Would That It Were So Simple Scene,tt0475290\nN9v6VJLZ8_I,-1.0,9,10,2017,\"Hail, Caesar!\",Got Most Of It Scene,tt0475290\nuSMxnpecSZM,-1.0,3,10,2017,\"Hail, Caesar!\",No Dames Scene,tt0475290\nmqhpZ30uNic,-1.0,7,10,2017,\"Hail, Caesar!\",Catching the Submarine Scene,tt0475290\nRpt-fbpiTU8,-1.0,8,10,2017,\"Hail, Caesar!\",The Picture Has Worth Scene,tt0475290\nTtALqoM5hkY,-1.0,1,10,2017,\"Hail, Caesar!\",The Mermaid Ballet Scene,tt0475290\nUbwxGgR-EAM,-1.0,5,10,2017,\"Hail, Caesar!\",No One's the Wiser Scene,tt0475290\n8YQZMbgpmIo,-1.0,4,10,2017,\"Hail, Caesar!\",What If I Named Names? Scene,tt0475290\nIXSNWvdkkic,2015.0,1,10,2017,Trumbo,Clashing with John Wayne Scene,tt3203606\nbubK4ybEy-Y,2015.0,8,10,2017,Trumbo,A Hideous Waste of Life Scene,tt3203606\napJLTO5T430,2015.0,6,10,2017,Trumbo,I Make Garbage! Scene,tt3203606\nSUVN09kOsAo,2015.0,5,10,2017,Trumbo,Buddy Named Names Scene,tt3203606\n5AstACoPo9w,2015.0,2,10,2017,Trumbo,Hostility at HUAC Scene,tt3203606\n0dGLAOaTgyw,2015.0,10,10,2017,Trumbo,There Were Only Victims Scene,tt3203606\nCOy16bTI_zE,2015.0,7,10,2017,Trumbo,Are You Robert Rich? Scene,tt3203606\nnTs76MbxqEM,2015.0,9,10,2017,Trumbo,Spartacus By Dalton  Scene,tt3203606\nvwrWW26_JHY,2015.0,3,10,2017,Trumbo,Writing for the King Brothers Scene,tt3203606\nssS5S_E37G8,2015.0,4,10,2017,Trumbo,I Did What I Had To Scene,tt3203606\nY4XiKFvQ1rM,-1.0,6,10,2017,Citizen Kane,Gettys Blackmails Kane Scene,tt0033467\nttTyXqwsP0o,-1.0,5,10,2017,Citizen Kane,Campaign Promises Scene,tt0033467\noqquLzHmH5k,-1.0,7,10,2017,Citizen Kane,Love on Your Own Terms Scene,tt0033467\nFSj-BCOlGPY,-1.0,9,10,2017,Citizen Kane,The Snow Globe Scene,tt0033467\nz9OUZNicTGU,-1.0,3,10,2017,Citizen Kane,How to Run a Newspaper Scene,tt0033467\n2LX27W51kB0,-1.0,2,10,2017,Citizen Kane,The Union Forever! Scene,tt0033467\nBFSjHBVx-xk,-1.0,1,10,2017,Citizen Kane,Famous Last Words Scene,tt0033467\n3v-e25d34pY,-1.0,8,10,2017,Citizen Kane,Kane Finishes the Review Scene,tt0033467\nRfl2M8B9WA8,-1.0,4,10,2017,Citizen Kane,A Marriage Just Like Any Other Scene,tt0033467\nfr93wwtiKQM,-1.0,10,10,2017,Citizen Kane,Rosebud Scene,tt0033467\nGfBsuOuUdoI,-1.0,6,10,2017,Zero Dark Thirty,You're on a List Scene,tt1790885\nijjYDSqZOyA,-1.0,2,10,2017,Zero Dark Thirty,Hotel Explosion Scene,tt1790885\nYXFkCH90yYQ,-1.0,9,10,2017,Zero Dark Thirty,The Raid,tt1790885\nnq33k1fFyK0,-1.0,8,10,2017,Zero Dark Thirty,Her Confidence Scene,tt1790885\nNgLepPDh5tY,-1.0,10,10,2017,Zero Dark Thirty,Visual Confirmation Scene,tt1790885\nDsSvkC4X4Ko,-1.0,1,10,2017,Zero Dark Thirty,\"When You Lie, I Hurt You Scene\",tt1790885\n2ZO0CFb3eys,-1.0,5,10,2017,Zero Dark Thirty,Protect the Homeland Scene,tt1790885\nHdbL45I6VqM,-1.0,7,10,2017,Zero Dark Thirty,Kill Him For Me Scene,tt1790885\nqiDGtIbWRVY,-1.0,4,10,2017,Zero Dark Thirty,Bring Me People to Kill Scene,tt1790885\n2rJqM-hodGQ,-1.0,3,10,2017,Zero Dark Thirty,Take Your Hand Out Scene,tt1790885\nHrYK4U_a6y8,-1.0,5,10,2017,Clash of the Empires,No Peace for Evil Men Scene,tt2456594\nWla8a89Vm8I,-1.0,10,10,2017,Clash of the Empires,Leader of Men Scene,tt2456594\nn0Cg6MnUw20,-1.0,4,10,2017,Clash of the Empires,Into the Spider's Trap Scene,tt2456594\nIZ-VZCROw_4,-1.0,6,10,2017,Clash of the Empires,\"Wretched Lizards, Poisoned Prey Scene\",tt2456594\nKCg0cDrNQvo,-1.0,7,10,2017,Clash of the Empires,A Sight for Sore Eye Scene,tt2456594\nBjcu7KBoaNg,-1.0,2,10,2017,Clash of the Empires,Suta is Kidnapped Scene,tt2456594\nbCD25qkPSwQ,-1.0,8,10,2017,Clash of the Empires,Return of the Dragons Scene,tt2456594\nPt2wNC6SYnE,-1.0,1,10,2017,Clash of the Empires,Village Under Attack Scene,tt2456594\nYXzjSJDDRIc,-1.0,3,10,2017,Clash of the Empires,Hold Strong! Scene,tt2456594\nl_ZRivM0lSY,-1.0,9,10,2017,Clash of the Empires,Help Arrives Scene,tt2456594\n1ccMqOW6LMs,-1.0,5,10,2017,Neighbors 2: Sorority Rising,There's No I in Sorority Scene,tt4438848\nMQ1E_qYia9Q,-1.0,10,10,2017,Neighbors 2: Sorority Rising,Don't Give Up on Yourselves Scene,tt4438848\nnCWBxPh4dGo,-1.0,7,10,2017,Neighbors 2: Sorority Rising,Stealing the Weed Scene,tt4438848\ndZb8CGMC1zA,-1.0,9,10,2017,Neighbors 2: Sorority Rising,Trapped In the Garage Scene,tt4438848\nh6iHbAju1cI,-1.0,1,10,2017,Neighbors 2: Sorority Rising,Ours Is In Black Scene,tt4438848\nItHtrNSJwDo,-1.0,8,10,2017,Neighbors 2: Sorority Rising,Where is Mac? Scene,tt4438848\nuta8BACjLNk,-1.0,3,10,2017,Neighbors 2: Sorority Rising,Teddy Helps the Girls Scene,tt4438848\npikAt8prREE,-1.0,2,10,2017,Neighbors 2: Sorority Rising,Poker Night Proposal Scene,tt4438848\n9C0B94fFZkQ,-1.0,4,10,2017,Neighbors 2: Sorority Rising,It's On! Scene,tt4438848\nh5D7aOzmDec,-1.0,6,10,2017,Neighbors 2: Sorority Rising,Teddy's Dance Scene,tt4438848\n7lL9YOO31Ig,2012.0,1,10,2017,Compliance,In Trouble Here Scene,tt1971352\nFu82oMZobYQ,2012.0,3,10,2017,Compliance,In the Weeds Scene,tt1971352\nVZRUqjnEPSk,2012.0,4,10,2017,Compliance,I Need You to Inspect Her Scene,tt1971352\nfyl1lmsVuQU,2012.0,5,10,2017,Compliance,Find the Money Scene,tt1971352\nGcVogDQ4VBY,2012.0,7,10,2017,Compliance,Phone Card Scene,tt1971352\n0v4aJAsXjCA,2012.0,9,10,2017,Compliance,The Truth Comes Out Scene,tt1971352\n22hhTrBAFRA,2012.0,2,10,2017,Compliance,Strip Search Scene,tt1971352\nT-OmaEI2xrs,2012.0,10,10,2017,Compliance,I Did What I Was Told to Do Scene,tt1971352\nW2gWVhYRyXI,2012.0,8,10,2017,Compliance,Spanking Scene,tt1971352\nAC2swLcXfwQ,2012.0,6,10,2017,Compliance,Take the Apron Off Scene,tt1971352\nw_e5kx3ONfs,1990.0,11,11,2017,Wild at Heart,Don't Turn Away From Love Scene,tt0100935\nZpmCdIS3TKc,1990.0,10,11,2017,Wild at Heart,Sailor Leaves Lula Scene,tt0100935\nn2YCseaZK0Q,1990.0,6,11,2017,Wild at Heart,Bobby Peru Scene,tt0100935\nkZz5k_xsG0Q,1990.0,9,11,2017,Wild at Heart,Bobby Tricks Sailor Scene,tt0100935\nKnPfaGzmt4M,1990.0,3,11,2017,Wild at Heart,Gonna Have to Kill Me Scene,tt0100935\nv_lHiT6UVCE,1990.0,8,11,2017,Wild at Heart,Terrorizing Lula Scene,tt0100935\naEfAFo99jEs,1990.0,7,11,2017,Wild at Heart,I'm Pregnant Scene,tt0100935\nalYZ8jQ5L3A,1990.0,2,11,2017,Wild at Heart,Marietta and Sailor Scene,tt0100935\nmelCNhYmwII,1990.0,1,11,2017,Wild at Heart,Picking Up Sailor Scene,tt0100935\n1y7cZSWu93k,1990.0,5,11,2017,Wild at Heart,Jingle Dell Scene,tt0100935\nFtPj029E3Qk,1990.0,4,11,2017,Wild at Heart,Permission to Kill Scene,tt0100935\nPZeVTlloWxw,1962.0,8,10,2017,Lolita,The Game Scene,tt0056193\n3SKk58UngIk,1962.0,3,10,2017,Lolita,Infatuated by  Scene,tt0056193\nlMXVWQCa_MY,1962.0,5,10,2017,Lolita,No Longer Your Doup Scene,tt0056193\nUfoHq1-vpss,1962.0,10,10,2017,Lolita,Acute Suppression of the Libido Scene,tt0056193\n4k1Vx0equfE,1962.0,6,10,2017,Lolita,Bathtub Consolation Scene,tt0056193\n6zfXkQ5QkrE,1962.0,9,10,2017,Lolita,You Never Let Me Have Any Fun Scene,tt0056193\n5ODDHpmqyWE,1962.0,4,10,2017,Lolita,If You Love Me Scene,tt0056193\nwIb3cRvQYw8,1962.0,7,10,2017,Lolita,I'm Just a Normal Guy Scene,tt0056193\nlHqGIe8AZ1g,1962.0,2,10,2017,Lolita,A New Home Scene,tt0056193\nVRXkf4--IXw,1962.0,1,10,2017,Lolita,Roman Ping Pong Scene,tt0056193\nk6kWvjAJHh4,2015.0,8,10,2017,Road Wars,We Don't Run Scene,tt4530832\nMHyA5fJ18HA,2015.0,9,10,2017,Road Wars,\"No Cure, Only Contagion Scene\",tt4530832\nihJ8mtOVfmM,2015.0,6,10,2017,Road Wars,Never Giving Up Scene,tt4530832\nPSjEQHBkcq4,2015.0,10,10,2017,Road Wars,No Way Out Scene,tt4530832\nl0PUssYO5A8,2015.0,7,10,2017,Road Wars,I'll Be Here Waiting Scene,tt4530832\n2WgBKaFO7wk,2015.0,4,10,2017,Road Wars,Drink or Die Scene,tt4530832\niCmT0IRM9Z0,2015.0,2,10,2017,Road Wars,What Do You Remember? Scene,tt4530832\nuJw5rPEUblc,2015.0,1,10,2017,Road Wars,Death Duty Scene,tt4530832\nbuDmlhm8mKE,2015.0,5,10,2017,Road Wars,Don't You Know What He Is? Scene,tt4530832\n3fotxrK_Spg,2015.0,3,10,2017,Road Wars,Chasing Orsini Scene,tt4530832\n5qWIaxikcbc,-1.0,8,10,2017,21 Jump Street,We Gotta Get Outta Here Scene,tt1232829\n92WjYrR0PEA,-1.0,7,10,2017,21 Jump Street,She Tried to Grab My Dick Scene,tt1232829\nZE5ddEN5Nbk,-1.0,4,10,2017,21 Jump Street,First Day of School Scene,tt1232829\nUuuzF8Pyh0s,-1.0,9,10,2017,21 Jump Street,Limo Chase Scene,tt1232829\nk7oRzwLIgbo,-1.0,10,10,2017,21 Jump Street,You Shot Me in the Dick! Scene,tt1232829\n7OsEWB35fPE,-1.0,2,10,2017,21 Jump Street,You Idiots are Perfect Scene,tt1232829\niwZN1N7Denc,-1.0,5,10,2017,21 Jump Street,Let's Finger Each Other's Mouths Scene,tt1232829\nnC2HOMOxdkY,-1.0,1,10,2017,21 Jump Street,Park Arrest Scene,tt1232829\nC2JaJ_FLYiM,-1.0,3,10,2017,21 Jump Street,Captain Sassy Scene,tt1232829\n5AQC5oeDhDg,-1.0,6,10,2017,21 Jump Street,Trippin' Major Balls Scene,tt1232829\nLRc6Awco5aU,-1.0,3,10,2017,Don Verdean,The Skull of Goliath Scene,tt3534282\nN_3_HB0AfdY,-1.0,4,10,2017,Don Verdean,A Grave-Robbing Creep Scene,tt3534282\nG3TWgClyD9E,-1.0,10,10,2017,Don Verdean,\"You Are Done, Man Scene\",tt3534282\n0GYwcr3RD_k,-1.0,5,10,2017,Don Verdean,Satan's Cereal Scene,tt3534282\nvTTzWRdAN4M,-1.0,2,10,2017,Don Verdean,You Hit Her in the Uterus Scene,tt3534282\n-7mzQx0ebqk,-1.0,6,10,2017,Don Verdean,Tell Them the Truth Scene,tt3534282\n0tq44zxA0Ao,-1.0,7,10,2017,Don Verdean,What Qualities Are You Looking for in a Mate? Scene,tt3534282\nThdpcnGKsVY,-1.0,8,10,2017,Don Verdean,The Holy Grail Scene,tt3534282\nr8uOQupi1iQ,-1.0,9,10,2017,Don Verdean,I've Been Hit! Scene,tt3534282\nlRpBlNgu8j4,-1.0,1,10,2017,Don Verdean,A Pillar of Salt Scene,tt3534282\nLpDRf3h6OHw,-1.0,8,10,2017,Fort Tilden,My Father's Not a Criminal! Scene,tt3457734\negrmjjy2Pgo,-1.0,10,10,2017,Fort Tilden,I Left It In the Ghetto Scene,tt3457734\nZle2EnAj0Ms,-1.0,9,10,2017,Fort Tilden,Kitten Killers Scene,tt3457734\nQCsjm6QI4WM,-1.0,6,10,2017,Fort Tilden,Marin and Amanda Scene,tt3457734\n088CLxgnr8w,-1.0,7,10,2017,Fort Tilden,Like Three Quiet Minutes Scene,tt3457734\nOliOEVSIsmY,-1.0,3,10,2017,Fort Tilden,Hitting a Baby Stroller Scene,tt3457734\nxqmqskVELNs,-1.0,1,10,2017,Fort Tilden,If You Want Any Feedback Scene,tt3457734\nbGXeYGkiQDo,-1.0,4,10,2017,Fort Tilden,Go to Portugal Scene,tt3457734\n_4otc_6WtmQ,-1.0,2,10,2017,Fort Tilden,Borrowing a Bike Scene,tt3457734\ndy3yjv2YLh0,-1.0,5,10,2017,Fort Tilden,You Should Stop Him Scene,tt3457734\ndbnWDDp4s1c,-1.0,7,10,2017,John Dies at the End,That Soy Sauce Feeling Scene,tt1783732\nwC2iSGzmdKI,-1.0,10,10,2017,John Dies at the End,Saving the World Scene,tt1783732\n9PLm3XZsotA,-1.0,8,10,2017,John Dies at the End,Killing Friends Scene,tt1783732\nyIG_egCmhTw,-1.0,3,10,2017,John Dies at the End,Soy Sauce Scene,tt1783732\n59rdzSTXs5c,-1.0,5,10,2017,John Dies at the End,Look at the Box Scene,tt1783732\noIyXMnHWjIE,-1.0,9,10,2017,John Dies at the End,Meet Korrok Scene,tt1783732\nqNOk4yyxE38,-1.0,1,10,2017,John Dies at the End,The Axe Riddle Scene,tt1783732\nr8I0oejVPJI,-1.0,2,10,2017,John Dies at the End,The Meat Monster Scene,tt1783732\nabBd7mEUNwA,-1.0,6,10,2017,John Dies at the End,He's Not Real Scene,tt1783732\n6PPNd2HqmoA,-1.0,4,10,2017,John Dies at the End,Roger North Scene,tt1783732\nQ85twbu-Vvk,-1.0,4,10,2017,The Purge: Election Year,All-American Murder Scene,tt4094724\nWFdOIU2jKpo,-1.0,8,10,2017,The Purge: Election Year,Church Massacre Scene,tt4094724\n1HfZYZ2sDwE,-1.0,9,10,2017,The Purge: Election Year,One More Move Scene,tt4094724\nx39ZG34sn28,-1.0,10,10,2017,The Purge: Election Year,A Man of God and Gun Scene,tt4094724\ncRuYB2gXpM8,-1.0,3,10,2017,The Purge: Election Year,They've Come to Kill You Scene,tt4094724\naUAVPdrvwoA,-1.0,7,10,2017,The Purge: Election Year,Born Again Through Blood Scene,tt4094724\n6GhSM3Gu9VU,-1.0,5,10,2017,The Purge: Election Year,Pequeña Muerte is Back Scene,tt4094724\nl8MFxT9ILKY,-1.0,6,10,2017,The Purge: Election Year,Y'all Need to See This Scene,tt4094724\nV25QF11MwDU,-1.0,2,10,2017,The Purge: Election Year,Killing Party in the USA Scene,tt4094724\nKw6gubNxWQ4,-1.0,1,10,2017,The Purge: Election Year,Purge Patrol Scene,tt4094724\nrAdvJOAGEmc,-1.0,6,10,2017,We'll Never Have Paris,Love in Paris Scene,tt3079016\n2ZTrUc824oI,-1.0,5,10,2017,We'll Never Have Paris,I Could Barely Feel You Inside Me Scene,tt3079016\nzaHU1FW_RZk,-1.0,4,10,2017,We'll Never Have Paris,Let's Go Be Guys Scene,tt3079016\n-QT_Af7RLjU,-1.0,3,10,2017,We'll Never Have Paris,A Threesome With Two of Me Scene,tt3079016\n0mmSi-63Y9U,-1.0,2,10,2017,We'll Never Have Paris,Bathtub Break-Up Scene,tt3079016\nCh1DsDy-osI,-1.0,1,10,2017,We'll Never Have Paris,A Giant Nose Scene,tt3079016\n8QzFJA3QM7E,-1.0,7,10,2017,We'll Never Have Paris,I Need Her Scene,tt3079016\nn_ci8BbMilc,-1.0,8,10,2017,We'll Never Have Paris,Making a Fool of Myself Scene,tt3079016\nxLLOmh2nxWQ,-1.0,9,10,2017,We'll Never Have Paris,A Botched Proposal Scene,tt3079016\nN0gOaE92ogg,-1.0,10,10,2017,We'll Never Have Paris,Please Say Yes! Scene,tt3079016\n2BQoPPpt_9o,-1.0,8,10,2017,Bel Ami,I've Never Loved You Scene,tt1440732\nIMTJSKr7yJA,-1.0,7,10,2017,Bel Ami,Seducing Virginie Scene,tt1440732\nltcp0jylvgQ,-1.0,9,10,2017,Bel Ami,He Will Marry Her Scene,tt1440732\nFt-7riREEaA,-1.0,6,10,2017,Bel Ami,More Powerful Than a King Scene,tt1440732\nhJ6_nbGdWT0,-1.0,10,10,2017,Bel Ami,I Am Going to Live Scene,tt1440732\n5-2eKvFCqw8,-1.0,4,10,2017,Bel Ami,I'm Getting Married Scene,tt1440732\nDuYmyHWZqwE,-1.0,2,10,2017,Bel Ami,Other Women Scene,tt1440732\nQRwiLuz2olI,-1.0,5,10,2017,Bel Ami,A Bit Grand Scene,tt1440732\nddVQoF2TvNQ,-1.0,3,10,2017,Bel Ami,Make Me Your Husband Scene,tt1440732\n7ktZEjwyFhQ,-1.0,1,10,2017,Bel Ami,Love Nest Scene,tt1440732\n4Cw7JHJuTt8,2015.0,9,10,2017,Vendetta,Rage and Riot Scene,tt3746298\nlPrJqB8ljAE,2015.0,10,10,2017,Vendetta,See You Soon Scene,tt3746298\n57eIYneEz7E,2015.0,8,10,2017,Vendetta,This is My House Scene,tt3746298\n_-4Xy6CjAbw,2015.0,7,10,2017,Vendetta,Rooftop Fight Scene,tt3746298\nCE8VRLW8Zw4,2015.0,6,10,2017,Vendetta,Joel is Attacked Scene,tt3746298\nuB6JMgU50J0,2015.0,3,10,2017,Vendetta,Wrong Answer Scene,tt3746298\n-QZzReak2Ck,2015.0,5,10,2017,Vendetta,Spiked Fist Scene,tt3746298\nBbHxQ77anjQ,2015.0,4,10,2017,Vendetta,Shower With a Shiv Scene,tt3746298\n7XaThsXXj_M,2015.0,2,10,2017,Vendetta,Hello Mrs. Danvers Scene,tt3746298\nSs5HAL8j7p8,2015.0,1,10,2017,Vendetta,Chasing Down Abbott Scene,tt3746298\nUDhWyFDDrUg,2015.0,8,10,2017,Vice,Taking Down  Scene,tt1791528\n6xCIhFtDtx0,2015.0,6,10,2017,Vice,I Designed You Scene,tt1791528\nTmTq2M6xgEs,2015.0,9,10,2017,Vice,Shoot Me Scene,tt1791528\nxkzlZGohQ_4,2015.0,10,10,2017,Vice,No More  Scene,tt1791528\nih9NffWqWgM,2015.0,5,10,2017,Vice,\"Run, Rabbit, Run Scene\",tt1791528\nYejzV_nWN1M,2015.0,7,10,2017,Vice,Where's the Girl? Scene,tt1791528\nkaJbWpMZdwM,2015.0,3,10,2017,Vice,Memory Overload Scene,tt1791528\nI5ohJ4BBHzo,2015.0,2,10,2017,Vice,A.I. Technical Difficulties Scene,tt1791528\n3Iy44xwjtQA,2015.0,4,10,2017,Vice,Stick to the Story Scene,tt1791528\n57u_LsqMoys,2015.0,1,10,2017,Vice,Send in the Sweeper Team Scene,tt1791528\niP7_QcV9Q9s,-1.0,10,10,2017,Ride Along 2,Boat Fail Scene,tt2869728\nLyGXFcfRyAQ,-1.0,1,10,2017,Ride Along 2,It's a Foot Chase! Scene,tt2869728\nYRCIuvKg4tc,-1.0,2,10,2017,Ride Along 2,Bachelor Party Scene,tt2869728\nra42YS4NRlY,-1.0,4,10,2017,Ride Along 2,Nasty Nachos Scene,tt2869728\n3XD34HIx-00,-1.0,3,10,2017,Ride Along 2,The Apple Chime Scene,tt2869728\n-yyoLJuNIJU,-1.0,5,10,2017,Ride Along 2,Video Game Car Chase Scene,tt2869728\n7ezYV1mOdh0,-1.0,8,10,2017,Ride Along 2,Forklift Frenzy Scene,tt2869728\nENC7ueK93Ow,-1.0,7,10,2017,Ride Along 2,Alligator Scene,tt2869728\nWmFiW2CSiO4,-1.0,6,10,2017,Ride Along 2,Nigerian Prince Scene,tt2869728\nSLL5ziDWc6k,-1.0,9,10,2017,Ride Along 2,Bulletproof Ben Scene,tt2869728\n-vBO8PStfEg,-1.0,2,10,2017,My Big Fat Greek Wedding 2,Parents Deserve a Sex Life Scene,tt3760922\nmSsrdFBpuqU,-1.0,3,10,2017,My Big Fat Greek Wedding 2,A Boyfriend for Paris Scene,tt3760922\nPI82pNmQodk,-1.0,1,10,2017,My Big Fat Greek Wedding 2,Grandpa's Computer Scene,tt3760922\nP1EIIQ0tZUE,-1.0,5,10,2017,My Big Fat Greek Wedding 2,Will You Marry Me? Scene,tt3760922\nfR8fl1fJftU,-1.0,4,10,2017,My Big Fat Greek Wedding 2,Gus in the Tub Scene,tt3760922\ngFDIKfe91mg,-1.0,6,10,2017,My Big Fat Greek Wedding 2,Will You Go to Prom With Me? Scene,tt3760922\nUkF508FI9ws,-1.0,7,10,2017,My Big Fat Greek Wedding 2,Stepping Back Scene,tt3760922\noxml1eY8urE,-1.0,8,10,2017,My Big Fat Greek Wedding 2,I Love Him Scene,tt3760922\nvlwrxfIiDBs,-1.0,10,10,2017,My Big Fat Greek Wedding 2,The Wedding Scene,tt3760922\n0LQZpUHbjDM,-1.0,9,10,2017,My Big Fat Greek Wedding 2,I Missed You Scene,tt3760922\nNpdj1jv8JKo,2009.0,12,12,2017,Humpday,A Great Piece of Art Scene,tt1334537\n9h6w198Yg_Q,2009.0,11,12,2017,Humpday,That Was Awful Scene,tt1334537\n9vn3DZZHC4s,2009.0,7,12,2017,Humpday,Don't Be Scared Scene,tt1334537\nxD1OPkq6-Vg,2009.0,3,12,2017,Humpday,What a Wild Life Scene,tt1334537\nMR8hXM7_6EQ,2009.0,1,12,2017,Humpday,So Tired Scene,tt1334537\nCtux2wyz_W8,2009.0,10,12,2017,Humpday,Straight Dude Testimonial Scene,tt1334537\nheqpyT4kudQ,2009.0,5,12,2017,Humpday,Hangover Cure Scene,tt1334537\nxax--zcAdss,2009.0,2,12,2017,Humpday,Welcome Andrew Scene,tt1334537\nzkX8cKUFOvk,2009.0,8,12,2017,Humpday,Polyamorous Relationships Scene,tt1334537\noIymf1Bgmqg,2009.0,6,12,2017,Humpday,It's On Scene,tt1334537\nliDkvm3hMtw,2009.0,4,12,2017,Humpday,Beyond Gay Scene,tt1334537\n3_2F9m4Rvw4,2009.0,9,12,2017,Humpday,Ben's Secret Crush Scene,tt1334537\n0_7vIOvdKqY,1983.0,6,11,2017,Class,Instant Margarita Scene,tt0083739\n3J0d3ZwHy-Y,1983.0,11,11,2017,Class,Your Mom Called Scene,tt0083739\nu3oi4L5tWQg,1983.0,10,11,2017,Class,Skip Punches Jonathan Scene,tt0083739\neFrS6uCoMsw,1983.0,5,11,2017,Class,Love in an Elevator Scene,tt0083739\nSrNNEi50cl4,1983.0,2,11,2017,Class,Your Dead Roommate Scene,tt0083739\nUeV6eAtHp0M,1983.0,4,11,2017,Class,Have You Ever Been in Love? Scene,tt0083739\nnM0h6QXTpHQ,1983.0,7,11,2017,Class,\"Nice to Meet You, Mrs. Burroughs Scene\",tt0083739\nSzlHzRvw-MI,1983.0,9,11,2017,Class,The Stolen SAT Tests Scene,tt0083739\nY6jBV4wDoO4,1983.0,1,11,2017,Class,The Guy in Women's Underwear Scene,tt0083739\nk8bJrJ7_LKI,1983.0,3,11,2017,Class,Jesus Is My Roommate Scene,tt0083739\nIywRc7bHziQ,1983.0,8,11,2017,Class,Room Service Surprise Scene,tt0083739\nsp0O70Q5FAQ,-1.0,10,11,2017,Foxy Brown,Below the Belt Scene,tt0071517\nodNZhZSydNc,-1.0,7,11,2017,Foxy Brown,Here'sx Some Gasoline Scene,tt0071517\ntlJM0tgXu5Q,-1.0,3,11,2017,Foxy Brown,Cleaning the Streets Scene,tt0071517\nGCc99Gh-IEM,-1.0,11,11,2017,Foxy Brown,I Want You to Suffer! Scene,tt0071517\nrMczYrlPwaw,-1.0,8,11,2017,Foxy Brown,\"You Handle Justice, I'll Handle Revenge Scene\",tt0071517\nJWXgBi3HDac,-1.0,9,11,2017,Foxy Brown,Frisky Flying Scene,tt0071517\n1UXl3LGnRR4,-1.0,6,11,2017,Foxy Brown,Lesbian Bar Fight Scene,tt0071517\nyBd_y4V7vtc,-1.0,4,11,2017,Foxy Brown,A Whole Lotta Woman Scene,tt0071517\nQf_EPkVA31c,-1.0,5,11,2017,Foxy Brown,Humiliating the Honky Judge Scene,tt0071517\ncTR9Hnxfk7A,-1.0,2,11,2017,Foxy Brown,All This Ambition Scene,tt0071517\nAxBkurGlhHg,-1.0,1,11,2017,Foxy Brown,Foxy Rescues Her Brother Scene,tt0071517\nWRlIDIu2qpg,2016.0,10,10,2017,Popstar,Incredible Thoughts Scene,tt3960412\nDAPrbiJaej4,2016.0,9,10,2017,Popstar,Connor's Fancy Flapjacks Scene,tt3960412\nW95X207kQxU,2016.0,5,10,2017,Popstar,Finest Girl (Bin Laden Song) Scene,tt3960412\n1EcAcWe08NU,2016.0,7,10,2017,Popstar,Where's Connor's Dick? Scene,tt3960412\nQC0kTcAlf64,2016.0,6,10,2017,Popstar,New Helmet and Two Banditos Scene,tt3960412\npLooDtjrhv8,2016.0,8,10,2017,Popstar,Wolves Attack Seal Scene,tt3960412\nt1Wk3H5Xur0,2016.0,4,10,2017,Popstar,Bad Reviews and Catchprases Scene,tt3960412\nxGAAMQLb4ZE,2016.0,3,10,2017,Popstar,Equal Rights Scene,tt3960412\nKzUKcXxbU4U,2016.0,2,10,2017,Popstar,I'm So Humble Scene,tt3960412\nTht98G49dos,2016.0,1,10,2017,Popstar,The Style Boyz Scene,tt3960412\n_ZLAt3zwEpQ,-1.0,1,10,2017,Harold & Kumar Go to White Castle,Burger Shack Employee Scene,tt0366551\ncN2VCBTYgHI,-1.0,2,10,2017,Harold & Kumar Go to White Castle,Battleshits Scene,tt0366551\nY4-vFWxvdjs,-1.0,4,10,2017,Harold & Kumar Go to White Castle,Kumar's Operation Scene,tt0366551\nHNajZgCe5Pg,-1.0,3,10,2017,Harold & Kumar Go to White Castle,Rabid Raccoon Attack Scene,tt0366551\nZk5K-Z2enGA,-1.0,5,10,2017,Harold & Kumar Go to White Castle,Freakshow Scene,tt0366551\nVMhwOytHUsU,-1.0,6,10,2017,Harold & Kumar Go to White Castle,I Want You Both Inside Me Scene,tt0366551\nzPWwORb6PW8,-1.0,7,10,2017,Harold & Kumar Go to White Castle,Neil Patrick Harris Scene,tt0366551\naVUhnzQmx_A,-1.0,8,10,2017,Harold & Kumar Go to White Castle,Punching a Cop Scene,tt0366551\nfzRvMylDVi8,-1.0,10,10,2017,Harold & Kumar Go to White Castle,White Castle Scene,tt0366551\nSNwh7RP56S8,-1.0,9,10,2017,Harold & Kumar Go to White Castle,The Friendly Cheetah Scene,tt0366551\nUj6eiUsNwvU,-1.0,6,10,2017,Pineapple Express,Police Car Chase Scene,tt0910936\nAnGVJ8Gv8aU,-1.0,9,10,2017,Pineapple Express,You're Not Dying Today Scene,tt0910936\no6FUdj0_fGY,-1.0,10,10,2017,Pineapple Express,Can We Be Best Friends? Scene,tt0910936\nvOoyaqLrZnE,-1.0,8,10,2017,Pineapple Express,Dinner's Gonna Be Cold Tonight Scene,tt0910936\n18Qa__JYKdc,-1.0,5,10,2017,Pineapple Express,Dinner at Angie's House Scene,tt0910936\naDvjCbdyEHw,-1.0,7,10,2017,Pineapple Express,Thug Life Scene,tt0910936\nHKJOcRnkRQ4,-1.0,4,10,2017,Pineapple Express,I Seen't It Scene,tt0910936\n4DD8QRsms1s,-1.0,3,10,2017,Pineapple Express,Fight at Red's Scene,tt0910936\neI1dAmDZrZE,-1.0,2,10,2017,Pineapple Express,The Trifecta Scene,tt0910936\nuX7CAoxBNOU,-1.0,1,10,2017,Pineapple Express,The Bee's Knees Scene,tt0910936\n5sNY4Rn7bYI,-1.0,4,10,2017,Jason Bourne,The Asset Chases Bourne Scene,tt4196776\nfbR1gtlY7FM,-1.0,9,10,2017,Jason Bourne,Vegas Chase Scene,tt4196776\nAnJm-acXQCo,-1.0,5,10,2017,Jason Bourne,Find the Shot Scene,tt4196776\n5c3tOFFEcU4,-1.0,10,10,2017,Jason Bourne,Bourne vs. the Asset Scene,tt4196776\nNzJH4towI_A,-1.0,6,10,2017,Jason Bourne,Turned Into a Killer Scene,tt4196776\nyvtb9A9ai9Q,-1.0,7,10,2017,Jason Bourne,Assassination Attempt Scene,tt4196776\nFWznyZ9Znuw,-1.0,8,10,2017,Jason Bourne,It's Time to Come In Scene,tt4196776\nzb5RJyrk4gc,-1.0,2,10,2017,Jason Bourne,Riot Chase Scene,tt4196776\nWnocz8UrhQw,-1.0,3,10,2017,Jason Bourne,Motorcycle Rescue Scene,tt4196776\nyunEcgw8va0,-1.0,1,10,2017,Jason Bourne,One Punch Scene,tt4196776\nHsRwyJw5o7k,1999.0,10,10,2017,Deep Blue Sea,Blowing Up the Shark Scene,tt0149261\nnA1lAszNSoI,1999.0,9,10,2017,Deep Blue Sea,Shocking the Shark Scene,tt0149261\nq6ObhNBURyY,1999.0,8,10,2017,Deep Blue Sea,Tunnel of Terror Scene,tt0149261\nBS8I9H07wKw,1999.0,7,10,2017,Deep Blue Sea,Russell Is Eaten Scene,tt0149261\ngfXns_cU8I8,1999.0,6,10,2017,Deep Blue Sea,You Ate My Bird Scene,tt0149261\n-v8l6cCrf0w,1999.0,5,10,2017,Deep Blue Sea,A Feathered Snack Scene,tt0149261\nm2aC-nkV1Zg,1999.0,3,10,2017,Deep Blue Sea,Jim Is Bitten Scene,tt0149261\nrvqm61CcOLo,1999.0,4,10,2017,Deep Blue Sea,Breaking Into the Lab Scene,tt0149261\ni31XFSORRfc,1999.0,2,10,2017,Deep Blue Sea,Smart Sharks Scene,tt0149261\n5lPGiKG9VI8,1999.0,1,10,2017,Deep Blue Sea,The Beast Beneath the Boat Scene,tt0149261\ndfWdmxCHwfc,-1.0,9,10,2017,Last Action Hero,Rooftop Ripper Scene,tt0107362\n9Eont_yEGZs,-1.0,1,10,2017,Last Action Hero,Hamlet Parody Scene,tt0107362\nBr9zd0KkFTU,-1.0,10,10,2017,Last Action Hero,No Sequel For You Scene,tt0107362\ngzPiBOc_Nfs,-1.0,7,10,2017,Last Action Hero,Silent But Deadly Scene,tt0107362\nJo1OjI4Yfv8,-1.0,8,10,2017,Last Action Hero,\"If God Was a Villain, He'd Be Me Scene\",tt0107362\nhwTf9WurF4U,-1.0,6,10,2017,Last Action Hero,This Man's Not Dead! Scene,tt0107362\nIXmWL4J2wwI,-1.0,2,10,2017,Last Action Hero,This is Happening Scene,tt0107362\n5kQCpsPnnew,-1.0,5,10,2017,Last Action Hero,Don't Give Up Your Day Job Scene,tt0107362\nu_z2ttNkL24,-1.0,4,10,2017,Last Action Hero,I'll Be Back Scene,tt0107362\n3yjYPrkMGdk,-1.0,3,10,2017,Last Action Hero,Fasten Your Seatbelt Scene,tt0107362\nfiP6h4VL-wE,-1.0,3,10,2017,The Day the Earth Stopped,Get Out of the Car! Scene,tt1290471\nnhDX2exjhGU,-1.0,6,10,2017,The Day the Earth Stopped,As Long As There's Sunlight Scene,tt1290471\nEMbzESGsxoY,-1.0,10,10,2017,The Day the Earth Stopped,We Can Learn to Live in Harmony Scene,tt1290471\n-u0yhzYlhFA,-1.0,9,10,2017,The Day the Earth Stopped,Resurrection Scene,tt1290471\n83Ax_EIMDVk,-1.0,8,10,2017,The Day the Earth Stopped,You Will Destroy This Planet Scene,tt1290471\nKMr9bWPy7u8,-1.0,4,10,2017,The Day the Earth Stopped,Visions of Home Scene,tt1290471\nZdmU6mM0Gog,-1.0,7,10,2017,The Day the Earth Stopped,Family Revival Scene,tt1290471\ny3L-a3R9OQE,-1.0,5,10,2017,The Day the Earth Stopped,She's the Only Hope We've Got Scene,tt1290471\nLZD-86lIgYg,-1.0,1,10,2017,The Day the Earth Stopped,Sky's Special Abilities Scene,tt1290471\nrnkIsbFHoB4,-1.0,2,10,2017,The Day the Earth Stopped,Losing Power Scene,tt1290471\nxhgWGU6cQ00,-1.0,7,10,2017,Grown Ups 2,Lenny's Childhood Bully Scene,tt2191701\nfq5JFon-LOs,-1.0,3,10,2017,Grown Ups 2,Creepy Warm Up Scene,tt2191701\nos7KKfG3QE0,-1.0,10,10,2017,Grown Ups 2,Please Don't Hit Me! Scene,tt2191701\nxkMijsfMZBU,-1.0,9,10,2017,Grown Ups 2,Party Time! Scene,tt2191701\n1jK2Y8vAM1A,-1.0,5,10,2017,Grown Ups 2,Presidential Police Escort Scene,tt2191701\naf1gSplQfPU,-1.0,8,10,2017,Grown Ups 2,Runaway Tire Scene,tt2191701\nJU_Vqys3Kp4,-1.0,6,10,2017,Grown Ups 2,Sexy Dance Recital Scene,tt2191701\nx2K8I28zejw,-1.0,2,10,2017,Grown Ups 2,Substitute Bus Driver Scene,tt2191701\nJaMejPOFVCc,-1.0,4,10,2017,Grown Ups 2,K-mart Shopping Scene,tt2191701\nKPOx5tioLeY,-1.0,1,10,2017,Grown Ups 2,Deer In the House Scene,tt2191701\nJjfbxBMmXTI,-1.0,10,10,2017,Grown Ups,The Basketball Game Begins Scene,tt1375670\nPhRyzmcEOVA,-1.0,9,10,2017,Grown Ups,You Fell Asleep on the Couch Again Scene,tt1375670\nGHZSYBkKec4,-1.0,8,10,2017,Grown Ups,Canadian Hunk and the Water Park Scene,tt1375670\ngNbqn47rt3M,-1.0,7,10,2017,Grown Ups,Putting Her Advantages to Work Scene,tt1375670\nSOwJJPZKIys,-1.0,5,10,2017,Grown Ups,Arrow Roulette Scene,tt1375670\nwZl5uWOpepU,-1.0,6,10,2017,Grown Ups,And There's the Snap Scene,tt1375670\nwKiW5OYjels,-1.0,4,10,2017,Grown Ups,I Hope That Car Never Gets Fixed Scene,tt1375670\nrezZBgaJGoM,-1.0,3,10,2017,Grown Ups,Rope Fail Scene,tt1375670\n--QCZKgJt6o,-1.0,2,10,2017,Grown Ups,Ave Maria and Mommy's Milk Scene,tt1375670\nhQmDmh3qA6s,-1.0,1,10,2017,Grown Ups,His Time of the Month Scene,tt1375670\nQggV4W5BTkM,-1.0,6,10,2017,Hercules Reborn,This Is Definitely Bad Scene,tt3499424\nuTIfsQ15LPM,-1.0,1,10,2017,Hercules Reborn,Live by My Rule or Die Scene,tt3499424\nS0wF9tshsyk,-1.0,4,10,2017,Hercules Reborn,We Will Not Tolerate Traitors Scene,tt3499424\nI8_tVvzJ1xg,-1.0,3,10,2017,Hercules Reborn,I Am Hercules Scene,tt3499424\nqtRfpAJHi3U,-1.0,5,10,2017,Hercules Reborn,It's an Ambush! Scene,tt3499424\ne9nVeZ8UE5M,-1.0,7,10,2017,Hercules Reborn,Spit Out the Demons! Scene,tt3499424\nGY0btkKshOo,-1.0,8,10,2017,Hercules Reborn,Arius vs. Nikos Scene,tt3499424\nGJVYWd_3tzU,-1.0,10,10,2017,Hercules Reborn,The Game is Over Scene,tt3499424\noq0Aj9JsmMQ,-1.0,9,10,2017,Hercules Reborn,I Am No God Scene,tt3499424\n07I2_etOYhM,-1.0,2,10,2017,Hercules Reborn,Your Hero Has Left You Scene,tt3499424\n9Pn6NgaX8I0,2013.0,1,10,2017,Pacific Rim,Jaeger Pilot Suit Up Scene,tt1663662\nyzwheD19-PQ,2013.0,8,10,2017,Pacific Rim,A Baby Kaiju Scene,tt1663662\nR5a3sZiNuu4,2013.0,10,10,2017,Pacific Rim,The Sacrifice of Striker Eureka Scene,tt1663662\nBiuCpXg_jgU,2013.0,7,10,2017,Pacific Rim,Sword Activate Scene,tt1663662\n-7Sow81yi24,2013.0,9,10,2017,Pacific Rim,We Are Canceling the Apocalypse Scene,tt1663662\nAYQjmj7cSM0,2013.0,6,10,2017,Pacific Rim,Gipsy Danger vs. Otachi Scene,tt1663662\noDcNKpBgd_0,2013.0,5,10,2017,Pacific Rim,Rumble on the Docks Scene,tt1663662\nUy-L94Tio9w,2013.0,4,10,2017,Pacific Rim,Cherno Alpha & Crimson Typhoon Scene,tt1663662\ns4esaE679Wg,2013.0,2,10,2017,Pacific Rim,Gipsy Danger vs. Knifehead Scene,tt1663662\nE7i4pNsqnls,2013.0,3,10,2017,Pacific Rim,A Worthy Opponent Scene,tt1663662\nJhMWopjJiI8,-1.0,2,10,2017,The Conjuring,Hide and Clap Scene,tt7069210\nwHqQzF4JXdE,-1.0,1,10,2017,The Conjuring,Annabelle the Doll Scene,tt7069210\n16op1FeUX1A,-1.0,3,10,2017,The Conjuring,Look What She Made Me Do Scene,tt7069210\nrRuulhJ2ARQ,-1.0,4,10,2017,The Conjuring,She Made Me Do It Scene,tt7069210\nnLMkSN2F2xs,-1.0,6,10,2017,The Conjuring,Annabelle Awakens Scene,tt7069210\nzS41k2xmQUI,-1.0,5,10,2017,The Conjuring,She's Feeding Off Her Scene,tt7069210\nOcS7veELZ0c,-1.0,8,10,2017,The Conjuring,Fighting for Her Soul Scene,tt7069210\nlPYFkRoFM-A,-1.0,7,10,2017,The Conjuring,The Witch Will Kill Her Scene,tt7069210\nYke_Lkmm5Bc,-1.0,9,10,2017,The Conjuring,You're All Gonna Die Scene,tt7069210\nV4rzoRzqmyc,-1.0,10,10,2017,The Conjuring,I Condemn You Back to Hell Scene,tt7069210\nkzxSZ5zCfXs,2015.0,6,10,2017,Heist,SWAT Assaults the Bus Scene,tt3276924\nkbb1MUQmusU,2015.0,10,10,2017,Heist,Daddy's Comin' Home Scene,tt3276924\nhjyWtmbAyco,2015.0,9,10,2017,Heist,A Magic Trick Scene,tt3276924\nFxcIBbXalVg,2015.0,8,10,2017,Heist,Making a Deal Scene,tt3276924\nDJZqFXSHyvc,2015.0,7,10,2017,Heist,An Execution on Live TV Scene,tt3276924\nd_hNjBBdcyU,2015.0,5,10,2017,Heist,Pope's Errand Boy Scene,tt3276924\n5Y7gOcsg0Xk,2015.0,4,10,2017,Heist,Gassing Up Scene,tt3276924\nCScFydObPJA,2015.0,3,10,2017,Heist,\"Cops, This is Robbers Scene\",tt3276924\nzSw2bGgrIQQ,2015.0,2,10,2017,Heist,Road Block Cleared Scene,tt3276924\ntpsGUGc8Ri8,2015.0,1,10,2017,Heist,Plan B is Run for Your Life Scene,tt3276924\nLwSsrFFa2Wc,-1.0,8,10,2017,Larry Gaye,Urban Landing Scene,tt2547172\nQN8ln3Hx1mc,-1.0,9,10,2017,Larry Gaye,I Don't Wanna Live Scene,tt2547172\nBwpvq4JhqY4,-1.0,10,10,2017,Larry Gaye,Semi-Happy Ending Scene,tt2547172\nD-gTnaF9LVA,-1.0,7,10,2017,Larry Gaye,Powering Down Scene,tt2547172\n0o9Fm3hnpYQ,-1.0,5,10,2017,Larry Gaye,A Disturbing Meet Cute Scene,tt2547172\nAgNH9Ktkrqk,-1.0,6,10,2017,Larry Gaye,Superior Sally Scene,tt2547172\nqYCEXS6Ws_c,-1.0,2,10,2017,Larry Gaye,Let's Fly This Bitch Scene,tt2547172\nO4TmwflckcU,-1.0,3,10,2017,Larry Gaye,I'm Gonna Pass Scene,tt2547172\njvBp6TqoHWw,-1.0,1,10,2017,Larry Gaye,The Unauthorized Autobiography Scene,tt2547172\n_LzgxVd1wF8,-1.0,4,10,2017,Larry Gaye,Daddy Leaves Scene,tt2547172\nPM8-Hmfy6OU,-1.0,10,10,2017,Android Cop,\"Grand Entrance, Dramatic End Scene\",tt3393070\n5UnmqCr95HI,-1.0,8,10,2017,Android Cop,Bring Me Their Guts Scene,tt3393070\nHl1iN3hP-60,-1.0,9,10,2017,Android Cop,I'm Not an Android! Scene,tt3393070\nXndQbcPIsI8,-1.0,7,10,2017,Android Cop,Hell is a Long Way From Home Scene,tt3393070\nmuMv1K99l64,-1.0,3,10,2017,Android Cop,\"Dead or Alive, You're Under Arrest Scene\",tt3393070\n6xYx1k3O8X8,-1.0,4,10,2017,Android Cop,\"Good Cop, Mediocre Cop Scene\",tt3393070\nqIAWFde0FO0,-1.0,2,10,2017,Android Cop,The Raid To Capture Dexts Scene,tt3393070\nAoWXSOx502Q,-1.0,1,10,2017,Android Cop,A Bullet Riddled Mistake Scene,tt3393070\nlJjxm4xTVKk,-1.0,5,10,2017,Android Cop,To Keep Friends From Exploding Scene,tt3393070\nXLqh2vpx6BI,-1.0,6,10,2017,Android Cop,How to Negotiate in LA Scene,tt3393070\nlYCq6x3AHYw,-1.0,10,10,2017,The Secret Life of Pets,The Owners Return Scene,tt2709768\nJvclIUy-JlA,-1.0,9,10,2017,The Secret Life of Pets,You're In Love Scene,tt2709768\nHPGSDBjsSWI,-1.0,8,10,2017,The Secret Life of Pets,Get the Keys! Scene,tt2709768\nrLZ5aVNxV84,-1.0,6,10,2017,The Secret Life of Pets,You Know Tiny Dog? Scene,tt2709768\nv5nIRiA5W-E,-1.0,7,10,2017,The Secret Life of Pets,Gidget Saves Max Scene,tt2709768\nGl5GVViqvjo,-1.0,5,10,2017,The Secret Life of Pets,Sausage Factory Scene,tt2709768\nGAozArqKtGQ,-1.0,4,10,2017,The Secret Life of Pets,Secret Route Scene,tt2709768\nRbsNzYdNM5I,-1.0,3,10,2017,The Secret Life of Pets,Busting You Out! Scene,tt2709768\nHR2-PHuh3W8,-1.0,2,10,2017,The Secret Life of Pets,Max Meets Duke Scene,tt2709768\n6_u456zQtkY,-1.0,1,10,2017,The Secret Life of Pets,The Owners Leave Scene,tt2709768\nj8cGENcePl0,-1.0,1,10,2017,Open Season,Mini-Mart Mayhem Scene,tt0400717\n-u1uwI5qJ74,-1.0,2,10,2017,Open Season,Staging an Attack Scene,tt0400717\na2qE4hG9XCk,-1.0,6,10,2017,Open Season,Fishin' & Huntin' Scene,tt0400717\nQvfcWxGZv9M,-1.0,4,10,2017,Open Season,Forest 101 Scene,tt0400717\ngJvoeKHjuvE,-1.0,3,10,2017,Open Season,McSquizzy's Army Scene,tt0400717\nzgrvS0PJDrA,-1.0,5,10,2017,Open Season,Boog's Poop Scene,tt0400717\nV-9fQTUix6I,-1.0,8,10,2017,Open Season,Hunting the Hunters Scene,tt0400717\nuCsRqsNpF60,-1.0,7,10,2017,Open Season,Goldilocks the Bear Scene,tt0400717\noGV14YsOvWo,-1.0,9,10,2017,Open Season,The Mighty Grizzly Scene,tt0400717\nagrpQQWiX48,-1.0,10,10,2017,Open Season,You Are Home Scene,tt0400717\n5m9Bf48pWc0,-1.0,1,10,2017,Surf's Up,Surfing Documentary Scene,tt0423294\nBWT3i-fgw0s,-1.0,2,10,2017,Surf's Up,Cody vs. Tank Surf Off Scene,tt0423294\nG2ngOQwMMek,-1.0,3,10,2017,Surf's Up,A Surefire Cure Scene,tt0423294\ne96_1NxL9no,-1.0,7,10,2017,Surf's Up,Let's Surf! Scene,tt0423294\nYHirkSmJcEU,-1.0,6,10,2017,Surf's Up,Lava Boarding Scene,tt0423294\nHGrPKwsAvqE,-1.0,5,10,2017,Surf's Up,Chicken Joe's Hot Tub Scene,tt0423294\nVD8UttNfU60,-1.0,4,10,2017,Surf's Up,Building Cody's Board Scene,tt0423294\nuhBhYnRrOg4,-1.0,8,10,2017,Surf's Up,The Competition Begins Scene,tt0423294\n8fzGR29bKjY,-1.0,9,10,2017,Surf's Up,The Final Wave Scene,tt0423294\nkn5Sc8o9YTM,-1.0,10,10,2017,Surf's Up,Big Z Returns Scene,tt0423294\n1mLEN1SN9Eo,-1.0,9,10,2017,Balls Out,Thad Tamer Scene,tt0787470\nbSm3d9ftiJA,-1.0,8,10,2017,Balls Out,Speech Time Scene,tt0787470\ngFocZQa78ho,-1.0,10,10,2017,Balls Out,What Type of Devilry Is This? Scene,tt0787470\nkr2k20G3hCc,-1.0,6,10,2017,Balls Out,\"Minions, Attack! Scene\",tt0787470\nOXUmjMKCR_c,-1.0,7,10,2017,Balls Out,You've Been Ghosted Scene,tt0787470\naKtrjeCFCAg,-1.0,4,10,2017,Balls Out,We Train! Scene,tt0787470\n95fAKnIgqmM,-1.0,2,10,2017,Balls Out,Vicky's Proposal Scene,tt0787470\nhkEXnpQ_c5I,-1.0,1,10,2017,Balls Out,Paralyzed Penis Scene,tt0787470\nbqwH3cQUlNA,-1.0,5,10,2017,Balls Out,Too Afraid To Triple Z Scene,tt0787470\nbDcFILIfHU4,-1.0,3,10,2017,Balls Out,Getting the Team Back Together Scene,tt0787470\nsX8SScsA8TM,-1.0,10,11,2017,A Royal Affair,Frederik Stays Here Scene,tt1276419\nbsoa3DBmelk,-1.0,6,11,2017,A Royal Affair,The Kiss Scene,tt1276419\ntwdd-yhC2vw,-1.0,8,11,2017,A Royal Affair,A Daughter Scene,tt1276419\nmkIwuziqr0k,-1.0,9,11,2017,A Royal Affair,The Real Father Scene,tt1276419\n19h6CYFMUBU,-1.0,2,11,2017,A Royal Affair,Meeting the King Scene,tt1276419\n20Q3Qa51MUs,-1.0,5,11,2017,A Royal Affair,Dancing with the Queen Scene,tt1276419\n2BbpnPOIKIM,-1.0,11,11,2017,A Royal Affair,The Execution Scene,tt1276419\ntBVoGbg2ocA,-1.0,7,11,2017,A Royal Affair,Dissolving the Council Scene,tt1276419\nvtu0TbT35UY,-1.0,3,11,2017,A Royal Affair,Inoculating the Prince Scene,tt1276419\naWUJI1UPuHs,-1.0,4,11,2017,A Royal Affair,Freedom Scene,tt1276419\n1EJYZ1IlTF8,-1.0,1,11,2017,A Royal Affair,Her Wretched Fate Scene,tt1276419\nPX3By_Y0jTA,-1.0,7,10,2017,Warcraft,Alliance vs. The Horde Scene,tt0803096\nAx83IEcbUwU,-1.0,10,10,2017,Warcraft,Lothar vs. Blackhand Scene,tt0803096\nS0ymo6QHMc0,-1.0,9,10,2017,Warcraft,The Honor of Killing a King Scene,tt0803096\n4sOjksh8vX8,-1.0,8,10,2017,Warcraft,\"Stopping Medivh, The Last Guardian Scene\",tt0803096\nnD6DMtXc3mY,-1.0,6,10,2017,Warcraft,Durotan Challenges Gul'dan Scene,tt0803096\nlfObLA5H4Rg,-1.0,5,10,2017,Warcraft,Casualties of War Scene,tt0803096\nyuQW4F1siis,-1.0,3,10,2017,Warcraft,War Solves Everything Scene,tt0803096\nECDKjStq8Eg,-1.0,4,10,2017,Warcraft,Lightning Barrier Battle Scene,tt0803096\nxI4s1uyYIX4,-1.0,2,10,2017,Warcraft,Warriors and Worgs Scene,tt0803096\nm0DbfOnOBQo,-1.0,1,10,2017,Warcraft,Orc Ambush Scene,tt0803096\nKKsVK5R9q80,-1.0,2,10,2017,Green Lantern,The Oath Scene,tt1133985\nvUrgn1Vm86I,-1.0,5,10,2017,Green Lantern,Sinestro vs. Hal Jordan Scene,tt1133985\nZ0FKMJQR9RU,-1.0,1,10,2017,Green Lantern,It Chose You Scene,tt1133985\nlP8EYYjPEmc,-1.0,7,10,2017,Green Lantern,What the Hell is With That Mask? Scene,tt1133985\nEpCLoqVPwqw,-1.0,3,10,2017,Green Lantern,A Powerful Punch Scene,tt1133985\n9KkV_swvE2Q,-1.0,4,10,2017,Green Lantern,Ring-Slinging 101 Scene,tt1133985\n_I_F4a-oUyA,-1.0,6,10,2017,Green Lantern,Hot Wheel Helicopter Scene,tt1133985\nh0qniQTX3r8,-1.0,8,10,2017,Green Lantern,The Power of Fear Scene,tt1133985\nQnX-Xgbi37I,-1.0,10,10,2017,Green Lantern,The Faster You Burn Scene,tt1133985\nnQeov6j0bsQ,-1.0,9,10,2017,Green Lantern,Parallax Attacks Scene,tt1133985\ne3BZn-XJ4mU,-1.0,5,10,2017,Dragon Blade,Tiberius vs. Yin Po Scene,tt3672840\nmRwKWTGCd7Y,-1.0,4,10,2017,Dragon Blade,I Order You to Go Scene,tt3672840\nnwt-V8xfwkQ,-1.0,3,10,2017,Dragon Blade,Arrows and Fire Scene,tt3672840\nSwjKQrYpe-g,-1.0,1,10,2017,Dragon Blade,Huo An vs. Cold Moon Scene,tt3672840\np9XIPtizl3s,-1.0,2,10,2017,Dragon Blade,Lucius vs. Huo An Scene,tt3672840\nPve6cemkiDg,-1.0,8,10,2017,Dragon Blade,A Battle of Nations Scene,tt3672840\nKaLpXs1SDWo,-1.0,7,10,2017,Dragon Blade,A True Roman Never Surrenders Scene,tt3672840\n1xXjjahIwr8,-1.0,6,10,2017,Dragon Blade,We Shall Meet Again Scene,tt3672840\n1mqubJrf6KA,-1.0,9,10,2017,Dragon Blade,Huo An vs. Tiberius Scene,tt3672840\ntaL06OVt4kQ,-1.0,10,10,2017,Dragon Blade,A Real Hero Scene,tt3672840\nGa9WsLD5LV4,-1.0,1,10,2017,Battle of Los Angeles,Using Our Weapons Against Us Scene,tt1758570\npmuDcYB17E0,-1.0,2,10,2017,Battle of Los Angeles,Move That Bird Scene,tt1758570\njTnDuMlebNU,-1.0,9,10,2017,Battle of Los Angeles,Alien Annihilation Scene,tt1758570\nPENNRVb6OBM,-1.0,4,10,2017,Battle of Los Angeles,They Don't Come in Peace,tt1758570\nTSxB1wKzjhE,-1.0,3,10,2017,Battle of Los Angeles,That's How We Do Scene,tt1758570\nB9pucpn_NOE,-1.0,10,10,2017,Battle of Los Angeles,Feel the Ship Scene,tt1758570\nKbOr1buhh-Y,-1.0,7,10,2017,Battle of Los Angeles,Point and Shoot Scene,tt1758570\naYTP2-S8fxk,-1.0,8,10,2017,Battle of Los Angeles,Telekinetic Navigation Scene,tt1758570\ngOw5myC1PBI,-1.0,5,10,2017,Battle of Los Angeles,Screech! Scene,tt1758570\niypUHnZ-9TM,-1.0,6,10,2017,Battle of Los Angeles,Fighting the Facebot Scene,tt1758570\nZuCKjnYIRYQ,-1.0,10,10,2017,A Hijacking,Just Leave Scene,tt2216240\nCzugC2PxerE,-1.0,9,10,2017,A Hijacking,We Have a Deal Scene,tt2216240\nL-5U2tIfxAg,-1.0,7,10,2017,A Hijacking,Call Your Wife Scene,tt2216240\njvh9Kw3NbMs,-1.0,8,10,2017,A Hijacking,Don't Threaten My Men Scene,tt2216240\nm83iX-zbiGU,-1.0,3,10,2017,A Hijacking,The First Negotiation Scene,tt2216240\niI5M8zwvki0,-1.0,6,10,2017,A Hijacking,Let's Fish Scene,tt2216240\n0y-Y83y4kKo,-1.0,5,10,2017,A Hijacking,He Doesn't Care About You Scene,tt2216240\nGrWc2UKDo-s,-1.0,1,10,2017,A Hijacking,I Believe They Are Alive Scene,tt2216240\nYOlt7yp_QIs,-1.0,2,10,2017,A Hijacking,Dealing With Pirates Scene,tt2216240\nZhAeutRIUzI,-1.0,4,10,2017,A Hijacking,I Have Very Good News Scene,tt2216240\ntJPokP3FVl8,-1.0,6,10,2017,The Hobbit: The Battle of the Five Armies,Here Ends Your Bloodline Scene,tt2310332\nCBbH4CVp1S0,-1.0,4,10,2017,The Hobbit: The Battle of the Five Armies,Slaughter Them All Scene,tt2310332\nv5llnbqhLZM,-1.0,1,10,2017,The Hobbit: The Battle of the Five Armies,The Fall of Smaug Scene,tt2310332\ntb9kVTItw3I,-1.0,3,10,2017,The Hobbit: The Battle of the Five Armies,Bard and the Beast Scene,tt2310332\nqPkKjKAyJ8I,-1.0,2,10,2017,The Hobbit: The Battle of the Five Armies,The Darkness Has Returned Scene,tt2310332\nWYi4Bp1hmC0,-1.0,5,10,2017,The Hobbit: The Battle of the Five Armies,To Battle! Scene,tt2310332\ntnwarNcu3fc,-1.0,7,10,2017,The Hobbit: The Battle of the Five Armies,Kili's Sacrifice Scene,tt2310332\n3kNqc5Hrh0M,-1.0,8,10,2017,The Hobbit: The Battle of the Five Armies,Legolas's Rampage Scene,tt2310332\nuHuDwL4XEUE,-1.0,10,10,2017,The Hobbit: The Battle of the Five Armies,A True Friend Scene,tt2310332\ntuXSqMrfVW8,-1.0,9,10,2017,The Hobbit: The Battle of the Five Armies,Azog's Demise Scene,tt2310332\nUC6sKTqfgg8,-1.0,2,10,2017,The Hobbit: The Desolation of Smaug,Captured by the Elves Scene,tt1170358\n-QfKnft9uWY,-1.0,1,10,2017,The Hobbit: The Desolation of Smaug,The Stinger Scene,tt1170358\nAutuCkT54KI,-1.0,3,10,2017,The Hobbit: The Desolation of Smaug,Hold Your Breath Scene,tt1170358\nkhK3EggW2DY,-1.0,4,10,2017,The Hobbit: The Desolation of Smaug,Barreling Down the River Scene,tt1170358\nSeYgMYijdz4,-1.0,5,10,2017,The Hobbit: The Desolation of Smaug,Fighting the Darkness Scene,tt1170358\nn59mG9_X35Q,-1.0,6,10,2017,The Hobbit: The Desolation of Smaug,How Do You Choose to Die? Scene,tt1170358\nKLkD0H3K5Zk,-1.0,8,10,2017,The Hobbit: The Desolation of Smaug,Legolas vs. the Orcs Scene,tt1170358\nRf82VHBcoYY,-1.0,7,10,2017,The Hobbit: The Desolation of Smaug,Legolas and Tauriel Scene,tt1170358\naBxlJkcHDSM,-1.0,10,10,2017,The Hobbit: The Desolation of Smaug,\"I Am Fire, I Am Death Scene\",tt1170358\nv9pZdy4lZ7U,-1.0,9,10,2017,The Hobbit: The Desolation of Smaug,Lighting the Furnace Scene,tt1170358\npxQNKJWZ-t0,-1.0,7,10,2017,The Hobbit: An Unexpected Journey,Hunted by Orcs Scene,tt0903624\nYV-vi9NuyTw,-1.0,6,10,2017,The Hobbit: An Unexpected Journey,The Necromancer Has Come Scene,tt0903624\nRcC6K2k6cwk,-1.0,9,10,2017,The Hobbit: An Unexpected Journey,The Goblin Hoard Scene,tt0903624\nIQWtTLEslg8,-1.0,10,10,2017,The Hobbit: An Unexpected Journey,Orcs and Eagles Scene,tt0903624\nTeSzBaedb2Y,-1.0,5,10,2017,The Hobbit: An Unexpected Journey,Battling the Trolls Scene,tt0903624\ngW7ozVNSL8k,-1.0,8,10,2017,The Hobbit: An Unexpected Journey,Riddles in the Dark Scene,tt0903624\nqHisKG66fLI,-1.0,4,10,2017,The Hobbit: An Unexpected Journey,One I Could Call King Scene,tt0903624\ns8cVCsIcGAE,-1.0,1,10,2017,The Hobbit: An Unexpected Journey,The Legend of Lonely Mountain Scene,tt0903624\nUFFWH8N9SLk,-1.0,3,10,2017,The Hobbit: An Unexpected Journey,The Misty Mountains Cold Scene,tt0903624\ne0HzBST_794,-1.0,2,10,2017,The Hobbit: An Unexpected Journey,What Bilbo Baggins Hates Scene,tt0903624\nKQlR_8YkRKg,2011.0,10,11,2017,Fake,We Did It Scene,tt1507566\nZYaLloEakCg,2011.0,11,11,2017,Fake,Where Is It? Scene,tt1507566\n5hocAgn07-U,2011.0,9,11,2017,Fake,You Can't Scene,tt1507566\n2QKuy-mlQfI,2011.0,6,11,2017,Fake,Mr. Seamus White Scene,tt1507566\nwJzWgX63LRs,2011.0,4,11,2017,Fake,FBI Agent Kozinski Scene,tt1507566\nAaj_WEYZJN0,2011.0,7,11,2017,Fake,Their Plan Scene,tt1507566\nXuLHSjIXpJk,2011.0,5,11,2017,Fake,These are s Scene,tt1507566\npa1ZFxgQmUY,2011.0,8,11,2017,Fake,You Work for Me Now Scene,tt1507566\nDNpBEvHATIs,2011.0,3,11,2017,Fake,Art as Forgery Scene,tt1507566\nXhwgtlCns34,2011.0,1,11,2017,Fake,That Painting Scene,tt1507566\nBFaqEfhGj4Y,2011.0,2,11,2017,Fake,We Just Don't Like You Scene,tt1507566\n0NUDP-gxGyM,2009.0,6,10,2017,Sherlock Holmes,Let it Breathe Scene,tt0988045\nZXyLYqWUffA,2009.0,10,10,2017,Sherlock Holmes,Far Too Fond of Himself Scene,tt0988045\niA_KZwlnrcI,2009.0,9,10,2017,Sherlock Holmes,Never Any Magic Scene,tt0988045\neBVqcDJbl5A,2009.0,7,10,2017,Sherlock Holmes,Saving Irene Scene,tt0988045\n1DTrvZ3wxy0,2009.0,8,10,2017,Sherlock Holmes,Race Against the Clock Scene,tt0988045\nN_c0y8BcKBU,2009.0,5,10,2017,Sherlock Holmes,Meat or Potatoes? Scene,tt0988045\nwdVtcHMYAM4,2009.0,4,10,2017,Sherlock Holmes,Master of Disguise Scene,tt0988045\nl6TGERgrXmA,2009.0,2,10,2017,Sherlock Holmes,What Can You Tell About Me? Scene,tt0988045\nu-z5139CW1I,2009.0,3,10,2017,Sherlock Holmes,Boxing Match Scene,tt0988045\ndVzFy-4c-AY,2009.0,1,10,2017,Sherlock Holmes,The Arrest of Lord Blackwood Scene,tt0988045\nDlJKjlgWFu0,2008.0,1,10,2017,Death Racers,You Have Two Weeks Scene,tt1261046\nNS8z60XHJdk,2008.0,9,10,2017,Death Racers,Do It for the Juggalos Scene,tt1261046\nYC0tFqipqpI,2008.0,8,10,2017,Death Racers,Attacking the Reaper Scene,tt1261046\nYM4Of8J6gLE,2008.0,6,10,2017,Death Racers,Murdering Metal Man Scene,tt1261046\nWZrXR5HAEVw,2008.0,5,10,2017,Death Racers,Surprise Attack Scene,tt1261046\nRjyCXfloRJk,2008.0,2,10,2017,Death Racers,Don't Lose Your Head Scene,tt1261046\nrl6soHoCV8k,2008.0,3,10,2017,Death Racers,Start Your Engines! Scene,tt1261046\n-08xWZTUbNI,2008.0,10,10,2017,Death Racers,Destroying the World Scene,tt1261046\no0HHjpIa8fw,2008.0,7,10,2017,Death Racers,The Worst Day of My Life Scene,tt1261046\nK3VNZOc_Wo4,2008.0,4,10,2017,Death Racers,Natural Born Artiste Scene,tt1261046\nGjhHy-kMAw8,2012.0,11,11,2017,Stolen,Sinking Scene,tt1656186\nRsd5rA1MJSw,2012.0,4,11,2017,Stolen,Kidnapped Daughter Scene,tt1656186\nY9H1jFdPzD8,2012.0,8,11,2017,Stolen,Death and Brake Lights Scene,tt1656186\ngLzsj4U96oM,2012.0,10,11,2017,Stolen,Car Crash Scene,tt1656186\ngv0zKrCQscA,2012.0,9,11,2017,Stolen,The Wrong Cab Scene,tt1656186\nJNkxfdR9dXk,2012.0,6,11,2017,Stolen,A Criminal Mastermind Scene,tt1656186\nY3NbUilKutU,2012.0,7,11,2017,Stolen,Psycho Cabbie Scene,tt1656186\nSplRDi4FOfs,2012.0,5,11,2017,Stolen,\"Miss a Call, She Dies Scene\",tt1656186\nQS-7heS_70c,2012.0,3,11,2017,Stolen,Getaway Gone Bad Scene,tt1656186\naBxruaQibgE,2012.0,1,11,2017,Stolen,Bank Heist Scene,tt1656186\noYuI54XUXkg,2012.0,2,11,2017,Stolen,No Homicide Scene,tt1656186\nGKAPU5e7miY,2013.0,11,11,2017,Run,Mike Confronts Luke Scene,tt2097307\nkbS0Wkxr49I,2013.0,10,11,2017,Run,Rescuing Emily Scene,tt2097307\nglrsnwHe_ng,2013.0,9,11,2017,Run,Kidnapped Scene,tt2097307\n9glAGvMjZiw,2013.0,8,11,2017,Run,School Chase Scene,tt2097307\n1X2YeXs8FE4,2013.0,7,11,2017,Run,Home Invasion Scene,tt2097307\nTctmuish8xI,2013.0,5,11,2017,Run,First Date Scene,tt2097307\nMhCI7MtnO3w,2013.0,4,11,2017,Run,The Fire Scene,tt2097307\n2oLedbPVWzY,2013.0,6,11,2017,Run,You're Dangerous Scene,tt2097307\ntfiIjZGirC8,2013.0,3,11,2017,Run,Sightseeing Scene,tt2097307\nQ93k0-I6RC4,2013.0,2,11,2017,Run,Joining the Club Scene,tt2097307\n_ODUt36beOo,2013.0,1,11,2017,Run,Evading the Police Scene,tt2097307\nzYZIHnjnGSQ,2013.0,11,11,2017,1,Control of the Danger Scene,tt1951265\nYKYtIhbcyuo,2013.0,10,11,2017,1,Senna Scene,tt1951265\nbCZVLjurkyY,2013.0,8,11,2017,1,Hunt vs. Lauda Scene,tt1951265\nphwcul7F-Ro,2013.0,9,11,2017,1,Lauda's Accident Scene,tt1951265\nO_rneC4S2G0,2013.0,7,11,2017,1,Cervet's Crash Scene,tt1951265\n-ryd97UQcrI,2013.0,6,11,2017,1,A Horrible Accident Scene,tt1951265\nIyFhDTUhX80,2013.0,4,11,2017,1,\"Rivals, Wives and Girlfriends Scene\",tt1951265\nU3ua5aIvPNg,2013.0,5,11,2017,1,The Death of Jim Clark Scene,tt1951265\nkUMB4-8MTio,2013.0,3,11,2017,1,Monaco Grand Prix Scene,tt1951265\nzdHVp6JC0mQ,2013.0,1,11,2017,1,Martin's Accident Scene,tt1951265\nwQFjbrojx4I,2013.0,2,11,2017,1,Fangio  Scene,tt1951265\nuuWIaDATbnE,-1.0,2,10,2017,Cloudy with a Chance of Meatballs,\"Sunshine, Lollipops and Rainbows Scene\",tt0844471\niGVsptoMsKE,-1.0,1,10,2017,Cloudy with a Chance of Meatballs,It's Raining Burgers Scene,tt0844471\nxAkmG6uqBd4,-1.0,3,10,2017,Cloudy with a Chance of Meatballs,Ice Cream Snow Day Scene,tt0844471\npHrp2OM19t4,-1.0,4,10,2017,Cloudy with a Chance of Meatballs,Spaghetti Tornado Scene,tt0844471\n8xZ0jOhAHMk,-1.0,5,10,2017,Cloudy with a Chance of Meatballs,Food Hurricane Scene,tt0844471\nHlyzLOPYuKc,-1.0,7,10,2017,Cloudy with a Chance of Meatballs,Chicken Brent Scene,tt0844471\nFKW1h53hSxs,-1.0,6,10,2017,Cloudy with a Chance of Meatballs,Food-alanche Scene,tt0844471\nz-fCbA2aAyg,-1.0,8,10,2017,Cloudy with a Chance of Meatballs,Vicious Gummi Bears Scene,tt0844471\nMwcXLL103vE,-1.0,9,10,2017,Cloudy with a Chance of Meatballs,Kitchen's Closed! Scene,tt0844471\n1Qd2hicvxBc,-1.0,10,10,2017,Cloudy with a Chance of Meatballs,I Love My Son Scene,tt0844471\nHyY-bOuj9SY,2012.0,11,11,2017,So Undercover,The Contingency Scene,tt1766094\nOBErTpjVCQQ,2012.0,9,11,2017,So Undercover,Uncovering the Truth Scene,tt1766094\nqV0h46fpZeA,2012.0,10,11,2017,So Undercover,A Sister in Need Scene,tt1766094\n5Qfba1tSw4k,2012.0,8,11,2017,So Undercover,Molly's Wild Night Scene,tt1766094\nzYeRo6OtrYU,2012.0,7,11,2017,So Undercover,Walking Home,tt1766094\ntDzuDRGP0z8,2012.0,5,11,2017,So Undercover,Wake Up! Scene,tt1766094\n0E1TIcc29vw,2012.0,6,11,2017,So Undercover,Your Balls Are Amazing Scene,tt1766094\nPkqrMMqSNaA,2012.0,3,11,2017,So Undercover,The FBI Arranged It Scene,tt1766094\nv7r2OuigZoQ,2012.0,4,11,2017,So Undercover,Molly Meets Nicholas Scene,tt1766094\nitIt0nSWDGI,2012.0,2,11,2017,So Undercover,Welcome to KKZ Scene,tt1766094\n4cH4xyezQv8,2012.0,1,11,2017,So Undercover,Menage a Gross Scene,tt1766094\ni9OLZ8rhtlk,2013.0,10,11,2017,Straight A's,In a Coma Scene,tt2024506\nzEGnL7wKzXE,2013.0,11,11,2017,Straight A's,Reconnecting Scene,tt2024506\n60QyvomMug0,2013.0,9,11,2017,Straight A's,Lunch with the Family Scene,tt2024506\nGZACBCZQFt8,2013.0,8,11,2017,Straight A's,The Aztecs Scene,tt2024506\nZLIY6uk1pxI,2013.0,7,11,2017,Straight A's,Everyone Out Scene,tt2024506\nAcOMZUiVuJM,2013.0,6,11,2017,Straight A's,Smoking a Joint Scene,tt2024506\nqK-5zQpICPw,2013.0,5,11,2017,Straight A's,Public Speaking Scene,tt2024506\nMFbZe0ZJn04,2013.0,4,11,2017,Straight A's,Visiting Charles at School Scene,tt2024506\nP785O3-r7A8,2013.0,3,11,2017,Straight A's,Missing Dinner Scene,tt2024506\nsOmJgmCvISY,2013.0,1,11,2017,Straight A's,Meeting Uncle Scott Scene,tt2024506\n5N8eh_84W4w,2013.0,2,11,2017,Straight A's,Why Are You Here? Scene,tt2024506\nrCLzT9M7rCE,2012.0,9,10,2017,Upside Down,Hold On!,tt1374992\nWefEB2u3fwI,2012.0,10,10,2017,Upside Down,Together Forever Scene,tt1374992\nMsHusoTYzTA,2012.0,8,10,2017,Upside Down,Reunited Scene,tt1374992\naBFi3S-t9R8,2012.0,2,10,2017,Upside Down,Defying Gravity Scene,tt1374992\nfS4vBoC4Di0,2012.0,7,10,2017,Upside Down,You Remember? Scene,tt1374992\nnXqveIQdCvE,2012.0,6,10,2017,Upside Down,Shoes on Fire Scene,tt1374992\nkgYskjeMVOA,2012.0,5,10,2017,Upside Down,What's Your Plan? Scene,tt1374992\nmj04qm_DEp8,2012.0,3,10,2017,Upside Down,Discovered Scene,tt1374992\nkv9QW8UYCDE,2012.0,4,10,2017,Upside Down,Giving My Life Hope Scene,tt1374992\nxfdye3eXF8s,2012.0,1,10,2017,Upside Down,Flying Pancakes Scene,tt1374992\nFGL4-sXko9w,-1.0,9,10,2016,Man of Steel,Either You Die or I Do Scene,tt0770828\n5h9E5SmLCVM,-1.0,1,10,2016,Man of Steel,Jor-El Steals the Codex Scene,tt0770828\nkjtPUnPa0LQ,-1.0,8,10,2016,Man of Steel,A Good Death Is Its Own Reward Scene,tt0770828\nlpod4qQzO7Q,-1.0,10,10,2016,Man of Steel,Superman Kills Zod Scene,tt0770828\nA6PpUgfZcRU,-1.0,7,10,2016,Man of Steel,You Will Never Win Scene,tt0770828\nsQA199D8U2g,-1.0,4,10,2016,Man of Steel,Superman's First Flight Scene,tt0770828\nBIdtUDoR5A0,-1.0,6,10,2016,Man of Steel,Clash of the Kryptonians Scene,tt0770828\nU2SdWVntd-o,-1.0,2,10,2016,Man of Steel,Beyond Your Reach Scene,tt0770828\nyodVQ5QAc88,-1.0,5,10,2016,Man of Steel,Jonathan's Sacrifice Scene,tt0770828\nS9U3ajjpH5A,-1.0,3,10,2016,Man of Steel,It's Not Worth It Scene,tt0770828\nfpK36FZmTFY,-1.0,10,10,2016,Willy Wonka & the Chocolate Factory,You Lose! Good Day Sir! Scene,tt0067992\nTkjw0XB9Xuc,-1.0,2,10,2016,Wrath of the Titans,Chimera Chaos Scene,tt1646987\nBKgd8Q3X0AA,-1.0,1,10,2016,Wrath of the Titans,It Has Begun Scene,tt1646987\n-IV-ZZwXUkw,-1.0,3,10,2016,Wrath of the Titans,Cyclops Attack Scene,tt1646987\nCsukLjjPv-U,-1.0,4,10,2016,Wrath of the Titans,One Last Godly Thing Scene,tt1646987\nEQqdhMcUSAw,-1.0,7,10,2016,Wrath of the Titans,The Battle Begins Scene,tt1646987\nxihdBpPICZY,-1.0,10,10,2016,Wrath of the Titans,The Battle With Kronos Scene,tt1646987\nCgmI90T4Efk,-1.0,8,10,2016,Wrath of the Titans,Perseus vs. Ares Scene,tt1646987\njNPBfvcLIMs,-1.0,6,10,2016,Wrath of the Titans,The Power Inside You Scene,tt1646987\nQ6jbNsSNxf4,-1.0,5,10,2016,Wrath of the Titans,The Minotaur Scene,tt1646987\nqmJiZfD6n9M,-1.0,9,10,2016,Wrath of the Titans,Perseus the Protector Scene,tt1646987\nCjqKicoWqZ0,-1.0,8,10,2016,The Sacrament,Quick and Painless Scene,tt2383068\nuYBCAaCGGcc,-1.0,9,10,2016,The Sacrament,You Should've Never Come Scene,tt2383068\nAYxHnjsJOik,-1.0,10,10,2016,The Sacrament,Everybody Dies Scene,tt2383068\nnIsM8bP-GHQ,-1.0,7,10,2016,The Sacrament,Don't Be Afraid Scene,tt2383068\nbyrLv_402BU,-1.0,5,10,2016,The Sacrament,You're in Paradise Scene,tt2383068\nm5dfATd_ZY8,-1.0,2,10,2016,The Sacrament,Welcome to Eden Parish Scene,tt2383068\n56F_nTxTQj8,-1.0,4,10,2016,The Sacrament,You're Dealing With Their Lives Scene,tt2383068\nmGJ-2YWYrgE,-1.0,1,10,2016,The Sacrament,The Worst Idea Ever Scene,tt2383068\nOGG3HuI6HcY,-1.0,6,10,2016,The Sacrament,Destroy Us From Within Scene,tt2383068\n2pFBwbyyNac,-1.0,3,10,2016,The Sacrament,Your Government is Failing Scene,tt2383068\nvf2EeAvsHAU,-1.0,1,10,2016,Universal Soldiers,For the Greater Good Scene,tt0105698\nKJ7Fv2QvzpI,-1.0,2,10,2016,Universal Soldiers,Super Soldier Scene,tt0105698\nh6jcrXOs088,-1.0,3,10,2016,Universal Soldiers,\"One Core, One Family, One Fight Scene\",tt0105698\n0Cpa6Zn7ffA,-1.0,10,10,2016,Universal Soldiers,Riley vs. Robot Scene,tt0105698\n66f94DU8ab4,-1.0,9,10,2016,Universal Soldiers,An Almost Happy Ending Scene,tt0105698\nMOA_WeKu76o,-1.0,4,10,2016,Universal Soldiers,The Ultimate Fighting Machine Scene,tt0105698\n3JF7tS3pxmc,-1.0,5,10,2016,Universal Soldiers,They're Herding Us Scene,tt0105698\nm8A9XOElA2o,-1.0,8,10,2016,Universal Soldiers,This Has Been a Test Scene,tt0105698\nyQYUTyaODfE,-1.0,7,10,2016,Universal Soldiers,Ash to Ashes Scene,tt0105698\nxPYQOuxYES0,-1.0,6,10,2016,Universal Soldiers,Why Won't You Die? Scene,tt0105698\n4EF1zYFHbus,-1.0,5,10,2016,Willy Wonka & the Chocolate Factory,Augustus and the Chocolate River  Scene,tt0067992\nOa6OoTVXG6E,-1.0,3,10,2016,Willy Wonka & the Chocolate Factory,I've Got a Golden Ticket Scene,tt0067992\nHcpDdWIaAuE,-1.0,1,10,2016,Willy Wonka & the Chocolate Factory,The Candy Man Scene,tt0067992\n8Yqw_f26SvM,-1.0,7,10,2016,Willy Wonka & the Chocolate Factory,Violet Blows Up Like a Blueberry Scene,tt0067992\nLIYNk4ARUR8,-1.0,4,10,2016,Willy Wonka & the Chocolate Factory,Pure Imagination Scene,tt0067992\n5wAlQf4WdiE,-1.0,8,10,2016,Willy Wonka & the Chocolate Factory,I Want It Now Scene,tt0067992\npvS3j8VtanM,-1.0,9,10,2016,Willy Wonka & the Chocolate Factory,It's WonkaVision Scene,tt0067992\nXB401RfGMlM,-1.0,6,10,2016,Willy Wonka & the Chocolate Factory,Tunnel of Terror Scene,tt0067992\n1Fxq_n8e1qA,-1.0,2,10,2016,Willy Wonka & the Chocolate Factory,Charlie Finds the Golden Ticket Scene,tt0067992\np03u3v6GF-Y,1933.0,5,10,2016,King Kong,Jack Rescues Ann Scene,tt0024216\n1vNv-pE8I_c,1933.0,3,10,2016,King Kong,Rampage Ravine Scene,tt0024216\n0JVZ0bE8hpk,1933.0,2,10,2016,King Kong,Something in the Water Scene,tt0024216\nDujyJ1EDft8,1933.0,8,10,2016,King Kong,The Clutches of the Beast Scene,tt0024216\n8qkahQVFzMI,1933.0,9,10,2016,King Kong,Climbing the Empire State Building Scene,tt0024216\nzct1tPK1Zk0,1933.0,7,10,2016,King Kong,Kong Escapes Scene,tt0024216\nMMNICLfHE3M,1933.0,10,10,2016,King Kong,Beauty Killed the Beast Scene,tt0024216\nm2cUbp6Vkfs,1933.0,6,10,2016,King Kong,Capturing Kong Scene,tt0024216\nyvD3X3RcK3Y,1933.0,4,10,2016,King Kong,Kong vs. T-Rex Scene,tt0024216\nXvZhDq1NRhk,-1.0,8,10,2016,The Last Days on Mars,I Can't Stop It Scene,tt1709143\nrnaCi4rBfqw,1933.0,1,10,2016,King Kong,The Bride of Kong Scene,tt0024216\nN1HQEIaRZxk,-1.0,10,10,2016,The Last Days on Mars,It Has to End Here Scene,tt1709143\n93Kzx7azL6c,-1.0,9,10,2016,The Last Days on Mars,Sandstorm Slaughter Scene,tt1709143\neyvwHF7NIGc,-1.0,6,10,2016,The Last Days on Mars,Every Man For Himself Scene,tt1709143\n7lQT4xGTpIA,-1.0,7,10,2016,The Last Days on Mars,Last Minute Betrayal Scene,tt1709143\nblWwfkSF89o,-1.0,4,10,2016,The Last Days on Mars,You'll Never See Home Scene,tt1709143\nGLOcJyFEXIw,-1.0,5,10,2016,The Last Days on Mars,It's Right Behind Me Scene,tt1709143\nEbMddMJU97g,-1.0,3,10,2016,The Last Days on Mars,Don't Let Them Get Out Scene,tt1709143\n19j24of8C_w,-1.0,2,10,2016,The Last Days on Mars,Zombie Astronaut Scene,tt1709143\nSEQuHP-wL5Y,-1.0,1,10,2016,The Last Days on Mars,Swallowed by the Planet Scene,tt1709143\nkJ-wkP8Xm40,-1.0,9,10,2016,Elephant White,The Truth about Mae Scene,tt1578882\n7HZj_fM4yTg,-1.0,10,10,2016,Elephant White,The Initiation of a Monk Scene,tt1578882\n2as1htsiNxY,-1.0,8,10,2016,Elephant White,Fight in the Woods Scene,tt1578882\npjJU7RkSrr8,-1.0,7,10,2016,Elephant White,Torturing Jimmy Scene,tt1578882\nqerH8bjHVnI,-1.0,6,10,2016,Elephant White,Visiting the Brothel Scene,tt1578882\ntp_TZ--JHEA,-1.0,5,10,2016,Elephant White,A New Gun Scene,tt1578882\nRLsGDXjTW2w,-1.0,4,10,2016,Elephant White,The Sniper Scene,tt1578882\nf6kcBGKxGtE,-1.0,1,10,2016,Elephant White,Running Into an Old Friend Scene,tt1578882\nF-q3C6jSZYQ,-1.0,2,10,2016,Elephant White,Gunzone Scene,tt1578882\n3nDCPEcEuPs,-1.0,3,10,2016,Elephant White,Welcome to My Humidor Scene,tt1578882\nAGY5gNpoPfI,-1.0,8,11,2016,Love the Coopers,You're Not a Disappointment Scene,tt2279339\nDECt9uTxaLE,-1.0,5,11,2016,Love the Coopers,You Were Standing Right Next to Her Scene,tt2279339\n9dmlcGZta9E,-1.0,7,11,2016,Love the Coopers,Where Did You Go? Scene,tt2279339\nRAsK38Vdep4,-1.0,3,11,2016,Love the Coopers,Our First Time Scene,tt2279339\nSELFeneZL04,-1.0,1,11,2016,Love the Coopers,This Amazing Moment Scene,tt2279339\njPfje0jZeMo,-1.0,4,11,2016,Love the Coopers,Under the Mistletoe Scene,tt2279339\nLAk5KEGLzmc,-1.0,2,11,2016,Love the Coopers,Role Playing Scene,tt2279339\nKwWHPqidGuA,-1.0,11,11,2016,Love the Coopers,Everything We Want Scene,tt2279339\nzzORtbUYE4c,-1.0,10,11,2016,Love the Coopers,Too Good a Story Scene,tt2279339\nuRjbDsGz2tc,-1.0,6,11,2016,Love the Coopers,Time Was Their Friend Scene,tt2279339\nz7fOP7aW1P4,-1.0,9,11,2016,Love the Coopers,We Are Family Scene,tt2279339\nZMplRnotp8M,-1.0,8,10,2016,The Voices,Ten Years of Therapy Scene,tt5323662\nGk_2euKF9MY,-1.0,10,10,2016,The Voices,Sing a Happy Song Scene,tt5323662\nxllpnvAmnHE,-1.0,5,10,2016,The Voices,A Stone-Cold Murdering Maniac Scene,tt5323662\nbJSDrRcwwKQ,-1.0,4,10,2016,The Voices,Finish It Scene,tt5323662\nSaaTUj7m8e4,-1.0,7,10,2016,The Voices,You Think I'm Evil? Scene,tt5323662\nml_zSw6yWOE,-1.0,6,10,2016,The Voices,I'm Not Gonna Hurt You Scene,tt5323662\nAx-iwIoIxjY,-1.0,9,10,2016,The Voices,Jerry's Escape Scene,tt5323662\npYmo3PXF_T4,-1.0,2,10,2016,The Voices,\"I'm Sorry, I'm Sorry, I'm Sorry Scene\",tt5323662\nUY0nYr-dXEI,-1.0,1,10,2016,The Voices,Conga! Scene,tt5323662\nH5I1DyJ3w1g,-1.0,3,10,2016,The Voices,I'm a Severed Head in a Fridge Scene,tt5323662\no4ARk91_ptU,2010.0,3,10,2016,Clash of the Titans,Calibos Attacks Scene,tt0800320\n38AYeNGjqg0,2010.0,8,10,2016,Clash of the Titans,Release the Kraken! Scene,tt0800320\njdp_wn_UrcE,2010.0,7,10,2016,Clash of the Titans,Perseus vs. Calibos Scene,tt0800320\nGrIJLWISdlQ,2010.0,9,10,2016,Clash of the Titans,Perseus Faces the Kraken Scene,tt0800320\nMUEhAUpa7iA,2010.0,10,10,2016,Clash of the Titans,Hero of Men Scene,tt0800320\nBx9JRDKjrwA,2010.0,5,10,2016,Clash of the Titans,Stygian Witches and the Eye Scene,tt0800320\nGWxf8Hb-Xis,2010.0,2,10,2016,Clash of the Titans,I Am Hades Scene,tt0800320\nFY00zwMZsqM,2010.0,6,10,2016,Clash of the Titans,Medusa's Lair Scene,tt0800320\n2OXtHJgLJr0,2010.0,1,10,2016,Clash of the Titans,Declaring War Against the Gods Scene,tt0800320\nK57aIbpF_Co,2010.0,4,10,2016,Clash of the Titans,Giant Scorpions Scene,tt0800320\nkRNhyHiBUXs,-1.0,2,10,2016,Men in Black II,Frank Will Survive Scene,tt0120912\nlr7pyggTmmY,-1.0,3,10,2016,Men in Black II,Post Office Aliens Scene,tt0120912\nW_EYrVGI7LQ,-1.0,1,10,2016,Men in Black II,Jeff the 600 Foot Worm Scene,tt0120912\nF4QzrKakPmU,-1.0,4,10,2016,Men in Black II,Jeebs' De-Neuralyzer Scene,tt0120912\nnwrLvq5W58o,-1.0,5,10,2016,Men in Black II,Fighting the Alien Gang Scene,tt0120912\nA9sd10CHAP8,-1.0,6,10,2016,Men in Black II,All Hail Jay Scene,tt0120912\n5NY_8ulSutc,-1.0,8,10,2016,Men in Black II,That's How I Fight Scene,tt0120912\nKNdmBWoCfAc,-1.0,9,10,2016,Men in Black II,Hyper Speed Scene,tt0120912\nZdhqVdIsBSE,-1.0,7,10,2016,Men in Black II,Someone I Need to Eat Scene,tt0120912\nPhLfIqO2SLI,-1.0,10,10,2016,Men in Black II,If You Don't Go We All Die Scene,tt0120912\nMk_C5QH2Eb8,-1.0,8,10,2016,Mad Max: Fury Road,Harpoon and Pole Battle Scene,tt1392190\nQJX3XvkTJQk,-1.0,7,10,2016,Mad Max: Fury Road,Feels Like Hope Scene,tt1392190\nq38QzB5dw0A,-1.0,10,10,2016,Mad Max: Fury Road,Furiosa vs. Immortan Joe Scene,tt1392190\ny1gkMNjkFiQ,-1.0,9,10,2016,Mad Max: Fury Road,Desert Battle Scene,tt1392190\nAWvRcWDr5y8,-1.0,6,10,2016,Mad Max: Fury Road,Max Retaliates Scene,tt1392190\nKS_KStIPiwU,-1.0,5,10,2016,Mad Max: Fury Road,She Went Under the Wheels Scene,tt1392190\nZnIkMhuNmjo,-1.0,4,10,2016,Mad Max: Fury Road,Motorcycle Gang Attack Scene,tt1392190\nVcgn4EY5_S8,-1.0,3,10,2016,Mad Max: Fury Road,Max vs. Furiosa Scene,tt1392190\nW28kNzz50pw,-1.0,2,10,2016,Mad Max: Fury Road,\"I Live, I Die, I Live Again Scene\",tt1392190\nk4Lpr1sqKbQ,-1.0,1,10,2016,Mad Max: Fury Road,Attack on the War Rig Scene,tt1392190\nl7FkN4ooYvA,-1.0,2,10,2016,Angry Birds,Anger Management Classmates Scene,tt1985949\nBGEFW4kc5EQ,-1.0,1,10,2016,Angry Birds,The Angry Bird Scene,tt1985949\nlF3IIOXn5qU,-1.0,4,10,2016,Angry Birds,The Slingshot Scene,tt1985949\nFUWdPWW4csI,-1.0,3,10,2016,Angry Birds,The Pigs Arrive Scene,tt1985949\nLCljgWh4L8Y,-1.0,5,10,2016,Angry Birds,The Legend of Mighty Eagle Scene,tt1985949\nBoona4-qLSE,-1.0,6,10,2016,Angry Birds,The Lake of Whiz-dom Scene,tt1985949\nKKfz8C48EJk,-1.0,9,10,2016,Angry Birds,Save That Egg! Scene,tt1985949\nJj-mAiTMvX8,-1.0,7,10,2016,Angry Birds,Mighty Eagle's Theme Song Scene,tt1985949\ndmqo-EuR8Cw,-1.0,8,10,2016,Angry Birds,Red Flies Scene,tt1985949\nT5CoWL_wdC4,-1.0,10,10,2016,Angry Birds,A Dynamite Defeat Scene,tt1985949\ny_eZw262fhM,-1.0,7,10,2016,Spectre,Train Fight Scene,tt2379713\niM0hP-LZIvI,-1.0,10,10,2016,Spectre,Goodbye James Bond Scene,tt2379713\nbOP-THNe4m8,-1.0,9,10,2016,Spectre,Doesn't Time Fly Scene,tt2379713\nIh-zPWi9INA,-1.0,8,10,2016,Spectre,Ernst Stavro Blofeld Scene,tt2379713\nwOuk6V3Dj5A,-1.0,6,10,2016,Spectre,Snow Plane Pursuit Scene,tt2379713\nA7HmqwyZ3oA,-1.0,5,10,2016,Spectre,Rome Car Chase Scene,tt2379713\ng9S5GndUhko,-1.0,2,10,2016,Spectre,Helicopter Fight Scene,tt2379713\n9eosfNwMpMs,-1.0,4,10,2016,Spectre,Welcome James Scene,tt2379713\nkEnK0ZdMThc,-1.0,1,10,2016,Spectre,Blowing Up the Block Scene,tt2379713\nJ-OLwCyAtBc,-1.0,3,10,2016,Spectre,Seducing Lucia Scene,tt2379713\nzUL_yawY6Ks,-1.0,10,10,2016,Men in Black 3,Secrets the Universe Doesn't Know Scene,tt1409024\nbCLTAaa3qMM,-1.0,1,10,2016,Men in Black 3,Breaking Out Boris Scene,tt1409024\nJLH_smT7Qog,-1.0,3,10,2016,Men in Black 3,Extraterrestrial Foodstuffs Scene,tt1409024\nM3FtlKHZXhs,-1.0,2,10,2016,Men in Black 3,Zed's Funeral Scene,tt1409024\nWIr_dCgNAjM,-1.0,4,10,2016,Men in Black 3,Chinese Restaurant Fight Scene,tt1409024\nY-cCAY2hGPs,-1.0,5,10,2016,Men in Black 3,Hippies and Racial Profiling Scene,tt1409024\nnSO22k4XGUo,-1.0,6,10,2016,Men in Black 3,Bowling Ball Head Scene,tt1409024\ngDPJG9FP3iM,-1.0,9,10,2016,Men in Black 3,Your Daddy Is a Hero Scene,tt1409024\na3Xm0KpUYj4,-1.0,7,10,2016,Men in Black 3,The Texas Two Step Scene,tt1409024\nXd5ESRqpz3E,-1.0,8,10,2016,Men in Black 3,That's Not Possible Scene,tt1409024\nxP7yIQladb0,1998.0,9,10,2016,Godzilla,We're in His Mouth! Scene,tt0120685\njB9WGpVrYBs,1998.0,2,10,2016,Godzilla,Almost Squashed Scene,tt0120685\nVV97_cn54bQ,1998.0,1,10,2016,Godzilla,Rises Scene,tt0120685\nf_LDdElm9fc,1998.0,4,10,2016,Godzilla,Helicopter Chase Scene,tt0120685\nxiwtX0NC0uA,1998.0,3,10,2016,Godzilla,Negative Impact Scene,tt0120685\n_Z_n2Ray64o,1998.0,6,10,2016,Godzilla,vs. Submarines Scene,tt0120685\n4IsISIQpKTc,1998.0,5,10,2016,Godzilla,Fire at Will! Scene,tt0120685\nDnGpfWa6FAQ,1998.0,7,10,2016,Godzilla,Babies Scene,tt0120685\nGKuPSf9P3tw,1998.0,8,10,2016,Godzilla,Blowing Up Madison Square Garden Scene,tt0120685\n_JcFaIDdphE,1998.0,10,10,2016,Godzilla,Goes Down Scene,tt0120685\n3PBo1ef-18Y,-1.0,3,10,2016,Cloudy with a Chance of Meatballs 2,Living Food Scene,tt1985966\nkJlqNXhZE_I,-1.0,2,10,2016,Cloudy with a Chance of Meatballs 2,Barry the Berry Scene,tt1985966\nYjewWZ3JWiE,-1.0,1,10,2016,Cloudy with a Chance of Meatballs 2,Getting the Team Together Scene,tt1985966\no-OKsTWIVxk,-1.0,5,10,2016,Cloudy with a Chance of Meatballs 2,Wedgie-Proof Underwear Scene,tt1985966\nV3Tlo0EutEQ,-1.0,4,10,2016,Cloudy with a Chance of Meatballs 2,Cheese Spider Attack Scene,tt1985966\nZawJ9EBOLVk,-1.0,6,10,2016,Cloudy with a Chance of Meatballs 2,Tacodile Supreme Scene,tt1985966\nEw8AJsPAyLg,-1.0,8,10,2016,Cloudy with a Chance of Meatballs 2,Let's Go Fishing Scene,tt1985966\nxswJpwb7Afs,-1.0,7,10,2016,Cloudy with a Chance of Meatballs 2,Nice Cheese Spider Scene,tt1985966\n8osP7KRacWk,-1.0,10,10,2016,Cloudy with a Chance of Meatballs 2,A Happy Ending Scene,tt1985966\nDHWbxxpKb04,-1.0,9,10,2016,Cloudy with a Chance of Meatballs 2,Time to Celebrate! Scene,tt1985966\njv6-p4kphmc,-1.0,11,11,2016,Creed,One Step at a Time Scene,tt6343314\n4WgLRH-FpWQ,-1.0,10,11,2016,Creed,The Final Round Scene,tt6343314\nrvOq4hFIRJg,-1.0,9,11,2016,Creed,I Gotta Prove It Scene,tt6343314\nW4efgyM82kE,-1.0,8,11,2016,Creed,It's Time Scene,tt6343314\nesFVrrZCvwA,-1.0,7,11,2016,Creed,Run to Rocky Scene,tt6343314\nwnwsSOrmEKI,-1.0,6,11,2016,Creed,Rocky's Diagnosis Scene,tt6343314\nYYPpg3_Y4XY,-1.0,5,11,2016,Creed,Adonis vs. The Lion Scene,tt6343314\nUQ15FRltlsY,-1.0,3,11,2016,Creed,You Got a Jawn? Scene,tt6343314\njyNtMzHeJ6I,-1.0,4,11,2016,Creed,I'm Ready Scene,tt6343314\nFjr_CQHJiCo,-1.0,2,11,2016,Creed,Rocky Meets Adonis Scene,tt6343314\nW-cZK60yWbY,-1.0,1,11,2016,Creed,Learning the Hard Way Scene,tt6343314\n3Sz7dbX2kTY,-1.0,1,10,2016,The Karate Kid Part III,Mr. Miyagi's Little Trees Scene,tt0097647\nC58_gjlogWY,-1.0,4,10,2016,The Karate Kid Part III,Daniel's Blackmailed Scene,tt0097647\nymbKDavsVaU,-1.0,3,10,2016,The Karate Kid Part III,Save the Tree! Scene,tt0097647\nxCWkAXGz8W8,-1.0,2,10,2016,The Karate Kid Part III,Mike Attacks Daniel Scene,tt0097647\nMPhIzvgB31Y,-1.0,6,10,2016,The Karate Kid Part III,Killer Instinct Scene,tt0097647\ne2dAiCB6igE,-1.0,5,10,2016,The Karate Kid Part III,Doing Damage Scene,tt0097647\nTcndF9QpYAU,-1.0,7,10,2016,The Karate Kid Part III,Strong Roots Scene,tt0097647\nSPMpDCxhKGU,-1.0,8,10,2016,The Karate Kid Part III,Miyagi Makes a Stand Scene,tt0097647\n7GrURVFAC2I,-1.0,9,10,2016,The Karate Kid Part III,Now the Real Pain Begins Scene,tt0097647\n_S6GYF1B8Yk,-1.0,10,10,2016,The Karate Kid Part III,Daniel Wins! Scene,tt0097647\nU2HWD9dymUk,-1.0,6,10,2016,The Karate Kid Part II,The Japanese Tea Ceremony Scene,tt0091326\n7KF4iJzBVWM,-1.0,1,10,2016,The Karate Kid Part II,No Mercy Scene,tt0091326\nXemAlj9_qKE,-1.0,2,10,2016,The Karate Kid Part II,\"Breathe In, Breathe Out Scene\",tt0091326\ngmElew2NIS8,-1.0,9,10,2016,The Karate Kid Part II,Daniel vs. Chozen Scene,tt0091326\nTSPaaPqteCU,-1.0,3,10,2016,The Karate Kid Part II,Mr. Miyagi Says Goodbye Scene,tt0091326\niKRpMjVJKZc,-1.0,4,10,2016,The Karate Kid Part II,Breaking the Ice Scene,tt0091326\n-JNyHnAi8zk,-1.0,8,10,2016,The Karate Kid Part II,Daniel's Daring Rescue Scene,tt0091326\nDPmHrgbe3xo,-1.0,7,10,2016,The Karate Kid Part II,Saving Sato Scene,tt0091326\nK7I9ERiBZrc,-1.0,5,10,2016,The Karate Kid Part II,Mr. Miyagi Fights Scene,tt0091326\nnKISdYhQcvw,-1.0,10,10,2016,The Karate Kid Part II,Live or Die? Scene,tt0091326\nUFuxiZFwDPs,2014.0,2,10,2016,RoboCop,End This Nightmare Scene,tt1234721\nGlCN1EPAoHI,2014.0,1,10,2016,RoboCop,What Have You Done To Me? Scene,tt1234721\nti9jg0JOK2I,2014.0,3,10,2016,RoboCop,I've Been Through A Lot Scene,tt1234721\ngvuZShYhzX8,2014.0,5,10,2016,RoboCop,You're Under Arrest Scene,tt1234721\n_emU23tTUAw,2014.0,4,10,2016,RoboCop,Emotional Overload Scene,tt1234721\nQLTlJDjPfHI,2014.0,6,10,2016,RoboCop,Drug Bust Simulation Scene,tt1234721\nTxvqZhVwrSY,2014.0,10,10,2016,RoboCop,You're a Robot Scene,tt1234721\nGtSNSaW9IRI,2014.0,9,10,2016,RoboCop,Robocop vs ED-209 Drones Scene,tt1234721\nsTbJQwezQZY,2014.0,8,10,2016,RoboCop,\"Bad Cop,  Scene\",tt1234721\nqyvR5lglbTE,2014.0,7,10,2016,RoboCop,\"He Leaves Alive, You Don't Scene\",tt1234721\n7jz_uA1dv9w,-1.0,1,10,2016,Battle: Los Angeles,First Contact Scene,tt1217613\nm49ub45c8AI,-1.0,2,10,2016,Battle: Los Angeles,Swimming Pool Ambush Scene   Moviclips,tt1217613\nrd8JDPjEoE0,-1.0,3,10,2016,Battle: Los Angeles,Destroying the Alien Drone Scene,tt1217613\nJYVhLnjKKC8,-1.0,5,10,2016,Battle: Los Angeles,I'm Not Leaving You! Scene,tt1217613\nQ0okgIEkRJM,-1.0,4,10,2016,Battle: Los Angeles,Saving Civilians Scene,tt1217613\nTjY8crETM6s,-1.0,6,10,2016,Battle: Los Angeles,Go Right Through 'Em Scene,tt1217613\nt6nqp5MdMp0,-1.0,8,10,2016,Battle: Los Angeles,Direct Hit! Scene,tt1217613\nyrfpRh2SqIw,-1.0,10,10,2016,Battle: Los Angeles,Defeating the Aliens Scene,tt1217613\nxSNkZYKC_c0,-1.0,7,10,2016,Battle: Los Angeles,Stalked in the Sewers Scene,tt1217613\n06Its9LhIHQ,-1.0,9,10,2016,Battle: Los Angeles,The Siege Continues Scene,tt1217613\nX5HvuYGCyzQ,-1.0,2,10,2016,Hot Tub Time Machine 2,Crotch Shot Scene,tt2637294\nttOuvmYYeps,-1.0,1,10,2016,Hot Tub Time Machine 2,Success Stories Scene,tt2637294\nLGnwTTGzjpk,-1.0,3,10,2016,Hot Tub Time Machine 2,You're My Best Choice Scene,tt2637294\n62z8SYqpuZ4,-1.0,4,10,2016,Hot Tub Time Machine 2,A Smart Car Scene,tt2637294\nGN1LhsTj5CQ,-1.0,7,10,2016,Hot Tub Time Machine 2,Celebrity Choozy Doozy Scene,tt2637294\nUzTveNwweRM,-1.0,6,10,2016,Hot Tub Time Machine 2,The Electric Ladybug Scene,tt2637294\nlKqS8lnlJsc,-1.0,5,10,2016,Hot Tub Time Machine 2,The Webber Strut Scene,tt2637294\nrnTrWINYDsM,-1.0,8,10,2016,Hot Tub Time Machine 2,That's My Butt! Scene,tt2637294\n_KC5AJdRgBs,-1.0,9,10,2016,Hot Tub Time Machine 2,Ball Juice Scene,tt2637294\ngYdm3PIHyaM,-1.0,10,10,2016,Hot Tub Time Machine 2,I Can't Do It Scene,tt2637294\n9AtlQm1jVpM,-1.0,2,10,2016,Hot Pursuit,Extreme Measures Scene,tt2967224\nwXer1Hj8hR4,-1.0,6,10,2016,Hot Pursuit,You're Kinda Intense Scene,tt2967224\nNpSkrZRlGbk,-1.0,4,10,2016,Hot Pursuit,All Jacked Up Scene,tt2967224\nBiukHSW8Az4,-1.0,1,10,2016,Hot Pursuit,Commandeering Your Personal Vehicle Scene,tt2967224\ntdvj1iOOUE0,-1.0,10,10,2016,Hot Pursuit,I Helped Him Get Off Scene,tt2967224\nVnAmEovifpU,-1.0,5,10,2016,Hot Pursuit,I Am Her Lover Scene,tt2967224\nUUzW7NqutUg,-1.0,3,10,2016,Hot Pursuit,Through the Window Scene,tt2967224\nFy988XyqFhM,-1.0,8,10,2016,Hot Pursuit,Hit the Brakes! Scene,tt2967224\nlwhQK2kDfBM,-1.0,7,10,2016,Hot Pursuit,Criminal Cat Fight Scene,tt2967224\nxpFArzEh9Dk,-1.0,9,10,2016,Hot Pursuit,Put the Gun Down Scene,tt2967224\ngiGWC-o1mvw,-1.0,2,10,2016,If I Stay,The Accident Scene,tt1355630\n2aqgKA3uUwM,-1.0,7,10,2016,If I Stay,I Want This To Be Over Scene,tt1355630\nhhRIhD6BvMo,-1.0,1,10,2016,If I Stay,A Cello of My Very Own Scene,tt1355630\noUpzcxwFI6o,-1.0,3,10,2016,If I Stay,You're Not Alone Scene,tt1355630\nTajTfrf2yXs,-1.0,4,10,2016,If I Stay,Like Playing Music Together Scene,tt1355630\n-PFdr0SiAEw,-1.0,6,10,2016,If I Stay,Mia's Audition Scene,tt1355630\n9OhXJOQioeU,-1.0,5,10,2016,If I Stay,I'm Terrified of Losing You Scene,tt1355630\nZNnk9L2LSZI,-1.0,8,10,2016,If I Stay,I Understand Scene,tt1355630\nEBnn_Y29Pks,-1.0,10,10,2016,If I Stay,Heart Like Yours Scene,tt1355630\nIYVg4o3KVPo,-1.0,9,10,2016,If I Stay,Today's the Best Day Scene,tt1355630\nsNrOsj0xDPs,-1.0,10,10,2016,The Purple Rose of Cairo,Cheek to Cheek Scene,tt0089853\nvR1WPNzcXHE,-1.0,9,10,2016,The Purple Rose of Cairo,The Same Two People Love Me Scene,tt0089853\nnfzJCrxKVMU,-1.0,8,10,2016,The Purple Rose of Cairo,Back Into the Story Scene,tt0089853\nvZlWLj1-eC4,-1.0,7,10,2016,The Purple Rose of Cairo,Plagued By His Own Creation Scene,tt0089853\nbryVfEK0U4k,-1.0,6,10,2016,The Purple Rose of Cairo,What Kind of a Club is This? Scene,tt0089853\nQanZzw7zh7M,-1.0,5,10,2016,The Purple Rose of Cairo,The Advantage of Being Imaginary Scene,tt0089853\n_T6r7w_m504,-1.0,4,10,2016,The Purple Rose of Cairo,Damage Control Scene,tt0089853\npLC_hRDO7Hk,-1.0,1,10,2016,The Purple Rose of Cairo,\"Free After 2,000 Performances Scene\",tt0089853\ncyEqzALZmeA,-1.0,3,10,2016,The Purple Rose of Cairo,Real Life Lessons Scene,tt0089853\n75ovyrTzuYY,-1.0,2,10,2016,The Purple Rose of Cairo,Don't Turn the Projector Off Scene,tt0089853\nyXyrZImvR7c,-1.0,7,10,2016,Krampus,Elves From Hell Scene,tt3850590\nElvTXO2A3Uw,-1.0,1,10,2016,Krampus,Happy Holidays Scene,tt3850590\nsl1Jjq82XUA,-1.0,5,10,2016,Krampus,\"Der Klown, Eater of Children Scene\",tt3850590\nUVGzuUm3uzs,-1.0,10,10,2016,Krampus,The Ending of a Christmas Wish Scene,tt3850590\nU0xf89hs1Mc,-1.0,6,10,2016,Krampus,Terror Toys and Gingerbread Nightmares Scene,tt3850590\nmFkxrTfAkq8,-1.0,9,10,2016,Krampus,When All is Lost Scene,tt3850590\noUXPpeE2pv4,-1.0,8,10,2016,Krampus,Arrives Scene,tt3850590\nM8s2txilG08,-1.0,4,10,2016,Krampus,When the Christmas Spirit Dies Scene,tt3850590\noA-dHypOn9M,-1.0,3,10,2016,Krampus,Christmas Cookie Kidnapper Scene,tt3850590\naPQcQ4IhHNE,-1.0,2,10,2016,Krampus,You Better Watch Out Scene,tt3850590\nhuI39DZ4b44,-1.0,10,10,2016,Hercules,Must Die Scene,tt0119282\nXiki4aOO4tw,-1.0,9,10,2016,Hercules,Tydeus's Sacrifice Scene,tt0119282\nhSvJRk5OH_o,-1.0,6,10,2016,Hercules,\"To Kill a Snake, Cut Off Its Head Scene\",tt0119282\nLrr_z_4VLdU,-1.0,7,10,2016,Hercules,Three Wolves For One Lion Scene,tt0119282\ntFeew6TgM8w,-1.0,8,10,2016,Hercules,Ask My Family For Forgiveness Scene,tt0119282\n5EeD0NiVALs,-1.0,5,10,2016,Hercules,Your Legend Ends Here Scene,tt0119282\nxNu0qNfOoGY,-1.0,3,10,2016,Hercules,Hold the Lines! Scene,tt0119282\noc8Hm_t5BRo,-1.0,2,10,2016,Hercules,Walked Into a Trap Scene,tt0119282\n5ACVz6Cmo3M,-1.0,4,10,2016,Hercules,Man Cannot Escape His Fate Scene,tt0119282\nK4fpErUdp3k,-1.0,1,10,2016,Hercules,The Son of Zeus Scene,tt0119282\nSUMtjCypolU,-1.0,2,10,2016,The Chronicles of Riddick,You're Not Afraid of the Dark? Scene,tt0296572\nRARFpfBt66M,-1.0,1,10,2016,The Chronicles of Riddick,You Made Three Mistakes Scene,tt0296572\nilG8mzbHNNI,-1.0,3,10,2016,The Chronicles of Riddick,I Bow to No Man Scene,tt0296572\nh9Rb7mT3juI,-1.0,5,10,2016,The Chronicles of Riddick,It's an Animal Thing Scene,tt0296572\nRmqqNrg2cKg,-1.0,6,10,2016,The Chronicles of Riddick,Death by Teacup Scene,tt0296572\notk_S_5inBM,-1.0,4,10,2016,The Chronicles of Riddick,Welcome to Crematoria Scene,tt0296572\n5kGTDvVTAOw,-1.0,8,10,2016,The Chronicles of Riddick,Who's the Better Killer? Scene,tt0296572\nyX5TsLuIEy8,-1.0,10,10,2016,The Chronicles of Riddick,You Keep What You Kill Scene,tt0296572\n98I5LTPcRnw,-1.0,7,10,2016,The Chronicles of Riddick,Extreme Temperatures Scene,tt0296572\n39HR8ZjQnYA,-1.0,9,10,2016,The Chronicles of Riddick,You Killed Everything I Know Scene,tt0296572\nTeDEtT7YjYY,-1.0,10,10,2016,Ghost Rider,vs. Blackheart Scene,tt0259324\n-oPHsR72Lfo,-1.0,2,10,2016,Barbershop: The Next Cut,One-Stop Scene,tt3628584\np_ixTZLD7k0,-1.0,1,10,2016,Barbershop: The Next Cut,Chauvinistic Talk Scene,tt3628584\nT6BDCLnWSes,-1.0,3,10,2016,Barbershop: The Next Cut,Unequal Opportunity Scene,tt3628584\ne5SbxMFk6Vo,-1.0,4,10,2016,Barbershop: The Next Cut,The Ceasefire Begins Scene,tt3628584\ncW23WpOvC6A,-1.0,7,10,2016,Barbershop: The Next Cut,Shout-Out Scene,tt3628584\n1iCqTxtsqvw,-1.0,1,10,2016,Ghost Rider,The Consequences of a Sold Soul Scene,tt0259324\nb-2p52a82UM,-1.0,5,10,2016,Barbershop: The Next Cut,Marital Problems Scene,tt3628584\nzbkojhq6Ryw,-1.0,8,10,2016,Barbershop: The Next Cut,I'm Out! Scene,tt3628584\nKGW0LbnEraM,-1.0,6,10,2016,Barbershop: The Next Cut,The Blame Game Scene,tt3628584\nNR-BaVehxrA,-1.0,9,10,2016,Barbershop: The Next Cut,Ceasefire is Back On Scene,tt3628584\nEonKIlrj7t0,-1.0,10,10,2016,Barbershop: The Next Cut,Dear Chicago Scene,tt3628584\ntyyPSnHcthg,-1.0,3,10,2016,Ghost Rider,How a Stuntman Asks for a Date Scene,tt0259324\n10X4Th3YE30,-1.0,2,10,2016,Ghost Rider,The Leap of Death Scene,tt0259324\nRj5XdwnuQ80,-1.0,4,10,2016,Ghost Rider,Knows No Mercy Scene,tt0259324\nriDe28hGBuo,-1.0,6,10,2016,Ghost Rider,Prison Break Scene,tt0259324\n-fvfHqNEmGU,-1.0,5,10,2016,Ghost Rider,The Penance Stare Scene,tt0259324\nOsgEdYjoqUI,-1.0,8,10,2016,Ghost Rider,Slade's Last Ride Scene,tt0259324\na4QlQy31HIk,-1.0,7,10,2016,Ghost Rider,Time to Clear the Air Scene,tt0259324\nEnBWc20FGuc,-1.0,9,10,2016,Ghost Rider,You're Out of Time Scene,tt0259324\nV0UBmkWw5Oo,-1.0,10,10,2016,The Amazing Spider Man,Those Are the Best Kind Scene,tt0948470\nBXx51SR_3Sk,-1.0,1,10,2016,The Amazing Spider Man,Air Spidey Scene,tt0948470\npsB3Ta-5XWY,-1.0,2,10,2016,The Amazing Spider Man,Love Struck Skateboarding Scene,tt0948470\n4331uXY0nxA,-1.0,4,10,2016,The Amazing Spider Man,Web-Sling Kiss Scene,tt0948470\n4_23t4NzAMk,-1.0,3,10,2016,The Amazing Spider Man,Taking Down the Car Thief Scene,tt0948470\nhvACHvnVCbw,-1.0,5,10,2016,The Amazing Spider Man,Saved by Spider Man Scene,tt0948470\nltmHZiXkb9c,-1.0,6,10,2016,The Amazing Spider Man,The Lizard's Sewer Lair Scene,tt0948470\nEauDkPyyz8I,-1.0,7,10,2016,The Amazing Spider Man,High School Attack Scene,tt0948470\n7pD2vZ28a3E,-1.0,8,10,2016,The Amazing Spider Man,Unmasking Spider Man Scene,tt0948470\n4uc2qplSyss,-1.0,9,10,2016,The Amazing Spider Man,Spider Man vs. The Lizard Scene,tt0948470\nrDGRAHBojWE,2007.0,5,10,2016,Spider Man 3,Cool Peter Parker Scene,tt0413300\nN_O0XDnM2AM,2007.0,1,10,2016,Spider Man 3,New Goblin Attacks Scene,tt0413300\nWE4iNhRivzc,2007.0,3,10,2016,Spider Man 3,Sandman Subway Fight Scene,tt0413300\n5A9D-XVmK10,2007.0,2,10,2016,Spider Man 3,Spidey Saves Gwen Scene,tt0413300\nOJNBsuHFdM4,2007.0,4,10,2016,Spider Man 3,Peter Fights Harry Scene,tt0413300\niX23r272kqg,2007.0,6,10,2016,Spider Man 3,Jazz Club Dance Scene,tt0413300\nGVt3XFTYp-0,2007.0,8,10,2016,Spider Man 3,The End of Spider Man? Scene,tt0413300\nm8LWjDS3IkQ,2007.0,10,10,2016,Spider Man 3,Venom's Demise Scene,tt0413300\nIPdtCQV4Dz8,2007.0,7,10,2016,Spider Man 3,Venom Rises Scene,tt0413300\ndwh6SShhnVI,2007.0,9,10,2016,Spider Man 3,Spider Man & Goblin vs. Sandman & Venom Scene,tt0413300\nDgUvg4sBGcs,-1.0,1,10,2016,Spider Man 2,Spidey's Pizza Delivery Scene,tt1872181\n5wUezm-K0Bw,-1.0,4,10,2016,Spider Man 2,Peter Loses His Powers Scene,tt1872181\nq292IDwEWZ0,-1.0,3,10,2016,Spider Man 2,Aunt May in Peril Scene,tt1872181\nR4CiWP08yes,-1.0,2,10,2016,Spider Man 2,Bank Fight Scene,tt1872181\nm8Jm9_iR6cg,-1.0,5,10,2016,Spider Man 2,Cafe Kidnapping Scene,tt1872181\nyRhRZB-nqOU,-1.0,7,10,2016,Spider Man 2,Stopping the Train Scene,tt1872181\nHStPxrLfM9k,-1.0,6,10,2016,Spider Man 2,The Train Battle Scene,tt1872181\n0TvKsVxgbF4,-1.0,8,10,2016,Spider Man 2,Harry Learns the Truth Scene,tt1872181\nQbwYDkPwfUM,-1.0,9,10,2016,Spider Man 2,Spider Man vs. Doc Ock Scene,tt1872181\naGAInDBQOoE,-1.0,10,10,2016,Spider Man 2,\"Thank You, Mary Jane Watson Scene\",tt1872181\nxcqbp1ysN1M,2010.0,1,10,2016,Legion,Arresting an Angel,tt1038686\n0SDvqDdbhSc,2010.0,10,10,2016,Legion,You Failed Him,tt1038686\nMp6aKCE3jSc,2010.0,9,10,2016,Legion,Michael vs. Gabriel,tt1038686\nZ0l0sXacQ9Y,2010.0,6,10,2016,Legion,You're Gonna Die Now,tt1038686\nonNv1u-qdZY,2010.0,8,10,2016,Legion,Gabriel's Arrival,tt1038686\nLFT504CjJFA,2010.0,7,10,2016,Legion,I Just Wanna Play With the Baby,tt1038686\nP5Q7apxWucc,2010.0,4,10,2016,Legion,The Ice Cream Man,tt1038686\n4kNNwEV5XJI,2010.0,5,10,2016,Legion,Acid Filled Boils,tt1038686\ntWEBbYoDaU8,2010.0,2,10,2016,Legion,Granny's Got Teeth,tt1038686\nwFg1qWPryvI,2010.0,3,10,2016,Legion,They're Here,tt1038686\n5LE2vO_aQgU,1986.0,9,11,2016,Hannah and Her Sisters,A Contentious Lunch,tt0091167\nREXJhZBFD1w,1986.0,11,11,2016,Hannah and Her Sisters,The Heart is a Resistant Muscle,tt0091167\nj6qjibwpEzM,1986.0,10,11,2016,Hannah and Her Sisters,It's Not All a Drag,tt0091167\nWVed9LPelUw,1986.0,6,11,2016,Hannah and Her Sisters,I'm In Love with You,tt0091167\nwU7TupjcCbo,1986.0,7,11,2016,Hannah and Her Sisters,Punk Rock Earache,tt0091167\n9VLcxXz-0w4,1986.0,8,11,2016,Hannah and Her Sisters,Converting to Catholicism,tt0091167\n8KJkEQx2lKI,1986.0,2,11,2016,Hannah and Her Sisters,Sketch Mess,tt0091167\nrLtmIBRWQVQ,1986.0,3,11,2016,Hannah and Her Sisters,The Hypochondriac,tt0091167\nMPqg9uMHTDQ,1986.0,5,11,2016,Hannah and Her Sisters,We Need Some Sperm,tt0091167\nJauxWp4eWnM,1986.0,1,11,2016,Hannah and Her Sisters,\"God, She's Beautiful\",tt0091167\nQYHTRRmkung,1986.0,4,11,2016,Hannah and Her Sisters,A Poem of You,tt0091167\n7mwZYGcbQCo,1979.0,1,10,2016,Manhattan,He Adored New York City,tt0079522\nsZU26D42s2M,1979.0,4,10,2016,Manhattan,I Can't Have This Argument,tt0079522\nGE64zY42bUA,1979.0,3,10,2016,Manhattan,The Queensboro Bridge,tt0079522\nCZO8Dh7dXvM,1979.0,6,10,2016,Manhattan,I'm Trouble,tt0079522\njf9d3cwVWBY,1979.0,2,10,2016,Manhattan,On Nazis and Orgasms,tt0079522\nP2oF9-9UpbQ,1979.0,5,10,2016,Manhattan,The Planetarium,tt0079522\nKQbGttprUMA,1979.0,10,10,2016,Manhattan,Have a Little Faith in People,tt0079522\n2dD7upKpLks,1979.0,9,10,2016,Manhattan,You Think You're God,tt0079522\nFLCvFcaZW3Q,1979.0,7,10,2016,Manhattan,Don't You Love Me?,tt0079522\n63fCYTWuVoA,1979.0,8,10,2016,Manhattan,I'm Still in Love With Yale,tt0079522\nkb4jEHmH_kU,2002.0,10,10,2016,Spider Man Movie,With Great Power Comes Great Responsibility Scene,tt0316654\nhHKUBg_c9no,2002.0,8,10,2016,Spider Man Movie,Spider Man vs. Green Goblin Scene,tt0316654\nMEBibAHnEK4,1977.0,12,12,2016,Annie Hall,Trying Something New,tt0075686\niLBL-XeNrRI,1977.0,4,12,2016,Annie Hall,Cooking Lobster,tt0075686\nvTSmbMm7MDg,1977.0,3,12,2016,Annie Hall,If Life Were Only Like This,tt0075686\n5h5zurZsIQY,1977.0,1,12,2016,Annie Hall,Opening Monologue,tt0075686\nQp3NWzLzaek,1977.0,8,12,2016,Annie Hall,Can I Confess Something?,tt0075686\nlXy9Lp8bu98,1977.0,5,12,2016,Annie Hall,Awkward Annie,tt0075686\nJduADWt0XMI,1977.0,6,12,2016,Annie Hall,Honest Subtitles,tt0075686\np32OEIazBew,1977.0,11,12,2016,Annie Hall,Seems Like Old Times,tt0075686\n1eTXG8FReno,1977.0,10,12,2016,Annie Hall,There's a Spider in the Bathroom,tt0075686\nkIUgcwJeN5A,1977.0,9,12,2016,Annie Hall,How Do You Account For Your Happiness?,tt0075686\n1VIBA_mPdPA,1977.0,2,12,2016,Annie Hall,Where My Classmates Are Today,tt0075686\nWYY9Epog0rs,1977.0,7,12,2016,Annie Hall,I Can't Believe This Family,tt0075686\njM7Eou4bV-Q,2002.0,1,10,2016,Spider Man Movie,Peter vs. Flash Scene,tt0316654\nzlwaUJzGqns,2002.0,2,10,2016,Spider Man Movie,Peter's New Powers Scene,tt0316654\nUDSfJaVC0KY,2002.0,3,10,2016,Spider Man Movie,Bone Saw vs. Spider Man Scene,tt0316654\n9LglzW3HFyg,2002.0,4,10,2016,Spider Man Movie,Uncle Ben's Death Scene,tt0316654\nTvoWGxM8TU8,2002.0,9,10,2016,Spider Man Movie,Green Goblin's Demise Scene,tt0316654\nK_a1_SO8hu0,2002.0,5,10,2016,Spider Man Movie,Green Goblin Attacks the Festival Scene,tt0316654\naBpwrORhKWU,2002.0,6,10,2016,Spider Man Movie,Upside-Down Kiss Scene,tt0316654\nXt0Fv0W-CSo,2002.0,7,10,2016,Spider Man Movie,Bridge Rescue Scene,tt0316654\nFJ7rx8LeTgg,2016.0,10,10,2016,Ghostbusters,Giant Ghost Fight Scene,tt1289401\njYpYTpKuT_k,2016.0,9,10,2016,Ghostbusters,Battling the Ghosts Scene,tt1289401\nRRLisRc0j1c,2016.0,7,10,2016,Ghostbusters,Heavy Metal Demon Scene,tt1289401\nYW6VrETYUfU,2016.0,8,10,2016,Ghostbusters,Abby's Possessed Scene,tt1289401\nLMViEmB4_Fk,2016.0,6,10,2016,Ghostbusters,Evil Mannequin Scene,tt1289401\naGcvpWAhP6I,2016.0,2,10,2016,Ghostbusters,Kevin the Receptionist Scene,tt1289401\n3mw9rXZv4tY,2016.0,5,10,2016,Ghostbusters,Who Ya Gonna Call? Scene,tt1289401\nGl4bRwYs1tI,2016.0,3,10,2016,Ghostbusters,The Subway Ghost Scene,tt1289401\nHfKAC6eOlXg,2016.0,1,10,2016,Ghostbusters,The Mansion Ghost Scene,tt1289401\nzoSzqHlvN6s,2016.0,4,10,2016,Ghostbusters,Getting Equipped Scene,tt1289401\nsvytEWJK6Qk,2015.0,8,10,2016,The Night Before,The Talking Nativity,tt3530002\nkptIt3LwGWc,2015.0,9,10,2016,The Night Before,We Did Not Kill Jesus!,tt3530002\n3IiKTJztqFY,2015.0,10,10,2016,The Night Before,A Christmas Miracle,tt3530002\noQjMZTetuEg,2015.0,7,10,2016,The Night Before,Sleigh Ride Car Chase,tt3530002\nIgrJkJ8NYrw,2015.0,5,10,2016,The Night Before,Do I Look Weird?,tt3530002\nVLXwMhs4ODU,2015.0,6,10,2016,The Night Before,Looking Into Your Soul,tt3530002\nw4-b-D0iByQ,2015.0,2,10,2016,The Night Before,The Weed of Christmas Present,tt3530002\nb-_C0lWgga0,2015.0,1,10,2016,The Night Before,Toy Store Runaway,tt3530002\nNHDA6rk-bek,2015.0,4,10,2016,The Night Before,You Bled in My Drink!,tt3530002\nwwDCSzZx37I,2015.0,3,10,2016,The Night Before,This Baby is a Mistake,tt3530002\nt_wR8zbM5VI,2011.0,10,10,2016,Arthur Christmas,All the Santas,tt1430607\nYpnqA-vr53Q,2011.0,8,10,2016,Arthur Christmas,Scared of Everything,tt1430607\nmqpQgFfidcA,2011.0,9,10,2016,Arthur Christmas,Season's Greetings From Mankind,tt1430607\nIRRYuq7qYk4,2011.0,7,10,2016,Arthur Christmas,Nice Kitties,tt1430607\nv-OKZSh7tQ4,2011.0,5,10,2016,Arthur Christmas,Going Through Canada,tt1430607\nvF3sZj6ge18,2011.0,6,10,2016,Arthur Christmas,Man-Eating Lions,tt1430607\nQpqCLenOeAM,2011.0,2,10,2016,Arthur Christmas,Operation Santa Claus Is Coming to Town,tt1430607\nHi_NmfSbE3g,2011.0,3,10,2016,Arthur Christmas,Risk of Mooing: 98 Percent,tt1430607\nAxpzOZT_C0o,2011.0,4,10,2016,Arthur Christmas,Dash Away!,tt1430607\noLUmNV0tmMo,2011.0,1,10,2016,Arthur Christmas,The Elf Battalion,tt1430607\nbVKJscj58DI,2012.0,1,10,2016,The Pirates! Band of Misfits,Ham Nite!,tt1430626\nKLIB40d6Pz8,2012.0,2,10,2016,The Pirates! Band of Misfits,Attacking Charles Darwin,tt1430626\n8HO4C01n00c,2012.0,3,10,2016,The Pirates! Band of Misfits,Runaway Bathtub,tt1430626\nM1uBjOpTa6Y,2012.0,6,10,2016,The Pirates! Band of Misfits,Stick 'Em Up,tt1430626\n7SClmJTqKo0,2012.0,5,10,2016,The Pirates! Band of Misfits,He's a Pirate!,tt1430626\nEva9_scd290,2012.0,4,10,2016,The Pirates! Band of Misfits,Here's Polly!,tt1430626\najb31pJMQmw,2012.0,9,10,2016,The Pirates! Band of Misfits,Dodo is Off the Menu,tt1430626\nip1igmoPSD8,2012.0,8,10,2016,The Pirates! Band of Misfits,I'm Not Crying,tt1430626\ng3svdzmBtic,2012.0,10,10,2016,The Pirates! Band of Misfits,\"Welcome Back, Captain\",tt1430626\nTZ2ryw04fx4,2012.0,7,10,2016,The Pirates! Band of Misfits,A Pirate No More,tt1430626\nawkGgPALfho,2015.0,2,10,2016,Hotel Transylvania 2,Werewolf Birthday Party,tt2510894\nft9XnHcLYiI,2015.0,1,10,2016,Hotel Transylvania 2,Drac's Social Media Game,tt2510894\n8fGU90-I_H4,2015.0,3,10,2016,Hotel Transylvania 2,Wayne the Were-Wussy,tt2510894\n7y9stFHCvEY,2015.0,4,10,2016,Hotel Transylvania 2,Mummy Mistake,tt2510894\nNNouwnR8QQw,2015.0,6,10,2016,Hotel Transylvania 2,Learning to Fly,tt2510894\nRkINjKcnVuY,2015.0,5,10,2016,Hotel Transylvania 2,Camp Vamp,tt2510894\nn1lQR-GjWYw,2015.0,9,10,2016,Hotel Transylvania 2,Family Bat Fight,tt2510894\nD4_CGzg3fmQ,2015.0,10,10,2016,Hotel Transylvania 2,I'm in Love With a Monster,tt2510894\noOp7Q_xw94I,2015.0,7,10,2016,Hotel Transylvania 2,You Can't Change Him,tt2510894\nCf5dlMw2d7s,2015.0,8,10,2016,Hotel Transylvania 2,Dennis Gets His Fangs,tt2510894\ngpkncObsNqY,2012.0,2,10,2016,Hotel Transylvania,Welcome to ! Scene,tt0837562\nAxru07JeBig,2012.0,1,10,2016,Hotel Transylvania,Daddy's Girl Scene,tt0837562\nuBPs4AHD52Y,2012.0,3,10,2016,Hotel Transylvania,Pouty Bat Face Scene,tt0837562\nvHBKdIq9RGs,2012.0,4,10,2016,Hotel Transylvania,Johnnystein Scene,tt0837562\ntj3Trywp_zk,2012.0,6,10,2016,Hotel Transylvania,The Legend of Lady Lubov Scene,tt0837562\n2JMmof1eg1s,2012.0,5,10,2016,Hotel Transylvania,Pool Party! Scene,tt0837562\nzjiAUjrvTrw,2012.0,7,10,2016,Hotel Transylvania,Where Did the Time Go? Scene,tt0837562\nEl0_VgXqgXU,2012.0,9,10,2016,Hotel Transylvania,Monster Festival Scene,tt0837562\n_AgBIeTHzTM,2012.0,10,10,2016,Hotel Transylvania,The Zing Song Scene,tt0837562\nJtuMPxXQ2l4,2012.0,8,10,2016,Hotel Transylvania,Tracking Johnny Scene,tt0837562\nXRx0KtjPoX0,2015.0,2,10,2016,Goosebumps,Sucked Back Into the Book,tt1051904\nv3H9-sHDZSA,2015.0,1,10,2016,Goosebumps,The Abominable Snowman of Pasadena,tt1051904\nJIqfgLLZhAk,2015.0,4,10,2016,Goosebumps,Indestructible Gnomes,tt1051904\nAtJ5phl1iVE,2015.0,3,10,2016,Goosebumps,Unhappy Slappy,tt1051904\nHmwZxnQbox8,2015.0,6,10,2016,Goosebumps,Werewolf On Aisle 2,tt1051904\nwk-P07PoFAk,2015.0,5,10,2016,Goosebumps,Attack of the Giant Praying Mantis,tt1051904\nc0-3FQ-_SAg,2015.0,7,10,2016,Goosebumps,Silver Fillings,tt1051904\nme9Vweatkto,2015.0,10,10,2016,Goosebumps,\"Open the Book, Scaredy Cat\",tt1051904\ngEC1WbYzZYk,2015.0,9,10,2016,Goosebumps,The Blob That Ate Everyone,tt1051904\nQxNZJZrkdM0,2015.0,8,10,2016,Goosebumps,There's No Escaping From Us,tt1051904\ni7hF7BAKV_I,2013.0,8,10,2016,Evil Dead,Natalie's Got a Nail Gun,tt1288558\nykeqEK7m5oI,2013.0,10,10,2016,Evil Dead,Evil Meets Chainsaw,tt1288558\nmk2OptcsXuo,2013.0,9,10,2016,Evil Dead,\"Blood Falls, Demon Rises\",tt1288558\ns6lrBldtwVk,2013.0,2,10,2016,Evil Dead,Getting Inside Mia,tt1288558\n5PikP1s15F0,2013.0,4,10,2016,Evil Dead,You Are All Going To Die Tonight,tt1288558\nXAuxvhZzUhE,2013.0,1,10,2016,Evil Dead,I Will Rip Your Soul Out,tt1288558\nFHXzsBsOVjY,2013.0,6,10,2016,Evil Dead,Bloody Kiss,tt1288558\nt4pLZtTuryE,2013.0,5,10,2016,Evil Dead,Face Carving and Head Bashing,tt1288558\n8k9h0yE0XIg,2013.0,3,10,2016,Evil Dead,Scalding Shower,tt1288558\nIMOAEKRuaeI,2013.0,7,10,2016,Evil Dead,Cutting Off the Arm,tt1288558\npVfx0OQcmBk,2016.0,8,10,2016,The Shallows,Jellyfish Swim,tt4052882\nydFjplhKYng,2016.0,3,10,2016,The Shallows,Stitches,tt4052882\nDzpGeXWsQKY,2016.0,10,10,2016,The Shallows,Impaled,tt4052882\nohoPpyAG0zA,2016.0,9,10,2016,The Shallows,Fighting with Fire,tt4052882\nW9DAFX_ieak,2016.0,6,10,2016,The Shallows,30 Seconds,tt4052882\n1UqGimF2hkI,2016.0,7,10,2016,The Shallows,I Love You,tt4052882\nGwyuRxkac2Q,2016.0,1,10,2016,The Shallows,Shark Attack,tt4052882\nru_PLKD7w4c,2016.0,5,10,2016,The Shallows,Get Out of the Water!,tt4052882\nvT4HrbzMVgI,2016.0,2,10,2016,The Shallows,Swim for Safety,tt4052882\nw8IS7igzQxw,2016.0,4,10,2016,The Shallows,Stop!,tt4052882\nzdTmdoeLgAc,2012.0,1,10,2016,Underworld: Awakening,Our Only Chance of Survival,tt1496025\n6OizpcahOZA,2012.0,2,10,2016,Underworld: Awakening,What Is This Place?,tt1496025\nujcglOdwI1E,2012.0,3,10,2016,Underworld: Awakening,Do You Know Her?,tt1496025\nA5fwu8OlNG0,2012.0,4,10,2016,Underworld: Awakening,Lycan Chase,tt1496025\n4HSdmiu24xQ,2012.0,7,10,2016,Underworld: Awakening,\"Find Her, and Destroy Her\",tt1496025\nM5F8dw_FfPc,2012.0,5,10,2016,Underworld: Awakening,Defending the Coven,tt1496025\now0vNLhDNzI,2012.0,8,10,2016,Underworld: Awakening,Elevator Drop,tt1496025\ntWuBw5082gI,2012.0,9,10,2016,Underworld: Awakening,It's Worse If You Try To Fight It,tt1496025\nZtQD3EqQAC0,2012.0,10,10,2016,Underworld: Awakening,Grenade Punch,tt1496025\no0wTt_xDlpk,2012.0,6,10,2016,Underworld: Awakening,Battling the Beast,tt1496025\n_-JtvyLvSlo,2009.0,1,10,2016,Underworld: Rise of the Lycans,A Lycan Unbounded,tt0834001\n19u6S4Fqnss,2009.0,8,10,2016,Underworld: Rise of the Lycans,Lucian's Escape,tt0834001\nVDGKUOjQ-Zs,2009.0,2,10,2016,Underworld: Rise of the Lycans,Thirty Lashings,tt0834001\n2tWRTtI7huk,2009.0,3,10,2016,Underworld: Rise of the Lycans,We Can Be Slaves Or We Can Be Lycans,tt0834001\n4frYhsIGjJU,2009.0,6,10,2016,Underworld: Rise of the Lycans,For the Sake of Your Grandchild,tt0834001\n51Kfo8X3V18,2009.0,7,10,2016,Underworld: Rise of the Lycans,Goodbye My Love,tt0834001\nemW6TopzEe0,2009.0,9,10,2016,Underworld: Rise of the Lycans,Lycan Revenge,tt0834001\nbmeh1eFkyHg,2009.0,10,10,2016,Underworld: Rise of the Lycans,Lucian Versus Viktor,tt0834001\nXq_9TDk-hj0,2009.0,5,10,2016,Underworld: Rise of the Lycans,Escaped,tt0834001\nxZXOBmW-7Jk,2009.0,4,10,2016,Underworld: Rise of the Lycans,Are You With Me?,tt0834001\ntqqSIT1D0vU,2006.0,10,10,2016,Underworld: Evolution,Battling the Brothers,tt0401855\nL9pxOwibtWQ,2006.0,9,10,2016,Underworld: Evolution,Michael Rises,tt0401855\nDNAwkyyq3kM,2006.0,8,10,2016,Underworld: Evolution,Selene vs. William,tt0401855\nPw8FO7eRAoY,2006.0,7,10,2016,Underworld: Evolution,Too Late,tt0401855\nStS0_Y5Dh4Q,2006.0,5,10,2016,Underworld: Evolution,Marcus Comes For the Key,tt0401855\nEegnTsyPDF4,2006.0,6,10,2016,Underworld: Evolution,A True God Has No Father,tt0401855\n9PllxjcicFo,2006.0,4,10,2016,Underworld: Evolution,You Don't Scare Me,tt0401855\nLCD5BDaqANw,2006.0,3,10,2016,Underworld: Evolution,You Will Give Me What I Want,tt0401855\nKwIg2QMWVOU,2006.0,1,10,2016,Underworld: Evolution,Imprisonment For All Time,tt0401855\nR0p6s2L8yk4,2006.0,2,10,2016,Underworld: Evolution,Saving Michael,tt0401855\nFQjvyy8gOS0,2002.0,9,10,2016,Eight Crazy Nights,Bum Biddy,tt0271263\nesHXIrYgSzo,2002.0,10,10,2016,Eight Crazy Nights,\"It's Your Moment, Whitey\",tt0271263\nmA1FWjriD60,2002.0,7,10,2016,Eight Crazy Nights,That's a Technical Foul,tt0271263\nt-dJ4I7rGp8,2002.0,8,10,2016,Eight Crazy Nights,The Dukesberry All-Star Patch,tt0271263\nQ-MVoUlU-OY,2002.0,6,10,2016,Eight Crazy Nights,It's a Home Invasion Robbery!,tt0271263\ns3PbszHh8vE,2002.0,5,10,2016,Eight Crazy Nights,But That Was Long Ago,tt0271263\nbGQ9QznPQ_M,2002.0,4,10,2016,Eight Crazy Nights,Eat That Nut Strap,tt0271263\nf7vRR8-n_Rc,2002.0,1,10,2016,Eight Crazy Nights,Davey's Song,tt0271263\nfVVoh_Xh0xo,2002.0,3,10,2016,Eight Crazy Nights,The Jock Strap Bet,tt0271263\nehNNyfvhcto,2002.0,2,10,2016,Eight Crazy Nights,Ref Seizure,tt0271263\n31ZCtppXSoU,2006.0,5,10,2016,Monster House,Hungry House,tt0385880\nxLD9iygFMgA,2006.0,10,10,2016,Monster House,Death-Defying Dynamite Destruction,tt0385880\nM_HMbS9bEhM,2006.0,9,10,2016,Monster House,The Right Thing to Do,tt0385880\n41FRwoAJkpw,2006.0,8,10,2016,Monster House,The House is Alive!,tt0385880\nycyXqWAMzZ8,2006.0,7,10,2016,Monster House,\"She Died, But She Didn't Leave\",tt0385880\njBxnTnikZEo,2006.0,6,10,2016,Monster House,Nature's Emergency Exit,tt0385880\nJXxF-_0u_qU,2006.0,4,10,2016,Monster House,Little Vacuum Cleaner Dummy,tt0385880\nATDt5EBims4,2006.0,3,10,2016,Monster House,Detectable Movement!,tt0385880\nTE4ZWi6xkZo,2006.0,1,10,2016,Monster House,Stay Away From My House!,tt0385880\n4VX7ZvbbLrE,2006.0,2,10,2016,Monster House,Ding Dong Ditch Doom,tt0385880\nvdED1lRQ-N8,1997.0,10,10,2016,I Know What You Did Last Summer,I Still Know,tt0119345\nIE1ZeXC4vtg,1997.0,5,10,2016,I Know What You Did Last Summer,What Are You Waiting For?,tt0119345\nTGoICPqXjAY,1997.0,9,10,2016,I Know What You Did Last Summer,Make Sure He's Really Dead,tt0119345\nOgaJLKX1sUo,1997.0,6,10,2016,I Know What You Did Last Summer,A Killer in the Balcony,tt0119345\nUDcu3Pg8LiI,1997.0,1,10,2016,I Know What You Did Last Summer,I Think He's Dead,tt0119345\nxGCLACE7SUI,1997.0,2,10,2016,I Know What You Did Last Summer,We'll Dump the Body,tt0119345\ng3a9qZnTzJQ,1997.0,7,10,2016,I Know What You Did Last Summer,The Killer's Trap,tt0119345\ntdMF1i45oks,1997.0,3,10,2016,I Know What You Did Last Summer,We Take This To Our Grave,tt0119345\ngLLgGSdfy3I,1997.0,8,10,2016,I Know What You Did Last Summer,No Escape,tt0119345\nTAZ3_IuoGew,1997.0,4,10,2016,I Know What You Did Last Summer,I Know,tt0119345\ndx07n7Eov0o,1996.0,8,10,2016,The Craft,You're Going to Kill Yourself Tonight,tt0115963\nIXXv4DMkBpM,1996.0,4,10,2016,The Craft,\"As I Will It, So Shall It Be\",tt0115963\nsHFXRjwKOG8,1996.0,10,10,2016,The Craft,\"I Bind You, Nancy\",tt0115963\n8EUTXbhTFg8,1996.0,9,10,2016,The Craft,\"Relax, It's Only Magic\",tt0115963\nHUJtn_Bwm-w,1996.0,6,10,2016,The Craft,He's Gotta Pay,tt0115963\nyuochlbdRmQ,1996.0,7,10,2016,The Craft,Snakes For Sarah,tt0115963\narf7Bi4CCmU,1996.0,5,10,2016,The Craft,Nancy Walks on Water,tt0115963\nkZMKLwtkLrI,1996.0,3,10,2016,The Craft,One Hundred and Seventy-Five Thousand Dollars,tt0115963\n6FVwlgBDCo0,1996.0,1,10,2016,The Craft,Blessed Be,tt0115963\nGBTN4LA7pTs,1996.0,2,10,2016,The Craft,\"Light As a Feather, Stiff As a Board\",tt0115963\nLxxFi7igv2A,2009.0,1,10,2016,Angels & Demons,The Diagram of Truth,tt0808151\n99dOPdlLIw0,2009.0,2,10,2016,Angels & Demons,The Pantheon,tt0808151\nUr1StpqHA1M,2009.0,3,10,2016,Angels & Demons,Murder in Saint Peter's Square,tt0808151\nB98YODkeEqY,2009.0,4,10,2016,Angels & Demons,Running Out of Air,tt0808151\n41AhzyLUBFM,2009.0,5,10,2016,Angels & Demons,Burned at the Stake,tt0808151\nPw0CzPQdaE4,2009.0,6,10,2016,Angels & Demons,Drowning in the Trevi Fountain,tt0808151\nI_v5km4eDik,2009.0,7,10,2016,Angels & Demons,Antimatter Explosion,tt0808151\nwQ5uso-R6aY,2009.0,8,10,2016,Angels & Demons,We Are at War,tt0808151\n9F9KKPakio4,2009.0,9,10,2016,Angels & Demons,Self-Immolation,tt0808151\nxzW255065XQ,2009.0,10,10,2016,Angels & Demons,Science and Faith,tt0808151\nOY5yOdITL-8,2008.0,7,10,2016,Journey to the Center of the Earth,Stuck and Suffocating,tt0373051\nkp2u8LURkgQ,2008.0,4,10,2016,Journey to the Center of the Earth,The Bridge of Lava,tt0373051\nH2cgoxJHSPs,2008.0,8,10,2016,Journey to the Center of the Earth,Breaching the Surface,tt0373051\nLYsdYDbW_Iw,2008.0,1,10,2016,Journey to the Center of the Earth,Disarming Maneuvers,tt0373051\nV0dVNpmzCyg,2008.0,5,10,2016,Journey to the Center of the Earth,15 Seconds to Impact,tt0373051\nzMzCxBRDhlA,2008.0,10,10,2016,Journey to the Center of the Earth,The Race to the Teleporter,tt0373051\nO2hN7307Nio,2008.0,2,10,2016,Journey to the Center of the Earth,Teleportation Disappearance,tt0373051\nav5eE5HTVzs,2008.0,9,10,2016,Journey to the Center of the Earth,Life Inside Magma,tt0373051\n3O13oeNWWfU,2008.0,3,10,2016,Journey to the Center of the Earth,Outrunning the Dinosaur,tt0373051\nsQcgpyPhaIA,2008.0,6,10,2016,Journey to the Center of the Earth,Let's Do This Thing!,tt0373051\n4tEfbGzxI-E,2012.0,10,10,2016,Nazis at the Center of the Earth,Bobble-Headed Zombie Nazi,tt2130142\nl3zxPrDoN74,2012.0,10,10,2016,Rise of the Zombies,Surviving the Zombie Apocalypse,tt2236182\n61LA1soyYkg,2012.0,9,10,2016,Rise of the Zombies,The Doubtful Doctor,tt2236182\nGMXgGPnbnow,2012.0,5,10,2016,Rise of the Zombies,Zombie Baby,tt2236182\njhvqJs7apdo,2012.0,8,10,2016,Rise of the Zombies,Light 'Em Up!,tt2236182\njDnp-EKD-Qw,2012.0,7,10,2016,Rise of the Zombies,Hopeless,tt2236182\nQ9NJiwYZt4Q,2012.0,1,10,2016,Rise of the Zombies,Lockdown,tt2236182\nphTSTiwPBUk,2012.0,6,10,2016,Rise of the Zombies,Snack Time,tt2236182\nzxO4SgwCONk,2012.0,3,10,2016,Rise of the Zombies,A Necessary Evil,tt2236182\nHtC2c6DQvSE,2012.0,2,10,2016,Rise of the Zombies,Escaping Alcatraz,tt2236182\n7jrjZ5DIEzU,2012.0,4,10,2016,Rise of the Zombies,Golden Gate Zombies,tt2236182\ncbBTkI-JxVg,2013.0,2,10,2016,Zombie Night,Zombie Slayer Parenting,tt2978716\n7RAzClJ4XLk,2013.0,10,10,2016,Zombie Night,\"Pancakes, Anyone?\",tt2978716\nek_w1fGGUT0,2013.0,9,10,2016,Zombie Night,The Only Safe Place is a Coffin,tt2978716\nS8HUYXl6grQ,2013.0,6,10,2016,Zombie Night,From Father to Flesh Eater,tt2978716\nHJwSvsEaai8,2013.0,8,10,2016,Zombie Night,\"Dammit, Not the Cemetary\",tt2978716\nR-Rc1lQMjQc,2013.0,7,10,2016,Zombie Night,Bye Bye Boyfriend,tt2978716\nMiQsEACG7_w,2013.0,4,10,2016,Zombie Night,The Undead Love Children,tt2978716\nDFgmFM-w0Rk,2013.0,5,10,2016,Zombie Night,A Greenhouse of Ghouls,tt2978716\nkRZxEorotnY,2013.0,1,10,2016,Zombie Night,Don't Let Them In!,tt2978716\n6EM223j0wls,2013.0,3,10,2016,Zombie Night,Zombie Mom,tt2978716\n9V8IRFmXcQI,2012.0,3,10,2016,Nazis at the Center of the Earth,Beyond the Void,tt2130142\nB9aW-CumBFg,2012.0,2,10,2016,Nazis at the Center of the Earth,Flesh and Blood,tt2130142\nVwB6p1A-FwA,2012.0,8,10,2016,Nazis at the Center of the Earth,They're Going to Infect the Planet,tt2130142\nVtGNNvJF5Qk,2012.0,9,10,2016,Nazis at the Center of the Earth,Silje's Sacrifice,tt2130142\nd7vy5NkiJJE,2012.0,4,10,2016,Nazis at the Center of the Earth,Vaporized,tt2130142\ntn24Ca1sslc,2012.0,7,10,2016,Nazis at the Center of the Earth,Hitler the Headslasher,tt2130142\noKTtRDYwIG4,2012.0,5,10,2016,Nazis at the Center of the Earth,Don't Kill Our Baby,tt2130142\n8jWoq1fTwJ8,2012.0,1,10,2016,Nazis at the Center of the Earth,Facial Extraction,tt2130142\n9dDKx-vREdQ,2012.0,6,10,2016,Nazis at the Center of the Earth,Hitler Reborn,tt2130142\nRF2gzBNsZQ4,2013.0,10,10,2016,Atlantic Rim,Takin' it to Outer Space,tt2740710\nlBs_nLdio1M,2013.0,9,10,2016,Atlantic Rim,Red Jams the Nuke,tt2740710\nndZVwNuTYa4,2013.0,11,11,2016,Mindless Behavior: All Around the World,The Movement,tt2621126\nglNH68Iaa3E,2013.0,8,10,2016,Atlantic Rim,Some Jackass Ordered a Nuclear Strike,tt2740710\nkrBjSShSxu0,2013.0,7,10,2016,Atlantic Rim,The Suits Feel Pain,tt2740710\nF8lEfmjN9C0,2013.0,6,10,2016,Atlantic Rim,Biobots,tt2740710\npDCzYY0bjbc,2013.0,5,10,2016,Atlantic Rim,Comin' in Hot,tt2740710\neCXv9LnSKeA,2013.0,2,10,2016,Atlantic Rim,Evacuate the Beach,tt2740710\nYAhyJTSt_9o,2013.0,1,10,2016,Atlantic Rim,Launching Project Armada,tt2740710\n04BZh6E-Nck,2013.0,4,10,2016,Atlantic Rim,It Hatched,tt2740710\nAVpd8G_48FM,2013.0,3,10,2016,Atlantic Rim,Here's Your Target!,tt2740710\nEwWuQOBBcFA,2015.0,3,10,2016,Avengers Grimm,A Swarm of Thralls,tt4296026\nEN7SYqdbsm4,2015.0,1,10,2016,Avengers Grimm,No Life is Worth a Kingdom,tt4296026\nsS1L9wZXFic,2015.0,2,10,2016,Avengers Grimm,Red Sends a Message,tt4296026\ntUr2KIu-nvE,2015.0,10,10,2016,Avengers Grimm,No More Deals!,tt4296026\nSnKEQA88PXg,2015.0,8,10,2016,Avengers Grimm,Help Me Close the Portal,tt4296026\nVPXC2aQZyEs,2015.0,5,10,2016,Avengers Grimm,We Are Avengers,tt4296026\ntaAwMJ4hsdk,2015.0,9,10,2016,Avengers Grimm,All the Better to Kill You With,tt4296026\nV8oMGhl8FFg,2015.0,7,10,2016,Avengers Grimm,Does This Look Like Order?,tt4296026\n6Z5bmj561YM,2015.0,6,10,2016,Avengers Grimm,Red vs. The Wolf,tt4296026\n7a-OSvw0tjg,2015.0,4,10,2016,Avengers Grimm,Gonna Kill Me a Princess,tt4296026\nkAyPdsYr2K0,2013.0,7,10,2016,Age of Dinosaurs,Chompers vs. Chopper,tt2518926\nJaEv5uq8sJs,2013.0,2,10,2016,Age of Dinosaurs,Dino Destruction,tt2518926\n3pjwMG4hrFw,2013.0,6,10,2016,Age of Dinosaurs,Mauled at the Mall,tt2518926\nRQZFCcsvtew,2013.0,3,10,2016,Age of Dinosaurs,Dad Decapitates a Dinosaur,tt2518926\nioKNba1RRys,2013.0,8,10,2016,Age of Dinosaurs,Dino Whackin',tt2518926\nVwSWeeg9RSg,2013.0,1,10,2016,Age of Dinosaurs,It Smells the Blood,tt2518926\nLtGQwP3jiUk,2013.0,9,10,2016,Age of Dinosaurs,Follow That Pteranodon!,tt2518926\nJch6T39j20E,2013.0,5,10,2016,Age of Dinosaurs,Dino Driving,tt2518926\ngvBe38KoiVc,2013.0,4,10,2016,Age of Dinosaurs,Big Dinosaurs,tt2518926\nqoftQY-P85o,2013.0,10,10,2016,Age of Dinosaurs,Bye Bye Birdie,tt2518926\nBS82G9f2Xaw,2010.0,10,11,2016,Centurion,A Bloody Victory,tt1020558\n8kAtef-L6do,2010.0,11,11,2016,Centurion,Betrayed by Romans,tt1020558\nfG1_01gDUoc,2010.0,9,11,2016,Centurion,I'm Tired of Running,tt1020558\nYrIvuBpSGio,2010.0,6,11,2016,Centurion,We Have to Jump,tt1020558\n38Zst1IDgIs,2010.0,8,11,2016,Centurion,Left to the Wolves,tt1020558\n0M0dGWXQt6Y,2010.0,7,11,2016,Centurion,Night Raid,tt1020558\nCRbtvxbu6fg,2010.0,5,11,2016,Centurion,She-Wolf,tt1020558\nLpP3_e3ioiQ,2010.0,3,11,2016,Centurion,The Massacre of the Ninth Legion,tt1020558\nB4jUZUgKhFQ,2010.0,4,11,2016,Centurion,Saving the General,tt1020558\nXS7Tpc7yY8Y,2010.0,2,11,2016,Centurion,Rescuing a Roman,tt1020558\ntoe0MwxNN1o,2010.0,1,11,2016,Centurion,Kill Them All,tt1020558\nAMOb_w6Jfug,1993.0,2,12,2016,Six Degrees of Separation,\"Chaos, Control\",tt0108149\nEUB6R41g7cA,1993.0,9,12,2016,Six Degrees of Separation,,tt0108149\nwkyZ8pJD0Uo,1993.0,1,12,2016,Six Degrees of Separation,I Was Mugged,tt0108149\n7rGY9Tw2hSw,1993.0,5,12,2016,Six Degrees of Separation,The Worst Kind of Yellowness,tt0108149\nQnMDpNk1DFY,1993.0,7,12,2016,Six Degrees of Separation,I Loved That Shirt!,tt0108149\n9e06PDg1pgs,1993.0,4,12,2016,Six Degrees of Separation,Everybody's a Phony,tt0108149\nDUJHFbmzhtQ,1993.0,3,12,2016,Six Degrees of Separation,The Life of Sidney Poitier,tt0108149\nm5Qi_YVxd5M,1993.0,11,12,2016,Six Degrees of Separation,We'll Have a Wonderful Life,tt0108149\nRq-hSPn_Elc,1993.0,12,12,2016,Six Degrees of Separation,A Terrible Match,tt0108149\nHXtYMxtMlhI,1993.0,10,12,2016,Six Degrees of Separation,Paul Seduces Rick,tt0108149\nPnZpYoBuiGw,1993.0,8,12,2016,Six Degrees of Separation,Stripping for Info,tt0108149\nQzzcHhFa66Q,1993.0,6,12,2016,Six Degrees of Separation,A Painter Losing a Painting,tt0108149\nKtHucDG9t9k,2011.0,6,11,2016,Little Birds,Making Out,tt1623745\nXXcdcrn7usw,2011.0,11,11,2016,Little Birds,Saving Lily,tt1623745\nAtZDj7gset0,2011.0,10,11,2016,Little Birds,The Pyscho,tt1623745\ns0bZ80iuZdQ,2011.0,9,11,2016,Little Birds,Things Have Changed,tt1623745\nXVyVUZrzGrE,2011.0,8,11,2016,Little Birds,The Pervert,tt1623745\npQ7F6S4FrdY,2011.0,7,11,2016,Little Birds,I Don't Know Anything,tt1623745\nsfObDKSfaZA,2011.0,5,11,2016,Little Birds,Apologize to the Girls,tt1623745\n2ul7iwAUMN8,2011.0,4,11,2016,Little Birds,Shoplifting,tt1623745\nKtDkR9YdBS0,2011.0,3,11,2016,Little Birds,I Kissed That Boy,tt1623745\nH5ocMbhjb-M,2011.0,2,11,2016,Little Birds,Why Don't You Cut It Off?,tt1623745\nfi3K18p1Pww,2011.0,1,11,2016,Little Birds,The Train's Coming,tt1623745\nNUI_ZNu-GXM,2011.0,7,12,2016,High Road,John Wayne Gacy Had a Gun,tt1692084\nQGq7H8ku2cI,2011.0,12,12,2016,High Road,I Love You Forever,tt1692084\nDhW1_LX5xZg,2011.0,11,12,2016,High Road,Drag Queen Dad,tt1692084\nM6aTyZE_Zss,2011.0,10,12,2016,High Road,Horny Doctor,tt1692084\nAtDwOreXh-k,2011.0,9,12,2016,High Road,Rude Hooker,tt1692084\nQ1ITCuUHAnY,2011.0,8,12,2016,High Road,You Aren't Like Jerry Maguire,tt1692084\nTn1YK5UEr_c,2011.0,6,12,2016,High Road,A Van and a Natural Healer,tt1692084\n38tBs7AinQA,2011.0,5,12,2016,High Road,Sexual Harrassment,tt1692084\nlAebdantAPM,2011.0,2,12,2016,High Road,You're a Drug Dealer,tt1692084\nLHEPabAiiTo,2011.0,3,12,2016,High Road,Grab All My Weed!,tt1692084\nXLJwlFShttg,2011.0,4,12,2016,High Road,The Kill Zone,tt1692084\ndH5RKJLZ7HQ,2011.0,1,12,2016,High Road,Mouthful of Smacker,tt1692084\nbzoIipqEbXE,2011.0,12,12,2016,Intruders,The End of Hollow Face,tt1634121\nJHlNsy6rMUI,2011.0,11,12,2016,Intruders,Ghostly Tentacles,tt1634121\nDeoXtC4c5Ck,2011.0,8,12,2016,Intruders,Ghost Attack,tt1634121\nABAYY_S63CE,2011.0,9,12,2016,Intruders,Hollow Face Returns,tt1634121\n69yTsxMTNnQ,2011.0,10,12,2016,Intruders,What Do You See?,tt1634121\nh1vDFFr7nNs,2011.0,7,12,2016,Intruders,What Are You Scared of?,tt1634121\ni7eR-SzImZQ,2011.0,5,12,2016,Intruders,Hollow Face Hauntings,tt1634121\n6dySVi75n7M,2011.0,6,12,2016,Intruders,Shapes in the Dark,tt1634121\nQfNYdXHjGV0,2011.0,4,12,2016,Intruders,A Dark Confession,tt1634121\nKtZQO636AQw,2011.0,3,12,2016,Intruders,The Story of Hollow Face,tt1634121\nEY18WYrcYHw,2011.0,2,12,2016,Intruders,A Ghostly Dream,tt1634121\nVhTqGpjZzfk,2011.0,1,12,2016,Intruders,Balcony Haunting,tt1634121\nU6CQhcLjjfY,2008.0,1,10,2016,Donkey Punch,We're All Going Down,tt0988849\nmwVsJoafaP0,2008.0,10,10,2016,Donkey Punch,The Last Two Alive,tt0988849\nGnAKqKB8ryc,2008.0,9,10,2016,Donkey Punch,A Grave Mistake,tt0988849\nm6-AzGII9Ts,2008.0,8,10,2016,Donkey Punch,You Want Me to Help You?,tt0988849\nsCSUnot0u30,2008.0,7,10,2016,Donkey Punch,Torture,tt0988849\nwojHQib2wn4,2008.0,6,10,2016,Donkey Punch,Breaking the Glass,tt0988849\ntcH0KwS_YEA,2008.0,5,10,2016,Donkey Punch,Flares,tt0988849\nyLj0FvavCe0,2008.0,3,10,2016,Donkey Punch,Buried at Sea,tt0988849\nsHhFAITCEPs,2008.0,4,10,2016,Donkey Punch,A Tense Dinner,tt0988849\nu0aPph3nUwQ,2008.0,2,10,2016,Donkey Punch,The Right Thing to Do,tt0988849\noX5iDM-DnQ4,2013.0,9,11,2016,Mindless Behavior: All Around the World,My Girl,tt2621126\ndlwR6MhC2Hc,2013.0,10,11,2016,Mindless Behavior: All Around the World,Reunion with Moms,tt2621126\n08UMKwdtWk8,2013.0,8,11,2016,Mindless Behavior: All Around the World,Michael Jackson's Old House,tt2621126\nFxwaraxX89Y,2013.0,6,11,2016,Mindless Behavior: All Around the World,#1 Girl,tt2621126\n-D3PMCmZot0,2013.0,7,11,2016,Mindless Behavior: All Around the World,Live to Live for Others,tt2621126\nouN3vJJmPgw,2013.0,5,11,2016,Mindless Behavior: All Around the World,Success or Fame,tt2621126\nb_5M03JfdQo,2013.0,4,11,2016,Mindless Behavior: All Around the World,Prodigy,tt2621126\niab2tzXfWsU,2013.0,3,11,2016,Mindless Behavior: All Around the World,Ray Ray,tt2621126\nLPEVs0FV7Os,2013.0,1,11,2016,Mindless Behavior: All Around the World,Princeton,tt2621126\ny-PhkF8e4rc,2013.0,2,11,2016,Mindless Behavior: All Around the World,Roc Royal,tt2621126\n1_uvjP9QZcE,2005.0,10,10,2016,Enron: The Smartest Guys in the Room,The Definition of Wrong,tt1016268\neYR0zgfAcQk,2005.0,9,10,2016,Enron: The Smartest Guys in the Room,Bankruptcy,tt1016268\n_08wo4Rxayk,2005.0,8,10,2016,Enron: The Smartest Guys in the Room,The Ship Is Sinking,tt1016268\npuGracMskK8,2005.0,6,10,2016,Enron: The Smartest Guys in the Room,Useful Idiots,tt1016268\n9ejzBYus8qE,2005.0,7,10,2016,Enron: The Smartest Guys in the Room,\"Burn, Baby, Burn\",tt1016268\nsHAoAwDUkBo,2005.0,4,10,2016,Enron: The Smartest Guys in the Room,Perception of Demand,tt1016268\ngaZOIAJJ6Kk,2005.0,5,10,2016,Enron: The Smartest Guys in the Room,Something Didn't Add Up,tt1016268\nIUu1T75RjTo,2005.0,2,10,2016,Enron: The Smartest Guys in the Room,Shredded,tt1016268\nvBasqtPRco0,2005.0,3,10,2016,Enron: The Smartest Guys in the Room,The Selfish Gene,tt1016268\njm7zMNBEgmA,2005.0,1,10,2016,Enron: The Smartest Guys in the Room,Cliff's Exit,tt1016268\nEFlCixq_HEM,2015.0,10,10,2016,Man Up,F*** the Past,tt3064298\nkZgaz49f5aE,2015.0,8,10,2016,Man Up,Grand Romantic Gestures,tt3064298\nVjc0wdQtl64,2015.0,9,10,2016,Man Up,Jack's Quest,tt3064298\ngsYcnpq1HBc,2015.0,6,10,2016,Man Up,Cynic vs. Romantic,tt3064298\n1Gnmq6nB1ws,2015.0,7,10,2016,Man Up,Finally Moving On,tt3064298\nmwrMEQnMRCQ,2015.0,5,10,2016,Man Up,\"Ready, Steady, Tactical Puke\",tt3064298\nUx6L0eRqDGY,2015.0,4,10,2016,Man Up,She's Nancy,tt3064298\nXKrIeZTVBQ4,2015.0,3,10,2016,Man Up,Call Me Jessica,tt3064298\nRDrZm6eEY6E,2015.0,1,10,2016,Man Up,Don't Seal Up Just Yet,tt3064298\n0bRr_MER6Vg,2015.0,2,10,2016,Man Up,It's Been Awhile,tt3064298\nzTh8P8BTQVE,2013.0,12,12,2016,Home Run,A New Story,tt2051894\nRCzgkvkbVI4,2013.0,11,12,2016,Home Run,Family,tt2051894\nZ1MsMWSkKWE,2013.0,10,12,2016,Home Run,Are You My Dad?,tt2051894\n2rq0nLbL5fg,2013.0,9,12,2016,Home Run,I Want to Be His Father,tt2051894\nD6SVqGVTlFU,2013.0,8,12,2016,Home Run,Shaking It Up,tt2051894\nutHcPvSz6AM,2013.0,7,12,2016,Home Run,Cory's Advice,tt2051894\nu5gSeZQbbq8,2013.0,6,12,2016,Home Run,Our Yearbook,tt2051894\nYz0YrG0oJQU,2013.0,4,12,2016,Home Run,Photo-Op,tt2051894\ncUy-J4YGxcE,2013.0,5,12,2016,Home Run,Coach Cory,tt2051894\nUIdm6BTefb8,2013.0,3,12,2016,Home Run,Coaching Kids Baseball,tt2051894\nBIW6tF1dE50,2013.0,2,12,2016,Home Run,Consequences,tt2051894\nPuI5bs7mZG8,2013.0,1,12,2016,Home Run,Cory Blows Up,tt2051894\nn1X2w0tinkg,2015.0,7,10,2016,By the Sea,Dance with Me,tt4034228\nSWYmSp9wxUM,2015.0,10,10,2016,By the Sea,Am I a Bad Person?,tt4034228\nJkeXMSrRsYI,2015.0,9,10,2016,By the Sea,I'm Barren,tt4034228\nEcDcNDlil_A,2015.0,8,10,2016,By the Sea,Hurt Me,tt4034228\nYCIt5jn2XPk,2015.0,6,10,2016,By the Sea,Everyone Has Many Opinions,tt4034228\nU-42oAzybn4,2015.0,5,10,2016,By the Sea,Are We Perverse?,tt4034228\n77326fqWeR4,2015.0,2,10,2016,By the Sea,You Make Me Sick,tt4034228\nzWtQ2tYVagg,2015.0,3,10,2016,By the Sea,Are You Trying to Destroy Us?,tt4034228\nySwvsZ3KWhc,2015.0,1,10,2016,By the Sea,Why Are You Trying to Put That In My Head?,tt4034228\n6MDRk-oDzAE,2015.0,4,10,2016,By the Sea,Watch With Me,tt4034228\nNgQmrSNWY0U,2013.0,4,12,2016,Parkland,The Zapruder Film,tt2345112\nm_adoXQ7GT4,2013.0,7,12,2016,Parkland,Change Your Name,tt2345112\nq4FzgqjlrVY,2013.0,10,12,2016,Parkland,Life Magazine,tt2345112\nRYgoemOYknw,2013.0,8,12,2016,Parkland,We Had Him,tt2345112\nARSK76A2xts,2013.0,12,12,2016,Parkland,Hail Mary,tt2345112\nWvJZlC93jVM,2013.0,9,12,2016,Parkland,You Did This to All of Us,tt2345112\nIUBx1ZoP6PA,2013.0,6,12,2016,Parkland,My Story Too,tt2345112\nIR7xuySx1v0,2013.0,11,12,2016,Parkland,The Funeral,tt2345112\nKGPl7ahFDEc,2013.0,5,12,2016,Parkland,This is My Body,tt2345112\ng5wB0DNvM8M,2013.0,2,12,2016,Parkland,Did You Film the Parade?,tt2345112\nddrQKAMzUGI,2013.0,1,12,2016,Parkland,Right Now it is Just You,tt2345112\naRAHfPrf7C8,2013.0,3,12,2016,Parkland,Time to Say Goodbye,tt2345112\n-fnJhOLKjv0,1945.0,10,10,2016,Spellbound,A Stupid Murder,tt0038109\n3V2gt6bAYxM,1989.0,4,9,2016,Driving Miss Daisy,A Can of Salmon,tt0097239\nHJK28cWPvH4,1989.0,3,9,2016,Driving Miss Daisy,\"You Need a Chauffeur, I Need a Job\",tt0097239\nSQNzOyXHbYY,1989.0,6,9,2016,Driving Miss Daisy,Bathroom Break,tt0097239\n9bjpF066edk,1989.0,9,9,2016,Driving Miss Daisy,Doing the Best We Can,tt0097239\nNuEXMD5przE,1989.0,5,9,2016,Driving Miss Daisy,Learning to Read,tt0097239\nomFpUjAzM9M,1989.0,8,9,2016,Driving Miss Daisy,You're My Best Friend,tt0097239\nHqquGvHwicg,1989.0,7,9,2016,Driving Miss Daisy,Go On and Cry,tt0097239\nzp-g3uxoQeE,1989.0,2,9,2016,Driving Miss Daisy,Back Seat Driver,tt0097239\np4z5ZU-dHr8,1989.0,1,9,2016,Driving Miss Daisy,I Don't Need You,tt0097239\nGMk7xOOzK4E,2015.0,12,12,2016,Mr. Holmes,I'm Leaving You the House,tt3168230\nSD86_k19Rx8,2015.0,11,12,2016,Mr. Holmes,The Bees Were Not to Blame,tt3168230\n1fM9KjHmVNw,2015.0,10,12,2016,Mr. Holmes,Holmes Finds Roger,tt3168230\nBGyHgJ9DunE,2015.0,9,12,2016,Mr. Holmes,An Incomprehensible Emptiness,tt3168230\nmvYdMO5ZfYM,2015.0,8,12,2016,Mr. Holmes,The Dead Are Not So Very Far Away,tt3168230\n_zjqM0Hmk2A,2015.0,7,12,2016,Mr. Holmes,Do You Regret?,tt3168230\nQHYatXsRFEI,2015.0,6,12,2016,Mr. Holmes,I Can't Remember,tt3168230\nhiREoiox0Tw,2015.0,5,12,2016,Mr. Holmes,Palm Reading,tt3168230\nPGTXynHmp_o,2015.0,4,12,2016,Mr. Holmes,A Lesson In Beekeeping,tt3168230\nQ91iEtSRiwU,2015.0,3,12,2016,Mr. Holmes,Ann's Story,tt3168230\naNQL0s6v8nI,2015.0,1,12,2016,Mr. Holmes,A Man Comes to Baker Street,tt3168230\n_aePd1mFn7M,2015.0,2,12,2016,Mr. Holmes,The Forgetful Sherlock Holmes,tt3168230\nYCAW0hzka8I,1945.0,5,10,2016,Spellbound,The Heart Can See Deeper,tt0038109\nKTFG9YDV_8o,1945.0,7,10,2016,Spellbound,Skiing Breakthrough,tt0038109\ntEptrqj1R50,1945.0,3,10,2016,Spellbound,Who Are You?,tt0038109\nE8MitqqUuBI,1945.0,2,10,2016,Spellbound,Something Has Happened to Us,tt0038109\n4wPqQUl2y5A,1945.0,1,10,2016,Spellbound,Delusions of Love,tt0038109\nOTX8quF1g4I,1940.0,10,12,2016,Rebecca,It's Gone Forever,tt0032976\ngnqyCM42fOU,1945.0,6,10,2016,Spellbound,Dr. Edwardes' Surreal Dream,tt0038109\np8lLNtyeSz4,1945.0,9,10,2016,Spellbound,Dangerous Analysis,tt0038109\ns2gjCGRLfKM,1945.0,8,10,2016,Spellbound,A Bullet in the Back,tt0038109\n8ZLUn8xHbiM,1945.0,4,10,2016,Spellbound,Nothing to Do With Love,tt0038109\nN-2stIHQ12U,1940.0,12,12,2016,Rebecca,Manderley Burns,tt0032976\nt2ydTbUJ__8,1940.0,5,12,2016,Rebecca,She Simply Adored,tt0032976\nwhEcud8GBTo,1940.0,4,12,2016,Rebecca,Meeting Mrs. Danvers,tt0032976\nJZGQiDSJRWw,1940.0,8,12,2016,Rebecca,Why Do You Hate Me?,tt0032976\nBTUIaeLGBPk,1940.0,11,12,2016,Rebecca,Blackmail,tt0032976\nS2NZ6XCtqMQ,1940.0,9,12,2016,Rebecca,Maxim's Confession,tt0032976\ndGVvqcGBn_E,1940.0,7,12,2016,Rebecca,I Am Mrs. de Winter Now!,tt0032976\nizbOPZezYiQ,1940.0,6,12,2016,Rebecca,'s Clothes,tt0032976\n7SaFvv-XoIM,1940.0,3,12,2016,Rebecca,Maxim's Marriage Proposal,tt0032976\nijkNii0A80I,1940.0,2,12,2016,Rebecca,Driving in Monte Carlo,tt0032976\n7IsskjJnGN0,1940.0,1,12,2016,Rebecca,Dreams of Manderley,tt0032976\nUppZwnbIvZI,2011.0,9,10,2016,Zombie Apocalypse,Shopping Cart Machine Gun,tt1876547\nkfYzoHzwZZY,2011.0,5,10,2016,Zombie Apocalypse,Ugly and Undead,tt1876547\nGCQrTxMgMiM,2011.0,8,10,2016,Zombie Apocalypse,They're Getting Smarter,tt1876547\n2k2hQ4dI5Zs,2011.0,6,10,2016,Zombie Apocalypse,Stop and Drop,tt1876547\nsSMoOPktKsQ,2011.0,10,10,2016,Zombie Apocalypse,\"Here, Kitty, Kitty\",tt1876547\nfOdzgxEe1u0,2011.0,4,10,2016,Zombie Apocalypse,We Lost Two of Ours,tt1876547\nAUxAITobkNA,2011.0,7,10,2016,Zombie Apocalypse,What's Done Is Done,tt1876547\nuwEFn60u9SE,2011.0,3,10,2016,Zombie Apocalypse,It's an Ambush!,tt1876547\nson5FnMtr_8,2011.0,1,10,2016,Zombie Apocalypse,\"Shoot, Slash, Save\",tt1876547\npxWCOG2v42c,2011.0,2,10,2016,Zombie Apocalypse,We Got Company!,tt1876547\ny2DC74NT5G8,2015.0,4,10,2016,The Visit,The Deep Darkies,tt3567288\ndLVgEWrfdSg,2015.0,10,10,2016,The Visit,T-Diamond's Rap,tt3567288\nsQPrjgzEcAc,2015.0,9,10,2016,The Visit,Don't Hold on To Anger,tt3567288\nzJ4owMQIKuQ,2015.0,3,10,2016,The Visit,You Think You're Worthless,tt3567288\nOzWA6M7VnGg,2015.0,1,10,2016,The Visit,Hide and Seek,tt3567288\nL2GbnErVDqk,2015.0,2,10,2016,The Visit,Inside the Oven,tt3567288\no3s4QiK4MSM,2015.0,7,10,2016,The Visit,Yahtzee!,tt3567288\n0B1NRC3WYEs,2015.0,5,10,2016,The Visit,Stay in Your Bed,tt3567288\nW_0WRTR2vSc,2015.0,8,10,2016,The Visit,Diapers and Death,tt3567288\ny6u4QEi3n2g,2015.0,6,10,2016,The Visit,Those Aren't Your Grandparents,tt3567288\nI5xqeX3lAgk,2012.0,3,10,2016,ParaNorman,The Haunted Bathroom Stall,tt1623288\nPczVuk7L0MU,2012.0,4,10,2016,ParaNorman,Waking the Dead,tt1623288\nLxOEBk9PqQQ,2012.0,7,10,2016,ParaNorman,Leave The Zombies Alone!,tt1623288\no6NxwI5Sbbw,2012.0,8,10,2016,ParaNorman,Confronting Aggie,tt1623288\nSVUcZ0sAf9c,2012.0,6,10,2016,ParaNorman,Things Get Out of Hand,tt1623288\nwZUKOxIXZ8c,2012.0,2,10,2016,ParaNorman,Bub the Ghost Dog,tt1623288\nWCO594skLRA,2012.0,5,10,2016,ParaNorman,Zombie Hit and Run,tt1623288\nwehE7YLFmGI,2012.0,9,10,2016,ParaNorman,There's Someone Out There For You,tt1623288\nQbMcPeuQsfE,2012.0,1,10,2016,ParaNorman,\"Good Morning, Ghosts\",tt1623288\noK0u0F_Y2EU,2012.0,10,10,2016,ParaNorman,You're Gonna Love My Boyfriend,tt1623288\nJBc-gNIjGuc,1968.0,10,10,2016,Night of the Living Dead,The Posse Arrives,tt0063350\nkomxaWgJ8O4,1968.0,9,10,2016,Night of the Living Dead,Get in the Cellar,tt0063350\nn5HtgUGCM30,1968.0,8,10,2016,Night of the Living Dead,Feast of Flesh,tt0063350\nViIuvUSF3YU,1968.0,7,10,2016,Night of the Living Dead,Gas Pump Disaster,tt0063350\nd8Gg9rPHKNU,1968.0,5,10,2016,Night of the Living Dead,Window Attack,tt0063350\n727NnSLXsxc,1968.0,6,10,2016,Night of the Living Dead,Molotov Cocktails,tt0063350\nct7Ox_OKe-s,1968.0,3,10,2016,Night of the Living Dead,They Know We're In Here Now,tt0063350\np8L6CtsqDE4,1968.0,4,10,2016,Night of the Living Dead,Your Brother Is Dead,tt0063350\n_d68kyNY0jI,1968.0,1,10,2016,Night of the Living Dead,They're Coming to Get You,tt0063350\nSWxdW9jlHqM,1968.0,2,10,2016,Night of the Living Dead,Safe House,tt0063350\nIa7el1fEff8,2014.0,10,10,2016,Ouija,Maybe There Are No Goodbyes,tt1204977\nm3262E3sfb8,2014.0,9,10,2016,Ouija,You Have to Play,tt1204977\n-zxyN9-P9_c,2014.0,8,10,2016,Ouija,\"She's Coming to Get You, Too\",tt1204977\nCDiosBMzR_c,2014.0,7,10,2016,Ouija,We Shouldn't Be Here,tt1204977\n4932enSiFRA,2014.0,6,10,2016,Ouija,Flossing,tt1204977\nKVGVHjX_bkg,2014.0,5,10,2016,Ouija,She Played Alone,tt1204977\nVVAlND4mt5s,2014.0,4,10,2016,Ouija,This Isn't Debbie,tt1204977\ngEdTciZtW4o,2014.0,2,10,2016,Ouija,It's Just a Game,tt1204977\nXY2mzqw0vR0,2014.0,3,10,2016,Ouija,It Doesn't Sound Crazy At All,tt1204977\nKSfYdl24m7s,2014.0,1,10,2016,Ouija,Killer Christmas Lights,tt1204977\nWxIIpvpAEEM,2002.0,5,11,2016,Jonah: A VeggieTales Movie,What's the Word?,tt0298388\n7umeeSjxQl0,2002.0,11,11,2016,Jonah: A VeggieTales Movie,Jonah Was a Prophet,tt0298388\nTw99DKA5tss,2002.0,10,11,2016,Jonah: A VeggieTales Movie,Stop It!,tt0298388\nWGy01KGFK7I,2002.0,9,11,2016,Jonah: A VeggieTales Movie,The Slap of No Return,tt0298388\nlot6apnbKk4,2002.0,7,11,2016,Jonah: A VeggieTales Movie,Go Fish,tt0298388\nJr4HhX_kbf4,2002.0,8,11,2016,Jonah: A VeggieTales Movie,Second Chances,tt0298388\nemnU7uOpYtk,2002.0,4,11,2016,Jonah: A VeggieTales Movie,It Cannot Be,tt0298388\nAY1ze9t3lus,2002.0,6,11,2016,Jonah: A VeggieTales Movie,Meeting Khalil,tt0298388\nBgkEy5fF1rM,2002.0,3,11,2016,Jonah: A VeggieTales Movie,A Message From the Lord,tt0298388\niAMImEbSpDk,2002.0,2,11,2016,Jonah: A VeggieTales Movie,Steak and Shrimp,tt0298388\nivZaXeAv5X4,2002.0,1,11,2016,Jonah: A VeggieTales Movie,\"Tree, Cabin, Underwear!\",tt0298388\nWrfxIymvEhQ,2004.0,5,5,2016,A Series of Unfortunate Events,The Letter That Never Came,tt0339291\ntsIYleoAQpY,2004.0,4,5,2016,A Series of Unfortunate Events,Hurricane Herman,tt0339291\nnh8mjiSlAws,2004.0,2,5,2016,A Series of Unfortunate Events,Aunt Josephine,tt0339291\nmIvQRRVbt9E,2004.0,3,5,2016,A Series of Unfortunate Events,We're Too Late,tt0339291\n6zqeWbDCXMM,2004.0,1,5,2016,A Series of Unfortunate Events,The Baudelaire Children,tt0339291\nWMWI2FTLbhg,1995.0,8,10,2016,Casper,How  Died,tt0112642\n01ClRWyf9I4,1995.0,10,10,2016,Casper,Boo?,tt0112642\nuA7BbE1cF2U,1995.0,9,10,2016,Casper,Crossing Over,tt0112642\nDXH2BXpwCAo,1995.0,7,10,2016,Casper,Can I Keep You?,tt0112642\n5IPCNRlCYP8,1995.0,6,10,2016,Casper,A Ghost-to-Ghost Network,tt0112642\nodUsOcEqT4g,1995.0,5,10,2016,Casper,The New Girl,tt0112642\nrxCuYueuyxM,1995.0,4,10,2016,Casper,Breakfast with the Ghosts,tt0112642\nUEEIFRxwHSM,1995.0,2,10,2016,Casper,Pleasure to Meet You,tt0112642\nvZKaVV0ZyFs,1995.0,3,10,2016,Casper,\"Dr. James Harvey, Your Therapist\",tt0112642\no94LScznlmY,1995.0,1,10,2016,Casper,No Problem Whatsoever,tt0112642\nYLjkzy7nhc8,2000.0,10,10,2016,Pitch Black,Rescuing Riddick,tt0134847\nPlSt57BseA8,2000.0,9,10,2016,Pitch Black,Would You Die for Them?,tt0134847\nwyuPoWs79fo,2000.0,7,10,2016,Pitch Black,Murderer vs. Merc,tt0134847\nTjGfTL6l-HM,2000.0,8,10,2016,Pitch Black,Monster Meets Monster,tt0134847\nluuYRrPaEpM,2000.0,5,10,2016,Pitch Black,The Dark Brings Devils,tt0134847\nEum-rR934sQ,2000.0,6,10,2016,Pitch Black,Don't Stray From the Light,tt0134847\n2ZGmI0V_Hgo,2000.0,4,10,2016,Pitch Black,They're All Dead,tt0134847\n1c7FYxTa2mQ,2000.0,2,10,2016,Pitch Black,How Do I Get Eyes Like That?,tt0134847\nG1BREAJI3E0,2000.0,3,10,2016,Pitch Black,Found Something Worse Than Me?,tt0134847\nKAZVdaHzWNc,2000.0,1,10,2016,Pitch Black,Dislocated Escape,tt0134847\ntz-XJMspLOA,2011.0,10,10,2016,The Thing,How I Knew You Were Human,tt0905372\nFFGm__skOH4,2011.0,9,10,2016,The Thing,Kate Confronts the Thing,tt0905372\nDZwobit-Zy4,2011.0,1,10,2016,The Thing,Alien Autopsy,tt0905372\nA8GRnS_49gs,2011.0,8,10,2016,The Thing,Trapped in the Kitchen,tt0905372\n4TgJgyypajE,2011.0,6,10,2016,The Thing,Reveals Itself,tt0905372\n6-PJPTcT-o4,2011.0,7,10,2016,The Thing,\"We Find It, We Kill It\",tt0905372\n3PRuMx1gqdM,2011.0,4,10,2016,The Thing,Let's See Your Teeth,tt0905372\nZMURdEkb_3Y,2011.0,3,10,2016,The Thing,Juliette Transforms,tt0905372\nKL5rXhSkP34,2011.0,2,10,2016,The Thing,Everything's Fine,tt0905372\no7zebTh4tHo,2011.0,5,10,2016,The Thing,They Killed Lars!,tt0905372\nw0BK_hLT-Wo,2012.0,10,10,2016,Battleship,They Ain't Gonna Sink This,tt1440129\nZQsCM4wE_es,2012.0,9,10,2016,Battleship,Shredding the John Paul Jones,tt1440129\n1KBy8-7nc1M,2012.0,7,10,2016,Battleship,That's a Hit,tt1440129\nyWuZtDeeZmc,2012.0,8,10,2016,Battleship,Light 'Em Up,tt1440129\ndGz9C2xMADc,2012.0,5,10,2016,Battleship,Mahalo,tt1440129\n7yjowqaIUnU,2012.0,6,10,2016,Battleship,It's a Miss,tt1440129\n3a7e-npyunY,2012.0,4,10,2016,Battleship,Not Dead! Not Dead!,tt1440129\nJCVLrJfjsIo,2012.0,3,10,2016,Battleship,Attack On Hawaii,tt1440129\ny7T5Ea-WGII,2012.0,2,10,2016,Battleship,We're All Going to Die,tt1440129\nYUaq56T5qSo,2012.0,1,10,2016,Battleship,You Sunk My,tt1440129\nj40IcG_BZuc,1932.0,10,10,2016,The Mummy,A Mummy Once More,tt0023245\nMnZJSCtPQtY,1932.0,8,10,2016,The Mummy,Too Weak to Fight It,tt0023245\nikWTYTomQI4,1932.0,6,10,2016,The Mummy,Buried Alive For Love,tt0023245\ncEJhVm0TJUQ,1932.0,7,10,2016,The Mummy,\"Save Me, Frank\",tt0023245\npvZXE-e5Yo4,1932.0,9,10,2016,The Mummy,I Want to Live,tt0023245\nN2A4tcaMl9c,1932.0,5,10,2016,The Mummy,Caught Doing An Unholy Thing,tt0023245\nTnkyKOn81nA,1932.0,4,10,2016,The Mummy,Death to Sir Joseph,tt0023245\n3ce2e-d1ZEc,1932.0,3,10,2016,The Mummy,An Uncanny Recognition,tt0023245\nf187FGFi1AM,1932.0,2,10,2016,The Mummy,Helen's Trance,tt0023245\nVAp8WVZm3cc,1932.0,1,10,2016,The Mummy,Rises,tt0023245\nyOWS9e_r5OI,1982.0,8,10,2016,Halloween III: Season of the Witch,Silver Shamrock Shutdown,tt0085636\nVX3u1HUl2Zw,1982.0,9,10,2016,Halloween III: Season of the Witch,Ellie the Android,tt0085636\ngoKRpR4XNg8,1982.0,10,10,2016,Halloween III: Season of the Witch,Get It Off the Air!,tt0085636\nvsfjzfGZVyQ,1982.0,7,10,2016,Halloween III: Season of the Witch,Happy Halloween,tt0085636\nu2D0kDFKaxE,1982.0,5,10,2016,Halloween III: Season of the Witch,Test Room A,tt0085636\nb_tZKOxNR7o,1982.0,6,10,2016,Halloween III: Season of the Witch,A Drill for the Doctor,tt0085636\nmQpZdtspStY,1982.0,4,10,2016,Halloween III: Season of the Witch,Android Assassin,tt0085636\n4bB-IJBlZms,1982.0,3,10,2016,Halloween III: Season of the Witch,Mangled Marge,tt0085636\ndUFtkBtGIgg,1982.0,1,10,2016,Halloween III: Season of the Witch,Gouged Eyes and Gasoline Suicides,tt0085636\nO2RUT5J7T4E,1982.0,2,10,2016,Halloween III: Season of the Witch,Starker Loses His Head,tt0085636\nzlVbQsf7vpk,1981.0,6,10,2016,Halloween II,Slippery When Bloody,tt0082495\nAI752yUQd1o,1981.0,3,10,2016,Halloween II,Hammer to the Head,tt0082495\nCOZxvXx4bSg,1981.0,10,10,2016,Halloween II,The Death of Michael Myers,tt0082495\ne4-STTC0pNc,1981.0,5,10,2016,Halloween II,Syringe Stabbings,tt0082495\nFyuQ13ZZNIQ,1981.0,1,10,2016,Halloween II,A Sudden Stabbing,tt0082495\nHt3gFCqpFkE,1981.0,9,10,2016,Halloween II,Why Won't He Die?,tt0082495\nPP8BpNVk8JM,1981.0,8,10,2016,Halloween II,The Desperate Crawl,tt0082495\nOuacLAbhxqc,1981.0,2,10,2016,Halloween II,Mistaken for a Murderer,tt0082495\nQaSr6mpkTII,1981.0,7,10,2016,Halloween II,Knifing the Nightshift Nurse,tt0082495\nh0w6WywbohM,1981.0,4,10,2016,Halloween II,Hot Tub Horror,tt0082495\nlCyS2Gxxzfg,1996.0,10,10,2016,The Frighteners,A-Hole with an Uzi,tt0116365\nalh8b1lYuRU,1996.0,1,10,2016,The Frighteners,Frank Bannister in Action,tt0116365\nY91jebCjFBE,1996.0,8,10,2016,The Frighteners,Back from Hell,tt0116365\nqz0rKdYiqDQ,1996.0,9,10,2016,The Frighteners,Psycho Killers,tt0116365\nE81RLAQyhCA,1996.0,7,10,2016,The Frighteners,Fighting Death,tt0116365\nYZPkrplfycM,1996.0,6,10,2016,The Frighteners,Death Comes for Lucy,tt0116365\n1xFsHF8ZF2Y,1996.0,5,10,2016,The Frighteners,Fleeing the Reaper,tt0116365\nyYF0oK8oXSk,1996.0,4,10,2016,The Frighteners,Death in the Restroom,tt0116365\nCQvEBaLYHJE,1996.0,3,10,2016,The Frighteners,Sergeant Spook,tt0116365\nmdsLJ_ciPHI,1996.0,2,10,2016,The Frighteners,African American Apparition Coalition,tt0116365\nhRBRb2eiK4I,2010.0,10,10,2016,The Wolfman,Love With a Silver Bullet,tt0780653\nY5pRDzBxZtY,2010.0,9,10,2016,The Wolfman,Werewolf vs. Werewolf,tt0780653\n4i3CEXiGKgU,2010.0,7,10,2016,The Wolfman,I Will Kill All of You,tt0780653\nba9YG9xCC7A,2010.0,6,10,2016,The Wolfman,The Visions of the Disturbed,tt0780653\nvEd2sU65NQI,2010.0,8,10,2016,The Wolfman,Wolfman in London,tt0780653\nwJZHc5SJ9eE,2010.0,5,10,2016,The Wolfman,Slaughter in the Woods Tonight,tt0780653\n-lX6P0PFKy4,2010.0,4,10,2016,The Wolfman,The Beast Will Have It's Day,tt0780653\nYiE8wDRFfvM,2010.0,3,10,2016,The Wolfman,You're Trespassing,tt0780653\ntbdHhLOzT-Y,2010.0,1,10,2016,The Wolfman,Wolf in a Gypsy Camp,tt0780653\nBktKAiQQ_tw,2010.0,2,10,2016,The Wolfman,There's Something in the Fog,tt0780653\ngG1XmKlqhIU,1991.0,8,10,2016,Child's Play 3,They're Using Live Rounds! Scene,tt0103956\n8w4UZGP7OGo,1991.0,10,10,2016,Child's Play 3,End of the Line Scene,tt0103956\ni4M2tehIejI,1991.0,6,10,2016,Child's Play 3,A Different Kind of Cut Scene,tt0103956\nnFRuYV4QrnE,1991.0,7,10,2016,Child's Play 3,I'm Bad Scene,tt0103956\n7OpujffVbUQ,1991.0,9,10,2016,Child's Play 3,A New Look Scene,tt0103956\nttU5gs0lj38,1990.0,10,10,2016,Child's Play 2,Exploding Chucky,tt0099253\nSwPPG_B3ArY,1991.0,4,10,2016,Child's Play 3,Can't Keep a Good Guy Down Scene,tt0103956\nazot-mIuW3Y,1991.0,5,10,2016,Child's Play 3,Scared to Death Scene,tt0103956\nzjFMyK_bRso,1990.0,9,10,2016,Child's Play 2,I Hate Kids,tt0099253\ntQl5ypxi69U,1991.0,3,10,2016,Child's Play 3,Taking Out the Trash Scene,tt0103956\npwL0PcIHtxQ,1991.0,1,10,2016,Child's Play 3,Just Like the Good Old Days Scene,tt0103956\nic9PvDGkzf8,1991.0,2,10,2016,Child's Play 3,A New Lease on Life Scene,tt0103956\n41VUCQfnnco,1990.0,6,10,2016,Child's Play 2,It's Amazingly Lifelike,tt0099253\nPM5TJ6vZ9YM,1990.0,8,10,2016,Child's Play 2,I'm Gonna Kill You!,tt0099253\npDnPZ0Ccdus,1990.0,7,10,2016,Child's Play 2,I'm Trapped in Here!,tt0099253\nTuafKNbgTCA,1990.0,5,10,2016,Child's Play 2,Women Drivers,tt0099253\nPHFG3ZC0fZI,1990.0,4,10,2016,Child's Play 2,You Hurt Me,tt0099253\nQe5hop7o4ZI,1990.0,3,10,2016,Child's Play 2,How's It Hanging?,tt0099253\nUvFclgKfUQA,1990.0,2,10,2016,Child's Play 2,You've Been Very Naughty,tt0099253\nOvbvCOM89Ew,2013.0,9,10,2016,Curse of Chucky,Let's Play!,tt2230358\n3AfqCkqJVt0,1990.0,1,10,2016,Child's Play 2,Bang! You're Dead,tt0099253\nAuGJ_SZEXFI,2013.0,10,10,2016,Curse of Chucky,Who's Next?,tt2230358\nWnBzLtUAnIg,2013.0,8,10,2016,Curse of Chucky,The Birth of Chucky,tt2230358\nBzMaqlt74NY,2013.0,7,10,2016,Curse of Chucky,The Nanny Cam,tt2230358\nWVDrmwtooj4,2013.0,6,10,2016,Curse of Chucky,What Have You Done?,tt2230358\nAP_hr5nmo9M,2013.0,5,10,2016,Curse of Chucky,I'm Gonna Get You,tt2230358\nf505OHOUHoU,2013.0,4,10,2016,Curse of Chucky,Your Mother's Eyes,tt2230358\niFEr1xsuksI,2004.0,7,9,2016,Seed of Chucky,Tiffany Guts Redman,tt0387575\n7RsohcD0tS8,2004.0,9,9,2016,Seed of Chucky,The End of the Family,tt0387575\n_7pkwL7yY5g,2013.0,3,10,2016,Curse of Chucky,We're All Going to Die,tt2230358\n71FkH7FwfFg,2013.0,2,10,2016,Curse of Chucky,Get Him Out,tt2230358\nWSADpIlmqQ8,2004.0,8,9,2016,Seed of Chucky,A Voodoo Pregnancy,tt0387575\nrdEbjNy5BNs,2013.0,1,10,2016,Curse of Chucky,He Scared Me Half to Death,tt2230358\nlN4oFlIKm7A,2004.0,6,9,2016,Seed of Chucky,Father Son Bonding,tt0387575\n5lBfYlWmDC8,2004.0,2,9,2016,Seed of Chucky,Chucky Meets His Son,tt0387575\nARKPBJdE_QU,2004.0,3,9,2016,Seed of Chucky,Glen or Glenda,tt0387575\nNtQdJIeh2ho,2004.0,5,9,2016,Seed of Chucky,\"Oops, I Did it Again\",tt0387575\nI8yAmR1UymM,2004.0,4,9,2016,Seed of Chucky,Killing is an Addiction,tt0387575\nsggwHnudtH0,1998.0,7,7,2016,Bride of Chucky,I Always Come Back,tt0144120\n37yJV-YPBJY,1998.0,5,7,2016,Bride of Chucky,\"Right Place, Wrong Time\",tt0144120\nSnt_FLn3dwM,1998.0,6,7,2016,Bride of Chucky,Marriage Trouble,tt0144120\nYPQJOKn0I0s,2004.0,1,9,2016,Seed of Chucky,Glen Kills,tt0387575\ncqD8XBONBHY,1998.0,2,7,2016,Bride of Chucky,Chucky Makes a Bride,tt0144120\np4yCboEAjLk,1998.0,4,7,2016,Bride of Chucky,That is a Rude Doll,tt0144120\nlniVpfK5SW8,1998.0,1,7,2016,Bride of Chucky,The Deadly Tiffany,tt0144120\nnID1enI2xW8,1998.0,3,7,2016,Bride of Chucky,A True Homicidal Genius,tt0144120\nW_CvL_fMIm4,2015.0,4,10,2016,Sisters,Asking James Out,tt1850457\nUw1WGruy_KI,2015.0,2,10,2016,Sisters,Hae Won and Maura,tt1850457\nIyN025OadaE,2015.0,3,10,2016,Sisters,That Looks Amazing on You,tt1850457\nGyhrH5E6B6g,2015.0,8,10,2016,Sisters,I Am a Yeah!,tt1850457\n-3RMOO6mHr4,2015.0,5,10,2016,Sisters,Balls Deep in Joy,tt1850457\nGJsTqU9Ujxo,2015.0,7,10,2016,Sisters,The Apple Butt Jam,tt1850457\njx757TP9spg,2015.0,9,10,2016,Sisters,Rectal Accident,tt1850457\nAqMWvk5DMcU,2015.0,10,10,2016,Sisters,Girl Fight!,tt1850457\n_XAKjc2gIfo,2015.0,6,10,2016,Sisters,Pazuzu's Drugs,tt1850457\nKhtepI51wuo,2015.0,1,10,2016,Sisters,Very Different Diaries,tt1850457\ntv_xMisf9oc,2015.0,3,10,2016,MI-5,This is Bigger Than Qasim,tt3321300\nnVKSBDddFxM,2015.0,10,10,2016,MI-5,The Good Ones Tend Not to Last,tt3321300\nW2roZO0kTUs,2015.0,1,10,2016,MI-5,Prisoner Escape,tt3321300\nYkYqKiASqJM,2015.0,8,10,2016,MI-5,One More Dead Terrorist,tt3321300\nnNKsj8rQGHc,2015.0,9,10,2016,MI-5,A Way Out,tt3321300\nEGqPXMAThig,2015.0,7,10,2016,MI-5,I Gave Him You,tt3321300\nXtFr2BdLrv0,2015.0,6,10,2016,MI-5,A Botched Negotiation,tt3321300\nXS2yOMGv5to,2015.0,5,10,2016,MI-5,Old-Fashioned Blind Obedience,tt3321300\ndStxLpnwvWs,2015.0,4,10,2016,MI-5,You Have to Go Now,tt3321300\nplcl4YShR5Q,2015.0,2,10,2016,MI-5,She Has to Die,tt3321300\n309Cnimrm5A,1986.0,5,12,2016,Poltergeist II: The Other Side,They Followed Him,tt0091778\nAtyyr6d7-u8,1986.0,6,12,2016,Poltergeist II: The Other Side,The Bottle,tt0091778\n7WjOFzTTiHY,1986.0,7,12,2016,Poltergeist II: The Other Side,Possessed,tt0091778\nsjWdByLxTuI,1986.0,11,12,2016,Poltergeist II: The Other Side,Final Resting Place,tt0091778\nYp2w2XxXKD4,1986.0,12,12,2016,Poltergeist II: The Other Side,Good vs. Evil,tt0091778\nUtSE9OXHIgw,1986.0,10,12,2016,Poltergeist II: The Other Side,Chainsaw Attack,tt0091778\nFSB26l-iDEw,1986.0,9,12,2016,Poltergeist II: The Other Side,Skeletons in the Closet,tt0091778\nZMQCyJ2lhu8,1986.0,8,12,2016,Poltergeist II: The Other Side,Vomit From Hell,tt0091778\nayOLECuygTQ,1986.0,4,12,2016,Poltergeist II: The Other Side,Braces Attack,tt0091778\nzqTxw0eiZaE,1986.0,3,12,2016,Poltergeist II: The Other Side,Mind Control,tt0091778\n8l-HZqArmXU,1986.0,1,12,2016,Poltergeist II: The Other Side,Kane,tt0091778\nofWdRHOZpV4,1986.0,2,12,2016,Poltergeist II: The Other Side,Diane's Nightmare,tt0091778\nU5fkvkaFqt4,1986.0,11,11,2016,The Texas Chainsaw Massacre 2,Cleaning House,tt0092076\nCqHyrmbiD1E,1986.0,9,11,2016,The Texas Chainsaw Massacre 2,Dinner Time,tt0092076\n9RrN7k_5fl4,1986.0,3,11,2016,The Texas Chainsaw Massacre 2,Chop-Top,tt0092076\nAebCDidbqI8,1986.0,6,11,2016,The Texas Chainsaw Massacre 2,Leatherface Aroused,tt0092076\nQPmSOAIRsj4,1986.0,1,11,2016,The Texas Chainsaw Massacre 2,Chili Cook Off,tt0092076\ntkDK_YLfTO0,1986.0,7,11,2016,The Texas Chainsaw Massacre 2,Bubba's Got a Girlfriend!,tt0092076\n-yEE_toKFxc,1986.0,10,11,2016,The Texas Chainsaw Massacre 2,Lord of the Harvest,tt0092076\nQjrvHsFzbvI,1986.0,8,11,2016,The Texas Chainsaw Massacre 2,The Saw Is Family,tt0092076\nWfQ8qbtS63s,1986.0,2,11,2016,The Texas Chainsaw Massacre 2,Chainsaw Shopping,tt0092076\nRv1MSTB7QeA,1986.0,5,11,2016,The Texas Chainsaw Massacre 2,Dog Will Hunt,tt0092076\ncIG0COsZmjg,1986.0,4,11,2016,The Texas Chainsaw Massacre 2,Far Out Fans,tt0092076\nFXhW_IAJ_Yg,2013.0,8,12,2016,Spiders 3D,The Spider Queen Hits New York,tt1659216\nvAJ_RdlVzgw,2013.0,7,12,2016,Spiders 3D,We Are Overrun!,tt1659216\n2N4Tq6Zpx3g,2013.0,5,12,2016,Spiders 3D,Spider Attack,tt1659216\n4kQr8dkriIg,2013.0,6,12,2016,Spiders 3D,Death by Forklift,tt1659216\nvnJE2OLp55w,2013.0,4,12,2016,Spiders 3D,The Spiders Grow,tt1659216\ngbr7Qazpy2E,2013.0,3,12,2016,Spiders 3D,A Fateful Carjacking,tt1659216\nivlV5kanNFE,2013.0,10,12,2016,Spiders 3D,The Queen's Rampage,tt1659216\nihOU-LC0ue8,2013.0,2,12,2016,Spiders 3D,We Need Her Eggs,tt1659216\nyB_0DHi3Z4k,2013.0,1,12,2016,Spiders 3D,The Spiders Hatch,tt1659216\nfrxxz1Nx3x0,2013.0,12,12,2016,Spiders 3D,Death by Subway Train,tt1659216\nxb4rFYLKzHA,2013.0,11,12,2016,Spiders 3D,Fighting the Spider Queen,tt1659216\nA8WBlVOcSs8,2013.0,9,12,2016,Spiders 3D,Terror in the Toy Store,tt1659216\nmRRLEgHhu3U,2006.0,11,11,2016,Mercury Man,Hot vs. Cold,tt0860462\n7cJS4h5_KJ0,2006.0,9,11,2016,Mercury Man,Fire Fight,tt0860462\nxzwBLuOLjzA,2006.0,10,11,2016,Mercury Man,You Will Be Lose,tt0860462\n4009LQ96f4E,2006.0,8,11,2016,Mercury Man,The Dark Hero,tt0860462\nXdPLA-egIeQ,2006.0,7,11,2016,Mercury Man,Rampaging Elephants,tt0860462\nMu4AuoaIuHg,2006.0,6,11,2016,Mercury Man,Arrives,tt0860462\nolg8NTkDXrI,2006.0,5,11,2016,Mercury Man,Controlling the Power,tt0860462\nLZcSMyk5Obo,2006.0,4,11,2016,Mercury Man,Where is the Amulet?,tt0860462\nt-DJLPtSaHw,2006.0,2,11,2016,Mercury Man,Cafe Attack,tt0860462\n00Tazm9Z6XU,2006.0,3,11,2016,Mercury Man,Amulets of Thailand,tt0860462\neX7t2x1F5wA,2006.0,1,11,2016,Mercury Man,Flame Guru,tt0860462\n6uRycxZgotc,2014.0,10,10,2016,Asteroid vs. Earth,See You on the Other Side,tt3453772\nHLJHW3slPW0,2014.0,9,10,2016,Asteroid vs. Earth,Metal's Misstep,tt3453772\nj6SBSViczK4,2014.0,7,10,2016,Asteroid vs. Earth,Torpedoes in the Water!,tt3453772\n6R_37O7HwMI,2014.0,8,10,2016,Asteroid vs. Earth,An Explosion Felt Around the World,tt3453772\nJfk2QR-qyZk,2014.0,6,10,2016,Asteroid vs. Earth,Hong Kong's Final Moments,tt3453772\nSWnqUVFoQ9w,2014.0,5,10,2016,Asteroid vs. Earth,A Meteoric Mistake,tt3453772\nKTes0O7QBR8,2014.0,4,10,2016,Asteroid vs. Earth,Narrow Nuclear Escape,tt3453772\nCyXxBjk4UaQ,2014.0,1,10,2016,Asteroid vs. Earth,It's a Supercell,tt3453772\n5_C7GNWPinI,2014.0,3,10,2016,Asteroid vs. Earth,Blow Up the Yap Trench,tt3453772\nubD8vf5WvnE,2014.0,2,10,2016,Asteroid vs. Earth,Move the Earth,tt3453772\naDrR7riBeLA,1972.0,4,7,2016,Jeremiah Johnson,Great Hunter,tt0068762\nbLbLsjRVm9Y,1972.0,7,7,2016,Jeremiah Johnson,You Have Done Well,tt0068762\nux9JHznPT8E,1972.0,3,7,2016,Jeremiah Johnson,Jeremiah Gets Married,tt0068762\n7NMQnDrBp60,1972.0,1,7,2016,Jeremiah Johnson,Sure That You Can Skin Grizz?,tt0068762\nqJ_EsjyYevs,1972.0,5,7,2016,Jeremiah Johnson,Building a Home,tt0068762\nWrGf03jRHSE,1972.0,6,7,2016,Jeremiah Johnson,Crow Warriors Attack,tt0068762\npYhlVR9GzjA,1972.0,2,7,2016,Jeremiah Johnson,Buried,tt0068762\nLt7yltFpVyE,2009.0,6,9,2016,The Time Traveler's Wife,I'm Pregnant,tt0452694\nk10DDJ4L2lc,2009.0,1,9,2016,The Time Traveler's Wife,My Best Friend,tt0452694\n6WArrD9VPJE,2009.0,3,9,2016,The Time Traveler's Wife,Will You Marry Me?,tt0452694\nOlPauBNIDAQ,2009.0,2,9,2016,The Time Traveler's Wife,Your Son Loves You,tt0452694\nL8cLSkIAgJ4,2009.0,4,9,2016,The Time Traveler's Wife,Winning the Lottery,tt0452694\nuV-u-N8RkKs,2009.0,8,9,2016,The Time Traveler's Wife,Saying Goodbye,tt0452694\n5D4D0Hby47o,2009.0,5,9,2016,The Time Traveler's Wife,First Kiss,tt0452694\niRd63BXG6nE,2009.0,7,9,2016,The Time Traveler's Wife,Daddy,tt0452694\nBdC4os4SOH0,2009.0,9,9,2016,The Time Traveler's Wife,Henry Returns,tt0452694\nFvJp6IklZUA,2015.0,6,10,2016,Crimson Peak,Monsters,tt2554274\nUkDKxprXy_0,2015.0,7,10,2016,Crimson Peak,The Things We Do For Love,tt2554274\ntoctHJpW6no,2015.0,3,10,2016,Crimson Peak,Already Married,tt2554274\nbZ7ZsN1FXuI,2015.0,1,10,2016,Crimson Peak,Ghost in the Floor,tt2554274\nhJErQ3vUD24,2015.0,2,10,2016,Crimson Peak,His Blood Will Be on Your Hands,tt2554274\ne434wHYilA0,2015.0,4,10,2016,Crimson Peak,I Have to Get Out of Here,tt2554274\n5xx4Ha3kGtg,2015.0,5,10,2016,Crimson Peak,All Out in the Open,tt2554274\nrkPT_6JWenQ,2015.0,8,10,2016,Crimson Peak,You Love Her,tt2554274\n6mtG2DSbR3g,2015.0,10,10,2016,Crimson Peak,Ghosts Are Real,tt2554274\nKcf2d8epCXY,2015.0,9,10,2016,Crimson Peak,I Won't Stop Until You Kill Me,tt2554274\nvV3RTL40nmw,2014.0,10,10,2016,Life After Beth,Thank You for Coming Back,tt2581244\n9b32VkOh2nQ,2014.0,9,10,2016,Life After Beth,She's Gotta Die,tt2581244\nXHJI9tya2cM,2014.0,8,10,2016,Life After Beth,Beth's Hungry,tt2581244\naIau-DQHI3Y,2014.0,7,10,2016,Life After Beth,She's Going to Eat Me!,tt2581244\nEegoLE6n-Gk,2014.0,6,10,2016,Life After Beth,The Dead are Coming Back!,tt2581244\ncJ4mSB-0OA0,2014.0,4,10,2016,Life After Beth,Who Are You?,tt2581244\nKpomd1Lwn6Y,2014.0,5,10,2016,Life After Beth,I'm Beth and I'm Alive!,tt2581244\nX9A5UFJ1iZk,2014.0,3,10,2016,Life After Beth,Smooth Jazz,tt2581244\nPWfgDuO0vmI,2014.0,1,10,2016,Life After Beth,It's a Resurrection!,tt2581244\n6bDF7ZQgkZA,2014.0,2,10,2016,Life After Beth,What's Happening to Me?,tt2581244\nSXOm6AEArjo,2015.0,10,10,2016,3 Headed Shark Attack,Giving the Beast a Hand,tt4685096\nK04WrySpUH8,2015.0,8,10,2016,3 Headed Shark Attack,Jaws Meets Machete,tt4685096\nnBlkMaEmWeI,2015.0,9,10,2016,3 Headed Shark Attack,Never Seen Anything Like That,tt4685096\nrpE_9A4LXWs,2015.0,7,10,2016,3 Headed Shark Attack,High-Flying Axe,tt4685096\ngIQWTB6lNlw,2015.0,6,10,2016,3 Headed Shark Attack,All Aboard for Dinner,tt4685096\nOd9Z1C8dboY,2015.0,5,10,2016,3 Headed Shark Attack,Shark vs. Party Boat,tt4685096\nJz0Ueh_tkFg,2015.0,4,10,2016,3 Headed Shark Attack,Dying to Be a Distraction,tt4685096\n3Rayb1Y5SmA,2015.0,3,10,2016,3 Headed Shark Attack,Bathroom Attack,tt4685096\nmY-6iHAZZoo,2015.0,2,10,2016,3 Headed Shark Attack,That's Not a Whale,tt4685096\nwT2zu8zPXHQ,2015.0,1,10,2016,3 Headed Shark Attack,Get Out of the Water,tt4685096\nXGg85Qv_gK4,2012.0,2,10,2016,2-Headed Shark Attack,Dead Man's Hand,tt2043757\n8yXl1yKbBiU,2012.0,3,10,2016,2-Headed Shark Attack,Get Out of the Water!,tt2043757\nVPzrMnBW_JY,2012.0,1,10,2016,2-Headed Shark Attack,We're Taking on Water,tt2043757\nB7rcsBCaMI4,2012.0,5,10,2016,2-Headed Shark Attack,Run!,tt2043757\nxaYlkjfpdG0,2012.0,4,10,2016,2-Headed Shark Attack,Twice as Many Teeth,tt2043757\ncl1Yl57gCW4,2012.0,10,10,2016,2-Headed Shark Attack,Boat Bomb,tt2043757\nqq3C3psItOo,2012.0,8,10,2016,2-Headed Shark Attack,What Are We Gonna Do Now?!,tt2043757\nbQ9vlCKo04g,2012.0,9,10,2016,2-Headed Shark Attack,Fears Don't Get Over Themselves,tt2043757\ns8BQXJxRw10,2012.0,7,10,2016,2-Headed Shark Attack,One Last Kiss,tt2043757\nqFbklFTJlCs,2012.0,6,10,2016,2-Headed Shark Attack,Mayday!,tt2043757\n5MB15iYADy0,2012.0,11,11,2016,The Iceman,I Never Felt Sorry,tt1491044\no36MJbiMMH8,2012.0,10,11,2016,The Iceman,You Kill My Family,tt1491044\ngQ1o6y8iYXs,2012.0,8,11,2016,The Iceman,My Daughter's Birthday,tt1491044\n9FuvuHFUeoE,2012.0,9,11,2016,The Iceman,I Want My Money,tt1491044\nqr6vDBiESB4,2012.0,4,11,2016,The Iceman,Car Accident.,tt1491044\nLKXQQmMdiws,2012.0,7,11,2016,The Iceman,You Can Finish Jerking Off,tt1491044\nRJ2waor6V0g,2012.0,1,11,2016,The Iceman,An Impromptu Audition,tt1491044\n5HbKxlvyiLk,2012.0,5,11,2016,The Iceman,That's It,tt1491044\n8APhdryZ6m4,2012.0,6,11,2016,The Iceman,Partners,tt1491044\n4LY3sXlBbk4,2012.0,3,11,2016,The Iceman,I Think God's Busy,tt1491044\noX3g90bTn1g,2012.0,2,11,2016,The Iceman,Leading a Double Life,tt1491044\nmkEMQ9OK088,2010.0,9,10,2016,Ceremony,In Love with You,tt1341341\n80xURylcWpI,2010.0,7,10,2016,Ceremony,Best Friend Breakup,tt1341341\nlLxVEs_X_9k,2010.0,10,10,2016,Ceremony,Perspective,tt1341341\nQtSzDCV1CHI,2010.0,6,10,2016,Ceremony,Paper Chase,tt1341341\nnqIhzUUH6Ts,2010.0,8,10,2016,Ceremony,Wanna Marry Me?,tt1341341\nFCv0BgoGj0g,2010.0,4,10,2016,Ceremony,Writing Vows,tt1341341\nvI48ZXLGoBk,2010.0,5,10,2016,Ceremony,An Intense Young Man,tt1341341\nSRoBDfwS2xU,2010.0,3,10,2016,Ceremony,Winning You Back,tt1341341\nKOAAIBdD3bM,2010.0,2,10,2016,Ceremony,Awkward Toasts,tt1341341\n9dSVd8ISfl8,2010.0,1,10,2016,Ceremony,What Are You Doing Here?,tt1341341\n6mJk2i7Lfjs,1987.0,11,11,2016,House of Games,Margaret Kills Mike,tt0093223\ngPv4C6gIdOo,1987.0,10,11,2016,House of Games,It Was Fate I Found You,tt0093223\nsp2FvfOi928,1987.0,9,11,2016,House of Games,A Born Thief,tt0093223\nWSBO1fuXCCE,1987.0,7,11,2016,House of Games,The Accidental Shooting,tt0093223\nPW-I6rrNzyM,1987.0,8,11,2016,House of Games,The Missing Briefcase,tt0093223\n5FHPI2NlOm8,1987.0,5,11,2016,House of Games,What Mike Wants,tt0093223\nrC9LfNF_CW8,1987.0,6,11,2016,House of Games,Margaret Joins the Sting,tt0093223\nN27gumJNHP0,1987.0,4,11,2016,House of Games,Con at Western Union,tt0093223\nGLmTfdkWZp4,1987.0,3,11,2016,House of Games,Margaret Can't Be Conned,tt0093223\nFTJcaJziQ1I,1987.0,2,11,2016,House of Games,Poker Game Showdown,tt0093223\nftNK4JPSoto,1987.0,1,11,2016,House of Games,Mike Teaches About Tells,tt0093223\nyUrcH6c-FX4,2012.0,10,10,2016,Shark Week,Game Over,tt2292182\nVScQtueKnXM,2012.0,8,10,2016,Shark Week,You Will Live,tt2292182\nUdRma1qSMGo,2012.0,9,10,2016,Shark Week,\"If I Can't Leave, Neither Will You!\",tt2292182\nSVYv9SJAr2M,2012.0,7,10,2016,Shark Week,Anyone Want Sushi?,tt2292182\nY9_k4iGJMco,2012.0,5,10,2016,Shark Week,Through the Minefield,tt2292182\nolj-IIjnxLY,2012.0,4,10,2016,Shark Week,Attacking the Shark,tt2292182\nf-mlUVx01MA,2012.0,6,10,2016,Shark Week,An Explosive Last Meal,tt2292182\n9uRPfjWwOL0,2012.0,3,10,2016,Shark Week,He Was Innocent!,tt2292182\n6Dg8xn6Rdwo,2012.0,2,10,2016,Shark Week,A Game of Life and Death,tt2292182\nHycJFYsUxaU,2012.0,1,10,2016,Shark Week,15 Seconds,tt2292182\nyZWEB9JWLHM,2011.0,10,10,2016,Fred 2: Night of the Living Fred,Fred the Vampire,tt1927093\nvkX9jHBsmwM,2011.0,6,10,2016,Fred 2: Night of the Living Fred,Wrestling Match,tt1927093\n4pHgq_uwXjs,2011.0,9,10,2016,Fred 2: Night of the Living Fred,Blasting the Vampires,tt1927093\nBoGZH9krgjE,2011.0,8,10,2016,Fred 2: Night of the Living Fred,Derf and Garlic Sauce,tt1927093\nvMwfVOf1-vM,2011.0,7,10,2016,Fred 2: Night of the Living Fred,Suck His Blood,tt1927093\nw6USFL0JYAU,2011.0,5,10,2016,Fred 2: Night of the Living Fred,Mr. Devlin is a Vampire,tt1927093\n-78FgmNwyD4,2011.0,4,10,2016,Fred 2: Night of the Living Fred,Talia is Kevin's Sister?,tt1927093\n7MJd-RSHTqs,2011.0,3,10,2016,Fred 2: Night of the Living Fred,Fred's Imaginary Dad,tt1927093\nJegIRfX4LJQ,2011.0,1,10,2016,Fred 2: Night of the Living Fred,The Piano Duel,tt1927093\nhEH49mSRWGw,2011.0,2,10,2016,Fred 2: Night of the Living Fred,Talia the Ghost,tt1927093\nRmSIKuobH10,2015.0,10,10,2016,Nightlight,The Final Possession,tt2236160\nPbndU1PQlPk,2015.0,9,10,2016,Nightlight,It's My Fault,tt2236160\njS7XOEttewM,2015.0,5,10,2016,Nightlight,Victims of Possession,tt2236160\nNmsLAaKjKEE,2015.0,8,10,2016,Nightlight,\"Nia, No!\",tt2236160\n9hXnvqJ7uxQ,2015.0,7,10,2016,Nightlight,It's Back,tt2236160\nno5XxM0OY4o,2015.0,6,10,2016,Nightlight,Run!,tt2236160\nvIrRt0vaySY,2015.0,3,10,2016,Nightlight,I Feel Sick,tt2236160\nXe8LJ4g7Dpg,2015.0,4,10,2016,Nightlight,Help!,tt2236160\nrXyyr3kSB3s,2015.0,2,10,2016,Nightlight,Ben Was Here,tt2236160\noKCF_TzQ6Pk,2015.0,1,10,2016,Nightlight,Unseen Forces,tt2236160\n--vFXH3mH3A,2014.0,10,10,2016,Cooties,Somebody Order a Badass?,tt2490326\nuvAd-GbYBVw,2014.0,9,10,2016,Cooties,Nugget Outta Here,tt2490326\nG6EzUGdelYg,2014.0,8,10,2016,Cooties,Eat a Cock,tt2490326\nSQ9JOrG0mUM,2014.0,7,10,2016,Cooties,Teachers vs. Cootie Kids,tt2490326\nx6jUAU8hoBk,2014.0,6,10,2016,Cooties,The 80's Action Movie Scene,tt2490326\n_oFhIKlIBr0,2014.0,4,10,2016,Cooties,I Think I'm Gonna Dissect Him,tt2490326\nZMZxDJb5V8o,2014.0,5,10,2016,Cooties,You Can't Do Anything to Stop Me,tt2490326\njR3JlEXdBIo,2014.0,2,10,2016,Cooties,\"Oh Look, Carnage\",tt2490326\ny5cSt5uqt3E,2014.0,3,10,2016,Cooties,They've Got,tt2490326\nc7AescgZzEg,2014.0,1,10,2016,Cooties,Teacher's Lounge Trauma,tt2490326\ni-VM7_DJlkQ,1987.0,5,8,2016,Jaws: The Revenge,The Banana Boat,tt0093300\nwrkeOayCv6E,1987.0,8,8,2016,Jaws: The Revenge,Killing the Beast,tt0093300\n5kgYUoeOPj4,1987.0,6,8,2016,Jaws: The Revenge,Come and Get Me,tt0093300\nUbrDTO9asW4,1987.0,4,8,2016,Jaws: The Revenge,The Shark Hunts Michael,tt0093300\nFl9Cexw3ACk,1987.0,2,8,2016,Jaws: The Revenge,A Big Fish,tt0093300\nsf2eXsM6Kik,1987.0,3,8,2016,Jaws: The Revenge,You Got 'Im,tt0093300\n8CCr6_Xqt1k,1987.0,7,8,2016,Jaws: The Revenge,The Beast Comes Back,tt0093300\nMG_ZMkTJ1dA,1987.0,1,8,2016,Jaws: The Revenge,A Shark Surprise,tt0093300\nQQsH99EAwoE,1983.0,8,9,2016,Jaws 3D,How Did He Get Loose?,tt0085750\nbLi52djkRTs,1983.0,4,9,2016,Jaws 3D,You Don't Want to See This,tt0085750\na4Td_W5dc1w,1983.0,6,9,2016,Jaws 3D,\"Please Walk, Don't Run\",tt0085750\n_CWSn-Zdi5w,1983.0,7,9,2016,Jaws 3D,Swallowed Whole,tt0085750\narsAllZIa1Y,1983.0,9,9,2016,Jaws 3D,The Exploding Shark,tt0085750\nGw8uD1xHhBc,1983.0,1,9,2016,Jaws 3D,SeaWorld Attack,tt0085750\nIMzMccLiMIc,1983.0,5,9,2016,Jaws 3D,Havoc at SeaWorld,tt0085750\nlRAsSTNZD8g,1983.0,3,9,2016,Jaws 3D,Capturing a Great White,tt0085750\nCdgq2SQcKcQ,1983.0,2,9,2016,Jaws 3D,Rescued by Dolphins,tt0085750\nciL0tWi56tM,1978.0,8,9,2016,Jaws 2,Helicopter Attack,tt0077766\npfVP6HBoflg,1978.0,9,9,2016,Jaws 2,Open Wide,tt0077766\nqy_ZclSCUwA,1978.0,7,9,2016,Jaws 2,Shark vs. Sailboats,tt0077766\nrqWz0oKJQ5E,1978.0,5,9,2016,Jaws 2,Underwater Scare,tt0077766\na6CsW4dCk_8,1978.0,6,9,2016,Jaws 2,Swim Faster,tt0077766\nN92pfxjHXkg,1978.0,2,9,2016,Jaws 2,A Grisly Discovery,tt0077766\ncVPTibn-ewI,1978.0,3,9,2016,Jaws 2,Everybody Out of the Water,tt0077766\nyr923CbtKsU,1978.0,1,9,2016,Jaws 2,Water Ski Attack,tt0077766\nD3PcFuLPhG4,1978.0,4,9,2016,Jaws 2,That's a Shark,tt0077766\n2fweZsmH4Tw,2015.0,9,10,2016,Steve Jobs,Acknowledge the Apple II Team,tt2080374\n1To7zCTHAv4,2015.0,10,10,2016,Steve Jobs,Lisa Was Named After You,tt2080374\nJhNznuSZ1n8,2015.0,8,10,2016,Steve Jobs,Make Things Alright with Lisa,tt2080374\nmoeAot5_Q_U,2015.0,7,10,2016,Steve Jobs,Jobs vs. Sculley,tt2080374\nya0uliWzUTI,2015.0,5,10,2016,Steve Jobs,It Needs to Say Hello,tt2080374\nmLKA_BX6xKo,2015.0,4,10,2016,Steve Jobs,Here's What I'm Going to Do,tt2080374\nAeZQ4Oi1wu8,2015.0,6,10,2016,Steve Jobs,What Do You Do?,tt2080374\nC6MgTAuqpXc,2015.0,3,10,2016,Steve Jobs,Do You Know What a Coincidence Is?,tt2080374\nXS-R1raNESI,2015.0,1,10,2016,Steve Jobs,Fix the Voice Demo,tt2080374\n-b-EFcA7ing,2015.0,2,10,2016,Steve Jobs,Everyone Is Waiting For the Mac,tt2080374\nDHL2KTvQ_eQ,1968.0,12,12,2016,Hang 'Em High,I'm the Law,tt0061747\n1yMhC0o3y_0,1968.0,2,12,2016,Hang 'Em High,Some People Calls This Hell,tt0061747\nBocJIlRPVvU,1968.0,9,12,2016,Hang 'Em High,Last Words,tt0061747\n8-0dpreHXFM,1968.0,6,12,2016,Hang 'Em High,Dead or Alive,tt0061747\nzDQueu9EF6M,1968.0,7,12,2016,Hang 'Em High,Fighting Miller,tt0061747\n2QRFeV4rPZE,1968.0,8,12,2016,Hang 'Em High,Lynched or Judged,tt0061747\nrqS6CaouXwE,1968.0,10,12,2016,Hang 'Em High,A Hanging and a Shooting,tt0061747\n-pEKUJ9MADs,1968.0,3,12,2016,Hang 'Em High,Come to Kill the Prophet,tt0061747\nZgbGOBeeaD8,1968.0,4,12,2016,Hang 'Em High,The Judge's Offer,tt0061747\nfrIi1u8PAlc,1968.0,11,12,2016,Hang 'Em High,Rachel Remembers,tt0061747\neB46dRO0YZ8,1968.0,5,12,2016,Hang 'Em High,You Better Look at Him,tt0061747\nvl5LaKMkhYw,1968.0,1,12,2016,Hang 'Em High,Hang 'Em,tt0061747\nuk2ovL8llCw,2006.0,3,11,2016,The Host,River of No Return,tt0468492\ndjquKsYMo74,2006.0,9,11,2016,The Host,Thwarted Escape,tt0468492\njQTtJ71PkKE,2006.0,7,11,2016,The Host,Sewer Vomit,tt0468492\nZGha6pmwigQ,2006.0,10,11,2016,The Host,Agent Yellow,tt0468492\n_GksGDm__8U,2006.0,8,11,2016,The Host,You Like Viruses?,tt0468492\nfXGEXg5q5HM,2006.0,6,11,2016,The Host,The Last Stand,tt0468492\nSN9LQ05sQEU,2006.0,11,11,2016,The Host,Defeating the Monster,tt0468492\n4V7dPXjZJC0,2006.0,4,11,2016,The Host,Grieving Family,tt0468492\nLkkVEYz6y20,2006.0,5,11,2016,The Host,Hospital Break,tt0468492\nj4mo1ywVR_M,2006.0,1,11,2016,The Host,Down the Drain,tt0468492\nlGcW9Egfm2M,2006.0,2,11,2016,The Host,Monster Fish Attack,tt0468492\nr1fp_NVGr6Q,1979.0,9,10,2016,Hair,The Flesh Failures,tt0079261\nkzueHOeJk40,1979.0,6,10,2016,Hair,Black Boys/White Boys,tt0079261\nUTKrefMHcJQ,1979.0,10,10,2016,Hair,Let the Sunshine In,tt0079261\nq1D9i-d1m4Y,1979.0,3,10,2016,Hair,Ain't Got No,tt0079261\nDOrvXyOMjhQ,1979.0,5,10,2016,Hair,Where Do I Go?,tt0079261\nLepvQqFvoWc,1979.0,2,10,2016,Hair,Manchester,tt0079261\nt3XewsVnx9E,1979.0,8,10,2016,Hair,Good Morning Starshine,tt0079261\nBTZArvbmG_o,1979.0,1,10,2016,Hair,Aquarius,tt0079261\nU45CzgrLE9s,1979.0,7,10,2016,Hair,Easy to Be Hard,tt0079261\n5P2p_4ftJjE,1979.0,4,10,2016,Hair,,tt0079261\n73F6wZrDxao,2010.0,10,10,2016,Sherlock Holmes,The Final Solution,tt0988045\n6QEYgLKNZd0,2010.0,8,10,2016,Sherlock Holmes,The Problem of the Ticking Bot,tt0988045\nfI5qOb-otrs,2010.0,9,10,2016,Sherlock Holmes,A Case of a Brother's Burden,tt0988045\ncKJ6Jyo_9to,2010.0,7,10,2016,Sherlock Holmes,His Last Bow,tt0988045\nSxMetYMwzUU,2010.0,6,10,2016,Sherlock Holmes,The Copper Brother,tt0988045\nRqNXT7abtQQ,2010.0,5,10,2016,Sherlock Holmes,The Adventure of the Cooked Man,tt0988045\nAjXsoJGi1fo,2010.0,3,10,2016,Sherlock Holmes,The Hound of the Lost World,tt0988045\n07k4FaH9dTc,2010.0,4,10,2016,Sherlock Holmes,The Disappointment of Lady Anesidora,tt0988045\ncrX0CMJ_aIQ,2010.0,2,10,2016,Sherlock Holmes,The John-Prostitute Plans,tt0988045\nSiOImcd9L2c,2010.0,1,10,2016,Sherlock Holmes,A Study in Mercury Poisoning,tt0988045\nx94XSdW6eEE,2007.0,10,10,2016,AVH: Alien vs. Hunter,The Hunter is Human,tt1094162\nZfKsbOpsea4,2007.0,9,10,2016,AVH: Alien vs. Hunter,Lee the Destroyer,tt1094162\n8YaSWlYa9u4,2007.0,8,10,2016,AVH: Alien vs. Hunter,Man Battle for Survival,tt1094162\naCx3jrZJjPM,2007.0,7,10,2016,AVH: Alien vs. Hunter,Inside the Ship,tt1094162\nbtug5ZMTWuk,2007.0,5,10,2016,AVH: Alien vs. Hunter,Valentine's Alive,tt1094162\nxiXiMxTbu5k,2007.0,6,10,2016,AVH: Alien vs. Hunter,Don't Leave the House,tt1094162\n_8dcjZCqilE,2007.0,3,10,2016,AVH: Alien vs. Hunter,\"It's an Alien, Dude\",tt1094162\nVaQo1PTIzXs,2007.0,4,10,2016,AVH: Alien vs. Hunter,He's Never Going to Die,tt1094162\nc_lWrv5E18A,2007.0,2,10,2016,AVH: Alien vs. Hunter,Snack Time for the Alien,tt1094162\n1OXNsIjuAnk,2007.0,1,10,2016,AVH: Alien vs. Hunter,Freaked Me Out So Badly,tt1094162\nlq2V4EnoY68,2009.0,8,10,2016,Paranormal Entity,The Sister in the Attic,tt1586261\nrFBErC8napg,2009.0,10,10,2016,Paranormal Entity,Sam's Nightmare,tt1586261\nDLUx3hDY2wI,2009.0,9,10,2016,Paranormal Entity,Supernatural Slit Wrists,tt1586261\n0KtJi_MLKqY,2009.0,7,10,2016,Paranormal Entity,It Followed Us,tt1586261\n6CO4uEdr8p4,2009.0,6,10,2016,Paranormal Entity,Ghost Warning Bells,tt1586261\n5BBhXUaqDZQ,2009.0,4,10,2016,Paranormal Entity,Footprints On the Ceiling,tt1586261\nwQlyX4xKYeU,2009.0,5,10,2016,Paranormal Entity,Father's Ashes,tt1586261\n_ZpONi1-f24,2009.0,3,10,2016,Paranormal Entity,A Phantom Voice,tt1586261\nu34dzFKx4Rg,2009.0,1,10,2016,Paranormal Entity,No Protection From Evil,tt1586261\nP8Cv5p0cgG0,2009.0,2,10,2016,Paranormal Entity,Message From a Ghost,tt1586261\nitk5hcD2sFs,2013.0,10,10,2016,Prince Avalanche,Getting Drunk,tt2195548\nu5qpNA4ZIFA,2013.0,9,10,2016,Prince Avalanche,Become a Dad,tt2195548\nn8r0JS4Z9tI,2013.0,8,10,2016,Prince Avalanche,I Love Her,tt2195548\nS7yCsHLwg30,2013.0,7,10,2016,Prince Avalanche,Fell Off a Cliff,tt2195548\ntSYhESdFisA,2013.0,6,10,2016,Prince Avalanche,On Strike,tt2195548\nxWZtwOffj1o,2013.0,5,10,2016,Prince Avalanche,Enjoy the Silence,tt2195548\nACr98cpjXnE,2013.0,4,10,2016,Prince Avalanche,A Blown Weekend,tt2195548\n6Knf2lu45Yw,2013.0,3,10,2016,Prince Avalanche,Digging Through the Ashes,tt2195548\n5ZxVaJcxkMo,2013.0,2,10,2016,Prince Avalanche,The Rewards of Solitude,tt2195548\nYVmZ5gRR_zc,2013.0,1,10,2016,Prince Avalanche,Time for a Drink,tt2195548\nZ9QsVa8r5Fk,2011.0,12,12,2016,Faces in the Crowd,Facing the Killer,tt1536410\n8skrIns6h6I,2011.0,9,12,2016,Faces in the Crowd,Do You See Me When We Have Sex?,tt1536410\nKuebMqpuoEg,2011.0,11,12,2016,Faces in the Crowd,Remembering the Killer,tt1536410\nuvUaNcx7mlg,2011.0,10,12,2016,Faces in the Crowd,I Can Do Wacko,tt1536410\nLFB_SKdGuLk,2011.0,8,12,2016,Faces in the Crowd,Meeting the Killer,tt1536410\neAvVsXliFxo,2011.0,7,12,2016,Faces in the Crowd,A Different Guy Every Night,tt1536410\nrXDhJmUGdiM,2011.0,6,12,2016,Faces in the Crowd,That's Not Me,tt1536410\nTd6UanhjhVs,2011.0,5,12,2016,Faces in the Crowd,Escaping the Faceless Killer,tt1536410\nOFcprqLHg-M,2011.0,3,12,2016,Faces in the Crowd,I Don't Want to See You on a Slab,tt1536410\n9pcfdiFrBEQ,2011.0,4,12,2016,Faces in the Crowd,The Barcode of the Human Race,tt1536410\ns1pDel1G9Eg,2011.0,2,12,2016,Faces in the Crowd,Face Blindness,tt1536410\nkePIiYeH2Ko,2011.0,1,12,2016,Faces in the Crowd,The Face of a Killer,tt1536410\nTaYnzfexuFg,2015.0,8,10,2016,The Vatican Tapes,\"Show Yourself, Serpent\",tt1524575\nybq8gINMdBs,2015.0,10,10,2016,The Vatican Tapes,The Day We Most Fear,tt1524575\neIAiu9_4JDs,2015.0,9,10,2016,The Vatican Tapes,Antichrist,tt1524575\nLiI1LdPRcQM,2015.0,7,10,2016,The Vatican Tapes,There Is an Obstruction,tt1524575\ndpg077fR9Mc,2015.0,5,10,2016,The Vatican Tapes,Asylum Chaos,tt1524575\njAwlK8vL8OQ,2015.0,6,10,2016,The Vatican Tapes,We Move Away From God,tt1524575\nOIFEMSfu4pk,2015.0,3,10,2016,The Vatican Tapes,Why Did You Do This?,tt1524575\nyCUaXGVdi_k,2015.0,4,10,2016,The Vatican Tapes,Honesty Hour,tt1524575\nooiimi7zkoE,2015.0,2,10,2016,The Vatican Tapes,It's a Miracle,tt1524575\nIwA5uSA5ZBI,2015.0,1,10,2016,The Vatican Tapes,The Accident,tt1524575\niQoNLmqqMQA,2015.0,10,10,2016,Knock Knock,Cheating Eventually Gets You Killed,tt3605418\nzCttJu0ZFpw,2015.0,6,10,2016,Knock Knock,Like a Good Little Girl,tt3605418\n52sXSYdNPsg,2015.0,9,10,2016,Knock Knock,Hide and Seek,tt3605418\n2Qx3hHEoqMs,2015.0,8,10,2016,Knock Knock,The Correct Answer is Death,tt3605418\n7TY3DFSCrOc,2015.0,7,10,2016,Knock Knock,Who Wants to Be a Pedophile?,tt3605418\nFvUs8613_TM,2015.0,5,10,2016,Knock Knock,\"Like What You See, Daddy?\",tt3605418\nVvGhOtoy5iE,2015.0,4,10,2016,Knock Knock,To Catch a Predator,tt3605418\nl-aUy9_L22o,2015.0,3,10,2016,Knock Knock,Play Time's Over,tt3605418\nLe-bfbn43WE,2015.0,1,10,2016,Knock Knock,Lost Girls,tt3605418\nhK2Em4D7fhU,2015.0,2,10,2016,Knock Knock,Slow Jam DJ,tt3605418\nkoWVPnRRGlA,2014.0,10,10,2016,Paranormal Activity: The Marked Ones,Katie and Micah,tt2473682\nzvdLSI3-j-A,2014.0,9,10,2016,Paranormal Activity: The Marked Ones,Surrounded by Witches,tt2473682\nY4fkp_IINqo,2014.0,8,10,2016,Paranormal Activity: The Marked Ones,Cleansing the Evil Spirit,tt2473682\nv7kRQXWpSdE,2014.0,7,10,2016,Paranormal Activity: The Marked Ones,Trapped in the Basement,tt2473682\nC42zpLSVjCY,2014.0,5,10,2016,Paranormal Activity: The Marked Ones,You Have the Same Mark,tt2473682\ngw4Sj4hJy4s,2014.0,4,10,2016,Paranormal Activity: The Marked Ones,The Trapdoor,tt2473682\nOhncteZCJWE,2014.0,6,10,2016,Paranormal Activity: The Marked Ones,Something in His Eyes,tt2473682\n4nEsHsxsjew,2014.0,3,10,2016,Paranormal Activity: The Marked Ones,Strange Powers,tt2473682\n63KhwUcX8dE,2014.0,2,10,2016,Paranormal Activity: The Marked Ones,Demonic Strength,tt2473682\n9Fu4muqAsBM,2014.0,1,10,2016,Paranormal Activity: The Marked Ones,Simon Says,tt2473682\nCLfY0oLo7o0,2012.0,10,10,2016,Paranormal Activity 4,Please Don't Hurt Me,tt2109184\nGko7aal3o7U,2012.0,9,10,2016,Paranormal Activity 4,Something in the Closet,tt2109184\nrXpCjDg0RT0,2012.0,7,10,2016,Paranormal Activity 4,Trapped in the Garage,tt2109184\nqBdgJs4tf60,2012.0,3,10,2016,Paranormal Activity 4,Ghost Child,tt2109184\nCtARWCZGiag,2012.0,8,10,2016,Paranormal Activity 4,Katie Returns,tt2109184\nb56RExAdg7s,2012.0,6,10,2016,Paranormal Activity 4,The Garage Door,tt2109184\nOW1bbk4wVqo,2012.0,1,10,2016,Paranormal Activity 4,Robbie's Friend,tt2109184\nCYXBxG1COzQ,2012.0,5,10,2016,Paranormal Activity 4,Levitation,tt2109184\nWOcSwhJCnr8,2012.0,4,10,2016,Paranormal Activity 4,Bathtub Visitor,tt2109184\nW1U_sJhDIXI,2012.0,2,10,2016,Paranormal Activity 4,The Chandelier,tt2109184\nsfh3DVzcGAI,2012.0,2,12,2016,Stuck in Love,Punch to the Face,tt2205697\nlTyNEv7TXmk,2012.0,12,12,2016,Stuck in Love,Happy Thanksgiving,tt2205697\n_s2FEVQePMg,2012.0,11,12,2016,Stuck in Love,My Mom is Dead,tt2205697\npfk_iBQzECI,2012.0,9,12,2016,Stuck in Love,Between the Bars,tt2205697\niekeU-w3im0,2012.0,10,12,2016,Stuck in Love,Profile Picture,tt2205697\nIpf6Zg3UFTk,2012.0,8,12,2016,Stuck in Love,Less Cynical,tt2205697\nSCp3HsyGqeo,2012.0,7,12,2016,Stuck in Love,Running Into You,tt2205697\nSAMMLF75HmM,2012.0,5,12,2016,Stuck in Love,Gonna be Friends,tt2205697\nLP22LQEq-tY,2012.0,6,12,2016,Stuck in Love,Favorite Book,tt2205697\nXq_a8AYpKYA,2012.0,4,12,2016,Stuck in Love,\"Don't, Don't, Don't\",tt2205697\nyF0HUzSCd84,2012.0,3,12,2016,Stuck in Love,I Release You,tt2205697\n6ljUgAVSu0M,2012.0,1,12,2016,Stuck in Love,Two Kinds of People,tt2205697\nH8nX1mhYFk8,2013.0,11,11,2016,Life of a King,The Final Round,tt2708254\n6MtwwUfJ8IE,2013.0,10,11,2016,Life of a King,By Myself,tt2708254\nV2M1t7HAj1A,2013.0,9,11,2016,Life of a King,The Radio Show,tt2708254\ncx2YdJwQaeU,2013.0,7,11,2016,Life of a King,They Think I'm Nuts,tt2708254\nBDYgCu8m5dQ,2013.0,6,11,2016,Life of a King,One Mistake,tt2708254\n5LXDBdoZfy4,2013.0,8,11,2016,Life of a King,I Learned the Board,tt2708254\n3bcNygIQfMU,2013.0,5,11,2016,Life of a King,The Chess House,tt2708254\nOqnFSU27fuE,2013.0,4,11,2016,Life of a King,Chess Club Cancelled,tt2708254\nm4qQ9IIo23c,2013.0,3,11,2016,Life of a King,The Board of Life,tt2708254\nN7urptsSqNY,2013.0,2,11,2016,Life of a King,The King is Your Life,tt2708254\nf4D3R4tJNMo,2013.0,1,11,2016,Life of a King,You Some Kinda Tough Guy?,tt2708254\nkeymL9b6W4g,2013.0,11,11,2016,Plush,Enzo's End,tt2226519\nJDnjiQCk2JQ,2013.0,10,11,2016,Plush,Did You Hurt Him?,tt2226519\nsdc-LNkYA78,2013.0,9,11,2016,Plush,Erotic Music Video,tt2226519\nTFGYMpZUv4Q,2013.0,8,11,2016,Plush,Embrace the Dark Side,tt2226519\nD_1bty7dttk,2013.0,7,11,2016,Plush,Music and Sex,tt2226519\nq1V_8cCX5Vg,2013.0,6,11,2016,Plush,Stalkers and Soulmates,tt2226519\nErn5-LGeU50,2013.0,5,11,2016,Plush,Awkward Sex,tt2226519\ngx4ZNttML0M,2013.0,4,11,2016,Plush,Hayley and Enzo,tt2226519\nhh7_pDbACts,2013.0,3,11,2016,Plush,First Time's Always Free,tt2226519\nyYhuz0q21_4,2013.0,2,11,2016,Plush,Sexy Massage,tt2226519\nEFhZ72P48bc,2013.0,1,11,2016,Plush,Psycho Fan,tt2226519\nAFJ_QnfENd4,2005.0,7,7,2016,American Pie Presents Band Camp,Ruined Routine,tt0781008\nzSd5uTUpuAY,2005.0,6,7,2016,American Pie Presents Band Camp,Making Out,tt0781008\ngijYgnVD9vo,2005.0,5,7,2016,American Pie Presents Band Camp,Horndog and Stiffmeister,tt0781008\nrWe5nzPq1JA,2005.0,4,7,2016,American Pie Presents Band Camp,I've Been Poisoned!,tt0781008\nnlH_5ejw7Gs,2005.0,3,7,2016,American Pie Presents Band Camp,The Duel,tt0781008\noSc-5smBhRQ,2005.0,2,7,2016,American Pie Presents Band Camp,Challenge to a Duel,tt0781008\nimcPspMbcL0,2005.0,1,7,2016,American Pie Presents Band Camp,Pepper Spray Prank,tt0781008\nrlXTyrGsiHQ,2012.0,10,10,2016,2 Days in New York,If We Broke Up,tt1602472\nOjGiHy7VIhI,2012.0,8,10,2016,2 Days in New York,Selling a Soul,tt1602472\nMDsC2TNfF3g,2012.0,9,10,2016,2 Days in New York,Vincent Gallo Ate My Soul,tt1602472\nFrH_IKiZTOc,2012.0,7,10,2016,2 Days in New York,Boyfriend on the Radio,tt1602472\n8tfmRZV1vnI,2012.0,5,10,2016,2 Days in New York,A Brain Tumor,tt1602472\nTPdR8MCjRGQ,2012.0,6,10,2016,2 Days in New York,Introducing the Family,tt1602472\n19moJ8AP49o,2012.0,4,10,2016,2 Days in New York,I'm Getting You Evicted,tt1602472\nZrCtTXl-84I,2012.0,3,10,2016,2 Days in New York,Getting Freaky With a Toothbrush,tt1602472\n0GsFiFVwfBE,2012.0,2,10,2016,2 Days in New York,You're So Lucky to Be Black,tt1602472\n_ilh4ZR3aUo,2012.0,1,10,2016,2 Days in New York,Meeting the Family,tt1602472\nQA34Dlela4Y,2009.0,3,10,2016,The Terminators,We Need to Go On Lockdown,tt1350512\nu1CmSdzgYiY,2009.0,4,10,2016,The Terminators,Extermination of the Humans,tt1350512\n5cxSYatteJ0,2009.0,2,10,2016,The Terminators,We're Flying Solo,tt1350512\nNK_Gt07WU5o,2009.0,1,10,2016,The Terminators,Breaking Command,tt1350512\nBcfTPLZTAog,2009.0,10,10,2016,The Terminators,The Big One,tt1350512\nL1bqqCJlCpg,2009.0,9,10,2016,The Terminators,We Have Lift Off,tt1350512\nd-Sk3AvyR24,2009.0,6,10,2016,The Terminators,We're Their Only Threat,tt1350512\n2QB-g-9tuEk,2009.0,8,10,2016,The Terminators,The Unstoppable Machines,tt1350512\nZeMzb1DXoFM,2009.0,7,10,2016,The Terminators,Strap Yourselves In!,tt1350512\nztEcn3h90g0,2009.0,5,10,2016,The Terminators,Calm Down!,tt1350512\ngFsyI1eps-U,2010.0,10,10,2016,Titanic II,Failure to Resuscitate,tt1640571\n_41uCWOabEU,2010.0,8,10,2016,Titanic II,\"We Won't Be Electrocuted, Right?\",tt1640571\nrgFfioIzPgs,2010.0,9,10,2016,Titanic II,Only One Can Survive,tt1640571\nvssoBfErh5w,2010.0,6,10,2016,Titanic II,Ships and Planes Ablaze,tt1640571\ngvAl9GR1kDs,2010.0,7,10,2016,Titanic II,Door Jam Death,tt1640571\nY9ajaBIbzYI,2010.0,4,10,2016,Titanic II,It's Going to Hit!,tt1640571\n_jkSWElBWf0,2010.0,5,10,2016,Titanic II,It Happened,tt1640571\nQ1XwIK9Ykvs,2010.0,3,10,2016,Titanic II,15 Minutes Until Impact,tt1640571\nOAMxHdzk0EU,2010.0,2,10,2016,Titanic II,Frozen With Fear,tt1640571\nC1QL0e4B7N8,2010.0,1,10,2016,Titanic II,Ticking Time Bomb,tt1640571\nauMWOnofBSI,2011.0,5,11,2016,Rampart,Talking to the Lawyers,tt1640548\n_6iwpd8yeQc,2011.0,11,11,2016,Rampart,Not the Confession I Want,tt1640548\nayplsqakP80,2011.0,2,11,2016,Rampart,The Beating,tt1640548\nP94nUxbIgs0,2011.0,10,11,2016,Rampart,It's All True,tt1640548\n1kAMrmDG-68,2011.0,8,11,2016,Rampart,Call This Lawyer,tt1640548\nhK9v_6lK_lw,2011.0,9,11,2016,Rampart,I Hate Everyone Equally,tt1640548\nY0SFyVdPfO8,2011.0,7,11,2016,Rampart,What Happened,tt1640548\naGActTYN93E,2011.0,6,11,2016,Rampart,Something You Aren't Telling Me,tt1640548\nYd_u2G_ucCU,2011.0,3,11,2016,Rampart,Thought About Retirement?,tt1640548\nCHz--mmu5RA,2011.0,4,11,2016,Rampart,They Predicted Your Response,tt1640548\nRPS05ujl9FM,2011.0,1,11,2016,Rampart,Date Rape Dave,tt1640548\nnW-iQzgmyeI,2006.0,8,12,2016,Van Wilder 2: The Rise of Taj,Do I Look Like An American Idiot?,tt0480271\nWrCCnZaSlKE,2006.0,10,12,2016,Van Wilder 2: The Rise of Taj,The Truth About Dad,tt0480271\n0gAMfKzCJsc,2006.0,5,12,2016,Van Wilder 2: The Rise of Taj,Throwing Textbooks,tt0480271\nsnRRa2Z3DFo,2006.0,9,12,2016,Van Wilder 2: The Rise of Taj,Paint Balls,tt0480271\nHcadJjFOhcg,2006.0,1,12,2016,Van Wilder 2: The Rise of Taj,Taj Is Rejected,tt0480271\njKa9O33GXLI,2006.0,12,12,2016,Van Wilder 2: The Rise of Taj,Pip Meets His Ancestors,tt0480271\nWPrJDDvstbM,2006.0,11,12,2016,Van Wilder 2: The Rise of Taj,The Final Competition Begins,tt0480271\nkRwFOUeh-Ro,2006.0,6,12,2016,Van Wilder 2: The Rise of Taj,Diarrhea Face,tt0480271\n4GUliPk7fK0,2006.0,4,12,2016,Van Wilder 2: The Rise of Taj,The New You,tt0480271\n0WOnDEx4QLc,2006.0,7,12,2016,Van Wilder 2: The Rise of Taj,Fencing Like Zorro,tt0480271\nAiZf4-eJQUA,2006.0,2,12,2016,Van Wilder 2: The Rise of Taj,Taj Meets the Boys,tt0480271\nloVYzYPJBTE,2007.0,8,8,2016,American Pie Presents Beta House,Keg Competition,tt0974959\nfw5N8DF4js8,2006.0,3,12,2016,Van Wilder 2: The Rise of Taj,Sexy Sadie,tt0480271\nfk0O_cdBbMg,2007.0,7,8,2016,American Pie Presents Beta House,Greek Roulette,tt0974959\n7AkMzkl0r4E,2007.0,6,8,2016,American Pie Presents Beta House,Parkour Pig Chase,tt0974959\n3wsMRsZ2Q3I,2007.0,5,8,2016,American Pie Presents Beta House,Pool Duel,tt0974959\nmuVopS3Yn7s,2007.0,3,8,2016,American Pie Presents Beta House,The Party's Over,tt0974959\nXcE9IUjMtOE,2007.0,4,8,2016,American Pie Presents Beta House,What Would Levenstein Do?,tt0974959\nqtKtxLmxl24,2007.0,1,8,2016,American Pie Presents Beta House,Beta House Rules!,tt0974959\n7yVV04Hi1Ms,2007.0,2,8,2016,American Pie Presents Beta House,The Geek House,tt0974959\nQDurduePMWE,2012.0,11,11,2016,Red Lights,Psychic Showdown,tt1748179\nQ9-NzGEY90w,2012.0,10,11,2016,Red Lights,Bathroom Beating,tt1748179\n6S__xAKQcF4,2012.0,9,11,2016,Red Lights,Investigating Simon Silver,tt1748179\nPkLE7uHqRt4,2012.0,8,11,2016,Red Lights,Paranoia and Hallucinations,tt1748179\nOe_sEQkEIZw,2012.0,7,11,2016,Red Lights,Questioning Leonard,tt1748179\n6bNyU9A9LlM,2012.0,6,11,2016,Red Lights,Simon's Power,tt1748179\ni3u7nvpgDTM,2012.0,4,11,2016,Red Lights,Fake Faith Healer,tt1748179\nCcLJWUzDSbA,2012.0,5,11,2016,Red Lights,Psychic Test,tt1748179\naRr8QkQ9Qrw,2012.0,2,11,2016,Red Lights,Why Bother?,tt1748179\nbfn9-AjAJCU,2012.0,3,11,2016,Red Lights,Beliefs and Desires,tt1748179\ndpIyHx-GsbA,2012.0,1,11,2016,Red Lights,A Skeptic,tt1748179\n0t1TFwXKL2E,2010.0,10,10,2016,Little Fockers,Let's Dance,tt0970866\nSqY9GVVUo4w,2010.0,8,10,2016,Little Fockers,Greg Is Done,tt0970866\nlyuqs9s8134,2010.0,7,10,2016,Little Fockers,The Hottie and the Groupie,tt0970866\n7478n46dKCg,2010.0,9,10,2016,Little Fockers,Come and Get It,tt0970866\n6SoBKiO5mlY,2010.0,6,10,2016,Little Fockers,Double Dose of Focker,tt0970866\nHx3l8vu5L6Q,2010.0,4,10,2016,Little Fockers,Burying Jack,tt0970866\n_Y8RUTZ6CKc,2010.0,5,10,2016,Little Fockers,Erectile Dysfunction,tt0970866\nBgvJlZKbqlw,2010.0,1,10,2016,Little Fockers,The Godfocker,tt0970866\no6V1Ov1GCuQ,2010.0,3,10,2016,Little Fockers,The Ex-Lover,tt0970866\n7nZ0VyXfpec,2010.0,2,10,2016,Little Fockers,Carving the Turkey,tt0970866\nj2SPawJewxA,1972.0,11,12,2016,The Magnificent Seven Ride!,Battling De Toro,tt0068897\nqVS1E2L7DYg,1972.0,12,12,2016,The Magnificent Seven Ride!,The Town Is Saved,tt0068897\ntTFOv5oFe3E,1972.0,10,12,2016,The Magnificent Seven Ride!,Pick Your Partners,tt0068897\nucBnN5N2fn8,1972.0,8,12,2016,The Magnificent Seven Ride!,A Posse of Prisoners,tt0068897\nWk9-oZ9OGjw,1972.0,9,12,2016,The Magnificent Seven Ride!,Assault on the Hacienda,tt0068897\nW9vPRj-c6VQ,1972.0,7,12,2016,The Magnificent Seven Ride!,Open for Suggestions,tt0068897\nnB95pK8TgYw,1972.0,5,12,2016,The Magnificent Seven Ride!,In Cold Blood,tt0068897\n3ynO7Oaj2oY,1972.0,4,12,2016,The Magnificent Seven Ride!,Shelly Robs a Bank,tt0068897\nz-KB47AFQAY,1972.0,6,12,2016,The Magnificent Seven Ride!,Damsels in Distress,tt0068897\nKbZQdFPxeXE,1972.0,2,12,2016,The Magnificent Seven Ride!,Only a Boy,tt0068897\nvkFKHF9Fs_s,1972.0,3,12,2016,The Magnificent Seven Ride!,Set Free,tt0068897\nq_y1Qe8dyCw,1972.0,1,12,2016,The Magnificent Seven Ride!,The Marshal Saves Jim,tt0068897\n1MVR4GmqfHg,2007.0,10,12,2016,Lars and the Real Girl,A Kiss Before Dying,tt0805564\n0j9yDnytwPU,2007.0,11,12,2016,Lars and the Real Girl,No Ordinary Funeral,tt0805564\nwSdltnqDWV0,2007.0,6,12,2016,Lars and the Real Girl,We Do It for You,tt0805564\nqfwei0pOLVs,2007.0,5,12,2016,Lars and the Real Girl,Touch Therapy,tt0805564\nZfcfpjiFZAQ,2007.0,8,12,2016,Lars and the Real Girl,The Bear Is Dead,tt0805564\nIMuAOVTXtLM,2007.0,12,12,2016,Lars and the Real Girl,A New Beginning,tt0805564\nDKp509HHG0w,2007.0,9,12,2016,Lars and the Real Girl,Call 911!,tt0805564\nPu1vplwgGAY,2007.0,7,12,2016,Lars and the Real Girl,How Did You Know?,tt0805564\ngHWnmlpmub4,2007.0,3,12,2016,Lars and the Real Girl,Dinner With the Real Girl,tt0805564\nEj_fgugvtRg,2007.0,4,12,2016,Lars and the Real Girl,Bianca Goes to the Doctor,tt0805564\nMB5zQ9X-2tY,2007.0,1,12,2016,Lars and the Real Girl,Worried About Lars,tt0805564\n2W9aISYBJXY,2007.0,2,12,2016,Lars and the Real Girl,Meeting Bianca,tt0805564\nnIuuhtJM_Dw,1986.0,8,10,2016,Something Wild,Virginia is for Lovers,tt0091983\nD0Rs2n8eCPQ,1986.0,6,10,2016,Something Wild,Enjoy It While We Can,tt0091983\nFKPNubrWp0A,1986.0,5,10,2016,Something Wild,A Pretty Good Liar,tt0091983\n4nSkJZ3i2-g,1986.0,9,10,2016,Something Wild,Charlie Stabs Ray,tt0091983\nueNjp9QfQFM,1986.0,3,10,2016,Something Wild,Getting a Room,tt0091983\nvtyIGp8uv8w,1986.0,10,10,2016,Something Wild,Never Wanted to Say Goodbye,tt0091983\n23Xxotom7bI,1986.0,7,10,2016,Something Wild,How's Audrey in Bed?,tt0091983\nPsAtoPJeiys,1986.0,4,10,2016,Something Wild,A New Car,tt0091983\nLHTaiCLZO3s,1986.0,1,10,2016,Something Wild,A Closet Rebel,tt0091983\n_mzI1HQ0cYE,1986.0,2,10,2016,Something Wild,A Bottle of Scotch,tt0091983\nb7wurDomuVs,1990.0,7,11,2016,Quigley Down Under,Farewell to Cora,tt0102744\nr9mcNXIJFbY,1990.0,3,11,2016,Quigley Down Under,Pacification By Force,tt0102744\n0sUHxfXKUas,1990.0,11,11,2016,Quigley Down Under,Headed for America,tt0102744\nNtxR-xgJWwo,1990.0,10,11,2016,Quigley Down Under,Natives Save Quigley's Life,tt0102744\npGxyOeypYFs,1990.0,9,11,2016,Quigley Down Under,Quigley Wins the Duel,tt0102744\nK0xwTAJROW4,1990.0,8,11,2016,Quigley Down Under,Marston Challenges Quigley,tt0102744\n7UvSGe2Md6g,1990.0,6,11,2016,Quigley Down Under,Attacked by Dingoes,tt0102744\nj95Tk1SLXOA,1990.0,4,11,2016,Quigley Down Under,Native Food,tt0102744\n7Lj3LydT1uk,1990.0,1,11,2016,Quigley Down Under,Meeting Crazy Cora,tt0102744\nTTXjgOan_KI,1990.0,2,11,2016,Quigley Down Under,A Good Shot,tt0102744\n-cFW3A13o8s,1990.0,5,11,2016,Quigley Down Under,A Day With the Natives,tt0102744\nQGNI11LEG54,1988.0,2,11,2016,Vampire's Kiss,Rachel the Vampire,tt0098577\ns0eHgfzlrF8,1988.0,7,11,2016,Vampire's Kiss,Tell Me You Love Me,tt0098577\n0isiQvOb874,1988.0,9,11,2016,Vampire's Kiss,Taxi Cab Meltdown,tt0098577\nV5Np7vmtIYc,1988.0,11,11,2016,Vampire's Kiss,A Few Minor Confessions,tt0098577\nW1W5JF4lRIQ,1988.0,10,11,2016,Vampire's Kiss,Calling the Doctor,tt0098577\nn2ZkOcq4vWU,1988.0,8,11,2016,Vampire's Kiss,Cockroach for Breakfast,tt0098577\nxB1tKdhnGaE,1988.0,6,11,2016,Vampire's Kiss,A Horrible Job,tt0098577\nfOONIlhXFh4,1988.0,5,11,2016,Vampire's Kiss,Alphabetical Order,tt0098577\ngbXZzvvp2uc,1988.0,4,11,2016,Vampire's Kiss,\"Am I Getting Through to You, Alva?\",tt0098577\nShCW6mr_rsM,1988.0,3,11,2016,Vampire's Kiss,Drunk and Horny,tt0098577\nQ1-jHyQHGl8,1988.0,1,11,2016,Vampire's Kiss,Aroused By a Bat,tt0098577\nX7ME7WkPyC8,1988.0,11,12,2016,Eight Men Out,Banned From Baseball,tt0095082\ncMxPAkZgoy0,1988.0,12,12,2016,Eight Men Out,It's Him,tt0095082\nhOnolgR_8tc,1988.0,9,12,2016,Eight Men Out,The Thrill of Baseball,tt0095082\nBKtBN0KHq5A,1988.0,10,12,2016,Eight Men Out,The Verdict,tt0095082\nJ2ugazPv__M,1988.0,8,12,2016,Eight Men Out,A Separate Trial,tt0095082\nhFjIRET64r4,1988.0,3,12,2016,Eight Men Out,Buck's Fans,tt0095082\noEUB2LSsbe8,1988.0,7,12,2016,Eight Men Out,\"Say It Ain't So, Joe\",tt0095082\nv3bQ1GiWhJk,1988.0,6,12,2016,Eight Men Out,Dickie Wins Game 3,tt0095082\n-_Bdf9C0SAU,1988.0,5,12,2016,Eight Men Out,The Fix,tt0095082\n0fBA7VUZEgY,1988.0,4,12,2016,Eight Men Out,Eddie's Bonus,tt0095082\nLlJx0tWUuGY,1988.0,1,12,2016,Eight Men Out,Shoeless Joe,tt0095082\nS9ryLG-cAHo,1988.0,2,12,2016,Eight Men Out,The Players' Bonus,tt0095082\n4E_jCd4LZL8,1985.0,10,10,2016,Lost in America,Crossing Guard Woes,tt0089504\npVssi5x6rxI,1985.0,2,10,2016,Lost in America,Quit Your Job,tt0089504\nULLpy_WyJds,1985.0,9,10,2016,Lost in America,\"The $100,000 Box\",tt0089504\ncZumS81KSw8,1985.0,5,10,2016,Lost in America,Twenty-Two!,tt0089504\nrFy2252ierA,1985.0,3,10,2016,Lost in America,\"Las Vegas, Here We Come\",tt0089504\n7moP2oVrQ7Q,1985.0,4,10,2016,Lost in America,How Much Do You Want?,tt0089504\npf2q0HemaFs,1985.0,6,10,2016,Lost in America,The Boldest Experiment in Advertising History,tt0089504\nxdMilnKGJdA,1985.0,8,10,2016,Lost in America,The Nest Egg Principle,tt0089504\nrXwdnHnLvms,1985.0,1,10,2016,Lost in America,I've Seen the Future!,tt0089504\nMnIzvH5GvOA,1985.0,7,10,2016,Lost in America,Hoover Dam Meltdown,tt0089504\nuPQlrPGbD6k,1993.0,3,12,2016,Benny & Joon,Meeting Sam,tt0106387\npQ68ImO9dBU,1993.0,11,12,2016,Benny & Joon,You Need Me to Be Sick,tt0106387\n8YMGQMcNu2s,1993.0,8,12,2016,Benny & Joon,The Troublesome Hat,tt0106387\nUnM6dPbV9Ng,1993.0,12,12,2016,Benny & Joon,Sam Swings By,tt0106387\nw0X84fml-Bc,1993.0,10,12,2016,Benny & Joon,A Quick Diversion,tt0106387\nolTfms7kJIk,1993.0,9,12,2016,Benny & Joon,Sam's Park Routine,tt0106387\nQUP62JKYg2I,1993.0,7,12,2016,Benny & Joon,Fingerpainting,tt0106387\n74c-fV_AjAQ,1993.0,1,12,2016,Benny & Joon,Joon Sees Sam,tt0106387\nF6mWKtfNVA0,1993.0,6,12,2016,Benny & Joon,Prom Queen Mutilator,tt0106387\ntkj3klWMn5E,1993.0,4,12,2016,Benny & Joon,The Dance of the Rolls,tt0106387\n0QoGNA_9zqQ,1993.0,5,12,2016,Benny & Joon,Grilled Cheese Sandwich,tt0106387\nuJlhwWFAAxI,1993.0,2,12,2016,Benny & Joon,Smoothie Snorkeling,tt0106387\nvQ-bN0fv4Uw,2009.0,9,11,2016,Merantau,Showdown at the Shipyard,tt1368116\nfp4Rib-6cm0,2009.0,10,11,2016,Merantau,Crowbar Attack,tt1368116\nUUnnQwVC0rk,2009.0,11,11,2016,Merantau,Listen to Them,tt1368116\nxB-h2YkIP0Q,2009.0,7,11,2016,Merantau,Elevator Fight,tt1368116\ndZtW9n3C2gg,2009.0,8,11,2016,Merantau,Yuda Faces the Henchmen,tt1368116\nKYeZm7yCOaE,2009.0,6,11,2016,Merantau,Rooftop Chase,tt1368116\nEYpR4aksH3g,2009.0,5,11,2016,Merantau,Saving Adit,tt1368116\nDHww3Tdh26o,2009.0,4,11,2016,Merantau,Fighting in the Club,tt1368116\nGjJzcjwVF8s,2009.0,3,11,2016,Merantau,Four on One,tt1368116\nAbkZAbJqcIA,2009.0,2,11,2016,Merantau,Let Her Go,tt1368116\nQrg2m5OnJT0,2009.0,1,11,2016,Merantau,The Thief and His Sister,tt1368116\nI5tF_zv73vk,2007.0,5,10,2016,Big Man Japan,The Evil Stare Monster,tt0997147\nyuvBcB1oLI8,2007.0,4,10,2016,Big Man Japan,Kaiju Grandpa,tt0997147\nF2CVL2cAV80,2007.0,2,10,2016,Big Man Japan,Becoming,tt0997147\n-ZDt52_mxS8,2007.0,1,10,2016,Big Man Japan,The Strangling Monster,tt0997147\nYYsc7jslsc0,2007.0,3,10,2016,Big Man Japan,The Leaping Monster,tt0997147\n2GGLMLNbZpE,2007.0,7,10,2016,Big Man Japan,The Child Monster,tt0997147\ndWhKh27tEHQ,2007.0,10,10,2016,Big Man Japan,Super Justice Beating,tt0997147\n2-i06SAeWs8,2007.0,6,10,2016,Big Man Japan,The Stink Monster,tt0997147\nkbLP4mKMTYg,2007.0,9,10,2016,Big Man Japan,Baby or Die!,tt0997147\nL92EFtI5VxA,2007.0,8,10,2016,Big Man Japan,Grandpa vs. The Evil Red Menace,tt0997147\n4x1rlz-IYUk,2011.0,10,10,2016,Johnny English Reborn,You Can't Get Away,tt1634122\nMC_Wv7-i2Es,2011.0,8,10,2016,Johnny English Reborn,Body Bag,tt1634122\ncA9k-dz7Bqw,2011.0,7,10,2016,Johnny English Reborn,Wheelchair Chase,tt1634122\ncU2j_kP6U0w,2011.0,9,10,2016,Johnny English Reborn,Mind Control,tt1634122\nSQrD5lkN18o,2011.0,6,10,2016,Johnny English Reborn,The Sinking Chair,tt1634122\ncighZsv-N2E,2011.0,5,10,2016,Johnny English Reborn,Don't Give Up on Us Baby,tt1634122\nKZt-mGmTpZI,2011.0,4,10,2016,Johnny English Reborn,Murderous Crone,tt1634122\naj71pJABFFU,2011.0,3,10,2016,Johnny English Reborn,You've Met Your Matchstick,tt1634122\nW_WSGHIPSrM,2011.0,2,10,2016,Johnny English Reborn,Parkour Chase,tt1634122\nZAF804tkZ8o,2011.0,1,10,2016,Johnny English Reborn,The Toy Cupboard,tt1634122\n_pzghUqM1QQ,2014.0,10,10,2016,Noah,A Second Chance,tt1959490\nCRXtW09cufc,2014.0,9,10,2016,Noah,I Cannot Do This,tt1959490\ngSHomdp3o2U,2014.0,5,10,2016,Noah,Battle for the Ark,tt1959490\no2sjOBiBXSc,2014.0,8,10,2016,Noah,We Broke the World,tt1959490\nPWf0rLp7sUY,2014.0,6,10,2016,Noah,The Great Flood,tt1959490\nB_FpV0CZjxY,2014.0,7,10,2016,Noah,The Creation of the World,tt1959490\n8pUjbhH7A7M,2014.0,4,10,2016,Noah,Methusaleh's Blessing,tt1959490\njm7xE-OyJUY,2014.0,3,10,2016,Noah,Your Time Is Done,tt1959490\nr2e-9oBXk0o,2014.0,2,10,2016,Noah,'s Vision,tt1959490\nLbkjkJzREd4,2014.0,1,10,2016,Noah,The Watchers,tt1959490\n_W1RJXCb0xo,2011.0,12,12,2016,Deadtime Stories 2,Undead Love Triangle,tt1156300\nJHpXWiJJbL0,2011.0,11,12,2016,Deadtime Stories 2,Audrey Goes Mad,tt1156300\nH_GApJWNWiw,2011.0,10,12,2016,Deadtime Stories 2,Anything for Love,tt1156300\nQVNrihP8ME8,2011.0,8,12,2016,Deadtime Stories 2,Undead Birth,tt1156300\ni5JmxPGoM7U,2011.0,9,12,2016,Deadtime Stories 2,Insatiable Lust,tt1156300\n2kLkwWVB9Wg,2011.0,7,12,2016,Deadtime Stories 2,Allison Returns,tt1156300\nq3kcQHhvOWA,2011.0,5,12,2016,Deadtime Stories 2,Babe With a Gun,tt1156300\nxsHeAaSmoe8,2011.0,6,12,2016,Deadtime Stories 2,Bombshell Suicide,tt1156300\nn1r4aOeOxgo,2011.0,2,12,2016,Deadtime Stories 2,Eating Rats and People,tt1156300\ngd9ZzDgPVFo,2011.0,1,12,2016,Deadtime Stories 2,Death in the Cave,tt1156300\naMOraCoYToI,2011.0,4,12,2016,Deadtime Stories 2,Devouring Our Friend,tt1156300\nf4OPBNbNWnw,2011.0,3,12,2016,Deadtime Stories 2,Cannibalism in the Cave,tt1156300\nW2z88979aKM,2009.0,10,10,2016,Deadtime Stories,The Vampire Strikes,tt1334526\nexo_QZ07_BU,2009.0,9,10,2016,Deadtime Stories,Ravished by a Vampire,tt1334526\ni_qYwD16FXc,2009.0,8,10,2016,Deadtime Stories,The Mermaid's Slave,tt1334526\nu-ywf1_Aqy8,2009.0,7,10,2016,Deadtime Stories,The Mermaid's Lethal Kiss,tt1334526\nOU4AuLhWTv8,2009.0,3,10,2016,Deadtime Stories,Death by Blow Dart,tt1334526\n6COCjzLI5kU,2009.0,6,10,2016,Deadtime Stories,Are You Trying to Tell Me a Mermaid Story?,tt1334526\ng2h4ycVI7AQ,2009.0,1,10,2016,Deadtime Stories,Forbidden Fruit?,tt1334526\nk2ih0cR-fEI,2009.0,5,10,2016,Deadtime Stories,A Rotten Hand,tt1334526\n5Nw5r8_YCFw,2009.0,4,10,2016,Deadtime Stories,Expedition's End,tt1334526\n3aJHkdlvdHM,2009.0,2,10,2016,Deadtime Stories,Poison-Tipped Darts,tt1334526\nkaPdOgl1s7k,2010.0,10,10,2016,Ong Bak 3: The Final Battle,Death by Elephant,tt1653690\nOEf-Lee0YnE,2015.0,10,10,2016,The Last Witch Hunter,Iron and Fire,tt1618442\n8aegfjXaTmY,2015.0,9,10,2016,The Last Witch Hunter,Witch Queen vs. Witch Hunter,tt1618442\nC-c8T2hNNoo,2015.0,4,10,2016,The Last Witch Hunter,Dragged Into the Dark,tt1618442\n2Nd_TsVQwgA,2015.0,6,10,2016,The Last Witch Hunter,The Witch Queen's Heart,tt1618442\nx4oAO_kDHTY,2015.0,7,10,2016,The Last Witch Hunter,I Am Reborn,tt1618442\nZTi7bZGkJk4,2015.0,8,10,2016,The Last Witch Hunter,Sentinel Shut Down,tt1618442\n0NHFYpXhiiY,2015.0,5,10,2016,The Last Witch Hunter,Mind Trap,tt1618442\nzt-zQ_EzPsY,2015.0,1,10,2016,The Last Witch Hunter,I Curse You,tt1618442\n6qAar5htD0g,2015.0,3,10,2016,The Last Witch Hunter,No More Memory Potions For You,tt1618442\ne-6fZ7wiPQk,2015.0,2,10,2016,The Last Witch Hunter,Apprehending a Witch,tt1618442\ndlxT9ot5Bi8,2014.0,10,10,2016,Mega Shark vs. Mecha Shark,Nero the Hero,tt1705773\nk9mzgW758k8,2014.0,6,10,2016,Mega Shark vs. Mecha Shark,A Mech Crashes the Opera,tt1705773\nayLJJZh7RRo,2014.0,9,10,2016,Mega Shark vs. Mecha Shark,Rosie's Stuck in Chum,tt1705773\nUeKhKcL5efg,2014.0,8,10,2016,Mega Shark vs. Mecha Shark,Jumping the Shark,tt1705773\nl94WdhJc8ZM,2014.0,4,10,2016,Mega Shark vs. Mecha Shark,One Pissed Off Mega Shark,tt1705773\nswcFDa5jYfw,2014.0,7,10,2016,Mega Shark vs. Mecha Shark,Amphibious Mode,tt1705773\n8tnQxuIPgXQ,2014.0,5,10,2016,Mega Shark vs. Mecha Shark,Nero at the Wheel,tt1705773\nJj6S3vtJPaA,2014.0,3,10,2016,Mega Shark vs. Mecha Shark,Smackdown in the Sky,tt1705773\n-jFiu3zG8dc,2014.0,2,10,2016,Mega Shark vs. Mecha Shark,Mega Meets Mecha,tt1705773\nqgcQxJuBfY4,2014.0,1,10,2016,Mega Shark vs. Mecha Shark,Tugboat Toss,tt1705773\ndcB5igj1k6w,2006.0,2,10,2016,Snakes on a Train,Smoke and Slime,tt0843873\nQwi6MbaOBME,2006.0,6,10,2016,Snakes on a Train,Take Off Your Shirt,tt0843873\niCTkYP-7by0,2006.0,3,10,2016,Snakes on a Train,Throw Chico From the Train,tt0843873\nL2ozJHHf1ec,2006.0,5,10,2016,Snakes on a Train,We Have a Runaway Train!,tt0843873\nqE_SJYfhUc0,2006.0,7,10,2016,Snakes on a Train,The Snakes Are Loose!,tt0843873\nT1jK-kQgdeo,2006.0,8,10,2016,Snakes on a Train,Where's Alma?,tt0843873\nDf3535-5wE8,2006.0,9,10,2016,Snakes on a Train,Put Them Back In,tt0843873\nnvnag6ta7LA,2006.0,1,10,2016,Snakes on a Train,I Hate Goddamn Snakes,tt0843873\nDxVqAcNKMNk,2006.0,10,10,2016,Snakes on a Train,Giant Snake Attack,tt0843873\nCdAJ9-36cAM,2006.0,4,10,2016,Snakes on a Train,\"That's Not Marijuana, Man\",tt0843873\ndGIyVafU14c,2009.0,4,10,2016,Mega Shark vs. Giant Octopus,Smell Is a Powerful Thing,tt1350498\nwh9ZsEMo0-o,2009.0,1,10,2016,Mega Shark vs. Giant Octopus,Oil Rig Obliteration,tt1350498\nZ2yt_J6z2FQ,2009.0,5,10,2016,Mega Shark vs. Giant Octopus,Pull Up Now!,tt1350498\nHkNa8r5E770,2009.0,3,10,2016,Mega Shark vs. Giant Octopus,It Rises,tt1350498\n3ycDiqPVBqo,2009.0,9,10,2016,Mega Shark vs. Giant Octopus,You're Insane!,tt1350498\ndLc8QqtMhYQ,2009.0,8,10,2016,Mega Shark vs. Giant Octopus,The Devil's On Our Tail!,tt1350498\nMa5iacR9d74,2009.0,6,10,2016,Mega Shark vs. Giant Octopus,Who Wants Shark Skin Boots?,tt1350498\nKNol4Te8mCs,2009.0,10,10,2016,Mega Shark vs. Giant Octopus,Tentacles vs. Teeth,tt1350498\nViWgPQKgQYU,2009.0,7,10,2016,Mega Shark vs. Giant Octopus,Goodbye Golden Gate,tt1350498\nKsU5oT6FhE8,2009.0,2,10,2016,Mega Shark vs. Giant Octopus,Shark Bites Plane,tt1350498\nqB26s5dx_sQ,2010.0,8,10,2016,Ong Bak 3: The Final Battle,A Hopeless Fight,tt1653690\np76b_u00SSU,2010.0,3,10,2016,Ong Bak 3: The Final Battle,The Power is Mine,tt1653690\njsLRdkCMvxI,2010.0,1,10,2016,Ong Bak 3: The Final Battle,Break Him,tt1653690\nr6AmK5ecvRE,2010.0,7,10,2016,Ong Bak 3: The Final Battle,Battling the Guards,tt1653690\n_ZiRPpAgOlY,2010.0,6,10,2016,Ong Bak 3: The Final Battle,No Match for Tien,tt1653690\nSpaZXamzgwA,2010.0,2,10,2016,Ong Bak 3: The Final Battle,Get the Rebel's Head,tt1653690\nUNvtKMt78aY,2010.0,4,10,2016,Ong Bak 3: The Final Battle,A Miserable End,tt1653690\niHDhfU-N87E,2010.0,5,10,2016,Ong Bak 3: The Final Battle,Same Rope,tt1653690\nPTwqLCxIMiU,2010.0,9,10,2016,Ong Bak 3: The Final Battle,Final Battle,tt1653690\nIwQVcVqDUqE,2011.0,9,10,2016,Puncture,Overdose,tt1582248\nbjUMh2wObW8,2011.0,10,10,2016,Puncture,We're Going to Court,tt1582248\niIcbE_xFIuw,2011.0,8,10,2016,Puncture,Cocaine Under Your Nose,tt1582248\nSKMgjxAgidE,2011.0,7,10,2016,Puncture,Bright Light From Dark Places,tt1582248\nK_0hl7Yc0fI,2011.0,6,10,2016,Puncture,Sex Therapy,tt1582248\nqKrNYYuf7Z4,2011.0,5,10,2016,Puncture,Cut Your Losses,tt1582248\nSNCyMweQ_8c,2011.0,4,10,2016,Puncture,Medical Suppliers Conference,tt1582248\n4_3PUB38zJU,2011.0,2,10,2016,Puncture,I Want a Divorce,tt1582248\nw_V5UPmEH_s,2011.0,3,10,2016,Puncture,Safety Needles,tt1582248\nRb3em4rmYxs,2011.0,1,10,2016,Puncture,Hotshot Lawyer,tt1582248\n_iw7PLtjjow,2015.0,7,10,2016,Wild Card,I Earned My Past,tt2231253\no1DgvimHOvw,2015.0,4,10,2016,Wild Card,Tell Me You Love Me,tt2231253\nkmr68ZevIrM,2015.0,9,10,2016,Wild Card,On Trial For Your Life,tt2231253\nnBRTe09eseE,2015.0,10,10,2016,Wild Card,Butter Knife Brutality,tt2231253\nEJCaAADpCuQ,2015.0,8,10,2016,Wild Card,Casino Clash,tt2231253\n2tWroNJp2zI,2015.0,2,10,2016,Wild Card,What Are Your Qualifications?,tt2231253\nKINtZPTjGOM,2015.0,5,10,2016,Wild Card,When Luck Comes Calling,tt2231253\nrxme5eLoK5E,2015.0,6,10,2016,Wild Card,The Big Bet,tt2231253\niB8eR7GugQY,2015.0,3,10,2016,Wild Card,Nick's Sweet Side,tt2231253\nMBY84LUh7s4,2015.0,1,10,2016,Wild Card,You're My Own Little Hero,tt2231253\nP_VgDHPDtK8,1951.0,8,8,2016,A Streetcar Named Desire,The Kindness of Strangers,tt0044081\nvLxUYa47OXE,1951.0,7,8,2016,A Streetcar Named Desire,Pearls Before Swine,tt0044081\nNapj_I8kdHY,1951.0,5,8,2016,A Streetcar Named Desire,I'm the King Around Here,tt0044081\nBfniNOclXKs,1951.0,4,8,2016,A Streetcar Named Desire,He's Like an Animal,tt0044081\nkYA9hvcLekg,1951.0,3,8,2016,A Streetcar Named Desire,Stella!,tt0044081\n9UMiW3dzW8g,1951.0,2,8,2016,A Streetcar Named Desire,The Napoleonic Code,tt0044081\nSp_ZkjTIRiI,1951.0,6,8,2016,A Streetcar Named Desire,Meetings with Strangers,tt0044081\nV6TrgQxf3lk,1951.0,1,8,2016,A Streetcar Named Desire,You Must Be Stanley,tt0044081\nVWX9yxvtjxo,2014.0,1,10,2016,Wish I Was Here,Swear Jar,tt2870708\nI_Ld8Rtl-Gc,2014.0,9,10,2016,Wish I Was Here,Confronting Terry,tt2870708\nj_a_zvQOrIE,2014.0,10,10,2016,Wish I Was Here,Remember How Fast It Goes,tt2870708\nYkYypI0-OAY,2014.0,8,10,2016,Wish I Was Here,Maybe You Can Believe in Family,tt2870708\nBaSUY4geCtE,2014.0,7,10,2016,Wish I Was Here,The Other Side of Heartbreak,tt2870708\nxXjPITaIjPA,2014.0,3,10,2016,Wish I Was Here,My Child Shaved Her Head!,tt2870708\nDh6M4SEdLdU,2014.0,6,10,2016,Wish I Was Here,You Won't Have to Squint,tt2870708\nivzvZlKaKAs,2014.0,5,10,2016,Wish I Was Here,Hiding in a Fish Bowl,tt2870708\nV0Y4f1UoH9o,2014.0,4,10,2016,Wish I Was Here,A Time For Everything,tt2870708\nu_4L7Dx1rIg,2014.0,2,10,2016,Wish I Was Here,We've Decided to Go African-American,tt2870708\nRz0JV0WUjPo,2015.0,10,10,2016,The DUFF,Getting the Girl,tt1666801\n4YFz0PJernc,2015.0,9,10,2016,The DUFF,Labels Are Meaningless,tt1666801\nNVCvHb1UK_g,2015.0,8,10,2016,The DUFF,Pull it Together,tt1666801\nFK7N96w_3FU,2015.0,5,10,2016,The DUFF,It's Go Time,tt1666801\nlKwghMLo0AY,2015.0,7,10,2016,The DUFF,The Date Game Plan,tt1666801\nMIpPd7IhPNA,2015.0,6,10,2016,The DUFF,Bianca Goes Viral,tt1666801\neXVVSJUhDmo,2015.0,4,10,2016,The DUFF,Unfriended,tt1666801\n-o-C21COWIQ,2015.0,3,10,2016,The DUFF,,tt1666801\nsHt3TElCugg,2015.0,1,10,2016,The DUFF,The Hottest Friends,tt1666801\nqwUgyrgP9H4,2015.0,2,10,2016,The DUFF,What Homecoming Means to Me,tt1666801\nCGHuALdM57s,2015.0,10,10,2016,Mortdecai,I Deeply Love My Mustache,tt3045616\nzUvgi8Rxl9Q,2015.0,9,10,2016,Mortdecai,Fingers All Look the Same,tt3045616\n70zF5FTAfAE,2015.0,8,10,2016,Mortdecai,The Fine Art of Fencing,tt3045616\nTqVLkE4Lr8U,2015.0,7,10,2016,Mortdecai,Shellfish at a Catered Affair?,tt3045616\nBr3e2gRhBZw,2015.0,6,10,2016,Mortdecai,Feel Me,tt3045616\n1H_5SNtiMIs,2015.0,4,10,2016,Mortdecai,Open Your Balls,tt3045616\nUk4tuWVB-ho,2015.0,5,10,2016,Mortdecai,Motorcycle Chase,tt3045616\n8lRysx2QaZg,2015.0,1,10,2016,Mortdecai,A Sympathetic Gag Reflex,tt3045616\nkAd-K7nteyI,2015.0,3,10,2016,Mortdecai,I'm on the Bonnet!,tt3045616\n6yuDWX2prJg,2015.0,2,10,2016,Mortdecai,I Believe I Shot Jock,tt3045616\nGECuST_cjC8,2011.0,9,10,2016,Trespass,Security Call,tt1674784\nNBhmNRq0uU8,2011.0,10,10,2016,Trespass,Fire in the Shed,tt1674784\nYCIO_JbmcZ0,2011.0,8,10,2016,Trespass,Fake Necklace,tt1674784\nuZhJYIZthNg,2011.0,7,10,2016,Trespass,There is No Money,tt1674784\nk4sAUqI-y8A,2011.0,6,10,2016,Trespass,Sarah and Jonah,tt1674784\naGk88ZwiLRs,2011.0,5,10,2016,Trespass,This is a Negotiation,tt1674784\nEyqjJVgnJMo,2011.0,4,10,2016,Trespass,Who's Cutting Them?,tt1674784\nCKQiEEWqW-0,2011.0,3,10,2016,Trespass,Daddy's Home,tt1674784\nUUPZ8Bzq1wA,2011.0,2,10,2016,Trespass,\"Run, Sarah!\",tt1674784\noe6nOL82mmU,2011.0,1,10,2016,Trespass,No Party,tt1674784\nc7RyGNzyGB4,2011.0,7,10,2016,Paranormal Activity 3,Just Let Her Go!,tt1778304\nt3dmXdp2O0Q,2011.0,9,10,2016,Paranormal Activity 3,The Witch House,tt1778304\nuzIEsj6Me9g,2011.0,10,10,2016,Paranormal Activity 3,Demonic Death,tt1778304\nqYEceRHS8jM,2011.0,8,10,2016,Paranormal Activity 3,There's No Ghost,tt1778304\n42tGOQelinA,2011.0,6,10,2016,Paranormal Activity 3,Bloody Mary,tt1778304\n76gNp5rkFX0,2011.0,5,10,2016,Paranormal Activity 3,Haunting the Babysitter,tt1778304\n6_ZBUhBx3w8,2011.0,4,10,2016,Paranormal Activity 3,Toby's Closet,tt1778304\nBqcHbcPo7zk,2011.0,3,10,2016,Paranormal Activity 3,Dark Forces,tt1778304\nLi8ROpFUD4E,2011.0,2,10,2016,Paranormal Activity 3,Find Anything?,tt1778304\nj2aGGNQW_7M,2011.0,1,10,2016,Paranormal Activity 3,Ghostly Sex,tt1778304\nISt_AN1f0Xw,2010.0,10,10,2016,Paranormal Activity 2,Evil Katie,tt1536044\nhTF5JMKgI1I,2010.0,9,10,2016,Paranormal Activity 2,Basement Attack,tt1536044\nyjrwCXMRh24,2010.0,8,10,2016,Paranormal Activity 2,Exorcising the Demon,tt1536044\n7PfDjA-3RP4,2010.0,7,10,2016,Paranormal Activity 2,Dragged to the Basement,tt1536044\nNerShU5K9Ac,2010.0,6,10,2016,Paranormal Activity 2,The Dog is Attacked,tt1536044\nIqJSc4WySE8,2010.0,5,10,2016,Paranormal Activity 2,Kitchen Ghost,tt1536044\nTCK-ODyUwoM,2010.0,3,10,2016,Paranormal Activity 2,Ali's Locked Out,tt1536044\nL4kxEO7Okhc,2010.0,4,10,2016,Paranormal Activity 2,Baby Levitation,tt1536044\nPBBZHnc8Jxk,2010.0,2,10,2016,Paranormal Activity 2,Fire in the Kitchen,tt1536044\nYCleI91Af3s,2010.0,1,10,2016,Paranormal Activity 2,Baby Room Disturbance,tt1536044\nqnyoHZa5rrQ,2012.0,2,10,2016,Moonrise Kingdom,What Kind of Bird Are You?,tt1748122\nHhP2rEHWxCI,2012.0,10,10,2016,Moonrise Kingdom,Social Services,tt1748122\ng2py3Bx0Nr8,2012.0,9,10,2016,Moonrise Kingdom,Married by Cousin Ben,tt1748122\nz5xRXKOAu-Q,2012.0,6,10,2016,Moonrise Kingdom,Was He a Good Dog?,tt1748122\nBlC3yzpzATY,2012.0,8,10,2016,Moonrise Kingdom,I Love You,tt1748122\ni6XlRCrUvxU,2012.0,7,10,2016,Moonrise Kingdom,This is Our Land!,tt1748122\nsorSQzGGdv0,2012.0,5,10,2016,Moonrise Kingdom,\"Dear Suzy, Dear Sam\",tt1748122\n3l4Uuh_byns,2012.0,3,10,2016,Moonrise Kingdom,Running Away Together,tt1748122\n5bBti58el_g,2012.0,4,10,2016,Moonrise Kingdom,I'm On Your Side,tt1748122\nJQoNhRN9CiI,2012.0,1,10,2016,Moonrise Kingdom,Camp Ivanhoe,tt1748122\nnKBE3U4mwuY,2010.0,9,11,2016,Act of Vengeance,Rooftop Confrontation,tt0072067\nKbaqSn9LDiM,2010.0,4,11,2016,Act of Vengeance,Freedom and Terror,tt0072067\noHB3yg1vFAQ,2010.0,3,11,2016,Act of Vengeance,Raid on the Hideout,tt0072067\nN1Jg10AGbGk,2010.0,11,11,2016,Act of Vengeance,Persuasion & Wisdom,tt0072067\nI_oKf3IEGmQ,2010.0,5,11,2016,Act of Vengeance,The Irrefutable Truth,tt0072067\nXfKq2_EzkE4,2010.0,7,11,2016,Act of Vengeance,Not a Single Evil Bone,tt0072067\nha40ifVCakk,2010.0,6,11,2016,Act of Vengeance,Quoting Scripture,tt0072067\nJfFRCGgpkSg,2010.0,1,11,2016,Act of Vengeance,Hadji is Arrested,tt0072067\nwTqPJaupccs,2010.0,2,11,2016,Act of Vengeance,The Start of the Operation,tt0072067\nH_CVt8o2GAc,2010.0,8,11,2016,Act of Vengeance,I Am Innocent,tt0072067\nHfiKoIVr3T0,2010.0,10,11,2016,Act of Vengeance,God Sees All,tt0072067\nK9Z6ZZIZPFw,1985.0,3,12,2016,Desperately Seeking Susan,Jimi Hendrix's Jacket,tt0089017\n3TAoWo3kBkw,1985.0,2,12,2016,Desperately Seeking Susan,Stalking Susan,tt0089017\nOWRqJA31H_E,1985.0,10,12,2016,Desperately Seeking Susan,Magic Trick,tt0089017\nlnQRXfjI664,1985.0,12,12,2016,Desperately Seeking Susan,Roberta Isn't Susan,tt0089017\nwEzZX_MFu4w,1985.0,11,12,2016,Desperately Seeking Susan,\"Gary, Meet Dez\",tt0089017\nZwlQdSE1LdM,1985.0,8,12,2016,Desperately Seeking Susan,Got Any Pot,tt0089017\n5mbqW5rZaCI,1985.0,9,12,2016,Desperately Seeking Susan,Dez Confesses to Jim,tt0089017\nxyiG9P_Vc7A,1985.0,7,12,2016,Desperately Seeking Susan,Into the Groove,tt0089017\n8HI62qvNWPU,1985.0,6,12,2016,Desperately Seeking Susan,Bad Luck Is Following You Around,tt0089017\nwt0_m5mUsbo,1985.0,4,12,2016,Desperately Seeking Susan,Take a Valium,tt0089017\nrtsis0lgx7k,1985.0,5,12,2016,Desperately Seeking Susan,Rooftop Kiss,tt0089017\nXZXg3WkUGPw,1985.0,1,12,2016,Desperately Seeking Susan,Desperate is Romantic,tt0089017\nPC_O4NLvktE,2006.0,1,10,2016,The Da Vinci Treasure,No Honor Among Thieves,tt0810817\nwRCiwDkYtVo,2006.0,10,10,2016,The Da Vinci Treasure,Saved by the Shroud,tt0810817\ngVIdf-kZJXk,2006.0,8,10,2016,The Da Vinci Treasure,That's Our Key,tt0810817\nCbM6muvlHOw,2006.0,7,10,2016,The Da Vinci Treasure,We've Got Company,tt0810817\ngsXRITF5hcI,2006.0,9,10,2016,The Da Vinci Treasure,Da Vinci's Treasure,tt0810817\nVOgIyusLSOA,2006.0,6,10,2016,The Da Vinci Treasure,Decoding the Map,tt0810817\niMigt5aPvPQ,2006.0,4,10,2016,The Da Vinci Treasure,\"This is a War, My War\",tt0810817\naKNOSJT3vCo,2006.0,5,10,2016,The Da Vinci Treasure,Double-Decker Brawl,tt0810817\nLDDFccHEa3s,2006.0,3,10,2016,The Da Vinci Treasure,Give Me the Shroud,tt0810817\nl4Ws4ou6UO0,2006.0,2,10,2016,The Da Vinci Treasure,Your Clues Lead to My Treasure,tt0810817\nS5x3QGlo22M,1967.0,9,10,2016,In the Heat of the Night,Loneliness,tt0061811\ncXfD-Ai_QuA,1967.0,6,10,2016,In the Heat of the Night,You're Gonna Stay Here,tt0061811\nKc2EYuV33Ns,1967.0,5,10,2016,In the Heat of the Night,Keep Cool Harvey,tt0061811\n2UrB8TI5El4,1967.0,8,10,2016,In the Heat of the Night,Slapping Endicott,tt0061811\ncmBN-X701Gg,1967.0,2,10,2016,In the Heat of the Night,Top Homicide Detective,tt0061811\nLoLBuoPL7nI,1967.0,10,10,2016,In the Heat of the Night,Take Care,tt0061811\nRisSaXLB5ok,1967.0,3,10,2016,In the Heat of the Night,Examining the Corpse,tt0061811\ni6n8VyqaCQ4,1967.0,4,10,2016,In the Heat of the Night,They Call Me Mr. Tibbs,tt0061811\niI8w5AQJcN8,1967.0,7,10,2016,In the Heat of the Night,Whipping Boy,tt0061811\ng-g4vCbZsDM,1967.0,1,10,2016,In the Heat of the Night,I'm a Police Officer,tt0061811\nnAK7Uyg_Y7Y,2008.0,10,10,2016,Ong Bak 2,Final Fight,tt0785035\n1S3Vom2V2lY,2008.0,9,10,2016,Ong Bak 2,The Crow Demon,tt0785035\nvL5LepmOUQk,2008.0,1,10,2016,Ong Bak 2,Crocodile Fight,tt0785035\nk92e50obPsQ,2008.0,3,10,2016,Ong Bak 2,Master Warrior,tt0785035\no02NQhYm4lU,2008.0,2,10,2016,Ong Bak 2,The Elephant Lord,tt0785035\n6kxFTk_Yoq0,2008.0,4,10,2016,Ong Bak 2,The Cave Witch,tt0785035\nPEOiWoM2q6Y,2008.0,6,10,2016,Ong Bak 2,Slave Fight,tt0785035\nsWd44kgjkeE,2008.0,8,10,2016,Ong Bak 2,Assassin Bloodbath,tt0785035\n4QOA-TyD42o,2008.0,5,10,2016,Ong Bak 2,River Fight,tt0785035\n1u7U16N_yJg,2008.0,7,10,2016,Ong Bak 2,Coronation Massacre,tt0785035\n4hAjAP6kPg4,1981.0,5,10,2016,Scanners,Scanning the Assassins,tt0081455\ngoAo5dC8P1s,1954.0,9,10,2016,Seven Brides for Seven Brothers,\"Spring, Spring, Spring\",tt0047472\nQbzJtP75NqM,1954.0,5,10,2016,Seven Brides for Seven Brothers,The Barn Dance,tt0047472\nsmwBZ-3HAPY,1954.0,10,10,2016,Seven Brides for Seven Brothers,Shotgun Wedding,tt0047472\n6_gHh5IEgi0,1954.0,7,10,2016,Seven Brides for Seven Brothers,Lonesome Polecat,tt0047472\nSqaM88u082Y,1954.0,6,10,2016,Seven Brides for Seven Brothers,Barn Raising,tt0047472\n846by3LOKlA,1954.0,8,10,2016,Seven Brides for Seven Brothers,Sobbin' Women,tt0047472\nG87BCljOeuA,1954.0,4,10,2016,Seven Brides for Seven Brothers,Goin' Courtin',tt0047472\nkhfeRoRCp7c,1954.0,3,10,2016,Seven Brides for Seven Brothers,When You're In Love,tt0047472\nz7OEKs7hAEk,1954.0,2,10,2016,Seven Brides for Seven Brothers,Bless Your Beautiful Hide,tt0047472\ndvJqm3PFKLk,1954.0,1,10,2016,Seven Brides for Seven Brothers,Looking for a Wife,tt0047472\n8VItLIW2D4g,2003.0,10,10,2016,Johnny English,Does Your Mother Know?,tt0274166\nAb3QDSj2ws0,2003.0,9,10,2016,Johnny English,The Archbishop's Bottom,tt0274166\nmVdTVvgW4EM,2003.0,6,10,2016,Johnny English,Like a Coiled Viper,tt0274166\n_FurW3BTcjw,2003.0,8,10,2016,Johnny English,Muscle Relaxant and Truth Serum,tt0274166\nn3Y6B_UKam0,2003.0,7,10,2016,Johnny English,Sushi,tt0274166\n7ELmyf41TnQ,2003.0,4,10,2016,Johnny English,Tow Truck Chase,tt0274166\nWZxFIAFTfEU,2003.0,3,10,2016,Johnny English,The Assailant,tt0274166\n93TnnyxGBqI,2003.0,5,10,2016,Johnny English,Disturbing the Funeral,tt0274166\nU6CGGUJKymk,2003.0,2,10,2016,Johnny English,Subduing the Assailant,tt0274166\n2uyy1EOBBm4,2003.0,1,10,2016,Johnny English,Have You Seen My Secretary?,tt0274166\nh_JeXTLSCQk,1983.0,8,8,2016,Cujo,Breathe!,tt0085382\nsVg5_6gjzlg,1983.0,4,8,2016,Cujo,You're Rabid!,tt0085382\n5CS1t_QtZOU,1983.0,7,8,2016,Cujo,Donna Is Bitten,tt0085382\nT37ezlBVMME,1983.0,6,8,2016,Cujo,\"Get Back in That Barn, Damn You\",tt0085382\nWyKHdjh7_2E,1983.0,5,8,2016,Cujo,It's Just a Doggie,tt0085382\nqNnfnI8ai6o,1983.0,2,8,2016,Cujo,Won't Hurt Him,tt0085382\nVN-AkfFZwfI,1983.0,3,8,2016,Cujo,What's the Matter?,tt0085382\nawPDaFp70yI,1983.0,1,8,2016,Cujo,A Bat Bites,tt0085382\nuGrrtkaWoU8,1983.0,11,12,2016,Valley Girl,Randy Stalks Julie,tt0086525\nh0qWin97VyI,1983.0,10,12,2016,Valley Girl,It's Your Friends,tt0086525\nFcEchaH6EJk,1983.0,8,12,2016,Valley Girl,I Melt With You,tt0086525\ns59yqpV0ICo,1983.0,6,12,2016,Valley Girl,Driver's Ed,tt0086525\nbKkJKMjnYf4,1983.0,5,12,2016,Valley Girl,Julie Comes Home,tt0086525\ns9FoorJGkrA,1983.0,4,12,2016,Valley Girl,Let's Get Outta Here,tt0086525\nxZ_GOyfnTTs,1983.0,12,12,2016,Valley Girl,Homecoming Fight,tt0086525\nTuOYe44bL0U,1983.0,7,12,2016,Valley Girl,Meeting Julie's Dad,tt0086525\n3ExJ909lWds,1983.0,9,12,2016,Valley Girl,Slumber Party,tt0086525\nL-xNqfIXuaM,1983.0,2,12,2016,Valley Girl,What a Hunk!,tt0086525\nSKoj1Its8vo,1983.0,3,12,2016,Valley Girl,We're Going Back,tt0086525\nuhH9ewIEbnU,1983.0,1,12,2016,Valley Girl,I'm Totally Not in Love With You,tt0086525\nM8T58oBOsAU,1981.0,9,10,2016,Scanners,Her Unborn Scanner,tt0081455\nuTINsxfQwUw,1981.0,2,10,2016,Scanners,Mind Over Matter,tt0081455\nCy6I9ydBSWc,1981.0,10,10,2016,Scanners,I'm Gonna Suck Your Brain Dry,tt0081455\n7lAIabgWtbI,1981.0,6,10,2016,Scanners,Kim's Scanner Powers,tt0081455\nF9puQXwExbY,1981.0,3,10,2016,Scanners,Too Much Pressure,tt0081455\nyKNauUKkW9Q,1981.0,8,10,2016,Scanners,Vale vs. The Computer,tt0081455\nyWGL8RTONpM,1981.0,4,10,2016,Scanners,Control His Heart,tt0081455\nqnp1jfLhtck,1981.0,1,10,2016,Scanners,Mind Blowing,tt0081455\nXFosHLSA03w,1981.0,7,10,2016,Scanners,Keller the Killer,tt0081455\nNvKOhmZA9bU,2013.0,8,11,2016,Killing Season,Salt and Lemon Juice Torture,tt1480295\nyp1luet0nkU,2013.0,11,11,2016,Killing Season,Nothing But Meat and Flesh,tt1480295\nwC-N_KnYNLw,2013.0,4,11,2016,Killing Season,You Shot Me!,tt1480295\nW3s4HSqODSE,2013.0,5,11,2016,Killing Season,Confess to Me,tt1480295\ndJcvUGXOMMw,2013.0,9,11,2016,Killing Season,\"Everywhere I Look, I See Red\",tt1480295\nzdKxziIlC-c,2013.0,6,11,2016,Killing Season,Healing Wounds,tt1480295\nYOuQ9V-tzps,2013.0,7,11,2016,Killing Season,You Like to Talk,tt1480295\n0XZlgVrxKfg,2013.0,2,11,2016,Killing Season,One Day It Snaps,tt1480295\ng5iR3s9FA_g,2013.0,1,11,2016,Killing Season,Engine Trouble,tt1480295\n2xH234D7lao,2013.0,3,11,2016,Killing Season,War Is Not Fair,tt1480295\nHSQl1nhi3N0,2013.0,10,11,2016,Killing Season,The Confession,tt1480295\nX3Ujc0YaltE,2009.0,1,10,2016,Transmorphers: Fall of Man,Cellular Slaughter,tt1376460\nTdffyS619Qw,2009.0,7,10,2016,Transmorphers: Fall of Man,Heavy Metal Heart,tt1376460\ni4zxmn6_aRA,2009.0,8,10,2016,Transmorphers: Fall of Man,They're Terraforming the Planet,tt1376460\nML1hxH1yQb8,2009.0,6,10,2016,Transmorphers: Fall of Man,The Machines Are Coming,tt1376460\ne3BQROKhvgo,2009.0,5,10,2016,Transmorphers: Fall of Man,\"Taste This, Tin Head!\",tt1376460\nHk-_1SD1pic,2009.0,3,10,2016,Transmorphers: Fall of Man,We Need Reinforcements!,tt1376460\nB1Y4s89sBpY,2009.0,4,10,2016,Transmorphers: Fall of Man,What Better Way to Go Out?,tt1376460\n204zPTniPrU,2009.0,2,10,2016,Transmorphers: Fall of Man,In Pursuit,tt1376460\n5CfzQ1956jw,2009.0,10,10,2016,Transmorphers: Fall of Man,Endurance of the Human Spirit,tt1376460\nhTdBkXMvY6o,2009.0,9,10,2016,Transmorphers: Fall of Man,The Plan,tt1376460\nFPgDrHxAntE,2007.0,9,10,2016,Transmorphers,The Final Transformation,tt0960835\nphOJkEJled8,2007.0,8,10,2016,Transmorphers,Death From Above,tt0960835\nYGmK5uMOgZ0,2007.0,10,10,2016,Transmorphers,The Machines Have Fallen,tt0960835\n3YWCnhDDMac,2007.0,6,10,2016,Transmorphers,Massacre the Machines,tt0960835\nFIjtDcICyIE,2007.0,4,10,2016,Transmorphers,Don't Call Me a Traitor,tt0960835\nwxRSLer7VIg,2007.0,5,10,2016,Transmorphers,Relentless Robots,tt0960835\n3TN3wohDAXg,2007.0,7,10,2016,Transmorphers,I Made You Too Human,tt0960835\n60d2lmx8LQM,2007.0,3,10,2016,Transmorphers,Testing the Team,tt0960835\nBW3ZFYQQXb8,2007.0,1,10,2016,Transmorphers,Machines Now Walk the Earth,tt0960835\nFVTtA6m68rg,2007.0,2,10,2016,Transmorphers,Sacrificing the Squad,tt0960835\nNJzij2bw0f4,1985.0,4,10,2016,The Return of the Living Dead,We Have a Little Problem,tt0089907\nyhjD1CmE9gs,1985.0,10,10,2016,The Return of the Living Dead,My Zombie Boyfriend,tt0089907\n2NhF6zphSx8,1985.0,9,10,2016,The Return of the Living Dead,Why Do You Eat People?,tt0089907\nKkV42m5wVTk,1985.0,8,10,2016,The Return of the Living Dead,Punks vs. Zombie,tt0089907\nd6zX6-Rf4JY,1985.0,7,10,2016,The Return of the Living Dead,Brains!,tt0089907\nK7bA4PB0zdk,1985.0,6,10,2016,The Return of the Living Dead,Rabid Weasels,tt0089907\nI9npL6x8oFQ,1985.0,3,10,2016,The Return of the Living Dead,Breaking the Seal,tt0089907\nD_xUviDPUOE,1985.0,5,10,2016,The Return of the Living Dead,Headless Zombie,tt0089907\n8mZEPgvvd4I,1985.0,2,10,2016,The Return of the Living Dead,245-Trioxin,tt0089907\nHdh3npiRip4,1985.0,1,10,2016,The Return of the Living Dead,Fresh Cadavers,tt0089907\najRRS6NzMBU,2012.0,10,10,2016,American Reunion,You're Our Dick,tt1605630\nU97UagTDW_0,2012.0,9,10,2016,American Reunion,A Well-Placed Thumb,tt1605630\n38jPEmoNjAw,2012.0,8,10,2016,American Reunion,Who You Calling Skank?,tt1605630\nqnVGIFPFry8,2012.0,7,10,2016,American Reunion,No More Wars!,tt1605630\n5Xbdu0wnun4,2012.0,6,10,2016,American Reunion,There Are Services,tt1605630\nnQLSbuSZzE8,2012.0,5,10,2016,American Reunion,Mr. Moo,tt1605630\na469ezsg86A,2012.0,3,10,2016,American Reunion,Stifler's Revenge,tt1605630\nZvG2Q_KNCOA,2012.0,2,10,2016,American Reunion,This Must Be Awkward,tt1605630\nJQLBuA1JCfg,2012.0,4,10,2016,American Reunion,A Babysitter's Job Never Ends,tt1605630\nutS5IxGpAPI,2012.0,1,10,2016,American Reunion,Big Stiffie,tt1605630\n_dVAPmlzo7g,1972.0,1,8,2016,The Last House on the Left,You Want To Buy Grass,tt0068833\n8_mRYeBdwcc,1972.0,4,8,2016,The Last House on the Left,Tortured and Stabbed,tt0068833\np4TZcBFacUg,1972.0,8,8,2016,The Last House on the Left,Revenge,tt0068833\n4UgTUqi3Xxk,1972.0,2,8,2016,The Last House on the Left,Pee Your Pants,tt0068833\nfTMY9OkzTBA,1972.0,3,8,2016,The Last House on the Left,Phyllis Nearly Escapes,tt0068833\nNJtOmLkUSKs,1972.0,6,8,2016,The Last House on the Left,Fred's Poor Little Fella,tt0068833\nZAhwNITS1WQ,1972.0,5,8,2016,The Last House on the Left,Mari Gets Sliced,tt0068833\n8rN5CaA7OUI,1972.0,7,8,2016,The Last House on the Left,Blow Your Brains Out!,tt0068833\nQaxQWGA3wys,2012.0,5,10,2016,REC 3: Genesis,SpongeJohn NoPants,tt1649444\nJaTnlFHOkZ8,2012.0,10,10,2016,REC 3: Genesis,You May Now Kiss the Zombie,tt1649444\nLydYnbMzIGA,2012.0,9,10,2016,REC 3: Genesis,Disarming Clara,tt1649444\nucqBb8FMJ74,2012.0,6,10,2016,REC 3: Genesis,Kitchen Attack,tt1649444\nMB-oElVuFoc,2012.0,3,10,2016,REC 3: Genesis,Zombie Prayer,tt1649444\nh0lUVSpj310,2012.0,2,10,2016,REC 3: Genesis,Zombie vs. Tire Iron,tt1649444\nOr3JIDwWgH4,2012.0,1,10,2016,REC 3: Genesis,Zombie Wedding Reception,tt1649444\nNds71RtsnxY,2012.0,8,10,2016,REC 3: Genesis,Desperate Escape,tt1649444\np9Iw3217IRs,2012.0,7,10,2016,REC 3: Genesis,This Is My Day!,tt1649444\nn5wiHK9V_ss,2012.0,4,10,2016,REC 3: Genesis,The Zombie Outbreak,tt1649444\nJxs8p22Pq_Y,2015.0,9,10,2016,The Age of Adaline,He Knows,tt1655441\nZQ146HsyzE8,2015.0,10,10,2016,The Age of Adaline,Aging Again,tt1655441\nkTKIACVqDzQ,2015.0,8,10,2016,The Age of Adaline,Stay,tt1655441\nd5nAgnojNgk,2015.0,7,10,2016,The Age of Adaline,The Scar,tt1655441\n4Em53e2p7HQ,2015.0,6,10,2016,The Age of Adaline,Trivial Pursuit,tt1655441\nk8VqG4ftlK0,2015.0,5,10,2016,The Age of Adaline,A Love Lost in Time,tt1655441\nivGfI_8TE9I,2015.0,3,10,2016,The Age of Adaline,Let Go,tt1655441\nzkR_E8jw6qE,2015.0,4,10,2016,The Age of Adaline,Jenny Actually,tt1655441\nQ59V4qwZI14,2015.0,1,10,2016,The Age of Adaline,No Scientific Explanation,tt1655441\nCmssRVrBMxU,2015.0,2,10,2016,The Age of Adaline,27 Floors with You,tt1655441\n7Ce8fa-b_m0,2009.0,8,10,2016,REC 2,Death by Firecracker,tt1245112\ncwkEbwJR0aM,2009.0,7,10,2016,REC 2,Tell Me Where You Are!,tt1245112\nt9_VbtJdDSQ,2009.0,6,10,2016,REC 2,One Way Out,tt1245112\nsS8ECvGKWT4,2009.0,4,10,2016,REC 2,Blood of the Demon,tt1245112\n_lJxUhMK4ZE,2009.0,5,10,2016,REC 2,Demon Zombie Swarm,tt1245112\nepbmsvL_da8,2009.0,3,10,2016,REC 2,Not a Child Anymore,tt1245112\nZG5aSjd3ejo,2009.0,1,10,2016,REC 2,Zombie Attack,tt1245112\nMATnKRvs8K8,2009.0,2,10,2016,REC 2,A Secret Operation,tt1245112\nQYtcftNU7Gs,2009.0,9,10,2016,REC 2,Demon in the Dark,tt1245112\nyLJU7uywTXc,2009.0,10,10,2016,REC 2,The Demon Victorious,tt1245112\ncP4Q_O_ZKWA,2013.0,3,10,2016,World War Z,They're Coming,tt0816711\n4rGu9dMtQWA,2013.0,8,10,2016,World War Z,Lab Attack,tt0816711\nYqjCnk31_Ss,2013.0,6,10,2016,World War Z,Zombie Stampede,tt0816711\nuU0DNCV22dU,2013.0,5,10,2016,World War Z,Over the Wall,tt0816711\nGDhe2vbzjwU,2013.0,4,10,2016,World War Z,We Just Woke the Dead,tt0816711\nBLIuci6IBIg,2013.0,2,10,2016,World War Z,12 Seconds to Infection,tt0816711\nYdhnqI-beNo,2013.0,1,10,2016,World War Z,Zombie Outbreak,tt0816711\nmvbLx0pbohk,2013.0,7,10,2016,World War Z,Flight of the Living Dead,tt0816711\nPAkRrp46SBE,2013.0,9,10,2016,World War Z,Zombie Camouflage,tt0816711\n0mwkZUkwEHw,2013.0,10,10,2016,World War Z,Be Prepared for Anything,tt0816711\nbFrORNp20Js,2013.0,11,11,2016,The Protector 2,Tusk Bombs,tt1925518\nMMcWHkb8Ank,2013.0,8,11,2016,The Protector 2,Fire and Fury,tt1925518\nTVPDfLM9zIw,2013.0,10,11,2016,The Protector 2,The #1 Fighter,tt1925518\nEgkBHCLS0cA,2013.0,7,11,2016,The Protector 2,Temple Fight,tt1925518\nl2zPMIA3SYk,2013.0,6,11,2016,The Protector 2,That All You Got?,tt1925518\n6hxZUTUMkf8,2013.0,9,11,2016,The Protector 2,Electric Fight,tt1925518\nX4b1jFHAC98,2013.0,3,11,2016,The Protector 2,Chased by the Gang,tt1925518\nAcmav3U4xOE,2013.0,5,11,2016,The Protector 2,Shipyard Brawl,tt1925518\nsuz-NZ9GZ80,2013.0,4,11,2016,The Protector 2,Explosive Escape,tt1925518\niWrr0qhRNaA,2013.0,2,11,2016,The Protector 2,Motorbike Gang Attack,tt1925518\nt0hEHI9fcsU,2013.0,1,11,2016,The Protector 2,Beautiful Ass-Kickin' Chick,tt1925518\n2ZMYorajMhk,2012.0,3,12,2016,What Maisie Knew,Making a Castle,tt1932767\n9qmOMFvxI2I,2012.0,2,12,2016,What Maisie Knew,You're What?,tt1932767\nSIgiRJmMz1A,2012.0,1,12,2016,What Maisie Knew,Don't Take Her,tt1932767\nOkiJH2Y4z08,2012.0,4,12,2016,What Maisie Knew,Lincoln,tt1932767\ndbu7AfaXHvE,2012.0,7,12,2016,What Maisie Knew,A Day at the High Line,tt1932767\n2f2hB_pRG24,2012.0,9,12,2016,What Maisie Knew,Back to England,tt1932767\nIcawiMd_kkM,2012.0,5,12,2016,What Maisie Knew,Beale Meets Lincoln,tt1932767\nlhY7RZxINlY,2012.0,8,12,2016,What Maisie Knew,Locked Out,tt1932767\nJ-AftfYVSI8,2012.0,10,12,2016,What Maisie Knew,I'm Taking My Daughter,tt1932767\naQobE1tPeGw,2012.0,11,12,2016,What Maisie Knew,Lincoln Returns,tt1932767\nrLh0UcN75A4,2012.0,12,12,2016,What Maisie Knew,Don't You Want to Come?,tt1932767\nvSCT2CffKDI,2012.0,6,12,2016,What Maisie Knew,She's a Child,tt1932767\nlYEy4it6m3Y,2015.0,10,10,2016,American Ultra,Engaged and Tased,tt3316948\nZ1Cv11vpjhQ,2015.0,9,10,2016,American Ultra,Not So Different,tt3316948\nKz6J6Y2DpL0,2015.0,8,10,2016,American Ultra,Supermarket Skirmish,tt3316948\nAJWkS8Ja9YA,2015.0,7,10,2016,American Ultra,The Old Frying Pan Bullet Trick,tt3316948\nLODjoHqYzyw,2015.0,6,10,2016,American Ultra,\"I Hate You, Man!\",tt3316948\nz-glL87s5lg,2015.0,5,10,2016,American Ultra,I'm Your Handler,tt3316948\nu-M2Zb_B7BY,2015.0,4,10,2016,American Ultra,Escaping the Basement,tt3316948\n1lYlFbsVOjI,2015.0,2,10,2016,American Ultra,The Tough Guy Operatives,tt3316948\nCgow0KNc4Hc,2015.0,3,10,2016,American Ultra,You Got the Monkey Virus?,tt3316948\nOzVZMadRoSQ,2015.0,1,10,2016,American Ultra,I Just Killed Two Gentlemen,tt3316948\nxAmgUnwxCUc,1938.0,8,9,2016,Bringing Up Baby,Two Leopards,tt0029947\n5h8EbDuS0so,1938.0,6,9,2016,Bringing Up Baby,Dinner with a Loon,tt0029947\n0JoIRmQW2es,1938.0,9,9,2016,Bringing Up Baby,The Dinosaur Falls,tt0029947\naAkF2Du59Qw,1938.0,5,9,2016,Bringing Up Baby,Big Game Hunting,tt0029947\n9P-MtbTe3O4,1938.0,2,9,2016,Bringing Up Baby,A Man of Some Dignity,tt0029947\nyPzAML0fs2o,1938.0,7,9,2016,Bringing Up Baby,You Haven't Got an Aunt,tt0029947\nEQDbDIz1Y0E,1938.0,4,9,2016,Bringing Up Baby,I Just Went Gay All of a Sudden,tt0029947\nCiWjwS4lqLY,1938.0,3,9,2016,Bringing Up Baby,30 Pounds of Sirloin Steak,tt0029947\nBVrZAIo3wX4,1938.0,1,9,2016,Bringing Up Baby,The Torn Dress,tt0029947\n6K7Xjdfc0bA,2013.0,10,10,2016,The Wolf of Wall Street,Get Off the Phone!,tt0993846\nDuGfgv_eDEo,2013.0,9,10,2016,The Wolf of Wall Street,The Lamborghini Scene,tt0993846\n5mMnqYaXDk4,2013.0,8,10,2016,The Wolf of Wall Street,I Choose Rich Every Time,tt0993846\nrasqcYuX80A,2013.0,6,10,2016,The Wolf of Wall Street,Bedroom Fight,tt0993846\n2foDdTT3cG8,2013.0,5,10,2016,The Wolf of Wall Street,Welcome to Stratton Oakmont,tt0993846\nl8kCCIoP1jg,2013.0,2,10,2016,The Wolf of Wall Street,The Money Chant,tt0993846\n86TpCwZ4FvY,2013.0,7,10,2016,The Wolf of Wall Street,Daddy Doesn't Get to Touch Mommy,tt0993846\nxbBD7VIJ4cc,2013.0,1,10,2016,The Wolf of Wall Street,\"Fugazi, Fugazi\",tt0993846\nTxHITqC5rxE,2013.0,3,10,2016,The Wolf of Wall Street,I'll Quit My Job Right Now,tt0993846\nI13gMF50oqE,2013.0,4,10,2016,The Wolf of Wall Street,You Married Your Cousin,tt0993846\nVF_-AB2-Ux4,2015.0,8,11,2016,Sicario,That's What We're Dealing With,tt3397884\nh-UqMU-MIig,2015.0,4,11,2016,Sicario,Hell in Yankee Land,tt3397884\nJig6r9FAwAY,2015.0,6,11,2016,Sicario,This Is Where You Negotiate How to Survive,tt3397884\nu-pvs7gVNHo,2015.0,2,11,2016,Sicario,Rigged With Explosives,tt3397884\naa2agiADM04,2015.0,3,11,2016,Sicario,Border Ambush,tt3397884\nGYPwh07eWok,2015.0,5,11,2016,Sicario,A Deadly Mistake,tt3397884\nRwuhnfKnTYY,2015.0,1,11,2016,Sicario,A Horrifying Discovery,tt3397884\nqcGEIq1AEGM,2015.0,7,11,2016,Sicario,Don't Ever Point a Weapon at Me,tt3397884\n4RKjRiO1FPU,2015.0,9,11,2016,Sicario,What a Good Police Officer You Make,tt3397884\naDJJBMXiwiI,2015.0,11,11,2016,Sicario,A Land of Wolves,tt3397884\nvv84nq5_ZY4,2015.0,10,11,2016,Sicario,Time to Meet God,tt3397884\nX9YOhb0FiIM,2011.0,5,11,2016,Take This Waltz,To Seduce You,tt1592281\nUKvQEHlkqJU,2011.0,2,11,2016,Take This Waltz,You Got Me,tt1592281\nzeTYlUcrfRY,2011.0,3,11,2016,Take This Waltz,Pool Exercise,tt1592281\nQ1Yz3J6OGQQ,2011.0,11,11,2016,Take This Waltz,Bye,tt1592281\nt3aYQKl1qbc,2011.0,9,11,2016,Take This Waltz,The Break-up,tt1592281\nD6AzQTg_bPA,2011.0,10,11,2016,Take This Waltz,Life Has a Gap in It,tt1592281\nvioUisPavvA,2011.0,8,11,2016,Take This Waltz,Sobriety Party,tt1592281\nxxmnK05iITY,2011.0,6,11,2016,Take This Waltz,Rickshaw Ride,tt1592281\nHhBAeTBIj0U,2011.0,7,11,2016,Take This Waltz,Unhappy Anniversary,tt1592281\njMHH-fH6oBc,2011.0,4,11,2016,Take This Waltz,I Love You,tt1592281\n1SnNjUe_vuQ,2011.0,1,11,2016,Take This Waltz,In Between Things,tt1592281\ngaLJooLoKjE,2014.0,2,10,2016,The Boxtrolls,Raised by Boxtrolls,tt0787474\nENsr9cH6irs,2014.0,8,10,2016,The Boxtrolls,A Pleasure to Meet You,tt0787474\nMJNG_rYJPV0,2014.0,9,10,2016,The Boxtrolls,You're the Monster!,tt0787474\nhggAh6GibqQ,2014.0,1,10,2016,The Boxtrolls,Acquire Them!,tt0787474\ncudA9HUl6AA,2014.0,3,10,2016,The Boxtrolls,White Hats Meeting,tt0787474\nL1DsFsUlgwM,2014.0,4,10,2016,The Boxtrolls,Here Come the Exterminators!,tt0787474\nwNhse5NZgR8,2014.0,5,10,2016,The Boxtrolls,Song,tt0787474\n7iM1XM9SvdQ,2014.0,6,10,2016,The Boxtrolls,Tell Me Everything!,tt0787474\nvicOpIdpQVM,2014.0,10,10,2016,The Boxtrolls,You Make You,tt0787474\nVz2OwX1XETQ,2014.0,7,10,2016,The Boxtrolls,The Cheese Fits,tt0787474\ndlEoKlncQsQ,2015.0,7,10,2016,San Andreas Quake,Trapped in the Tunnels,tt4547120\nLbq1U6X78Io,2015.0,1,10,2016,San Andreas Quake,The House Comes Down,tt4547120\n0mT5xT39Zvs,2015.0,4,10,2016,San Andreas Quake,Get Off the Bridge!,tt4547120\nu-LCigQRPdk,2015.0,8,10,2016,San Andreas Quake,A Way Out,tt4547120\nUxIpYfsTkew,2015.0,3,10,2016,San Andreas Quake,Going Down,tt4547120\nsJOA_CvMqvg,2015.0,10,10,2016,San Andreas Quake,Need a Lift?,tt4547120\n7ZbYv65cJ1M,2015.0,6,10,2016,San Andreas Quake,We Have to Get Out Now,tt4547120\n_9xxKArFYfo,2015.0,2,10,2016,San Andreas Quake,Predicting a Quake,tt4547120\noaSLgsnsrBk,2015.0,9,10,2016,San Andreas Quake,Grab My Hand!,tt4547120\nCMFFeWPy-NM,2015.0,5,10,2016,San Andreas Quake,Angry Angry Hippo,tt4547120\nlOR8JBFySr8,2005.0,11,11,2016,Man-Thing,The End of  Scene,tt0290747\nrITjAbXej3o,2005.0,3,11,2016,Man-Thing,Hick With a Chainsaw Scene,tt0290747\nhfOL-PefOz4,2005.0,10,11,2016,Man-Thing,Oily Death Scene,tt0290747\nz_3ODalPzT4,2005.0,2,11,2016,Man-Thing,Horror at the Door Scene,tt0290747\nLDWuu8GZnkM,2005.0,4,11,2016,Man-Thing,Dark Waters Scene,tt0290747\nX-t_25jG36E,2005.0,5,11,2016,Man-Thing,Mutilated Body Scene,tt0290747\n598QZf6lkKw,2005.0,8,11,2016,Man-Thing,Human Sacrifice Scene,tt0290747\nP94WndY58eg,2005.0,7,11,2016,Man-Thing,The Origin of  Scene,tt0290747\nhmYIR6v-oVE,2005.0,6,11,2016,Man-Thing,Torn to Pieces Scene,tt0290747\nQImoaNjTtng,2005.0,9,11,2016,Man-Thing,Murder in the Swamp Scene,tt0290747\nhAQ2xTr4U64,2005.0,1,11,2016,Man-Thing,Swamp Corpses Scene,tt0290747\nUoM7CdIs2b0,2010.0,9,10,2016,Trust,He Lied to Me,tt1529572\nNQ1-De19txE,2010.0,10,10,2016,Trust,I Failed You,tt1529572\n7yhDJzI-hjg,2010.0,8,10,2016,Trust,Will's Anger,tt1529572\nvk9wMNmKk6Q,2010.0,7,10,2016,Trust,You Lied to Me,tt1529572\njsTtWLXjHZM,2010.0,6,10,2016,Trust,He Loves Me,tt1529572\niCfplC1mMoI,2010.0,4,10,2016,Trust,A Victim of a Crime,tt1529572\ntxbmUDJcF6k,2010.0,5,10,2016,Trust,Contacting Charlie,tt1529572\n_azX1Pr0vkA,2010.0,2,10,2016,Trust,Charlie,tt1529572\nYHTyGMYFsU0,2010.0,3,10,2016,Trust,The Motel,tt1529572\nBTbo7NyijNA,2010.0,1,10,2016,Trust,The First Lie,tt1529572\nHhEyYbmTh_Y,1989.0,11,11,2016,All Dogs Go to Heaven,\"Goodbye, Charlie\",tt0096787\n9YFfoCKHAQQ,1989.0,6,11,2016,All Dogs Go to Heaven,Winning Streak,tt0096787\npHB8Z35H29k,1989.0,2,11,2016,All Dogs Go to Heaven,The Big Surprise,tt0096787\noX3PL_u2LbQ,1989.0,9,11,2016,All Dogs Go to Heaven,You're Not My Friend,tt0096787\nwhCKn6cV-0k,1989.0,5,11,2016,All Dogs Go to Heaven,You'll Stay with Me,tt0096787\ny_3OE_uIS8I,1989.0,10,11,2016,All Dogs Go to Heaven,Charlie Saves Anne-Marie,tt0096787\n27U6dyYE9rA,1989.0,8,11,2016,All Dogs Go to Heaven,Let's Make Music Together,tt0096787\nwufYHJkbl7k,1989.0,4,11,2016,All Dogs Go to Heaven,Let Me Be Surprised,tt0096787\n1PLIzuZNuJI,1989.0,7,11,2016,All Dogs Go to Heaven,Come Home to My Heart,tt0096787\nqe5s8UTNw4c,1989.0,3,11,2016,All Dogs Go to Heaven,Charlie Goes to Heaven,tt0096787\n5KaMqmlEcJQ,1989.0,1,11,2016,All Dogs Go to Heaven,You Can't Keep a Good Dog Down,tt0096787\ngS6ibQuZIS8,2002.0,8,8,2016,Queen of the Damned,The Death of a Queen,tt0238546\n6yXY1OKtYPY,2002.0,7,8,2016,Queen of the Damned,\"You Kill Me, You Kill Yourselves\",tt0238546\nZe4qFn-a-2E,2002.0,6,8,2016,Queen of the Damned,I'd Like You to Kill Her,tt0238546\nFuJsy0k28tk,2002.0,5,8,2016,Queen of the Damned,Join Me or Die,tt0238546\nkdDH7Ynw5Lc,2002.0,4,8,2016,Queen of the Damned,Queen Akasha Arrives,tt0238546\nxW0Babu_t8U,2002.0,1,8,2016,Queen of the Damned,Only Your Body That Dies,tt0238546\nBWMFLJwEVyQ,2002.0,2,8,2016,Queen of the Damned,You Should Be More Careful,tt0238546\nkr5skPIftSY,2002.0,3,8,2016,Queen of the Damned,So You Want to Be a Vampire,tt0238546\nSlYRjU2KBfk,2010.0,9,10,2016,Shadows & Lies,A Job Gone Bad,tt1453403\ng7kdpW2hZOI,2010.0,10,10,2016,Shadows & Lies,Love's End,tt1453403\nsIPWv4xB9-0,2010.0,7,10,2016,Shadows & Lies,Drug Delivery,tt1453403\nTolt_g4y_tI,2010.0,6,10,2016,Shadows & Lies,Not a Nice Group,tt1453403\nQ1B3sGDIxtg,2010.0,5,10,2016,Shadows & Lies,Meeting Ann,tt1453403\nv9AtWaaaShE,2010.0,8,10,2016,Shadows & Lies,The Kimono,tt1453403\nMlACEw_4JXY,2010.0,4,10,2016,Shadows & Lies,Meeting with the Boss,tt1453403\nTf3r8Bty06I,2010.0,3,10,2016,Shadows & Lies,Pickpocketing,tt1453403\nR8JhC8HArkQ,2010.0,2,10,2016,Shadows & Lies,Dinner and Sex,tt1453403\nSei2JdiJ5Ic,2010.0,1,10,2016,Shadows & Lies,The Birth of William Vincent,tt1453403\nplEvMJ44Exs,2013.0,1,10,2016,The Double,I Attract So Many Weirdos,tt1825157\nAFCv59zRbGo,2013.0,4,10,2016,The Double,The Man I Want to Be,tt1825157\nEdC7U0ZRALs,2013.0,3,10,2016,The Double,Simon & James,tt1825157\n11qpNfXStVI,2013.0,2,10,2016,The Double,You Look Just Like Him,tt1825157\nCKMpPpuKLFI,2013.0,5,10,2016,The Double,Seducing Hannah,tt1825157\nIEA7PR8i5Gc,2013.0,6,10,2016,The Double,Double Date,tt1825157\nGM8DRazH4ck,2013.0,7,10,2016,The Double,I'm A Good Worker,tt1825157\nvjMRE5A5tVc,2013.0,9,10,2016,The Double,This Man is a Fraud,tt1825157\nogEjqyO09yg,2013.0,8,10,2016,The Double,Threatening James,tt1825157\nHrIyLLIHrDA,2013.0,10,10,2016,The Double,I'm Pretty Unique,tt1825157\nbXS1LMaU7TM,2007.0,10,10,2016,Mr. Bean's Holiday,Bean at the Beach,tt0453451\nueAsO0Gq8vI,2007.0,6,10,2016,Mr. Bean's Holiday,Bean Sabine,tt0453451\nBgjJ00HhyCQ,2007.0,9,10,2016,Mr. Bean's Holiday,Bean's Movie Premiere,tt0453451\ncA-laLpcLIw,2007.0,7,10,2016,Mr. Bean's Holiday,Sleepy Driving,tt0453451\n55d4Hx_kaGc,2007.0,8,10,2016,Mr. Bean's Holiday,Bean in Disguise,tt0453451\nt5eRT32QWdg,2007.0,5,10,2016,Mr. Bean's Holiday,Stealing the Scooter,tt0453451\nwUEYIhP_9ag,2007.0,3,10,2016,Mr. Bean's Holiday,Mr. Bombastic,tt0453451\neH7EyPs_Va8,2007.0,4,10,2016,Mr. Bean's Holiday,Bike Ride,tt0453451\nP-3iw8l0lB8,2007.0,2,10,2016,Mr. Bean's Holiday,Funny Faces,tt0453451\nMCJcxb_RtII,2007.0,1,10,2016,Mr. Bean's Holiday,Seafood Dinner,tt0453451\nFjKQ2_lTY_c,2008.0,9,10,2016,Sunday School Musical,The State Finals,tt1270792\ngzyR9eQJMvQ,2008.0,10,10,2016,Sunday School Musical,The True Winners,tt1270792\n2MYB0Gp7RLs,2008.0,8,10,2016,Sunday School Musical,The Competition,tt1270792\nW6aifznLeXE,2008.0,6,10,2016,Sunday School Musical,Closing the Doors on Hawthorne,tt1270792\nyq7rSvWzhNQ,2008.0,7,10,2016,Sunday School Musical,Better With You,tt1270792\nSfN8z2mHAmw,2008.0,4,10,2016,Sunday School Musical,Do Your Own Thing,tt1270792\nBzeKxlcKil4,2008.0,5,10,2016,Sunday School Musical,You're Not the Boss,tt1270792\nujhnKE7fscw,2008.0,3,10,2016,Sunday School Musical,One Step at a Time,tt1270792\nTHe7-5-D-gM,2008.0,2,10,2016,Sunday School Musical,If You Really Cared,tt1270792\nJhho1OqCSiY,2008.0,1,10,2016,Sunday School Musical,This Little Light of Mine,tt1270792\nFxzaTk1VwGs,2011.0,10,10,2016,You're Next,You Would've Killed Me,tt1853739\nHNxe49fa2p4,2011.0,1,10,2016,You're Next,Dysfunctional Family Dinner,tt1853739\nQrbBBAXBPE4,2011.0,9,10,2016,You're Next,Death by Blender,tt1853739\nwtnRz9SIZAY,2011.0,7,10,2016,You're Next,Would You Just Die Already?,tt1853739\nhphPtQjqfQQ,2011.0,8,10,2016,You're Next,The Traitors Revealed,tt1853739\ngjUN_o1mtW4,2011.0,6,10,2016,You're Next,This Wasn't A Random Attack,tt1853739\ngQjGFMTbNxU,2011.0,5,10,2016,You're Next,Kelly and the Lamb,tt1853739\npR5to9mS2cg,2011.0,4,10,2016,You're Next,No Time to Grieve,tt1853739\nrUW2mfL---k,2011.0,3,10,2016,You're Next,Making a Run for It,tt1853739\nrqwx9NRpmHc,2011.0,2,10,2016,You're Next,Death at Dinner,tt1853739\nyc8UHdsuy68,2013.0,1,8,2016,Grand Piano,One Wrong Note and You Die,tt2039345\nUYpqBY5DTUI,2013.0,2,8,2016,Grand Piano,The Voice in Your Head,tt2039345\nxjCbC99HMdo,2013.0,4,8,2016,Grand Piano,Keep it Together,tt2039345\nVMO06PHDR9E,2013.0,3,8,2016,Grand Piano,A Call For Help,tt2039345\nC1_BoN9f1hw,2013.0,7,8,2016,Grand Piano,Take Her Out,tt2039345\nnvRcQGBL7Cw,2013.0,5,8,2016,Grand Piano,Ashley's Fate,tt2039345\npgae5kDwHT0,2013.0,6,8,2016,Grand Piano,Just a Puppet,tt2039345\nW4Zj0uwpIwo,2013.0,8,8,2016,Grand Piano,The Fall,tt2039345\nyygkcTQjw7s,2014.0,10,10,2016,Dear White People,Crashing the Party,tt2235108\n9cwWiC6Gs80,2014.0,9,10,2016,Dear White People,Blackface Party,tt2235108\nW2EZOorGpI0,2014.0,5,10,2016,Dear White People,The Tip Test,tt2235108\nObyANYT5y_c,2014.0,4,10,2016,Dear White People,Black and White Relations,tt2235108\nQZ9b-TPTC_U,2014.0,8,10,2016,Dear White People,Who Am I?,tt2235108\ntpkTStVMv_Q,2014.0,7,10,2016,Dear White People,I Want People to Know My Name,tt2235108\nqRahFLj59bc,2014.0,6,10,2016,Dear White People,\"Ooftas, Nose-Jobs and 100s\",tt2235108\nyShrBo6NiI8,2014.0,3,10,2016,Dear White People,Rebirth of a Nation,tt2235108\ntKjyNywkBEQ,2014.0,1,10,2016,Dear White People,Bringing Black Back,tt2235108\ncypqB_GKzjA,2014.0,2,10,2016,Dear White People,Dining Hall Dispute,tt2235108\n85PCzIbeQGU,1982.0,9,9,2016,The Secret of NIMH,Saving the House,tt0084649\n1OV3T6GWhIg,1982.0,7,9,2016,The Secret of NIMH,The Secret is Revealed,tt0084649\numIBbT6uwZI,1982.0,8,9,2016,The Secret of NIMH,Justin Duels Jenner,tt0084649\nUlddepR-iRg,1982.0,6,9,2016,The Secret of NIMH,Meeting Nicodemus,tt0084649\nGfH27NmFVSw,1982.0,2,9,2016,The Secret of NIMH,Dragon Attacks,tt0084649\nSI_DOVqlJA4,1982.0,5,9,2016,The Secret of NIMH,Driven Out,tt0084649\nMr7Ned_vQgU,1982.0,3,9,2016,The Secret of NIMH,Stopping the Plow,tt0084649\nDd0PTNGBFUM,1982.0,4,9,2016,The Secret of NIMH,The Great Owl,tt0084649\neqv02JDVQ1o,1982.0,1,9,2016,The Secret of NIMH,Medicine from Mr. Ages,tt0084649\nmGq0iyW-f7A,2010.0,9,10,2016,Yogi Bear,Flying Bears,tt1302067\nriXp9rJ90Xw,2010.0,1,10,2016,Yogi Bear,Stealing a Picnic Basket,tt1302067\nc5zKpr5gmgk,2010.0,7,10,2016,Yogi Bear,You're Not an Average Bear,tt1302067\n8R9KLz7qDIY,2010.0,6,10,2016,Yogi Bear,How Smart Are You Now?,tt1302067\ne9cysHm38Kg,2010.0,8,10,2016,Yogi Bear,Don't Give Up Now,tt1302067\niwAciIQDE4A,2010.0,2,10,2016,Yogi Bear,Getting Caught,tt1302067\nNLDt8Iyh5f4,2010.0,10,10,2016,Yogi Bear,Surviving the Rapids,tt1302067\noqEm8mihoA4,2010.0,4,10,2016,Yogi Bear,Yogi's New Invention,tt1302067\nH37dm_eRkLU,2010.0,3,10,2016,Yogi Bear,Can I Shoot You?,tt1302067\nDvX8DbtVspE,2010.0,5,10,2016,Yogi Bear,I'm Losing Control,tt1302067\nAUBx-geW0Tg,2006.0,9,10,2016,Serenity,It's Finished,tt0379786\ntBMAuUeeqdE,2006.0,8,10,2016,Serenity,Mal vs. The Operative,tt0379786\n2PQw2qw3BDw,2006.0,10,10,2016,Serenity,Love,tt0379786\nkgu59EAXbic,2006.0,7,10,2016,Serenity,My Turn,tt0379786\nBnnCQlp2msk,2006.0,6,10,2016,Serenity,A Leaf on the Wind,tt0379786\nX_VSJfHiNPA,2006.0,5,10,2016,Serenity,Space Battle,tt0379786\nWERocs57QaE,2006.0,3,10,2016,Serenity,The Operative,tt0379786\nmXLSLzeu-mM,2006.0,4,10,2016,Serenity,A Danger to Us,tt0379786\nhXCaF68sDPU,2006.0,2,10,2016,Serenity,The Miranda Fight,tt0379786\nAC9SF7TOyHQ,2006.0,1,10,2016,Serenity,Fall on Your Sword,tt0379786\nYnsmoUntOzI,2010.0,1,10,2016,Mega Shark vs. Crocosaurus,Shark Sinks Ship,tt1705773\nH6FYQzuVMfA,2010.0,7,10,2016,Mega Shark vs. Crocosaurus,The Shark Just Went Nuclear,tt1705773\njtHIEO1Zdfk,2010.0,4,10,2016,Mega Shark vs. Crocosaurus,Torpedoes Away,tt1705773\n8s4TDbX1B_s,2010.0,9,10,2016,Mega Shark vs. Crocosaurus,Beastly Barrage,tt1705773\nWD2I5Jpe9bk,2010.0,3,10,2016,Mega Shark vs. Crocosaurus,Jumping Ship,tt1705773\nKapEcfMelL4,2010.0,8,10,2016,Mega Shark vs. Crocosaurus,This Is Not Your Fiance!,tt1705773\nDMhcIrShxec,2010.0,2,10,2016,Mega Shark vs. Crocosaurus,Nice Crocodile,tt1705773\nn0MW9qK_xlY,2010.0,5,10,2016,Mega Shark vs. Crocosaurus,Arc Flash Orlando,tt1705773\nMLFzROHNLmM,2010.0,10,10,2016,Mega Shark vs. Crocosaurus,The Creatures are Toast,tt1705773\nyBM4SCBZ7qM,2010.0,6,10,2016,Mega Shark vs. Crocosaurus,Those Dam Beasts,tt1705773\nTsk9gCcchg8,1984.0,5,7,2016,Greystoke: Legend of Tarzan,Jungle Man,tt0087365\n_AmKz3iZ1K8,1984.0,1,7,2016,Greystoke: Legend of Tarzan,Razor and Mirror,tt0087365\nMCN-beeZSKk,1984.0,3,7,2016,Greystoke: Legend of Tarzan,\"\"\"Johnny\"\" Returns\",tt0087365\nzOiq-2Jpy-U,1984.0,6,7,2016,Greystoke: Legend of Tarzan,Tarzan & Jane,tt0087365\nNiVB-n5b0hE,1984.0,7,7,2016,Greystoke: Legend of Tarzan,Going Home,tt0087365\nJgPlgAnASbY,1984.0,2,7,2016,Greystoke: Legend of Tarzan,\"Mother, Father, Family\",tt0087365\nEkE_bNKYqCM,1984.0,4,7,2016,Greystoke: Legend of Tarzan,An Excellent Mimic,tt0087365\nTPgdAesH76E,2015.0,8,10,2016,The Boy Next Door,Get the Hell Out of There,tt3181822\nwvVrDGmqHjI,2015.0,5,10,2016,The Boy Next Door,Disorderly Conduct,tt3181822\nBvXUga4d3Zc,2015.0,10,10,2016,The Boy Next Door,Live with Me or Die,tt3181822\ny9ZcKltnEx8,2015.0,7,10,2016,The Boy Next Door,Class Pictures,tt3181822\nV5DgQr_g6SY,2015.0,2,10,2016,The Boy Next Door,This Isn't Normal,tt3181822\n3QyEUXjHzOc,2015.0,1,10,2016,The Boy Next Door,Let Me Love You,tt3181822\nlIVO6oEk4Hk,2015.0,4,10,2016,The Boy Next Door,Stay Away From Noah,tt3181822\nuaLxw2PDnmk,2015.0,9,10,2016,The Boy Next Door,That's What Heroes Do,tt3181822\nkKC8076NZOY,2015.0,3,10,2016,The Boy Next Door,Asthma Attack,tt3181822\nasNSRS-UbHM,2015.0,6,10,2016,The Boy Next Door,Unacceptable Behavior,tt3181822\nyKloyDDxo7g,2015.0,8,10,2016,Mega Shark vs. Kolossus,\"Surf, Turf, Let's Play!\",tt4566574\nb0VU3j1hp70,2015.0,4,10,2016,Mega Shark vs. Kolossus,The Abramov Advantage,tt4566574\nxDC6IlQdTLs,2015.0,10,10,2016,Mega Shark vs. Kolossus,A Battle to the Death,tt4566574\nmcp6KbG_5rg,2015.0,6,10,2016,Mega Shark vs. Kolossus,Sidetracking the Savages,tt4566574\nrpWuKoDm_9o,2015.0,3,10,2016,Mega Shark vs. Kolossus,Help Me End This,tt4566574\nnpWeWCC06fU,2015.0,9,10,2016,Mega Shark vs. Kolossus,Kolossus Throws Mega Shark into Space,tt4566574\nT2jMiMTHY80,2015.0,5,10,2016,Mega Shark vs. Kolossus,\"Missiles Sapped, Shark Trapped\",tt4566574\nG_v8xjmxtLY,2015.0,7,10,2016,Mega Shark vs. Kolossus,Kolossal Control,tt4566574\nLxnWduj4P-g,2015.0,2,10,2016,Mega Shark vs. Kolossus,A Slippery Fish,tt4566574\n53vQBW_4hzw,2015.0,1,10,2016,Mega Shark vs. Kolossus,Kolossus Unleashed,tt4566574\n0_hajel24IE,2012.0,3,3,2016,Hitchcock,Directing the Screams,tt0975645\n2AHF50fxTNw,2012.0,1,3,2016,Hitchcock,Only Suggesting Nudity,tt0975645\n3iZ1TVOskhA,2012.0,2,3,2016,Hitchcock,Cutting Psycho,tt0975645\nOwQCAyUyuSs,1984.0,10,11,2016,Adventures of Buckaroo Banzai,Saving the Day,tt0086856\n8jK3RW6rSCM,1984.0,1,11,2016,Adventures of Buckaroo Banzai,Inter-Dimensional Ford,tt0086856\ng95ZXrh2oK4,1984.0,3,11,2016,Adventures of Buckaroo Banzai,There You Are,tt0086856\nah6TYuJ1iQg,1984.0,11,11,2016,Adventures of Buckaroo Banzai,Awesome Credits,tt0086856\n2H2c3F_rzqw,1984.0,4,11,2016,Adventures of Buckaroo Banzai,Dr. New Jersey,tt0086856\n1w_JdfgygYY,1984.0,8,11,2016,Adventures of Buckaroo Banzai,Penny for Your Thoughts,tt0086856\nf6hhVIV_LPs,1984.0,9,11,2016,Adventures of Buckaroo Banzai,Declaration of War: The Short Form,tt0086856\nVQSA2-NbbL8,1984.0,5,11,2016,Adventures of Buckaroo Banzai,Duck Hunting Discovery,tt0086856\nGjA92f_iCHQ,1984.0,2,11,2016,Adventures of Buckaroo Banzai,Dr. Lizardo Loses His Mind,tt0086856\nmh7fUlkkX68,1984.0,6,11,2016,Adventures of Buckaroo Banzai,Holographic Warning,tt0086856\n1egkqpDOn2A,1984.0,7,11,2016,Adventures of Buckaroo Banzai,Transmission to the President,tt0086856\nQyOM1rQ7iT8,2015.0,2,10,2016,The Hunger Games: Mockingjay,Part 2   - They Messed Us Up Pretty Good,tt1951266\ncZKYcRqPh-o,2015.0,8,10,2016,The Hunger Games: Mockingjay,Part 2   - These Things Happen in War,tt1951266\n-CXBIAH4Kgo,2015.0,1,10,2016,The Hunger Games: Mockingjay,Part 2   - Turn Your Weapons to Snow,tt1951266\nSBq1FLgZJug,2015.0,6,10,2016,The Hunger Games: Mockingjay,Part 2   - Our Lives Were Never Ours,tt1951266\nZGM5Y16SSb8,2015.0,10,10,2016,The Hunger Games: Mockingjay,Part 2   - There Are Worse Games to Play,tt1951266\nxCQ3ZdnptUM,2015.0,9,10,2016,The Hunger Games: Mockingjay,Part 2   - May Your Aim Be True,tt1951266\ntvj61hwINaE,2015.0,5,10,2016,The Hunger Games: Mockingjay,Part 2   - Stay With Me,tt1951266\nH6bQXth1CEs,2015.0,7,10,2016,The Hunger Games: Mockingjay,Part 2   - Explosion at the Gates,tt1951266\ny03_LmnDaTY,2015.0,4,10,2016,The Hunger Games: Mockingjay,Part 2   - The Mutts Attack,tt1951266\nOF22NIhPKgE,2015.0,3,10,2016,The Hunger Games: Mockingjay,Part 2   - The Black Ooze,tt1951266\nuEV9jxF2tOo,2015.0,1,10,2016,Insurgent,Every Man for Themselves,tt2908446\nwyMDViXXXXU,2015.0,2,10,2016,Insurgent,Fighting the Factionless,tt2908446\nns9WcZlqv_I,2015.0,3,10,2016,Insurgent,May the Truth Set You Free,tt2908446\nADXqDq5zCTg,2015.0,8,10,2016,Insurgent,\"You Die, I Die\",tt2908446\nST7mR3xLdys,2015.0,4,10,2016,Insurgent,Hand Over Tris Prior,tt2908446\nn-5bVE4K2Ls,2015.0,5,10,2016,Insurgent,You Are Worth It,tt2908446\n2RYNIbNVFhg,2015.0,6,10,2016,Insurgent,The Dauntless Simulation,tt2908446\nhqJxDiGXTWc,2015.0,10,10,2016,Insurgent,We're The Solution,tt2908446\nirhRobBI3BE,2015.0,7,10,2016,Insurgent,Her Death Means Nothing,tt2908446\nKQa_SiTfU34,2015.0,9,10,2016,Insurgent,The Amity Simulation,tt2908446\nw-A750XbFAo,2015.0,3,10,2016,Shaun the Sheep Movie,Sheep in Human Clothing Scene,tt2872750\n7tUYeqOLuYU,2015.0,4,10,2016,Shaun the Sheep Movie,Dog Doctor Scene,tt2872750\nTPiRiwKEz28,2015.0,2,10,2016,Shaun the Sheep Movie,Runaway Farmer Scene,tt2872750\n2SiwZWhmbS0,2015.0,9,10,2016,Shaun the Sheep Movie,Escaping the City Scene,tt2872750\nulLxPcOmDmU,2015.0,1,10,2016,Shaun the Sheep Movie,Shaun's Staycation Scene,tt2872750\nv3JlEi3CbGI,2015.0,1,10,2016,Ex Machina,That's the History of Gods,tt0470752\n0Gq5R5ffrtE,2015.0,10,10,2016,Ex Machina,Ava is Free,tt0470752\njGAsihLnYqM,2015.0,3,10,2016,Ex Machina,You Shouldn't Trust Him,tt0470752\nmAtmopQxu0o,2015.0,2,10,2016,Ex Machina,Breaking the Ice,tt0470752\nlOgPGO4JnaA,2015.0,6,10,2016,Ex Machina,You're Causing the Cuts,tt0470752\n8cQVspzP0Ms,2015.0,5,10,2016,Ex Machina,Are You Attracted to Me?,tt0470752\nb7C69HqnV8s,2015.0,7,10,2016,Ex Machina,Tearing Up the Dance Floor,tt0470752\nKbsi0KOunj8,2015.0,8,10,2016,Ex Machina,The Real Test,tt0470752\nLxXrccK4S3I,2015.0,9,10,2016,Ex Machina,Go Back to Your Room,tt0470752\nruOXWHbyfjo,2015.0,4,10,2016,Ex Machina,How Ava Was Created,tt0470752\noAheN_ARn1U,2015.0,10,10,2016,Shaun the Sheep Movie,Defeating Trumper Scene,tt2872750\n74BF0nnqO5o,2015.0,8,10,2016,Shaun the Sheep Movie,The Sheep Horse Scene,tt2872750\nWazcuKEk2to,2015.0,7,10,2016,Shaun the Sheep Movie,A Familiar Tune Scene,tt2872750\ndKPw9-jpA3Y,2015.0,6,10,2016,Shaun the Sheep Movie,Shaun in the Slammer Scene,tt2872750\nbzGDMtX1IU0,2015.0,5,10,2016,Shaun the Sheep Movie,Lunch Fiasco Scene,tt2872750\nhW_NzisexqU,2010.0,1,12,2016,I'm Still Here,Don't Wanna Play Joaquin Anymore,tt1356864\n4GCBqzsWF_M,2010.0,12,12,2016,I'm Still Here,Heckler at the Show,tt1356864\noLQ5NOAIAw0,2010.0,7,12,2016,I'm Still Here,Ben Stiller Meeting,tt1356864\nMvFkGlAqYYc,2010.0,2,12,2016,I'm Still Here,My Last Acting Thing,tt1356864\nXzSBAvxA5GE,2010.0,8,12,2016,I'm Still Here,Edward James Olmos' Advice,tt1356864\n2v0aoYD6OOM,2010.0,5,12,2016,I'm Still Here,Calling Hookers,tt1356864\n5Q1f6Oij1NQ,2010.0,9,12,2016,I'm Still Here,In the Studio with Diddy,tt1356864\nH177TSRFiTo,2010.0,3,12,2016,I'm Still Here,This Is Hard,tt1356864\n-xCS0zZPAoA,2010.0,10,12,2016,I'm Still Here,Post-Letterman Breakdown,tt1356864\nmCbY7cAv7r8,2010.0,11,12,2016,I'm Still Here,Pooping the Bed,tt1356864\n9Dd423YO56c,2010.0,4,12,2016,I'm Still Here,Do the Snow Angel!,tt1356864\nn-omBTsCIDE,2010.0,6,12,2016,I'm Still Here,Diddy Knows Best,tt1356864\nTyXD96iAjuM,2010.0,10,10,2016,Jackass 3D,I'm About to End This Movie,tt1116184\nY4HSQKUAPKM,2010.0,9,10,2016,Jackass 3D,Poo Cocktail Supreme,tt1116184\n33NlZaZVCgw,2010.0,5,10,2016,Jackass 3D,Wee Man Fight,tt1116184\npIyrp5Aj7LY,2010.0,6,10,2016,Jackass 3D,Will the Farter,tt1116184\n09m9ltjwuJU,2010.0,3,10,2016,Jackass 3D,Beehive Tetherball,tt1116184\nlEFx1qmW4ts,2010.0,4,10,2016,Jackass 3D,Jet Engine Stunt,tt1116184\nt4M3hbVh3U4,2010.0,7,10,2016,Jackass 3D,Duck Hunting,tt1116184\nnXjnagPujjE,2010.0,8,10,2016,Jackass 3D,The Ram Jam,tt1116184\nrMS4ESFlfDk,2010.0,2,10,2016,Jackass 3D,High Five,tt1116184\n293PMWaznLM,2010.0,1,10,2016,Jackass 3D,Welcome to Jackass,tt1116184\nXX2EpE8SLK4,2014.0,10,10,2016,Step Up All In,You Better Catch Me,tt2626350\nuJnIaD7gDlQ,2014.0,7,10,2016,Step Up All In,The Mob vs. LMNTRIX,tt2626350\nma7zprvD7UA,2014.0,5,10,2016,Step Up All In,The Vortex,tt2626350\n-WrDbBvPN00,2014.0,6,10,2016,Step Up All In,Old School,tt2626350\nNXH48hZ6798,2014.0,4,10,2016,Step Up All In,High Voltage,tt2626350\nbX-o8WaWp2Q,2014.0,2,10,2016,Step Up All In,Sean Meets Andie,tt2626350\nmn6Wmceebfc,2014.0,3,10,2016,Step Up All In,I Want to be in Your Crew,tt2626350\nAZtman1rdUw,2014.0,1,10,2016,Step Up All In,You Picked The Wrong Night,tt2626350\nJ8JhG2j8E_w,2014.0,9,10,2016,Step Up All In,The Final Round,tt2626350\nRUox4o5J5x4,2014.0,8,10,2016,Step Up All In,Grim Knights vs. LMNTRIX,tt2626350\nh5RMM02YE3U,1993.0,12,12,2016,Romeo Is Bleeding,Sometimes She Stays,tt0107983\nmZzkE03B64o,1993.0,11,12,2016,Romeo Is Bleeding,Mona Murdered,tt0107983\nkYA44FTePNQ,1993.0,10,12,2016,Romeo Is Bleeding,What's Hell?,tt0107983\nCZRn7cU3UsU,1993.0,8,12,2016,Romeo Is Bleeding,The Docks,tt0107983\nutFeHmJ1iUw,1993.0,9,12,2016,Romeo Is Bleeding,Femme Fatale,tt0107983\nGiykTnvV8Mo,1993.0,6,12,2016,Romeo Is Bleeding,More Risk More Pay,tt0107983\nOE5CnBYFkZA,1993.0,7,12,2016,Romeo Is Bleeding,Taking the Toe,tt0107983\nEvWX1drAfhg,1993.0,5,12,2016,Romeo Is Bleeding,Pacifism With Falcone,tt0107983\nz7_AwjQz_AY,1993.0,4,12,2016,Romeo Is Bleeding,A Terrible Dream,tt0107983\nt_BSGcc9XkY,1993.0,3,12,2016,Romeo Is Bleeding,What Happened to Meat & Potatoes?,tt0107983\nW1GrNDtRkgE,1993.0,2,12,2016,Romeo Is Bleeding,Mona's Laughing Seduction,tt0107983\nPLPb1pB0vJg,1993.0,1,12,2016,Romeo Is Bleeding,The Big Hoodlum,tt0107983\nP4JGOWnX9VU,-1.0,10,10,2016,Anchorman 2: The Legend Continues,News Team Battle Scene,tt1229340\n-zAp8NOpVKU,-1.0,9,10,2016,Anchorman 2: The Legend Continues,News Team Fighting Words Scene,tt1229340\nZLJX6CEkgto,-1.0,8,10,2016,Anchorman 2: The Legend Continues,White Elephant in the Room Scene,tt1229340\n65N3OBBrImc,-1.0,5,10,2016,Anchorman 2: The Legend Continues,Jack Lame Scene,tt1229340\nZdkOLsRkjBU,-1.0,6,10,2016,Anchorman 2: The Legend Continues,A Goddess Among Women Scene,tt1229340\nVHz5xaHrCCU,-1.0,4,10,2016,Anchorman 2: The Legend Continues,Brick Meets Chani Scene,tt1229340\nGKNv1vjCnQI,-1.0,7,10,2016,Anchorman 2: The Legend Continues,Where Are My Legs? Scene,tt1229340\nMMigS6B4t3Q,-1.0,1,10,2016,Anchorman 2: The Legend Continues,The Worst Anchorman Ever Scene,tt1229340\nlwkdeQQiCms,-1.0,3,10,2016,Anchorman 2: The Legend Continues,African and American Scene,tt1229340\nIfY49zx7RU0,-1.0,2,10,2016,Anchorman 2: The Legend Continues,RV Crash Scene,tt1229340\nPhbkMQ89QPM,2011.0,10,10,2016,Mission: Impossible  Ghost Protocol,Mission Accomplished Scene,tt1229238\nzh5VtQ-x4QI,2011.0,9,10,2016,Mission: Impossible Ghost Protocol,Fight For the Briefcase Scene,tt1229238\nBi75jrN5yDk,2011.0,8,10,2016,Mission: Impossible Ghost Protocol,Seducing the Rich Guy Scene,tt1229238\nJ4me49IF70k,2011.0,7,10,2016,Mission: Impossible Ghost Protocol,Sandstorm Chase Scene,tt1229238\n2nZBPdh9_Jc,2011.0,6,10,2016,Mission: Impossible Ghost Protocol,Jane Fights Moreau Scene,tt1229238\nEp85AkCkk-U,2011.0,5,10,2016,Mission: Impossible Ghost Protocol,Get Down Here Scene,tt1229238\ncYGVkLGyGqE,2011.0,3,10,2016,Mission: Impossible Ghost Protocol,The Kremlin Explodes Scene,tt1229238\nwr4rZEPQ09Y,2011.0,4,10,2016,Mission: Impossible Ghost Protocol,Climbing the Burj Khalifa Scene,tt1229238\np-5nqrOtaug,2011.0,1,10,2016,Mission: Impossible Ghost Protocol,Escaping the Russian Prison Scene,tt1229238\n7DkV8WE7DFA,2011.0,2,10,2016,Mission: Impossible Ghost Protocol,Hallway Projection Scene,tt1229238\nHcuptmqW_kA,2013.0,9,10,2016,G.I. Joe: Retaliation,Rescuing the President,tt1583421\nP0A0LnjsGSA,2013.0,10,10,2016,G.I. Joe: Retaliation,Threat Terminated,tt1583421\nLgMEyrPhq3k,2013.0,8,10,2016,G.I. Joe: Retaliation,Ninja Team-Up,tt1583421\nzDdHlO3v8Kg,2013.0,6,10,2016,G.I. Joe: Retaliation,Roadblock vs. Firefly,tt1583421\nzVzeXqLbqug,2013.0,5,10,2016,G.I. Joe: Retaliation,Cliffside Ninja Battle,tt1583421\n22bHxTTLcdc,2013.0,7,10,2016,G.I. Joe: Retaliation,London is Destroyed,tt1583421\n82wvQMuzbow,2013.0,2,10,2016,G.I. Joe: Retaliation,Duke's Death,tt1583421\nZMROlNs8iWw,2013.0,4,10,2016,G.I. Joe: Retaliation,Ninja vs. Ninja,tt1583421\nNr6NPOkDbpU,2013.0,3,10,2016,G.I. Joe: Retaliation,You're Out of the Band,tt1583421\nnn1qvGiHvLc,2013.0,1,10,2016,G.I. Joe: Retaliation,Securing the Nuke,tt1583421\n3gLU99wxUyA,2006.0,6,8,2016,Jackass Number Two,Old Man Balls,tt0493430\nzaYgv8likRs,2006.0,7,8,2016,Jackass Number Two,Terror Taxi,tt0493430\nUwPJMQwo2xw,2006.0,5,8,2016,Jackass Number Two,Toro Totter,tt0493430\nMb1kLqoiDuA,2006.0,4,8,2016,Jackass Number Two,Riot Control Test,tt0493430\n8MoQTjNnlmA,2006.0,3,8,2016,Jackass Number Two,Beehive Limo,tt0493430\nFPnF0-VdHNk,2006.0,2,8,2016,Jackass Number Two,Cattle Brand,tt0493430\n4nSA_B8pC_s,2006.0,8,8,2016,Jackass Number Two,The Best of Times,tt0493430\n7wSQMwlqy0s,2006.0,1,8,2016,Jackass Number Two,Running of the Bulls,tt0493430\nooXE33T2Dls,2014.0,12,12,2016,The Expendables 3,Go!,tt2333784\n4VKym1WU9go,2014.0,11,12,2016,The Expendables 3,Barney vs. Stonebanks,tt2333784\nbDAdgXd7Znk,2014.0,10,12,2016,The Expendables 3,Get to the Roof!,tt2333784\n2hqwpvVHly4,2014.0,8,12,2016,The Expendables 3,A Tank Problem,tt2333784\nu54-0h7QZN8,2014.0,9,12,2016,The Expendables 3,You Finished Yet?,tt2333784\nIpW3LbAEypo,2014.0,7,12,2016,The Expendables 3,We Were Brothers,tt2333784\n6kk46qE9oWk,2014.0,6,12,2016,The Expendables 3,Capturing Stonebanks,tt2333784\nQhVvJyCaQS0,2014.0,5,12,2016,The Expendables 3,Old vs. New,tt2333784\nE-g_up1kWt0,2014.0,4,12,2016,The Expendables 3,Age is Just a State of Mind,tt2333784\n9b1Ii-U2lao,2014.0,3,12,2016,The Expendables 3,Escaping the Docks,tt2333784\nkuAwUNzVX2I,2014.0,2,12,2016,The Expendables 3,Stonebanks!,tt2333784\n2CxV_NKhsgY,2014.0,1,12,2016,The Expendables 3,Doc's Revenge,tt2333784\nMPu6DXTG2ps,2003.0,5,9,2016,What a Girl Wants,Coming Out Party,tt0286788\nwVAL10Zb9Q4,2003.0,4,9,2016,What a Girl Wants,A Few Pointers,tt0286788\nDQaHIFC9034,2003.0,3,9,2016,What a Girl Wants,Coco Pops,tt0286788\ny6i9UH65q2g,2003.0,2,9,2016,What a Girl Wants,I'm Your Daughter,tt0286788\n0D5EL4HLd3g,2003.0,8,9,2016,What a Girl Wants,Longing to Do This,tt0286788\nKprKHSAAn7U,2003.0,9,9,2016,What a Girl Wants,Withdraw My Candidacy,tt0286788\nvVPtQKHiWwM,2003.0,7,9,2016,What a Girl Wants,Born to Stand Out,tt0286788\n8-9wlwVvR1M,2003.0,6,9,2016,What a Girl Wants,Daddy's Girl,tt0286788\n2YbvpD3WQnk,2003.0,1,9,2016,What a Girl Wants,Half of Me is Missing,tt0286788\nTw_kFAuhkbI,1998.0,1,8,2016,Quest for Camelot,On My Father's Wings,tt0120800\n1V53lOLjgiw,1998.0,2,8,2016,Quest for Camelot,Good Old Bad Days,tt0120800\nf57Vat6YZUI,1998.0,3,8,2016,Quest for Camelot,I Stand Alone,tt0120800\nCEvHsuyVfRo,1998.0,4,8,2016,Quest for Camelot,Chased by Dragons,tt0120800\nRR5kEQ9LgvU,1998.0,5,8,2016,Quest for Camelot,Looking Through Your Eyes,tt0120800\n_lpIHzRR1xY,1998.0,6,8,2016,Quest for Camelot,The Ogre's Butt,tt0120800\nGUWxHgIn91w,1998.0,8,8,2016,Quest for Camelot,Defeating Ruber,tt0120800\nUfHqN7KPZ5s,1998.0,7,8,2016,Quest for Camelot,To the Rescue,tt0120800\nHda6MwCdwI8,2014.0,10,10,2016,The Skeleton Twins,You're Here,tt1571249\nV7gceiThJ6U,2014.0,9,10,2016,The Skeleton Twins,What Am I To You?,tt1571249\nRKt17dM8eFk,2014.0,8,10,2016,The Skeleton Twins,You Ruined My Marriage,tt1571249\nQEQp25xImoA,2014.0,7,10,2016,The Skeleton Twins,He Was Your English Teacher,tt1571249\nyP9sbfNwtv0,2014.0,6,10,2016,The Skeleton Twins,Halloween,tt1571249\n0npouzhhZTo,2014.0,5,10,2016,The Skeleton Twins,Nothing's Gonna Stop Us Now,tt1571249\nUZnEqDr9PKE,2014.0,4,10,2016,The Skeleton Twins,Whore-Like Tendencies,tt1571249\n5X_mnh-S0pU,2014.0,3,10,2016,The Skeleton Twins,Laughing Gas,tt1571249\nTNVwN7IfVAw,2014.0,1,10,2016,The Skeleton Twins,Welcome Home,tt1571249\nSl1G9Jxc9hI,2014.0,2,10,2016,The Skeleton Twins,A Bad Mother,tt1571249\nlntqgt5jbjg,2015.0,8,10,2016,Sharknado 3: Oh Hell No!,Claudia's First Date,tt3899796\nVV55v_IKVJI,2015.0,7,10,2016,Sharknado 3: Oh Hell No!,\"Trust Me, They're Real\",tt3899796\nlh3WF7shhlM,2015.0,9,10,2016,Sharknado 3: Oh Hell No!,Sharks in Space,tt3899796\nJ6i7WPT1cFk,2015.0,10,10,2016,Sharknado 3: Oh Hell No!,The Birth of Baby Gil,tt3899796\n9Ipb0xcxdqk,2015.0,2,10,2016,Sharknado 3: Oh Hell No!,Nova Returns,tt3899796\nhSe-_6hmDgI,2015.0,5,10,2016,Sharknado 3: Oh Hell No!,Take My Picture!,tt3899796\neKrrYByQTQI,2015.0,3,10,2016,Sharknado 3: Oh Hell No!,Lucas Loses Limbs,tt3899796\nmvFQciz5wRc,2015.0,4,10,2016,Sharknado 3: Oh Hell No!,Professional Shark Slayers,tt3899796\nzu9vz_Krzb0,2015.0,1,10,2016,Sharknado 3: Oh Hell No!,God Bless America,tt3899796\nwBFzZM9YqEo,2015.0,6,10,2016,Sharknado 3: Oh Hell No!,Shark Coaster,tt3899796\nBBXUqYlAK6o,2011.0,6,10,2016,Mega Python vs. Gatoroid,I Think We're Alone Now,tt1680138\nnftQNmMRqG8,2011.0,4,10,2016,Mega Python vs. Gatoroid,Let's Blow It Up,tt1680138\nZ6rYB0AOMjA,2011.0,1,10,2016,Mega Python vs. Gatoroid,Python Eggs,tt1680138\n_UhMIImQ-Bo,2011.0,2,10,2016,Mega Python vs. Gatoroid,Headless Hunter,tt1680138\nejRc7XEbAQI,2011.0,3,10,2016,Mega Python vs. Gatoroid,Eaten Alive,tt1680138\nm6U7qRsCp6M,2011.0,7,10,2016,Mega Python vs. Gatoroid,Reptile Rampage,tt1680138\n-zEXV5oiWgc,2011.0,5,10,2016,Mega Python vs. Gatoroid,Cake War Cat Fight,tt1680138\n3I44VJIIzKM,2011.0,8,10,2016,Mega Python vs. Gatoroid,No Girl Left Behind,tt1680138\neG4B_DIenu8,2011.0,10,10,2016,Mega Python vs. Gatoroid,I'm Alive!,tt1680138\ndP9mVoZ-cmQ,2011.0,9,10,2016,Mega Python vs. Gatoroid,Chomped from the Chopper,tt1680138\n0DnThxPfhJE,2013.0,4,10,2016,Jackass Presents: Bad Grandpa,Moving the Body,tt3063516\nsmUy5NzszX0,2013.0,1,10,2016,Jackass Presents: Bad Grandpa,Stuck to the Machine,tt3063516\nDoqPEhVHdBM,2013.0,10,10,2016,Jackass Presents: Bad Grandpa,Beauty Pageant,tt3063516\nbQXJoR6tLao,2013.0,2,10,2016,Jackass Presents: Bad Grandpa,Funeral Fail,tt3063516\n1fVPS7eLbME,2013.0,8,10,2016,Jackass Presents: Bad Grandpa,You Sharted!,tt3063516\nFqYJIUS39Ck,2013.0,3,10,2016,Jackass Presents: Bad Grandpa,Broken Bed,tt3063516\nIV0hoLATbJY,2013.0,6,10,2016,Jackass Presents: Bad Grandpa,Shipping Billy,tt3063516\nTaJeShUtQjc,2013.0,7,10,2016,Jackass Presents: Bad Grandpa,Grandpa Strips,tt3063516\nIbkWZDej_v8,2013.0,9,10,2016,Jackass Presents: Bad Grandpa,Hanging with Grandpa,tt3063516\nvQSkLuEOdMM,2013.0,5,10,2016,Jackass Presents: Bad Grandpa,Grandpa Goes for a Ride,tt3063516\nqgbSfZMR99w,2013.0,4,10,2016,Filth,Defamation of Character,tt1450321\naPkfoqjZXog,2013.0,6,10,2016,Filth,Phone Sex,tt1450321\nBH3ApQHJslA,2013.0,3,10,2016,Filth,Painful Hallucinations,tt1450321\ne37vIq1VL0I,2013.0,8,10,2016,Filth,There's Something Wrong With Me,tt1450321\nz6FcMyuo0R4,2013.0,9,10,2016,Filth,Wanna Hear You Squeal,tt1450321\nd5CmbbyeDco,2013.0,1,10,2016,Filth,Dirty Cop,tt1450321\njQPKeltJ-Vk,2013.0,5,10,2016,Filth,A Fine Man,tt1450321\nIMYTK5IyZ9E,2013.0,10,10,2016,Filth,Same Rules Apply,tt1450321\nLrIJa8zJs_0,2013.0,7,10,2016,Filth,You Are,tt1450321\nRsSl85y9JN4,2013.0,2,10,2016,Filth,Tulips on My Bulbs,tt1450321\niRLGo522K5A,2010.0,6,10,2016,Mega Piranha,Suck on the Battery,tt1587807\nYK7cNXMRifo,2010.0,10,10,2016,Mega Piranha,You're Fish Food,tt1587807\ngCnWKrvrCNw,2010.0,2,10,2016,Mega Piranha,Scuba Snacks,tt1587807\nxiVeUn1rF3E,2010.0,1,10,2016,Mega Piranha,Devoured,tt1587807\nbJXBNZ7FU40,2010.0,5,10,2016,Mega Piranha,Fish Kicker,tt1587807\nXSTakNMoF2s,2010.0,8,10,2016,Mega Piranha,Helicopter Hijack,tt1587807\niUi2XKRnJD0,2010.0,7,10,2016,Mega Piranha,You Ate My Battleship!,tt1587807\nfn1dNeTNduk,2010.0,3,10,2016,Mega Piranha,You Can't Help Him,tt1587807\npShuaMA2rY4,2010.0,4,10,2016,Mega Piranha,Exploding Piranhas,tt1587807\nYjF4rd3J58U,2010.0,9,10,2016,Mega Piranha,Persistent Piranhas,tt1587807\nVazRhsh6uys,1994.0,4,7,2016,Richie Rich,Baseball Bet,tt0110989\nkFFuJQRlm38,1994.0,5,7,2016,Richie Rich,Richie Runs Things,tt0110989\n-ZlL0LLfjKY,1994.0,3,7,2016,Richie Rich,Business School,tt0110989\nROzcf7QoDjU,1994.0,6,7,2016,Richie Rich,Cadbury Escapes,tt0110989\nbhYOGuozHd4,1994.0,7,7,2016,Richie Rich,Keenbeam Saves Richie,tt0110989\nuQlKjRScXww,1994.0,1,7,2016,Richie Rich,Mount Richmore,tt0110989\nmyOTp1wr3Bg,1994.0,2,7,2016,Richie Rich,Robo-Bee,tt0110989\nyb5FDpFLc1M,2015.0,10,10,2016,Ted 2,Ted Wrecks the Car,tt2637276\n8YDVV75itA0,2015.0,9,10,2016,Ted 2,Cookie in the Crack,tt2637276\nP0JUY_IEZts,2015.0,8,10,2016,Ted 2,Beer Fight and Sad Improv,tt2637276\nf0wEV9jySXg,2015.0,7,10,2016,Ted 2,Questioning Ted,tt2637276\nus_GLuu2SAc,2015.0,6,10,2016,Ted 2,Library Dance,tt2637276\nz6ViDZpVoYc,2015.0,1,10,2016,Ted 2,Trix Are for Kids,tt2637276\nER6BpmtBLkk,2015.0,4,10,2016,Ted 2,Sperm Bank Mishap,tt2637276\njot1h4tgY6M,2015.0,2,10,2016,Ted 2,Law & Order & Porn,tt2637276\n83xaGtnlvR0,2015.0,3,10,2016,Ted 2,Operation Tom Brady,tt2637276\n3TWv-3cC9NM,2015.0,5,10,2016,Ted 2,Sam L. Jackson,tt2637276\nLMGAxyUnURI,1992.0,6,10,2016,The Cutting Edge,You're a Lousy Drunk,tt0104040\nEqu4D2mZDHc,1992.0,9,10,2016,The Cutting Edge,Kate's Confession,tt0104040\nXcMH5ntEWGQ,1992.0,8,10,2016,The Cutting Edge,She Has to Fly!,tt0104040\nm946LkLieG8,1992.0,7,10,2016,The Cutting Edge,With Another Woman,tt0104040\nTrRogqsarno,1992.0,4,10,2016,The Cutting Edge,Foreplay,tt0104040\nYmbXanCiB-U,1992.0,10,10,2016,The Cutting Edge,Because I Love You,tt0104040\nZm0f0oFUxVA,1992.0,2,10,2016,The Cutting Edge,Toe Pick!,tt0104040\nPwSihgp_iTE,1992.0,1,10,2016,The Cutting Edge,Kate Meets Doug,tt0104040\nhl31RQCC_Bc,1992.0,5,10,2016,The Cutting Edge,How Nervous Are You?,tt0104040\n5sr-kuYhYGU,1992.0,3,10,2016,The Cutting Edge,Sparks Fly,tt0104040\ndOzGnmkbahw,2014.0,4,10,2016,Transformers: Age of Extinction,We Don't Need You Anymore,tt2109248\nY9isIphHz2w,2014.0,3,10,2016,Transformers: Age of Extinction,Autobots Reunion,tt2109248\n9C_429woeJ0,2014.0,9,10,2016,Transformers: Age of Extinction,Us vs. Them,tt2109248\nqzZegCkbJAw,2014.0,7,10,2016,Transformers: Age of Extinction,Dinobots Join the Fight,tt2109248\nWHu2355LLQc,2014.0,10,10,2016,Transformers: Age of Extinction,\"Honor, To the End\",tt2109248\n8koQ3N3w7aw,2014.0,8,10,2016,Transformers: Age of Extinction,Dinobot Reinforcements,tt2109248\nyDd3xayehVg,2014.0,2,10,2016,Transformers: Age of Extinction,Grab My Stick!,tt2109248\ncxRYIDsZzuE,2014.0,5,10,2016,Transformers: Age of Extinction,Lockdown and Loaded,tt2109248\n4rzrz48Fa_o,2014.0,1,10,2016,Transformers: Age of Extinction,Optimus Emerges,tt2109248\nVcxvmi26Kfw,2014.0,6,10,2016,Transformers: Age of Extinction,A Long Way Down,tt2109248\nFYm6LTv7PKk,2011.0,10,10,2016,Transformers: Dark of the Moon,You Betrayed Yourself,tt1399103\nRonS_bJ7mcU,2011.0,1,10,2016,Transformers: Dark of the Moon,Escape from Cybertron,tt1399103\n5qzsQMiYINo,2011.0,6,10,2016,Transformers: Dark of the Moon,\"No Prisoners, Only Trophies\",tt1399103\nRzngZOLn-bk,2011.0,7,10,2016,Transformers: Dark of the Moon,Army Rangers vs. Decepticons,tt1399103\nmLk_txo4sYc,2011.0,3,10,2016,Transformers: Dark of the Moon,Autobots vs. Decepticons,tt1399103\noUleBi3j0o8,2011.0,4,10,2016,Transformers: Dark of the Moon,I'm Coming for You!,tt1399103\n0vtLA9LFkSs,2011.0,5,10,2016,Transformers: Dark of the Moon,\"You Can't Hide, Boy!\",tt1399103\nbtwtChuzeaA,2011.0,9,10,2016,Transformers: Dark of the Moon,Prime vs. Prime,tt1399103\na_UjNi8M_bw,2011.0,8,10,2016,Transformers: Dark of the Moon,The Battle for Chicago,tt1399103\nCDbpKJDcbQ8,2011.0,2,10,2016,Transformers: Dark of the Moon,Shockwave Attacks,tt1399103\nOneax2fARKs,2009.0,5,10,2016,Transformers: Revenge of the Fallen,The Mad Doctor Scene,tt1055369\nsvXObgE9fXc,2009.0,1,10,2016,Transformers: Revenge of the Fallen,Decepticon Hunters Scene,tt1055369\nj8Sb4-hMhCg,2009.0,6,10,2016,Transformers: Revenge of the Fallen,The Death of Optimus Prime Scene,tt1055369\n2V_LmUEtPMs,2009.0,4,10,2016,Transformers: Revenge of the Fallen,A Love Machine Scene,tt1055369\nYejpJgtQtuU,2009.0,2,10,2016,Transformers: Revenge of the Fallen,The Appliances Attack Scene,tt1055369\nfjAnmRjjY3E,2009.0,9,10,2016,Transformers: Revenge of the Fallen,Operation Firestorm Scene,tt1055369\nC73kXYUTC14,2009.0,8,10,2016,Transformers: Revenge of the Fallen,Bumblebee vs. Rampage Scene,tt1055369\nUzPRCUNCoIA,2009.0,7,10,2016,Transformers: Revenge of the Fallen,Devastator's Assault Scene,tt1055369\n0pbdha7w0V0,2009.0,3,10,2016,Transformers: Revenge of the Fallen,Ravage Attacks Scene,tt1055369\ncneoNgk9dhM,2009.0,10,10,2016,Transformers: Revenge of the Fallen,\"I Rise, You Fall Scene\",tt1055369\nrWLEdpLkmrc,2011.0,2,10,2016,Almighty Thor,Odin vs. Loki,tt1792794\nyjuTLT5OWko,2011.0,3,10,2016,Almighty Thor,Fight Me Like a Warrior,tt1792794\nkBI3jfVTQ04,2011.0,1,10,2016,Almighty Thor,Valor and Strength,tt1792794\nnM1xpUM4uUs,2011.0,4,10,2016,Almighty Thor,Battle at the Tree of Life,tt1792794\ngpEiNwKpq1U,2011.0,5,10,2016,Almighty Thor,Mind Tricks,tt1792794\nCNYtVjUf5uc,2011.0,10,10,2016,Almighty Thor,Thor vs. Loki,tt1792794\n38mMNp3gyYs,2011.0,6,10,2016,Almighty Thor,The Power of the Bone,tt1792794\nN2EC0gAi2lk,2011.0,8,10,2016,Almighty Thor,Loki and the Lindworms,tt1792794\ndEqZRPnfSqo,2011.0,9,10,2016,Almighty Thor,\"Die, Mother of Living Earth\",tt1792794\nQiVqI3oxdtw,2011.0,7,10,2016,Almighty Thor,Bring My Father Back to Life,tt1792794\nH9Anw9hFNQE,1995.0,6,13,2016,Hackers,I Was Zero Cool,tt0113243\ndgXARu_D5d8,2012.0,3,10,2016,Abraham Lincoln vs. Zombies,\"They're Coming, Mr. President!\",tt2246549\nZLbDKSo2QLA,2012.0,6,10,2016,Abraham Lincoln vs. Zombies,Emancipate This,tt2246549\nDOeYRNcSjWM,2012.0,9,10,2016,Abraham Lincoln vs. Zombies,\"Blowing Up the \"\"Stone\"\" Walls\",tt2246549\ngu_ckpTcrBI,2012.0,10,10,2016,Abraham Lincoln vs. Zombies,Abe's Sacrifice,tt2246549\nr_Bdli4c8TA,2012.0,8,10,2016,Abraham Lincoln vs. Zombies,Overwhelmed by the Zombies,tt2246549\nHc6cJ6xmfM0,2012.0,5,10,2016,Abraham Lincoln vs. Zombies,A Single Drop of Blood,tt2246549\npF67F-hlVaA,2012.0,7,10,2016,Abraham Lincoln vs. Zombies,Living to Fight Another Day,tt2246549\nUczoOVtUsDA,2012.0,1,10,2016,Abraham Lincoln vs. Zombies,Standing Against Reason,tt2246549\nsNi3hwriXyE,2012.0,2,10,2016,Abraham Lincoln vs. Zombies,Only in the Head!,tt2246549\nTCIgI-AObzk,2012.0,4,10,2016,Abraham Lincoln vs. Zombies,On the Run,tt2246549\nhdrvg0jmL8s,2004.0,11,11,2016,Barbershop 2,Calvin Addresses City Council,tt0337579\niY5fvk3H2Js,2004.0,3,11,2016,Barbershop 2,Nappy Cutz,tt0337579\nEqEDcrYPp3U,2004.0,10,11,2016,Barbershop 2,Getting to Know Ricky,tt0337579\nEKLCchi0iCI,2004.0,1,11,2016,Barbershop 2,I Don't Know This Woman,tt0337579\n85PpxPJ52us,2004.0,5,11,2016,Barbershop 2,New Rules,tt0337579\nwBIVUUflNb4,2004.0,6,11,2016,Barbershop 2,Gina vs. Eddie,tt0337579\nL-y9V-gpj9U,2004.0,4,11,2016,Barbershop 2,Lactose Intolerant,tt0337579\nFInHKeP2UoU,2004.0,9,11,2016,Barbershop 2,Haircut for the Councilman,tt0337579\n9MDbaBqAqMg,2004.0,8,11,2016,Barbershop 2,Breaking Into Nappy Cutz,tt0337579\nlRQXQXsXIm8,2004.0,2,11,2016,Barbershop 2,Toddler Penis,tt0337579\nCoFFpId2-Ak,2004.0,7,11,2016,Barbershop 2,Ricky Kisses Terri,tt0337579\nh_Awe6CI91k,1995.0,4,13,2016,Hackers,Ramon Gets Busted,tt0113243\npxiwqleE9Do,1995.0,2,13,2016,Hackers,Pool on the Roof,tt0113243\nr38fEGep2yU,1995.0,11,13,2016,Hackers,Kind of Feel Like God,tt0113243\n2son-vLime4,1995.0,3,13,2016,Hackers,Dade's Revenge,tt0113243\nSFEc7iy6zmI,1995.0,13,13,2016,Hackers,Crash and Burn,tt0113243\neL2DjnXT4wQ,1995.0,12,13,2016,Hackers,The Plague is Caught,tt0113243\n5y_SbnPx_cE,1995.0,10,13,2016,Hackers,Hack the Planet,tt0113243\nGIKfEAF2Yhw,1995.0,9,13,2016,Hackers,\"Mess With the Best, Die Like the Rest\",tt0113243\nBmz67ErIRa4,1995.0,8,13,2016,Hackers,Hack the Gibson,tt0113243\n0T0QWPRBau4,1995.0,7,13,2016,Hackers,Subway Defense System,tt0113243\nbcAACOrgVKE,1995.0,5,13,2016,Hackers,The Worm,tt0113243\npeBuMWtkw8s,1995.0,1,13,2016,Hackers,Zero Cool,tt0113243\ny6mlssn2bl0,2005.0,8,12,2016,Beauty Shop,Joe's Spear,tt0388500\nxCLCNJpKLx8,2005.0,10,12,2016,Beauty Shop,Airbags for Breasts,tt0388500\n07YuuA_2O9w,2005.0,1,12,2016,Beauty Shop,Gina Quits,tt0388500\nAwXJIHFo84c,2005.0,9,12,2016,Beauty Shop,I Will Burn Your Ass,tt0388500\n0CQi2Bb7WE8,2005.0,7,12,2016,Beauty Shop,Bikini Wax,tt0388500\nzs5bqvL5Wh4,2005.0,12,12,2016,Beauty Shop,A Phenomenal Woman,tt0388500\nhSwy6UI-djc,2005.0,11,12,2016,Beauty Shop,Don King Issues,tt0388500\niNa97wFdFyE,2005.0,6,12,2016,Beauty Shop,Does My Sexiness Offend You?,tt0388500\nJp9IN_iver4,2005.0,5,12,2016,Beauty Shop,How to Get Rid of a Man,tt0388500\nPHj4OVnU6EY,2005.0,4,12,2016,Beauty Shop,Mrs. Towner,tt0388500\njnoCeqeNM3g,2005.0,2,12,2016,Beauty Shop,We Are Professionals,tt0388500\n3FOUAKr22K4,2005.0,3,12,2016,Beauty Shop,Meet the White Girl,tt0388500\nq0vvYHuA10U,1989.0,7,10,2016,Indiana Jones and the Last Crusade,An Army of Birds,tt0097576\nmG1vn39lP3M,1989.0,2,10,2016,Indiana Jones and the Last Crusade,Boat Chase,tt0097576\nAwH6-Yh7_SM,1989.0,1,10,2016,Indiana Jones and the Last Crusade,Young Indy,tt0097576\nhl8e9i6YiA8,1989.0,3,10,2016,Indiana Jones and the Last Crusade,Fiery Escape,tt0097576\nNp4OojYGixI,1989.0,9,10,2016,Indiana Jones and the Last Crusade,I've Lost Him,tt0097576\no4lq3SOB8sw,1989.0,5,10,2016,Indiana Jones and the Last Crusade,Hitler's Autograph,tt0097576\nU6tzqlxOr2U,1989.0,8,10,2016,Indiana Jones and the Last Crusade,Tank Battle,tt0097576\nilV5Qt01eyc,1989.0,4,10,2016,Indiana Jones and the Last Crusade,Motorcycle Chase,tt0097576\ns0vNsH81YeA,1989.0,6,10,2016,Indiana Jones and the Last Crusade,No Ticket,tt0097576\nVA7J0KkanzM,1989.0,10,10,2016,Indiana Jones and the Last Crusade,He Chose Poorly,tt0097576\nPT3Wpc71ebk,2008.0,7,10,2016,Indiana Jones 4,Jeep Sword Fight,tt0367882\nVbdaoAYveUA,2008.0,8,10,2016,Indiana Jones 4,Mutt and the Monkeys,tt0367882\nohnkD-gjNVQ,2008.0,10,10,2016,Indiana Jones 4,I Want to Know,tt0367882\nK1R4hHq8yr4,2008.0,9,10,2016,Indiana Jones 4,Giant Ants,tt0367882\nfcfYrTFbM94,2008.0,5,10,2016,Indiana Jones 4,Marion is Your Mother?,tt0367882\niGIooJXEu9E,2008.0,6,10,2016,Indiana Jones 4,Henry Jones III,tt0367882\nsR_xG8DNCSI,2008.0,3,10,2016,Indiana Jones 4,Get Out of the Library,tt0367882\nPHHgumL4rUI,2008.0,1,10,2016,Indiana Jones 4,Warehouse Escape,tt0367882\njn4Vhkmb4Lw,2008.0,2,10,2016,Indiana Jones 4,Saved By the Fridge,tt0367882\nnpaJix_AarM,2008.0,4,10,2016,Indiana Jones 4,The Crystal Skull,tt0367882\nEyexoSJ1tsg,1974.0,1,11,2016,The Conversation,Under Surveillance,tt0071360\ndWhFW021gwM,1974.0,2,11,2016,The Conversation,I'm Your Secret,tt0071360\n7ocMJfJATEw,1974.0,3,11,2016,The Conversation,Someone May Get Hurt,tt0071360\nvROih4weKoM,1974.0,5,11,2016,The Conversation,He'd Kill Us If He Got the Chance,tt0071360\nKRfJqmecqUQ,1974.0,6,11,2016,The Conversation,Phone Tap,tt0071360\nSH4vCrz5Pb4,1974.0,8,11,2016,The Conversation,I'm Not Afraid of Death,tt0071360\nGcPyVMO8bcA,1974.0,7,11,2016,The Conversation,The Bugger Got Bugged,tt0071360\nYGOmoGwJbTk,1974.0,9,11,2016,The Conversation,What Will You Do to Her?,tt0071360\nbtXmzToD3W4,1974.0,11,11,2016,The Conversation,Bug Hunt,tt0071360\nzbN6F4tfbgo,1974.0,10,11,2016,The Conversation,Scene of the Crime,tt0071360\nwTP_SdjD5ms,1978.0,12,12,2016,Invasion of the Body Snatchers,The Scream,tt0077745\nnkmg10eebk4,1974.0,4,11,2016,The Conversation,What a Stupid Conversation,tt0071360\nes83ejXi5wg,1978.0,9,12,2016,Invasion of the Body Snatchers,Escaping Kibner,tt0077745\nLIhdfU4RIdo,1978.0,11,12,2016,Invasion of the Body Snatchers,Matthew Gets Away,tt0077745\nvdyYR85RNkk,1978.0,8,12,2016,Invasion of the Body Snatchers,Type H,tt0077745\nktEW65QQFgQ,1978.0,10,12,2016,Invasion of the Body Snatchers,Dog-Man Pod,tt0077745\neT5XhG7qLcU,1978.0,7,12,2016,Invasion of the Body Snatchers,Escaping the Pod People,tt0077745\n3Iambpg_8w4,1978.0,5,12,2016,Invasion of the Body Snatchers,The Run Around,tt0077745\n8mYlqWefu-8,1978.0,6,12,2016,Invasion of the Body Snatchers,Wake the Others!,tt0077745\n0BXa52qz-kU,1978.0,4,12,2016,Invasion of the Body Snatchers,Long Gone,tt0077745\nq4VIMzhfeYc,1978.0,2,12,2016,Invasion of the Body Snatchers,Examining a Pod Body,tt0077745\nz_G7CS4mJqc,1978.0,3,12,2016,Invasion of the Body Snatchers,Eyes Wide Open,tt0077745\nw2XWa1XuKSI,1978.0,1,12,2016,Invasion of the Body Snatchers,They're Coming!,tt0077745\n1CJuzTFRGhE,2015.0,10,11,2016,Accidental Love,Sexual Favors,tt1137470\n3izQonrYukE,2015.0,2,11,2016,Accidental Love,Orgasms Do Exist,tt1137470\nDmDtPzG5aU0,2015.0,11,11,2016,Accidental Love,Not Everyone Has Really Awesome Health Care,tt1137470\nEuUUunxYat8,2015.0,6,11,2016,Accidental Love,Death by Girl Scout Cookies,tt1137470\ncK2a6BzrUO0,2015.0,8,11,2016,Accidental Love,Catastrophic Lesbianism,tt1137470\nKcPIEP0GpSo,2015.0,9,11,2016,Accidental Love,Men's Spiritual Workshop,tt1137470\nOLgi3eAwNGE,2015.0,7,11,2016,Accidental Love,I'm a Woman With a Nail in My Head,tt1137470\nBtEfmxkeEcY,2015.0,4,11,2016,Accidental Love,\"Rock on, Moon Base\",tt1137470\n8pEobIigs5Y,2015.0,1,11,2016,Accidental Love,Crazy Talking to Crazy,tt1137470\n-pCVsB4Dghk,2015.0,5,11,2016,Accidental Love,Voluntary Sex Thing,tt1137470\niOhZLY0cDV8,2015.0,3,11,2016,Accidental Love,I Cry for You,tt1137470\nYKFQfaDL9gQ,2013.0,10,10,2016,Mama,The Ending,tt2023587\nyGGZUbqbTWg,2013.0,9,10,2016,Mama,She's Mad,tt2023587\ndUoKiRrGu4c,2013.0,8,10,2016,Mama,Scared the Crap Out of Me,tt2023587\nyayNXxs76vE,2013.0,6,10,2016,Mama,Is She Here?,tt2023587\no3w6MouV4NE,2013.0,7,10,2016,Mama,I Know What You Want,tt2023587\nqWOQp-rJ0Vc,2013.0,4,10,2016,Mama,Someone's Here,tt2023587\ngFES6-SLD_s,2013.0,5,10,2016,Mama,Don't Turn Around,tt2023587\nyxiNPHXAH0s,2013.0,2,10,2016,Mama,Feral Children,tt2023587\nEo87byVKgfo,2013.0,1,10,2016,Mama,Daddy is Taken,tt2023587\nFrwrlztd8C4,2013.0,3,10,2016,Mama,and the Kids,tt2023587\nBdc_wuMUpP8,2011.0,1,10,2016,A Little Bit of Heaven,Condoms for Her,tt1440161\n1-70_Trz7M8,2011.0,2,10,2016,A Little Bit of Heaven,Meeting God,tt1440161\n1Wm5NiRIKB4,2011.0,4,10,2016,A Little Bit of Heaven,Hitting on the Doctor,tt1440161\nbHGyGED8qCc,2011.0,10,10,2016,A Little Bit of Heaven,A Happy Funeral,tt1440161\n1-pgYgfRbZE,2011.0,5,10,2016,A Little Bit of Heaven,Makeup of a Fool,tt1440161\nNJe9WplQKN4,2011.0,3,10,2016,A Little Bit of Heaven,I Have Cancer,tt1440161\nb-7IuyhoAxg,2011.0,6,10,2016,A Little Bit of Heaven,Little Gigolo,tt1440161\nMoHQNC_-45U,2011.0,7,10,2016,A Little Bit of Heaven,A Whole Lot of Heaven,tt1440161\n8MVN6SVnO_o,2011.0,8,10,2016,A Little Bit of Heaven,My Third Wish,tt1440161\n7FK6P0sTBrs,2011.0,9,10,2016,A Little Bit of Heaven,My Second Wish,tt1440161\nsO6DX9YCIPw,2010.0,1,11,2016,Remember Me,Alleyway Brawl,tt1403981\nzbZmKqU90pE,2010.0,2,11,2016,Remember Me,Sociological Experiment,tt1403981\ncQigrDa8S60,2010.0,3,11,2016,Remember Me,Dessert First,tt1403981\n71cKzwJPI5g,2010.0,4,11,2016,Remember Me,Wet and Playful,tt1403981\n6Cf1MeHEZn0,2010.0,5,11,2016,Remember Me,I Take After My Mother,tt1403981\nnxnkxubWt5A,2010.0,6,11,2016,Remember Me,Sharing Secrets,tt1403981\nk39MKOaoDhc,2010.0,11,11,2016,Remember Me,I Forgive You,tt1403981\nPJQgGszBO9s,2010.0,8,11,2016,Remember Me,Why Aren't You Riveted?,tt1403981\nvxloU1qqM_w,2010.0,7,11,2016,Remember Me,You're Tyler's Girlfriend,tt1403981\nNOVhlDQthwM,2010.0,9,11,2016,Remember Me,I Didn't Mean to Hurt You,tt1403981\n0pfqzjPMnoE,2010.0,10,11,2016,Remember Me,School Rage,tt1403981\nxbHSfACHWQE,2013.0,11,11,2016,Peeples,The Proposal,tt1699755\nDkVjSKOdczM,2013.0,3,11,2016,Peeples,Hurts So Good,tt1699755\nDOqHpCInxQ4,2013.0,10,11,2016,Peeples,Unraveling the Truth,tt1699755\nWOG22C6GDMA,2013.0,8,11,2016,Peeples,The Sweat Teepee,tt1699755\nSUQaxkWkB0s,2013.0,5,11,2016,Peeples,Naughty School Girl,tt1699755\npx2rxAmJNHU,2013.0,9,11,2016,Peeples,Moby Dick Day,tt1699755\nhE7Nc_la-l0,2013.0,1,11,2016,Peeples,The Chocolate Kennedys,tt1699755\neiKSmbxn4UY,2013.0,7,11,2016,Peeples,Simon Sticky Fingers,tt1699755\nDUMW--Zlrcs,2013.0,6,11,2016,Peeples,The Headpiece,tt1699755\nOKR7b6NL6IU,2013.0,2,11,2016,Peeples,First Impressions,tt1699755\n_9rqQ-bOcLc,2013.0,4,11,2016,Peeples,Nude Beach,tt1699755\nwwxjFuoLYzQ,2013.0,8,10,2016,Identity Thief,Car Chase,tt2024432\nUV5zCTfvurQ,2012.0,9,10,2016,The Impossible,Maria's Ordeal,tt1649419\nJ-7LezqtuMY,2012.0,3,10,2016,The Impossible,Thank You,tt1649419\nLalslCf2kLQ,2012.0,5,10,2016,The Impossible,Calling Home,tt1649419\ntagDBoX24S0,2012.0,8,10,2016,The Impossible,You Came Back,tt1649419\nvEFoOcev00s,2012.0,4,10,2016,The Impossible,What's Your Name?,tt1649419\nl0RkrxY9mH8,2012.0,6,10,2016,The Impossible,A Beautiful Mystery,tt1649419\n4d-EYIZAqXc,2012.0,1,10,2016,The Impossible,The Tsunami,tt1649419\nFnahBy4Od9Q,2012.0,2,10,2016,The Impossible,Is it Over?,tt1649419\nLfSLyM9XiCw,2012.0,10,10,2016,The Impossible,It's Going to Be Okay,tt1649419\nT5-LhZ2YpGc,2012.0,7,10,2016,The Impossible,Reunited.,tt1649419\nazkJMOVoNys,2013.0,9,10,2016,Identity Thief,Your Real Name,tt2024432\ngEq_wldXBww,2013.0,10,10,2016,Identity Thief,The Ending,tt2024432\nFOWZ7B1QenY,2013.0,1,10,2016,Identity Thief,A Trained Baboon,tt2024432\n1shru4620TE,2013.0,3,10,2016,Identity Thief,Not the Easy Way,tt2024432\nYXt8RmeU_AA,2013.0,4,10,2016,Identity Thief,Highway Fight,tt2024432\n8pi1bm3890U,2013.0,2,10,2016,Identity Thief,Sandy Meets Sandy,tt2024432\ns8hKbzuOAQY,2013.0,7,10,2016,Identity Thief,Big Chuck and Diana,tt2024432\nmszPMVP_qcw,2013.0,6,10,2016,Identity Thief,Dinner With a Sociopath,tt2024432\nfjodt2JnWT8,2013.0,5,10,2016,Identity Thief,Singing to the Radio,tt2024432\nHu-xJbVwgPM,2014.0,10,10,2016,Sharknado 2: The Second One,\"Will You Marry Me, Again?\",tt3062074\nGA_4dJb-nQg,2014.0,4,10,2016,Sharknado 2: The Second One,Subway Sharks,tt3062074\nS8aigz2j7-o,2014.0,7,10,2016,Sharknado 2: The Second One,Let's Go Kill Some Sharks!,tt3062074\nJipo-s5DGj8,2014.0,3,10,2016,Sharknado 2: The Second One,Stun Gun Meets Sharp Teeth,tt3062074\nxHgLwzZ2_8s,2014.0,8,10,2016,Sharknado 2: The Second One,Let the Fireworks Begin,tt3062074\n-BNqJHOxNp0,2014.0,9,10,2016,Sharknado 2: The Second One,Through the Eye of the Sharknado,tt3062074\n1iwBRoAb_Cg,2014.0,6,10,2016,Sharknado 2: The Second One,Flaming Sharks!,tt3062074\nsRFINj9g1iI,2014.0,5,10,2016,Sharknado 2: The Second One,The Statue of Liberty and Death,tt3062074\nC_0W1Q51_z8,2014.0,2,10,2016,Sharknado 2: The Second One,My Hand!,tt3062074\nFmPwgLX9fAQ,2014.0,1,10,2016,Sharknado 2: The Second One,Sharks on a Plane,tt3062074\nSQzC9SO66pc,2013.0,1,10,2016,Sharknado,Everyone Out of the Water!,tt2724064\nnaCL7BZb4Lw,2013.0,9,10,2016,Sharknado,I'm Gonna Finish This,tt2724064\nLhbPVQUZV0A,2013.0,8,10,2016,Sharknado,Chopper Chomper,tt2724064\nOtBnQ30-Iio,2013.0,7,10,2016,Sharknado,It's Raining Sharks!,tt2724064\nudcb-kQs-GU,2013.0,2,10,2016,Sharknado,Santa Monica Pier Carnage,tt2724064\n0slaW0ARW1Q,2013.0,6,10,2016,Sharknado,We're Gonna Need a Bigger Chopper,tt2724064\nuYDdBUasjxM,2013.0,5,10,2016,Sharknado,Shark Made Sunroof,tt2724064\nnsR0Z8f6QAM,2013.0,3,10,2016,Sharknado,Razor-Toothed Home Invasion,tt2724064\n0eBDwVSU56s,2013.0,10,10,2016,Sharknado,Chainsaw vs Jaws,tt2724064\nqlX5rnpp0iA,2013.0,4,10,2016,Sharknado,Hollywood Will Kill You,tt2724064\nEn3JBEKvxr4,2011.0,1,11,2016,Jiro Dreams of Sushi,Fall in Love With Your Work,tt1772925\neF9nKXO2Zdg,2011.0,10,11,2016,Jiro Dreams of Sushi,Like a Concerto,tt1772925\novD51p3YDFk,2011.0,11,11,2016,Jiro Dreams of Sushi,Always Elevate Your Craft,tt1772925\nm1HazoM2hOY,2011.0,6,11,2016,Jiro Dreams of Sushi,Tuna Shopping,tt1772925\nXYwGKDK87DI,2011.0,7,11,2016,Jiro Dreams of Sushi,The Orchestra of Sushi,tt1772925\ntWHVvdPw2t4,2011.0,4,11,2016,Jiro Dreams of Sushi,Dreaming of Sushi,tt1772925\n0x0muJjYzp4,2011.0,9,11,2016,Jiro Dreams of Sushi,Umami,tt1772925\n1LoKbaf2vrU,2011.0,8,11,2016,Jiro Dreams of Sushi,Making Egg Sushi,tt1772925\nf9qQfURhph4,2011.0,3,11,2016,Jiro Dreams of Sushi,Subtlety of Tuna,tt1772925\ntyUJnwrI-FU,2011.0,5,11,2016,Jiro Dreams of Sushi,Jiro's Ghost,tt1772925\n8nOx6uj46XQ,2011.0,2,11,2016,Jiro Dreams of Sushi,Attributes of a Great Chef,tt1772925\nv53yiG9-_xs,1987.0,10,10,2016,Superman IV,There Will Be Peace,tt0094074\n9jxlrFSiLCk,1987.0,7,10,2016,Superman IV,Nuclear Man Weakens Superman,tt0094074\nuQLeZO2Z1YQ,1987.0,9,10,2016,Superman IV,Moon Battle,tt0094074\n0ezPVizHpY0,1987.0,8,10,2016,Superman IV,Where is the Woman?,tt0094074\nlMilbGNSGtI,1987.0,5,10,2016,Superman IV,Superman & Clark Kent,tt0094074\nf5mcMmE3RL8,1987.0,6,10,2016,Superman IV,Superman vs. Nuclear Man,tt0094074\n-jiQdqoe1cU,1987.0,3,10,2016,Superman IV,\"No Pain, No Gain\",tt0094074\nP-3Aca5nRn0,1987.0,1,10,2016,Superman IV,Lois & Superman,tt0094074\nzWQIwJsqXrI,1987.0,2,10,2016,Superman IV,Eliminating Nuclear Weapons,tt0094074\n2KLf6pNcizk,1987.0,4,10,2016,Superman IV,Nuclear Man,tt0094074\nO9zWwhJYQNc,1983.0,7,10,2016,Superman III,Superman Reborn,tt0086393\nfQ5sMUzf2bo,1983.0,6,10,2016,Superman III,Superman vs. Clark Kent,tt0086393\n1UpUjmKJaso,1983.0,1,10,2016,Superman III,Making It Rain,tt0086393\n5gf0f8WioTM,1983.0,2,10,2016,Superman III,Rescuing Ricky,tt0086393\nrpZI9it2rJM,1983.0,3,10,2016,Superman III,Superman Is Bad!,tt0086393\nxrggI-ISIQc,1983.0,4,10,2016,Superman III,Thank God for Superman,tt0086393\nIg5uMkprqEk,1983.0,5,10,2016,Superman III,Super Seduction,tt0086393\n05GysooKs0g,1983.0,8,10,2016,Superman III,Superman: The Videogame,tt0086393\nDye66uJlLRc,1983.0,9,10,2016,Superman III,Superman vs. Supercomputer,tt0086393\npesYeCruSyI,2010.0,1,3,2016,Love and Other Drugs,You Have to Leave,tt0758752\nLZDir3e680o,2010.0,3,3,2016,Love and Other Drugs,I Need You,tt0758752\np1aWpCsLn40,1983.0,10,10,2016,Superman III,Superman and Gus,tt0086393\nShwCEMe6wFs,2010.0,2,3,2016,Love and Other Drugs,I Have This Moment,tt0758752\n5vZ-SYX-4oY,2009.0,3,3,2016,Crazy Heart,The Weary Kind,tt1263670\nZ1sTQ3g7V-U,2009.0,2,3,2016,Crazy Heart,I'm Not Gonna Forget You,tt1263670\nRX4-U2r4lS0,2009.0,1,3,2016,Crazy Heart,Fallin' and Flyin',tt1263670\nHLi_w5rCH1I,2000.0,1,5,2016,Cast Away,The Plane Crash,tt0162222\nzaQa4ttIyNo,2000.0,4,5,2016,Cast Away,\"I'm Sorry, Wilson!\",tt0162222\nPKLVAeI7MU8,2000.0,5,5,2016,Cast Away,Who Knows What the Tide Could Bring?,tt0162222\n5zXWLbr1LyY,2000.0,2,5,2016,Cast Away,I Made Fire!,tt0162222\nmgh0nSkIy04,2000.0,3,5,2016,Cast Away,Never Again,tt0162222\nU8x2PcmL4pg,1984.0,2,10,2016,Indiana Jones and the Temple of Doom,Raft Jump,tt0087469\n8YzEce7XN_E,1984.0,1,10,2016,Indiana Jones and the Temple of Doom,Nightclub Brawl,tt0087469\nKjdjDz8jhN4,1984.0,5,10,2016,Indiana Jones and the Temple of Doom,Ritual Heart Removal,tt0087469\nwAZ6dSIMivk,1984.0,3,10,2016,Indiana Jones and the Temple of Doom,Chilled Monkey Brains,tt0087469\nWQXqhk-8h7o,1984.0,4,10,2016,Indiana Jones and the Temple of Doom,Spikes and Bugs,tt0087469\n7YYge4b8MBk,1984.0,6,10,2016,Indiana Jones and the Temple of Doom,Rock Crusher Fight,tt0087469\nnPGxSotEa-c,1984.0,9,10,2016,Indiana Jones and the Temple of Doom,The Rope Bridge,tt0087469\n5rkWzIzJiiA,1984.0,10,10,2016,Indiana Jones and the Temple of Doom,The Stones Are Mine!,tt0087469\nDFa_oIuRDQ8,1984.0,8,10,2016,Indiana Jones and the Temple of Doom,Water! Water! Water!,tt0087469\nhVGl1d8hRBI,1984.0,7,10,2016,Indiana Jones and the Temple of Doom,Mine Cart Chase,tt0087469\nlH7EYLWHT4Q,1981.0,4,10,2016,Raiders of the Lost Ark,The Well of Souls,tt0082971\nFRP0MBNoieY,1981.0,10,10,2016,Raiders of the Lost Ark,Top Secret,tt0082971\nJGB0ZvO8J5k,1981.0,7,10,2016,Raiders of the Lost Ark,Taking the Ark,tt0082971\nYcR9k8o4I0w,1981.0,9,10,2016,Raiders of the Lost Ark,Face Melting Power,tt0082971\nCjCmtqPIRp4,1981.0,6,10,2016,Raiders of the Lost Ark,Truck Chase,tt0082971\nSFzxuEm9MyM,1981.0,8,10,2016,Raiders of the Lost Ark,\"It Not the Years, It's the Mileage\",tt0082971\nvdnA-ESWcPs,1981.0,3,10,2016,Raiders of the Lost Ark,Sword vs. Gun,tt0082971\njW1CeAVPhVg,1981.0,5,10,2016,Raiders of the Lost Ark,Nazi Mechanic Fight,tt0082971\nc6XHLe94SJA,1981.0,1,10,2016,Raiders of the Lost Ark,The Boulder Chase,tt0082971\n854Zlz5-vXQ,1981.0,2,10,2016,Raiders of the Lost Ark,Nepal Shootout,tt0082971\nopt5yQqMIdc,2010.0,3,3,2016,Our Family Wedding,Goat on Viagra,tt1305583\nTggs6HJxghE,2010.0,1,3,2016,Our Family Wedding,\"I'm Not Your Cuz, Vato!\",tt1305583\nlt3h5Ez9t4g,2010.0,2,3,2016,Our Family Wedding,Seating Arrangement Hell,tt1305583\nmLl9jkYywZY,2010.0,2,5,2016,Percy Jackson & the Olympians,The Water Will Give You Power,tt0814255\nwAE_PelhISM,2010.0,1,5,2016,Percy Jackson & the Olympians,The Minotaur Attacks,tt0814255\nHPjZKKV37do,2010.0,3,5,2016,Percy Jackson & the Olympians,Medusa's Garden,tt0814255\n9hoSF_oY8Jw,2010.0,4,5,2016,Percy Jackson & the Olympians,The Museum Hydra,tt0814255\ntJBeQ9Ewo3o,2010.0,5,5,2016,Percy Jackson & the Olympians,Feed Them to the Souls,tt0814255\nGltdSC_5Zzw,2008.0,3,5,2016,The Happening,Stay Ahead of the Wind,tt0949731\nm9PEvezB8Nc,2008.0,2,5,2016,The Happening,My Firearm Is My Friend,tt0949731\nuLtUl4pDmOs,2008.0,1,5,2016,The Happening,Mauled to Death,tt0949731\n_WovFZ_MDW0,2008.0,5,5,2016,The Happening,The Infected Attack,tt0949731\n5y4ZUMVTGcI,2008.0,4,5,2016,The Happening,Talking to Plants,tt0949731\nNUdXYkBhHkQ,2008.0,2,3,2016,The Secret Life of Bees,Send the Bees Love,tt0416212\n0OKdy3Hpzp8,2008.0,3,3,2016,The Secret Life of Bees,Touch Her Heart,tt0416212\n5mL4wT8DEuU,2008.0,1,3,2016,The Secret Life of Bees,I'm Registering to Vote,tt0416212\n_WWIiTlGyYQ,2003.0,1,5,2016,The League of Extraordinary Gentlemen,A Library of Bullets,tt0311429\n_N1L7UsUeuo,2003.0,3,5,2016,The League of Extraordinary Gentlemen,It's Possible I Can't Die,tt0311429\ngCFBkXA374Y,2003.0,4,5,2016,The League of Extraordinary Gentlemen,The Invisible Knife Fight,tt0311429\nZ1RHhhCqpqs,2003.0,2,5,2016,The League of Extraordinary Gentlemen,Save Your Bullets!,tt0311429\nl1SZ4ccagFQ,2003.0,5,5,2016,The League of Extraordinary Gentlemen,Me on a Bad Day,tt0311429\nGo6CJ0JVOUc,1962.0,2,3,2016,The Longest Day,The British Invasion,tt0056197\nZFuV5x1drXU,1962.0,3,3,2016,The Longest Day,The Assault on Pointe du Hoc,tt0056197\nelwNOiCaRIs,1962.0,1,3,2016,The Longest Day,Parachuting Fiasco,tt0056197\nJq19-ZzDlc4,2013.0,3,10,2016,\"Cinco de Mayo, La Batalla\",We Die for Our Homeland,tt2553908\nI6uZjdjkRVg,2013.0,1,10,2016,\"Cinco de Mayo, La Batalla\",We Will March Over Mexico,tt2553908\nLurparxqlNI,2013.0,4,10,2016,\"Cinco de Mayo, La Batalla\",Taken Captive,tt2553908\nu0c_2Mk4rJA,2013.0,2,10,2016,\"Cinco de Mayo, La Batalla\",Facing War,tt2553908\nctU1dN0Js1M,2013.0,7,10,2016,\"Cinco de Mayo, La Batalla\",The Start of the Battle,tt2553908\nN2IfyUBU9_M,2013.0,5,10,2016,\"Cinco de Mayo, La Batalla\",Flor De Mis Labios,tt2553908\nt75KclV8x0U,2013.0,8,10,2016,\"Cinco de Mayo, La Batalla\",Surprise Attack,tt2553908\n9sSXNopytKQ,2013.0,6,10,2016,\"Cinco de Mayo, La Batalla\",Viva Mexico Libre!,tt2553908\nUCgvftiw0t0,2013.0,9,10,2016,\"Cinco de Mayo, La Batalla\",The Mexican Rally,tt2553908\ntX6-gQGKm40,2013.0,10,10,2016,\"Cinco de Mayo, La Batalla\",Retreat!,tt2553908\nETchiCkaaYE,2013.0,3,3,2016,Epic,No Kisses!,tt0848537\nsT7nVSNlpTE,2013.0,2,3,2016,Epic,Mouse Attack,tt0848537\nJz7ZWKumqfQ,2013.0,1,3,2016,Epic,War for the Forest,tt0848537\nx03pWg-naqg,2011.0,1,3,2016,We Bought a Zoo,The Escaped Bear,tt1389137\nWFGyCzl7_zE,2011.0,2,3,2016,We Bought a Zoo,Yelling Down the Tiger,tt1389137\naaaIdkgVahY,2011.0,3,3,2016,We Bought a Zoo,I've Got a Big Crush on You,tt1389137\nyTNjsgJ1wwc,2011.0,5,5,2016,The Descendants,I Have to Forgive You!,tt1033575\n5ke6m-Y8DHE,2011.0,3,5,2016,The Descendants,You're Still Messing Up My Life,tt1033575\nEjWWHD7bN3A,2011.0,4,5,2016,The Descendants,It Was Just an Affair,tt1033575\n6n99ZpSgKg4,2011.0,2,5,2016,The Descendants,Does She Love Him?,tt1033575\nnna-IuI5SDk,2010.0,5,5,2016,Date Night,Worst Striptease Ever,tt1279935\ndXqs6yH3KF8,2011.0,1,5,2016,The Descendants,Mom Was Cheating on You,tt1033575\ntDW4X-r1dQI,2010.0,4,5,2016,Date Night,Your Plans Are the Worst,tt1279935\n5TSXq6wBPVM,2010.0,3,5,2016,Date Night,I Know What I'm Doing,tt1279935\n8s2lUiTRbpU,2010.0,2,5,2016,Date Night,Forget About the Anal!,tt1279935\nQYLjbRd1_DE,2010.0,1,5,2016,Date Night,You Two Make Sex With Us?,tt1279935\n8Dw3DomVuwI,2008.0,3,3,2016,What Happens in Vegas,Our First Dance,tt1033643\nGjZ2eEcUTrE,2008.0,2,3,2016,What Happens in Vegas,I Like Breasts,tt1033643\nTmdzJyoeQls,2008.0,1,3,2016,What Happens in Vegas,Wedding Counseling,tt1033643\nxMJFie7JfbY,2010.0,5,5,2016,The A-Team,Skyscraper Assault,tt0429493\nrTBkVOYzVZA,2010.0,4,5,2016,The A-Team,\"You Can't Fly a Tank, Fool!\",tt0429493\nIhdEKY1b0tk,2010.0,3,5,2016,The A-Team,The Great Escape in 3D,tt0429493\n6FqUyxVD4qc,2010.0,2,5,2016,The A-Team,I Love It When a Plan Comes Together!,tt0429493\n_ia3xfBh5Pc,2010.0,1,5,2016,The A-Team,Alpha Mike Foxtrot,tt0429493\niKzLZIbUM8o,2014.0,10,10,2016,Leprechaun: Origins,\"F*** You, Lucky Charms!\",tt2345613\nzkRC3GX5BEQ,2014.0,9,10,2016,Leprechaun: Origins,Truck Attack,tt2345613\nJTgbdnNC5ZE,2014.0,8,10,2016,Leprechaun: Origins,Run!,tt2345613\nx22ZX9dGaKk,2014.0,6,10,2016,Leprechaun: Origins,The Trap,tt2345613\n6VdHec3IAn8,2014.0,4,10,2016,Leprechaun: Origins,Little Murderer,tt2345613\nd3GeSiD2HIs,2014.0,5,10,2016,Leprechaun: Origins,A Sacrifice,tt2345613\nSVZubVb2L8U,2014.0,7,10,2016,Leprechaun: Origins,Spine Ripper,tt2345613\ns1s6SqHLUQA,2014.0,3,10,2016,Leprechaun: Origins,\"Big Injury, Small Chance\",tt2345613\nOOgShYNNtn4,2014.0,1,10,2016,Leprechaun: Origins,Glimpse of the Creature,tt2345613\nWajS0jEmEG0,2014.0,2,10,2016,Leprechaun: Origins,Leprechaun Attack,tt2345613\n4oJlFH_1q3Q,2012.0,7,8,2016,The Bourne Legacy,Motorcycle Chase,tt1194173\nmBUdGRqiIR4,2012.0,6,8,2016,The Bourne Legacy,The Rescue,tt1194173\n8QYlXDYOhM0,2012.0,8,8,2016,The Bourne Legacy,From a Chase to a Crash,tt1194173\nRvClpuFmfm0,2012.0,2,8,2016,The Bourne Legacy,Drone Attack,tt1194173\nEBSjabRNztY,2012.0,5,8,2016,The Bourne Legacy,We Got to Go,tt1194173\neWirsPiHnA0,2012.0,3,8,2016,The Bourne Legacy,Laboratory Massacre,tt1194173\nThbFbz_0qhc,2012.0,4,8,2016,The Bourne Legacy,\"Save Marta, Kill Everyone Else\",tt1194173\nCrYqMX-T7G8,2012.0,1,8,2016,The Bourne Legacy,We're Done Talking,tt1194173\nOozc5zchP98,2013.0,10,10,2016,Star Trek Into Darkness,Spock vs. Khan,tt1408101\nAQkLWa6J3dM,2013.0,9,10,2016,Star Trek Into Darkness,Crashing the Vengeance,tt1408101\nJFwhPbsr5RU,2013.0,7,10,2016,Star Trek Into Darkness,The Most Dangerous Adversary,tt1408101\nOvdQYzRHlO0,2013.0,5,10,2016,Star Trek Into Darkness,My Name is Khan,tt1408101\ntYf5ENc39dQ,2013.0,8,10,2016,Star Trek Into Darkness,Because You Are My Friend,tt1408101\nqcVr2eztQEk,2013.0,6,10,2016,Star Trek Into Darkness,Welcome Aboard,tt1408101\nw6zGX2qpxzU,2013.0,4,10,2016,Star Trek Into Darkness,Carol is Revealed,tt1408101\nTwQ1KE0CRrI,2013.0,3,10,2016,Star Trek Into Darkness,Klingon Shootout,tt1408101\nXDI3snWDWuo,2013.0,1,10,2016,Star Trek Into Darkness,Violating the Prime Directive,tt1408101\n41T9HTzQ92w,2013.0,2,10,2016,Star Trek Into Darkness,Attack on Starfleet Headquarters,tt1408101\niQ-P3eRhpKI,1982.0,8,8,2016,Amityville II: The Possession,The Exorcism,tt0083550\nPSvMn5gSLWs,1982.0,7,8,2016,Amityville II: The Possession,The Murders,tt0083550\nZSrz2g2kmb4,1982.0,2,8,2016,Amityville II: The Possession,Dishonor Thy Father,tt0083550\npQOcRJKuXd0,1982.0,6,8,2016,Amityville II: The Possession,Guilt Manifested,tt0083550\nJ9aEPBqeLr8,1982.0,5,8,2016,Amityville II: The Possession,Blessing the House,tt0083550\nDWyzPO2x67E,1982.0,1,8,2016,Amityville II: The Possession,The Extra Room,tt0083550\nlq13hsPI-yY,1982.0,3,8,2016,Amityville II: The Possession,Demonic Disturbances,tt0083550\nr7ApEmhlxro,1982.0,4,8,2016,Amityville II: The Possession,The Possession,tt0083550\niJHyw2pjpWA,2015.0,10,10,2016,Minions,The New Boss,tt2293640\nax3ZNv5jqQY,2015.0,9,10,2016,Minions,Kevin Saves the Day,tt2293640\nh-Ss_FvzZcs,2015.0,5,10,2016,Minions,Kidnapping the Queen,tt2293640\n1TGWdRK-Ykk,2015.0,8,10,2016,Minions,The Ultimate Weapon,tt2293640\n7booh4V0jaA,2015.0,6,10,2016,Minions,King Bob!,tt2293640\nzGdF6OXr6t0,2015.0,2,10,2016,Minions,One Evil Family,tt2293640\nEB74RP-oZqE,2015.0,7,10,2016,Minions,This is Torture,tt2293640\n-1U0LH6dPfw,2015.0,3,10,2016,Minions,Knights in Shining Denim,tt2293640\nm0XrO4YJyeI,2015.0,4,10,2016,Minions,Breaking into the Castle,tt2293640\nEi5IEWld1xw,2015.0,1,10,2016,Minions,Many Evil Bosses,tt2293640\nL5SM0HY5-vw,2014.0,10,10,2016,John Wick,Just You and Me,tt2911666\n77X1yGjjHvQ,2014.0,3,10,2016,John Wick,Bath House Bloodshed,tt2911666\nXURWRujGTNk,2014.0,9,10,2016,John Wick,Good Luck,tt2911666\nyu3iX6zxbm0,2014.0,4,10,2016,John Wick,Club Rampage,tt2911666\nNYo4WkYNLn4,2014.0,7,10,2016,John Wick,Where Is He?,tt2911666\ntM47HMT8GGE,2014.0,8,10,2016,John Wick,John Gets Revenge,tt2911666\nY0LuDSiX63M,2014.0,5,10,2016,John Wick,Ms. Perkins Attacks,tt2911666\n51t2_o_H_Rw,2014.0,6,10,2016,John Wick,I'm Back,tt2911666\n4S8_1PIolnY,2014.0,2,10,2016,John Wick,Noise Complaint,tt2911666\nCdHKXmEn4l8,2014.0,1,10,2016,John Wick,The Break-In,tt2911666\nTU00uzqJGKw,2013.0,9,10,2016,The Quiet Ones,Telekinetic Rage,tt2235779\ntpzp6-BkkIU,2013.0,8,10,2016,The Quiet Ones,Hot Water,tt2235779\nDDClFYXZmtM,2013.0,6,10,2016,The Quiet Ones,The Torments of Men,tt2235779\nkymk0SPNe7c,2013.0,7,10,2016,The Quiet Ones,The Seance,tt2235779\nvSa0UepuyTo,2013.0,5,10,2016,The Quiet Ones,Take Your Hand out of His Trousers,tt2235779\n9xEXh16KupI,2013.0,4,10,2016,The Quiet Ones,Captive Love,tt2235779\noE_FGufcMpI,2013.0,10,10,2016,The Quiet Ones,Evil Remains,tt2235779\n7xMhKadE7gU,2013.0,3,10,2016,The Quiet Ones,Go Down Into the Darkness,tt2235779\natNVzztHoUc,2013.0,2,10,2016,The Quiet Ones,\"Come Out, Evey\",tt2235779\nQ1ACWidWmjo,2013.0,1,10,2016,The Quiet Ones,Thank You,tt2235779\nbfgRDarWFnk,2013.0,9,10,2016,As I Lay Dying,Darl's Arrest,tt1807944\nCsOFvj63I2c,2013.0,6,10,2016,As I Lay Dying,Sold the Horse,tt1807944\n918j6y6IMY8,2013.0,4,10,2016,As I Lay Dying,Fording the River,tt1807944\n5azSB3B9dgU,2013.0,5,10,2016,As I Lay Dying,Sin,tt1807944\nEw9wk3EGlJc,2013.0,8,10,2016,As I Lay Dying,He's Crazy,tt1807944\n-zD7CZtUNbA,2013.0,3,10,2016,As I Lay Dying,She's Gone,tt1807944\nMiBcK87oWBU,2013.0,7,10,2016,As I Lay Dying,Fire,tt1807944\nISeGBx2JvGs,2013.0,2,10,2016,As I Lay Dying,The Lord Giveth,tt1807944\nMH7EgG6Y5kc,2013.0,1,10,2016,As I Lay Dying,Leaving to Work,tt1807944\nH08d5DSdT6U,2013.0,10,10,2016,As I Lay Dying,Losing a Leg,tt1807944\nKNh81oYmq7A,2012.0,8,12,2016,Thanks for Sharing,Free Dance,tt1932718\nqI-CTJnYdBs,2012.0,4,12,2016,Thanks for Sharing,Phoebe Finds Out,tt1932718\n0dbyPr97N48,2012.0,5,12,2016,Thanks for Sharing,Neil Helps Dede,tt1932718\nlKU5GNOEj3Q,2012.0,9,12,2016,Thanks for Sharing,I Don't Think I Can Do This,tt1932718\nmryo27tUcJE,2012.0,7,12,2016,Thanks for Sharing,Taking It Slow,tt1932718\nYxa48jQBfLc,2012.0,6,12,2016,Thanks for Sharing,What's Your Trigger?,tt1932718\nQNCuoEO3jFY,2012.0,9,12,2016,Mud,Rescues Ellis,tt1935179\nWFhKV35sbCE,2012.0,2,12,2016,Thanks for Sharing,Dede's Story,tt1932718\nPZrRQrPE-Y0,2012.0,3,12,2016,Thanks for Sharing,They Are Fake,tt1932718\ng7pwgA-oyYY,2012.0,1,12,2016,Thanks for Sharing,Bug Party,tt1932718\nJhTVkpj8g_o,2012.0,12,12,2016,Thanks for Sharing,What Will You Do When the War is Over?,tt1932718\nHt6uQH8qIf0,2012.0,4,12,2016,Mud,You Can Call Me,tt1935179\nZ4zy9tTPl2c,2012.0,10,12,2016,Thanks for Sharing,Porn Collection,tt1932718\n4dVIxwhMYL8,2012.0,11,12,2016,Thanks for Sharing,I'm Sorry,tt1932718\ngNT4N5W81Hc,2012.0,6,12,2016,Mud,I Shot a Man,tt1935179\nYlF1gLpUZp8,2012.0,8,12,2016,Mud,I Trusted You!,tt1935179\nzz0w0KDwhWg,2012.0,1,12,2016,Mud,There It Is,tt1935179\nxMuWufwEZiA,2012.0,7,12,2016,Mud,Where is He?,tt1935179\nwyzpqpXHcSE,2012.0,3,12,2016,Mud,I Reckon We Can Make a Deal,tt1935179\n7FGCTdYcdIM,2012.0,5,12,2016,Mud,A Talk by the Fire,tt1935179\nyKhHoh_H350,2012.0,12,12,2016,Mud,Mouth of the River,tt1935179\n1hag3avWVXs,2012.0,2,12,2016,Mud,The Mysterious Stranger,tt1935179\nKsmXgmhjUic,2013.0,8,10,2016,Europa Report,Crash Landing,tt2051879\nZmOUutOuqn8,2013.0,7,10,2016,Europa Report,Proceed with Caution,tt2051879\n6lRIgVCdLP4,2012.0,11,12,2016,Mud,Shootout on the River,tt1935179\nOnExOgppDJc,2013.0,9,10,2016,Europa Report,Alien Life,tt2051879\nCWBwJk1f-gs,2012.0,10,12,2016,Mud,Farewell,tt1935179\n3uzjEETq9oM,2013.0,6,10,2016,Europa Report,The Discovery,tt2051879\n583Eukgz0QQ,2013.0,1,10,2016,Europa Report,Landing on Europa,tt2051879\nctsrpWvUQB4,2013.0,4,10,2016,Europa Report,Hydrazine,tt2051879\nIwye0A9pCVk,2013.0,5,10,2016,Europa Report,I'm Gone,tt2051879\nTzpamJ6GsFw,2013.0,2,10,2016,Europa Report,I Saw Something,tt2051879\nS6Ze8IndlBo,2013.0,3,10,2016,Europa Report,Lights in the Deep,tt2051879\nZAtw0w5b_1o,2013.0,10,10,2016,Europa Report,What Greater Success,tt2051879\n_o490P6zeZ4,2008.0,9,12,2016,Man on Wire,Once in a Lifetime,tt1155592\nG_r06v8SswA,2008.0,4,12,2016,Man on Wire,Nothing is Impossible,tt1155592\nq1QELI37duI,2008.0,8,12,2016,Man on Wire,Walking on a Cloud,tt1155592\nzU9rHffZVBE,2008.0,7,12,2016,Man on Wire,Anchored on the Wire,tt1155592\n5Q8BbiDiI5c,2008.0,2,12,2016,Man on Wire,Two Mischievous Kids,tt1155592\njJohoC479no,2008.0,6,12,2016,Man on Wire,Hide and Seek,tt1155592\nHJCm9e0Q2Yc,2008.0,5,12,2016,Man on Wire,Ageless Mask of Concentration,tt1155592\n5kvHTPJfo7o,2008.0,3,12,2016,Man on Wire,A Beautiful Death,tt1155592\nuBAd6Nfv3uE,2015.0,8,10,2016,Straight Outta Compton,Madness in Detroit,tt1398426\nZCMwz1K-Cso,2008.0,12,12,2016,Man on Wire,Live Your Life on a Tightrope,tt1155592\nIo1xroeJoBM,2008.0,1,12,2016,Man on Wire,Once Upon a Time,tt1155592\neuCE7LJZxvE,2008.0,10,12,2016,Man on Wire,We Were Stars,tt1155592\n1WA_d9qBf4E,2015.0,3,10,2016,Straight Outta Compton,Cruisin' Down the Street in My 64,tt1398426\n6s_lBln0kzg,2008.0,11,12,2016,Man on Wire,A New Life,tt1155592\nVBYiVoNwzQo,2015.0,5,10,2016,Straight Outta Compton,Police Harassment,tt1398426\ndyCbGaYPSIY,2015.0,4,10,2016,Straight Outta Compton,N.W.A. Plays Dopeman,tt1398426\nUStNNBG5K0Y,2015.0,9,10,2016,Straight Outta Compton,Cube's Diss Track,tt1398426\nLGmthB51XUc,2015.0,6,10,2016,Straight Outta Compton,F*** Tha Police,tt1398426\ndIv1kqivuZc,2014.0,8,10,2016,The Purge: Anarchy,We're Here to Help,tt2975578\n4KFtwqYA_kE,2015.0,2,10,2016,Straight Outta Compton,Gangsta Gangsta,tt1398426\nYDh2u5hneLE,2015.0,7,10,2016,Straight Outta Compton,Always Going to Be Brothers,tt1398426\nPnjkPSAncPc,2015.0,1,10,2016,Straight Outta Compton,Raid on the Dope House,tt1398426\naY6ZwMZqaBk,2015.0,10,10,2016,Straight Outta Compton,Eazy-E Has HIV,tt1398426\n0x6usdVsGbI,2014.0,9,10,2016,The Purge: Anarchy,Sergeant's Revenge,tt2975578\nOlAEXT0Hg70,2014.0,6,10,2016,The Purge: Anarchy,We're Being Hunted,tt2975578\nmoH3FSt88FY,2014.0,7,10,2016,The Purge: Anarchy,There's a Whole Army,tt2975578\nedBNDiSwnlg,2014.0,3,10,2016,The Purge: Anarchy,Sergeant Stops a Purge,tt2975578\nBOo2x6MlAtI,2014.0,4,10,2016,The Purge: Anarchy,It's a Trap!,tt2975578\n4a3OH0EcieY,2014.0,5,10,2016,The Purge: Anarchy,Cheaters Deserve to Die,tt2975578\ndsTyKFkGPuM,2014.0,1,10,2016,The Purge: Anarchy,The Face of God,tt2975578\nkYHCKF2WLA8,2014.0,2,10,2016,The Purge: Anarchy,Commencement,tt2975578\n7fkatAePOnI,2014.0,10,10,2016,The Purge: Anarchy,We Can't Have Heroes,tt2975578\nKxRDIx23Xmg,2013.0,11,11,2016,Crush,Go Bess!,tt2093977\nIvwJ-KwPATw,2013.0,9,11,2016,Crush,I Trust You,tt2093977\nYBrFMKQOqDc,2013.0,10,11,2016,Crush,Draw Me Like You Drew Her,tt2093977\njla2i4bOfjg,2013.0,7,11,2016,Crush,Sometimes I Just Can't Help Myself,tt2093977\nMzFCoTidaDI,2013.0,6,11,2016,Crush,Sexual Rivals,tt2093977\n19KoXOFVCCM,2013.0,5,11,2016,Crush,Give Me a Call,tt2093977\nietWI5HT_nA,2013.0,8,11,2016,Crush,Smothered,tt2093977\nsOxAN1jqfpQ,2013.0,2,11,2016,Crush,Kissing Jules,tt2093977\ngQ2HC6eotDg,2013.0,4,11,2016,Crush,Stalker in the House,tt2093977\naLVjmX-ottU,2013.0,3,11,2016,Crush,Seducing Scott,tt2093977\no3f8UMtGyoA,2013.0,1,11,2016,Crush,You Kissed the Wrong Girl,tt2093977\nZV7UY6RYG6M,2013.0,10,10,2016,Charlie Countryman,For Love,tt1196948\nO0Q3TOvvZNY,2013.0,8,10,2016,Charlie Countryman,The Tape,tt1196948\nElXKzY-3DoU,2013.0,7,10,2016,Charlie Countryman,I Loved Him,tt1196948\nWoACzZ_FUzs,2013.0,9,10,2016,Charlie Countryman,Run Away,tt1196948\nW_Aq6Mu-bQU,2013.0,4,10,2016,Charlie Countryman,Nigel Was My Husband,tt1196948\nF0tBvKtpT-I,2013.0,5,10,2016,Charlie Countryman,Us,tt1196948\npLKhG9v_0fk,2013.0,6,10,2016,Charlie Countryman,Viagra Emergency,tt1196948\nPbnhCazvuts,2013.0,3,10,2016,Charlie Countryman,Meeting Gabi,tt1196948\nrk0WkrT6L1k,2013.0,1,10,2016,Charlie Countryman,Losing Mom,tt1196948\n0WwbRHBAg9w,2013.0,2,10,2016,Charlie Countryman,This is a Dead Man,tt1196948\nlZ4ouD3RVKU,1953.0,10,10,2016,The Naked Spur,I'm Taking Him Back,tt0044953\nRQlXH-KzlXg,1953.0,9,10,2016,The Naked Spur,River Showdown,tt0044953\nGzsGxfcPyTI,1953.0,8,10,2016,The Naked Spur,Sack of Money,tt0044953\nTH0d-3NnNUM,1953.0,7,10,2016,The Naked Spur,Kill Him,tt0044953\nBKER7E61cvs,1953.0,6,10,2016,The Naked Spur,You Know What I'm Asking,tt0044953\nqgv_7j1_CdA,1953.0,5,10,2016,The Naked Spur,The High Pass,tt0044953\n7rVMT0xklto,1953.0,4,10,2016,The Naked Spur,You're Different,tt0044953\nnQBrfPjwAfQ,1953.0,3,10,2016,The Naked Spur,Not Our Business,tt0044953\n5p9BA72SfkY,1953.0,2,10,2016,The Naked Spur,Blackfeet Battle,tt0044953\nOA1pcNFRhXY,1953.0,1,10,2016,The Naked Spur,A Couple Partners,tt0044953\nSFy70juGAHo,1998.0,10,12,2016,Dirty Work,\"Broken, Spiritless Homeless Guys\",tt0120654\nROy7gCg3hJE,1998.0,11,12,2016,Dirty Work,Fighting Back,tt0120654\n9z5YYwpysWs,1998.0,12,12,2016,Dirty Work,Release the Skunks!,tt0120654\nSczun-f_Uiw,1998.0,8,12,2016,Dirty Work,Ridiculous!,tt0120654\nOG9EDE_bnws,1998.0,7,12,2016,Dirty Work,Smells Like Fish,tt0120654\nSqj803KC3T4,1998.0,9,12,2016,Dirty Work,Mitch Likes Kathy,tt0120654\nnOkJXxd0cNg,1998.0,6,12,2016,Dirty Work,The Bearded Lady,tt0120654\noD-1eCD7lkE,1998.0,4,12,2016,Dirty Work,Screwing Over Hamilton,tt0120654\nBlWpx55Mo5s,1998.0,5,12,2016,Dirty Work,A Whole Lotta Dead Hookers,tt0120654\nqWEaCJlKZXs,1998.0,1,12,2016,Dirty Work,Don't Take No Crap From Nobody,tt0120654\nF-gTRiA6Ncs,1998.0,2,12,2016,Dirty Work,Mitch Loses His Shirt,tt0120654\n4tehW9FH9aw,1998.0,3,12,2016,Dirty Work,Hallucinogenic Brownies,tt0120654\nE5KigabenVg,1948.0,10,10,2016,They Live by Night,Bowie the Kid,tt0040872\nJ3Uq3-vH_I0,2014.0,1,12,2016,The Angriest Man in Brooklyn,Things He Hated,tt1294970\n9kcwYNK9cp8,2013.0,8,11,2016,Ninja: Shadow of a Tear,One-Man Ambush,tt2458106\nwi1iG6DIFOA,2014.0,12,12,2016,The Angriest Man in Brooklyn,How to Be Happy,tt1294970\nizRUBt3oeMw,2014.0,11,12,2016,The Angriest Man in Brooklyn,Father and Son Reunited,tt1294970\ntIZfD-LANtA,2014.0,10,12,2016,The Angriest Man in Brooklyn,Punch It,tt1294970\nqZD-BA_Cxus,2014.0,9,12,2016,The Angriest Man in Brooklyn,You In My Cab,tt1294970\nsW1_A07itgQ,2014.0,8,12,2016,The Angriest Man in Brooklyn,A Second Chance,tt1294970\n9fs03_cdppQ,2014.0,7,12,2016,The Angriest Man in Brooklyn,The Brooklyn Bridge,tt1294970\njqvMzCLAE0g,2014.0,5,12,2016,The Angriest Man in Brooklyn,I Need a Camcorder,tt1294970\nuZC4v8_fApA,2014.0,6,12,2016,The Angriest Man in Brooklyn,Anger is My Birthright,tt1294970\nNP5PcpEDjS0,2014.0,4,12,2016,The Angriest Man in Brooklyn,We Need to Have Sex Now,tt1294970\newvkTkHfJqQ,2014.0,3,12,2016,The Angriest Man in Brooklyn,Reconciliation in 90 Minutes,tt1294970\nOrxsZHRGxRc,2014.0,2,12,2016,The Angriest Man in Brooklyn,You Got 90 Minutes,tt1294970\n0GBAUGvKy2A,2013.0,9,11,2016,Ninja: Shadow of a Tear,Fight to the Death,tt2458106\n6UY9MtqSMgs,2013.0,10,11,2016,Ninja: Shadow of a Tear,Killing Goro,tt2458106\nQvUl28vA8oM,2013.0,11,11,2016,Ninja: Shadow of a Tear,The True Enemy,tt2458106\nYcT_oPYKOw4,2013.0,6,11,2016,Ninja: Shadow of a Tear,Deadly Premonitions,tt2458106\n2nrHffYUXqQ,2013.0,5,11,2016,Ninja: Shadow of a Tear,Barfight,tt2458106\ngnfJ4wcpQsk,2013.0,4,11,2016,Ninja: Shadow of a Tear,Sparring Meltdown,tt2458106\nLX4AIei6zUw,2013.0,3,11,2016,Ninja: Shadow of a Tear,Avenging Namiko,tt2458106\nygNoJlu743w,2013.0,1,11,2016,Ninja: Shadow of a Tear,The Alley Fight,tt2458106\nVMkhYJEjv7I,2013.0,7,11,2016,Ninja: Shadow of a Tear,Fighting Stoned,tt2458106\ngMODOv68SGE,2013.0,2,11,2016,Ninja: Shadow of a Tear,I Have a Long Memory,tt2458106\niFKyzbCLQQA,1948.0,9,10,2016,They Live by Night,\"Merry Christmas, Baby\",tt0040872\n4J0fchFqprw,1948.0,6,10,2016,They Live by Night,Bank Robbery,tt0040872\ne8mmLcViaGI,1948.0,7,10,2016,They Live by Night,A $20 Wedding,tt0040872\ntRwyOQw5zcw,1948.0,8,10,2016,They Live by Night,Just Married,tt0040872\n--oCWVOBuvA,1948.0,4,10,2016,They Live by Night,In So Deep,tt0040872\nf8a97iauRtw,1948.0,2,10,2016,They Live by Night,Thieves Like Us,tt0040872\nf6m4J0AfEOo,1948.0,1,10,2016,They Live by Night,Prison Break,tt0040872\n0REROw4SOGc,1948.0,3,10,2016,They Live by Night,We Move Fast,tt0040872\nCK3cE7N1pzU,1948.0,5,10,2016,They Live by Night,A One-Eyed Lush,tt0040872\nXpy157qTtng,1981.0,10,13,2016,Enter the Ninja,An Agent of Death Scene,tt0082332\nXWxNXRPHQIQ,1981.0,13,13,2016,Enter the Ninja,Die With Honor Scene,tt0082332\ncRoIsrSzapo,1981.0,12,13,2016,Enter the Ninja,Death by Shuriken Scene,tt0082332\nZrKUk6S3XSc,1981.0,11,13,2016,Enter the Ninja,Cole's Killing Spree Scene,tt0082332\nXm5eKjy5MTg,1981.0,7,13,2016,Enter the Ninja,Coming Unhooked Scene,tt0082332\nFARHf9b8zyk,1981.0,8,13,2016,Enter the Ninja,My Friend Doesn't Like Guns Scene,tt0082332\nBXq-jB4MZdU,1981.0,9,13,2016,Enter the Ninja,A Ninja Demo Scene,tt0082332\neYx5m_iT-1U,1981.0,6,13,2016,Enter the Ninja,Being Deadly in a Dive Bar Scene,tt0082332\nG_1jQkCRF58,1981.0,4,13,2016,Enter the Ninja,Seeing an Old Friend Scene,tt0082332\npKjMt3cBv6g,1981.0,5,13,2016,Enter the Ninja,Cole Protects Mary Ann Scene,tt0082332\nwu-RfHKCK7Y,1981.0,2,13,2016,Enter the Ninja,Cole Conquers All Scene,tt0082332\n-IIHYIZSFbk,1981.0,3,13,2016,Enter the Ninja,9 Levels of Power Scene,tt0082332\n4RsVOfPT_is,1981.0,1,13,2016,Enter the Ninja,The White Shinobi Scene,tt0082332\njOLLiuCk420,2014.0,10,10,2016,Unbroken,War Is Over,tt1809398\na2_9fQ0U57w,2014.0,5,10,2016,Unbroken,Am I Gonna Die?,tt1809398\nXrBTDbxOZE8,2014.0,9,10,2016,Unbroken,Don't Look at Me!,tt1809398\nI6f8bYDvpKY,2014.0,6,10,2016,Unbroken,The Olympic Athlete,tt1809398\nqhgkpZecrTY,2014.0,7,10,2016,Unbroken,Hello Mother and Father,tt1809398\n7ru6HnpJJP4,2014.0,8,10,2016,Unbroken,Punch Him in the Face,tt1809398\n1l1qpOrjsi4,2014.0,1,10,2016,Unbroken,An Olympic Record,tt1809398\ngpgsfivrruk,2014.0,3,10,2016,Unbroken,A Storm and a Prayer,tt1809398\nxSvW3Gxd-h0,2014.0,4,10,2016,Unbroken,\"Bullets Above, Sharks Below\",tt1809398\nQU677HiXf6M,2014.0,2,10,2016,Unbroken,Plane Crash at Sea,tt1809398\nlQ2RStfZii0,2010.0,10,10,2016,MacGruber,Defeating Cunth,tt1470023\nKTugpKzfZJk,2010.0,7,10,2016,MacGruber,Human Shield,tt1470023\nnrqg6wxuqFo,2010.0,8,10,2016,MacGruber,I Like Holes,tt1470023\niJiQsEZXz_8,2010.0,9,10,2016,MacGruber,Love Scene,tt1470023\n0WoyXBXCqdg,2010.0,6,10,2016,MacGruber,Meets Cunth,tt1470023\n9FKgmafi1p8,2010.0,4,10,2016,MacGruber,Vicki Under Cover,tt1470023\njWHcIO4y8kk,2010.0,5,10,2016,MacGruber,Winging It,tt1470023\nZHCd8doza2M,2010.0,3,10,2016,MacGruber,Will Do Anything,tt1470023\n0kgLLa9gnsU,2010.0,2,10,2016,MacGruber,Quite a Team,tt1470023\nzFbHwupcqpQ,2010.0,1,10,2016,MacGruber,The Legendary,tt1470023\nvapcFQlS6Qo,2008.0,12,12,2016,Let the Right One In,The Swimming Pool,tt1139797\nbdJt1Mggjl4,2008.0,9,12,2016,Let the Right One In,Open the Shutters,tt1139797\nBUrDm2GmJ5I,2008.0,11,12,2016,Let the Right One In,The Bathtub,tt1139797\nAcJq5nGwm4U,2008.0,6,12,2016,Let the Right One In,Oskar Fights Back,tt1139797\nJLTtgzY_7-Y,2008.0,10,12,2016,Let the Right One In,Invite Me In,tt1139797\n6i0sEgnPLms,2008.0,7,12,2016,Let the Right One In,Vampire Attack,tt1139797\nlmqQPyNsXpU,2008.0,8,12,2016,Let the Right One In,Killer Cats,tt1139797\nJ9z4myiIVww,2008.0,4,12,2016,Let the Right One In,The Hospital,tt1139797\nw-_BMZo7mik,2008.0,5,12,2016,Let the Right One In,Going Steady,tt1139797\nGYJ-Z5o9gUM,2008.0,3,12,2016,Let the Right One In,Do You Like Me?,tt1139797\nu31Fyx8g5ZY,2008.0,2,12,2016,Let the Right One In,Rubik's Cube,tt1139797\nhiO38yFF-Q8,2008.0,1,12,2016,Let the Right One In,Under the Bridge,tt1139797\nXFTJJtOtFtI,2005.0,11,11,2016,Into the Blue,Shark Saves the Day,tt0378109\n8hGqSM0OV9U,2005.0,9,11,2016,Into the Blue,One Down,tt0378109\nKpM_NyYKwkE,2005.0,8,11,2016,Into the Blue,Cocaine Overboard,tt0378109\nPzL7MICU_OI,2005.0,10,11,2016,Into the Blue,Sam and Jared Keep Up the Good Fight,tt0378109\n93njceSaOMM,2005.0,6,11,2016,Into the Blue,Jared Is a Madman,tt0378109\nk-RHqxyYzMo,2005.0,7,11,2016,Into the Blue,Jared's Secret Hiding Spot,tt0378109\nUeCpUca9VUs,2005.0,4,11,2016,Into the Blue,Sic Semper Tyrannis,tt0378109\ngHQV6AMclGA,2005.0,5,11,2016,Into the Blue,What's Missing in Your Life?,tt0378109\n-qijwXk_bnk,2005.0,1,11,2016,Into the Blue,Jared's Discovery,tt0378109\nx2CizSzk9s4,2005.0,3,11,2016,Into the Blue,Cocaine Palace,tt0378109\nWquPun-ky2Y,2005.0,2,11,2016,Into the Blue,A Giant Stash,tt0378109\n_msjEt4-jZc,2015.0,4,10,2016,Fifty Shades of Grey,What Is It About Elevators?,tt2322441\nJWLd18_ViOM,2015.0,10,10,2016,Fifty Shades of Grey,You Can't Love Me,tt2322441\nHOrCBUADkMM,2015.0,7,10,2016,Fifty Shades of Grey,The Contract,tt2322441\nVkJAnikGNCQ,2015.0,9,10,2016,Fifty Shades of Grey,Punish Me,tt2322441\nxJOME7D6-ow,2015.0,8,10,2016,Fifty Shades of Grey,Let Me Touch You,tt2322441\nSeiltyhdQGg,2015.0,3,10,2016,Fifty Shades of Grey,Enlighten Me,tt2322441\nRMRJQL65AqA,2015.0,5,10,2016,Fifty Shades of Grey,Helicopter Ride,tt2322441\nIWjPXaM20kY,2015.0,6,10,2016,Fifty Shades of Grey,The Play Room,tt2322441\nXFK5SV1-Pzg,2015.0,1,10,2016,Fifty Shades of Grey,A Little Curious,tt2322441\nX8YOtEocd6I,2015.0,2,10,2016,Fifty Shades of Grey,\"Rope, Tape and Cable Ties\",tt2322441\nICPNrxD783c,2011.0,4,5,2016,The Tree of Life,I'm More Like You Than Her,tt0478304\n1PoAz1WNBdM,2011.0,3,5,2016,The Tree of Life,Put Your Finger Over It,tt0478304\nwsIybRQaDE4,2011.0,5,5,2016,The Tree of Life,\"The Family, United\",tt0478304\nD4TfTzW8GVg,2011.0,2,5,2016,The Tree of Life,You've Turned Them Against Me,tt0478304\nc4Wls5pZlxQ,2011.0,1,5,2016,The Tree of Life,Love and Birth,tt0478304\nEOO8TwyVFYI,2008.0,5,5,2016,Marley & Me,\"You're a Great Dog, Marley\",tt0822832\nw9sO9o8LNvQ,2008.0,4,5,2016,Marley & Me,Life With Marley,tt0822832\n99-v2bOxnJU,2008.0,1,5,2016,Marley & Me,Clearance Puppy,tt0822832\n2jgk4c5V3b4,2008.0,2,5,2016,Marley & Me,How Marley Got His Name,tt0822832\nPn7M9PpQEgo,2008.0,3,5,2016,Marley & Me,Marley Gets Frisky,tt0822832\nLQnfBdZnLmI,2009.0,4,5,2016,Jennifer's Body,She's Eating Boys Scene,tt1131734\n_uhtsUzb7fg,2009.0,5,5,2016,Jennifer's Body,I Am Going to Eat Your Soul Scene,tt1131734\nk1MdKI8kiXU,2009.0,2,5,2016,Jennifer's Body,We Always Share Your Bed Scene,tt1131734\nEVIsqHrME68,2009.0,1,5,2016,Jennifer's Body,I Am A God Scene,tt1131734\n_NcD2k_QmgQ,2009.0,3,5,2016,Jennifer's Body,Satan Is Our Only Hope Scene,tt1131734\nELqdLvz60zA,2009.0,5,5,2016,Fantastic Mr. Fox,Meeting the Wolf,tt0432283\nMp1_PuUoSaM,2009.0,3,5,2016,Fantastic Mr. Fox,A Psychotic Rat,tt0432283\nAEocciZMBjc,2009.0,4,5,2016,Fantastic Mr. Fox,Pure Animal Craziness,tt0432283\nHNPyZsPH8TI,2009.0,2,5,2016,Fantastic Mr. Fox,Whack-Bat,tt0432283\niuKNXP9LcSg,2009.0,1,5,2016,Fantastic Mr. Fox,\"Boggis, Bunce and Bean\",tt0432283\nzI6U8UWPhWk,2012.0,12,12,2016,Girl Most Likely,The Red Scorpion,tt1698648\n1hyzWfYu6J0,2012.0,10,12,2016,Girl Most Likely,The Book Party,tt1698648\n-28eBo0EDDg,2012.0,11,12,2016,Girl Most Likely,I Get Why You Did It,tt1698648\nt7mMEDZkDlY,2012.0,7,12,2016,Girl Most Likely,The Club,tt1698648\nbJwzDAtwJQU,2012.0,9,12,2016,Girl Most Likely,The Human Shell in New York,tt1698648\nC0uo35iCk0A,2012.0,8,12,2016,Girl Most Likely,Did You Guys Have Sex?,tt1698648\nswnHnXKbQPM,2012.0,6,12,2016,Girl Most Likely,Backstreet Boy,tt1698648\nhYwxyijuhOQ,2012.0,5,12,2016,Girl Most Likely,Take Me to New York,tt1698648\nzQX5VL1XU5c,2012.0,4,12,2016,Girl Most Likely,Hitting a Porsche,tt1698648\nVUqea11tvH0,2012.0,3,12,2016,Girl Most Likely,Dad Is Alive?,tt1698648\nUsonrKXJoas,2012.0,2,12,2016,Girl Most Likely,Getting Spanked,tt1698648\nfhgqKH6V34k,2012.0,1,12,2016,Girl Most Likely,Going Home With Mom,tt1698648\naJVHnyq7Nz8,1995.0,12,12,2016,Canadian Bacon,Need-to-Know News,tt0109370\n4MTf0k1vqTk,2012.0,7,11,2016,The Perks of Being a Wallflower,Truth or Dare,tt1659337\nOMSkavUrzHM,2012.0,11,11,2016,The Perks of Being a Wallflower,We Are Infinite,tt1659337\n9rTcIUk9Aio,2012.0,10,11,2016,The Perks of Being a Wallflower,Charlie's Breakdown,tt1659337\nIx8ShPSjmtE,2012.0,8,11,2016,The Perks of Being a Wallflower,Sorry Nothing,tt1659337\n4DAJ2QupBUc,2012.0,10,11,2016,LOL,Lola Gets Slapped,tt1592873\n5DEINY4WTVY,2012.0,7,11,2016,LOL,Bathroom Sex Break-Up,tt1592873\no6hrLFJq63E,1995.0,5,12,2016,Canadian Bacon,Canada's Inferiority Complex,tt0109370\nkO3MXkSKwZs,2012.0,4,11,2016,LOL,Lola Falls for Kyle,tt1592873\npbfBzWJVbX4,1995.0,7,12,2016,Canadian Bacon,Anti-Canada Propaganda,tt0109370\nuxXMshs5exs,1995.0,2,12,2016,Canadian Bacon,Contingency Plan,tt0109370\nXO3-PumyjoI,2012.0,1,11,2016,The Perks of Being a Wallflower,Come On Eileen,tt1659337\n8Q-DUxHMLvg,1995.0,8,12,2016,Canadian Bacon,Boomer Raids Canada,tt0109370\n-X9XaNXkvCI,2012.0,8,11,2016,LOL,Make It Look Sexy,tt1592873\nb10LyOeq5Hs,2012.0,9,11,2016,The Perks of Being a Wallflower,We Accept the Love We Think We Deserve,tt1659337\nIWpThrDfQEI,1995.0,9,12,2016,Canadian Bacon,Canadian Prisoners,tt0109370\ntMaXLU_KG-k,2012.0,4,11,2016,The Perks of Being a Wallflower,Write About Us,tt1659337\n_nk2ZNKOxCY,1995.0,1,12,2016,Canadian Bacon,30 Point Boost,tt0109370\nsXrZaiADkTU,2012.0,6,11,2016,LOL,Lola's Party,tt1592873\n1KPTpxxZJRs,2012.0,11,11,2016,LOL,Happy Endings,tt1592873\n0YDejqKggWA,2012.0,5,11,2016,The Perks of Being a Wallflower,\"I Love You, Charlie\",tt1659337\naxcECZzlPVI,2012.0,6,11,2016,The Perks of Being a Wallflower,Rocky Horror Picture Show,tt1659337\nyVAFP91HfBs,2012.0,3,11,2016,LOL,Mom's Affair With Dad,tt1592873\nSRMuzjyoMRg,1995.0,3,12,2016,Canadian Bacon,Civilized Men,tt0109370\nz0bO_2sgBZA,2012.0,9,11,2016,LOL,Lola's First Time,tt1592873\nMmPU9OjE2X8,2012.0,2,11,2016,The Perks of Being a Wallflower,You're a Wallflower,tt1659337\nVe1oHq8JIwo,2012.0,2,11,2016,LOL,Teens in Love,tt1592873\nkMalrBgdRvI,2012.0,3,11,2016,The Perks of Being a Wallflower,The Tunnel,tt1659337\neCS7qPuOXQI,1995.0,4,12,2016,Canadian Bacon,Hockey Fight,tt0109370\neZXgYKx0aQI,1995.0,6,12,2016,Canadian Bacon,The Case Against Canada,tt0109370\niWII1mMM9HY,2012.0,5,11,2016,LOL,In the Girl's Locker Room,tt1592873\nU8VDmQw-FAo,2012.0,1,11,2016,LOL,Hooking Up and Breaking Up,tt1592873\nUdZi8K3PLs0,1995.0,11,12,2016,Canadian Bacon,The Black Guy Always Dies,tt0109370\njyO1ILQAGsU,1995.0,10,12,2016,Canadian Bacon,Language Police,tt0109370\neRqgQiBel8I,2012.0,10,10,2016,Snow White and the Huntsman,You Cannot Defeat Me,tt1735898\nEhaogw2TNOQ,2012.0,9,10,2016,Snow White and the Huntsman,You'll Be a Queen in Heaven,tt1735898\nLoDGQLw_iLM,2012.0,6,10,2016,Snow White and the Huntsman,She is the One,tt1735898\nVHsRuDuQKo8,2012.0,7,10,2016,Snow White and the Huntsman,Fighting Finn,tt1735898\n104ZQtfYDso,2012.0,5,10,2016,Snow White and the Huntsman,Troll,tt1735898\nG0y14S8h4ic,2012.0,8,10,2016,Snow White and the Huntsman,A Poisoned Apple,tt1735898\nd9YfIZP8qPE,2012.0,3,10,2016,Snow White and the Huntsman,You Would Kill Your Queen?,tt1735898\nFHDq1ehz_cg,2012.0,2,10,2016,Snow White and the Huntsman,\"Mirror, Mirror On the Wall\",tt1735898\nkaWU7XlPxV4,2012.0,1,10,2016,Snow White and the Huntsman,An Army of Glass,tt1735898\nVGA1SZwZC7A,2012.0,4,10,2016,Snow White and the Huntsman,The Huntsman Betrayed,tt1735898\nGxA7BICC_zM,2012.0,10,10,2016,The ABCs of Death,W is for WTF,tt1935896\nkeumDslluNk,2012.0,6,10,2016,The ABCs of Death,R is for Removed,tt1935896\niIUhwUKRg28,2012.0,8,10,2016,The ABCs of Death,T is for Toilet,tt1935896\nBNHVkYhC8Po,2012.0,9,10,2016,The ABCs of Death,V is for Vagitus,tt1935896\npv7lZRQDygc,2012.0,7,10,2016,The ABCs of Death,S is for Speed,tt1935896\n0JRdzrh9in4,2012.0,3,10,2016,The ABCs of Death,F is for Fart,tt1935896\nw2fpC1izWPA,2012.0,2,10,2016,The ABCs of Death,D is for Dogfight,tt1935896\nzZSiCTrPiXU,2012.0,4,10,2016,The ABCs of Death,H is for Hydro-Electric Diffusion,tt1935896\njBuygQyZbf4,2012.0,5,10,2016,The ABCs of Death,K is for Klutz,tt1935896\n2COP58ej7QA,2012.0,1,10,2016,The ABCs of Death,A is for Apocalypse,tt1935896\nO31rBYqYkuQ,1995.0,11,12,2016,Get Shorty,Look at Me,tt0113161\nbkeLkORd2y4,1995.0,12,12,2016,Get Shorty,Making the Movie,tt0113161\nzSBXBMVa_Y0,1995.0,10,12,2016,Get Shorty,Beating Up Bear,tt0113161\n0H8EmzfVSbg,1995.0,7,12,2016,Get Shorty,Martin's Motivation,tt0113161\nr1scNthC8NI,1995.0,9,12,2016,Get Shorty,Testing Bear's Stuntman Skills,tt0113161\nmohoyRj_VpU,1995.0,8,12,2016,Get Shorty,The Cadillac of Minivans,tt0113161\nEP74OZdI5d8,1995.0,5,12,2016,Get Shorty,A Fan of Karen's Work,tt0113161\nh_htCIiCXfE,1995.0,6,12,2016,Get Shorty,Chili and Bo Talk Screenwriting,tt0113161\nIsKNaQuuL1g,1995.0,4,12,2016,Get Shorty,My Associate Chili Palmer,tt0113161\nHHSAml1BAR4,1995.0,2,12,2016,Get Shorty,E.g. vs. I.e.,tt0113161\nVNUBj_27Z-A,1995.0,3,12,2016,Get Shorty,Chili Surprises Harry,tt0113161\nrh8OdlSXiDo,1995.0,1,12,2016,Get Shorty,Chili Wants His Coat,tt0113161\ncjIv83h6Tcc,2005.0,9,9,2016,Bad News Bears,Second Place,tt0408524\nO87gR6xJ9Hw,2005.0,8,9,2016,Bad News Bears,Bottom of the 6th,tt0408524\n7WzJb1l2wtg,2005.0,7,9,2016,Bad News Bears,Brawl at the Plate,tt0408524\nyan-Tdiyrig,2005.0,5,9,2016,Bad News Bears,Do You Feel That?,tt0408524\n5aBVbBiojuM,2005.0,4,9,2016,Bad News Bears,Opening Day,tt0408524\nXOUauBpPRNk,2005.0,6,9,2016,Bad News Bears,Genital Defense Apparatus,tt0408524\nPwfZYNFfEfM,2005.0,3,9,2016,Bad News Bears,Batting Practice,tt0408524\nh2Fbdx7N2Kw,2005.0,2,9,2016,Bad News Bears,Don't Lean Against That Door,tt0408524\nfCuYlKKFAO8,2005.0,1,9,2016,Bad News Bears,First Practice,tt0408524\n9Fj1STjqFDU,2012.0,12,12,2016,The Paperboy,Harrowing Justice,tt1496422\niso415ggxMg,2012.0,11,12,2016,The Paperboy,Laundry Room Lust,tt1496422\nF5Hme0QUyXI,2012.0,8,12,2016,The Paperboy,Nightmarish Torture,tt1496422\n2l1u5Q9AYjM,2012.0,10,12,2016,The Paperboy,It's Not the Truth,tt1496422\nPeFLEFUNxzc,2012.0,7,12,2016,The Paperboy,The N Word,tt1496422\npzrbB0XK9eI,2012.0,9,12,2016,The Paperboy,Oversexed Barbie Doll,tt1496422\nJyVZgdLjGOo,2012.0,3,12,2016,The Paperboy,Spread Your Legs,tt1496422\nOtsMWS5Z2Oc,2012.0,4,12,2016,The Paperboy,Jellyfish Sting,tt1496422\nQQCeQOAVWFw,2012.0,5,12,2016,The Paperboy,Gator Gutting,tt1496422\nJ2vVweGS13Y,2012.0,6,12,2016,The Paperboy,The Most Natural Thing in the World,tt1496422\nGiQJxD_bQCI,2012.0,2,12,2016,The Paperboy,Sexy Daydream,tt1496422\nucuU6zGryPE,2012.0,1,12,2016,The Paperboy,I'm Getting Horny,tt1496422\n3k9G5rq86PU,1998.0,9,10,2016,Sphere,Your Fears Are Going to Kill Us,tt0120184\nxnV6hJs2Zu0,1998.0,10,10,2016,Sphere,It's an Illusion,tt0120184\nl6cFM5Ubilw,1998.0,4,10,2016,Sphere,They're Harmless,tt0120184\nevWlSySuiII,1998.0,8,10,2016,Sphere,Sea Snake,tt0120184\niY2xD9VKDiE,1998.0,7,10,2016,Sphere,Chaos Underwater,tt0120184\njCXcE6DvgLw,1998.0,6,10,2016,Sphere,You're Not Alone Out There,tt0120184\n2GLDqvA6tKI,1998.0,5,10,2016,Sphere,An Alien Named Jerry,tt0120184\nM5UXOwphsLk,1998.0,2,10,2016,Sphere,A Perfect,tt0120184\nvrVDJcw40BU,1998.0,1,10,2016,Sphere,You Think This is Alien?,tt0120184\nKOxmixap5yw,1998.0,3,10,2016,Sphere,We're All Gonna Die Down Here,tt0120184\nqkVImymH0A0,1977.0,9,9,2016,Semi-Tough,I Don't,tt0078227\nNeTnaYH-08o,1977.0,8,9,2016,Semi-Tough,Superbowl Win,tt0078227\nPSG5uNsnkks,1977.0,7,9,2016,Semi-Tough,A Great Respect for One Another,tt0078227\n01OfrTMVeD8,1977.0,6,9,2016,Semi-Tough,Crawlin' and Creepin' With Big Ed,tt0078227\n0zROMB5cxBA,1977.0,5,9,2016,Semi-Tough,Bathroom Visitors,tt0078227\nuF7ftHMCN1w,1977.0,4,9,2016,Semi-Tough,Shake to the Rescue,tt0078227\n746lMCHNZeU,1977.0,1,9,2016,Semi-Tough,The Jocks of the Mind,tt0078227\n69bd2hhDLF0,1977.0,3,9,2016,Semi-Tough,Big Women Have Big Feelings,tt0078227\nnFJvGENqc20,1977.0,2,9,2016,Semi-Tough,Deodorant Commercial,tt0078227\nx63YlKqGZhI,2013.0,10,10,2016,V/H/S/2,Aliens in the Woods,tt2450186\nfyXyDW0pU7s,2013.0,9,10,2016,V/H/S/2,Slumber Party Abduction,tt2450186\n_7aTnDiBVEQ,2013.0,8,10,2016,V/H/S/2,Escaping From Hell,tt2450186\nF_BH945RjPM,2013.0,2,10,2016,V/H/S/2,Zombie on the Trail,tt2450186\nZmNGTR9Y7f0,2013.0,6,10,2016,V/H/S/2,Mass Suicide,tt2450186\nBhSNoxyn9ao,2013.0,7,10,2016,V/H/S/2,A Satanic Birth,tt2450186\n9-NoQwwRDJY,2013.0,3,10,2016,V/H/S/2,The Fate of Good Samaritans,tt2450186\nPDSgyYfLpdo,2013.0,4,10,2016,V/H/S/2,Birthday Party Zombie Attack,tt2450186\nlYZKtD3RwAw,2013.0,5,10,2016,V/H/S/2,You Didn't Listen to Me,tt2450186\nMUlVu0L0A0I,2013.0,1,10,2016,V/H/S/2,Eye See You,tt2450186\nRdxv6jaQZKM,2012.0,9,10,2016,V/H/S,The House is Alive,tt2105044\n60gXuCsTsPE,2012.0,10,10,2016,V/H/S,Saving the Wrong Girl,tt2105044\nilYccsPDTXM,2012.0,5,10,2016,V/H/S,Don't Come Here,tt2105044\nGe-zBQLa7FY,2012.0,8,10,2016,V/H/S,Close Your Eyes,tt2105044\nHAW15MhSWuM,2012.0,4,10,2016,V/H/S,You're All Just Bait,tt2105044\nE7fcdG_azPE,2012.0,2,10,2016,V/H/S,Honeymoon From Hell,tt2105044\nq2vaQZMf7LI,2012.0,6,10,2016,V/H/S,My Apartment is Haunted,tt2105044\n6NbloMPJuRY,2012.0,7,10,2016,V/H/S,Investigating the Noise,tt2105044\nDslpNlhAfLo,2012.0,3,10,2016,V/H/S,Wanna See Something Sickening?,tt2105044\n5ql5X72wS0I,2012.0,1,10,2016,V/H/S,The Unwelcomed Guest,tt2105044\nn2GAcA_P9Tk,2012.0,7,11,2016,The Babymakers,The Indian Mafia,tt0835418\nTGAHQorruwA,2012.0,11,11,2016,The Babymakers,The Great Baby Race,tt0835418\nfpgKY0I3taA,2012.0,10,11,2016,The Babymakers,The Heist Begins,tt0835418\nSjfMBu6JQ-0,2012.0,9,11,2016,The Babymakers,A Chinese Baby,tt0835418\nrvImiPkES20,2012.0,5,11,2016,The Babymakers,The Sperm Bank,tt0835418\nJupxjoCyrBE,2012.0,8,11,2016,The Babymakers,Planning the Mission,tt0835418\nA-zeWjOl0rE,2012.0,6,11,2016,The Babymakers,I Want to Be Inside You,tt0835418\nX2zBKcPda98,2012.0,2,11,2016,The Babymakers,Sex Advice,tt0835418\n6df7al2Ez0U,2012.0,4,11,2016,The Babymakers,Testicular Trauma,tt0835418\nO5TthS_9-9s,2012.0,3,11,2016,The Babymakers,Fantasy Interrupted,tt0835418\nRKcDDLS3aqQ,2009.0,9,9,2016,\"I Love You, Man\",Stop Calling Me Hulk,tt1155056\nHnKmwbVpRno,2009.0,6,9,2016,\"I Love You, Man\",Screaming Lessons,tt1155056\nMvDNoWSnSsU,2009.0,3,9,2016,\"I Love You, Man\",Have You Been Kissing Someone?,tt1155056\nf_zpkjkB8ac,2009.0,7,9,2016,\"I Love You, Man\",This Is My Nightmare,tt1155056\nkH6SUxCwXzs,2009.0,8,9,2016,\"I Love You, Man\",Best Bond Impression,tt1155056\nK6bTibRdNxE,2009.0,4,9,2016,\"I Love You, Man\",Open House,tt1155056\nSV6dKGbbkIk,2009.0,2,9,2016,\"I Love You, Man\",I Gotta Get Some Friends,tt1155056\nGCM5SoA82w4,2009.0,5,9,2016,\"I Love You, Man\",Message from Klaven,tt1155056\nsb8IU6c5obc,2009.0,1,9,2016,\"I Love You, Man\",A Girlfriend Guy,tt1155056\nY7gTgzqJD-w,2015.0,10,10,2016,Trainwreck,Amy's Dance Scene,tt3152624\n4WCDgJSCQpc,2015.0,9,10,2016,Trainwreck,I Scored on LeBron James Scene,tt3152624\n-y6RPL5v1bU,2015.0,8,10,2016,Trainwreck,We Should Be a Couple Scene,tt3152624\ndQQd6s5gYhk,2015.0,6,10,2016,Trainwreck,You Butt-Dialed Me Scene,tt3152624\nzie94YV7W4Y,2015.0,7,10,2016,Trainwreck,LeBron's Advice Scene,tt3152624\niHheroBxkuE,2015.0,5,10,2016,Trainwreck,Breathe up Towards the Sky Scene,tt3152624\nZDbhvMyusZ8,2015.0,1,10,2016,Trainwreck,Talk Dirty to Me Scene,tt3152624\nJNRFWtS0LlM,2015.0,4,10,2016,Trainwreck,This Is How I Walk Scene,tt3152624\n8wyhEmMY_yc,2015.0,2,10,2016,Trainwreck,Sports? I Love Them Scene,tt3152624\nOCvg2G2SEhU,2015.0,3,10,2016,Trainwreck,You Always Do This to Me Scene,tt3152624\nsUad0ZL-nBU,2014.0,10,10,2016,Lucy,I Am Everywhere,tt2872732\n7Dxxk1az9Uo,2014.0,6,10,2016,Lucy,I've Never Driven Before,tt2872732\nLWG3aFFhg8k,2014.0,9,10,2016,Lucy,Crossing the Spacetime Continuum,tt2872732\nvwObck9twes,2014.0,8,10,2016,Lucy,Time is the Answer,tt2872732\nGXumhcRLN_E,2014.0,5,10,2016,Lucy,Self-Management,tt2872732\naIBT3l54BAg,2014.0,7,10,2016,Lucy,Give Me the Case,tt2872732\nDvi6n89JWUY,2014.0,3,10,2016,Lucy,Learning's a Painful Process,tt2872732\nnELxnSK1SHk,2014.0,4,10,2016,Lucy,A Higher Purpose,tt2872732\ndTGuyNnJJFs,2014.0,2,10,2016,Lucy,I Feel Everything,tt2872732\ntsQS1b-fNSs,2014.0,1,10,2016,Lucy,Escapes,tt2872732\nVx357DNh0vw,2014.0,9,10,2016,Neighbors,Mano y Mano,tt2004420\n03WbdaZCGAA,2014.0,10,10,2016,Neighbors,So Long Neighbor,tt2004420\nvKMMeOLK9Y4,2014.0,7,10,2016,Neighbors,Just a Little Taste,tt2004420\nxrbaFa8zV_o,2014.0,5,10,2016,Neighbors,Calling the Cops,tt2004420\nJ1wEoCLDl9Y,2014.0,8,10,2016,Neighbors,Air Bag Prank,tt2004420\n1uX_OAhcgb0,2014.0,6,10,2016,Neighbors,Robert De Niro Party,tt2004420\nbLD14JwSiYs,2014.0,4,10,2016,Neighbors,Mac and Kelly Join the Party,tt2004420\nOMHAwJjp-YI,2014.0,3,10,2016,Neighbors,Delta Psi's Epic Party Moments,tt2004420\n89qTnQ_TK4c,2014.0,2,10,2016,Neighbors,Welcome to the Neighborhood,tt2004420\njfA6jr-y7_A,2014.0,1,10,2016,Neighbors,Baby's First Rave,tt2004420\nuIEr1T_jZlQ,2014.0,10,10,2016,Dumb and Dumber To,Kidney Prank,tt2096672\naWaZMXiimms,2014.0,9,10,2016,Dumb and Dumber To,The Old Stinkeroo,tt2096672\nULCyXL8cTFU,2014.0,7,10,2016,Dumb and Dumber To,Funnel Nuts and Fireworks,tt2096672\nVUZBpBTqRJY,2014.0,8,10,2016,Dumb and Dumber To,Dirty Grandma,tt2096672\n6v098-aMBj4,2014.0,6,10,2016,Dumb and Dumber To,Lloyd's Daydream,tt2096672\nDdGYUf-E48g,2014.0,5,10,2016,Dumb and Dumber To,Fart Games,tt2096672\np6dUf7YRWao,2014.0,3,10,2016,Dumb and Dumber To,Superior Instincts,tt2096672\nQwyo6C87zdE,2014.0,1,10,2016,Dumb and Dumber To,20 Year Prank,tt2096672\nEJFm05MPSDQ,2014.0,4,10,2016,Dumb and Dumber To,A Pretty Good Dad,tt2096672\n1y20NC1_MGQ,2014.0,2,10,2016,Dumb and Dumber To,It's a Silent B,tt2096672\nC5pZipJa09s,2012.0,2,3,2016,This Means War,Fighting Over Lauren,tt1596350\n7d7J-rlXWvc,2012.0,3,3,2016,This Means War,\"Oh My God, I'm Yoko!\",tt1596350\n_n3aOgYXQ6o,2012.0,1,3,2016,This Means War,Surveillance Sex Talk,tt1596350\nVUv6vjIidho,2011.0,1,3,2016,The Best Exotic Marigold Hotel,The Lover From My Youth,tt1412386\ngIdOE4SoDfU,2011.0,3,3,2016,The Best Exotic Marigold Hotel,I Will Not Live Without This Girl,tt1412386\nEWQsR8em1BM,2011.0,2,3,2016,The Best Exotic Marigold Hotel,Telemarketer Training,tt1412386\n3lgcViU45Fs,2005.0,3,3,2016,The Family Stone,You're the Worst!,tt0356680\nMB5PMwcYLqg,2005.0,2,3,2016,The Family Stone,This Isn't Coming Out Right,tt0356680\nMhev_TsgOBw,2005.0,1,3,2016,The Family Stone,I Just Mean the Gay Thing,tt0356680\nlWERfZYWdA4,2013.0,10,10,2016,Nymphomaniac: Vol. II,P and Joe,tt2382009\nKY7hswfdxI4,2013.0,9,10,2016,Nymphomaniac: Vol. II,The Soul Tree,tt2382009\nYauy9nMQU04,2013.0,5,10,2016,Nymphomaniac: Vol. II,No Safe Word,tt2382009\nx2cNjm0VUmY,2013.0,4,10,2016,Nymphomaniac: Vol. II,Removing Words from Language,tt2382009\nb_2-97kqlzs,2013.0,6,10,2016,Nymphomaniac: Vol. II,Not a Mother,tt2382009\nxQ6yM4Dxpbs,2013.0,8,10,2016,Nymphomaniac: Vol. II,Repressing Desire,tt2382009\nzdbOXyz1gpg,2013.0,7,10,2016,Nymphomaniac: Vol. II,I Am a Nymphomaniac,tt2382009\nKRyazQjCRD8,2013.0,2,10,2016,Nymphomaniac: Vol. II,The Spoon Trick,tt2382009\n_RD0zpFbSmY,2013.0,3,10,2016,Nymphomaniac: Vol. II,Feeding the Tiger,tt2382009\nHLpC0bnO5_o,2013.0,1,10,2016,Nymphomaniac: Vol. II,Nothing Sexual About Me,tt2382009\n2cRMH4HXfzg,2013.0,10,10,2016,Lone Survivor,Because of My Brothers,tt1091191\n3bmDhfEtNh0,2013.0,9,10,2016,Lone Survivor,Thank You,tt1091191\nf69ceThb6ec,2013.0,7,10,2016,Lone Survivor,Unexpected Assistance,tt1091191\nQ_j14lseORE,2013.0,8,10,2016,Lone Survivor,For an American You Will Die?,tt1091191\nHdmi1UbW4Yk,2013.0,6,10,2016,Lone Survivor,Axe Goes Down,tt1091191\n8PzQmtwNeXM,2013.0,4,10,2016,Lone Survivor,Never Out of the Fight,tt1091191\n6cxpiPSZHmE,2013.0,5,10,2016,Lone Survivor,A Failed Rescue,tt1091191\nQJwdXqGBEPQ,2013.0,2,10,2016,Lone Survivor,A Difficult Decision,tt1091191\niNLZ1J_Gslg,2013.0,1,10,2016,Lone Survivor,There Ain't Nothin' I Can't Do,tt1091191\nc_k5BK-ONiE,2013.0,3,10,2016,Lone Survivor,Fall Back,tt1091191\nfJpdVdl29Mw,2013.0,10,10,2016,Nymphomaniac,A Caged Animal,tt1937390\nficjws23Qjk,2013.0,9,10,2016,Nymphomaniac,When Death is Come,tt1937390\nsKHJuOqcvOg,2013.0,5,10,2016,Nymphomaniac,Jerome,tt1937390\n5C7dB-dOS_U,2013.0,7,10,2016,Nymphomaniac,No One Can Be That Cruel,tt1937390\nFB1Go2JVVqc,2013.0,8,10,2016,Nymphomaniac,Lust and Loneliness,tt1937390\n0mE11Cy_xAo,2013.0,6,10,2016,Nymphomaniac,Mrs. H,tt1937390\nKcv1B1aZIvs,2013.0,4,10,2016,Nymphomaniac,The Little Flock,tt1937390\npxOZAWSn-dc,2013.0,2,10,2016,Nymphomaniac,The Married Man,tt1937390\nOJiN41xn8iY,2013.0,10,10,2016,Grace Unplugged,You Never Let Go,tt2349460\nGexB78wQ6Qw,2013.0,3,10,2016,Nymphomaniac,A Terrible Human Being,tt1937390\n7kGm_xBgi1k,2013.0,9,10,2016,Grace Unplugged,All I've Ever Needed,tt2349460\nKsZ3SpIoNos,2013.0,1,10,2016,Nymphomaniac,Nymphs on a Train,tt1937390\n8cAlXSNQeUY,2013.0,8,10,2016,Grace Unplugged,Please Forgive Me,tt2349460\nH1rttoUCeUg,2013.0,7,10,2016,Grace Unplugged,What Really Matters,tt2349460\nGKsKm9KYbaU,2013.0,5,10,2016,Grace Unplugged,This is What I Want,tt2349460\nC4UKfmu_m8I,2013.0,4,10,2016,Grace Unplugged,Misunderstood,tt2349460\nxpKYkGHWB7E,2013.0,6,10,2016,Grace Unplugged,Behind the Fame,tt2349460\nqB78U2aWihU,2013.0,2,10,2016,Grace Unplugged,Grace Leaves Home,tt2349460\n5rkVGXHv2Ow,2013.0,1,10,2016,Grace Unplugged,Dishonesty,tt2349460\n1YklLet-e8s,2013.0,3,10,2016,Grace Unplugged,The Price of Fame,tt2349460\n9nvHAma_Lh0,2013.0,9,10,2016,Red 2,Weapons of Mass Destruction,tt1821694\nM2_cj-txN9A,2013.0,10,10,2016,Red 2,Didn't See That One Coming,tt1821694\nuf-v_lzbcp0,2013.0,8,10,2016,Red 2,Frank vs. Han,tt1821694\nRlPspkeaFrU,2013.0,5,10,2016,Red 2,Han Attacks,tt1821694\n2ZpWLuAc7LE,2013.0,7,10,2016,Red 2,Convenience Store Fight,tt1821694\n9UNV2c-A4BU,2013.0,6,10,2016,Red 2,Breaking Into the Asylum,tt1821694\nrCCCJ2tXF7A,2013.0,3,10,2016,Red 2,Paris Chase,tt1821694\nPurkHHO7Gcc,2013.0,1,10,2016,Red 2,Kill Him,tt1821694\nxP7ctkX_Nm8,2013.0,2,10,2016,Red 2,Katya and Frank,tt1821694\nM9F-ZtKswww,2013.0,4,10,2016,Red 2,Seducing the Frog,tt1821694\nUrRDXFXZUhw,2012.0,12,12,2016,Rapturepalooza,God vs. Satan,tt1879032\nEV3y3ehKePA,2012.0,11,12,2016,Rapturepalooza,I Want a Sweater!,tt1879032\nmEiLmu1IF5E,2012.0,10,12,2016,Rapturepalooza,You Barbecued My Son,tt1879032\nobeGwYOdAPc,2012.0,9,12,2016,Rapturepalooza,Shooting the Beast,tt1879032\no3vv1SPEv1c,2012.0,8,12,2016,Rapturepalooza,I Wanna Touch Your Booty,tt1879032\ndrTH0CDFgx8,2012.0,6,12,2016,Rapturepalooza,\"Dude, You're Dead!\",tt1879032\ndDH3nlKHRQ8,2012.0,4,12,2016,Rapturepalooza,Dad's Morally Lost,tt1879032\n-i6m1i3JLaM,2012.0,7,12,2016,Rapturepalooza,Sexy Beast,tt1879032\nwDsYB_uRbaE,2012.0,5,12,2016,Rapturepalooza,The Beast,tt1879032\nG4OAR22W7Sc,2012.0,1,12,2016,Rapturepalooza,Mom Was Sent Back,tt1879032\nKVu2o2fTKlc,2012.0,3,12,2016,Rapturepalooza,The Fiery Rocks,tt1879032\nddQniqjrVdo,2012.0,2,12,2016,Rapturepalooza,Foul-Mouthed Crows,tt1879032\nhsxRROsF4D0,2012.0,10,10,2016,Nurse 3D,My Work Here Is Done,tt1913166\nx8tbSHuoB9E,2012.0,9,10,2016,Nurse 3D,Forcible Assisted Suicide,tt1913166\nCBS7b7HPuCo,2012.0,7,10,2016,Nurse 3D,Playing Doctor,tt1913166\nFrGGFHPDN3A,2012.0,8,10,2016,Nurse 3D,Catfight Bloodbath,tt1913166\nRl-Fx-2zzdQ,2012.0,6,10,2016,Nurse 3D,Baby's First Kill,tt1913166\nfaEbd7LEDOw,2012.0,4,10,2016,Nurse 3D,I'm Not the Smiley Face Type,tt1913166\nr1mN6K60148,2012.0,5,10,2016,Nurse 3D,Live Streaming a Murder,tt1913166\n9qrDi2o-eEw,2012.0,3,10,2016,Nurse 3D,Your Wife Ever Tie You Up?,tt1913166\ni8BG2g9YJAo,2012.0,1,10,2016,Nurse 3D,The Fast Way Down,tt1913166\neKCpwUXh_Qs,2012.0,2,10,2016,Nurse 3D,Sexual Obsession,tt1913166\n25CbQ5zMNfU,2011.0,12,12,2016,Bernie,Not as Bad as You Think,tt1704573\n6ObWyt4Hfaw,2011.0,9,12,2016,Bernie,The Cover Up,tt1704573\n3IklTegWKfw,2011.0,11,12,2016,Bernie,I Shot Her,tt1704573\nKQz3KBKMFg4,2011.0,7,12,2016,Bernie,I Know You Hate Me,tt1704573\niSIDCcqERkI,2011.0,10,12,2016,Bernie,The Freezer,tt1704573\nGVmIqRcglvE,2011.0,2,12,2016,Bernie,The Five States of Texas,tt1704573\n7H_6ZZLNsvc,2011.0,6,12,2016,Bernie,Increasingly Dependent,tt1704573\nU1WzINCahpw,2011.0,5,12,2016,Bernie,Was it Romantic?,tt1704573\n3GvvMpMUwQc,2011.0,8,12,2016,Bernie,What Have I Done?,tt1704573\noI2bCE3FNZk,2011.0,4,12,2016,Bernie,Mean Marjorie,tt1704573\ncr18oXaI02Q,2011.0,3,12,2016,Bernie,Most Qualified Young Man,tt1704573\nn2dBpP0yhUs,2011.0,1,12,2016,Bernie,Ready for the Casket,tt1704573\nzVBa2vcgozs,2011.0,9,10,2016,Blitz,Chasing a Killer,tt1297919\nfbS0gOz76iw,2011.0,10,10,2016,Blitz,Unsolved Murder,tt1297919\nt1-maJWU3ag,2011.0,6,10,2016,Blitz,The Killer's Car,tt1297919\noQ39ssiQ-4A,2011.0,7,10,2016,Blitz,Flushed Out,tt1297919\n52QPxxtu1-s,2011.0,8,10,2016,Blitz,The Wrong Victim,tt1297919\n0Y_kftjPpUc,2011.0,4,10,2016,Blitz,Burnt Out,tt1297919\nZ1Zrfm1Ylro,2011.0,1,10,2016,Blitz,The Right Weapon,tt1297919\nSoFgHbVPrSk,2011.0,5,10,2016,Blitz,You Are the Bill,tt1297919\nJTJKIuXBey0,2011.0,2,10,2016,Blitz,Eight More to Kill,tt1297919\nXN0tr43oqjI,2011.0,3,10,2016,Blitz,A Real Ballbuster,tt1297919\nXt2JzDaHiNM,1984.0,9,9,2016,Red Dawn,Vaya Con Dios,tt0087985\na1iQDKCkh6k,1984.0,6,9,2016,Red Dawn,Tank Duel,tt0087985\n3xmFjLSU7MA,1984.0,7,9,2016,Red Dawn,Helicopter Ambush,tt0087985\np4JPMo4bMa4,1984.0,8,9,2016,Red Dawn,Robert's Last Stand,tt0087985\na1Bx9nyw35w,1984.0,4,9,2016,Red Dawn,Guerilla Warfare,tt0087985\n0f2bU9SzCzs,1984.0,5,9,2016,Red Dawn,Liberating the Prison Camp,tt0087985\nS7GMNTJa5zQ,1984.0,3,9,2016,Red Dawn,God Help Me,tt0087985\nMVqK6wNkSxA,1984.0,1,9,2016,Red Dawn,Paratrooper Invasion,tt0087985\nW6qWnmb_22s,1984.0,2,9,2016,Red Dawn,Avenge Me,tt0087985\ntX3qqCP99Tw,1991.0,9,9,2016,Double Impact,Beating the Bad Guys,tt0101764\n5ktmcS1L3-A,1991.0,3,9,2016,Double Impact,Massacre at the Warehouse,tt0101764\nuat-LZ3t7i4,1991.0,8,9,2016,Double Impact,Killing Kara,tt0101764\ncCpDJlAnHsg,1991.0,4,9,2016,Double Impact,Bombing the Klimax Klub,tt0101764\n-WbsnXGKkIg,1991.0,6,9,2016,Double Impact,Brother Against Brother,tt0101764\n5CgpROI6ivM,1991.0,7,9,2016,Double Impact,Bad Moon Frying,tt0101764\nc2HZzrcEbZc,1991.0,2,9,2016,Double Impact,Welcome to Hong Kong,tt0101764\nwyRq2S8BTVM,1991.0,5,9,2016,Double Impact,You Can Frisk Me,tt0101764\nFwkbHnPwEYc,1991.0,1,9,2016,Double Impact,Flexibility,tt0101764\nfLWjUBClszw,2014.0,10,10,2016,Dracula Untold,He's Safe Now,tt0829150\ns1nXXro4Aio,2014.0,5,10,2016,Dracula Untold,He's a Monster,tt0829150\n-dMBMU9FCQU,2014.0,9,10,2016,Dracula Untold,My Name is Dracula,tt0829150\nI6KZlznXyiY,2014.0,8,10,2016,Dracula Untold,Drink My Blood,tt0829150\nVIKvQVph07A,2014.0,3,10,2016,Dracula Untold,Vlad Defends His Castle,tt0829150\nRxhenI5eUDI,2014.0,7,10,2016,Dracula Untold,Bat Smash,tt0829150\nWNZNGn_nkOU,2014.0,6,10,2016,Dracula Untold,I Would Do It All Again,tt0829150\ndRz8OjNEtaI,2014.0,4,10,2016,Dracula Untold,Need to Feed,tt0829150\nGe-ilEFgJ34,2014.0,1,10,2016,Dracula Untold,Vlad the Impaler,tt0829150\nLeA8ojVy8Fc,2014.0,2,10,2016,Dracula Untold,The Ultimate Game,tt0829150\niASBdbiKSHU,2014.0,9,10,2016,Boyhood,I Just Thought There Would Be More,tt1065073\nsh0UuxRgqgk,2014.0,10,10,2016,Boyhood,The Moment Seizes Us,tt1065073\nPMmvUWqeS80,2014.0,8,10,2016,Boyhood,You Are Responsible For You,tt1065073\n_V0CWwyrJUw,2014.0,6,10,2016,Boyhood,\"Birthdays, Bibles and Guns\",tt1065073\nB86JJELi5Tg,2014.0,3,10,2016,Boyhood,Daddy's Lullaby,tt1065073\nPX-PzFNkU50,2014.0,7,10,2016,Boyhood,You're Kinda Weird,tt1065073\nY5oZr-5C1eM,2014.0,4,10,2016,Boyhood,You Think That's Funny?,tt1065073\noDDexxBBWXQ,2014.0,5,10,2016,Boyhood,The Sex Talk,tt1065073\nePaK5-b1oec,2014.0,2,10,2016,Boyhood,I Will Not Be That Guy,tt1065073\n9diokRIKGT8,2014.0,1,10,2016,Boyhood,She Hit Me First!,tt1065073\nBhWg1G0czSQ,2014.0,10,10,2016,Rob the Mob,You Love Me?,tt2481480\nUa0oqZfJFN8,2014.0,7,10,2016,Rob the Mob,Solidarity,tt2481480\niZqKmtk6Vlc,2014.0,9,10,2016,Rob the Mob,Take the Tickets,tt2481480\nhZZG0M8zj_8,2014.0,8,10,2016,Rob the Mob,Found Out,tt2481480\nwb8HFGVE218,2014.0,6,10,2016,Rob the Mob,The List,tt2481480\ngHr0P3Px91c,2014.0,5,10,2016,Rob the Mob,Everyone Strip!,tt2481480\nXTLruQ3tl4U,2014.0,4,10,2016,Rob the Mob,The Escape,tt2481480\navQ9Wvp5wZQ,2014.0,3,10,2016,Rob the Mob,The Robbery,tt2481480\nZwVuw2rvu4s,2014.0,2,10,2016,Rob the Mob,Plan B,tt2481480\nev_UF24O-oM,2014.0,1,10,2016,Rob the Mob,A Second Chance,tt2481480\nk-e5rthOQdQ,2013.0,9,10,2016,Bad Milo!,Milo vs. Ralph,tt2274570\nfQmbxg6z5ic,2013.0,10,10,2016,Bad Milo!,Milo Attacks Sarah,tt2274570\nnuNIO9LLqYY,2013.0,8,10,2016,Bad Milo!,Just You and Me,tt2274570\nKGk6xZWTgBQ,2013.0,7,10,2016,Bad Milo!,I'm Pregnant,tt2274570\nNPS356u_u08,2013.0,4,10,2016,Bad Milo!,The Myth of our Anus,tt2274570\nWJpSAnt7s98,2013.0,6,10,2016,Bad Milo!,Take a Dump on Your Enemy,tt2274570\n4gYG7purQPk,2013.0,5,10,2016,Bad Milo!,Milo Comes Home,tt2274570\nuvyPBpxL8ZY,2013.0,3,10,2016,Bad Milo!,Milo's First Kill,tt2274570\nJY9Iq3-iD7s,2013.0,2,10,2016,Bad Milo!,Ready for Hypnosis?,tt2274570\n7iLdxVgHWlM,2013.0,1,10,2016,Bad Milo!,Your New Office,tt2274570\n_NQec_YluKU,2013.0,9,10,2016,Drinking Buddies,Jill's Confession,tt2265398\n6Uz7wmX_6nY,2013.0,10,10,2016,Drinking Buddies,Buddies Again,tt2265398\nmfqzWZW_kkM,2013.0,1,10,2016,Drinking Buddies,Not Messing Around,tt2265398\nOGXdRrvCW2E,2013.0,7,10,2016,Drinking Buddies,I Like Your Style,tt2265398\njJ9VFThsqtU,2013.0,8,10,2016,Drinking Buddies,You Made Your Own Bed,tt2265398\nNFdvt3FQRoQ,2013.0,6,10,2016,Drinking Buddies,A Good Man,tt2265398\nWXVmCSMEpP0,2013.0,5,10,2016,Drinking Buddies,Dave Went Home with Kate,tt2265398\nyef2bvCU2Tw,2013.0,4,10,2016,Drinking Buddies,The Marriage Conversation,tt2265398\nuO1YBHAbBSQ,2013.0,2,10,2016,Drinking Buddies,Relaxing on the Beach,tt2265398\n_6G-jfNOkIc,2013.0,3,10,2016,Drinking Buddies,The Shackles Are Off,tt2265398\nfxJ9dLfp9k8,2013.0,10,11,2016,Escape Plan,Boom,tt1211956\nudTmoc-i1Q8,2013.0,9,11,2016,Escape Plan,Ship Shootout,tt1211956\nq0YOdmVSceU,2013.0,2,11,2016,Escape Plan,Evacuation Code,tt1211956\nhVyVNcP83Sw,2013.0,1,10,2016,Alan Partridge,Just Sack Pat,tt0469021\nR1f88CiYzes,2013.0,2,10,2016,Alan Partridge,Will You Help Us?,tt0469021\nAdjVK4hPaOo,2013.0,6,11,2016,Escape Plan,The Tomb,tt1211956\nAInSCWWY14Q,2013.0,11,11,2016,Escape Plan,Mannheim,tt1211956\ngjRCN-nrEl4,2013.0,4,11,2016,Escape Plan,You Hit Like a Vegetarian,tt1211956\n61ZwsdoEI9U,2013.0,7,11,2016,Escape Plan,The Riot,tt1211956\nb8wlb-8zFSQ,2013.0,8,11,2016,Escape Plan,Boiler Room Brawl,tt1211956\nFi4ixdzoA7I,2013.0,5,11,2016,Escape Plan,Draw You A Picture,tt1211956\n7g4XFGQutFM,2013.0,1,11,2016,Escape Plan,How to Escape From Prison,tt1211956\nZizMOl5Xllw,2013.0,3,11,2016,Escape Plan,Back Off!,tt1211956\nvm29fXJWuOA,2013.0,10,10,2016,Alan Partridge,Armed Standoff,tt0469021\nmyJttzKxu64,2013.0,9,10,2016,Alan Partridge,The Shitshank Redemption,tt0469021\ngwFW3icyEZk,2013.0,7,10,2016,Alan Partridge,A Captive Audience,tt0469021\nLPRHiok3nzs,2013.0,6,10,2016,Alan Partridge,Jason and the Argonauts,tt0469021\nFTjFM9edoD4,2013.0,8,10,2016,Alan Partridge,Naked Pictures,tt0469021\n3DsoxW8AUEE,2013.0,5,10,2016,Alan Partridge,Laying Down a Jingle,tt0469021\nVMXUsPGKzfQ,2013.0,4,10,2016,Alan Partridge,Crisis Management,tt0469021\n1X1shl06ZPo,2013.0,3,10,2016,Alan Partridge,Prepare to Die,tt0469021\nXAw8Qpr0NK0,1995.0,10,11,2016,Species,Up in Flames,tt0114508\nl97NtEMUx0M,1995.0,11,11,2016,Species,The Dead Half,tt0114508\ndb50XeSEtv4,1995.0,8,11,2016,Species,Regenerating Thumb,tt0114508\nMFvi1YVig8w,1995.0,9,11,2016,Species,Hunting Sil,tt0114508\n0cPT4zspVc0,1995.0,5,11,2016,Species,Xavier's Protocol,tt0114508\nNAEDVsrKk5s,1995.0,7,11,2016,Species,Sil Wants a Baby,tt0114508\nIerddGM-xO0,1995.0,4,11,2016,Species,More Docile and Controllable,tt0114508\nFEAfMv14l5Q,1995.0,6,11,2016,Species,Deadly Kiss,tt0114508\n79hXvDohqgI,1995.0,1,11,2016,Species,The End of the Experiment,tt0114508\nCNuEPee1qOU,1995.0,3,11,2016,Species,Sil's Cocoon,tt0114508\n9FyqTQ9ywnc,1995.0,2,11,2016,Species,Puberty,tt0114508\nx2yXtHyhu-k,1985.0,11,11,2016,Ghoulies,Wolfgang's Magical Showdown,tt0089200\n3T-wqo8lamY,1985.0,9,11,2016,Ghoulies,in Disguise,tt0089200\nZ3yJF1FX9hY,1985.0,5,11,2016,Ghoulies,Dinner Party,tt0089200\n0BQZb44R_IY,1985.0,8,11,2016,Ghoulies,Giant Tongue,tt0089200\n_zFjP61xNb0,1985.0,10,11,2016,Ghoulies,Ghoulie Clown Attacks,tt0089200\n5mAI-v1nfOw,1985.0,6,11,2016,Ghoulies,Jonathan Raises His Father,tt0089200\nPnmtF6EqeXU,1985.0,7,11,2016,Ghoulies,in the Pond,tt0089200\nLCWzLnaJqBw,1985.0,4,11,2016,Ghoulies,Controlling Rebecca,tt0089200\nr7J-Qx2InoU,1985.0,2,11,2016,Ghoulies,Summoning the,tt0089200\nHo-Sv55Yh20,1985.0,3,11,2016,Ghoulies,Testing Grizzel and Greedigut,tt0089200\nEdJRbvXr4zs,1985.0,1,11,2016,Ghoulies,Human Sacrifice,tt0089200\ni_qI6LOc54w,2012.0,8,10,2016,Ted,Partying with Flash Gordon,tt1637725\nRw-EoS3td0c,2012.0,10,10,2016,Ted,I Think We're Alone Now,tt1637725\nGHOgErGvyTE,2012.0,9,10,2016,Ted,The Fight,tt1637725\nAgZbPNlvHe0,2012.0,7,10,2016,Ted,'s Girlfriend,tt1637725\n04uN57jOg-Q,2012.0,6,10,2016,Ted,White Trash Names,tt1637725\nbc84pYZICbk,2012.0,5,10,2016,Ted,The Supermarket,tt1637725\nf5e73A39TF4,2012.0,4,10,2016,Ted,Job Interview,tt1637725\nIqfczS-tx_4,2012.0,3,10,2016,Ted,\"They're Hookers, So It's Fine\",tt1637725\nfoPh0pXXq-A,2012.0,2,10,2016,Ted,Thunder Buddies,tt1637725\ns9nYXJweTPU,2012.0,1,10,2016,Ted,A Young Boy's Wish,tt1637725\nA_ry95V0zNw,2007.0,12,12,2016,Teeth,Horny Old Man,tt0780622\nj2u3UksivgA,2007.0,11,12,2016,Teeth,Step-Sister Seduction,tt0780622\nPIAzmZ3FFy0,2007.0,10,12,2016,Teeth,A Bet Goes Bad,tt0780622\ngusrRGgXCJg,2007.0,9,12,2016,Teeth,The Hero Conqueror,tt0780622\n_ZIpnWucimQ,2007.0,7,12,2016,Teeth,OBGYN,tt0780622\nE9paF0XzmtA,2007.0,8,12,2016,Teeth,Champagne Seduction,tt0780622\nyTKHZcQlMP0,2007.0,5,12,2016,Teeth,No Means No,tt0780622\n6vtpmEd3SNk,2007.0,6,12,2016,Teeth,Vagina Dentata,tt0780622\n9WQnbIVJZjs,2007.0,4,12,2016,Teeth,Touched,tt0780622\nghtGcGtVtho,2007.0,1,12,2016,Teeth,The Promise,tt0780622\n1GvlSPJ37Hw,2007.0,3,12,2016,Teeth,Back Door Man,tt0780622\nFaWvQNVeDag,2007.0,2,12,2016,Teeth,Sex Ed,tt0780622\n0oHT-rtiFZk,2013.0,8,10,2016,The World's End,There's Only One Gary King,tt1213663\nPJYZAww0pgI,2013.0,10,10,2016,The World's End,To Err Is Human,tt1213663\nl9LOKUiY0Dg,2013.0,9,10,2016,The World's End,It's All I've Got,tt1213663\ngRBOrpdfsiM,2013.0,7,10,2016,The World's End,I Always Land on My Feet,tt1213663\nFhhbua6ELxo,2013.0,6,10,2016,The World's End,I Hate This Town!,tt1213663\nUOsM81pRVWo,2013.0,5,10,2016,The World's End,Fighting the Twins,tt1213663\ntYs7uguB_JQ,2013.0,3,10,2016,The World's End,The Bathroom Fight,tt1213663\nGtt2ibEe1NY,2013.0,4,10,2016,The World's End,One of Them or One of Them?,tt1213663\ndshmyllg2HE,2013.0,2,10,2016,The World's End,The Five Musketeers,tt1213663\n-JERO2LQSKc,2013.0,1,10,2016,The World's End,Unfinished Business,tt1213663\nJ4ciEVJMzIE,2014.0,10,10,2015,A Million Ways to Die in the West,You Really Do Have a Death Wish,tt2557490\nw3sv1-F1JeI,2014.0,9,10,2015,A Million Ways to Die in the West,He Drank the Whole Bowl!,tt2557490\nFHL1AJ0wbck,2014.0,8,10,2015,A Million Ways to Die in the West,Eddie's First Time,tt2557490\n4diIC2MRjiA,2014.0,7,10,2015,A Million Ways to Die in the West,Sh**ty Showdown,tt2557490\nARTwLLhQZHw,2014.0,5,10,2015,A Million Ways to Die in the West,If You've Only Got a Moustache,tt2557490\nDTZ1bgOIaAY,2014.0,6,10,2015,A Million Ways to Die in the West,Great Scott!,tt2557490\noTx_o5B0J1Q,2014.0,4,10,2015,A Million Ways to Die in the West,That's a Dollar Bill!,tt2557490\nk-m4QOtv-rQ,2014.0,3,10,2015,A Million Ways to Die in the West,Things Could Be a Lot Worse,tt2557490\nvRXk74BCp-Q,2014.0,2,10,2015,A Million Ways to Die in the West,Ways to Die,tt2557490\nwlwh5x9eHBM,2014.0,1,10,2015,A Million Ways to Die in the West,Eddie's Girl,tt2557490\njrhB_dBxc-8,2013.0,12,12,2015,Hell Baby,Cometh,tt2318527\nAjc5z4sg-O4,2013.0,11,12,2015,Hell Baby,Now We Wait,tt2318527\nGXnlDTh9sCU,2013.0,10,12,2015,Hell Baby,Puking Scene,tt2318527\nUAfx1pipLQg,2013.0,9,12,2015,Hell Baby,Stoned Seance,tt2318527\nAh5f0zWgfvQ,2013.0,8,12,2015,Hell Baby,Bullet-Sucking Nurses,tt2318527\nmL-M04A1D0g,2013.0,5,12,2015,Hell Baby,Badass Priests,tt2318527\nquaACkqyF3M,2013.0,3,12,2015,Hell Baby,Horny Demon,tt2318527\nvUTQexv1mzM,2013.0,7,12,2015,Hell Baby,Mmmm! Mmmm! Mmmm!,tt2318527\npbWOEIzQ_r4,2013.0,6,12,2015,Hell Baby,Demon Grandma?,tt2318527\nTPlxZPhOsQM,2013.0,1,12,2015,Hell Baby,Haunted New House,tt2318527\nFr-ilDHT3gM,2013.0,4,12,2015,Hell Baby,Tight Shorts,tt2318527\ncFjGykszgK0,2013.0,2,12,2015,Hell Baby,Shower Scene,tt2318527\nEBPZaYv0_AM,2013.0,10,10,2015,All Is Lost,When All is Lost,tt2017038\nZCphcTQguUY,2013.0,9,10,2015,All Is Lost,Burning the Raft,tt2017038\nG4WgfNcZgo4,2013.0,7,10,2015,All Is Lost,Help!,tt2017038\n5vecZ4JxUZU,2013.0,8,10,2015,All Is Lost,Sharks,tt2017038\nQOb4mg7oXO0,2013.0,6,10,2015,All Is Lost,Doomed,tt2017038\n9l_USfDRi2E,2013.0,5,10,2015,All Is Lost,A Sinking Ship,tt2017038\naq45c8eGVoA,2013.0,4,10,2015,All Is Lost,The Life Raft,tt2017038\nElFzH0wPql4,2013.0,2,10,2015,All Is Lost,Capsized,tt2017038\nJA9ZcCBGQ-M,2013.0,3,10,2015,All Is Lost,The Wave,tt2017038\nR4vRfIL-Cv4,2013.0,1,10,2015,All Is Lost,Knocked Overboard,tt2017038\nMUgLPMuwDfU,2009.0,12,12,2015,District 13: Ultimatum,Gangs United,tt1247640\nFtykdGuzX-4,2009.0,9,12,2015,District 13: Ultimatum,Breaking In,tt1247640\nAUBAs5rWsaY,2009.0,4,12,2015,District 13: Ultimatum,Rooftop Parkour,tt1247640\n0OdOZTw1sAo,2009.0,10,12,2015,District 13: Ultimatum,Tao vs. the Soldiers,tt1247640\nzqWR21AIFJA,2009.0,8,12,2015,District 13: Ultimatum,Let's Renovate,tt1247640\nUixHUUJXcSw,2009.0,11,12,2015,District 13: Ultimatum,By the Rules,tt1247640\nTMVem9xHaHY,2009.0,7,12,2015,District 13: Ultimatum,Police Station Fight,tt1247640\nS8XR0_wlYUA,2009.0,6,12,2015,District 13: Ultimatum,Prison Break,tt1247640\nxk3clsiBnRE,2009.0,5,12,2015,District 13: Ultimatum,Police Hotel,tt1247640\nN1GwJt7fEGI,2009.0,3,12,2015,District 13: Ultimatum,A Set-Up,tt1247640\n2hZFC6Q8zk0,2009.0,1,12,2015,District 13: Ultimatum,Van Gogh Fight,tt1247640\nJmlx4p_9MfA,2009.0,2,12,2015,District 13: Ultimatum,A Bomb Situation,tt1247640\nuCMat1QDt6k,1997.0,12,12,2015,Suicide Kings,Comeuppance,tt0120241\nud421fnpmYs,1997.0,11,12,2015,Suicide Kings,Drop the Gun,tt0120241\n-G_I8dQHN5s,1997.0,10,12,2015,Suicide Kings,Confession,tt0120241\nQHuTlVI2zgQ,1997.0,9,12,2015,Suicide Kings,Tell 'Em!,tt0120241\ngEhB7HuQk7M,1997.0,7,12,2015,Suicide Kings,The Widowmaker,tt0120241\nIBjOZQCPPXQ,1997.0,8,12,2015,Suicide Kings,Hounds of Hell,tt0120241\nJ0SN6An2yCg,1997.0,5,12,2015,Suicide Kings,Nixing Nick the Nose,tt0120241\nNHiG4hmxkjQ,1997.0,6,12,2015,Suicide Kings,Poker Face,tt0120241\ngrEV7MeCTsg,1997.0,3,12,2015,Suicide Kings,I Have to Pee,tt0120241\nGI8Vrbnwre4,1997.0,2,12,2015,Suicide Kings,Whose Blood?,tt0120241\nguWGxRXZbis,1997.0,4,12,2015,Suicide Kings,I Can't Let You Go,tt0120241\nUmpctrXzd1E,1997.0,1,12,2015,Suicide Kings,Botched Kidnapping,tt0120241\nSCiMcDcoi3E,2005.0,11,11,2015,Be Cool,Raji on Fire,tt0377471\nswo423cXQuE,2005.0,8,11,2015,Be Cool,Bring It On Monologue,tt0377471\n9k2nstrtUs0,2005.0,9,11,2015,Be Cool,Racial Epithets,tt0377471\n51euUliFZ-w,2005.0,10,11,2015,Be Cool,That's Not Gangsta,tt0377471\nHprI62nr3GI,2005.0,7,11,2015,Be Cool,Pawnshop Punch-Out,tt0377471\n2_pqFqYME68,2005.0,5,11,2015,Be Cool,\"Twinkle, Twinkle, Baby\",tt0377471\nDcfEOMgI_5o,2005.0,1,11,2015,Be Cool,\"The \"\"F\"\" Word Once\",tt0377471\nFwCOP-yKD5w,2005.0,4,11,2015,Be Cool,Plus the Vig,tt0377471\nJqa0bO9PSqI,2005.0,6,11,2015,Be Cool,Raji At Bat,tt0377471\n6qqJOQltyTY,2005.0,2,11,2015,Be Cool,The Raised Eyebrow Look,tt0377471\nYfof0ch3R7k,2005.0,3,11,2015,Be Cool,Sin's Spatula,tt0377471\nKXldzNF7Y4Q,2011.0,10,10,2015,Bridesmaids,Reckless Driving,tt1478338\ns9prJba2vkw,2011.0,9,10,2015,Bridesmaids,Pity Party,tt1478338\nILqwaOR70mU,2011.0,8,10,2015,Bridesmaids,Why Can't You Just Be Happy for Me?,tt1478338\nsf9038zMVgo,2011.0,6,10,2015,Bridesmaids,Ready to Partay,tt1478338\nPP9l4LP0WPI,2011.0,5,10,2015,Bridesmaids,Food Poisoning,tt1478338\nba5F8G778C0,2011.0,7,10,2015,Bridesmaids,Insulting Behavior,tt1478338\nlyQ1m8xbJW0,2011.0,4,10,2015,Bridesmaids,Mean Tennis,tt1478338\nqWsC4YHbOlw,2011.0,3,10,2015,Bridesmaids,Pulled Over,tt1478338\n7kihC0VFaQE,2011.0,2,10,2015,Bridesmaids,The Engagement Party,tt1478338\ng2iWVWVSb6Q,2011.0,1,10,2015,Bridesmaids,I Really Want You to Leave,tt1478338\nvOTtCjGqXYo,2012.0,10,10,2015,Pitch Perfect,The Finals,tt1981677\nzRFatzj_5do,2012.0,9,10,2015,Pitch Perfect,I've Got the Magic in Me,tt1981677\nKfUxknvLpwY,2012.0,7,10,2015,Pitch Perfect,Lesbi Honest,tt1981677\nwlFo4ydbP7c,2012.0,5,10,2015,Pitch Perfect,The Riff Off,tt1981677\ncKpV6Wb81Ak,2012.0,6,10,2015,Pitch Perfect,Bella Fight,tt1981677\njki2_TXdG_Q,2012.0,8,10,2015,Pitch Perfect,Just the Way You Are,tt1981677\nm5-bSlttk18,2012.0,4,10,2015,Pitch Perfect,I Have Nodes,tt1981677\neO1Jm4N4rlA,2012.0,2,10,2015,Pitch Perfect,Singing in the Shower,tt1981677\nIxi9imJZ40M,2012.0,3,10,2015,Pitch Perfect,The Cup Song,tt1981677\nsMWnN_9GiX0,2012.0,1,10,2015,Pitch Perfect,Fat Amy,tt1981677\n4nEpmBhIy1w,2014.0,10,11,2015,They Came Together,Molly's Wedding,tt2398249\nMpiqRi2JW4M,2014.0,11,11,2015,They Came Together,Give Me Another Chance,tt2398249\ndUi0j-vedRE,2014.0,9,11,2015,They Came Together,Three Holiday Parties,tt2398249\ncFvxjIsjwoc,2014.0,8,11,2015,They Came Together,The Break Up and Make Up,tt2398249\nlHNgUHi-WPM,2014.0,7,11,2015,They Came Together,Norah Jones Montage,tt2398249\nVkwwtlAGSwk,2014.0,6,11,2015,They Came Together,First Date,tt2398249\nsCG88QHentc,2014.0,5,11,2015,They Came Together,Coffee Date,tt2398249\nSqb85Gfj0Fw,2014.0,4,11,2015,They Came Together,Do You Want a Cup of Me?,tt2398249\njVGX-_Iodwc,2014.0,1,11,2015,They Came Together,How'd You Two Meet?,tt2398249\nzLKCXUGISSQ,2014.0,3,11,2015,They Came Together,Two Benjamin Franklins,tt2398249\nZEwg4041Q9M,2014.0,2,11,2015,They Came Together,Proposing to Tiffany,tt2398249\nQjLYqCsggvg,2004.0,9,10,2015,Walking Tall,Showdown at the Mill,tt0351977\nb60vt92AzKQ,2004.0,10,10,2015,Walking Tall,Forest Fight,tt0351977\n82dHCGddOSU,2004.0,8,10,2015,Walking Tall,Sheriff Station Shoot Out,tt0351977\ntr97dNKSBao,2004.0,7,10,2015,Walking Tall,Under Attack,tt0351977\nrqc2lyHj63A,2004.0,4,10,2015,Walking Tall,Trashing the Casino,tt0351977\nN_xWF7HBpJk,2004.0,3,10,2015,Walking Tall,A Helluva Homecoming,tt0351977\nvSLOINP7w0s,2004.0,6,10,2015,Walking Tall,Get Your Taillights Fixed,tt0351977\n613uBNehFWQ,2004.0,1,10,2015,Walking Tall,Loaded Dice,tt0351977\n1y1cthozBuc,2004.0,5,10,2015,Walking Tall,I'm Gonna Fix This Town,tt0351977\nPJ8v0jwQGXc,2004.0,2,10,2015,Walking Tall,\"Special Forces, Special Treatment\",tt0351977\nfRs243dwWkw,2010.0,4,5,2015,Machete,Motorcycle Gatling Guns,tt0985694\nyP5TAs29e0U,2010.0,3,5,2015,Machete,'s Army,tt0985694\nbR4b3meiMlw,2010.0,1,5,2015,Machete,A Gutsy Jump,tt0985694\nFJv4vY954UU,2010.0,2,5,2015,Machete,\"God Has Mercy, I Don't\",tt0985694\noMWqB05lpRU,2010.0,3,3,2015,Knight and Day,The Running of the Bulls,tt1013743\nxSVasSOEG28,2010.0,2,3,2015,Knight and Day,How Did I Get in the Bikini?,tt1013743\n8wUtvaL4G9s,2010.0,1,3,2015,Knight and Day,Factory Shootout,tt1013743\nARoB1nWPsxo,2009.0,2,5,2015,(500) Days of Summer,Playing House,tt1022603\nbBLKvPSgQ2A,2009.0,5,5,2015,(500) Days of Summer,All That True Love Nonsense,tt1022603\n-fL94BTrFhs,2009.0,4,5,2015,(500) Days of Summer,Expectations vs. Reality,tt1022603\n4rGia6hIWmk,2009.0,3,5,2015,(500) Days of Summer,I Love Us,tt1022603\nDomJHvbM7qE,2009.0,1,5,2015,(500) Days of Summer,Copy Room Kiss,tt1022603\nj-dYZPMpoqI,2003.0,10,10,2015,The Rundown,You Got the Moves,tt0327850\nbq_WJS_HlPc,2003.0,9,10,2015,The Rundown,Boom Shakalaka!,tt0327850\nWJXF9gcUcNU,2003.0,7,10,2015,The Rundown,Spinning Tarzan Jiu Jitsu,tt0327850\nW_Piq1uGGfs,2003.0,8,10,2015,The Rundown,Recovering El Gato,tt0327850\nVdYPqVZIB9M,2003.0,6,10,2015,The Rundown,Establish Dominance,tt0327850\n25yR3OUlVbI,2003.0,4,10,2015,The Rundown,A Very Unpleasant Individual,tt0327850\njKyhNbLEKxY,2003.0,3,10,2015,The Rundown,Enjoy the Fall,tt0327850\nqoxMZtAmAiI,2003.0,5,10,2015,The Rundown,The Tooth Fairy,tt0327850\n23v-gPJiaZs,2003.0,2,10,2015,The Rundown,Don't Rock the Boat,tt0327850\nDkMA0rGCU3s,2003.0,1,10,2015,The Rundown,Wrong Choice,tt0327850\n8qyhhOM76Rg,2010.0,5,5,2015,Black Swan,Dance of the White Swan Scene,tt0947798\niOaD5cZNw0E,2010.0,4,5,2015,Black Swan,She's Trying to Replace Me Scene,tt0947798\ndwD4JZsAuew,2010.0,2,5,2015,Black Swan,Attack It! Scene,tt0947798\n-XCvw6NPfVM,2010.0,3,5,2015,Black Swan,Let It Go Scene,tt0947798\n6KqG8CYcMKk,2010.0,3,3,2015,127 Hours,Radio Show Breakdown,tt1542344\nqDFzVZklg1Q,2010.0,2,3,2015,127 Hours,Flash Flood Escape,tt1542344\nKd-81VRVQXw,2010.0,1,5,2015,Black Swan,Nightmarish Dance Scene,tt0947798\nMgFF-JBCHUg,2010.0,1,3,2015,Trapped,127 Hours,tt1538819\nMoOwbXap6LM,2008.0,5,5,2015,Horton Hears a Who!,We Are Here!,tt0451079\n8eC08uGwWiw,2008.0,4,5,2015,Horton Hears a Who!,\"A Person Is a Person, No Matter How Small\",tt0451079\nvP8C80lIRt0,2008.0,3,5,2015,Horton Hears a Who!,The Greatest Hero of Them All,tt0451079\n7FkWC2S0MfY,2008.0,1,5,2015,Horton Hears a Who!,The Mayor of Whoville,tt0451079\nInIEECDCSYU,2008.0,2,5,2015,Horton Hears a Who!,I'm Holding the Speck,tt0451079\nE_RNZFm1mls,1989.0,2,11,2015,Road House,Pain Don't Hurt,tt0098206\nuCZStp0Z_xg,1989.0,11,11,2015,Road House,This Is Our Town,tt0098206\nc0JxgKT4jZc,1989.0,10,11,2015,Road House,Made for Each Other,tt0098206\nNGhqTwxz4eQ,1989.0,8,11,2015,Road House,The Old-Fashioned Way,tt0098206\n2KvZqLVSL9c,1989.0,9,11,2015,Road House,Find That Prick!,tt0098206\nxuLi1MdUKQw,1989.0,7,11,2015,Road House,Prepare to Die!,tt0098206\njDMfIPRm7jY,1989.0,5,11,2015,Road House,Monster Truck,tt0098206\n7aW8QnLYxY4,1989.0,6,11,2015,Road House,\"I Love You, Mijo\",tt0098206\nSeKVwumCmBE,1989.0,3,11,2015,Road House,You're Too Stupid to Have a Good Time,tt0098206\n6ZGvkZAP4lY,1989.0,4,11,2015,Road House,The Double Deuce,tt0098206\n-QJsljIDKkk,1989.0,1,11,2015,Road House,Three Simple Rules,tt0098206\ndGmuICb8a7Y,1957.0,11,11,2015,Paths of Glory,The Faithful Hussar,tt0050825\nUHPq25mUJwk,1957.0,9,11,2015,Paths of Glory,Your Men Died Very Well,tt0050825\nVICyZk-XSLA,1957.0,10,11,2015,Paths of Glory,I Pity You,tt0050825\n75UHGiJjNuw,1957.0,6,11,2015,Paths of Glory,They're Going to Kill Us,tt0050825\nG2mYFXmFQPw,1957.0,7,11,2015,Paths of Glory,Maintaining Discipline,tt0050825\n0niEZsahtEo,1957.0,8,11,2015,Paths of Glory,The Execution,tt0050825\nVkUKAtzE0r0,1957.0,3,11,2015,Paths of Glory,Charging the Ant Hill,tt0050825\nUqLq7sMS2sU,1957.0,2,11,2015,Paths of Glory,We'll Take the Ant Hill,tt0050825\nAApQkNSViGg,1957.0,5,11,2015,Paths of Glory,Closing Argument,tt0050825\nG7Mvs5Ic8us,1957.0,4,11,2015,Paths of Glory,A Controversial Order,tt0050825\nPU4PQ3OJn58,1957.0,1,11,2015,Paths of Glory,A Stroll Through the Trenches,tt0050825\nYPZqfRINveI,1988.0,10,11,2015,Mystic Pizza,Pizza Connoisseurs,tt0095690\nFIyHh9pO464,1988.0,11,11,2015,Mystic Pizza,'s Superb Review,tt0095690\nikqDLmNc678,1988.0,7,11,2015,Mystic Pizza,Porsche Full of Fish,tt0095690\nHhFqWgJrtb0,1988.0,8,11,2015,Mystic Pizza,All You Love is my Dick,tt0095690\n8mmqyI9CVWI,1988.0,9,11,2015,Mystic Pizza,Wipe Your Conscience,tt0095690\nSAWm5lLfGZ0,1988.0,6,11,2015,Mystic Pizza,Caught With His Pants Down,tt0095690\nkQI3S3inEXg,1988.0,5,11,2015,Mystic Pizza,Follow the Bread Crumbs,tt0095690\nLSlXOh60wk0,1988.0,3,11,2015,Mystic Pizza,Hitching a Ride,tt0095690\nJwgvbLF28fE,1988.0,2,11,2015,Mystic Pizza,A Shooting Star,tt0095690\nFaLsWjMiIrI,1988.0,4,11,2015,Mystic Pizza,Don't Monkey With Tradition,tt0095690\nWLqx522tlYU,1988.0,1,11,2015,Mystic Pizza,Wedding Blackout,tt0095690\nTdT_PiRLsaI,1986.0,12,12,2015,Hoosiers,Jimmy's Final Shot,tt0091217\nAo50y1xdfW8,1986.0,11,12,2015,Hoosiers,David and Goliath,tt0091217\n_gEt3iNmLyw,1986.0,9,12,2015,Hoosiers,Ollie Sinks His Free Throws,tt0091217\niE9CEAzLPKg,1986.0,10,12,2015,Hoosiers,Measuring the Massive Gym,tt0091217\nC2ILSuQOmEg,1986.0,7,12,2015,Hoosiers,Shooter Runs the Picket Fence,tt0091217\nX-HeG5tFKUo,1986.0,8,12,2015,Hoosiers,God Wants You on the Floor,tt0091217\nzFaEUnrsjL4,1986.0,6,12,2015,Hoosiers,\"I Play, Coach Stays\",tt0091217\n676TpKq_6Ok,1986.0,3,12,2015,Hoosiers,Benching Rade on Principle,tt0091217\nz1F9D6LVTkA,1986.0,5,12,2015,Hoosiers,Coach Offers Shooter a Job,tt0091217\nWUujUq9VHVs,1986.0,2,12,2015,Hoosiers,Coach Meets His Team,tt0091217\nl1jCg_FmQmQ,1986.0,4,12,2015,Hoosiers,Coach's Word Is Law,tt0091217\nDo7U7AkA5jA,1986.0,1,12,2015,Hoosiers,Your Coaching Days Are Over,tt0091217\nx1-axqBZdNk,1993.0,10,10,2015,Falling Down,Fore!,tt0106856\nhlzm7-gvTRg,1993.0,6,10,2015,Falling Down,The Customer is Always Right,tt0106856\n9OhIdDNtSv0,1993.0,9,10,2015,Falling Down,Under Construction,tt0106856\n0jSVwZ8w3C4,1993.0,8,10,2015,Falling Down,Nazi Surplus Store,tt0106856\nyooamJf-T_8,1993.0,7,10,2015,Falling Down,Out of Order,tt0106856\npZfva5xDNLU,1993.0,5,10,2015,Falling Down,You Missed,tt0106856\n1iWqn89nvJs,1993.0,4,10,2015,Falling Down,Drive-By Shooting,tt0106856\n-UZY16_K3Pw,1993.0,3,10,2015,Falling Down,Mr. Lee,tt0106856\nhlKMLkrSrDo,1993.0,2,10,2015,Falling Down,Gangland,tt0106856\nZ4tC4qfv92Q,1993.0,1,10,2015,Falling Down,Consumer Rights,tt0106856\ndy9fKXNAhA0,1955.0,9,10,2015,East of Eden,Jealous All My Life,tt0048028\nRo_k0jgMvKU,1955.0,10,10,2015,East of Eden,You Stay With Me,tt0048028\nVfOrY7CidTA,1955.0,7,10,2015,East of Eden,Give Me a Good Life,tt0048028\nf2SskRLd4F4,1955.0,8,10,2015,East of Eden,Say Hello to Your Mother,tt0048028\nI3hVaKO5olI,1955.0,6,10,2015,East of Eden,Not Sorry Enough,tt0048028\ngw_zwDaiuJs,1955.0,5,10,2015,East of Eden,Ferris Wheel Kiss,tt0048028\ndG6C9JuB4YA,1955.0,4,10,2015,East of Eden,Nobody Holds Me,tt0048028\nud1tMFmSp2I,1955.0,3,10,2015,East of Eden,\"Spark Up, Gas Down\",tt0048028\nZ6_Ti4ntV7g,1955.0,2,10,2015,East of Eden,Get Him Out of Here,tt0048028\nWpO_eNT9StE,1955.0,1,10,2015,East of Eden,\"Talk to Me, Father\",tt0048028\n2EKDKks9qtA,1965.0,9,10,2015,Doctor Zhivago,Somewhere My Love,tt0059113\nzvA-7VuKQCU,1965.0,10,10,2015,Doctor Zhivago,Zhivago's Last Moments,tt0059113\nP4kQvkvGi9M,1965.0,3,10,2015,Doctor Zhivago,Stick Together,tt0059113\n4ipKK450XwM,1965.0,7,10,2015,Doctor Zhivago,Reunited,tt0059113\nTrwIvCFIMZA,1965.0,8,10,2015,Doctor Zhivago,Lovely to Have Met Before,tt0059113\nozpct8zUA_U,1965.0,6,10,2015,Doctor Zhivago,The Private Life is Dead,tt0059113\nrzs0681gdf0,1965.0,5,10,2015,Doctor Zhivago,The Train Jumper,tt0059113\neYMbAHC6RxU,1965.0,4,10,2015,Doctor Zhivago,No Lies,tt0059113\nj-v6XtJFNQE,1965.0,2,10,2015,Doctor Zhivago,The Christmas Party,tt0059113\nxvQLAg16ZD0,1965.0,1,10,2015,Doctor Zhivago,Peaceful Protest,tt0059113\nGQmt9W6Ky7U,2001.0,9,11,2015,Legally Blonde,\"The \"\"Bend & Snap\"\"\",tt0250494\nGSu7BGbyJqc,2001.0,11,11,2015,Legally Blonde,Elle Wins!,tt0250494\n8rNVaY7Stt4,2001.0,6,11,2015,Legally Blonde,\"I'm Taking the Dog, Dumbass\",tt0250494\nI6uGId-a758,2001.0,10,11,2015,Legally Blonde,He's Gay!,tt0250494\nHZtQl0lF3OE,2001.0,8,11,2015,Legally Blonde,Awarded an Internship,tt0250494\nxs3_hNYAVRw,2001.0,7,11,2015,Legally Blonde,Impressing Professor Callahan,tt0250494\ngwY85_MC_AY,2001.0,5,11,2015,Legally Blonde,Kicked Out of Class,tt0250494\nEVmLV7swH2k,2001.0,2,11,2015,Legally Blonde,I'm Going to Harvard,tt0250494\nrLcAQVgMTSY,2001.0,4,11,2015,Legally Blonde,First Day of School,tt0250494\nIrDm-HzK2y8,2001.0,3,11,2015,Legally Blonde,Harvard Video Essay,tt0250494\nyfy4and2vPg,2001.0,1,11,2015,Legally Blonde,Warner Breaks Up With Elle,tt0250494\n5HksV7ZFuhM,2006.0,11,11,2015,Rocky Balboa,The Last Round,tt0479143\nTuTOzEYtgzQ,2006.0,8,11,2015,Rocky Balboa,Training Montage,tt0479143\nyg6v5Ur4pcM,2006.0,10,11,2015,Rocky Balboa,The Final Fight,tt0479143\nQrmQqEg4isU,2006.0,7,11,2015,Rocky Balboa,How Winning is Done,tt0479143\nCkqAe9DL56w,2006.0,9,11,2015,Rocky Balboa,It Ain't Over 'Til It's Over,tt0479143\nENRq7P9lAtg,2006.0,6,11,2015,Rocky Balboa,I'm the Champ,tt0479143\nZR2txV7X8sE,2006.0,2,11,2015,Rocky Balboa,The ESPN Simulation,tt0479143\nXXk8J83A25A,2006.0,5,11,2015,Rocky Balboa,Fighters Fight,tt0479143\nwTk1noW_8Lo,2006.0,1,11,2015,Rocky Balboa,Defending Marie,tt0479143\nEt_Bdct1T0U,2006.0,3,11,2015,Rocky Balboa,The Beast Inside,tt0479143\n6CxSbcM0vw4,2006.0,4,11,2015,Rocky Balboa,No Right to Deny Happiness,tt0479143\nSLn4BL4gP_w,1995.0,12,12,2015,Home for the Holidays,Two Hours With a Beautiful Woman,tt0113321\n3iJMdVAsPpc,1995.0,10,12,2015,Home for the Holidays,Leo Loves Claudia,tt0113321\nvOaX_Naqxb8,1995.0,8,12,2015,Home for the Holidays,Disastrous Dinner,tt0113321\nXVYzO4IEKro,1995.0,9,12,2015,Home for the Holidays,Thanksgiving Torture,tt0113321\n5AZ2yDKNEXM,1995.0,11,12,2015,Home for the Holidays,\"Par, Par, Bogey, Bogey\",tt0113321\nCl-BpGO92Lo,1995.0,7,12,2015,Home for the Holidays,Aunt Gladys' Confession,tt0113321\n7rI4qKw_X5g,1995.0,3,12,2015,Home for the Holidays,Ginny Johnson Drewer,tt0113321\nRQV-8HxVB44,1995.0,4,12,2015,Home for the Holidays,Kooky Aunt Gladys,tt0113321\nJOD_65vh8GI,1995.0,5,12,2015,Home for the Holidays,Sad Russell,tt0113321\nkIrQoHQzxnY,1995.0,6,12,2015,Home for the Holidays,Tyrannosaurus Tommy,tt0113321\nHrztxo5t4Ic,1995.0,2,12,2015,Home for the Holidays,Claudia's Pitiful Message,tt0113321\n032myLDgIqw,1995.0,1,12,2015,Home for the Holidays,Claudia is Fired,tt0113321\npf1K2ACmGKY,2003.0,9,12,2015,Pieces of April,What Love Does,tt0311648\nCE8HyH5ldEY,2003.0,8,12,2015,Pieces of April,Tick-Tock Turkey,tt0311648\n9RfC79nFT3U,2003.0,7,12,2015,Pieces of April,Smack Daddy,tt0311648\nSCcBom6117E,2003.0,4,12,2015,Pieces of April,White Girl Problems,tt0311648\nn7mNY2F938Y,2003.0,5,12,2015,Pieces of April,Mi Casa es Su Casa,tt0311648\n-BuN5efFTXA,2003.0,6,12,2015,Pieces of April,Joy's Fake Out,tt0311648\ndxMTCKAWIJg,2003.0,3,12,2015,Pieces of April,Braced for Disaster,tt0311648\n-_HF-nKeabs,2003.0,2,12,2015,Pieces of April,Salt and Pepper,tt0311648\nRuPWLi5ifL0,2003.0,1,12,2015,Pieces of April,Here I Come,tt0311648\nya84jIkf3b4,2003.0,12,12,2015,Pieces of April,They're Here!,tt0311648\n5s5GkWkrX5Q,2003.0,10,12,2015,Pieces of April,Nice April Memories,tt0311648\not3mRlgseio,2003.0,11,12,2015,Pieces of April,Thanksgiving,tt0311648\nkfJINAKOgEY,2013.0,8,10,2015,Ender's Game,Game Over,tt1731141\nqwMUlFU1Db4,2013.0,9,10,2015,Ender's Game,What Do You Mean We Won?,tt1731141\n6RVyL8lNtj4,2013.0,7,10,2015,Ender's Game,The Final Battle,tt1731141\nDSmDEMdKauI,2013.0,6,10,2015,Ender's Game,Battle Simulations,tt1731141\nM6rf7s7NXnc,2013.0,5,10,2015,Ender's Game,Mazer Rackham's Story,tt1731141\n3E9TWmE3dfI,2013.0,2,10,2015,Ender's Game,The Battle Room,tt1731141\n2NPSwpdx6iQ,2013.0,3,10,2015,Ender's Game,Ender Battles Two Armies,tt1731141\n79kT7fUtLD0,2013.0,4,10,2015,Ender's Game,I Quit,tt1731141\noDRFKZVZwcA,2013.0,1,10,2015,Ender's Game,The Mind Game,tt1731141\nXPcqVHZo22M,2013.0,10,10,2015,Ender's Game,The Hive Queen,tt1731141\nQd4hB_s-GzA,2013.0,9,11,2015,Now You See Me,Goodbye New York,tt1670345\nIs4mo3dbWvs,2013.0,8,11,2015,Now You See Me,The Car Chase,tt1670345\nVx9EOI4RyBs,2013.0,4,11,2015,Now You See Me,Robbing the Bank,tt1670345\n8cLtNUD4Hcw,2013.0,6,11,2015,Now You See Me,Robbing Tressler,tt1670345\nkJzOYZNQv6M,2013.0,7,11,2015,Now You See Me,Jack Fights Rhoades,tt1670345\nGSQpio_F0Vc,2013.0,3,11,2015,Now You See Me,Nothing is Ever Locked,tt1670345\nAQX2Q-V2Uh8,2013.0,5,11,2015,Now You See Me,Mentalist Interrogation,tt1670345\n2bpkd6hwH6U,2013.0,2,11,2015,Now You See Me,The Piranha Tank,tt1670345\nh4u9pO-98ZM,2013.0,11,11,2015,Now You See Me,Welcome to the Eye,tt1670345\naJ67Fz1Jf6E,2013.0,1,11,2015,Now You See Me,The Closer You Look the Less You See,tt1670345\nHraqSpgcdgM,2013.0,10,11,2015,Now You See Me,Someone on the Inside,tt1670345\nib-1a-0LHh0,2014.0,7,10,2015,\"I, Frankenstein\",A Living Miracle,tt1418377\nqNoGZiSKCaY,2013.0,3,10,2015,Texas Chainsaw,Meeting Leatherface,tt1572315\nfZNPbMu2Ge0,2013.0,6,9,2015,Warm Bodies,I Came to See You,tt1588173\nW_hzD9mTSpc,2014.0,9,10,2015,\"I, Frankenstein\",God Will Surely Damn You,tt1418377\nx2lBq3c3AIY,2013.0,9,9,2015,Warm Bodies,You're Alive,tt1588173\njpIVQIuoX1g,2013.0,8,9,2015,Warm Bodies,Ready for a Fight,tt1588173\nrYVsdfE_Wh8,2013.0,7,9,2015,Warm Bodies,You're a Corpse,tt1588173\nNdcXHqLPufg,2013.0,3,9,2015,Warm Bodies,We Eat the Living,tt1588173\nZS5K9DzFIco,2013.0,2,9,2015,Warm Bodies,Play Dead,tt1588173\nYAcZjKbm2tk,2013.0,4,9,2015,Warm Bodies,I Ate Your Boyfriend,tt1588173\n4zT1vWidAJ0,2013.0,5,9,2015,Warm Bodies,We're Changing,tt1588173\nZD5vHtlpl3Q,2013.0,1,9,2015,Warm Bodies,Saved by a Zombie,tt1588173\nRTnR82EswKE,2013.0,8,10,2015,The Last Stand,Cornfield Chase,tt1549920\nbDm5fnJ1Hg0,2013.0,9,10,2015,The Last Stand,Game On,tt1549920\nc2HEnbmtknM,2013.0,5,10,2015,The Last Stand,Welcome to Sommerton,tt1549920\nFhnVceTIOTw,2013.0,6,10,2015,The Last Stand,Put the Hurt on Them,tt1549920\n_jru7QsVP2Q,2013.0,7,10,2015,The Last Stand,I'm the Sheriff,tt1549920\nHxdxfEN2v9s,2013.0,4,10,2015,The Last Stand,Kill the Lights,tt1549920\nD9SLyzcYXw8,2013.0,10,10,2015,The Last Stand,You Are Under Arrest,tt1549920\nfYb0fQOH11g,2013.0,3,10,2015,The Last Stand,The Roadblock,tt1549920\nryRzxiWudaA,2013.0,2,10,2015,The Last Stand,Cortez Escapes,tt1549920\n1Yh8ZXaDY00,2013.0,1,10,2015,The Last Stand,She Has a Little Kick,tt1549920\nVEc6d81jgQ0,2013.0,9,10,2015,Texas Chainsaw,Last Kill,tt1572315\nrGDHR_rveJc,2013.0,8,10,2015,Texas Chainsaw,I'm Your Cousin!,tt1572315\n02uIi7094E8,2013.0,5,10,2015,Texas Chainsaw,Leatherface vs. Van,tt1572315\nI2qyEk67i4Y,2013.0,2,10,2015,Texas Chainsaw,What's in the Basement?,tt1572315\nv_wQqiFXgkY,2013.0,1,10,2015,Texas Chainsaw,Texas Shootout Massacre,tt1572315\n6nTk0X-QW_0,2014.0,2,10,2015,\"I, Frankenstein\",I Hunted Those Who Hunted Me,tt1418377\ncHRpQP_dp8Y,2014.0,4,10,2015,\"I, Frankenstein\",I Don't See a Soul,tt1418377\nrbYJ1-y-sk8,2014.0,3,10,2015,\"I, Frankenstein\",Naberius' Experiment,tt1418377\nH9PhEc4cgVw,2014.0,10,10,2015,\"I, Frankenstein\",I Am Not Your Son,tt1418377\ni7Bx0--TioI,2013.0,4,10,2015,Texas Chainsaw,A Grave Problem,tt1572315\nFm4WFtwxJ9g,2013.0,6,10,2015,Texas Chainsaw,Carnival Chase,tt1572315\n0ROOrIJuhJw,2013.0,7,10,2015,Texas Chainsaw,Shocking Discoveries,tt1572315\n6F-zsgYCXwQ,2013.0,10,10,2015,Texas Chainsaw,He Will Protect You,tt1572315\nFX4J_vERu9I,2014.0,5,10,2015,\"I, Frankenstein\",The Fight for Adam,tt1418377\neXGYvqetC18,2014.0,1,10,2015,\"I, Frankenstein\",The Rumor Is True,tt1418377\nWJs5SraEnMM,2014.0,6,10,2015,\"I, Frankenstein\",Rescue of Leonore,tt1418377\nK8IgSndDsjs,2014.0,8,10,2015,\"I, Frankenstein\",This Ends Tonight,tt1418377\nhQD_fanPkns,2011.0,5,5,2015,Diary of a Wimpy Kid: Rodrick Rules,Loded Diper Scene,tt1650043\nZ5nYySfvSi0,2011.0,3,5,2015,Diary of a Wimpy Kid: Rodrick Rules,In the Ladies' Room Scene,tt1650043\n2tVvgJbqH7U,2011.0,2,5,2015,Diary of a Wimpy Kid: Rodrick Rules,Did Somebody Say Dance? Scene,tt1650043\nTKkrgiTpj1c,2011.0,1,5,2015,Diary of a Wimpy Kid: Rodrick Rules,Poopy Pants Scene,tt1650043\n_kyTyYh6LZ0,2011.0,4,5,2015,Diary of a Wimpy Kid: Rodrick Rules,The Remarkable Rowley Scene,tt1650043\nWhWW2IXg_-E,2014.0,10,10,2015,Ride Along,I Got Shot!,tt1408253\nbb9m4vvEkHc,2014.0,9,10,2015,Ride Along,This Ain't No Damn Video Game!,tt1408253\nJ0uhG-I0GZ4,2014.0,8,10,2015,Ride Along,I'm Crazy!,tt1408253\nB3ECx3J3LTQ,2014.0,6,10,2015,Ride Along,Crazy Cody,tt1408253\nF2Bw4OLZHq8,2014.0,7,10,2015,Ride Along,Save the Strippers,tt1408253\nhnCQCX3AHzY,2014.0,4,10,2015,Ride Along,I'm the Definition of Tough,tt1408253\n_NVC5g_Yngg,2014.0,5,10,2015,Ride Along,The Shooting Range,tt1408253\n35D2hJCrDVw,2014.0,2,10,2015,Ride Along,You Got No Legs,tt1408253\nA0R1F_FhwRg,2014.0,3,10,2015,Ride Along,A Hostile Situation,tt1408253\nBzEjGy7EPIc,2014.0,1,10,2015,Ride Along,The Future Mrs. Blackhammer,tt1408253\nlX4H0NmDMck,2015.0,10,10,2015,Pitch Perfect 2,The Bellas' Final Performance,tt2848292\nrSCm0viS2mM,2015.0,9,10,2015,Pitch Perfect 2,I'm Solo-ing Here!,tt2848292\npCQ0k_WvwvQ,2015.0,7,10,2015,Pitch Perfect 2,Death-Defying Team Building,tt2848292\ndLXri8sYr6Q,2015.0,8,10,2015,Pitch Perfect 2,When I'm Gone,tt2848292\n5EFY3vpKDII,2015.0,6,10,2015,Pitch Perfect 2,The Butts Riff-Off,tt2848292\nlssQ4w2V4XM,2015.0,3,10,2015,Pitch Perfect 2,Das Sound Machine,tt2848292\nU7xQuGf5QHA,2015.0,1,10,2015,Pitch Perfect 2,We Have a Commando Situation,tt2848292\nMCFqMGgv1YY,2015.0,5,10,2015,Pitch Perfect 2,Groovy Like a Drive-In Movie,tt2848292\nC_BolURdHXo,2015.0,4,10,2015,Pitch Perfect 2,Your Team is Like a Heated Mess,tt2848292\n2wdQcUUgce0,2015.0,2,10,2015,Pitch Perfect 2,Oh Em Aca Gee,tt2848292\nsXHsY1eoIzA,2015.0,9,10,2015,Jurassic World,T-Rex vs. Indominus Scene,tt0369610\noPS8-oRvVh4,2015.0,10,10,2015,Jurassic World,Dinosaur Alliance Scene,tt0369610\n0FkeGnobtfo,2015.0,8,10,2015,Jurassic World,Raptors vs. Indominus Scene,tt0369610\nWqFEn5wQhBI,2015.0,7,10,2015,Jurassic World,The Raptors Are Coming Scene,tt0369610\nd0x7-oo9NAk,2015.0,5,10,2015,Jurassic World,Raptor Recon Scene,tt0369610\nLBTE3aH5gpw,2015.0,4,10,2015,Jurassic World,Pterosaur Attack Scene,tt0369610\n5ywvhn6Y4aE,2015.0,3,10,2015,Jurassic World,Indominus Attacks the Gyrosphere Scene,tt0369610\nzGzurjIEhNA,2015.0,6,10,2015,Jurassic World,The New Alpha Scene,tt0369610\nOjxcWhQYMKw,2015.0,2,10,2015,Jurassic World,It's In There With You Scene,tt0369610\nQ3znhTOUqi8,2015.0,1,10,2015,Jurassic World,Stand Down Scene,tt0369610\n5KnFcsSIzbg,2015.0,10,10,2015,Furious 7,The Last Ride,tt2820852\n2bWostOI7uo,2015.0,9,10,2015,Furious 7,Don't Miss,tt2820852\nbjqsWtO5Xjg,2015.0,7,10,2015,Furious 7,I Am the Cavalry,tt2820852\npQeZSHyCe4Q,2015.0,8,10,2015,Furious 7,The Street Always Wins,tt2820852\nFf_G9EYI1xY,2015.0,6,10,2015,Furious 7,Too Slow!,tt2820852\nJVg5X7dUlLM,2015.0,5,10,2015,Furious 7,Cars Don't Fly,tt2820852\nUCYjKqnTM_U,2015.0,3,10,2015,Furious 7,On the Edge,tt2820852\n2uRRExAY-8g,2015.0,4,10,2015,Furious 7,Letty vs. Kara,tt2820852\n0Wt72bHrHFo,2015.0,2,10,2015,Furious 7,Rescuing Ramsey,tt2820852\n1XqI8Lyp21A,2015.0,1,10,2015,Furious 7,Hobbs vs. Shaw,tt2820852\nAap_UtTuzYs,2014.0,10,10,2015,The Theory of Everything,Look What We Made,tt2980516\nKLp6N46er6Y,2014.0,9,10,2015,The Theory of Everything,\"While There is Life, There is Hope\",tt2980516\nEK9aDAUBBhE,2014.0,8,10,2015,The Theory of Everything,I Have Loved You,tt2980516\n28MSXeKCm00,2014.0,7,10,2015,The Theory of Everything,Welcome to the Future,tt2980516\n_r-SkfDZphk,2014.0,4,10,2015,The Theory of Everything,\"No Boundaries, No Beginning and No God\",tt2980516\npU3klLr1CPA,2014.0,6,10,2015,The Theory of Everything,The Spelling Board,tt2980516\nq6XF66xysgQ,2014.0,5,10,2015,The Theory of Everything,Stephen Must Live,tt2980516\n62tZR_Z_y08,2014.0,2,10,2015,The Theory of Everything,It's Called Motor Neurone Disease,tt2980516\n8kaJJGWYXxs,2014.0,1,10,2015,The Theory of Everything,The Black Hole Thesis,tt2980516\nxG4b0-DSLrI,2014.0,3,10,2015,The Theory of Everything,An Extraordinary Theory,tt2980516\nvCo2uqlAi4s,1971.0,6,7,2015,Diamonds Are Forever,Bambi and Thumper,tt0066995\ni2MdefwrjCQ,1971.0,7,7,2015,Diamonds Are Forever,Your Problems Are Behind You,tt0066995\nFVqRqUIDG-A,1971.0,4,7,2015,Diamonds Are Forever,Moon Buggy Chase,tt0066995\nUyzhnEqtWAc,1971.0,3,7,2015,Diamonds Are Forever,A Winner Every Time,tt0066995\nJGyNRQzR_Vg,1983.0,10,10,2015,Never Say Never Again,Never?,tt0086006\nqraA12BrzVo,1971.0,5,7,2015,Diamonds Are Forever,Two Blofelds,tt0066995\nX33UjqGVc18,1971.0,2,7,2015,Diamonds Are Forever,Slumber Inc.,tt0066995\nm1AuOoDw25g,1983.0,9,10,2015,Never Say Never Again,Horse Jump,tt0086006\nwLPEeDsZwGs,1971.0,1,7,2015,Diamonds Are Forever,Tiffany Case,tt0066995\nJghXTjexZpE,1983.0,8,10,2015,Never Say Never Again,I'm Going to Kiss You,tt0086006\n8RlDsORXN7c,1983.0,6,10,2015,Never Say Never Again,Motorcycle Chase,tt0086006\nnuVfizTRHZs,1983.0,7,10,2015,Never Say Never Again,A Superior Woman,tt0086006\nwUT5CpgYXMM,1983.0,5,10,2015,Never Say Never Again,The Domination Game,tt0086006\nCCwUD5fwJwc,1983.0,4,10,2015,Never Say Never Again,Shark Attack,tt0086006\nrF2GB1UYxtw,1983.0,3,10,2015,Never Say Never Again,Fatima Blush,tt0086006\nqH3jaW3YJ9o,1983.0,2,10,2015,Never Say Never Again,Gratuitous Sex and Violence,tt0086006\nF5gztKbIoaY,1983.0,1,10,2015,Never Say Never Again,Weight Room Fight,tt0086006\niKqEJ2xeATo,1967.0,10,10,2015,You Only Live Twice,May I Smoke?,tt0062512\ndp5dgNKh77M,1967.0,7,10,2015,You Only Live Twice,Helicopter Dogfight,tt0062512\n0ay2sO6tWbE,1967.0,9,10,2015,You Only Live Twice,I Am Blofeld,tt0062512\n-Cc7j0yr2BY,1967.0,6,10,2015,You Only Live Twice,Little Nellie,tt0062512\nVVLlZy4m23c,1967.0,8,10,2015,You Only Live Twice,Bedroom Assassin,tt0062512\nGaGIb91Mi2w,1967.0,3,10,2015,You Only Live Twice,Just a Drop In the Ocean,tt0062512\nf5wOz-3L1jQ,1967.0,4,10,2015,You Only Live Twice,Shipyard Skirmish,tt0062512\nIBqY6eBSQZw,1967.0,5,10,2015,You Only Live Twice,Sorry to Leave You,tt0062512\nPtlmPi0DXws,1967.0,2,10,2015,You Only Live Twice,A Civilized Bath,tt0062512\nuIQL79UQG40,1967.0,1,10,2015,You Only Live Twice,Good Evening,tt0062512\nyJlbyxOHrdI,2002.0,10,10,2015,Die Another Day,My Dreams Can Kill You,tt0246460\nP3CF3QER_h4,2002.0,9,10,2015,Die Another Day,Tsunami Surfing,tt0246460\noNGZFJUThHY,2002.0,7,10,2015,Die Another Day,Laser Fight,tt0246460\nDvoPZUYUdEM,2002.0,8,10,2015,Die Another Day,Looks Can Be Deceptive,tt0246460\nGhTOt1_Miag,2002.0,6,10,2015,Die Another Day,The Icarus Project,tt0246460\nY6SIARg-j5c,2002.0,1,10,2015,Die Another Day,Hovercraft Chase,tt0246460\nfNxA27iQkGw,2002.0,4,10,2015,Die Another Day,Old-Fashioned Sword Fight,tt0246460\nlViscSQzK8Q,2002.0,5,10,2015,Die Another Day,Cutting Edge Stuff,tt0246460\nLzKWVeX9qQU,2002.0,2,10,2015,Die Another Day,Just Surviving,tt0246460\n-4kio7152q4,2002.0,3,10,2015,Die Another Day,Jinx,tt0246460\n4Vlw-NzSvoc,1963.0,8,10,2015,From Russia with Love,Helicopter Chase,tt0057076\nXlvqgnIkzZU,1963.0,6,10,2015,From Russia with Love,The First One Won't Kill You,tt0057076\njbdRO4BSXSU,1963.0,5,10,2015,From Russia with Love,Russian Clocks Are Always Correct,tt0057076\nVshyrsRdoF0,1964.0,6,9,2015,Goldfinger,My Name is Pussy Galore,tt0058150\nGvyKxUL0x0M,1964.0,9,9,2015,Goldfinger,'s Last Flight,tt0058150\nr449aYwQvE8,1964.0,8,9,2015,Goldfinger,Bond Fights Oddjob,tt0058150\n5p8meeqGJbg,1964.0,7,9,2015,Goldfinger,Creative Escape,tt0058150\nfZPyHZo5oDE,1964.0,5,9,2015,Goldfinger,I Expect You to Die,tt0058150\nAAbtiIrTqCE,1964.0,4,9,2015,Goldfinger,Oddjob,tt0058150\nSpSnm6rxTqU,1964.0,2,9,2015,Goldfinger,Gin and Jill,tt0058150\n-SXbmeFCnTM,1963.0,10,10,2015,From Russia with Love,A Maid With Evil Kicks,tt0057076\nUSD2Y7wRNgk,1964.0,3,9,2015,Goldfinger,The Golden Girl,tt0058150\nhON2sYpnJoQ,1964.0,1,9,2015,Goldfinger,Positively Shocking,tt0058150\nzyTVafoAylI,1963.0,9,10,2015,From Russia with Love,Setting SPECTRE Ablaze,tt0057076\ncBiLSCP95Nk,1963.0,7,10,2015,From Russia with Love,A Standard Kit,tt0057076\njaA7_aOD2ig,1963.0,4,10,2015,From Russia with Love,It's the Right Size,tt0057076\nxsL7T32XG3M,1963.0,3,10,2015,From Russia with Love,Gypsy Camp Assault,tt0057076\n1XEn8W3UA3w,1963.0,2,10,2015,From Russia with Love,Gypsy Catfight,tt0057076\nMDJ7Du14G-4,1963.0,1,10,2015,From Russia with Love,A Nasty Briefcase,tt0057076\nfAfd4y1IY-U,2008.0,8,10,2015,Quantum of Solace,You Will Burn,tt0830515\nEANmB0vOPqo,2008.0,9,10,2015,Quantum of Solace,Deadly Decisions,tt0830515\nC6hIucqz4_A,2008.0,7,10,2015,Quantum of Solace,Aerial Pursuit,tt0830515\ni0yWgvRAqTU,2008.0,3,10,2015,Quantum of Solace,Blank Slate,tt0830515\n_vHFGZXqIis,2008.0,10,10,2015,Quantum of Solace,Unfinished Business,tt0830515\nq8sWDRO5C4Q,2008.0,4,10,2015,Quantum of Solace,Kidnapping Camille,tt0830515\nlVdSRz3Jsjo,2008.0,5,10,2015,Quantum of Solace,A Night at the Opera,tt0830515\ny88S2uDB1ks,2008.0,2,10,2015,Quantum of Solace,The Hunt for Revenge,tt0830515\nP056r-oeODU,2008.0,6,10,2015,Quantum of Solace,Forgive Yourself,tt0830515\n7TG6R36bkgs,2008.0,1,10,2015,Quantum of Solace,We Have People Everywhere,tt0830515\neTeBFTlR0VI,2012.0,10,10,2015,Skyfall,One Thing Right,tt1074638\n9MdivySyCng,1965.0,9,10,2015,Thunderball,Bond Enters the Battle,tt0059800\nCOqQwiq4uA8,1965.0,10,10,2015,Thunderball,Domino's Revenge,tt0059800\nzkTbNH79i9A,1965.0,8,10,2015,Thunderball,Underwater Battle,tt0059800\nSR6W8_yd3yM,1965.0,5,10,2015,Thunderball,A Passionate Man,tt0059800\nn6rv6RO9ZFY,1965.0,7,10,2015,Thunderball,He Got the Point,tt0059800\nJPDhxTbWjuc,1965.0,6,10,2015,Thunderball,The Shark Tank,tt0059800\nKzCVggIa4uE,1965.0,3,10,2015,Thunderball,Nice To Have Met You,tt0059800\naQsyA4n7GZI,1965.0,4,10,2015,Thunderball,Use With Special Care,tt0059800\nz39yOZpcji0,1965.0,2,10,2015,Thunderball,SPECTRE Meeting,tt0059800\n4pUeurfZ5n8,1965.0,1,10,2015,Thunderball,Jet Pack Escape,tt0059800\nUfmbUwrXatE,2006.0,8,10,2015,Casino Royale,Straight Flush,tt0381061\nuO47LgAVYCc,1969.0,5,9,2015,On Her Majesty's Secret Service,One Ski Escape,tt0064757\nMochwVdcaEk,1969.0,8,9,2015,On Her Majesty's Secret Service,The Luge Chase,tt0064757\nC09knP1SAyA,1995.0,6,8,2015,GoldenEye,The Exploding Pen,tt0113189\nDdktDH98D_g,1995.0,2,8,2015,GoldenEye,Satellite Attack,tt0113189\nroaWSb9xc8I,2012.0,9,10,2015,Skyfall,Icy Plunge,tt1074638\np0udEu1z-jg,1995.0,7,8,2015,GoldenEye,Spy vs. Spy,tt0113189\nvAJAM1jm2xI,1995.0,4,8,2015,GoldenEye,Train vs. Tank,tt0113189\nwGmDAjRRNXs,1995.0,8,8,2015,GoldenEye,\"For England, James?\",tt0113189\nYsQEo4ja5Z8,2006.0,10,10,2015,Casino Royale,Vesper's Last Breath,tt0381061\nOf7LHW5cCBQ,1995.0,5,8,2015,GoldenEye,A Good Squeeze,tt0113189\nJA4fL1qiQTU,1995.0,3,8,2015,GoldenEye,Back From the Dead,tt0113189\nlCCeLue8owM,1995.0,1,8,2015,GoldenEye,Over the Edge,tt0113189\nbeAc5oqxBHw,2012.0,8,10,2015,Skyfall,Courtroom Shootout,tt1074638\nseFIcguvgXk,1997.0,6,7,2015,Tomorrow Never Dies,Banner Escape,tt0120347\n-qVNWgbzbS8,1985.0,6,10,2015,A View to a Kill,Death by Propeller,tt0090264\nUBPOSCR4el4,1985.0,7,10,2015,A View to a Kill,Mansion Shootout,tt0090264\nkG8GuXOjIPA,2012.0,7,10,2015,Skyfall,Here's Your Prize,tt1074638\nm4a6jkZiOkM,2012.0,3,10,2015,Skyfall,How Much Do You Know About Fear?,tt1074638\nH07vHL7APyU,1974.0,10,10,2015,The Man with the Golden Gun,I'll Kill You,tt0071807\noSo9Wu-jAyY,1969.0,6,9,2015,On Her Majesty's Secret Service,Mr. and Mrs. James Bond,tt0064757\nZVQNsHBi9oA,1974.0,9,10,2015,The Man with the Golden Gun,Dueling Wits,tt0071807\nD2HaKTqp4fQ,1974.0,6,10,2015,The Man with the Golden Gun,Ever Heard of Evel Knievel?,tt0071807\nSlL11KaxU7w,1974.0,8,10,2015,The Man with the Golden Gun,Solar Power,tt0071807\n6B-QUGSCV6c,1974.0,7,10,2015,The Man with the Golden Gun,The Flying Car,tt0071807\nLKp3HoZGP2E,1969.0,7,9,2015,On Her Majesty's Secret Service,Attacking Piz Gloria,tt0064757\nIVhxiyqp4do,1974.0,3,10,2015,The Man with the Golden Gun,Boat Pursuit,tt0071807\nWCKRXHDI9Ro,1974.0,2,10,2015,The Man with the Golden Gun,Ditching the Dojo,tt0071807\nf__qWwak6Zg,1974.0,5,10,2015,The Man with the Golden Gun,A Gun and a Bag of Peanuts,tt0071807\nhpaXyCsOZUg,1974.0,4,10,2015,The Man with the Golden Gun,\"Two Girls, One Bond\",tt0071807\nb1KjK4fd3ZU,1974.0,1,10,2015,The Man with the Golden Gun,Meeting Andrea,tt0071807\nHZEaFYQecn8,1989.0,10,10,2015,Licence to Kill,Franz is Fried,tt0097742\n8KFPOKVSi7M,1989.0,9,10,2015,Licence to Kill,Tilted Tanker,tt0097742\nRFTI9DnYSpY,1989.0,8,10,2015,Licence to Kill,Dario Gets Shredded,tt0097742\nter7pAZF_nY,1989.0,7,10,2015,Licence to Kill,High Pressure,tt0097742\n_CO3CMXf19A,1989.0,5,10,2015,Licence to Kill,Q's New Gadgets,tt0097742\ndCCo8xDMsJE,1989.0,6,10,2015,Licence to Kill,Watch the Birdie,tt0097742\n84k1F9o1g7k,1989.0,3,10,2015,Licence to Kill,From Sea to Sky,tt0097742\nGHZnuSLPSG4,1989.0,4,10,2015,Licence to Kill,Your Luck Has Changed,tt0097742\n9F_FhwkKdSw,1989.0,1,10,2015,Licence to Kill,Let's Go Fishing,tt0097742\nZl9yu2xvv78,1989.0,2,10,2015,Licence to Kill,Fed to the Sharks,tt0097742\nI_4ZduVVJrc,1969.0,3,9,2015,On Her Majesty's Secret Service,Blofeld's Plan,tt0064757\nJzPOYDni_FQ,1969.0,4,9,2015,On Her Majesty's Secret Service,Night Ski Chase,tt0064757\nVDWYVgMxBss,1999.0,7,10,2015,The World Is Not Enough,Sawing Helicopters,tt0143145\nZhBCiQ49Iz8,1969.0,1,9,2015,On Her Majesty's Secret Service,This Never Happened to the Other Fella,tt0064757\nBG59rpilakA,1969.0,9,9,2015,On Her Majesty's Secret Service,All The Time in the World,tt0064757\nQBip3RFko4I,1969.0,2,9,2015,On Her Majesty's Secret Service,Just a Slight Stiffness,tt0064757\nYpHAGZoV1ds,2012.0,6,10,2015,Skyfall,A Waste of Good Scotch,tt1074638\n-gZPZLSUZZ0,2012.0,5,10,2015,Skyfall,The Two Survivors,tt1074638\nm5p1wM1ZHQ0,2012.0,4,10,2015,Skyfall,In the Dragon's Den,tt1074638\nyV8-IGY64pE,2012.0,1,10,2015,Skyfall,Motorcycle Chase,tt1074638\n9NG5mJgw6Yg,2012.0,2,10,2015,Skyfall,Take the Shot,tt1074638\nUQRxN8qagG0,2006.0,9,10,2015,Casino Royale,Bond and Vesper,tt0381061\nifFEIzFztAo,2006.0,5,10,2015,Casino Royale,Vesper Lynd,tt0381061\nxAPOeXEUwnk,2006.0,3,10,2015,Casino Royale,The Embassy,tt0381061\n38nBkookHsI,2006.0,4,10,2015,Casino Royale,At the Beach,tt0381061\nJ11TVWwQNvI,2006.0,2,10,2015,Casino Royale,Parkour Chase,tt0381061\nIsGdB6a1Evc,2006.0,7,10,2015,Casino Royale,Bond Poisoned,tt0381061\n0quEnseH0zo,2006.0,1,10,2015,Casino Royale,Double-O Status,tt0381061\nBI_Vx6y7xG8,2006.0,6,10,2015,Casino Royale,All In,tt0381061\n3opX0w7T_qo,1999.0,8,10,2015,The World Is Not Enough,One Last Screw,tt0143145\nQ1WdlXsvk3U,1999.0,10,10,2015,The World Is Not Enough,She's Waiting For You,tt0143145\n7DmN0--tZcE,1999.0,6,10,2015,The World Is Not Enough,Defusing the Bomb,tt0143145\nHJV1Cqh8M5M,1999.0,5,10,2015,The World Is Not Enough,Escaping the Silo,tt0143145\nXhT1nAzegiE,1999.0,2,10,2015,The World Is Not Enough,Ski Chase,tt0143145\nK7p93XsmJ0c,1999.0,9,10,2015,The World Is Not Enough,I Never Miss,tt0143145\nm1Q_m9pvy2A,1999.0,4,10,2015,The World Is Not Enough,A Dangerous Game,tt0143145\nbQyfZXYp7Mg,1999.0,3,10,2015,The World Is Not Enough,X-Ray Glasses,tt0143145\nyk-b5jvZjLM,1999.0,1,10,2015,The World Is Not Enough,London Boat Chase,tt0143145\ngappVpWfuCA,1997.0,4,7,2015,Tomorrow Never Dies,The Printing Press,tt0120347\nRB_-9bINJCM,1997.0,3,7,2015,Tomorrow Never Dies,Too Close for Comfort,tt0120347\n5fAASR7YMDE,1997.0,5,7,2015,Tomorrow Never Dies,The Sunken Ship,tt0120347\nWs4ETwvXFw0,1997.0,1,7,2015,Tomorrow Never Dies,Racing the Missile,tt0120347\n7PqjhsPYyy4,1997.0,2,7,2015,Tomorrow Never Dies,Worldwide Domination,tt0120347\nNweXJhbk9P0,1997.0,7,7,2015,Tomorrow Never Dies,Some Breaking News for You,tt0120347\nX8J0iWSsYV0,1981.0,10,10,2015,For Your Eyes Only,Showdown at the Monastery,tt0082398\n5fg1GTRuYHg,1981.0,7,10,2015,For Your Eyes Only,Dune Buggy Attack,tt0082398\nyuBFthJcBiA,1981.0,8,10,2015,For Your Eyes Only,Armored Diver Attack,tt0082398\nPPwud5IUnYs,1981.0,9,10,2015,For Your Eyes Only,Keel-Hauled,tt0082398\ngSN6EodbL1c,1981.0,4,10,2015,For Your Eyes Only,Motorcycle Ski Chase,tt0082398\n4z9TimZytDI,1981.0,6,10,2015,For Your Eyes Only,Hockey Assassins,tt0082398\nT-KYqRfLg4U,1981.0,3,10,2015,For Your Eyes Only,Stinging in the Rain,tt0082398\nYBgsfgkgtqk,1981.0,5,10,2015,For Your Eyes Only,Bobsled Chase,tt0082398\nAH25lc44Og0,1981.0,2,10,2015,For Your Eyes Only,Crossbow Assassin,tt0082398\nSM-Y8FPMqzg,1981.0,1,10,2015,For Your Eyes Only,A Pleasant Flight,tt0082398\nRCzC3ZeMxws,1985.0,5,10,2015,A View to a Kill,Anybody Else Want to Drop Out?,tt0090264\ntSZtoveaa0A,1985.0,10,10,2015,A View to a Kill,Showdown Over San Francisco,tt0090264\ndezECMjxlCI,1985.0,2,10,2015,A View to a Kill,Paris Chase,tt0090264\ndo6yVKI5M-o,1985.0,3,10,2015,A View to a Kill,All Wrapped Up,tt0090264\nyC4LZXraLBM,1985.0,9,10,2015,A View to a Kill,Hanging on for Dear Life,tt0090264\nBbryMMaAUKo,1985.0,8,10,2015,A View to a Kill,May Day's Sacrifice,tt0090264\n2j6I87SIfbM,1985.0,4,10,2015,A View to a Kill,Deadly Steeplechase,tt0090264\nf4-sMr967Jw,1985.0,1,10,2015,A View to a Kill,Call Me James,tt0090264\nPzuBG7VmIlk,1983.0,10,10,2015,Octopussy,Fight on the Plane,tt0086034\npHQsot2suvI,1983.0,8,10,2015,Octopussy,Not Clowning Around,tt0086034\nzBeW_hheeGo,1983.0,9,10,2015,Octopussy,Hot Air Balloon Assault,tt0086034\n_qVs22tSUnA,1983.0,6,10,2015,Octopussy,Car vs. Train,tt0086034\n_v1FiZlF3bU,1983.0,7,10,2015,Octopussy,Boxcar Battle,tt0086034\n4gB-5OngLWQ,1983.0,4,10,2015,Octopussy,Jungle Escape,tt0086034\njF5_WqbTmW8,1983.0,5,10,2015,Octopussy,The Buzz Saw Assassin,tt0086034\nMK1fYMxkkTA,1983.0,2,10,2015,Octopussy,Get Off My Bed!,tt0086034\nM4oJLImqZds,1983.0,3,10,2015,Octopussy,Problems Keeping It Up,tt0086034\ndLl5PQg_Hag,1973.0,9,10,2015,Live and Let Die,The Shark Tank,tt0070328\n2xLWJOG7dO4,1983.0,1,10,2015,Octopussy,Fill 'Er Up,tt0086034\nxQFsE2WoXL0,1973.0,10,10,2015,Live and Let Die,Being Disarming,tt0070328\nKTQnnwDN3eU,1973.0,8,10,2015,Live and Let Die,\"Baron Samedi, Voodoo Priest\",tt0070328\nTBRqPFkAQCM,1973.0,7,10,2015,Live and Let Die,Some Kinda Doomsday Machine,tt0070328\nvmyGlOoCbp0,1973.0,5,10,2015,Live and Let Die,Feeding Time on the Crocodile Farm,tt0070328\nupQ-MXF_ZgI,1973.0,6,10,2015,Live and Let Die,High-Flying Speedboat Chase,tt0070328\nsojzO-UWObY,1973.0,3,10,2015,Live and Let Die,Double-Decker Bus Chase,tt0070328\n70kZeFs721U,1973.0,4,10,2015,Live and Let Die,Bond's Flying Lesson,tt0070328\nIP7jsmECPbs,1973.0,2,10,2015,Live and Let Die,Tarot Card Lovers,tt0070328\n3GlfIStWMSY,1973.0,1,10,2015,Live and Let Die,Homemade Snake Slayer,tt0070328\nFvEi2U7IKRE,1977.0,10,10,2015,The Spy Who Loved Me,The Escape Pod,tt0076752\n3vDe4jJvC_o,1977.0,9,10,2015,The Spy Who Loved Me,Jaws vs. the Shark,tt0076752\ncGN5hLGphX4,1977.0,8,10,2015,The Spy Who Loved Me,\"Goodbye, Mr. Bond\",tt0076752\nyFlxYvgV3VQ,1977.0,7,10,2015,The Spy Who Loved Me,The Instruments of Armageddon,tt0076752\nsHqb1FwBP2Y,1977.0,5,10,2015,The Spy Who Loved Me,Jaws Attack,tt0076752\nDDQzRai6Uao,1977.0,4,10,2015,The Spy Who Loved Me,Agent XXX and Bond vs. Jaws,tt0076752\nCDeNNNPzUlg,1977.0,2,10,2015,The Spy Who Loved Me,Atlantis Rises,tt0076752\nn1gQ-1zEljg,1977.0,3,10,2015,The Spy Who Loved Me,Showdown at the Pyramids,tt0076752\nnR532k8M35g,1977.0,1,10,2015,The Spy Who Loved Me,The Ski Jump,tt0076752\n3JySRf9aTPA,1977.0,6,10,2015,The Spy Who Loved Me,Submarine Car,tt0076752\nw0ijJ45l-kM,1987.0,8,10,2015,The Living Daylights,Boarding the Plane,tt0093428\nl6qtq8aC2Cg,1987.0,10,10,2015,The Living Daylights,Crash Landing,tt0093428\nTD8G-aSlweI,1987.0,5,10,2015,The Living Daylights,Whistle Gas,tt0093428\nTDhk_Xhxc3c,1987.0,7,10,2015,The Living Daylights,We Have Nothing to Declare!,tt0093428\nITdkeKIFqL8,1987.0,1,10,2015,The Living Daylights,Paintball Massacre,tt0093428\nQo1WkD59F_w,1987.0,9,10,2015,The Living Daylights,He Got the Boot,tt0093428\nJvZ5nh7sIzU,1987.0,6,10,2015,The Living Daylights,A Few Extras Installed,tt0093428\nJ7M8LuEC99k,1987.0,3,10,2015,The Living Daylights,What Kind of Girl Do You Think I Am!,tt0093428\nLAmOoIdTjsw,1987.0,2,10,2015,The Living Daylights,If Only I Could Find a Real Man,tt0093428\nMcIJxpY89Kk,1987.0,4,10,2015,The Living Daylights,The Milk Assassin,tt0093428\nS5jj3vqPau8,1962.0,8,8,2015,Dr. No,Love at Sea,tt0055928\n0u0SEECyGlM,1962.0,3,8,2015,Dr. No,On the Way to a Funeral,tt0055928\nMh2Tf40llqw,1962.0,7,8,2015,Dr. No,The Death of,tt0055928\nFyo66z0NtHY,1962.0,4,8,2015,Dr. No,The Beautiful Honey Ryder,tt0055928\niedK7wzunWo,1962.0,5,8,2015,Dr. No,The Dragon of Crab Key,tt0055928\nrsT1bLR2sfM,1962.0,6,8,2015,Dr. No,A Member of SPECTRE,tt0055928\nzF-3wgcDRk4,1962.0,2,8,2015,Dr. No,Eight-Legged Assassin,tt0055928\nnLXoZ69ce-I,1962.0,1,8,2015,Dr. No,\"Bond, James Bond\",tt0055928\nxx4t4fBIY88,1979.0,8,10,2015,Moonraker,Drax's Deadly Dream,tt0079574\nS4p8_i1lcCc,1979.0,7,10,2015,Moonraker,Boat Battle,tt0079574\nFFGAP7FxZKQ,1979.0,4,10,2015,Moonraker,Cooperation,tt0079574\ncUX2Mj4SN7o,1979.0,3,10,2015,Moonraker,Gondola Chase,tt0079574\nlTiCL83_dR4,1979.0,10,10,2015,Moonraker,Attempting Re-Entry,tt0079574\nv5N1Aukm4Bo,1979.0,2,10,2015,Moonraker,The Centrifuge,tt0079574\nsXnYoBCJGwI,1979.0,9,10,2015,Moonraker,Drax Had to Fly,tt0079574\n2MdAw_f5pAU,1979.0,5,10,2015,Moonraker,Bond vs. Jaws,tt0079574\ntdXshjACQx8,1979.0,6,10,2015,Moonraker,Q's Balls,tt0079574\n87MO-gtYFT8,1979.0,1,10,2015,Moonraker,Enjoy Your Flight,tt0079574\nzTlfN8HuEJA,2011.0,3,5,2015,Rio,I'm Not a Pretty Birdy,tt1436562\nGt4t3ZZsAnQ,2011.0,5,5,2015,Rio,I Wanna Party,tt1436562\ngGxrQOUaM_E,2011.0,4,5,2015,Rio,Flying Fail,tt1436562\nPZheNUuK8jg,2011.0,1,5,2015,Rio,Real in,tt1436562\noz6wjc6xLFU,2011.0,2,5,2015,Rio,Not Exactly Lovebirds,tt1436562\nT_HWlDa9t6o,2011.0,3,5,2015,Rise of the Planet of the Apes,Attack on San Francisco Scene,tt1318514\nmKDqrUqOe8Y,2011.0,5,5,2015,Rise of the Planet of the Apes,Gorilla vs. Helicopter Scene,tt1318514\n_kz6s5Yi5Ns,2011.0,4,5,2015,Rise of the Planet of the Apes,Battle for the Bridge Scene,tt1318514\no2oR9qYeySU,2006.0,5,5,2015,Night at the Museum,Slapping the Monkey,tt0477347\nWeBy3_xqYtM,2006.0,4,5,2015,Night at the Museum,Kill the Giant,tt0477347\nJDbwEQG2cqI,2011.0,1,5,2015,Rise of the Planet of the Apes,Caesar Speaks Scene,tt1318514\nwS9RtY8dVpo,2011.0,2,5,2015,Rise of the Planet of the Apes,Prison Break Scene,tt1318514\nf-DgdMpSo7c,2006.0,3,5,2015,Night at the Museum,Monkey Stole Your Keys,tt0477347\nahP1JZwHSh8,2008.0,5,5,2015,Jumper,Teleporter Duel,tt0489099\nnAgSecmB9lM,2006.0,2,5,2015,Night at the Museum,Dum Dum Give Me Gum Gum,tt0477347\nJRloSmzWBOg,2006.0,1,5,2015,Night at the Museum,Throw the Bone,tt0477347\nM2hhUTxFLWA,2008.0,3,5,2015,Jumper,Teleporting Joyride,tt0489099\naWyYZ3-8oAM,2008.0,4,5,2015,Jumper,\"Sooner or Later, You All Go Bad\",tt0489099\ngwTTsc0zMco,2008.0,2,5,2015,Jumper,Colosseum Ambush,tt0489099\nFm7B7WzAA1M,2008.0,1,5,2015,Jumper,There Are Always Consequences,tt0489099\n1u0rQ7J3oS4,2006.0,4,5,2015,Garfield: A Tail of Two Kitties,Royal Copycat,tt0455499\n97hoM2qv05s,2006.0,5,5,2015,Garfield: A Tail of Two Kitties,The Animals Fight Back,tt0455499\n75PCq-Wcdhw,2006.0,3,5,2015,Garfield: A Tail of Two Kitties,The Lasagna Dance,tt0455499\nSswN494Jxr8,2006.0,2,5,2015,Garfield: A Tail of Two Kitties,\"Just Call Me \"\"Your Highness\"\"\",tt0455499\n2-7Jdip2Pfw,2002.0,5,5,2015,Drumline,The Last  Standing,tt0303933\nFTV4FUlcIwQ,2006.0,1,5,2015,Garfield: A Tail of Two Kitties,The British Are Coming!,tt0455499\nJaGoM25tGVA,2002.0,2,5,2015,Drumline,Fighting for the Field,tt0303933\n2fsMce1OvXY,2002.0,3,5,2015,Drumline,Duel,tt0303933\nyAhuaFMTSKM,2002.0,4,5,2015,Drumline,I'm the Man!,tt0303933\nEQW38-aU5gI,2002.0,1,5,2015,Drumline,Late Night Tryouts,tt0303933\n0JnpUYMPEiw,1989.0,1,5,2015,The War of the Roses,Loving Nantucket,tt0098621\n21Dc8a8X8qg,1997.0,2,5,2015,Volcano,Homeless Rescue,tt0120461\ng9U0df6KJiA,2000.0,2,3,2015,Titan A.E.,Captured by the Drej,tt0120913\nfCuS78YHrOY,1989.0,4,5,2015,The War of the Roses,Benny's a Good Dog,tt0098621\noMpgPQbRt8U,1995.0,1,5,2015,Waiting to Exhale,Bernie Burns John's Clothes,tt0114885\nLxMYNhlh0Tk,1989.0,5,5,2015,The War of the Roses,Not Good For Him,tt0098621\nIaOlL5WMFI8,1995.0,4,5,2015,Waiting to Exhale,Robin Reveals Her Past,tt0114885\n1FXO-XToURQ,1995.0,5,5,2015,Waiting to Exhale,Gloria Reconciles With Marvin,tt0114885\n0OaFQQaQGRM,1995.0,2,5,2015,Waiting to Exhale,My Body Needs This,tt0114885\n4xVAvx5hTic,1998.0,1,5,2015,The X Files,Underground Poison,tt0120902\n4Iza5db5Zvk,1989.0,3,5,2015,The War of the Roses,The Gloves Are Off,tt0098621\n1MWZ3mZ-tUM,2000.0,3,3,2015,Titan A.E.,Covering Cale,tt0120913\najBHZKoKYbU,1992.0,3,5,2015,White Men Can't Jump,Screwing is for Carpenters,tt0105812\nLkWeBzzBUXY,1997.0,4,5,2015,Volcano,Open Hoses,tt0120461\nF2Zm-637bQQ,2007.0,1,3,2015,Waitress,Strange Medicine,tt0473308\nyDtGS3G3xtY,1992.0,5,5,2015,White Men Can't Jump,,tt0105812\nRfltPijijjA,1998.0,4,5,2015,The X Files,The Embryos Awaken,tt0120902\nfgJ2CaTfaxU,1992.0,1,5,2015,White Men Can't Jump,\"Slow, White, Geeky Chump\",tt0105812\nesJNnh-d2E0,1998.0,3,5,2015,The X Files,I Owe You Everything,tt0120902\nSEWMcT6bIi8,1988.0,3,5,2015,Working Girl,Mr. and Mrs. Fabulously Happy,tt0096463\nJQO8MTlO69U,2000.0,1,3,2015,Titan A.E.,Earth is Destroyed,tt0120913\nqjYP7J3oP9Q,1982.0,5,5,2015,The Verdict,Frank's Closing Statement,tt0084855\nPE-3JxqiV7M,1988.0,5,5,2015,Working Girl,Tess's New Job,tt0096463\nJKD_ZN2VC3g,1988.0,2,5,2015,Working Girl,A Head for Business and a Bod for Sin,tt0096463\nJjgKkluHXJM,1988.0,4,5,2015,Working Girl,Katharine Gets the Boot,tt0096463\nt7DgbPjFOfY,1992.0,4,5,2015,White Men Can't Jump,I'm in the Zone!,tt0105812\nFTHoIehOkK0,1988.0,1,5,2015,Working Girl,A Sleazoid Pimp,tt0096463\n0XCqc9fIGJ0,1992.0,2,5,2015,White Men Can't Jump,Hustling Raymond,tt0105812\nn5ArS3Got4U,2007.0,3,3,2015,Waitress,Starting Fresh,tt0473308\n8EcrxgHLhIg,2007.0,2,3,2015,Waitress,Professional Relationship,tt0473308\npUO9-h182d4,1995.0,3,5,2015,Waiting to Exhale,Ladies Night,tt0114885\nCD0k2oB61h0,1997.0,5,5,2015,Volcano,It's Gonna Blow!,tt0120461\nR01bex9Ejvg,1997.0,3,5,2015,Volcano,A Hero's Sacrifice,tt0120461\nM49PmHt8PEc,1997.0,1,5,2015,Volcano,The Eruption,tt0120461\n8iI9iC2OgFY,2002.0,2,3,2015,Unfaithful,Crime of Passion Scene,tt0250797\nRH2IK1jcLuY,2002.0,3,3,2015,Unfaithful,Confession Scene,tt0250797\nj-V12tL78Mc,2002.0,1,3,2015,Unfaithful,The Other Woman Scene,tt0250797\n_QUAEFiNatE,1998.0,5,5,2015,The X Files,The Spacecraft Departs,tt0120902\norhrsjDwamY,1998.0,2,5,2015,The X Files,Swarmed,tt0120902\nS_PMSA9fgiI,1989.0,2,5,2015,The War of the Roses,The Dinner Party,tt0098621\nu-2jqTXKQyU,1982.0,4,5,2015,The Verdict,A Fair Trial,tt0084855\n5lkqZP5rBvg,1982.0,2,5,2015,The Verdict,Frank and Laura,tt0084855\nME2S71b553U,1982.0,3,5,2015,The Verdict,Mistakes,tt0084855\nAsm-9UXAOog,1982.0,1,5,2015,The Verdict,What is the Truth?,tt0084855\n_BeHUjskbZo,1996.0,3,3,2015,The Truth About Cats & Dogs,Brian Returns,tt0117979\nzlfMo6Qe2o8,1996.0,2,3,2015,The Truth About Cats & Dogs,I Love You Because...,tt0117979\nzal_hU83ruo,2004.0,3,3,2015,Taxi,Chase to the Airport Scene,tt0316732\nQjLwuMqSb7s,1996.0,1,3,2015,The Truth About Cats & Dogs,Phone Sex,tt0117979\nNMKgdzm1pWs,2004.0,2,3,2015,Taxi,Vanessa Frisks Marta Scene,tt0316732\nOcoatqJqmX0,2004.0,1,3,2015,Taxi,Singing & Driving Scene,tt0316732\nDe2BarsD4jU,2012.0,5,5,2015,Chronicle,Take Him Out,tt1753584\nB5vXrSsvqqs,2012.0,4,5,2015,Chronicle,I'm an Apex Predator,tt1753584\nblWBATSOCtA,2012.0,3,5,2015,Chronicle,Telekinetic Robbery,tt1753584\n-YV8tJhGojY,2012.0,2,5,2015,Chronicle,The Strongest Animal,tt1753584\nsBSibz9xdic,2012.0,1,5,2015,Chronicle,Psychic Pranks,tt1753584\nOI2JPJj1d6s,2008.0,5,5,2015,27 Dresses,Get Over Here,tt0988595\n0-HM2VCdrC0,2008.0,4,5,2015,27 Dresses,I Think You Deserve More,tt0988595\nts4gt7f_rek,2008.0,3,5,2015,27 Dresses,The Truth About Tess and George,tt0988595\neiLeBJUf1iE,2008.0,2,5,2015,27 Dresses,All,tt0988595\nr4K7eNzseCI,2008.0,1,5,2015,27 Dresses,Can't Say No,tt0988595\noDD1tW59Mjg,1987.0,5,5,2015,Wall Street,How Much is Enough?,tt0094291\nNDV-ryLLkiU,1987.0,3,5,2015,Wall Street,A Second-Rate Power,tt0094291\nVVxYOQS6ggk,1987.0,4,5,2015,Wall Street,Greed Is Good,tt0094291\nsLAan2iZs_Y,1987.0,2,5,2015,Wall Street,Money Never Sleeps,tt0094291\n-TLCaDbBv_s,1987.0,1,5,2015,Wall Street,The Art of War,tt0094291\ndvloIUSHogs,2005.0,5,5,2015,Walk the Line,June Says Yes,tt0358273\nTf7suGi96l0,2005.0,3,5,2015,Walk the Line,Johnny Collapses,tt0358273\ng-uc5_QEmuM,2005.0,4,5,2015,Walk the Line,Cocaine Blues,tt0358273\ny_fgX9MUfVM,2005.0,2,5,2015,Walk the Line,\"It Ain't Me, Babe\",tt0358273\nqAw0VczZGC8,2002.0,4,5,2015,The Transporter,Skydive onto the Convoy,tt0293662\nBeAtRdD4roE,2002.0,5,5,2015,The Transporter,Semi Tough,tt0293662\nbjLdEjOL1s8,2002.0,3,5,2015,The Transporter,Greased Fighting,tt0293662\n4akqi6YYIJw,2005.0,1,5,2015,Walk the Line,I,tt0358273\nbCKgFFmf_iI,2002.0,1,5,2015,The Transporter,A Sick Car Chase,tt0293662\nKJZLcsAmLbM,1996.0,5,5,2015,Romeo + Juliet,Together in Death Scene,tt0117509\n56djkHojg2g,2002.0,2,5,2015,The Transporter,Don't Axe Me,tt0293662\nyClVlc_niac,1996.0,2,5,2015,Romeo + Juliet,Star-crossed Lovers Scene,tt0117509\nOic7kJRg_F0,1996.0,3,5,2015,Romeo + Juliet,\"1,000 Times Goodnight Scene\",tt0117509\n8JoOpx6VwHk,1996.0,1,5,2015,Romeo + Juliet,Love at First Sight Scene,tt0117509\nxcSwBHs1uD4,1996.0,4,5,2015,Romeo + Juliet,Romeo Dies Scene,tt0117509\ngAmo3FcaovM,2010.0,11,11,2015,Despicable Me,Gru Shrinks the Moon,tt1323594\nZ4DDrBjEBHE,2010.0,10,11,2015,Despicable Me,Bedtime Story,tt1323594\ntLiM-49DJ7k,2010.0,8,11,2015,Despicable Me,It's So Fluffy!,tt1323594\nYgXPN03oxkc,2010.0,9,11,2015,Despicable Me,I Sit on the Toilet,tt1323594\nxOYb0ZdJCQs,2010.0,7,11,2015,Despicable Me,Stealing the Shrink Gun,tt1323594\n8R1OS5jPh2s,2010.0,5,11,2015,Despicable Me,Gru's Lab,tt1323594\nYsMdkGG2b0k,2010.0,6,11,2015,Despicable Me,CookieBots,tt1323594\nx8HjCP3LqHo,2010.0,4,11,2015,Despicable Me,No Annoying Sounds,tt1323594\n428tr8ixT3Q,2010.0,3,11,2015,Despicable Me,Try This On for Size,tt1323594\nej6dxNrh3Dc,2010.0,2,11,2015,Despicable Me,The Box of Shame,tt1323594\nfdrR3NbPARs,2010.0,1,11,2015,Despicable Me,Steal the Moon,tt1323594\npLm07s8fnzM,1965.0,4,5,2015,The Sound of Music,Do-Re-Mi,tt0059742\nkxjwb5cXTI0,1965.0,5,5,2015,The Sound of Music,\"So Long, Farewell\",tt0059742\nDGABqdbtQnA,1965.0,3,5,2015,The Sound of Music,My Favorite Things,tt0059742\nAePRD1Ud3Lw,1965.0,1,5,2015,The Sound of Music,,tt0059742\npcj4boVT4fc,1965.0,2,5,2015,The Sound of Music,Sixteen Going on Seventeen,tt0059742\nfIh6HDeXKGY,1955.0,4,5,2015,The Seven Year Itch,A Delicious Breeze,tt0048605\naqsJPtd8Cis,1955.0,3,5,2015,The Seven Year Itch,Opening the Champagne,tt0048605\nofmssjTsGnE,1955.0,5,5,2015,The Seven Year Itch,What a Girl Wants,tt0048605\npCiwEO_6xS0,1955.0,2,5,2015,The Seven Year Itch,Good Old Rachmaninoff,tt0048605\nLxWJ4QT74hA,1955.0,1,5,2015,The Seven Year Itch,New Neighbor,tt0048605\n8EdOdfCM1hM,1996.0,2,5,2015,That Thing You Do!,Radio Debut,tt0117887\nO10NcrfHaT0,1996.0,5,5,2015,That Thing You Do!,Good and Kissed,tt0117887\nFDektpHARj4,1996.0,3,5,2015,That Thing You Do!,Faye Dumps Jimmy,tt0117887\n7o40za1wAlI,1996.0,1,5,2015,That Thing You Do!,\"The \"\"Oneders\"\" Go Up-Tempo\",tt0117887\nfg-43OlaJtE,1996.0,4,5,2015,That Thing You Do!,A Very Common Tale,tt0117887\n10fn13Q4wAA,2005.0,5,5,2015,Thank You for Smoking,Everyone Has a Talent,tt0427944\nRK-RPsc0czc,2005.0,4,5,2015,Thank You for Smoking,Doing It for the Mortgage,tt0427944\nxuaHRN7UhRo,2005.0,3,5,2015,Thank You for Smoking,Ice Cream Politics,tt0427944\nxT7F0eKfctg,2005.0,2,5,2015,Thank You for Smoking,Hollywood Meeting,tt0427944\nyrxRCTUt6OY,2005.0,1,5,2015,Thank You for Smoking,The Joan Show,tt0427944\naQHOzbF0qH0,1997.0,5,5,2015,Soul Food,What  is All About,tt0120169\nIayveLLh-HQ,1997.0,3,5,2015,Soul Food,Teri Pulls a Knife on Miles,tt0120169\ndj5zbxA4bEI,1997.0,2,5,2015,Soul Food,Vinegar and Oil,tt0120169\nZHRWbydTGrI,1997.0,1,5,2015,Soul Food,Wedding Day Blues,tt0120169\nRRcYHJ1uTro,1997.0,4,5,2015,Soul Food,Y'all Messed Up the Family!,tt0120169\nJt0kFbvL7yg,1998.0,3,3,2015,Hope Floats,Dancing's Just a Conversation,tt0119313\nj3d3mrWBTpM,1998.0,2,3,2015,Hope Floats,Justin the Skunk,tt0119313\ngQwpd1247J8,2009.0,5,5,2015,Bride Wars,Battle of the Brides,tt0901476\n7T9nzAu7orw,1998.0,1,3,2015,Hope Floats,He Doesn't Love You Anymore,tt0119313\nhk6Vxhx28bo,2009.0,4,5,2015,Bride Wars,Bachelorette Dance-Off,tt0901476\nLVm_DbyklO0,2009.0,1,5,2015,Bride Wars,Will You Just Marry Me Already?,tt0901476\nQ16cb-O1kTA,2009.0,3,5,2015,Bride Wars,Bridal Sabotage,tt0901476\nd87eHGVaoc8,2009.0,2,5,2015,Bride Wars,Fight for the Date,tt0901476\nx7RM1MOhSic,2008.0,5,5,2015,Australia,No One Can Hurt Me,tt0455824\nVz56mS8Zz6A,2008.0,2,5,2015,Australia,Hiding in the Water Tower,tt0455824\nhnsP1etZkr4,1995.0,2,3,2015,A Walk in the Clouds,Traditional Grape Stomp,tt0114887\ngmedATt5viM,2008.0,3,5,2015,Australia,Stopping the Stampede,tt0455824\n4Z5rOXxjRWI,2008.0,4,5,2015,Australia,The Bombing of Darwin,tt0455824\n1adrUPgj7QQ,2008.0,1,5,2015,Australia,We Like to Bunk Up Together,tt0455824\nsYk8M_ZTNlY,1995.0,1,3,2015,A Walk in the Clouds,Saving the Vineyard,tt0114887\nGyxw8a2hTMg,1995.0,3,3,2015,A Walk in the Clouds,I'm Not Free,tt0114887\n4PcxtcrI9_U,1998.0,4,5,2015,There's Something About Mary,Hooked on Mary,tt0129387\nfdOrjwuILCE,1998.0,5,5,2015,There's Something About Mary,Mary Chooses Ted,tt0129387\njX09Cesfxo8,1998.0,3,5,2015,There's Something About Mary,Dog Fight,tt0129387\nSj_A7OZz8TI,1998.0,1,5,2015,There's Something About Mary,Frank and Beans,tt0129387\nmbFx0CbaIlY,1998.0,2,5,2015,There's Something About Mary,Hair Gel,tt0129387\nfohry-3J4dQ,2009.0,9,12,2015,Mother,The Bum Witnessed Everything,tt1216496\nDu82ML6YGRE,2009.0,7,12,2015,Mother,You Tried to Kill Me,tt1216496\njTNoDcmRc0g,2009.0,8,12,2015,Mother,Interrogation of the Teenage Murderers,tt1216496\nRCEgNkU7flA,2009.0,5,12,2015,Mother,Three Motives for Murder,tt1216496\n7Za7WMgQqKY,2009.0,4,12,2015,Mother,The Wake,tt1216496\ngi3gqlWetJU,2009.0,6,12,2015,Mother,Hit Back Twice,tt1216496\n6a0at61sWkE,2009.0,2,12,2015,Mother,Hit-and-Run Revenge,tt1216496\nGhIDZhPP7d4,2009.0,3,12,2015,Mother,Arrested for Murder,tt1216496\nYyWG5DAJc6s,2009.0,12,12,2015,Mother,The Point of Forgetfulness,tt1216496\nTwgvEloIXVc,2009.0,1,12,2015,Mother,Hit-and-Run,tt1216496\nzpdFj0w6Eg8,1991.0,8,8,2015,The Fisher King,Storming the Castle,tt0101889\nevCesc80vho,2009.0,10,12,2015,Mother,Not Worth the Dirt on My Son's Toenail,tt1216496\nBevEBQsAoPk,1991.0,7,8,2015,The Fisher King,What Did I Get?,tt0101889\nl3n95qTa5ko,2009.0,11,12,2015,Mother,We Caught the Killer,tt1216496\n0p9yD4E2hQw,1991.0,6,8,2015,The Fisher King,The Greatest Thing Since Spice Racks,tt0101889\nnPXMny-9Ntk,1991.0,5,8,2015,The Fisher King,Made for Each Other,tt0101889\nNW5u4cCsNUY,1991.0,3,8,2015,The Fisher King,The Red Knight,tt0101889\nTyB1CcaiPbQ,1991.0,4,8,2015,The Fisher King,A Moral Traffic Light,tt0101889\njrPvugl_NVA,1991.0,2,8,2015,The Fisher King,\"Men, Women, God and the Devil\",tt0101889\naW4x-PAnrO8,1991.0,1,8,2015,The Fisher King,The Janitor of God,tt0101889\nro74_tScvSA,2010.0,5,5,2015,Diary of a Wimpy Kid,The Wonderful Wizard of Oz Scene,tt1196141\nwW0L86VZScs,2010.0,3,5,2015,Diary of a Wimpy Kid,Wrestling a Girl Scene,tt1196141\nKy5Y99wb_00,2010.0,1,5,2015,Diary of a Wimpy Kid,The Cheese Touch Scene,tt1196141\nbAI6N5Uo7SQ,2010.0,4,5,2015,Diary of a Wimpy Kid,The Wonderful Wizard of Oz Audition Scene,tt1196141\nYMwZaMNf3L4,2010.0,2,5,2015,Diary of a Wimpy Kid,Really Have to Pee Scene,tt1196141\n_ihVsEYQP8E,2011.0,5,5,2015,Harry Potter and the Deathly Hallows: Part 2,Harry vs. Voldemort,tt1201607\nVmVWuswEBSk,2011.0,4,5,2015,Harry Potter and the Deathly Hallows: Part 2,King's Cross Station,tt1201607\nlJ83ILGA8yI,2011.0,3,5,2015,Harry Potter and the Deathly Hallows: Part 2,Snape's Memories,tt1201607\nuk04S-0HOXY,2011.0,1,5,2015,Harry Potter and the Deathly Hallows: Part 2,Ron and Hermione Kiss,tt1201607\nNVovWtkGbCc,2011.0,2,5,2015,Harry Potter and the Deathly Hallows: Part 2,Snape's Death,tt1201607\nPsWbydM-u8w,2007.0,5,5,2015,Alvin and the Chipmunks,Witch Doctor Scene,tt0952640\nXrEpuPzxk9k,2007.0,1,5,2015,Alvin and the Chipmunks,Chipmunk Troubles Scene,tt0952640\ndelffcg5VZU,2007.0,4,5,2015,Alvin and the Chipmunks,Bow Chicka Wow Wow Scene,tt0952640\np0BpMFTYFpU,2007.0,2,5,2015,Alvin and the Chipmunks,Funky Town Scene,tt0952640\nKWK3PRNjZdI,2007.0,3,5,2015,Alvin and the Chipmunks,Christmas Don't Be Late Scene,tt0952640\nZ3m-Ht3_tFc,1994.0,3,5,2015,Speed,Jack & Annie Escape,tt0111257\nWlS2xnW-LY8,1994.0,5,5,2015,Speed,Intense Relationship,tt0111257\n4qLgo75Lfhc,1994.0,4,5,2015,Speed,End of the Line,tt0111257\ndKJa-KQNjQU,1994.0,2,5,2015,Speed,Jumping the Gap,tt0111257\n1cNBL3OOMRY,1994.0,1,5,2015,Speed,Boarding the Bus,tt0111257\nJNPW2wZ4D2s,2001.0,5,5,2015,Super Troopers,Shenanigans,tt0247745\nU0s0czlJ4xA,2001.0,3,5,2015,Super Troopers,Horny Germans,tt0247745\n1rlSjdnAKY4,2001.0,2,5,2015,Super Troopers,The Cat Game,tt0247745\n0zgTcrZ5030,2001.0,4,5,2015,Super Troopers,Dimpus Burger,tt0247745\nxPHXfJZpSms,2001.0,1,5,2015,Super Troopers,Chugging Syrup,tt0247745\nuUuTz9Hjc34,2014.0,11,12,2015,Divergent,I'm,tt1840309\n_snQsFAwjxQ,2014.0,9,12,2015,Divergent,Tris' Final Test,tt1840309\n4_hEef258iI,2014.0,12,12,2015,Divergent,I Know Exactly Who You Are,tt1840309\n7UhFzTWxzBo,2014.0,10,12,2015,Divergent,It's Me,tt1840309\nzrc1us4sDcE,2014.0,7,12,2015,Divergent,Saved by Four,tt1840309\nu0fi902X3qo,2014.0,8,12,2015,Divergent,Four and Tris Kiss,tt1840309\n5ttoICpH0Vc,2014.0,6,12,2015,Divergent,Human Nature is the Enemy,tt1840309\nkOBAOfh46Nk,2014.0,5,12,2015,Divergent,The Zip Line,tt1840309\nwIqMqkMIjEE,2014.0,4,12,2015,Divergent,The Ferris Wheel,tt1840309\n5FQ7xVuqOJM,2014.0,3,12,2015,Divergent,Four Helps Tris,tt1840309\nqU0Y6zo68t4,2014.0,2,12,2015,Divergent,Welcome to Dauntless,tt1840309\nKo0E8tEu7HU,2014.0,1,12,2015,Divergent,Choosing Dauntless,tt1840309\nVqTMLtDj83c,2014.0,8,10,2015,The Hunger Games: Mockingjay,Part 1   - Peeta Warns Katniss,tt1951266\nlGFrkYzbfoU,2014.0,10,10,2015,The Hunger Games: Mockingjay,Part 1   - Reunited with Peeta,tt1951266\nMfHiFaZIc7Q,2014.0,9,10,2015,The Hunger Games: Mockingjay,Part 1   - Did I Lose Them Both?,tt1951266\nLJhKwaZEEy4,2014.0,7,10,2015,The Hunger Games: Mockingjay,Part 1   - The Hanging Tree,tt1951266\nX236AeHt5RY,2014.0,5,10,2015,The Hunger Games: Mockingjay,\"Part 1   - If We Burn, You Burn\",tt1951266\nAbCowKGckKM,2014.0,6,10,2015,The Hunger Games: Mockingjay,Part 1   - Gale's Story,tt1951266\ndLxtD4f_DA4,2014.0,4,10,2015,The Hunger Games: Mockingjay,Part 1   - Battling the Bombers,tt1951266\nlUQJN1xzKpc,2014.0,3,10,2015,The Hunger Games: Mockingjay,Part 1   - Fight With Us?,tt1951266\nOp_fgLBxUQE,2014.0,2,10,2015,The Hunger Games: Mockingjay,Part 1   - How A Revolution Dies,tt1951266\nKrHaRP-Y588,2014.0,1,10,2015,The Hunger Games: Mockingjay,Part 1   - I'll Be Your Mockingjay,tt1951266\ntqtqEZqGg5A,2006.0,3,5,2015,X-Men: The Last Stand,I'm the Juggernaut,tt0376994\nwXWoyVboDpI,2003.0,5,5,2015,X2,This Is the Only Way,tt0290334\nup5GI3Sp7Lo,2003.0,4,5,2015,X2,Deathstrike's End,tt0290334\n19fWdIvK9mU,2003.0,3,5,2015,X2,Pyro Gets Hot,tt0290334\nStnmzjqMKRo,2003.0,1,5,2015,X2,White House Breach,tt0290334\nQL__AjJr688,2003.0,2,5,2015,X2,Bobby Comes Out,tt0290334\n8QMRQeYNd7M,2006.0,5,5,2015,X-Men: The Last Stand,Phoenix Falls,tt0376994\nU-RYUQZFIhI,2006.0,4,5,2015,X-Men: The Last Stand,One of Them,tt0376994\nXeU6SJorcvw,2006.0,1,5,2015,X-Men: The Last Stand,Phoenix Shatters Xavier,tt0376994\nITMren3I3WM,2006.0,2,5,2015,X-Men: The Last Stand,Magneto's Bridgework,tt0376994\nVagrTsi5vsw,2000.0,5,5,2015,X-Men,Showdown With Sabretooth,tt0120903\nXIcTr-m-R9U,2000.0,3,5,2015,X-Men,Mind Over Metal,tt0120903\nMJ_32rbrHdk,2000.0,4,5,2015,X-Men,Toad and Mystique,tt0120903\nYVjyXY_mcl4,2000.0,1,5,2015,X-Men,Claws Out,tt0120903\nsidn04cetvU,2000.0,2,5,2015,X-Men,Magneto Abducts Rogue,tt0120903\nx2vhOIjmS2s,1997.0,5,5,2015,Speed 2: Cruise Control,Tanker Blast,tt0120179\n38yH4yeJM2I,1997.0,4,5,2015,Speed 2: Cruise Control,Fishing for a Flight,tt0120179\ngBxaGB65TB8,1997.0,3,5,2015,Speed 2: Cruise Control,Land Cruiser,tt0120179\n9s84zV2VCgI,1997.0,2,5,2015,Speed 2: Cruise Control,We Have a Miss!,tt0120179\nDXA3GJb6V-M,1997.0,1,5,2015,Speed 2: Cruise Control,An Explosive Exit,tt0120179\nvG_FLK4K_T8,2001.0,5,5,2015,Shallow Hal,I Have a Tail,tt0256380\n2R1lEWNNsV0,2001.0,4,5,2015,Shallow Hal,Dating Rosemary,tt0256380\noARVdCyRT98,2001.0,3,5,2015,Shallow Hal,Lunch With Rosemary,tt0256380\nG3BQd2K3maI,2001.0,2,5,2015,Shallow Hal,Hal Meets Rosemary,tt0256380\nK4j25DUQLgE,2001.0,1,5,2015,Shallow Hal,Dancing With the Nasties,tt0256380\ntQJTJdTM0Wk,2002.0,5,5,2015,Ice Age,Diego's Sacrifice,tt0268380\nmu-YLZpB6is,2002.0,4,5,2015,Ice Age,Ice Slide,tt0268380\n4RhqR2ZGkc0,2002.0,3,5,2015,Ice Age,Sid and the Dodos,tt0268380\n8dXF7y1QUxU,2002.0,2,5,2015,Ice Age,Where's the Baby?,tt0268380\n_LKe8V-h7h8,2002.0,1,5,2015,Ice Age,Acorn Troubles,tt0268380\n268ZUL4dnn8,1998.0,3,3,2015,The Siege,Arresting the General,tt0133952\nszNrOdjjhkw,1998.0,2,3,2015,The Siege,The Last Cell,tt0133952\nG_OMV0N_Ls4,2001.0,3,3,2015,Someone Like You...,Dr. Charles Revealed,tt0244970\nnM0u8GRt_hU,2001.0,2,3,2015,Someone Like You...,A Late Night Cheer,tt0244970\nE6KKYD3eGlE,1998.0,3,3,2015,Slums of Beverly Hills,We're Freaks,tt0120831\nhFH6FoRzSpM,2001.0,1,3,2015,Someone Like You...,Joy Rapture Ecstasy,tt0244970\n5WGQCJmdEoM,1998.0,2,3,2015,Slums of Beverly Hills,Put On Your Brassiere,tt0120831\n9D9RXt18Qq4,1998.0,1,3,2015,Slums of Beverly Hills,Vivian's First Bra,tt0120831\naLDrW2AXClk,2004.0,5,5,2015,Sideways,Stephanie Attacks Jack,tt0375063\nPPKdHP8zWuo,2004.0,4,5,2015,Sideways,Miles Makes a Scene,tt0375063\nHEMqddRGVBY,2004.0,3,5,2015,Sideways,Golf Rage,tt0375063\nYSkZieDG5U4,2004.0,2,5,2015,Sideways,Miles Misses the Moment,tt0375063\nQCS1Gnwbtp0,2004.0,1,5,2015,Sideways,Miles on Wine,tt0375063\nyqdfje9b9WI,1996.0,3,3,2015,She's the One,Lingerie Test,tt0117628\nIlLkXPTm6ig,1996.0,2,3,2015,She's the One,\"Not Better, Just Different\",tt0117628\nE--mNnOvCm0,1996.0,1,3,2015,She's the One,Wake Up That Libido,tt0117628\nVZrBzpfh6hM,2000.0,3,3,2015,Sexy Beast,A Violent Rant,tt0203119\nsGCjNn2uJr4,2000.0,2,3,2015,No Smoking,Sexy Beast,tt0995740\nrfeDWXk1jso,2000.0,1,3,2015,Sexy Beast,Don Wants an Answer,tt0203119\nJ4LB77duP_0,1998.0,1,3,2015,The Siege,Bus Bombing,tt0133952\nt4WP3bODmfo,1975.0,1,5,2015,The Rocky Horror Picture Show,Dammit Janet Scene,tt0073629\nG59JnM4JKNQ,1993.0,3,5,2015,Robin Hood: Men in Tights,Men in Tights,tt0107977\nataOtn-F5s4,2006.0,3,3,2015,Assassination Attempt,The Sentinel,tt0081609\nCqgTNaplJdg,2006.0,1,3,2015,The Sentinel,Protecting the First Lady,tt0443632\ndWQ3B8qTpes,2006.0,2,3,2015,Shots Fired,The Sentinel,tt5093452\nwb1HDnYPPoo,1975.0,4,5,2015,The Rocky Horror Picture Show,Hot Patootie Bless My Soul Scene,tt0073629\n-w0WPkB3XJ4,1975.0,2,5,2015,The Rocky Horror Picture Show,The Time Warp Scene,tt0073629\nZCZDWZFtyWY,1975.0,3,5,2015,The Rocky Horror Picture Show,Sweet Transvestite Scene,tt0073629\nJKMpRikJeLI,1975.0,5,5,2015,The Rocky Horror Picture Show,Creature of the Night Scene,tt0073629\naNOmTuwnGYg,1972.0,5,5,2015,The Poseidon Adventure,Take Me!,tt0069113\nr_9PgiNuwDc,1972.0,4,5,2015,The Poseidon Adventure,You Killed Her!,tt0069113\n3MKwR7JipEc,1972.0,2,5,2015,The Poseidon Adventure,Ballroom is Flooded,tt0069113\nTxuEWb4b_gU,1972.0,3,5,2015,The Poseidon Adventure,Rapidly Rising Water,tt0069113\nQ49LEs_bhaU,1998.0,3,3,2015,The Object of My Affection,What Do You Want?,tt0120772\nquEBzmchcwc,1998.0,2,3,2015,The Object of My Affection,George Accepts Fatherhood,tt0120772\n6kKCbDw7lR4,1972.0,1,5,2015,The Poseidon Adventure,The Tidal Wave Hits,tt0069113\noKYBGq7pt3M,1998.0,1,3,2015,The Object of My Affection,Dancing Into Love,tt0120772\ndyqDd8esYdc,1989.0,5,5,2015,Say Anything...,Ding,tt0098258\n_Ib_lBGuoUQ,1989.0,4,5,2015,Say Anything...,I Need You,tt0098258\nPvuv2sn5fDQ,1989.0,2,5,2015,Say Anything...,Career Plans,tt0098258\nS5Y8tFQ01OY,1989.0,3,5,2015,Say Anything...,Boombox Serenade,tt0098258\nUUZsR3rFjEU,1989.0,1,5,2015,Say Anything...,Asking Diane Out,tt0098258\nAwLRD7iEEKI,2005.0,3,3,2015,Robots,Victory,tt0343818\nhr0hb0gc2eQ,1993.0,5,5,2015,Robin Hood: Men in Tights,It's Good to Be the King,tt0107977\nIthAv1JkF-0,2005.0,2,3,2015,Robots,Charge!,tt0343818\ntI4RvWvgulc,1993.0,4,5,2015,Robin Hood: Men in Tights,Iron Underwear,tt0107977\nhM6ItEXb_Us,2005.0,1,3,2015,Robots,The Cross-Town Express,tt0343818\nQNpPmiU7BBs,1993.0,2,5,2015,Robin Hood: Men in Tights,Lend Me Your Ears,tt0107977\nouXz_ETh2eI,1987.0,5,5,2015,Raising Arizona,Child Abandonment,tt0093822\n5xIU6_w6ohg,1993.0,1,5,2015,Robin Hood: Men in Tights,Robin Rescues Ahchoo,tt0107977\nCQ67ZyZtKjU,1987.0,2,5,2015,Raising Arizona,A Vision From Hell,tt0093822\ndWJuJlmcabY,1987.0,3,5,2015,Raising Arizona,Dot & Glen,tt0093822\nYpa0vpmCzdc,1987.0,1,5,2015,Raising Arizona,Broken Arrows,tt0093822\nlixII1thTO4,1987.0,4,5,2015,Raising Arizona,Picking up Diapers,tt0093822\nbHwiXFc9MOw,1990.0,5,5,2015,Predator 2,The Hunter Becomes the Hunted,tt0100403\nDw5W0T5fV70,1990.0,4,5,2015,Predator 2,It's Your Move,tt0100403\nkyGcsRDBJLM,1990.0,3,5,2015,Predator 2,A Cut Above,tt0100403\nmDLS12_a-fk,1968.0,5,5,2015,Planet of the Apes,Statue of Liberty,tt0063442\nnzz_3bQHyiY,1990.0,2,5,2015,Predator 2,One Ugly Motherf***er,tt0100403\nDruCG3LJiiU,1968.0,1,5,2015,Planet of the Apes,The Human Hunt,tt0063442\n0_m8AmAm-XE,1968.0,4,5,2015,Planet of the Apes,You Damn Dirty Ape!,tt0063442\neiQD0Wk6Ekg,1990.0,1,5,2015,Predator 2,They're All Dead,tt0100403\n3BSdoHadj2w,1968.0,3,5,2015,Planet of the Apes,Writing in the Sand,tt0063442\ngzRy-pvwdL0,1968.0,2,5,2015,Planet of the Apes,\"Human See, Human Do\",tt0063442\n9CjMbFa2Oj8,1997.0,3,3,2015,A Second Chance,Picture Perfect,tt3305316\nRe5WOfcJg5A,1997.0,1,3,2015,Picture Perfect,Mounting an Offensive,tt0119896\n4uaPFQxS6pU,2002.0,4,5,2015,Phone Booth,A Little Tantrum,tt0183649\n6xaUD1jKFWg,2002.0,3,5,2015,Phone Booth,Unhappy Childhood,tt0183649\n3lkG_MD7T9U,2002.0,5,5,2015,Phone Booth,The Confession,tt0183649\nyvC60Y-AqLc,1997.0,2,3,2015,Picture Perfect,\"Boxer Shorts, a T-Shirt, and a Smile\",tt0119896\nJiI91igl180,2002.0,1,5,2015,Phone Booth,Telescopic Sight,tt0183649\n88YBTmbAaoY,2002.0,2,5,2015,Phone Booth,Call for Help,tt0183649\nPehCORojjtw,1970.0,5,5,2015,Patton,A Weather Prayer,tt0066206\nJipg0KQ4id0,2002.0,4,5,2015,One Hour Photo,Sy Threatens Bill,tt0265459\nOdU3vEh3qfs,2002.0,5,5,2015,One Hour Photo,Sy Explains Himself,tt0265459\nYrtS2_TfbeY,1970.0,4,5,2015,Patton,I Won't Have Cowards in My Army,tt0066206\ndObTXYa-_n4,1970.0,3,5,2015,Patton,\"Rommel, You Magnificent Bastard\",tt0066206\nsv9XNFpRdhg,1970.0,1,5,2015,Patton,Americans Love a Winner,tt0066206\nBRccUGaFz2s,2002.0,2,5,2015,One Hour Photo,Uncle Sy,tt0265459\nXpEtHWMpiFc,1970.0,2,5,2015,Patton,Complete Air Supremacy,tt0066206\nbJNpX5bfXcw,2002.0,3,5,2015,One Hour Photo,The Planted Photo,tt0265459\nURquvu9F3jo,2002.0,1,5,2015,One Hour Photo,Sy's Dream,tt0265459\nhEY2L9sXjwU,1999.0,5,5,2015,Never Been Kissed,Finally Kissed,tt0151738\nY4g859J_920,1999.0,3,5,2015,Never Been Kissed,Ferris Wheel Ride,tt0151738\n47IVX23yRyQ,1999.0,1,5,2015,Never Been Kissed,First Day of High School,tt0151738\nSippOkFBMAE,1999.0,2,5,2015,Never Been Kissed,Josie Gets Stoned,tt0151738\nWqYtAApeiDA,1999.0,4,5,2015,Never Been Kissed,Josie's Prom Speech,tt0151738\nc0P_u-zs5-I,1994.0,1,3,2015,Nell,The Spirit,tt0110638\nX8slBBJG-x0,1994.0,2,3,2015,Nell,Making Love,tt0110638\npytH_ezVouk,1994.0,3,3,2015,Nell,Everyone Goes Away,tt0110638\nb58fAt0MdgI,2004.0,5,5,2015,Napoleon Dynamite,Girls Only Want Boyfriends Who Have Skills,tt0374900\nNZJrGuC92U8,2004.0,2,5,2015,Napoleon Dynamite,I've Been Chatting Online with Babes All Day,tt0374900\nxL-VX3WbA9U,2004.0,4,5,2015,Napoleon Dynamite,Uncle Rico Could Have Gone Pro,tt0374900\nmJYE0HuKNfI,2004.0,3,5,2015,Napoleon Dynamite,The Bus Shows Up at Exactly the Wrong Time,tt0374900\npO09fucTEuk,2004.0,1,5,2015,Napoleon Dynamite,Napoleon Checks Out Pedro's Bike,tt0374900\n_KinUMIS3Yc,1999.0,4,5,2015,Office Space,Copy Machine Beat Down,tt0151804\nF7SNEdjftno,1999.0,5,5,2015,Office Space,Joanna Quits With Flair,tt0151804\nuiik3zS4y4I,1999.0,2,5,2015,Office Space,Bad Case of the Mondays,tt0151804\ncgg9byUy-V4,1999.0,3,5,2015,Office Space,Motivation Problems,tt0151804\njsLUidiYm0w,1999.0,1,5,2015,Office Space,Did You Get the Memo?,tt0151804\nxEvb7B4O698,1987.0,5,5,2015,Predator,What the Hell Are You? Scene,tt0093773\n80EaBRgGylo,1987.0,4,5,2015,Predator,One Ugly Motherf***er Scene,tt0093773\nTU7CDejp6Lw,1987.0,2,5,2015,Predator,Get to the Chopper Scene,tt0093773\nmGLXbK2XWMY,1987.0,3,5,2015,Predator,vs. Dutch Scene,tt0093773\nwgzxSr6l9Y4,1987.0,1,5,2015,Predator,Old Painless Is Waiting Scene,tt0093773\n-kFJKQvCrkY,2006.0,3,3,2015,The Namesake,Making Mothers Happy,tt0433416\nbNdddrIe6dQ,1958.0,3,3,2015,\"The Long, Hot Summer\",I'm Gonna Kiss You,tt0051878\nJgv93j5xcpQ,2006.0,2,3,2015,The Namesake,The Story Behind the Name,tt0433416\nwsYNpHaKJIc,2006.0,1,3,2015,The Namesake,Arranging a Marriage,tt0433416\nqTa5iKsbAno,1958.0,1,3,2015,\"The Long, Hot Summer\",You Talk a Lot,tt0051878\n7tK-k8UURYk,1958.0,2,3,2015,\"The Long, Hot Summer\",Get Out of Character,tt0051878\nsYVz2G-r01U,1992.0,3,5,2015,The Last of the Mohicans,The Death of Uncas,tt0104691\nokGQj644_Ds,1992.0,4,5,2015,The Last of the Mohicans,Alice's Suicide,tt0104691\neRRG_PNOQmA,1992.0,5,5,2015,The Last of the Mohicans,Chingachgook Battles Magua,tt0104691\nJRU1SrdXEZc,2006.0,2,3,2015,The Last King of Scotland,Nicholas Shoots a Cow,tt0455590\nUyzInzm8gW8,2006.0,3,3,2015,The Last King of Scotland,Hung From Hooks,tt0455590\nk2edI8Gu6k8,1992.0,2,5,2015,The Last of the Mohicans,I Will Find You!,tt0104691\nF7_aagPOpUU,2006.0,1,3,2015,The Last King of Scotland,Idi Speaks,tt0455590\nOeSwSYmipqo,2001.0,3,5,2015,Moulin Rouge!,Silly Love Songs,tt0203009\na1REfTIc5po,2001.0,1,5,2015,Moulin Rouge!,Diamonds Are a Girl's Best Friend,tt0203009\nq75FfwmyF4I,1992.0,1,5,2015,The Last of the Mohicans,Hawkeye & Cora,tt0104691\n3nGQLQF1b6I,1992.0,5,5,2015,My Cousin Vinny,Automotive Expert,tt0104952\nDh0210A-VZo,1992.0,3,5,2015,My Cousin Vinny,Her Biological Clock,tt0104952\nK6qGwmXZtsE,1992.0,4,5,2015,My Cousin Vinny,\"Two \"\"Yutes\"\"\",tt0104952\nDa7GSy-6mJY,1992.0,2,5,2015,My Cousin Vinny,Deer Hunter,tt0104952\n2-FvDteymnM,1992.0,1,5,2015,My Cousin Vinny,The Wrong Idea,tt0104952\nAqNEZ_QgvI4,1993.0,5,5,2015,Mrs. Doubtfire,Looks Like a Lady,tt0107614\n7m8_QLnRBFo,1993.0,3,5,2015,Mrs. Doubtfire,'s Cake Face,tt0107614\ntGxxl7LOe_4,1993.0,4,5,2015,Mrs. Doubtfire,Hot Flashes,tt0107614\nUVmSx9Vv5M8,2001.0,5,5,2015,Moulin Rouge!,The Duke Tries to Kill Christian,tt0203009\n7hsAbjmNpKU,1993.0,2,5,2015,Mrs. Doubtfire,Could You Make Me a Woman?,tt0107614\n6wC2DqFJ7UE,1993.0,1,5,2015,Mrs. Doubtfire,I Do Voices,tt0107614\nF8dW1ddAC_4,2001.0,4,5,2015,Moulin Rouge!,Come What May,tt0203009\nM2sjRRcONOc,1947.0,5,5,2015,Miracle on 34th Street,Susan Believes,tt0039628\nlgRkMyW_J5U,2001.0,2,5,2015,Moulin Rouge!,Your Song,tt0203009\njagJeaLXRRQ,1947.0,4,5,2015,Miracle on 34th Street,The One and Only Santa Claus,tt0039628\n--uyzf7X_0c,1947.0,2,5,2015,Miracle on 34th Street,Santa Won't Lie to Susan,tt0039628\nOvE_mDtTj20,1947.0,3,5,2015,Miracle on 34th Street,Christmas Is a Frame of Mind,tt0039628\nvJCHzRIOOL0,1947.0,1,5,2015,Miracle on 34th Street,The Commercialization of Christmas,tt0039628\nGyaIF1iTs-Y,2000.0,5,5,2015,\"Me, Myself & Irene\",Charlie vs. Hank,tt0183505\ngh2apPe9pSI,2000.0,2,3,2015,Men of Honor,Carl Is Injured,tt0203019\nQhCISxbO7rg,2000.0,3,3,2015,Men of Honor,12 Steps,tt0203019\nFixQE61iSDg,2000.0,1,3,2015,Men of Honor,Til He Stops Moving,tt0203019\nlCUBQnsS9go,2000.0,2,5,2015,\"Me, Myself & Irene\",Cotton Mouth,tt0183505\nYWRzPLzHJl0,2000.0,1,5,2015,\"Me, Myself & Irene\",Hank Comes Out,tt0183505\n2UYrsFeBZoI,2000.0,3,5,2015,\"Me, Myself & Irene\",Survival Mode,tt0183505\nJJeNvH2hmPM,2000.0,4,5,2015,\"Me, Myself & Irene\",What Is Your Problem?,tt0183505\nTRHN5vxnZrI,1970.0,3,5,2015,MASH,The Last Supper,tt0066026\nLXtVS8SFmJw,1970.0,2,5,2015,MASH,Sayonara to Frank Burns,tt0066026\n45X0_m1KYQM,1970.0,5,5,2015,MASH,This Is an Insane Asylum!,tt0066026\nHpmdYRs4lEs,1970.0,1,5,2015,MASH,Hot Lips on the Radio,tt0066026\nuYTl9G6HoW0,1970.0,4,5,2015,MASH,A Shower With Hot Lips,tt0066026\nzHoZ2Ti6xco,1990.0,2,5,2015,Marked for Death,Window Shopping,tt0100114\nOANpF6uHmBQ,1990.0,1,5,2015,Marked for Death,A Gift From God,tt0100114\nH0BUIYk2irQ,1990.0,3,5,2015,Marked for Death,Mall Madness,tt0100114\nZObnyBWAZSI,1990.0,5,5,2015,Marked for Death,Hatcher Battles Screwface,tt0100114\nHur4Esxuurk,2004.0,1,5,2015,Man on Fire,Pita Is Kidnapped,tt0328107\noHOnldgbjy8,1990.0,4,5,2015,Marked for Death,Bulldozer Sandwich,tt0100114\ndtOaXCoryQo,2004.0,2,5,2015,Man on Fire,RPG Meets SUV,tt0328107\n5JU326dvQ2g,2004.0,3,5,2015,Man on Fire,Suppository Bomb,tt0328107\ncrB4KD3p8HU,2004.0,5,5,2015,Man on Fire,Pita Lives,tt0328107\nizxkFm060yU,2004.0,4,5,2015,Man on Fire,I Wish You Had More Time,tt0328107\njsz79bztNJI,2007.0,4,5,2015,Live Free or Die Hard,Freeway Fighter,tt0337978\n2wXBmSecjDo,2007.0,3,5,2015,Live Free or Die Hard,Spiderboy,tt0337978\nrdzVVp7e_0Y,2007.0,2,5,2015,Live Free or Die Hard,Death Plunge,tt0337978\nECfvSmDe_-0,2006.0,5,5,2015,Little Miss Sunshine,A Family Affair,tt0449059\nr1gBq45CkgI,2007.0,1,5,2015,Live Free or Die Hard,Helicopter Meets Car,tt0337978\ncHT2zdQT3Ps,2007.0,5,5,2015,Live Free or Die Hard,Getting Gabriel,tt0337978\n7VbYokM9dY4,2006.0,4,5,2015,Little Miss Sunshine,Remembrance of Things,tt0449059\nakMZQpIbTm4,2006.0,3,5,2015,Little Miss Sunshine,Dwayne's Breakdown,tt0449059\n-QNxYSDdpig,2006.0,1,5,2015,Little Miss Sunshine,Frankly Speaking,tt0449059\n0jTSJ6NK6-4,2006.0,2,5,2015,Little Miss Sunshine,Olive Wants It,tt0449059\nLxXjsQbCZR8,2002.0,4,5,2015,Kung Pow: Enter the Fist,Cow Fight,tt0240468\n63IwUcBK_Rs,2002.0,3,5,2015,Kung Pow: Enter the Fist,Whoa the One-Boobed,tt0240468\n941z56i7QJE,2002.0,1,5,2015,Kung Pow: Enter the Fist,Under Constant Attack,tt0240468\n4bAPlP2HX7o,2002.0,2,5,2015,Kung Pow: Enter the Fist,Ready for Trouble,tt0240468\nDz6Pe77tpPg,2002.0,5,5,2015,Kung Pow: Enter the Fist,Master Tang Is Killed,tt0240468\nuy_2GCNyzgk,2001.0,1,3,2015,Kissing Jessica Stein,Reaction Time,tt0264761\nE25WrYP_1tU,2001.0,3,3,2015,Kissing Jessica Stein,An Affront to Gay People,tt0264761\nzzgvxdPlUwA,2005.0,4,5,2015,Kingdom of Heaven,Defending the Walls,tt0320661\nsBJ2jguXBes,2005.0,2,5,2015,Kingdom of Heaven,Outnumbered,tt0320661\n1nKBe0dzhvg,2001.0,2,3,2015,Kissing Jessica Stein,Lesbian Sex,tt0264761\nc8wj-v1Jdyc,2005.0,3,5,2015,Kingdom of Heaven,Ambush,tt0320661\nqG8YoqrNMEA,2005.0,5,5,2015,Kingdom of Heaven,No Quarter,tt0320661\nHTjeSsgZVW4,2003.0,1,3,2015,Just Married,Mile High Club Scene,tt0305711\nTKBQuK1988w,2003.0,2,3,2015,Just Married,Roach Hotel Scene,tt0305711\n6p1EuLz9Fes,2005.0,1,5,2015,Kingdom of Heaven,Knight's Oath,tt0320661\ngRLpvojaVBM,2003.0,3,3,2015,Just Married,Wicked Wendy Scene,tt0305711\nte-hhtqatQk,1986.0,5,5,2015,Jumpin' Jack Flash,Office Shootout,tt0091306\nB6-nYQbUteA,1986.0,3,5,2015,Jumpin' Jack Flash,Shredder Fight,tt0091306\n4kC1v_wKF7M,1986.0,4,5,2015,Jumpin' Jack Flash,Chocolate Whizway,tt0091306\njKC6UsetwN4,1986.0,2,5,2015,Jumpin' Jack Flash,Tourette's Syndrome,tt0091306\niyHNryKojDY,1986.0,1,5,2015,Jumpin' Jack Flash,Deciphering Mick Jagger,tt0091306\nmgSDir-wcGk,2004.0,2,3,2015,Johnson Family Vacation,Chrishelle Blesses the Food,tt0359517\nmR4FXksKdKg,2004.0,1,3,2015,Johnson Family Vacation,Butt Naked in 304,tt0359517\niv1eE7qxDXA,2004.0,3,3,2015,Johnson Family Vacation,Alligator in Bed,tt0359517\ngP_GbzDWoY0,1944.0,5,10,2015,Arsenic and Old Lace,Low Brows,tt0036613\ns8WzJJoKq_4,1944.0,3,10,2015,Arsenic and Old Lace,Your Nephew Jonathan,tt0036613\ntg2X2RZsGy4,1944.0,8,10,2015,Arsenic and Old Lace,The Difference Between Plays and Reality,tt0036613\nBGyfOMCRBn0,1944.0,7,10,2015,Arsenic and Old Lace,Insanity Runs in My Family,tt0036613\nIn_UKcRXzHs,1944.0,10,10,2015,Arsenic and Old Lace,The Son of a Sea Cook!,tt0036613\nqj0L0g36IXU,1944.0,9,10,2015,Arsenic and Old Lace,He Looks Like Boris Karloff!,tt0036613\nKPAnWhVV5dI,1944.0,1,10,2015,Arsenic and Old Lace,The Gentleman in the Window Seat,tt0036613\nBDLvzvFFRu8,1944.0,6,10,2015,Arsenic and Old Lace,The Cellar's Crowded Already,tt0036613\nKWAQRU2PeeM,1944.0,4,10,2015,Arsenic and Old Lace,What Are You Doing Here?,tt0036613\nLVflxqHuw2I,1944.0,2,10,2015,Arsenic and Old Lace,Elderberry Wine,tt0036613\nRiaUv2MwZ3E,1993.0,4,5,2015,The Good Son,Over the Edge,tt0107034\no2J59hT1Vto,1993.0,2,5,2015,The Good Son,Meet Mr. Highway,tt0107034\nxqsDUwDwdUM,1993.0,5,5,2015,The Good Son,Life and Death Choice,tt0107034\nyKguB1M0JFU,1993.0,1,5,2015,The Good Son,Homemade Crossbow,tt0107034\na-h2glY0jyg,1993.0,3,5,2015,The Good Son,Secrets and Lies,tt0107034\nhVPSsxFKDLM,2006.0,5,5,2015,The Hills Have Eyes,Ruby Saves Doug,tt0454841\nRFjVbXNMsNk,2006.0,4,5,2015,The Hills Have Eyes,Doug Kills Pluto,tt0454841\n7SU4vD1T4oI,2006.0,3,5,2015,The Hills Have Eyes,Big Brain,tt0454841\nzFxq7CCpzss,2006.0,1,5,2015,The Hills Have Eyes,Burned Alive,tt0454841\nbz8JoC9BpV0,2006.0,2,5,2015,The Hills Have Eyes,Lizard Attacks,tt0454841\nfRQsuCJ-g4I,1961.0,5,5,2015,The Hustler,Eddie Stands Up to Bert,tt0054997\nmUxLZWWRKUI,1961.0,4,5,2015,The Hustler,\"You're a Winner, Eddie\",tt0054997\nbpc3TKhS6MU,1961.0,2,5,2015,The Hustler,\"I Gotta Hunch, Fat Man\",tt0054997\nF8QVrLcmRdA,1961.0,3,5,2015,The Hustler,It's Not Over Until Fats Says So,tt0054997\nI5XMnxp2S9Q,1961.0,1,5,2015,The Hustler,Like He's Playing the Violin,tt0054997\n0PCcz5_8IEI,1998.0,5,5,2015,How Stella Got Her Groove Back,Ever Consider Stanford?,tt0120703\nqS2Np6zxXm0,1998.0,4,5,2015,How Stella Got Her Groove Back,Happy to See Mom,tt0120703\nT_SHaqh4NdQ,1998.0,3,5,2015,How Stella Got Her Groove Back,Dance Grooves,tt0120703\nITicydPuKRI,1998.0,1,5,2015,How Stella Got Her Groove Back,Big Old Ho Slut,tt0120703\nNH_wHu33CMw,1998.0,2,5,2015,How Stella Got Her Groove Back,Not Even Legal,tt0120703\nli2zByHeanQ,2007.0,5,5,2015,Hitman,\"Die, Bodyguards\",tt0465494\ncFVtyYzs48I,2007.0,4,5,2015,Hitman,Barrage of Bullets,tt0465494\nXQdE3ydNvCU,2007.0,3,5,2015,Hitman,Sword Fight,tt0465494\n6T_cb2U5lro,2007.0,2,5,2015,Hitman,Hotel Shootout,tt0465494\nOjIh7FHeH8c,2007.0,1,5,2015,Hitman,A Gut Bomb,tt0465494\nP_8O-iDvlmA,1991.0,4,5,2015,Barton Fink,Madman Mundt,tt0101410\nyeBM3nwwmlE,1991.0,5,5,2015,Barton Fink,You're a Write-Off!,tt0101410\n0CrSOPGvblI,1991.0,3,5,2015,Barton Fink,He's Taken a Interest!,tt0101410\nLiN26NHb4ao,1991.0,2,5,2015,Barton Fink,Theater of the Common Man,tt0101410\nVN54kkl_nTI,1991.0,1,5,2015,Barton Fink,That  Feeling,tt0101410\nvO6EKe8gVXk,2004.0,5,5,2015,I Heart Huckabees,Elevator Epiphanies,tt0356721\n9EilqfAIudI,2004.0,4,5,2015,I Heart Huckabees,The Ball Thing,tt0356721\nfjqjWC3Ycr4,2004.0,3,5,2015,I Heart Huckabees,Cracks & Connections,tt0356721\nw2eNQ75wdq8,2004.0,2,5,2015,I Heart Huckabees,Dinner With Steven,tt0356721\nhSdrwqLUpD0,2004.0,1,5,2015,I Heart Huckabees,The Blanket Truth,tt0356721\n2BNVMvzHvT4,1997.0,2,3,2015,Inventing the Abbotts,Lust in the Library Scene,tt0119381\nYd1Bx8u7Om4,2005.0,3,3,2015,In Her Shoes,Maggie's Surprise,tt0388125\nKQt2qAPhUAI,1997.0,3,3,2015,Inventing the Abbotts,Moving Too Fast Scene,tt0119381\nYP2dblWITA0,2005.0,1,3,2015,In Her Shoes,The Art of Losing,tt0388125\nkgNMy-k2VnA,1997.0,1,3,2015,Inventing the Abbotts,Kissing in the Garage Scene,tt0119381\n6sMjSp6yOBY,2005.0,2,3,2015,In Her Shoes,Rose Finds Maggie,tt0388125\nRsmcYTQsgIM,2006.0,1,3,2015,John Tucker Must Die,Gym Fight,tt0455967\nLh7bN_qJz8U,2006.0,3,3,2015,John Tucker Must Die,Wrong Room,tt0455967\nBHIg0d4KQMc,2006.0,2,3,2015,John Tucker Must Die,Kissing Lesson,tt0455967\n188YJIcBUkQ,1996.0,4,5,2015,Jingle All the Way,Christmas Chaos,tt0116705\njWyeugspkUA,1996.0,2,5,2015,Jingle All the Way,Santa Smackdown,tt0116705\nblbqbdPFfns,1996.0,5,5,2015,Jingle All the Way,Howard Saves Jamie,tt0116705\nVsZ4L4HwUFs,1996.0,3,5,2015,Jingle All the Way,Harmless Package,tt0116705\nYTcFsdIJ_Xo,1996.0,1,5,2015,Jingle All the Way,Looking for Turbo Man,tt0116705\nBKTyV8Msk8o,1997.0,3,3,2015,The Ice Storm,Key Party,tt0119349\nMeRtEy1FVAU,1997.0,2,3,2015,The Ice Storm,Wendy and Sandy,tt0119349\n4uDUNAPdYb4,1997.0,1,3,2015,The Ice Storm,Thanksgiving Dinner,tt0119349\nQtrJ6ojRtik,2002.0,2,3,2015,In America,Save My Baby,tt0298845\nS7rZsWVUAFI,2002.0,3,3,2015,In America,\"Goodbye, Frankie\",tt0298845\nc_TXof1C-OI,1985.0,5,5,2015,The Jewel of the Nile,A Swinging Rescue,tt0089370\nze-aAIzwD_E,2002.0,1,3,2015,In America,Mateo is Dying,tt0298845\nJAHLYTVcm5M,1985.0,4,5,2015,The Jewel of the Nile,Nubian Wrestler,tt0089370\ndDQ0rUdj0KM,1985.0,2,5,2015,The Jewel of the Nile,Escape by Jet,tt0089370\nIFc2QKCnGEg,1985.0,3,5,2015,The Jewel of the Nile,Eat Rock!,tt0089370\nw5PGP9-_x5E,1985.0,1,5,2015,The Jewel of the Nile,A Lucky Reunion,tt0089370\nEJ5ywAAmiU4,2004.0,5,5,2015,\"I, Robot\",Spooner Destroys V.I.K.I.,tt0343818\nL1UxZJ9owXY,2004.0,3,5,2015,\"I, Robot\",Freeway Ambush,tt0343818\niz3l5GLSWJk,2004.0,4,5,2015,\"I, Robot\",Part Robot,tt0343818\nrkaXuC5hrCE,2004.0,2,5,2015,\"I, Robot\",Demolition,tt0343818\nOuht1xip9NQ,2004.0,1,5,2015,\"I, Robot\",Rogue Robot,tt0343818\nbhGfpwfae-k,1996.0,2,5,2015,Independence Day,Close Encounter,tt0116629\nZlawibQ_QKI,1996.0,3,5,2015,Independence Day,Nuke 'Em,tt0116629\nvjFG-4Ge668,1996.0,1,5,2015,Independence Day,Time's Up,tt0116629\nNyOTaHRBTXc,1996.0,5,5,2015,Independence Day,Russell Becomes a Hero,tt0116629\n9t1IK_9apWs,1996.0,4,5,2015,Independence Day,The President's Speech,tt0116629\nzsqpY4w2e1Q,2006.0,4,5,2015,Eragon,Dragon Battle,tt0449010\nM_bzbtdfaik,2006.0,1,5,2015,Eragon,Feeding a Dragon,tt0449010\nshj7YP98Yxs,2006.0,2,5,2015,Eragon,Dragon Rider,tt0449010\n51iAljD9Q7Q,2006.0,3,5,2015,Eragon,Fear and Courage,tt0449010\nK0xpWKgNCk0,2006.0,5,5,2015,Eragon,Kills Durza,tt0449010\na2872XpfqKY,1992.0,3,5,2015,Home Alone 2: Lost in New York,Staple Gun Doorknob Scene,tt0104431\nsqhPvOlgzjo,2005.0,3,3,2015,Hide and Seek,Goodbye Charlie,tt0382077\nzbJwjn4p0cQ,2005.0,1,3,2015,Hide and Seek,Elizabeth Finds Charlie,tt0382077\nr-ddXOrPiZ0,2005.0,2,3,2015,Hide and Seek,Charlie Attacks the Sheriff,tt0382077\n6zFeIaPbJwM,1993.0,2,5,2015,Hot Shots! Part Deux,\"Kiss Me, Topper\",tt0107144\nsAwwDhNJJO0,1993.0,3,5,2015,Hot Shots! Part Deux,Limo Lovin',tt0107144\n9aqopEQr7wI,1993.0,4,5,2015,Hot Shots! Part Deux,Bloodiest Movie Ever,tt0107144\nzgYGbR8f1PA,1991.0,5,5,2015,Hot Shots!,In for a Landing,tt0102059\nECiut2qgJck,1991.0,4,5,2015,Hot Shots!,Emergency Medical Care,tt0102059\n3JkBKGttM_U,1991.0,3,5,2015,Hot Shots!,Dead Meat's Lucky Day,tt0102059\ndZwnXa6XHSI,1991.0,1,5,2015,Hot Shots!,Topper Meets His Shrink,tt0102059\n5ogVT5mpg6c,1991.0,2,5,2015,Hot Shots!,The Food of Love,tt0102059\nq437KEcmwmM,2001.0,5,5,2015,From Hell,Carriage Collapse,tt0120681\nryvvNrcMh-c,2001.0,4,5,2015,From Hell,I Gave Birth to the 20th Century,tt0120681\nmphHRcrJfNE,2001.0,3,5,2015,From Hell,Chasing the Dragon,tt0120681\no2xprwwIMXM,2001.0,2,5,2015,From Hell,I'm Still a Woman,tt0120681\nfluJSCbNpDM,2001.0,1,5,2015,From Hell,Paying the Ferryman,tt0120681\nnhP_9bFQvjg,2004.0,5,5,2015,Flight of the Phoenix,The Phoenix Flies,tt0377062\nNEJtJu--hto,2004.0,3,5,2015,Flight of the Phoenix,That Settles That,tt0377062\n_KCXk-BhTd8,2004.0,4,5,2015,Flight of the Phoenix,Toy Planes,tt0377062\nfWP17t95S2k,2004.0,2,5,2015,Flight of the Phoenix,Electrical Storm,tt0377062\nQMJfw8aF90Y,2004.0,1,5,2015,Flight of the Phoenix,The Crash,tt0377062\nBP6N_JrLUIM,1993.0,5,5,2015,Hot Shots! Part Deux,A Parting Shot,tt0107144\nTNkvLDF7JOY,1993.0,1,5,2015,Hot Shots! Part Deux,Topper's Kickboxing Match,tt0107144\nmDUSjBiHYeY,1990.0,5,5,2015,Home Alone,Kevin Escapes Scene,tt0099785\nS7OWoc-j8qQ,1990.0,4,5,2015,Home Alone,Thirsty for More? Scene,tt0099785\nddXUQu9RC4U,1990.0,3,5,2015,Home Alone,Booby Traps Scene,tt0099785\n_qu4ZBCU6Fc,1990.0,1,5,2015,Home Alone,Kevin Washes Up Scene,tt0099785\ntpfOhYRYv80,1990.0,2,5,2015,Home Alone,Scaring Marv Scene,tt0099785\nbI9CAfqY3hk,1992.0,5,5,2015,Hoffa,The Assassination,tt0104427\nJY6N-tEppkg,1992.0,2,5,2015,Hoffa,Labor Riot,tt0104427\nzE2-th0lNbg,1992.0,3,5,2015,Hoffa,The Deer Hunter.,tt0104427\n9h9W4c2YLCg,1992.0,4,5,2015,Hoffa,vs. Kennedy,tt0104427\nFVg9En9jYSo,1992.0,1,5,2015,Hoffa,Explosive Accident,tt0104427\nhwpHOq3Xbks,2004.0,5,5,2015,Garfield,Saved by Lasagna,tt0356634\nSgqfufV0AL0,2004.0,4,5,2015,Garfield,Ventilation Shaft Ride,tt0356634\ntUuzV9kwSBE,2004.0,3,5,2015,Garfield,Odie Steals the Show,tt0356634\n6_5QkJsNCho,2004.0,2,5,2015,Garfield,Odie Saves,tt0356634\nPojd3KNQq68,2004.0,1,5,2015,Garfield,Cat and Mouse,tt0356634\nZvvlFocf6LU,1971.0,1,5,2015,The French Connection,Bad Santa,tt0067116\nMYv8K_joa6A,1971.0,2,5,2015,The French Connection,Cleaning Up the Bar,tt0067116\nJD-K9Exe8jw,1971.0,3,5,2015,The French Connection,Subway Getaway,tt0067116\nwYMJal35N0o,1971.0,5,5,2015,The French Connection,End of the Line,tt0067116\n2TVyJ-51jzc,1971.0,4,5,2015,The French Connection,Chasing the Train,tt0067116\nE3RQVcNUcTA,1992.0,2,5,2015,Home Alone 2: Lost in New York,Give It to Me Scene,tt0104431\nh_bUcNjmuSk,1992.0,1,5,2015,Home Alone 2: Lost in New York,\"Merry Christmas, You Filthy Animal Scene\",tt0104431\nDh1V8GyyNYE,1992.0,5,5,2015,Home Alone 2: Lost in New York,A Kid vs. Two Idiots Scene,tt0104431\nDTPq0mNS0-0,1992.0,4,5,2015,Home Alone 2: Lost in New York,\"Marv Electrocuted, Harry Blows Up Scene\",tt0104431\nghDDdQxgXRw,2000.0,4,5,2015,\"Dude, Where's My Car?\",Better Than Fabio,tt0242423\nG2Mbj06Ns2Y,2000.0,3,5,2015,\"Dude, Where's My Car?\",Sweet Tattoos,tt0242423\nuL2gxb-TcLM,2000.0,5,5,2015,\"Dude, Where's My Car?\",Zoltan Meeting,tt0242423\nADRGgyhX4YE,2000.0,1,5,2015,\"Dude, Where's My Car?\",Stoner Dog,tt0242423\noqwzuiSy9y0,2000.0,2,5,2015,\"Dude, Where's My Car?\",And Theeennn...,tt0242423\nszLCkEBB6xs,1990.0,2,5,2015,Edward Scissorhands,A Thrilling Experience Scene,tt0099487\nG1DG6f_6nZ8,1990.0,4,5,2015,Edward Scissorhands,Jim Attacks Edward Scene,tt0099487\nd9PlKlirxT4,1990.0,5,5,2015,Edward Scissorhands,Kim Remembers Edward Scene,tt0099487\n64IwbhFYuUM,1990.0,3,5,2015,Edward Scissorhands,Edward Makes Snow Scene,tt0099487\npu523TrIMpg,1990.0,1,5,2015,Edward Scissorhands,Edward Frightens Kim Scene,tt0099487\neCKRI2wEw7I,1999.0,5,5,2015,Fight Club,Letting Yourself Become Tyler Durden,tt0137523\n6pJC0FLA3Sk,1999.0,4,5,2015,Fight Club,Jack's Smirking Revenge,tt0137523\nzvtUrjfnSnA,1999.0,3,5,2015,Fight Club,Chemical Burn,tt0137523\nCR5Jp_ag2M8,1999.0,1,5,2015,Fight Club,I Want You to Hit Me,tt0137523\ndC1yHLp9bWA,1999.0,2,5,2015,Fight Club,The First Rule of,tt0137523\nfaX23LNpQGg,2007.0,5,5,2015,The Darjeeling Limited,I Told You Not to Come Here,tt0838221\nWy6ANzdhy1s,2007.0,3,5,2015,The Darjeeling Limited,I'm Gonna Mace You in the Face!,tt0838221\nmVybomocIw4,2007.0,4,5,2015,The Darjeeling Limited,Let's Get High,tt0838221\n1j8l24hHhgA,2007.0,2,5,2015,The Darjeeling Limited,We Haven't Located Us Yet,tt0838221\nEm4igIXJRgw,2007.0,1,5,2015,The Darjeeling Limited,You're Crazy,tt0838221\nspbfax8dOTk,2005.0,2,5,2015,Elektra,Ninja Assassin,tt0357277\nIYcgbsw7yc4,2005.0,3,5,2015,Elektra,Kiss of Death,tt0357277\nY-zjMdsTYyw,2005.0,4,5,2015,Elektra,Fights Kirigi,tt0357277\nmlcBwNHilHE,2005.0,5,5,2015,Elektra,Defeats Kirigi,tt0357277\nebj_l5icPPg,2005.0,4,5,2015,Fever Pitch,She's Late,tt0332047\nXqmCa8WjX5Q,2005.0,3,5,2015,Fever Pitch,Really Big Fan,tt0332047\nA3WWrwBRH_w,2005.0,1,5,2015,Elektra,Death's Not That Bad,tt0357277\n6qIBzPrHoVk,2005.0,2,5,2015,Fever Pitch,Date With Vomit Girl,tt0332047\nzPN9c-AIezE,2005.0,5,5,2015,Fever Pitch,A Passionate Commitment,tt0332047\nKpOUP8mC9fk,2005.0,1,5,2015,Fever Pitch,Ben Meets Lindsey,tt0332047\nJ03lpGKZ0xc,1998.0,3,5,2015,Ever After,\"Falling for \"\"Henry\"\"\",tt0120631\nZpkIPtYw01k,1998.0,2,5,2015,Ever After,Carrying the Prince,tt0120631\nTrxJeKnKaAk,1998.0,4,5,2015,Ever After,Pebble in Her Shoe,tt0120631\nchBVj94zYDM,1998.0,1,5,2015,Ever After,Contradictions,tt0120631\nZGFHY5JjTZQ,1998.0,5,5,2015,Ever After,Henry Proposes,tt0120631\n-4QqksHXUCc,2004.0,5,5,2015,Dodgeball: A True Underdog Story,Average Joes vs. Purple Cobras,tt0364725\nsT47KfDlwI8,2004.0,1,5,2015,Dodgeball: A True Underdog Story,Instructional Video,tt0364725\nBXveaReACHs,2004.0,4,5,2015,Dodgeball: A True Underdog Story,White Knight,tt0364725\npeUyLXrgYZ0,2004.0,3,5,2015,Dodgeball: A True Underdog Story,Dodgeball Training,tt0364725\nE4e_QytNF4I,1999.0,4,5,2015,Drive Me Crazy,The In Crowd,tt0164114\ns6DlYFmuJXw,1999.0,5,5,2015,Drive Me Crazy,Keep On Lovin' You,tt0164114\nKqQ1UmDPvgA,2004.0,2,5,2015,Dodgeball: A True Underdog Story,The Purple Cobras,tt0364725\nSPiSR_YDfXc,1999.0,2,5,2015,Drive Me Crazy,A Walking Punch Line,tt0164114\ngRyEkrwnyaI,1999.0,3,5,2015,Drive Me Crazy,Cruising Broad Street,tt0164114\nD6DPbztWi8U,1999.0,1,5,2015,Drive Me Crazy,Take Me to Centennial?,tt0164114\nP0Tt7VUMLs8,1990.0,5,5,2015,Die Hard 2,Bon Voyage Scene,tt0099423\nacnUb2KcgdU,1990.0,4,5,2015,Die Hard 2,Enough Friends Scene,tt0099423\njZiR9MHumCk,1990.0,2,5,2015,Die Hard 2,Military Funeral Scene,tt0099423\n3_zKy7ygsHY,1990.0,3,5,2015,Die Hard 2,Snowmobile Chase Scene,tt0099423\ng-P53rME1xE,1990.0,1,5,2015,Die Hard 2,Skywalk Shootout Scene,tt0099423\nI6wRZCV7naE,1988.0,2,5,2015,Die Hard,\"Welcome To The Party, Pal Scene\",tt0095016\ncnQEo4bazIo,1988.0,5,5,2015,Die Hard,\"Happy Trails, Hans Scene\",tt0095016\nLVpnmOXvBR0,1988.0,4,5,2015,Die Hard,McClane Jumps Scene,tt0095016\n2PjZAeiU7uM,2006.0,1,5,2015,The Devil Wears Prada,Gird Your Loins!,tt0458352\nBSRrzrQtmto,1988.0,3,5,2015,Die Hard,Yippee-Ki-Yay Scene,tt0095016\nL0CL__Tvp-o,1988.0,1,5,2015,Die Hard,Ho Ho Ho Scene,tt0095016\nb2f2Kqt_KcE,2006.0,2,5,2015,The Devil Wears Prada,Andy's Interview,tt0458352\n-qdHE9-8spU,2006.0,5,5,2015,The Devil Wears Prada,Everyone Wants to Be Us,tt0458352\nHQSGHbbDR_Q,1951.0,1,5,2015,The Day the Earth Stood Still,Klaatu Comes in Peace,tt0043456\nJa2fgquYTCg,2006.0,3,5,2015,The Devil Wears Prada,Stuff,tt0458352\nK6iF5sINVns,1951.0,2,5,2015,The Day the Earth Stood Still,Gort Appears,tt0043456\nASsNtti1XZs,1951.0,4,5,2015,The Day the Earth Stood Still,Klaatu's Speech,tt0043456\nHSPYgwP9R84,2006.0,4,5,2015,The Devil Wears Prada,Andy Gets a Makeover,tt0458352\nM9phuyRknPw,1951.0,5,5,2015,The Day the Earth Stood Still,The Choice Is Ours,tt0043456\n5NZXmq-E2tM,1951.0,3,5,2015,The Day the Earth Stood Still,Klaatu Barada Nikto,tt0043456\nsKNAfihSpnk,1986.0,6,10,2015,Troll,A Visit From the Wicked Witch,tt0092115\n1e7FILJsiZA,1986.0,2,10,2015,Troll,Peter Turns Into a Pod,tt0092115\niGhEOyypT2A,1986.0,7,10,2015,Troll,The Birth of Brother Elf,tt0092115\nDfW_3qH9G5M,1986.0,1,10,2015,Troll,The  Captures Wendy,tt0092115\nLoo5BhidY-4,1986.0,9,10,2015,Troll,Sleeping Beauty,tt0092115\npMPJV8sYt7k,1986.0,4,10,2015,Troll,The Music of the Monsters,tt0092115\n34c473tq72E,1986.0,5,10,2015,Troll,Jeanette the Nymph,tt0092115\nQ6luiTx1pM8,1986.0,10,10,2015,Troll,A Hero,tt0092115\nZS7BASI6gpM,1986.0,8,10,2015,Troll,Facing Evil,tt0092115\nnRLP98lG1YA,1986.0,3,10,2015,Troll,What Death Looks Like,tt0092115\nkPHbIyDTPHU,1996.0,7,12,2015,Fargo,Morning Sickness Scene,tt0116282\nR4lxBhDtvXQ,1996.0,6,12,2015,Fargo,Whoa Daddy Scene,tt0116282\nRM2N1w6t1KM,1996.0,4,12,2015,Fargo,A Finder's Fee Scene,tt0116282\nbbpQmRxCYUU,1996.0,3,12,2015,Fargo,Total Silence Scene,tt0116282\nMY5NspwaVgk,1996.0,1,12,2015,Fargo,Pancakes Scene,tt0116282\n0hL-fpCsGR8,1996.0,12,12,2015,Fargo,A Little Bit of Money Scene,tt0116282\nWGxTMoDAI7M,1996.0,5,12,2015,Fargo,Fake Phone Call Scene,tt0116282\nTqNaJxRC9NM,1996.0,10,12,2015,Fargo,Lundegaard's Dealership Scene,tt0116282\n0YzsWVUO-_o,1996.0,11,12,2015,Fargo,The Wood Chipper Scene,tt0116282\nMXcxWsdjYHA,1996.0,9,12,2015,Fargo,Carl and the Parking Attendant Scene,tt0116282\n8ltYYXhGCBo,1996.0,8,12,2015,Fargo,Officer Lou's Police Work Scene,tt0116282\nB2LLB9CGfLs,1996.0,2,12,2015,Fargo,TruCoat Scene,tt0116282\nT3nGqPQJqlQ,2002.0,3,5,2015,Bend It Like Beckham,The Winning Goal,tt0286499\nMnUGqPzLojs,2002.0,5,5,2015,Bend It Like Beckham,Going to America,tt0286499\nDk5SrjFVQIM,2002.0,1,5,2015,Bend It Like Beckham,Do You Play For Any Side?,tt0286499\nuopLUlluf-I,2002.0,4,5,2015,Bend It Like Beckham,I Want Her to Win,tt0286499\noZoXYuatXzI,2002.0,2,5,2015,Bend It Like Beckham,Jess and Joe Almost Kiss,tt0286499\nZZyXtEMFfaw,2004.0,5,5,2015,The Day After Tomorrow,Wolves,tt0319262\nGmjAp2eRDH0,2004.0,2,5,2015,The Day After Tomorrow,Super-Sized Tsunami,tt0319262\ndkErNkX2HKM,2004.0,1,5,2015,The Day After Tomorrow,Tornadoes Destroy Hollywood,tt0319262\nL2PdSg-w5T8,2004.0,3,5,2015,The Day After Tomorrow,Body Heat,tt0319262\nMKf_SL_owsY,2004.0,4,5,2015,The Day After Tomorrow,Why He Joined the Team,tt0319262\nDus8r5l5cys,1985.0,5,5,2015,Commando,Let Off Some Steam,tt0088944\nHjNQLXXwYfw,1985.0,4,5,2015,Commando,Rampage,tt0088944\nzB6pvQt0I8s,1985.0,3,5,2015,Commando,I Let Him Go,tt0088944\nYcSXHU0zktM,1985.0,2,5,2015,Commando,Mall Brawl,tt0088944\nhopRenk1oaQ,1985.0,1,5,2015,Commando,He's Dead Tired,tt0088944\nM3u94uEBq9o,2005.0,5,5,2015,Cheaper by the Dozen 2,Kneeboarding,tt0452598\nFccBG82Ocds,2005.0,4,5,2015,Cheaper by the Dozen 2,The Meat Seat,tt0452598\ndjUYiJu6K48,2005.0,2,5,2015,Cheaper by the Dozen 2,Clam Bake,tt0452598\n5e7c30eNNy4,2005.0,3,5,2015,Cheaper by the Dozen 2,Camp out Sing-a-Long,tt0452598\n5SrayNqew08,2003.0,5,5,2015,Cheaper by the Dozen,Best Party Ever,tt0349205\nLRD16Y5xR9Y,2005.0,1,5,2015,Cheaper by the Dozen 2,The Chisler,tt0452598\nZWLQiviq7SM,2003.0,4,5,2015,Cheaper by the Dozen,Overwhelmed,tt0349205\n1ZVwo_elP7Y,2003.0,3,5,2015,Cheaper by the Dozen,Dinner Complications,tt0349205\nI-OaeRbZtk8,2003.0,2,5,2015,Cheaper by the Dozen,Hangin' With the Neighbors,tt0349205\noIjgZ-i9v_k,2003.0,1,5,2015,Cheaper by the Dozen,Frog For Breakfast,tt0349205\n4Y9X5wDG4Dw,1996.0,2,3,2015,Chain Reaction,It's Over,tt0115857\nP4BRIozjuKg,1996.0,3,3,2015,Chain Reaction,Up the Shaft,tt0115857\nxCKGA9yDNgQ,1996.0,1,3,2015,Chain Reaction,Outrunning the Explosion,tt0115857\njZtlV8eroS8,1998.0,5,5,2015,Bulworth,Little Brothers,tt0118798\nPwv4avomXYo,1998.0,4,5,2015,Bulworth,The Cop's Apology,tt0118798\nId0cqNWZ50Y,1998.0,2,5,2015,Bulworth,Raps,tt0118798\nXA62refAB2w,1998.0,1,5,2015,Bulworth,South Central Speech,tt0118798\nf5umSa_YYX0,1998.0,3,5,2015,Bulworth,No More Black Leaders,tt0118798\nbdft59iqlKQ,2002.0,5,5,2015,Brown Sugar,On-Air Love Confession,tt0297037\nhnfpujruuv4,2002.0,4,5,2015,Brown Sugar,We Made a Huge Mistake,tt0297037\neLdQluY23UI,2002.0,2,5,2015,Brown Sugar,She's About to Marry Your Man!,tt0297037\nfa4IKrf2YHI,2002.0,3,5,2015,Brown Sugar,Dre and Sidney Sleep Together,tt0297037\n___OJkS9RK0,2002.0,1,5,2015,Brown Sugar,It's Gonna Be Okay,tt0297037\nITu2LTUPniQ,1999.0,2,3,2015,Brokedown Palace,A Sacred Court,tt0120620\n-3KCgSpt3hU,1999.0,3,3,2015,Brokedown Palace,Character,tt0120620\nWkjEuV1fTrk,1999.0,1,3,2015,Brokedown Palace,Right To An Attorney,tt0120620\nMTEXVT8P354,1987.0,5,5,2015,Broadcast News,Tears on Cue,tt0092699\nA5xTu6AMxq4,1987.0,2,5,2015,Broadcast News,Aaron Struggles on Air,tt0092699\n2zTqIJeCd3c,1987.0,1,5,2015,Broadcast News,She Is This Good,tt0092699\nZTCtiADVAWs,1987.0,3,5,2015,Broadcast News,Aaron Loves Jane,tt0092699\nzPtKevwg7Ko,1987.0,4,5,2015,Broadcast News,Starting the Bad Part,tt0092699\npWYPN21XIEU,1979.0,3,3,2015,Breaking Away,Victory for the Cutters,tt0078902\nVTZ0N7VTDtY,1979.0,2,3,2015,Breaking Away,Sabotage Italian Style,tt0078902\n6DQTWY9wTO8,1979.0,1,3,2015,Breaking Away,A Fight Breaks Out,tt0078902\na1GeB9y9zzo,2006.0,5,5,2015,Big Momma's House 2,Big Momma Brings It Scene,tt0421729\nC3ZMp57PKEA,2006.0,4,5,2015,Big Momma's House 2,On the Beach Scene,tt0421729\nHZzHIl9mBsI,2006.0,1,5,2015,Big Momma's House 2,Big Momma's In the House! Scene,tt0421729\nu2107BTcDbs,2006.0,2,5,2015,Big Momma's House 2,Spa Day Scene,tt0421729\nle6AAhqa_8U,2006.0,3,5,2015,Big Momma's House 2,Hot Rock Massage Scene,tt0421729\nwZaCK0PDUMI,2000.0,5,5,2015,Big Momma's House,Not In  Scene,tt0208003\nkGot2YelCpE,2000.0,4,5,2015,Big Momma's House,Big Momma's Got Game Scene,tt0208003\n9W5MiCLa9DU,2000.0,3,5,2015,Big Momma's House,Delivering the Baby Scene,tt0208003\na9biNJwX3OA,2000.0,2,5,2015,Big Momma's House,Mr. Rawley Scene,tt0208003\nnoT3bA3Ibyk,2000.0,1,5,2015,Big Momma's House,Trapped In the Bathroom Scene,tt0208003\nSwtSrzKWoK4,1970.0,5,5,2015,Beyond the Valley of the Dolls,A Murderous Rampage,tt0065466\nhpDjzODXpBQ,1970.0,4,5,2015,Beyond the Valley of the Dolls,Harris Attempts Suicide,tt0065466\nDvSmeQSDTco,1970.0,3,5,2015,Beyond the Valley of the Dolls,Vehicular Assault,tt0065466\nzh4yF8r5uJI,1970.0,2,5,2015,Beyond the Valley of the Dolls,First Time in a Rolls,tt0065466\nY10g9umKQcM,1970.0,1,5,2015,Beyond the Valley of the Dolls,The Kelly Affair Perform,tt0065466\npMx5aSV7qFg,2000.0,4,5,2015,The Beach,Richard's Hallucination,tt0163978\n-N2mhlvygq0,2000.0,5,5,2015,The Beach,The Unloaded Gun Backfires,tt0163978\nGpQTd7WhT-Q,2000.0,2,5,2015,The Beach,Night Swimming,tt0163978\nYc9vYLgQb4E,2000.0,3,5,2015,The Beach,A Shark Tale,tt0163978\noNmhgpAGlBs,2000.0,1,5,2015,The Beach,Photographing the Night Sky,tt0163978\n5KderLI5hEc,2002.0,5,5,2015,The Banger Sisters,Hannah's Speech,tt0280460\nOm_HVqAXZYY,2002.0,3,5,2015,The Banger Sisters,The Rock Cock Collection,tt0280460\n-Jzi-2lYWEw,2002.0,1,5,2015,The Banger Sisters,Breasts at the DMV,tt0280460\nyGUwdRBZ4-8,2002.0,4,5,2015,The Banger Sisters,Heart to Heart,tt0280460\nf_sRtGI7Y0g,2002.0,2,5,2015,The Banger Sisters,Spoiled Brats,tt0280460\n5tu_42LmfEw,1950.0,2,5,2015,All About Eve,Waves of Love,tt0042192\nCBOzczGQh9w,1950.0,5,5,2015,All About Eve,Eve Belongs to Addison,tt0042192\n1orN1oGScbk,1950.0,4,5,2015,All About Eve,Eve Blackmails Karen,tt0042192\nLPPJdOGshUM,1950.0,1,5,2015,All About Eve,Fasten Your Seatbelts,tt0042192\neWL0obbYYOE,1950.0,3,5,2015,All About Eve,Bill Loves Margo,tt0042192\n-5be_UPkLRw,2002.0,2,3,2015,Antwone Fisher,Antwone's Poem,tt0168786\nucQmXLgGIVA,2002.0,1,3,2015,Antwone Fisher,Antwone Makes a Scene,tt0168786\nLW8CpOzdT5Q,2002.0,3,3,2015,Antwone Fisher,Antwone Meets His Mother,tt0168786\n14Mf_nTyWBc,1997.0,3,5,2015,Alien: Resurrection,Up the Ladder,tt0118583\nL4_-rVenLVs,1997.0,5,5,2015,Alien: Resurrection,Alien Ejection,tt0118583\nUsJjfS-i2zM,1997.0,4,5,2015,Alien: Resurrection,Mutation,tt0118583\ncv7_7dSbaOk,1997.0,2,5,2015,Alien: Resurrection,Swimming Aliens,tt0118583\nLFN4NtioY8Q,1997.0,1,5,2015,Alien: Resurrection,Goodbye Doctor,tt0118583\nL3vbfkRB6gQ,1992.0,5,5,2015,Alien 3,Ripley's Sacrifice,tt0103644\nDZFydcYiOtQ,1992.0,4,5,2015,Alien 3,Molten Lead,tt0103644\nDNuzmKc7mq4,1992.0,1,5,2015,Alien 3,Dr. Clemens Killed,tt0103644\nhmF_IO6Aiag,1992.0,3,5,2015,Alien 3,Just Do What You Do,tt0103644\ndCTd1XHbliU,1992.0,2,5,2015,Alien 3,It's Here!,tt0103644\nGmvpP26J-40,2003.0,1,5,2015,Master and Commander,Men Must  Be Governed,tt0311113\nVy-simXeFBc,2003.0,5,5,2015,Master and Commander,A Duet,tt0311113\nIsx0GBj1fxU,2003.0,4,5,2015,Master and Commander,Hand to Hand Combat,tt0311113\nG95g0vzTAKI,2003.0,3,5,2015,Master and Commander,Attack on the Acheron,tt0311113\nb7NJkxnU7xI,2000.0,1,5,2015,Where the Heart Is,Sister Husband,tt0198021\nai1wUoboyNM,2002.0,5,5,2015,Swimfan,Paging Jake Donnelly Scene,tt0283026\napo0KrJVXMk,2002.0,4,5,2015,Swimfan,Dead Body Scene,tt0283026\nd_FUI6kf1b8,2002.0,3,5,2015,Swimfan,I'm Trying to Drop You Scene,tt0283026\nJj0UuTkXIyA,2002.0,1,5,2015,Swimfan,Swim Lessons Scene,tt0283026\n441D9uXF1ac,2002.0,2,5,2015,Swimfan,Almost Busted Scene,tt0283026\n5f0cBrCTeis,2003.0,2,5,2015,Master and Commander,Self Surgery,tt0311113\n1QvItdreFLk,2007.0,5,5,2015,Juno,and Bleeker Sing,tt0467406\njPF_mENo1Fw,2007.0,3,5,2015,Juno,Vanessa Talks to Her Baby,tt0467406\nB2CEGhwMjkQ,2007.0,4,5,2015,Juno,I'm a Planet!,tt0467406\nGOqTRPdrXgc,2007.0,2,5,2015,Juno,A Little Viking,tt0467406\nNocIDIeLTqA,2007.0,1,5,2015,Juno,Doodle Can't Be Un-did,tt0467406\nOwYH_j7c9gE,1998.0,3,3,2015,Waking Ned Devine,Fateful Phone Call,tt0166396\nGQJMW4W_278,1998.0,2,3,2015,Waking Ned Devine,Naked Motorcycle Ride,tt0166396\nS_yY1PaFEok,1998.0,1,3,2015,Waking Ned Devine,Have We Won?,tt0166396\n31t8eDmC1BU,2000.0,5,5,2015,Where the Heart Is,I Lied,tt0198021\nCJIECQdjuLU,2000.0,4,5,2015,Where the Heart Is,I Don't Love You,tt0198021\no0Y7v_EbE70,2000.0,3,5,2015,Where the Heart Is,Tornado,tt0198021\ni2isplJSa8E,2000.0,2,5,2015,Where the Heart Is,Celebrity Mommy,tt0198021\n4ybEyyoBxts,2005.0,3,5,2015,Transporter 2,Auto Acrobatics,tt0388482\nDTMVpuLIp18,1999.0,4,5,2015,Lake Placid,Come and Get It,tt0139414\nIRZrsNC5jpg,1999.0,5,5,2015,Lake Placid,Hector's Close Call,tt0139414\nRDnvXAkMnx8,1995.0,1,5,2015,Die Hard: With a Vengeance,Bad Day in Harlem Scene,tt0112864\ndNlMe4kU9TA,1995.0,4,5,2015,Die Hard: With a Vengeance,Escaping the Flood Scene,tt0112864\n8RVVJmuoAQ4,1995.0,2,5,2015,Die Hard: With a Vengeance,Joyride Through Central Park Scene,tt0112864\ncrPJvv2Y3hk,1995.0,5,5,2015,Die Hard: With a Vengeance,Yippee-Ki-Yay Scene,tt0112864\nQ0yQbpoQ0hY,1995.0,3,5,2015,Die Hard: With a Vengeance,Suspicious Cops Scene,tt0112864\nGMCKHfREAPA,1999.0,1,5,2015,Lake Placid,Don't Let Go!,tt0139414\ncONYIjOytm0,1999.0,3,5,2015,Lake Placid,Crocodile Has a Bear Snack,tt0139414\nEsFrRaMQMPA,1999.0,2,5,2015,Lake Placid,Crocodile Eats Burke,tt0139414\nqr7oBpkkxIQ,2005.0,4,5,2015,Transporter 2,Trashing the Gang,tt0388482\nHpc8yqHTq-I,2005.0,5,5,2015,Transporter 2,Fire-Hose Fray,tt0388482\n-HPjEz0u-9Q,2005.0,1,5,2015,Transporter 2,Jacking the Carjackers,tt0388482\nRUpKMSWPjZw,2005.0,2,5,2015,Transporter 2,Bullet-Spraying Blonde,tt0388482\nD2XKjKc8DKg,2004.0,5,5,2015,Garden State,Fox   - Andrew Chooses Sam,tt0333766\nGZQMDeQs0-k,2004.0,4,5,2015,Garden State,Fox   - Can't Cry,tt0333766\nqSGfcCO_h4I,2004.0,3,5,2015,Garden State,Fox   - A True Original,tt0333766\ncncKzAr-jis,2004.0,2,5,2015,Garden State,Fox   - Visiting Jesse,tt0333766\n11Kv8mnxdCM,1988.0,4,5,2015,Big,Company Party Scene,tt0094737\n3ERuhks3GNk,1988.0,3,5,2015,Big,Josh Doesn't Get It Scene,tt0094737\ndME9-07ZvJI,1986.0,3,5,2015,Big Trouble in Little China,Battle Royale,tt0090728\nsZTpI9Q71rs,2006.0,5,5,2015,Grandma's Boy,\"Drive, Monkey, Drive\",tt0456554\nHgmE4x7yg3c,2006.0,3,5,2015,Grandma's Boy,Party at Grandma's House,tt0456554\nagRBVqecl5Y,2004.0,1,5,2015,Garden State,Meeting Sam,tt0333766\nwdWM3tzzH08,2006.0,2,5,2015,Grandma's Boy,The Stupid Idiot Room,tt0456554\na2Th8JGsJuo,2006.0,4,5,2015,Grandma's Boy,I Am a Genius,tt0456554\nDuKvU5jh2os,2006.0,1,5,2015,Grandma's Boy,I Can't Stop Coming!,tt0456554\ngxeIvClLpKI,1988.0,5,5,2015,Big,Sleepover Scene,tt0094737\nCF7-rz9nIn4,1988.0,2,5,2015,Big,Playing the Piano Scene,tt0094737\n9pX1hxYW3YY,1988.0,1,5,2015,Big,Josh Is  Scene,tt0094737\nd-RR_vV7qDU,2001.0,1,5,2015,Behind Enemy Lines,Missile Chase,tt0159273\ngS56O-aHEMs,1996.0,1,3,2015,Broken Arrow,Nuclear Boom,tt0115759\nDe2qscGlWX4,1996.0,3,3,2015,Broken Arrow,Blown Away,tt0115759\nzW7btaVY-Lw,1996.0,2,3,2015,Broken Arrow,Fight on the Train,tt0115759\npTvbSVyWP9I,2001.0,4,5,2015,Behind Enemy Lines,Snowman Disguise,tt0159273\n5dL4tZZ-Jq8,2001.0,5,5,2015,Behind Enemy Lines,Rescued,tt0159273\ntNZKO_68_WI,1969.0,4,5,2015,Butch Cassidy and the Sundance Kid,The Shootout Scene,tt0064115\nw9KBOhPXhds,1969.0,1,5,2015,Butch Cassidy and the Sundance Kid,Knife Fight Scene,tt0064115\ngeOqbM03Hf0,1969.0,5,5,2015,Butch Cassidy and the Sundance Kid,Blaze of Glory Scene,tt0064115\n8_JPDEHU1ok,1969.0,2,5,2015,Butch Cassidy and the Sundance Kid,Butch's BikeScene,tt0064115\nKyR7XB0VBPM,1969.0,3,5,2015,Butch Cassidy and the Sundance Kid,Off the CliffScene,tt0064115\nXBJSfGM5dGY,1986.0,2,5,2015,Big Trouble in Little China,Visiting the Brothel,tt0090728\nfWcPwWR4C_w,1986.0,1,5,2015,Big Trouble in Little China,The Three Storms,tt0090728\nA65Jq6NKdeI,1986.0,5,5,2015,Big Trouble in Little China,All in the Reflexes,tt0090728\neMURCJgRJYM,1986.0,4,5,2015,Big Trouble in Little China,Rescuing Gracie,tt0090728\nm3s7ZwpFCsc,1997.0,3,5,2015,Anastasia,Dances with Dimitri,tt0118617\nXFdEntyO6TY,2001.0,3,5,2015,Behind Enemy Lines,Surviving a Minefield,tt0159273\nXh1TwRilcLo,2004.0,2,5,2015,AVP: Alien vs. Predator,Alien vs. Predator Scene,tt0370263\nQxju05tBuLM,1997.0,4,5,2015,Anastasia,Paris Welcomes,tt0118617\nlrGIfJdbUHY,1997.0,5,5,2015,Anastasia,Destroys Rasputin,tt0118617\nqA7XKmC5QbQ,1997.0,1,5,2015,Anastasia,Once Upon a December,tt0118617\nJaeHMEw9KAg,2001.0,2,5,2015,Behind Enemy Lines,New Extraction Point,tt0159273\ncrZXwRmMq2k,2004.0,1,5,2015,AVP: Alien vs. Predator,Sacrificial Chamber Scene,tt0370263\n-64q4HpZyaY,2004.0,3,5,2015,AVP: Alien vs. Predator,Marking the Hunter Scene,tt0370263\n1sE-YwK6_PI,2004.0,4,5,2015,AVP: Alien vs. Predator,Battling the Queen Scene,tt0370263\noh4GYHtq2hY,2004.0,5,5,2015,AVP: Alien vs. Predator,A New Predator  Scene,tt0370263\nXPwdUzG03SQ,1997.0,2,5,2015,Anastasia,In the Dark of the Night,tt0118617\n3YTIMGmZUr4,1979.0,3,5,2015,Alien,The  Appears Scene,tt0078748\nyLz4NXK6jkU,2007.0,5,5,2015,28 Weeks Later,Burning For You,tt0463854\niDrYp0LApwU,2007.0,4,5,2015,28 Weeks Later,Chopper,tt0463854\nXh2kwqss0dQ,2007.0,1,5,2015,28 Weeks Later,Every Man for Himself,tt0463854\nAdBu6VAESeI,1979.0,2,5,2015,Alien,Chestburster Scene,tt0078748\ngEqHJ1tomnk,1979.0,1,5,2015,Alien,Acid Blood Scene,tt0078748\nCRXyWtv-huc,1979.0,4,5,2015,Alien,Dallas Dies Scene,tt0078748\nU-mmbStFrAA,1979.0,5,5,2015,Alien,Ripley's Last Stand Scene,tt0078748\nxi7nytFOO2k,2007.0,2,5,2015,28 Weeks Later,Kiss of Death,tt0463854\nv0i-Th0bvPw,2007.0,3,5,2015,28 Weeks Later,Open Fire,tt0463854\nS6bKFjxPbC4,2002.0,4,5,2015,28 Days Later,Blood From a Bird,tt0289043\nj9h6JvfCOOs,2002.0,5,5,2015,28 Days Later,Longer Than a Heartbeat,tt0289043\nrDbMqG0EObM,2002.0,3,5,2015,28 Days Later,Changing the Tire,tt0289043\nj-a68r1d9iQ,2002.0,2,5,2015,28 Days Later,Mark Is Infected,tt0289043\neCdRFMp8Xwo,2002.0,1,5,2015,28 Days Later,Vacant London,tt0289043\nad65spfln8w,1984.0,4,11,2015,Breakin',Electro Rock vs. Turbo & Ozone,tt0086998\ns8jfw7FxNqA,1984.0,3,11,2015,Breakin',Street Sweepin' &,tt0086998\nY15DS1LKh4g,1984.0,10,11,2015,Breakin',\"That's Dancing, Kelly\",tt0086998\nx26YFcaLiNk,1984.0,7,11,2015,Breakin',James Comes to the Dance,tt0086998\nwdB2lzxIfGg,1984.0,6,11,2015,Breakin',Street Dancing Won't Get You to Broadway,tt0086998\n8-q2CNPDfOU,1984.0,5,11,2015,Breakin',Kelly Learns to Break Dance,tt0086998\nZgIp4Y5NoZk,1984.0,8,11,2015,Breakin',Ice-T Raps,tt0086998\nbPNkEztLgeo,1984.0,2,11,2015,Breakin',Get My Boogie Down,tt0086998\nbt6-F11LZsQ,1984.0,1,11,2015,Breakin',at Venice Beach,tt0086998\nN2HtiOaOGx8,1984.0,9,11,2015,Breakin',Turbo Teaches Kids,tt0086998\ncqiQmO5frrE,1984.0,11,11,2015,Breakin',There's No Stopping Us,tt0086998\n6zquYbMbFNk,1988.0,1,11,2015,A Fish Called Wanda,The Language of Love,tt0095159\nMuWwCUXGzWE,1988.0,9,11,2015,A Fish Called Wanda,Fish and Chips,tt0095159\nfSu5W0BtXG8,1988.0,10,11,2015,A Fish Called Wanda,Have You Got a Stutter?,tt0095159\n02DzpeBF4es,1988.0,4,11,2015,A Fish Called Wanda,Otto Hates the British,tt0095159\n2j3adcbEwSM,1988.0,7,11,2015,A Fish Called Wanda,Apes Don't Read Philosophy,tt0095159\nYgJvgESR920,1988.0,11,11,2015,A Fish Called Wanda,Ken's Revenge,tt0095159\nPoaOwSPJPHw,1988.0,3,11,2015,A Fish Called Wanda,Don't Call Me Stupid,tt0095159\n7WdGe1bDiuU,1988.0,5,11,2015,A Fish Called Wanda,He Doesn't Have a Clue,tt0095159\nlwfuUyTMpVY,1988.0,6,11,2015,A Fish Called Wanda,Upside-Down Apology,tt0095159\n9Z3eCKZ69eM,1988.0,2,11,2015,A Fish Called Wanda,Loosening Ken's Lips,tt0095159\nGfHOoFVUk9Y,1988.0,8,11,2015,A Fish Called Wanda,Striptease Surprise,tt0095159\nBBkzG9_vrZg,1992.0,4,10,2015,3 Ninjas,Rocky Loves Emily,tt0103596\naHV7IUgaCy8,1992.0,9,10,2015,3 Ninjas,Grandpa Fights Snyder,tt0103596\ngRadASOF2m0,1992.0,1,10,2015,3 Ninjas,Attacking Grandpa,tt0103596\nOqGUDvVYqlM,1992.0,7,10,2015,3 Ninjas,I Gotta Take a Major Dump,tt0103596\nxqcSo_Yb7OQ,1992.0,5,10,2015,3 Ninjas,Ninja Basketball,tt0103596\nDMbglmaMzB8,1992.0,6,10,2015,3 Ninjas,vs. 3 Idiots,tt0103596\n8Y_Vepe_rVA,1992.0,2,10,2015,3 Ninjas,Ninja Names,tt0103596\nReFW-5bgoCI,1992.0,10,10,2015,3 Ninjas,Pizza for the Heroes,tt0103596\nql5i_tg-wZY,1992.0,3,10,2015,3 Ninjas,Surfer Stick-Up,tt0103596\nhcBF8zYH0s0,1992.0,8,10,2015,3 Ninjas,Light Him Up,tt0103596\nPruSWq_FycA,1976.0,3,12,2015,The Pink Panther Strikes Again,The Gymnasium Room,tt0075066\nqxFHPIFGFmk,1976.0,4,12,2015,The Pink Panther Strikes Again,The Pavlova of the Parallels,tt0075066\nvCuU2y6qR2s,1976.0,11,12,2015,The Pink Panther Strikes Again,Laughing Gas,tt0075066\nyc-qretrU8Q,1976.0,8,12,2015,The Pink Panther Strikes Again,\"Getting a \"\"Reum\"\"\",tt0075066\nrKfOjJJ1ql4,1976.0,9,12,2015,The Pink Panther Strikes Again,Clouseau and the Castle,tt0075066\ne7Efjj3_uME,1976.0,5,12,2015,The Pink Panther Strikes Again,My Hand Is on Fire,tt0075066\nTu1RZaFnkKs,1976.0,1,12,2015,The Pink Panther Strikes Again,Cato Attacks,tt0075066\ndApRtXZRw1Y,1976.0,2,12,2015,The Pink Panther Strikes Again,Hunchback Disguise,tt0075066\n9l07Tr1w4Ls,1976.0,10,12,2015,The Pink Panther Strikes Again,The Dentist,tt0075066\ndTM13gYxkoQ,1976.0,7,12,2015,The Pink Panther Strikes Again,\"Beautiful Woman, Dead Man\",tt0075066\n5wS_6ok9u2c,1976.0,6,12,2015,The Pink Panther Strikes Again,The Old Closet Ploy,tt0075066\nZ4wZt4J3Q5k,1976.0,12,12,2015,The Pink Panther Strikes Again,Erasing Dreyfus,tt0075066\n13zrff9V3Tk,1998.0,12,12,2015,Species II,The Species Lives,tt0120841\nSwGjsWSn8ak,1998.0,10,12,2015,Species II,Mating Ritual,tt0120841\no7_kf3hUg30,1998.0,11,12,2015,Species II,Killing the Monster,tt0120841\noknpBL5cNOc,1975.0,8,10,2015,The Return of the Pink Panther,Lady Litton's Room,tt0072081\nO-LGISfFS4Y,1975.0,9,10,2015,The Return of the Pink Panther,The Open Fly Ploy,tt0072081\nG8EUObgUFvc,1975.0,6,10,2015,The Return of the Pink Panther,The Revolving Door,tt0072081\ntAbYODvO524,1975.0,10,10,2015,The Return of the Pink Panther,Beware of Japanese Waitress,tt0072081\nRcsaFXhuAwc,1975.0,5,10,2015,The Return of the Pink Panther,The Swimming Peul,tt0072081\nryuW22MWnOU,1975.0,3,10,2015,The Return of the Pink Panther,Freezer Ambush,tt0072081\nK5eVu2qDISM,1975.0,1,10,2015,The Return of the Pink Panther,Blind to Crime,tt0072081\nX_nUklmV_kM,1975.0,7,10,2015,The Return of the Pink Panther,Vacuuming the Suite,tt0072081\nm7aDde36EpM,1975.0,4,10,2015,The Return of the Pink Panther,Instinct,tt0072081\nBrXDDicE1VE,1975.0,2,10,2015,The Return of the Pink Panther,Suspended,tt0072081\nOeA9yeqG91A,1994.0,3,12,2015,Stargate,Stepping Through the,tt0111282\n_JuHsTbZKqA,1994.0,10,12,2015,Stargate,Give My Regards to King Tut,tt0111282\nRWIS7olVbGE,1994.0,11,12,2015,Stargate,Destroying Ra,tt0111282\nx-FLqiu9nTs,1994.0,5,12,2015,Stargate,Mistaken for Gods,tt0111282\n3Ds0DRCNXN4,1994.0,2,12,2015,Stargate,Activation of the,tt0111282\nHCLQRZmD1EE,1994.0,1,12,2015,Stargate,The  Is Discovered,tt0111282\nr4vQbzdjQW8,1994.0,4,12,2015,Stargate,I Wouldn't Feed That Thing,tt0111282\ntmZiGfLVs8w,1994.0,8,12,2015,Stargate,Only One Ra,tt0111282\n_q36_9BaH4g,1994.0,9,12,2015,Stargate,How Ya Doing?,tt0111282\n7ALP_3eWKZg,1994.0,12,12,2015,Stargate,Jackson Decides to Stay,tt0111282\nZ-hoEoga8no,1994.0,7,12,2015,Stargate,Taken Before Ra,tt0111282\nxTebNVZEvT4,1994.0,6,12,2015,Stargate,Ambushed!,tt0111282\nAgsxHmawNqU,1998.0,1,12,2015,Species II,Alien Blood,tt0120841\nTiSGxWluH-g,1998.0,8,12,2015,Species II,Father's Help,tt0120841\n9lCBRKyCsVg,1998.0,9,12,2015,Species II,Eve's Escape,tt0120841\nOaZa0tw3Fuw,1998.0,6,12,2015,Species II,Tracking Patrick,tt0120841\nFcfsKx3pADI,1998.0,7,12,2015,Species II,Alien Heat,tt0120841\nVeghLYlAYxo,1998.0,4,12,2015,Species II,The Autopsy,tt0120841\nvxTyxT5z0hs,1998.0,5,12,2015,Species II,When Suicide Fails,tt0120841\nyOItNhVYC3I,1998.0,2,12,2015,Species II,Orinsky's Mistake,tt0120841\ny03ITmppyMI,1998.0,3,12,2015,Species II,A New Birth,tt0120841\nI3LIwgA7Qpk,1988.0,10,11,2015,Killer Klowns from Outer Space,Escaping the Circus,tt0095444\nF5GWqOrzQ3g,1988.0,5,11,2015,Killer Klowns from Outer Space,Shadow Puppets,tt0095444\nA4iXXQr7tqw,1994.0,4,12,2015,Four Weddings and a Funeral,Our Engagement,tt0109831\nmw3M1fIiegc,1994.0,12,12,2015,Four Weddings and a Funeral,Not a Proposal,tt0109831\nuh677-ClXCY,1987.0,8,10,2015,Lethal Weapon,Grenade Standoff,tt0093409\n-37Mhsak-XI,1987.0,2,10,2015,Lethal Weapon,See You Later,tt0093409\ncy2Xj8Pz2Tk,1987.0,9,10,2015,Lethal Weapon,Electric Shock Torture,tt0093409\n3aSdLAndoJU,1987.0,7,10,2015,Lethal Weapon,Have a Nice Day,tt0093409\nF12X8zh4aCE,1987.0,10,10,2015,Lethal Weapon,Riggs Fights Mr. Joshua,tt0093409\naKojFoPzQoQ,1987.0,6,10,2015,Lethal Weapon,No Killing,tt0093409\ncBHvRuBtJqI,1987.0,5,10,2015,Lethal Weapon,You Really Are Crazy,tt0093409\n1v38MMDYEMw,1987.0,4,10,2015,Lethal Weapon,Do You Really Wanna Jump?,tt0093409\n7dw45dGMGNY,1987.0,1,10,2015,Lethal Weapon,Crazy Cop,tt0093409\nvcxEgyiu16Q,1987.0,3,10,2015,Lethal Weapon,I'm Too Old For This Sh**,tt0093409\nbdYiJgwzumg,1979.0,8,11,2015,The Black Stallion,Riding the Stallion,tt0078872\n01RWw-3AKaE,1979.0,11,11,2015,The Black Stallion,Victory,tt0078872\n0O5CcvLk-uE,1979.0,10,11,2015,The Black Stallion,First Time at the Track,tt0078872\ni6klSHVWbrk,1979.0,4,11,2015,The Black Stallion,Saved by the Stallion,tt0078872\n8TM2yB381fc,1979.0,1,11,2015,The Black Stallion,Alec Meets the Stallion,tt0078872\namtxyPO7At8,1979.0,5,11,2015,The Black Stallion,Freeing the Horse,tt0078872\nSDW2CT5neyM,1979.0,7,11,2015,The Black Stallion,Boy and Horse,tt0078872\n7GRQKoapDIU,1979.0,9,11,2015,The Black Stallion,Alec Meets Henry,tt0078872\nCty2dqTZSTY,1979.0,6,11,2015,The Black Stallion,The Cobra,tt0078872\nKnzWMPHQ7Nk,1979.0,3,11,2015,The Black Stallion,The Sinking Ship,tt0078872\nIZcMgDET-fY,1979.0,2,11,2015,The Black Stallion,Sugar Cubes for the Stallion,tt0078872\nPC4wbTAa5SI,1988.0,7,11,2015,Killer Klowns from Outer Space,Clown Invasion,tt0095444\nKTHJmfCHWc4,1988.0,3,11,2015,Killer Klowns from Outer Space,Deadly Puppet Show,tt0095444\nplUXguATsTQ,1988.0,2,11,2015,Killer Klowns from Outer Space,Cotton Candy Cocoons,tt0095444\ndIw0nCJpAqE,1988.0,1,11,2015,Killer Klowns from Outer Space,What in Tarnation's Going On Here?,tt0095444\ngLD9INIOo00,1988.0,11,11,2015,Killer Klowns from Outer Space,Klownzilla,tt0095444\nd9ykU9FkH-g,1988.0,8,11,2015,Killer Klowns from Outer Space,Capturing Debbie,tt0095444\nM7Ot2vswJLE,1988.0,9,11,2015,Killer Klowns from Outer Space,Pied to Death,tt0095444\nkLovCSv9-Ks,1988.0,6,11,2015,Killer Klowns from Outer Space,Human Puppet,tt0095444\nhFoLv3bTLSc,1988.0,4,11,2015,Killer Klowns from Outer Space,Gonna Knock My Block Off?,tt0095444\nPJ7W-dz1OvE,1993.0,2,11,2015,Much Ado About Nothing,Forever a Bachelor,tt0107616\nDw_6CTZVb7c,1993.0,8,11,2015,Much Ado About Nothing,She is No Maid!,tt0107616\nYkjS7wTVKB4,1993.0,1,11,2015,Much Ado About Nothing,A Mutual Disdain,tt0107616\n_z3Pfq49wYA,1993.0,9,11,2015,Much Ado About Nothing,A Strange Love,tt0107616\nzmaZsAPGd5U,1993.0,6,11,2015,Much Ado About Nothing,Maiden Pride Adieu,tt0107616\nJ2gKEelDYpI,1993.0,4,11,2015,Much Ado About Nothing,Fooling Benedick,tt0107616\njOAHxkUMseY,1993.0,5,11,2015,Much Ado About Nothing,It Must Be Requited,tt0107616\n_-D3PfhuF5o,1993.0,10,11,2015,Much Ado About Nothing,You Are an Ass!,tt0107616\ntXSER8y44do,1993.0,3,11,2015,Much Ado About Nothing,Benedick's Perfect Woman,tt0107616\n4xcUJXRCRWI,1993.0,11,11,2015,Much Ado About Nothing,I Will Stop Your Mouth!,tt0107616\nsdNtnZbJBRw,1993.0,7,11,2015,Much Ado About Nothing,The Night Watch,tt0107616\nINE0g4kvXLc,1990.0,7,11,2015,Lord of the Flies,An Offering,tt0100054\nTabNBDP679U,1990.0,6,11,2015,Lord of the Flies,They Broke My Glasses,tt0100054\nwB-4zgJ2LLs,1990.0,8,11,2015,Lord of the Flies,Feast,tt0100054\n0B0YWUYWHS8,1990.0,1,11,2015,Lord of the Flies,Get the Raft!,tt0100054\n2aiVI2zBW3g,1990.0,9,11,2015,Lord of the Flies,\"Conquering the \"\"Monster\"\"\",tt0100054\nrZsQJGk__DQ,1990.0,3,11,2015,Lord of the Flies,Fire!,tt0100054\nipkF3xkP63M,1990.0,2,11,2015,Lord of the Flies,Whoever Holds the Conch Gets to Speak,tt0100054\nY1vBIQiyh80,1990.0,4,11,2015,Lord of the Flies,First Signs of Trouble,tt0100054\n0MHIzgCZcxc,1990.0,5,11,2015,Lord of the Flies,I'm Gonna Make Another Camp,tt0100054\nTQCgzi4j3eM,1990.0,10,11,2015,Lord of the Flies,Piggy is Killed,tt0100054\nLIIz82ZUCQY,1990.0,11,11,2015,Lord of the Flies,Hunt and Rescue,tt0100054\n0XesK2hB_Wk,2003.0,8,11,2015,Legally Blonde 2,Gay Dogs,tt0333780\n7ppcbkjmuk4,2003.0,10,11,2015,Legally Blonde 2,Talking to Lincoln,tt0333780\nzXmrYueNCC8,2003.0,5,11,2015,Legally Blonde 2,Capitol Barbie,tt0333780\nOViadirUIp8,2003.0,6,11,2015,Legally Blonde 2,Snap Cup,tt0333780\n_tBJcD9jxvE,2003.0,4,11,2015,Legally Blonde 2,I'm Going to Washington!,tt0333780\nuSO45koeLhk,2003.0,9,11,2015,Legally Blonde 2,Bruiser's Bill,tt0333780\nuXsQ8IIi6YI,2003.0,3,11,2015,Legally Blonde 2,The Testing Facility,tt0333780\nP04IYEOIr38,2003.0,11,11,2015,Legally Blonde 2,Speak Up America,tt0333780\nk8Do9tamQSM,2003.0,7,11,2015,Legally Blonde 2,Delta Nu Bond,tt0333780\nuZ0YGah7MsE,2003.0,2,11,2015,Legally Blonde 2,Bruiser's Pedigree,tt0333780\nG4lzPC22k8A,2003.0,1,11,2015,Legally Blonde 2,Elle's Surprise Party,tt0333780\ntgg-Fay2zzs,2001.0,5,10,2015,Hannibal,Killing Pazzi,tt0212985\nih_V1Ns2UFg,2001.0,7,10,2015,Hannibal,Boared to Death,tt0212985\n_Zfqh2OxGFg,2001.0,1,10,2015,Hannibal,Meeting Mason Verger,tt0212985\nQ-bDppEz23c,2001.0,2,10,2015,Hannibal,It Seemed Like a Good Idea at the Time,tt0212985\n-T0PH7Wv3eo,2001.0,4,10,2015,Hannibal,Capturing Pazzi,tt0212985\nKEoQM4Q-FFY,2001.0,3,10,2015,Hannibal,'s Escape,tt0212985\nIhJbjhlRPSk,2001.0,6,10,2015,Hannibal,Tracking,tt0212985\nYWDTyG3z3VA,2001.0,8,10,2015,Hannibal,Paul's Brain,tt0212985\nPuCu1XUGntA,2001.0,9,10,2015,Hannibal,This is Really Gonna Hurt,tt0212985\nwwQev_zC0y0,2001.0,10,10,2015,Hannibal,Brain on a Plane,tt0212985\n0P4h2-R9Rak,1983.0,1,12,2015,Lone Wolf McQuade,Texas Ranger,tt0085862\n7enE0xOxDQ8,1983.0,3,12,2015,Lone Wolf McQuade,Forget That Partner Crap,tt0085862\npIPr7nbUCAw,1983.0,5,12,2015,Lone Wolf McQuade,A Lot More to Learn,tt0085862\nKi6bBFE0o88,1983.0,9,12,2015,Lone Wolf McQuade,Fighting Through Pain,tt0085862\nAh8ALKwclVk,1983.0,10,12,2015,Lone Wolf McQuade,Bulldozer Battle,tt0085862\nNTJXKGOgN-k,1983.0,4,12,2015,Lone Wolf McQuade,Not My Idea of Fun,tt0085862\nZBRK8rVHVW0,1983.0,6,12,2015,Lone Wolf McQuade,Chasing Snow,tt0085862\npfLTbzU0FXo,1983.0,8,12,2015,Lone Wolf McQuade,Buried Alive,tt0085862\nFstG27JuaRg,1983.0,12,12,2015,Lone Wolf McQuade,McQuade Destroys Rawley,tt0085862\nhfNvGT9X-7Q,1983.0,11,12,2015,Lone Wolf McQuade,McQuade vs. Rawley,tt0085862\nJgqoFj8yVqg,1983.0,7,12,2015,Lone Wolf McQuade,Mine's Bigger,tt0085862\nNSOB8nt1Uc8,1983.0,2,12,2015,Lone Wolf McQuade,Trust Is Most Important,tt0085862\nhKr4-rNmLFo,1988.0,8,9,2015,Bloodsport,Final Match,tt0092675\nZ6vsW2RH8kA,1988.0,4,9,2015,Bloodsport,\"No Pain, No Gain\",tt0092675\nbT6NizTtXug,1988.0,9,9,2015,Bloodsport,Matte! Victory!,tt0092675\nijrCSknWjeI,1988.0,7,9,2015,Bloodsport,Dux vs. Paco,tt0092675\nwNibi-NWW4o,1988.0,5,9,2015,Bloodsport,The Touch of Death,tt0092675\nfsUKVpvzMHk,1988.0,1,9,2015,Bloodsport,Young Frank Dux,tt0092675\nhLbozjgBIE0,1988.0,2,9,2015,Bloodsport,Teach Me,tt0092675\n-yG7Wp5-8EI,1988.0,3,9,2015,Bloodsport,Training,tt0092675\n2kymD_HxRfA,1988.0,6,9,2015,Bloodsport,A Quarter Trick,tt0092675\n_p0nSJeyRcw,1991.0,3,11,2015,Thelma & Louise,Thelma Meets J.D.,tt0103074\nSXbUNuTQJds,1991.0,9,11,2015,Thelma & Louise,I Can't Go Back,tt0103074\nSwITnQv183g,1991.0,5,11,2015,Thelma & Louise,A Real Outlaw,tt0103074\nEQOuGXTYAj8,1991.0,8,11,2015,Thelma & Louise,You're Getting in Deeper,tt0103074\nGeqKdTZugxs,1991.0,2,11,2015,Thelma & Louise,Telling Off Darryl,tt0103074\n-dUYR2apxdA,1991.0,11,11,2015,Thelma & Louise,Over the Cliff,tt0103074\n10r3vyu-zDM,1991.0,4,11,2015,Thelma & Louise,Close Call,tt0103074\nWnZWACO4OOc,1991.0,7,11,2015,Thelma & Louise,A Knack For This,tt0103074\n0Dc0Oj08S7M,1991.0,1,11,2015,Thelma & Louise,I'm Goin' to Mexico,tt0103074\n0JDyXQvCsOM,1991.0,6,11,2015,Thelma & Louise,Thelma Robs a Store,tt0103074\ncAIHoTstrTg,1991.0,10,11,2015,Thelma & Louise,Beavers,tt0103074\ngXRw45jyIsE,1940.0,2,10,2015,The Philadelphia Story,Human Frailty,tt0032904\nhtCHOTJBiSc,1940.0,5,10,2015,The Philadelphia Story,Tracy & Mike,tt0032904\nI-RrVLbC-q4,1940.0,8,10,2015,The Philadelphia Story,The True Love,tt0032904\nNxSdB2L-Ffk,1940.0,3,10,2015,The Philadelphia Story,I Don't Want to Be Worshipped,tt0032904\nWCl3EnHnm_c,1940.0,6,10,2015,The Philadelphia Story,You're Lit From Within,tt0032904\nsWKTV0ScR9k,1940.0,4,10,2015,The Philadelphia Story,Still in Love,tt0032904\nfpE3kI1HOWQ,1940.0,9,10,2015,The Philadelphia Story,The Whole Affair,tt0032904\n-Ot948zIr0s,1940.0,1,10,2015,The Philadelphia Story,Generous to a Fault,tt0032904\ncNW7dRdPPC8,1940.0,7,10,2015,The Philadelphia Story,How Are the Mighty Fallen,tt0032904\nf-vA6GMMKgQ,1940.0,10,10,2015,The Philadelphia Story,A Slight Hitch,tt0032904\n6hiEMyCIoQ0,2005.0,11,11,2015,Capote,I Did Everything I Could,tt0379725\nWmOiz8rBlmw,2005.0,10,11,2015,Capote,They're Torturing Me,tt0379725\nhAiiaFAJ1mY,2005.0,9,11,2015,Capote,Remembering the Murder,tt0379725\noLPTh_DaPa8,2005.0,2,11,2015,Capote,The Way I Am,tt0379725\nH8ToqWfFevw,2005.0,1,11,2015,Capote,Paying for Compliments,tt0379725\nm-OaVzrf_vc,2005.0,7,11,2015,Capote,This is My Work,tt0379725\nzXroRe--2QM,2005.0,3,11,2015,Capote,Charming the Deweys,tt0379725\nAFMFZiFr458,2005.0,5,11,2015,Capote,I Want to Take Your Notebooks,tt0379725\nfFUR02kaGTQ,2005.0,6,11,2015,Capote,Did You Fall in Love With Him?,tt0379725\n5AJvo1pc3sw,2005.0,8,11,2015,Capote,What's the Name of Your Book?,tt0379725\nQDdroG4R9hE,2005.0,4,11,2015,Capote,Bribing the Warden,tt0379725\naaGlVyyFOl0,1980.0,8,10,2015,Flash Gordon,Pillow Fight,tt0080745\nY--MuIgwfQ4,1980.0,3,10,2015,Flash Gordon,Telepathy,tt0080745\nILLkD7hTxms,1980.0,1,10,2015,Flash Gordon,Planet Mongo,tt0080745\nqjFCVTpsIps,1980.0,2,10,2015,Flash Gordon,Football Fight,tt0080745\nx0Ev2qiY08M,1980.0,4,10,2015,Flash Gordon,Whipping Princess Aura,tt0080745\n80sCD2p0W1Q,1980.0,5,10,2015,Flash Gordon,The Wood Beast,tt0080745\nY6B9nkrSuMI,1980.0,9,10,2015,Flash Gordon,Hawkmen vs. Ajax,tt0080745\nRxFBi3z1i3k,1980.0,7,10,2015,Flash Gordon,Escape from Sky City,tt0080745\n1Oq6vztcjgg,1980.0,6,10,2015,Flash Gordon,To the Death!,tt0080745\nUfeogSVgTsU,1980.0,10,10,2015,Flash Gordon,Crashing Ming's Wedding,tt0080745\nAClQyr2koxc,1996.0,12,12,2015,Kingpin,I'm the Greatest!,tt0116778\nWvITkVaOpUs,1989.0,3,10,2015,Weekend at Bernie's,Bernie Throws a Party,tt0098627\nTa2vBD-qOwk,1996.0,6,12,2015,Kingpin,I've Desecrated My Body!,tt0116778\nH-xjMjmrdl0,1957.0,4,10,2015,12 Angry Men,This Isn't a Game,tt0050083\nW0ThLQIEwxk,1989.0,10,10,2015,Weekend at Bernie's,Trying to Explain,tt0098627\n2kDPrNRTuQE,1989.0,8,10,2015,Weekend at Bernie's,Born on a Boat,tt0098627\nI0jSE4K2jH8,1989.0,5,10,2015,Weekend at Bernie's,This Can't Be Happening,tt0098627\nn3Ubm7iCzuA,1989.0,7,10,2015,Weekend at Bernie's,Bernie is Buried,tt0098627\njzzrFFivBKk,1989.0,9,10,2015,Weekend at Bernie's,Man Overboard,tt0098627\nc5aNkzn_8Bc,1989.0,6,10,2015,Weekend at Bernie's,Bernie Gets Laid,tt0098627\nCkN1FvtBg2k,1989.0,1,10,2015,Weekend at Bernie's,Richard's Butler,tt0098627\ngUuOvBQoaHA,1989.0,2,10,2015,Weekend at Bernie's,Bernie is Dead,tt0098627\nxd1f5GeUWpg,1989.0,4,10,2015,Weekend at Bernie's,Over the Edge,tt0098627\ngPlxDB94t80,1996.0,5,12,2015,Kingpin,Fistfight with a Girl,tt0116778\neRI0kASoaqI,1996.0,1,12,2015,Kingpin,Hustling a Priest,tt0116778\n20IyieiS-TE,1996.0,2,12,2015,Kingpin,Roy Works Off His Rent,tt0116778\nE4sgImaJTlA,1996.0,3,12,2015,Kingpin,Milking the Bull,tt0116778\nmt5IvL1Uw7g,1996.0,7,12,2015,Kingpin,A Real Munson,tt0116778\nP8zlYvk98gE,1996.0,10,12,2015,Kingpin,Roy Bowls His Hand,tt0116778\nKTpzQ8vWHTo,1996.0,4,12,2015,Kingpin,Crapping in a Urinal,tt0116778\n0R_0E-YNBrY,1996.0,8,12,2015,Kingpin,Big Ern and the Unified Fund,tt0116778\nM7V-9UG5Pn0,1996.0,11,12,2015,Kingpin,A Lot of Drinking,tt0116778\n9j4v32pp0m4,1996.0,9,12,2015,Kingpin,Welcome to My Church,tt0116778\nbnHKWNBCKQk,2001.0,1,12,2015,Y Tu Mamá También,\"My Cousin, the Writer\",tt0245574\ngYMmTK1rFvA,2001.0,2,12,2015,Y Tu Mamá También,Inviting Luisa,tt0245574\nWKDoWddM0vg,2001.0,5,12,2015,Y Tu Mamá También,Luisa Leaves,tt0245574\nQXUXlzzOl44,2001.0,11,12,2015,Y Tu Mamá También,Your Mother Too,tt0245574\ntwPFRVuWNjo,2001.0,6,12,2015,Y Tu Mamá También,Luisa's Manifesto,tt0245574\nZypt5adu71Q,2001.0,12,12,2015,Y Tu Mamá También,Life Is Like the Surf,tt0245574\nZptjN0wzIdA,2001.0,10,12,2015,Y Tu Mamá También,The Greatest Pleasure,tt0245574\nCsZmsu_-53E,2001.0,9,12,2015,Y Tu Mamá También,Ever Wish You Could Live Forever?,tt0245574\nhHsWQA500NU,2001.0,7,12,2015,Y Tu Mamá También,Heaven's Mouth,tt0245574\nXcFFaRpPdzs,2001.0,4,12,2015,Y Tu Mamá También,Friendship Betrayed,tt0245574\njaIVHdFwqnQ,2001.0,3,12,2015,Y Tu Mamá También,Cheating on Luisa,tt0245574\nGAsqObV4ExM,2001.0,8,12,2015,Y Tu Mamá También,Campos the Goalie,tt0245574\nOFPi1vG6A90,1972.0,1,10,2015,Last Tango in Paris,Paul Meets Jeanne,tt0070849\nfAenzYV3Cmc,1972.0,2,10,2015,Last Tango in Paris,First Encounter,tt0070849\nkTsFXQ2Y_dI,1972.0,3,10,2015,Last Tango in Paris,No Names,tt0070849\nQY3RIezZPks,1972.0,4,10,2015,Last Tango in Paris,Inventing Names,tt0070849\nDIt0_zQY00w,1972.0,5,10,2015,Last Tango in Paris,Bad Memories,tt0070849\nh-r9Q-YItnk,1972.0,6,10,2015,Last Tango in Paris,Go Get the Butter,tt0070849\n-n4RtjEtFUE,1972.0,8,10,2015,Last Tango in Paris,Paul & Rosa,tt0070849\nHTa0oe5Ntvw,1972.0,7,10,2015,Last Tango in Paris,A Rat,tt0070849\n891M2sACu0U,1972.0,10,10,2015,Last Tango in Paris,I Don't Know Him,tt0070849\ndQGlAzHgPw8,1972.0,9,10,2015,Last Tango in Paris,Let's Dance,tt0070849\nTXlHKTPfLVA,1957.0,8,10,2015,12 Angry Men,These People,tt0050083\n5s8dYeDZPAE,1957.0,6,10,2015,12 Angry Men,A Responsibility,tt0050083\nRGF6Qyvz2no,1957.0,9,10,2015,12 Angry Men,Nose Marks,tt0050083\n46kWbFAMHoc,1957.0,1,10,2015,12 Angry Men,Kids These Days,tt0050083\nEqDd06GW76o,1957.0,3,10,2015,12 Angry Men,Who Changed Their Vote?,tt0050083\nTUzp2XUhskY,1957.0,2,10,2015,12 Angry Men,It's the Same Knife!,tt0050083\n1fsFQ2gF4oE,1957.0,5,10,2015,12 Angry Men,Re-enactment,tt0050083\n0jxVnlRdelU,1957.0,10,10,2015,12 Angry Men,Not Guilty,tt0050083\nU44_sEUJROI,1957.0,7,10,2015,12 Angry Men,Down & In,tt0050083\nUr3JKxaUvUc,2006.0,2,8,2015,Clerks II,Unnaturally Large,tt0424345\nfYKLuSKW4ao,2006.0,1,8,2015,Clerks II,The New and Improved Jay and Silent Bob,tt0424345\nZtrhzVGMWZc,2006.0,3,8,2015,Clerks II,Transformers Sucked,tt0424345\nH8zCwVOT1U4,2006.0,4,8,2015,Clerks II,Up for Anything,tt0424345\nSX9tVVvLb2I,2006.0,7,8,2015,Clerks II,Pickle F***er,tt0424345\nHKDxpkV14IA,2006.0,6,8,2015,Clerks II,Pillow Pants,tt0424345\nIYITxGniww4,2006.0,8,8,2015,Clerks II,Porch Monkeys,tt0424345\nRPl5MeXIM8E,2006.0,5,8,2015,Clerks II,Lord of the Rings vs. Star Wars,tt0424345\nKI-GzP94V8o,1988.0,1,11,2015,Mac and Me,Sucked Away,tt0095560\nDDueSsFUqc4,1988.0,2,11,2015,Mac and Me,The Alien Family Escapes,tt0095560\nSXeVjXg9BFU,1988.0,4,11,2015,Mac and Me,Mac Saves Eric,tt0095560\nUB8wk3MOgVU,1988.0,3,11,2015,Mac and Me,Mac Escapes,tt0095560\nc_GNsQnPdi4,1988.0,6,11,2015,Mac and Me,Chased By Dogs,tt0095560\ntPgRnFg8ZTU,1988.0,8,11,2015,Mac and Me,McDonald's Dance Party,tt0095560\nxuVz2BPLRBY,1988.0,9,11,2015,Mac and Me,Wheelchair Chase,tt0095560\nPhKy0fGOJz0,1988.0,5,11,2015,Mac and Me,Capturing Mac,tt0095560\nDXdQoyWxHZs,1988.0,7,11,2015,Mac and Me,Disguising Mac,tt0095560\ng0yYxO89lQA,1988.0,10,11,2015,Mac and Me,Parking Lot Explosion,tt0095560\nlPE1uBdcB8Y,1988.0,11,11,2015,Mac and Me,Back to Life,tt0095560\nXvGmOZ5T6_Y,1984.0,1,11,2015,1984,Two Minutes Hate,tt0087803\nbvFHRNGYfuo,1989.0,7,10,2015,Henry V,Saint Crispin's Day,tt0097499\nrv7NsGCDVDs,1989.0,6,10,2015,Henry V,If His Cause Be Wrong,tt0097499\nmNVB-qi0qyY,1989.0,2,10,2015,Henry V,Balls to Gun Stones,tt0097499\nF0uwp_eoMW4,1989.0,8,10,2015,Henry V,God Be With You All,tt0097499\neqC9wr776KM,1989.0,9,10,2015,Henry V,The Day is Yours,tt0097499\nHS7OG9zcV-M,1989.0,1,10,2015,Henry V,The Prologue,tt0097499\n-nFHhXrXWzY,1989.0,3,10,2015,Henry V,Banish Not Him,tt0097499\nvIwfwyjbP4g,1989.0,4,10,2015,Henry V,High Treason,tt0097499\nynwah7YV2LY,1989.0,10,10,2015,Henry V,Canst Thou Love Me?,tt0097499\nurpXO9VLU0U,1989.0,5,10,2015,Henry V,Once More Unto the Breach,tt0097499\n2BuU0LMgxl0,1984.0,2,11,2015,1984,Corrupt to the Core,tt0087803\njmmawolzwCs,1984.0,3,11,2015,1984,Do You Like Me?,tt0087803\npX0LbjUM5Uo,1984.0,5,11,2015,1984,Caught in the Bedroom,tt0087803\nUmAVyowgDVE,1984.0,11,11,2015,1984,O'Brien Tortures Winston,tt0087803\nRyR51MqOl5I,1984.0,6,11,2015,1984,It Creeps Up on You,tt0087803\ncAKtpCo8fPE,1984.0,8,11,2015,1984,Winston is Tested,tt0087803\nc0wH6YDfCzg,1984.0,4,11,2015,1984,Victory is Not Possible,tt0087803\nv79foBIrar4,1984.0,10,11,2015,1984,Your Kind is Extinct,tt0087803\nPoLLgzdPkss,1984.0,9,11,2015,1984,Vision of the Future,tt0087803\n0A0VANPUG-g,1984.0,7,11,2015,1984,A Small Effort of Will,tt0087803\ni-9K5-x7_so,1985.0,3,10,2015,Teen Wolf,First Wolf-Out Scene,tt0090142\nd4Ljj8W1hE8,1985.0,5,10,2015,Teen Wolf,I'm a Werewolf Scene,tt0090142\n_6FnlEiyZ08,1985.0,4,10,2015,Teen Wolf,Caught in the Bathroom Scene,tt0090142\nQBghpl5FZXk,1985.0,10,10,2015,Teen Wolf,Fight at the Dance Scene,tt0090142\nLeVEbbheUck,1985.0,9,10,2015,Teen Wolf,Surfing on a Wolfmobile Scene,tt0090142\nYZ11hDE35QQ,1985.0,7,10,2015,Teen Wolf,Getting Worked Up Scene,tt0090142\nkiEe33aAucU,1985.0,1,10,2015,Teen Wolf,Scott Growls for the Ball Scene,tt0090142\nhWRJQvuhs9w,1985.0,6,10,2015,Teen Wolf,The Wolf Can Dunk Scene,tt0090142\nGt5xBpmHS5Q,1985.0,2,10,2015,Teen Wolf,Give Me a Keg of Beer Scene,tt0090142\nfiqJGHbv3ys,1985.0,8,10,2015,Teen Wolf,Bowling With Pamela Scene,tt0090142\nE-bYTMU6Dks,1948.0,7,11,2015,Red River,Who'll Stop Me?,tt0040724\nWjc5NqqF-1o,1948.0,8,11,2015,Red River,Every Time You Turn Around,tt0040724\nXBPrLU4Zspo,1948.0,2,11,2015,Red River,Don Diego's Land,tt0040724\nww_lUn3jUoA,1948.0,1,11,2015,Red River,Don't Ever Trust Anybody,tt0040724\nzBe5T01yBUI,1948.0,4,11,2015,Red River,Comparing Guns,tt0040724\nI0EUKDhQ7vk,1959.0,7,11,2015,Some Like It Hot,Sugar Meets the Millionaire,tt0053291\nBwnOv84Uaf4,1948.0,11,11,2015,Red River,Showdown,tt0040724\n1_BNy6W4sRg,1948.0,9,11,2015,Red River,Indian Raid,tt0040724\nAabFChK-X1w,1948.0,3,11,2015,Red River,Mumbling Groot,tt0040724\nenLijb7P9tg,1948.0,10,11,2015,Red River,Kissing Tess,tt0040724\naN0alpNLQak,1948.0,5,11,2015,Red River,A Costly Stampede,tt0040724\n7s91-5542Zg,1948.0,6,11,2015,Red River,Punishment by Whip,tt0040724\nFBi8SGpLTGI,1959.0,5,11,2015,Some Like It Hot,A Thing For Sax Players,tt0053291\n1wP9Mu1NKXk,1959.0,1,11,2015,Some Like It Hot,Girl Musicians,tt0053291\nqdq07pa6sPA,1959.0,8,11,2015,Some Like It Hot,Just Call Me Junior,tt0053291\nxq1QFVrNxfk,1959.0,4,11,2015,Some Like It Hot,Party for Two,tt0053291\nUgjzHp4TVtk,1959.0,2,11,2015,Some Like It Hot,Sugar Kane,tt0053291\nh55rTtbCy7o,1959.0,6,11,2015,Some Like It Hot,How the Other Half Lives,tt0053291\n8-n-ybKQ_X0,1959.0,10,11,2015,Some Like It Hot,Boy Oh Boy Am I a Boy,tt0053291\nspAkj5YYnIo,1959.0,3,11,2015,Some Like It Hot,Us Girls Should Stick Together,tt0053291\nyD3r8xx3iX8,1959.0,9,11,2015,Some Like It Hot,Learning to Kiss,tt0053291\n-mHhr-aaLnI,1959.0,11,11,2015,Some Like It Hot,Nobody's Perfect,tt0053291\nTVjIzlCjKcQ,1994.0,1,12,2015,Four Weddings and a Funeral,With This Ring,tt0109831\nGSwNuK9xedg,1994.0,3,12,2015,Four Weddings and a Funeral,Going Too Far,tt0109831\neeXePDLKsmU,1994.0,7,12,2015,Four Weddings and a Funeral,Carrie's List of Lovers,tt0109831\nxn3J0iYO7sw,1994.0,10,12,2015,Four Weddings and a Funeral,He Was My North,tt0109831\nXrZN8Sy-z6M,1994.0,2,12,2015,Four Weddings and a Funeral,To the Adorable Couple,tt0109831\nZYzQFudZ70k,1994.0,5,12,2015,Four Weddings and a Funeral,Flubbing the Ceremony,tt0109831\nMBIIKCaK5PM,1994.0,11,12,2015,Four Weddings and a Funeral,David Objects,tt0109831\ntvy0nfXbStY,1994.0,6,12,2015,Four Weddings and a Funeral,The Serial Monogamist,tt0109831\n8Ut9pZyyS44,1994.0,8,12,2015,Four Weddings and a Funeral,David Meets Carrie,tt0109831\nOgl0mA_15ys,1994.0,9,12,2015,Four Weddings and a Funeral,I Think I Love You,tt0109831\n3OLIgEua4PU,1995.0,7,10,2015,The Usual Suspects,Keyser Soze,tt0114814\nBQpfa9RZbTk,1995.0,10,10,2015,The Usual Suspects,The Greatest Trick the Devil Ever Pulled,tt0114814\naU3KvhyJk-w,1995.0,9,10,2015,The Usual Suspects,Keaton Was Keyser Soze,tt0114814\nZh1yLx3srtQ,1995.0,8,10,2015,The Usual Suspects,Old MacDonald Shot Some Guys,tt0114814\nGIa5OfDBSBE,1995.0,5,10,2015,The Usual Suspects,Bad Day,tt0114814\nDp5YwZCGpm0,1995.0,1,10,2015,The Usual Suspects,The Lineup,tt0114814\nketh0g3CMK4,1995.0,3,10,2015,The Usual Suspects,I'm Smarter Than You,tt0114814\neUL9XgE3G4k,1995.0,2,10,2015,The Usual Suspects,Who's the Gimp?,tt0114814\ndxNL9-YlUk0,1995.0,4,10,2015,The Usual Suspects,New York's Finest,tt0114814\nMneFTo1gRq0,1995.0,6,10,2015,The Usual Suspects,Kobayashi's Proposal,tt0114814\nIqX6z6djbD4,1991.0,2,11,2015,City Slickers,It's All Downhill From Here,tt0101587\nPunAKEccqyU,1991.0,8,11,2015,City Slickers,The Secret of Life,tt0101587\nrClviS6MMvk,1991.0,1,11,2015,City Slickers,Bump on the Rump,tt0101587\nIA0v8pCN8cQ,1991.0,9,11,2015,City Slickers,Curly Passes On,tt0101587\n2PPNVF1tT6o,1991.0,11,11,2015,City Slickers,I Hate Bullies,tt0101587\n1j4ITRCTJL4,1991.0,10,11,2015,City Slickers,Best Day/Worst Day,tt0101587\nPCXI31d3vlE,1991.0,6,11,2015,City Slickers,\"He's Behind Me, Isn't He?\",tt0101587\n1PwmcgK9qno,1991.0,4,11,2015,City Slickers,Arriving at the Ranch,tt0101587\n-CKzCdneg04,1991.0,3,11,2015,City Slickers,\"If Hate Were People, I'd Be China\",tt0101587\n7s3dzArIVok,1991.0,5,11,2015,City Slickers,The Toughest Man Ever,tt0101587\n2ATYV1LOIH4,1991.0,7,11,2015,City Slickers,A Song With Curly,tt0101587\n2KOuM_aZ1-A,1990.0,11,12,2015,Misery,We Must Finish the Book,tt0100157\nxNGdLsWV0_k,2002.0,10,11,2015,Roger Dodger,Jackrabbits,tt0299117\nTxouT-qgqwU,2002.0,2,11,2015,Roger Dodger,Sex and Natural Selection,tt0299117\nVhCQj6D3JQY,2002.0,6,11,2015,Roger Dodger,Admiring the Female Form,tt0299117\nFgrVh865bX8,2002.0,5,11,2015,Roger Dodger,Champions Refuse to Lose,tt0299117\nkFsoiAa-ulY,2002.0,11,11,2015,Roger Dodger,How to Talk to Girls,tt0299117\nQwrGZWHTbt0,2002.0,1,11,2015,Roger Dodger,Male Utility,tt0299117\nEgb6g_c7Nek,2002.0,4,11,2015,Roger Dodger,A Guide to Girl Watching,tt0299117\n9GQZ2hl5oQY,2002.0,3,11,2015,Roger Dodger,A Collection of Vanity Fair Articles,tt0299117\nBHQdl3iBhkE,2002.0,8,11,2015,Roger Dodger,First Time,tt0299117\neUELANo1Fic,2002.0,7,11,2015,Roger Dodger,High Verbal Ability,tt0299117\nY3nUE1cWM8o,2002.0,9,11,2015,Roger Dodger,We Need More Men Like You,tt0299117\n_v5zFIqjEZg,2001.0,1,10,2015,Frailty,Sometimes Truth Defies Reason,tt0264616\ndyaqk3LFlBM,2001.0,4,10,2015,Frailty,The First Demon,tt0264616\nCVdZXuc265w,2001.0,10,10,2015,Frailty,God Knew,tt0264616\nUeC962qKMrI,2001.0,9,10,2015,Frailty,Killing a Brother,tt0264616\n6O9GrKXP46o,2001.0,7,10,2015,Frailty,Fenton's First Victim,tt0264616\ndFxzdwS4yE8,2001.0,8,10,2015,Frailty,The Promise,tt0264616\nFhtwCGpDs-0,2001.0,6,10,2015,Frailty,You Gotta Believe Me!,tt0264616\nTRDdgGdGfbE,2001.0,5,10,2015,Frailty,You Can't Escape God's Wrath,tt0264616\nR1k_1p3mitg,2001.0,2,10,2015,Frailty,A Vision From God,tt0264616\n1x4SX6FUEUo,2001.0,3,10,2015,Frailty,The List,tt0264616\nBr5umHOm3TM,1990.0,8,12,2015,Misery,He Didn't Get Out of the Cockadoodie Car!,tt0100157\nZzBJxdyktNQ,2008.0,1,11,2015,My Best Friend's Girl,A Serial Monogamist,tt1046163\nUG215AsHyBg,2008.0,5,11,2015,My Best Friend's Girl,I'll Have What He's Having,tt1046163\nkm7CMB9s8ok,2008.0,4,11,2015,My Best Friend's Girl,Where's My Eyebrow?,tt1046163\nvj3mnCSJq7E,2008.0,10,11,2015,My Best Friend's Girl,It's Time You Knew The Truth,tt1046163\nGkTXRgNHzug,2008.0,2,11,2015,My Best Friend's Girl,Coming Up?,tt1046163\n4WfCOqrgbSk,2008.0,3,11,2015,My Best Friend's Girl,A Dissatisfied Customer,tt1046163\nQvKGF4DN9RE,2008.0,7,11,2015,My Best Friend's Girl,Fatherly Advice,tt1046163\n1VGOy2dylYE,2008.0,8,11,2015,My Best Friend's Girl,I'm The Gay Pal?,tt1046163\nLwXuIb6j_e8,2008.0,11,11,2015,My Best Friend's Girl,Do You Love Her?,tt1046163\nPxsbL4Q0Lmk,2008.0,9,11,2015,My Best Friend's Girl,Wedding Faux-Pas,tt1046163\nGOjeFlHlPwU,2008.0,6,11,2015,My Best Friend's Girl,Your BFF Is With Another Guy,tt1046163\n4-8adc39DV0,1990.0,12,12,2015,Misery,Paul Attacks Annie,tt0100157\nfmZhcaq6QV8,1990.0,3,12,2015,Misery,the Pig,tt0100157\ntURhk-5mDpE,1990.0,10,12,2015,Misery,Hobbling,tt0100157\noZ51e9IJjjQ,1990.0,9,12,2015,Misery,Annie's Blues,tt0100157\nZkPfZTLecL8,1990.0,6,12,2015,Misery,Annie Feels Unappreciated,tt0100157\nSeOMiErBnks,1990.0,7,12,2015,Misery,What Have You Been Doing?,tt0100157\ngKRyD4CSjto,1990.0,5,12,2015,Misery,Book Burning,tt0100157\nHrRSo3a1ZYU,1990.0,4,12,2015,Misery,You Murdered My !,tt0100157\nSyQSH3XmQCE,1990.0,2,12,2015,Misery,Profanity Bothers Annie,tt0100157\nmGGwDmCTha8,1990.0,1,12,2015,Misery,I'm Your Number One Fan,tt0100157\nCFQKJOXdXJw,1999.0,6,10,2015,Topsy-Turvy,Vulgar and Obscene,tt0151568\n-fQs640Ehfw,1999.0,3,10,2015,Topsy-Turvy,A Trip to the Dentist,tt0151568\nunrqBYYTZI0,1999.0,4,10,2015,Topsy-Turvy,Inspiration,tt0151568\nGuX7TUIGvRM,1999.0,7,10,2015,Topsy-Turvy,In the Japanese Manner,tt0151568\nglkk39pJQQI,1999.0,10,10,2015,Topsy-Turvy,Opening Night Jitters,tt0151568\nQFzkyceRlW8,1999.0,9,10,2015,Topsy-Turvy,Cutting a Song,tt0151568\n90KNvOsvEiY,1999.0,2,10,2015,Topsy-Turvy,The Telephone,tt0151568\nT6Lor5hg5nI,1999.0,5,10,2015,Topsy-Turvy,Not a Corset,tt0151568\n0mtMkMvdwBw,1999.0,1,10,2015,Topsy-Turvy,A Bad Review,tt0151568\nljGqb2loshQ,1999.0,8,10,2015,Topsy-Turvy,Three Little Maids From School Are We,tt0151568\nLt-Suz8LGEM,1986.0,8,10,2015,The Big Easy,Shots Fired,tt0092654\nESvZ51pBN14,1986.0,6,10,2015,The Big Easy,A Good Guy,tt0092654\nMH6W76ILmEQ,1986.0,3,10,2015,The Big Easy,Conflict of Interest,tt0092654\nZxhqyHBujFc,1986.0,1,10,2015,The Big Easy,Two Minutes of Ass Kissing,tt0092654\nxfnmRVym22U,1986.0,4,10,2015,The Big Easy,Business and Pleasure,tt0092654\neVPIMety0MA,1986.0,9,10,2015,The Big Easy,Was It You?,tt0092654\nkNrid4Vvxkk,1986.0,7,10,2015,The Big Easy,Only Cops Drive Like That,tt0092654\nb7fFwDI39Co,1986.0,5,10,2015,The Big Easy,Cross Examination,tt0092654\nG_tk-vS61to,1986.0,10,10,2015,The Big Easy,Shootout on the Dock,tt0092654\nEgXDPt3eW3Q,1986.0,2,10,2015,The Big Easy,Cop and Robbers,tt0092654\n5KeGGAzEkNE,2009.0,1,11,2015,Baarìa,Teeth of Steel,tt1081935\nVP-S-KGKn1k,2009.0,9,11,2015,Baarìa,Blind Voting,tt1081935\n3w-MGV1cC78,2009.0,2,11,2015,Baarìa,Four Bites,tt1081935\ncZcI8QATy2k,2009.0,5,11,2015,Baarìa,Let's Elope,tt1081935\n6cseBu1zBC4,2009.0,4,11,2015,Baarìa,First Dance,tt1081935\nQhGtm2E07w0,2009.0,10,11,2015,Baarìa,Three Stones,tt1081935\nls8-S57SGSQ,2009.0,11,11,2015,Baarìa,Transcending Time,tt1081935\n1ccZkqYIluU,2009.0,8,11,2015,Baarìa,Slow Death,tt1081935\nDcETqjNSB4U,2009.0,3,11,2015,Baarìa,Looters,tt1081935\nq5VokxxNaHw,2009.0,7,11,2015,Baarìa,Stealing From The Cripple,tt1081935\nqkIEwsirwBU,2009.0,6,11,2015,Baarìa,Unemployed,tt1081935\nfq-wBS0z4NQ,2010.0,4,9,2015,Hesher,Stalking That Chick,tt1403177\nkGK73er3UdE,2010.0,1,9,2015,Hesher,You Think This Is Funny?,tt1403177\nBnPQSD0Pg4E,2010.0,5,9,2015,Hesher,Fender Bender,tt1403177\nDKQXxsio-Gs,2010.0,7,9,2015,Hesher,Angry Dinner,tt1403177\nxSc5s5MKarM,2010.0,6,9,2015,Hesher,Dirty and Wet,tt1403177\nyyrC-l87Sdc,2010.0,9,9,2015,Hesher,I Lost My Nut,tt1403177\nBctOA1EbnPg,2010.0,2,9,2015,Hesher,The Granny Killer,tt1403177\n1V-vD4bHKR4,2010.0,8,9,2015,Hesher,I'll Smash You in the Face,tt1403177\nqYwrQOJ2eAE,2010.0,3,9,2015,Hesher,Car Burning,tt1403177\n5CuKjYdDd50,2008.0,7,8,2015,The Stoning of Soraya M.,The Stoning,tt1277737\nSVHcUk9WH_s,2008.0,2,8,2015,The Stoning of Soraya M.,Servant,tt1277737\n6mdAoQZkrjY,2008.0,6,8,2015,The Stoning of Soraya M.,Last Words,tt1277737\nFKY8Wsd3fDM,2008.0,5,8,2015,The Stoning of Soraya M.,Innocence and Guilt,tt1277737\ngr_2UA-6hIw,2008.0,8,8,2015,The Stoning of Soraya M.,Soraya's Death,tt1277737\nHc35xCKXOrs,2008.0,3,8,2015,The Stoning of Soraya M.,Intimidation,tt1277737\nA6Mwoov-lGc,2008.0,1,8,2015,The Stoning of Soraya M.,Ali's Rage,tt1277737\ng1RVgC8Vw0A,2008.0,4,8,2015,The Stoning of Soraya M.,Public Beating,tt1277737\nhONljrAJrH0,2010.0,11,12,2015,Alpha and Omega,Howl at the Moon,tt1213012\nB1dK_oxzaX0,2010.0,5,12,2015,Alpha and Omega,Friends for Life,tt1213012\nzuKBp_n_o14,2010.0,8,12,2015,Alpha and Omega,Grab My Tail,tt1213012\n4otU-hfAOO0,2010.0,12,12,2015,Alpha and Omega,A Wolf Wedding,tt1213012\nI8xuqClrB3Y,2010.0,10,12,2015,Alpha and Omega,Grizzly Bear Attack,tt1213012\nbGWyL-vJAn4,2010.0,6,12,2015,Alpha and Omega,Fit to Lead the Pack,tt1213012\nIpW3QbVzNCI,2010.0,1,12,2015,Alpha and Omega,Wolf Pile,tt1213012\nk6eXuHmQoiM,2010.0,4,12,2015,Alpha and Omega,Moonlight Howl,tt1213012\nz9P5NdzCcJo,2010.0,2,12,2015,Alpha and Omega,The Caribou Are Laughing At Us,tt1213012\n4F9i0gj9KKc,2010.0,9,12,2015,Alpha and Omega,Lilly the Hunter,tt1213012\n-qSADHn4nqw,2010.0,7,12,2015,Alpha and Omega,The Golfing Goose,tt1213012\nkk8MNQHBJkY,2010.0,3,12,2015,Alpha and Omega,One Crazy Wolf,tt1213012\n2oGfncb2usc,1999.0,7,8,2015,Stir of Echoes,Make Her Stop!,tt0164181\nQqVgAIcPfXo,1999.0,2,8,2015,Stir of Echoes,Don't Be Afraid of It,tt0164181\nqeytg9JLx-o,1999.0,3,8,2015,Stir of Echoes,She's Taking Him Away!,tt0164181\njsGX_I6mFvc,1999.0,4,8,2015,Stir of Echoes,Want to See What I've Got?,tt0164181\nyZQYClpkJ1M,2001.0,9,9,2015,Lost and Delirious,The Duel,tt0245238\nhgAlSQ4Ckz0,2001.0,2,9,2015,Lost and Delirious,Rage More,tt0245238\nKaCyEft6EmA,1999.0,5,8,2015,Stir of Echoes,I'm Supposed to Dig,tt0164181\nZ46LYLKuros,2001.0,7,9,2015,Lost and Delirious,Sexual Awakening,tt0245238\neN1XH8BQGqI,2001.0,6,9,2015,Lost and Delirious,Love,tt0245238\nrWvqkw0_xFA,1999.0,8,8,2015,Stir of Echoes,The Attack,tt0164181\nhfKhRRdMrVc,1999.0,1,8,2015,Stir of Echoes,The Horrors of Hypnosis,tt0164181\n-HwMH2_-oKA,1999.0,6,8,2015,Stir of Echoes,A Corpse in the Wall,tt0164181\n18ogMe0oYvg,2003.0,5,8,2015,Ju-on 2,An Evil Copy Machine,tt0367913\n7Mbfa0caPBQ,2003.0,2,8,2015,Ju-on 2,Under the Covers,tt0367913\nK7l3r0bdlms,2003.0,1,8,2015,Ju-on 2,Car Trouble,tt0367913\nNbT7rgb2QSU,2003.0,6,8,2015,Ju-on 2,A Violent Pregnancy,tt0367913\n8uAUNIySn_4,2003.0,7,8,2015,Ju-on 2,Bad Dreams,tt0367913\nL1Z7sGSUhaA,2003.0,4,8,2015,Ju-on 2,Killer Wig,tt0367913\nD8e5MaEaWJw,2003.0,8,8,2015,Ju-on 2,The Ghost Between Her Legs,tt0367913\nmFktba3DL8g,2003.0,3,8,2015,Ju-on 2,Hanging By Hair,tt0367913\nQTI8XMmOjE4,2011.0,4,8,2015,Red State,Eye for an Eye,tt0873886\n7okueIbuBDE,2011.0,1,8,2015,Red State,The End Is Nigh,tt0873886\n2_g-cXgaDhE,2011.0,2,8,2015,Red State,The Wrath of God,tt0873886\nyK78AHB5dSs,2011.0,3,8,2015,Red State,Shots Fired,tt0873886\nYmbeYlShWZc,2011.0,6,8,2015,Red State,Save the Babies,tt0873886\nzOTlBEbI7eM,2011.0,8,8,2015,Red State,Heavenly Trumpets,tt0873886\nI1LFslpgsRw,2011.0,7,8,2015,Red State,Raiding the Compound,tt0873886\nx5m9etGofg8,2011.0,5,8,2015,Red State,We're Not Terrorists!,tt0873886\n7O-kshviycI,1986.0,7,9,2015,Chopping Mall,Giving the Killbots a Target Scene,tt0090837\nGV3Rt3A7TAQ,1986.0,8,9,2015,Chopping Mall,Stop Right There Scene,tt0090837\ndqG51nM9k9g,1986.0,1,9,2015,Chopping Mall,Introducing the Killbots Scene,tt0090837\n8myrr8HPt_I,1986.0,6,9,2015,Chopping Mall,Setting Fire to Suzie Scene,tt0090837\n53uT454cHiU,1986.0,4,9,2015,Chopping Mall,Killbots Attack Scene,tt0090837\nF9ZeSn27MMY,1986.0,5,9,2015,Chopping Mall,Peckinpah's Sporting Goods Scene,tt0090837\nAD3JQD0N_iA,1986.0,2,9,2015,Chopping Mall,Disposing of the Janitor Scene,tt0090837\nm2lBtBvgiHQ,1986.0,9,9,2015,Chopping Mall,Have a Nice Day Scene,tt0090837\noeGwe_Y07_k,1986.0,3,9,2015,Chopping Mall,The End of Leslie Todd Scene,tt0090837\nhcIZa8FePZk,1989.0,4,10,2015,The Punisher,House of Horrors,tt0098141\nSnjxkiSs1Dg,1989.0,8,10,2015,The Punisher,Dojo Massacre,tt0098141\nGqc-VRIHfuk,1989.0,3,10,2015,The Punisher,Casino Bloodbath,tt0098141\nUemGzlKVwsk,1989.0,6,10,2015,The Punisher,The Chaser,tt0098141\nvR3yb8mNLYo,1989.0,5,10,2015,The Punisher,Have a Nice Day,tt0098141\ndFIuG_DTVOw,1989.0,1,10,2015,The Punisher,Mob Punishment,tt0098141\nq6HYlg_dJRI,1989.0,10,10,2015,The Punisher,Maximum Punishment,tt0098141\ne0lfNxwgszA,1989.0,7,10,2015,The Punisher,Rough Ride,tt0098141\nxHd5cUGpJs4,1989.0,9,10,2015,The Punisher,Double the Punishment,tt0098141\nF-IumwPd6b4,1989.0,2,10,2015,The Punisher,Ninja Ambush,tt0098141\nQe5bvae8I2k,2000.0,1,9,2015,Cecil B. DeMented,I Am !,tt0173716\nmDnYsc5SIJk,2000.0,2,9,2015,Cecil B. DeMented,The Sprocket Holes,tt0173716\nCj71TWcfot4,2001.0,4,9,2015,Lost and Delirious,Mary Brave,tt0245238\nyJXZwWi2NdE,2001.0,1,9,2015,Lost and Delirious,The New Girl,tt0245238\nj3WOgT1A0XI,2001.0,8,9,2015,Lost and Delirious,\"Never, Ever, Forever Be\",tt0245238\nnwvUihSxHGs,2000.0,7,9,2015,Cecil B. DeMented,Gumped Again,tt0173716\nUFcmai6iKzA,2001.0,3,9,2015,Lost and Delirious,Lesbos,tt0245238\n0SUcAyNL198,2001.0,5,9,2015,Lost and Delirious,The Eagle,tt0245238\nwoboXYiH548,2000.0,6,9,2015,Cecil B. DeMented,Film Commission Assault,tt0173716\nujJ8talVp90,2000.0,9,9,2015,Cecil B. DeMented,I Have a Vision!,tt0173716\nERvEZwe88JU,2000.0,8,9,2015,Cecil B. DeMented,Cinema on Fire,tt0173716\nFIlBqZ0fksM,2000.0,5,9,2015,Cecil B. DeMented,No Budget,tt0173716\nYkBuZCr1O4U,2000.0,4,9,2015,Cecil B. DeMented,Outlaw Cinema,tt0173716\nwoBSpMcgW4g,2000.0,3,9,2015,Cecil B. DeMented,Take Off Your Clothes,tt0173716\nb44FCgewbdc,1986.0,7,9,2015,The Best of Times,White Shoes,tt0090713\n184hH4AknlM,1986.0,3,9,2015,The Best of Times,Practice Aerobics,tt0090713\nGNCOjiBvwCo,1986.0,4,9,2015,The Best of Times,Talking About the World,tt0090713\nILfjXR8rMgY,1986.0,8,9,2015,The Best of Times,Let's Go Jack,tt0090713\nnEcnNSQZpoE,1986.0,9,9,2015,The Best of Times,I Can Get Open,tt0090713\nCR462LcwVBU,1986.0,2,9,2015,The Best of Times,\"Welcome Aboard, Reno\",tt0090713\nGHWClE2g3Ew,1986.0,1,9,2015,The Best of Times,Me or the Game,tt0090713\n5wxD59EtYks,1986.0,6,9,2015,The Best of Times,The Dance,tt0090713\nm-Wccy-Mijg,1986.0,5,9,2015,The Best of Times,Marriage and Football,tt0090713\nIhdqG2gOvvg,1990.0,8,8,2015,Mountains of the Moon,Scars of Africa,tt0100196\nhXiTQfzucK8,1990.0,7,8,2015,Mountains of the Moon,God Save the Queen,tt0100196\nWVqv9kKOfvA,1990.0,1,8,2015,Mountains of the Moon,Night Raid,tt0100196\nNbhfbT2aU0k,1990.0,2,8,2015,Mountains of the Moon,Rescue,tt0100196\nX967_4L8pmc,1990.0,3,8,2015,Mountains of the Moon,Spit Take,tt0100196\nYNaTu-8atDw,1990.0,5,8,2015,Mountains of the Moon,I'll Say Your Name,tt0100196\nsnpoOWqCy3k,1990.0,4,8,2015,Mountains of the Moon,Dangerous Gifts,tt0100196\nS7gyibsEUAI,1990.0,6,8,2015,Mountains of the Moon,The Horrors of Slavery,tt0100196\nexsURQ8bUkg,1993.0,10,12,2015,And God Spoke,Soupy Sales as Moses,tt0107492\nhge2AkSJSIw,1993.0,1,12,2015,And God Spoke,Casting God,tt0107492\nNae0ywUHE-c,1993.0,7,12,2015,And God Spoke,The Studio Screening,tt0107492\nQdDQrp0xXWU,1993.0,12,12,2015,And God Spoke,The Greatest Non-Denominational Bible Story Ever Told,tt0107492\nWSxjWLWu1WE,1993.0,8,12,2015,And God Spoke,We'll Fix It in Post,tt0107492\nHwYyKEu2_Mg,1993.0,6,12,2015,And God Spoke,Noah's Ark,tt0107492\n1_GUmXl_dcg,1993.0,4,12,2015,And God Spoke,The 8 Disciples,tt0107492\nF5XztYH-X-o,1993.0,3,12,2015,And God Spoke,Jesus Christ: Method Actor,tt0107492\n9Hcl6jzgFu4,1993.0,11,12,2015,And God Spoke,Holy Product Placement,tt0107492\n9lCOuDWaGHM,1993.0,9,12,2015,And God Spoke,What Lovely Frankincense,tt0107492\nrZRX4JMxQMs,1993.0,5,12,2015,And God Spoke,Cain & Abel,tt0107492\n8XREKqJr9mo,1993.0,2,12,2015,And God Spoke,The Lord's Other Prayer,tt0107492\n1lBbY5sLWno,1997.0,5,8,2015,Another Nine & a Half Weeks,Total Seduction,tt0119576\n0R3pEe2OW6M,1997.0,2,8,2015,Another Nine & a Half Weeks,First Encounter,tt0119576\nwbfsRXuNwDY,1997.0,6,8,2015,Another Nine & a Half Weeks,Fashionista Party,tt0119576\nQU882zzREY0,1997.0,1,8,2015,Another Nine & a Half Weeks,Mistaken Identity,tt0119576\niMOquId9FGU,1997.0,7,8,2015,Another Nine & a Half Weeks,Three Way,tt0119576\nJtFkc9jD5KI,1997.0,8,8,2015,Another Nine & a Half Weeks,I Don't Want to Be Alone,tt0119576\nIOK6qpQ1vg0,1997.0,4,8,2015,Another Nine & a Half Weeks,Game of Chance,tt0119576\nqb37bdNexuI,1997.0,3,8,2015,Another Nine & a Half Weeks,Clubbing,tt0119576\n8YGn0l9zfew,1980.0,6,12,2015,Raging Bull,He Ain't Pretty No More,tt0081398\nJXq2nnnhqRw,1980.0,10,12,2015,Raging Bull,That's Entertainment,tt0081398\nfdSW39wQL_8,1980.0,5,12,2015,Raging Bull,Sugar Ray Defeats Jake,tt0081398\n9yHJcx89XXk,1980.0,2,12,2015,Raging Bull,You Want Your Steak?,tt0081398\n9Eo8snaeDJs,1980.0,3,12,2015,Raging Bull,Hit Me in the Face,tt0081398\nybst6CAzXCo,1980.0,4,12,2015,Raging Bull,Jake Defeats Sugar Ray,tt0081398\nZ9mMBj-yFuE,1980.0,12,12,2015,Raging Bull,I Could've Been a Contender,tt0081398\nlfrC_mA6o8o,1980.0,7,12,2015,Raging Bull,Joey Beats Salvy,tt0081398\ncNqstBuw5ZY,1980.0,11,12,2015,Raging Bull,I'm Not An Animal,tt0081398\nTx-kB1KKLJ0,1980.0,9,12,2015,Raging Bull,You Never Got Me Down,tt0081398\nNOXp0ABEFC4,1980.0,8,12,2015,Raging Bull,Did You F*** My Brother?,tt0081398\nPVMnl4sBl8A,1980.0,1,12,2015,Raging Bull,Jake's First Loss,tt0081398\nqkfcZ4zdrfA,1998.0,6,9,2015,Lulu on the Bridge,Roof or Bed?,tt0125879\nvB-sBJ_DrGo,1998.0,7,9,2015,Lulu on the Bridge,Hey That's Lou Reed!,tt0125879\no2K5JzEAzcs,1998.0,5,9,2015,Lulu on the Bridge,Ocean or a River?,tt0125879\nLkCHcg-UOfM,1998.0,4,9,2015,Lulu on the Bridge,Amazing Blue,tt0125879\nkQLYkEvyReQ,1998.0,3,9,2015,Lulu on the Bridge,A Huge Turd,tt0125879\nfLjZJgc1nvo,1998.0,2,9,2015,Lulu on the Bridge,Catherine Moore,tt0125879\nIb1awvls274,1998.0,1,9,2015,Lulu on the Bridge,Music Equals Life,tt0125879\nTOSUY8Jmjzk,1998.0,8,9,2015,Lulu on the Bridge,Dr. Van Horn,tt0125879\nqN7dJ2r3zoc,1998.0,9,9,2015,Lulu on the Bridge,Singin' in the Rain,tt0125879\nP1o2faxmQYQ,1999.0,1,8,2015,The Minus Man,Putting Casper to Sleep,tt0151582\nsGS5r7NK5ZA,1999.0,2,8,2015,The Minus Man,Giving Gene a Ride,tt0151582\nexl6XfbWP0s,1999.0,4,8,2015,The Minus Man,I Got Seven Expressions,tt0151582\nBShi3Dn0cRs,1999.0,6,8,2015,The Minus Man,A Killer in a Diner,tt0151582\n2EWQ4s0Z5oI,1999.0,7,8,2015,The Minus Man,Flirting Turns Violent,tt0151582\nypEtxZjRJz0,1999.0,8,8,2015,The Minus Man,Leaving Murder Behind,tt0151582\nt8DHTGsC528,1999.0,5,8,2015,The Minus Man,You Got Any Friends?,tt0151582\nHKUXzME_3ew,1999.0,3,8,2015,The Minus Man,They Never Find the Corpses,tt0151582\nPEU2sirKyiA,2000.0,9,9,2015,Dancing at the Blue Iguana,You Ain't Got No Life!,tt0217355\nOxKtn3THP58,2000.0,4,9,2015,Dancing at the Blue Iguana,Til the End of Love,tt0217355\nQtWhkoqRKqw,2000.0,1,9,2015,Dancing at the Blue Iguana,Stripper Cat Fight,tt0217355\nZ0myXa48shI,2000.0,2,9,2015,Dancing at the Blue Iguana,The Celestial Angel,tt0217355\nSRJsBidnCV4,2000.0,3,9,2015,Dancing at the Blue Iguana,I Think I'm Pregnant,tt0217355\ni7iLNcJKoE4,2000.0,5,9,2015,Dancing at the Blue Iguana,No Smoking,tt0217355\nBZjSJ6AVd74,2000.0,6,9,2015,Dancing at the Blue Iguana,Jo Blows Up,tt0217355\nRHMKRQocaQ4,2000.0,8,9,2015,Dancing at the Blue Iguana,Maternal Instinct,tt0217355\nflWMIVVknEs,2000.0,7,9,2015,Dancing at the Blue Iguana,Kissing the Poet,tt0217355\nVdXfnWThrek,2001.0,5,12,2015,Original Sin,A Bonny Castle,tt0218922\nf92X44rgum0,2001.0,1,12,2015,Original Sin,Not to Be Trusted,tt0218922\nJqoqnJ6VNgE,2001.0,4,12,2015,Original Sin,Whore! Liar! Thief!,tt0218922\nmvTjdnz3s_4,2001.0,7,12,2015,Original Sin,I've Killed a Man,tt0218922\n0xWOfczSAe4,2001.0,9,12,2015,Original Sin,Have You No Conscience at All?,tt0218922\n5Mx0JL_2YKQ,2001.0,10,12,2015,Original Sin,No Other Love But You,tt0218922\nuwHPOHdscwM,2001.0,11,12,2015,Original Sin,I Love You,tt0218922\nWwrlI3z89Pg,2001.0,12,12,2015,Original Sin,You Cannot Walk Away From Love,tt0218922\ngKEaLU9m0Gc,2001.0,6,12,2015,Original Sin,A Private Function,tt0218922\n8iQfU3VUrOs,2001.0,8,12,2015,Original Sin,You're a Whore,tt0218922\nLcjR2Z2iI-E,2001.0,3,12,2015,Original Sin,Love and Lust,tt0218922\nDI_2i5BZcwI,2001.0,2,12,2015,Original Sin,Wedding Dance,tt0218922\n0wngG1BlZNI,2001.0,3,8,2015,Novocaine,Actor Lance Phelps,tt0234354\nxUMqM8hl6F8,2001.0,6,8,2015,Novocaine,This Is Not a Movie,tt0234354\n_32En06MgeU,2001.0,5,8,2015,Novocaine,Feels Like,tt0234354\nFgl7tImKroU,2001.0,7,8,2015,Novocaine,Who's the Idiot!,tt0234354\n-rmALJkEprY,2001.0,8,8,2015,Novocaine,Teeth,tt0234354\nGO4ExuqatyE,2001.0,1,8,2015,Novocaine,Brother Harlan,tt0234354\nNiOPGDo5UJ4,2001.0,2,8,2015,Novocaine,X-Ray Seduction,tt0234354\nk6YFnGzHfKk,2001.0,4,8,2015,Novocaine,A Biter,tt0234354\nD1TC1n9lhXU,1971.0,4,10,2015,Fiddler on the Roof,If I Were a Rich Man,tt0067093\nF9E_PTTHvgI,1971.0,2,10,2015,Fiddler on the Roof,Welcome to Anatevka,tt0067093\nkDtabTufxao,1971.0,1,10,2015,Fiddler on the Roof,Tradition!,tt0067093\n09oumdE0UFI,1971.0,9,10,2015,Fiddler on the Roof,\"Sunrise, Sunset\",tt0067093\nRH3xL8H8tu4,1971.0,5,10,2015,Fiddler on the Roof,Sabbath Prayer,tt0067093\nZhdlKgAakHw,1971.0,6,10,2015,Fiddler on the Roof,To Life!,tt0067093\n_oSK6l24buk,1971.0,7,10,2015,Fiddler on the Roof,On the Other Hand,tt0067093\njVGNdB6iEeA,1971.0,3,10,2015,Fiddler on the Roof,Matchmaker,tt0067093\nCvVeJJ-TnK4,1971.0,8,10,2015,Fiddler on the Roof,Miracle of Miracles,tt0067093\nkHRe9qdfLsw,1971.0,10,10,2015,Fiddler on the Roof,The Bottle Dance,tt0067093\nvbKfMbxFfJo,2001.0,3,8,2015,Chelsea Walls,We Can Help Each Other,tt0226935\nwE4I9l7Sc_o,2001.0,1,8,2015,Chelsea Walls,I'm Staying,tt0226935\njWUnIBHVLYQ,2001.0,2,8,2015,Chelsea Walls,Getting Close,tt0226935\nKhAs8aaZNok,2001.0,5,8,2015,Chelsea Walls,Confessionals,tt0226935\nfUnQuA1z_CE,2001.0,4,8,2015,Chelsea Walls,Lonely One,tt0226935\nTz4liX-da7E,2001.0,6,8,2015,Chelsea Walls,I Want You,tt0226935\n4bb7URQIpcA,2001.0,8,8,2015,Chelsea Walls,Parting Voices,tt0226935\nVqlqOiOST78,2001.0,7,8,2015,Chelsea Walls,I Need a Friend,tt0226935\nBdYd8q4jbqE,2001.0,11,11,2015,All Over the Guy,\"Reunited,\",tt0250202\nqvo_HDqOKww,2001.0,5,11,2015,All Over the Guy,Taking a Break,tt0250202\n2OmHGM9zHqU,2001.0,4,11,2015,All Over the Guy,Post-Date Analysis,tt0250202\nkui9LWtON_k,2001.0,3,11,2015,All Over the Guy,Attraction,tt0250202\nt5zLt-NZrtI,2001.0,7,11,2015,All Over the Guy,Fuzzy Wuzzy,tt0250202\n63nDBr_Qavw,2001.0,2,11,2015,All Over the Guy,Killer Eyes,tt0250202\nr-xcvVWqny0,2001.0,9,11,2015,All Over the Guy,Break-Up,tt0250202\ndxfqu-v68IM,2001.0,10,11,2015,All Over the Guy,Bursting the Bubble,tt0250202\n7CmJFYoSgII,2001.0,6,11,2015,All Over the Guy,Shameful Things,tt0250202\n9kJBc4o_3k8,2001.0,8,11,2015,All Over the Guy,I Love You,tt0250202\nrNmmNleiY_4,2001.0,1,11,2015,All Over the Guy,I'm Not Gay,tt0250202\nMAXHXJ2WgrQ,1988.0,11,12,2015,Bull Durham,The No-No Word Scene,tt0094812\nLveQLUDjnaw,1988.0,8,12,2015,Bull Durham,Annie Seduces Nuke Scene,tt0094812\npWRCxdh4PTM,1988.0,9,12,2015,Bull Durham,I Want you Scene,tt0094812\nSB_LjL0lUJ4,1988.0,7,12,2015,Bull Durham,Winning's Better Than Losing Scene,tt0094812\nPlwmOgcEry8,1988.0,2,12,2015,Bull Durham,Get the Broad Out of Your Head Scene,tt0094812\nG-guv9Pd_RA,1988.0,3,12,2015,Bull Durham,Strikeouts Are Fascist Scene,tt0094812\nRjtmKIWa4tY,1988.0,5,12,2015,Bull Durham,Bunch of Lollygaggers Scene,tt0094812\n85RZMIAL7vM,1988.0,4,12,2015,Bull Durham,Nuke Brings the Heat Scene,tt0094812\nmn5crhTusSA,1988.0,1,12,2015,Bull Durham,What Crash Believes Scene,tt0094812\nEroyjPcw3sg,1988.0,6,12,2015,Bull Durham,Getting Woolly Scene,tt0094812\ndiX4myfR6vU,1988.0,10,12,2015,Bull Durham,On the Mound Convention Scene,tt0094812\nyL3JcykFL40,1988.0,12,12,2015,Bull Durham,Kitchen Love Scene,tt0094812\nFPBY03u-5Zg,2004.0,8,8,2015,House of D,Sweet Melissa,tt0372334\nBFeySGJ75WM,2004.0,1,8,2015,House of D,My Best Friend Pappass,tt0372334\nGY0xXOTwWoA,2004.0,4,8,2015,House of D,Small Balls,tt0372334\nZSL_Z4FFmjo,2004.0,2,8,2015,House of D,Happenis,tt0372334\n6z1TOMdI0i4,2004.0,3,8,2015,House of D,The Retarded Mickey Mantle,tt0372334\n2QD3ND3XiL4,2004.0,5,8,2015,House of D,Flat Chest,tt0372334\nQErELQ48OOk,2004.0,7,8,2015,House of D,Soul Train,tt0372334\nGJdCx-hCKsI,2004.0,6,8,2015,House of D,Shaving,tt0372334\nW7uOKhmp00g,2004.0,3,10,2015,Beyond the Sea,,tt0363473\nXeGQr6g1i9I,2004.0,8,10,2015,Beyond the Sea,I'm Not Your Sister,tt0363473\nIe6YmUGcPYg,2004.0,2,10,2015,Beyond the Sea,Splish Splash,tt0363473\nlnN9r-mmKXw,2004.0,5,10,2015,Beyond the Sea,The Copacabana,tt0363473\nwFBlmb2beQI,2004.0,1,10,2015,Beyond the Sea,Up a Lazy River,tt0363473\nZXhrgVj--6Q,2004.0,4,10,2015,Beyond the Sea,Dream Lover,tt0363473\nthyfYONK0Hs,2004.0,6,10,2015,Beyond the Sea,You Just Got Nominated!,tt0363473\nChcCflTm4-k,2004.0,7,10,2015,Beyond the Sea,Bobby's Rage,tt0363473\nxRFVqsmbLWY,2004.0,9,10,2015,Beyond the Sea,Simple Song of Freedom,tt0363473\nV0gKBcEoVdg,2004.0,10,10,2015,Beyond the Sea,As Long As I'm Singing,tt0363473\ncTVafG4_CaY,1989.0,3,11,2015,When Harry Met Sally...,Just Friends,tt0098635\nMQRZuEppgT0,1989.0,4,11,2015,When Harry Met Sally...,Harry's Divorce,tt0098635\nlNEX0fbGePg,1989.0,6,11,2015,When Harry Met Sally...,I'll Have What She's Having,tt0098635\niEV_pQIf3Og,1989.0,2,11,2015,When Harry Met Sally...,Men and Women Can't Be Friends,tt0098635\ny4Eo2_YMZtE,1989.0,9,11,2015,When Harry Met Sally...,Four-Way Call,tt0098635\njDP0UCV21Ew,1989.0,10,11,2015,When Harry Met Sally...,The Worst Mistake I Ever Made,tt0098635\niNvdewR9znk,1989.0,8,11,2015,When Harry Met Sally...,Feelings of Loss,tt0098635\n0zuRe3QwPG8,1989.0,5,11,2015,When Harry Met Sally...,Sex Dreams,tt0098635\nmp8chvACVBk,1989.0,1,11,2015,When Harry Met Sally...,A Dark Side,tt0098635\nzGw4fC_Dxo4,1989.0,7,11,2015,When Harry Met Sally...,Bad Double Date,tt0098635\novkiChacfc8,1989.0,11,11,2015,When Harry Met Sally...,Harry Loves Sally,tt0098635\nzJNfkO5ujy0,2005.0,10,10,2015,The Best Man,To Be in Love,tt0430919\n4cSZVMEi710,2005.0,6,10,2015,The Best Man,These Aren't Mine,tt0430919\nz2QvrmvECo8,2005.0,3,10,2015,The Best Man,Sarah's Test Screening,tt0430919\no-0PQaLy0lc,2005.0,1,10,2015,The Best Man,The Engagement Party,tt0430919\nG-fyxbtiDDo,2005.0,4,10,2015,The Best Man,Falling In Love,tt0430919\nzR7e8cPlhzQ,2005.0,9,10,2015,The Best Man,She Deserves Better,tt0430919\nkWjZx3bSDHI,2005.0,8,10,2015,The Best Man,Not My Kind of Film,tt0430919\nSxztUnejrvI,2005.0,7,10,2015,The Best Man,Surprise Party,tt0430919\nsOPwbePhOXs,2005.0,2,10,2015,The Best Man,Love At First Sight,tt0430919\nJ7zl9A6-xHY,2005.0,5,10,2015,The Best Man,The Realtor,tt0430919\naCaTMqs_Qsc,2005.0,3,8,2015,In the Mix,We Need a Man's Opinion,tt0426615\n9lYe-ez83H8,2005.0,6,8,2015,In the Mix,I Heard Black Men Can Dance,tt0426615\nBKR1-S8aRaQ,2005.0,8,8,2015,In the Mix,Friends to the Rescue,tt0426615\nWYliK36fyCU,2005.0,7,8,2015,In the Mix,Ever Think About This?,tt0426615\nvSBQt-6fDr8,2005.0,1,8,2015,In the Mix,What Happened to Pamela?,tt0426615\nUdYapy35qJ8,2005.0,4,8,2015,In the Mix,Ms. Right Now,tt0426615\nBT5Z6_xe86k,2005.0,2,8,2015,In the Mix,Assassination Attempt,tt0426615\nsFJmNKLW-2A,2005.0,5,8,2015,In the Mix,A Kiss With Dolly,tt0426615\nV_tlFZCiIHo,1986.0,6,11,2015,Blue Velvet,Exposed,tt0090756\nb-QlCUByMcE,1986.0,3,11,2015,Blue Velvet,Are You Crazy?,tt0090756\nIs5sRHNIAwE,1986.0,11,11,2015,Blue Velvet,Frank Returns,tt0090756\nsenNDipdmPo,1986.0,7,11,2015,Blue Velvet,Baby Wants,tt0090756\nBeYx_CBH700,1986.0,1,11,2015,Blue Velvet,That's a Human Ear,tt0090756\n2iWKnf3C8ZY,1986.0,5,11,2015,Blue Velvet,Detective or Pervert?,tt0090756\n36LnnBNcETk,1986.0,10,11,2015,Blue Velvet,Don't You Look at Me!,tt0090756\nz2G1Ht59cpM,1986.0,9,11,2015,Blue Velvet,Joy Ride With Frank,tt0090756\nncnq2pu4PlE,1986.0,8,11,2015,Blue Velvet,Sandy's Dream of Robins,tt0090756\nkuVLtcqiPrY,1986.0,2,11,2015,Blue Velvet,It's a Strange World,tt0090756\nGacX6Le_uDM,1986.0,4,11,2015,Blue Velvet,The Bug Man,tt0090756\n54jjaJTov6s,2005.0,7,8,2015,Boogeyman,Chasing the,tt0357507\nGPJNP0RvWHs,2005.0,8,8,2015,Boogeyman,Confronting the,tt0357507\nVNBzjYyGcd0,2005.0,1,8,2015,Boogeyman,He's Not Real,tt0357507\nEhsfKBbm1f4,2005.0,6,8,2015,Boogeyman,Monster in the Bathtub,tt0357507\np4IUUBVAUJA,2005.0,2,8,2015,Boogeyman,Mother Returns,tt0357507\nSauYDhRS8qQ,2005.0,5,8,2015,Boogeyman,The Taker of Children,tt0357507\nyth5JoZKnGQ,2005.0,4,8,2015,Boogeyman,Closet of Terror,tt0357507\nW98LPZXSzHE,2005.0,3,8,2015,Boogeyman,Bird in the Windshield,tt0357507\nw13Y3PHCqVQ,2005.0,8,8,2015,Drop Dead Sexy,Not The Ending You Expected,tt0397401\nI8ltv_SROgc,2005.0,7,8,2015,Drop Dead Sexy,Capturing Eddie,tt0397401\nOUfJ9E9zfjg,2005.0,5,8,2015,Drop Dead Sexy,She Looks Familiar,tt0397401\nG6zOqkX6qTo,2005.0,3,8,2015,Drop Dead Sexy,Grave Robbing,tt0397401\nM_y-ZHpKCqs,2005.0,4,8,2015,Drop Dead Sexy,Don't You Like Me?,tt0397401\nAbyNlvzydeA,2005.0,2,8,2015,Drop Dead Sexy,An Explosive Screw Up,tt0397401\nXhxddKZYvH4,2005.0,1,8,2015,Drop Dead Sexy,Why People Are Afraid of Spiders,tt0397401\nytd6Q9IxEzk,2005.0,6,8,2015,Drop Dead Sexy,Proof of Life,tt0397401\nFAOoSmjHsog,1984.0,7,11,2015,Blood Simple,Buried Alive,tt0086979\nFk_NuqIXhtA,1984.0,4,11,2015,Blood Simple,Marty Hires Visser,tt0086979\nnLykrziXGyg,1984.0,1,11,2015,Blood Simple,\"Down Here, You're on Your Own\",tt0086979\np6XV7oYBMG4,1984.0,3,11,2015,Blood Simple,Kicked in the Balls,tt0086979\n1pJdFkkeu0U,1984.0,6,11,2015,Blood Simple,Ray Hides Marty,tt0086979\nvVfLenSAj8s,1984.0,8,11,2015,Blood Simple,Abby's Nightmare,tt0086979\n4mC5CUTwjno,1984.0,10,11,2015,Blood Simple,Hand Impalement,tt0086979\nqLwEQ_18_V8,1984.0,2,11,2015,Blood Simple,What's Funny,tt0086979\nRpbUeRN_rcQ,1984.0,11,11,2015,Blood Simple,Abby Kills Visser,tt0086979\nz2ZqFFFcXmg,1984.0,5,11,2015,Blood Simple,Who Looks Stupid Now?,tt0086979\nCn6TkV9mxmY,1984.0,9,11,2015,Blood Simple,Lights Out,tt0086979\nvkj3RBOD3cA,1990.0,2,11,2015,Rocky V,Rocky's Angel,tt0100507\nKAEUeqJRxB8,1990.0,7,11,2015,Rocky V,Tommy Challenges Rocky,tt0100507\nNjjDcdIAK60,1990.0,5,11,2015,Rocky V,Tommy Wins the Championship,tt0100507\n0Tv6PQbWvJA,1990.0,1,11,2015,Rocky V,Broken Inside,tt0100507\nhlx-FULnwJs,1990.0,8,11,2015,Rocky V,One More Round,tt0100507\nI7nWj8Q_FgI,1990.0,11,11,2015,Rocky V,Rocky & Son,tt0100507\n2XV-EU8JlNI,1990.0,3,11,2015,Rocky V,Don't Sell Out,tt0100507\n8H9u7P1d87Y,1990.0,10,11,2015,Rocky V,Touch Me and I'll Sue,tt0100507\nPUXHIqGfkXs,1990.0,9,11,2015,Rocky V,Rocky Beats Tommy,tt0100507\ng7yAbv_u-FA,1990.0,4,11,2015,Rocky V,You're Losing Your Family!,tt0100507\nkpS1Pghejt8,1990.0,6,11,2015,Rocky V,A Rocky Balboa He'll Never Be,tt0100507\nwWrB-Gbjnik,1985.0,2,12,2015,Rocky IV,Press Conference Clash,tt0089927\nfWa-h0maM1w,1985.0,1,12,2015,Rocky IV,\"Whatever He Hits, He Destroys\",tt0089927\nhHC_R7ATGuI,1985.0,6,12,2015,Rocky IV,Reaching the Summit,tt0089927\nwICMOVrSal0,1985.0,7,12,2015,Rocky IV,I Must Break You,tt0089927\nqZRbStnLn3c,1985.0,8,12,2015,Rocky IV,The Russian's Cut,tt0089927\n3cTyY36ENxY,1985.0,9,12,2015,Rocky IV,Moscow is Pro-Rocky,tt0089927\nEiTYwecY41c,1985.0,4,12,2015,Rocky IV,\"If He Dies, He Dies\",tt0089927\n5rvk07eB9wk,1985.0,3,12,2015,Rocky IV,Apollo's Bloody First Round,tt0089927\nbbVqciFRioA,1985.0,11,12,2015,Rocky IV,Drago Goes Down,tt0089927\n1AmiFfP9u5c,1985.0,10,12,2015,Rocky IV,To the End,tt0089927\nwVP1wO_E4yk,1985.0,5,12,2015,Rocky IV,Training in Russia,tt0089927\nUc6tQH8yHF8,1985.0,12,12,2015,Rocky IV,Everybody Can Change,tt0089927\nONit4ATZmhw,1982.0,3,13,2015,Rocky III,A Wreckin' Machine,tt0084602\neNnr60_UZtg,1982.0,2,13,2015,Rocky III,Clubber Heckles Rocky,tt0084602\n-edZKfoS2V4,1982.0,7,13,2015,Rocky III,Farewell to Mickey,tt0084602\njm73CCe1e4o,1982.0,4,13,2015,Rocky III,Mickey's Heart Attack,tt0084602\n8DrsMeY29Kc,1982.0,10,13,2015,Rocky III,I'm Afraid,tt0084602\n8KRzqPxR5zs,1982.0,9,13,2015,Rocky III,There Is No Tomorrow!,tt0084602\nCJKeL-ziA_A,1982.0,12,13,2015,Rocky III,I Pity the Fool,tt0084602\nrxGjeoSRNQU,1982.0,5,13,2015,Rocky III,Dead Meat,tt0084602\nkQ65F_pf868,1982.0,6,13,2015,Rocky III,Knocked Out,tt0084602\n_3GmO3aiBKY,1982.0,1,13,2015,Rocky III,Rocky Throws Thunderlips,tt0084602\nlu2-RuTwlto,1982.0,13,13,2015,Rocky III,Rocky Beats Clubber,tt0084602\n4kVGdo53gwY,1982.0,8,13,2015,Rocky III,I'm Gonna Crucify Him,tt0084602\n3ESS6HqOuoc,1982.0,11,13,2015,Rocky III,Getting Stronger,tt0084602\nUCZNyjhoINE,1979.0,1,12,2015,Rocky II,Rocky Proposes to Adrian,tt0079817\nB2g2yYkNegE,1979.0,2,12,2015,Rocky II,Beast Aftershave,tt0079817\nU1ngzzlFqgQ,1979.0,3,12,2015,Rocky II,\"You Got the Heart, But You Ain't Got the Tools\",tt0079817\nbchPm7InHcg,1979.0,5,12,2015,Rocky II,Heated Press Conference,tt0079817\neM3CovgD8Bo,1979.0,6,12,2015,Rocky II,Kentucky Fried Idiot,tt0079817\nui3pnIeA_HM,1979.0,8,12,2015,Rocky II,Adrian Comes Back,tt0079817\nthhYv6-lz9A,1979.0,12,12,2015,Rocky II,\"Yo Adrian, I Did It!\",tt0079817\nGEDL7dCxWvs,1979.0,4,12,2015,Rocky II,\"I Won, But I Didn't Beat Him\",tt0079817\nz_hfmThW4fs,1979.0,11,12,2015,Rocky II,Heavyweight Champion of the World,tt0079817\nJBNOsPP2yhw,1979.0,9,12,2015,Rocky II,Rocky's Run,tt0079817\nRGdgqkgcvCs,1979.0,7,12,2015,Rocky II,You're Training Like a Bum,tt0079817\n4uRK1MPvUps,1979.0,10,12,2015,Rocky II,200 Pound Italian Tank,tt0079817\nTHaIWPlHvLY,1990.0,10,11,2015,Dances with Wolves,River Battle,tt0099348\ny1kqd_RgNac,1990.0,4,11,2015,Dances with Wolves,I Am Not Afraid of You,tt0099348\nuZRTLpXXlds,1990.0,6,11,2015,Dances with Wolves,Tatanka,tt0099348\ncH_nhvO8stg,1990.0,11,11,2015,Dances with Wolves,I Am Your Friend,tt0099348\nDvcLVg4rz-c,1990.0,8,11,2015,Dances with Wolves,Heroic Shot,tt0099348\ng6q_n-SZg-A,1990.0,9,11,2015,Dances with Wolves,I Am Dances With Wolves,tt0099348\nCr4KHgNuxcA,1990.0,2,11,2015,Dances with Wolves,To See the Frontier,tt0099348\nCq_Fag11NRg,1990.0,3,11,2015,Dances with Wolves,This is My Post,tt0099348\nuNSSfdkcppw,1990.0,5,11,2015,Dances with Wolves,Stands With A Fist,tt0099348\nPnffktauNZw,1990.0,7,11,2015,Dances with Wolves,The Buffalo Hunt,tt0099348\noK_wtjlQcns,1990.0,1,11,2015,Dances with Wolves,Suicide Attempt,tt0099348\nnpI-xPUygXY,2005.0,3,8,2015,An American Haunting,Ghostly Attack,tt0429573\nUpsxCiyuxGM,2005.0,4,8,2015,An American Haunting,Night Terror,tt0429573\nPb3QUVXfKto,2005.0,1,8,2015,An American Haunting,Chased Through a Nightmare,tt0429573\nW5_sieIOe88,2005.0,8,8,2015,An American Haunting,A Forest of Ghosts and Wolves,tt0429573\nyBsFjC1fVx8,2005.0,5,8,2015,An American Haunting,Do You Want to Play?,tt0429573\nt9QcyYlB7Ac,2005.0,7,8,2015,An American Haunting,You're Gonna Die,tt0429573\nET1bH9TqwCE,2005.0,2,8,2015,An American Haunting,The First Haunting,tt0429573\nlrViTBpl8_A,2005.0,6,8,2015,An American Haunting,I'm So Afraid,tt0429573\npRyH7gS__WI,2006.0,2,7,2015,The Grudge 2,Chased in the Hospital,tt0433386\nOn6-ADTS-g8,2006.0,1,7,2015,The Grudge 2,A Brutal Breakfast,tt0433386\nRUJeDvZRsps,2006.0,4,7,2015,The Grudge 2,Haunted Phone Booth,tt0433386\n78WFIwR9FrY,2006.0,3,7,2015,The Grudge 2,A Ghost in the Bed,tt0433386\nt31U3QAkClM,2006.0,5,7,2015,The Grudge 2,Dark Room of Death,tt0433386\nVbJgsN5PcyM,2006.0,7,7,2015,The Grudge 2,They Followed Me Here,tt0433386\n5poOduTF5pM,2006.0,6,7,2015,The Grudge 2,Creepy Counseling,tt0433386\n_DWgvYbpexM,1995.0,4,12,2015,Showgirls,I Hate You Scene,tt0114436\nqoVuQxxeAl0,1995.0,1,12,2015,Showgirls,Lap Dancing 101 Scene,tt0114436\nXECoJa7AU-c,1995.0,5,12,2015,Showgirls,A Versace Dress Scene,tt0114436\ni60a-KYSCno,1995.0,3,12,2015,Showgirls,Tony Moss Is a Prick Scene,tt0114436\n3QWd5rCd-R8,1995.0,6,12,2015,Showgirls,Thrust It! Scene,tt0114436\nCHyJRCF3sEc,1995.0,8,12,2015,Showgirls,Nomi's Got Heat Scene,tt0114436\nVvH6ZeCJNHA,1995.0,11,12,2015,Showgirls,I'm Not a Whore Scene,tt0114436\nUKaGbPJZicM,1995.0,2,12,2015,Showgirls,You Burn When You Dance Scene   Moveclips,tt0114436\n-9T4jMND-4E,1995.0,7,12,2015,Showgirls,Doggy Chow & Champagne Scene,tt0114436\nBB_1LSxIC4o,1995.0,12,12,2015,Showgirls,A Kiss for Cristal Scene,tt0114436\nfIleQPfCec0,1995.0,9,12,2015,Showgirls,Nomi Gets the Part Scene,tt0114436\nhEZKrsmIGyg,1995.0,10,12,2015,Showgirls,Meeting Andrew Carver Scene,tt0114436\nats6Rg3WPbM,2006.0,12,12,2015,Penelope,I'm Still Me,tt0472160\ncXjzLXjLBTo,2006.0,11,12,2015,Penelope,I'm Being Her Mother!,tt0472160\narJc5qABgO8,2006.0,10,12,2015,Penelope,I Like Myself The Way I Am,tt0472160\nrRWT4FRDq2U,2006.0,9,12,2015,Penelope,Says 'Hi',tt0472160\nSxtPzI76s3E,2006.0,8,12,2015,Penelope,Photo Booth Pig,tt0472160\nTzmt5YLzDXQ,2006.0,6,12,2015,Penelope,I'm A Monster,tt0472160\nKBbowtlzD88,2006.0,7,12,2015,Penelope,Escapes,tt0472160\n4g4fmiFvXmk,2006.0,5,12,2015,Penelope,He'll Be Back,tt0472160\neI4FXLtPBL0,2006.0,4,12,2015,Penelope,One Man Who Didn't Run Away,tt0472160\n2-Y-e_9P8ko,2006.0,3,12,2015,Penelope,The One That Got Away,tt0472160\nDMUnxdly1zI,2006.0,2,12,2015,Penelope,'s Funeral,tt0472160\ntTsOHmaiMq8,2006.0,1,12,2015,Penelope,'s Birth,tt0472160\nflOMk-bWIxQ,2007.0,4,10,2015,P2,Bludgeoned,tt0804516\nIaAhl7maKhk,2007.0,1,10,2015,P2,Kidnapped,tt0804516\nSpZfI5x9PyE,2007.0,9,10,2015,P2,Parking Garage Chicken,tt0804516\nQcqrOIxjeOA,2007.0,5,10,2015,P2,Car Crushed,tt0804516\n7q5lFxaC2f4,2007.0,3,10,2015,P2,Back Stab,tt0804516\nC2s_9Cx4AG4,2007.0,10,10,2015,P2,\"Merry Christmas, Thomas\",tt0804516\neKmMFRdNCEw,2007.0,2,10,2015,P2,Calling Mom,tt0804516\nggC1uf1QTjw,2007.0,7,10,2015,P2,Blue Christmas,tt0804516\nVASm7dDXDcw,2007.0,8,10,2015,P2,Beware of Dog,tt0804516\nIFTljGCli5U,2007.0,6,10,2015,P2,The Elevator,tt0804516\nb8ZW-98Zn-w,1979.0,8,12,2015,Mad Max,Getting Ice Cream,tt0079501\noh2MX0EftaU,1979.0,2,12,2015,Mad Max,Stay Off the Roads!,tt0079501\nJfJVmzthD3Q,1979.0,1,12,2015,Mad Max,I Am the Nightrider,tt0079501\nqUi5Lo9SHTY,1979.0,4,12,2015,Mad Max,The Last of the V-8s,tt0079501\nlkAYkfIqivc,1979.0,6,12,2015,Mad Max,Terrorizing the Innocent,tt0079501\ndHwJ6zB8B-4,1979.0,7,12,2015,Mad Max,Johnny Boy Burns Goose,tt0079501\nKGoS1jrmgHg,1979.0,9,12,2015,Mad Max,The Death of Max's Family,tt0079501\nK1YndrF8GiU,1979.0,5,12,2015,Mad Max,The Night-Rider,tt0079501\nuAHjDGPOQEQ,1979.0,3,12,2015,Mad Max,Max vs. Nightrider,tt0079501\nsE0hL32wswo,1979.0,10,12,2015,Mad Max,Ambush on the Road,tt0079501\n1UbSL3Bri4E,1979.0,12,12,2015,Mad Max,Hack Through Your Ankle,tt0079501\nVUNpJBzAyXk,1979.0,11,12,2015,Mad Max,Taking Out Toecutter,tt0079501\n9M_shJ1_q68,1989.0,1,10,2015,Kickboxer,Tong Po Triumphant,tt0097659\nZyl9lO3o9_0,1989.0,5,10,2015,Kickboxer,Disco Dancing,tt0097659\nu9gzHfq9RsQ,1989.0,8,10,2015,Kickboxer,The Tao of Tong Po,tt0097659\n8IG_Y8BrorA,1989.0,2,10,2015,Kickboxer,Helping Hand,tt0097659\nxbhR3UYKLws,1989.0,9,10,2015,Kickboxer,You Bleed Like Mylee,tt0097659\ndadFHEMhfxo,1989.0,7,10,2015,Kickboxer,Round One,tt0097659\nu4bLh7SN53U,1989.0,6,10,2015,Kickboxer,Mylee Is the Way,tt0097659\nWHFy_iSnR4M,1989.0,10,10,2015,Kickboxer,Nok Su Kow!,tt0097659\nNBJhQqGxJBE,1989.0,4,10,2015,Kickboxer,Kick the Tree,tt0097659\nIicsG0Br1q4,1989.0,3,10,2015,Kickboxer,Stone City,tt0097659\nZHS4xXmL87I,2007.0,6,10,2015,Hostel: Part 2,Heads in a Closet,tt0498353\n5OZPyf-QseQ,2007.0,1,10,2015,Hostel: Part 2,Bad Dream,tt0498353\nPvwjtOewYu8,2007.0,4,10,2015,Hostel: Part 2,Smints,tt0498353\ndcIVsX1-Aio,2007.0,8,10,2015,Hostel: Part 2,The Italian Cannibal,tt0498353\nupGmHcSsGmc,2007.0,7,10,2015,Hostel: Part 2,Sawed,tt0498353\n88qGMm1AoGQ,2007.0,5,10,2015,Hostel: Part 2,Nose Bite,tt0498353\nd90YEOlhtRk,2007.0,2,10,2015,Hostel: Part 2,A Heady Breakfast,tt0498353\nDDlHzP-SYFw,2007.0,3,10,2015,Hostel: Part 2,Bidding,tt0498353\nRs28rq81pGo,2007.0,10,10,2015,Hostel: Part 2,Nostrovia,tt0498353\n-ip57avHn8E,2007.0,9,10,2015,Hostel: Part 2,Needle in the Head,tt0498353\nkpjWox_c9Ig,1966.0,2,12,2015,\"The Good, the Bad and the Ugly\",Angel Eyes is Bad,tt0060196\np9shpHAh8uc,1966.0,6,12,2015,\"The Good, the Bad and the Ugly\",Two Kinds of Spurs,tt0060196\nnouLQZCXW4A,1966.0,8,12,2015,\"The Good, the Bad and the Ugly\",Blue or Gray?,tt0060196\nrXs41JvueZY,1966.0,4,12,2015,\"The Good, the Bad and the Ugly\",Our Partnership Is Untied,tt0060196\nE303pbjYRdo,1966.0,1,12,2015,\"The Good, the Bad and the Ugly\",Angel Eyes Finishes the Job,tt0060196\no36m-2TPwck,1966.0,12,12,2015,\"The Good, the Bad and the Ugly\",Tuco's Final Insult,tt0060196\nD7Ax5jr6mDM,1966.0,3,12,2015,\"The Good, the Bad and the Ugly\",Blondie Does the Cutting,tt0060196\nthSPQDFYyiE,1966.0,7,12,2015,\"The Good, the Bad and the Ugly\",The Name on the Grave,tt0060196\nXsa_dy0w84Y,1966.0,5,12,2015,\"The Good, the Bad and the Ugly\",Tuco Gets a Gun,tt0060196\n_yMeXMRn9KU,1966.0,9,12,2015,\"The Good, the Bad and the Ugly\",Tuco is Tortured,tt0060196\n5PgAKzmWmuk,1966.0,11,12,2015,\"The Good, the Bad and the Ugly\",Three-Way Standoff,tt0060196\nJrYtD7gSWsI,1966.0,10,12,2015,\"The Good, the Bad and the Ugly\",\"When You Have to Shoot, Shoot\",tt0060196\nPO8fJeJP8AU,2000.0,6,8,2015,Leprechaun in the Hood,An Eye For Pie,tt3602442\nhEzyoeRuxYk,2000.0,1,8,2015,Leprechaun in the Hood,Afro Arsenal,tt3602442\nFz9Y72jbsxU,2000.0,4,8,2015,Leprechaun in the Hood,Just The Right Size,tt3602442\njhz2fVM1rMA,2000.0,2,8,2015,Leprechaun in the Hood,A Friend With Weed,tt3602442\njMAy36cl6w8,2000.0,5,8,2015,Leprechaun in the Hood,Sinful Creature,tt3602442\nXzWlhLSitJ8,2000.0,8,8,2015,Leprechaun in the Hood,The Leprechaun Rap,tt3602442\nrU3GNIhA7fk,2000.0,3,8,2015,Leprechaun in the Hood,Love Me,tt3602442\nOl5eFltyhLE,2000.0,7,8,2015,Leprechaun in the Hood,Cross-Dressing Impostor,tt3602442\n1hiv8o-SRZ0,1997.0,7,9,2015,Leprechaun 4: In Space,Flattening Harold,tt0116861\n1m3y_pIJ304,1997.0,9,9,2015,Leprechaun 4: In Space,A Leprechaun In Space,tt0116861\nFKwYBGdhUpc,1997.0,6,9,2015,Leprechaun 4: In Space,This Little Piggy,tt0116861\n--aqjaJyZLk,1997.0,5,9,2015,Leprechaun 4: In Space,Workplace Safety,tt0116861\nXrnUNfRvAho,1997.0,4,9,2015,Leprechaun 4: In Space,The Man Behind the Curtain,tt0116861\nNsjUpOTLrr0,1997.0,2,9,2015,Leprechaun 4: In Space,Always Wear a Prophylactic,tt0116861\nepBGWHCrfr4,1997.0,3,9,2015,Leprechaun 4: In Space,Flesh-Eating Bacteria,tt0116861\nIHVBdcgvTaM,1997.0,1,9,2015,Leprechaun 4: In Space,The Leprechaun's Treasures,tt0116861\nJtW17JUoeUs,1997.0,8,9,2015,Leprechaun 4: In Space,Big Is Good,tt0116861\njM8cy3uB5N8,1964.0,4,9,2015,A Fistful of Dollars,Rescuing Marisol,tt0058461\n2mbvrOmirQg,1964.0,6,9,2015,A Fistful of Dollars,Barrelled Over,tt0058461\nG-50M2Wex20,1964.0,5,9,2015,A Fistful of Dollars,A Serious Beating,tt0058461\nABUroSunjEY,1964.0,3,9,2015,A Fistful of Dollars,Shoot for the Heart,tt0058461\nvsPVyvwwVns,1964.0,2,9,2015,A Fistful of Dollars,Double Cross by the River,tt0058461\nSv_GcxkmW4Y,1964.0,1,9,2015,A Fistful of Dollars,Get Three Coffins Ready,tt0058461\nCbB6CosDNV4,1964.0,7,9,2015,A Fistful of Dollars,Making Armor,tt0058461\nY9nW4w5tHVM,1964.0,8,9,2015,A Fistful of Dollars,Aim for the Heart,tt0058461\njQPhLeyzkLY,1964.0,9,9,2015,A Fistful of Dollars,Pistol vs. Rifle,tt0058461\nwreBOqv-y3Y,2008.0,8,8,2015,The Midnight Meat Train,To Keep the Worlds Separate,tt0805570\nR6oNHDPMOKQ,2008.0,7,8,2015,The Midnight Meat Train,Final Fight,tt0805570\n6GAilUIUtpw,2008.0,6,8,2015,The Midnight Meat Train,Hide and Seek,tt0805570\n0IyGdSEdk3g,2008.0,4,8,2015,The Midnight Meat Train,The Meat Locker,tt0805570\ntOpPh1MQ9sM,2008.0,3,8,2015,The Midnight Meat Train,Brutal Brawl,tt0805570\nKoDrm4b6SH8,2008.0,1,8,2015,The Midnight Meat Train,Caught on Camera,tt0805570\n2oMW26rEZUk,2008.0,2,8,2015,The Midnight Meat Train,Subway Slaughter,tt0805570\nZIOGfLuHu3Y,2008.0,5,8,2015,The Midnight Meat Train,Field Dressing a Human,tt0805570\nrETUKp1A-xo,1995.0,7,8,2015,Leprechaun 3,Managed Care,tt0113636\naQq3mHLZ-X0,1995.0,6,8,2015,Leprechaun 3,A Load to Explode,tt0113636\nHTbSaYy2Bhk,1995.0,5,8,2015,Leprechaun 3,Robo Sex,tt0113636\nRFpNZ_n9rcI,1995.0,4,8,2015,Leprechaun 3,Room Service,tt0113636\nxMOzBw0mrcc,1995.0,8,8,2015,Leprechaun 3,Flame Broiled,tt0113636\n9iPH8MXkPEE,1995.0,2,8,2015,Leprechaun 3,Winning Streak,tt0113636\ni-2EJ-HDYg8,1995.0,1,8,2015,Leprechaun 3,Leprechaun Reborn,tt0113636\ne2Odq49gEbs,1995.0,3,8,2015,Leprechaun 3,Leprechaun in Vegas,tt0113636\nN3qEvEGFdKE,1986.0,1,12,2015,Three Amigos,Look Up Here!,tt0092086\nGPdEP_fFQhk,1986.0,4,12,2015,Three Amigos,A Male Plane,tt0092086\niB89FIStq7Y,1986.0,7,12,2015,Three Amigos,Blue Shadows (On the Trail),tt0092086\ne9vPvHO8Kp4,1986.0,9,12,2015,Three Amigos,The Singing Bush and the Invisible Swordsman,tt0092086\nokiMnLyCMbA,1986.0,2,12,2015,Three Amigos,What's Tequila?,tt0092086\nT6wetejGqh0,1986.0,3,12,2015,Three Amigos,My Little Buttercup,tt0092086\nfw7p7tAdVuE,1986.0,5,12,2015,Three Amigos,Three Amigo Salute,tt0092086\npUWlaORsqw4,1986.0,6,12,2015,Three Amigos,Kiss on the Veranda,tt0092086\nL08fJmbHcPo,1986.0,8,12,2015,Three Amigos,Lip Balm?,tt0092086\nP8ROhP_3-Qk,1986.0,10,12,2015,Three Amigos,A Plethora of Pinatas,tt0092086\n1l7e9BD_gos,1986.0,11,12,2015,Three Amigos,Gringos Falling From the Sky,tt0092086\nZoZ_4nNNn9M,1986.0,12,12,2015,Three Amigos,Lucky's El Guapo Speech,tt0092086\n18QXG4aUP60,1965.0,10,10,2015,For a Few Dollars More,Corpse Math,tt0059578\nGkkdbPYW5QU,1965.0,9,10,2015,For a Few Dollars More,Final Duel,tt0059578\nI2E8wW-YGBA,1965.0,7,10,2015,For a Few Dollars More,You'll Be Smoking in Hell,tt0059578\n3ucBVz_IFGk,1965.0,5,10,2015,For a Few Dollars More,Hat Blasting,tt0059578\nk7Awv1n438I,1965.0,4,10,2015,For a Few Dollars More,Mortimer Strikes a Match,tt0059578\nXsiXAckgh6I,1965.0,1,10,2015,For a Few Dollars More,Mortimer's Rifles,tt0059578\n_GsQYT-btPA,1965.0,2,10,2015,For a Few Dollars More,Bet Your Life,tt0059578\nxpkA68e5HN4,1965.0,3,10,2015,For a Few Dollars More,The Musical Pocket Watch,tt0059578\np5Lzdntomy4,1965.0,6,10,2015,For a Few Dollars More,Shooting Fruit,tt0059578\nd66vE__YWME,1965.0,8,10,2015,For a Few Dollars More,Monco Chimes In,tt0059578\nFPZ4yah3ROU,1987.0,1,11,2015,Spaceballs,Pizza the Hutt,tt0094012\naeWbTffMq-A,1987.0,10,11,2015,Spaceballs,Rescuing the Princess,tt0094012\nnRGCZh5A8T4,1987.0,5,11,2015,Spaceballs,We're in Now Now,tt0094012\nB-NhD15ocwA,1987.0,9,11,2015,Spaceballs,Giving Up the Combination,tt0094012\nwHNB8IHfHdU,1987.0,2,11,2015,Spaceballs,Surrounded by A**holes,tt0094012\nNAWL8ejf2nM,1987.0,4,11,2015,Spaceballs,Ludicrous Speed,tt0094012\nrGvblGCD7qM,1987.0,3,11,2015,Spaceballs,The Radar Is Jammed,tt0094012\nfgRFQJCHcPw,1987.0,6,11,2015,Spaceballs,Merchandising! Merchandising!,tt0094012\nhD5eqBDPMDg,1987.0,7,11,2015,Spaceballs,Combing the Desert,tt0094012\neGoXyXiwOBg,1987.0,8,11,2015,Spaceballs,Dark Helmet Plays With Dolls,tt0094012\npPkWZdluoUg,1987.0,11,11,2015,Spaceballs,Your Schwartz Is as Big as Mine,tt0094012\nDvS1BdiVC7o,2007.0,9,9,2015,Highlander: The Source,Face the Guardian,tt0299981\nRb5mk6TfzoM,2007.0,7,9,2015,Highlander: The Source,You Can't Save Me,tt0299981\nRZCFh9yDIOs,2007.0,6,9,2015,Highlander: The Source,It Calls to You,tt0299981\nuOPuo29uzFk,2007.0,5,9,2015,Highlander: The Source,I Want the Impossible,tt0299981\nze-GArhI0iM,2007.0,4,9,2015,Highlander: The Source,You Pissed It Away,tt0299981\nmj-34Q3fCHs,2007.0,3,9,2015,Highlander: The Source,There Can Be Only Me,tt0299981\n7j9gs7xZ-9M,2007.0,2,9,2015,Highlander: The Source,The Guardian Rises,tt0299981\nRAFmFyb1siI,2007.0,1,9,2015,Highlander: The Source,Mistaken Identity,tt0299981\nZEliNNDLyUg,2007.0,8,9,2015,Highlander: The Source,Burning Man Fight,tt0299981\nnjyllF8b_W4,2008.0,8,9,2015,The Hurt Locker,Stuff That Almost Killed Me,tt0887912\nrviQWy48B_w,2008.0,7,9,2015,The Hurt Locker,Insurgent Sniper,tt0887912\nlA1bgUYjJ0I,2008.0,9,9,2015,The Hurt Locker,Not Enough Time,tt0887912\nLxmnOxCk3dM,2008.0,6,9,2015,The Hurt Locker,What Are We Shooting At?,tt0887912\nBnmo8X2kwpk,2008.0,5,9,2015,The Hurt Locker,Wild Man,tt0887912\nnuNQY06FEOc,2008.0,4,9,2015,The Hurt Locker,We're Done,tt0887912\nWiXoeYPz1LY,2008.0,3,9,2015,The Hurt Locker,Die Comfortable,tt0887912\nIsgHQHIeiBk,2008.0,2,9,2015,The Hurt Locker,Got a Wire,tt0887912\nJc_h1ufAXYs,2008.0,1,9,2015,The Hurt Locker,You Wanna Back Up?,tt0887912\ny5oIDeR0YjA,2008.0,5,11,2015,Never Back Down,Intimidation,tt1023111\nyPAPYhU_zsQ,2008.0,10,11,2015,Never Back Down,You Can Do This,tt1023111\nEkl021fmWGc,2008.0,6,11,2015,Never Back Down,Jake's Apology,tt1023111\nQQq6L1Sw4Ck,2008.0,4,11,2015,Never Back Down,Road Rage,tt1023111\n-mjnbKL7fHQ,2008.0,3,11,2015,Never Back Down,Learning to Breathe,tt1023111\nghpYpbgtLIs,2008.0,1,11,2015,Never Back Down,Party Beatdown,tt1023111\nF656vZAFGdM,2008.0,2,11,2015,Never Back Down,First Lesson,tt1023111\n9LiQ5MZKYUY,2008.0,9,11,2015,Never Back Down,Tyler vs. Dak-Ho,tt1023111\naJ7NA4hNNc0,2008.0,8,11,2015,Never Back Down,Show Me What You Got,tt1023111\nM3byaFhO18Q,2008.0,11,11,2015,Never Back Down,The Final Fight,tt1023111\n5OZbydb0FdY,2008.0,7,11,2015,Never Back Down,Training With Roqua,tt1023111\nKdkEzfozXss,2006.0,10,11,2015,Basic Instinct 2,Hot Tub Assault,tt0430912\nbDT3nUjN2fs,2006.0,9,11,2015,Basic Instinct 2,Dicky Pap,tt0430912\ndzw9h7GnERM,2006.0,6,11,2015,Basic Instinct 2,Scene of the Murder,tt0430912\nFGSmKV6K__o,2006.0,5,11,2015,Basic Instinct 2,Sex & Death,tt0430912\nLTS4bKTgyik,2006.0,11,11,2015,Basic Instinct 2,\"Michael's \"\"Happy Ending\"\"\",tt0430912\ncf_0FH_2934,2006.0,7,11,2015,Basic Instinct 2,Dirty Talk,tt0430912\nSfQAxD8v6Mc,2006.0,3,11,2015,Basic Instinct 2,Being In Control,tt0430912\n_ZrJXN_vrBs,2006.0,2,11,2015,Basic Instinct 2,Come Again?,tt0430912\nPXEuRW2cOqE,2006.0,1,11,2015,Basic Instinct 2,Sex Drive,tt0430912\npWhT-4m-4ro,2006.0,8,11,2015,Basic Instinct 2,Catherine Seduces Glass,tt0430912\nB96DjgGIxv4,2006.0,4,11,2015,Basic Instinct 2,Risk Addiction,tt0430912\nxEOHMxA4C-E,2008.0,6,11,2015,Fly Me to the Moon,We Gotta Do Something,tt0486321\nwM-OyBwhuOk,2008.0,4,11,2015,Fly Me to the Moon,Blast Off,tt0486321\nUuRb2YYEYfc,2008.0,2,11,2015,Fly Me to the Moon,Adventure Forever,tt0486321\nUhRriAA2Kf0,2008.0,3,11,2015,Fly Me to the Moon,Your TIme Will Come,tt0486321\nq2rT8XyVHhA,2008.0,9,11,2015,Fly Me to the Moon,Scooter Gets Stuck,tt0486321\nPz1OFqEVi3c,2008.0,5,11,2015,Fly Me to the Moon,Space Odyssey,tt0486321\nmaWca5IRGt8,2008.0,1,11,2015,Fly Me to the Moon,Grandpa Saves Amelia Earhart,tt0486321\nUuuyzaRWiA0,2008.0,10,11,2015,Fly Me to the Moon,I Get Smart,tt0486321\nqFiFKP6Jxoo,2008.0,7,11,2015,Fly Me to the Moon,We're On The Moon,tt0486321\n_E84Vp8Rnfo,2008.0,8,11,2015,Fly Me to the Moon,One Small Step For Man,tt0486321\nGRjqtMFumZk,2008.0,11,11,2015,Fly Me to the Moon,Buzz Aldrin,tt0486321\nHnyvaqsAcVQ,2009.0,1,5,2015,The Last Resort,Are You Ready?,tt1124048\ntLadr2v8AAA,2009.0,5,5,2015,The Last Resort,Don't Make Me Do This,tt1124048\nWEJZDUTGV8s,2009.0,4,5,2015,The Last Resort,Friends Eating Friends,tt1124048\nrCmp3o84w6A,2009.0,2,5,2015,The Last Resort,A Tour Gone Bad,tt1124048\n5USau0NMAxU,2009.0,3,5,2015,The Last Resort,These Are the Guys,tt1124048\n6mQAgXT_lVM,2009.0,9,9,2015,The Grudge 3,A Final Confrontation,tt1053859\nRdU8F4C9oDw,2009.0,7,9,2015,The Grudge 3,Car Trouble,tt1053859\ntab4Nxd8GlY,2009.0,6,9,2015,The Grudge 3,The Ghost Gets the Doctor,tt1053859\nYMA_1YDqjYc,2009.0,4,9,2015,The Grudge 3,Paintings of Blood,tt1053859\nIsG-tXSQRX4,2009.0,1,9,2015,The Grudge 3,She's Here!,tt1053859\n4dm-ZfP3fbs,2009.0,5,9,2015,The Grudge 3,The Ghost Boy is Here,tt1053859\n3jNEs5M1Sik,2009.0,8,9,2015,The Grudge 3,Possessed and Psychotic,tt1053859\n7tg6TqW7u-A,2009.0,3,9,2015,The Grudge 3,The Ghost in the Bathtub,tt1053859\nUp1eNda6Rt0,2009.0,2,9,2015,The Grudge 3,The Wrong Make-Out Spot,tt1053859\n9cySKHPqIjw,1987.0,3,11,2015,RoboCop,\"Your Move, Creep\",tt0093870\nQjUkgodriIo,2009.0,4,11,2015,Push,Put the Gun in Your Mouth,tt0465580\n6OEA4J0sobo,2009.0,11,11,2015,Push,Kill Him,tt0465580\nKAOlo7Ijo5k,2009.0,10,11,2015,Push,Look At Me,tt0465580\nNNfMLLVwiN0,2009.0,9,11,2015,Push,Psychic Showdown,tt0465580\nbYUJuCsymVM,2009.0,8,11,2015,Push,The Suitcase,tt0465580\ntjRYZON0o9w,2009.0,6,11,2015,Push,Memory Erased,tt0465580\nnhm5xXXqzqE,2009.0,5,11,2015,Push,Restaurant Shootout,tt0465580\nfU-ICxohwSc,2009.0,3,11,2015,Push,Brother,tt0465580\ngpCFk7jK810,2009.0,2,11,2015,Push,The Stitch,tt0465580\nKi5TEx2nIHQ,2009.0,1,11,2015,Push,Fish Tanks,tt0465580\n0Ba6y1Y8JjU,2009.0,7,11,2015,Push,A Crappy Artist,tt0465580\nrMz7JBRbmNo,1987.0,5,12,2015,The Princess Bride,The Battle of Wits,tt0093779\nrUczpTPATyU,1987.0,3,12,2015,The Princess Bride,I Am Not Left-Handed,tt0093779\nlISBP_fPg1s,1987.0,4,12,2015,The Princess Bride,Dream of Large Women,tt0093779\nXeO3jMZphhs,1987.0,9,12,2015,The Princess Bride,If We Only Had a Wheelbarrow,tt0093779\n3odMTPuzLwY,1987.0,10,12,2015,The Princess Bride,Mawage,tt0093779\nniul8Hy-3wk,1987.0,6,12,2015,The Princess Bride,As You Wish,tt0093779\nd4ftmOI5NnI,1987.0,8,12,2015,The Princess Bride,Miracle Max,tt0093779\nXCHKYNFH9Lk,1987.0,1,12,2015,The Princess Bride,Anybody Want a Peanut?,tt0093779\nwUJccK4lV74,1987.0,12,12,2015,The Princess Bride,To the Pain!,tt0093779\nJFo6iLDNzX0,1987.0,7,12,2015,The Princess Bride,The Torture Machine,tt0093779\nD9MS2y2YU_o,1987.0,2,12,2015,The Princess Bride,Inconceivable!,tt0093779\nI73sP93-0xA,1987.0,11,12,2015,The Princess Bride,My Name Is Inigo Montoya,tt0093779\nDyYuDAmUqRk,2009.0,10,12,2015,Sorority Row,Come to Mama,tt1232783\n0PIbNyzb5YM,2009.0,7,12,2015,Sorority Row,You Made Me Do This,tt1232783\nel6nzbxrsD0,2009.0,12,12,2015,Sorority Row,Sisters Till the End,tt1232783\nIThWCij8W0k,2009.0,11,12,2015,Sorority Row,The Killer is Revealed,tt1232783\n70gIBwjO49M,2009.0,8,12,2015,Sorority Row,Theta Pi Must Die,tt1232783\nshehrh353Oo,2009.0,5,12,2015,Sorority Row,Ellie Freaks Out,tt1232783\nChPLYyubXiE,2009.0,4,12,2015,Sorority Row,Deadly Drink,tt1232783\nnCzYHB_8hXU,2009.0,3,12,2015,Sorority Row,Prank Gone Wrong,tt1232783\nZoJqs349ahs,2009.0,9,12,2015,Sorority Row,Payback's Such a Bitch,tt1232783\nTJmgMmjx2eU,2009.0,6,12,2015,Sorority Row,Party Kill,tt1232783\nyPg84oVPnE0,2009.0,1,12,2015,Sorority Row,Sorority Shout Outs,tt1232783\ne72atw7hctA,2009.0,2,12,2015,Sorority Row,Best Prank Ever,tt1232783\nqcdR-kyqqHs,2013.0,2,10,2015,Promised Land,You'd Be a Millionaire,tt2091473\nLX8mxeGuqi4,2013.0,10,10,2015,Promised Land,\"One Day, You're Gonna Lose\",tt2091473\n6ZSsIZ40GAQ,2013.0,9,10,2015,Promised Land,You're a Good Man,tt2091473\nuW7Pev3qG1k,2013.0,8,10,2015,Promised Land,You're Gonna Remember This Conversation,tt2091473\nTHPVDNnsVT4,2013.0,7,10,2015,Promised Land,You're Only Here Because We're Poor,tt2091473\naU6KHvuvxBw,2013.0,6,10,2015,Promised Land,We're Fighting for People,tt2091473\nih0GAi4HWwA,2013.0,5,10,2015,Promised Land,I Appreciate What You Are Doing,tt2091473\nvbbHaMTLrbg,2013.0,4,10,2015,Promised Land,Not In The Town's Best Interest,tt2091473\nLMQd7xw1Wf4,2013.0,3,10,2015,Promised Land,Let Some Other Guy Be Last,tt2091473\n5pLpIsdg50c,2013.0,1,10,2015,Promised Land,How Do You Do It?,tt2091473\nTTUvtnPvN8k,1990.0,7,11,2015,RoboCop 2,Motorcycle vs. Truck,tt0100502\nIoavfE6TCbw,1990.0,4,11,2015,RoboCop 2,One of Us Must Die,tt0100502\n-9DrPi3ki0g,1990.0,6,11,2015,RoboCop 2,Demolition Ride,tt0100502\n_m90Rm0RX-8,1990.0,8,11,2015,RoboCop 2,Cain's Brain,tt0100502\nmoYXL6hX8vI,1990.0,1,11,2015,RoboCop 2,Magnavolt and the ED-209,tt0100502\nYr1lgfqygio,1990.0,5,11,2015,RoboCop 2,Thank You for Not Smoking,tt0100502\nmsaelEZ_eEs,1990.0,9,11,2015,RoboCop 2,RoboCop vs.,tt0100502\nxrJkcV4DGZ4,1990.0,2,11,2015,RoboCop 2,RoboCop Returns,tt0100502\nxRkZAfoaEw8,1990.0,11,11,2015,RoboCop 2,Goodbye,tt0100502\n7ke8XUZSYLw,1990.0,10,11,2015,RoboCop 2,Robo Rampage,tt0100502\nNJIjNs_s2NI,1990.0,3,11,2015,RoboCop 2,Robo Flops,tt0100502\nUXK7kf1wmqI,2012.0,4,10,2015,Hyde Park on Hudson,It's Going to Be a Big Success,tt1477855\nUvJ8UDYipAg,2012.0,5,10,2015,Hyde Park on Hudson,Are They Trying to Make Fun of Us?,tt1477855\n_5p4QdtkbC8,2012.0,3,10,2015,Hyde Park on Hudson,I Want to Meet an American,tt1477855\n2I5V3zd1J8M,2012.0,9,10,2015,Hyde Park on Hudson,Don't Ever Compare Me To My Brother,tt1477855\ni5ogNBaY2BY,2012.0,10,10,2015,Hyde Park on Hudson,A Special Relationship,tt1477855\nN18AtSAxJ1I,2012.0,6,10,2015,Hyde Park on Hudson,Let Me Confess Something to You,tt1477855\nH4PpclIJZHA,2012.0,7,10,2015,Hyde Park on Hudson,I Don't Accept You,tt1477855\nioCaBQBjEBU,2012.0,2,10,2015,Hyde Park on Hudson,Very Good Friends,tt1477855\nKuMy7-yMXO8,2012.0,1,10,2015,Hyde Park on Hudson,What a Rare Treat,tt1477855\n1fxRMQLYRWs,2012.0,8,10,2015,Hyde Park on Hudson,Am I Like a Whore?,tt1477855\njnN4PnoJ1vw,2013.0,9,10,2015,Admission,I'm Your Mother,tt1814621\ngawe9W5HYtQ,2013.0,2,10,2015,Admission,I Had a Mastectomy,tt1814621\nO6Obigg85oo,2013.0,1,10,2015,Admission,Students That Will Change The World,tt1814621\nkcONgsdSLq8,2013.0,5,10,2015,Admission,Nothing Improper Going On,tt1814621\nOVXpH5cKWf0,2013.0,7,10,2015,Admission,Are You Johnny's Girlfriend?,tt1814621\n8jN4i-6ikWY,2013.0,3,10,2015,Admission,I Have Something to Ask You,tt1814621\nMHpGJ-jtGy4,2013.0,10,10,2015,Admission,The Disappointments of My Life,tt1814621\nf4vVtsfEMRI,2013.0,6,10,2015,Admission,To Not Feel So Alone,tt1814621\nKFASQKT9JSs,2013.0,8,10,2015,Admission,You Are a Kid,tt1814621\nWi41GDMQxr0,2013.0,4,10,2015,Admission,I'm Leaving You,tt1814621\n0eQBa4JQzDI,1981.0,3,10,2015,On Golden Pond,We Cruise Chicks,tt0082846\nJHACE2LTz_s,1981.0,2,10,2015,On Golden Pond,We'd Like to Sleep Together,tt0082846\nocyplDqvhuo,1981.0,1,10,2015,On Golden Pond,My Knight in Shining Armor,tt0082846\nkHTAJHod8-g,1981.0,8,10,2015,On Golden Pond,A Father or a Friend,tt0082846\nirkGAhW7wlQ,1981.0,6,10,2015,On Golden Pond,A Rainbow Trout,tt0082846\nf20aUH5IG9s,1981.0,4,10,2015,On Golden Pond,You're a Big Girl Now,tt0082846\nMIjkFrmSCYU,1981.0,9,10,2015,On Golden Pond,Mad for So Long,tt0082846\nJkk2ai88ED0,1981.0,10,10,2015,On Golden Pond,I Was Showing Off,tt0082846\nVyrr1vSRYjs,1981.0,7,10,2015,On Golden Pond,Boating Accident,tt0082846\nARLZaZd3fAg,1981.0,5,10,2015,On Golden Pond,We're Going Fishing,tt0082846\n_SVAzrGlEmc,2013.0,4,10,2015,2 Guns,Today They Want to Kill Me,tt1272878\n5wRnpjDfEz8,2013.0,7,10,2015,2 Guns,Pleasure to Meet You,tt1272878\n7Vhxv6URu5I,2013.0,1,10,2015,2 Guns,It's a Bank Robbery,tt1272878\n3lqYg7jpjfI,2013.0,2,10,2015,2 Guns,Is That a Badge?,tt1272878\nm_KtsgEoK4Q,2013.0,3,10,2015,2 Guns,Doesn't Matter If You Run,tt1272878\nUm-Nj5FvfE4,2013.0,5,10,2015,2 Guns,Home Invasion,tt1272878\nEeYI0V2j12g,2013.0,6,10,2015,2 Guns,\"Damn, You're Good\",tt1272878\nDcwhTBEcbBw,2013.0,8,10,2015,2 Guns,What the Hell is Going On?,tt1272878\nBLFU01WKeBs,2013.0,10,10,2015,2 Guns,Make It Rain,tt1272878\njbeyKcGqxyI,2013.0,9,10,2015,2 Guns,Where's the Money?,tt1272878\nvuJrsCBt0rQ,2010.0,1,12,2015,Hot Tub Time Machine,'Sup Dawg,tt1231587\nXwmvrx1wq4s,2010.0,2,12,2015,Hot Tub Time Machine,It's Only Pee,tt1231587\nnVRCznRsCgY,2010.0,8,12,2015,Hot Tub Time Machine,Gary Coleman's Forearm,tt1231587\nic7F0sCFcZ4,2010.0,12,12,2015,Hot Tub Time Machine,Severed Arm,tt1231587\nT3iSphEl9WI,2010.0,5,12,2015,Hot Tub Time Machine,We Are Ourselves,tt1231587\njVS8e7I6Co4,2010.0,3,12,2015,Hot Tub Time Machine,A Lot of Vomit,tt1231587\nclP9p1ipHEw,2010.0,10,12,2015,Hot Tub Time Machine,Dropping Loads,tt1231587\nCQuB7dB-elg,2010.0,4,12,2015,Hot Tub Time Machine,Feeling Fantastic,tt1231587\nm9pdH02FxPY,2010.0,6,12,2015,Hot Tub Time Machine,The Butterfly Effect,tt1231587\neSDTJ1sE29E,2010.0,9,12,2015,Hot Tub Time Machine,Stick By Your Friends,tt1231587\nqU93Cguv4W0,2010.0,7,12,2015,Hot Tub Time Machine,Embrace the Chaos,tt1231587\npqzMo6SfXX4,2010.0,11,12,2015,Hot Tub Time Machine,The Violator,tt1231587\n1BimnTWx1b8,2013.0,7,10,2015,The Best Man Holiday,I Need You to Forgive Him,tt2083355\nntsuIs20RW0,2013.0,10,10,2015,The Best Man Holiday,You're Not a Doctor,tt2083355\nKKOR6WC_fUg,2013.0,8,10,2015,The Best Man Holiday,What I Want For Christmas,tt2083355\naPeZmPcpiu8,2013.0,6,10,2015,The Best Man Holiday,Stay Away From My Family,tt2083355\nCqc48kDMG0Q,2013.0,5,10,2015,The Best Man Holiday,You Married a Stripper,tt2083355\nJ_L4nLBweuQ,2013.0,4,10,2015,The Best Man Holiday,Christmas Catfight,tt2083355\nESSsStp3pFU,2013.0,3,10,2015,The Best Man Holiday,Can You Stand The Rain,tt2083355\ncG0ZIxenJY8,2013.0,2,10,2015,The Best Man Holiday,Can I Use Your Phone?,tt2083355\ntXNMNMLQzwg,2013.0,1,10,2015,The Best Man Holiday,Jordan's New Boyfriend,tt2083355\n0U-kaLEaThU,2013.0,9,10,2015,The Best Man Holiday,Mourning Death and Celebrating Life,tt2083355\nQR4x2_6qzXg,2008.0,6,10,2015,Two Lovers,Please Don't Go,tt1103275\nLf93YLs4004,2008.0,8,10,2015,Two Lovers,I'll Do Anything for You,tt1103275\nJcWawUzwoL0,2008.0,4,10,2015,Two Lovers,I Do Like You,tt1103275\nIvagCOQJuYg,2008.0,1,10,2015,Two Lovers,I Wanted Us to Meet,tt1103275\nq1ogthNk040,2008.0,9,10,2015,Two Lovers,A Bittersweet Goodbye,tt1103275\ntdvq6Usjydg,2008.0,7,10,2015,Two Lovers,More Than a Crush,tt1103275\nFOYr5wApG3k,2008.0,2,10,2015,Two Lovers,Meeting Michelle,tt1103275\nV_qYvdPSRto,2008.0,10,10,2015,Two Lovers,Shattered Dreams,tt1103275\n8Fgz5cARQZo,2008.0,5,10,2015,Two Lovers,Like a Brother,tt1103275\nmqJxvhBThw0,2008.0,3,10,2015,Two Lovers,Michelle's Meltdown,tt1103275\nfEpjHtkttYg,1987.0,4,11,2015,RoboCop,You're Coming with Me,tt0093870\nLMT8UN9bSiA,1987.0,7,11,2015,RoboCop,You Are Under Arrest,tt0093870\n2J8mkHUsiXY,1987.0,9,11,2015,RoboCop,Toxic Waste,tt0093870\nI2JSXKFWqGI,1987.0,5,11,2015,RoboCop,Bitches Leave,tt0093870\nIvDNfFVpvZI,1987.0,6,11,2015,RoboCop,Cocaine Factory Shootout,tt0093870\nGLQiskRb02o,1987.0,8,11,2015,RoboCop,vs. ED 209,tt0093870\nIp7GGf2_b6Y,1987.0,11,11,2015,RoboCop,\"Dick, You're Fired!\",tt0093870\nUY89o4QFvQM,1987.0,10,11,2015,RoboCop,\"Sayonara, !\",tt0093870\n5FcTzH6A4a4,1987.0,2,11,2015,RoboCop,Officer Murphy Is Killed,tt0093870\nTstteJ1eIZg,1987.0,1,11,2015,RoboCop,It's Only a Glitch,tt0093870\naofM4j2teCw,2009.0,9,10,2015,The House of the Devil,Escaping the Satanic Ritual,tt1172994\nKNby2wixjzg,2009.0,6,10,2015,The House of the Devil,Pizza Delivery,tt1172994\ntCFb_FossHk,2009.0,3,10,2015,The House of the Devil,Only One Babysitter,tt1172994\n-8CnljMrH3k,2009.0,2,10,2015,The House of the Devil,Come Inside,tt1172994\nQimMZHQFaXk,2009.0,7,10,2015,The House of the Devil,Mother's Room,tt1172994\n421eYc8zCtk,2009.0,8,10,2015,The House of the Devil,Satanic Ritual,tt1172994\nkS9NLX0pFVs,2009.0,10,10,2015,The House of the Devil,Mother of the Devil,tt1172994\nlsOQqbPYVHY,2009.0,5,10,2015,The House of the Devil,I Love The Heat,tt1172994\nAac0krsfzSQ,2009.0,4,10,2015,The House of the Devil,A Deal is Made,tt1172994\nPnbVXrBlmJ4,2009.0,1,10,2015,The House of the Devil,Babysitter Needed,tt1172994\nDMyBC0gLSgg,2010.0,9,10,2015,Rubber,Killing Spree,tt1612774\nnAp6q0q84vc,2010.0,6,10,2015,Rubber,This Tire Is Alive,tt1612774\nOtXieOlT7SA,2010.0,5,10,2015,Rubber,Tire Voyeur,tt1612774\nvldYVG_5cZY,2010.0,4,10,2015,Rubber,Pain at the Pump,tt1612774\nWV12BpbBrro,2010.0,1,10,2015,Rubber,No Reason,tt1612774\nHEYktlQpnGE,2010.0,10,10,2015,Rubber,Provoking the Tire,tt1612774\nrrzV0FvYypE,2010.0,8,10,2015,Rubber,The Kid Was Right,tt1612774\nae6HngmeUq0,2010.0,7,10,2015,Rubber,Everything Is Fake,tt1612774\nuB4qHneHB1E,2010.0,3,10,2015,Rubber,Boom Goes the Bunny,tt1612774\nAts9HUDVBxE,2010.0,2,10,2015,Rubber,Psychokinetic Tire,tt1612774\nej_hfok3bEc,2011.0,6,11,2015,Hobo with a Shotgun,One Shell at a Time,tt1640459\n1k1r2zFnwQc,2011.0,9,11,2015,Hobo with a Shotgun,You Are the Future,tt1640459\nmp_oRA5-HLM,2011.0,8,11,2015,Hobo with a Shotgun,Fix This Girl,tt1640459\nLNqOTIBKycE,2011.0,11,11,2015,Hobo with a Shotgun,The Hobo's Last Stand,tt1640459\n0vXx2vS4iC0,2011.0,10,11,2015,Hobo with a Shotgun,You Gotta Get a Shotgun,tt1640459\ncZZJMc6QPR4,2011.0,7,11,2015,Hobo with a Shotgun,Gonna Wash This Blood Off With Your Blood,tt1640459\n4WizLeIdckw,2011.0,5,11,2015,Hobo with a Shotgun,I'm Gonna Sleep in Your Bloody Carcasses!,tt1640459\nhRBkyOT8ZPk,2011.0,4,11,2015,Hobo with a Shotgun,You Earned Your Money Today,tt1640459\n07rlBwvlBDk,2011.0,2,11,2015,Hobo with a Shotgun,Every Day Is Garbage Day,tt1640459\ncKe4qiOYFyM,2011.0,1,11,2015,Hobo with a Shotgun,Mercy Ain't My Style,tt1640459\nrtQQwsPJeBY,2011.0,3,11,2015,Hobo with a Shotgun,The Bear Is a Solitary Animal,tt1640459\nfxYkJbBKxZE,1976.0,1,12,2015,Carrie,Gets Her Period,tt0074285\n12wHDwNXBL0,1976.0,2,12,2015,Carrie,You're a Woman Now,tt0074285\nv-WZINgHnFQ,1976.0,3,12,2015,Carrie,Billy Slaughters a Pig,tt0074285\nZpX0rril7QA,1976.0,4,12,2015,Carrie,Pleads for Prom,tt0074285\nIIBg9UQ_mMU,1976.0,10,12,2015,Carrie,Prom in Flames,tt0074285\nXgBvOoE5uG0,1976.0,11,12,2015,Carrie,The Car Wreck,tt0074285\nI7XHygPKbYI,1976.0,12,12,2015,Carrie,'s Mom,tt0074285\nYOhPdUMzXjY,1976.0,9,12,2015,Carrie,Gets Angry,tt0074285\nDJcTG-VnLrI,1976.0,8,12,2015,Carrie,Bucket of Blood,tt0074285\noDA4sUtM9B8,1976.0,7,12,2015,Carrie,Prom Queen,tt0074285\nImZ2LrvQcCY,1976.0,6,12,2015,Carrie,Dirty Pillows,tt0074285\nI68rpTRe8CE,1976.0,5,12,2015,Carrie,'s Powers,tt0074285\n8kssysjyPl0,2011.0,10,10,2015,God Bless America,American Superstarz,tt1912398\np1tcs_fTz8k,2011.0,8,10,2015,God Bless America,Fair and Balanced,tt1912398\nwKbZcaU-83E,2011.0,9,10,2015,God Bless America,Firepower,tt1912398\nrjsre1tcGWU,2011.0,7,10,2015,God Bless America,Alice Cooper,tt1912398\nyaxDM67F72o,2011.0,6,10,2015,God Bless America,Target Practice.,tt1912398\nV2NGM0LYqss,2011.0,5,10,2015,God Bless America,You Seem Gay,tt1912398\n1ZA2qfP3oPc,2011.0,4,10,2015,God Bless America,Deserve to Die,tt1912398\nyg0yDvEqfw4,2011.0,2,10,2015,God Bless America,TV Wasteland,tt1912398\nIx8Gxp7XlDs,2011.0,1,10,2015,God Bless America,I Hate My Neighbors,tt1912398\nviSCkcVXoR4,2011.0,3,10,2015,God Bless America,Frank's Rant,tt1912398\nuSYD6YSaKgQ,2008.0,10,10,2015,Bronson,the Artist,tt1172570\n19qTZoeOEZg,2008.0,7,10,2015,Bronson,Captive Love,tt1172570\noEPNSzLHZ2w,2008.0,4,10,2015,Bronson,It's Huge,tt1172570\ne9LJG1JcXDE,2008.0,3,10,2015,Bronson,When Murder Goes Wrong,tt1172570\n1l30kkPQfJM,2008.0,9,10,2015,Bronson,Cup of Tea,tt1172570\n7JOey0CIgMM,2008.0,8,10,2015,Bronson,Artwork,tt1172570\n1idxZC0VSxE,2008.0,5,10,2015,Bronson,Hottest Ticket in Town,tt1172570\nAYWEjOf5pBM,2008.0,2,10,2015,Bronson,Britain's Most Violent Prisoner,tt1172570\nS_FAk6ykdvw,2008.0,1,10,2015,Bronson,History of Violence,tt1172570\nafifn22_IR0,2008.0,6,10,2015,Bronson,A Ring for Alison,tt1172570\nMLZ4KzVPlHM,2010.0,7,12,2015,All Good Things,I'm Not That Person,tt1175709\nfWallK7KgrY,2010.0,9,12,2015,All Good Things,I Don't Know You at All,tt1175709\nXF-736UPy0k,2010.0,10,12,2015,All Good Things,Your Card Was Declined,tt1175709\nlOwjq5Cuo-w,2010.0,12,12,2015,All Good Things,I Am Mute,tt1175709\nWCDmhXz9Gsc,2010.0,8,12,2015,All Good Things,Party Pooper,tt1175709\nsTWdAdhTfYw,2010.0,6,12,2015,All Good Things,Not Now or Not Ever?,tt1175709\n09-K2ec8lyc,2010.0,11,12,2015,All Good Things,Searching the Office,tt1175709\nxV-Sj_rjJjE,2010.0,5,12,2015,All Good Things,The New Apartment,tt1175709\nsrJAamXGepU,2010.0,4,12,2015,All Good Things,A Father's Disapproval,tt1175709\nI7NtDM6eJq0,2010.0,3,12,2015,All Good Things,Two Different Families,tt1175709\ndw9seHSkfw8,2010.0,2,12,2015,All Good Things,She's Never Going to Be One of Us,tt1175709\nTLhaRe7Wvww,2010.0,1,12,2015,All Good Things,You Smell Good,tt1175709\nnAZi4yusqlk,2005.0,10,12,2015,The Matador,Burnt Out,tt0365485\nkpzlCDIwzEk,2005.0,2,12,2015,The Matador,Still Horny?,tt0365485\nV2j_JLlNU-I,2005.0,11,12,2015,The Matador,One More Job,tt0365485\nRY_kXET2cyc,2005.0,9,12,2015,The Matador,Do You Think He's Dangerous?,tt0365485\ngbbnGtoH37o,2005.0,8,12,2015,The Matador,Freezing on the Job,tt0365485\nqCG-yxYUgJU,2005.0,7,12,2015,The Matador,The Real Deal,tt0365485\nKs2OUiW2_QI,2005.0,6,12,2015,The Matador,The Gotta Pee Theory,tt0365485\naTJiK1i4iEQ,2005.0,5,12,2015,The Matador,A Facilitator of Fatalities,tt0365485\ntyoB7bjdzgE,2005.0,3,12,2015,The Matador,Margaritas Always Taste Better in Mexico,tt0365485\n8pvAI1uDW9U,2005.0,1,12,2015,The Matador,Denver Hit,tt0365485\nOBuai_Vg6BQ,2005.0,12,12,2015,The Matador,A Day at the Races,tt0365485\nMeY7MlJJOdo,2005.0,4,12,2015,The Matador,Garbageman,tt0365485\nEEF7cXH7BWo,2013.0,9,10,2015,R.I.P.D.,Staff of Jericho Shootout,tt0790736\nBl6eouVUsCI,2013.0,5,10,2015,R.I.P.D.,Let's Do This,tt0790736\nbNg1XX5ofhw,2013.0,2,10,2015,R.I.P.D.,Join the,tt0790736\nMhMqjcT7frc,2013.0,7,10,2015,R.I.P.D.,Old West Fighting,tt0790736\nYXQ11lY6v7E,2013.0,6,10,2015,R.I.P.D.,Robbing the,tt0790736\nczU3M9Ye268,2013.0,3,10,2015,R.I.P.D.,Meet Your New Partner,tt0790736\nfEocj1eLsmg,2013.0,4,10,2015,R.I.P.D.,That's a Deado,tt0790736\na_i-mCZH5bo,2013.0,10,10,2015,R.I.P.D.,I Have a New Partner,tt0790736\nrZlzxsrv4ow,2013.0,1,10,2015,R.I.P.D.,Nick Walker's Worst Day,tt0790736\n5evtdZtPixQ,2013.0,8,10,2015,R.I.P.D.,Deados On Wheels,tt0790736\n6UKeesKIuZA,2005.0,9,12,2015,Hoodwinked!,The Goody Bandit,tt0443536\nuiuioAkuDro,2005.0,11,12,2015,Hoodwinked!,A Bad Bunny,tt0443536\nzVw5a4OjcIE,2005.0,10,12,2015,Hoodwinked!,Twitchy on Coffee,tt0443536\ngGmzT-Km9-4,2005.0,7,12,2015,Hoodwinked!,Xtreme Granny,tt0443536\ntzybulrxn3g,2005.0,5,12,2015,Hoodwinked!,Dynamite Candles,tt0443536\nWT1ae3uyKmI,2005.0,3,12,2015,Hoodwinked!,The Big Bad Wolf,tt0443536\nyclP414CLEM,2005.0,1,12,2015,Hoodwinked!,Red Riding Hood,tt0443536\nmmOGHo7MYK0,2005.0,2,12,2015,Hoodwinked!,Great Big World,tt0443536\nHUIP208nZZs,2005.0,4,12,2015,Hoodwinked!,Be Prepared,tt0443536\n-rHnyOJuB0w,2005.0,6,12,2015,Hoodwinked!,Schnitzel Song,tt0443536\nV9hO8rmmaXc,2005.0,8,12,2015,Hoodwinked!,Red Is Blue,tt0443536\nJG7S1-DC_KY,2005.0,12,12,2015,Hoodwinked!,Top of the Woods,tt0443536\nHFWG8MMnr3Q,2005.0,10,10,2015,Feast,Monster Mash,tt0426459\nqv-kBgAcyUA,2005.0,9,10,2015,Feast,Barrel Escape,tt0426459\nz2y29L0uG-U,2005.0,8,10,2015,Feast,Heroine 2,tt0426459\n9sngqjpu920,2005.0,7,10,2015,Feast,Bozo's Mistake,tt0426459\nz_gsKwtCy4I,2005.0,6,10,2015,Feast,Human Bomb,tt0426459\nCkgFvisOr_o,2005.0,5,10,2015,Feast,My Eye!,tt0426459\nFEEIJNnfoVI,2005.0,4,10,2015,Feast,Roadkill Revenge,tt0426459\ngt3ntYidpvs,2005.0,3,10,2015,Feast,Monster Sex,tt0426459\nVtW2yWZHaO4,2005.0,2,10,2015,Feast,Vomit Attack,tt0426459\nOF-1RqeBf7w,2005.0,1,10,2015,Feast,Run Amok,tt0426459\nfrFwwg5GJ4A,2006.0,10,11,2015,School for Scoundrels,Love Letter,tt0462519\n8V18ashYdDM,2006.0,9,11,2015,School for Scoundrels,Tennis with Dennis,tt0462519\ngJGMeacAmec,2006.0,11,11,2015,School for Scoundrels,Lonnie,tt0462519\nA0mUARG3EzE,2006.0,6,11,2015,School for Scoundrels,Paintball,tt0462519\nVvcANYZCseI,2006.0,3,11,2015,School for Scoundrels,Dr. P,tt0462519\nZTo-aIIxihc,2006.0,2,11,2015,School for Scoundrels,Are You a Loser?,tt0462519\nNnxqVjeZzZw,2006.0,1,11,2015,School for Scoundrels,Amanda & Becky,tt0462519\nFAaogkawcOk,2006.0,5,11,2015,School for Scoundrels,Swirly,tt0462519\n5BkF6NzmHTQ,2006.0,8,11,2015,School for Scoundrels,From the Bar to the Bed,tt0462519\n2PdWkXbnArk,2006.0,4,11,2015,School for Scoundrels,Initiate Confrontation,tt0462519\nfqDTy6JWcqE,2006.0,7,11,2015,School for Scoundrels,No More Mister Nice Guy,tt0462519\nih2vstLiKps,2007.0,11,11,2015,The Nanny Diaries,Nanny Cam,tt0489237\nxsnWRnOdpS4,2007.0,7,11,2015,The Nanny Diaries,Pizza Date,tt0489237\nMSIKLnc1CSQ,2007.0,5,11,2015,The Nanny Diaries,Museum of Natural History,tt0489237\nPr6lspmWBQs,2007.0,4,11,2015,The Nanny Diaries,Harvard Hottie,tt0489237\nrMlkN-7GRDw,2007.0,3,11,2015,The Nanny Diaries,The Nanny Rules,tt0489237\nCpdolY2GNYI,2007.0,2,11,2015,The Nanny Diaries,Mrs. X,tt0489237\nQznOO8Oo0Aw,2007.0,10,11,2015,The Nanny Diaries,Nanny Don't Go!,tt0489237\n42YiyEjitsI,2007.0,1,11,2015,The Nanny Diaries,Who is Annie Braddock?,tt0489237\n9sAv5P29YIY,2007.0,8,11,2015,The Nanny Diaries,A Kiss to End the Night,tt0489237\nQkL9783wNOE,2007.0,9,11,2015,The Nanny Diaries,Wish Upon a Star,tt0489237\nhBXcQhkyRE4,2007.0,6,11,2015,The Nanny Diaries,Type A Pigs,tt0489237\nv8pFeR0jO38,2013.0,5,10,2015,Rush,The Formula One Season Begins,tt1979320\n3smxtEacf40,2013.0,3,10,2015,Rush,Lauda's First Victory,tt1979320\nFDDEVXimR2I,2013.0,10,10,2015,Rush,Lauda's Return,tt1979320\no0lDxz0-Ukg,2013.0,9,10,2015,Rush,You Don't Need a Face to Drive,tt1979320\niH0GlpUQYJY,2013.0,8,10,2015,Rush,Lauda's Crash,tt1979320\nKrIUn0qTaCE,2013.0,7,10,2015,Rush,The Risk is More,tt1979320\n6f24cpQ_Q3k,2013.0,6,10,2015,Rush,You're Just Who You Are,tt1979320\nvXrH5Nk8r0U,2013.0,4,10,2015,Rush,To Be a Champion,tt1979320\nDdG74P7j6h8,2013.0,2,10,2015,Rush,Why Would I Drive Fast?,tt1979320\nEBu1PyU04FE,2013.0,1,10,2015,Rush,The Start of a Rivalry,tt1979320\nBgfcwELYxUA,2007.0,2,9,2015,The Mist,Tentacle Attack,tt0884328\nOH1mI4-LqHs,2007.0,6,9,2015,The Mist,Human Sacrifice,tt0884328\n858FWgtLMZU,2007.0,4,9,2015,The Mist,The Birds and the Bugs,tt0884328\nAhaulXxlqCQ,2007.0,9,9,2015,The Mist,The Colossal Beast,tt0884328\nkjJUffVZtDs,2007.0,3,9,2015,The Mist,I Believe in God Too,tt0884328\nGsbHL_lQy44,2007.0,7,9,2015,The Mist,I Killed Her,tt0884328\nEEPTRC2OP4w,2007.0,5,9,2015,The Mist,Spiders,tt0884328\nfy9XNAkyfoc,2007.0,8,9,2015,The Mist,Making the Escape,tt0884328\nCRnadHP5JOo,2007.0,1,9,2015,The Mist,Arrives,tt0884328\nyIj06I32Gao,2007.0,2,11,2015,The Great Debaters,The Hot Spot,tt0427309\nk95b72QHu60,2007.0,3,11,2015,The Great Debaters,Chosen for the Team,tt0427309\nxsrkNeInaiw,2007.0,11,11,2015,The Great Debaters,Who's the Judge?,tt0427309\naVv3r2pUtFo,2007.0,10,11,2015,The Great Debaters,Empty Debate Hall,tt0427309\nYmoTJu2iOfc,2007.0,7,11,2015,The Great Debaters,The Time for Justice,tt0427309\nXhrT25xehqs,2007.0,6,11,2015,The Great Debaters,Quinn Debate,tt0427309\nHEB1OaFSaRg,2007.0,4,11,2015,The Great Debaters,Who's Your Opponent?,tt0427309\n_yotZXdH09k,2007.0,8,11,2015,The Great Debaters,Jesus Was a Radical,tt0427309\nz0MOAFFBXEM,2007.0,9,11,2015,The Great Debaters,Midnight Lynching,tt0427309\nfNNMKJ1f9JM,2007.0,1,11,2015,The Great Debaters,Revolution,tt0427309\nYaSPWpKQzKE,2007.0,5,11,2015,The Great Debaters,Tell Us About Your Father,tt0427309\niKn6FEEToy4,2007.0,7,8,2015,Sicko,Going to Guantanamo Bay,tt0386032\ndLgbWZYjYfU,2007.0,6,8,2015,Sicko,Dumping Patients,tt0386032\nifPpI0fXMlw,2007.0,5,8,2015,Sicko,Power and Control,tt0386032\nPWjl2vignic,2007.0,4,8,2015,Sicko,Healthcare in Canada,tt0386032\nQtJwMKMz6-M,2007.0,1,8,2015,Sicko,Pre-Existing Conditions,tt0386032\nPA3kETvUXJg,2007.0,2,8,2015,Sicko,The Finest Healthcare in the World,tt0386032\n2GSGR3yaFss,2007.0,3,8,2015,Sicko,Socialized Medicine,tt0386032\nirNr2fMIvTQ,2007.0,8,8,2015,Sicko,Cuban Healthcare,tt0386032\niX5_-FORI1I,2007.0,4,9,2015,I'm Not There,Press Conference,tt0368794\n7NjHdqTSahU,2007.0,6,9,2015,I'm Not There,Seven Simple Rules for Life in Hiding,tt0368794\n0H0br7XdsYY,2007.0,5,9,2015,I'm Not There,Allen Ginsberg,tt0368794\nF_NkBmFzs4s,2007.0,1,9,2015,I'm Not There,Jack Rollins Troubadour of Conscience,tt0368794\nc4S5JKBUYHs,2007.0,3,9,2015,I'm Not There,Newport '65,tt0368794\n3HtWFx3oHTo,2007.0,7,9,2015,I'm Not There,Goin' to Acapulco,tt0368794\npNo2v1jE8R4,2007.0,8,9,2015,I'm Not There,Pressing On,tt0368794\nF2r8a3juyr0,2007.0,9,9,2015,I'm Not There,Mr. Tambourine Man,tt0368794\nj9JfUXYQY2s,2007.0,2,9,2015,I'm Not There,I Want You,tt0368794\njbXNiAQHn_A,2007.0,3,10,2015,Hannibal Rising,The Student and the Master,tt0367959\nWVE-c9ghcww,2007.0,10,10,2015,Hannibal Rising,Look at the Children,tt0367959\nsKnZBUh-Lx4,2007.0,9,10,2015,Hannibal Rising,Vladis Grutas,tt0367959\niMIWQRhrAmU,2007.0,8,10,2015,Hannibal Rising,Cadaver Tank,tt0367959\n5Ji_OS5Q17s,2007.0,7,10,2015,Hannibal Rising,Lecter's Laboratory,tt0367959\nZ8GFmshpZ0I,2007.0,6,10,2015,Hannibal Rising,Where Are the Others?,tt0367959\nuMp_5iP13r0,2007.0,5,10,2015,Hannibal Rising,A Crime of Passion,tt0367959\nN7FKW_RLs3c,2007.0,4,10,2015,Hannibal Rising,Slicing the Butcher,tt0367959\nD-NH8NiKb54,2007.0,1,10,2015,Hannibal Rising,Casualties of War,tt0367959\nrKfcW5cTU6o,2007.0,2,10,2015,Hannibal Rising,We Eat or Die,tt0367959\nFCMMjNlNSuc,2012.0,9,10,2015,The Place Beyond the Pines,Leave That Boy Alone,tt1817273\nUv4Wpz-N9Gc,2012.0,10,10,2015,The Place Beyond the Pines,His Father's Killer,tt1817273\nbHMka69DJZ4,2012.0,8,10,2015,The Place Beyond the Pines,They're Gonna Tear You in Half,tt1817273\nrry383W_mJU,2012.0,7,10,2015,The Place Beyond the Pines,Do You Think About the Shooting?,tt1817273\nzS6OX5d-ZYM,2012.0,5,10,2015,The Place Beyond the Pines,Suspect on Motorcycle,tt1817273\nqs0Fyp2bqsA,2012.0,6,10,2015,The Place Beyond the Pines,Shots Fired,tt1817273\nEF2WHYOjGhE,2012.0,4,10,2015,The Place Beyond the Pines,You're Crazy,tt1817273\ntCLO2N6IqJc,2012.0,3,10,2015,The Place Beyond the Pines,His First Ice Cream,tt1817273\n90vUFwUp6mw,2012.0,2,10,2015,The Place Beyond the Pines,The First Bank Robbery,tt1817273\nqc1k6uf-Mbg,2012.0,1,10,2015,The Place Beyond the Pines,Anything You Want to Tell Me?,tt1817273\nw9WoH1MlgvE,2007.0,8,10,2015,Halloween,Big Joe Grizzly,tt0373883\n20gzgK-Z5Yw,2007.0,1,10,2015,Halloween,Bathroom Bully,tt0373883\nYLID2odh-WA,2007.0,4,10,2015,Halloween,Late Night Snack,tt0373883\nlpgQU4piAYw,2007.0,2,10,2015,Halloween,First Kill,tt0373883\nBRHFpsNB1PI,2007.0,3,10,2015,Halloween,Happy,tt0373883\nGnRb5AHOcuc,2007.0,5,10,2015,Halloween,Michael Kills Judith,tt0373883\nhwN_h9eiy_0,2007.0,6,10,2015,Halloween,Look at My Mask,tt0373883\ngJDosSrvlJ8,2007.0,7,10,2015,Halloween,Considering Shock Treatment,tt0373883\n5yCSPi05MyA,2007.0,10,10,2015,Halloween,Leave my Baby Alone!,tt0373883\nys16MvJ2XVU,2007.0,9,10,2015,Halloween,Get Me Another Beer,tt0373883\nQfS7XUWUgL0,2007.0,2,12,2015,Diary of the Dead,The Mummy Shambles,tt0848557\ndEgTjVHmjdc,2007.0,7,12,2015,Diary of the Dead,Too Easy to Use,tt0848557\nAUDCrt3eXyc,2007.0,11,12,2015,Diary of the Dead,Family Reunion,tt0848557\nJb0_V7JCbbk,2007.0,12,12,2015,Diary of the Dead,All That's Left Is to Record,tt0848557\neurjNgZtg-g,2007.0,10,12,2015,Diary of the Dead,Warehouse Showdown,tt0848557\nboaKhP_0KwA,2007.0,9,12,2015,Diary of the Dead,Scythe Sacrifice,tt0848557\nq3CTxWUxHUg,2007.0,8,12,2015,Diary of the Dead,Amish Zombie Killer,tt0848557\n3-16Bov2JfQ,2007.0,6,12,2015,Diary of the Dead,See How It Feels?,tt0848557\n-s0ov88pD0s,2007.0,5,12,2015,Diary of the Dead,\"Dead Doctor, Dead Nurse\",tt0848557\nFuzefcAKLmY,2007.0,4,12,2015,Diary of the Dead,Zombie State Trooper,tt0848557\niL1JlXnbnt0,2007.0,3,12,2015,Diary of the Dead,The Women's Dorm,tt0848557\nelng_KRvuqY,2007.0,1,12,2015,Diary of the Dead,I Thought They Were Dead,tt0848557\nani6MlnXj2g,2007.0,1,12,2015,Control,No Love Lost,tt0421082\nnBnICWrKboM,2007.0,3,12,2015,Control,Telling Off Tony,tt0421082\nWbsZeLsYgGI,2007.0,4,12,2015,Control,Television Transmission,tt0421082\nNus1mepMrDc,2007.0,5,12,2015,Control,She's Lost,tt0421082\nRP941IJJEx4,2007.0,9,12,2015,Control,Isolation,tt0421082\nqFbjSxE1xzU,2007.0,10,12,2015,Control,Epileptic Seizure,tt0421082\nJDC1IK7TWZA,2007.0,11,12,2015,Control,No,tt0421082\nIK5-KZnzxwA,2007.0,6,12,2015,Control,Candidate,tt0421082\nIixTpVt9Enw,2007.0,7,12,2015,Control,Pure Sex,tt0421082\ns6WV534Sfss,2007.0,8,12,2015,Control,Love Will Tear Us Apart,tt0421082\nyM7iQ_plcpA,2007.0,12,12,2015,Control,Disorder,tt0421082\n0dsEkpDiwBQ,2007.0,2,12,2015,Control,Warsaw Performance,tt0421082\nnXmtkGrPEuU,2013.0,10,10,2015,Dallas Buyers Club,You're the Drug Dealer,tt0790636\n1p8KG7IdzPM,2013.0,9,10,2015,Dallas Buyers Club,I Sold My Life Insurance Policy,tt0790636\njKGudyrV0v4,2013.0,8,10,2015,Dallas Buyers Club,I Say What Goes in My Body,tt0790636\nSqpBUHMR99M,2013.0,7,10,2015,Dallas Buyers Club,Shake His Hand,tt0790636\nVt-VF8GzQvU,2013.0,6,10,2015,Dallas Buyers Club,\"I've Been Looking for You, Lone Star\",tt0790636\nSrbO1c8QBSg,2013.0,5,10,2015,Dallas Buyers Club,You Could Be Thrown in Jail,tt0790636\nAqo9z6lp4GY,2013.0,4,10,2015,Dallas Buyers Club,I'm Rayon,tt0790636\n73b7dIqGdUg,2013.0,3,10,2015,Dallas Buyers Club,I Don't Want No Trouble,tt0790636\nWpZ4kY3AJWU,2013.0,2,10,2015,Dallas Buyers Club,Screw the FDA,tt0790636\nX32pSJrgF3Q,2013.0,1,10,2015,Dallas Buyers Club,You Tested Positive for HIV,tt0790636\ne6E5v6jLGpM,2007.0,10,10,2015,Cassandra's Dream,We Broke God's Law,tt0795493\nSTKWsvhZSjc,2007.0,8,10,2015,Cassandra's Dream,Committing Murder,tt0795493\nhaN_gCgewXQ,2007.0,7,10,2015,Cassandra's Dream,Close Call,tt0795493\nPXetdfRsmwk,2007.0,6,10,2015,Cassandra's Dream,Would You Sleep With a Director?,tt0795493\nEfT-5v5YIt4,2007.0,5,10,2015,Cassandra's Dream,Blood Is Blood,tt0795493\nYwqlCZ5mCdg,2007.0,4,10,2015,Cassandra's Dream,Real Trouble,tt0795493\ndlhTO_Pqq9s,2007.0,2,10,2015,Cassandra's Dream,Roadside Assistance,tt0795493\nqAZcl9BFd38,2007.0,1,10,2015,Cassandra's Dream,She's a Beauty,tt0795493\nAQUEnmFhk7s,2007.0,3,10,2015,Cassandra's Dream,Erotic Tension,tt0795493\n-CyRDSP_b5U,2007.0,9,10,2015,Cassandra's Dream,Worried About Terry,tt0795493\nCR8tgmpmgIk,2007.0,11,12,2015,1408,Trapped,tt0450385\nHuSM3bZf0R4,2007.0,10,12,2015,1408,Swept Away,tt0450385\nRL6JZfQq_qI,2007.0,9,12,2015,1408,Frozen With Fear,tt0450385\n-IZLCY2_esQ,2007.0,8,12,2015,1408,No Escape,tt0450385\n8BNvCu2iqmM,2007.0,7,12,2015,1408,On the Ledge,tt0450385\nyeMemdNO_2Y,2007.0,6,12,2015,1408,Call for Help,tt0450385\ndEHht_iK6qY,2007.0,5,12,2015,1408,Nobody Lasts More Than an Hour,tt0450385\nxK_P_l75a7Y,2007.0,4,12,2015,1408,Just a Room,tt0450385\nlM8xJqeAEGI,2007.0,3,12,2015,1408,Don't Do This,tt0450385\n4MyVJn56UFY,2007.0,1,12,2015,1408,Book Signing,tt0450385\nCaGEzKJKMTs,2007.0,12,12,2015,1408,Go to Hell,tt0450385\n--b-8xt2PeE,2007.0,2,12,2015,1408,56 Deaths,tt0450385\n9knEvoHQfEw,2009.0,7,10,2015,Nowhere Boy,Meet George,tt1266029\n9FqZ2BMv_RU,2009.0,9,10,2015,Nowhere Boy,In Spite of All the Danger,tt1266029\nN5L2PXUdQg0,2009.0,8,10,2015,Nowhere Boy,\"Where's Daddy, Mommy?\",tt1266029\na1YFvMDu0M8,2009.0,4,10,2015,Nowhere Boy,The Quarrymen,tt1266029\nx_9lcdX85Pg,2009.0,5,10,2015,Nowhere Boy,Paul's Audition,tt1266029\nNTGOA6lPP5w,2009.0,6,10,2015,Nowhere Boy,Buddy Holly Look,tt1266029\nN6CNJBPPVyk,2009.0,3,10,2015,Nowhere Boy,Banjo Lesson,tt1266029\n7Zx5tpFmv9M,2009.0,10,10,2015,Nowhere Boy,Off to Hamburg,tt1266029\n-34RUyP-DH8,2009.0,2,10,2015,Nowhere Boy,I Put a Spell on You,tt1266029\nG6tC5Mp9NVA,2009.0,1,10,2015,Nowhere Boy,Sex & Rock 'n' Roll,tt1266029\nGqbrt_dz_TQ,2008.0,9,11,2015,Zack and Miri Make a Porno,Swallow My Cappuccino!,tt1007028\nuq4bRVYBdts,2008.0,7,11,2015,Zack and Miri Make a Porno,Bubbles,tt1007028\nCg5dSosn_fk,2008.0,6,11,2015,Zack and Miri Make a Porno,Auditions Today,tt1007028\nzZab0Lq7_vU,2008.0,1,11,2015,Zack and Miri Make a Porno,Black Friday,tt1007028\nQKq7tIL9aOQ,2008.0,8,11,2015,Zack and Miri Make a Porno,Star Whores,tt1007028\n4iNd-1IPrGI,2008.0,11,11,2015,Zack and Miri Make a Porno,White Boy!,tt1007028\n0zfQoHORIFc,2008.0,3,11,2015,Zack and Miri Make a Porno,Bobby Long,tt1007028\n_IdlZCqJ8kk,2008.0,5,11,2015,Zack and Miri Make a Porno,Granny Panties,tt1007028\nCpFUyd_7XIM,2008.0,4,11,2015,Zack and Miri Make a Porno,Glen Gary Ross,tt1007028\nTPESLZ0sGak,2008.0,10,11,2015,Zack and Miri Make a Porno,Zack and Miri Do It,tt1007028\nN-MWa0s5iFQ,2008.0,2,11,2015,Zack and Miri Make a Porno,Ten Year Reunion,tt1007028\n6vjDZQtAKuc,2008.0,2,10,2015,The Reader,Reading,tt0976051\nNzbdfpYUxNM,2008.0,3,10,2015,The Reader,The Odyssey,tt0976051\nlVZNAyNWcgs,2008.0,4,10,2015,The Reader,Hanna on Trial,tt0976051\nt3XiTgsmyZc,2008.0,7,10,2015,The Reader,I Wrote the Report,tt0976051\nIjtqQ-ojgcU,2008.0,5,10,2015,The Reader,Morality and Law,tt0976051\nRHasf1LEG3Y,2008.0,8,10,2015,The Reader,Books on Tape,tt0976051\nwrRkC8RYqMI,2008.0,1,10,2015,The Reader,Watching Hanna,tt0976051\nFmOvzaWdpXI,2008.0,6,10,2015,The Reader,Auschwitz Choices,tt0976051\n1UOLqmhi3AE,2008.0,9,10,2015,The Reader,\"You've Grown Up, Kid\",tt0976051\nESkmmFHikgg,2008.0,10,10,2015,The Reader,An Organization for Literacy,tt0976051\nGaNKOew-TLE,2008.0,11,11,2015,Killshot,Just Like Everybody Else,tt0443559\n1nmWEA68h6U,2008.0,10,11,2015,Killshot,A Bullet for Carmen,tt0443559\nI-wCCN3yowU,2008.0,9,11,2015,Killshot,The Chicken Man,tt0443559\njxID8oHnCW0,2008.0,8,11,2015,Killshot,Home Invasion,tt0443559\nxHCQd9zv3ak,2008.0,7,11,2015,Killshot,No Loose Ends,tt0443559\noZnFQrIavwc,2008.0,5,11,2015,Killshot,A Double Feature,tt0443559\naTUTnjUBitc,2008.0,3,11,2015,Killshot,The Wrong Man,tt0443559\nRKui0n6Z7cU,2008.0,2,11,2015,Killshot,I Shoot People,tt0443559\nF1hMkfopHfc,2008.0,6,11,2015,Killshot,Jealous of Elvis,tt0443559\nhuCdZLvSyBI,2008.0,4,11,2015,Killshot,Ducks Don't Land in Trees,tt0443559\n-HI25-gfvxE,2008.0,1,11,2015,Killshot,Blackbird,tt0443559\nF4dOAIo0rrM,2009.0,6,12,2015,Youth in Revolt,Burning Down Berkeley,tt0403702\nTAX4AOdqFD0,2009.0,9,12,2015,Youth in Revolt,I Want to Tickle Your Belly Button,tt0403702\nwCHqch4ILBU,2009.0,12,12,2015,Youth in Revolt,You're My Francois,tt0403702\ngBjC4SgMKDA,2009.0,11,12,2015,Youth in Revolt,Lake Mistake,tt0403702\nxf3htc2iZ9Y,2009.0,8,12,2015,Youth in Revolt,Sleep Over,tt0403702\nmEPcdSaEXEo,2009.0,5,12,2015,Youth in Revolt,Francois Dillinger,tt0403702\nqmzYvuFtlM8,2009.0,2,12,2015,Youth in Revolt,Turned On Easily,tt0403702\nh5Qri9_giqQ,2009.0,1,12,2015,Youth in Revolt,Life in Oakland,tt0403702\nMfBr9ylnuX0,2009.0,10,12,2015,Youth in Revolt,Solidarity,tt0403702\ny9d6Tblt1kE,2009.0,3,12,2015,Youth in Revolt,\"Kiss Me, You Weenie\",tt0403702\nTUw1XgBLILA,2009.0,7,12,2015,Youth in Revolt,Sneaking In,tt0403702\nhAnmYHMCkRQ,2009.0,4,12,2015,Youth in Revolt,Where's the Nova?,tt0403702\n_j_ufc9wHmY,2013.0,7,10,2015,The Purge,Home Invasion,tt2184339\nRyotYUKsVyw,2013.0,6,10,2015,The Purge,The Freaks Are Coming In,tt2184339\nZEfbID-2TlQ,2013.0,10,10,2015,The Purge,No More Killing Tonight,tt2184339\n_qfIfbYkBUk,2013.0,9,10,2015,The Purge,Thank You for Your Sacrifice,tt2184339\nl51fnzJxYUE,2013.0,8,10,2015,The Purge,James Fights Back,tt2184339\nZo70vB9nubo,2013.0,5,10,2015,The Purge,You Are Going to Die Tonight,tt2184339\nQBMv724lzZI,2013.0,4,10,2015,The Purge,I'd Like to Have a Word,tt2184339\ne3mwmwPhr08,2013.0,3,10,2015,The Purge,Please Just Let Us Purge,tt2184339\n5tSi-wyuccs,2013.0,2,10,2015,The Purge,No One Was Helping,tt2184339\nvbUTbqwKtEE,2013.0,1,10,2015,The Purge,Time for Lockdown,tt2184339\noHeh8nSghcE,2009.0,8,9,2015,The Road,The Coast,tt0898367\naDCXE4Np1OI,2009.0,6,9,2015,The Road,The Last Man Alive,tt0898367\nOoSOmcTZ1ok,2009.0,3,9,2015,The Road,Her Final Gift,tt0898367\nBgUQldQC440,2009.0,2,9,2015,The Road,First Kill,tt0898367\nByLhxX3WUxY,2009.0,9,9,2015,The Road,The Thief,tt0898367\nWEP25kPtQCQ,2009.0,1,9,2015,The Road,God Never Spoke,tt0898367\nqf2p-tkn7cE,2009.0,4,9,2015,The Road,Human Livestock,tt0898367\n5EEMxJOxXr8,2009.0,5,9,2015,The Road,From Another World,tt0898367\n0yKd37DXIVQ,2009.0,7,9,2015,The Road,Earthquake,tt0898367\nheeS8J_KFt4,2011.0,10,10,2015,I Don't Know How She Does It,Things Have To Change,tt1742650\nccyYHEuCHKE,2011.0,9,10,2015,I Don't Know How She Does It,The Fight,tt1742650\nAs70qOtE3Cg,2011.0,8,10,2015,I Don't Know How She Does It,Jack And I Are Just Friend-ly,tt1742650\nfcnYQxHinu0,2011.0,4,10,2015,I Don't Know How She Does It,Equality Between The Sexes,tt1742650\nDX3oTDhDOXE,2011.0,6,10,2015,I Don't Know How She Does It,Juggling,tt1742650\njawZFND4Bfc,2011.0,5,10,2015,I Don't Know How She Does It,Lice,tt1742650\nvfutImUbN7M,2011.0,7,10,2015,I Don't Know How She Does It,Momo Is Pregnant,tt1742650\n97wa5FUtuG4,2011.0,2,10,2015,I Don't Know How She Does It,The List,tt1742650\nue_EAEC12X0,2011.0,1,10,2015,I Don't Know How She Does It,The Bake Sale,tt1742650\nXh-8LVuPArw,2011.0,3,10,2015,I Don't Know How She Does It,The Momsters,tt1742650\nRlOcas4K61c,2008.0,1,12,2015,Vicky Cristina Barcelona,A Chance for Something Special,tt0497465\nE5aXYsk787U,2008.0,2,12,2015,Vicky Cristina Barcelona,You Have to Seduce Me,tt0497465\nRd87CKvUHjU,2008.0,5,12,2015,Vicky Cristina Barcelona,Bedding Cristina,tt0497465\npTqtWm_DTKk,2008.0,6,12,2015,Vicky Cristina Barcelona,I Don't Trust Her,tt0497465\nga5qeKd7oxM,2008.0,7,12,2015,Vicky Cristina Barcelona,Speak English,tt0497465\nnOpwufXdkIk,2008.0,8,12,2015,Vicky Cristina Barcelona,You Went Through My Luggage?,tt0497465\nBtTX4ExS5sk,2008.0,9,12,2015,Vicky Cristina Barcelona,Photography,tt0497465\ngNSs_gF1T_Q,2008.0,11,12,2015,Vicky Cristina Barcelona,Chronic Dissatisfaction,tt0497465\nElD6Vos6Jbk,2008.0,12,12,2015,Vicky Cristina Barcelona,I Can't Live Like This,tt0497465\nbO7iMQGQjhY,2008.0,10,12,2015,Vicky Cristina Barcelona,Lust in the Darkroom,tt0497465\nNnrweogniK0,2008.0,4,12,2015,Vicky Cristina Barcelona,Spanish Guitar,tt0497465\nntNMz754DEg,2008.0,3,12,2015,Vicky Cristina Barcelona,Hard to Please,tt0497465\n-QOahlrO8Yo,2013.0,8,10,2015,Oblivion,The Drones Attack,tt1483013\n--Jiv5iYqT8,2013.0,9,10,2015,Oblivion,Dream of Us,tt1483013\nk2QekuUhgIM,2013.0,7,10,2015,Oblivion,Jack vs. Jack,tt1483013\nBoq7rlWzVRI,2013.0,3,10,2015,Oblivion,I've Been Watching You,tt1483013\nlxKvt5Z9Bok,2013.0,1,10,2015,Oblivion,Scav Attack,tt1483013\nvUuAbRVVZwA,2013.0,4,10,2015,Oblivion,I'm Your Wife,tt1483013\nGHKtN9jPK1w,2013.0,10,10,2015,Oblivion,How Can a Man Die Better?,tt1483013\nnDBs6ywP9ZE,2013.0,2,10,2015,Oblivion,They're Firing on Survivors,tt1483013\n7mGr4Uc7ebA,2013.0,5,10,2015,Oblivion,We Are Not An Effective Team,tt1483013\no1_U-Iem8fA,2013.0,6,10,2015,Oblivion,Are We Going to Die?,tt1483013\nkk14nhuvBIM,2008.0,3,11,2015,Superhero Movie,Some Kind of Hero,tt0426592\nSyNzTdVQIno,2008.0,2,11,2015,Superhero Movie,Science Fair Fracas,tt0426592\nT2Qc-56h_J0,2008.0,1,11,2015,Superhero Movie,Animal Magnetism,tt0426592\nvMUONm4ihP0,2008.0,5,11,2015,Superhero Movie,Superhero School,tt0426592\ntw6zV9CtczA,2008.0,4,11,2015,Superhero Movie,I Believe in You,tt0426592\n95SKqMz1Wdg,2008.0,6,11,2015,Superhero Movie,Flame On!,tt0426592\nXob7w4hR5Rw,2008.0,7,11,2015,Superhero Movie,The Hourglass,tt0426592\nMpFrgOc9KLU,2008.0,8,11,2015,Superhero Movie,Be a Hero,tt0426592\ngFb8e3uaeIg,2008.0,9,11,2015,Superhero Movie,\"Hide, Seek, Piss\",tt0426592\nOhO7kPNJJn0,2008.0,11,11,2015,Superhero Movie,Crotch Bomb,tt0426592\nR84dKkPAVpg,2008.0,10,11,2015,Superhero Movie,Romance and Farts,tt0426592\nZcD75L4QLrM,2006.0,5,10,2015,Scary Movie 4,Your Japanese Is Awful,tt0362120\nSTrE338cTBk,2006.0,10,10,2015,Scary Movie 4,Jumping the Couch,tt0362120\nfzRk8ovZ06s,2006.0,9,10,2015,Scary Movie 4,See What Cindy Saw,tt0362120\niFm-KZgioX8,2006.0,8,10,2015,Scary Movie 4,Speech at the UN,tt0362120\nL3VyRESBqek,2006.0,7,10,2015,Scary Movie 4,This Village Isn't What It Used to Be,tt0362120\n1YmOfCZ3ZIM,2006.0,6,10,2015,Scary Movie 4,My Pet Duck,tt0362120\nEzLXmzcs1Ho,2006.0,4,10,2015,Scary Movie 4,Million Dollar Cindy,tt0362120\nvuR9pDhXPqk,2006.0,2,10,2015,Scary Movie 4,Viagra Overdose,tt0362120\nHLnNY2KiQEQ,2006.0,1,10,2015,Scary Movie 4,Let the Game Begin,tt0362120\n94cC4uVE_HI,2006.0,3,10,2015,Scary Movie 4,Brokeblack Mountain,tt0362120\nS58poUaNwiw,2007.0,1,12,2015,Planet Terror,By the Balls,tt1077258\nA1p4HnyG3Rs,2007.0,2,12,2015,Planet Terror,These Are My Friends,tt1077258\nrgVm_KasYQc,2007.0,3,12,2015,Planet Terror,Road Kill,tt1077258\nVuVAsd9jMjo,2007.0,4,12,2015,Planet Terror,I Have No Leg!,tt1077258\nbMg6mfghJHw,2007.0,5,12,2015,Planet Terror,You'll Blow Your Own Face Off,tt1077258\n6WGP7utz8uA,2007.0,6,12,2015,Planet Terror,Passion So Hot It Burned the Film,tt1077258\nILbPhe1Wg9U,2007.0,8,12,2015,Planet Terror,\"Don't Taunt Me, Tramp\",tt1077258\nz7Zevt3riNc,2007.0,9,12,2015,Planet Terror,You Killed Bin Laden?,tt1077258\n8fRq0mDBzi4,2007.0,12,12,2015,Planet Terror,Cherry Darling,tt1077258\nYC-2vmyKkV4,2007.0,10,12,2015,Planet Terror,A One-Legged Stripper,tt1077258\nXYiiAHc3CXQ,2007.0,11,12,2015,Planet Terror,Fully Loaded,tt1077258\nTsyLQX9NH18,2007.0,7,12,2015,Planet Terror,Give Him All the Guns,tt1077258\n_YfbSVO6nz4,2013.0,6,10,2015,Riddick,Made Any Last Wishes?,tt1411250\ntuq5JMwWRSg,2013.0,10,10,2015,Riddick,Men vs. Monsters,tt1411250\ndt38_iS6u64,2013.0,9,10,2015,Riddick,Takes On Diaz,tt1411250\nhV9ArqfKqw0,2013.0,8,10,2015,Riddick,The Five Second Kill,tt1411250\njZYr6ALcDy4,2013.0,7,10,2015,Riddick,Not Me You Got to Worry About,tt1411250\ncTOlg3u_fZk,2013.0,5,10,2015,Riddick,A Deal Gone Bad,tt1411250\nmnEpL-H7pms,2013.0,4,10,2015,Riddick,Fair Trade,tt1411250\ntjrB1BtTnB8,2013.0,3,10,2015,Riddick,Night Attack,tt1411250\nf15ob_n_tfM,2013.0,2,10,2015,Riddick,Mud Demons,tt1411250\nifkFfWmEc_Q,2013.0,1,10,2015,Riddick,The Assassination,tt1411250\nmILfbvj0xtk,2007.0,3,10,2015,Death Proof,Stuntman Mike,tt1028528\nF37WD6OCu7s,2007.0,1,10,2015,Death Proof,The Thing,tt1028528\nkWz4LQXH6bE,2007.0,5,10,2015,Death Proof,100%,tt1028528\ntNGuXckF_sc,2007.0,6,10,2015,Death Proof,The Car Crash,tt1028528\nxvOaMA9l4Sg,2007.0,8,10,2015,Death Proof,Ship's Mast,tt1028528\nMq0xthZjW-s,2007.0,9,10,2015,Death Proof,High-Speed Chase,tt1028528\nee6jqUkxkZs,2007.0,7,10,2015,Death Proof,Licking Her Feet,tt1028528\nQBps5R-4JrY,2007.0,2,10,2015,Death Proof,Shots with Warren,tt1028528\naSZoCaL7HIo,2007.0,10,10,2015,Death Proof,Revenge,tt1028528\nTIP0eokPc5c,2007.0,4,10,2015,Death Proof,Lap Dance,tt1028528\nNUOag7luIOE,2002.0,4,12,2015,Undisputed,Aint' No Champ in Here But Me!,tt0281322\nmv3qeSxmp68,2002.0,5,12,2015,Undisputed,You Wanna Hit Me?,tt0281322\n_Nz64htsk9I,2002.0,6,12,2015,Undisputed,Everybody Gets Beaten,tt0281322\nMmIk10arVaI,2002.0,7,12,2015,Undisputed,Everybody Wants a Piece of You,tt0281322\n7xSB_efH2N0,2002.0,9,12,2015,Undisputed,The Prison Riot,tt0281322\n5kopF-bCBC8,2002.0,10,12,2015,Undisputed,How Things Get Done,tt0281322\nEqDntjV9GIY,2002.0,11,12,2015,Undisputed,R-E-S-P-E-C-K! RESPECK!,tt0281322\n01tx72R0gP8,2002.0,2,12,2015,Undisputed,I'll Be the Champ 'Til I Quit,tt0281322\nz67zZuCIL-s,2002.0,8,12,2015,Undisputed,What's In It For Me?,tt0281322\nj85FRIQigrg,2002.0,12,12,2015,Undisputed,Final Fight,tt0281322\nZ1N_U1c-fUo,2002.0,1,12,2015,Undisputed,Monroe vs. the Neo Nazi,tt0281322\nfkC99C2w4-o,2002.0,3,12,2015,Undisputed,Iceman's Last Fight,tt0281322\ncoWFeBI9XoQ,1998.0,1,8,2015,The Prophecy II,Crawling Out of Hell,tt0118643\nnZWo6dP2zVw,1998.0,2,8,2015,The Prophecy II,Killing the Prophet,tt0118643\nKKiVFZcwx6g,1998.0,4,8,2015,The Prophecy II,Angels Hate Computers,tt0118643\nSxCUyc_brKA,1998.0,5,8,2015,The Prophecy II,Suicidal Help,tt0118643\nKvAVAKE_pRQ,1998.0,6,8,2015,The Prophecy II,Run Down by an Angel,tt0118643\nQOWkXpnwlek,1998.0,7,8,2015,The Prophecy II,How Does This Work?,tt0118643\naumRE2Eq88o,1998.0,8,8,2015,The Prophecy II,Shooting an Angel,tt0118643\nEMpPWRLRQZY,1998.0,3,8,2015,The Prophecy II,How Many Worlds Must Burn?,tt0118643\nESmtdvc5zk4,2000.0,1,8,2015,The Prophecy 3: The Ascent,God is Dead,tt0183678\nWwzmDbzboQM,2000.0,2,8,2015,The Prophecy 3: The Ascent,Always Take The Heart,tt0183678\na51EYR5AeNk,2000.0,3,8,2015,The Prophecy 3: The Ascent,You're Not So Special,tt0183678\nXL4aLIj7q9M,2000.0,4,8,2015,The Prophecy 3: The Ascent,The Next God,tt0183678\nzMFxbMh7JYY,2000.0,5,8,2015,The Prophecy 3: The Ascent,Angels are Bulletproof,tt0183678\nVRTb5eck250,2000.0,6,8,2015,The Prophecy 3: The Ascent,Ripping Out an Angel's Heart,tt0183678\nYk84fGy3q-8,2000.0,7,8,2015,The Prophecy 3: The Ascent,Genocide Happens,tt0183678\nzdSMdOcyfOU,2000.0,8,8,2015,The Prophecy 3: The Ascent,God Kills,tt0183678\nlOmeZW0N10k,2003.0,1,11,2015,Spy Kids 3D: Game Over,Private Detective Juni,tt5711820\ngrn62a_8fZ4,2003.0,2,11,2015,Spy Kids 3D: Game Over,Your Sister's Missing,tt5711820\nQWepLWTflW8,2003.0,3,11,2015,Spy Kids 3D: Game Over,Are You With Us?,tt5711820\nxGugDtX55CQ,2003.0,4,11,2015,Spy Kids 3D: Game Over,Battle in the Arena,tt5711820\neS47L5yU2k8,2003.0,5,11,2015,Spy Kids 3D: Game Over,Who Are You People?,tt5711820\nUpiqcjnWZB8,2003.0,6,11,2015,Spy Kids 3D: Game Over,The Mega-Race,tt5711820\nL4PPqiuDNK0,2003.0,7,11,2015,Spy Kids 3D: Game Over,Battle for Survival,tt5711820\naF_Ijr621tM,2003.0,8,11,2015,Spy Kids 3D: Game Over,The Guy,tt5711820\nRj9fUYRr81A,2003.0,9,11,2015,Spy Kids 3D: Game Over,The Deceiver,tt5711820\nmFoZz6PG72k,2003.0,10,11,2015,Spy Kids 3D: Game Over,Game Over,tt5711820\noCHEAaCGj7k,2003.0,11,11,2015,Spy Kids 3D: Game Over,To Family,tt5711820\n-9UJGi_b2UI,2001.0,1,11,2015,Iris,The Importance of Education,tt0280778\nq-hS7nZ1Ok0,2001.0,2,11,2015,Iris,We Could Do This All the Time,tt0280778\nTIQP5uv3D3Q,2001.0,3,11,2015,Iris,We All Worry About Going Mad,tt0280778\nH02B31zvSKQ,2001.0,4,11,2015,Iris,A First-Class Mind,tt0280778\n6NmCTA1AK54,2001.0,6,11,2015,Iris,It's Time We Made Love,tt0280778\nusyxBVGLU74,2001.0,7,11,2015,Iris,I Wrote,tt0280778\nq6nz3GR5Ano,2001.0,8,11,2015,Iris,Pages in the Wind,tt0280778\nY-4pm9C-jeE,2001.0,9,11,2015,Iris,A Lark in the Clear Air,tt0280778\n-QiOCO5-ZPA,2001.0,11,11,2015,Iris,You Little Mouse,tt0280778\nVSnBrgm2PM4,2001.0,5,11,2015,Iris,She Uses Them,tt0280778\n9UZ8XOTp19c,2001.0,10,11,2015,Iris,You Are My World,tt0280778\nVz6AlIZAe2s,2000.0,1,8,2015,Hellraiser: Inferno,A Detective in Hell,tt0229440\nnsyud-sEm-w,2000.0,2,8,2015,Hellraiser: Inferno,The Videotape of Suffering,tt0229440\n8O06gqOG3fE,2000.0,3,8,2015,Hellraiser: Inferno,Cowboys and Demons,tt0229440\nePhMSnfYanI,2000.0,4,8,2015,Hellraiser: Inferno,A Hospital of Madness,tt0229440\nIYmiSXEQ7ys,2000.0,5,8,2015,Hellraiser: Inferno,Pinhead Meets the Family,tt0229440\n7lbPHodrgC4,2000.0,6,8,2015,Hellraiser: Inferno,Killer Parents,tt0229440\nlI8p0rzq2R4,2000.0,7,8,2015,Hellraiser: Inferno,Dead Friends,tt0229440\n2ad7SgwLNXo,2000.0,8,8,2015,Hellraiser: Inferno,Welcome to Hell,tt0229440\nBHJ5KGh-Xnw,2013.0,10,10,2015,Kick-Ass 2,Heroes vs. Villains,tt1650554\ncBzuWSSTTs0,2013.0,9,10,2015,Kick-Ass 2,Hit-Girl to the Rescue,tt1650554\nPrzgybNYBs8,2013.0,8,10,2015,Kick-Ass 2,Mother Russia vs. Cops,tt1650554\nOA-SQ7lCV2I,2013.0,7,10,2015,Kick-Ass 2,Colonel Stars and Stripes vs. Mother Russia,tt1650554\nrny3UdYPDn0,2013.0,6,10,2015,Kick-Ass 2,The Sick Stick,tt1650554\nw78NFd5q_0k,2013.0,5,10,2015,Kick-Ass 2,Try to Have Fun,tt1650554\nH44YauhtGPU,2013.0,4,10,2015,Kick-Ass 2,Dance Audition,tt1650554\noAJYONuey_8,2013.0,3,10,2015,Kick-Ass 2,Justice Forever,tt1650554\ndd_IWBNSKY0,2013.0,2,10,2015,Kick-Ass 2,Don't You Want to Belong?,tt1650554\nb6X5bVMoCJc,2013.0,1,10,2015,Kick-Ass 2,We Should Be Partners,tt1650554\n8OWCY47wOAI,1996.0,2,8,2015,Hellraiser IV: Bloodline,A Demon to Command,tt0116514\noLLfx_GN73I,1996.0,1,8,2015,Hellraiser IV: Bloodline,Unleashing Pinhead in Space,tt0116514\nhF4ErLUEW9E,1996.0,6,8,2015,Hellraiser IV: Bloodline,I Am Pain,tt0116514\nuzcyJ9sN98c,1996.0,7,8,2015,Hellraiser IV: Bloodline,Back to Hell,tt0116514\nxN0R2xFmcYU,1996.0,4,8,2015,Hellraiser IV: Bloodline,You Like It Rough,tt0116514\nS3HubCxt0hM,1996.0,8,8,2015,Hellraiser IV: Bloodline,The Death of Pinhead,tt0116514\nY-szf9FRi8M,1996.0,3,8,2015,Hellraiser IV: Bloodline,Demons Walk the Earth,tt0116514\nqzkFTptrfbw,1996.0,5,8,2015,Hellraiser IV: Bloodline,The Return of Pinhead,tt0116514\n6Wk1Sob8Quo,2000.0,1,11,2015,Hamlet,What a Piece of Work is a Man,tt0171359\nBZjqqKqaw60,2000.0,2,11,2015,Hamlet,Frailty Thy Name is Woman,tt0171359\nn13FhFrtu_8,2000.0,3,11,2015,Hamlet,To Thine Own Self Be True,tt0171359\nD_84bHFra4s,2000.0,4,11,2015,Hamlet,Murder Most Foul,tt0171359\n1Up-oGfiosE,2000.0,6,11,2015,Hamlet,To Be or Not To Be,tt0171359\nEzxET3KpvSM,2000.0,7,11,2015,Hamlet,Get Thee to a Nunnery,tt0171359\noBfLI1WWrAI,2000.0,8,11,2015,Hamlet,The Mousetrap,tt0171359\npMrk3l8El24,2000.0,9,11,2015,Hamlet,What Hast Thou Done?,tt0171359\nBOwOiWDD_SM,2000.0,10,11,2015,Hamlet,Where is Polonius?,tt0171359\n0XjLzDVi03c,2000.0,11,11,2015,Hamlet,The Rest is Silence,tt0171359\nkR8Xje2x0sA,2000.0,5,11,2015,Hamlet,Never Doubt My Love,tt0171359\nb854qv-Z-ZQ,2005.0,1,9,2015,Cursed,The Beast Gets Becky,tt0312004\nVH6D36VQ_uo,2005.0,2,9,2015,Cursed,A Midnight Snack,tt0312004\nwRM5Flw2nXY,2005.0,3,9,2015,Cursed,Wolf in a Parking Garage,tt0312004\n7AjmrbE-NTM,2005.0,4,9,2015,Cursed,From Dog to Werewolf,tt0312004\nYG_z4RpxKWA,2005.0,7,9,2015,Cursed,A Ferocious Female,tt0312004\n8Qklz6BqVxU,2005.0,5,9,2015,Cursed,Trapped in the Club,tt0312004\nMgf5jaQO9sQ,2005.0,8,9,2015,Cursed,The Werewolf With a Bony Ass,tt0312004\nwqMPRiWvJEs,2005.0,6,9,2015,Cursed,The Werewolf Ex,tt0312004\n-QyAhZv-o_U,2005.0,9,9,2015,Cursed,A Beast of a Boyfriend,tt0312004\ni_FoR7ZV2EU,1986.0,2,8,2015,Operation Condor 2,A Violent Kidnapping,tt0091431\nCatwTirgWZg,1986.0,3,8,2015,Operation Condor 2,Meeting the Kidnappers,tt0091431\nlNla5rf4idU,1986.0,7,8,2015,Operation Condor 2,Playing With Dynamite,tt0091431\n7WXKfXCiWW8,1986.0,4,8,2015,Operation Condor 2,An Explosive Chase,tt0091431\nsXPBgnBxTFM,1986.0,5,8,2015,Operation Condor 2,A Room Full of Deadly Monks,tt0091431\nG5qPGKpTzXU,1986.0,1,8,2015,Operation Condor 2,Stealing a Sword,tt0091431\nVhc7iBAAawA,1986.0,6,8,2015,Operation Condor 2,Four Female Assassins,tt0091431\nqVzfIUAzda4,1986.0,8,8,2015,Operation Condor 2,Outtakes,tt0091431\ngN1BjYlhKvc,2011.0,6,10,2015,Fast Five,Million Dollar Race,tt1596343\neFnw_27t9-o,2011.0,1,10,2015,Fast Five,Train Robbery,tt1596343\nS8Vu6A9LW20,2011.0,2,10,2015,Fast Five,Over the Cliff,tt1596343\nk2PsfXZ3wyY,2011.0,7,10,2015,Fast Five,Hobbs vs. Toretto,tt1596343\nTIbZNmvyLBI,2011.0,5,10,2015,Fast Five,You're Under Arrest,tt1596343\nxEAsC8A1Ins,2011.0,10,10,2015,Fast Five,The Bridge Showdown,tt1596343\nvmm8P0V1W4g,2011.0,3,10,2015,Fast Five,Favela Chase,tt1596343\n9aldDI2WF7g,2011.0,8,10,2015,Fast Five,Street Ambush,tt1596343\n6w0F9xVXn_E,2011.0,4,10,2015,Fast Five,A Woman's Job,tt1596343\nOurCnuyC8zo,2011.0,9,10,2015,Fast Five,Taking the Vault,tt1596343\n8l7lDn2hUTw,1992.0,1,10,2015,Hellraiser III: Hell on Earth,Hellacious Power,tt0104409\nb_FQEg7ScU0,1992.0,2,10,2015,Hellraiser III: Hell on Earth,Demonic Sacrifice,tt0104409\nF0KcFyR2uAc,1992.0,3,10,2015,Hellraiser III: Hell on Earth,Pinhead Unchained,tt0104409\nG21su-YdW5k,1992.0,4,10,2015,Hellraiser III: Hell on Earth,Pinhead's Origin,tt0104409\nPPNHvoOU1kE,1992.0,5,10,2015,Hellraiser III: Hell on Earth,Club Dead,tt0104409\nHehUdDtSt1U,1992.0,6,10,2015,Hellraiser III: Hell on Earth,Box of Lament,tt0104409\n0W9jZQetuB0,1992.0,9,10,2015,Hellraiser III: Hell on Earth,Play With This,tt0104409\nkmigfm9ZONk,1992.0,8,10,2015,Hellraiser III: Hell on Earth,Sacrilege,tt0104409\n87YM78J6ebQ,1992.0,7,10,2015,Hellraiser III: Hell on Earth,Ready For Your Closeup,tt0104409\n88UgHHl7W7A,1992.0,10,10,2015,Hellraiser III: Hell on Earth,Go to Hell!,tt0104409\nYADVuSMFS2M,1972.0,8,8,2015,The Way of the Dragon,The Final Showdown,tt0068935\n85WDSyWnTZg,1999.0,8,8,2015,Beowulf,The Demon Has a Mother,tt0120604\nsUxkumq9UJY,1999.0,1,8,2015,Beowulf,vs. Everybody,tt0120604\n-PWyO04IJYQ,1999.0,2,8,2015,Beowulf,Sleep When You're Dead,tt0120604\nCCGpFb4lNgI,1999.0,6,8,2015,Beowulf,Taking the Devil's Arm,tt0120604\nm8CkFFna7Ew,1999.0,4,8,2015,Beowulf,With All the Cool Ways to Die,tt0120604\nBFaNTh5aqls,1999.0,3,8,2015,Beowulf,The Beast in the Darkness,tt0120604\n0iwVPWstvGo,1999.0,5,8,2015,Beowulf,A Demon Named Grendel,tt0120604\ntPkmKcc-LAM,1999.0,7,8,2015,Beowulf,Kill for Pleasure,tt0120604\nN6mFvYxmiM8,1999.0,1,12,2015,An Ideal Husband,See You Tonight,tt0122541\naAMVebfAZ7I,1999.0,6,12,2015,An Ideal Husband,It is Not True,tt0122541\nzD5BdMcO4yo,1999.0,11,12,2015,An Ideal Husband,I Love You,tt0122541\nZxcUzbEJx98,1999.0,2,12,2015,An Ideal Husband,The Game of Life,tt0122541\nw4RGgEi7T8E,1999.0,3,12,2015,An Ideal Husband,You Should Go to Bed,tt0122541\n-3upqhXz0nE,1999.0,4,12,2015,An Ideal Husband,Business or Pleasure?,tt0122541\nzpFlShhUcIo,1999.0,5,12,2015,An Ideal Husband,Be as Trivial as You Can,tt0122541\nXadVTfPZ6yc,1999.0,7,12,2015,An Ideal Husband,Love Cannot Be Bought,tt0122541\nEYh8GOoyv-M,1999.0,9,12,2015,An Ideal Husband,Looking and Seeing,tt0122541\nrVjV3FNsMtk,1999.0,12,12,2015,An Ideal Husband,The Truth is I Lied,tt0122541\nt78EgRBYIh0,1999.0,10,12,2015,An Ideal Husband,The Usual Palm Tree,tt0122541\nHMUnEpn0n9U,1999.0,8,12,2015,An Ideal Husband,Commerce Without Conscience,tt0122541\n1ZpqDhQJhFA,1972.0,1,8,2015,The Way of the Dragon,Chinese Boxing,tt0068935\nTEpJFWUw2ts,1972.0,2,8,2015,The Way of the Dragon,\"Watch, You'll Learn Something\",tt0068935\nO5TE0yg-mEA,1972.0,3,8,2015,The Way of the Dragon,Tang Lung Fights Back,tt0068935\nHysSQiXYjdE,1972.0,4,8,2015,The Way of the Dragon,A Master of Nunchucks,tt0068935\ndp_aLWPZY8I,1972.0,5,8,2015,The Way of the Dragon,Friends and Enemies,tt0068935\nsEycv_wZaIA,1972.0,6,8,2015,The Way of the Dragon,A Kung Fu Trap,tt0068935\n0VJnFDz4VP0,1972.0,7,8,2015,The Way of the Dragon,The Masters of Martial Arts,tt0068935\n5vvtNVnzxaA,2013.0,10,10,2015,Despicable Me 2,Battling the Minions,tt1690953\nCZZEp8EaO6g,2013.0,9,10,2015,Despicable Me 2,The Purple Minion Attacks,tt1690953\nJjSpGeBqJR8,2013.0,4,10,2015,Despicable Me 2,A Minion in Love,tt1690953\n-kYzHmPDZwo,2013.0,1,10,2015,Despicable Me 2,The Most Magical Fairy Princess,tt1690953\n93lz5IE7Z0c,1991.0,3,8,2015,Madonna: Truth or Dare,\"He Loves Me, He Loves Me Not\",tt0102370\nscDWdIV7Fes,1991.0,7,8,2015,Madonna: Truth or Dare,Vogue,tt0102370\ntoT3JGFEwmw,1991.0,4,8,2015,Madonna: Truth or Dare,Like a Virgin,tt0102370\nujJJyIKIAjg,1991.0,5,8,2015,Madonna: Truth or Dare,Sandra Bernhard,tt0102370\nKAVqLKDwSOo,1991.0,6,8,2015,Madonna: Truth or Dare,Antonio Banderas,tt0102370\nt-JFogFsPHQ,1991.0,1,8,2015,Madonna: Truth or Dare,Express Yourself,tt0102370\ns1Qz6N4-tEY,1991.0,2,8,2015,Madonna: Truth or Dare,Warren Beatty,tt0102370\ncNKYmHmy9OQ,1991.0,8,8,2015,Madonna: Truth or Dare,Truth or Dare,tt0102370\n2tzvi3Xp6sw,2013.0,8,10,2015,Despicable Me 2,Worst Date Ever,tt1690953\n4H1Lc_JHF7I,2013.0,6,10,2015,Despicable Me 2,The Wig Shop,tt1690953\nUsKSjKrIEq8,2013.0,3,10,2015,Despicable Me 2,Dr. Nefario Quits,tt1690953\nQCJ_a5AYVEY,2013.0,7,10,2015,Despicable Me 2,Margo In Love,tt1690953\n_uRGjnG3G3o,2013.0,2,10,2015,Despicable Me 2,Goodnight Girls,tt1690953\n4lNoSUurdKc,2013.0,5,10,2015,Despicable Me 2,That Pollo is Loco,tt1690953\nLpOc7D4G1TM,1994.0,3,8,2015,Highlander III,Releasing the Immortals,tt0110027\nifl_AGVJee8,1994.0,4,8,2015,Highlander III,You've Already Lost,tt0110027\nLJq_hnR6CHc,1994.0,8,8,2015,Highlander III,The Death of Kane,tt0110027\n_s5fgacYzjA,1994.0,1,8,2015,Highlander III,Burning the Village,tt0110027\nkMRM-0GvaQk,1994.0,2,8,2015,Highlander III,Killing the Sorcerer,tt0110027\nTsi-yH9juC8,1994.0,7,8,2015,Highlander III,Confronting the Master of Illusion,tt0110027\nCglQW97hCe0,1994.0,5,8,2015,Highlander III,The End of the Highlander's Sword,tt0110027\nQxK_EsMjCQE,1994.0,6,8,2015,Highlander III,\"Kidnap a Son, Arrest an Immortal\",tt0110027\nkCb1R69h92Q,1999.0,9,9,2015,Teaching Mrs. Tingle,Irony,tt0133046\nEKdQ1jASEmw,1999.0,8,9,2015,Teaching Mrs. Tingle,A Fate Worse Than Death,tt0133046\nhq-vTEalnj0,1999.0,5,9,2015,Teaching Mrs. Tingle,Under His Skin,tt0133046\nYczVaT_czPE,1999.0,2,9,2015,Teaching Mrs. Tingle,Caught Cheating,tt0133046\n2Y41IMoi1TU,1999.0,1,9,2015,Teaching Mrs. Tingle,The Terror of Mrs. Tingle,tt0133046\nG1x0zmX-PEw,1999.0,3,9,2015,Teaching Mrs. Tingle,After School Lesson,tt0133046\nprLok_8YD8w,1999.0,4,9,2015,Teaching Mrs. Tingle,Exorcism,tt0133046\n-it68CFJkNg,1999.0,6,9,2015,Teaching Mrs. Tingle,Scandalous,tt0133046\nP4fFh-wHWl0,1999.0,7,9,2015,Teaching Mrs. Tingle,Carnal Conquest,tt0133046\nyHf9QshbQeE,2013.0,6,10,2015,Fast & Furious 6,Every Man Has a Code,tt1905041\n-DF-MgSuhQ0,2013.0,5,10,2015,Fast & Furious 6,You Got a Death Wish?,tt1905041\n4rwJ3BnGrl0,2013.0,3,10,2015,Fast & Furious 6,Anything Else You Need,tt1905041\nnxWj-7FF4CI,2013.0,4,10,2015,Fast & Furious 6,Subway Fight,tt1905041\nuzHwlt3dmmo,2013.0,7,10,2015,Fast & Furious 6,They Got a Tank,tt1905041\nNGeFA2fWzX8,2013.0,8,10,2015,Fast & Furious 6,Dom Saves Letty,tt1905041\nkm3VtR6mqmg,2013.0,9,10,2015,Fast & Furious 6,Boarding the Plane,tt1905041\niz2ro0h_TmQ,2013.0,2,10,2015,Fast & Furious 6,Letty Returns,tt1905041\nAtb5LNPuxyU,2013.0,10,10,2015,Fast & Furious 6,The End of Owen Shaw,tt1905041\nY92N7SFJ0Fo,2013.0,1,10,2015,Fast & Furious 6,Shaw's Escape,tt1905041\n2Pkky-Dncw8,1998.0,7,7,2015,Phantoms,Killing the Evil,tt0120915\nJYp5uIodwEE,1998.0,5,7,2015,Phantoms,Drawing Out the Creature,tt0120915\nH843vNJgIaQ,1998.0,4,7,2015,Phantoms,Getting the Dart Gun,tt0120915\n_vNaSVn6qSk,1998.0,3,7,2015,Phantoms,It's a Good Dog,tt0120915\nRKn6FWvaVBM,1998.0,2,7,2015,Phantoms,Get Out of There!,tt0120915\n2pVPaPFm5iI,1998.0,1,7,2015,Phantoms,What is That?,tt0120915\n9I1aM1EQZ7o,1998.0,6,7,2015,Phantoms,Shotgun to the Head,tt0120915\nZ0iCcI1Owys,2000.0,1,7,2015,Highlander: Endgame,Attacking the Sanctuary,tt0144964\nAmAklov1ewQ,2000.0,2,7,2015,Highlander: Endgame,Paying the Toll,tt0144964\nU89NOSQdgqo,2000.0,3,7,2015,Highlander: Endgame,Man of Honor,tt0144964\n-iuSE7NVc8c,2000.0,4,7,2015,Highlander: Endgame,Take My Vengeance,tt0144964\nDegHehO_nfc,2000.0,5,7,2015,Highlander: Endgame,The End of Connor MacLeod,tt0144964\n16hnbNPCFBo,2000.0,6,7,2015,Highlander: Endgame,The Final Battle,tt0144964\n_tYTcz52ZB8,2000.0,7,7,2015,Highlander: Endgame,There Can Be Only One,tt0144964\nPGU_sBj_q5g,2001.0,6,7,2015,The Musketeer,Climbing the Tower,tt0246544\nb5whTkIQ32c,2001.0,7,7,2015,The Musketeer,Confronting the Man in Black,tt0246544\n5QGrgYkudfo,2001.0,5,7,2015,The Musketeer,Attacking the Castle,tt0246544\nA1mYM5yA6oI,2001.0,4,7,2015,The Musketeer,Defending the Carriage,tt0246544\n-e_vbnd9bV8,2001.0,3,7,2015,The Musketeer,Banquet Invasion,tt0246544\n5eC6VCiJYq8,2001.0,2,7,2015,The Musketeer,Jail Rescue,tt0246544\n0Ihq2_hNnX8,2001.0,1,7,2015,The Musketeer,Sword Fight in the Bar,tt0246544\nXG-c6CmPo4k,2001.0,5,9,2015,Texas Rangers,I'm a Damn Blasted Shooter,tt0193560\nnxvXYa6n0pY,2001.0,3,9,2015,Texas Rangers,Joining the,tt0193560\nVGGxaRYEfO4,2001.0,1,9,2015,Texas Rangers,Town Massacre,tt0193560\nqG-B9IzugQM,2001.0,2,9,2015,Texas Rangers,I Ain't No Preacher,tt0193560\nrcjujixxfdY,2001.0,4,9,2015,Texas Rangers,The Betrayal,tt0193560\nALsbjcqNdRo,2001.0,6,9,2015,Texas Rangers,\"No Prisoners, Rangers\",tt0193560\n6rAcjVEXvSg,2001.0,7,9,2015,Texas Rangers,She Was Eyeing Me,tt0193560\n8jkM1zBTJIA,2001.0,8,9,2015,Texas Rangers,The Rangers vs. The Bandits,tt0193560\nKYQELfxxAck,2001.0,9,9,2015,Texas Rangers,Lincoln Gets His Revenge,tt0193560\nNrLSAjP5Ibw,2001.0,5,8,2015,Buffalo Soldiers,Wanna Go Out Friday Night?,tt0252299\njOf4crp-WVs,2001.0,7,8,2015,Buffalo Soldiers,Ready Aim Fire,tt0252299\nUTEUIdcqSfo,2001.0,4,8,2015,Buffalo Soldiers,Makin' Nice,tt0252299\nqlJ2951IShM,2001.0,2,8,2015,Buffalo Soldiers,Resplendent,tt0252299\ntXDoydLr3YQ,2001.0,1,8,2015,Buffalo Soldiers,Fallin',tt0252299\n_Q9JnjhXRyA,2001.0,3,8,2015,Buffalo Soldiers,Squashed a Beetle,tt0252299\npzeu5peH2n0,2001.0,6,8,2015,Buffalo Soldiers,Ecstasy,tt0252299\nGBXYXp04Los,2001.0,8,8,2015,Buffalo Soldiers,High Dive,tt0252299\nAWmHgNv0xUc,2002.0,9,10,2015,Halloween: Resurrection,Still Alive,tt0220506\nT4Z1mnjLwiA,2002.0,5,10,2015,Halloween: Resurrection,Imposter,tt0220506\ng-bxs_daoCI,2002.0,8,10,2015,Halloween: Resurrection,Stab and Deliver,tt0220506\nI64nwvRliGY,2002.0,6,10,2015,Halloween: Resurrection,Impalement,tt0220506\nTEq446woKOo,2002.0,7,10,2015,Halloween: Resurrection,Double Kill,tt0220506\nVxwsEqiptwo,2002.0,10,10,2015,Halloween: Resurrection,Trick or Treat,tt0220506\noL8QGyo50_M,2002.0,1,10,2015,Halloween: Resurrection,I'll See You in Hell,tt0220506\nqJkMktF_QUE,2002.0,2,10,2015,Halloween: Resurrection,First-Person Killer,tt0220506\nbTrFBrULLmM,2002.0,3,10,2015,Halloween: Resurrection,Gotcha!,tt0220506\nv-8bLcH0iD4,2002.0,4,10,2015,Halloween: Resurrection,Shattered Glass,tt0220506\nMJBoXI6pVQ8,2002.0,1,8,2015,Full Frontal,You Are Hitler,tt0290212\ndZt3TeTClV8,2002.0,2,8,2015,Full Frontal,Goebbels the A-Hole,tt0290212\nJg7LxmHGNd4,2002.0,3,8,2015,Full Frontal,The Limey,tt0290212\nHa-aaENx0Fg,2002.0,4,8,2015,Full Frontal,Love Letter,tt0290212\nEuld6YN5liw,2002.0,5,8,2015,Full Frontal,40th Birthday Gift,tt0290212\nbfzJMOBenVA,2002.0,6,8,2015,Full Frontal,On Set with David Fincher,tt0290212\nS5-Beq8JVsw,2002.0,7,8,2015,Full Frontal,Happy Ending,tt0290212\nGWL0Cj7bAf4,2002.0,8,8,2015,Full Frontal,Out of a Movie,tt0290212\nbTx918Kpg30,2002.0,6,8,2015,Darkness,A Father's Rage,tt0282209\nBXLhK4ra6tQ,2002.0,5,8,2015,Darkness,Grandfather is Evil,tt0282209\nM8gGpyKPAFQ,2002.0,4,8,2015,Darkness,Ghosts On a Train,tt0282209\nXGCcothBtRs,2002.0,8,8,2015,Darkness,Escaping the House,tt0282209\nmIpX6PnT9UY,2002.0,3,8,2015,Darkness,Ghost Children,tt0282209\nytCAMgdi9sw,2002.0,2,8,2015,Darkness,You're Scaring Him,tt0282209\noLO_o48BejY,2002.0,7,8,2015,Darkness,Sacrificing the Father,tt0282209\nY3Y3HySArOU,2002.0,1,8,2015,Darkness,Panic Attack in the Car,tt0282209\n79tBbaqvbjM,2010.0,9,9,2015,The Ghost Writer,Prime Minister Down,tt1139328\nLmxUk-KxjoI,2010.0,5,9,2015,The Ghost Writer,Deeper Into the Woods,tt1139328\nyCIgtidXAnQ,2010.0,7,9,2015,The Ghost Writer,In the Beginning,tt1139328\ng6Hf6Wbk6B4,2010.0,4,9,2015,The Ghost Writer,A Formal Investigation,tt1139328\nzD_yR7ixRmo,2010.0,3,9,2015,The Ghost Writer,For a Woman,tt1139328\nHzLYedqOPIY,2010.0,2,9,2015,The Ghost Writer,The Triangle,tt1139328\njFEvKqbayIQ,2010.0,1,9,2015,The Ghost Writer,Selling Autobiographies,tt1139328\n-x8fqJDLsu8,2010.0,6,9,2015,The Ghost Writer,Escaping The Ferry,tt1139328\nax59TmvzCEg,2010.0,8,9,2015,The Ghost Writer,A C.I.A. Handler,tt1139328\n3GiWce_xXzA,2007.0,7,7,2015,The Lookout,Shotgun Blast,tt0427470\nx2W8BqPt7mI,2007.0,6,7,2015,The Lookout,I Have the Power,tt0427470\nxKffjQ-iU9E,2007.0,5,7,2015,The Lookout,Save Lewis,tt0427470\nn3BgbwW6PXc,2007.0,1,7,2015,The Lookout,Luvlee,tt0427470\n1tclZvb40QA,2007.0,2,7,2015,The Lookout,I Want to See You Naked,tt0427470\n_nmYaR_ZllQ,2007.0,3,7,2015,The Lookout,A Simple Question,tt0427470\n9AmyJhS8WWc,2007.0,4,7,2015,The Lookout,Deputy Donut,tt0427470\nat0yN2HBrt8,1959.0,6,10,2015,Ben-Hur,The Valley of the Lepers,tt0052618\nfrE9rXnaHpE,1959.0,3,10,2015,Ben-Hur,The Chariot Race,tt0052618\nk6TUgccyzNs,1959.0,1,10,2015,Ben-Hur,Parade of the Charioteers,tt0052618\nAjmbgZ2wZvk,1959.0,10,10,2015,Ben-Hur,Ramming Speed!,tt0052618\nlPr_GBMu4O4,1959.0,9,10,2015,Ben-Hur,Row Well and Live,tt0052618\nytTSb8302aI,1959.0,4,10,2015,Ben-Hur,I Am Against You,tt0052618\n5Bv5yv0n9Tc,1959.0,2,10,2015,Ben-Hur,The Loyalty of Old Friends,tt0052618\nFbt2UUthWg0,1959.0,8,10,2015,Ben-Hur,Water For Jesus,tt0052618\nDPl05d5mi54,1959.0,5,10,2015,Ben-Hur,The Race Is Not Over,tt0052618\ncDoyywKt1_0,1959.0,7,10,2015,Ben-Hur,Meets Jesus,tt0052618\nXsa1B-RyyXQ,2009.0,1,5,2015,Harry Potter and the Half-Blood Prince,Harry vs. Draco,tt0417741\nKmdBHOUCDnM,2009.0,3,5,2015,Harry Potter and the Half-Blood Prince,The Dark Lake,tt0417741\nlmlX39gM9-c,2009.0,4,5,2015,Harry Potter and the Half-Blood Prince,Dumbledore's Death,tt0417741\nUwTKqqfS8FQ,2009.0,2,5,2015,Harry Potter and the Half-Blood Prince,Harry and Ginny Kiss,tt0417741\n8DbzvqOPUIk,2009.0,5,5,2015,Harry Potter and the Half-Blood Prince,I'm the Half-Blood Prince,tt0417741\nbJuDofIoW34,2005.0,1,10,2015,The Dukes of Hazzard,Blowing the Safe,tt0377818\nmeEN8tfT7b4,2005.0,4,10,2015,The Dukes of Hazzard,Appalachian Americans,tt0377818\n5HoL98HNOr8,2005.0,5,10,2015,The Dukes of Hazzard,Boss Hogg Visits the Jail,tt0377818\nsAtsZPmjExo,2005.0,6,10,2015,The Dukes of Hazzard,Check My Undercarriage,tt0377818\n6R__cRZAVCA,2005.0,7,10,2015,The Dukes of Hazzard,Car Chase,tt0377818\n8Kfr7BvVmlU,2005.0,8,10,2015,The Dukes of Hazzard,Daisy Duke and Enos,tt0377818\npGZtlbYLpck,2005.0,9,10,2015,The Dukes of Hazzard,Fire in the Hole,tt0377818\nBvjorMEnuUI,2005.0,10,10,2015,The Dukes of Hazzard,Shoot the Moon,tt0377818\nEIzFKMtPjH0,2005.0,2,10,2015,The Dukes of Hazzard,Another Shrimp on the Barbie,tt0377818\nRbMtPUPVZ_s,2005.0,3,10,2015,The Dukes of Hazzard,Japanese Scientists,tt0377818\n1w4rZE1A-fc,2003.0,1,10,2015,Gothika,Are You Scared?,tt0348836\n9O0D63xWNLE,2003.0,6,10,2015,Gothika,Dreaming of Murder,tt0348836\nreKMIuxFqzY,2003.0,2,10,2015,Gothika,Not Alone,tt0348836\n-RuK7XKbefY,2003.0,5,10,2015,Gothika,You Said No Shock Treatment!,tt0348836\n_3w-4zC9FHU,2003.0,8,10,2015,Gothika,The Murder,tt0348836\n92YrRetDlCg,2003.0,7,10,2015,Gothika,What Do You Want From Me!,tt0348836\nuYWlWG9d4LE,2003.0,10,10,2015,Gothika,You're Already Dead!,tt0348836\nTAZulrjrEDo,2003.0,9,10,2015,Gothika,I Don't Believe in Ghosts!,tt0348836\nCTVWHGj92Xo,2003.0,4,10,2015,Gothika,Did We Have an Affair?,tt0348836\nm99cHo5NBZ8,2003.0,3,10,2015,Gothika,Cutting in the Shower,tt0348836\nwW0WRqnLYMw,1995.0,4,10,2015,Batman Forever,What a Rush!,tt0112462\npGhBFh0cXRU,1995.0,9,10,2015,Batman Forever,Batman and Robin Partner Up,tt0112462\nZc3wIAs3coU,1995.0,2,10,2015,Batman Forever,Dr. Edward Nygma,tt0112462\n2FxpNCvBV_s,1995.0,3,10,2015,Batman Forever,Chicks Dig the Car,tt0112462\nYGQZwZadSfI,1995.0,5,10,2015,Batman Forever,Superhero Gig,tt0112462\nSMuET3l5cbc,1995.0,6,10,2015,Batman Forever,Your New Partner,tt0112462\nE5vZWrsaYWU,1995.0,10,10,2015,Batman Forever,I Have a Riddle for You,tt0112462\nCY2ruk5Vkq8,1995.0,1,10,2015,Batman Forever,Batman Goes Out,tt0112462\n11tbL8l5Av8,1995.0,7,10,2015,Batman Forever,Batman's Origin,tt0112462\nwG5Lt-pineg,1995.0,8,10,2015,Batman Forever,The Riddler's Destruction,tt0112462\nGqECd_A7qhY,2010.0,5,12,2015,Blue Valentine,Love at First Sight,tt1120985\nLDC0ii3Rwww,1999.0,2,10,2015,Wild Wild West,Touch My Breast,tt0120891\nzV3AZFuaJVQ,1999.0,3,10,2015,Wild Wild West,Loveless Comes Out,tt0120891\nyQ0FgE-WKi8,1999.0,1,10,2015,Wild Wild West,Hot Water,tt0120891\nEPJGFrntGfU,1999.0,10,10,2015,Wild Wild West,Getting a Whoopin',tt0120891\nHvIGrLYKRh8,1999.0,6,10,2015,Wild Wild West,Magnetic Collars,tt0120891\ngmbInMp4ioU,1999.0,7,10,2015,Wild Wild West,Leave This Part Out,tt0120891\nSrJEWL6QHzo,1999.0,5,10,2015,Wild Wild West,A Breast of Fresh Air,tt0120891\n_ItWcGtaJro,1999.0,9,10,2015,Wild Wild West,A New Girl,tt0120891\nUc21Z4ffSns,1999.0,4,10,2015,Wild Wild West,East Meets West,tt0120891\nNHRtlXDOqOU,1999.0,8,10,2015,Wild Wild West,80 Foot Tarantula,tt0120891\nzgQsfeosMf0,2004.0,1,10,2015,The Butterfly Effect,You Deserve a Better Brother,tt0289879\ncNiuEFffzf4,2004.0,3,10,2015,The Butterfly Effect,Nothing's All Better,tt0289879\nJf8OtaR_9MM,2004.0,9,10,2015,The Butterfly Effect,No One Could Ever Love You As Much,tt0289879\nEkptyQec_LM,2004.0,2,10,2015,The Butterfly Effect,You Were Never Meant to Be,tt0289879\n1TqRcAl_928,2004.0,7,10,2015,The Butterfly Effect,You Were Happy Once,tt0289879\nixYWkDAPPzA,2004.0,10,10,2015,The Butterfly Effect,Director's Cut Ending,tt0289879\n2L2dyDpd7LA,2004.0,4,10,2015,The Butterfly Effect,Healing the Scars,tt0289879\nLimvO4zrETM,2004.0,5,10,2015,The Butterfly Effect,Fighting Tommy,tt0289879\n1zWf02vGl3M,2004.0,8,10,2015,The Butterfly Effect,No Arms,tt0289879\nz-3ETV74ygs,2004.0,6,10,2015,The Butterfly Effect,You Can't Play God,tt0289879\n2gzMbWXWIA4,2003.0,4,10,2015,Freddy vs. Jason,Freddy's Back,tt0329101\nbAjGVN4f6wM,2003.0,7,10,2015,Freddy vs. Jason,,tt0329101\nWRF2fIzwT6k,2003.0,9,10,2015,Freddy vs. Jason,Go to Hell!,tt0329101\n7SZs2Qr0zvE,2003.0,1,10,2015,Freddy vs. Jason,Jason Kills Trey,tt0329101\nNQhm9xmVHdU,2003.0,8,10,2015,Freddy vs. Jason,Construction Site Fight,tt0329101\nat6F59Zfqlw,2003.0,10,10,2015,Freddy vs. Jason,Welcome to My World,tt0329101\n0NRYcIcHfV4,2003.0,3,10,2015,Freddy vs. Jason,Jason Crashes the Party,tt0329101\nQa_hiWmXFUA,2003.0,6,10,2015,Freddy vs. Jason,Welcome to My Nightmare,tt0329101\nFlaH13fnXk0,2003.0,2,10,2015,Freddy vs. Jason,Not Strong Enough Yet,tt0329101\nt-Ojbv20L80,2003.0,5,10,2015,Freddy vs. Jason,Under the Influence,tt0329101\nORQgPS4lxmg,2002.0,3,10,2015,John Q,Under New Management,tt0251160\nedgiUq5ymRE,2002.0,5,10,2015,John Q,Am I Going to Die?,tt0251160\nAYS6V3rDT6c,2002.0,6,10,2015,John Q,Sick. Help.,tt0251160\noceYG6ogT_E,2002.0,4,10,2015,John Q,Hypocritical Oath,tt0251160\nIGVwlBTTqYM,2002.0,2,10,2015,John Q,Your Son May Not Live Much Longer,tt0251160\n6sQWxbE2RAk,2002.0,10,10,2015,John Q,It's Not Goodbye,tt0251160\ndIu418Y0TGY,2002.0,1,10,2015,John Q,Heart Failure,tt0251160\nQxcCdLaKhd8,2002.0,9,10,2015,John Q,They Found a Heart!,tt0251160\nLjiRvVUmets,2002.0,8,10,2015,John Q,I'm Always With You,tt0251160\n1WnfdpZYp_s,2002.0,7,10,2015,John Q,Take My Heart,tt0251160\nulGMlIZNr6M,2004.0,9,10,2015,Scooby Doo 2: Monsters Unleashed,The Cotton Candy Glob,tt0331632\n9rj02jWyo94,2004.0,3,10,2015,Scooby Doo 2: Monsters Unleashed,The Return of the Black Knight Ghost,tt0331632\nbLsnl_fdBoI,2004.0,8,10,2015,Scooby Doo 2: Monsters Unleashed,\"Monsters, Monsters, Everywhere\",tt0331632\nyz8GjHOA2xo,2004.0,10,10,2015,Scooby Doo 2: Monsters Unleashed,I'm Scooby-Dooby-Doo,tt0331632\nkHk2-mOOYQg,2004.0,4,10,2015,Scooby Doo 2: Monsters Unleashed,Velma Gets Hot,tt0331632\nMd12rwlpeFU,2004.0,6,10,2015,Scooby Doo 2: Monsters Unleashed,We'll Never Be Anything,tt0331632\n0oxx_2M6Ctw,2004.0,2,10,2015,Scooby Doo 2: Monsters Unleashed,Doorbell Trap,tt0331632\nylvCOlF5RLI,2004.0,5,10,2015,Scooby Doo 2: Monsters Unleashed,Drinking the Potions,tt0331632\nvZyIBlDO-E8,2004.0,1,10,2015,Scooby Doo 2: Monsters Unleashed,The Pterodactyl Ghost,tt0331632\nuen_1bL_TXc,2004.0,7,10,2015,Scooby Doo 2: Monsters Unleashed,Fred and Daphne Fight Back,tt0331632\n_qjEm2ll0qc,2002.0,10,10,2015,Scooby-Doo,Damsel in Distress,tt0267913\nxby81m1GtH8,2002.0,7,10,2015,Scooby-Doo,\"What Up, Dawg?\",tt0267913\nWC60ALoX_Nk,2002.0,2,10,2015,Scooby-Doo,Pamela Anderson,tt0267913\nu455yxBv35A,2002.0,1,10,2015,Scooby-Doo,The Case of the Luna Ghost,tt0267913\nPf4RjsdJE0I,2002.0,8,10,2015,Scooby-Doo,Switching Bodies,tt0267913\nJC2TvxRIR4Y,2002.0,9,10,2015,Scooby-Doo,Unmasked,tt0267913\nmEzXLJL48nA,2002.0,4,10,2015,Scooby-Doo,The Dinner Show,tt0267913\nIa8LqyDsdbo,2002.0,6,10,2015,Scooby-Doo,Scrappy-Doo,tt0267913\niEattbpjGG4,2002.0,3,10,2015,Scooby-Doo,All You Can Eat,tt0267913\nFgYr00Scelc,2002.0,5,10,2015,Scooby-Doo,Burping and Farting,tt0267913\nJr9tBcUO68M,2000.0,8,10,2015,Space Cowboys,No Other Option,tt0186566\nuu4tB54Uw5I,2000.0,9,10,2015,Space Cowboys,Let's Shoot This Baby To The Moon,tt0186566\n-Pf1f0pZdnQ,2000.0,6,10,2015,Space Cowboys,Welcome to Space,tt0186566\nLruyfJJT7qY,2000.0,5,10,2015,Space Cowboys,Flying Brick,tt0186566\nBLbh7T1mPZ4,2000.0,7,10,2015,Space Cowboys,It's Arming Itself,tt0186566\nxpXxwJNaZDY,2000.0,4,10,2015,Space Cowboys,First One To Pass Out,tt0186566\nzQTDoxrgBeU,2000.0,2,10,2015,Space Cowboys,A Scary Ride,tt0186566\nrKHW39mShF4,2000.0,10,10,2015,Space Cowboys,Landing the Shuttle,tt0186566\nDh__Anjhn6M,2000.0,3,10,2015,Space Cowboys,The Eye Test,tt0186566\nxIMi15Erjvo,2000.0,1,10,2015,Space Cowboys,The First American in Space,tt0186566\nFDwpGLz3Mr8,2001.0,7,10,2015,Swordfish,You've Sold Out America,tt0244244\nqkHSTpTqlug,2001.0,3,10,2015,Swordfish,I'm Ginger,tt0244244\nmYS3zyHIxqA,2001.0,10,10,2015,Swordfish,Aerial Pursuit,tt0244244\nQAMDKK5sfd0,2001.0,9,10,2015,Swordfish,You're No Different From a Terrorist,tt0244244\nL8Ig4HbgA0c,2001.0,8,10,2015,Swordfish,No Deal,tt0244244\nk6_TBuGcwzA,2001.0,5,10,2015,Swordfish,Who Are You?,tt0244244\nWjDLin6Egyw,2001.0,1,10,2015,Swordfish,The Problem With Hollywood,tt0244244\nRtf8uPmgq0A,1990.0,5,10,2015,The Witches,Hello Little Bruno,tt0100944\nTrjLNpfDTi0,1990.0,4,10,2015,The Witches,Maximum Results!,tt0100944\nP-GgTCUYjhw,1990.0,8,10,2015,The Witches,Good Lord,tt0100944\nQsuIp03FENc,1990.0,10,10,2015,The Witches,Pest Control,tt0100944\nVsLUFKIRr1s,2001.0,6,10,2015,Swordfish,We've Got a Tail,tt0244244\nhiHZWeeoEUg,2001.0,2,10,2015,Swordfish,Street Explosion,tt0244244\nmWqGJ613M5Y,2001.0,4,10,2015,Swordfish,The Test,tt0244244\npbzjsBcOuB8,1992.0,4,10,2015,Unforgiven,Little Bill Meets William Munny,tt0105695\n7_uvEuNwUj4,1992.0,9,10,2015,Unforgiven,I'm Here to Kill You,tt0105695\nPmFEdtB8eNw,1992.0,6,10,2015,Unforgiven,Hurting Ned Gentle,tt0105695\nGnWalWAmryk,1992.0,1,10,2015,Unforgiven,I Ain't Like That No More,tt0105695\nHdcT33sKbn8,1992.0,3,10,2015,Unforgiven,The Duck of Death,tt0105695\nX5Vb_FUuRDE,1992.0,5,10,2015,Unforgiven,Shooting Davey,tt0105695\n4x_MfkJvgbU,1992.0,8,10,2015,Unforgiven,The Only Friend I Got,tt0105695\ncAYVS8aRQ1U,1992.0,7,10,2015,Unforgiven,We All Have It Coming,tt0105695\nMjkt4UgcTmg,1992.0,10,10,2015,Unforgiven,I'll See You in Hell,tt0105695\nrsyw13yrRoo,1992.0,2,10,2015,Unforgiven,English Bob,tt0105695\nxO7O6zwFZ1k,1985.0,1,10,2015,Pee-wee's Big Adventure,Pee-wee's Breakfast,tt0089791\nxfeLsPRl3so,1985.0,2,10,2015,Pee-wee's Big Adventure,\"I Know You Are, But What Am I?\",tt0089791\nurnRVr1P2bc,1985.0,3,10,2015,Pee-wee's Big Adventure,I Meant to Do That,tt0089791\nXC3yGH4nETQ,1985.0,7,10,2015,Pee-wee's Big Adventure,Why Don't You Take a Picture?,tt0089791\nlPMSGTfK4Aw,1985.0,8,10,2015,Pee-wee's Big Adventure,Large Marge,tt0089791\ncJOqz6CPxLY,1985.0,10,10,2015,Pee-wee's Big Adventure,Paging Mr. Herman,tt0089791\n7eTl05KHwFI,1985.0,4,10,2015,Pee-wee's Big Adventure,\"I'm a Loner, Dottie\",tt0089791\n0PdeHy_87OM,1985.0,9,10,2015,Pee-wee's Big Adventure,The Alamo Tour,tt0089791\nQoJrjjy0WeU,1985.0,6,10,2015,Pee-wee's Big Adventure,The Big Meeting,tt0089791\ngwjAFSu_VKM,1985.0,5,10,2015,Pee-wee's Big Adventure,Trick Gum,tt0089791\nD0Gxk6zCSFQ,2000.0,1,10,2015,Next Friday,Mrs. Ho-Kym Scene,tt0195945\nz_Bx500h-DQ,2000.0,9,10,2015,Next Friday,Time to Party Scene,tt0195945\nyVlOitZ19Wc,2000.0,7,10,2015,Next Friday,I Can't Get Jiggy With This Scene,tt0195945\n3wft012b2tk,2000.0,3,10,2015,Next Friday,Day-Day's Problems Scene,tt0195945\n5Mb6xTtmtuA,2000.0,5,10,2015,Next Friday,Improving Black & Brown Relations Scene,tt0195945\nkQrU0KRsCNo,2000.0,6,10,2015,Next Friday,\"Puff, Puff, Give Scene\",tt0195945\nsL1b7ZnItoI,2000.0,10,10,2015,Next Friday,No Locked Doors Scene,tt0195945\ngVseixK20cM,2000.0,4,10,2015,Next Friday,Urgent Message Scene,tt0195945\nAok-54MlYFk,2000.0,2,10,2015,Next Friday,Auntie Suga Scene,tt0195945\nKU8y7u-xqHg,2000.0,8,10,2015,Next Friday,Shut Up! Scene,tt0195945\nyr-HmSz421c,1971.0,6,10,2014,Dirty Harry,I'm Going to Let Her Die,tt0066999\nIKFthgUbCdY,1971.0,1,10,2014,Dirty Harry,That's My Policy,tt0066999\nRitnM9n0jTY,1971.0,3,10,2014,Dirty Harry,Why Do They Call You ?,tt0066999\n38mE6ba3qj8,1971.0,2,10,2014,Dirty Harry,\"Do You Feel Lucky, Punk?\",tt0066999\n0wAtjDAyv4M,1971.0,9,10,2014,Dirty Harry,Scorpio Frames Harry,tt0066999\n8WQG1IHkv4k,1971.0,5,10,2014,Dirty Harry,Rooftop Shootout,tt0066999\nbuNwwAximcE,1971.0,7,10,2014,Dirty Harry,Where is the Girl?,tt0066999\ndKC2CPS9AFI,1971.0,4,10,2014,Dirty Harry,The Jumper,tt0066999\nkh62SjGdI0s,1971.0,8,10,2014,Dirty Harry,The Law's Crazy,tt0066999\nKy7rHZmk9Yw,1971.0,10,10,2014,Dirty Harry,Do l Feel Lucky?,tt0066999\nzm2fF6nj6W8,2003.0,10,10,2014,Mystic River,Daddy is a King,tt0327056\nin5f7RMtnoU,1990.0,9,10,2014,The Witches,\"Hello, Dad!\",tt0100944\ngTgm44dkSCY,2003.0,4,10,2014,Mystic River,I Can't Even Cry For Her,tt0327056\n13_ffd4CiG4,2003.0,5,10,2014,Mystic River,Dave is Dead,tt0327056\n-yvnWPZy1FQ,2003.0,8,10,2014,Mystic River,Say You Love Me,tt0327056\nRYlKhpi--QQ,2003.0,2,10,2014,Mystic River,Is That My Daughter?,tt0327056\nrbFIs5-Rn_Y,2003.0,6,10,2014,Mystic River,Blood in the Trunk,tt0327056\npkylHxUSxLM,2003.0,1,10,2014,Mystic River,I Might've Killed Him,tt0327056\nW_URoElm3Ts,2003.0,3,10,2014,Mystic River,One Little Choice Can Change Your Life,tt0327056\ns9k-uO50300,2003.0,9,10,2014,Mystic River,The Last Time I Saw Dave,tt0327056\nIGlBlA7Vr0M,2003.0,7,10,2014,Mystic River,Admit What You Did,tt0327056\nTYC_FD2YXro,2008.0,6,10,2014,Fool's Gold,How Much Do You Owe Him?,tt0770752\nygU2QenlIvU,2008.0,5,10,2014,Fool's Gold,Ten Percent,tt0770752\naK1r7tBWnro,2007.0,8,10,2014,I Am Legend,They Followed Us Home,tt0480249\nLEDYzJazfw0,2007.0,4,10,2014,I Am Legend,Trapped,tt0480249\nueR0lJzIxWo,2007.0,6,10,2014,I Am Legend,\"Goodbye, Sam\",tt0480249\nlO8EJQzkYxg,2007.0,7,10,2014,I Am Legend,SUV Attack,tt0480249\ner6wSXJC57U,2007.0,5,10,2014,I Am Legend,Infected Dogs,tt0480249\nMbbKc8GJtFA,2007.0,3,10,2014,I Am Legend,Catching An Infected,tt0480249\nsWEvLBzMpYE,2007.0,2,10,2014,I Am Legend,Infected Encounter,tt0480249\nkPSk30qzgFs,2007.0,10,10,2014,I Am Legend,Alternate Ending,tt0480249\n-YykCz0f3Vk,2007.0,9,10,2014,I Am Legend,Let Me Save You,tt0480249\nBHZKSYLAecQ,2007.0,1,10,2014,I Am Legend,Hunting in the City,tt0480249\nb1jqSRnqLMw,2006.0,10,10,2014,Happy Feet,Dancing for the Aliens,tt0366548\nymA7OFZ9lF0,2006.0,4,10,2014,Happy Feet,Sliding Down the Ice,tt0366548\nqVNAGVSKEBQ,2006.0,2,10,2014,Happy Feet,Take the Fish,tt0366548\nxGj_wbPl-6w,2006.0,9,10,2014,Happy Feet,Mumble Makes Contact,tt0366548\nPFbxA5HjwyQ,2006.0,8,10,2014,Happy Feet,Mumble Takes a Leap,tt0366548\nNkaJFlr5Fhk,2006.0,5,10,2014,Happy Feet,You Must Go,tt0366548\n-0f67QE-HP8,2006.0,3,10,2014,Happy Feet,Leopard Seal Chase,tt0366548\nx1H6pD3vNwQ,1990.0,7,10,2014,The Witches,Chase the Baby,tt0100944\nnkQAhpLBok8,1971.0,5,10,2014,THX 1138,White Void Torture,tt0066434\nik_WAfUpVKQ,1971.0,2,10,2014,THX 1138,Prevent Accidents,tt0066434\nU0YkPnwoYyE,1971.0,3,10,2014,THX 1138,The Confession,tt0066434\n4bY-bFqj97k,1971.0,10,10,2014,THX 1138,The Sun,tt0066434\nJ5nmxHjPuvY,1971.0,9,10,2014,THX 1138,Autojet Chase,tt0066434\nYsdz8bIuyWY,1971.0,4,10,2014,THX 1138,Mind Lock,tt0066434\n0MUWDGcRCOQ,1971.0,8,10,2014,THX 1138,Doorway to Chaos,tt0066434\na-SnsqKFHLY,1971.0,1,10,2014,THX 1138,What's Wrong?,tt0066434\nXmGKlWjQHic,1971.0,7,10,2014,THX 1138,Under Control,tt0066434\nDfSToqJxCSI,1971.0,6,10,2014,THX 1138,Medical Tests,tt0066434\nWTMcikRZcBk,2006.0,7,10,2014,Happy Feet,Killer Whale Attack,tt0366548\nkMkxtj-mu14,2006.0,6,10,2014,Happy Feet,Hippity Hoppity Fool,tt0366548\nq-H62GgHjeg,2006.0,1,10,2014,Happy Feet,Mumble Has No Heartsong,tt0366548\nngeORuhnajc,1990.0,6,10,2014,The Witches,It Must Be Exterminated!,tt0100944\njTHFCMuIrzQ,1990.0,2,10,2014,The Witches,Little Boys Love Snakes,tt0100944\n2AeJ2VHssPI,1990.0,1,10,2014,The Witches,Ordinary Witches,tt0100944\nZEshWoP9if0,1990.0,3,10,2014,The Witches,I Cannot Permit Mice,tt0100944\ntCtZfBVS1Tg,1990.0,1,10,2014,Memphis Belle,Poetry,tt0100133\nGNdpxi9F1AA,1990.0,8,10,2014,Memphis Belle,Bombs Away,tt0100133\nQ3LcGb0DGM8,1990.0,10,10,2014,Memphis Belle,Landing the Belle,tt0100133\nrj7e6WvyClY,1982.0,3,10,2014,The World According to Garp,Do You Want Her?,tt0084917\nxVT46mh22iw,1982.0,6,10,2014,The World According to Garp,Raging Hormones,tt0084917\nhRoE2HRnpkk,1982.0,2,10,2014,The World According to Garp,How Garp Was Conceived,tt0084917\nbUWnZAFfxYc,1982.0,8,10,2014,The World According to Garp,The Accident,tt0084917\nGTqz4duPdYQ,1982.0,4,10,2014,The World According to Garp,Pre-Disastered Home,tt0084917\np7bpv3zs8Dk,1982.0,7,10,2014,The World According to Garp,Hopeless Romantic,tt0084917\nypw7AA7tf-4,1982.0,1,10,2014,The World According to Garp,Flying with Dad,tt0084917\nhdhW0bChQwg,1982.0,9,10,2014,The World According to Garp,Jenny's Memorial,tt0084917\nYUSxYNj_kM0,1982.0,10,10,2014,The World According to Garp,I'm Flying,tt0084917\nXlZUBUSKbFk,1982.0,5,10,2014,The World According to Garp,Roberta Muldoon,tt0084917\naKnvOP-1U00,1945.0,7,10,2014,Mildred Pierce,Stay Away From Veda,tt0037913\ngI1_6ob3hio,1945.0,6,10,2014,Mildred Pierce,An Extravagant Birthday Gift,tt0037913\nozf32hrXGiY,1945.0,4,10,2014,Mildred Pierce,\"My Mother, a Waitress!\",tt0037913\nkjzRZCxQ1EE,1945.0,3,10,2014,Mildred Pierce,A Selfish Request,tt0037913\nJSmcnUcLVHA,1945.0,1,10,2014,Mildred Pierce,\"Pack Up, Bert\",tt0037913\n-ASYRiRflDM,1945.0,2,10,2014,Mildred Pierce,On a Leash,tt0037913\nIl1NzkQ3rYs,1945.0,5,10,2014,Mildred Pierce,\"Warm, Wanted and Beautiful\",tt0037913\nx4CEkYJNir0,1945.0,8,10,2014,Mildred Pierce,Cheap and Horrible,tt0037913\n70NH2okaBY4,1945.0,9,10,2014,Mildred Pierce,I Want My Daughter Back,tt0037913\nGPuCrJujOkk,1945.0,10,10,2014,Mildred Pierce,Veda's Secret,tt0037913\nYER_g7jph94,1990.0,2,10,2014,Memphis Belle,After the War,tt0100133\nRmhSgZ106Wg,1990.0,4,10,2014,Memphis Belle,Letters from Loved Ones,tt0100133\n6MrxdKGZaWI,1990.0,6,10,2014,Memphis Belle,It's Tomato Soup,tt0100133\ndjIvmaYI9LQ,1990.0,7,10,2014,Memphis Belle,Mother and Country Goes Down,tt0100133\nypvzo6iiM7M,1990.0,3,10,2014,Memphis Belle,Hit & Run,tt0100133\n59Ntwoot4_s,1990.0,5,10,2014,Memphis Belle,We're in the Lead Now,tt0100133\n85CcD6t5cx4,1990.0,9,10,2014,Memphis Belle,Dive,tt0100133\njVsXMF9sbVQ,1943.0,6,10,2014,Lassie Come Home,Dally & Dan'l to the Rescue,tt0036098\nP6PLrI4R4x4,1943.0,9,10,2014,Lassie Come Home,A Daring Leap,tt0036098\nvoYRf2GVXbc,1943.0,2,10,2014,Lassie Come Home,The First Escape,tt0036098\n2H7XknY3PMA,1943.0,4,10,2014,Lassie Come Home,Going for a Walk,tt0036098\nNBRHljOdrh0,1943.0,8,10,2014,Lassie Come Home,Sticks and Sacrifices,tt0036098\nP7JKRDjM_Vk,1943.0,7,10,2014,Lassie Come Home,The Tootsie & Lassie Show,tt0036098\nVRxRsbDfLaw,1943.0,3,10,2014,Lassie Come Home,Jumping the Fence,tt0036098\nBV1Nyf_u1AA,1943.0,1,10,2014,Lassie Come Home,Morning Routine,tt0036098\nO2VkpNsOM4o,1943.0,10,10,2014,Lassie Come Home,My,tt0036098\nTvSS_-BohSc,1943.0,5,10,2014,Lassie Come Home,Dog Fight,tt0036098\ngX57uKMrxp4,2008.0,2,10,2014,Fool's Gold,You're Not Gonna Hit Me,tt0770752\nVY4Bo_Mcws4,2008.0,9,10,2014,Fool's Gold,Catching the Plane,tt0770752\nIMF8PvqFN-c,2008.0,3,10,2014,Fool's Gold,Hey Babe!,tt0770752\nhHibPPRQB40,2008.0,7,10,2014,Fool's Gold,Wish We Were Still Married,tt0770752\n0vlBQqEc5YA,2008.0,10,10,2014,Fool's Gold,Tell Me After We Crash,tt0770752\nXUwybDr5HlQ,2008.0,8,10,2014,Fool's Gold,Are You Shot?,tt0770752\nLCsNRcdlAkw,2008.0,4,10,2014,Fool's Gold,We Think You're Hot,tt0770752\nh8E3sSTc11E,2008.0,1,10,2014,Fool's Gold,Thrown Off The Boat,tt0770752\nvAd0QlUaIBY,2001.0,2,10,2014,Cats & Dogs,Mr. Tinkles,tt0239395\nXQUKOgrir0A,2001.0,9,10,2014,Cats & Dogs,Mr. Tinkles' Ransom Video,tt0239395\ngknobwKAStE,2001.0,4,10,2014,Cats & Dogs,Send in the Russian,tt0239395\nnC-it_V8df0,2001.0,3,10,2014,Cats & Dogs,Ninja Cats,tt0239395\n45RmWBZsU1Y,2001.0,8,10,2014,Cats & Dogs,Mr. Tinkles Fires Everyone,tt0239395\nDBa4fJc9rE0,2001.0,10,10,2014,Cats & Dogs,Bad Talking Cat,tt0239395\naIZsVuaUWB4,2001.0,1,10,2014,Cats & Dogs,Catnapped,tt0239395\nMuFfh15AMLU,2001.0,6,10,2014,Cats & Dogs,Stopping the Bomb,tt0239395\nAQa015gBmro,2001.0,7,10,2014,Cats & Dogs,Our Day Has Come!,tt0239395\naeF3Q6eTU5k,2001.0,5,10,2014,Cats & Dogs,The Russian Attacks,tt0239395\nUcaPMGGla4o,1992.0,10,10,2014,Batman Returns,The Penguin Dies Scene,tt0103776\neIo_S0aHyfI,1992.0,6,10,2014,Batman Returns,A Deadly Kiss Scene,tt0103776\nwNWy3YmM3Kw,1992.0,4,10,2014,Batman Returns,Penguin for Mayor Scene,tt0103776\naokJADOVMC0,1992.0,3,10,2014,Batman Returns,I Am Catwoman Scene,tt0103776\nUqStvc107-M,1992.0,1,10,2014,Batman Returns,What Did Curiosity Do to the Cat? Scene,tt0103776\nA08XpT2q4Xc,1992.0,2,10,2014,Batman Returns,So Much Yummier Scene,tt0103776\nc4ux2NclHoE,1992.0,8,10,2014,Batman Returns,My Babies! Scene,tt0103776\nkWrOmEtXk0k,1992.0,5,10,2014,Batman Returns,Meow Scene,tt0103776\n2aN2OU0pk-Q,1992.0,9,10,2014,Batman Returns,Shocking Schreck Scene,tt0103776\nR66c0UiUCZ8,1992.0,7,10,2014,Batman Returns,The Penguin's Plan Scene,tt0103776\nlYxVM8oNxRM,2008.0,6,10,2014,\"10,000 BC\",Take the Spear,tt0443649\nc-NDI-HvYd4,2008.0,10,10,2014,\"10,000 BC\",You Will Not Have Her,tt0443649\nmVzdHEhC8YI,2008.0,8,10,2014,\"10,000 BC\",Mammoth Stampede,tt0443649\n4NKk7BYl0Rk,2008.0,4,10,2014,\"10,000 BC\",The Sabretooth Tiger,tt0443649\nDoKxkx0bYRk,2008.0,1,10,2014,\"10,000 BC\",The Mammoth Hunt,tt0443649\nk3yUlJtCkJg,2008.0,3,10,2014,\"10,000 BC\",Terror Bird Attack,tt0443649\nEzqRc-RLJfU,2008.0,5,10,2014,\"10,000 BC\",Sacrifice One,tt0443649\nwJJDM675Ypw,2008.0,2,10,2014,\"10,000 BC\",Killing the Mammoth,tt0443649\nSRlmBs7EwMk,2008.0,9,10,2014,\"10,000 BC\",He is Not a God,tt0443649\nzGrIGZifpwg,2008.0,7,10,2014,\"10,000 BC\",We Hunt Together,tt0443649\nRDdc0-JD8Dk,2009.0,10,10,2014,Knowing,At Earth's End,tt0448011\nmb63Ds-XWQE,2009.0,9,10,2014,Knowing,A New Beginning,tt0448011\n1YrG1iLwEWk,2009.0,8,10,2014,Knowing,Kidnapping,tt0448011\niojZt-Ht4Nc,2009.0,7,10,2014,Knowing,Solar Flare,tt0448011\nkq-GLDVKqMU,2009.0,6,10,2014,Knowing,The Whisper People,tt0448011\nyw7tuJeWXlA,2009.0,5,10,2014,Knowing,I Need to Know,tt0448011\nE6gWFTv3xE8,2009.0,2,10,2014,Knowing,Aerial Cataclysm,tt0448011\n_pWW7Xmat6o,2009.0,1,10,2014,Knowing,Disaster Codes,tt0448011\nLS4oNHk0tlk,2009.0,2,9,2014,Nine,Overture,tt1136608\nR-chvFgDLnM,2009.0,3,9,2014,Nine,Guido's Song,tt1136608\nymZFsUBiKJA,2009.0,1,9,2014,Nine,Film is a Dream,tt1136608\nW1KhvPZmTgc,2009.0,5,9,2014,Nine,Folies Bergeres,tt1136608\nit_WqpOBfWI,2009.0,9,9,2014,Nine,Take It All,tt1136608\nKNO5Mhxm8G4,2009.0,8,9,2014,Nine,Unusual Way,tt1136608\nbmmxeZEnsL0,2009.0,7,9,2014,Nine,Cinema Italiano,tt1136608\nnfC8sEnM_5A,2009.0,6,9,2014,Nine,Be Italian,tt1136608\n3_dOw0UilDY,2009.0,4,9,2014,Nine,The Mistress Carla,tt1136608\nw8txE148NNI,2009.0,6,9,2014,Next Day Air,The Wrong Man,tt1097013\noIEtwZK04wM,2009.0,1,9,2014,Next Day Air,Bungled Heist,tt1097013\nfO8-yVmcQCo,2009.0,9,9,2014,Next Day Air,Shootout,tt1097013\nI2gqWarrj-Q,2009.0,5,9,2014,Next Day Air,Jesus H. Crazy,tt1097013\nxdQyp5ewyew,2009.0,2,9,2014,Next Day Air,Don't Fire Me!,tt1097013\ncWMP0aAueQY,2009.0,3,9,2014,Next Day Air,God Sent That!,tt1097013\nl1OgTkhFJn8,2009.0,4,9,2014,Next Day Air,Let's Make a Deal,tt1097013\n1-rmOabireo,2009.0,7,9,2014,Next Day Air,Big Boss Bodega,tt1097013\nqAdNnZqKGiQ,2009.0,8,9,2014,Next Day Air,Where Is It?,tt1097013\nEzocwDE3VK4,2009.0,4,10,2014,Knowing,Subway Hell,tt0448011\nwrO6W6vTjV0,2009.0,3,10,2014,Knowing,The Stranger,tt0448011\nFPDAxknJFW8,2010.0,9,9,2014,Piranha 3D,Hold on Tight,tt0464154\nXUxsLiSEi9w,2010.0,8,9,2014,Piranha 3D,They Took My Penis!,tt0464154\n71GRwoL1tdA,2010.0,7,9,2014,Piranha 3D,Crimson Tide,tt0464154\nITN9541Gd8Y,2010.0,6,9,2014,Piranha 3D,Feeding Frenzy,tt0464154\nAFBqbhNngJo,2010.0,5,9,2014,Piranha 3D,Pissed Piranha,tt0464154\nLUe27-RMDX4,2010.0,1,9,2014,Piranha 3D,Piranhas Unleashed,tt0464154\nFHSwbggymEU,2010.0,3,9,2014,Piranha 3D,Fish Food,tt0464154\nifDBVFHT1DU,2010.0,2,9,2014,Piranha 3D,Spring Break,tt0464154\n4vOQu8rERuo,2010.0,4,9,2014,Piranha 3D,Tequila Body Shots,tt0464154\ntUZYyuHIbJw,2010.0,3,11,2014,Letters to Juliet,Lost Letter,tt0892318\nQp4Vo2bMgJk,2011.0,12,12,2014,My Week with Marilyn,Taking a Bath,tt1655420\ntANIXMqv77U,2011.0,11,12,2014,My Week with Marilyn,Do You Love Me?,tt1655420\nnfoIqJWYqX4,2011.0,10,12,2014,My Week with Marilyn,Skinny Dipping,tt1655420\ncErG8_neSa4,2011.0,8,12,2014,My Week with Marilyn,The Right Man,tt1655420\nzx0PxIdo_pw,2011.0,5,12,2014,My Week with Marilyn,Rely on Your Natural Talents,tt1655420\naJY0vUsHL9Y,2011.0,4,12,2014,My Week with Marilyn,First Day of Shooting,tt1655420\nmD7NPkG9kwg,2011.0,3,12,2014,My Week with Marilyn,Table Read,tt1655420\nMoJqPqmjxUM,2011.0,2,12,2014,My Week with Marilyn,Press Conference,tt1655420\nLf1ORGBLKtc,2011.0,7,12,2014,My Week with Marilyn,Wild With Jealousy,tt1655420\nMRTCRVf4ppc,2011.0,6,12,2014,My Week with Marilyn,Call Me Marilyn,tt1655420\nNwZlSjkXWnk,2011.0,9,12,2014,My Week with Marilyn,Shall I Be Her?,tt1655420\ncGgPJKE_jSs,2011.0,1,12,2014,My Week with Marilyn,Heat Wave,tt1655420\nM-_XQTwadHg,2011.0,6,10,2014,Our Idiot Brother,You're Wearing Food,tt1637706\ntc4zPfUtP8A,2011.0,9,10,2014,Our Idiot Brother,Need to Unload,tt1637706\neuffalJGKn4,2011.0,3,10,2014,Our Idiot Brother,Work Interrupted,tt1637706\nH63L0VBnCDA,2011.0,1,10,2014,Our Idiot Brother,Busted,tt1637706\n4oJk7-aMiNY,2011.0,10,10,2014,Our Idiot Brother,Charades,tt1637706\nLdHfwFIuXtw,2011.0,8,10,2014,Our Idiot Brother,Operation Free Willie,tt1637706\n7kikXTi4fFs,2011.0,2,10,2014,Our Idiot Brother,Win Room,tt1637706\n58C7ep68GMw,2011.0,7,10,2014,Our Idiot Brother,Do You Have Tourette's?,tt1637706\nGgtGlyKIMh8,2011.0,4,10,2014,Our Idiot Brother,I'm the Man,tt1637706\nVQnDBor2tWg,2011.0,5,10,2014,Our Idiot Brother,Coffee Shop Pick-Up,tt1637706\nJEcfknHqMyc,2011.0,9,9,2014,Scream 4,Horror Movie Quiz,tt1262416\np5n3koQZVDY,2011.0,8,9,2014,Scream 4,Rule Breaker,tt1262416\nUG7lwsjxwz0,2011.0,7,9,2014,Scream 4,Movie Cops,tt1262416\nUrj46blH8vo,2011.0,6,9,2014,Scream 4,Kill Cam,tt1262416\nBdOG2-Gn044,2011.0,5,9,2014,Scream 4,The New Rules of Horror,tt1262416\nQhZ86T_nh3Y,2011.0,4,9,2014,Scream 4,Car Trouble,tt1262416\nGTRAmbo04JA,2011.0,3,9,2014,Scream 4,Out of the Closet,tt1262416\n4gehr6BLqRU,2011.0,2,9,2014,Scream 4,The Return of Ghostface,tt1262416\nXRxL8KW7dbo,2011.0,1,9,2014,Scream 4,Post-Modern Murder,tt1262416\nmbj-OpDla5A,2011.0,7,10,2014,The Artist,Drunk and Surly,tt1655442\nEC20KdIDiEY,2011.0,10,10,2014,The Artist,Tap Dancing to the Top,tt1655442\ntSWhP2gwhms,2011.0,9,10,2014,The Artist,Wonder Dog,tt1655442\nHAqKJv1ndXo,2011.0,8,10,2014,The Artist,Up in Flames,tt1655442\n_58I2YrkKdk,2011.0,6,10,2014,The Artist,Nightmare of Sound,tt1655442\nTC_3tiLJC8E,2011.0,5,10,2014,The Artist,Something to Set You Apart,tt1655442\nVsx0zX06F_c,2011.0,4,10,2014,The Artist,\"Lights, Camera, Attraction\",tt1655442\nqWlS0TrvHXE,2011.0,3,10,2014,The Artist,Dancing on Set,tt1655442\ngUjOiNR6HWo,2011.0,2,10,2014,The Artist,The Name's Peppy Miller,tt1655442\n7_WoelQbZyM,2011.0,1,10,2014,The Artist,Who's That Girl?,tt1655442\neCyr2_QTNVc,2010.0,7,7,2014,Don't Be Afraid of the Dark,Saving Sally,tt1270761\nv_R9dxNFKWY,2010.0,6,7,2014,Don't Be Afraid of the Dark,Hunting the Parents,tt1270761\n4Zb-n9MXbPE,2010.0,5,7,2014,Don't Be Afraid of the Dark,We Want You,tt1270761\niReLGcSZtwI,2010.0,4,7,2014,Don't Be Afraid of the Dark,A Bath in the Dark,tt1270761\nIKrh9Q6RU8M,2010.0,2,7,2014,Don't Be Afraid of the Dark,You Said You Were Hungry,tt1270761\nyrUXPvP3Gk0,2010.0,3,7,2014,Don't Be Afraid of the Dark,Monster Under the Covers,tt1270761\nHSJRevnIGww,2010.0,1,7,2014,Don't Be Afraid of the Dark,Little Visitors in the Night,tt1270761\nsRPTqsO_SoM,2010.0,12,12,2014,The King's Speech,I Can't Speak,tt1504320\nToDDs9twuno,2010.0,8,12,2014,The King's Speech,I'm Not a King,tt1504320\nl65KNW2ZGV8,2010.0,1,12,2014,The King's Speech,Indentured Servitude,tt1504320\n_gwHTYw2ThM,2010.0,5,12,2014,The King's Speech,Kinging Is a Precarious Business,tt1504320\nKIqqvICYqUg,2010.0,7,12,2014,The King's Speech,Bordering on Treason,tt1504320\nnVpfljH55TQ,2010.0,6,12,2014,The King's Speech,You Don't Stammer When You Swear,tt1504320\nZcjvH_shI5I,2010.0,4,12,2014,The King's Speech,Night Cap,tt1504320\nSQj4HtDOjkg,2010.0,3,12,2014,The King's Speech,Simple Mechanics,tt1504320\nyjMXMAKF-Rg,2010.0,2,12,2014,The King's Speech,Timing Isn't My Strong Suit,tt1504320\n8djvfSfVPO4,2010.0,9,12,2014,The King's Speech,Your Own Man,tt1504320\nTp84-New5aA,2010.0,10,12,2014,The King's Speech,I Don't Think You Know King George VI,tt1504320\nf7131IkiSCg,2010.0,11,12,2014,The King's Speech,I Have a Voice!,tt1504320\n6m5KyzSNu3s,2009.0,6,9,2014,Inglourious Basterds,Ready for Revenge,tt0361748\nuIBDomdpK7Y,2009.0,4,9,2014,Inglourious Basterds,I Must Be King Kong,tt0361748\na3uqv0eP7Tg,2009.0,3,9,2014,Inglourious Basterds,The Bear Jew,tt0361748\nO5s3Oj2cPgc,2009.0,8,9,2014,Inglourious Basterds,That's a Bingo!,tt0361748\nBN4GI97RoSw,2009.0,7,9,2014,Inglourious Basterds,Buongiorno,tt0361748\nqLGjjHXyiOQ,2009.0,9,9,2014,Inglourious Basterds,The Face of Vengeance,tt0361748\n7LFtoz9sERo,2009.0,5,9,2014,Inglourious Basterds,Go Out Speaking the King's,tt0361748\nQfSjs_6MZOQ,2009.0,1,9,2014,Inglourious Basterds,The Jew Hunter,tt0361748\neOcimzsviFA,2009.0,2,9,2014,Inglourious Basterds,One Hundred Nazi Scalps,tt0361748\n6cwTpQj9E4U,2009.0,11,11,2014,Halloween 2,Call for Help,tt1311067\nMOEy-Da4ra8,2009.0,10,11,2014,Halloween 2,Wolfie's Van,tt1311067\nLqDoPnJn9vg,2009.0,9,11,2014,Halloween 2,Don't Talk to Strangers,tt1311067\n0vklrunpo7c,2009.0,7,11,2014,Halloween 2,Taking Out the Trash,tt1311067\nBPWhOdRSQ6U,2009.0,6,11,2014,Halloween 2,Crazy Laurie,tt1311067\nDYOqsNNCOLQ,2009.0,5,11,2014,Halloween 2,Rebirth,tt1311067\nzgXQFwcTJsY,2009.0,8,11,2014,Halloween 2,The Devil Walks Among Us,tt1311067\nctdY2KcX-lM,2009.0,3,11,2014,Halloween 2,Night Nurse,tt1311067\nkzGR27NzXKA,2009.0,1,11,2014,Halloween 2,Aftermath,tt1311067\nujwZug46-tc,2009.0,2,11,2014,Halloween 2,Cow Crash,tt1311067\nWTaUYNnX91g,2009.0,4,11,2014,Halloween 2,Buddy the Night Watchman,tt1311067\n06OkoPlUGm4,2009.0,10,10,2014,Fanboys,Fanboy Quiz,tt0489049\njj0765rFtxQ,2009.0,9,10,2014,Fanboys,Never Tell Me the Odds,tt0489049\nEcRdEs_Vxtk,2009.0,7,10,2014,Fanboys,Shatner Can Score Anything,tt0489049\nR4cgP1_M8ts,2009.0,6,10,2014,Fanboys,Judge Reinhold,tt0489049\nbuVMAoBMl34,2009.0,5,10,2014,Fanboys,Hyperspace,tt0489049\nIfNhqLwtuA0,2009.0,4,10,2014,Fanboys,Harry Knowles,tt0489049\nX0FxwPfYz0Q,2009.0,3,10,2014,Fanboys,The Chief's Guacamole,tt0489049\nOs49ky9Aiqg,2009.0,2,10,2014,Fanboys,Han Solo's a Bitch,tt0489049\n0_aAMNEqylU,2009.0,1,10,2014,Fanboys,I Like Sweater Yams!,tt0489049\nb4CDHFMO1R8,2009.0,8,10,2014,Fanboys,This Is Our Death Star,tt0489049\nEYoO_t1M-Sg,2009.0,1,9,2014,Bandslam,Putting the Band Together,tt0976222\nUkObc3-RKYg,2009.0,2,9,2014,Bandslam,Band Names,tt0976222\nHO6yGAV4G0A,2009.0,6,9,2014,Bandslam,First Kiss,tt0976222\nTHFVJBcv7W4,2009.0,4,9,2014,Bandslam,CBGB,tt0976222\nxsNboBgmN38,2009.0,3,9,2014,Bandslam,Rehearsing,tt0976222\nv96ND45Aqmo,2009.0,5,9,2014,Bandslam,Kissing Practice,tt0976222\nDXT4GZfUONw,2009.0,7,9,2014,Bandslam,\"I'm Sorry, Sam\",tt0976222\nqEJNox8TCOw,2009.0,8,9,2014,Bandslam,Someone to Fall Back On,tt0976222\n7EHVvWxKKro,2009.0,9,9,2014,Bandslam,\"I Can't Go On, I'll Go On\",tt0976222\n1afEpntCGXk,2009.0,2,10,2014,Astro Boy,Da Vinci's Flyers,tt0375568\nLs4Ua-QtHYE,2009.0,6,10,2014,Astro Boy,Waking Zog,tt0375568\nijnfTK6LgMA,2009.0,4,10,2014,Astro Boy,Chasing,tt0375568\nRB2mOFx7jfY,2009.0,7,10,2014,Astro Boy,Robot Wars,tt0375568\nDLf5iJ2jOZ4,2009.0,3,10,2014,Astro Boy,Rocket Boots,tt0375568\nUXjZbdc79dU,2009.0,9,10,2014,Astro Boy,Machine Guns In My Butt?,tt0375568\nAt6Q3fUFU1o,2009.0,10,10,2014,Astro Boy,Heart of a Lion,tt0375568\nzi7HyTbmVe4,2009.0,8,10,2014,Astro Boy,I'm Old School,tt0375568\nqF5BMKYv94Q,2009.0,1,10,2014,Astro Boy,A Perfect Replica,tt0375568\nKZHIVNGrtLM,2009.0,5,10,2014,Astro Boy,Robot Revolutionary Front,tt0375568\new5-ui5CvJI,2009.0,11,11,2014,A Single Man,The Way It Was Meant to Be,tt1315981\nJMmp4T6mbkw,2009.0,10,11,2014,A Single Man,Skinny Dipping,tt1315981\nbTuSlICST0Q,2009.0,9,11,2014,A Single Man,Look Closely,tt1315981\nsfVRk14aLtE,2009.0,8,11,2014,A Single Man,A Substitute for Real Love,tt1315981\nTDCa_16CiCU,2009.0,7,11,2014,A Single Man,A Natural Blonde,tt1315981\nukTcTd6wUD0,2009.0,6,11,2014,A Single Man,Live in the Moment,tt1315981\n0HjAT5lo4Ts,2009.0,5,11,2014,A Single Man,Never Seen a Sky Like This,tt1315981\nkXBTh2sv4Lg,2009.0,4,11,2014,A Single Man,Light in Your Loafers,tt1315981\nKoxDD5gYIYk,2009.0,3,11,2014,A Single Man,People Like Us,tt1315981\n8_iFDOIkRFk,2009.0,2,11,2014,A Single Man,Some Bad News,tt1315981\nBL-d6jqZ858,2009.0,1,11,2014,A Single Man,Waking Up,tt1315981\n8b0SHCBsDRM,2010.0,5,11,2014,Letters to Juliet,Love at First Sight,tt0892318\nb9KIXCf4U48,2010.0,9,11,2014,Letters to Juliet,Too Late,tt0892318\nmNcyNmX9B_A,2010.0,2,11,2014,Letters to Juliet,Juliet's Secretaries,tt0892318\na75Ywerim8M,2010.0,1,11,2014,Letters to Juliet,Dear Juliet,tt0892318\nvZ2jwhdnmw4,2010.0,4,11,2014,Letters to Juliet,Meeting Claire,tt0892318\nACh4ghU9eok,2010.0,6,11,2014,Letters to Juliet,I'm Not a Chicken,tt0892318\ntSJ3DYrCdNk,2010.0,7,11,2014,Letters to Juliet,Never Doubt I Love,tt0892318\nUeIxzCUMEsg,2010.0,8,11,2014,Letters to Juliet,\"Reunited,\",tt0892318\na0n9iFb4i70,2010.0,10,11,2014,Letters to Juliet,Sophie's Letter,tt0892318\nsZI5ebqgfaw,2010.0,11,11,2014,Letters to Juliet,Romeo & Juliet,tt0892318\nwcenhpP37sg,2013.0,1,12,2014,The Hunger Games: Catching Fire,The Victory Tour,tt1951264\n2V6d3f8W-oc,2013.0,3,12,2014,The Hunger Games: Catching Fire,The Tributes are Taken,tt1951264\n4_zn64bRf6Q,2013.0,2,12,2014,The Hunger Games: Catching Fire,The Peacekeepers,tt1951264\nLma2LDjYf5k,2013.0,8,12,2014,The Hunger Games: Catching Fire,Peeta Hits the Forcefield,tt1951264\nJPbkeLf4zU0,2013.0,12,12,2014,The Hunger Games: Catching Fire,The Ending,tt1951264\nD6_ZC6BywXs,2013.0,11,12,2014,The Hunger Games: Catching Fire,Destroying the Arena,tt1951264\nI44NZgYW6_4,2013.0,10,12,2014,The Hunger Games: Catching Fire,Katniss and Peeta,tt1951264\nOC82kTAQZew,2013.0,6,12,2014,The Hunger Games: Catching Fire,The Mockingjay Appears,tt1951264\nRsnwTCPo9RI,2013.0,5,12,2014,The Hunger Games: Catching Fire,Johanna in the Elevator,tt1951264\nRrDdgbo_NaE,2013.0,4,12,2014,The Hunger Games: Catching Fire,Tribute Parade,tt1951264\nE9v4TSOvOIc,2013.0,7,12,2014,The Hunger Games: Catching Fire,The Games Begin,tt1951264\nAhH1Yqw-gmA,2013.0,9,12,2014,The Hunger Games: Catching Fire,Tick Tock,tt1951264\nMnw2rmLB4_I,2010.0,7,10,2014,Fair Game,Defend Us,tt0977855\n4-Ml8OEXLbE,2010.0,3,10,2014,Fair Game,Not Everyone Agrees,tt0977855\nzyIccO0lXiQ,2010.0,10,10,2014,Fair Game,Demand the Truth,tt0977855\nL0yOTA3Wq_E,2010.0,5,10,2014,Fair Game,Exposed,tt0977855\nSpMvmtj35y8,2010.0,2,10,2014,Fair Game,Aluminum Tubes,tt0977855\nwmlNvVvfXNA,2010.0,4,10,2014,Fair Game,Newspaper Leak,tt0977855\nopxtApiyARs,2010.0,8,10,2014,Fair Game,Shame On You!,tt0977855\nRyObt_1eT8M,2010.0,6,10,2014,Fair Game,They'll Bury Us,tt0977855\ncv36jml_lAE,2010.0,9,10,2014,Fair Game,My Marriage Is Over,tt0977855\nHFZSTBmWyd8,2010.0,1,10,2014,Fair Game,Quasi-Racist Conundra,tt0977855\ncBvFsIF5GNE,2010.0,12,12,2014,Blue Valentine,I Can't Do This Anymore,tt1120985\n4D20x3Pfg6E,2010.0,10,12,2014,Blue Valentine,So Out of Love,tt1120985\nXjjZyyzdOvs,2010.0,9,12,2014,Blue Valentine,Over the Edge,tt1120985\nrGqSj0MA4eM,2010.0,8,12,2014,Blue Valentine,Somebody's Husband,tt1120985\n_AdhEPNDxeg,2010.0,6,12,2014,Blue Valentine,Nutty Cuckoo Crazy,tt1120985\nNgcEbuMsrS4,2010.0,4,12,2014,Blue Valentine,Inside a Robot's Vagina,tt1120985\ns-te8zRj4WY,2010.0,3,12,2014,Blue Valentine,Busted,tt1120985\ntDVlpRBhtWQ,2010.0,2,12,2014,Blue Valentine,What Did It Feel Like?,tt1120985\n26cjR330Ceo,2010.0,1,12,2014,Blue Valentine,Said the Wrong Thing,tt1120985\np9BRNz08eUs,2010.0,7,12,2014,Blue Valentine,You Always Hurt the One You Love,tt1120985\naHw-fJZ7mD8,2010.0,11,12,2014,Blue Valentine,You and Me,tt1120985\nySpuo4tFo20,2011.0,1,6,2014,Undefeated,First Day of Practice,tt1860355\nDe-dBcPZlIM,2011.0,2,6,2014,Undefeated,Team Comes First,tt1860355\nABW5RN51NqA,2011.0,4,6,2014,Undefeated,O.C.'s Tutor,tt1860355\nq40Kh2-q6X0,2011.0,5,6,2014,Undefeated,How to Measure Character,tt1860355\nB4ppeyE6UyU,2011.0,6,6,2014,Undefeated,Uncommon Man,tt1860355\noJJM7GnED2E,2011.0,3,6,2014,Undefeated,Comin' Back,tt1860355\nhTOzxqecG7o,2011.0,5,9,2014,The Three Musketeers,Blind Venetians,tt1509767\nx-HRlq5Oldw,2011.0,8,9,2014,The Three Musketeers,Round Two,tt1509767\nlDWXlJG-FDI,2011.0,9,9,2014,The Three Musketeers,Rooftop Duel,tt1509767\nsHTtCAH7l6Y,2011.0,7,9,2014,The Three Musketeers,Airship Battle,tt1509767\nQB4WFBsaeus,2011.0,3,9,2014,The Three Musketeers,What Happens to Any Man,tt1509767\nn2eSLdqwSYY,2011.0,6,9,2014,The Three Musketeers,The Real Decoy,tt1509767\nGM0rZv1Lii0,2011.0,1,9,2014,The Three Musketeers,Insult to Buttercup,tt1509767\nPaut4zNx-3c,2011.0,2,9,2014,The Three Musketeers,Four Against Forty,tt1509767\nyqCFtEZRFPE,2011.0,4,9,2014,The Three Musketeers,It Was an Off-Day,tt1509767\nUqnjC1YM5pk,2011.0,8,12,2014,The Iron Lady,The Medicine Is Harsh,tt1007029\nFgF-RJYNzzY,2011.0,7,12,2014,The Iron Lady,Thoughts and Ideas,tt1007029\nFdVyibVMumc,2011.0,4,12,2014,The Iron Lady,I'm Going to Run,tt1007029\nWx7IOoX7l8Y,2011.0,3,12,2014,The Iron Lady,Methinks the Lady Doth Screech Too Much,tt1007029\nEubG9_KSoGo,2011.0,2,12,2014,The Iron Lady,One's Life Must Matter,tt1007029\nH-cxAVTmQ0I,2011.0,1,12,2014,The Iron Lady,An Inspiration to Women,tt1007029\nfJjBf7yY1P8,2011.0,10,12,2014,The Iron Lady,\"Unity, Strength and Courage\",tt1007029\n5-afmnViCr4,2011.0,9,12,2014,The Iron Lady,Shall I Be Mother?,tt1007029\n_qqw8iHQASs,2011.0,5,12,2014,The Iron Lady,The Voice of a Leader,tt1007029\nOOGcesOHlDs,2011.0,12,12,2014,The Iron Lady,End of an Era,tt1007029\nXF7QaSY-8lY,2011.0,11,12,2014,The Iron Lady,Shameful,tt1007029\nTFrdPPdwY2I,2011.0,9,10,2014,The Darkest Hour,Shoot It,tt1093357\n2p-FeYouCx4,2011.0,6,12,2014,The Iron Lady,Put the 'Great' Back into Great Britain,tt1007029\n4Q8CqPioUFA,2011.0,10,10,2014,The Darkest Hour,Bus Ride,tt1093357\nGukkVxrTLaM,2011.0,8,10,2014,The Darkest Hour,This is Why They Came,tt1093357\nmxgE7XEbc48,2011.0,7,10,2014,The Darkest Hour,Going Home,tt1093357\n2b3mwmOTR3s,2011.0,5,10,2014,The Darkest Hour,Microwave Gun,tt1093357\nJuKhaVdSGms,2011.0,4,10,2014,The Darkest Hour,Shark Week,tt1093357\noTTfW63fY6A,2011.0,3,10,2014,The Darkest Hour,Under the Cop Car,tt1093357\nabyFD6LO05w,2011.0,6,10,2014,The Darkest Hour,\"Welcome to Russia, Sucka\",tt1093357\nZ5Hmi5x6JA8,2011.0,2,10,2014,The Darkest Hour,First Contact,tt1093357\nTETjB2zHhAE,2011.0,1,10,2014,The Darkest Hour,The Americans,tt1093357\nog36vWGn5CU,2012.0,8,9,2014,Silver Linings Playbook,I Did My Research,tt1045658\nVyq3eN0DUU0,2012.0,1,9,2014,Silver Linings Playbook,A Farewell to Arms,tt1045658\nDicBrlK4pEU,2012.0,7,9,2014,Silver Linings Playbook,It's About Us,tt1045658\n4EYZfAO5ZWs,2012.0,2,9,2014,Silver Linings Playbook,Poor Social Skills,tt1045658\n2ceG37UZvzQ,2012.0,3,9,2014,Silver Linings Playbook,Where's My Wedding Video?,tt1045658\n3I0AP-HwDnU,2012.0,4,9,2014,Silver Linings Playbook,I Like to Run Alone,tt1045658\n8p0YBrmfLyA,2012.0,5,9,2014,Silver Linings Playbook,Sort of Like Me,tt1045658\nz__IAJ1Q9lk,2012.0,6,9,2014,Silver Linings Playbook,First Dance Lesson,tt1045658\ny1lzIInBQOs,2012.0,9,9,2014,Silver Linings Playbook,The Dance,tt1045658\nt4fqGbC2mQM,2012.0,4,10,2014,Twilight: Breaking Dawn Part 2,Love Scene,tt1673434\nd4MZPbERTFs,2012.0,3,10,2014,Twilight: Breaking Dawn Part 2,A Wolf Thing,tt1673434\nFEWZFq14JiU,2012.0,5,10,2014,Twilight: Breaking Dawn Part 2,Jacob Reveals Himself,tt1673434\n2P3uaREypD4,2012.0,8,10,2014,Twilight: Breaking Dawn Part 2,The Battle Rages On,tt1673434\nLs2be_G7bHc,2012.0,10,10,2014,Twilight: Breaking Dawn Part 2,Forever,tt1673434\ncP7WEGuVwig,2012.0,9,10,2014,Twilight: Breaking Dawn Part 2,The End of the Volturi,tt1673434\nC7qekGisCs4,2012.0,1,10,2014,Twilight: Breaking Dawn Part 2,You're So Beautiful,tt1673434\nCB-a6fmj21U,2012.0,2,10,2014,Twilight: Breaking Dawn Part 2,Bella's First Hunt,tt1673434\n5u5ixEyjZng,2012.0,6,10,2014,Twilight: Breaking Dawn Part 2,Something to Fight For,tt1673434\n3qp3AeWmt38,2012.0,7,10,2014,Twilight: Breaking Dawn Part 2,The Battle Begins,tt1673434\nZiGf0aDV688,2011.0,11,11,2014,The Beaver,You Made This For Me,tt1321860\nKLYlTxCTu20,2011.0,9,11,2014,The Beaver,Can Your Mother Stitch?,tt1321860\nOEiioh2L3jQ,2011.0,8,11,2014,The Beaver,Starting Over Isn't Crazy,tt1321860\nk87Hk4JNqGY,2011.0,6,11,2014,The Beaver,This Man Is A Dead End,tt1321860\n1QJXKLwmN14,2011.0,5,11,2014,The Beaver,Mr. Beaver's Woodchopper Kit,tt1321860\nfEZuzz0KmN0,2011.0,4,11,2014,The Beaver,\"You May Simply Call Me,\",tt1321860\nLjKZiPNHRUU,2011.0,3,11,2014,The Beaver,A Prescription Puppet,tt1321860\nAHw_6AOK7bg,2011.0,2,11,2014,The Beaver,I'm the Beaver,tt1321860\n-zXmGloh-P8,2011.0,1,11,2014,The Beaver,Dumpster Beaver,tt1321860\nyV0IgLYLoC0,2011.0,10,11,2014,The Beaver,You're Nothing Without Me,tt1321860\n4SPwmO5wHjM,2011.0,7,11,2014,The Beaver,I'm Not A Puppet,tt1321860\nDwbFUmWjd3g,2011.0,9,11,2014,Spy Kids 4,Family Reunion,tt1517489\n6CwHxJUF8DQ,2011.0,10,11,2014,Spy Kids 4,You Have Been Activated,tt1517489\nKCbte6Zhaqc,2011.0,11,11,2014,Spy Kids 4,Hammer Hands and Jet Packs,tt1517489\nzRYmoB7ayDU,2011.0,7,11,2014,Spy Kids 4,A Giant Clock,tt1517489\nspI-9R3B6zk,2011.0,6,11,2014,Spy Kids 4,The Coolest Dog Ever,tt1517489\nd7ye5zFyuso,2011.0,5,11,2014,Spy Kids 4,Baby Sidekick,tt1517489\ncniwN1YsUW8,2011.0,4,11,2014,Spy Kids 4,The Power of Puke,tt1517489\nCmPZjdlK3Qw,2011.0,3,11,2014,Spy Kids 4,To the Panic Room,tt1517489\n7uvW1U9UXKQ,2011.0,8,11,2014,Spy Kids 4,Attack Mode,tt1517489\nUSLznFhxNF4,2011.0,1,11,2014,Spy Kids 4,Spy Mom,tt1517489\nGvRD2YqBi74,2011.0,2,11,2014,Spy Kids 4,Blue Cheese Dressing Bomb,tt1517489\nCVs-LAC1zrQ,2011.0,6,10,2014,Source Code,Killed in Action,tt0945513\nLcWRSHD3cAE,2011.0,2,10,2014,Source Code,Did You Find the Bomb?,tt0945513\nrZAnSJl6VKA,2011.0,8,10,2014,Source Code,Send Me Back In,tt0945513\nay1pxLNtdxE,2011.0,1,10,2014,Source Code,Classified Security Breach,tt0945513\nSPSP9BHo1_c,2011.0,9,10,2014,Source Code,Calling Home,tt0945513\nV07Z_XYMnmM,2011.0,5,10,2014,Source Code,Everything's Going to Be Okay,tt0945513\nGcSfbaac9eg,2011.0,4,10,2014,Source Code,The,tt0945513\nBjJxoKtYj_w,2011.0,3,10,2014,Source Code,Dead Wrong,tt0945513\noKWpZTQisew,2011.0,7,10,2014,Source Code,The World Is Hell,tt0945513\n_TkhbfmrmD0,2011.0,2,10,2014,Drive Angry,Boyfriend Beat-Down,tt1502404\nL-3Kx6xAUTM,2011.0,10,10,2014,Source Code,A Whole New World,tt0945513\noQotF_oLWTU,2011.0,5,10,2014,Drive Angry,Undead and Angry,tt1502404\n7A8pZX7GjR4,2011.0,9,10,2014,Drive Angry,The Next Five Seconds,tt1502404\n9B7Y2tMDlEA,2011.0,6,10,2014,Drive Angry,Ima F*** You Up!,tt1502404\nAwUpqAQNZCY,2011.0,4,10,2014,Drive Angry,Give Me the Child,tt1502404\nL3eM2_0KE2A,2011.0,7,10,2014,Drive Angry,Road Rage Rescue,tt1502404\nRVM5hFMx2Kk,2011.0,10,10,2014,Drive Angry,I'm Going to Kill You,tt1502404\nvT3kQdSXrMw,2011.0,3,10,2014,Drive Angry,High Speed Banter,tt1502404\ncr-rgM1-wXs,2011.0,1,10,2014,Drive Angry,Hell Walks the Earth,tt1502404\na_nd6odxaHI,2011.0,8,10,2014,Drive Angry,Hydrogen Truck Bomb,tt1502404\nsPZ2Ukl7EPU,2011.0,1,9,2014,Bully,Enough Was Enough,tt1682181\n-TuZo-mugDw,2011.0,3,9,2014,Bully,Isolated and Hated,tt1682181\n-iM3hKlLS5E,2011.0,2,9,2014,Bully,Bus Stop Bullies,tt1682181\nxRT4EyI63jw,2011.0,4,9,2014,Bully,Target On His Back,tt1682181\nlyrv1rNWg0o,2011.0,5,9,2014,Bully,I Want to Become the,tt1682181\nYbABtps7aY0,2011.0,8,9,2014,Bully,Most Devoted Friend,tt1682181\nTVMg2iM-XQg,2011.0,9,9,2014,Bully,Stand for the Silent,tt1682181\nl3vcMU002rk,2011.0,7,9,2014,Bully,Numb,tt1682181\n7y8pbljhMQs,2011.0,6,9,2014,Bully,Brink of Violence,tt1682181\niK6cDwd3yH4,2012.0,10,10,2014,What to Expect When You're Expecting,One Baby Out,tt1586265\nGhisL6dCqV8,2012.0,9,10,2014,What to Expect When You're Expecting,Baby Lady Meltdown,tt1586265\nyNkcLZ0BPuc,2012.0,7,10,2014,What to Expect When You're Expecting,Drop The Pig,tt1586265\nmokXxWsIsWg,2012.0,5,10,2014,What to Expect When You're Expecting,No Blanks in This Pistol,tt1586265\nF_3zkj4QVvA,2012.0,4,10,2014,What to Expect When You're Expecting,Do You Have a Wedding Photo?,tt1586265\n9d8VhjIG6No,2012.0,3,10,2014,What to Expect When You're Expecting,I'm Gonna Kiss You,tt1586265\nJx401J_oG2I,2012.0,2,10,2014,What to Expect When You're Expecting,The Great Big Pig Truck,tt1586265\nM5IO69jDb2M,2012.0,1,10,2014,What to Expect When You're Expecting,Celebrity Dance Factor,tt1586265\nAEhitq9yTss,2012.0,6,10,2014,What to Expect When You're Expecting,Man Play Date,tt1586265\nEPCFcnp0R3M,2012.0,8,10,2014,What to Expect When You're Expecting,Golf Carting,tt1586265\nuztZUqKrHVo,2012.0,9,10,2014,The Possession,Jewish Exorcism,tt0431021\naJHRyOrRnQk,2012.0,10,10,2014,The Possession,Demonic Expulsion,tt0431021\noY0IQEEQ35g,2012.0,8,10,2014,The Possession,The Demon Within,tt0431021\nLZhbH4pHMQ8,2012.0,7,10,2014,The Possession,Toothless,tt0431021\nqGf3--y_rcQ,2012.0,6,10,2014,The Possession,Em's Not Here!,tt0431021\n4SD245xSSVk,2012.0,5,10,2014,The Possession,Who Are You?,tt0431021\nCuAXqRNpFdo,2012.0,4,10,2014,The Possession,The Power of the Box,tt0431021\nMmcr5WLNtZA,2012.0,1,10,2014,The Possession,Fork You,tt0431021\nD-QqctD6nCw,2012.0,3,10,2014,The Possession,Hand to Mouth,tt0431021\nd5MJBYofzhs,2012.0,2,10,2014,The Possession,Moths,tt0431021\nqYxJ5YvIJX4,2012.0,8,8,2014,The Expendables 2,Ross vs. Vilain,tt1764651\n_gb6yX-Uiqk,2012.0,7,8,2014,The Expendables 2,Shooting Gallery,tt1764651\nfpqwsexDM0I,2012.0,3,8,2014,The Expendables 2,The Lone Wolf,tt1764651\n8X26PR7abAU,2012.0,2,8,2014,The Expendables 2,The Pet of Satan,tt1764651\n_P6ywXKM8kc,2012.0,6,8,2014,The Expendables 2,I'm Back!,tt1764651\nrlXL9FlYW8k,2012.0,5,8,2014,The Expendables 2,Boom Time,tt1764651\net7jz9CSPqo,2012.0,1,8,2014,The Expendables 2,Trench Warfare,tt1764651\nVXobEyKCykQ,2012.0,4,8,2014,The Expendables 2,Rest in Pieces,tt1764651\nrL1VrbSK0IA,2012.0,11,11,2014,The Cabin in the Woods,Giant Evil Gods Scene,tt1259521\n43DN-b_k4ZU,2012.0,4,11,2014,The Cabin in the Woods,Sex in the Woods Scene,tt1259521\ntdMQZ0g9ykE,2012.0,10,11,2014,The Cabin in the Woods,Killer Klown and the Merman Scene,tt1259521\na0dkF8CZxks,2012.0,9,11,2014,The Cabin in the Woods,Let's Get This Party Started Scene,tt1259521\nufF5p8VBsVk,2012.0,8,11,2014,The Cabin in the Woods,Down the Elevator Scene,tt1259521\nqb4e_GJzmrI,2012.0,7,11,2014,The Cabin in the Woods,Tequila is My Lady Scene,tt1259521\nS-xuQp2fW7I,2012.0,6,11,2014,The Cabin in the Woods,Stay Calm! Scene,tt1259521\nZGcMRCaBh_s,2012.0,5,11,2014,The Cabin in the Woods,A Reality T.V. Show Scene,tt1259521\nIo8nlxyMTd8,2012.0,2,11,2014,The Cabin in the Woods,Speaker Phone Scene,tt1259521\nxwN0ZIe-cG8,2012.0,1,11,2014,The Cabin in the Woods,Marty the Stoner Scene,tt1259521\nbjqjgoiV6BQ,2012.0,3,11,2014,The Cabin in the Woods,Truth or Dare Scene,tt1259521\njE5w-Jl5BSE,2012.0,7,7,2014,Step Up Revolution,Mob Power,tt1800741\nb3lLWO2d7b0,2012.0,5,7,2014,Step Up Revolution,Corporate Flashmob,tt1800741\n5RMx6st2-js,2012.0,6,7,2014,Step Up Revolution,The Mob Revealed,tt1800741\nElyptgRxg0M,2012.0,2,7,2014,Step Up Revolution,Sexy Dance-Off,tt1800741\nHbWxE7l4F3g,2012.0,4,7,2014,Step Up Revolution,Break the Rules,tt1800741\nSJZ_LT4GwQE,2012.0,3,7,2014,Step Up Revolution,Art Show,tt1800741\nvtxo451I_Qk,2012.0,1,7,2014,Step Up Revolution,Let's Go,tt1800741\n2myyH9c7mYM,2012.0,9,10,2014,Lawless,I Gotta Watch You Die Again,tt1212450\nXvs1TPM9g2s,2012.0,10,10,2014,Killing Them Softly,American Dream,tt1764234\nDogM3vTZsuo,2012.0,3,9,2014,Safe,Suicide Prevention,tt1599348\nKmlUAuGhy24,2012.0,2,9,2014,Safe,Kidnapping and Corruption,tt1599348\ncxFXMll7PWI,2012.0,1,9,2014,Safe,Eyes On You,tt1599348\n5D7JRwROZ0E,2012.0,9,9,2014,Safe,We Save Each Other,tt1599348\nYI02lc3SxXs,2012.0,7,9,2014,Safe,Pray,tt1599348\neCu_yXPkwGc,2012.0,6,9,2014,Safe,Hotel Shootout,tt1599348\nCQlI4zJnxho,2012.0,5,9,2014,Safe,Car Chase Chaos,tt1599348\n5-MjWWLPdqE,2012.0,4,9,2014,Safe,The Garbage Collector,tt1599348\nnEFAuOF_8YQ,2012.0,8,9,2014,Safe,Casino Raid,tt1599348\njgOMHLuBup4,2012.0,9,9,2014,Man on a Ledge,Leap of Faith,tt1568338\nm6eVFDJA9EM,2012.0,8,9,2014,Man on a Ledge,You Lose,tt1568338\npyvthgZdQhc,2012.0,7,9,2014,Man on a Ledge,High Tension,tt1568338\n6krgl6GpIbM,2012.0,6,9,2014,Man on a Ledge,I'm Stealing the Diamond,tt1568338\nBYh-iVr55EA,2012.0,5,9,2014,Man on a Ledge,The Red Wire,tt1568338\n5tMAe05kTXo,2012.0,3,9,2014,Man on a Ledge,Cash Grab,tt1568338\nRZ9Od4LBqDg,2012.0,2,9,2014,Man on a Ledge,Action News,tt1568338\nHrK6dbGxq-E,2012.0,1,9,2014,Man on a Ledge,High Rise Decoy,tt1568338\nS85RSn20wJ0,2012.0,4,9,2014,Man on a Ledge,Sex and Suspicion,tt1568338\n9cR2Rh00ndA,2012.0,2,10,2014,Lawless,Floyd Banner,tt1212450\nNKaENwBlGFQ,2012.0,8,10,2014,Lawless,Moonshine Raid,tt1212450\n59ZImWWRR50,2012.0,3,10,2014,Lawless,Special Deputy Rakes,tt1212450\nOS8NUnMpllc,2012.0,5,10,2014,Lawless,Did You Put Gas In The Truck?,tt1212450\n5-Al98JQSUM,2012.0,4,10,2014,Lawless,Church Hymn,tt1212450\nFkoI5jde2es,2012.0,7,10,2014,Lawless,Going for a Ride,tt1212450\n-PAIOy41SjQ,2012.0,6,10,2014,Lawless,White Lightning,tt1212450\nVkrb_0DiD4E,2012.0,1,10,2014,Lawless,Maggie Beauford,tt1212450\nXnEKbUbww9s,2012.0,10,10,2014,Lawless,Bridge Shootout,tt1212450\nqX0rYjUdFik,2012.0,6,10,2014,Killing Them Softly,Kill Them Softly,tt1764234\nh1q5X5asH7c,2012.0,4,10,2014,Killing Them Softly,The Man Comes Around,tt1764234\nC7Y3b732UVw,2012.0,2,10,2014,Killing Them Softly,Frankie & Russell,tt1764234\nXX8y_mQIewU,2012.0,1,10,2014,Killing Them Softly,Dillon Interrogates Markie,tt1764234\nYBmz0YGT2kI,2012.0,7,10,2014,Killing Them Softly,Mickey,tt1764234\nve1Brtly9Y4,2012.0,5,10,2014,Killing Them Softly,Heroin,tt1764234\npbd1pcdHRVE,2012.0,3,10,2014,Killing Them Softly,Poker Heist,tt1764234\nWTtAAYgzMjo,2012.0,9,10,2014,Killing Them Softly,Killing Johnny Amato,tt1764234\nc6TNgqIAYyE,2012.0,8,10,2014,Killing Them Softly,Mickey Can't Do It,tt1764234\nUx4y_2RNi_E,2012.0,9,12,2014,Gone,Don't You Come Back Here,tt1838544\nHUcO7rqSLEw,2012.0,12,12,2014,Gone,All in My Head,tt1838544\nBt_VjoF2lGo,2012.0,11,12,2014,Gone,The Hole,tt1838544\nGWrQ2H3LhI4,2012.0,10,12,2014,Gone,How Did You Escape?,tt1838544\nocVeenCXGaM,2012.0,7,12,2014,Gone,Wanna Make Some Money?,tt1838544\nQW1kAlnQLd4,2012.0,6,12,2014,Gone,Shots Fired,tt1838544\n8PDbRr_7bI8,2012.0,4,12,2014,Gone,The Locksmith,tt1838544\nwbrTwrgyOrg,2012.0,3,12,2014,Gone,I'll Sleep When He's Dead,tt1838544\nYh7Qz4fiKxw,2012.0,5,12,2014,Gone,I Want to Help You,tt1838544\nOkrJTqGkSWI,2012.0,2,12,2014,Gone,The Only One Who Got Away,tt1838544\n-ayGBx5Igyo,2012.0,8,12,2014,Gone,Chased by the Cops,tt1838544\nclslrqHA26U,2012.0,1,12,2014,Gone,Without a Trace,tt1838544\neApCe2z67Gk,2012.0,9,11,2014,Dredd,Wait,tt1343727\nUlT2oHT2RGY,2012.0,7,11,2014,Dredd,I Am the Law,tt1343727\n26mzWqdJnis,2012.0,3,11,2014,Dredd,Raid,tt1343727\ndv_26E-a_mA,2012.0,2,11,2014,Dredd,Hot Shot,tt1343727\nd5bK1xSr2dY,2012.0,11,11,2014,Dredd,\"Judge, Jury, and Executioner\",tt1343727\nuNqwzdw5uKE,2012.0,10,11,2014,Dredd,Ma-Ma's Last Stand,tt1343727\nyK3DX2F0JWQ,2012.0,8,11,2014,Dredd,Corrupt Judge,tt1343727\n3mN85wFz_Vk,2012.0,4,11,2014,Dredd,Slum Shootout,tt1343727\nO2U0qOzibf4,2012.0,6,11,2014,Dredd,Mind Games,tt1343727\nSG7voVeJRC0,2012.0,1,11,2014,Dredd,Take Down,tt1343727\nOLkKMHRUB9A,2012.0,5,11,2014,Dredd,Firepower,tt1343727\niVojYtEpstY,2012.0,8,9,2014,Bachelorette,500 Miles to Hook-Up,tt1920849\nn39lwOfvb2E,2012.0,6,9,2014,Bachelorette,The Wedding Dress,tt1920849\nFdMEJqe55dc,2012.0,5,9,2014,Bachelorette,Male Stripper,tt1920849\nlqbzUCMEK0o,2012.0,2,9,2014,Bachelorette,Oral Theory,tt1920849\np4t0OpJJ0MI,2012.0,7,9,2014,Bachelorette,Harder,tt1920849\n5Gmliz8GsG4,2012.0,9,9,2014,Bachelorette,A Perfect Wedding,tt1920849\nWlwLa7Jh3HY,2012.0,3,9,2014,Bachelorette,Low-Key Girls,tt1920849\nhML3kvOUVZU,2012.0,4,9,2014,Bachelorette,Rehearsal Dinner Speeches,tt1920849\n4ln7gkWQXys,2012.0,1,9,2014,Bachelorette,Becky's Getting Married,tt1920849\ncQHAH3t5oJI,2013.0,1,9,2014,Scary Movie 5,Charlie Sheen and Lindsay Lohan Scene,tt0795461\nYwzGw_SMwAc,2013.0,7,9,2014,Scary Movie 5,Girl on Teddy Experience Scene,tt0795461\n9NKu_Kyi1qY,2013.0,2,9,2014,Scary Movie 5,Freaky Crab Children Scene,tt0795461\nHM1U0PSGMn0,2013.0,3,9,2014,Scary Movie 5,Apes and Real Housewives Scene,tt0795461\nCkNjOs-7Sv8,2013.0,5,9,2014,Scary Movie 5,The Psychic Scene,tt0795461\nCkW8xFVXPqI,2013.0,9,9,2014,Scary Movie 5,Mama Is Back Scene,tt0795461\nB5D_aDaMqkk,2013.0,4,9,2014,Scary Movie 5,Black Swan Stripper Scene,tt0795461\n7rTb-n96yS8,2013.0,8,9,2014,Scary Movie 5,Cabin in the Woods Scene,tt0795461\nhnXqavr1ZMQ,2013.0,6,9,2014,Scary Movie 5,Rise of the Apes Scene,tt0795461\nWBuXu-20LZs,2013.0,1,10,2014,Lee Daniels' The Butler,\"It's Their World, We Just Live In It\",tt1327773\nQ92raMBaQ4o,2013.0,8,10,2014,Lee Daniels' The Butler,The Importance of the Black Butler,tt1327773\nrkD3FLsiUiU,2013.0,7,10,2014,Lee Daniels' The Butler,They Killed Our Man,tt1327773\nUtS2awRAf5E,2013.0,5,10,2014,Lee Daniels' The Butler,I Need My Husband,tt1327773\n7_AiHZa026w,2013.0,4,10,2014,Lee Daniels' The Butler,We're Fighting for Our Rights,tt1327773\nrft59wPnoqk,2013.0,3,10,2014,Lee Daniels' The Butler,What Are Your Biggest Concerns?,tt1327773\nlj66AQ2uzug,2013.0,2,10,2014,Lee Daniels' The Butler,I'm Cecil Gaines,tt1327773\nyYCW5Eo72VU,2013.0,10,10,2014,Lee Daniels' The Butler,Asking for a Raise,tt1327773\nbuOVuDwsbOM,2013.0,9,10,2014,Lee Daniels' The Butler,Everything You Have,tt1327773\n8FX2FZ0fFlo,2013.0,6,10,2014,Lee Daniels' The Butler,Change of Heart,tt1327773\nCHV9FhjbFLQ,2013.0,10,10,2014,Fruitvale Station,Fight on the Subway,tt2334649\nsytZ2amRbpk,2013.0,1,10,2014,Fruitvale Station,Helping Katie,tt2334649\nA6ZOCb2gaqs,2013.0,3,10,2014,Fruitvale Station,Stray Dog,tt2334649\nSIwi5PRNTfg,2013.0,6,10,2014,Fruitvale Station,Just Trying to Not Screw Up,tt2334649\nPwuTr5z4Bec,2013.0,5,10,2014,Fruitvale Station,Day Care Center,tt2334649\nQRACf_ehgis,2013.0,4,10,2014,Fruitvale Station,The Last Time I Visit You,tt2334649\nKhAtVQuAjVc,2013.0,8,10,2014,Fruitvale Station,You Got a Bathroom?,tt2334649\n26ISV0QFWPU,2013.0,2,10,2014,Fruitvale Station,I Need This Job,tt2334649\n2tcG49k5vdw,2013.0,9,10,2014,Fruitvale Station,We Had Nothing,tt2334649\nBXa-BfF9qGc,2013.0,7,10,2014,Fruitvale Station,\"Baby, I'm Gonna Be Fine\",tt2334649\nRSUmB80GqDM,1976.0,9,10,2014,Rocky,Creed Gets Knocked Down,tt0075148\n_YYmfM2TfUA,1976.0,8,10,2014,Rocky,Training Montage,tt0075148\njK4lxjvrhHs,1976.0,1,10,2014,Rocky,Date at the Ice Rink,tt0075148\nfxriLTLhyyY,1976.0,7,10,2014,Rocky,Paulie Breaks Down,tt0075148\npjX20gL-rnc,1976.0,6,10,2014,Rocky,The Meat Locker,tt0075148\nTc7H9s4PdSI,1976.0,10,10,2014,Rocky,Adrian!,tt0075148\n4NLUpuo3HGo,1976.0,5,10,2014,Rocky,Women Weaken Legs,tt0075148\nLxfe0cKOx3g,1976.0,3,10,2014,Rocky,Pain and Experience,tt0075148\ng6mF_yokyiA,1976.0,2,10,2014,Rocky,'s Wasted Talent,tt0075148\nsnqs566G_Zg,1976.0,4,10,2014,Rocky,Breakfast of Champions,tt0075148\nbRilciIycJQ,2010.0,11,11,2014,Red,Mad Bomber,tt1245526\n3rFMyjGI4cg,2010.0,8,11,2014,Red,Who Fired the Shot?,tt1245526\nbuH0CUEx-_Q,2010.0,6,11,2014,Red,\"Bad Move, Grandpa\",tt1245526\nqyMVXU7qMGw,2010.0,5,11,2014,Red,KGB and CIA,tt1245526\n6HXgPGZcXe4,2010.0,3,11,2014,Red,Why Are You Trying to Kill Me?,tt1245526\niiMNb99KaYk,2010.0,9,11,2014,Red,Chaos in the Parking Garage,tt1245526\n5ijEAMP_zW4,2010.0,7,11,2014,Red,I'm the Bad Guy,tt1245526\neXHdqulNiBs,2010.0,4,11,2014,Red,Old Man My Ass,tt1245526\nM96f_K13joo,2010.0,1,11,2014,Red,Moses and Mayhem,tt1245526\nJDxlbYa_THM,2010.0,2,11,2014,Red,You Really Are CIA,tt1245526\nFpKhobkTOyY,2010.0,10,11,2014,Red,Secret Service Shootout,tt1245526\ncV0Db20loyg,1991.0,11,11,2014,Rambling Rose,Over My Dead Body,tt0102753\nVjdgqT_xtEo,1991.0,2,11,2014,Rambling Rose,Rose Arrives,tt0102753\n2WGvnOdTfGw,1991.0,4,11,2014,Rambling Rose,Two Orphans,tt0102753\nY-YsM2a_N5Y,1991.0,9,11,2014,Rambling Rose,Get the Hell Outta Here,tt0102753\nnuUuXO8D9mo,1991.0,10,11,2014,Rambling Rose,A Human Girl Person,tt0102753\nFjl9b_vVVnk,1991.0,7,11,2014,Rambling Rose,You're Looking... Pretty,tt0102753\nqHD4H60rCfA,1991.0,6,11,2014,Rambling Rose,Curiosity Killed the Cat,tt0102753\niaIYk3DZKwE,1991.0,1,11,2014,Rambling Rose,Nostalgia for the Old South,tt0102753\nSeqT3GyDb2k,1960.0,8,12,2014,The Apartment,\"That's the Way It Crumbles, Cookie-Wise\",tt0053604\n4L62b92Prk0,2004.0,8,12,2014,Soul Plane,Racial Profile,tt0367085\n34_4OMd4I2I,1991.0,8,11,2014,Rambling Rose,Dixie Dame,tt0102753\n3sr3yQ4mGbs,1991.0,3,11,2014,Rambling Rose,Graceful as a Capital Letter 'S',tt0102753\nrZsLiY_Yyhk,1991.0,5,11,2014,Rambling Rose,Just Once,tt0102753\ncDI9o67o7bo,1971.0,6,8,2014,McCabe & Mrs. Miller,Kid Kills Cowboy,tt0067411\nOrwz44-_XSg,2005.0,3,7,2014,Leonard Cohen: I'm Your Man,Winter Lady,tt0478197\n3iZIOZrzbYo,1996.0,1,8,2014,Multiplicity,Doug is Cloned,tt0117108\n7X47UIYChis,2000.0,7,11,2014,Jailbait,Dream Sequence,tt0226009\nNzzSr5StuCE,2000.0,6,11,2014,Jailbait,He Knocked Up My Baby,tt0226009\nyzSfVpQ-1ns,2000.0,2,11,2014,Jailbait,A Moment of Weakness,tt0226009\n0uYmyOuu5xs,2000.0,4,11,2014,Jailbait,Blue Means I'm Pregnant,tt0226009\noMvMqeThVPk,2000.0,9,11,2014,Jailbait,Meet Chuck Clopperman,tt0226009\nEYO__x8qn2w,2000.0,1,11,2014,Jailbait,Waiting Until We're Married,tt0226009\nCrFsSJPnHj4,2000.0,3,11,2014,Jailbait,Lustful Abyss,tt0226009\n7qfgWGJpbgA,2000.0,8,11,2014,Jailbait,Feels Like Dead Man Walking,tt0226009\nvNgB9PxOAdI,2000.0,11,11,2014,Jailbait,Guilty!,tt0226009\nm5Qn-tIKwD8,2000.0,10,11,2014,Jailbait,It's All About Perception,tt0226009\nRNMZD_WiAvU,2010.0,8,11,2014,Four Lions,Squat Jogs,tt1341167\nHg_aGQjwjmo,2000.0,5,11,2014,Jailbait,A Baby Is a Gift from God,tt0226009\nkSKnJn8gksc,2010.0,4,11,2014,Four Lions,\"Would You Kill Me, Brother?\",tt1341167\nawHrfxqEofc,2010.0,3,11,2014,Four Lions,Islam Is Finished,tt1341167\nFqJJfBeuxUE,2010.0,6,11,2014,Four Lions,Twelve Bottles of Bleach,tt1341167\nou4WG7HhFZM,2010.0,1,11,2014,Four Lions,Waj's Terrorist Video,tt1341167\nzWzRkf2uwQk,2010.0,11,11,2014,Four Lions,Is a Wookie a Bear?,tt1341167\nuVNCyp4Verc,2010.0,7,11,2014,Four Lions,Drone Strike,tt1341167\n5WnobKuNaO4,2010.0,9,11,2014,Four Lions,Fessal Takes Out a Sheep,tt1341167\n1NfrTfIPl9Q,2010.0,5,11,2014,Four Lions,Rapping Suicide Bomber,tt1341167\nNEcaoimX3qY,2010.0,2,11,2014,Four Lions,Eat Your SIM Cards,tt1341167\nwEvrmiK_WlY,2010.0,10,11,2014,Four Lions,You Killed the Special Needs Donkey!,tt1341167\nPdmE-Ga0f5s,2005.0,11,11,2014,Waiting...,Mitch Loses It,tt0348333\nM3j9drozqlM,2005.0,6,11,2014,Waiting...,Amazing Sexual Prowess,tt0348333\n6Cz2mIx0y5k,2005.0,8,11,2014,Waiting...,Words of Wisdom,tt0348333\nUl0qToCSdfQ,2005.0,10,11,2014,Waiting...,Calvin Takes a Piss,tt0348333\njvAZ0bjChvk,2005.0,5,11,2014,Waiting...,Whipped,tt0348333\nUMjzEWOWXk0,2005.0,4,11,2014,Waiting...,Seasoning the Food,tt0348333\n2JHbw-BXN5s,2005.0,9,11,2014,Waiting...,Shenaniganz,tt0348333\n3dzw4t_dB5M,2005.0,1,11,2014,Waiting...,This Little Game We Play,tt0348333\nckremwNAupg,2005.0,3,11,2014,Waiting...,Hornball Advice,tt0348333\nU1usNHIi-L8,2005.0,2,11,2014,Waiting...,Monty's Mom,tt0348333\nQVw-cRLFWOI,2005.0,7,11,2014,Waiting...,Naomi's Rage,tt0348333\ni1hu0ErzPc8,2003.0,9,11,2014,High Tension,Barbed Wire Club,tt0338095\nqUwfcycK5X0,2003.0,4,11,2014,High Tension,Hide and Seek,tt0338095\nKSOhzWTWuxA,2003.0,3,11,2014,High Tension,Home Invasion,tt0338095\nUPnwEYjEMP8,2003.0,5,11,2014,High Tension,Escape,tt0338095\nh6nVYkTWTZw,2003.0,7,11,2014,High Tension,Into the Woods,tt0338095\n1nIPSxCzfVY,2003.0,2,11,2014,High Tension,Someone's at the Door,tt0338095\nr8759Q-oR3E,2003.0,8,11,2014,High Tension,Marie vs. Le Tueur,tt0338095\n0E4d_pXA7dI,2003.0,1,11,2014,High Tension,Severed Head,tt0338095\nZ97maI23aNg,2003.0,10,11,2014,High Tension,We Got Ourselves a Homicide,tt0338095\nvVzx25uDVaM,2003.0,6,11,2014,High Tension,Dissatisfied Customer,tt0338095\nbzRIeXSIS_w,2004.0,5,10,2014,A Very Long Engagement,Manech and Mathilde,tt0344510\nymWU7EuLXNc,2003.0,11,11,2014,High Tension,Concrete Saw,tt0338095\nYGenu4ZFnmQ,2004.0,9,10,2014,A Very Long Engagement,Vengeance Is Pointless,tt0344510\nMIxtdrML0rE,2004.0,4,10,2014,A Very Long Engagement,Elodie's Story,tt0344510\no3sj7nGzC64,2004.0,10,10,2014,A Very Long Engagement,She Looks At Him,tt0344510\nAuF1AN-ugM0,2004.0,8,10,2014,A Very Long Engagement,The Battlefield,tt0344510\nDYfo3nt-O_U,2004.0,2,10,2014,A Very Long Engagement,Mathilde's Story,tt0344510\nr3Owzt1HZkY,2004.0,7,10,2014,A Very Long Engagement,Tina Lombardi's Revenge,tt0344510\n2N73a3SRqyE,2004.0,6,10,2014,A Very Long Engagement,Race to the Bend,tt0344510\nsjPnuqcrL70,2004.0,1,10,2014,A Very Long Engagement,Her Heart In His Hand,tt0344510\njnuQMlB2uyw,2009.0,5,12,2014,I Am Love,Pursuing Antonio,tt1226236\ngacB8xCQ09s,2004.0,3,10,2014,A Very Long Engagement,Careful With That,tt0344510\nBaccIrZHkno,2009.0,3,12,2014,I Am Love,An Excellent Meal,tt1226236\ndqbddxpASRk,2009.0,4,12,2014,I Am Love,Betta's Lover,tt1226236\ntojv7SZkBOc,2009.0,12,12,2014,I Am Love,The Next Recchi,tt1226236\nZjC0F-xFL5s,2009.0,8,12,2014,I Am Love,Wordless Seduction,tt1226236\nSYM7Js4_I_4,2009.0,2,12,2014,I Am Love,I Have Been With a Girl,tt1226236\n0tyZ_m6t2Qs,2009.0,7,12,2014,I Am Love,Antonio's Daydream,tt1226236\n96T06Ema-Fc,2009.0,10,12,2014,I Am Love,You're Nothing to Me,tt1226236\nGtg2d74VHH4,2009.0,1,12,2014,I Am Love,It Will Take Two Men to Replace Me,tt1226236\nCdMDIBgp638,2009.0,11,12,2014,I Am Love,You Don't Exist,tt1226236\ny1O2kicdfzo,2009.0,9,12,2014,I Am Love,Emma and Antonio,tt1226236\nktXm7CRXbsE,1955.0,3,10,2014,Marty,A Big Night of Heartache,tt0048356\nQUVXO7h3-mQ,2009.0,6,12,2014,I Am Love,The Affair Begins,tt1226236\nns_HTpxc-g4,1955.0,7,10,2014,Marty,Money in the Bank,tt0048356\nO3bTMw3bb5o,1955.0,2,10,2014,Marty,A Little Late for a Date,tt0048356\nl6e1M2d4BJ0,1955.0,6,10,2014,Marty,I Have a Feeling About You,tt0048356\nTzAnOnVKwzk,1955.0,4,10,2014,Marty,We Ain't Such Dogs,tt0048356\nlQbw0_5O8CQ,1955.0,9,10,2014,Marty,College Girls Are One Step From the Street,tt0048356\nLyszyKhpc88,1955.0,1,10,2014,Marty,What Do You Feel Like Doin' Tonight?,tt0048356\n1fNnMtn7BiU,1955.0,8,10,2014,Marty,All I Wanted Was a Lousy Kiss,tt0048356\nzGa7K2HO1-Y,1955.0,10,10,2014,Marty,I Got Something Good Here,tt0048356\necmRksfy--I,1955.0,5,10,2014,Marty,I Got Five Bulls Eyes,tt0048356\n3D2hC2C_Wpw,2006.0,8,12,2014,Man About Town,Tom Cruise's Retarded Cousin,tt0420757\nhwu3LxjW22o,2006.0,9,12,2014,Man About Town,Where's My Journal?,tt0420757\nweqGiMyn8AU,2006.0,12,12,2014,Man About Town,Not Wearing Any Underwear,tt0420757\ntCDZOw9BoPU,2006.0,3,12,2014,Man About Town,Smooth Talker,tt0420757\ntjSf6v-dztQ,2006.0,2,12,2014,Man About Town,Dig for the Truth,tt0420757\nIQ4Yt16z2PY,2006.0,1,12,2014,Man About Town,Self-Exploration Technique,tt0420757\nPWeRWbuEN7Q,2006.0,10,12,2014,Man About Town,Chinatown Showdown,tt0420757\n-w4bcJF68u8,2006.0,5,12,2014,Man About Town,We Grew Up Together,tt0420757\nz4QNCQD7LvU,2006.0,11,12,2014,Man About Town,Fish Tank Scuba Dive,tt0420757\nwaOQ8ECkEcQ,2006.0,6,12,2014,Man About Town,Anthony's Death,tt0420757\ncuMmCpE7-pg,2006.0,7,12,2014,Man About Town,A Mailroom Coup,tt0420757\nuki4lrLzRaU,1973.0,10,10,2014,Magnum Force,A Man's Got to Know His Limitations,tt0070355\nWQnv22Qnp8s,1973.0,2,10,2014,Magnum Force,Never Had a Lesson,tt0070355\nBlz6dosZ5oc,2006.0,4,12,2014,Man About Town,Confession,tt0420757\n8kmCFBwTmGY,1973.0,8,10,2014,Magnum Force,Mail Bomb,tt0070355\n-oRm-YxsEH8,1973.0,5,10,2014,Magnum Force,Shooting Competition,tt0070355\nsEWuVNk2TKA,1973.0,1,10,2014,Magnum Force,A Good Man,tt0070355\nTCrV8NUSTsc,1973.0,3,10,2014,Magnum Force,Stakeout Shootout,tt0070355\nC8l7cD_YI4Y,1973.0,9,10,2014,Magnum Force,Motorcycle Escape,tt0070355\nCQtbqB7NcXc,1973.0,4,10,2014,Magnum Force,A Friendly Neighbor,tt0070355\nCgHWwYQ3XSg,1973.0,7,10,2014,Magnum Force,For Us or Against Us,tt0070355\nTAkyNyQBnyo,1973.0,6,10,2014,Magnum Force,Guilty Until Proven Innocent,tt0070355\nvAalnLmiZrc,2010.0,6,11,2014,Monsters,The Trees Are Infected,tt0892782\nYeNQ5WEKggc,2010.0,11,11,2014,Monsters,Gentle Giants,tt0892782\n_KpfRDVjsKI,2010.0,1,11,2014,Monsters,The Boss's Daughter,tt0892782\n1ISntRHuJ4Y,2010.0,8,11,2014,Monsters,America From the Outside,tt0892782\nw9SWbpW5bNo,2010.0,7,11,2014,Monsters,Convoy Attack,tt0892782\neF77Id3wbZQ,2010.0,5,11,2014,Monsters,The Infected Zone,tt0892782\nJZsF7-7VBYs,2010.0,9,11,2014,Monsters,Crossing the Border,tt0892782\nNCh2VGy8AR0,2010.0,10,11,2014,Monsters,Tentacles,tt0892782\nBbYPFSGnPZs,2010.0,4,11,2014,Monsters,A Sacrifice,tt0892782\nq3LxjwTz-b8,2010.0,2,11,2014,Monsters,On the Road,tt0892782\nhq-jlSdx5Ck,2010.0,3,11,2014,Monsters,I Had a Really Good Time,tt0892782\ntQlujXWP-5c,1996.0,8,8,2014,Multiplicity,Refreshing Cola,tt0117108\nJpdTx3k0VoQ,1996.0,7,8,2014,Multiplicity,Tuck Tuck Fold,tt0117108\nhm9ZzMSoPB4,1996.0,4,8,2014,Multiplicity,Picture Day,tt0117108\nVAh7ZGHEp-c,1996.0,5,8,2014,Multiplicity,Rule #1,tt0117108\nhSAx87qd-fs,1996.0,3,8,2014,Multiplicity,New York Time,tt0117108\nNwqIdPSNr6E,1996.0,6,8,2014,Multiplicity,Meeting Number Four,tt0117108\noyYuYNnSq9E,1996.0,2,8,2014,Multiplicity,Little League Parents,tt0117108\nD0rFBU7pVL4,1969.0,11,11,2014,Midnight Cowboy,Ratso Dies on the Bus to Miami,tt0064665\nuKZQEDh_KAA,1969.0,4,11,2014,Midnight Cowboy,Ratso and Joe Trade Insults,tt0064665\n_Z-tCU-sULA,1969.0,2,11,2014,Midnight Cowboy,I'm Walkin' Here,tt0064665\nxd7SESj-nfA,1969.0,3,11,2014,Midnight Cowboy,Come on Now Don't Hit Me,tt0064665\nafnlOjES53Y,1969.0,5,11,2014,Midnight Cowboy,Ratso Gets Joe a Real Job,tt0064665\n3izxrCNCbUQ,1969.0,8,11,2014,Midnight Cowboy,Ratso's Dying Wish,tt0064665\nX6UG7H2dcos,1969.0,1,11,2014,Midnight Cowboy,That's a Funny Thing You Mentioning Money,tt0064665\ngjliVll3Uyw,1969.0,10,11,2014,Midnight Cowboy,I'm Fallin' Apart Here,tt0064665\nIC2crLlclNA,1969.0,6,11,2014,Midnight Cowboy,Miami Dreaming,tt0064665\nAO_944kf0RA,1969.0,9,11,2014,Midnight Cowboy,Joe and Ratso on the Bus to Florida,tt0064665\nbwTe_vZ_2dg,1969.0,7,11,2014,Midnight Cowboy,Ratso and Joe Lose Their Home,tt0064665\nx1dA_SM1vxE,2006.0,4,11,2014,Midnight Clear,Stealing Supplies,tt0795426\n_Fw6TuACCKY,2006.0,6,11,2014,Midnight Clear,Taking Care of Someone,tt0795426\nR4ODWXEmvKQ,2006.0,9,11,2014,Midnight Clear,I Got a Car,tt0795426\nalvAo3qQRQE,2006.0,11,11,2014,Midnight Clear,Christmas Eve Service,tt0795426\nBUAUwc7g_gY,2006.0,3,11,2014,Midnight Clear,Business Call,tt0795426\n06gTnB_5-Tg,2006.0,8,11,2014,Midnight Clear,Wish Me a Merry Christmas,tt0795426\nigD13c0l8Sc,2006.0,10,11,2014,Midnight Clear,Sorry About Before,tt0795426\nbmIx71yf944,2006.0,1,11,2014,Midnight Clear,You're Fired,tt0795426\nSiLFLIp8I14,2006.0,7,11,2014,Midnight Clear,Doing the Right Thing,tt0795426\nkjx9LAJ6Wu4,2006.0,2,11,2014,Midnight Clear,Meeting with the Lawyers,tt0795426\n5-kyVZ5swXE,2006.0,5,11,2014,Midnight Clear,Carolers Visit Ms. Boyle,tt0795426\ncKw1b2-4aeU,1988.0,6,11,2014,Rain Man,Underwear is Underwear!,tt0095953\nG4Hwsz1sQmc,1988.0,5,11,2014,Rain Man,Flying's Very Dangerous,tt0095953\nDH6S0wKKGBM,1988.0,8,11,2014,Rain Man,Hot Water Burn Baby,tt0095953\nkthFUFBwbZg,1988.0,4,11,2014,Rain Man,246 Toothpicks,tt0095953\nwAadouGkwMQ,1988.0,9,11,2014,Rain Man,Let's Play Some Cards,tt0095953\nBp9AClR8qCY,1988.0,7,11,2014,Rain Man,One Minute to Wapner!,tt0095953\ntDpyGID-qHI,1988.0,10,11,2014,Rain Man,This is Dancing,tt0095953\n7zDmlkn1gbQ,1988.0,11,11,2014,Rain Man,\"One for Bad, Two for Good\",tt0095953\nLz-ihW8RXSM,1988.0,2,11,2014,Rain Man,Who's on First?,tt0095953\nLU1A0sHWYQg,1988.0,1,11,2014,Rain Man,I'm An Excellent Driver,tt0095953\ngN2ZP-q_qpc,1988.0,3,11,2014,Rain Man,You Memorized the Whole Book?,tt0095953\nXw2cUrd_Zt0,2010.0,6,11,2014,Rabbit Hole,Bad Case of the Giggles,tt0935075\nO7LsLRMEg1Y,2010.0,3,11,2014,Rabbit Hole,What if There is a God?,tt0935075\nqDYuDtyvVVQ,2010.0,1,11,2014,Rabbit Hole,Another Angel,tt0935075\nCbijjb5aLYo,2010.0,2,11,2014,Rabbit Hole,Not Ready,tt0935075\nRgofngIgfsY,2010.0,9,11,2014,Rabbit Hole,Cinnamon Buns,tt0935075\nzKWgTSNMESI,2010.0,5,11,2014,Rabbit Hole,I'm Sorry,tt0935075\nRAG1b0H8nv4,2010.0,4,11,2014,Rabbit Hole,Bowling Party,tt0935075\nzn9pjQIMQVQ,2010.0,11,11,2014,Rabbit Hole,Parallel Universe,tt0935075\nsDB0bxWhS4A,2010.0,10,11,2014,Rabbit Hole,Carrying a Brick,tt0935075\ni1jS0AMWtgg,2010.0,8,11,2014,Rabbit Hole,,tt0935075\nKK2MOKkkp4M,2010.0,7,11,2014,Rabbit Hole,Something's Gotta Change,tt0935075\ns_zget0Z7Xc,2004.0,4,11,2014,Pusher 2,Flesh Wound,tt0396184\nfU3enCcXY80,2004.0,3,11,2014,Pusher 2,Kurt,tt0396184\nlPJzoxKtSxY,2004.0,8,11,2014,Pusher 2,Domestic Violence,tt0396184\n8svIExZz6Dw,2004.0,7,11,2014,Pusher 2,Wedding Toast,tt0396184\ngtHCnru414Q,2004.0,5,11,2014,Pusher 2,Child Support,tt0396184\niWFpqo0_43o,2004.0,9,11,2014,Pusher 2,Ransack,tt0396184\nAIHlnQOkZiU,2004.0,6,11,2014,Pusher 2,Diapers,tt0396184\nRnWxwJxpDig,2004.0,10,11,2014,Pusher 2,You Make Me Sick,tt0396184\nFSbcZ85iPvU,2004.0,11,11,2014,Pusher 2,Respect,tt0396184\nCBP-t2AJ8M8,2004.0,2,11,2014,Pusher 2,Car Heist,tt0396184\nks2GU3XYXvM,2004.0,1,11,2014,Pusher 2,Conquer Your Fear,tt0396184\nvMrWJki0r8g,2003.0,8,12,2014,Prey for Rock & Roll,Music Saved Me,tt0307351\nEdDMvB9Y20o,2003.0,3,12,2014,Prey for Rock & Roll,Jacki's Birthday Dinner,tt0307351\nGUclZ3JhJoM,2003.0,10,12,2014,Prey for Rock & Roll,Rock Bottom,tt0307351\ndPfKQTaEcEA,2003.0,1,12,2014,Prey for Rock & Roll,Almost Forty and Still No Rock Star,tt0307351\nfhGy66B0CIU,2003.0,12,12,2014,Prey for Rock & Roll,Rock & Roll Intervention,tt0307351\nNJz68D8NcE0,2003.0,6,12,2014,Prey for Rock & Roll,Where's My Girlfriend?,tt0307351\n6GC872xb5dI,2003.0,4,12,2014,Prey for Rock & Roll,You Ever Think About Quitting?,tt0307351\nIBRvIQdd6UE,2003.0,11,12,2014,Prey for Rock & Roll,Opening the Envelope,tt0307351\nfjnGwAftnDE,2003.0,5,12,2014,Prey for Rock & Roll,Animal Comes Clean,tt0307351\nUwslgPscal8,2003.0,2,12,2014,Prey for Rock & Roll,What's Your Problem?,tt0307351\nEVPxub5VJMg,2003.0,7,12,2014,Prey for Rock & Roll,Tattooed Revenge,tt0307351\nrKjMBYlak2M,2003.0,9,12,2014,Prey for Rock & Roll,Every Six Minutes,tt0307351\nV1dPrmENIVg,2009.0,8,10,2014,World's Greatest Dad,Kyle Was Kinda Dumb,tt1262981\nccyTJYkiGqE,2009.0,5,10,2014,World's Greatest Dad,Poetry Class,tt1262981\nWOLfIBsXq4s,2009.0,2,10,2014,World's Greatest Dad,I Hate Music,tt1262981\npwlgVnituhw,2009.0,7,10,2014,World's Greatest Dad,A Big Spaz,tt1262981\nkNOz8Bcb9v0,2009.0,3,10,2014,World's Greatest Dad,Kissing in the Stairwell,tt1262981\nNx0Qte8Wfgg,2009.0,10,10,2014,World's Greatest Dad,He Was Also a Douche Bag,tt1262981\nhpfufHZI0yQ,2009.0,1,10,2014,World's Greatest Dad,Do You Knock?,tt1262981\nQaKCmtbKf8g,2009.0,6,10,2014,World's Greatest Dad,Are You Stoned?,tt1262981\ndEfBtVYzWks,2009.0,4,10,2014,World's Greatest Dad,Europeans Are Much More Broad-Minded,tt1262981\nW1N-a0SDw0k,2009.0,9,10,2014,World's Greatest Dad,Keep Your Pants On,tt1262981\n8ExIPKUEZ-4,2008.0,2,9,2014,Witless Protection,Men in Black,tt1001562\nA7iVMwpaYmk,2008.0,7,9,2014,Witless Protection,Airport Security,tt1001562\nedDfsrTAI1k,2008.0,9,9,2014,Witless Protection,Dead Enough,tt1001562\nk4WEx4-yh-g,2008.0,1,9,2014,Witless Protection,Quick-Witted,tt1001562\nf3mAVsy7WbM,2008.0,5,9,2014,Witless Protection,No Credit Card,tt1001562\njSbmgZG-0Ng,2008.0,3,9,2014,Witless Protection,Stop this Truck!,tt1001562\npoQL9Yw2kNI,2008.0,8,9,2014,Witless Protection,Body Cavity Search,tt1001562\nOywTdKpHE8M,2002.0,2,10,2014,Windtalkers,Hold The Position,tt0245562\nNWO-iP_Sbtk,2008.0,4,9,2014,Witless Protection,Nice Beaver,tt1001562\najj5MxJEJ1Q,2008.0,6,9,2014,Witless Protection,It's a Dud,tt1001562\nUniUFSan3Bg,2002.0,8,10,2014,Windtalkers,I Blew Him Up,tt0245562\nIwC3OUA8_s0,2002.0,1,10,2014,Windtalkers,\"Farewell, Home\",tt0245562\nH3h2opMD6rM,2002.0,9,10,2014,Windtalkers,The Death of Sgt. Enders,tt0245562\nZsL0rDZPGb8,2002.0,7,10,2014,Windtalkers,Yazhee Fights Chick,tt0245562\nqsdgNxuhPgc,2002.0,3,10,2014,Windtalkers,Yahzee Meets Ender,tt0245562\nhQogMjsahWU,2002.0,4,10,2014,Windtalkers,Camp Poker Game,tt0245562\nah-M2AYI4Ac,2002.0,10,10,2014,Windtalkers,Navajo Ceremony,tt0245562\nzQHhbhtpJ3M,2002.0,6,10,2014,Windtalkers,Call in the Code,tt0245562\nhrZxBMTQO0c,2002.0,5,10,2014,Windtalkers,\"Saipan, June '44\",tt0245562\nfSOh-vTjWk4,1995.0,6,10,2014,Wild Bill,This Ain't About No Time Piece,tt0114938\nnZy7fW9IO0s,1995.0,1,10,2014,Wild Bill,Saloon Brawl,tt0114938\nzCfnEpand6k,1995.0,8,10,2014,Wild Bill,Forgive Him,tt0114938\nXAORGJKfEcU,1995.0,3,10,2014,Wild Bill,Wheelchair Showdown,tt0114938\ny4nFzow4tLQ,1995.0,7,10,2014,Wild Bill,\"Make Your Move, Jack\",tt0114938\n7iWEk7k_kio,1995.0,9,10,2014,Wild Bill,\"Goodbye, Jack\",tt0114938\ngm2PdV3UPfc,1995.0,4,10,2014,Wild Bill,Threatening to Kill Bill,tt0114938\nhdt5QAIC81Q,1995.0,5,10,2014,Wild Bill,McCall's Mother,tt0114938\n8MnF5ok8llg,1995.0,2,10,2014,Wild Bill,Friendly Fire,tt0114938\nmb2bzOdITdU,1995.0,10,10,2014,Wild Bill,A Sentimental Gesture,tt0114938\n1eQh2-2W_1Q,2008.0,5,11,2014,What Just Happened,Stomach Disorder,tt0486674\nyQAICCf1oug,2008.0,9,11,2014,What Just Happened,Bruce's Eulogy,tt0486674\nZCYbGGfwbfk,2008.0,2,11,2014,What Just Happened,Final Cut,tt0486674\nQslzL-DhXDY,2008.0,11,11,2014,What Just Happened,Life's Not Bad,tt0486674\n8bAvbwlCsHU,2008.0,1,11,2014,What Just Happened,Test Screening,tt0486674\nQgYPzXlF1xM,2008.0,8,11,2014,What Just Happened,He Touched Me,tt0486674\nIyT1ogi3fE0,2008.0,4,11,2014,What Just Happened,Beard Tantrum,tt0486674\n1US29KtfPrQ,2008.0,10,11,2014,What Just Happened,Funeral Fight,tt0486674\nobbz_0P1wVs,2008.0,6,11,2014,What Just Happened,Happy Ending,tt0486674\niGAwKHHaRAA,2008.0,3,11,2014,What Just Happened,In the Cutting Room,tt0486674\nG92KKZEiWy8,2008.0,7,11,2014,What Just Happened,Therapy Session,tt0486674\nGJgKIC581V0,2010.0,11,12,2014,Tucker and Dale vs Evil,Best Friends Forever,tt1465522\nbXq9Pa9Txg8,2010.0,7,12,2014,Tucker and Dale vs Evil,Walk it Off,tt1465522\nWSoMlpQ6yz8,2010.0,5,12,2014,Tucker and Dale vs Evil,The Wood Chipper,tt1465522\npoZubOWaras,2010.0,10,12,2014,Tucker and Dale vs Evil,Making Progress,tt1465522\nzKSDHbVKY7Q,2010.0,12,12,2014,Tucker and Dale vs Evil,Killer Hillbilly,tt1465522\nIX3hYYzIyoY,2010.0,8,12,2014,Tucker and Dale vs Evil,Pure Evil,tt1465522\ngYTKHHhPk08,2010.0,2,12,2014,Tucker and Dale vs Evil,Vacation Home,tt1465522\nJJ0PocoUWVI,2010.0,1,12,2014,Tucker and Dale vs Evil,Just Smile and Laugh,tt1465522\nTdOMp1LuvJg,2010.0,9,12,2014,Tucker and Dale vs Evil,This Vacation Sucks,tt1465522\nAdGVl3AP7fw,2010.0,4,12,2014,Tucker and Dale vs Evil,Run For Your Lives!,tt1465522\nMjC0kVIUGYU,2010.0,3,12,2014,Tucker and Dale vs Evil,We Got Your Friend!,tt1465522\nY4yQoJ-LBVE,2010.0,6,12,2014,Tucker and Dale vs Evil,Sheriff Stops By,tt1465522\nnODBN75vrH0,1982.0,10,11,2014,Trail of the Pink Panther,Gorillas Driving,tt0084814\nCpxs390x5N4,1982.0,6,11,2014,Trail of the Pink Panther,\"The \"\"Massage\"\"\",tt0084814\nzvry_GtQIeU,1982.0,11,11,2014,Trail of the Pink Panther,Clouseau vs. the Nazis,tt0084814\nIRMNacEVuT4,1982.0,1,11,2014,Trail of the Pink Panther,A Nose for Noses,tt0084814\nJnXCZbZipJg,1982.0,4,11,2014,Trail of the Pink Panther,Pop-Out Lighter,tt0084814\n7fOYHqR2Gyo,1982.0,5,11,2014,Trail of the Pink Panther,Off the Plane,tt0084814\nuq1JHKlUtOU,1982.0,2,11,2014,Trail of the Pink Panther,Marta's Nose,tt0084814\nuF_721BvdJE,1982.0,8,11,2014,Trail of the Pink Panther,Cato Attacks,tt0084814\ngL3mN-UpSyQ,1982.0,7,11,2014,Trail of the Pink Panther,Out the Window,tt0084814\noaqTzvd4aq8,1982.0,9,11,2014,Trail of the Pink Panther,Clouseau Burns His Hand,tt0084814\nzE0vrRRohs0,1982.0,3,11,2014,Trail of the Pink Panther,Office Fire,tt0084814\nydYaph8BQkE,1973.0,9,12,2014,Tom Sawyer,If'n I Was God,tt0070814\naBgs1Kxh9nM,1973.0,1,12,2014,Tom Sawyer,A String of Fibs,tt0070814\nBahgFrLFgpk,1973.0,12,12,2014,Tom Sawyer,Responsibility,tt0070814\nJah71XURbIg,1973.0,2,12,2014,Tom Sawyer,Whitewashin',tt0070814\n4KX9Ojp-yic,1973.0,6,12,2014,Tom Sawyer,Whipped for Becky,tt0070814\nyZLkEOM1CQ0,1973.0,8,12,2014,Tom Sawyer,Getting Engaged,tt0070814\npKdszbbvQGc,1973.0,5,12,2014,Tom Sawyer,A Man's Gotta Be What He's Born to Be,tt0070814\n2yXz1r5kn_k,1973.0,10,12,2014,Tom Sawyer,Freebootin',tt0070814\nu8TwN5M1fEY,1973.0,4,12,2014,Tom Sawyer,Becky Thatcher,tt0070814\nwRbKDoyN5oc,1973.0,11,12,2014,Tom Sawyer,Tom and Huck's Funeral,tt0070814\nlVg2pm0YdQ0,1973.0,3,12,2014,Tom Sawyer,Gratifaction,tt0070814\ni5mSHPKEbas,1973.0,7,12,2014,Tom Sawyer,Tom's Testimony,tt0070814\n3jBfvv_lBEU,2009.0,9,12,2014,The Winning Season,Waitress Rejection,tt1293842\nWDq967Y_e3U,2009.0,3,12,2014,The Winning Season,Pep Talk,tt1293842\ngMBkkaB0pp0,2009.0,7,12,2014,The Winning Season,What's Your Type?,tt1293842\n7jO1tzRBFFw,2009.0,1,12,2014,The Winning Season,Is This a Joke?,tt1293842\nhbki4pbNi10,2009.0,5,12,2014,The Winning Season,Defending Kathy's Honor,tt1293842\ntfsPfimgjFU,2009.0,12,12,2014,The Winning Season,You've Come a Long Way,tt1293842\nlaWUdsC-3Pk,2009.0,8,12,2014,The Winning Season,The Big Picture,tt1293842\nQCTgWRNnfZM,2009.0,6,12,2014,The Winning Season,Bill's Past,tt1293842\njXqcrXqphIo,2009.0,11,12,2014,The Winning Season,Coaching Incognito,tt1293842\n3IAUIQJXHUM,2009.0,4,12,2014,The Winning Season,Molly's Gone,tt1293842\nFPyap6DbfHw,2009.0,2,12,2014,The Winning Season,The Wrong Side of the Line,tt1293842\n92h5_0bE8Nk,2009.0,10,12,2014,The Winning Season,You Broke Their Hearts,tt1293842\ngfF5C7j-2jk,1997.0,2,11,2014,The Wings of the Dove,Drenched,tt0120520\nGBGdp2p0T30,1997.0,3,11,2014,The Wings of the Dove,A Visit With Father,tt0120520\n_OzammfDblc,1997.0,9,11,2014,The Wings of the Dove,The Palazzo Barbaro,tt0120520\ntvaROfCgPPE,1997.0,7,11,2014,The Wings of the Dove,Dance With Me,tt0120520\n6J4faUNOGuI,1997.0,1,11,2014,The Wings of the Dove,Illicit Encounter,tt0120520\npu0pYw6lG_c,1997.0,4,11,2014,The Wings of the Dove,Did It Hurt?,tt0120520\ngUccqktilDU,1997.0,6,11,2014,The Wings of the Dove,The Canals of Venice,tt0120520\nmjPh_oYqKPM,1997.0,10,11,2014,The Wings of the Dove,A Letter From Millie,tt0120520\nA8PVoyIiqrw,1997.0,11,11,2014,The Wings of the Dove,In Love With Her Memory,tt0120520\nYRi3-AbHXbU,1997.0,5,11,2014,The Wings of the Dove,You Set Me Up,tt0120520\n55gq831fmzE,1957.0,8,11,2014,Sweet Smell of Success,A Prisoner of Your Own Fears,tt0051036\nqw34BbyVK7c,1997.0,8,11,2014,The Wings of the Dove,How Do You Love?,tt0120520\n9uA8c4XGVxk,1957.0,10,11,2014,Sweet Smell of Success,Susan Keeps Quiet,tt0051036\nU0FBVju7fVI,1957.0,2,11,2014,Sweet Smell of Success,J.J.'s Table,tt0051036\nOhH4bYnAdzk,1957.0,11,11,2014,Sweet Smell of Success,I Pity You,tt0051036\nWh4U2TtNn-g,1957.0,3,11,2014,Sweet Smell of Success,A Press Agent's Life,tt0051036\n8xsYjrLw-Qk,1957.0,1,11,2014,Sweet Smell of Success,Sunday Piece on Cigarette Girls,tt0051036\nVIVMDMDxnQY,1957.0,9,11,2014,Sweet Smell of Success,Susan Attempts Suicide,tt0051036\noCq7TUmVmt8,1957.0,5,11,2014,Sweet Smell of Success,Don't Do Anything I Wouldn't Do,tt0051036\n3CeKpU2WaBQ,1957.0,4,11,2014,Sweet Smell of Success,The Clean Columnist,tt0051036\nXv_qHFUItVo,1957.0,7,11,2014,Sweet Smell of Success,\"If Looks Could Kill, I'd Be Dead\",tt0051036\niZx1W6cHw-g,1989.0,8,8,2014,Steel Magnolias,I Wanna Know Why,tt0098384\ne1bMBM_rgwQ,1957.0,6,11,2014,Sweet Smell of Success,A Cookie Full of Arsenic,tt0051036\njuw328OfWnM,1989.0,7,8,2014,Steel Magnolias,A Guardian Angel,tt0098384\nybbS5_qlkaQ,1989.0,1,8,2014,Steel Magnolias,Too Much Insulin,tt0098384\nhn09SKCZgtI,1989.0,5,8,2014,Steel Magnolias,Life Support,tt0098384\ncWuFfrettMY,1989.0,6,8,2014,Steel Magnolias,The Lord Works in Mysterious Ways,tt0098384\nTlB_1W-qc14,1989.0,2,8,2014,Steel Magnolias,30 Minutes of Wonderful,tt0098384\neTVHMQb2OyU,1989.0,4,8,2014,Steel Magnolias,Not Exactly Great News,tt0098384\nBXloUAxs2wI,1989.0,3,8,2014,Steel Magnolias,A Very Bad Mood for 40 Years,tt0098384\nDLFB0sj-xkc,2004.0,5,12,2014,Soul Plane,The Only White People,tt0367085\nLva7xOJRRCA,2004.0,10,12,2014,Soul Plane,We Ready to Roll,tt0367085\nfrgfTkjkcxo,2004.0,3,12,2014,Soul Plane,Terminal Malcolm X,tt0367085\ncCoD237oWtg,2004.0,12,12,2014,Soul Plane,Landing Positions,tt0367085\n9XVy6vDxQDk,2004.0,6,12,2014,Soul Plane,We Feds Now,tt0367085\nYfUodLRuU-A,2004.0,9,12,2014,Soul Plane,You're A Survivor,tt0367085\nGeneo4_3VbE,2004.0,2,12,2014,Soul Plane,Airport Sex Rant,tt0367085\ncLc_O-kQOoc,2004.0,1,12,2014,Soul Plane,Stroganoff,tt0367085\nFvsbTxZZgxM,2004.0,11,12,2014,Soul Plane,Afraid of Heights,tt0367085\nn5PnSNCFBYs,2004.0,4,12,2014,Soul Plane,Airport Security,tt0367085\nLFc-p5H9AJI,2004.0,7,12,2014,Soul Plane,Captain Mack,tt0367085\nMRCXvZjeOx8,1998.0,8,11,2014,Permanent Midnight,Rock Bottom,tt0120788\nHB7ienz0_IA,1998.0,10,11,2014,Permanent Midnight,We Get Under Each Other's Skin,tt0120788\nPSNqibKHIys,1998.0,4,11,2014,Permanent Midnight,A Rich Civilian Life,tt0120788\nNrXQSp7Uz0A,1998.0,3,11,2014,Permanent Midnight,A Typical Day,tt0120788\nyThTYeRr5BM,1998.0,5,11,2014,Permanent Midnight,Getting High,tt0120788\nh0z4HetQWME,1998.0,2,11,2014,Permanent Midnight,Moving In?,tt0120788\nOWXlfOnU6tc,1998.0,6,11,2014,Permanent Midnight,Realism is Dead,tt0120788\nEI_QlYraNl8,1998.0,7,11,2014,Permanent Midnight,Baby on Board,tt0120788\nlmDII7sMIF8,1998.0,11,11,2014,Permanent Midnight,Showing Up on Maury,tt0120788\n1HfdZj-RzI0,1998.0,9,11,2014,Permanent Midnight,Visiting Nina,tt0120788\nrsmsMeT8EYs,1998.0,1,11,2014,Permanent Midnight,Mr. Chompers,tt0120788\nm8oSm88EIhM,2007.0,5,12,2014,Lake Dead,Trampy Tanya,tt0839880\n0p1OYPs14T4,2007.0,2,12,2014,Lake Dead,He Left Us a Motel,tt0839880\nAy4MOACH9tQ,2007.0,7,12,2014,Lake Dead,I Dropped My Wallet,tt0839880\n2F64BSpClag,2007.0,12,12,2014,Lake Dead,Blood's Thicker Than Water,tt0839880\ntx8GFMF8Pd8,2007.0,4,12,2014,Lake Dead,It's Occupied,tt0839880\njthkBksMaXY,2007.0,11,12,2014,Lake Dead,Where's My Kiss?,tt0839880\n2wctAnLU_cE,2007.0,9,12,2014,Lake Dead,Get in the RV,tt0839880\nvsSTRzIow2c,2007.0,1,12,2014,Lake Dead,An Abomination,tt0839880\nTfeZeRIdyNM,2007.0,6,12,2014,Lake Dead,You're Never Gonna Wanna Leave,tt0839880\nkBgO6ctmq8M,2007.0,3,12,2014,Lake Dead,Do Not Go There,tt0839880\nHFUCwBt4pK0,2007.0,8,12,2014,Lake Dead,It's Just Sex,tt0839880\n7kAoU7bwDFM,2007.0,10,12,2014,Lake Dead,Part of Our Family,tt0839880\nIziNmIErmWw,2004.0,1,11,2014,Madhouse,There Is No Place Like Home,tt0363276\nyga9OU5yuKE,2004.0,8,11,2014,Madhouse,The Kitchen's Closed,tt0363276\nSHvBT5RXeeA,2004.0,6,11,2014,Madhouse,Crazy Chicks Are Wild,tt0363276\nJVfMbJjbIpw,2004.0,9,11,2014,Madhouse,Never Trust a Schizo,tt0363276\nTbgusehY_sQ,2004.0,5,11,2014,Madhouse,The First Casualty,tt0363276\nrFPCkGmuUO4,2004.0,3,11,2014,Madhouse,You're Not Here to Think,tt0363276\nyFX-95l18ng,2004.0,11,11,2014,Madhouse,Clark's Not Here Anymore,tt0363276\nLkLvZZiL3Vo,2004.0,10,11,2014,Madhouse,Cell 44,tt0363276\nZC2SlM2Eqa4,2004.0,4,11,2014,Madhouse,Welcome to the,tt0363276\nBoi5obDmX-g,2004.0,2,11,2014,Madhouse,Really the Crazy Ones,tt0363276\nQpoiFakmREc,2001.0,4,11,2014,Made,First Class,tt0227005\nyJUGxCV5OiQ,2004.0,7,11,2014,Madhouse,Face to Face,tt0363276\nurN3pAtiXdg,2001.0,10,11,2014,Made,Starter Pistol,tt0227005\ntPJ_rBWLOxA,2001.0,8,11,2014,Made,A Surprise Built for One,tt0227005\n-WBeglzkZNQ,2001.0,9,11,2014,Made,We Need Guns,tt0227005\nF4d_PYyHSOM,2001.0,1,11,2014,Made,What's Your Name?,tt0227005\nFaH-7N7iRjI,2001.0,11,11,2014,Made,Chuck E. Cheese's,tt0227005\nGeqbeBDtYkE,2001.0,5,11,2014,Made,Checking In,tt0227005\njTFSVXpq1Fg,2001.0,2,11,2014,Made,Color Me That,tt0227005\niImMlbzg5Qc,2001.0,7,11,2014,Made,One Way to Deal With People,tt0227005\ny3wTKua41bk,2001.0,6,11,2014,Made,Screech Is on the List,tt0227005\nfXcIZFeYivQ,2001.0,3,11,2014,Made,Per Diem,tt0227005\nopyCsftx7D0,2000.0,12,12,2014,Love & Sex,DeNiro,tt0234137\nettu4zJOh3M,2000.0,11,12,2014,Love & Sex,MIdget Message,tt0234137\nVn5ilm1jMgA,2000.0,9,12,2014,Love & Sex,Peaches,tt0234137\nmXwYp2IwFFw,2000.0,2,12,2014,Love & Sex,The Art Exhibit,tt0234137\nuuAGxjrG_gs,2000.0,8,12,2014,Love & Sex,Ninjeta,tt0234137\nF5U5PKWgHQo,2000.0,1,12,2014,Love & Sex,Blow by Blow,tt0234137\n3daIUo8UtM4,2000.0,4,12,2014,Love & Sex,French Teacher Love,tt0234137\nv75c0QugkBI,2000.0,6,12,2014,Love & Sex,Sunday Morning Routine,tt0234137\nM09CkmDfntY,2000.0,5,12,2014,Love & Sex,Daddy Phase,tt0234137\n4nGA9zBslBg,2000.0,3,12,2014,Love & Sex,How Many Women Have You Slept With?,tt0234137\ncR7GV9Fdkuk,2005.0,7,7,2014,Leonard Cohen: I'm Your Man,Tower of Song,tt0478197\ndZushQttfzY,2000.0,10,12,2014,Love & Sex,White Bread Kinky,tt0234137\nQU2qTjAFWKQ,2000.0,7,12,2014,Love & Sex,Don't Poke the Bear,tt0234137\nBHx0kYdl9Nw,2005.0,4,7,2014,Leonard Cohen: I'm Your Man,Chelsea Hotel No. 2,tt0478197\ntlhxBAhYnS8,2005.0,1,7,2014,Leonard Cohen: I'm Your Man,I'm Your Man,tt0478197\nJQAyLEhEoQw,2005.0,5,7,2014,Leonard Cohen: I'm Your Man,Suzanne,tt0478197\nQTHImytcib0,2005.0,6,7,2014,Leonard Cohen: I'm Your Man,Hallelujah,tt0478197\neqQtfjs7YGg,2005.0,2,7,2014,Leonard Cohen: I'm Your Man,Everybody Knows,tt0478197\n4xBY09_9H6g,2000.0,8,9,2014,The Way of the Gun,Bullets and Broken Glass,tt0202677\n5XWG3eNY298,2000.0,4,9,2014,The Way of the Gun,I'm Joe Sarno,tt0202677\nAV5hAxICHsc,2000.0,9,9,2014,The Way of the Gun,Stopped by Sarno,tt0202677\ntteCp4cbON4,2000.0,3,9,2014,The Way of the Gun,Pregnant Pause,tt0202677\nNdDOmuWz92I,2000.0,2,9,2014,The Way of the Gun,Sperm Donors,tt0202677\nZIjuiq25Lzk,2000.0,6,9,2014,The Way of the Gun,Longshot for Mr. Longbaugh,tt0202677\n90li7tw4CCM,2000.0,1,9,2014,The Way of the Gun,Raving Bitch Knock-Out,tt0202677\n5rKn9BNhQ0Y,2000.0,7,9,2014,The Way of the Gun,Shootout at the Whorehouse,tt0202677\nAGCDh4gBj8U,2000.0,5,9,2014,The Way of the Gun,Second Thoughts,tt0202677\nRAapNGRfaBI,1948.0,10,10,2014,The Treasure of the Sierra Madre,A Great Joke,tt0040897\n8_phNWJu9BY,1948.0,5,10,2014,The Treasure of the Sierra Madre,The Stranger's Proposition,tt0040897\ndkcsqI6hZz8,1948.0,9,10,2014,The Treasure of the Sierra Madre,You Can Only Shoot One of Us,tt0040897\nTArcc_WduhE,1948.0,1,10,2014,The Treasure of the Sierra Madre,Give Us Our Money,tt0040897\nWy3IoFyvWOs,1948.0,8,10,2014,The Treasure of the Sierra Madre,A Burning Conscience,tt0040897\n_pWx7N8gSoY,1948.0,3,10,2014,The Treasure of the Sierra Madre,Dumber Than the Dumbest Jackass,tt0040897\nrpdnpip1X4A,1948.0,2,10,2014,The Treasure of the Sierra Madre,Fool's Gold,tt0040897\nrEAbZTpV47E,1948.0,4,10,2014,The Treasure of the Sierra Madre,Gila Monster,tt0040897\nvKEWdfB8yo8,1948.0,7,10,2014,The Treasure of the Sierra Madre,A Bonehead Play,tt0040897\n4OcM23Hbs5U,1948.0,6,10,2014,The Treasure of the Sierra Madre,No Stinking Badges,tt0040897\ndcKdr89ngtI,1996.0,8,10,2014,The Substitute,Jai alai,tt0117774\nmW3KEJNsT2Y,1996.0,5,10,2014,The Substitute,The Warrior Chief,tt0117774\n1L-4-XQYxrs,1996.0,3,10,2014,The Substitute,Power Perceived is Power Achieved,tt0117774\nY6uj9ZZl2LI,1996.0,10,10,2014,The Substitute,Some Things Can't be Taught,tt0117774\n6E26ye_66xE,1996.0,9,10,2014,The Substitute,\"Smile, You're on Candid Camera\",tt0117774\nOCV4kaP_0-k,1996.0,6,10,2014,The Substitute,No Talking in the Library,tt0117774\npeRHtqEZMLk,1996.0,2,10,2014,The Substitute,I'm the Substitute,tt0117774\nb1s-ewwrpQY,1996.0,1,10,2014,The Substitute,Fiber & Flushing,tt0117774\nJMpTeDvOnLA,1996.0,7,10,2014,The Substitute,I Can't Get Higher,tt0117774\nVSiiYMgJ3h8,1996.0,4,10,2014,The Substitute,Too Small Balls,tt0117774\nBFkcX4Qi11g,1998.0,5,12,2014,The Red Violin,Gypsies,tt0120802\nVBgDKUVxAyI,1998.0,1,12,2014,The Red Violin,This Is My Masterpiece,tt0120802\n-cvGAF7LbqE,1998.0,6,12,2014,The Red Violin,Pope's Concert,tt0120802\nYKce1fkBRrc,1998.0,2,12,2014,The Red Violin,Kaspar Weiss,tt0120802\n5oe8grtUxI8,1998.0,4,12,2014,The Red Violin,The Audition,tt0120802\na4DTqmln40c,1998.0,3,12,2014,The Red Violin,Playing by Metronome,tt0120802\nCkem1kbmJdQ,1998.0,12,12,2014,The Red Violin,The Theft,tt0120802\nBR2Bcczm9EI,1998.0,11,12,2014,The Red Violin,Do You Get It?,tt0120802\nmGpalRiltP8,1998.0,8,12,2014,The Red Violin,Our Secret,tt0120802\nAUqVNqZdqRw,1998.0,7,12,2014,The Red Violin,You're Leaving Me,tt0120802\ncqZVc6GtV8A,1998.0,9,12,2014,The Red Violin,A Beautiful Specimen,tt0120802\njW9D4lY0TUU,1998.0,10,12,2014,The Red Violin,The Perfect Marriage of Science and Beauty,tt0120802\nUs7XgnZ5OHE,2008.0,3,12,2014,The Lucky Ones,Bar Fight,tt0981072\n-scWJO2h1ak,2008.0,12,12,2014,The Lucky Ones,Tornado,tt0981072\nynZqnGTUHcM,2008.0,7,12,2014,The Lucky Ones,Lucky Guy,tt0981072\n8TlVDn0j98E,2008.0,8,12,2014,The Lucky Ones,Good Liar,tt0981072\nbluBJ-eeBBs,2008.0,1,12,2014,The Lucky Ones,Port-O-John,tt0981072\nKXo_Enhm-xM,2008.0,9,12,2014,The Lucky Ones,Spiritual Healing,tt0981072\ngQRANiw4JLw,2008.0,10,12,2014,The Lucky Ones,Staying Alive,tt0981072\nBzd07cbr3y8,2008.0,5,12,2014,The Lucky Ones,I'm Happy Alone,tt0981072\ni0KnbzRHwaM,2008.0,6,12,2014,The Lucky Ones,What's Your Plan?,tt0981072\nGVuaTdn9TnY,2008.0,11,12,2014,The Lucky Ones,I Found Cheaver,tt0981072\nLtkstS3KlIA,2008.0,4,12,2014,The Lucky Ones,Mysteries of Life,tt0981072\nHKNo8yzXxyM,1973.0,1,10,2014,The Long Goodbye,Interrogation,tt0070334\nr6dLxmPng8o,1973.0,10,10,2014,The Long Goodbye,A Born Loser,tt0070334\ntM4qhFW0FPA,2008.0,2,12,2014,The Lucky Ones,Hummers,tt0981072\nObAOGLArxGA,1973.0,3,10,2014,The Long Goodbye,Freedom From Verringer's,tt0070334\nCwBH6g7UEI4,1973.0,6,10,2014,The Long Goodbye,The Albino Turd,tt0070334\nc3zRfKmcqv8,1973.0,2,10,2014,The Long Goodbye,Dr. Verringer's Clinic,tt0070334\nA6zqLx8tii4,1973.0,8,10,2014,The Long Goodbye,Take Off Your Clothes,tt0070334\nP9fOKOsEX8A,1973.0,5,10,2014,The Long Goodbye,Walter Brennan,tt0070334\n7t7gG3XVqW0,1973.0,4,10,2014,The Long Goodbye,\"Broken Bottle, Broken Face\",tt0070334\n847dUNGFwsM,1973.0,7,10,2014,The Long Goodbye,Wade's Suicide,tt0070334\n2G-BNvZvz8I,1999.0,4,11,2014,The Limey,The Sixties,tt0165854\nCU0lA1M1_3I,1973.0,9,10,2014,The Long Goodbye,Chasing Eileen Wade,tt0070334\nT7uncpUQ4GE,1999.0,3,11,2014,The Limey,Valets,tt0165854\n0UrClwjpNA8,1999.0,10,11,2014,The Limey,Tell Me About Jenny,tt0165854\nE9yuGEux_OI,1999.0,1,11,2014,The Limey,Tell Him I'm Coming!,tt0165854\nqPbOVPtdaZs,1999.0,7,11,2014,The Limey,Hollywood Hills Chase,tt0165854\n5hete-GzD9I,1999.0,2,11,2014,The Limey,Terry Valentine,tt0165854\ntJLdaKUBGzo,1999.0,11,11,2014,The Limey,Colours,tt0165854\nVKcpoyC6RMA,1999.0,9,11,2014,The Limey,Bide Your Time,tt0165854\neuvUARojiiI,1999.0,5,11,2014,The Limey,Shooting Valentine,tt0165854\nS76IuL89zVY,1999.0,8,11,2014,The Limey,Stacy the Hitman,tt0165854\nsPgl1DyIn3U,1999.0,6,11,2014,The Limey,Over the Ledge,tt0165854\n_2EQFo-vIH0,1989.0,3,11,2014,The January Man,Cheap Wine,tt0097613\nVtpo8d2mME0,1989.0,10,11,2014,The January Man,How Am I Doing?,tt0097613\nTsGOIi6JI1c,1989.0,9,11,2014,The January Man,Nick vs. Door,tt0097613\nv5qwMeiEF0M,1989.0,8,11,2014,The January Man,Calendar Girl,tt0097613\nvTy2bx3jmrs,1989.0,4,11,2014,The January Man,Still Mad About You,tt0097613\nlVMviKEztGw,1989.0,11,11,2014,The January Man,I Loved an Idea,tt0097613\n01ovMSvDohw,1989.0,5,11,2014,The January Man,Nick on Ice,tt0097613\nBZVmJdnVVBw,1989.0,6,11,2014,The January Man,A Real Conversation,tt0097613\nE_UyAj2V4pI,1989.0,7,11,2014,The January Man,Prime Numbers,tt0097613\nAridlIyM9ak,1989.0,2,11,2014,The January Man,Take Off Your Clothes,tt0097613\ns9IqypZYH6A,1989.0,1,11,2014,The January Man,Don't Mess With Me,tt0097613\nr1NHFfwmJZQ,2011.0,7,11,2014,The Innkeepers,\"Show Yourself, Spirit\",tt1594562\nDLyLE2LUpOo,2011.0,10,11,2014,The Innkeepers,Room 353,tt1594562\nyUXdDmn9wP4,2011.0,9,11,2014,The Innkeepers,The Spirit of Madeline,tt1594562\nJIfu8g9EUzo,2011.0,2,11,2014,The Innkeepers,Ms. Leanne Rease-Jones,tt1594562\nHFbgT-GSYhk,2011.0,8,11,2014,The Innkeepers,Drunk Talk,tt1594562\ng_tQ__pEoPs,2011.0,11,11,2014,The Innkeepers,Trapped in the Basement,tt1594562\nRxogsPx7JwQ,2011.0,6,11,2014,The Innkeepers,A Ghost in Bed,tt1594562\nmHA7T9yOI3A,2011.0,5,11,2014,The Innkeepers,The Piano,tt1594562\nLWRuMnDhCy4,2011.0,3,11,2014,The Innkeepers,Getting Coffee,tt1594562\n7uO7VSK2XMo,2011.0,1,11,2014,The Innkeepers,Paranormal Activity,tt1594562\n2gKXgAzFV8Q,2011.0,5,12,2014,The Hunter,Setting Traps,tt1038919\nS0_2LuMWicY,2011.0,4,12,2014,The Hunter,I Heard One Once,tt1038919\nbvuDpEE2MQM,2011.0,4,11,2014,The Innkeepers,A Late Night Noise,tt1594562\nB8rq--5MbZ8,2011.0,7,12,2014,The Hunter,The Tiger's Cave,tt1038919\n1AZuIPGAQ_s,2011.0,11,12,2014,The Hunter,Where Are They Now?,tt1038919\n_epn5foR_Ts,2011.0,1,12,2014,The Hunter,The Most Elusive Creature,tt1038919\nV-PNT54Z2ig,2011.0,10,12,2014,The Hunter,Martin's Replacement,tt1038919\naIekhk4NDA4,2011.0,12,12,2014,The Hunter,The Tasmanian Tiger,tt1038919\n7JICPsjLMis,2011.0,9,12,2014,The Hunter,Lucy's Husband,tt1038919\nkGXKWSmXrEk,2011.0,3,12,2014,The Hunter,Meeting the Locals,tt1038919\noISBveQNkzA,2012.0,8,12,2014,The Hunger Games,Cornucopia Bloodbath,tt1392170\n-R2UHh9T0ck,2011.0,6,12,2014,The Hunter,Bike's Drawing,tt1038919\ngbPolHxofuo,2011.0,2,12,2014,The Hunter,Sass and Bike,tt1038919\ngaoMc6MgvNA,2012.0,9,12,2014,The Hunger Games,Tracker Jackers,tt1392170\nTtWqejfxiVU,2011.0,8,12,2014,The Hunter,Campfire Gathering,tt1038919\nmtuBqolFOVs,2012.0,5,12,2014,The Hunger Games,Hope,tt1392170\nKAal6-tvckw,2012.0,2,12,2014,The Hunger Games,Saying Goodbye,tt1392170\nWCbXSTBBueU,2012.0,7,12,2014,The Hunger Games,They Don't Own Me,tt1392170\nmgr2tLYYha4,2012.0,12,12,2014,The Hunger Games,Rule Change,tt1392170\nEd5xIjGdqb4,2012.0,10,12,2014,The Hunger Games,Rue's Death,tt1392170\nv98Rh9qzmPs,2012.0,1,12,2014,The Hunger Games,I Volunteer as Tribute!,tt1392170\nG9VI6SExDms,2012.0,4,12,2014,The Hunger Games,Shooting the Apple,tt1392170\n7ikLl_nUM2A,2012.0,11,12,2014,The Hunger Games,The Kiss,tt1392170\nZ92aHy9-fkk,2012.0,3,12,2014,The Hunger Games,Get People to Like You,tt1392170\nvVTASz4W2hA,2011.0,7,12,2014,The Future,We're Both Facing East,tt1615091\ndzO8DzLZAuU,2011.0,9,12,2014,The Future,I Have to Tell You Something,tt1615091\nXrvB53IDIqM,2012.0,6,12,2014,The Hunger Games,Star-Crossed Lovers,tt1392170\nQCXgvx0vPZk,2011.0,12,12,2014,The Future,The T-Shirt Dance,tt1615091\nL4x1S9WYV9k,2011.0,3,12,2014,The Future,Dancing for YouTube,tt1615091\n7nHXSTzcVX4,2011.0,5,12,2014,The Future,The Internet Is Being Turned Off,tt1615091\nm4MdMCS5EeE,2011.0,11,12,2014,The Future,\"It's a Drag, But It's Amazing\",tt1615091\nJ4Mq0xr4gwU,2011.0,6,12,2014,The Future,Used Hair Dryer,tt1615091\nxcYzjbIVlX8,2011.0,2,12,2014,The Future,The Signal,tt1615091\n8GtyX55FtTs,2011.0,8,12,2014,The Future,Paw-Paw's Patience,tt1615091\nanQHZRrZHYc,2011.0,10,12,2014,The Future,The Way You Look,tt1615091\ngMIvHGdpQpE,2011.0,1,12,2014,The Future,Loose Change,tt1615091\nm0gUcNGsGYU,2011.0,4,12,2014,The Future,No Soliciting,tt1615091\nF63pia00pLM,1993.0,11,11,2014,The Dark Half,Sparrow Annihilation,tt0106664\n4SCJoMT1FCY,1993.0,9,11,2014,The Dark Half,One in the Same,tt0106664\nx5bONeuC6BY,1993.0,5,11,2014,The Dark Half,Revealing Nightmares,tt0106664\naAg3LPuwfJM,1993.0,7,11,2014,The Dark Half,\"Mikey, Mikey, Mikey\",tt0106664\nxoRXgE6j9po,1993.0,6,11,2014,The Dark Half,There's a Man Here,tt0106664\nQhYydmeQ2Yw,1993.0,2,11,2014,The Dark Half,A Tale of Two Authors,tt0106664\nwdrhl_I3-E8,1993.0,4,11,2014,The Dark Half,Suspected for Murder,tt0106664\nk0XGlpR6iLc,1993.0,8,11,2014,The Dark Half,A Cut & Go Business,tt0106664\n0p1fLn6_ExE,1993.0,3,11,2014,The Dark Half,George Stark Strikes,tt0106664\njr8BKtgMJA0,1993.0,1,11,2014,The Dark Half,Startling Discovery,tt0106664\nPioVmXuOv7c,1993.0,10,11,2014,The Dark Half,Showdown,tt0106664\nz-0rKpuvnT4,1996.0,5,10,2014,The Birdcage,\"Val's \"\"Mother\"\" Comes to Dinner\",tt0115685\nTZjB7MW9Q-E,1996.0,9,10,2014,The Birdcage,This is My Mother,tt0115685\n1_7FYr4JsF0,1996.0,7,10,2014,The Birdcage,Naked Greek Bowls,tt0115685\nLEQNosAHrD4,1996.0,10,10,2014,The Birdcage,Family Values,tt0115685\nAkr33uOKP8M,1996.0,6,10,2014,The Birdcage,Gays in the Military,tt0115685\nkO0kWTR_7tQ,1996.0,3,10,2014,The Birdcage,Act Like a Man,tt0115685\nQ5o7eYFRp_U,1996.0,8,10,2014,The Birdcage,Wigging Out,tt0115685\nTmO1R-GqD50,1996.0,4,10,2014,The Birdcage,Walking Like John Wayne,tt0115685\nrU8cUBCZn9c,1996.0,1,10,2014,The Birdcage,Albert Will Not Dance,tt0115685\nYlAmk5w3qZw,1996.0,2,10,2014,The Birdcage,Val's Getting Married,tt0115685\ns4KQbOrnRYs,1999.0,2,8,2014,The Big Kahuna,Big Shots,tt0189584\nDwyqcEjMMI8,1999.0,8,8,2014,The Big Kahuna,An Honest Man,tt0189584\n9dnvta78Oc8,1999.0,6,8,2014,The Big Kahuna,We Talked About Christ,tt0189584\nF8RkAzAX2-g,1999.0,7,8,2014,The Big Kahuna,Bigger Than God,tt0189584\nXr4ZDbix55Q,1999.0,5,8,2014,The Big Kahuna,Dreams of God,tt0189584\n2S8FhT1CLOQ,1999.0,1,8,2014,The Big Kahuna,B.S. Detector,tt0189584\nXbuSTq9TZSI,1999.0,3,8,2014,The Big Kahuna,Why God Created Wives,tt0189584\nVtnxXJy01ag,2008.0,7,11,2014,The Bank Job,Coppers on Your Doorstep,tt0200465\n0WY4XiwS8Lc,2008.0,10,11,2014,The Bank Job,The Red Ledger,tt0200465\nb_W5rtfzadQ,1999.0,4,8,2014,The Big Kahuna,In Search of the Grand Kahuna,tt0189584\nmTNkmMUcQfc,2008.0,4,11,2014,The Bank Job,Somebody at the Door,tt0200465\n64Kac5hYLBM,2008.0,5,11,2014,The Bank Job,Passionate Affair,tt0200465\nBcCzxUMcrVc,2008.0,2,11,2014,The Bank Job,Green With Envy,tt0200465\nq14F8WFr7EY,2008.0,11,11,2014,The Bank Job,This One's for Dave,tt0200465\nk3sfGEvPoHs,2008.0,8,11,2014,The Bank Job,Martine's Confession,tt0200465\naMwqijj857s,2008.0,3,11,2014,The Bank Job,The Thermic Lance,tt0200465\nnCLxHi2oZVM,2008.0,6,11,2014,The Bank Job,Let's Make Some Money,tt0200465\n8G84xAalZiY,2008.0,9,11,2014,The Bank Job,You Stole From Me,tt0200465\neIvl2bRW9S8,2008.0,1,11,2014,The Bank Job,Where's the Money?,tt0200465\nMlv16s4DxwI,1950.0,8,10,2014,The Asphalt Jungle,The Truth,tt0042208\n3SYMh5owQcA,1950.0,9,10,2014,The Asphalt Jungle,Play Me a Tune,tt0042208\np2fHtpp_umI,1950.0,10,10,2014,The Asphalt Jungle,The Most Dangerous of Them All,tt0042208\n2RA-7QUYrHA,1950.0,7,10,2014,The Asphalt Jungle,Out for Blood,tt0042208\n48kV7uKAzEU,1950.0,2,10,2014,The Asphalt Jungle,The Job,tt0042208\nGllksI139DM,1950.0,6,10,2014,The Asphalt Jungle,Hoodlums,tt0042208\n-nboVp_nTkg,1950.0,3,10,2014,The Asphalt Jungle,Coppers,tt0042208\ncUEc9ZF3G3M,1950.0,4,10,2014,The Asphalt Jungle,A Double Cross,tt0042208\nEkRzpc98bwc,1950.0,5,10,2014,The Asphalt Jungle,A Left-Handed Form of Human Endeavor,tt0042208\nSQGwcLUuQUs,1979.0,9,12,2014,The Amityville Horror,Carolyn is Possessed,tt0078767\nlJuxU-aVeT4,1979.0,4,12,2014,The Amityville Horror,Trapped in the Closet,tt0078767\newEreSjPyC4,1950.0,1,10,2014,The Asphalt Jungle,Some Sweet Kid,tt0042208\nptBGusJjkTU,1979.0,11,12,2014,The Amityville Horror,I'm Coming Apart!,tt0078767\nC1zseVrJQLk,1979.0,3,12,2014,The Amityville Horror,Aunt Helena Freaks Out,tt0078767\n3rrfqXl52tc,1979.0,7,12,2014,The Amityville Horror,Father Delaney is Speechless,tt0078767\n9LpOzLU5k70,1979.0,12,12,2014,The Amityville Horror,Bleeding House,tt0078767\nadFRKm9ezw4,1979.0,1,12,2014,The Amityville Horror,Flies Attack Father Delaney,tt0078767\n2CM_ZbYvMDI,1979.0,6,12,2014,The Amityville Horror,\"Amy's Friend,  Jody\",tt0078767\nDVAIrYCyB1w,1979.0,10,12,2014,The Amityville Horror,Father Delany's Prayer,tt0078767\n944Xo94Owx4,1979.0,2,12,2014,The Amityville Horror,Axe Man,tt0078767\n6l60PJOMu3U,1979.0,5,12,2014,The Amityville Horror,Window Pain,tt0078767\nWqyvGyBJbcQ,1997.0,9,11,2014,Open Your Eyes,Living a Dream,tt0125659\nIANjTUtZimk,1997.0,7,11,2014,Open Your Eyes,Where's Sofia?,tt0125659\npDEJr2Sqhxc,1979.0,8,12,2014,The Amityville Horror,Kathy Sees Jody,tt0078767\nGU0BYEZb-Xo,1997.0,5,11,2014,Open Your Eyes,Deja Vu,tt0125659\nfgp77jbQkW0,1997.0,3,11,2014,Open Your Eyes,Killer Smile,tt0125659\nvli6rJX8Xac,1997.0,8,11,2014,Open Your Eyes,You're All Mad,tt0125659\nw2T2xsIYH0I,1997.0,4,11,2014,Open Your Eyes,The Car Crash,tt0125659\nrJ9zBV97d5M,1997.0,11,11,2014,Open Your Eyes,All in Your Head,tt0125659\n3zW1STojfq4,1997.0,10,11,2014,Open Your Eyes,I Want to See You,tt0125659\nE6W4v8DYh4c,1997.0,2,11,2014,Open Your Eyes,\"Happy Birthday, Darling\",tt0125659\nr1UKhlSdV-M,1997.0,6,11,2014,Open Your Eyes,Face Off,tt0125659\niBptW_7wlwQ,1997.0,1,11,2014,Open Your Eyes,,tt0125659\nQsveFtQaP7c,2003.0,5,10,2014,Ong Bak,You Disappoint Me,tt0368909\nMNBd97oTtq8,2003.0,2,10,2014,Ong Bak,Knives for Sale,tt0368909\nVjo0hn0kAvY,2003.0,4,10,2014,Ong Bak,Big Bear,tt0368909\nJd86VeZU89A,2003.0,3,10,2014,Ong Bak,Parkour Chase,tt0368909\nGVjV1SKLJ9E,2003.0,1,10,2014,Ong Bak,A Quick Fight,tt0368909\nZVHIsLK07ak,2003.0,6,10,2014,Ong Bak,Three Wheeled Taxi,tt0368909\nwZAxWIJZmo4,2003.0,8,10,2014,Ong Bak,On Fire,tt0368909\n04tTXJeE8Gg,2003.0,9,10,2014,Ong Bak,Ting's Revenge,tt0368909\noYDde0u4TT4,2003.0,7,10,2014,Ong Bak,Saming Beat Down,tt0368909\nhU0v5lzJzXo,2003.0,10,10,2014,Ong Bak,Rescuing Ong-Bak,tt0368909\ntp_djeJB9sQ,2012.0,3,11,2014,One for the Money,Rescued from Ramirez,tt1598828\nIc5tk6Afu0g,2012.0,11,11,2014,One for the Money,Alpha Dog,tt1598828\n6bECCbRJ_UM,2012.0,4,11,2014,One for the Money,Just Got a Gun,tt1598828\nxhhfBsq7qao,2012.0,1,11,2014,One for the Money,Sexy as Hell,tt1598828\nykdrEYrEaZE,2012.0,10,11,2014,One for the Money,Spray Away,tt1598828\nxXTuhmtvXNg,2012.0,9,11,2014,One for the Money,Morty Beyers Goes Bye-Bye,tt1598828\nDkIr_I_E1dE,2012.0,2,11,2014,One for the Money,Target Practice,tt1598828\nQ3gK7Oe5gbM,2012.0,8,11,2014,One for the Money,Strictly Professional,tt1598828\n9UtRH9enIUE,2012.0,7,11,2014,One for the Money,Scumbag Takedown,tt1598828\nTLNhcMerK-U,2012.0,6,11,2014,One for the Money,Eyewitness Story,tt1598828\ndBal-Rb366c,1942.0,9,10,2014,\"Now, Voyager\",A Light That Shines From Within,tt0035140\nXI12czsGYRc,2012.0,5,11,2014,One for the Money,Naked and Handcuffed,tt1598828\nnDKhoXEpIq8,1942.0,6,10,2014,\"Now, Voyager\",Complete Freedom,tt0035140\nE90s7ZR3HNw,1942.0,2,10,2014,\"Now, Voyager\",,tt0035140\naWLRULhIyCE,1942.0,8,10,2014,\"Now, Voyager\",A Mother's Love,tt0035140\niYetsX9JdIU,1942.0,1,10,2014,\"Now, Voyager\",Nervous Breakdown,tt0035140\nvf6PZfksmfg,1942.0,7,10,2014,\"Now, Voyager\",What You've Given Me,tt0035140\nD1hNiK3YZ2A,1942.0,3,10,2014,\"Now, Voyager\",I Wish I Understood You,tt0035140\nDesiCKdiCDo,1942.0,4,10,2014,\"Now, Voyager\",Romantic Survival,tt0035140\nd9K2p6NtV40,1942.0,5,10,2014,\"Now, Voyager\",Immune to Happiness,tt0035140\nf08pzusjWTQ,1942.0,10,10,2014,\"Now, Voyager\",We Have the Stars,tt0035140\nBBdShysGs4Y,2005.0,9,10,2014,North Country,Josey's Painful Past,tt0395972\neSeYw5yaU9A,2005.0,7,10,2014,North Country,A Class Action,tt0395972\nYJLeJG_bG1M,2005.0,10,10,2014,North Country,What Was I Supposed to Do?,tt0395972\n9oRspg2ktcI,2005.0,2,10,2014,North Country,You Gotta Get a Gator Skin,tt0395972\nry88dGpJKZk,2005.0,8,10,2014,North Country,She's Still My Daughter,tt0395972\nyPHYjeHk1YM,2005.0,5,10,2014,North Country,Resignation Effective Immediately,tt0395972\nfGiaJDWSWKE,2005.0,3,10,2014,North Country,Stay the Hell Away From My Husband,tt0395972\nXLk_91MKjgs,2005.0,6,10,2014,North Country,Learn the Rules,tt0395972\nIhTgiNhfF7k,1939.0,7,10,2014,Ninotchka,No One Can Be So Happy,tt0031725\npjmRcGHqKZ0,2005.0,4,10,2014,North Country,Port-O-Potty,tt0395972\n0k8XW2V2dCg,2005.0,1,10,2014,North Country,Take it Like a Man,tt0395972\n2A60QcsJtlE,1939.0,2,10,2014,Ninotchka,Must You Flirt?,tt0031725\nqFOp7gSiC0I,1939.0,3,10,2014,Ninotchka,Your General Appearance is Not Distasteful,tt0031725\naJoVRUNmqIY,1939.0,4,10,2014,Ninotchka,Midnight in Paris,tt0031725\nJIHGn-BwZMM,1939.0,6,10,2014,Ninotchka,I Can't Say It,tt0031725\ndzkjnPSbxJw,1939.0,1,10,2014,Ninotchka,Don't Make An Issue of My Womanhood,tt0031725\nBNxai8Y9IXg,1939.0,9,10,2014,Ninotchka,Endangered By Underwear,tt0031725\nAH9_BGpsNCo,1939.0,10,10,2014,Ninotchka,Missing Paris,tt0031725\njU6nB-uJh68,1939.0,5,10,2014,Ninotchka,Laughs,tt0031725\nbXzp-98u468,1939.0,8,10,2014,Ninotchka,No Visa,tt0031725\njF78Fs72X4Q,2002.0,1,11,2014,Nine Lives,Scottish Mansion,tt0247786\nRn2__xGApzQ,2002.0,6,11,2014,Nine Lives,\"Emma, Calm Down\",tt0247786\nxGGRJg-EzoI,2002.0,7,11,2014,Nine Lives,In the Basement,tt0247786\nCr-WWckkejQ,2002.0,11,11,2014,Nine Lives,The Ultimate Sacrifice,tt0247786\nh3QK9udRbWg,2002.0,8,11,2014,Nine Lives,The Demon in the Closet,tt0247786\nutJWIjtBBvo,2002.0,10,11,2014,Nine Lives,Laura vs. the Demon,tt0247786\n9_ouUNFC5AI,2002.0,3,11,2014,Nine Lives,Give Me One Digit,tt0247786\n371S-YWcKFU,2002.0,4,11,2014,Nine Lives,I Have Returned,tt0247786\nphWjHc6hsRo,2002.0,2,11,2014,Nine Lives,Real Men Don't Wash,tt0247786\nvqgb0X4uuEw,2002.0,5,11,2014,Nine Lives,The First Victim,tt0247786\nAQaOCIrb9Fs,2002.0,9,12,2014,Nicholas Nickleby,Rescuing Smike,tt0309912\nX_KqKO48vwY,2002.0,9,11,2014,Nine Lives,Surprise Attack,tt0247786\nbXtvpRR4VbA,2002.0,6,12,2014,Nicholas Nickleby,The Theatrical Profession,tt0309912\ne0d5svC0xQU,2002.0,4,12,2014,Nicholas Nickleby,Fainting is Romantic,tt0309912\n4ot1Y-WYGCU,2002.0,12,12,2014,Nicholas Nickleby,Save Ourselves Together,tt0309912\nky1semsHhAY,2002.0,11,12,2014,Nicholas Nickleby,One Great Crash,tt0309912\nDX8o_ql6f-E,2002.0,1,12,2014,Nicholas Nickleby,A Brother's Dying Wish,tt0309912\nGBDUy8au-_E,2002.0,10,12,2014,Nicholas Nickleby,Smike's Broken Heart,tt0309912\nd_t77ai5GEk,2002.0,5,12,2014,Nicholas Nickleby,Challenging Squeers,tt0309912\n_zxlffOr1GA,2002.0,8,12,2014,Nicholas Nickleby,A New Salary,tt0309912\nNgSS_lMllOw,2002.0,2,12,2014,Nicholas Nickleby,Squeers' School for Boys,tt0309912\nhGuXSd2s0jI,2002.0,7,12,2014,Nicholas Nickleby,Debut Performance,tt0309912\n1VzqryDpBfM,2002.0,3,12,2014,Nicholas Nickleby,Humble Mrs. Squeers,tt0309912\nEgsFR3Y5XB4,1996.0,5,12,2014,Kama Sutra: A Tale of Love,We Can't Be Together,tt0116743\nQCrKGjDt00c,1996.0,3,12,2014,Kama Sutra: A Tale of Love,You're Welcome to Live With Us,tt0116743\nZ-Hyq9A4vXo,1996.0,7,12,2014,Kama Sutra: A Tale of Love,Sculpt Her,tt0116743\nmvWdOSJ7l2c,1996.0,2,12,2014,Kama Sutra: A Tale of Love,I Work With My Hands,tt0116743\nv14aCycvoYI,1996.0,9,12,2014,Kama Sutra: A Tale of Love,It's Just You and I,tt0116743\nqDAFxENuoCU,1996.0,12,12,2014,Kama Sutra: A Tale of Love,Free Him,tt0116743\nt9do_YtNsnM,1996.0,6,12,2014,Kama Sutra: A Tale of Love,Exhilaration is My Department,tt0116743\n3pdDB7-UcKM,1996.0,11,12,2014,Kama Sutra: A Tale of Love,You Will Die,tt0116743\ngEw3FHiTb1Y,1996.0,8,12,2014,Kama Sutra: A Tale of Love,I Belong to Him Now,tt0116743\nXFoGxUA8btQ,1996.0,10,12,2014,Kama Sutra: A Tale of Love,Fight Me,tt0116743\nBgWOqRD9RPs,1996.0,1,12,2014,Kama Sutra: A Tale of Love,The Dance of Enticement,tt0116743\nEgIkHYVwNrM,1996.0,4,12,2014,Kama Sutra: A Tale of Love,Seductive Position Lesson,tt0116743\n0Z9Pl7oF9dI,2008.0,1,9,2014,W.,The Axis of Evil,tt1175491\nEWvPNbC9KfQ,2008.0,8,9,2014,W.,George and Karl,tt1175491\ncYlCe0SYmWI,2008.0,6,9,2014,W.,Born Again,tt1175491\nyDgZEL9-ITE,2008.0,3,9,2014,W.,Lost in Planning,tt1175491\nYDuDd4tmZps,2008.0,2,9,2014,W.,\"You're Not a Kennedy, You're a Bush\",tt1175491\n_33snCsG6nY,2008.0,4,9,2014,W.,Mano-a-Mano,tt1175491\nVmwM9EXyczw,2008.0,7,9,2014,W.,Dick's Future,tt1175491\nWriOEr0A1tQ,2008.0,5,9,2014,W.,George and Laura,tt1175491\n8Ad8rMLFcRo,2008.0,9,9,2014,W.,Legacy,tt1175491\nDAlyvQ1hNag,2012.0,9,11,2014,Tim and Eric's Billion Dollar Movie,Tim and Eric Fight,tt1855401\nvs6V8EILM0M,2012.0,8,11,2014,Tim and Eric's Billion Dollar Movie,Eric Experiences Shrim,tt1855401\n_nEWjcGHLJk,2012.0,4,11,2014,Tim and Eric's Billion Dollar Movie,We're Dobis P.R.,tt1855401\nTmNPJTt2ZsE,2012.0,7,11,2014,Tim and Eric's Billion Dollar Movie,Katie's Celebrity Balloons,tt1855401\nLLrfSeyGCls,2012.0,10,11,2014,Tim and Eric's Billion Dollar Movie,Taquito and the Wolf,tt1855401\nfhsngAtICiY,2012.0,11,11,2014,Tim and Eric's Billion Dollar Movie,Battling Schlaaang,tt1855401\nV5U2yhrsXv8,2012.0,5,11,2014,Tim and Eric's Billion Dollar Movie,Reggie's Used Toilet Paper,tt1855401\nVB9pptEqFl4,2012.0,3,11,2014,Tim and Eric's Billion Dollar Movie,E-Z Swords,tt1855401\nlu3fmlUJQsE,2012.0,2,11,2014,Tim and Eric's Billion Dollar Movie,Wanna Make a Billion Dollars?,tt1855401\n2G4Vfuk1dJM,2012.0,6,11,2014,Tim and Eric's Billion Dollar Movie,Shrim Alternative Healing Center,tt1855401\nbFWMtZmjwR4,2011.0,1,12,2014,Goon,My Brother's Gay!,tt1456635\nT0StyKPJrNY,2012.0,1,11,2014,Tim and Eric's Billion Dollar Movie,Schlaaang Super Seat,tt1855401\n8QLB_CGDDPY,2011.0,12,12,2014,Goon,Glatt vs. Rhea,tt1456635\nViXH47OcqYA,2011.0,2,12,2014,Goon,Hot Ice,tt1456635\nBGWe0FvWW54,2011.0,7,12,2014,Goon,Glatt Is Promoted,tt1456635\nbVAiU6Jp4FI,2011.0,11,12,2014,Goon,Taking One for the Team,tt1456635\nPFajeb2k24U,2011.0,8,12,2014,Goon,\"I'm Stupid, He's Gay\",tt1456635\nWJOL4xoamoQ,2011.0,5,12,2014,Goon,Gay Porn Hard,tt1456635\nekwnp5L8shM,2011.0,4,12,2014,Goon,Meeting the Team,tt1456635\nTMspI78Dptg,2011.0,9,12,2014,Goon,Brutal Beating,tt1456635\ntgiPVB4iLMQ,2011.0,10,12,2014,Goon,You're a,tt1456635\ncKQf7jAt6xM,2011.0,6,12,2014,Goon,Asking Eva Out,tt1456635\nEmYyxwO2IJI,2011.0,3,12,2014,Goon,You Wanna Be An Assassin?,tt1456635\nFVoOLRhnkYE,1996.0,3,8,2014,The Cable Guy,Roundball Warm-Up,tt0115798\nTVtvBoELA-g,1996.0,5,8,2014,The Cable Guy,Prison Visit,tt0115798\n5ZjdYG61Wpc,1996.0,1,8,2014,The Cable Guy,Cable Install Time,tt0115798\n65yzqqmXs-Q,1996.0,7,8,2014,The Cable Guy,Cable Nightmare,tt0115798\nk1WKpdhcJSo,1996.0,6,8,2014,The Cable Guy,Porno Password,tt0115798\nDtgKqQkglyY,1996.0,2,8,2014,The Cable Guy,Illegal Cable,tt0115798\nTdPu6sQ9l4g,1996.0,4,8,2014,The Cable Guy,Welcome to Medieval Times,tt0115798\nBLz2rixwPpA,1995.0,3,8,2014,Sense and Sensibility,Marianne Falls,tt0114388\nzH8ZeRDlyb4,1996.0,8,8,2014,The Cable Guy,Satellite Fight,tt0115798\nclTG6sYtJig,1995.0,7,8,2014,Sense and Sensibility,A Far More Pleasing Countenance,tt0114388\nWofqydeWMJI,1995.0,4,8,2014,Sense and Sensibility,John Willoughby at Your Service,tt0114388\nnEJKLKKO0uY,1995.0,5,8,2014,Sense and Sensibility,Willoughby!,tt0114388\nIiMacKBYPZg,1995.0,6,8,2014,Sense and Sensibility,\"Yes, No, Never Absolutely\",tt0114388\nIIGAL77OuM0,1995.0,1,8,2014,Sense and Sensibility,A Way With Kids,tt0114388\nt_NZNgm66xI,1995.0,8,8,2014,Sense and Sensibility,Happy Tears,tt0114388\n9lORsaux9Lo,1995.0,2,8,2014,Sense and Sensibility,Edward and Elinor,tt0114388\nZ7VT-r3RB-4,2009.0,4,9,2014,Saw VI,The Choice of Two Lives,tt1233227\nlTWY11J9Z3o,2009.0,9,9,2014,Saw VI,Voice Recognition,tt1233227\nal5NvjTtyTI,2009.0,7,9,2014,Saw VI,The Maze,tt1233227\nn0Fz-ACCMHk,2009.0,2,9,2014,Saw VI,He Did This to Me,tt1233227\n7pk5PLxQXJI,2009.0,6,9,2014,Saw VI,Piranha,tt1233227\nxwMMpJ9EWmE,2009.0,3,9,2014,Saw VI,Breathing Room,tt1233227\nOEw-cBg0lJY,2009.0,1,9,2014,Saw VI,A Pound of Flesh,tt1233227\n3agyeKATELQ,2009.0,8,9,2014,Saw VI,Six Ride the Carousel,tt1233227\nstoxd02ubG4,2009.0,5,9,2014,Saw VI,Do You Like How Brutality Feels?,tt1233227\nR7f2TkxM_rk,1998.0,7,12,2014,The Man in the Iron Mask,Phillipe Replaces Louis,tt0120744\n6cjNvLAvIFs,1998.0,10,12,2014,The Man in the Iron Mask,King Louis Sentences Philippe,tt0120744\nh8c0Q6aqZG8,1998.0,1,12,2014,The Man in the Iron Mask,There Are Riots in Paris,tt0120744\nZqZZftydH0I,1998.0,5,12,2014,The Man in the Iron Mask,I Will Burn in Hell,tt0120744\nOL0I-Tf0QRU,1998.0,4,12,2014,The Man in the Iron Mask,Porthos Tries to Hang Himself,tt0120744\nWrQdlQo-E5Q,1998.0,3,12,2014,The Man in the Iron Mask,You Have the Chance to be a King,tt0120744\nIn9QzIAgiFE,1998.0,8,12,2014,The Man in the Iron Mask,Philippe Takes Over as King,tt0120744\nTv08VahBEBg,1998.0,12,12,2014,The Man in the Iron Mask,D'Artagnan's Sacrifice,tt0120744\nqyj1tT-vqSQ,1998.0,2,12,2014,The Man in the Iron Mask,Philippe Is Freed From the Iron Mask,tt0120744\nhc51ExPQJcQ,1998.0,11,12,2014,The Man in the Iron Mask,All For One,tt0120744\n-tXr3ask1fo,1998.0,6,12,2014,The Man in the Iron Mask,Judgment Day,tt0120744\nhsIdl6x2Lck,1998.0,9,12,2014,The Man in the Iron Mask,Philippe Is Recaptured,tt0120744\n7k9bFzgXeXE,2008.0,9,11,2014,Valkyrie,A Phone Call,tt0985699\nkFa1DI_4vEs,2008.0,2,11,2014,Valkyrie,Retrieving the Liquor Bomb,tt0985699\nAiqgMdj316M,2008.0,11,11,2014,Valkyrie,Fates of the Conspirators,tt0985699\nFyd8tAhnKig,2008.0,10,11,2014,Valkyrie,No One Will Be Spared,tt0985699\nmt0zR2uOAB8,2008.0,7,11,2014,Valkyrie,The Bomb Explodes,tt0985699\n1OUMXpkRHNA,2008.0,5,11,2014,Valkyrie,The Plot to Kill Hitler,tt0985699\nTMvi9NJlv_s,2008.0,3,11,2014,Valkyrie,It Only Matters That We Act Now,tt0985699\nG2SpqqxJiig,2008.0,8,11,2014,Valkyrie,Operation  Is in Effect,tt0985699\nCAYHD5mAsfo,2008.0,1,11,2014,Valkyrie,Death From Above,tt0985699\nuMug9lL1Sgg,2008.0,6,11,2014,Valkyrie,\"No Handed \"\"Heil\"\"\",tt0985699\nFsWEzJJlyi0,2008.0,4,11,2014,Valkyrie,We Have to Kill Hitler,tt0985699\neh4jLrZ2IK4,1990.0,1,12,2014,Men at Work,Golf Clap,tt0100135\ntjJPFWAtG4I,1990.0,6,12,2014,Men at Work,Dead Councilman,tt0100135\nw1iNrckWufI,1990.0,9,12,2014,Men at Work,I Thrive on Misery,tt0100135\n7GDnbK8lTYg,1990.0,4,12,2014,Men at Work,The Pellet Gun,tt0100135\nfNeCsZY7I9o,1990.0,11,12,2014,Men at Work,Kicking Trash,tt0100135\ncpdt1EljZp0,1990.0,2,12,2014,Men at Work,Fun With Trash,tt0100135\nBNWF_QsuetA,1990.0,5,12,2014,Men at Work,Another Man's Fries,tt0100135\nkM781iUqdrI,1990.0,7,12,2014,Men at Work,The Drunk Texan,tt0100135\nvMyTIoLhoZY,1990.0,3,12,2014,Men at Work,Exploding Bags,tt0100135\nDsGsRazwHNc,1990.0,10,12,2014,Men at Work,Cuffed to a Carousel,tt0100135\nuVXQWXpXmvc,1990.0,12,12,2014,Men at Work,Throwing out the Trash,tt0100135\nM7Bao8cJqWw,1990.0,8,12,2014,Men at Work,The Pizza Man Sees Too Much,tt0100135\nRqAmUMayBk4,2006.0,5,8,2014,Saw 3,Don't Become What He Is,tt0489270\nxZw3A072F30,2006.0,7,8,2014,Saw 3,Vengeance Only Makes the Pain Greater,tt0489270\nLGRbJ610dkc,2006.0,2,8,2014,Saw 3,Dead on the Inside,tt0489270\nmwa7-cCuwCI,2006.0,6,8,2014,Saw 3,Skull Surgery,tt0489270\n-UuYTHwZbOQ,2006.0,8,8,2014,Saw 3,The Rack,tt0489270\nR5YZoDFeQlM,2006.0,4,8,2014,Saw 3,Your Life Has Just Begun,tt0489270\nACdEiMqOVvs,2006.0,1,8,2014,Saw 3,Release the Chains,tt0489270\n3UjujuY8fbU,2006.0,3,8,2014,Saw 3,A Shell of Your Former Self,tt0489270\nPNRScegrA_E,2008.0,12,12,2014,Goodbye Solo,Blowing Rock,tt1095442\nKWWQP82Gqt8,2008.0,2,12,2014,Goodbye Solo,Roc,tt1095442\nnIAzIbEBdeM,2008.0,9,12,2014,Goodbye Solo,Stay Out of My Life,tt1095442\npVzqfF-qwlY,2008.0,10,12,2014,Goodbye Solo,My Way,tt1095442\nfqteEi-ypuQ,2008.0,11,12,2014,Goodbye Solo,Mamadou,tt1095442\nb3uEOvtuMyc,2008.0,8,12,2014,Goodbye Solo,Good Times,tt1095442\nW91ITNEiEF4,2008.0,3,12,2014,Goodbye Solo,Childish Dream,tt1095442\nVYZmHG6_7Rg,2008.0,1,12,2014,Goodbye Solo,\"You're Not Gonna Jump, Right?\",tt1095442\nbMemNwITgjA,2008.0,5,12,2014,Goodbye Solo,New Roommate,tt1095442\nVFPAH3uEo_A,2008.0,4,12,2014,Goodbye Solo,Tattoo,tt1095442\nI3GuNWUhXDY,2008.0,6,12,2014,Goodbye Solo,Cell Phone,tt1095442\nZreKuv4qWY8,1979.0,2,11,2014,Gas Pump Girls,The Art of Pumping Gas,tt0077597\nRiOhh4AG0rc,2008.0,7,12,2014,Goodbye Solo,Quiz,tt1095442\nI2ci4vKm_cI,1979.0,9,11,2014,Gas Pump Girls,Grand Theft Auto,tt0077597\nzTV295EGtOk,1979.0,8,11,2014,Gas Pump Girls,Sweet Sensations,tt0077597\nAHV2k4t593E,1979.0,5,11,2014,Gas Pump Girls,Public Nuisance,tt0077597\n4VFhBMwArqs,1979.0,7,11,2014,Gas Pump Girls,Dating a Vulture,tt0077597\ngif34AkAFIg,1979.0,10,11,2014,Gas Pump Girls,Gas Pump Pep Talk,tt0077597\nIQQDJahY-Eg,1979.0,6,11,2014,Gas Pump Girls,Oil Fight,tt0077597\n_INsYrEpEFo,1979.0,11,11,2014,Gas Pump Girls,The Sheik's Entourage,tt0077597\nQoSE9w3o068,1979.0,4,11,2014,Gas Pump Girls,Calling All Motorists,tt0077597\nJLWaJTCL_V4,1979.0,3,11,2014,Gas Pump Girls,First Customer,tt0077597\nKvVR17L6j0E,1979.0,1,11,2014,Gas Pump Girls,June's Lonely,tt0077597\n3FG9eGmAPeY,2010.0,10,11,2014,Furry Vengeance,Bear Attack,tt0492389\n8xBrQp4oZs0,2010.0,2,11,2014,Furry Vengeance,Phase Two,tt0492389\nsdea5Iq5D_U,2010.0,4,11,2014,Furry Vengeance,The Tapping Crow,tt0492389\nEMta7CcNgGs,2010.0,8,11,2014,Furry Vengeance,Crazy Pills,tt0492389\n_ZHytX1097U,2010.0,6,11,2014,Furry Vengeance,Skunked,tt0492389\no8A2gIt799I,2010.0,1,11,2014,Furry Vengeance,\"Give a Hoot, Don't Pollute\",tt0492389\ntVBVeXfbo6k,2010.0,11,11,2014,Furry Vengeance,Raccoon Fight,tt0492389\njmFpZsBB53s,2010.0,9,11,2014,Furry Vengeance,Out For Revenge,tt0492389\nKcLVm5KkTjk,2010.0,7,11,2014,Furry Vengeance,Party Animals,tt0492389\nS3dCv5aTB2c,2010.0,5,11,2014,Furry Vengeance,Nature Fights Back,tt0492389\nlRzsGDSofxo,2010.0,3,11,2014,Furry Vengeance,Let's Play Games,tt0492389\nMmKjw9UGi78,1988.0,5,10,2014,Earth Girls Are Easy,Musical Discoveries,tt0097257\ntp-eANZcnVQ,1988.0,8,10,2014,Earth Girls Are Easy,The Dance-Off,tt0097257\nYhYn-b84MvE,1988.0,3,10,2014,Earth Girls Are Easy,Splash Landing,tt0097257\n_3wnaxan4qw,1988.0,9,10,2014,Earth Girls Are Easy,,tt0097257\nyE0aTqijR3o,1988.0,4,10,2014,Earth Girls Are Easy,Aliens for Lunch,tt0097257\nS9Wi3A3skb0,1988.0,10,10,2014,Earth Girls Are Easy,Cause I'm a Blonde,tt0097257\n8DYT3ysI2UY,1988.0,2,10,2014,Earth Girls Are Easy,Here Comes Dr. Love,tt0097257\nwavVceonMJg,1988.0,7,10,2014,Earth Girls Are Easy,Lost in Space With No Conditioner,tt0097257\nemda_fIsz2o,1988.0,1,10,2014,Earth Girls Are Easy,Brand New Girl,tt0097257\nJEjsNsrZuHI,1965.0,3,12,2014,Dr. Goldfoot and the Bikini Machine,Completely Flat,tt0059124\nBUKTDsI9Rbc,1988.0,6,10,2014,Earth Girls Are Easy,A Zillion Gallons of Nair,tt0097257\nQ1f_3XxcqKc,1965.0,12,12,2014,Dr. Goldfoot and the Bikini Machine,Goodbye Dr. Goldfoot,tt0059124\nmCu3uKNGuZw,1965.0,9,12,2014,Dr. Goldfoot and the Bikini Machine,What Street Was That?,tt0059124\nAB7mSGjpn8c,1965.0,1,12,2014,Dr. Goldfoot and the Bikini Machine,Diane Under Fire,tt0059124\n2JA3UQCYkQs,1965.0,6,12,2014,Dr. Goldfoot and the Bikini Machine,Reject #12,tt0059124\nrHwc3Jc9rD8,1965.0,10,12,2014,Dr. Goldfoot and the Bikini Machine,Cable Car Chase,tt0059124\nBRV1CDa5_Z4,1965.0,4,12,2014,Dr. Goldfoot and the Bikini Machine,Robot Dance Party,tt0059124\n_dm0Oj_fF14,1965.0,5,12,2014,Dr. Goldfoot and the Bikini Machine,Proposing to a Robot,tt0059124\nW2o3KcKAldE,1965.0,2,12,2014,Dr. Goldfoot and the Bikini Machine,A Rotten Girl Like You,tt0059124\nu0wNMcfOIXM,1965.0,8,12,2014,Dr. Goldfoot and the Bikini Machine,The Dungeon,tt0059124\ntCjohxqJ-0c,1965.0,11,12,2014,Dr. Goldfoot and the Bikini Machine,Golden Gate Pursuit,tt0059124\nlVsH8dttw4I,1965.0,7,12,2014,Dr. Goldfoot and the Bikini Machine,Laser Lipstick,tt0059124\nfv34SxLog3o,1985.0,2,11,2014,Creator,A New Assistant,tt0088960\nN204ncRytIE,1985.0,5,11,2014,Creator,Involuntary Workout,tt0088960\nLVYMePfXin8,1985.0,11,11,2014,Creator,Letting Go of Lucy,tt0088960\nPB5bvrhHFIw,1985.0,10,11,2014,Creator,Begging for Barbara's Life,tt0088960\nCmKzzu5ELHU,1985.0,9,11,2014,Creator,Taking a Shower,tt0088960\nCLAepDJtUJU,1985.0,8,11,2014,Creator,The Love Formula,tt0088960\nq6LqVs7P-pI,1985.0,7,11,2014,Creator,The Dinner Party,tt0088960\n5XuaulOD0ZE,1985.0,3,11,2014,Creator,I Want to Be Like You,tt0088960\nalmVKV4ywQQ,1985.0,1,11,2014,Creator,Robot Wake-Up,tt0088960\nLI0o8Nhig1Q,1985.0,6,11,2014,Creator,Meeting Meli,tt0088960\n_NhQKmjXz7c,2008.0,7,10,2014,Copycat,Looking for Someone Special,tt0112722\nic_89aGltSg,2008.0,1,10,2014,Copycat,Hanging with a Killer,tt0112722\nqPVAxNvS1YQ,2008.0,6,10,2014,Copycat,Dahmer Entertains a Victim,tt0112722\nGUoa3MFLEO8,2008.0,9,10,2014,Copycat,Ed Kills Again,tt0112722\nxcgOzHorYag,2008.0,2,10,2014,Copycat,Ramirez Witnesses a Murder,tt0112722\n_1A33xDs0lI,2008.0,4,10,2014,Copycat,We've Got Nothing,tt0112722\nvMwPmm9UmtI,2008.0,8,10,2014,Copycat,Startling Discovery,tt0112722\nXYVKWFL9irA,2008.0,3,10,2014,Copycat,Say You Love Satan,tt0112722\noJuU7gvcwdQ,2008.0,5,10,2014,Copycat,The Oven,tt0112722\n2nhZzcQBkp0,2008.0,10,10,2014,Copycat,To Be Alive,tt0112722\nqDkEnNVpn0g,2007.0,12,12,2014,Bratz,Bratitude,tt0804452\nbc6k19YKBN4,2007.0,10,12,2014,Bratz,Yasmin Quits,tt0804452\nsx_oR6WXO0I,2007.0,8,12,2014,Bratz,Stage Fright,tt0804452\n_JtPO8an9xY,2007.0,5,12,2014,Bratz,Fashion's Like Your Super Power,tt0804452\nggEPIKZuPn4,2007.0,1,12,2014,Bratz,Cheerleader Auditions,tt0804452\nMXM6Hz_ItMw,2007.0,9,12,2014,Bratz,We Don't Have a Name,tt0804452\nL4TIQxyJEcs,2007.0,3,12,2014,Bratz,Detention,tt0804452\nK5xM1SxgD6M,2007.0,11,12,2014,Bratz,It's All About Me,tt0804452\nmKQYPa9Onac,2007.0,6,12,2014,Bratz,Math for Jocks,tt0804452\nl063S2tqZSg,2007.0,2,12,2014,Bratz,Food Fight,tt0804452\n6p6tevRcEXY,2007.0,7,12,2014,Bratz,Fabulous,tt0804452\nr9ma_9tM48k,2007.0,4,12,2014,Bratz,La Cucaracha,tt0804452\nRotJK471KDg,1999.0,1,10,2014,A Slipping-Down Life,You Can Hop Right Out of Here,tt0162662\nplGWKSHrzCk,1999.0,4,10,2014,A Slipping-Down Life,You Know It's Backwards,tt0162662\n4pUPYVW5GWI,1999.0,3,10,2014,A Slipping-Down Life,Just Stood Up and Did It,tt0162662\nLWnHl2_xh4M,1999.0,8,10,2014,A Slipping-Down Life,Family Dinner,tt0162662\nfgDsOV1YKpE,1999.0,6,10,2014,A Slipping-Down Life,Your Face Is So Soft,tt0162662\nOvp4lQhkIGY,1999.0,2,10,2014,A Slipping-Down Life,I Want to Answer Him,tt0162662\nQJOXvLGYEwo,1999.0,10,10,2014,A Slipping-Down Life,Evie Don't Go,tt0162662\n8NSR7Pod8O8,1999.0,5,10,2014,A Slipping-Down Life,I Don't Have That Big a Forehead,tt0162662\ntfqqS90iYKY,1999.0,9,10,2014,A Slipping-Down Life,He's Dying,tt0162662\nr9w5dIeVamA,1999.0,7,10,2014,A Slipping-Down Life,To the Chapel,tt0162662\ndAxijzivjlc,2000.0,3,10,2014,Amores perros,Dog Fight,tt0245712\nyIGiGtjHUS0,2000.0,8,10,2014,Amores perros,Who Paid You to Kill Me?,tt0245712\n5AAni-jpFaU,2000.0,10,10,2014,Amores perros,\"I Love You, My Little Girl\",tt0245712\nf48wH7l3c5I,2000.0,1,10,2014,Amores perros,The Crash,tt0245712\nLzXKQvdRZQU,2000.0,5,10,2014,Amores perros,The Aftermath,tt0245712\n09MjH5hbF5Y,2000.0,2,10,2014,Amores perros,You Don't Scare Me,tt0245712\nzCu2iserep4,2000.0,4,10,2014,Amores perros,Thousands of Rats,tt0245712\nlLepw8cs6eQ,2000.0,7,10,2014,Amores perros,What Happened?,tt0245712\nKGf_Z5s891U,2000.0,6,10,2014,Amores perros,Come Away With Me,tt0245712\nHzv74uI9Cr4,2000.0,9,10,2014,Amores perros,Do I Kill Him?,tt0245712\nC_L23E0FwCs,2011.0,1,12,2014,Albert Nobbs,\"Rich, Young and Handsome\",tt1602098\nViRs8qaB5YQ,2011.0,3,12,2014,Albert Nobbs,Hubert's Story,tt1602098\nyfYKkvq5dow,2011.0,8,12,2014,Albert Nobbs,Chocolates,tt1602098\nBI5u7jAxIjo,2011.0,11,12,2014,Albert Nobbs,Freedom,tt1602098\n1q15xQhI6Lg,2011.0,7,12,2014,Albert Nobbs,Not the Jealous Type,tt1602098\nAiaIf4aJgfE,2011.0,2,12,2014,Albert Nobbs,You're a Woman,tt1602098\nChy1Cu5WOgc,2011.0,5,12,2014,Albert Nobbs,Albert's Story,tt1602098\npnzYOL2o_To,2011.0,10,12,2014,Albert Nobbs,She Was My World,tt1602098\n8ypUiGzOsOs,2011.0,4,12,2014,Albert Nobbs,Who's the Lucky Lady?,tt1602098\n9WpVeYgwugo,2011.0,12,12,2014,Albert Nobbs,You Call That Kissing?,tt1602098\n7m3Mv9f_P1U,2011.0,9,12,2014,Albert Nobbs,This Is Good Stuff,tt1602098\nOCDouPR9v9E,2011.0,6,12,2014,Albert Nobbs,Dreams of America,tt1602098\nfHiIfSLjJE4,2010.0,4,9,2014,Winter's Bone,Cattle Auction,tt1399683\n_83-1qzRNpo,2010.0,1,9,2014,Winter's Bone,Teardrop,tt1399683\nZM3mRir3-LE,2010.0,5,9,2014,Winter's Bone,Roughed Up,tt1399683\nO7wmAaT-TBk,2010.0,9,9,2014,Winter's Bone,A Banjo,tt1399683\n8T2dOyo64Pk,2010.0,3,9,2014,Winter's Bone,Skinning a Squirrel,tt1399683\nQK1Xnd7cPJw,2010.0,2,9,2014,Winter's Bone,Thump's Place,tt1399683\nay13eiuH54U,2010.0,6,9,2014,Winter's Bone,Standing for Family,tt1399683\n1YXJuW9MNGc,2010.0,8,9,2014,Winter's Bone,Daddy's Bones,tt1399683\n5QFPjo1DGE8,2010.0,7,9,2014,Winter's Bone,Pulled Over,tt1399683\n0Qkk8a1IVxQ,2011.0,10,10,2014,Warrior,Brotherly Love,tt1291584\nsy7Lx7jY2SU,2011.0,8,10,2014,Warrior,\"No Win, No Home\",tt1291584\nLkimMjwfjrQ,2011.0,7,10,2014,Warrior,Stop This Ship,tt1291584\nP9clz3jnMVo,2011.0,9,10,2014,Warrior,The Boys Are at it Again,tt1291584\nkKHr9gSW7HM,2011.0,4,10,2014,Warrior,Forgiveness,tt1291584\nPXn6o5uTfEU,2011.0,5,10,2014,Warrior,You Got It,tt1291584\nXVePWDEck4w,2011.0,6,10,2014,Warrior,You're Trying?,tt1291584\n9NErcOfza10,2011.0,2,10,2014,Warrior,Taking Home the Bacon,tt1291584\nf6DDYCf80hw,2011.0,1,10,2014,Warrior,Beating Mad Dog,tt1291584\nEUC3JOXJBYw,2011.0,3,10,2014,Warrior,Mr. Inside Man,tt1291584\nl9k9_K8Tea0,1969.0,5,10,2014,The Wild Bunch,When You Side With a Man,tt0065214\nCYP38A-nwLY,1969.0,7,10,2014,The Wild Bunch,Let's Go,tt0065214\n_ysVoV3x5Zo,1969.0,9,10,2014,The Wild Bunch,Battle of Bloody Porch,tt0065214\n7NReUd2_0u0,1969.0,4,10,2014,The Wild Bunch,Washers,tt0065214\nSt16P31BURU,1969.0,1,10,2014,The Wild Bunch,\"If They Move, Kill 'Em\",tt0065214\ngOJJm_cSRds,1969.0,2,10,2014,The Wild Bunch,Bank Shootout,tt0065214\nR6-LDKl3FOs,1969.0,10,10,2014,The Wild Bunch,Ain't Like It Used to Be,tt0065214\nzT639dQIhck,1969.0,6,10,2014,The Wild Bunch,The Bridge,tt0065214\nyDo7fA8sAlM,1969.0,3,10,2014,The Wild Bunch,He's Mine,tt0065214\nmx15l4L4Zlk,1969.0,8,10,2014,The Wild Bunch,We Want Angel,tt0065214\nc--eNhRG5B4,1960.0,11,12,2014,The Apartment,Ring in the New,tt0053604\n_gOQq1ygJgY,1960.0,12,12,2014,The Apartment,Shut Up and Deal,tt0053604\nsh7lb9j3k5s,1960.0,6,12,2014,The Apartment,The Floating Key,tt0053604\n73BHmDv4qYc,1960.0,5,12,2014,The Apartment,A Flower From Miss Kubelik,tt0053604\nRf7NrtrHs1U,1960.0,1,12,2014,The Apartment,You're on Your Way Up,tt0053604\nAFXFoDiTtmA,1960.0,10,12,2014,The Apartment,All Washed Up,tt0053604\njWt7wiLImmU,1960.0,3,12,2014,The Apartment,We Never Close at Buddy Boy's,tt0053604\nMeQCLsUrCXo,1960.0,9,12,2014,The Apartment,Fruitcake Every Christmas,tt0053604\niFpB2_WOk0Q,1960.0,7,12,2014,The Apartment,Sheldrake Wants the Apartment,tt0053604\n8gGPt8Eg5lw,1960.0,2,12,2014,The Apartment,\"Slow Down, Kid!\",tt0053604\nVKE_B4jMF5Q,1976.0,1,8,2014,Taxi Driver,Travis Visits Betsy,tt0075314\nUneHDzMhbbw,1976.0,6,8,2014,Taxi Driver,Travis Wants to Help Iris,tt0075314\naKUcMTQgl5E,1960.0,4,12,2014,The Apartment,The Best Operator in the Building,tt0053604\n-QWL-FwX4t4,1976.0,5,8,2014,Taxi Driver,You Talkin' to Me?,tt0075314\nFGwRe_5L1WM,1976.0,7,8,2014,Taxi Driver,Suck On This!,tt0075314\n1ve57l3c19g,1976.0,2,8,2014,Taxi Driver,I Gotta Get Organized,tt0075314\nX6frLQWOSlQ,1976.0,4,8,2014,Taxi Driver,A Sick Passenger (Martin Scorsese Cameo),tt0075314\nRq4ucbgrV6U,1976.0,8,8,2014,Taxi Driver,Travis Is a Hero,tt0075314\nLvtFcK8BaY8,1976.0,3,8,2014,Taxi Driver,Travis Supports Palantine,tt0075314\nXVNNkjY2YDQ,2002.0,1,8,2014,Panic Room,I'm Raoul,tt0258000\npdYYAu24yVQ,2002.0,8,8,2014,Panic Room,Unsung Hero,tt0258000\n8XTt2uGxh9E,2002.0,4,8,2014,Panic Room,Get Out of My House!,tt0258000\nHieAi6H3Gxs,2002.0,3,8,2014,Panic Room,The,tt0258000\nv8KA0GieSoE,2002.0,2,8,2014,Panic Room,Discovering the Burglars,tt0258000\nP2p410SndXM,2002.0,7,8,2014,Panic Room,\"Thanks, Burnham\",tt0258000\nF7bAUwj2HEs,2002.0,5,8,2014,Panic Room,Turn the Gas Off!,tt0258000\nSLgV3ynglzg,1987.0,3,11,2014,Moonstruck,Bad Luck,tt0093565\nT8X4r5X9c-Y,1987.0,1,11,2014,Moonstruck,Johnny Proposes,tt0093565\nhYNYTcpIDSs,2002.0,6,8,2014,Panic Room,Hand in the Door,tt0258000\nO66m3X5mYpU,1987.0,2,11,2014,Moonstruck,Bad Blood and Curses,tt0093565\nji9C_R6HLvg,1987.0,5,11,2014,Moonstruck,Ronny Lost His Hand and Bride,tt0093565\nwUPc7frUlD8,1987.0,4,11,2014,Moonstruck,Bring Me the Big Knife!,tt0093565\nk7WkN_gPNaM,1987.0,9,11,2014,Moonstruck,Get In My Bed,tt0093565\n-n3qpOM31Pc,1987.0,6,11,2014,Moonstruck,A Wolf Without a Foot,tt0093565\nAXgHBzoymaQ,1987.0,8,11,2014,Moonstruck,Pop and Mona,tt0093565\nnuVzF_r0kHQ,1987.0,10,11,2014,Moonstruck,Have I Been a Good Wife?,tt0093565\niLgMFwStTHc,1987.0,7,11,2014,Moonstruck,Snap Out of It,tt0093565\nlVmwqKY9BX0,1987.0,11,11,2014,Moonstruck,\"Wedding Off, Wedding On\",tt0093565\n8LbCb592C0g,2011.0,1,12,2014,Melancholia,Armageddon,tt1527186\n2oWgJ75kqxg,2011.0,4,12,2014,Melancholia,Stark Raving Mad,tt1527186\nV53g8B7Ljqg,2011.0,6,12,2014,Melancholia,The Red Star Is Missing,tt1527186\nLYbU_99u22o,2011.0,7,12,2014,Melancholia,That Wonderful Planet,tt1527186\ngd2-0TMNqZw,2011.0,3,12,2014,Melancholia,I Don't Believe in Marriage,tt1527186\nF4-pp1JORFc,2011.0,11,12,2014,Melancholia,Know What I Think of Your Plan?,tt1527186\nxU61FGJ5aHA,2011.0,9,12,2014,Melancholia,It Looks Friendly,tt1527186\n0Q4cKXYFIxU,2011.0,5,12,2014,Melancholia,Sky Lanterns,tt1527186\nvKsWNzKjVEk,2011.0,12,12,2014,Melancholia,At World's End,tt1527186\neQBlcP9ENk8,2011.0,8,12,2014,Melancholia,The Earth Is Evil,tt1527186\n3SIsMAk_Yhw,2011.0,10,12,2014,Melancholia,Hail Storm,tt1527186\nMxlTo0BbQlE,1971.0,2,8,2014,McCabe & Mrs. Miller,A Good Proposition,tt0067411\n4GraEwTsqFs,2011.0,2,12,2014,Melancholia,Wedded Bliss,tt1527186\ncb4dxubPYEs,1971.0,4,8,2014,McCabe & Mrs. Miller,Butler the Bounty Hunter,tt0067411\nAbRlLFpC34s,1971.0,3,8,2014,McCabe & Mrs. Miller,A Stranger Comes to Town,tt0067411\nSU6tW2cZQeI,1971.0,8,8,2014,McCabe & Mrs. Miller,Butler Hunts McCabe,tt0067411\nPBAzBWYoR9U,1971.0,1,8,2014,McCabe & Mrs. Miller,The Arrival of Mrs. Miller,tt0067411\nguK3fiVFU98,1971.0,5,8,2014,McCabe & Mrs. Miller,The Lawyer,tt0067411\nUOYi4NzxlhE,2011.0,3,9,2014,Margin Call,The Music Stops,tt1615147\nLtFyP0qy9XU,2011.0,9,9,2014,Margin Call,It's Just Money,tt1615147\n7LBM8BX4UfU,1971.0,7,8,2014,McCabe & Mrs. Miller,Under the Covers,tt0067411\ne6WyN4z0VGc,2011.0,1,9,2014,Margin Call,Your Opportunity,tt1615147\nxW1CrQu_H6E,2011.0,2,9,2014,Margin Call,\"Hookers, Booze and Dancers\",tt1615147\nm8Mc-38C88g,2011.0,5,9,2014,Margin Call,A Bridge,tt1615147\nag14Ao_xO4c,2011.0,4,9,2014,Margin Call,\"Be First, Be Smarter or Cheat\",tt1615147\nv4P4cS5jKmQ,2011.0,8,9,2014,Margin Call,A Fire Sale,tt1615147\nDDwsfoudwuc,2011.0,7,9,2014,Margin Call,A Mercy Killing,tt1615147\nQNWXsYZWiiA,2011.0,6,9,2014,Margin Call,I'm With the Firm,tt1615147\nj_UtDuZaeZo,-1.0,8,8,2014,Mad Max 2: The Road Warrior,The Final Crash Scene,tt0082694\nBXmMRlQtnP8,-1.0,4,8,2014,Mad Max 2: The Road Warrior,Return of the Rig Scene,tt0082694\nzdr-f3MZgqo,-1.0,1,8,2014,Mad Max 2: The Road Warrior,Meet The Road Warrior Scene,tt0082694\ni2gVXd7FzhQ,-1.0,2,8,2014,Mad Max 2: The Road Warrior,Greetings from the Humungus Scene,tt0082694\nvpir9eGi8Mk,-1.0,5,8,2014,Mad Max 2: The Road Warrior,The Crash of the Interceptor Scene,tt0082694\nbOEcxxyOC-s,-1.0,3,8,2014,Mad Max 2: The Road Warrior,You Talk to Me Scene,tt0082694\n3P4LUt0qcX8,-1.0,7,8,2014,Mad Max 2: the Road Warrior,Tanker Under Attack Scene,tt0082694\nYFWDhaI6BqY,-1.0,6,8,2014,Mad Max 2: The Road Warrior,The Escape Scene,tt0082694\niD3pUnlGJxU,2010.0,7,10,2014,I Saw the Devil,Real Pain,tt1588170\n_nrXdj11-MA,2010.0,6,10,2014,I Saw the Devil,Psycho Killer,tt1588170\nTgaoKPuLtpg,2010.0,1,10,2014,I Saw the Devil,The Devil Attacks,tt1588170\ngKmsNU2CWo0,2010.0,8,10,2014,I Saw the Devil,Drive By,tt1588170\ncJEE1-5uQXI,2010.0,10,10,2014,I Saw the Devil,Revenge,tt1588170\njE5qCSOAsXU,2010.0,5,10,2014,I Saw the Devil,\"Hands, Then Feet\",tt1588170\nwRNOxvIxMpk,2010.0,9,10,2014,I Saw the Devil,You Already Lost,tt1588170\ncMWSTAEs-TA,2010.0,3,10,2014,I Saw the Devil,Captured Killer,tt1588170\nbK3dyRu67A8,2010.0,2,10,2014,I Saw the Devil,Ball Buster,tt1588170\nLJAUOJDM88o,2010.0,4,10,2014,I Saw the Devil,Damn Unlucky,tt1588170\nR2zNRrOXbPY,2010.0,4,5,2014,Harry Potter and the Deathly Hallows: Part 1,Escape From Malfoy Manor,tt0926084\nnlOF6YhAoJQ,2010.0,5,5,2014,Harry Potter and the Deathly Hallows: Part 1,Dobby's Death,tt0926084\nGM5WI4MTXzc,2010.0,1,5,2014,Harry Potter and the Deathly Hallows: Part 1,Dance O Children,tt0926084\nAdaRb_fg8dg,2010.0,2,5,2014,Harry Potter and the Deathly Hallows: Part 1,Harry and Hermione Kiss,tt0926084\nltY3ZLA6dA8,2000.0,2,8,2014,\"Crouching Tiger, Hidden Dragon\",My Name Is Li Mu Bai,tt0190332\nKXIJv1NoXmo,2000.0,7,8,2014,\"Crouching Tiger, Hidden Dragon\",Bamboo Forest Fight,tt0190332\ns1hs62Is67s,2000.0,6,8,2014,\"Crouching Tiger, Hidden Dragon\",The Friendship is Over,tt0190332\nX5SaZ8EmSpw,2000.0,5,8,2014,\"Crouching Tiger, Hidden Dragon\",Invincible Sword Goddess,tt0190332\nsvBPXPXgpqc,2000.0,3,8,2014,\"Crouching Tiger, Hidden Dragon\",Give Me My Comb!,tt0190332\nnoLAdkr7WzY,2000.0,4,8,2014,\"Crouching Tiger, Hidden Dragon\",Some Tea,tt0190332\nrxJiE5EKnD0,2000.0,1,8,2014,\"Crouching Tiger, Hidden Dragon\",The Sword Thief,tt0190332\nx0D4unitqpE,2000.0,8,8,2014,\"Crouching Tiger, Hidden Dragon\",Enlightenment,tt0190332\n3bqc-TIPv4c,2010.0,7,11,2014,13 Assassins,Total Massacre,tt1436045\ndtVoa1vg8qk,2010.0,5,11,2014,13 Assassins,Ready To Die,tt1436045\ntvON7JZAqzY,2010.0,6,11,2014,13 Assassins,Death by Arrows,tt1436045\nNcmpDcaWa3c,2010.0,4,11,2014,13 Assassins,The Foolish Path,tt1436045\nvEfhLwt-8wg,2010.0,1,11,2014,13 Assassins,No Samurai Code,tt1436045\ndNwHQsv3tgE,2010.0,2,11,2014,13 Assassins,Akashi Henchmen,tt1436045\nzhGOkVH91z8,2010.0,3,11,2014,13 Assassins,Forest Guide,tt1436045\n0HSDU71_U-Q,2010.0,11,11,2014,13 Assassins,Death Comes for Us All,tt1436045\nBaSoze4fhGA,2010.0,10,11,2014,13 Assassins,Duel,tt1436045\nnjPq0Ld041k,2010.0,9,11,2014,13 Assassins,The Age of War,tt1436045\n6HwzVqcNaSU,2010.0,8,11,2014,13 Assassins,Kill the Men That Get Past Me,tt1436045\nEwC2ZHxoDu4,1989.0,12,12,2014,Teen Witch,Finest Hour,tt0098453\n5XU9Sz69aKA,1989.0,4,12,2014,Teen Witch,Sex Education,tt0098453\nlZ885HzflVc,1989.0,1,12,2014,Teen Witch,\"Mr. Miller Teaches \"\"Romance\"\"\",tt0098453\noxxBXpnn2Jw,1989.0,10,12,2014,Teen Witch,Top That!,tt0098453\n3GcQp2JJvv0,1989.0,3,12,2014,Teen Witch,Louise's Palm Reading,tt0098453\nlLX3wpgs32Y,1989.0,7,12,2014,Teen Witch,The Anti-Friendship Spell,tt0098453\nvgGb9tSOKbs,1989.0,11,12,2014,Teen Witch,The Most Popular Girl,tt0098453\nHcD7driLtCQ,1989.0,9,12,2014,Teen Witch,A Little Voodoo,tt0098453\nHPeiybjTy3E,1989.0,5,12,2014,Teen Witch,Disappearing David,tt0098453\n9ogtJYnjD1I,1989.0,2,12,2014,Teen Witch,I Like Boys,tt0098453\nW26hbGkeEWo,1989.0,6,12,2014,Teen Witch,Richie the Dog,tt0098453\n0FNk4sNdPtQ,1989.0,8,12,2014,Teen Witch,Manhood!,tt0098453\ngoyoOGbDjNM,1988.0,11,12,2013,Child's Play,Charred Chucky Scene,tt0094862\n4GUk-1i2_Zo,1988.0,8,12,2013,Child's Play,Frying the Doctor Scene,tt0094862\nMM42NkUhSnM,1988.0,3,12,2013,Child's Play,Chucky Doesn't Need Batteries Scene,tt0094862\n8NOmVkx7fWQ,1988.0,2,12,2013,Child's Play,Chucky Blows up Eddie Scene,tt0094862\noXcDMKOD0O0,1994.0,9,12,2013,Wagons East,Big Snake That Makes Women Faint,tt0111653\nsTu7aCTkp9g,2003.0,7,10,2013,I Am David,What Do You See?,tt0327919\nu1Dxy8jBmYE,2003.0,3,10,2013,I Am David,You Have to Smile,tt0327919\nu-oetP_iX_I,2003.0,5,10,2013,I Am David,Let's Eat!,tt0327919\nWRJWb6SViK4,2003.0,6,10,2013,I Am David,The Protest,tt0327919\nE0TmjA1X2N4,2003.0,9,10,2013,I Am David,I've Seen This Book Before,tt0327919\nDo4Z-aFeJMs,2003.0,1,10,2013,I Am David,David Escapes,tt0327919\np-dnhwIY2G0,2003.0,10,10,2013,I Am David,Going Home,tt0327919\nJ-8l4bdfL9g,2003.0,8,10,2013,I Am David,Most People Are Good,tt0327919\n9CSMoJr51IQ,2003.0,2,10,2013,I Am David,This is Your Journey,tt0327919\ncs6MZqTBBC0,1994.0,3,12,2013,Wagons East,That's a Sign,tt0111653\nSehEKk2gcSc,1988.0,2,11,2013,The Couch Trip,Burns Jumps,tt0094910\njSabMn5UXKo,1989.0,7,10,2013,Red Riding Hood,Man Without a Heart,tt0385988\nLz3XcjwKGmQ,1988.0,9,11,2013,The Couch Trip,Bus Therapy,tt0094910\nb2gz0vSh0J4,1980.0,5,11,2013,The Long Riders,You're a Whore,tt0081071\n8oDxIAKnWx4,1974.0,6,12,2013,Truck Turner,Funeral for a Pimp,tt0072325\nBZH32FuXeF4,1994.0,12,12,2013,Wagons East,Ambiguously Gay Duel,tt0111653\nlVQgRd34Dlk,1994.0,7,12,2013,Wagons East,Sharing Feelings with Men,tt0111653\ncqwrFYjHahk,1994.0,10,12,2013,Wagons East,\"Belle, Not Just a Whore\",tt0111653\nkUkbUoZ__X0,1994.0,5,12,2013,Wagons East,My Doll,tt0111653\nliH8CRkWl3Q,1994.0,2,12,2013,Wagons East,Phil's Cow,tt0111653\naVEtuBwgly0,1994.0,1,12,2013,Wagons East,Pride & Prejudice,tt0111653\nOaZ30IajJ2w,1994.0,6,12,2013,Wagons East,Lighting Farts on Fire,tt0111653\niaQdh-Hbp3I,1974.0,7,12,2013,Truck Turner,Your Ass Belongs to Me,tt0072325\n5938LUU-UAY,1994.0,4,12,2013,Wagons East,James Harlow Wagon Master,tt0111653\n6Mwtt_EKIQk,1994.0,8,12,2013,Wagons East,Indian Country,tt0111653\njArxL-3-j94,1994.0,11,12,2013,Wagons East,Explosive Booby Trap,tt0111653\nVqtAA8dO7Ww,1984.0,3,10,2013,Missing in Action,\"If You Move, I'll Kill You\",tt0087727\njWJqzIUntho,1958.0,7,10,2013,The Big Country,Fighting Words,tt0051411\nzpQFjWoRhGc,1984.0,8,10,2013,Missing in Action,Braddock Bombs the Camp,tt0087727\n3lyx7UsMqmc,1988.0,4,12,2013,Child's Play,Chucky Escapes Scene,tt0094862\nikfmhFpbWJk,1991.0,6,12,2013,Not Without My Daughter,I Won't Leave Her,tt0102555\nOeUbPposwAo,1987.0,4,12,2013,No Way Out,Tell Me Who It Is!,tt0093640\nWIZ0J4rWO88,1982.0,7,12,2013,The Beast Within,I Warned You,tt0083629\n3fIng0TRjXI,1992.0,9,12,2013,Love Field,He Never Touched Me,tt0104765\nw0l1ukaxeBg,1956.0,7,11,2013,The Killing,Dead at 4:24,tt0049406\nC94ag0ondig,1959.0,9,10,2013,The Angry Red Planet,The Cure,tt0052564\ni-bRuSNSvcU,1980.0,3,10,2013,Motel Hell,Farmer Vincent Fritters!,tt0081184\nmAeceNqeNtQ,1982.0,12,12,2013,The Beast Within,So Much Blood,tt0083629\nAguptuYeDRU,1959.0,7,8,2013,The Fugitive Kind,Lady Needs Val,tt0052832\nCiOFGnNgnnc,1982.0,5,12,2013,Still of the Night,Park Pursuit,tt0084732\nUPaTwmDXLWE,1978.0,5,12,2013,The Great Train Robbery,Prison Break,tt0079240\nQDNELnksfnw,2002.0,3,10,2013,The Crocodile Hunter: Collision Course,Fun With a Snake,tt0305396\nGMiD6PU8SKI,1958.0,4,10,2013,The Big Country,Rufus Crashes the Party,tt0051411\na_aZ01raOoI,2002.0,4,10,2013,The Crocodile Hunter: Collision Course,Saving the Joey,tt0305396\nMlD51EzRE7c,1990.0,5,11,2013,Stanley & Iris,He Can't Read and He Can't Write,tt0100680\n0pVwRO2dFVs,1985.0,3,10,2013,The Mean Season,The Killer Calls Again,tt0089572\njcTv-BEwabk,1955.0,3,11,2013,The Night of the Hunter,Love and Hate,tt0048424\nyx2giHzJ4-I,1981.0,9,11,2013,The French Lieutenant's Woman,There Was Madness in Me,tt0082416\nMBfp_LuEfqA,1959.0,4,8,2013,The Fugitive Kind,Dead People Don't Talk,tt0052832\nDKwC6X7_JU0,1968.0,2,11,2013,The Party,Hrundi Blows It,tt0063415\n5485fd0CtKw,1963.0,8,10,2013,The Pink Panther,Two Monkeys,tt0057413\n3gDvO7H5iEA,1990.0,9,10,2013,The Russia House,Grown-Up Love,tt0100530\n4SzQZn8xGnA,1981.0,8,11,2013,The French Lieutenant's Woman,A Proper Talk,tt0082416\nq3a5wxfm13Q,1963.0,6,10,2013,The Pink Panther,Clouseau Visits the Princess,tt0057413\nW2Et5nGF5C4,1959.0,2,8,2013,The Fugitive Kind,Carol Knows Val,tt0052832\nG5sYuuD7ixA,1963.0,9,10,2013,The Pink Panther,Porridge With the Lyttons,tt0057413\nkEsfYG_bF-E,1963.0,7,10,2013,The Pink Panther,I'll Have Your Stripes,tt0057413\n77KnithfRRk,1961.0,2,10,2013,West Side Story,Love At First Sight,tt0055614\nL0rNCGRjvtU,1987.0,3,11,2013,Throw Momma from the Train,Dreams of Stabbing Momma,tt0094142\noepaVuuBAtA,1960.0,3,12,2013,The Magnificent Seven,We Need Help,tt0054047\nSwI_ITgsSks,1999.0,8,12,2013,The Mod Squad,Officer Pete,tt0120757\ntLzcAofC4WA,1999.0,2,12,2013,The Mod Squad,I Was Blending,tt0120757\nOuEmfmfgw2Y,1955.0,4,11,2013,The Night of the Hunter,Harry Murders Willa,tt0048424\nsiHzbnn1Bxw,2003.0,11,11,2013,Uptown Girls,Slaps and Hugs,tt0263757\nJyxSm91eun4,1955.0,10,11,2013,The Night of the Hunter,Leaning on the Everlasting Arms,tt0048424\nlQ8JIa98kAw,1980.0,2,11,2013,The Long Riders,Good Ol' Rebel,tt0081071\nmeZXqa_CE_o,1973.0,5,11,2013,White Lightning,Sheriff J.C. Connors,tt0070915\nLDxOZ6cv-DU,1989.0,2,12,2013,UHF,Meeting Pamela,tt0098546\nS4s8LTNnufA,1989.0,2,10,2013,The Phantom of the Opera,You're Suspended,tt0098090\nQFQ4izzxtec,1974.0,2,12,2013,Truck Turner,Follow the Bouncing Ball,tt0072325\naikBhgSFE2A,2003.0,8,11,2013,Uptown Girls,Molly Opens Up,tt0263757\nsbJ89LFheTs,1991.0,12,12,2013,The Silence of the Lambs,Having an Old Friend for Dinner,tt0102926\nfSNdh-3k6-g,1974.0,11,12,2013,Truck Turner,vs. Harvard Blue,tt0072325\njWQ1ITS94cA,1983.0,8,11,2013,WarGames,It's a Bluff,tt0086567\n_cmX1kEbl4g,1999.0,1,12,2013,The Mod Squad,Not Real Cops,tt0120757\nBtdp-sC8MJI,1989.0,8,12,2013,UHF,Teaching Poodles How to Fly,tt0098546\na5WAyc-EaNc,2003.0,7,11,2013,Uptown Girls,It's a Harsh World,tt0263757\nLfxeHobEC9g,1987.0,7,11,2013,Throw Momma from the Train,Larry Warns Momma,tt0094142\n33KUnZf841c,2003.0,4,11,2013,Uptown Girls,Oh... My... God...,tt0263757\nfaRFVdrRpws,1983.0,7,7,2013,Yentl,Piece of Sky,tt0086619\niWGL8PRdM7E,1974.0,10,12,2013,Truck Turner,Rooftop Kills,tt0072325\nWCES5LXQn9M,1983.0,2,7,2013,Yentl,\"Papa, Can You Hear Me?\",tt0086619\nRzGyyYgXffQ,1973.0,10,11,2013,White Lightning,Sister Linda's Home of Unwed Mothers,tt0070915\n6bxEuaulT4k,1986.0,2,11,2013,Stagecoach,Manifest Destiny,tt0092003\nb6xbga06ApQ,1991.0,3,12,2013,Not Without My Daughter,Will You Translate for Me?,tt0102555\nb9KCMBBn0EI,1984.0,9,9,2013,Breakin' 2: Electric Boogaloo,Dancing for a Miracle,tt0086999\nbsaA903oxvc,1984.0,2,9,2013,Breakin' 2: Electric Boogaloo,Dance Combat,tt0086999\nOF-QIOuucVk,1974.0,10,12,2013,The Taking of Pelham One Two Three,Runaway Train,tt0072251\n0A9ppII7eVA,1974.0,8,11,2013,Lenny,Dirty But Not Obscene,tt0071746\n2_iIEQ-hlKc,1984.0,4,10,2013,Missing in Action,Bulletproof Raft,tt0087727\nsua9tcQ14hs,1984.0,10,10,2013,Missing in Action,Chopper to Saigon,tt0087727\nPlGtHAZOWbo,1997.0,8,11,2013,Gang Related,Suspicions,tt0118900\nIW7worFAFlU,1984.0,5,10,2013,Missing in Action,Wardrobe Attack,tt0087727\n1zOmRBOYLpc,1984.0,1,10,2013,Missing in Action,Double Grenade Jump,tt0087727\nFlB2v8LQHDM,1984.0,6,10,2013,Missing in Action,Destruction Derby,tt0087727\nlSzT54HTpeY,1984.0,9,10,2013,Missing in Action,Watery Vengeance,tt0087727\nccU8NJFeBSA,1984.0,7,10,2013,Missing in Action,Fortunes of War,tt0087727\nCe0zSR2ParE,1984.0,2,10,2013,Missing in Action,Braddock Kills a TV,tt0087727\nvlZQj4OrTUM,2002.0,9,11,2013,Hart's War,We Served Our Country,tt0251114\n0xJcu3vc9tI,1973.0,11,11,2013,Scorpio,The Object Is Not to Win,tt0070653\nE5VOPMr7SKg,1989.0,5,10,2013,Red Riding Hood,The,tt0385988\nK2Lt0Ek64eM,1980.0,7,10,2013,Motel Hell,I've Got a Treat For Ya,tt0081184\nAx1Vgvp5Cls,1980.0,5,10,2013,Motel Hell,Fake Cows,tt0081184\ndso8WOrSRSQ,1959.0,6,10,2013,The Angry Red Planet,It's Alive!,tt0052564\nr6fpS6P16NI,1980.0,6,10,2013,Motel Hell,Gassing the Swingers,tt0081184\n844ONMSqRWU,1959.0,1,10,2013,The Angry Red Planet,Return to Earth,tt0052564\ne89qDsf6Q3g,1959.0,4,10,2013,The Angry Red Planet,Remembering the Horror,tt0052564\nkTXppLCyuOk,1991.0,12,12,2013,Not Without My Daughter,We're Home,tt0102555\nWvQTrzonQAs,1959.0,3,10,2013,The Angry Red Planet,Flirting All the Way to Mars,tt0052564\nXYrGVKzAJjQ,1987.0,5,12,2013,No Way Out,National Security,tt0093640\n0zLL_XdqxmQ,1987.0,9,12,2013,No Way Out,I'm the One in the Picture,tt0093640\nlD7Xo_FhL4s,1987.0,2,12,2013,No Way Out,Secret Affair,tt0093640\nGZJ6sC4nKNc,1991.0,8,12,2013,Not Without My Daughter,I Want My Baby!,tt0102555\nA4E1rEzhnz8,1985.0,4,12,2013,Once Bitten,Laundromat Ladies,tt0089730\nsRwqd3eCNUY,1991.0,4,12,2013,Not Without My Daughter,An Iranian Citizen,tt0102555\ntDWQvA6IhG8,1985.0,6,12,2013,Once Bitten,Vampire's Dream,tt0089730\nlhGtoYnSdl8,1985.0,10,12,2013,Once Bitten,I'm a Day Person,tt0089730\nEdN4MiVmI74,1987.0,6,12,2013,No Way Out,The Job,tt0093640\n-kkP1Pvzvgs,1980.0,1,10,2013,Motel Hell,Buried Heads,tt0081184\n8riyzFyGdVo,1991.0,7,12,2013,Not Without My Daughter,Where Have You Been?,tt0102555\ndm3xv5sosng,1991.0,1,12,2013,Not Without My Daughter,Violating Sharia Dress Code,tt0102555\ndaoD1UtU5XI,1987.0,7,12,2013,No Way Out,The Magnitude of the Scandal,tt0093640\nyh17pzVY6BE,1980.0,8,10,2013,Motel Hell,Ida is Attacked,tt0081184\nY_lgyJtcb2A,1987.0,10,12,2013,No Way Out,Sam's Confession,tt0093640\nDCUGRi_FlNE,1985.0,11,12,2013,Once Bitten,After That Virgin!,tt0089730\nPrjcxNpxOos,1991.0,9,12,2013,Not Without My Daughter,Paradise,tt0102555\n5BL7Fj5SUhU,1985.0,8,12,2013,Once Bitten,Vampire Research,tt0089730\nMvu47rYJ1Y4,1986.0,4,11,2013,Otello,Planting the Seeds,tt0091699\n_uHTonkUqW4,1985.0,1,12,2013,Once Bitten,Countess Seduces Mark,tt0089730\nb9EAfTyu5_I,1980.0,10,10,2013,Motel Hell,You Take Care of My Animals...,tt0081184\nt3c_a9M1E7s,1985.0,9,12,2013,Once Bitten,Rescuing Robin,tt0089730\ncEPa4RFLJ-0,1987.0,12,12,2013,No Way Out,A Hero of the Soviet Union,tt0093640\nXRGOhLyLS9Q,1992.0,4,10,2013,Of Mice and Men,Candy's Old Dog,tt0105046\nzJQujcyncBk,1959.0,7,10,2013,The Angry Red Planet,Leviathan & The City,tt0052564\nAXsbWJC8VM4,1987.0,11,12,2013,No Way Out,Men of Power,tt0093640\n_kKO_1Dr4Go,1985.0,5,12,2013,Once Bitten,Mark Hisses at Kids,tt0089730\nJMlpAPKDm2s,1985.0,2,12,2013,Once Bitten,Did I Enjoy It?,tt0089730\n6lYiLycAQSo,1987.0,8,12,2013,No Way Out,They'll Kill You,tt0093640\n7WQTYb36Cew,1959.0,10,10,2013,The Angry Red Planet,Parting Martian Warning,tt0052564\nwz29yiGSrB0,1959.0,8,10,2013,The Angry Red Planet,Expunging Radiation,tt0052564\nx6fpplPaxG0,1985.0,3,12,2013,Once Bitten,Mark's Sexual Failures,tt0089730\nc6ik-AA87Uo,1980.0,4,10,2013,Motel Hell,Feeding the Heads,tt0081184\n2xRlAbbcG0Y,1992.0,9,10,2013,Of Mice and Men,Where We Gonna Go Now?,tt0105046\nNT_hyjakJEI,1991.0,5,12,2013,Not Without My Daughter,A Fellow American,tt0102555\njZyhfkpsGGI,1980.0,9,10,2013,Motel Hell,Chainsaw Fight!,tt0081184\nDCM-sEpyh1Q,1992.0,1,10,2013,Of Mice and Men,Lennie's Dead Mouse,tt0105046\nbR2Uon5BWC0,1992.0,6,10,2013,Of Mice and Men,Lennie Fights Back,tt0105046\n65XtOM1UUGw,1959.0,2,10,2013,The Angry Red Planet,Memoirs of a Radioactive Meteor,tt0052564\n5Ddap2Pyhtw,1992.0,10,10,2013,Of Mice and Men,George Shoots Lennie,tt0105046\n5GyAcr1BrNA,1987.0,1,12,2013,No Way Out,The Inaugural Ball,tt0093640\n16bGLMEtAww,1992.0,2,10,2013,Of Mice and Men,The Loneliest Guys in the World,tt0105046\nmpDnD5Pp90I,1991.0,10,12,2013,Not Without My Daughter,You Can't Leave Her Here,tt0102555\nD7MotG6VP4I,1985.0,5,10,2013,The Mean Season,Leaving is Just a Formality,tt0089572\nd1lql0Z0e-E,1985.0,7,12,2013,Once Bitten,No Reflection,tt0089730\n6UwcLeAV31Q,1986.0,10,11,2013,Otello,Kills Desdemona,tt0091699\n_wLWdDRIkis,1980.0,2,10,2013,Motel Hell,Ida Helps Bob Get Ahead.,tt0081184\nN69MOeO5bi0,1987.0,3,12,2013,No Way Out,Leaving by the Back Door,tt0093640\nlyu3QUjAFtw,1986.0,2,11,2013,Otello,A Song of Love,tt0091699\n03L12Mqkzg8,1985.0,12,12,2013,Once Bitten,Mark Finally Scores,tt0089730\nZ-Hye1zg5IU,1959.0,5,10,2013,The Angry Red Planet,Hysterical Female vs. Carnivorous Plant,tt0052564\ngLB9F9QftwM,1986.0,11,11,2013,Otello,Dies,tt0091699\nLS6oxPMMdas,1986.0,8,11,2013,Otello,Accuses Desdemona,tt0091699\n81fH2bYF59g,1985.0,9,10,2013,The Mean Season,A Tape for Malcolm,tt0089572\nk6_nTAS1M4M,1992.0,7,10,2013,Of Mice and Men,A Natural,tt0105046\nCxkpSGI8L8o,1986.0,3,11,2013,Otello,You Loved Me For My Misfortunes,tt0091699\nKggovdPWfpk,1985.0,1,10,2013,The Mean Season,News Gets Made Somewhere Else,tt0089572\nKeejr4iFv5A,1986.0,6,11,2013,Otello,Cassio's Dream,tt0091699\nXHGWTDHchVQ,1992.0,8,10,2013,Of Mice and Men,I Done a Bad Thing,tt0105046\nLfKPfJmfGgU,1985.0,4,10,2013,The Mean Season,Reporting or Participating?,tt0089572\nJPtEnl6MpHU,1986.0,9,11,2013,Otello,Preparing for Death,tt0091699\n8-ECgs93q1A,1986.0,5,11,2013,Otello,The Green-Eyed Monster,tt0091699\nbWm1GC01kGo,1985.0,6,10,2013,The Mean Season,Meeting in Person,tt0089572\nyEYUc9oIVD8,1991.0,2,12,2013,Not Without My Daughter,I Want Us to Live in Iran,tt0102555\nsO2RBLeWYyg,1992.0,3,10,2013,Of Mice and Men,Curley's Wife Seduces George,tt0105046\nLL2LvzUVsZw,1991.0,11,12,2013,Not Without My Daughter,I Forgot Toby Bunny,tt0102555\nhJUtiOm9dLY,1992.0,5,10,2013,Of Mice and Men,The Plan Is Set,tt0105046\nUr3uTKbrqIQ,1986.0,1,11,2013,Otello,Long Live !,tt0091699\n_f_1Or6RhiQ,1985.0,2,10,2013,The Mean Season,The Killer Calls,tt0089572\nzDRmwZxOJ4o,1986.0,7,11,2013,Otello,Vengeance,tt0091699\n__3ylv_JWqw,1985.0,10,10,2013,The Mean Season,Shoot Him!,tt0089572\nXwS5WsjPg9U,1988.0,10,11,2013,The Boost,Lenny Ruins the Deal,tt0094783\n7jtGp6xaVPU,1985.0,8,10,2013,The Mean Season,Nothing Is Important,tt0089572\nhy0b9Rz31Zs,1982.0,3,12,2013,Still of the Night,Glad He's Dead,tt0084732\npwqOYWnLxBo,1958.0,3,10,2013,The Big Country,Riding Old Thunder,tt0051411\n4vmjX0sQrIc,1988.0,11,11,2013,The Boost,Junkie,tt0094783\ntYGiUUnoZhk,1958.0,6,10,2013,The Big Country,Shall I Go On?,tt0051411\n9ioRMsPEf8o,1958.0,9,10,2013,The Big Country,Jim Duels Buck,tt0051411\niltOTKedsM0,1958.0,1,10,2013,The Big Country,Harassing Jim and Pat,tt0051411\neFd0VyfLf1M,1988.0,8,11,2013,The Boost,I'm Pregnant,tt0094783\nnQIfRCUlfz4,1958.0,10,10,2013,The Big Country,A Cowardly End,tt0051411\nc2tWZFAL5t4,1985.0,7,10,2013,The Mean Season,Jumping the Bridge,tt0089572\nY52_WuvyKoo,1988.0,5,11,2013,The Boost,Killing the Old Fireball,tt0094783\nlh6Y9EU0wPQ,1988.0,1,11,2013,The Boost,Till I Fall Off the Earth,tt0094783\n2KfWymDaTmA,1958.0,5,10,2013,The Big Country,Steve Manhandles Pat,tt0051411\nOvaNgegisKU,1988.0,3,11,2013,The Boost,Leap Through Life,tt0094783\nKujzb5PT5ns,1988.0,9,11,2013,The Boost,Relapse,tt0094783\neZp6EmVqq5o,1958.0,2,10,2013,The Big Country,Hunting the Hannasseys,tt0051411\npIvTIG3tWok,1980.0,3,8,2013,The Apple,,tt0078790\n2xujTq-ueyo,1988.0,4,11,2013,The Boost,Hollywood Party,tt0094783\nZnsLPtYvqj8,1988.0,7,11,2013,The Boost,Bad Reaction,tt0094783\nIC5DpSRkHps,1988.0,6,11,2013,The Boost,The First Taste,tt0094783\nAZIlLRwCn08,1984.0,6,11,2013,The Bounty,The Loyalists Are Castaway,tt0086993\nPj4y9M7cPy0,1980.0,2,8,2013,The Apple,Showbizness,tt0078790\nLPxNka5Ll5U,1988.0,2,11,2013,The Boost,Will It Sell? Will It Soar?,tt0094783\noYx2teRxnvw,1984.0,7,11,2013,The Bounty,Lost At Sea,tt0086993\nZFM-OxDGrkg,1984.0,5,11,2013,The Bounty,Mutiny,tt0086993\niFnPpSNqKYU,1982.0,5,12,2013,The Beast Within,I Came Back,tt0083629\nbEA-o4IJAic,1958.0,8,10,2013,The Big Country,A Rare Man,tt0051411\nr1jgKSXPL84,1984.0,1,11,2013,The Bounty,Gag Them Both,tt0086993\ngqRIBKn09_M,1980.0,4,8,2013,The Apple,How to Be a Master,tt0078790\n-O3_WO63fhU,1980.0,6,8,2013,The Apple,Cry For Me,tt0078790\nLVKODpCrCpw,1980.0,5,8,2013,The Apple,Speed,tt0078790\nRoP15HrFNu4,1984.0,8,11,2013,The Bounty,Divvying Up the Spoils,tt0086993\n1XUHPC3s3rM,1972.0,7,10,2013,The Mechanic,Motorcycle Chase,tt0068931\n9bVHNqrqvjI,1982.0,3,12,2013,The Beast Within,The Dog Finds a Hand,tt0083629\ny_P5zX0ejXI,1980.0,7,8,2013,The Apple,Coming for You,tt0078790\nlKJ8pyN8Cm4,1982.0,10,12,2013,The Beast Within,The Judge Confesses,tt0083629\nRdL23CR9K5w,1982.0,11,12,2013,The Beast Within,The Judge Loses His Head,tt0083629\nz4edIxzhU80,1984.0,9,11,2013,The Bounty,\"Civilized Men, Not Savages\",tt0086993\n5DYK9Xq-aF0,1984.0,10,11,2013,The Bounty,\"Land, Ho!\",tt0086993\nKDc6dZxh0Cs,1984.0,2,11,2013,The Bounty,Second in Command,tt0086993\nsnKDmQJqQ1E,1982.0,2,12,2013,The Beast Within,Fresh Meat,tt0083629\nNSuYLeI3d1U,1982.0,8,12,2013,The Beast Within,Kill Me!,tt0083629\nAlIvRiDePlY,1982.0,6,12,2013,The Beast Within,A Taste for Blood,tt0083629\nFVEiScxUQyY,1984.0,3,11,2013,The Bounty,Mixing With the Natives,tt0086993\nR5UsZ1yoTO8,1972.0,5,10,2013,The Mechanic,Skeet Practice,tt0068931\nKIE436-2xcE,1982.0,1,12,2013,The Beast Within,The Beast Awakens,tt0083629\nYDCHojBWEhg,1982.0,4,12,2013,The Beast Within,A Murderer Running Loose,tt0083629\n3Lf57-rBck8,1972.0,10,10,2013,The Mechanic,See Naples and Die,tt0068931\nWdD2JN10zpY,1982.0,9,12,2013,The Beast Within,The Beast Emerges,tt0083629\nk-WrZcFJo2k,1984.0,4,11,2013,The Bounty,Stolen Coconuts,tt0086993\nIaoE6JAGhh8,1962.0,3,10,2013,The Miracle Worker,Helen's First Lesson,tt0056241\nJrGE2knBQsM,1972.0,6,10,2013,The Mechanic,Killer Heroes,tt0068931\nNk4JsPf8xX4,1962.0,5,10,2013,The Miracle Worker,Annie Is Reminded of Her Past,tt0056241\nzm7wCb8IXx4,1972.0,2,10,2013,The Mechanic,Killing Big Harry,tt0068931\nC2YKcU5rfm0,1980.0,8,8,2013,The Apple,Child of Love,tt0078790\nNt9wqkbXyyU,1962.0,10,10,2013,The Miracle Worker,Helen Kisses Annie Goodnight,tt0056241\nFD9lsX7gyeo,1985.0,10,10,2013,The Falcon and the Snowman,Predatory Behavior,tt0087231\n4Spw9eH9GBk,1985.0,6,10,2013,The Falcon and the Snowman,It's Not Over,tt0087231\nbCk9vtlnr34,1972.0,9,10,2013,The Mechanic,Bulldozing!,tt0068931\nQ067OuCUl7o,1984.0,11,11,2013,The Bounty,Exonerated,tt0086993\nrxwADdYa0YM,1995.0,10,10,2013,The Fantasticks,They Were You,tt0113026\ny7rxncDh6io,1985.0,5,10,2013,The Falcon and the Snowman,We Were Altar Boys Together,tt0087231\ne0cR6R3SccI,1972.0,1,10,2013,The Mechanic,\"Ready, Aim, Fire!\",tt0068931\n_W1NRq6DekY,1962.0,4,10,2013,The Miracle Worker,Helen's Table Manners,tt0056241\nPXBBHe_SwSs,1972.0,4,10,2013,The Mechanic,An Associate,tt0068931\nWoDvOu6PqLk,1972.0,3,10,2013,The Mechanic,Slow Sleepy Suicide,tt0068931\nLIugIUixU_0,1980.0,1,8,2013,The Apple,Do the BIM!,tt0078790\nNZqeFQasslA,1995.0,5,10,2013,The Fantasticks,El Gallo,tt0113026\nealJoNJuKnY,1985.0,4,10,2013,The Falcon and the Snowman,Time to Diversify,tt0087231\nYBqruLJZAcg,1972.0,8,10,2013,The Mechanic,Shotgun Attack,tt0068931\nX115jd2e6e8,1995.0,4,10,2013,The Fantasticks,Romeo & Juliet,tt0113026\nX03tbD886IQ,1988.0,6,11,2013,The Couch Trip,Teensy Tadpoles of Concern,tt0094910\ntfGpUcIEIf0,2002.0,1,10,2013,The Crocodile Hunter: Collision Course,What a Steamer!,tt0305396\nBEkjNAsakzA,1962.0,1,10,2013,The Miracle Worker,She Can't See or Hear,tt0056241\ng3jImb6V4wI,1995.0,2,10,2013,The Fantasticks,Fighting Neighbors,tt0113026\nyY6EgYygsAg,1985.0,2,10,2013,The Falcon and the Snowman,Courier Undependable,tt0087231\nZe8Yt5V7T6A,1962.0,2,10,2013,The Miracle Worker,She Wants to Talk Like You and Me,tt0056241\nyUgQNj5-PaY,1985.0,8,10,2013,The Falcon and the Snowman,I Am a Tourist,tt0087231\n_mVT_JmJ2Bo,2002.0,10,10,2013,The Crocodile Hunter: Collision Course,Croc on Board,tt0305396\nzMNUcNokvkU,1978.0,11,12,2013,The Great Train Robbery,The Trial,tt0079240\nuSvAfRaxSu4,1995.0,8,10,2013,The Fantasticks,Sword Defeat,tt0113026\ngbEDjhLuPAs,1985.0,3,10,2013,The Falcon and the Snowman,Surprise Inspection,tt0087231\nAwMjkeZbRZ0,1988.0,8,11,2013,The Couch Trip,Cease & Desist,tt0094910\nJmcifAkvDn4,1988.0,11,11,2013,The Couch Trip,I'm Dr. Baird,tt0094910\nP06IeXkgRNA,2002.0,8,10,2013,The Crocodile Hunter: Collision Course,The Ride of Our Lives,tt0305396\nVklQQrb9-4c,1988.0,4,11,2013,The Couch Trip,Puffed-Up Smidgen of Blowfish Sh**,tt0094910\nnfGKHa_mn20,2002.0,7,10,2013,The Crocodile Hunter: Collision Course,King Brown Snake,tt0305396\nPFDnRg0lxUE,1985.0,9,10,2013,The Falcon and the Snowman,The Falcon is Free,tt0087231\nusWA4j2ED_Q,1988.0,5,11,2013,The Couch Trip,How Does it Feel to Be Uprooted?,tt0094910\n82sgwc-34Cg,1985.0,7,10,2013,The Falcon and the Snowman,Paranoid Meltdown,tt0087231\nnvFln5J-6uY,1988.0,3,11,2013,The Couch Trip,One of Your Worst Depressions,tt0094910\nyqy6z3kxWdI,1978.0,1,12,2013,The Great Train Robbery,Transporting Gold,tt0079240\ntYmvgGjSiN8,1995.0,1,10,2013,The Fantasticks,Much More,tt0113026\nfXBsUOysL3c,1988.0,7,11,2013,The Couch Trip,Premature Ejaculator,tt0094910\npHu6mCqzpyw,1978.0,3,12,2013,The Great Train Robbery,The Seduction of Fowler,tt0079240\nkV36CHsDZ_c,1978.0,9,12,2013,The Great Train Robbery,Riding the Train,tt0079240\n-GSZwG_s-8A,1980.0,7,11,2013,The Long Riders,Knife Fight,tt0081071\nd3ZUSI1_lOc,1995.0,3,10,2013,The Fantasticks,Never Say No,tt0113026\nBWYNt1N6xWQ,1962.0,7,10,2013,The Miracle Worker,Let's Play a Game,tt0056241\n5FQFrCgi8d8,1988.0,1,11,2013,The Couch Trip,Up Yours,tt0094910\nOK77tkb6D0c,1985.0,1,10,2013,The Falcon and the Snowman,A Partnership,tt0087231\nqa2Ng4a5yk0,1978.0,7,12,2013,The Great Train Robbery,Strangling Willy,tt0079240\nm-YWYdwcexU,2002.0,5,10,2013,The Crocodile Hunter: Collision Course,Steve Flirts With a Spider,tt0305396\nQr9F2ij1jfI,2002.0,2,10,2013,The Crocodile Hunter: Collision Course,Crocodile Hunting at Night,tt0305396\nCFCnY49pyII,1995.0,7,10,2013,The Fantasticks,This Plum Is Too Ripe,tt0113026\nzSCukxfXdAQ,1980.0,4,11,2013,The Long Riders,Highway Robbery,tt0081071\nNsMwPIy4Ax4,1980.0,8,11,2013,The Long Riders,Shootout in Northfield,tt0081071\nNMOjCohQbXY,1962.0,8,10,2013,The Miracle Worker,It Has a Name,tt0056241\nLgmzj8eWK8M,1978.0,2,12,2013,The Great Train Robbery,A Sharp Businessman,tt0079240\n-rebHHoZJSM,1988.0,10,11,2013,The Couch Trip,Therapy Time in the Southland,tt0094910\nQlKuJBiw1ac,1962.0,9,10,2013,The Miracle Worker,She Knows!,tt0056241\naErChTKF6u4,1980.0,11,11,2013,The Long Riders,I Shot Jesse James,tt0081071\ndDtFWw1mZuw,1995.0,9,10,2013,The Fantasticks,Take Me With You!,tt0113026\nsJGWczuXzT8,2002.0,9,10,2013,The Crocodile Hunter: Collision Course,Smart Croc,tt0305396\n0t1xR1LX5Kg,1978.0,10,12,2013,The Great Train Robbery,Throwing Gold From the Train,tt0079240\niWJTDTs9ymk,2002.0,6,10,2013,The Crocodile Hunter: Collision Course,Exploring a Spider Hole,tt0305396\nvIaVITC62Cs,1977.0,1,12,2013,The Island of Dr. Moreau,What Were They?,tt0076210\n0JBU9hgQ_T0,1978.0,4,12,2013,The Great Train Robbery,Stop That Boy!,tt0079240\nH3KbLBwQFW4,1963.0,1,11,2013,The Great Escape,To Cross the Wire Is Death,tt0057115\njKVDdMG37ig,1963.0,7,11,2013,The Great Escape,The Tunnel Keeps Collapsing,tt0057115\nopoVbcNO48o,1995.0,6,10,2013,The Fantasticks,The Fake Abduction,tt0113026\njtQcr7lJXB0,1962.0,6,10,2013,The Miracle Worker,I Want Complete Charge,tt0056241\nJNuiAZP2dtM,1960.0,7,12,2013,The Magnificent Seven,Squeeze the Trigger,tt0054047\nKk6l301jwOk,1960.0,5,12,2013,The Magnificent Seven,Vin Is In,tt0054047\nugm8RMqRSxs,1978.0,6,12,2013,The Great Train Robbery,75 Seconds,tt0079240\nL9-FR2MUfrU,1960.0,12,12,2013,The Magnificent Seven,Killing Calvera,tt0054047\n9yh3GgjFpxw,1960.0,4,12,2013,The Magnificent Seven,Testing Chico,tt0054047\nw3-djlpw4iw,1978.0,12,12,2013,The Great Train Robbery,The Great Escape,tt0079240\nRZa79QGDeo8,1963.0,2,11,2013,The Great Escape,The Cooler,tt0057115\nyjEcOkwV2MU,1960.0,2,12,2013,The Magnificent Seven,Standoff at the Cemetery,tt0054047\nV39FjO5t9BY,1959.0,8,8,2013,The Fugitive Kind,Fire at the Store,tt0052832\ngKpPQ6SqHvQ,1960.0,1,12,2013,The Magnificent Seven,I Want Him Buried,tt0054047\nJAz7hBbOoc0,1978.0,8,12,2013,The Great Train Robbery,Cholera Coffin,tt0079240\nvtxPupFohQA,1960.0,9,12,2013,The Magnificent Seven,Village Shootout,tt0054047\n_yY3iR3yuT0,1981.0,3,11,2013,The French Lieutenant's Woman,The French Lieutenant's Whore,tt0082416\nnyMtN_aHC_8,1960.0,10,12,2013,The Magnificent Seven,Gunfighter Arithmetic,tt0054047\neSYNuO9GTU4,1963.0,3,11,2013,The Great Escape,Danny's 17th Tunnel,tt0057115\nw4i_ZwMT3H0,1960.0,11,12,2013,The Magnificent Seven,Surrendering to Calvera,tt0054047\n7WCR4dZt7Uw,1963.0,5,11,2013,The Great Escape,Blitz Out,tt0057115\nLQhfDQoYERY,1981.0,1,11,2013,The French Lieutenant's Woman,On the Sea Wall,tt0082416\nj5Fd6TqePnk,1959.0,6,8,2013,The Fugitive Kind,The Kind That Don't Belong,tt0052832\nRhMsnnZ-0qM,1981.0,7,11,2013,The French Lieutenant's Woman,Gone to London,tt0082416\nAU-paVv6zTk,1960.0,6,12,2013,The Magnificent Seven,Fastest Knife in Town,tt0054047\nqPXny_mZ0iE,1977.0,9,12,2013,The Island of Dr. Moreau,I Remember It All!,tt0076210\nzLhfa5tKJyY,1981.0,4,11,2013,The French Lieutenant's Woman,A Fireplace Romance,tt0082416\nhfufT3MZQm8,1959.0,3,8,2013,The Fugitive Kind,Jukin',tt0052832\nhh5iOitreQ8,1977.0,11,12,2013,The Island of Dr. Moreau,Opening the Cages,tt0076210\nnDGZMXNYfF4,1977.0,12,12,2013,The Island of Dr. Moreau,Escaping the Island,tt0076210\ncoOguh0UhcY,1977.0,3,12,2013,The Island of Dr. Moreau,Cave of the Mutants,tt0076210\njVjq_m-PWSQ,1977.0,4,12,2013,The Island of Dr. Moreau,His Is the House of Pain,tt0076210\n6PvYbL69oyE,1981.0,5,11,2013,The French Lieutenant's Woman,I Was the First,tt0082416\ncFZWNfXzFLU,1959.0,1,8,2013,The Fugitive Kind,Snakeskin in Court,tt0052832\nBJ1tNYfDZa4,1977.0,2,12,2013,The Island of Dr. Moreau,The Possibilities Are Endless,tt0076210\nDcmzHtokiMw,1960.0,8,12,2013,The Magnificent Seven,Confronting Calvera,tt0054047\nJpvqpzU7eEc,1963.0,8,11,2013,The Great Escape,Ives Crosses the Wire,tt0057115\nXI5o939LHrE,1989.0,4,12,2013,UHF,Only a Mop?,tt0098546\n9zugv1NdMj4,1963.0,6,11,2013,The Great Escape,How to Get Rid of the Dirt,tt0057115\n-YGxccN_j6o,1977.0,8,12,2013,The Island of Dr. Moreau,You're the Animal!,tt0076210\nK0uzT9bWryU,1981.0,11,11,2013,The French Lieutenant's Woman,Anna Leaves,tt0082416\nkp2UhFQQb_k,1981.0,6,11,2013,The French Lieutenant's Woman,A Free Woman,tt0082416\nBaFBFmJG-LI,1963.0,10,11,2013,The Great Escape,Motorcycle Escape,tt0057115\ntyazEYlueAw,1963.0,9,11,2013,The Great Escape,Danny Gets Claustrophobic,tt0057115\n37zZ1ULVBa4,1981.0,10,11,2013,The French Lieutenant's Woman,A Mockery of Love,tt0082416\ndgGvAQ3kcs4,1959.0,5,8,2013,The Fugitive Kind,Looking for Work,tt0052832\nKwDvrv9byqM,1981.0,2,11,2013,The French Lieutenant's Woman,Scene Rehearsal,tt0082416\nHRrbt00Abv0,1977.0,10,12,2013,The Island of Dr. Moreau,No More Law,tt0076210\nfrTBOhJ0XHU,1963.0,4,11,2013,The Great Escape,Surprise Inspection,tt0057115\ns4veow_qEDk,1956.0,3,11,2013,The Killing,Going Over the Plan,tt0049406\nHSc1i2XKjCo,1977.0,7,12,2013,The Island of Dr. Moreau,Let Him Up,tt0076210\nWK29KgQKP8s,1977.0,5,12,2013,The Island of Dr. Moreau,Tiger vs. Tigerman,tt0076210\nhhGWxqj_bC0,1963.0,11,11,2013,The Great Escape,The Cooler King Returns,tt0057115\ne5Tb2YSkGh0,1956.0,11,11,2013,The Killing,Blowin' in the Wind,tt0049406\njIyn1q4Ilpw,1956.0,2,11,2013,The Killing,Sherry Baby,tt0049406\nogkh8GaUkBE,1977.0,6,12,2013,The Island of Dr. Moreau,What Are You Doing to Me?,tt0076210\nIfwHIwPbHaI,1956.0,8,11,2013,The Killing,Holding Up the Racetrack Bank,tt0049406\nFHUpEG_qdVc,1956.0,4,11,2013,The Killing,Caught Snooping,tt0049406\nTg3A7u83stA,1956.0,9,11,2013,The Killing,Robbing the Robbers,tt0049406\ngsWHt9OIofc,1956.0,1,11,2013,The Killing,Worth the Risk,tt0049406\n9IuMUzCJ5m8,1961.0,5,11,2013,The Misfits,Paddle Ball,tt0055184\ngXHhy4c4UZw,1961.0,8,11,2013,The Misfits,Three Dead Men,tt0055184\nD7H61Y1yUr4,1956.0,6,11,2013,The Killing,Maurice Creates the Distraction,tt0049406\nU4se5hr9O84,1955.0,5,11,2013,The Night of the Hunter,The Devil Wins Sometimes,tt0048424\n77Uk4kkFEnA,1956.0,5,11,2013,The Killing,I Know You Like a Book,tt0049406\nq3JlGPF4Ko8,1955.0,1,11,2013,The Night of the Hunter,Harry Speaks to the Lord,tt0048424\nC1QZn415vh4,1999.0,12,12,2013,The Mod Squad,Gets Mad,tt0120757\nmIIZqCaHUFI,1956.0,10,11,2013,The Killing,\"I'm Sick, Sherry\",tt0049406\ndTSXhhHDOk0,1961.0,6,11,2013,The Misfits,The Rodeo,tt0055184\nax0943uaZUk,1961.0,11,11,2013,The Misfits,Ropin' a Dream,tt0055184\nLwdMHOiN6ko,1983.0,5,7,2013,Yentl,The Way He Makes Me Feel,tt0086619\n5rlFiEe6S24,1955.0,11,11,2013,The Night of the Hunter,They Abide and They Endure,tt0048424\nau9pGQ9AuUs,1983.0,6,7,2013,Yentl,Tomorrow Night,tt0086619\n0vOulnDhH8A,1961.0,9,11,2013,The Misfits,Perce Frees the Horses,tt0055184\ndEnoofPhBtE,1980.0,9,11,2013,The Long Riders,Parting Ways,tt0081071\nk8oFMkg7icg,1961.0,10,11,2013,The Misfits,Lone Wrangler,tt0055184\n8hG-F24aroc,1955.0,6,11,2013,The Night of the Hunter,It's in the Doll!,tt0048424\nMlSzWgyNsAI,1955.0,7,11,2013,The Night of the Hunter,Two Pretty Children,tt0048424\n2KwdvymU_ao,1999.0,6,12,2013,The Mod Squad,No Guns,tt0120757\nauccmqO45a8,1955.0,9,11,2013,The Night of the Hunter,He Ain't My Dad,tt0048424\nefqBAU-lT5Q,1974.0,2,12,2013,The Taking of Pelham One Two Three,Terrorism on the Train,tt0072251\nqUqtwCfbjVw,1961.0,4,11,2013,The Misfits,Everything Keeps Changing,tt0055184\nfWBAKMYKPSc,1968.0,5,11,2013,The Party,Wyoming Bill,tt0063415\n_e917WJMzl4,1961.0,7,11,2013,The Misfits,Sad Words,tt0055184\nGGkg5ytaXlA,1968.0,1,11,2013,The Party,The Bugler Who Wouldn't Die,tt0063415\n0J_lTFS0ouM,1980.0,1,11,2013,The Long Riders,Ain't Gonna Ride With Me,tt0081071\nlDetwrOZPZg,1955.0,2,11,2013,The Night of the Hunter,Making a Promise,tt0048424\nBHEe0PqpvNw,1999.0,3,12,2013,The Mod Squad,A Police Matter,tt0120757\nundTPa_iq1Y,1980.0,10,11,2013,The Long Riders,For Dixie and Nothin' Else,tt0081071\n9PyNL2ahKwc,1955.0,8,11,2013,The Night of the Hunter,The Sleepless Hunter,tt0048424\nczBTbtS1YpE,1999.0,11,12,2013,The Mod Squad,The Abandoned Warehouse,tt0120757\nkCsm28_ULw4,1980.0,6,11,2013,The Long Riders,On Your Way to Hell,tt0081071\nLcHtYOV0bVo,1980.0,3,11,2013,The Long Riders,Cut the Cards,tt0081071\nl2g7v4DYYik,1999.0,4,12,2013,The Mod Squad,Foot Chase,tt0120757\n3JL2XIwueEA,1989.0,6,10,2013,The Phantom of the Opera,The Legend of the Phantom,tt0098090\nyKxkjtLBq6I,1961.0,3,11,2013,The Misfits,The Saddest Girl,tt0055184\nMBYRmSeYB4A,1999.0,10,12,2013,The Mod Squad,Gathering Evidence,tt0120757\n6ISHd9kAsTw,1961.0,2,11,2013,The Misfits,The Leave-It State,tt0055184\neOdZMwIh1I8,1999.0,9,12,2013,The Mod Squad,One of Those Dirty Cop Drug Things,tt0120757\nIXi_VrFakL0,1974.0,5,12,2013,The Taking of Pelham One Two Three,The Mayor and His Wife,tt0072251\n7dqjg1TwbXs,1999.0,7,12,2013,The Mod Squad,Double Murder,tt0120757\naA_j4KpP0W0,1968.0,3,11,2013,The Party,If the Shoe Floats,tt0063415\ndzbazAbjk8w,1961.0,1,11,2013,The Misfits,How Gay Lives,tt0055184\nGYYuyvyr2HY,1989.0,5,12,2013,UHF,Saw Demonstration,tt0098546\nJFblxacw_CA,1999.0,5,12,2013,The Mod Squad,Interrogation,tt0120757\nc93bejkDIuU,1989.0,4,10,2013,The Phantom of the Opera,Killer Review,tt0098090\n080g4Ylkv2M,1989.0,1,10,2013,The Phantom of the Opera,Traveling Through Time,tt0098090\nsR176VaCLXg,1968.0,10,11,2013,The Party,A Small Seat at the Table,tt0063415\n4BUDwj_mXKE,1989.0,6,12,2013,UHF,Spatula City Commercial,tt0098546\nmvAkLCKYvwU,1960.0,4,10,2013,The Unforgiven,Charlie Is Ambushed,tt0054428\n9RRGvAB4HF8,1983.0,7,11,2013,WarGames,DEFCON 1,tt0086567\nex_KPw6bVwQ,1960.0,3,10,2013,The Unforgiven,Sealed With a Kiss,tt0054428\n6d37Zy95yDI,1960.0,5,10,2013,The Unforgiven,A Gallows Tale,tt0054428\ntHe6ar-X2cQ,1989.0,7,12,2013,UHF,Stanley Spadowski's Clubhouse,tt0098546\nqTpB6q-YJwM,1960.0,1,10,2013,The Unforgiven,Ben's a Mite Touchy About Rachel,tt0054428\nioXW5Fg_q_g,1989.0,3,10,2013,The Phantom of the Opera,Captive Audience,tt0098090\nDCzA_11fJZE,1968.0,6,11,2013,The Party,Awkward Dance,tt0063415\nlGlvNt-N140,1960.0,9,10,2013,The Unforgiven,Rooftop Stampede,tt0054428\n_j0KhXH6xLE,1987.0,9,11,2013,Throw Momma from the Train,He's Trying to Kill Me!,tt0094142\nw7ngnhj4snE,1968.0,9,11,2013,The Party,Injun Grip,tt0063415\nbh2ShAQ4lw0,1983.0,4,11,2013,WarGames,He's Gonna Start a War!,tt0086567\ngIGtDdiHlA8,1968.0,11,11,2013,The Party,Toilet Trouble,tt0063415\nTlQ_qOWPTnE,1968.0,7,11,2013,The Party,The Intercom,tt0063415\n03QHVB_n6N8,1968.0,4,11,2013,The Party,A Good Laugh,tt0063415\n1vmnp7ghGPk,1983.0,5,11,2013,WarGames,A Lesson in Futility,tt0086567\nLKpLGai9GxA,1968.0,8,11,2013,The Party,Telephone Call,tt0063415\nC2PhwDzcQJY,1989.0,9,10,2013,The Phantom of the Opera,Christine Gets the Part,tt0098090\njH2OKc8HPw8,1960.0,6,10,2013,The Unforgiven,I Hanged Him!,tt0054428\n9fQG9Zhv2_I,1974.0,8,12,2013,The Taking of Pelham One Two Three,\"You're a Sick Man, Rico\",tt0072251\ne-5SVm2NUe8,1974.0,6,12,2013,The Taking of Pelham One Two Three,Meeting the Demands,tt0072251\nxOCBpMs-9hY,1989.0,10,12,2013,UHF,Stanley Is Kidnapped,tt0098546\npOQv_Ng3CaU,1989.0,5,10,2013,The Phantom of the Opera,Our Souls Are One,tt0098090\nDGtD5QAaAGY,1961.0,10,10,2013,West Side Story,Killed By Hate,tt0055614\nLwDbgE54QYE,1983.0,1,11,2013,WarGames,Asexual Reproduction,tt0086567\nXHbdoO7uCkk,1989.0,9,12,2013,UHF,Conan the Librarian,tt0098546\nVI9lWn1dpzg,1989.0,10,10,2013,The Phantom of the Opera,Not Forever!,tt0098090\nZU1CFYBhGT8,1989.0,7,10,2013,The Phantom of the Opera,Dinner Is Served,tt0098090\n9K_4ZaMc1-4,1961.0,1,10,2013,West Side Story,The Jets Own the Streets,tt0055614\nMpmGXeAtWUw,1983.0,11,11,2013,WarGames,The Only Winning Move,tt0086567\nm5bPIty4Dww,2006.0,10,12,2013,The Pink Panther,Pillow Talk,tt0383216\nh44egWnbrrg,2003.0,10,11,2013,Uptown Girls,All You Do is Take,tt0263757\nDE71sZbjvbs,1991.0,4,12,2013,The Silence of the Lambs,All Good Things to Those Who Wait,tt0102926\nsXtlR_7l6xQ,1974.0,3,12,2013,The Taking of Pelham One Two Three,The Man Who Stole Your Train,tt0072251\nRZAkOfxlW6g,1991.0,7,12,2013,The Silence of the Lambs,Love Your Suit,tt0102926\nm7xTvb-FAhQ,1961.0,5,10,2013,West Side Story,Tonight,tt0055614\npKJOqt7BtB8,1990.0,3,10,2013,The Russia House,You Remember '68?,tt0100530\nnaKm_rLxRCs,1989.0,8,10,2013,The Phantom of the Opera,Everyone Dies,tt0098090\nUqn_pbUUfKg,1990.0,2,10,2013,The Russia House,Spy Training,tt0100530\n4qFxfRN75HQ,2006.0,2,12,2013,The Pink Panther,Debugging the Office,tt0383216\nJ2yzM2nkylI,1990.0,7,10,2013,The Russia House,A Picasso Metaphor,tt0100530\n3pON6S9aDy4,2006.0,3,12,2013,The Pink Panther,Keep Vigilant,tt0383216\nnBRPKaHMFn4,1990.0,6,10,2013,The Russia House,And Yet Here I Am,tt0100530\nWAwbrOJMKEc,1974.0,9,12,2013,The Taking of Pelham One Two Three,Mr. Blue Electrocutes Himself,tt0072251\nti42vZVtgvY,2006.0,8,12,2013,The Pink Panther,The Case Is Going Quite Well,tt0383216\n99Ptctl5_qQ,1991.0,3,12,2013,The Silence of the Lambs,Fava Beans and a Nice Chianti,tt0102926\nUhDZPYu8piQ,1991.0,8,12,2013,The Silence of the Lambs,\"What Does He Do, This Man You Seek?\",tt0102926\nk9WhxTOA19s,1983.0,6,11,2013,WarGames,David & Jennifer Kiss,tt0086567\nBWDYUMTmHjU,1991.0,2,12,2013,The Silence of the Lambs,You Ate Yours,tt0102926\nOLBotH5Bki8,1991.0,9,12,2013,The Silence of the Lambs,Screaming Lambs,tt0102926\nhIoCskqjp9c,1974.0,7,12,2013,The Taking of Pelham One Two Three,The Money Has Arrived,tt0072251\neo6MfN5Lcws,1987.0,10,11,2013,Throw Momma from the Train,\"She's Not a Woman, She's the Terminator\",tt0094142\nx87nnioiLP8,2006.0,11,12,2013,The Pink Panther,Down the Drain,tt0383216\nRQk7-GqzZCc,1987.0,5,11,2013,Throw Momma from the Train,Larry Meets Momma,tt0094142\nrfdF7LBQ8Ic,2003.0,6,11,2013,Uptown Girls,Yard Sale Freak-Out,tt0263757\nhMMAB3MNCKw,1961.0,9,10,2013,West Side Story,Cool,tt0055614\nbkpuLB3ftow,1974.0,11,12,2013,The Taking of Pelham One Two Three,Rolling in Dough,tt0072251\nYlRLfbONYgM,1991.0,5,12,2013,The Silence of the Lambs,Quid Pro Quo,tt0102926\nRiBRrKC_6pE,2006.0,7,12,2013,The Pink Panther,Big Brass Balls,tt0383216\naClqNJOXy-w,1973.0,1,11,2013,White Lightning,Prison Break,tt0070915\ncdFiubg8UnQ,1990.0,10,10,2013,The Russia House,My First Good Contract,tt0100530\nG-tFJHYBqjo,1973.0,4,11,2013,White Lightning,Rebel Roy,tt0070915\neZtQn-GAemQ,1961.0,6,10,2013,West Side Story,Challenge to a Rumble,tt0055614\n_SQ4ogstDVE,1961.0,8,10,2013,West Side Story,Somewhere,tt0055614\n6Dyph0wJBcA,1973.0,6,11,2013,White Lightning,Big Bear,tt0070915\nyNeQm5aqrHo,1991.0,10,12,2013,The Silence of the Lambs,Buffalo Bill,tt0102926\nqqaFGM-AyNA,1973.0,2,11,2013,White Lightning,Driving Free,tt0070915\nnDlEcFRZUYI,1974.0,12,12,2013,The Taking of Pelham One Two Three,Gesundheit!,tt0072251\ngpW3ywIoyr0,1987.0,8,11,2013,Throw Momma from the Train,You're Alive!,tt0094142\n89uZslA-efY,1973.0,8,11,2013,White Lightning,My Horny Little Soul,tt0070915\nW6udsqodIzo,1973.0,3,11,2013,White Lightning,Sherry Lynne & Kip,tt0070915\nZXfw1y8Mbfo,2006.0,4,12,2013,The Pink Panther,Soundproof Room,tt0383216\nfgEjlKNllEU,1973.0,7,11,2013,White Lightning,Sexy Lou's Seduction,tt0070915\nboCpijI2k5I,1974.0,8,12,2013,Truck Turner,Finger-Licking Good,tt0072325\nv3dCP69-IFU,1987.0,2,11,2013,Throw Momma from the Train,Poisoned Pepsi,tt0094142\nYhSKk-cvblc,1961.0,4,10,2013,West Side Story,America,tt0055614\ng-2hB5Kd5aM,1973.0,11,11,2013,White Lightning,Car Chase,tt0070915\nCtTjc4nJlDM,2003.0,5,11,2013,Uptown Girls,You're Workin' For Me!,tt0263757\nV5dA92wqmME,1991.0,1,12,2013,The Silence of the Lambs,Closer!,tt0102926\ncRsKzW5Fszc,1973.0,9,11,2013,White Lightning,Gator's Escape,tt0070915\nZ6oeAdemFZw,2006.0,9,12,2013,The Pink Panther,I Would Like to Buy a Hamburger,tt0383216\nIi5azc-GzXg,1990.0,8,10,2013,The Russia House,Anarchist Tendencies,tt0100530\nQRqXBsgnYok,1991.0,6,12,2013,The Silence of the Lambs,It Rubs the Lotion,tt0102926\nOHHn-_aJQ7s,1974.0,9,12,2013,Truck Turner,That's,tt0072325\nlu9yr0xefYQ,2003.0,3,11,2013,Uptown Girls,Neal Feels Suffocated,tt0263757\neu-afVml4MM,2006.0,6,12,2013,The Pink Panther,How Fatal?,tt0383216\nKXzNo0vR_dU,1983.0,3,11,2013,WarGames,Shall We Play a Game?,tt0086567\nDDb0S3nIfNA,2003.0,1,11,2013,Uptown Girls,Bad First Impression,tt0263757\nNG4z6W4Zp_0,2003.0,9,11,2013,Uptown Girls,You Don't Know Your Own Daughter,tt0263757\nZgBPFyzsqFg,2006.0,12,12,2013,The Pink Panther,Airport Security,tt0383216\ns-Sx_dMw8oA,1974.0,1,12,2013,The Taking of Pelham One Two Three,I'm Taking Your Train,tt0072251\nL8_G6h_pK1o,1986.0,5,11,2013,Stagecoach,Ever Known an Apache?,tt0092003\n7EXefCHq6OQ,1987.0,4,11,2013,Throw Momma from the Train,You Killed My Wife!,tt0094142\ntGNBdjVO04Y,1983.0,9,11,2013,WarGames,Joshua Searches for Launch Codes,tt0086567\ncMnkhxzCLyA,1974.0,1,12,2013,Truck Turner,Ain't You Beat Him Enough?,tt0072325\nOm2UW4c_vqU,1960.0,7,10,2013,The Unforgiven,Reclaiming Rachel,tt0054428\n9anDqvXfdu4,1960.0,2,10,2013,The Unforgiven,How Much Woman Worth?,tt0054428\nnCgg5XIxxjY,1974.0,4,12,2013,Truck Turner,You Been Hit by a Truck,tt0072325\nRgHtBxOs4qw,1961.0,7,10,2013,West Side Story,I Feel Pretty,tt0055614\n6jS65g5UnWM,1990.0,4,10,2013,The Russia House,The Great Lie,tt0100530\n4ega5Rcct2s,1989.0,11,12,2013,UHF,Gandhi II,tt0098546\nuaDgwjVu8ik,1974.0,3,12,2013,Truck Turner,Chasing Gator,tt0072325\nYTnxiXd0qwA,1974.0,12,12,2013,Truck Turner,You Ain't Gonna Kill No Woman,tt0072325\nnwQ5zHdDFng,1963.0,4,10,2013,The Pink Panther,My Stradivarius!,tt0057413\n1cTY-JnvfYI,1987.0,6,11,2013,Throw Momma from the Train,Owen's Coin Collection,tt0094142\ncv62uysSvQE,1960.0,10,10,2013,The Unforgiven,Cash to the Rescue,tt0054428\npcyg0H7EU3c,1974.0,4,12,2013,The Taking of Pelham One Two Three,Trying to Negotiate,tt0072251\ngwEeqSGSL3g,1960.0,8,10,2013,The Unforgiven,Defending the Homestead,tt0054428\n9ecF-Go9lt8,1987.0,11,11,2013,Throw Momma from the Train,Saving Momma,tt0094142\nSOnb-cyRdAg,1963.0,5,10,2013,The Pink Panther,Champagne Surprise,tt0057413\ncvy2tRH7HNE,1989.0,1,12,2013,UHF,Indiana Jones Parody,tt0098546\nZYLekT6cYwY,1963.0,1,10,2013,The Pink Panther,A Real Woman,tt0057413\nWh4oSUvSQTQ,1963.0,2,10,2013,The Pink Panther,Simone Juggles Suitors,tt0057413\nuvXwt5HNFLU,1963.0,10,10,2013,The Pink Panther,Clouseau Is the Phantom,tt0057413\nU2_h-EFlztY,1983.0,2,11,2013,WarGames,Hacking the School,tt0086567\n31usxLUiuhs,1990.0,5,10,2013,The Russia House,The Next Revolution,tt0100530\nulMNuwN1C-8,1990.0,1,10,2013,The Russia House,A Virtuoso Comb Player,tt0100530\nz3YKH7m0P4c,1963.0,3,10,2013,The Pink Panther,Under Beds and Bubbles,tt0057413\nDyofWTw0bqY,1961.0,3,10,2013,West Side Story,Maria,tt0055614\nlTd2m2J2XmU,1974.0,5,12,2013,Truck Turner,I'm Indestructible,tt0072325\n1daKtciMLiE,2006.0,5,12,2013,The Pink Panther,Clouseau Hears High Heels,tt0383216\nHHFbltJSRxo,1983.0,3,7,2013,Yentl,One of Those Moments,tt0086619\novQk7fd4_Co,1991.0,11,12,2013,The Silence of the Lambs,Pitch Black,tt0102926\ni_9C6d3VVHM,1989.0,3,12,2013,UHF,Stanley Gets Fired,tt0098546\nuDqSQGOtixE,2006.0,1,12,2013,The Pink Panther,Clouseau's Press Conference,tt0383216\nraVKed5rdgM,2003.0,2,11,2013,Uptown Girls,Molly Wants Neal,tt0263757\nF7qOV8xonfY,1983.0,10,11,2013,WarGames,Tic Tac Toe With Joshua,tt0086567\n-ui9TwNrNEw,1989.0,12,12,2013,UHF,Rambo Parody,tt0098546\n7FgWn6jQuTQ,1987.0,1,11,2013,Throw Momma from the Train,Larry's Wife on Oprah,tt0094142\ntk2vET4aFW8,1986.0,10,11,2013,Stagecoach,Standoff,tt0092003\nTO01P7dpKV4,1986.0,6,11,2013,Stagecoach,The Woman My Momma Warned Me About,tt0092003\nUdT8lSEVHZU,1986.0,9,11,2013,Stagecoach,Apache Attack,tt0092003\nz5s04znNyMM,1986.0,7,11,2013,Stagecoach,I Don't Drink,tt0092003\nwPO6KyIYst4,1983.0,1,7,2013,Yentl,Where Is It Written?,tt0086619\nyAgMoKBGjT8,1983.0,4,7,2013,Yentl,No Wonder,tt0086619\n2TITAbyObTw,1986.0,3,11,2013,Stagecoach,I Didn't Figure on You at All,tt0092003\nq8CXKTH5950,1986.0,8,11,2013,Stagecoach,Introducing the Newest Member of the Gang,tt0092003\n3t1YQOfYndM,1986.0,4,11,2013,Stagecoach,Part of Her Machinery,tt0092003\nzRsPSJWe5sY,1986.0,1,11,2013,Stagecoach,Sneaking Liquor,tt0092003\nbLmYWtqC8pc,1986.0,11,11,2013,Stagecoach,Travelin' Light and Comin' Well-Balanced,tt0092003\n5FMiM08gFtQ,1982.0,12,12,2013,Still of the Night,Jump,tt0084732\nDeYew_zLc_c,1993.0,9,12,2013,Posse,White Sheets,tt0107863\n6CxOSOVI76c,1986.0,12,12,2013,Running Scared,I Got Him!,tt0091875\nH6fBnHvdZeI,1993.0,5,10,2013,Son of the Pink Panther,Playing Doctor,tt0108187\naUdbjoT_DPQ,1989.0,3,10,2013,Out Cold,Meatheads,tt0098042\nsCJ_SlkCT_o,1993.0,8,10,2013,Son of the Pink Panther,An Autograph,tt0108187\njd3KM4imjr4,1993.0,7,10,2013,Son of the Pink Panther,Cato Returns,tt0108187\nXVGIvc6G6yg,1989.0,6,10,2013,Out Cold,Lester Questions Dave,tt0098042\np0Ov897MYiw,1993.0,2,10,2013,Son of the Pink Panther,Chasing the Inspector,tt0108187\nkCtsoBRr1Z0,1989.0,2,10,2013,Out Cold,Bourbon and Legal Advice,tt0098042\nzZlbperC3ns,1993.0,10,10,2013,Son of the Pink Panther,Dreyfus' Wedding,tt0108187\ndPk7S_LiI1I,1993.0,4,10,2013,Son of the Pink Panther,A Day at the Hospital,tt0108187\ns2xKn06X9cQ,1989.0,8,10,2013,Out Cold,Lucky Accident,tt0098042\ngoOhv_1FYsE,1989.0,7,10,2013,Out Cold,Getting Away With Murder,tt0098042\nS-hMzdxcOD0,1989.0,1,10,2013,Out Cold,Close Call,tt0098042\njZXHcvhr2p8,1993.0,1,10,2013,Son of the Pink Panther,Bumpkin Cop,tt0108187\n0NSgeb0dBLY,1989.0,4,10,2013,Out Cold,Locked In,tt0098042\nRFAfyPXisjQ,1993.0,3,10,2013,Son of the Pink Panther,\"Like Father, Like Son\",tt0108187\n8ygfQ6oSNiU,1993.0,6,10,2013,Son of the Pink Panther,Professor Balls,tt0108187\nmjo4d488_yE,1993.0,2,12,2013,Posse,Enemy Gold,tt0107863\nl3t1ZSuwLzg,1993.0,9,10,2013,Son of the Pink Panther,A Bumbling Rescue,tt0108187\nwy1eWsC2sL8,1989.0,5,10,2013,Out Cold,Frozen Surprise,tt0098042\niGJCWeK7YCA,1989.0,10,10,2013,Out Cold,Sunny Traps Dave,tt0098042\nYhdrJfDiIkM,1993.0,3,12,2013,Posse,A.W.O.L.,tt0107863\nIp-dPqtyXRs,1973.0,5,11,2013,Scorpio,I Want Cross,tt0070653\nQNrM2ICShJ4,1989.0,9,10,2013,Out Cold,Dumping Lester's Car,tt0098042\n9u_76dg61ns,1995.0,10,10,2013,Rob Roy,The Fight Ends,tt0114287\no_yIykgKbeQ,1995.0,7,10,2013,Rob Roy,He Must Pay For it,tt0114287\nvjKoaNcefSU,1986.0,6,12,2013,Running Scared,Flipped Off,tt0091875\nRc8ybU83qHU,1982.0,4,12,2013,Still of the Night,I've Got to Do It,tt0084732\nCeYoUJYqAQc,1995.0,2,10,2013,Rob Roy,Archibald Defeats Will,tt0114287\nhghczTVgav0,1998.0,1,9,2013,Ronin,Everybody Has a Limit,tt0122690\nmCVwWrfOT3s,1993.0,8,12,2013,Posse,Turn the Other Cheek,tt0107863\nFypqAWaSTFU,1989.0,2,10,2013,Red Riding Hood,The Power of the Wolf,tt0385988\n6G8ExBEJEMQ,1989.0,9,10,2013,Red Riding Hood,\"The Better to Eat You With, My Dear\",tt0385988\nRt8Bfir3A4Y,1998.0,8,9,2013,Ronin,Paris Chase,tt0122690\na2gMY3TRx8s,1995.0,3,10,2013,Rob Roy,Explaining Honor,tt0114287\nMYuEOOe0xSE,1993.0,1,12,2013,Posse,Walker Is Discharged,tt0107863\naYbNb8eaTCY,1995.0,6,10,2013,Rob Roy,Mary's Honor,tt0114287\nbMDdjhWe9NQ,1998.0,7,9,2013,Ronin,Sam's Surgery,tt0122690\nXnD8FsykE08,1998.0,6,9,2013,Ronin,Nice Chase (Conclusion),tt0122690\nfR0Sh0C6jFE,1998.0,9,9,2013,Ronin,Paris Chase (Conclusion),tt0122690\nOrZB5n0tNAI,1998.0,3,9,2013,Ronin,Amateur Night,tt0122690\n69aok-u1esc,1993.0,7,12,2013,Posse,Target Practice,tt0107863\n-Luy502C920,1986.0,1,12,2013,Running Scared,You're Mugging Us?,tt0091875\nNG1KirPJLSQ,1989.0,4,10,2013,Red Riding Hood,You Won't Be Here in the Morning,tt0385988\nP_GbbXL9E78,1995.0,9,10,2013,Rob Roy,The Fight Begins,tt0114287\nhkFSMV93VeA,1986.0,8,12,2013,Running Scared,Pants Drop,tt0091875\n1D-v8EcGV2Q,1993.0,5,12,2013,Posse,Jesse's Retribution,tt0107863\nsA0SngAZcdA,1986.0,4,12,2013,Running Scared,Miranda Rights,tt0091875\nToK_9NLtr7M,1986.0,3,12,2013,Running Scared,Entrapping the Cops,tt0091875\njusrkQ2Zg8o,1993.0,12,12,2013,Posse,Graham's Demise,tt0107863\nMJ0qQkcBNPs,1993.0,4,12,2013,Posse,Father Time,tt0107863\nhgFClV33aH0,1986.0,7,12,2013,Running Scared,Hablo Smith & Wesson?,tt0091875\ntm6qzug9AS8,1989.0,6,10,2013,Red Riding Hood,Green in the Blue,tt0385988\n5F6pso8VBhc,1982.0,7,12,2013,Still of the Night,Massage Talk,tt0084732\nKE0awhgSLmE,1973.0,9,11,2013,Scorpio,Getting the Drop on the Opposition,tt0070653\nxR1YEOrYOdw,1995.0,1,10,2013,Rob Roy,Robert Teaches a Lesson,tt0114287\naJhtBJETQF8,1986.0,2,12,2013,Running Scared,Police Line-Up,tt0091875\n5TbuwxXBfoA,1976.0,1,11,2013,Stay Hungry,Batman and the Grease Man,tt0075268\nnn-nEk5kpz0,1986.0,10,12,2013,Running Scared,Cops vs. Trash Compactor,tt0091875\nv1dTnLPL9gU,1989.0,8,10,2013,Red Riding Hood,Never Talk to Strangers,tt0385988\n2PVdztmMSzI,1989.0,1,10,2013,Red Riding Hood,Lost in the Woods,tt0385988\n4GLcbZQoPNk,1973.0,10,11,2013,Scorpio,Hit and Run,tt0070653\nblDYzZvYAak,1989.0,3,10,2013,Red Riding Hood,Good at Being Bad,tt0385988\nOQVIkVIf_BE,1990.0,3,11,2013,Stanley & Iris,Just Give Me the Shoes,tt0100680\nmUzu93AhMuE,1990.0,2,11,2013,Stanley & Iris,Financial Troubles,tt0100680\n456l6TpeE1E,1986.0,5,12,2013,Running Scared,Forced Vacation,tt0091875\ndJFR7xbOIuw,1998.0,2,9,2013,Ronin,Tunnel Trap,tt0122690\nstelirVdNdI,1976.0,9,11,2013,Stay Hungry,No Pain No Gain,tt0075268\n_dtNz4Te0Gw,1995.0,5,10,2013,Rob Roy,Robert Refuses Montrose,tt0114287\nF3f7Li9T4n4,1986.0,9,12,2013,Running Scared,Must Be the Vest,tt0091875\nopseGWIdLd4,1986.0,11,12,2013,Running Scared,State Building Shootout,tt0091875\nlqdyZpgCnXQ,1993.0,6,12,2013,Posse,Can I Get a Witness?,tt0107863\n-oeFJvhvMik,1982.0,10,12,2013,Still of the Night,Sam Solves the Mystery,tt0084732\nF10EFVISERQ,1990.0,6,11,2013,Stanley & Iris,You're Pregnant?,tt0100680\n9hCHM2Oj1wQ,1982.0,8,12,2013,Still of the Night,Snooping in Brooke's Office,tt0084732\nSQ_rMhKlNFE,1976.0,4,11,2013,Stay Hungry,Pimping,tt0075268\nV-eoS6kEyeg,1990.0,1,11,2013,Stanley & Iris,Iris Meets Stanley,tt0100680\n2Z5WH83Vhs8,1990.0,10,11,2013,Stanley & Iris,It's My Library,tt0100680\nKDQqlRIFcAQ,1976.0,3,11,2013,Stay Hungry,Homosexuals?,tt0075268\nJOqFKM-dt5Y,1990.0,7,11,2013,Stanley & Iris,Iris Interviews Stanley,tt0100680\nQUTDoPuCUcg,1982.0,6,12,2013,Still of the Night,Who's There?,tt0084732\ndKoFTEK7O_o,1998.0,4,9,2013,Ronin,Kissing in the Car,tt0122690\n3iD4rM9utqc,1976.0,7,11,2013,Stay Hungry,One Tough Lady,tt0075268\nqpLovLQoJ6c,1973.0,4,11,2013,Scorpio,Compromising,tt0070653\n3eA0tlN-WMY,1973.0,1,11,2013,Scorpio,Cross Came Back,tt0070653\n1NBRkyfy4lA,1982.0,2,12,2013,Still of the Night,George's Nightmare,tt0084732\n2ohNiVtAwJY,1989.0,10,10,2013,Red Riding Hood,I Knew You'd Come Back,tt0385988\n2SnugUXqVJc,1990.0,4,11,2013,Stanley & Iris,Stanley Notices Iris' Sweaters,tt0100680\nO6frj4BOJJU,1982.0,11,12,2013,Still of the Night,The Murderess Reveals Herself,tt0084732\nXk7IjHYLVH4,1976.0,5,11,2013,Stay Hungry,Making Out with Mary Tate,tt0075268\nN-VlQuj49a4,1990.0,8,11,2013,Stanley & Iris,Motherly Advice,tt0100680\n9GagOWlFd-U,1973.0,2,11,2013,Scorpio,Crashing His Tail,tt0070653\nDdZNLekEcIQ,1993.0,11,12,2013,Posse,Carver's Dream,tt0107863\n9fnjkSES3VM,1976.0,2,11,2013,Stay Hungry,Workout With Joe,tt0075268\n2315p7LJusg,1982.0,9,12,2013,Still of the Night,Bidding to Save Brooke,tt0084732\nrfix60WuBxs,1973.0,3,11,2013,Scorpio,Let Me Get My Bag,tt0070653\ndf-YzAnQJpU,1973.0,8,11,2013,Scorpio,Construction Shoot Out,tt0070653\nOum7mEtv05g,1995.0,8,10,2013,Rob Roy,Robert Escapes,tt0114287\nkA_BtqogJNk,1990.0,11,11,2013,Stanley & Iris,Stanley Proposes,tt0100680\nSzUPAc8HTOI,1993.0,10,12,2013,Posse,Taking out the Gun,tt0107863\nPbr6HpxJYm4,1976.0,6,11,2013,Stay Hungry,Moonshine & Music,tt0075268\ni6ymVjU5hno,1973.0,6,11,2013,Scorpio,Can We Talk?,tt0070653\nIVZd3YBqxEc,1973.0,7,11,2013,Scorpio,I'm Still a Communist,tt0070653\n7gc1EIrxjws,1998.0,5,9,2013,Ronin,Nice Chase,tt0122690\ndw2jrtR9Px4,1990.0,9,11,2013,Stanley & Iris,Stanley Offers to Iron,tt0100680\nwosztGGnWt4,1995.0,4,10,2013,Rob Roy,Robert Makes a Deal,tt0114287\nMr8aBk7ub2g,1976.0,10,11,2013,Stay Hungry,Mr. Universe,tt0075268\nEshEWL1ZhCc,1976.0,8,11,2013,Stay Hungry,,tt0075268\nrfeKwl7Dyg0,1982.0,1,12,2013,Still of the Night,Laundry Room Scare,tt0084732\neJWSp6A1Ks0,1976.0,11,11,2013,Stay Hungry,Bodybuilders Unleashed!,tt0075268\nPZ93GNHBHsE,1984.0,4,9,2013,Breakin' 2: Electric Boogaloo,Dancing on the Ceiling,tt0086999\n89g2af1Qw0I,1984.0,1,9,2013,Breakin' 2: Electric Boogaloo,Electric Boogaloo,tt0086999\nkjd3eUIBSj0,1984.0,6,9,2013,Breakin' 2: Electric Boogaloo,You Don't Belong,tt0086999\nl53Q1UXk2DE,1984.0,7,9,2013,Breakin' 2: Electric Boogaloo,Hospital Dancing,tt0086999\nKzVgbCFwn0U,1984.0,3,9,2013,Breakin' 2: Electric Boogaloo,How to Get the Girl,tt0086999\na-Z66uN97Ds,1984.0,8,9,2013,Breakin' 2: Electric Boogaloo,Turbo Takes a Stand,tt0086999\np0CKoz0u6Eo,1974.0,2,11,2013,Lenny,We're All the Same Schmuck,tt0071746\nQL4mGMAjHBg,1997.0,3,11,2013,Gang Related,He Didn't Do It,tt0118900\nFk17A1jyjKo,1991.0,10,11,2013,Impromptu,Kissing Chopin,tt0102103\npetKvkHfPJo,1991.0,5,11,2013,Impromptu,A Duel at Dinner,tt0102103\nZkCH653K2cc,1965.0,3,9,2013,How to Stuff a Wild Bikini,Mad Men,tt0059287\n4PcE-gNqFfU,1985.0,6,12,2013,Invasion U.S.A.,Mall Shootout,tt0089348\n8YCMjAOgFpo,1991.0,12,12,2013,Harley Davidson and the Marlboro Man,Guns Are Made to Be Shot,tt0102005\nSMYJOm56YvY,1991.0,11,12,2013,Harley Davidson and the Marlboro Man,A Good Day For Dying,tt0102005\n1_vxyocjxg0,2002.0,11,11,2013,Hart's War,Full Responsibility,tt0251114\nMvYuTdiMcRk,1987.0,2,12,2013,Hollywood Shuffle,Black Acting School,tt0093200\ntr3ORGLT_W8,1965.0,1,9,2013,How to Stuff a Wild Bikini,,tt0059287\nIL_B1fmfl_c,1987.0,3,12,2013,Hollywood Shuffle,Sneakin' In The Movies,tt0093200\nLDsysmP_8yo,1991.0,6,11,2013,Impromptu,The Horse Is a Critic,tt0102103\nKmCgqSJnzrc,1980.0,5,12,2013,How to Beat the High Cost,Little League Meltdown,tt0080895\n54SNIVms9vo,1991.0,8,12,2013,Harley Davidson and the Marlboro Man,Bar Escape,tt0102005\n_WzzevY4_Ys,1980.0,12,12,2013,How to Beat the High Cost,Counting the Loot,tt0080895\noKmBIC6X6Fs,1991.0,9,11,2013,Impromptu,\"I Love, That Is All\",tt0102103\nktFZq_8XXOg,1991.0,2,12,2013,Harley Davidson and the Marlboro Man,Five Rules of Shooting Pool,tt0102005\nUw98q-YIFec,1991.0,4,11,2013,Impromptu,A Game of Sabotage,tt0102103\npE5pl9UG93I,1987.0,10,12,2013,Hollywood Shuffle,I Can't Do This,tt0093200\n_8N1uJZUyaY,1980.0,10,12,2013,How to Beat the High Cost,Cash Grab,tt0080895\nOcNjc5lfvpM,1991.0,11,11,2013,Impromptu,Fainting at a Duel,tt0102103\ntVfrMp_MWw4,1991.0,3,12,2013,Harley Davidson and the Marlboro Man,No Excuses,tt0102005\nVEgR-CiTK2E,1965.0,6,9,2013,How to Stuff a Wild Bikini,If It's Gonna Happen,tt0059287\nAGUMsaszNKM,1991.0,8,11,2013,Impromptu,How Does a Man Pursue a Woman?,tt0102103\nx21gkEu5lKc,1980.0,11,12,2013,How to Beat the High Cost,\"No Money, No Glory\",tt0080895\npmC3rsgHD9E,1991.0,3,11,2013,Impromptu,Don't Stop!,tt0102103\ng2dAymk715E,1991.0,7,11,2013,Impromptu,Art Does Not Apologize!,tt0102103\n61_aprVh2FQ,1965.0,4,9,2013,How to Stuff a Wild Bikini,Gave Himself the Finger,tt0059287\niG4GVhx6oGc,1987.0,1,12,2013,Hollywood Shuffle,Auditions,tt0093200\nWo3qdzlpPdg,1987.0,12,12,2013,Hollywood Shuffle,There's Always Work at the Post Office,tt0093200\n5RzSW0dc9dE,1987.0,8,12,2013,Hollywood Shuffle,Negative Images,tt0093200\npt-Ir7xS29Y,1987.0,9,12,2013,Hollywood Shuffle,Picketed by NAACP,tt0093200\nkhg8XoyKzs4,1965.0,2,9,2013,How to Stuff a Wild Bikini,How About Us?,tt0059287\nPJQ2AiURctI,1965.0,7,9,2013,How to Stuff a Wild Bikini,Fight Fair,tt0059287\nPBHZhxrhO4E,1965.0,8,9,2013,How to Stuff a Wild Bikini,The Girl Next Door,tt0059287\nsIB8AdUqEqg,1983.0,4,12,2013,Hercules,vs. the Chariots,tt0085672\nqfIzHlWOiuE,1965.0,5,9,2013,How to Stuff a Wild Bikini,They're All Beasts!,tt0059287\n7w2iVXAHiPk,1991.0,1,11,2013,Impromptu,Liszt Performs,tt0102103\nqkjpTwOa0GY,1983.0,10,12,2013,Hercules,Unchained,tt0085672\nd_jEVMQc0ig,1991.0,2,11,2013,Impromptu,A Gang of Parasites,tt0102103\nPSmJNK9zhR0,1987.0,5,12,2013,Hollywood Shuffle,Attack of the Street Pimps,tt0093200\nz9MEhN5rjmg,1965.0,9,9,2013,How to Stuff a Wild Bikini,Frankie Reunites with Dee Dee,tt0059287\nI1CjDw569ss,1983.0,7,12,2013,Hercules,Separating the Continents,tt0085672\n5UKpz6Gsyu4,1980.0,7,12,2013,How to Beat the High Cost,Kissing a Cop,tt0080895\nNvPYToFoU2M,1983.0,9,12,2013,Hercules,Thera Monster,tt0085672\nkoX0RDUQHFs,1983.0,8,12,2013,Hercules,Space Chariot,tt0085672\n65ltaw4SF38,1987.0,7,12,2013,Hollywood Shuffle,Ace Gets Jheri Curl to Talk,tt0093200\nYBQ90wbJ7MY,1980.0,6,12,2013,How to Beat the High Cost,Safeway Stick-Up,tt0080895\nGxMoPTqev8g,1987.0,11,12,2013,Hollywood Shuffle,The Greatest Actor Ever,tt0093200\n6i3eC2gzxXA,1983.0,1,12,2013,Hercules,The Power of Zeus,tt0085672\nVwE2USOqfNg,1983.0,3,12,2013,Hercules,The Exterminator,tt0085672\nD_5kpc0cUWk,1983.0,11,12,2013,Hercules,vs. Minos,tt0085672\nWrYDmyHlxqY,1972.0,11,12,2013,Hammer,Wins,tt0068673\n2NLGmRYLvsY,1987.0,6,12,2013,Hollywood Shuffle,Bobby Daydreams of Fame,tt0093200\nlRVUsY_rcCo,1980.0,9,12,2013,How to Beat the High Cost,Impromptu Striptease,tt0080895\n3_NMhC6GR04,1994.0,11,12,2013,Go Fish,Max & Ely,tt0109913\nvyN2oD5tI80,1994.0,6,12,2013,Go Fish,Is That How I Raised You?,tt0109913\notQ_oCvSq6E,1997.0,7,11,2013,Gang Related,Cynthia Cracks on the Stand,tt0118900\nqUMSld6BwC0,1994.0,10,12,2013,Go Fish,I'm Sticking With Honey Pot,tt0109913\n7DhLw2aNu_Y,1983.0,12,12,2013,Hercules,Ariadne's End,tt0085672\nyXeBhFzqzfY,1983.0,2,12,2013,Hercules,Fights a Bear,tt0085672\nBUAPTnpOdVM,1987.0,4,12,2013,Hollywood Shuffle,Dirty Larry,tt0093200\nlbIbVWmpcCg,1994.0,8,12,2013,Go Fish,Never Have I Ever,tt0109913\nworFlbNJG_w,1972.0,10,12,2013,Hammer,Everybody's Controlled by Something,tt0068673\nlwo1GnbKOW8,1980.0,8,12,2013,How to Beat the High Cost,The Electric Company,tt0080895\nwrYcEEv737c,1983.0,6,12,2013,Hercules,Circe the Sorceress,tt0085672\nQC4b5Aoff1I,1997.0,5,11,2013,Gang Related,I'm Not Going Down for It,tt0118900\nUbr_vvAzvtA,1980.0,1,12,2013,How to Beat the High Cost,I Need a Thousand Dollars,tt0080895\nk1fiQFCN2Zs,1972.0,12,12,2013,Hammer,Showdown with Brenner,tt0068673\nE_tzgBTGxEM,1994.0,7,12,2013,Go Fish,Evy's New Family,tt0109913\nytQv31xRLGo,1994.0,2,12,2013,Go Fish,U-G-L-Y,tt0109913\ni4GeD9FWdG4,1997.0,6,11,2013,Gang Related,You Picked a Saint,tt0118900\nnSEGOd89xWw,1994.0,12,12,2013,Go Fish,Nail-Cutting Foreplay,tt0109913\nO0twX6iB62U,1980.0,3,12,2013,How to Beat the High Cost,Picking Up the Check,tt0080895\nYg7ulcF39e8,1980.0,4,12,2013,How to Beat the High Cost,Suing Your Wife,tt0080895\nhdaAD9fxKXA,1994.0,1,12,2013,Go Fish,My Name is Max,tt0109913\nFzOGfMXmfF0,1980.0,2,12,2013,How to Beat the High Cost,Divorce by Answering Machine,tt0080895\nS8WazHAxJLM,1972.0,1,12,2013,Hammer,They Call Him the,tt0068673\nxvVqMR_f6IY,1994.0,9,12,2013,Go Fish,Getting Personal,tt0109913\n6JTplpmC6AA,1972.0,2,12,2013,Hammer,Roughhouse Gets Slammed,tt0068673\ncpO3ALFscmQ,1997.0,2,11,2013,Gang Related,Brainwashing Joe,tt0118900\nUvpLAMfYgJ8,1985.0,2,12,2013,Invasion U.S.A.,A Tough Armadillo,tt0089348\n2Rlao83KneM,1997.0,4,11,2013,Gang Related,Missing Gun,tt0118900\ne0fFbNV1ySY,1997.0,9,11,2013,Gang Related,You F***ing Rat!,tt0118900\n5iyXb_jNvgc,1972.0,9,12,2013,Hammer,Rescue Mission,tt0068673\nS01OvbVQhGc,1972.0,7,12,2013,Hammer,\"Peace, My Brothers\",tt0068673\nkWPc7z2IMkA,1997.0,11,11,2013,Gang Related,Going After Cynthia,tt0118900\np12YiRom_Kw,1997.0,1,11,2013,Gang Related,The Cover-Up,tt0118900\n6HH44dvOLJw,1955.0,8,11,2013,Killer's Kiss,Don't Kill Me,tt0048254\nnH40NtYdL-U,1955.0,9,11,2013,Killer's Kiss,Rooftop Chase,tt0048254\nE5zvQmTrzVU,1985.0,10,12,2013,Invasion U.S.A.,It's a Trap!,tt0089348\nKzSRd6xpR04,1955.0,11,11,2013,Killer's Kiss,Lovers Reunite,tt0048254\nwzJObNk-flo,1972.0,4,12,2013,Hammer,Police Chase,tt0068673\n6bn4rdEiqg0,1974.0,3,12,2013,Juggernaut,Ransom Instructions,tt0071706\n0WuMU0zi02w,1997.0,10,11,2013,Gang Related,Rodriguez Gets Killed,tt0118900\njfYvV2tBEz0,1955.0,7,11,2013,Killer's Kiss,Outnumbered,tt0048254\nQdIw0bzY3oc,1985.0,11,12,2013,Invasion U.S.A.,Double Shot,tt0089348\ngrlDMsiQ2Yc,1955.0,10,11,2013,Killer's Kiss,Fight at the Mannequin Factory,tt0048254\nf1Nh9DlkZ1w,1955.0,3,11,2013,Killer's Kiss,Nightmare,tt0048254\nGxcZL7EM5Zo,1985.0,12,12,2013,Invasion U.S.A.,It's Time,tt0089348\nbBeHRwjwKk8,1972.0,8,12,2013,Hammer,Waste Him,tt0068673\nHrFmuAN50BA,1985.0,4,12,2013,Invasion U.S.A.,You're Beginning to Irritate Me,tt0089348\nwZheb1gbe58,1974.0,4,12,2013,Juggernaut,Corrigan Confronted,tt0071706\nghNPXViyQoU,1974.0,5,12,2013,Juggernaut,We're Not Paying,tt0071706\nSN39w-Bnlgg,1985.0,7,12,2013,Invasion U.S.A.,Didn't Work Huh?,tt0089348\nw1pIFZb7480,1972.0,3,12,2013,Hammer,Ready,tt0068673\nITEod2_WHoU,1985.0,3,12,2013,Invasion U.S.A.,They Make it So Easy,tt0089348\nC-7X5i_EQPE,1974.0,6,12,2013,Juggernaut,I Don't Really Care That Much,tt0071706\njTRa22j4OUk,1972.0,5,12,2013,Hammer,Soar to the Moon,tt0068673\nd8Ff_W4-4VE,1994.0,4,12,2013,Go Fish,First Kiss,tt0109913\nkuQQoH9skXc,1994.0,3,12,2013,Go Fish,Going to the Movies,tt0109913\nvozS5ppNzAM,1974.0,7,12,2013,Juggernaut,Sealed In,tt0071706\nVWWchm35s-Y,1974.0,8,12,2013,Juggernaut,Porter Decides to Pay,tt0071706\nKVncpZkleFc,1994.0,5,12,2013,Go Fish,Lesbian Identity,tt0109913\nwhUo8sI5OuY,1985.0,8,12,2013,Invasion U.S.A.,\"Row, Row, Row Your Bomb\",tt0089348\nBTVWvOpPkIo,1985.0,9,12,2013,Invasion U.S.A.,Time to Die,tt0089348\n7L0xuL1thp4,1974.0,2,12,2013,Juggernaut,Fallon Disarms a Bomb,tt0071706\nxpSqCE8wCOU,1974.0,9,12,2013,Juggernaut,Charlie's Bomb,tt0071706\nw610fTL5O-A,2002.0,1,11,2013,Hart's War,Checkpoint,tt0251114\nqA73y2w3WUc,2002.0,8,11,2013,Hart's War,A Blackened Face,tt0251114\nFwHnNe_ItOY,1974.0,10,12,2013,Juggernaut,Negotiations Have Broken Down,tt0071706\nTzt-axwwOUY,1972.0,6,12,2013,Hammer,A Soul Brother,tt0068673\nIh-_ZmPZ1x8,2002.0,10,11,2013,Hart's War,We're Not in the War Anymore,tt0251114\nqh1KCsqqHFY,1974.0,11,12,2013,Juggernaut,The Counter Wire,tt0071706\njPSjDk0CM68,1983.0,5,12,2013,Hercules,One Against Eight,tt0085672\n_F4WjvMnL6Y,1991.0,7,12,2013,Harley Davidson and the Marlboro Man,Blowin' Off Steam,tt0102005\n_hX3fkzGrxk,2002.0,2,11,2013,Hart's War,P.O.W.,tt0251114\niRmtQ5DlvuQ,1985.0,5,12,2013,Invasion U.S.A.,Drive-Thru,tt0089348\nnXoPEmh39ls,1974.0,12,12,2013,Juggernaut,Cut the Blue Wire,tt0071706\ntLiJueTgu44,1985.0,1,12,2013,Invasion U.S.A.,Welcome to the United States!,tt0089348\nHLxJLrrC5mE,2002.0,5,11,2013,Hart's War,Bread Football,tt0251114\nmTYwZEhFwu0,1974.0,1,12,2013,Juggernaut,The 's First Call,tt0071706\ngNEB3vRczjA,1991.0,6,12,2013,Harley Davidson and the Marlboro Man,The Bank Robbery,tt0102005\n44-8o-jEDB0,1991.0,9,12,2013,Harley Davidson and the Marlboro Man,The Devil's a-Knockin',tt0102005\nohnhJ6gyLhk,2002.0,4,11,2013,Hart's War,You See These Bars?,tt0251114\nkItLDGtPMMI,1991.0,4,12,2013,Harley Davidson and the Marlboro Man,Marlboro's Birthday Present,tt0102005\n8I_QMs_Mjb0,2002.0,6,11,2013,Hart's War,They Had Fathers Too,tt0251114\nOK_v02xShhs,1991.0,1,12,2013,Harley Davidson and the Marlboro Man,Convenience Store Robbery,tt0102005\ncpQQpn89mEs,1991.0,5,12,2013,Harley Davidson and the Marlboro Man,Talk is Cheap,tt0102005\n8dPqVrwBp7s,1955.0,6,11,2013,Killer's Kiss,Watch Your Step,tt0048254\nQgdvS-09ygk,1955.0,5,11,2013,Killer's Kiss,Pity or Love?,tt0048254\nOZNLJj4pJsw,2002.0,7,11,2013,Hart's War,The Sound of Propaganda,tt0251114\noub2YWXPV6g,2002.0,3,11,2013,Hart's War,Those Kind of Distinctions,tt0251114\n60PDxhI6y4g,1955.0,1,11,2013,Killer's Kiss,Chance Encounter,tt0048254\nAesICMoanS0,1991.0,10,12,2013,Harley Davidson and the Marlboro Man,Making Things Right,tt0102005\nSyXqFhSPWBg,1974.0,4,11,2013,Lenny,Deny It,tt0071746\nLWkbKaDHXbw,1974.0,1,11,2013,Lenny,Doing It,tt0071746\nURvrDySPc4U,1955.0,2,11,2013,Killer's Kiss,The Fight,tt0048254\n0XzQX-i3y_I,1955.0,4,11,2013,Killer's Kiss,Mad About You,tt0048254\nvH8nss4M93g,1992.0,10,12,2013,Love Field,Road Block,tt0104765\nxLIEyHRfbv4,1992.0,3,12,2013,Love Field,You Are Not Going Anywhere!,tt0104765\na2lb_3-fYFc,1974.0,7,11,2013,Lenny,Arrested for Obscenity,tt0071746\n6kdms5umbhA,1992.0,6,12,2013,Love Field,You Owe Me!,tt0104765\n4QsATC7VdUk,1974.0,11,11,2013,Lenny,Contempt of Court,tt0071746\nzvgXyU1STYI,1992.0,5,12,2013,Love Field,What Else Have You Seen?,tt0104765\nXGkwMwwlTLQ,1992.0,8,12,2013,Love Field,Forbidden Kiss,tt0104765\nDSoLhO7jVzk,1992.0,4,12,2013,Love Field,Making Conversation,tt0104765\n2J4gviivSJU,1974.0,5,11,2013,Lenny,A Word About Dykes,tt0071746\nvK7tEsNZtFs,1992.0,1,12,2013,Love Field,Missing Jackie,tt0104765\no_6VSJ_RjkE,1974.0,6,11,2013,Lenny,Are There Any N****** Here?,tt0071746\nfXcQVdBqtaY,1974.0,3,11,2013,Lenny,Stag Movies,tt0071746\n2fkfpdMG-KQ,1992.0,2,12,2013,Love Field,Something's Wrong,tt0104765\nvBhBkvkofjk,1974.0,10,11,2013,Lenny,Strung Out,tt0071746\n2i-3w7WnPiU,1974.0,9,11,2013,Lenny,To Come,tt0071746\nYjwB9d1tpJE,1992.0,12,12,2013,Love Field,I've Never Been Sorry,tt0104765\nOopV0xphrrA,1973.0,3,10,2013,Mean Streets,Which One Do You Want?,tt0070379\nHdaBcsWogXE,1992.0,7,12,2013,Love Field,Lurene Phones Home,tt0104765\nd-2r0wMjfrY,1992.0,11,12,2013,Love Field,A Glimpse of Jackie,tt0104765\nF6Y4Vd970zw,2002.0,8,9,2013,Assassination Tango,The Gift,tt0283897\nMPDs_ZJMc90,2005.0,6,10,2013,Kiss Kiss Bang Bang,The Finger Scene,tt0373469\nqkGDaroLl_M,1973.0,8,10,2013,Mean Streets,Rubber Biscuit,tt0070379\nEpD-Hu37w5k,1973.0,10,10,2013,Mean Streets,Now's the Time,tt0070379\nrba9NiqG9PI,1992.0,7,9,2013,Under Siege,Hand-to-Hand Combat,tt0105690\nHkDkImVLQGc,1984.0,5,9,2013,Breakin' 2: Electric Boogaloo,Calling a Truce,tt0086999\nt69ZfcWPZFY,1992.0,6,9,2013,Under Siege,Disobeying Orders,tt0105690\n2zGJ_oOECv4,2009.0,7,10,2013,Terminator Salvation,Land Mine,tt0438488\nXQdxHzDK12o,2005.0,2,10,2013,Kiss Kiss Bang Bang,Harmony Faith Lane Scene,tt0373469\njF9GE50ioFo,2005.0,5,10,2013,Kiss Kiss Bang Bang,Moving the Corpse Scene,tt0373469\nKQcLnNoYMWU,1964.0,8,10,2013,The Train,Train Painting,tt0059825\n21GAl13VImg,1986.0,12,12,2013,Firewalker,Hidden Treasure,tt0091055\nyBxr5ACMH5U,1986.0,4,12,2013,Firewalker,I Am No Sissy!,tt0091055\nSV73jXKrQ80,1986.0,7,12,2013,Firewalker,Last Rites,tt0091055\nyXcVX57I2JU,2003.0,3,12,2013,A Guy Thing,Paul Has Crabs,tt0295289\nMyINcc8SDd4,1959.0,3,9,2013,A Hole in the Head,Tony's a Kiwi,tt0052896\n6-L8WG51noY,2003.0,12,12,2013,A Guy Thing,Cuddle Monkey,tt0295289\np8t_xV4Lf0A,2003.0,8,12,2013,A Guy Thing,Paul Meets Ray,tt0295289\nLKVcX3959I0,2003.0,2,12,2013,A Guy Thing,Hiding the Underwear,tt0295289\n2fWpPZaxmM8,2003.0,7,12,2013,A Guy Thing,Paul and Pete Discuss Becky,tt0295289\np92CKGAeQUY,1973.0,9,10,2013,Mean Streets,Where's the Rest?,tt0070379\nMIGDyLqwY7Y,1973.0,4,10,2013,Mean Streets,Busted,tt0070379\nSi5R7-KZWFY,1973.0,7,10,2013,Mean Streets,What Do You Like?,tt0070379\nE0wfFdGnwx0,1973.0,1,10,2013,Mean Streets,Tony and Michael,tt0070379\n_DbFZkXD8WA,1973.0,6,10,2013,Mean Streets,Give Us a Ride,tt0070379\nBS-6KavRfww,1973.0,5,10,2013,Mean Streets,Bathroom Hit,tt0070379\n7xt32rq7iD8,1973.0,2,10,2013,Mean Streets,Johnny Boy and Charlie,tt0070379\nreQPn8oDC2c,1989.0,3,10,2013,After Midnight,Kevin Beheads Joan,tt0096769\nkHRSh7JOKxo,1956.0,9,11,2013,A Kiss Before Dying,The Killer Is Still Free,tt0049414\nTPQeRElxu2o,1989.0,9,10,2013,After Midnight,Revenge Backfires,tt0096769\nme7nuXZfXVM,1989.0,5,10,2013,After Midnight,Wild Dog Attack,tt0096769\nskMchQx_U_k,1989.0,6,10,2013,After Midnight,Don't Play Games With Me,tt0096769\nchlwxs2dfVA,1956.0,4,11,2013,A Kiss Before Dying,A Kiss Before Murder,tt0049414\nEimQSagV_8k,1956.0,2,11,2013,A Kiss Before Dying,Poison Pills,tt0049414\nirglCpn_Hs8,1989.0,8,10,2013,After Midnight,You Want to Be Scared?,tt0096769\nfiziIJ6zTU8,1989.0,4,10,2013,After Midnight,You Wanna Play?,tt0096769\nXRUO2E9UQro,1989.0,7,10,2013,After Midnight,Alex Flees Richard,tt0096769\ndKleqAHv-Zw,1956.0,11,11,2013,A Kiss Before Dying,Death and Consequences,tt0049414\nroxNsu1YELE,1989.0,10,10,2013,After Midnight,All a Dream,tt0096769\nvSjkkQ6Bfc4,1989.0,1,10,2013,After Midnight,Real Fear,tt0096769\nMCtE3Y28IR0,2002.0,5,11,2013,Barbershop,That's My Car!,tt0303714\ntTrgUKsKetY,1973.0,7,9,2013,Coffy,King's Last Ride,tt0069897\ng0HwVyKSC_8,1984.0,3,9,2013,Beat Street,You're a Biter,tt0086946\nLHVll_0Hmh4,1956.0,5,11,2013,A Kiss Before Dying,\"Something Borrowed, Something Blue\",tt0049414\n3SessG74yMk,1956.0,10,11,2013,A Kiss Before Dying,A Murderer Revealed,tt0049414\nkNMc5CKw4G0,2002.0,6,9,2013,Assassination Tango,Welcome to Argentina,tt0283897\nEjp4AjvBuGw,1956.0,7,11,2013,A Kiss Before Dying,Please Forgive Me for Everything,tt0049414\n8BY36nM4_HI,1956.0,8,11,2013,A Kiss Before Dying,A Simple Matter of Chemistry,tt0049414\nnWRelGmpmxQ,1956.0,6,11,2013,A Kiss Before Dying,Caught in the Alley,tt0049414\nZYOhqPzYRjs,1956.0,3,11,2013,A Kiss Before Dying,Seeing a Ghost,tt0049414\n80htzZ3-XwA,1956.0,1,11,2013,A Kiss Before Dying,Love Conquers All,tt0049414\ntJHkiRzd05M,2002.0,5,9,2013,Assassination Tango,Symbol of Elegance,tt0283897\n2nacHERVnsY,1989.0,2,10,2013,After Midnight,Pranking the Class,tt0096769\nkVXAITzqSgc,2002.0,3,9,2013,Assassination Tango,A Tango Performance,tt0283897\nM9rOG76v0qY,2002.0,4,9,2013,Assassination Tango,Tango Lessons Tomorrow,tt0283897\noPOqdtLP8XM,2002.0,11,11,2013,Barbershop,I Lost the Shop,tt0303714\nH9TUkZR66o4,2002.0,1,9,2013,Assassination Tango,Wrinkles On My Face?,tt0283897\nYJhs9wqT7qE,2002.0,2,11,2013,Barbershop,Seniority,tt0303714\nU_5JpJYsufQ,2002.0,2,9,2013,Assassination Tango,The Job Done Right,tt0283897\nSms4grRcCck,2002.0,9,9,2013,Assassination Tango,Last Tango with Manuela,tt0283897\nBL9xCIeznI8,2002.0,7,9,2013,Assassination Tango,The Assassination Job,tt0283897\nn7W0yxKnuvs,2002.0,3,11,2013,Barbershop,Calvin Sells the,tt0303714\nGNsD8EVetbU,2002.0,8,11,2013,Barbershop,Stealing the ATM,tt0303714\nN_tNwz5Bxwk,2002.0,4,11,2013,Barbershop,Ya'll Don't Know Nothin',tt0303714\noSpMQ0WtrSs,2002.0,1,11,2013,Barbershop,Your Sister's a Demon Child,tt0303714\nZtE1j9UnzC4,2002.0,9,11,2013,Barbershop,You're Breaking Up With Me?,tt0303714\n7U-et8qOXLs,2002.0,6,11,2013,Barbershop,\"Rosa Parks, Rodney King and Jesse Jackson\",tt0303714\nRczW1gIRBjY,2002.0,10,11,2013,Barbershop,Reparations,tt0303714\n1MUi4ZiJUsA,2002.0,7,11,2013,Barbershop,Take This Money,tt0303714\nPh6hXpPbl0s,1984.0,5,9,2013,Beat Street,The Santa Claus Rap,tt0086946\nfrqy8o30rv8,1984.0,8,9,2013,Beat Street,Melle Mel and the Furious Five,tt0086946\nSiJQJiUZ5Jw,1984.0,6,9,2013,Beat Street,Caught By the Cops,tt0086946\ncigrbhwjTnI,1984.0,2,9,2013,Beat Street,The Bronx Rockers vs.,tt0086946\n8aQFiCfxz6M,1984.0,9,9,2013,Beat Street,Believe,tt0086946\nfpnoVKmulZM,1984.0,1,9,2013,Beat Street,\"Us Girls Can Boogie, Too\",tt0086946\nhyXCJXsHX3A,1984.0,4,9,2013,Beat Street,Tagging the Train Station,tt0086946\nd7he8f2L_BE,1984.0,7,9,2013,Beat Street,Painting a Virgin Train,tt0086946\n_lnD3Fh-kYg,1972.0,12,12,2013,Blacula,Heads Into the Sunlight,tt0068284\n9gdhd-EerNw,1972.0,10,12,2013,Blacula,Not One Man Shall Escape My Vengeance,tt0068284\n3SAElnJHcNc,1962.0,4,11,2013,Birdman of Alcatraz,Learning to Fly,tt0055798\nFRVB-HBxR98,1962.0,7,11,2013,Birdman of Alcatraz,Going Into Business,tt0055798\nXY3urIUUizU,1988.0,5,12,2013,Child's Play,Chucky Attacks Mike Scene,tt0094862\n4a71NDQWOMM,1972.0,8,12,2013,Blacula,An Urgent Appointment Elsewhere,tt0068284\nBOYsnywXTu8,1973.0,5,9,2013,Coffy,Have Some Salad,tt0069897\nc9_46Iv_GGM,1962.0,3,11,2013,Birdman of Alcatraz,Solitary for Life,tt0055798\nluhE1BFZN9U,1972.0,9,11,2013,Boxcar Bertha,Captured Again,tt0068309\nTt9v8E7Owxo,1973.0,6,9,2013,Coffy,Arturo Craves,tt0069897\n5xl30KAt6-w,1988.0,6,12,2013,Child's Play,You Can't Hurt Me Scene,tt0094862\nn92XBsqbSF4,1972.0,7,12,2013,Blacula,Warehouse of the Dead,tt0068284\nXp_xKQZigM0,1972.0,1,11,2013,Boxcar Bertha,Big Bill,tt0068309\nQbRnDoXuwkQ,1962.0,6,11,2013,Birdman of Alcatraz,Death of a Canary,tt0055798\niTXqcn1qyCk,1972.0,7,11,2013,Boxcar Bertha,Holding Up the Party,tt0068309\nRE6QfwhDMhw,1973.0,3,9,2013,Coffy,C'mon Bitch,tt0069897\n2uQeLmDx98o,1973.0,9,9,2013,Coffy,'s Final Revenge,tt0069897\noow41RrqpHE,1962.0,5,11,2013,Birdman of Alcatraz,Stupid Bird Tricks,tt0055798\nFnvug-nXPYg,1972.0,3,11,2013,Boxcar Bertha,Train Robbers,tt0068309\nyJjnYpZCH8A,1972.0,6,11,2013,Boxcar Bertha,Up & Down,tt0068309\nwmG3O9RvEaU,1972.0,2,11,2013,Boxcar Bertha,Breaking Out,tt0068309\nSATdGPY78z0,1972.0,5,12,2013,Blacula,Digging Up the Grave,tt0068284\ng_mjMjs_eFY,1973.0,8,9,2013,Coffy,Revenge on Arturo,tt0069897\nwO1s5eRplKs,1962.0,9,11,2013,Birdman of Alcatraz,Prison Riot,tt0055798\nsXatQewZKRw,1972.0,5,11,2013,Boxcar Bertha,Crime Spree,tt0068309\nMoq-NmqnZR0,1962.0,2,11,2013,Birdman of Alcatraz,Prison Fight,tt0055798\nB22vWcjNR9I,1972.0,11,12,2013,Blacula,Tina Dies Again,tt0068284\nyJlwArJRkmE,1962.0,11,11,2013,Birdman of Alcatraz,Leaving Alcatraz,tt0055798\ncrBqPflvzyQ,1988.0,1,12,2013,Child's Play,Chucky's First Victim Scene,tt0094862\n45d4aoDJnhw,1962.0,10,11,2013,Birdman of Alcatraz,I Give You My Word,tt0055798\nlh3qxTgaa1Y,1972.0,2,12,2013,Blacula,Free!,tt0068284\nAIeKpxgasMQ,1973.0,2,9,2013,Coffy,I Helped Sew Up Your Face,tt0069897\nX4_8ByCyrUA,1962.0,1,11,2013,Birdman of Alcatraz,A Convict's Rights,tt0055798\n2uSOBDMv_S0,1962.0,8,11,2013,Birdman of Alcatraz,Give Her Up,tt0055798\nCSuwuvVcRHU,1988.0,7,12,2013,Child's Play,Dr. Death's Voodoo Scene,tt0094862\nLt01tXTT0Ak,1989.0,2,10,2013,Cyborg,The Wasteland,tt0097138\n4uVC-cDpdpg,1972.0,1,12,2013,Blacula,The Curse of Dracula,tt0068284\nwJJ2RLLVzcU,1972.0,4,11,2013,Boxcar Bertha,A Union Man,tt0068309\njRRY7zgE4K8,1973.0,1,9,2013,Coffy,You Better Believe It's Comin'!,tt0069897\nWcSLuxBdYJ8,1988.0,9,12,2013,Child's Play,Batter up! Scene,tt0094862\nHSH9SG55kBU,1988.0,10,12,2013,Child's Play,\"This Is the End, Friend Scene\",tt0094862\n8tteR5k1l-A,1989.0,3,10,2013,Cyborg,Factory Fight,tt0097138\n_LAoGdcXG3Q,1989.0,5,10,2013,Cyborg,Ship Mast Crucifixion,tt0097138\nnkUx3zstpbU,1972.0,8,11,2013,Boxcar Bertha,Rake Gets Killed,tt0068309\nJs0YTLpY9bY,1988.0,12,12,2013,Child's Play,Chucky Dies Scene,tt0094862\n9R0If3RWk5M,1972.0,11,11,2013,Boxcar Bertha,Von's Vengeance,tt0068309\n5E3TSzke-Fg,1973.0,4,9,2013,Coffy,King George,tt0069897\nP4PPhm_fJug,1983.0,6,10,2013,Curse of the Pink Panther,A Date With Shirley,tt0085384\n4QL9q2mwZXI,1972.0,10,11,2013,Boxcar Bertha,Crucified,tt0068309\nSJ671CSV2-M,1972.0,4,12,2013,Blacula,You Must Come to Me Freely,tt0068284\nWd7iSbGIDqs,1972.0,3,12,2013,Blacula,The Only Imbecile on the Street,tt0068284\ngboXDP4L4b0,1972.0,9,12,2013,Blacula,The Only Way to Save Tina,tt0068284\nJ_OsoyDByWo,1972.0,6,12,2013,Blacula,Juanita Wakes Up!,tt0068284\nB62wGNHDYHA,1989.0,1,10,2013,Cyborg,I'm a,tt0097138\n4dS7rsMy1-Y,1983.0,9,10,2013,Curse of the Pink Panther,Looks Like Suicide,tt0085384\nPK1aYqQgn-k,1983.0,7,10,2013,Curse of the Pink Panther,Getting a Room,tt0085384\nXITc_tguH2o,1989.0,6,10,2013,Cyborg,Gibson's Salvation,tt0097138\nj638xTM36I8,1973.0,10,12,2013,Dillinger,Pretty Boy Floyd,tt0069976\nvU1_EJh6Atc,1989.0,9,10,2013,Cyborg,Fender Bender,tt0097138\ni812ZsyyeLg,1983.0,8,10,2013,Curse of the Pink Panther,It Must be the Gas,tt0085384\nBzqkq2LwnOQ,1989.0,10,10,2013,Cyborg,On the Hook,tt0097138\nmWqZWXSj-s0,1983.0,1,10,2013,Curse of the Pink Panther,Detective Sleigh Has Arrived,tt0085384\ne-oTHFL5_ec,1983.0,4,10,2013,Curse of the Pink Panther,I Can't Tell You How Sorry I Am,tt0085384\nRtv_BhYXLh8,1983.0,3,10,2013,Curse of the Pink Panther,Balls' Disguises,tt0085384\nEghn9oMlSy0,1989.0,8,10,2013,Cyborg,Showdown in the Rain,tt0097138\nvY04JLQa1MQ,1983.0,5,10,2013,Curse of the Pink Panther,Meeting with the Littons,tt0085384\nqKYRwuoqETc,1989.0,4,10,2013,Cyborg,Overmatched and Outnumbered,tt0097138\n1C_7b05Rlvo,1973.0,2,12,2013,Dillinger,Remember This Face,tt0069976\np7rtU_AM1bE,1989.0,7,10,2013,Cyborg,Against All Odds,tt0097138\npSzusQmqyxE,1983.0,10,10,2013,Curse of the Pink Panther,Hit the Water!,tt0085384\nXpdrOUgweIA,1983.0,2,10,2013,Curse of the Pink Panther,The Wax Museum,tt0085384\nFeecJ5bAGHA,1973.0,12,12,2013,Dillinger,Biograph Theater,tt0069976\nc-jOeDA-X0k,1973.0,8,12,2013,Dillinger,\"Break Out, Baby!\",tt0069976\nfBB_lJ3Axqk,1973.0,7,12,2013,Dillinger,Number 36,tt0069976\nSp1xdUY8R14,1973.0,3,12,2013,Dillinger,Fool for Love,tt0069976\nw8O0iiBrIzM,1973.0,6,12,2013,Dillinger,G-Man,tt0069976\ndUCUs8EtHoM,1973.0,5,12,2013,Dillinger,Bank Robbery Gone Wrong,tt0069976\nWlrq_lGAn78,1973.0,4,12,2013,Dillinger,Sheer Guts,tt0069976\nU4DZWsXvRUA,1973.0,1,12,2013,Dillinger,This is a Robbery!,tt0069976\nosfdb5BrLPI,1973.0,11,12,2013,Dillinger,Madame Sage,tt0069976\n0en0UJ180yc,1973.0,9,12,2013,Dillinger,Mason City Mistake,tt0069976\nSVGc5KwWRtM,1980.0,3,9,2013,Dressed to Kill,You're Not a Psycho,tt0080661\nGiNKTYoCWG4,1980.0,9,9,2013,Dressed to Kill,Shower Nightmare,tt0080661\n4qHuiCLkYHc,1980.0,6,9,2013,Dressed to Kill,Seducing Dr. Elliott,tt0080661\n2Et6MGSeXOU,1980.0,1,9,2013,Dressed to Kill,Museum Encounter,tt0080661\nPys1zBR5jX8,1980.0,7,9,2013,Dressed to Kill,Behind You!,tt0080661\niyCfFXxNtp8,1980.0,4,9,2013,Dressed to Kill,Watching Phil Donahue,tt0080661\naUCNlDzsDH0,1993.0,1,12,2013,Fatal Instinct,Who Can Say No to a Wiener?,tt0106873\nR8_HfT2ndyg,1980.0,2,9,2013,Dressed to Kill,Murder on an Elevator,tt0080661\nKI97hqN52Ik,1980.0,8,9,2013,Dressed to Kill,Transsexuality,tt0080661\n0-81bpcuz44,1980.0,5,9,2013,Dressed to Kill,Subway Chase,tt0080661\nkYQkkpRXgP4,1993.0,3,12,2013,Fatal Instinct,You're Screwing My Wife,tt0106873\n9lU01uvS3Nk,1993.0,5,12,2013,Fatal Instinct,Three's Company,tt0106873\n4OW7CMS8PBQ,1993.0,12,12,2013,Fatal Instinct,Got 'Em,tt0106873\nkDFwUhn_1Ao,1993.0,2,12,2013,Fatal Instinct,Bumper Cars and Cue Cards,tt0106873\nwrmwJx6kYKc,1993.0,11,12,2013,Fatal Instinct,Courtroom Battle of the Century,tt0106873\nS3GG_HRE-D4,1993.0,9,12,2013,Fatal Instinct,Max Shady,tt0106873\nOBPgy6HGL44,1993.0,4,12,2013,Fatal Instinct,I Hear You Go Both Ways,tt0106873\nvPs5yv77m9Y,1993.0,6,12,2013,Fatal Instinct,You Smoke Too Much,tt0106873\n70_b9ZEcxp0,1993.0,10,12,2013,Fatal Instinct,The Death of Max Shady,tt0106873\nY3vhSZJthJM,1993.0,8,12,2013,Fatal Instinct,\"You Bond With It, You Buy It\",tt0106873\nTv6tdiEMGaY,1986.0,5,12,2013,Firewalker,Bar Brawl,tt0091055\n672m88mMLZ8,1986.0,10,12,2013,Firewalker,The Treasure or Your Friend?,tt0091055\nyKFEKBIXPxY,1993.0,7,12,2013,Fatal Instinct,A Kinky Affair,tt0106873\neZWHAM2EG3o,1986.0,2,12,2013,Firewalker,A Business Proposition,tt0091055\nDvze9_LZmC0,1986.0,1,12,2013,Firewalker,Desert Chase,tt0091055\nlxQj06LN31A,1986.0,11,12,2013,Firewalker,Human Sacrifice,tt0091055\nhLNZCf1nuRo,1986.0,6,12,2013,Firewalker,I Thought Nuns Were Supposed to Be Virgins,tt0091055\nxKvmGfNhbF0,1986.0,3,12,2013,Firewalker,Attack of the Natives,tt0091055\nYCuSsetzzg8,1986.0,9,12,2013,Firewalker,Knife Throwing Contest,tt0091055\ncaypUMEoKf8,1986.0,8,12,2013,Firewalker,We Need a New Plan,tt0091055\nIhDAJ1Tug4M,1959.0,8,9,2013,A Hole in the Head,I Don't Want Handouts,tt0052896\nBi_YR5xkRx4,1963.0,5,11,2013,The Raven,Driving Under the Influence,tt0057449\n9VkmshlGEvE,1963.0,7,11,2013,The Raven,A Ghost?,tt0057449\nuSuoZcrKq0I,1964.0,3,10,2013,The Train,The Execution of Papa Boule,tt0059825\nxHunA6CYHvo,1963.0,10,11,2013,The Raven,A Duel to the Death,tt0057449\nF2Y7FnlkuCg,1963.0,6,11,2013,The Raven,Bedlo vs. Scarabus,tt0057449\njUcER281BOg,1970.0,12,12,2013,Ned Kelly,Sentenced to Death,tt0066130\nqrTBSBYpzg0,1963.0,9,11,2013,The Raven,Dr. Craven's Choice,tt0057449\nKxlEI-kTY2I,1970.0,11,12,2013,Ned Kelly,Ned's Last Stand,tt0066130\nevo1frlMjHQ,1963.0,3,11,2013,The Raven,Dead Man's Hair,tt0057449\n2_kQHIUwJMQ,2003.0,11,12,2013,A Guy Thing,In a Bathtub With a Girl,tt0295289\nPpbNn6gMTUE,1959.0,4,9,2013,A Hole in the Head,You're a Bum,tt0052896\n0IP7ihJrrqw,2003.0,4,12,2013,A Guy Thing,Crab Medicine,tt0295289\ni3xjZomB1s0,1959.0,7,9,2013,A Hole in the Head,Tony Loses the Race and the Deal,tt0052896\n1p8rDhTaegs,1959.0,5,9,2013,A Hole in the Head,Tired of Buying One Lamb Chop,tt0052896\nSyGAQwggjTw,1959.0,6,9,2013,A Hole in the Head,How Am I Gonna Help the Kid?,tt0052896\n79HayHaaXDE,1959.0,2,9,2013,A Hole in the Head,Broke Again,tt0052896\nYY-l3FmgXKw,1959.0,1,9,2013,A Hole in the Head,Ally Worries About His Dad,tt0052896\nuPqgue3xfPI,1959.0,9,9,2013,A Hole in the Head,High Hopes,tt0052896\nHhep61HLkIA,2003.0,9,12,2013,A Guy Thing,Did You Have a Girl in This Apartment?,tt0295289\nbmJ4doOPxd8,2003.0,1,12,2013,A Guy Thing,Paul Wakes Up With Becky,tt0295289\n1VwF6VuVhkc,2003.0,5,12,2013,A Guy Thing,These Are Going to Be Our In-Laws...,tt0295289\n_07OFEHs0iE,2003.0,6,12,2013,A Guy Thing,Window Escape,tt0295289\n-bzOzD2QShQ,2003.0,10,12,2013,A Guy Thing,Dirty Underwear Bins,tt0295289\npoAxbGphYmA,1963.0,11,11,2013,The Raven,The Castle Burns,tt0057449\nO_NBFJ4pow8,1963.0,1,11,2013,The Raven,Speaks,tt0057449\nOinNCchV-xk,1963.0,8,11,2013,The Raven,You're Alive!,tt0057449\nnuVY83HU5Mw,1963.0,4,11,2013,The Raven,Axe Man,tt0057449\ny-AJwogMrAU,1970.0,1,12,2013,Ned Kelly,Die Like a Kelly,tt0066130\nmksJyq7Z-mQ,1970.0,4,12,2013,Ned Kelly,Wild Colonial Boy,tt0066130\nxAMy0g4w_ME,1970.0,3,12,2013,Ned Kelly,Sunday Afternoon Boxing,tt0066130\nF1cWO821sR4,1970.0,7,12,2013,Ned Kelly,Blame It on the Kellys,tt0066130\nDHJDwY4xoEc,1970.0,6,12,2013,Ned Kelly,Finish It Off,tt0066130\nYTadpFs7QAI,1970.0,2,12,2013,Ned Kelly,We're the Kellys!,tt0066130\nQ8rhm3wBFE0,1970.0,10,12,2013,Ned Kelly,Train Ambush,tt0066130\nei1tTWCrHqc,1970.0,9,12,2013,Ned Kelly,Homemade Armor,tt0066130\nEEVcrvlYO-w,1970.0,5,12,2013,Ned Kelly,Long Jumping Contest,tt0066130\nW9fV8EusSWE,1970.0,8,12,2013,Ned Kelly,To the Republic of Victoria,tt0066130\nBQ5nPyRi6l8,1964.0,1,10,2013,The Train,Risking Lives for Art,tt0059825\nCPRh4gw_GmQ,1964.0,9,10,2013,The Train,A Defeated Army,tt0059825\nk1Xv18Vy-q0,1964.0,7,10,2013,The Train,Men Want to Be Heroes,tt0059825\nOC_NauqyoSg,1964.0,10,10,2013,The Train,A Lump of Flesh,tt0059825\ny5wsjMSXolU,1964.0,2,10,2013,The Train,Allied Bombing Raid,tt0059825\nZ3yR0aNriPM,1964.0,4,10,2013,The Train,Spitfire Attack,tt0059825\nY1IEtzj23ws,1964.0,5,10,2013,The Train,Train Wreck,tt0059825\nhAxEEf5p3Bw,1964.0,6,10,2013,The Train,Get Labiche,tt0059825\niiUiiK9dMPg,2003.0,1,10,2013,Agent Cody Banks,Cody Saves a Toddler,tt0313911\npN7yX45G6WA,2003.0,3,10,2013,Agent Cody Banks,The New Kid,tt0313911\nENjz0-Ut-nQ,2003.0,4,10,2013,Agent Cody Banks,How to Talk to Girls,tt0313911\niWW0Tk58kXM,2003.0,6,10,2013,Agent Cody Banks,Walking on the Ceiling,tt0313911\nXWXmnyflZtw,2003.0,2,10,2013,Agent Cody Banks,Spy Gadgets,tt0313911\nL45abB8vyEo,2003.0,5,10,2013,Agent Cody Banks,A Good Third Impression,tt0313911\nmJbFV5i5ay8,2003.0,10,10,2013,Agent Cody Banks,Last Stand,tt0313911\nZj3ggkkj2Pg,2003.0,8,10,2013,Agent Cody Banks,Diner Brawl,tt0313911\npFm8RKAyU_Q,2003.0,9,10,2013,Agent Cody Banks,Bomb Da Base,tt0313911\ntz6dNnahwCI,2003.0,7,10,2013,Agent Cody Banks,Cody Kicks Butt,tt0313911\nDlBuWaGDP0M,2010.0,3,5,2013,Iron Man 2,Get a Quote Scene,tt1228705\nVCxGD8VH-TM,2010.0,2,5,2013,Iron Man 2,Meet Natasha Scene,tt1228705\nzwQRQ6SbyMk,2010.0,5,5,2013,Iron Man 2,Prison Cell Scene,tt1228705\n89hCOgVa5LI,2010.0,4,5,2013,Iron Man 2,Suitcase Suit Scene,tt1228705\nyocBQlw_mCA,2010.0,1,5,2013,Iron Man 2,Stark Expo Scene,tt1228705\nPM9t2KSOfK8,1983.0,4,8,2013,Krull,Battle in the Swamps,tt0085811\nDToj3xM2b1E,1999.0,8,8,2013,Cruel Intentions,Sebastians' Journal,tt0139134\niYG8WCULpNM,1999.0,1,8,2013,Cruel Intentions,The Bet,tt0139134\nhpliHwPiYYU,1999.0,5,8,2013,Cruel Intentions,Practice Makes Perfect,tt0139134\n_4lDASeWsFg,1999.0,4,8,2013,Cruel Intentions,Funny Faces,tt0139134\nrwwMn3Y6rUA,1999.0,2,8,2013,Cruel Intentions,Getting to First Base,tt0139134\nCgBeBag4ir0,1999.0,7,8,2013,Cruel Intentions,Kathryn's Triumph,tt0139134\nPSofqNSuVy8,1964.0,1,8,2013,Dr. Strangelove,Ripper's Motivations,tt0057012\nBb2XlqE9OUg,1999.0,3,8,2013,Cruel Intentions,The Black Man is Gone,tt0139134\nxEqdoVnIFug,1999.0,6,8,2013,Cruel Intentions,\"It's Not You, It's Me\",tt0139134\nWI5B7jLWZUc,1964.0,2,8,2013,Dr. Strangelove,No Fighting in the War Room,tt0057012\nYmze0Je2Tm0,1964.0,5,8,2013,Dr. Strangelove,Mandrake Calls the President,tt0057012\nsnTaSJk0n_Y,1964.0,7,8,2013,Dr. Strangelove,Kong Rides the Bomb,tt0057012\nJ67wKhddWu4,1964.0,4,8,2013,Dr. Strangelove,Water and Commies,tt0057012\nVEB-OoUrNuk,1964.0,3,8,2013,Dr. Strangelove,Hello Dimitri,tt0057012\nmzddAYYDZkk,1964.0,8,8,2013,Dr. Strangelove,Living Underground,tt0057012\nCc1VTko8xJM,1983.0,7,8,2013,Krull,Breaking in the Fire Mares,tt0085811\n231TmvIPzQQ,1964.0,6,8,2013,Dr. Strangelove,No Point in Getting Hysterical,tt0057012\nEDdsxJLhp-E,1983.0,5,8,2013,Krull,A Changeling,tt0085811\n9O1-5MNRbKE,1983.0,2,8,2013,Krull,Ergo The Magnificent!,tt0085811\n3wJY4bd_M-w,1983.0,8,8,2013,Krull,Burning Tracks,tt0085811\nWGGlUlvJffY,1983.0,3,8,2013,Krull,Safe Passage,tt0085811\n173I36m3rr8,1983.0,1,8,2013,Krull,Wedding Intrusion,tt0085811\nRlnrFh_APX0,1983.0,6,8,2013,Krull,How Many Wives Does He Have?,tt0085811\nwfbqJpn8fN8,1985.0,2,8,2013,Real Genius,\"File Under \"\"H\"\" for \"\"Toy\"\"\",tt0089886\nSN7sOR35KCg,1985.0,1,8,2013,Real Genius,\"All Brain, No Penis\",tt0089886\nQa8kCQQUjHM,1985.0,4,8,2013,Real Genius,Lazlo's Lair,tt0089886\n2ATVtP3BK64,1984.0,1,8,2013,Starman,I Send Greetings,tt0088172\nrthHSISkM7A,1985.0,8,8,2013,Real Genius,Jerry's House of Popcorn,tt0089886\nYyZ4gGCCqss,1985.0,7,8,2013,Real Genius,Stop Playing With Yourself,tt0089886\nXPEWBEa8pqg,1985.0,5,8,2013,Real Genius,A Moral Imperative,tt0089886\nteZ52l28tys,1984.0,2,8,2013,Starman,Arizona Maybe,tt0088172\nG6i3bDGOLB8,1984.0,4,8,2013,Starman,The Deer Hunters,tt0088172\n1IctSkdJICI,1984.0,5,8,2013,Starman,Road Block,tt0088172\nE0aNsWbWr1s,1985.0,3,8,2013,Real Genius,Jordan Never Sleeps,tt0089886\ng3WtvzmKCQQ,1984.0,3,8,2013,Starman,\"Yellow Light, Go Very Fast\",tt0088172\n05-e-YTw4r8,1984.0,6,8,2013,Starman,Not From Around Here,tt0088172\nTLsRWN6G77I,1984.0,7,8,2013,Starman,I Gave You a Baby,tt0088172\naPPMHA65HIg,1984.0,8,8,2013,Starman,How to Say Goodbye,tt0088172\nJOkwDeIX1jg,1997.0,3,8,2013,Beverly Hills Ninja,Haru Says Goodbye,tt0118708\nChQG9RAkBiE,1997.0,2,8,2013,Anaconda,River Style,tt0118615\nrAEv7dJC5Iw,1997.0,4,8,2013,Beverly Hills Ninja,I Will Be Watching Your Every Move,tt0118708\nMfIvSh-tko8,1997.0,3,8,2013,Anaconda,The Deadly Wasp,tt0118615\nrzG2L4Nbm3E,1997.0,1,8,2013,Anaconda,Jungle Fever,tt0118615\nJWqaTJbxbW0,1997.0,8,8,2013,Anaconda,Swallowed Whole,tt0118615\nk-WW7ULn8RA,1997.0,4,8,2013,Anaconda,Babies,tt0118615\nwwoxXiyWf7A,1997.0,1,8,2013,Beverly Hills Ninja,The Great White Ninja,tt0118708\nraIdZiSZ970,1997.0,5,8,2013,Beverly Hills Ninja,Haru the Hibachi Chef,tt0118708\nPbgLbYd2zYI,1997.0,2,8,2013,Beverly Hills Ninja,A Trained Master,tt0118708\nijXLPE7SB3c,1997.0,7,8,2013,Anaconda,at the Waterfall,tt0118615\nK7iGuEr-u0s,1997.0,7,8,2013,Beverly Hills Ninja,No One Messes With My Brother,tt0118708\nBk2dqynryeY,1997.0,6,8,2013,Anaconda,There's a Devil Inside Everyone,tt0118615\nd79o09D8cuo,1997.0,5,8,2013,Anaconda,Change of Plans,tt0118615\nqbdg6o8Z11I,1997.0,6,8,2013,Beverly Hills Ninja,Hibachi Brawl,tt0118708\nlAcZxn1DeHs,1997.0,8,8,2013,Beverly Hills Ninja,Haru Battles Tanley,tt0118708\nKye_x3QOSU0,2007.0,8,11,2013,3:10 to Yuma,Not the Black Hat,tt0381849\nowM4is78C0o,2007.0,6,11,2013,3:10 to Yuma,Failed Negotiation,tt0381849\nM9WaDhm3bE0,2007.0,3,11,2013,3:10 to Yuma,I Ain't Gonna Kill You,tt0381849\nijueTjJrMQ0,2007.0,9,11,2013,3:10 to Yuma,I Ain't Never Been No Hero,tt0381849\noUxsU2oZ27s,2003.0,11,11,2013,Open Water,Feeding Frenzy,tt0374102\ngV4WFBjc01I,2007.0,11,11,2013,3:10 to Yuma,One Tough Son of a Bitch,tt0381849\n9BB9JHog-mg,2007.0,7,11,2013,3:10 to Yuma,Get Him on the Train,tt0381849\namGJwP2p7D8,2007.0,2,11,2013,3:10 to Yuma,Stagecoach Robbery,tt0381849\nUwnVloaPX5Y,2007.0,10,11,2013,3:10 to Yuma,Where's the ?,tt0381849\n8lnEGuCcmXs,2007.0,5,11,2013,3:10 to Yuma,Even Bad Men Love Their Mommas,tt0381849\nH2_tkNGWYKs,2008.0,5,10,2013,Bangkok Dangerous,Boat Chase,tt0814022\nH4dh0EmCQLg,2007.0,1,11,2013,3:10 to Yuma,You Have a Week,tt0381849\njAR5DtTUdHM,2007.0,4,11,2013,3:10 to Yuma,\"Ben Wade, Captured in Bisbee\",tt0381849\n4XG4OPjDKJY,2008.0,6,10,2013,Bangkok Dangerous,Happy Together,tt0814022\ni1nbM1Gg5OI,2008.0,3,10,2013,Bangkok Dangerous,Motorcycle Assassin,tt0814022\nlAAxpdk0Swo,2008.0,4,10,2013,Bangkok Dangerous,That Was Your First Lesson,tt0814022\nddwe3cp5dt0,2008.0,1,10,2013,Bangkok Dangerous,Silent Kill,tt0814022\nj1CcIP0upoU,2008.0,8,10,2013,Bangkok Dangerous,Seeing Red,tt0814022\nLagYNt1QpT4,2008.0,2,10,2013,Bangkok Dangerous,Four Rules,tt0814022\nB3g8p7_d8r8,2008.0,10,10,2013,Bangkok Dangerous,The Last Job,tt0814022\nrSturS8MP9o,2008.0,7,10,2013,Bangkok Dangerous,When the Nightmare Becomes Real,tt0814022\nQuIQ_S_WH7M,2008.0,9,10,2013,Bangkok Dangerous,One More Job,tt0814022\npyDG32yotmk,1999.0,7,11,2013,The Ninth Gate,You Should Be More Careful,tt0142688\nn7AIwvbyT5c,1999.0,8,11,2013,The Ninth Gate,Blood Baptism,tt0142688\n2_WO15gq88k,1999.0,9,11,2013,The Ninth Gate,The Enigma Is Solved,tt0142688\ngcM1pFxO464,1999.0,10,11,2013,The Ninth Gate,Boris Enters the Ninth Gate,tt0142688\nBcRXmoGWHtQ,1999.0,4,11,2013,The Ninth Gate,Even Hell Has Its Heroes,tt0142688\nkKk9o476WM8,1999.0,3,11,2013,The Ninth Gate,Raise the Devil,tt0142688\n4ekcTVeV-1w,1999.0,2,11,2013,The Ninth Gate,A Man Whose Loyalty Can Be Bought,tt0142688\nOuLL5R3sb-w,1999.0,1,11,2013,The Ninth Gate,An Unscrupulous Bookdealer,tt0142688\nLzJEXl2ie4E,2007.0,10,11,2013,Good Luck Chuck,Got Me Looking So Crazy,tt0452625\n6xNFwkWJug8,1999.0,5,11,2013,The Ninth Gate,Some Books Are Dangerous,tt0142688\nz0-rv13DDk8,1999.0,11,11,2013,The Ninth Gate,The Last Engraving,tt0142688\nYAjVUJ5RB3E,1999.0,6,11,2013,The Ninth Gate,Why the Devil?,tt0142688\nhBsnb6M-lr0,2007.0,9,11,2013,Good Luck Chuck,You're In the Clear,tt0452625\nMeAMVy0ybYA,2000.0,8,11,2013,Best in Show,,tt0218839\nCCF5MCx5Tes,2000.0,9,11,2013,Best in Show,Terrier Style,tt0218839\nwirXvuRATiE,2000.0,5,11,2013,Best in Show,Where's Winky?,tt0218839\nxVWpHTafYuA,2000.0,3,11,2013,Best in Show,We Met at Starbucks,tt0218839\nW7xrlkbp0Hs,2000.0,10,11,2013,Best in Show,American Bitch,tt0218839\n3uAh-opNpDg,2000.0,2,11,2013,Best in Show,We Both Love Soup,tt0218839\n-GaJPgI3jh4,2000.0,7,11,2013,Best in Show,Judging the Hounds,tt0218839\n3COpxKYnjPY,2000.0,4,11,2013,Best in Show,Naming Nuts,tt0218839\nxhlW1DSEAiw,2003.0,3,11,2013,Open Water,Left Behind,tt0374102\nJdeH3lqGvgY,2003.0,4,11,2013,Open Water,Was That a Shark?,tt0374102\nDO_uVdE-KtE,2003.0,5,11,2013,Open Water,Stung by Jellyfish,tt0374102\nfVv7WOgDC0o,2003.0,6,11,2013,Open Water,Asleep and Drifting,tt0374102\nZ08HN_2m24o,2003.0,1,11,2013,Open Water,Not in the Mood,tt0374102\nl1DMfq2zSks,2003.0,2,11,2013,Open Water,Under the Sea,tt0374102\nS6QH4oWys_Y,2003.0,7,11,2013,Open Water,Just a Little Cut,tt0374102\nImyqnop6grY,2000.0,1,11,2013,Best in Show,Two Left Feet,tt0218839\nm89SmMCynWM,2007.0,7,11,2013,Good Luck Chuck,The Best Night of Your Life,tt0452625\nabM-sq8s2_E,2003.0,9,11,2013,Open Water,Bitten,tt0374102\nqJ9YL7qMG80,2003.0,8,11,2013,Open Water,Big Ones,tt0374102\nCoDnI1qW8ys,2007.0,2,11,2013,Good Luck Chuck,Tits and Teeth,tt0452625\n4x1dHdc5fD0,2007.0,11,11,2013,Good Luck Chuck,I Want to Be That Next Guy,tt0452625\nFcFtBqXUud0,2007.0,4,11,2013,Good Luck Chuck,You Got it Made!,tt0452625\ntu0NflL0_9c,2007.0,5,11,2013,Good Luck Chuck,Mate Selection,tt0452625\nlWopMAZt-sw,2003.0,10,11,2013,Open Water,Night Storm,tt0374102\nW2OKX-PIpco,2007.0,3,11,2013,Good Luck Chuck,I Know About the Charm,tt0452625\nE4D7FEZx150,2007.0,8,11,2013,Good Luck Chuck,Seducing Eleanor,tt0452625\nxkzNVP-tQ-0,2007.0,1,11,2013,Good Luck Chuck,Charlie Gets Hexed,tt0452625\nFjrKzRGUXWA,2007.0,6,11,2013,Good Luck Chuck,A Really Good Kisser,tt0452625\n2DkHvEZSBOg,2007.0,4,9,2013,Delta Farce,Eastbound and Down,tt0800003\nBITmqWGegUE,2007.0,6,9,2013,Delta Farce,Carlos Santana,tt0800003\n9_AMztckp6k,2007.0,3,9,2013,Delta Farce,Butcher of Baghdad,tt0800003\nPi392aPIVHc,2007.0,2,9,2013,Delta Farce,Basic Training,tt0800003\nrOoBvxdO0Ac,2007.0,7,9,2013,Delta Farce,Mexican Standoff,tt0800003\nDcZgodKg9OQ,2007.0,5,9,2013,Delta Farce,Camel Ass Tacos,tt0800003\nH7GwaAh6G4o,2007.0,8,9,2013,Delta Farce,Lucha Libre Liberation,tt0800003\nx7mnUeDZWRI,2007.0,1,9,2013,Delta Farce,Sgt. Kilgore,tt0800003\n-xSV3MoacUw,2007.0,9,9,2013,Delta Farce,Larry Lays Out Santana,tt0800003\nJhX_d4BCzhk,2005.0,5,9,2013,Grizzly Man,Bear Fight,tt0427312\nArMePKKjiSw,2005.0,8,9,2013,Grizzly Man,Rest Peacefully,tt0427312\nyUsoVGj1Ta0,2005.0,9,9,2013,Grizzly Man,And Treadwell Is Gone,tt0427312\nyySvdJeBcEg,2005.0,2,9,2013,Grizzly Man,Sly Fox,tt0427312\nyo6AWtLxoG4,2005.0,7,9,2013,Grizzly Man,Animals Rule!,tt0427312\nJ181xxxzqyg,2005.0,6,9,2013,Grizzly Man,The Lord's Humble Servant,tt0427312\nUVj_fFGA1Vw,2005.0,1,9,2013,Grizzly Man,The Kind Warrior,tt0427312\nwUf0QFFi2Mk,2005.0,4,9,2013,Grizzly Man,You Must Never Listen to This,tt0427312\nAo-ipKN7iQE,2005.0,3,9,2013,Grizzly Man,That's My Story,tt0427312\nB3UhbtdxYak,2000.0,11,11,2013,Best in Show,Shih Tzu Calendar,tt0218839\nrARKAStGRy8,2000.0,6,11,2013,Best in Show,Busy Bee,tt0218839\nouPU0xazha4,1989.0,5,9,2013,Bride of Re-Animator,There Is My Creation!,tt0099180\nfNcnudXLN2g,1989.0,2,9,2013,Bride of Re-Animator,Revenge of the Re-Animated,tt0099180\n2CFBewOReY8,1989.0,1,9,2013,Bride of Re-Animator,Reviving Chapman,tt0099180\nvE3T2n8wX4k,1989.0,9,9,2014,Bride of Re-Animator,Hands and Feet,tt0099180\n30xxXgTH4OE,1989.0,4,9,2013,Bride of Re-Animator,Just Dead Tissue,tt0099180\n8x6RDkjZj8Y,1989.0,8,9,2013,Bride of Re-Animator,Doggie Hand,tt0099180\nQL9sZG6f5rQ,1989.0,6,9,2013,Bride of Re-Animator,The Head of Dr. Hill,tt0099180\ntxKlsWFlkcs,1989.0,3,9,2013,Bride of Re-Animator,They're Coming!,tt0099180\nwUul0bIkS6g,1989.0,7,9,2013,Bride of Re-Animator,You're A Nobody,tt0099180\nxQi7ABaeCx0,2008.0,1,8,2013,Step Brothers,Sleep Walkers,tt0838283\nWVxz2j4_skI,2008.0,6,8,2013,Step Brothers,Licking Dogsh**,tt0838283\nulwUkaKjgY0,2008.0,3,8,2013,Step Brothers,Bunk Beds,tt0838283\nENAuQIAgXIg,2008.0,7,8,2013,Step Brothers,Buried Alive,tt0838283\nIF-3dxM0df8,2008.0,4,8,2013,Step Brothers,Are You Awake?,tt0838283\n_PvuoEb4yeQ,2008.0,8,8,2013,Step Brothers,We Are Getting a Divorce,tt0838283\nKSheZC9C__s,2008.0,5,8,2013,Step Brothers,Punch Me In The Face,tt0838283\n7FOk4bCAQhc,2008.0,2,8,2013,Step Brothers,Job Interview,tt0838283\nKw5qjJslyNU,1996.0,6,10,2013,Pusher,Torturing Frank,tt0117407\nEzR4I2hJyxo,1996.0,10,10,2013,Pusher,In Debt to Milo,tt0117407\nRhirMa1wvPc,1996.0,8,10,2013,Pusher,Girl Talk,tt0117407\nmZpiKdps530,1996.0,9,10,2013,Pusher,Frankie's Friend,tt0117407\nJL9SnJbeZQw,1996.0,7,10,2013,Pusher,Threats and Intimidation,tt0117407\nk6UQZv_ElZE,1996.0,5,10,2013,Pusher,Spain,tt0117407\nZBc_xWnmHRk,1996.0,4,10,2013,Pusher,Frankie's Worth,tt0117407\n85dpTb6PRNw,1996.0,3,10,2013,Pusher,Lactose and Baking Soda,tt0117407\nQo91sVEacq0,1996.0,2,10,2013,Pusher,The Deal,tt0117407\ntgOwPRAbRdo,1996.0,1,10,2013,Pusher,Mom,tt0117407\nZF4nYBty_FU,1999.0,12,12,2013,Stigmata,The Secret Sayings,tt0145531\nbjaJxs12l44,1999.0,11,12,2013,Stigmata,The Messenger is Not Important,tt0145531\ncG0GDlP4oH0,1999.0,10,12,2013,Stigmata,The First,tt0145531\nPLNOftwFMCA,1999.0,9,12,2013,Stigmata,Tears of the Mother,tt0145531\n2T8HUyL7zyA,1999.0,8,12,2013,Stigmata,Subway Flagellation,tt0145531\nhJYfFD_MNoY,1999.0,7,12,2013,Stigmata,Stigmatics,tt0145531\n0NNaypyly_o,1999.0,6,12,2013,Stigmata,Pretty Presents,tt0145531\niJcH2hCMNiY,1999.0,5,12,2013,Stigmata,Kingdom of God,tt0145531\nT2WbeZlfB9U,1999.0,4,12,2013,Stigmata,In the Emergency Room,tt0145531\nnNkIWyfowzA,1999.0,3,12,2013,Stigmata,Frankie's Transfixion,tt0145531\nHcP-chk0FwY,1999.0,2,12,2013,Stigmata,Frankie's Exorcism,tt0145531\nkcDEHkSgpuw,1999.0,1,12,2013,Stigmata,A Messenger Has Faith,tt0145531\nluEg5bWRsmA,2010.0,3,-1,2012,Ceremony,Tall Tales,tt1341341\nIelhpK-eDh0,2011.0,1,9,2012,Twilight: Breaking Dawn Part 1,The Wedding,tt1324999\nYfualY_RvlA,2011.0,9,9,2012,Twilight: Breaking Dawn Part 1,Bella's Transformation,tt1324999\nPwmNvgd5kNI,2010.0,1,11,2012,Twilight: Eclipse,A Heartfelt Proposal,tt1325004\nbuoodeEt_hM,2011.0,8,9,2012,Twilight: Breaking Dawn Part 1,Jacob Imprints,tt1324999\n_3-cN9Bhxls,2011.0,2,9,2012,Twilight: Breaking Dawn Part 1,Jacob & Bella Dance,tt1324999\ndvT333RoCrw,2011.0,4,9,2012,Twilight: Breaking Dawn Part 1,I'm Late,tt1324999\nhEXsOOVWuGA,2009.0,12,12,2012,Twilight: New Moon,Volturi Fight,tt1259571\nyjdZhknwl2E,2011.0,5,9,2012,Twilight: Breaking Dawn Part 1,He's Thirsty,tt1324999\n-c9-2KcnLXI,2009.0,11,12,2012,Twilight: New Moon,Bella Saves Edward,tt1259571\n-Kd5zqw24S4,2009.0,10,12,2012,Twilight: New Moon,You Can Count on Me,tt1259571\nQKRPgJYHblo,2011.0,6,9,2012,Twilight: Breaking Dawn Part 1,Childbirth,tt1324999\n0klA5lTNwyY,2009.0,9,12,2012,Twilight: New Moon,Marry Me Bella,tt1259571\nGQlizbovQAg,2009.0,8,12,2012,Twilight: New Moon,We Can't Be Friends Anymore,tt1259571\nlhAQ43EIZ-g,2008.0,10,11,2012,Twilight,I'm Strong Enough To Kill You,tt1099212\nvOnWEmbW3OQ,2009.0,7,12,2012,Twilight: New Moon,Jacob's Transformation,tt1259571\nRNRZxWxgQlg,2011.0,7,9,2012,Twilight: Breaking Dawn Part 1,You're Not Dead,tt1324999\nJOidGUY4Dm0,2011.0,3,9,2012,Twilight: Breaking Dawn Part 1,The Honeymoon,tt1324999\nJhE3o7EwmEI,2009.0,6,12,2012,Twilight: New Moon,Bella's Bedroom,tt1259571\npPDz5TWc0Zw,2009.0,5,12,2012,Twilight: New Moon,Motorcycle Lesson,tt1259571\ndaUvbGlC3CY,2009.0,4,12,2012,Twilight: New Moon,Kiss Me,tt1259571\nV2r-pCAO4rw,2009.0,3,12,2012,Twilight: New Moon,I Will Never Fail You,tt1259571\nluylsO8UlhE,2009.0,2,12,2012,Twilight: New Moon,Happy Birthday,tt1259571\nlkMilWJJR_U,2009.0,1,12,2012,Twilight: New Moon,Paper Cut,tt1259571\neDblDj6BISo,2008.0,11,11,2012,Twilight,I Want You Always,tt1099212\nmSd_B5ZTP3s,2010.0,11,11,2012,Twilight: Eclipse,You'll Always Be My Bella,tt1325004\n-bG0iKaxQYM,2010.0,10,11,2012,Twilight: Eclipse,Unrequited Love,tt1325004\n7ghEs2R68XE,2010.0,9,11,2012,Twilight: Eclipse,She Has a Right to Know,tt1325004\n0AUpWC9Whfs,2010.0,8,11,2012,Twilight: Eclipse,Jacob Kiss Me,tt1325004\nLnuqPEIHL9I,2010.0,6,11,2012,Twilight: Eclipse,I'll Always Be Waiting,tt1325004\nVs2DOfnZ2vg,2010.0,7,11,2012,Twilight: Eclipse,I Am Hotter Than You,tt1325004\nfWxKQF17YHk,2010.0,5,11,2012,Twilight: Eclipse,He's Got His Hooks In You,tt1325004\nNMrgITIzg2o,2010.0,4,11,2012,Twilight: Eclipse,Graduation Day Speech,tt1325004\nQsQAo97BaBA,2010.0,3,11,2012,Twilight: Eclipse,Doesn't He Own a Shirt?,tt1325004\nAZIk5wIq2Qw,2008.0,9,11,2012,Twilight,Vampire Baseball,tt1099212\nHQK5uM8tokE,2010.0,2,11,2012,Twilight: Eclipse,An Unlikely Alliance,tt1325004\ncE71I4X9hWQ,2008.0,8,11,2012,Twilight,I Can Never Lose Control With You,tt1099212\nbpcwhWgWfCc,2008.0,3,11,2012,Twilight,The Crash,tt1099212\nSnJzOrHZwk8,2008.0,6,11,2012,Twilight,World's Most Dangerous Predator,tt1099212\nujFUQwcAQ7w,2008.0,5,11,2012,Twilight,I Know What You Are,tt1099212\nFY2kKLvUL2c,2008.0,4,11,2012,Twilight,I Feel Very Protective Of You,tt1099212\n9lX00rAetvU,2008.0,2,11,2012,Twilight,Don't Touch Me,tt1099212\nkELmSLtEiiI,2008.0,7,11,2012,Twilight,Hold On Tight,tt1099212\noXMUkgWoMlQ,2008.0,1,11,2012,Twilight,Bella's Scent,tt1099212\nD5E23GxcVHA,2006.0,8,8,2012,Talladega Nights,Cross Over the Anger Bridge,tt0415306\nA27nH_TtN3k,2006.0,7,8,2012,Talladega Nights,Dinner at Applebee's,tt0415306\nIzkrKfk4kYE,2006.0,6,8,2012,Talladega Nights,Susan Lays It on the Table,tt0415306\nQN5dfOs4TMY,2006.0,5,8,2012,Talladega Nights,My Husband Gregory,tt0415306\nYXmD6qdDCDE,2006.0,4,8,2012,Talladega Nights,Shake and Bake Is Dead,tt0415306\n6Dye05tvSoo,2006.0,3,8,2012,Talladega Nights,Knife in the Leg,tt0415306\nRkxAAilnLEI,2006.0,2,8,2012,Talladega Nights,That Just Happened!,tt0415306\ni1Nh_3JCFj8,2006.0,1,8,2012,Talladega Nights,Dear Lord Baby Jesus,tt0415306\nG9puHtVcU5o,1997.0,8,8,2012,Men in Black,Was That Your Auntie? Scene,tt0119654\nUONfi1pwQzI,1997.0,7,8,2012,Men in Black,Shooting Down the Bug Scene,tt0119654\nTNsEK_IIs9U,1997.0,6,8,2012,Men in Black,Edgar Takes a Hostage Scene,tt0119654\naJCCUdK7PiU,1997.0,5,8,2012,Men in Black,The Galaxy Is on Orion's Belt Scene,tt0119654\n8LhpYfjGZvw,1992.0,2,8,2012,A League of Their Own,Dottie Catches a Fast Ball,tt0104694\n-7krYJUfFv4,1992.0,1,8,2012,A League of Their Own,Dottie Gets Recruited,tt0104694\n8z7YDo44-xE,1997.0,1,8,2012,As Good as It Gets,We're All Gonna Die Soon,tt0119822\nZ7KYTavLTBo,2008.0,5,10,2012,Red Cliff,Protect the Refugees!,tt0425637\nMM0kq3y2AMk,2008.0,2,10,2012,Red Cliff,Southern Invasion,tt0425637\naJSh1zkPEvc,2010.0,3,5,2014,Harry Potter and the Deathly Hallows: Part 1,The Three Brothers,tt0926084\nPvtJeQ322eY,2001.0,7,8,2012,Joe Dirt,Pelted by Hot Dogs,tt0245686\n8HZ56REwh3o,1979.0,5,8,2012,Kramer vs. Kramer,I'm His Mother,tt0079417\nNiAbqHXwclo,2005.0,3,10,2013,Kiss Kiss Bang Bang,The Definition of an Idiot Scene,tt0373469\nE2U5HXLiy90,2004.0,2,8,2012,50 First Dates,Nympho is the State Bird of Ohio,tt0343660\nS__SZwFn0Rw,2004.0,1,8,2012,50 First Dates,Secret Agent Henry Roth,tt0343660\nT-m_67AX5Ms,2004.0,3,8,2012,50 First Dates,Vomiting Walrus,tt0343660\niYU7ltkHYXM,2004.0,8,8,2012,50 First Dates,Lucy's Studio,tt0343660\nv-fwHV86PgY,2004.0,4,8,2012,50 First Dates,Ula Takes a Beating,tt0343660\nxHrOaF4Dq5U,2004.0,5,8,2012,50 First Dates,Nothing Beats a First Kiss,tt0343660\nlQoMIGl_NTU,2004.0,7,8,2012,50 First Dates,Bon Voyage Henry,tt0343660\ntmwSUyoEItk,2004.0,6,8,2012,50 First Dates,Stranger in Bed,tt0343660\niRdTetA_Dqo,1992.0,8,8,2012,A Few Good Men,Jessup Is Arrested,tt0104257\n9FnO3igOkOk,1992.0,7,8,2012,A Few Good Men,You Can't Handle the Truth!,tt0104257\nnyKJeXDoqnw,1992.0,6,8,2012,A Few Good Men,We Follow Orders or People Die,tt0104257\nPjJzOpe9xEg,1992.0,5,8,2012,A Few Good Men,I Didn't Dismiss You,tt0104257\nkSyIRLpdmlA,1995.0,2,10,2012,A Little Princess,Alone in the World,tt0113670\nCevDWRn-3-s,1992.0,4,8,2012,A Few Good Men,Kaffee Melts Down,tt0104257\nvyMggFe9WRQ,1992.0,3,8,2012,A Few Good Men,Ask Me Nicely,tt0104257\nWXsTZ7eUpBE,1992.0,2,8,2012,A Few Good Men,A Woman to Salute,tt0104257\nljzkCBZuHM4,1992.0,1,8,2012,A Few Good Men,Galloway Confronts Kaffee,tt0104257\nNaKBQWLRJqw,1992.0,3,8,2012,A League of Their Own,\"Jimmy Pees, Dottie Does the Line-Up\",tt0104694\nXS1DdZzYIik,1992.0,8,8,2012,A League of Their Own,Dottie Says Goodbye,tt0104694\na46FsHMRPkc,1992.0,7,8,2012,A League of Their Own,Racine Belles Win the Game,tt0104694\nmmuJb30cigQ,1992.0,6,8,2012,A League of Their Own,Jimmy's Prayer,tt0104694\n6M8szlSa-8o,1992.0,5,8,2012,A League of Their Own,There's No Crying in Baseball,tt0104694\nKVyRBCk_V1s,1992.0,4,8,2012,A League of Their Own,Jimmy and Dottie's Sign-Off,tt0104694\nv1ordVEmJQQ,1995.0,6,10,2012,A Little Princess,Getting Sara's Locket,tt0113670\nva_wuPBP5kA,1995.0,4,10,2012,A Little Princess,Tell Me About India,tt0113670\nfWPRhRM1V7I,1995.0,7,10,2012,A Little Princess,All Girls Are Princesses,tt0113670\ntrLRP0-zvtU,1995.0,3,10,2012,A Little Princess,Not a Princess Any Longer,tt0113670\n-WOw8ePUCEo,1995.0,1,10,2012,A Little Princess,Our Mothers Are Angels,tt0113670\nFZ1f-u8RqBU,1995.0,8,10,2012,A Little Princess,Touched By An Angel,tt0113670\nLpBQ2Q6GMlM,1995.0,5,10,2012,A Little Princess,Just a Little Curse,tt0113670\nG3iPKcMjGlM,1995.0,9,10,2012,A Little Princess,Sara's Escape,tt0113670\nmszANpbvdM8,1995.0,10,10,2012,A Little Princess,Reunited with Papa,tt0113670\nIeMmE7HvO40,2003.0,8,10,2012,A Mighty Wind,Never Did No Wanderin',tt0310281\nkXvfBvua7GY,2003.0,7,10,2012,A Mighty Wind,Stagecraft 101,tt0310281\n2idVkpn0YAU,2003.0,4,10,2012,A Mighty Wind,Hitting That Sixth,tt0310281\nIzr-5yitrb0,2003.0,1,10,2012,A Mighty Wind,The Record Had No Hole,tt0310281\nojiHA64n6iw,2003.0,5,10,2012,A Mighty Wind,Witches in Nature's Colors,tt0310281\nsa2TE--j394,2003.0,6,10,2012,A Mighty Wind,Big Time Stuff,tt0310281\n5gN8YA_xeY8,2003.0,10,10,2012,A Mighty Wind,A Time of Changes,tt0310281\nYOkboxqOKBA,2003.0,9,10,2012,A Mighty Wind,Supreme Folk,tt0310281\nOf8JOVXYU0Q,2003.0,3,10,2012,A Mighty Wind,Wha' Happened?,tt0310281\nuu-RxCqop98,1992.0,4,8,2012,A River Runs Through It,Fishing with Father,tt0105265\n7vRhOdf-6co,1992.0,1,8,2012,A River Runs Through It,Learning to Fish and Write,tt0105265\nBI0lsk0EjfE,2003.0,2,10,2012,A Mighty Wind,The Bohners,tt0310281\nAP3GWf3p4fQ,1992.0,5,8,2012,A River Runs Through It,I'll Never Leave Montana,tt0105265\ngnz7BQ7lxJQ,1992.0,6,8,2012,A River Runs Through It,Witnessing Perfection,tt0105265\nTfGmV-el44k,1992.0,7,8,2012,A River Runs Through It,We Can Love Completely,tt0105265\nNJF70sHMFN8,1992.0,8,8,2012,A River Runs Through It,Haunted by Waters,tt0105265\nWA3_SfMxtN8,1992.0,3,8,2012,A River Runs Through It,The Maclean Brothers Fight,tt0105265\nnLTcdOr66lA,1992.0,2,8,2012,A River Runs Through It,Shooting the Chutes,tt0105265\nmSD3SFHaqwg,2002.0,4,8,2012,Adaptation,The Deconstructionist,tt0268126\n8391icf7iLk,2002.0,6,8,2012,Adaptation,Technology vs. Horse,tt0268126\nap9g2vR32Vg,2002.0,3,8,2012,Adaptation,Donald's Script Pitch,tt0268126\nMyvEWQL7veg,2002.0,5,8,2012,Adaptation,Charlie Can't Adapt,tt0268126\n7_HpQA3rLWw,2002.0,1,8,2012,Adaptation,Sweating at the Meeting,tt0268126\nx90GleSXqIg,2002.0,8,8,2012,Adaptation,You Are What You Love,tt0268126\nnr037owyBqM,2002.0,7,8,2012,Adaptation,Wasting McKee's Time,tt0268126\nSuJOuQ9PJ_o,1997.0,8,8,2012,Air Force One,The New,tt0118571\nmdYIqSZblv0,2002.0,2,8,2012,Adaptation,Done with Fish,tt0268126\nyehCJ076_zI,1997.0,7,8,2012,Air Force One,It Was You?,tt0118571\nnHpuQMB2pVU,1997.0,4,8,2012,Air Force One,The Commander-In-Chief,tt0118571\nyJS6icRaOq8,1997.0,6,8,2012,Air Force One,A Pilot's Sacrifice,tt0118571\nYdaeVone5qA,1997.0,5,8,2012,Air Force One,Get Off My Plane!,tt0118571\nAoAK1JNNKR0,1997.0,3,8,2012,Air Force One,Ivan Counts to Ten,tt0118571\nZRkiBDXDT5Q,1997.0,2,8,2012,Air Force One,The President Is Armed,tt0118571\nzj4oU-cUE9E,1997.0,1,8,2012,Air Force One,Hijacking,tt0118571\nCXacLvKGrQ0,1976.0,2,9,2012,All the President's Men,You're Both on the Story,tt0074119\ngvKBHCBBdf0,1976.0,7,9,2012,All the President's Men,Count to 10,tt0074119\nO4itfvSP7-c,1976.0,3,9,2012,All the President's Men,Somebody Got to Her,tt0074119\nTg4_lfm5VrQ,1976.0,6,9,2012,All the President's Men,I Hate Trusting Anybody,tt0074119\nFEdL1_zOyz4,1976.0,9,9,2012,All the President's Men,People's Lives Are in Danger,tt0074119\nzZi8n49RMGE,1976.0,8,9,2012,All the President's Men,Deep Throat,tt0074119\nvETxuL7Ij3Q,1976.0,4,9,2012,All the President's Men,Follow the Money,tt0074119\n42sANL2ap9A,1976.0,1,9,2012,All the President's Men,Watergate Burglary,tt0074119\nu0ttQ8Dn7LM,1976.0,5,9,2012,All the President's Men,People Sure Are Worried,tt0074119\nXZWz-YlVw5c,2003.0,8,8,2012,Anger Management,Crashing Yankee Stadium,tt0305224\n1cekfpK8mZQ,2003.0,5,8,2012,Anger Management,Monk Fight,tt0305224\nzEYkLkJs5g0,2003.0,7,8,2012,Anger Management,Buddy Steals Linda,tt0305224\nbQzh5ugYzPg,2003.0,6,8,2012,Anger Management,Dating Other People,tt0305224\nPGy7bpf9ibo,2003.0,3,8,2012,Anger Management,Dave's Anger Ally,tt0305224\nVs2Nq6isib4,2003.0,4,8,2012,Anger Management,The Porker,tt0305224\nlAgPsmTxBfc,2003.0,2,8,2012,Anger Management,Goosfraba,tt0305224\nl59t24vh3QI,1997.0,8,8,2012,As Good as It Gets,The Greatest Woman Alive,tt0119822\nDzUc3Eqzzos,2003.0,1,8,2012,Anger Management,Rage on a Plane,tt0305224\nJly4dXapR9c,1997.0,6,8,2012,As Good as It Gets,\"Good Times, Noodle Salad\",tt0119822\nA75AgrH5eqc,1997.0,7,8,2012,As Good as It Gets,You Make Me Want to Be a Better Man,tt0119822\nMI0gOipkexk,1997.0,5,8,2012,As Good as It Gets,Who Needs These Thoughts?,tt0119822\npbI6qTih2TI,1997.0,4,8,2012,As Good as It Gets,Sell Crazy Someplace Else,tt0119822\nitIDxKxfGJI,1997.0,2,8,2012,As Good as It Gets,Verdell the Dog,tt0119822\nc-ecbGNxEHM,1997.0,3,8,2012,As Good as It Gets,How Do You Write Women So Well?,tt0119822\nv5wBisDJJ5A,1995.0,5,8,2012,Bad Boys,Don't Ever Say I Wasn't There For You,tt0112442\npqDU_EJrb2g,1995.0,2,8,2012,Bad Boys,Bathroom Brawl,tt0112442\nujhXgFBjcZA,1995.0,8,8,2012,Bad Boys,He Ain't Even Worth Killing,tt0112442\nhAUbdHw8QG4,1995.0,7,8,2012,Bad Boys,That's How You're Supposed to Drive!,tt0112442\nim1ZK1WNBZs,1995.0,6,8,2012,Bad Boys,Hangar Shootout,tt0112442\nMoPFAlf393g,1995.0,1,8,2012,Bad Boys,This Is a Limited Edition,tt0112442\nAYZZV6qazes,1995.0,4,8,2012,Bad Boys,Bad Cop,tt0112442\nJet1_E4O1MU,2004.0,10,10,2012,District B13,Leito Fights Damien,tt0414852\nCmhinct9OGE,2004.0,9,10,2012,District B13,A Present From Taha,tt0414852\ni4h9xcdtyrE,1995.0,3,8,2012,Bad Boys,Freeze Mother Bitches!,tt0112442\nZ9BefcGEB10,2004.0,7,10,2012,District B13,Turning on Taha,tt0414852\nqb0Vd5ac82Q,2004.0,8,10,2012,District B13,Chased By Cars,tt0414852\njvCmoJHIm-A,2004.0,6,10,2012,District B13,Improvised Escape,tt0414852\n21q8w_kAtkU,2004.0,2,10,2012,District B13,Saving His Sister,tt0414852\nFIo18XdSuLs,2004.0,5,10,2012,District B13,How Did You Know I Was a Cop?,tt0414852\njrH2FZC1Z_U,2004.0,4,10,2012,District B13,Breaking into B13,tt0414852\nVHSoPTJNfPE,2004.0,1,10,2012,District B13,Parkour Chase,tt0414852\ng8nPKVElb88,2008.0,2,8,2012,Nick and Norah's Infinite Playlist,A Yugo is Not a Cab,tt0981227\nfbmyMs5HAR4,2004.0,3,10,2012,District B13,Casino Escape,tt0414852\nMVy9DFwT-4o,1993.0,6,10,2012,Batman: Mask of the Phantasm,Your Hands Are Just as Dirty,tt0106364\nyJ5tQQhl8wc,1993.0,2,10,2012,Batman: Mask of the Phantasm,Vigilante in a Ski Mask,tt0106364\nGvYsdMFsHuE,1993.0,4,10,2012,Batman: Mask of the Phantasm,Refusing to Stand By,tt0106364\n-_YHQheqKxE,1993.0,9,10,2012,Batman: Mask of the Phantasm,Model Mayhem,tt0106364\n-4Q-MS_oFkw,1993.0,5,10,2012,Batman: Mask of the Phantasm,Batman Begins,tt0106364\no_vwPlWTrgo,1993.0,7,10,2012,Batman: Mask of the Phantasm,Batman Hunted,tt0106364\nSAYvv7GeSSE,1988.0,6,9,2012,Beetlejuice,Never Trust the Living,tt0094721\nDK7-VL8Uxxo,1993.0,8,10,2012,Batman: Mask of the Phantasm,Spoiling the Mood,tt0106364\nZEOI34R4iw0,1993.0,10,10,2012,Batman: Mask of the Phantasm,\"Goodbye, My Love\",tt0106364\nOeEa3gTsVDo,1988.0,3,9,2012,Beetlejuice,You Guys Really Are Dead,tt0094721\nvE0nmQGO4Hk,1993.0,1,10,2012,Batman: Mask of the Phantasm,Your Angel of Death Awaits,tt0106364\n_3CJHN6bBzk,1993.0,3,10,2012,Batman: Mask of the Phantasm,The Plan Is Working,tt0106364\nIo0PZTAcBes,1988.0,4,9,2012,Beetlejuice,We're Simpatico,tt0094721\nRYlj-btwi6o,1988.0,1,9,2012,Beetlejuice,Free Demon Possession with Every Exorcism!,tt0094721\nLcf227lWEek,1988.0,5,9,2012,Beetlejuice,Scary Snake,tt0094721\ncZwdCa0ynEw,1988.0,2,9,2012,Beetlejuice,Netherworld Waiting Room,tt0094721\nvHmyJqXxmL8,1988.0,9,9,2012,Beetlejuice,Til Death Do Us Part,tt0094721\nNz15PudXkXM,1988.0,7,9,2012,Beetlejuice,The Ghost with the Most,tt0094721\naDm4L7gjYNs,1988.0,8,9,2012,Beetlejuice,It's Showtime!,tt0094721\nVhRkUhY8MlQ,2004.0,10,10,2012,Before Sunset,A Waltz for a Night,tt0381681\n3WscLkiiCts,2004.0,1,10,2012,Before Sunset,What Is Your Next Book?,tt0381681\neGJqzSFW9Zg,2004.0,9,10,2012,Before Sunset,Still Here,tt0381681\npEa07GOtQs4,2004.0,5,10,2012,Before Sunset,Relationships,tt0381681\nTUbgKkn9qFw,2004.0,7,10,2012,Before Sunset,Stop the Car,tt0381681\n60ldo3xGfGY,2004.0,4,10,2012,Before Sunset,If Today Was Our Last Day,tt0381681\nz_eg2OjO6uM,2004.0,8,10,2012,Before Sunset,I Have These Dreams...,tt0381681\nGk3MgTTHdLs,2004.0,2,10,2012,Before Sunset,Did You Show Up in Vienna?,tt0381681\nWPPUUvcO43A,2004.0,6,10,2012,Before Sunset,We Were Young and Stupid,tt0381681\ndcsByxGdYO0,2004.0,3,10,2012,Before Sunset,We Didn't Even Have Sex,tt0381681\nvTeY6H581pg,2008.0,7,10,2012,Body of Lies,Lunch with Aisha,tt0758774\nacs2qgkCHvw,1999.0,4,8,2012,Big Daddy,New School of Child Raising,tt0142342\nnDw_DOEdai8,1999.0,3,8,2012,Big Daddy,Old Man Sid,tt0142342\nvWyPfvAbUOQ,1999.0,1,8,2012,Big Daddy,You're Not Proposing Are You?,tt0142342\nTvetwclCFq4,1999.0,5,8,2012,Big Daddy,Picking-Up Girls in the Park,tt0142342\norGDoXo7xKA,1999.0,7,8,2012,Big Daddy,Saying Goodbye,tt0142342\nUFlhVGogIRg,1999.0,8,8,2012,Big Daddy,Ready to Be a Father,tt0142342\nUMlZ90ZNGJI,1999.0,6,8,2012,Big Daddy,Scuba Scam,tt0142342\nIdEekLJJc0o,2003.0,6,8,2012,Big Fish,Always Been a Fool,tt0319061\n5WIwlJP6XhU,2003.0,2,8,2012,Big Fish,Gigantificationism,tt0319061\nRAvoR20o9s4,2003.0,8,8,2012,Big Fish,The Story of My Life,tt0319061\nK2JtNouF2rQ,1999.0,2,8,2012,Big Daddy,To Pee or Not To Pee,tt0142342\n35LPE5SjhiI,2003.0,4,8,2012,Big Fish,Leaving Spectre,tt0319061\nZRdLFB-SJpA,2003.0,7,8,2012,Big Fish,Field of Daffodils,tt0319061\ncfDwQbxRoEo,2003.0,5,8,2012,Big Fish,Time Stands Still,tt0319061\nV5qEU07yVnI,2003.0,1,8,2012,Big Fish,The Witch's Eye,tt0319061\ngvJLNa16cdo,2003.0,3,8,2012,Big Fish,Giant Ambition,tt0319061\npaCyf1IAKug,2008.0,10,10,2012,Body of Lies,Fight the Infidels,tt0758774\nWkFdij3Wr9M,2008.0,8,10,2012,Body of Lies,The Brothers of Awareness,tt0758774\nNeciZ5_hFTY,2008.0,9,10,2012,Body of Lies,Desert Pick-up,tt0758774\ntskuP_9J2RY,2008.0,5,10,2012,Body of Lies,Be a Good Muslim,tt0758774\nySu6q4ydPZQ,2008.0,6,10,2012,Body of Lies,Reciprocity,tt0758774\n4cZQOWaWYj0,2008.0,3,10,2012,Body of Lies,Serious Trouble,tt0758774\nHK4eFj52f1o,2008.0,4,10,2012,Body of Lies,Bad Station Asset,tt0758774\nMcBW00qkAlY,2008.0,2,10,2012,Body of Lies,Safe House Shootout,tt0758774\nQihI3ORsFn0,1996.0,8,8,2012,Bottle Rocket,They'll Never Catch Me,tt0115734\nGJz6eFgwgkA,2008.0,1,10,2012,Body of Lies,You Milked Him,tt0758774\n-swpG7VRhpQ,1996.0,2,8,2012,Bottle Rocket,\"Bob Mapplethorpe, Potential Getaway Driver\",tt0115734\n5BKMV5PyjDg,1996.0,7,8,2012,Bottle Rocket,The Job Falls Apart,tt0115734\nOAZo5VJVZCY,1996.0,5,8,2012,Bottle Rocket,Dignan Blows Up,tt0115734\n21mtTvR21Ts,1996.0,6,8,2012,Bottle Rocket,Little Banana,tt0115734\nSmFDafzmklA,1996.0,4,8,2012,Bottle Rocket,Keep the Gun on the Table!,tt0115734\nBQdE0_Hy10M,1991.0,8,8,2012,Boyz n the Hood,\"Don't Know, Don't Show\",tt0101507\nvLXjWGI8sfw,1996.0,3,8,2012,Bottle Rocket,Future Man and Stacy,tt0115734\nUkYl0Qxgkpw,1996.0,1,8,2012,Bottle Rocket,It Was for Exhaustion,tt0115734\nvN_HrPvTVIk,1991.0,5,8,2012,Boyz n the Hood,Doughboy vs. Mama's Boy,tt0101507\nC--iuM8NcQc,1991.0,6,8,2012,Boyz n the Hood,Ricky Gets Shot,tt0101507\nW1fv8bPOwGk,1991.0,7,8,2012,Boyz n the Hood,Give Me the Gun,tt0101507\n5p9rqqJmDaQ,1991.0,3,8,2012,Boyz n the Hood,Gentrification,tt0101507\naCEjVC3Dtn8,1991.0,4,8,2012,Boyz n the Hood,We Got a Problem Here?,tt0101507\nSPrK-BvZA9E,1991.0,1,8,2012,Boyz n the Hood,Home Invasion,tt0101507\nSXeiM5hAWvA,1991.0,2,8,2012,Boyz n the Hood,Dominoes,tt0101507\nqhzCkJXZVJg,1998.0,8,8,2012,Can't Hardly Wait,Preston Kisses Amanda,tt0127723\neqdLKw173WI,1998.0,1,8,2012,Can't Hardly Wait,A Second Chance,tt0127723\n_RUjbQGPytY,1998.0,3,8,2012,Can't Hardly Wait,It Was Fate,tt0127723\nasySRpuqnTM,1998.0,4,8,2012,Can't Hardly Wait,Paradise City,tt0127723\nK8nX2uH-h-M,1998.0,7,8,2012,Can't Hardly Wait,First Kiss,tt0127723\n9SomT1Cop8A,1998.0,2,8,2012,Can't Hardly Wait,I Can't Believe She Came,tt0127723\nT0cNy3l6Zek,1998.0,5,8,2012,Can't Hardly Wait,Take Me Back?,tt0127723\nnxRZisFQdTE,1998.0,6,8,2012,Can't Hardly Wait,Amanda's Single,tt0127723\nvG8-BVdJ9_U,2008.0,8,10,2012,Red Cliff,The Maiden Decoy,tt0425637\nfeHbFy5zPNQ,2008.0,10,10,2012,Red Cliff,A Fine Match,tt0425637\niC-oZZbET3I,2008.0,9,10,2012,Red Cliff,Spears and Strength,tt0425637\nPZalnJDYFDk,2008.0,7,10,2012,Red Cliff,Time to Unite,tt0425637\nNAZYmJ_bVkw,2008.0,6,10,2012,Red Cliff,Assembling the Team,tt0425637\nVHLbq6oeSyw,2008.0,4,10,2012,Red Cliff,Three Warriors,tt0425637\ngA9Z-Irh_Y4,2008.0,3,10,2012,Red Cliff,Army of the Sun,tt0425637\nWj-RYFPvje4,2008.0,1,10,2012,Red Cliff,The First Sacrifice of War,tt0425637\nQ7spsnpuZQ4,2009.0,4,7,2012,\"Red Cliff, Part 2\",Attacking the Gates,tt1326972\nrojN1eCJgiA,2009.0,6,7,2012,\"Red Cliff, Part 2\",\"It's Me, Piggy\",tt1326972\niptTDWFBsGQ,2009.0,5,7,2012,\"Red Cliff, Part 2\",Phalanx,tt1326972\nGETldyxkTEI,2009.0,3,7,2012,\"Red Cliff, Part 2\",Engulfed in Flames,tt1326972\nr-briQqhGZY,2009.0,1,7,2012,\"Red Cliff, Part 2\",\"100,000 Arrows\",tt1326972\nzyTCACwFsgw,2009.0,7,7,2012,\"Red Cliff, Part 2\",Two Lives at Stake,tt1326972\nlaQz2eLj1-0,2009.0,2,7,2012,\"Red Cliff, Part 2\",Lighting the Fires,tt1326972\nJeeZA4B1qyI,1977.0,8,8,2012,Close Encounters of the Third Kind,Contact,tt0075860\ndUYCIwyMZTQ,1977.0,5,8,2012,Close Encounters of the Third Kind,Who Are You People?,tt0075860\nLYtSsBCYByk,1977.0,7,8,2012,Close Encounters of the Third Kind,Roy Leaves,tt0075860\nS4PYI6TzqYk,1977.0,6,8,2012,Close Encounters of the Third Kind,Communicating with the Mothership,tt0075860\ncdkS0TgEG30,1977.0,4,8,2012,Close Encounters of the Third Kind,Roy's Mashed Potatoes,tt0075860\nHYtuw0c3dJ4,1977.0,1,8,2012,Close Encounters of the Third Kind,Roy's First UFO Encounter,tt0075860\nOuH_qx192js,1977.0,3,8,2012,Close Encounters of the Third Kind,The UFOs Surround the House,tt0075860\n7ycl6niFTsM,2004.0,1,8,2012,Closer,I'm Not a Thief,tt0376541\n-eocP3-Ifag,2004.0,2,8,2012,Closer,Anna's Photo Exhibition,tt0376541\n8MW3KJUa8FQ,1977.0,2,8,2012,Close Encounters of the Third Kind,Chasing the UFOs,tt0075860\nceTBcVLeUtI,2004.0,6,8,2012,Closer,Tell Me Something True,tt0376541\nfnF1_aVlIio,2004.0,3,8,2012,Closer,Why Isn't Love Enough?,tt0376541\nZbeXU9FIFw8,2004.0,4,8,2012,Closer,Why Are You Doing This?,tt0376541\niCfBiIzWG9g,2004.0,5,8,2012,Closer,Are You Flirting With Me?,tt0376541\nqgmcXs02URY,2004.0,7,8,2012,Closer,I Lied to You,tt0376541\nUSGs4XhdI6I,2004.0,8,8,2012,Closer,Who Are You?,tt0376541\npOgf3IaWlgU,1993.0,9,10,2012,Dave,The Whole Truth,tt0106673\nZARAldXlSyA,1993.0,6,10,2012,Dave,Balancing the Budget,tt0106673\nrWvIBJO8T_Y,1993.0,10,10,2012,Dave,I Would've Taken a Bullet for You,tt0106673\nnjHGa4f1LwY,1993.0,7,10,2012,Dave,I Don't Think You Were Pretending,tt0106673\n7_wMbTKsnvQ,1993.0,2,10,2012,Dave,Hands on the Podium,tt0106673\n0xjYQiEDbj4,1993.0,3,10,2012,Dave,\"Thank You for Doing This, Ellen\",tt0106673\nxTdNSA_CWvc,1993.0,8,10,2012,Dave,You're Fired,tt0106673\nM2V8jSFKVw0,1993.0,1,10,2012,Dave,Extending the Gig,tt0106673\nCftR-xOfXsc,1993.0,4,10,2012,Dave,I Can't Say,tt0106673\niBSRk-DbhRw,1972.0,5,9,2012,Deliverance,\"Anywhere, Everywhere, Nowhere\",tt0068473\nEj9siBXzHzY,1972.0,7,9,2012,Deliverance,Play the Game,tt0068473\ndFwt1vL1JOg,1972.0,6,9,2012,Deliverance,The Burial,tt0068473\nWQnFe6vuWq4,1993.0,5,10,2012,Dave,Power in the Shower,tt0106673\ny7Ynxoqo8gw,1972.0,1,9,2012,Deliverance,You Don't Beat This River,tt0068473\nntC0xJo2bSU,1972.0,4,9,2012,Deliverance,Arrow Through the Heart,tt0068473\n4gh5B_Uezmk,1972.0,9,9,2012,Deliverance,Don't Come Back Here,tt0068473\nWqNMjZpSbnU,1972.0,3,9,2012,Deliverance,Squeal Like a Pig,tt0068473\nAYQA7kCTPN8,1972.0,8,9,2012,Deliverance,Shot for Shot,tt0068473\nLVkOD1Uy_9k,1972.0,2,9,2012,Deliverance,We're Lost,tt0068473\nsrDyToPqozI,1995.0,7,8,2012,Desperado,Guitar Army,tt0112851\ndoVYFjIJcfU,1995.0,2,8,2012,Desperado,Throwing Knives,tt0112851\nuxhJ_E3LuNA,1995.0,3,8,2012,Desperado,We Can Improvise,tt0112851\nS7h60nfyg3M,1995.0,5,8,2012,Desperado,Rooftop Escape,tt0112851\nKfprSGvOgpI,1995.0,8,8,2012,Desperado,\"Two Brothers, One Woman\",tt0112851\n5nIwJTUMlE4,1995.0,6,8,2012,Desperado,Let's Play,tt0112851\nAEEf_00tNos,1995.0,1,8,2012,Desperado,Is That Going On Right Now?,tt0112851\n579nK0yB22I,1995.0,4,8,2012,Desperado,Serenade to an Ambush,tt0112851\nrCn7orvs0Ws,1984.0,3,10,2012,The Neverending Story,Shell Mountain,tt0088323\n5sEZmMeH96Q,1984.0,7,10,2012,The Neverending Story,\"Come for Me, G'mork!\",tt0088323\nNgUGViWp3tg,1984.0,8,10,2012,The Neverending Story,The Power of The Nothing,tt0088323\nIBUOACCdZi8,1984.0,4,10,2012,The Neverending Story,Falkor the Luck Dragon,tt0088323\nvD8p7k2-_zA,2008.0,10,10,2012,Disaster Movie,I'm F***ing Matt Damon,tt1213644\nQQyorpxZ8rs,1984.0,1,10,2012,The Neverending Story,A Hungry Rockbiter,tt0088323\nxaILTs-_1z4,1984.0,9,10,2012,The Neverending Story,Call My Name,tt0088323\naj-OpTHixpU,1984.0,6,10,2012,The Neverending Story,Big Good Strong Hands,tt0088323\nI_vzG5nYk1I,1984.0,5,10,2012,The Neverending Story,Through the Sphinxes' Gate,tt0088323\nmPxTwqzr1sw,1984.0,10,10,2012,The Neverending Story,Flying Falkor,tt0088323\nvE8mFDabqD0,1984.0,2,10,2012,The Neverending Story,Artax and the Swamp of Sadness,tt0088323\nBg5ll84eQTw,2008.0,9,10,2012,Disaster Movie,Chlamydia Jones,tt1213644\nv59kIbs3gDY,2008.0,7,10,2012,Disaster Movie,Batman's Leaving,tt1213644\nLcX1BSUZVpg,2008.0,5,10,2012,Disaster Movie,Juno vs. Sex and the City,tt1213644\nI2jetO_ky7U,2008.0,6,10,2012,Disaster Movie,Demonic Chipmunks,tt1213644\nzmqhj8EOLBI,2008.0,1,10,2012,Disaster Movie,\"10,001 B.C.\",tt1213644\nMjsSG8pPTy0,2008.0,8,10,2012,Disaster Movie,Beowulf and Kung Fu Panda,tt1213644\nAQC83SamleQ,2008.0,3,10,2012,Disaster Movie,High School Musical,tt1213644\njVLk2tqreto,2008.0,4,10,2012,Disaster Movie,Hannah Montana's Dead!,tt1213644\nnvdBfpA8r4o,1975.0,1,10,2012,Dog Day Afternoon,Robbing the Bank,tt0072890\nKLieNRvLmd0,2008.0,2,10,2012,Disaster Movie,Superbad Girls,tt1213644\n4ca0T6jbhHo,1975.0,5,10,2012,Dog Day Afternoon,Wyoming,tt0072890\nXEsZK8pvveU,1975.0,10,10,2012,Dog Day Afternoon,The Jet Arrives,tt0072890\n_SR4O2gcXYA,1975.0,8,10,2012,Dog Day Afternoon,I'm Not a Homosexual,tt0072890\nJkJmzgDiUtw,1975.0,9,10,2012,Dog Day Afternoon,\"Goodbye, Leon\",tt0072890\nW-OzWbkk5lE,1975.0,6,10,2012,Dog Day Afternoon,They're Coming in the Back!,tt0072890\nrFuhmG2wUXw,1975.0,7,10,2012,Dog Day Afternoon,Tossing Money,tt0072890\nA1Tgrq5wLAw,1975.0,2,10,2012,Dog Day Afternoon,Telephone For You,tt0072890\nNSXcYEFY_ao,1975.0,4,10,2012,Dog Day Afternoon,On the Air,tt0072890\nlB6Gk5EtunI,1975.0,3,10,2012,Dog Day Afternoon,Attica!,tt0072890\ntPJ9WsQhpMw,1997.0,5,8,2012,Donnie Brasco,Ambush and Overthrow,tt0119008\ndbE2-VU-4SM,1997.0,3,8,2012,Donnie Brasco,I Know You Know!,tt0119008\nTT8o1fvTB5Q,1997.0,7,8,2012,Donnie Brasco,If You're a Rat...,tt0119008\nz54CDMBPKu8,1997.0,4,8,2012,Donnie Brasco,A Close Call,tt0119008\ntwkjN0xQsWw,1997.0,6,8,2012,Donnie Brasco,I Am Them,tt0119008\ne2xiwiWd_sM,1997.0,8,8,2012,Donnie Brasco,I'm Glad It Was Him,tt0119008\nNqYAnj6YcLk,1997.0,1,8,2012,Donnie Brasco,Lefty Gets a Lion,tt0119008\nBPrF_0Bg6iY,1997.0,2,8,2012,Donnie Brasco,This is Life and Death,tt0119008\n9CIAkk-YENU,1992.0,8,8,2012,Bram Stoker's Dracula,Dracula's Brides,tt0103874\n_OFfuZY_Pvk,1992.0,6,8,2012,Bram Stoker's Dracula,Take Me Away From All This Death,tt0103874\nX1rnBQJxfdk,1992.0,7,8,2012,Bram Stoker's Dracula,Rats,tt0103874\n8rlohOLUi9k,1992.0,4,8,2012,Bram Stoker's Dracula,Lucy the Vampyr,tt0103874\nV67ozonzKRQ,1992.0,5,8,2012,Bram Stoker's Dracula,Vampires Do Exist,tt0103874\njrLVuKks6lE,1992.0,3,8,2012,Bram Stoker's Dracula,Oceans of Time to Find You,tt0103874\nSDAdzb9IeGU,1969.0,6,8,2012,Easy Rider,Cemetery Acid Trip,tt0064276\nQLAYw0vM-bw,1969.0,8,8,2012,Easy Rider,The End of the Road,tt0064276\nonbiOVpX0_w,1992.0,1,8,2012,Bram Stoker's Dracula,Renunciation of God,tt0103874\nojgy7kyNp5g,1992.0,2,8,2012,Bram Stoker's Dracula,I Never Drink Wine,tt0103874\niamsdf-VSQI,1969.0,5,8,2012,Easy Rider,House of Blue Lights,tt0064276\nlQWvCntonxE,1969.0,7,8,2012,Easy Rider,We Blew It,tt0064276\n4j7zD5ydpUo,1969.0,2,8,2012,Easy Rider,You Got a Helmet?,tt0064276\n8Gu2ouJNmXc,1969.0,4,8,2012,Easy Rider,You Represent Freedom,tt0064276\nr763LgcxCyM,1969.0,1,8,2012,Easy Rider,Cellmates,tt0064276\nL7GJ018Avgw,1969.0,3,8,2012,Easy Rider,Unidentified Flying Object,tt0064276\nF6y4B_BFrJ4,2000.0,8,8,2012,Finding Forrester,A Friend of Integrity,tt0181536\nt5KEbS5soMA,2000.0,7,8,2012,Finding Forrester,My Name is William Forrester,tt0181536\nyF0WIBF4lBw,2000.0,5,8,2012,Finding Forrester,Yankee Stadium,tt0181536\nGc8MuT6L4Nw,1970.0,4,8,2012,Five Easy Pieces,The Easiest Piece,tt0065724\nxSnraJOeOyM,2000.0,6,8,2012,Finding Forrester,Are You Challenging Me?,tt0181536\nFIaxR4Z1jVY,2000.0,3,8,2012,Finding Forrester,Free Throw Shootout,tt0181536\n0nfoP3bmd1c,1970.0,6,8,2012,Five Easy Pieces,You Pompous Celibate!,tt0065724\n1hMMUJ2Gn7Y,2000.0,2,8,2012,Finding Forrester,\"You the Man Now, Dawg!\",tt0181536\nA_lu5jmaUbU,2000.0,4,8,2012,Finding Forrester,The Pulitzer Prize,tt0181536\nzLBEFvMkQCo,2000.0,1,8,2012,Finding Forrester,The Key to Writing,tt0181536\nQZq0zhzgres,1970.0,5,8,2012,Five Easy Pieces,No Inner Feeling,tt0065724\nXNfCPe5SGbw,1970.0,1,8,2012,Five Easy Pieces,Betty & Twinky,tt0065724\n5JLr0XUrEF0,1970.0,2,8,2012,Five Easy Pieces,Freeway Performance,tt0065724\nvLAQiwEGGKs,1970.0,8,8,2012,Five Easy Pieces,I'm Fine,tt0065724\nY7y8tLgvpCY,1970.0,7,8,2012,Five Easy Pieces,Father and Son,tt0065724\nhdIXrF34Bz0,1970.0,3,8,2012,Five Easy Pieces,Hold the Chicken,tt0065724\npAs8uvKNkcU,1982.0,7,8,2012,Gandhi,The Father of the Nation,tt0083987\n0adv8zQsa9I,1982.0,8,8,2012,Gandhi,A Way Out of Hell,tt0083987\n3GG_4UaCD8E,1982.0,5,8,2012,Gandhi,Not My Obedience,tt0083987\nCZVsWzIb6Vk,1982.0,6,8,2012,Gandhi,It Is Time You Left,tt0083987\npi6SInyE0sw,1982.0,4,8,2012,Gandhi,The Truth Is the Truth,tt0083987\nS8mfOyCySKg,1982.0,3,8,2012,Gandhi,Room For Us All,tt0083987\n-Y3tZpAdWTc,1982.0,2,8,2012,Gandhi,Thrown Off the Train,tt0083987\nd7c4TXqkMso,1982.0,1,8,2012,Gandhi,The Conscience of All Mankind,tt0083987\nMEOPA4dzK2s,1997.0,6,8,2012,Gattaca,Vincent & Irene,tt0119177\n7gYbpM0GWTs,1997.0,2,8,2012,Gattaca,Vincent Saves Anton,tt0119177\n06lJhEc7zIo,1997.0,3,8,2012,Gattaca,A De-gene-erate,tt0119177\n1Z-MzwPzpBk,1997.0,4,8,2012,Gattaca,You Are Jerome Morrow,tt0119177\n1Q67bMYOm7E,1997.0,1,8,2012,Gattaca,I Am Not Jerome Morrow,tt0119177\nMjOXPVmOBSg,1997.0,5,8,2012,Gattaca,Escaping the Club,tt0119177\nll5qiWa6YDk,1997.0,8,8,2012,Gattaca,The Final Swim,tt0119177\nUQDSN9a_Zgs,1997.0,7,8,2012,Gattaca,It is Possible,tt0119177\nLmiHjcCiYwQ,1989.0,7,8,2012,Ghostbusters 2,Snatching Oscar,tt0097428\nt1gkRAWvxOs,1989.0,6,8,2012,Ghostbusters 2,Slime Square,tt0097428\nlCs7qjJzoDg,1989.0,8,8,2012,Ghostbusters 2,Facing Vigo,tt0097428\n_th4Xe6Dsm4,1989.0,2,8,2012,Ghostbusters 2,Short But Pointless,tt0097428\n_Nd7VxsQIGo,1989.0,4,8,2012,Ghostbusters 2,Routine Spook Check,tt0097428\nTb6tz6ohprw,1989.0,5,8,2012,Ghostbusters 2,Tunnel Terror,tt0097428\noRh8qQyIngg,1989.0,3,8,2012,Ghostbusters 2,Back to Busting,tt0097428\nJ511q05SReQ,1989.0,1,8,2012,Ghostbusters 2,World of the Psychic,tt0097428\nEXTklH_oTI0,2004.0,5,10,2012,Ginger Snaps Back: The Beginning,Family Reunion,tt0365265\nne4ZgnPn9Ck,2004.0,6,10,2012,Ginger Snaps Back: The Beginning,I'll Kill You,tt0365265\n5rrDUgMfVuo,2004.0,9,10,2012,Ginger Snaps Back: The Beginning,Werewolf Massacre,tt0365265\nxEtptEM2_mg,2004.0,8,10,2012,Ginger Snaps Back: The Beginning,\"Come Closer, It's a Secret\",tt0365265\nqAteApi_4IE,2004.0,10,10,2012,Ginger Snaps Back: The Beginning,Together Forever,tt0365265\nzQLLIxNky50,2004.0,7,10,2012,Ginger Snaps Back: The Beginning,A Sister's Dream,tt0365265\nUy5uLy_cpwc,2004.0,2,10,2012,Ginger Snaps Back: The Beginning,Trapped,tt0365265\nWkfpLz3XMOI,2004.0,4,10,2012,Ginger Snaps Back: The Beginning,Waking Up to a Nightmare,tt0365265\noN-Ck_140ko,2004.0,1,10,2012,Ginger Snaps Back: The Beginning,A Bleak Prophecy,tt0365265\nESjSqiHhL0A,2004.0,3,10,2012,Ginger Snaps Back: The Beginning,The Bite,tt0365265\nlJiMlgvygvc,1989.0,1,8,2012,Glory,The Battle of Antietam,tt0097441\ngmo_PhSftuc,1989.0,2,8,2012,Glory,The Worst Soldier in this Whole Company,tt0097441\nKD5DVxqmjRo,1989.0,3,8,2012,Glory,Trip Gets Flogged,tt0097441\n8Nbbi16tvYA,1989.0,4,8,2012,Glory,Shaw vs. the Quartermaster,tt0097441\nFFWLkCnT50s,1989.0,5,8,2012,Glory,Rawlins Confronts Trip,tt0097441\nGrMoki4-weM,1989.0,6,8,2012,Glory,Prayers of the 54th,tt0097441\nq7qwqVbZSqE,1989.0,8,8,2012,Glory,Breaching Fort Wagner,tt0097441\nFjr5MSmxKJ0,1989.0,7,8,2012,Glory,Shaw and Trip Fall Together,tt0097441\nNEg6faTj_co,1999.0,8,8,2012,Go,It's a Miata,tt0139239\n4SWqNoW_zI0,1999.0,7,8,2012,Go,\"Even If She's Alive, She's Dead\",tt0139239\nOkdLWuCRe0c,1999.0,6,8,2012,Go,Confederated Products,tt0139239\nYonDo9SCqII,1999.0,5,8,2012,Go,What Happens in Vegas,tt0139239\nWzBS3IIb-vg,1999.0,4,8,2012,Go,30 Seconds to Get Outta Here,tt0139239\nsPZUh1YRnDg,1999.0,3,8,2012,Go,Hit and Run,tt0139239\nPLtPPtaCZQA,1999.0,1,8,2012,Go,Collateral,tt0139239\nSxgfSDgHGYw,1999.0,2,8,2012,Go,Answer the Question,tt0139239\nufaAnz9XmsE,1998.0,10,10,2012,Gods and Monsters,I Want You to Kill Me,tt0120684\nHgTsJ7hBQ-4,1998.0,9,10,2012,Gods and Monsters,Barnett on the Wire,tt0120684\nD6XLyg5wBHU,1998.0,8,10,2012,Gods and Monsters,David at the Party,tt0120684\n41h9uoNt6F4,1998.0,7,10,2012,Gods and Monsters,Memories of the War,tt0120684\nwwe_yos_-ew,1998.0,6,10,2012,Gods and Monsters,Turn Towards the Uncomfortable,tt0120684\nr8XE2-HpGuk,1998.0,5,10,2012,Gods and Monsters,Men Who Bugger Each Other,tt0120684\nBuRr2uMsGTM,1998.0,4,10,2012,Gods and Monsters,Aberrant Childhood,tt0120684\nAJ4edZsgJAk,1998.0,3,10,2012,Gods and Monsters,An Architectural Skull,tt0120684\n0s_EWjNNgWg,1998.0,2,10,2012,Gods and Monsters,Vice and Indulgence,tt0120684\ngKGOG-Pr81E,1993.0,7,8,2012,Groundhog Day,Phil's Errands,tt0107048\nKuoC25LQrdM,1998.0,1,10,2012,Gods and Monsters,\"Love Dead, Hate Living\",tt0120684\ngvGNWLszAQA,1993.0,6,8,2012,Groundhog Day,Phil: New and Improved,tt0107048\nZNn6J56J5HE,1993.0,8,8,2012,Groundhog Day,Happy in Love,tt0107048\nuw63_YyNsF4,1993.0,5,8,2012,Groundhog Day,Phil's a God,tt0107048\nzVeJ5F26uiM,1993.0,4,8,2012,Groundhog Day,French Poetry,tt0107048\niClIIg_YtAk,1993.0,3,8,2012,Groundhog Day,What Rita Wants,tt0107048\nXqSYC_vwhDg,1993.0,1,8,2012,Groundhog Day,Ned Ryerson!,tt0107048\nhQCG2AwzTxA,1993.0,2,8,2012,Groundhog Day,... Again,tt0107048\n2wTJfcaezu0,1967.0,8,8,2012,Guess Who's Coming to Dinner,Two People Who Fell In Love,tt0061735\nLTgahyvBMk4,1967.0,7,8,2012,Guess Who's Coming to Dinner,You Don't Own Me,tt0061735\ncGTn7aRFttk,1967.0,6,8,2012,Guess Who's Coming to Dinner,Get Permanently Lost,tt0061735\n-9P7Ge1KmTY,1967.0,5,8,2012,Guess Who's Coming to Dinner,,tt0061735\nAhPCRPmHcxE,1967.0,4,8,2012,Guess Who's Coming to Dinner,Presidential Ambitions,tt0061735\nejUWeYTslb0,1967.0,3,8,2012,Guess Who's Coming to Dinner,Parental Approval,tt0061735\nBoNAEfrI2oQ,1990.0,9,10,2012,Hamlet,The Poisoned Cup,tt0099726\nASnNWCK3kiQ,1967.0,2,8,2012,Guess Who's Coming to Dinner,What the Hell Is Going On Here?,tt0061735\n8BI5jFyAdZ8,1967.0,1,8,2012,Guess Who's Coming to Dinner,Pleased to Meet You,tt0061735\nDNWODAIBs7s,1990.0,10,10,2012,Hamlet,The Rest Is Silence,tt0099726\na38HZFbhB-M,1990.0,7,10,2012,Hamlet,A Bloody Deed,tt0099726\nUbxMhvcxJJc,1990.0,8,10,2012,Hamlet,\"Alas, Poor Yorick\",tt0099726\nHqS7VyuD_Mg,1990.0,6,10,2012,Hamlet,My Offense Is Rank,tt0099726\nKOGjVUa_iIE,1990.0,5,10,2012,Hamlet,Frightened with False Fire,tt0099726\nI5iG5NitBgI,1990.0,4,10,2012,Hamlet,What a Piece of Work Is Man?,tt0099726\nVf2TpWsPvgI,1990.0,3,10,2012,Hamlet,To Be or Not To Be,tt0099726\nLKR2bN9V2Bc,2006.0,10,10,2012,Happily N'Ever After,Ella Fights Frieda,tt0308353\n8JyxfJo-iiA,1990.0,2,10,2012,Hamlet,To Thine Own Self Be True,tt0099726\nKJmWpR-4AIg,1990.0,1,10,2012,Hamlet,\"Frailty, Thy Name Is Woman\",tt0099726\nQKP-AZKNl9k,2006.0,7,10,2012,Happily N'Ever After,The Seven Dwarves,tt0308353\nfO8nqGKrtDI,2006.0,8,10,2012,Happily N'Ever After,We Got Witches!,tt0308353\nXYZ_oLTFzSA,2006.0,5,10,2012,Happily N'Ever After,At Last a Damsel in Distress!,tt0308353\n0I84IUKomh4,2006.0,9,10,2012,Happily N'Ever After,Annoying Little Optimist,tt0308353\nZXgyS34Zpto,2006.0,2,10,2012,Happily N'Ever After,The Wise Wizard,tt0308353\nNnWIRGdMR44,2006.0,4,10,2012,Happily N'Ever After,The Staff of Power,tt0308353\nCO6yUpPvY7s,2006.0,6,10,2012,Happily N'Ever After,Nocturnal Villains,tt0308353\n8CCo0EI6zIM,2006.0,3,10,2012,Happily N'Ever After,Fairy Godmother,tt0308353\nYY4kKO6wfyg,2006.0,1,10,2012,Happily N'Ever After,The Dragon Lady,tt0308353\n2z4o-jBlqq0,1995.0,5,5,2012,Heat,Look at Me,tt0113277\ns3rv0BdxWfM,1995.0,3,5,2012,Heat,The Sun Rises and Sets With Her,tt0113277\nGpNzlh5ALRA,1995.0,1,5,2012,Heat,Armored Van Heist,tt0113277\nJqDoUCcJHPU,1995.0,2,5,2012,Heat,Neil and Eady,tt0113277\nDdDl6mbcGtc,1995.0,4,5,2012,Heat,Drive-In Shoot Out,tt0113277\nmGf4oL6RLGs,2005.0,7,8,2012,Hitch,Morning Person,tt0386588\n0JmETteiVzo,2005.0,4,8,2012,Hitch,Professional Help,tt0386588\nj2e41FeccuA,2005.0,8,8,2012,Hitch,I'm Just As Scared As You Are,tt0386588\nQnyzZbrrh9M,2005.0,2,8,2012,Hitch,Allegra Reaches Out,tt0386588\nuU59kXuJHhI,2005.0,3,8,2012,Hitch,Chip,tt0386588\neKKd33QEB3I,2005.0,5,8,2012,Hitch,Jet Ski Mishap,tt0386588\n50YQeugOMOw,2005.0,6,8,2012,Hitch,Dance Lessons,tt0386588\nur0U4xN0d_A,2005.0,1,8,2012,Hitch,Shock and Awe,tt0386588\nqZubhGcnsHk,1991.0,7,8,2012,Hook,I Wish I Had a Dad Like You,tt0102057\nH6DqWP733F4,1991.0,6,8,2012,Hook,Battling the Pirates,tt0102057\n-wX6_qCCnPc,1991.0,8,8,2012,Hook,The End of,tt0102057\n6ohgHjQvK5g,1991.0,5,8,2012,Hook,Peter Confronts,tt0102057\nC6hmQwfEmzc,1991.0,4,8,2012,Hook,Peter Becomes Pan,tt0102057\nJsJxIoFu2wo,1991.0,2,8,2012,Hook,Insults at Dinner,tt0102057\n6s8ZEFUSYAI,1991.0,1,8,2012,Hook,\"There You Are, Peter!\",tt0102057\nYCSbEzI7Nz0,1991.0,3,8,2012,Hook,Food Fight!,tt0102057\nwvPmP4xTruI,1985.0,1,8,2012,St. Elmo's Fire,What's the Meaning of Life?,tt0090060\neQ9HJXZI_qU,1967.0,6,8,2012,In Cold Blood,The Prosecutor's Statement,tt0061809\noLIwz9gn00g,1985.0,2,8,2012,St. Elmo's Fire,Very Pink,tt0090060\nqU0H2mmgsjM,1967.0,1,8,2012,In Cold Blood,A Sharp Con,tt0061809\nHD8tSGHYaGA,1967.0,2,8,2012,In Cold Blood,Buried Treasure,tt0061809\ncPYdLs7RRRc,1967.0,4,8,2012,In Cold Blood,Silver Dollar,tt0061809\ngHAJY34g-LY,1967.0,5,8,2012,In Cold Blood,The Last Living Thing You're Ever Gonna See,tt0061809\nJQXj8pF6Rx4,1967.0,3,8,2012,In Cold Blood,Plotting the Score,tt0061809\nk4YuBxpQwqA,1967.0,7,8,2012,In Cold Blood,Hopeless Dreams,tt0061809\nyxVC4lfxHGs,1967.0,8,8,2012,In Cold Blood,The Valley of the Shadow of Death,tt0061809\n0EKDRD2sHI4,1993.0,8,8,2012,In the Line of Fire,Fatal Fall,tt0107206\np8wvEC_cBU4,1993.0,7,8,2012,In the Line of Fire,Aim High,tt0107206\nJAiuiipD6Wo,1993.0,5,8,2012,In the Line of Fire,If Only I Reacted,tt0107206\ntff_EEQt79s,1993.0,6,8,2012,In the Line of Fire,Blocking the Bullet,tt0107206\nFQfb9ayuY3A,1993.0,4,8,2012,In the Line of Fire,The Irony's So Thick,tt0107206\nTHLll7d7Dfo,1993.0,3,8,2012,In the Line of Fire,\"Are You Going to Shoot Me, Frank?\",tt0107206\njbCyTUSQ6fY,1993.0,2,8,2012,In the Line of Fire,Rendezvous With My Ass,tt0107206\nabhF5CFFW4s,1993.0,1,8,2012,In the Line of Fire,\"You're Under Arrest, Too\",tt0107206\nvEt5MqYD_3s,1934.0,5,8,2012,It Happened One Night,A Perfectly Nice Married Couple,tt0025316\nqFWptPtHG78,1934.0,6,8,2012,It Happened One Night,This Isn't Piggyback!,tt0025316\nLhc_xw9cQ6I,1934.0,8,8,2012,It Happened One Night,Go Back to Your Bed,tt0025316\naHJKwOGb7MI,1934.0,4,8,2012,It Happened One Night,The Pleasure Was All Mine,tt0025316\n9zUaNKBQ04c,1934.0,3,8,2012,It Happened One Night,The Walls of Jericho,tt0025316\n1kAtlL7cZOg,1934.0,2,8,2012,It Happened One Night,Dropping In,tt0025316\nAr-hnj5Zsk4,1934.0,7,8,2012,It Happened One Night,Lessons in Hitchhiking,tt0025316\nKF-wcaGD2UE,1934.0,1,8,2012,It Happened One Night,Make Way for the King,tt0025316\nOf73UiXUvjA,1996.0,8,8,2012,Jerry Maguire,Not Gonna Cry,tt0116695\nAyrP-pwDayE,1996.0,7,8,2012,Jerry Maguire,You Had Me at Hello,tt0116695\nQhVuXKypPs0,1996.0,6,8,2012,Jerry Maguire,In Rod We Trust,tt0116695\nl1B1_jQnlFk,1996.0,4,8,2012,Jerry Maguire,Help Me Help You,tt0116695\nniZKrt4XAZE,1996.0,3,8,2012,Jerry Maguire,Jerry Dumps Avery,tt0116695\nASVUj89hyg0,1996.0,5,8,2012,Jerry Maguire,Play With Heart,tt0116695\n6ZZI6-zh0GM,1996.0,2,8,2012,Jerry Maguire,Who's Coming With Me?,tt0116695\nBckPa2_A8gI,1991.0,7,7,2012,JFK,The Truth,tt0102138\n3ema7lfEAMk,1991.0,3,7,2012,JFK,A Mystery Wrapped in a Riddle Inside an Enigma,tt0102138\nFhBm4kprCkk,1991.0,1,7,2012,JFK,Through the Looking Glass,tt0102138\nGSw9sjqYK_I,1991.0,4,7,2012,JFK,A Meeting with  X,tt0102138\nxuUtu2xRGgY,1991.0,5,7,2012,JFK,Coup d'État,tt0102138\n2nmGS8rVuIM,1991.0,6,7,2012,JFK,The Zapruder Film,tt0102138\nI_X0TKL3bqk,2001.0,8,8,2012,Joe Dirt,The Gator Show,tt0245686\nx4utH5uWK6c,2001.0,5,8,2012,Joe Dirt,You're My Sister!,tt0245686\n2gaEkPaykJo,1991.0,2,7,2012,JFK,Crossfire in Daley Plaza,tt0102138\njXGV-MT-TmU,2001.0,1,8,2012,Joe Dirt,My Lucky Meteor,tt0245686\nI5TzyLhwKKY,2001.0,2,8,2012,Joe Dirt,Buddies With Brandy,tt0245686\nsuvJai5IC6c,2001.0,3,8,2012,Joe Dirt,Snakes and Sparklers,tt0245686\nX-S296ENSIo,2001.0,4,8,2012,Joe Dirt,Crapper Tank,tt0245686\nZAMQGIx3JKk,2001.0,6,8,2012,Joe Dirt,It Puts the  in the Hole,tt0245686\nM0TjT53qpFY,1995.0,8,8,2012,Jumanji,,tt0113497\nSiUT8u1LckQ,1995.0,7,8,2012,Jumanji,Earthquake,tt0113497\nyjF_gSu6xCQ,1995.0,6,8,2012,Jumanji,Quicksand and Spiders,tt0113497\nibeJlYiMz9w,1995.0,5,8,2012,Jumanji,Crocodile Attack,tt0113497\nRWwhA2v9UFQ,1995.0,4,8,2012,Jumanji,Stampede!,tt0113497\ndTllG2KdPMQ,1995.0,2,8,2012,Jumanji,What Year is It?,tt0113497\n969gXtFAcZU,1995.0,3,8,2012,Jumanji,Sarah's Turn,tt0113497\njavEwwHaNa4,1995.0,1,8,2012,Jumanji,Wasps and Monkeys,tt0113497\nqbYyYYHysqM,2005.0,7,10,2013,Kiss Kiss Bang Bang,The Dream Girl Scene,tt0373469\nR2MxWZTrgxw,2005.0,10,10,2013,Kiss Kiss Bang Bang,Hopeless Plight Scene,tt0373469\n6svL10xXulQ,2005.0,8,10,2013,Kiss Kiss Bang Bang,Who Taught You Math? Scene,tt0373469\n15i99XcYpc8,2005.0,9,10,2013,Kiss Kiss Bang Bang,Stop Helping! Scene,tt0373469\n7ux7Dd18Rw4,2005.0,1,10,2013,Kiss Kiss Bang Bang,Audition Scene,tt0373469\nuGg9-5_0On4,2005.0,4,10,2013,Kiss Kiss Bang Bang,No Biggie Scene,tt0373469\nOFZS03hWtlE,1979.0,6,8,2012,Kramer vs. Kramer,Were You A Failure?,tt0079417\nsCiErOySQtA,1979.0,8,8,2012,Kramer vs. Kramer,Change of Heart,tt0079417\nre0xt6hDdqE,1979.0,7,8,2012,Kramer vs. Kramer,Ted's Plea,tt0079417\nM_ejjr2-4WE,1979.0,4,8,2012,Kramer vs. Kramer,I Want My Son,tt0079417\nCw1YwZlfijg,1979.0,2,8,2012,Kramer vs. Kramer,Making French Toast,tt0079417\n8kIsYLV8bE8,1979.0,3,8,2012,Kramer vs. Kramer,Billy Acts Out,tt0079417\n80UzhoD-RBs,1979.0,1,8,2012,Kramer vs. Kramer,I'm Leaving You,tt0079417\ncjFIi3PC2cI,1997.0,9,10,2012,L.A. Confidential,Victory Motel Shootout,tt0119488\n-opqUSOUDQY,1997.0,3,10,2012,L.A. Confidential,The Interrogation,tt0119488\n1ubs6iUMdyo,1997.0,6,10,2012,L.A. Confidential,Rollo Tomasi,tt0119488\nMeypYa863r4,1997.0,1,10,2012,L.A. Confidential,Bloody Christmas,tt0119488\n_VIWqtzAHQ0,1997.0,2,10,2012,L.A. Confidential,Better Than Veronica Lake,tt0119488\nG3N_ELEBvH0,1997.0,7,10,2012,L.A. Confidential,He Wants You To Kill Me,tt0119488\nBVwLpNGBqqY,1997.0,4,10,2012,L.A. Confidential,Justice,tt0119488\ndO_D5ilNoZA,1997.0,10,10,2012,L.A. Confidential,Hold Up Your Badge,tt0119488\n_MLgnDZguM0,1997.0,5,10,2012,L.A. Confidential,Shotgun Ed,tt0119488\n47ptIuV4NLo,1997.0,8,10,2012,L.A. Confidential,\"Good Cop, Bad Cop\",tt0119488\n5_npi1WISDk,1985.0,4,10,2012,Ladyhawke,Navarre's Quest,tt0089457\nH_SgDfv61O8,1985.0,3,10,2012,Ladyhawke,Maybe I'm Dreaming,tt0089457\nuIl9IFcIXlg,1985.0,9,10,2012,Ladyhawke,Church Duel,tt0089457\nrS3VUoThFBw,1985.0,7,10,2012,Ladyhawke,Thin Ice,tt0089457\nkglWIEtKSXY,1985.0,6,10,2012,Ladyhawke,Into the Wild,tt0089457\nCztbQ4Fgv_w,1985.0,5,10,2012,Ladyhawke,Hold On,tt0089457\ncudAGo1nSKI,1985.0,10,10,2012,Ladyhawke,Breaking the Curse,tt0089457\nLmZV7WtCRi4,1985.0,2,10,2012,Ladyhawke,Captain Navarre,tt0089457\n1ODVyWqW4ps,1985.0,8,10,2012,Ladyhawke,The Transformation,tt0089457\na72FDTElH9g,1985.0,1,10,2012,Ladyhawke,Encounter at the Inn,tt0089457\n_EZCG2Ex8Q0,1962.0,4,8,2012,Lawrence of Arabia,Nothing is Written,tt0056172\naARaYjgm_rA,1962.0,8,8,2012,Lawrence of Arabia,No Prisoners,tt0056172\nIBeMUoMTeZo,1962.0,7,8,2012,Lawrence of Arabia,A Prophet's Shadow,tt0056172\nvR3FPplcJGg,1962.0,6,8,2012,Lawrence of Arabia,Come On Men!,tt0056172\nlChJz2DSpsE,1962.0,5,8,2012,Lawrence of Arabia,Attack on Aqaba,tt0056172\n-tuNR-uD_mE,1962.0,3,8,2012,Lawrence of Arabia,The Nefud Desert,tt0056172\nud1zpHW3ito,1962.0,2,8,2012,Lawrence of Arabia,Ali's Well,tt0056172\nOdlFHPM3A2U,1994.0,4,8,2012,Legends of the Fall,Gravesite Visit,tt0110322\nlpwrDEfCESg,1994.0,1,8,2012,Legends of the Fall,Meeting the Bride,tt0110322\nuE0DBpw09SU,1962.0,1,8,2012,Lawrence of Arabia,A Funny Sense of Fun,tt0056172\n0_pN-X7Gew8,1994.0,8,8,2012,Legends of the Fall,Alfred is Reconciled,tt0110322\nDB5H2QGFFwU,1994.0,5,8,2012,Legends of the Fall,Four Beers,tt0110322\nDpz8L-thRmc,1994.0,7,8,2012,Legends of the Fall,Isabel Dies,tt0110322\nqCq0IXXi_2U,1994.0,6,8,2012,Legends of the Fall,Tristan Returns,tt0110322\naWinsyIVC3E,1994.0,2,8,2012,Legends of the Fall,Susannah at the Ranch,tt0110322\nHa4SHiHf8Vw,1994.0,3,8,2012,Legends of the Fall,Samuel Dies,tt0110322\nysIsqzXZyN0,1989.0,6,10,2012,Lethal Weapon 2,Sometimes I Just Go Nuts,tt0097733\nrDIF3XhXTT8,1989.0,10,10,2012,Lethal Weapon 2,Diplomatic Immunity,tt0097733\n7WqzJvhR9Fo,1989.0,9,10,2012,Lethal Weapon 2,Bringing Down the House,tt0097733\nFM26ZXjPL_4,1989.0,8,10,2012,Lethal Weapon 2,Nailed Em' Both,tt0097733\nvKePn-57zAA,1989.0,5,10,2012,Lethal Weapon 2,Toilet Bomb,tt0097733\nj19-hpjJ4ok,1989.0,7,10,2012,Lethal Weapon 2,Rika van Haagen Dazs,tt0097733\nHnZw65gsesw,1989.0,3,10,2012,Lethal Weapon 2,Tow Truck Chase,tt0097733\nAMtKsDnOw_0,1989.0,1,10,2012,Lethal Weapon 2,You're Not Gonna Make It,tt0097733\nZz1Lypwfwug,1989.0,2,10,2012,Lethal Weapon 2,Leo Getz,tt0097733\ni9upvWNN3P8,1989.0,4,10,2012,Lethal Weapon 2,At the Drive-Thru,tt0097733\neRBI1VSO7hc,1994.0,2,8,2012,The Professional,One Minute Past,tt0110413\n-gD05qjgKN4,1994.0,3,8,2012,The Professional,Sniper Lessons,tt0110413\nCe6jdrqyW0U,1994.0,7,8,2012,The Professional,I Love You,tt0110413\nJqDOosChydc,1994.0,4,8,2012,The Professional,\"Do You Like Life, Sweetheart?\",tt0110413\nmX-qK4qG2EY,1994.0,5,8,2012,The Professional,Everyone!,tt0110413\n4R-cTX0i2hQ,1994.0,6,8,2012,The Professional,Hostage Exchange,tt0110413\nfa1DuNjhWOk,1994.0,1,8,2012,The Professional,Bodyguard Takedown,tt0110413\n9bvxJlLfzGw,1994.0,8,8,2012,The Professional,From Mathilda,tt0110413\n1W4y_8Eu38Y,2003.0,5,10,2012,Matchstick Men,Shame on You!,tt0325805\nTOrEE5NeZ9w,2003.0,8,10,2012,Matchstick Men,Lottery Ticket Scam,tt0325805\n04xSMg03sZ0,2003.0,9,10,2012,Matchstick Men,The Queen Before Ben Franklin,tt0325805\npMTlNUKE7yg,2003.0,10,10,2012,Matchstick Men,Remain Calm,tt0325805\nftst7XzK21Q,2003.0,6,10,2012,Matchstick Men,Not as Innocent as You Think,tt0325805\ng6sSw9vrO0s,2003.0,7,10,2012,Matchstick Men,I Was Born Ready,tt0325805\nIb8uNldNd-0,2003.0,4,10,2012,Matchstick Men,That Was a Good Day,tt0325805\nMy4ojpQzoWY,2003.0,2,10,2012,Matchstick Men,Open Window,tt0325805\nGwQdBsTpmOM,2003.0,1,10,2012,Matchstick Men,Guaranteed Prizes,tt0325805\n6f2-XlVHGcc,2003.0,3,10,2012,Matchstick Men,Panic Attack,tt0325805\n1XBwwSzLqWA,2002.0,9,9,2012,May,See Me!,tt0303361\nVNJehwzHpe4,2002.0,2,9,2012,May,Do You Like Pussycats?,tt0303361\npMSrolUBGRc,2002.0,7,9,2012,May,Touch My Face,tt0303361\nPEnOSwKyrb4,2002.0,8,9,2012,May,Doll Maker,tt0303361\nQikcO8tlmOI,2002.0,5,9,2012,May,Cracking Under Pressure,tt0303361\nFnRp0n0RhDM,2002.0,6,9,2012,May,Kills,tt0303361\nEETi6NJFRjA,2002.0,3,9,2012,May,Bloody Kiss,tt0303361\nX9mTMZF-CTs,2002.0,4,9,2012,May,I Love Weird,tt0303361\nSmmKg3VG2jI,2002.0,1,9,2012,May,I Love Gross,tt0303361\nSMQ6aga9mI0,1951.0,2,10,2012,A Perfect Murder,Strangers on a Train,tt0120787\n1EnGKC9Lk_Y,2007.0,2,8,2012,Superbad,Seth Buys Vodka,tt0829482\nWg89Bj_9Wg4,2002.0,7,8,2012,Mr. Deeds,Tennis with Deeds,tt0280590\noEtIf_2mzJc,2002.0,8,8,2012,Mr. Deeds,That Is My Birthday!,tt0280590\nZKIiHz62TR0,2002.0,6,8,2012,Mr. Deeds,I Like Feet,tt0280590\nqUKBDcMN7tg,2002.0,5,8,2012,Mr. Deeds,I Think I Just Shat Myself,tt0280590\n9KwuLlQrkVI,2002.0,4,8,2012,Mr. Deeds,A Lady in Distress,tt0280590\nDHVyayHXOdY,2002.0,3,8,2012,Mr. Deeds,Whacking the Foot,tt0280590\nTlfd0Y0SjgA,2002.0,2,8,2012,Mr. Deeds,\"Very, Very Sneaky\",tt0280590\n_T7T-0iR2Sw,2002.0,1,8,2012,Mr. Deeds,Ground Control to Major Tom,tt0280590\nzPv0S1-ETdI,1939.0,7,8,2012,Mr. Smith Goes to Washington,I Will Not Yield!,tt0031679\ni7hk-TupE5g,1939.0,6,8,2012,Mr. Smith Goes to Washington,What Are You Going to Believe In?,tt0031679\ndbH4Amzn-Rk,1939.0,5,8,2012,Mr. Smith Goes to Washington,No Place in a Man's World,tt0031679\n17MyPrAEQ28,1939.0,4,8,2012,Mr. Smith Goes to Washington,Liberty is Too Precious a Thing,tt0031679\n0v7Ea7kg2gA,1939.0,3,8,2012,Mr. Smith Goes to Washington,Don't You Think I Better Hold This For,tt0031679\nNRjWEE0hmjQ,1939.0,2,8,2012,Mr. Smith Goes to Washington,\"The Truth, For a Change\",tt0031679\nBL-Jg7CyqLQ,1939.0,8,8,2012,Mr. Smith Goes to Washington,Lost Causes,tt0031679\nqYf35nBq8Oo,1939.0,1,8,2012,Mr. Smith Goes to Washington,A Fine Young Patriot,tt0031679\nzTueXqC-xfI,2008.0,7,8,2012,Nick and Norah's Infinite Playlist,Electric Lady Studios,tt0981227\nAyodiwWneu8,2008.0,6,8,2012,Nick and Norah's Infinite Playlist,A Message for Norah,tt0981227\no2wVetrydrY,2008.0,8,8,2012,Nick and Norah's Infinite Playlist,Where's Fluffy,tt0981227\nGofDgoM13BA,2008.0,5,8,2012,Nick and Norah's Infinite Playlist,Dance by the River,tt0981227\nLoZtHl2YXAo,2008.0,4,8,2012,Nick and Norah's Infinite Playlist,Nice Meeting You,tt0981227\nPRKag5krnfU,2008.0,3,8,2012,Nick and Norah's Infinite Playlist,Caroline's Not Fine,tt0981227\nsR4iKRfUwOs,2008.0,1,8,2012,Nick and Norah's Infinite Playlist,A Five Minute Boyfriend,tt0981227\naf_J2e4r328,2001.0,8,8,2012,Not Another Teen Movie,The Wise Janitor,tt0277371\n8F8MBp-GBKA,2001.0,7,8,2012,Not Another Teen Movie,Still a Loser,tt0277371\nnuPd4L7_0uQ,2001.0,5,8,2012,Not Another Teen Movie,Marty,tt0277371\nz6GmZrBKW98,2001.0,2,8,2012,Not Another Teen Movie,Ricky's Poem,tt0277371\nG9u3Lbli8Uc,2001.0,6,8,2012,Not Another Teen Movie,Detention,tt0277371\nBuutvk0mHXY,2001.0,3,8,2012,Not Another Teen Movie,Potty Humor,tt0277371\nCXYlv-z_xHQ,2001.0,1,8,2012,Not Another Teen Movie,Anyone Can Be Prom Queen,tt0277371\nVc7HzKwZ55Q,2001.0,4,8,2012,Not Another Teen Movie,Cheerleading Tryouts,tt0277371\nIYBAPVjJykY,1954.0,8,8,2012,On the Waterfront,Let's Go to Work!,tt0047296\nuBiewQrpBBA,1954.0,6,8,2012,On the Waterfront,I Coulda Been a Contender,tt0047296\ngeh_Mu622SY,1954.0,5,8,2012,On the Waterfront,Terry's Conscience,tt0047296\n-hl0hUWyqoU,1954.0,7,8,2012,On the Waterfront,They Got Charley,tt0047296\n2u1RrWj4RDk,1954.0,4,8,2012,On the Waterfront,This Is My Church,tt0047296\nVfXFbuW47kA,1954.0,1,8,2012,On the Waterfront,Present from Uncle Johnny,tt0047296\n5PPQutDwpmw,1954.0,3,8,2012,On the Waterfront,Terry Asks Edie Out,tt0047296\nUZqpweWv5_0,1954.0,2,8,2012,On the Waterfront,Am I Gonna See You Again?,tt0047296\nLBP8QDlm6OA,1993.0,3,8,2012,Philadelphia,The Essence of Discrimination,tt0107818\nfHYuhwnlTZs,1993.0,8,8,2012,Philadelphia,\"Goodnight, My Angel\",tt0107818\nmIqXkwxzUB4,1993.0,5,8,2012,Philadelphia,A Case About Homosexuality,tt0107818\neYJYW_9mFVg,1993.0,7,8,2012,Philadelphia,Lesions,tt0107818\nTr90d0ZcrCU,1993.0,6,8,2012,Philadelphia,An Excellent Lawyer,tt0107818\nmjbxL_v2DPk,1993.0,4,8,2012,Philadelphia,A Pharmacy Pick-Up,tt0107818\nYkpHalgTqpw,1993.0,2,8,2012,Philadelphia,More Comfortable,tt0107818\nwHSH-NpCQOw,1993.0,1,8,2012,Philadelphia,I Have A Case,tt0107818\n08NGebwIr8Q,2005.0,9,10,2012,Pusher 3,Radovan,tt0425379\nqE9eKngduGM,2005.0,6,10,2012,Pusher 3,A Toast for Milena,tt0425379\nD8V0rLDKZL8,2005.0,10,10,2012,Pusher 3,Preparing the Corpses,tt0425379\nSJeCtS4D2HQ,2005.0,7,10,2012,Pusher 3,The Girl,tt0425379\nicGkuwUzbGI,2005.0,8,10,2012,Pusher 3,Killing the Pole,tt0425379\n9Hn60TQSyTQ,2005.0,5,10,2012,Pusher 3,Relapse,tt0425379\nv8_v3EaYE6A,2005.0,4,10,2012,Pusher 3,Kurt,tt0425379\nwK0m72Rf7tk,2005.0,3,10,2012,Pusher 3,Family Business,tt0425379\nl0n2Od6zG58,2005.0,1,10,2012,Pusher 3,Language Barrier,tt0425379\newGC9K-7NXg,2005.0,2,10,2012,Pusher 3,Bad Sarma,tt0425379\nbnitvEUDaBE,1987.0,2,8,2012,Roxanne,Naked in the Bush,tt0093886\nurdf4g-LXk4,1987.0,4,8,2012,Roxanne,Insults to a Nose,tt0093886\npw5Y_7wtJmk,1987.0,8,8,2012,Roxanne,Suckers on His Palms,tt0093886\nVR78Ss7yoio,1987.0,6,8,2012,Roxanne,The Nose Cards,tt0093886\no9zfxe4JVlQ,1987.0,1,8,2012,Roxanne,I Really Admire Your Shoes,tt0093886\n_PZ_LyJfYe8,1987.0,7,8,2012,Roxanne,Hunting for Words,tt0093886\nh3VZ6IRrVlI,1987.0,5,8,2012,Roxanne,Hypnotic Nose,tt0093886\ntpyZHmGRPuE,1993.0,7,8,2012,Rudy,I've Been Ready for This My Whole Life,tt0108002\nbRzQBGwfMkM,1987.0,3,8,2012,Roxanne,Wine With Your Nose?,tt0093886\nFXcu4V-8-j0,1993.0,6,8,2012,Rudy,Last Game of the Season,tt0108002\nTY0LUIIwo8k,1993.0,5,8,2012,Rudy,\"This Is for , Coach\",tt0108002\nZI63g64kDgY,1993.0,8,8,2012,Rudy,'s Victory,tt0108002\nQoh3YkxuwVo,1993.0,4,8,2012,Rudy,Fortune's Truth,tt0108002\nwur5ljnTCzQ,1993.0,1,8,2012,Rudy,Football Tryouts,tt0108002\nG8c6j-LS-ZI,1993.0,3,8,2012,Rudy,Sacks O'Hara,tt0108002\npBq_lpX9LTw,1993.0,2,8,2012,Rudy,First Practice,tt0108002\nVBeTTZ4QBoA,2003.0,9,10,2012,Shattered Glass,You're Fired,tt0323944\nAmd6hjScF58,2003.0,2,10,2012,Shattered Glass,The Great Comma Debate,tt0323944\nOeE1spoom58,2003.0,10,10,2012,Shattered Glass,We Blew It,tt0323944\noJHp0GrlX6M,2003.0,4,10,2012,Shattered Glass,You Don't Write Funny,tt0323944\n4qW3YcXJeyg,2003.0,7,10,2012,Shattered Glass,I Didn't Do Anything Wrong,tt0323944\nEHmjP1BExPs,2003.0,8,10,2012,Shattered Glass,I'm Not a Criminal,tt0323944\ni8oGdak7vN4,2003.0,6,10,2012,Shattered Glass,Conference Call,tt0323944\najcVgbrSIWk,2003.0,5,10,2012,Shattered Glass,The Number for Juxt Micronics,tt0323944\n9frZAZs1Cqo,2003.0,3,10,2012,Shattered Glass,Hack Heaven,tt0323944\nz3GNhBE2yhM,2003.0,1,10,2012,Shattered Glass,The Art of Capturing Behavior,tt0323944\niNgDtwHreZM,2004.0,6,8,2012,House of Flying Daggers,Bamboo Forest Battle,tt0385004\nAiJP0M-5Mjc,2004.0,8,8,2012,House of Flying Daggers,Blood and Snow,tt0385004\n2ObQm0XBmgI,2004.0,7,8,2012,House of Flying Daggers,The Flying Daggers,tt0385004\n7X3WSQtviJU,2004.0,5,8,2012,House of Flying Daggers,Field Attack,tt0385004\nWgLyqfSdbDg,2004.0,4,8,2012,House of Flying Daggers,Watching Her Bathe,tt0385004\nIP-NM6Qdrl4,2004.0,2,8,2012,House of Flying Daggers,Fighting Blind,tt0385004\nYetxvEnpKh8,2004.0,1,8,2012,House of Flying Daggers,The Drum Dance,tt0385004\nkROlgEPoSVA,2004.0,3,8,2012,House of Flying Daggers,Forest Fight,tt0385004\n0xPu59_MHQ0,1986.0,8,8,2012,Short Circuit,Number 5 Is Still Alive,tt0091949\ny7wj3bB6OU4,1986.0,7,8,2012,Short Circuit,Spontaneous Emotional Response,tt0091949\nhW0V7kZHRSA,1986.0,5,8,2012,Short Circuit,Disassembling Frank's Car,tt0091949\nBJHzyg9AOsY,1986.0,6,8,2012,Short Circuit,Your Mama Was a Snowblower,tt0091949\n9h_-TIM3kdE,1986.0,4,8,2012,Short Circuit,It's Gone Berserk,tt0091949\nmJFvqNOorTs,1986.0,3,8,2012,Short Circuit,It Just Runs Programs,tt0091949\nDgd6gV5Z53U,1971.0,6,8,2012,The Last Picture Show,Jacy the Virgin,tt0067328\nvWokC4nx7PA,1986.0,1,8,2012,Short Circuit,NOVA Demonstration,tt0091949\nQ9AIDn-w3EM,1986.0,2,8,2012,Short Circuit,Struck By Lightning,tt0091949\nDv6rmmAk_Es,1985.0,4,8,2012,Silverado,You're Wearing My Hat,tt0090022\n6JynBr-1sSA,1985.0,6,8,2012,Silverado,He Can't Hurt Me If He's Dead,tt0090022\neug4wbPSykc,1985.0,8,8,2012,Silverado,Final Showdown,tt0090022\niBaUUJOO6V8,1985.0,5,8,2012,Silverado,An Understanding Boss,tt0090022\nQxXbtzn-6PE,1985.0,7,8,2012,Silverado,Ready for Revenge,tt0090022\nwiA6bjzz-CM,1985.0,3,8,2012,Silverado,Jake's Going to Hang,tt0090022\nSGbvYkCLZ9U,1985.0,2,8,2012,Silverado,Whiskey and a Bed,tt0090022\n5mAO3eeRP84,1985.0,1,8,2012,Silverado,Underwear Showdown,tt0090022\nonxbHFyNqGw,1992.0,7,8,2012,Single White Female,I'm Like You Now,tt0105414\nPJo7WdHSxoI,1992.0,8,8,2012,Single White Female,Don't Make Me Come Get You,tt0105414\nyosiG9eEEHA,1992.0,6,8,2012,Single White Female,Don't Make Me Leave You,tt0105414\nKISK76nF-XE,1992.0,4,8,2012,Single White Female,Death by Stiletto,tt0105414\n5pzJ6qzeXlw,1992.0,5,8,2012,Single White Female,Killer Heels,tt0105414\nmFcz_U62r6s,1992.0,3,8,2012,Single White Female,Hedy's Makeover,tt0105414\nqSbI8KRB74M,1992.0,2,8,2012,Single White Female,I've Been Worried Sick,tt0105414\nMEYAoMSfCQY,1992.0,1,8,2012,Single White Female,Bad Timing,tt0105414\nc77JrXbqqV0,1993.0,6,8,2012,Sleepless in Seattle,That's a Chick's Movie,tt0108160\n3cZIoQWyBCI,1993.0,2,8,2012,Sleepless in Seattle,Wife Prospects,tt0108160\nqeY1mkXqKgk,1993.0,8,8,2012,Sleepless in Seattle,Finally Meeting,tt0108160\nLyfG5cnkuEI,1993.0,7,8,2012,Sleepless in Seattle,Sam Argues With Jonah,tt0108160\nyy7H306nKaY,1993.0,5,8,2012,Sleepless in Seattle,Closet Radio Listening,tt0108160\nWdehPsCJab8,1993.0,1,8,2012,Sleepless in Seattle,Sam is,tt0108160\nJCLLZQFyGGM,1993.0,3,8,2012,Sleepless in Seattle,H and G,tt0108160\nVCRyYN8DfUU,1993.0,4,8,2012,Sleepless in Seattle,Jonah Interrupts Sam's Date,tt0108160\ng7QBS0O7gT0,2000.0,2,8,2012,Snatch,I'll Fight Ya For It,tt0208092\n1crhwQPKr7w,2000.0,7,8,2012,Snatch,Shrinking Balls,tt0208092\nRD6BaHKMTXk,2000.0,8,8,2012,Snatch,Look in the Dog,tt0208092\n2xUynRdzzsM,2000.0,5,8,2012,Snatch,\"Six Pieces, Sixteen Pigs\",tt0208092\nxu0p6CtioZk,2000.0,6,8,2012,Snatch,The Definition of Nemesis,tt0208092\nisyFunAeYnQ,2000.0,4,8,2012,Snatch,One-Punch Mickey,tt0208092\n6NbgGhD4tdk,2000.0,3,8,2012,Snatch,Squeaky Dog,tt0208092\ntGDO-9hfaiI,2000.0,1,8,2012,Snatch,The Pikey Caravan,tt0208092\nQae03boj7lU,1993.0,1,8,2012,So I Married an Axe Murderer,\"Woman, Whoaaa Man\",tt0108174\nL_QCioSGgwU,1993.0,7,8,2012,So I Married an Axe Murderer,The Captain Gets Mad,tt0108174\nz6QWyZYi8ZU,1993.0,8,8,2012,So I Married an Axe Murderer,Axe Fight,tt0108174\nRJACPfUU3nk,1993.0,6,8,2012,So I Married an Axe Murderer,Rod Stewart With Bagpipes,tt0108174\nsmVge5w077g,1993.0,5,8,2012,So I Married an Axe Murderer,Charlie Has an Ear Thing,tt0108174\nah7mS9H_TOM,1993.0,4,8,2012,So I Married an Axe Murderer,Alcatraz Through Vicky's Eyes,tt0108174\nYKRFlNryaWw,1993.0,2,8,2012,So I Married an Axe Murderer,I Hated the Colonel,tt0108174\nIqycJpRdVaY,1993.0,3,8,2012,So I Married an Axe Murderer,An Orange on a Toothpick,tt0108174\nTvFwTMU0vyY,1985.0,8,8,2012,St. Elmo's Fire,Our Time at the Edge,tt0090060\nDq6jS6uazUI,1985.0,7,8,2012,St. Elmo's Fire,Jules Freaks Out,tt0090060\n7iMvnj_UBqc,1985.0,6,8,2012,St. Elmo's Fire,Not the Fat Chick,tt0090060\n4ZOT0aLogWU,1985.0,5,8,2012,St. Elmo's Fire,It Is Tomorrow,tt0090060\nTB8q78FEwE8,1985.0,4,8,2012,St. Elmo's Fire,Still a Virgin,tt0090060\nGCEBqhWnUDo,1985.0,3,8,2012,St. Elmo's Fire,Marriage Is Obsolete,tt0090060\n4aI9-g_n_OE,1986.0,7,8,2012,Stand by Me,You're Not Taking Him,tt0092005\nWS93LMcRGRk,1997.0,2,8,2012,Men in Black,The Worm Guys Scene,tt0119654\nq3OTEdZkBaQ,1997.0,3,8,2012,Men in Black,Men In Black Headquarters Scene,tt0119654\nUqbTLJ0U84M,1997.0,4,8,2012,Men in Black,It's a Squid Scene,tt0119654\n1FkVXCCfg2A,1997.0,1,8,2012,Men in Black,Jeebs Loses His Head Scene,tt0119654\necsPydUbYGM,1986.0,6,8,2012,Stand by Me,The Kid Was Dead,tt0092005\ntX74H9IuYdM,1986.0,8,8,2012,Stand by Me,Goodbye to Childhood,tt0092005\nV4jg8o9wXys,1986.0,5,8,2012,Stand by Me,Leeches,tt0092005\n-4_rMqeyOJY,1986.0,4,8,2012,Milk Money,Stand by Me,tt0110516\nzK0JaEde4VI,1986.0,3,8,2012,Stand by Me,The Pie-Eating Contest,tt0092005\ngozRrRCtj6E,1986.0,2,8,2014,Stand by Me,Train!,tt0092005\nsoEFK6PSKEY,1986.0,1,8,2012,Stand by Me,The Body,tt0092005\n_lSzhjggxjI,1997.0,3,8,2012,Starship Troopers,Welcome to the Rough Necks Scene,tt0120201\nfgq0ecMHfzc,1997.0,5,8,2012,Starship Troopers,Bugs! Bugs! We've Got Bugs! Scene,tt0120201\ncACQ2548i0o,1997.0,8,8,2012,Starship Troopers,Probing for Secrets! Scene,tt0120201\n1DANEtz59KA,1997.0,6,8,2012,Starship Troopers,Ripped Apart Scene,tt0120201\nEmUIfX9TSJs,1997.0,2,8,2012,Starship Troopers,A Knife Lesson Scene,tt0120201\neAJLWSg5PIY,1997.0,4,8,2012,Starship Troopers,Flesh-Burning Tanker Bug Scene,tt0120201\nDtTgHuGgW-c,1997.0,7,8,2012,Starship Troopers,The Brain Bug Scene,tt0120201\nDhGaY0L1lLY,1997.0,1,8,2012,Starship Troopers,Anatomy of a Sand Beetle Scene,tt0120201\nU3lA1kS-XKA,2000.0,8,8,2012,Charlie's Angels,Charlie,tt0160127\njVxyX7FcS4Q,1951.0,10,10,2012,Strangers on a Train,The Missing Lighter,tt0044079\n_tVFwhoeQVM,1951.0,7,10,2012,Strangers on a Train,A Face in the Crowd,tt0044079\nuykR8csyO-w,1951.0,9,10,2012,Strangers on a Train,Deadly Carousel Ride,tt0044079\nFL1acMVcHGo,1951.0,8,10,2012,Strangers on a Train,Borrow Your Neck,tt0044079\njd4tpvAcKYA,1951.0,6,10,2012,Strangers on a Train,Guy's Alibi,tt0044079\n44RYxAPH78A,1951.0,5,10,2012,Strangers on a Train,Framed,tt0044079\nS04ArwiZwjE,1951.0,4,10,2012,Strangers on a Train,Miriam's Last Breath,tt0044079\n2hlDkSg-Ycc,1951.0,3,10,2012,Strangers on a Train,Mother Boy,tt0044079\nmjdgDECpWr4,1951.0,1,10,2012,Strangers on a Train,Meeting on the Train,tt0044079\neLLzlb1SN2M,2007.0,3,8,2012,Superbad,McLovin Buys Booze,tt0829482\ntvCjr63AgtM,1981.0,1,8,2012,Stripes,\"You're Going Nowhere, John\",tt0083131\nFOzub_ghAbM,1981.0,8,8,2012,Stripes,Razzle-Dazzle at Graduation,tt0083131\nYXjqTyQuq4w,1981.0,7,8,2012,Stripes,We're Mutants,tt0083131\nFjj4a3zB1ag,1981.0,5,8,2012,Stripes,Hulka Blows Up,tt0083131\nxR9HuRUUTbs,1981.0,2,8,2012,Stripes,Willing to Learn,tt0083131\nmUtHkSw9nEY,1981.0,3,8,2012,Stripes,Psycho and Ox,tt0083131\niTwIwfvNJLk,1981.0,4,8,2012,Stripes,Chicks Dig Me,tt0083131\nhYq75Gm4UdI,1981.0,6,8,2012,Stripes,The Aunt Jemima Treatment,tt0083131\n9Dv0rOjEVIw,2007.0,8,8,2012,Superbad,The Morning After,tt0829482\n23ZWuWe2riY,2007.0,7,8,2012,Superbad,\"I Love You, Man\",tt0829482\nfls3z7Me2Dc,2007.0,6,8,2012,Superbad,Cockblocking McLovin,tt0829482\nPo1GiAYyjIc,2007.0,5,8,2012,Superbad,A Drunken Kiss,tt0829482\nXARAo5zXJsQ,2007.0,4,8,2012,Superbad,Pussies on the Pavement,tt0829482\n2HTHPtoNJLk,2007.0,1,8,2012,Superbad,McLovin,tt0829482\nbLPMGLsf1c0,2009.0,9,10,2013,Terminator Salvation,Who Are You?,tt0438488\nNl0BGD-SxS0,2009.0,8,10,2013,Terminator Salvation,Real Flesh and Blood,tt0438488\n8r354VUktU8,2009.0,10,10,2013,Terminator Salvation,T-800 Factory,tt0438488\ngOy7KDtN3mc,2009.0,6,10,2013,Terminator Salvation,Machines Are The Enemy,tt0438488\nQq8BlVT4KtY,2009.0,5,10,2013,Terminator Salvation,Highway Assault,tt0438488\n3VeXn9KEvSA,2009.0,4,10,2013,Terminator Salvation,Blown Cover,tt0438488\ndPKG3WMkMxQ,2009.0,3,10,2013,Terminator Salvation,Come With Me If You Want To Live,tt0438488\nv3aqGRzL0BY,2009.0,2,10,2013,Terminator Salvation,John Connor vs. T-600,tt0438488\nxLU_GvlaTtI,1988.0,1,8,2012,The Adventures of Baron Munchausen,Berthold Runs to Austria,tt0096764\nAdyWIiYQv7E,2009.0,1,10,2013,Terminator Salvation,Attack on Skynet,tt0438488\n5oOK3e53elo,1988.0,3,8,2012,The Adventures of Baron Munchausen,The Cannonball Ride,tt0096764\n_9JONJG6KSU,1988.0,2,8,2012,The Adventures of Baron Munchausen,Taking the Sultan's Treasure,tt0096764\nixbStXcVqW4,1988.0,4,8,2012,The Adventures of Baron Munchausen,Launch of the Underwear Balloon,tt0096764\nJvVSTmfQJyk,1988.0,5,8,2012,The Adventures of Baron Munchausen,The Sky Waltz,tt0096764\nGH3WNYCuRks,1988.0,6,8,2012,The Adventures of Baron Munchausen,Sea Monster Attack,tt0096764\nbZ0jZaH48b8,1988.0,7,8,2012,The Adventures of Baron Munchausen,The Execution,tt0096764\nlJVIu_wNm4g,1988.0,8,8,2012,The Adventures of Baron Munchausen,Victory!,tt0096764\nuvbOvG1gCj4,1980.0,5,8,2012,The Blue Lagoon,Lovers,tt0080453\nx1gEy9LSa4A,1980.0,8,8,2012,The Blue Lagoon,Saved,tt0080453\nKNmmwUDi4I8,1980.0,2,8,2012,The Blue Lagoon,You're Bleeding!,tt0080453\n78VWWyPDmss,1980.0,7,8,2012,The Blue Lagoon,Trouble,tt0080453\n_FyezVyMFJ8,1980.0,4,8,2012,The Blue Lagoon,Sticky Kiss,tt0080453\nAQ_Boszvgg4,1980.0,6,8,2012,The Blue Lagoon,Not in the Mood,tt0080453\ne6omnFC9jC4,1980.0,1,8,2012,The Blue Lagoon,Funny Thoughts,tt0080453\nM9yS_RvQ5AY,1980.0,3,8,2012,The Blue Lagoon,Hootchie Cootchie,tt0080453\nbbTgmSIDyn8,1957.0,5,8,2012,The Bridge on the River Kwai,Live Like a Human Being,tt0050212\nnkwyt0ytVJI,1957.0,7,8,2012,The Bridge on the River Kwai,Kill Him! Kill Him!,tt0050212\nlSTkEHpkMf8,1957.0,6,8,2012,The Bridge on the River Kwai,A Good Life,tt0050212\nbWJkPbBOXL4,1957.0,4,8,2012,The Bridge on the River Kwai,A Lot to Learn About the Army,tt0050212\ntRHVMi3LxZE,1957.0,8,8,2012,The Bridge on the River Kwai,What Have I Done?,tt0050212\nJ1rrdlXZ-pQ,1957.0,3,8,2012,The Bridge on the River Kwai,He's Done It!,tt0050212\nt9f5FmSQeB4,1957.0,1,8,2012,The Bridge on the River Kwai,The Coward's Code,tt0050212\nIXdycEK_38Y,1957.0,2,8,2012,The Bridge on the River Kwai,Dinner with Saito,tt0050212\ntfL5f6cZlk8,2006.0,6,8,2012,The Da Vinci Code,The Original Old Wives Tale,tt0382625\nd7pioagkX5k,2006.0,2,8,2012,The Da Vinci Code,Silas,tt0382625\nHhbADfa8rmY,2006.0,4,8,2012,The Da Vinci Code,Priory of Sion,tt0382625\n_8LrZ4NhPmk,2006.0,7,8,2012,The Da Vinci Code,Fugitives,tt0382625\nPIwZVG5wMi8,2006.0,5,8,2012,The Da Vinci Code,The Secret of The Last Supper,tt0382625\nB7zXxCAZjK4,2006.0,8,8,2012,The Da Vinci Code,Maybe Human Is Divine,tt0382625\nF_HKGZRUroE,2006.0,3,8,2012,The Da Vinci Code,So Dark the Con of Man,tt0382625\nZFt3xJ6DvVE,2006.0,1,8,2012,The Da Vinci Code,Symbols,tt0382625\nAcuaoDtYcUY,1997.0,8,8,2012,The Fifth Element,Leeloo Fights the Mangalores,tt0119116\npoxW5pFQVEw,1997.0,7,8,2012,The Fifth Element,Ruby Rhod's Evening Show,tt0119116\nOsJKdxPwZdk,1997.0,6,8,2012,The Fifth Element,Korben Meets Ruby Rhod,tt0119116\nlR6vy0i_rRU,1973.0,10,10,2012,Westworld,Damsel In Distress,tt0070909\n7VTsFtwO0u0,1997.0,5,8,2012,The Fifth Element,Choking on a Cherry,tt0119116\n7jVsQToSfag,1997.0,4,8,2012,The Fifth Element,Zorg Presents the ZF1,tt0119116\n3bdQlGt3cEA,1997.0,3,8,2012,The Fifth Element,Is a She,tt0119116\nujC4W8hJ4mg,1997.0,1,8,2012,The Fifth Element,Korben Outwits a Mugger,tt0119116\n6u14pLHV3Vw,1997.0,2,8,2012,The Fifth Element,Leeloo Escapes,tt0119116\nBfHSald-ypM,2008.0,4,10,2012,The Forbidden Kingdom,Protect Yourself!,tt0865556\npS2a76BS_bA,2008.0,10,10,2012,The Forbidden Kingdom,Return of the Monkey King,tt0865556\ngQAZdGaMHu0,2008.0,2,10,2012,The Forbidden Kingdom,Drunken Master,tt0865556\ne5uhElLMLbA,2008.0,8,10,2012,The Forbidden Kingdom,Seeker vs. Witch,tt0865556\nZ5DlqH0klZU,2008.0,6,10,2012,The Forbidden Kingdom,\"Two Tigers, One Mountain\",tt0865556\nqu1F98-YEz4,2008.0,5,10,2012,The Forbidden Kingdom,The Silent Monk,tt0865556\nx1DLLAqLiAM,2008.0,7,10,2012,The Forbidden Kingdom,Make It Rain,tt0865556\nfoyloa1KiVI,2008.0,9,10,2012,The Forbidden Kingdom,Fight to the Death,tt0865556\nSu6H2_SrpOk,2008.0,1,10,2012,The Forbidden Kingdom,Journey Through Time,tt0865556\nzhH9GJ7lpGs,2008.0,3,10,2012,The Forbidden Kingdom,The Battle of Immortals,tt0865556\nfzXK1hDkqYc,1984.0,6,8,2012,The Karate Kid,Daniel's Training,tt0087538\nAOKzlx8p6yM,1984.0,7,8,2012,The Karate Kid,Daniel Wants Balance,tt0087538\nzJfuNE2rsPY,1984.0,3,8,2012,The Karate Kid,Daniel and Ali's First Date,tt0087538\nWCenGKkj3YQ,1984.0,8,8,2012,The Karate Kid,The Crane Kick,tt0087538\nDsLk6hVBE6Y,1984.0,5,8,2012,The Karate Kid,The Lessons Come Together,tt0087538\nwAuzCjipF00,1984.0,4,8,2012,The Karate Kid,Catching a Fly With Chopsticks,tt0087538\nSMCsXl9SGgY,1984.0,2,8,2012,The Karate Kid,\"Wax On, Wax Off\",tt0087538\ntPgwaQKNKRk,1984.0,1,8,2012,The Karate Kid,Daniel Defends Ali,tt0087538\nnejXDl9BPbY,1971.0,8,8,2012,The Last Picture Show,\"Never You Mind, Honey\",tt0067328\nFQunyqgIksc,1971.0,1,8,2012,The Last Picture Show,School Spirit,tt0067328\nQeydehWrRu0,1971.0,4,8,2012,The Last Picture Show,Going to Mexico,tt0067328\nH3E2nY0djIQ,1971.0,2,8,2012,The Last Picture Show,Billy's Bloody Nose,tt0067328\n_56dNRLXn8Y,1971.0,7,8,2012,The Last Picture Show,Broken Bottle,tt0067328\n1kk3Xvw7jn0,1941.0,10,10,2012,The Maltese Falcon,The Stuff That Dreams Are Made Of,tt0033870\nbvjLvggrYUo,1971.0,5,8,2012,The Last Picture Show,The Death of Sam the Lion,tt0067328\nmvgKGY5m71w,1971.0,3,8,2012,The Last Picture Show,Sam the Lion,tt0067328\nwPT49WXC0Zo,1941.0,9,10,2012,The Maltese Falcon,I Won't Play The Sap For You,tt0033870\n7Xuw-XKP1sI,1941.0,8,10,2012,The Maltese Falcon,,tt0033870\ne4RGh5iAykY,1941.0,7,10,2012,The Maltese Falcon,There's Only One Maltese Falcon,tt0033870\naogWdNKef2o,1941.0,4,10,2012,The Maltese Falcon,Kasper Gutman,tt0033870\nSgbe_owOvEI,1941.0,5,10,2012,The Maltese Falcon,Mighty Funny,tt0033870\nsGuNGXmQZSE,1941.0,2,10,2012,The Maltese Falcon,Joel Cairo,tt0033870\nvqOByzMoS_A,1941.0,6,10,2012,The Maltese Falcon,There's Our Fall Guy,tt0033870\n0I1Vh-Ru1z0,1941.0,3,10,2012,The Maltese Falcon,\"When You're Slapped, You'll Take It & Like It\",tt0033870\ngG5kz32ot20,1941.0,1,10,2012,The Maltese Falcon,\"Help Me, Mr. Spade\",tt0033870\nrcgygxfcywM,1998.0,8,8,2012,The Mask of Zorro,Zorro's Revenge,tt0120746\npz0R9XJciO0,1998.0,5,8,2012,The Mask of Zorro,Kill Him,tt0120746\nqRGre50eHbQ,1998.0,7,8,2012,The Mask of Zorro,The Horse Thief,tt0120746\nbw7GnKjkThQ,1998.0,6,8,2012,The Mask of Zorro,The Duel,tt0120746\nWLSQERsdER8,1998.0,2,8,2012,The Mask of Zorro,The Legend Has Returned,tt0120746\nkaJv6L8vF-Y,1998.0,4,8,2012,The Mask of Zorro,A Very Spirited Dancer,tt0120746\nJ2ZnJvnPgRY,1998.0,3,8,2012,The Mask of Zorro,Impure Thoughts,tt0120746\nqdtCFKVtSls,1984.0,1,8,2012,The Natural,Striking Out The Whammer,tt0087781\n2QGYIM-8y38,1984.0,7,8,2012,The Natural,Savoy Special,tt0087781\ni94ldGNNSQ0,1984.0,8,8,2012,The Natural,The Final Homerun,tt0087781\nDu8HRf6pRVY,1998.0,1,8,2012,The Mask of Zorro,Master and Pupil,tt0120746\noyaud2-X1QM,1984.0,6,8,2012,The Natural,Let it Ride,tt0087781\nJ0lof7tFKtE,1984.0,5,8,2012,The Natural,The Lady in White,tt0087781\ntlNLhuxeDJQ,1984.0,4,8,2012,The Natural,Knock the Cover Off the Ball,tt0087781\nH8Ancd0WztU,1984.0,3,8,2012,The Natural,Batting Practice With Wonderboy,tt0087781\nTgIB5Yl4sBQ,1984.0,2,8,2012,The Natural,A New Right Fielder,tt0087781\n46-oS8F8_c8,1998.0,6,10,2012,The Negotiator,Taking Command,tt0120768\nMZhNDpll2Vg,1998.0,10,10,2012,The Negotiator,Do You Like Westerns?,tt0120768\nZiO-hWU7IZI,1998.0,9,10,2012,The Negotiator,Close Call,tt0120768\nLVC2uynUn8c,1998.0,8,10,2012,The Negotiator,You Were Wrong About Me,tt0120768\n4FsDFOIWiHo,1998.0,7,10,2012,The Negotiator,Things Are Not What They Seem,tt0120768\nDA2JIQh96iI,1998.0,5,10,2012,The Negotiator,Take the Subject Out,tt0120768\nQ0xqrvefO7Q,1998.0,4,10,2012,The Negotiator,The Eyes Can't Lie,tt0120768\nYd1ndA1_G_A,1998.0,1,10,2012,The Negotiator,No Surprises,tt0120768\nGtARiQO8ljE,1998.0,3,10,2012,The Negotiator,Never Say No,tt0120768\nnxTEOyfchP8,1998.0,2,10,2012,The Negotiator,I'm Not Going to Jail Today,tt0120768\nZQzBHnXdPY4,2000.0,4,8,2012,The Patriot,Papa Don't Go,tt0187393\nN9uT3yyoaGY,2000.0,8,8,2012,The Patriot,My Sons Were Better Men,tt0187393\noCE8jHLJe3g,2000.0,6,8,2012,The Patriot,No Retreat!,tt0187393\nCYgJjicx0yI,2000.0,5,8,2012,The Patriot,The War Ends Today,tt0187393\nnjFOIvoN9pc,2000.0,3,8,2012,The Patriot,Before This War is Over,tt0187393\n4YdP5YLuJDc,2000.0,2,8,2012,The Patriot,A Call for Militia,tt0187393\n8kBKeCR4xiU,2000.0,1,8,2012,The Patriot,Tomahawk Massacre,tt0187393\niD4lY0brr60,2000.0,7,8,2012,The Patriot,Benjamin Fights Tavington,tt0187393\nMeTuNES82O0,1996.0,7,8,2012,The People vs. Larry Flynt,The Supreme Court,tt0117318\n2XuJzaDhV50,1996.0,8,8,2012,The People vs. Larry Flynt,\"We Won, Baby\",tt0117318\nyie3IIh0HiQ,1996.0,5,8,2012,The People vs. Larry Flynt,The Pervert is Back!,tt0117318\nJqoH6dDyZmk,1996.0,6,8,2012,The People vs. Larry Flynt,A Dream Client,tt0117318\nFyCJ-hUXQ7o,1996.0,3,8,2012,The People vs. Larry Flynt,Jackie O Nude,tt0117318\nOSc1_gfVfCc,1996.0,4,8,2012,The People vs. Larry Flynt,The Price of Freedom,tt0117318\nQttI1akIG_4,1996.0,2,8,2012,The People vs. Larry Flynt,God Created Woman,tt0117318\nVFDN2EOGyDI,1996.0,1,8,2012,The People vs. Larry Flynt,Meet Calamity Jane,tt0117318\nJZZnBoruCik,2006.0,2,8,2012,The Pursuit of Happyness,Running,tt0454921\n_-jXE-VvZqw,2006.0,1,8,2012,The Pursuit of Happyness,No Y in Happiness,tt0454921\nxPBBnS4br9w,2006.0,6,8,2012,The Pursuit of Happyness,Cold Calling,tt0454921\nep-ieEG06qg,2006.0,4,8,2012,The Pursuit of Happyness,First Impression,tt0454921\nt1TC-pegncQ,2006.0,7,8,2012,The Pursuit of Happyness,The Time Machine,tt0454921\n56fngopihOo,2006.0,8,8,2012,The Pursuit of Happyness,Final Scene: Chris is Hired,tt0454921\nUZb2NOHPA2A,2006.0,5,8,2012,The Pursuit of Happyness,Basketball and Dreams,tt0454921\nV8Dm3OfSn4w,2006.0,3,8,2012,The Pursuit of Happyness,Rubik's Cube,tt0454921\n2Jq7xgVqPYA,1993.0,3,8,2012,The Remains of the Day,Room of Amateurs,tt0107943\nG2un8xvArsU,1993.0,1,8,2012,The Remains of the Day,The Rules of the Manor,tt0107943\nb7lV6-iKiwQ,1993.0,7,8,2012,The Remains of the Day,\"I'll See To It, Mister Stevens\",tt0107943\n5nyJNNk1jCY,1993.0,6,8,2012,The Remains of the Day,My Warmest Congratulations,tt0107943\n-vCVptWV5UE,1993.0,4,8,2012,The Remains of the Day,Guilty Smile,tt0107943\n34bCs92ACpk,1993.0,8,8,2012,The Remains of the Day,Goodbye,tt0107943\nJtqEy9DW91U,1993.0,5,8,2012,The Remains of the Day,A Racy Book,tt0107943\nWIrebinrQH0,1993.0,2,8,2012,The Remains of the Day,No Longer Needed,tt0107943\nKLJ4xbE_j94,2002.0,8,10,2012,The Rules of Attraction,I Want to Know You,tt0292644\nIuFESp6a8hM,2002.0,5,10,2012,The Rules of Attraction,Suicide Attempt,tt0292644\npw46kpxHbls,2002.0,1,10,2012,The Rules of Attraction,Attraction,tt0292644\nk-mbJhVl2Xc,2000.0,7,8,2012,Charlie's Angels,Bosley in Captivity,tt0160127\nGKh4VG9YQ1Q,2002.0,10,10,2012,The Rules of Attraction,People Like Us,tt0292644\nLozIIWJG9Fs,2002.0,9,10,2012,The Rules of Attraction,Not Ever Gonna Know Me,tt0292644\n-sJezi3j7O8,2002.0,7,10,2012,The Rules of Attraction,Where's My Money?,tt0292644\nBtn6OKhfHHk,2002.0,4,10,2012,The Rules of Attraction,Sex Fantasy,tt0292644\n20tvG54uZLg,2002.0,3,10,2012,The Rules of Attraction,Dick,tt0292644\ncWYIlga8sas,2002.0,6,10,2012,The Rules of Attraction,Euro-Trip Montage,tt0292644\nKJCvbFLtRB0,1993.0,9,9,2012,The Secret Garden,The Whole World Is a Garden,tt0108071\nAedxe7JThh8,2002.0,2,10,2012,The Rules of Attraction,Am I Dead?,tt0292644\nhHZs6i30Xr4,1993.0,6,9,2012,The Secret Garden,I've Been to the Secret Garden,tt0108071\nU2g825zrVA4,1993.0,7,9,2012,The Secret Garden,Walking in the Garden,tt0108071\nOyH39BhKP2g,1993.0,4,9,2012,The Secret Garden,Cousins,tt0108071\nZFwI8ujpT0Y,1993.0,5,9,2012,The Secret Garden,The World Outside,tt0108071\nXkGVykfJIts,1993.0,8,9,2012,The Secret Garden,Lord Craven's Discovery,tt0108071\nvVRPMleD1SI,1993.0,3,9,2012,The Secret Garden,Searching for the Garden,tt0108071\n_kqyM33kijU,2010.0,10,10,2012,The Spy Next Door,The Russians Are Coming,tt1273678\nYGlqg2jC3R4,1993.0,1,9,2012,The Secret Garden,There's Someone Crying,tt0108071\n1ESVngpn1aA,1993.0,2,9,2012,The Secret Garden,Martha the Servant,tt0108071\nnwBlOt3WDUQ,2010.0,9,10,2012,The Spy Next Door,Bike Fight,tt1273678\nRairI_NdWQA,2010.0,7,10,2012,The Spy Next Door,Russian Spy,tt1273678\nDknDCyfSe8Q,2010.0,8,10,2012,The Spy Next Door,Bob the Spy,tt1273678\n_kocDBoWDcU,2010.0,6,10,2012,The Spy Next Door,\"Go, Bob, Go!\",tt1273678\nZ6bU-bOkm2Y,2010.0,5,10,2012,The Spy Next Door,Spy Tactics,tt1273678\nw_BL6gnrtDg,2010.0,2,10,2012,The Spy Next Door,Bedtime,tt1273678\nDkj-8VuWNJk,2010.0,4,10,2012,The Spy Next Door,Hungry Bacteria,tt1273678\n-dkz4Sk6UuA,2010.0,1,10,2012,The Spy Next Door,Rush and Attack,tt1273678\nix0_IOPyX2g,2010.0,3,10,2012,The Spy Next Door,Missing Princess,tt1273678\n2VKpd3XEbD8,2005.0,8,8,2012,The Squid and the Whale,Seeing the Squid and the Whale,tt0367089\nm5rfQ59cc0o,2005.0,7,8,2012,The Squid and the Whale,You're Calling Me a Bitch?,tt0367089\nlS1KFyakAPE,2005.0,4,8,2012,The Squid and the Whale,Then I'm a Philistine,tt0367089\nVcVDBbEpQx8,2005.0,5,8,2012,The Squid and the Whale,I Did Try Everything,tt0367089\nyoFS6X0RKkA,2005.0,6,8,2012,The Squid and the Whale,Breaking Up With Sophie,tt0367089\ngZ9nPV_stFA,2005.0,3,8,2012,The Squid and the Whale,It's Our House,tt0367089\na4wb-xmYM50,2005.0,1,8,2012,The Squid and the Whale,Mom and Me Vs. You and Dad,tt0367089\n03Rl5exupSo,2005.0,2,8,2012,The Squid and the Whale,A Family Meeting,tt0367089\n7aW8oyTgA60,1984.0,8,8,2012,Ghostbusters,The Stay Puft Marshmallow Man,tt0087332\ndN9rfJvFHgw,1992.0,9,9,2013,Under Siege,Blame It on the Cook,tt0105690\nXBz6d2VPgZw,1992.0,1,9,2013,Under Siege,Striking an Officer,tt0105690\naYBTp7dH_XE,1992.0,8,9,2013,Under Siege,Cornered,tt0105690\n_uw-hnKrV80,1992.0,5,9,2013,Under Siege,Counterattack,tt0105690\nA0gGIMaQZJs,1992.0,3,9,2013,Under Siege,I'm Just a Cook,tt0105690\nsQC7OzU_d18,1992.0,4,9,2013,Under Siege,Morse Code,tt0105690\nFwnnarFw_T8,1992.0,2,9,2013,Under Siege,Fighting Back,tt0105690\nQA029M9LIVU,2003.0,5,8,2012,Underworld,Whip vs. Werewolf,tt0320691\n2QGI0KdwW8Y,2003.0,2,8,2012,Underworld,Reawakening an Elder,tt0320691\nBWWfy9YSQmw,2003.0,4,8,2012,Underworld,Bearing Witness,tt0320691\nnaUJM6Dp7qk,2003.0,8,8,2012,Underworld,Splitting Headache,tt0320691\nEb3oEMSXPnc,2003.0,3,8,2012,Underworld,Selene Rescues Michael,tt0320691\npexcH4Ffi8I,2003.0,6,8,2012,Underworld,Bite Him!,tt0320691\nlTc8TxNTh6I,2003.0,7,8,2012,Underworld,It Was You,tt0320691\ntAH5PR2SvXM,2003.0,1,8,2012,Underworld,Why Are They After You?,tt0320691\nXU8Xdt7tSyo,2004.0,9,10,2012,Vera Drake,The Best Christmas,tt0383694\nEPtxN1YoQ3k,2004.0,8,10,2012,Vera Drake,You Lied to Us!,tt0383694\nVo5ycPggsGY,2004.0,10,10,2012,Vera Drake,Vera's Sentence,tt0383694\nk7OWfTv3Xr0,2004.0,7,10,2012,Vera Drake,Shameful Secret,tt0383694\nfuAo0q0a_Ww,2004.0,6,10,2012,Vera Drake,I Help Them Out,tt0383694\nysFpoWSlo7g,2004.0,5,10,2012,Vera Drake,A Serious Matter,tt0383694\nltMrjNiI340,2004.0,4,10,2012,Vera Drake,You Wanna?,tt0383694\n6Vj6Up8OaFo,2004.0,3,10,2012,Vera Drake,I Can't Have It,tt0383694\n4XhNhG_zq-A,2004.0,1,10,2012,Vera Drake,A Lovely Spread,tt0383694\nbBBV7uUGER8,2004.0,2,10,2012,Vera Drake,Black Market Goods,tt0383694\nW7Dq7vqpGCM,1973.0,4,10,2012,Westworld,Behind the Scenes,tt0070909\n40CUuyOxUZs,1973.0,3,10,2012,Westworld,Robo Love,tt0070909\n9Okpnw0Ktt8,1973.0,6,10,2012,Westworld,Snake Bite,tt0070909\nnq382fby2yU,1973.0,9,10,2012,Westworld,Face Full of Acid,tt0070909\nMg7YM02K5ek,1973.0,7,10,2012,Westworld,The Black Knight,tt0070909\nfsMC6d8DeMo,1973.0,8,10,2012,Westworld,Draw,tt0070909\nlHodSSB_YpM,1973.0,1,10,2012,Westworld,Delos Commercial,tt0070909\n4M1mi7Ommbg,1973.0,2,10,2012,Westworld,Your Move,tt0070909\n1KCTiqj_-tg,1973.0,5,10,2012,Westworld,Was He Bothering You?,tt0070909\nyqtmypCco-I,1998.0,6,8,2012,Wild Things,Peeping in People's Windows,tt0120890\n-heLeiCeD58,1998.0,3,8,2012,Wild Things,Discussing the Case,tt0120890\nDWa1IsbsiY4,1998.0,8,8,2012,Wild Things,Good Guess!,tt0120890\nuNsFppO-q3g,1998.0,2,8,2012,Wild Things,I Was Raped,tt0120890\nlDDtJ_J_hhw,1998.0,1,8,2012,Wild Things,Seducing Lombardo,tt0120890\n9lro80T1eV8,1998.0,7,8,2012,Wild Things,First Rule of Sailing,tt0120890\nTx59CHKUgjs,1998.0,5,8,2012,Wild Things,Three's a Crowd,tt0120890\nvW4TOsL7e3M,1998.0,4,8,2012,Wild Things,The Pool Scene,tt0120890\nVDm_Pg2Cdsk,2009.0,7,8,2012,Zombieland,Pacific Playland,tt1156398\nOK7Hm5IztPc,2009.0,8,8,2012,Zombieland,Clown Zombie,tt1156398\n1tdZ_k0eaHo,2009.0,5,8,2012,Zombieland,Zombie Kill of the Week,tt1156398\nAwh5WP9BbGQ,2009.0,6,8,2012,Zombieland,Blast Off,tt1156398\ncwprGyncs0A,2009.0,4,8,2012,Zombieland,Nut Up or Shut Up,tt1156398\nsSvxvpY7PZM,2009.0,2,8,2012,Zombieland,Limber Up,tt1156398\nRW4ADt4YSy0,2009.0,1,8,2012,Zombieland,The United States of,tt1156398\nkp3HaaTqYP0,2009.0,3,8,2012,Zombieland,The Zombie Next Door,tt1156398\nx2wH5RS58lo,2011.0,9,9,2012,A Better Life,A Reason to Live,tt1554091\nLXM383MIFYY,2011.0,4,9,2012,A Better Life,Charreada,tt1554091\nf3XcExCD3HM,2011.0,1,9,2012,A Better Life,Ready to Get Jumped In,tt1554091\ndu22ttQhRhA,2011.0,8,9,2012,A Better Life,\"License, Registration, and Prison\",tt1554091\nz5S3e6sCBV0,2011.0,7,9,2012,A Better Life,Taking it Back,tt1554091\nLwgcvZ0z430,2011.0,6,9,2012,A Better Life,Searching for Santiago,tt1554091\nmhaxNZs5MGc,2011.0,3,9,2012,A Better Life,Grand Theft Truck,tt1554091\nw57ga2Yiic4,2011.0,5,9,2012,A Better Life,Why Did You Have Me?,tt1554091\nPiJ5Ef63OwY,2011.0,2,9,2012,A Better Life,Buy the Truck,tt1554091\nnRSaxtoy7fo,2010.0,9,10,2012,Trollhunter,Wearing Down the Troll,tt1740707\n7tFLFMyA0EI,2010.0,10,10,2012,Trollhunter,The Finishing Blow,tt1740707\nHSh63MNfwbE,2010.0,7,10,2012,Trollhunter,There's a Christian in the Cave,tt1740707\nyly_wF8DyE8,2010.0,8,10,2012,Trollhunter,Definitely Rabies,tt1740707\nIo7wUtei6BA,2010.0,3,10,2012,Trollhunter,From Troll to Stone,tt1740707\nWhGFwk58h34,2010.0,5,10,2012,Trollhunter,The Troll Under the Bridge,tt1740707\nkRCO31JfDck,2010.0,6,10,2012,Trollhunter,Trolls Also Explode,tt1740707\nCjIU-zqxJEA,2010.0,4,10,2012,Trollhunter,Types of Trolls,tt1740707\nangyfkPmHMo,2010.0,2,10,2012,Trollhunter,\"Run, Dammit!\",tt1740707\nKgqzMdBg7ig,2010.0,1,10,2012,Trollhunter,Troll!,tt1740707\nnukRk0WMspo,2011.0,5,10,2012,50/50,You're Disgusting,tt1306980\nCj-H4ZcfVU8,2011.0,1,10,2012,50/50,is Not That Bad,tt1306980\n2tI3Dz2Ic2o,2011.0,7,10,2012,50/50,Messy Car,tt1306980\n5aLrRe3K_6I,2011.0,6,10,2012,50/50,It's Just Cancer,tt1306980\noZEJTJSZQQs,2011.0,3,10,2012,50/50,Doogie Howser,tt1306980\nCwLcHWwjkV4,2011.0,10,10,2012,50/50,The Surgery,tt1306980\noviA5ncbmc8,2011.0,2,10,2012,50/50,I Have Cancer,tt1306980\nOGpGO7K3aBo,2011.0,4,10,2012,50/50,You're Gonna Look Weird,tt1306980\njmjcKSMwC1Y,2011.0,9,10,2012,50/50,I Wish You Were My Girlfriend,tt1306980\n0RWk0XTaEX4,2011.0,8,10,2012,50/50,Adam's First Drive,tt1306980\n0999Zftz6-w,2009.0,9,9,2012,Mystery Team,work,tt1237838\ni-6UVTMiDm8,2009.0,8,9,2012,Mystery Team,Bad Deal,tt1237838\nVSjHX4LO35c,2009.0,4,9,2012,Mystery Team,High School Students,tt1237838\no2jtBk4B-hE,2009.0,3,9,2012,Mystery Team,Looking for Leroy,tt1237838\nOQrJfULly20,2009.0,5,9,2012,Mystery Team,You're Not a Real Detective,tt1237838\nrHPTGJpgtFU,2009.0,1,9,2012,Mystery Team,Bowling Belligerence,tt1237838\nxDvdVxr48UU,2009.0,2,9,2012,Mystery Team,Get the Ring,tt1237838\n-cOOPGQGqh8,2009.0,7,9,2012,Mystery Team,Jim and Frank,tt1237838\nb0dtzloyP6k,2009.0,6,9,2012,Mystery Team,The Bread Squeezer,tt1237838\n89OOSFlcy98,1984.0,7,8,2012,Ghostbusters,This Chick is Toast!,tt0087332\n9-tYZkJ2p54,1984.0,6,8,2012,Ghostbusters,This Man Has No Dick,tt0087332\nxSp5QwKRwqM,1984.0,5,8,2012,Ghostbusters,The Keymaster,tt0087332\nZGNoXIhKTLw,1984.0,4,8,2012,Ghostbusters,I Want You Inside Me,tt0087332\nVWb1z6ZwUoY,1984.0,3,8,2012,Ghostbusters,\"We Came, We Saw, We Kicked Its Ass!\",tt0087332\nEN0JaJN_fwU,2000.0,6,8,2012,Charlie's Angels,Really Bad Day,tt0160127\nFHB3oMNWk1g,2000.0,5,8,2012,Charlie's Angels,Ambushed,tt0160127\n7_pR6mUYtOo,1984.0,2,8,2012,Ghostbusters,He Slimed Me,tt0087332\njj7BRKHml8g,2000.0,4,8,2012,Charlie's Angels,Access Granted,tt0160127\ncjyqWsrpQAA,2000.0,3,8,2012,Charlie's Angels,Stimulating Innovation,tt0160127\n5ohlA__xABw,1984.0,1,8,2012,Ghostbusters,Venkman's ESP Test,tt0087332\n2LWGe28axmg,2000.0,2,8,2012,Charlie's Angels,The Thin Man,tt0160127\nxvf--4i6NA0,2000.0,1,8,2012,Charlie's Angels,Chinese Fighting Muffin,tt0160127\nlBSi1KKCRQY,2000.0,5,10,2012,Shriek If You Know What I Did,Watch Your Backs,tt0212235\neh_vTiBMvpo,2000.0,1,10,2012,Shriek If You Know What I Did,The Killer Calls,tt0212235\nX1JIzLmbkA4,2000.0,4,10,2012,Shriek If You Know What I Did,Barbara's Last Period,tt0212235\ndz6QtPfCmrU,2000.0,6,10,2012,Shriek If You Know What I Did,Killer Car Chase,tt0212235\nEVGsdxjfeO0,2000.0,10,10,2012,Shriek If You Know What I Did,Unmasking the Killer,tt0212235\nOdaMqivNKZ0,2000.0,9,10,2012,Shriek If You Know What I Did,Chop-Up Video,tt0212235\n-k34FungG-Q,2000.0,2,10,2012,Shriek If You Know What I Did,Meeting the Cast,tt0212235\nYC65XWrNn4s,2000.0,3,10,2012,Shriek If You Know What I Did,Hag and Doughy,tt0212235\noQAqWa_86vg,2000.0,8,10,2012,Shriek If You Know What I Did,Weed Whacker,tt0212235\n1dqc9SW9OFI,2000.0,7,10,2012,Shriek If You Know What I Did,The Rules of Parodies,tt0212235\nFnmbPDYmz0E,2008.0,9,10,2012,Saw 5,Bridge the Gap,tt1132626\n8BgcozieWuE,2008.0,7,10,2012,Saw 5,Survival of the Fittest,tt1132626\njcp5lTiZEUY,2008.0,6,10,2012,Saw 5,Head Game,tt1132626\n9N9BwAElBiA,2008.0,10,10,2012,Saw 5,A Sacrifice of Blood,tt1132626\nQE78itp1Jn0,2008.0,8,10,2012,Saw 5,Vengeance Can Change a Person,tt1132626\nIrptxQD55zY,2008.0,5,10,2012,Saw 5,A Common Goal of Survival,tt1132626\n3y4KK8Bd5l8,2008.0,3,10,2012,Saw 5,Water Box,tt1132626\nBYwC-WJQKd4,2008.0,4,10,2012,Saw 5,Jigsaw Doesn't Make Mistakes,tt1132626\nlh9z3hPGqgM,2008.0,2,10,2012,Saw 5,Do Not Proceed,tt1132626\nLHpto8gCOso,2008.0,1,10,2012,Saw 5,The Pendulum,tt1132626\nx6oaXdPsiN0,2004.0,1,10,2012,Spartan,Why Aren't You Ready?,tt0360009\nimyD8loUM-g,2004.0,10,10,2012,Spartan,Heroic Rescue,tt0360009\nz8fwAxhgA-A,2004.0,9,10,2012,Spartan,One Man,tt0360009\nktrHO9uETjk,2004.0,8,10,2012,Spartan,I'm Her Mother,tt0360009\naKgha2AsDNc,2004.0,7,10,2012,Spartan,Through the Looking Glass,tt0360009\nhKoYPfcWpcU,2004.0,6,10,2012,Spartan,A Hitch in the Plan,tt0360009\nBWWTObc0KDQ,2004.0,5,10,2012,Spartan,A Stone Cold Whore Master,tt0360009\nYOcfHxXt_aA,2004.0,4,10,2012,Spartan,Gas Station Shootout,tt0360009\naTsjwO97Aow,2004.0,3,10,2012,Spartan,\"Where's the Girl, Jerry?\",tt0360009\nTaOTPhkNkbw,2004.0,2,10,2012,Spartan,Rules of War,tt0360009\ndYvCGjka2-s,2003.0,9,10,2012,Step Into Liquid,\"Always a Surfer, Forever\",tt0308508\n6whKr0DDbdY,2003.0,3,10,2012,Step Into Liquid,Dale Webster's Mission,tt0308508\ncUknJlnzdLo,2003.0,5,10,2012,Step Into Liquid,Surf Like a Girl,tt0308508\n8Jd-gAm1wMU,2003.0,10,10,2012,Step Into Liquid,100 Miles Out,tt0308508\nwACyqCoTTno,2003.0,8,10,2012,Step Into Liquid,Riding Sand Dunes,tt0308508\nY3WWNavHXSA,2003.0,7,10,2012,Step Into Liquid,The Foilboard,tt0308508\nfQJzgovGkSQ,2003.0,2,10,2012,Step Into Liquid,The Pipeline of Oahu,tt0308508\nOwzlxG2_8hA,2003.0,1,10,2012,Step Into Liquid,It's All About the Wave,tt0308508\n4sJi6VExXuA,2003.0,4,10,2012,Step Into Liquid,Surfing Brings People Together,tt0308508\nzJ3ZcmivZhI,2003.0,6,10,2012,Step Into Liquid,Surfing Paralyzed,tt0308508\nPnFxS6a2aPU,1997.0,2,5,2012,The Devil's Advocate,Moving on Up,tt0118971\nDEX-5gM0P8I,1997.0,5,5,2012,The Devil's Advocate,I Don't Like Him,tt0118971\n3teArKtt1PQ,1997.0,4,5,2012,The Devil's Advocate,Where's Your Mommy?,tt0118971\nL38yiP7vLwM,1997.0,3,5,2012,The Devil's Advocate,I Hate This Stupid Place,tt0118971\n9enPC37mHrM,1997.0,1,5,2012,The Devil's Advocate,Jury Selection,tt0118971\nW3HDdYjGDzg,1999.0,2,10,2012,The Iron Giant,Rock and Tree,tt0129167\n5Ipcnz96hE8,1999.0,8,10,2012,The Iron Giant,You Can Fly?,tt0129167\nyhaoJxQpRg0,1999.0,10,10,2012,The Iron Giant,Resurrection,tt0129167\nD4dT2eBWI2M,1999.0,9,10,2012,The Iron Giant,Superman,tt0129167\nSF24fZvfoHs,1999.0,6,10,2012,The Iron Giant,Coco-Lax,tt0129167\n9t2_DjGU_Qk,1999.0,7,10,2012,The Iron Giant,Cannon Ball,tt0129167\nQjCxoikhxSE,1999.0,5,10,2012,The Iron Giant,Giant Problems,tt0129167\nMiPH7hknJ8k,1999.0,4,10,2012,The Iron Giant,Hungry For Scraps,tt0129167\nydMwnnhLnLU,1999.0,3,10,2012,The Iron Giant,Saying Grace,tt0129167\nPW-RHrX7Fnc,1999.0,1,10,2012,The Iron Giant,Something Big,tt0129167\n9o8gzua-K_E,1987.0,4,10,2012,The Lost Boys,One of Us,tt0093437\n0A80j2BuMaU,1987.0,3,10,2012,The Lost Boys,\"Maggots, Worms and Blood\",tt0093437\nZynRcyXIGKM,1987.0,2,10,2012,The Lost Boys,Destroy All Vampires,tt0093437\nTgLe98ts0QU,1987.0,10,10,2012,The Lost Boys,The Bloodsucking Brady Bunch,tt0093437\nF5g7u8WRwqQ,1987.0,9,10,2012,The Lost Boys,My Blood Is in Your Veins,tt0093437\nXObhhoFp6G8,1987.0,8,10,2012,The Lost Boys,\"Garlic Don't Work, Boys!\",tt0093437\n5EN8IHljaaE,1987.0,7,10,2012,The Lost Boys,One Big Coffin,tt0093437\nKq3nRBxVD3k,1987.0,6,10,2012,The Lost Boys,Dinner With the Frogs,tt0093437\niYsOzr1hPl8,1987.0,5,10,2012,The Lost Boys,Creature of the Night,tt0093437\nwmbt1RjPn4M,1987.0,1,10,2012,The Lost Boys,I Still Believe,tt0093437\nSs7i62FguNY,1997.0,7,9,2012,The Relic,The Creature Attacks,tt0120004\nQJYrz4jET9M,1997.0,5,9,2012,The Relic,Encounter at the Door,tt0120004\ntQkepXxAGq4,1997.0,2,9,2012,The Relic,Something's Missing from the Brain,tt0120004\nfUxg-0j1Ijw,1997.0,9,9,2012,The Relic,Torching the Creature,tt0120004\n0UBym5z6rgM,1997.0,1,9,2012,The Relic,Bathroom Break,tt0120004\nKldCgijNQyg,1997.0,3,9,2012,The Relic,The Callisto Effect,tt0120004\nHC9BNtZrnIc,1997.0,4,9,2012,The Relic,A Very Dangerous Situation,tt0120004\n7SU_ZshgGro,1997.0,8,9,2012,The Relic,The Rescue Team,tt0120004\nHaG2Mm5K6TE,1997.0,6,9,2012,The Relic,Lucky Bullet,tt0120004\nsx-obtKU1jM,1983.0,10,10,2012,Uncommon Valor,Sailor's Sacrifice,tt0086508\nJ4yrUjXQJdQ,1983.0,9,10,2012,Uncommon Valor,Blaster's Last Stand,tt0086508\nf4wQCy4xIyY,1983.0,8,10,2012,Uncommon Valor,Stealing the Choppers,tt0086508\nm_C2cbqPkx0,1983.0,7,10,2012,Uncommon Valor,This Parting Was Well Made,tt0086508\nqXTTXNZucIU,1983.0,5,10,2012,Uncommon Valor,The Whole Can of Whup-Ass,tt0086508\nIYuknBe73ik,1983.0,4,10,2012,Uncommon Valor,Wilkes vs. Everyone Else,tt0086508\noWr69u4tLoc,1983.0,6,10,2012,Uncommon Valor,Buy It or Borrow It?,tt0086508\nwj0aH_PiAnI,1983.0,3,10,2012,Uncommon Valor,A Lesson in Explosives,tt0086508\nXwl5DKs5HL0,1983.0,1,10,2012,Uncommon Valor,You Gotta Give Me a Shot,tt0086508\n39-n35p2juk,1983.0,2,10,2012,Uncommon Valor,\"You Don't Ever Quit, Boy\",tt0086508\nQEkSX1S4kwg,2010.0,6,9,2012,Saw: The Final Chapter,Speak No Evil,tt1477076\n1khqylEN_48,2010.0,8,9,2012,Saw: The Final Chapter,Game Over,tt1477076\n-JeKHhnEcw0,2010.0,9,9,2012,Saw: The Final Chapter,My Greatest Asset,tt1477076\n01qhgR0WsnA,2010.0,7,9,2012,Saw: The Final Chapter,The Fear of Not Knowing,tt1477076\nKdfwchgYp-U,2010.0,5,9,2012,Saw: The Final Chapter,You Are a Liar,tt1477076\nxZOMiFk2ThE,2010.0,3,9,2012,Saw: The Final Chapter,Garage Trap,tt1477076\n6XFzJ3WtYPo,2010.0,4,9,2012,Saw: The Final Chapter,These Are My Scars,tt1477076\nFTgzyx6931A,2010.0,2,9,2012,Saw: The Final Chapter,Kill Jill,tt1477076\nIvPewzBKqYU,2010.0,1,9,2012,Saw: The Final Chapter,Bizarre Love Triangle,tt1477076\nNFwg1siPn3A,2011.0,9,9,2012,Conan the Barbarian,The Serpent Pit,tt0816462\nfXwVoMcZa90,2011.0,7,9,2012,Conan the Barbarian,Conan Fights Khalar,tt0816462\niGk8yvyixvY,2011.0,6,9,2012,Conan the Barbarian,Battling the Sand Creatures,tt0816462\n2vL7DtW6wGM,2011.0,4,9,2012,Conan the Barbarian,Where is the Pure Blood?,tt0816462\nbU6V_rkvECA,2011.0,8,9,2012,Conan the Barbarian,Attack on the Ship,tt0816462\nwRLLMDtKPvc,2011.0,5,9,2012,Conan the Barbarian,Human Catapult,tt0816462\nG1IQQRRhI5M,2011.0,3,9,2012,Conan the Barbarian,Horseback Chase,tt0816462\nQHUcubYTt0o,2011.0,2,9,2012,Conan the Barbarian,Interrogating Lucius,tt0816462\nCTCkd8aEpZ8,2011.0,1,9,2012,Conan the Barbarian,Young Conan,tt0816462\nwsvdvNRcUVA,2006.0,10,10,2012,Dark Fields,Call for Help,tt1212023\nQUYNJvRn4jw,2006.0,9,10,2012,Dark Fields,Calm Down!,tt1212023\nFRLcggpffDk,2006.0,7,10,2012,Dark Fields,Bloody Stump,tt1212023\nShCVyu04OCc,2006.0,8,10,2012,Dark Fields,Bloody Boots,tt1212023\n93uAmv9qwNs,2006.0,3,10,2012,Dark Fields,Tease,tt1212023\nyrZ7CsXcTrI,2006.0,5,10,2012,Dark Fields,Killer Hay,tt1212023\n8YkX-DZDB4o,2006.0,6,10,2012,Dark Fields,Tool Shed Terror,tt1212023\n9ZM4N1bdm4g,2006.0,1,10,2012,Dark Fields,Early Morning Slaughter,tt1212023\n5ai_pW6LPpE,2006.0,4,10,2012,Dark Fields,Lending a Hand,tt1212023\ndw4cZQicaVo,2006.0,2,10,2012,Dark Fields,Gas Stop,tt1212023\nBn0-7zClnWA,2001.0,8,9,2012,Save the Last Dance,Let's Just Walk Away,tt0206275\nzMEjTw82zDc,2001.0,1,9,2012,Save the Last Dance,Truman Capote Debate,tt0206275\nKRCwsXtAeKQ,2001.0,9,9,2012,Save the Last Dance,The Big Audition,tt0206275\n_oBX12cEu-w,2001.0,6,9,2012,Save the Last Dance,Maybe We Should Cool It,tt0206275\nTs4u--T-fDc,2001.0,7,9,2012,Save the Last Dance,\"I Don't Hate You, I Miss Her\",tt0206275\njgcD-DHpPR0,2001.0,5,9,2012,Save the Last Dance,It Ain't Over,tt0206275\ncvEJy_9hy4o,2001.0,4,9,2012,Save the Last Dance,I Was Dancing While She Was Dying,tt0206275\nNyxW1SxFqzk,2001.0,2,9,2012,Save the Last Dance,Brady Bunch in the Club,tt0206275\nlPrOstRqB1o,2001.0,3,9,2012,Save the Last Dance,Lesson One,tt0206275\neI8o5C5l9J8,1984.0,11,12,2012,All of Me,Back in Bowl,tt0086873\naQ6ZzIC7OZk,1984.0,10,12,2012,All of Me,A Quick Little Merge,tt0086873\n3VVxzAw0hzk,1984.0,8,12,2012,All of Me,Same Old Sourpuss,tt0086873\nBpV5wTbvq8M,1984.0,5,12,2012,All of Me,The Little Fireman,tt0086873\nICC99mWSW1s,1984.0,7,12,2012,All of Me,A Good Spanking,tt0086873\nLpPNvHq9rKQ,1984.0,12,12,2012,All of Me,A Deal,tt0086873\nnE58ZtIpNSo,1984.0,4,12,2012,All of Me,It's My Body!,tt0086873\nVz0R6lgYJb4,1984.0,1,12,2012,All of Me,\"The \"\"M\"\" Word\",tt0086873\nu14YNz-Ym2c,1984.0,9,12,2012,All of Me,Contempt of Court,tt0086873\niZ1_8kpRnW8,1984.0,6,12,2012,All of Me,Either Me or Your Balls,tt0086873\n9e-6wOwlHmM,1984.0,2,12,2012,All of Me,Good Plan!,tt0086873\nkHFzcXAU8hg,1984.0,3,12,2012,All of Me,What the Hell Is Happening to Me?,tt0086873\nrOTyj0-PRRY,1996.0,5,11,2012,Box of Moonlight,Life is a Tomato,tt0115738\nok-pfhEHoE8,1996.0,9,11,2012,Box of Moonlight,You Help Me,tt0115738\nbENL5AzvP4w,1996.0,8,11,2012,Box of Moonlight,Factory Fun,tt0115738\n7sQ6ktZxmYY,1996.0,10,11,2012,Box of Moonlight,Backwards Phenomenon,tt0115738\ns3TkMEuXaqs,1996.0,11,11,2012,Box of Moonlight,Kid's Gift,tt0115738\n1VkkHqm3q14,1996.0,7,11,2012,Box of Moonlight,Fake Wrestling,tt0115738\n4zhGIlO2Lx8,1996.0,4,11,2012,Box of Moonlight,Off the Grid,tt0115738\ncMbUCMRhH9M,1996.0,6,11,2012,Box of Moonlight,Kid's Joke,tt0115738\nvtXNIF662BU,1996.0,2,11,2012,Box of Moonlight,Found Jesus?,tt0115738\nBo47QGYq-LI,1996.0,3,11,2012,Box of Moonlight,Car Trouble,tt0115738\n7v6zdWNRtLI,1996.0,1,11,2012,Box of Moonlight,Love Phone,tt0115738\nOmBxRiaJzFg,2007.0,9,12,2012,Captivity,\"Me, Not Her\",tt0374563\nDTpEhN9pzbs,2007.0,8,12,2012,Captivity,30 Seconds to Live,tt0374563\ngiegMz7BBPQ,2007.0,3,12,2012,Captivity,Acid Shower,tt0374563\niRrAI8tl8d8,2007.0,10,12,2012,Captivity,Missing Person,tt0374563\naisjDMTWr2w,2007.0,6,12,2012,Captivity,Who Are You?,tt0374563\nTyPhgetzMfY,2007.0,12,12,2012,Captivity,Shooting Lessons,tt0374563\n_MeA5EW8FdI,2007.0,2,12,2012,Captivity,A Lovely View,tt0374563\nRUvQEHa_lZQ,2007.0,11,12,2012,Captivity,Precious Memories,tt0374563\n3aCT8ZhNBrA,2007.0,5,12,2012,Captivity,Body Parts in a Blender,tt0374563\nULp3vJ6Dme8,2000.0,8,12,2012,Chuck & Buck,Sam's Audition,tt0200530\nh-a0Kx3RlIg,2007.0,7,12,2012,Captivity,Sand in the Hourglass,tt0374563\nb8SJezYEQHA,2007.0,1,12,2012,Captivity,Battery Acid,tt0374563\nUchtzdG8HdM,2000.0,9,12,2012,Chuck & Buck,Stay Away,tt0200530\nwOzRG7N8_Ic,2000.0,11,12,2012,Chuck & Buck,You Look Like This Friend of Mine,tt0200530\nR7cqvLTR0vA,2007.0,4,12,2012,Captivity,Duct Escape,tt0374563\nNq1D205cXss,2000.0,6,12,2012,Chuck & Buck,I Made This,tt0200530\n30shqA196uw,2000.0,10,12,2012,Chuck & Buck,\"A Homoerotic, Misogynistic Love Story\",tt0200530\nf39I-UCl9Qo,2000.0,7,12,2012,Chuck & Buck,We Should Play a Game,tt0200530\n_U8k98LPpjg,2006.0,12,12,2012,Employee of the Month,Check Stand Ring Off,tt0424993\nsp4A_jU3oD0,2000.0,5,12,2012,Chuck & Buck,Chuck's Friends,tt0200530\n24kOoUWjz5Q,2000.0,3,12,2012,Chuck & Buck,Buck Moves to L.A.,tt0200530\n0QbMWpwr7FM,2000.0,2,12,2012,Chuck & Buck,You Should Stay,tt0200530\n32OtN3z_DNs,2000.0,12,12,2012,Chuck & Buck,He Made Me This Way,tt0200530\ntv25UVPcgxY,2000.0,1,12,2012,Chuck & Buck,Wanna Go See My Room?,tt0200530\nUJ36_9oVTO8,2000.0,4,12,2012,Chuck & Buck,Do You Put on Plays Here?,tt0200530\nd3-AXjkz3Pk,2006.0,10,12,2012,Employee of the Month,We Are All Pink,tt0424993\nRywZwxSQcvo,2006.0,11,12,2012,Employee of the Month,Good to Have You Back,tt0424993\nvn9awsg8BjA,2006.0,9,12,2012,Employee of the Month,Clocking In,tt0424993\n049R_wOazQI,2006.0,8,12,2012,Employee of the Month,Turning Back Time,tt0424993\n0eC9f13FIJ0,2006.0,6,12,2012,Employee of the Month,Big Brother,tt0424993\nP63QUmBOP08,2006.0,4,12,2012,Employee of the Month,Missing Child,tt0424993\ngHf9n0jhBdk,2006.0,3,12,2012,Employee of the Month,Glasses In About an Hour,tt0424993\nEKd7hAoXDPU,2006.0,5,12,2012,Employee of the Month,First Date,tt0424993\ndKFZ4T_Y9Pw,2006.0,7,12,2012,Employee of the Month,Break with Amy,tt0424993\nPuFTYd0b6n0,2006.0,2,12,2012,Employee of the Month,The New Cashier,tt0424993\nAVEnTcDIo0A,2006.0,1,12,2012,Employee of the Month,Box Boy,tt0424993\nEqzhYb-Ey4c,2003.0,10,11,2012,House of the Dead,Simon's Sacrifice,tt0317676\nkmGvvAof2Ww,2003.0,8,11,2012,House of the Dead,Shoot It!,tt0317676\n9nqpOwh4N_Q,2003.0,11,11,2012,House of the Dead,Game Over,tt0317676\n1kh5X5CJAOU,2003.0,9,11,2012,House of the Dead,Zombie Slaughter,tt0317676\nCxCjXAy6HQE,2003.0,5,11,2012,House of the Dead,Zombie Cynthia,tt0317676\nye-S7zxbv9o,2003.0,7,11,2012,House of the Dead,Zombie Bridge,tt0317676\nYmIShBpwLPk,2003.0,1,11,2012,House of the Dead,Captain Kirk and Mr. Salish,tt0317676\nbWyLG7CWLjA,2003.0,3,11,2012,House of the Dead,Not a Good Idea,tt0317676\nQSVX6S1zbjQ,2003.0,6,11,2012,House of the Dead,Defending the Boat,tt0317676\n3TeYtmJXgQE,2003.0,2,11,2012,House of the Dead,,tt0317676\n39zzDqksCHc,2003.0,4,11,2012,House of the Dead,A Romero Movie,tt0317676\noNI9u5Q4TLQ,1999.0,12,12,2012,Joe the King,Boarding the Bus,tt0160672\nlvyRzKr6Bkk,1999.0,9,12,2012,Joe the King,Big Rat,tt0160672\nBSuaYQdLqV0,1999.0,10,12,2012,Joe the King,Last Meal,tt0160672\nrM3mP-39_is,1999.0,11,12,2012,Joe the King,Wrong Side of the Equation,tt0160672\ngINx5_Hs8C4,1999.0,7,12,2012,Joe the King,Payback Prank,tt0160672\nOjHsjB_foZI,1999.0,8,12,2012,Joe the King,Stealing From Roy,tt0160672\nSDS5UH9Nnus,1999.0,4,12,2012,Joe the King,Wishing to Disappear,tt0160672\nPaYl9YVeXhc,1999.0,6,12,2012,Joe the King,\"Big Man, Working Man\",tt0160672\nUJhTR5FTd2I,1999.0,5,12,2012,Joe the King,Broken Records,tt0160672\nRZziZRbaCPc,1999.0,1,12,2012,Joe the King,Career Goals,tt0160672\n6e59qLPJxgI,1999.0,2,12,2012,Joe the King,Talking to Girls,tt0160672\noOFNIMMfTUg,1999.0,3,12,2012,Joe the King,Harsh Discipline,tt0160672\nKJnIgY7l_nk,1997.0,7,10,2012,Joyride,Interrogation,tt0119426\nOboAFE4Tr8Q,1997.0,1,10,2012,Joyride,Daydream,tt0119426\nM6gOHxwffBg,1997.0,10,10,2012,Joyride,Kill the Things You Love,tt0119426\nQaNag38SNno,1997.0,5,10,2012,Joyride,Dumping the Body,tt0119426\noP43IvevmjY,1997.0,2,10,2012,Joyride,Skinny Dipping,tt0119426\ncHEoEuY_mTk,1997.0,4,10,2012,Joyride,What's in the Trunk?,tt0119426\n_RVQuAICxc0,1997.0,9,10,2012,Joyride,Are You Dead?,tt0119426\n5otacrrli04,1997.0,3,10,2012,Joyride,Stranded on a Friday Night,tt0119426\nERw4l461lhU,1997.0,6,10,2012,Joyride,Say Hello to Mr. Wiggles,tt0119426\neQMofmwnt6s,2005.0,9,10,2012,Lord of War,Evil Prevails,tt0399295\nT7-sw9PhQec,1997.0,8,10,2012,Joyride,A Deal's a Deal,tt0119426\nRVDyoCWz0vM,2005.0,1,10,2012,Lord of War,Title Sequence: Life of a Bullet,tt0399295\nJITv11rctGg,2005.0,10,10,2012,Lord of War,A Necessary Evil,tt0399295\n3rnomffKi0I,2005.0,7,10,2012,Lord of War,Emergency Landing,tt0399295\n6FJfcqLCkIc,2005.0,8,10,2012,Lord of War,Free Samples!,tt0399295\n45wce6oSr0M,2005.0,3,10,2012,Lord of War,The Arms Bazaar,tt0399295\nEcffcR-lgtc,2005.0,6,10,2012,Lord of War,Meet President Andre,tt0399295\nH99XlWQ9KsA,2005.0,4,10,2012,Lord of War,The AK-47,tt0399295\nHJjBZoopPXw,2005.0,2,10,2012,Lord of War,A Good Brother,tt0399295\nISTPRoBW2sc,2005.0,5,10,2012,Lord of War,Rule of Law,tt0399295\n7xWlr8_R5YY,2009.0,5,9,2012,My Bloody Valentine,Aiming at Shadows,tt1179891\ncGbTf-FgG-M,2009.0,8,9,2012,My Bloody Valentine,Be Mine 4 Ever,tt1179891\nBZwbVffx49M,2009.0,9,9,2012,My Bloody Valentine,I'm Retired,tt1179891\no-Hcz6we0mk,2009.0,7,9,2012,My Bloody Valentine,Something's Not Right,tt1179891\nIsof3ww1UPs,2009.0,6,9,2012,My Bloody Valentine,Did You Lock Up?,tt1179891\nTpp5oqIzQL4,2009.0,4,9,2012,My Bloody Valentine,Locked Up,tt1179891\ne2FdM0YQSHk,2009.0,3,9,2012,My Bloody Valentine,A Gift for Sheriff Palmer,tt1179891\n7E8rxZMCldI,2009.0,2,9,2012,My Bloody Valentine,Escape from the Mine,tt1179891\n8_2fitdIp4c,2009.0,1,9,2012,My Bloody Valentine,Pickaxe Through the Eye,tt1179891\nXobjkWljkXw,1998.0,10,12,2012,Pi,We Got the Gun,tt0138704\n1UWy_6S-ZfY,1998.0,3,12,2012,Pi,I Only Have Eyes for You,tt0138704\n6_CtgelI6xU,1998.0,1,12,2012,Pi,My First Headache,tt0138704\nYv6L4DunPDE,1998.0,11,12,2012,Pi,Rabbi Cohen,tt0138704\nXGZ0K5Rpacw,1998.0,12,12,2012,Pi,Max Drills His Head,tt0138704\nDhhKbHpvGwk,1998.0,9,12,2012,Pi,Iodine,tt0138704\n7-C1cpG6TLc,1998.0,6,12,2012,Pi,Go Board,tt0138704\nShdmErv5jvs,1998.0,2,12,2012,Pi,Restate My Assumptions,tt0138704\nSzfQ2Bwhkcc,1998.0,8,12,2012,Pi,Coney Island Beach,tt0138704\nP9e_I-fkJ6c,1998.0,7,12,2012,Pi,The Brain,tt0138704\nOGKPmBtBpBo,1998.0,5,12,2012,Pi,Archimedes,tt0138704\n3vi7043z6tI,1998.0,4,12,2012,Pi,Torah Math,tt0138704\nfuCEfNfuoiM,2005.0,2,9,2012,Saw 2,The Problem,tt0432348\ncIRL7jMVh8Q,2005.0,8,9,2012,Saw 2,We're in the Wrong House!,tt0432348\nbYVsnJR_f80,2005.0,9,9,2012,Saw 2,Game Over,tt0432348\nrm2NO3Nr3hA,2005.0,6,9,2012,Saw 2,The Razor Box,tt0432348\nK2vOPpJFstM,2005.0,7,9,2012,Saw 2,Your Own Number,tt0432348\n94mvgpMi-rQ,2005.0,4,9,2012,Saw 2,The Furnace,tt0432348\n3CAQ0iZKP08,2005.0,5,9,2012,Saw 2,The Needle Pit,tt0432348\nDX5KZHeK3bw,2005.0,3,9,2012,Saw 2,Let the Game Begin,tt0432348\nNn6y3CUpIfA,2005.0,1,9,2012,Saw 2,Venus Fly Trap,tt0432348\n1DnnWl0Qkts,1994.0,11,11,2012,Swimming with Sharks,Let's Finish It,tt0114594\nsW-ddNOh1hk,1994.0,10,11,2012,Swimming with Sharks,What Do You Really Want?,tt0114594\n8WrFOPPepCk,1994.0,9,11,2012,Swimming with Sharks,Bathroom Break Denied,tt0114594\n-I5e_GXU4Zo,1994.0,8,11,2012,Swimming with Sharks,Paper Cuts,tt0114594\nNDW6AQjK3Q0,1994.0,6,11,2012,Swimming with Sharks,Destroy Time Magazine,tt0114594\n_eruoEC4LsA,1994.0,7,11,2012,Swimming with Sharks,Saw This in a Movie Once,tt0114594\nQtoKDVTZfSE,1994.0,5,11,2012,Swimming with Sharks,You Gotta Be A Man!,tt0114594\n_qit_nq-jUk,1994.0,3,11,2012,Swimming with Sharks,Unreachable,tt0114594\nnTBBQQRE0Z8,1994.0,4,11,2012,Swimming with Sharks,\"Shut Up, Listen, Learn!\",tt0114594\nL6IPj5zl9oQ,1994.0,2,11,2012,Swimming with Sharks,I Get What I Want,tt0114594\n50j2eckQ1to,1994.0,1,11,2012,Swimming with Sharks,A Pump or a Loafer,tt0114594\noXouSM2JOZk,2002.0,11,12,2012,Van Wilder,Colon Blow Protein Shake,tt0283111\n8D2TivUo_zU,2002.0,4,12,2012,Van Wilder,Strip Club,tt0283111\nt8yv6xn2HhQ,2002.0,12,12,2012,Van Wilder,You Fooled Around With my Daughter,tt0283111\nZWeqx9VP2zE,2002.0,10,12,2012,Van Wilder,Release Your Own Pressure,tt0283111\n5GWj9H4JId0,2002.0,9,12,2012,Van Wilder,Underage Drinking,tt0283111\nH44ZLiOlN0A,2002.0,8,12,2012,Van Wilder,They're So Creamy,tt0283111\nh4wnyCRRi0o,2002.0,7,12,2012,Van Wilder,Special Dog Treats,tt0283111\nV5xN-xNvwsw,2002.0,6,12,2012,Van Wilder,It's Kind of Hard in 15 Seconds,tt0283111\nTIvNRHR6GbU,2002.0,3,12,2012,Van Wilder,Seducing Ms. Haver,tt0283111\nV0BHKgbef9E,2002.0,1,12,2012,Van Wilder,Assistant Interviews,tt0283111\ngZaagSRp8F4,2002.0,5,12,2012,Van Wilder,That's Not a Bong,tt0283111\n2B4dnGQc9wM,2002.0,2,12,2012,Van Wilder,I Am Taj Mahal,tt0283111\n-vE1JNGKvxQ,2002.0,11,11,2012,29 Palms,Put the Bag Down,tt0283090\nYgqgSaDCgC4,2000.0,5,10,2012,Shadow of the Vampire,It Made Me Sad,tt0189998\n7lKWPxDej7s,2002.0,9,11,2012,29 Palms,I'll Kill You,tt0283090\nnDTVpRRoqcw,2002.0,10,11,2012,29 Palms,Limo Confrontation,tt0283090\nFE8xpnLMZlU,2002.0,8,11,2012,29 Palms,The Contents of the Bag,tt0283090\nmAtSvxJe6Yw,2002.0,5,11,2012,29 Palms,The Cop and The Hitman,tt0283090\n4Qrs43i_S50,2002.0,7,11,2012,29 Palms,You Wanna Die?,tt0283090\n6G7J6lZDW3E,2002.0,6,11,2012,29 Palms,Standoff,tt0283090\nJZtErr7VLKE,2002.0,4,11,2012,29 Palms,Why Am I the Way I Am?,tt0283090\nNG3ru8QGwl0,2002.0,3,11,2012,29 Palms,Sounds Like Fun,tt0283090\nXPUqjed6k4s,2002.0,2,11,2012,29 Palms,No Smoking,tt0283090\nVYQoxBs5N2A,2002.0,1,11,2012,29 Palms,Disgruntled Cop,tt0283090\naFqlaPLvkw8,2006.0,9,9,2012,Akeelah and the Bee,Winning Words,tt0437800\n4t94x0N3AoU,2006.0,8,9,2012,Akeelah and the Bee,Altruistic Error,tt0437800\nuQ84SYJmHYI,2006.0,7,9,2012,Akeelah and the Bee,Argillaceous,tt0437800\nmgSQQjO5pwI,2006.0,6,9,2012,Akeelah and the Bee,You'll Be a Champion,tt0437800\nr_3r5f1W1Oo,2006.0,4,9,2012,Akeelah and the Bee,Scrabble Showdown,tt0437800\n_UZxXUwQX84,2006.0,5,9,2012,Akeelah and the Bee,Big Words Come From Little Words,tt0437800\nWdDUhHl-BzM,2006.0,2,9,2012,Akeelah and the Bee,Intelligent & Insolent,tt0437800\nDwKBxabn4QY,2006.0,3,9,2012,Akeelah and the Bee,Our Deepest Fear,tt0437800\njyerVX4GpBs,2007.0,10,10,2012,Before the Rains,You Must Go,tt0870195\nxHlaIIyiRSw,2007.0,9,10,2012,Before the Rains,The Tribulation of T.K.,tt0870195\nUCehCmHzBzw,2006.0,1,9,2012,Akeelah and the Bee,Natural Talent,tt0437800\nC7_7Wco4SWY,2007.0,2,10,2012,Before the Rains,Ruthless Comeuppance,tt0870195\nPmvZQglWfJM,2007.0,7,10,2012,Before the Rains,Go Back to Bed,tt0870195\nIinUDFR7Sr4,2007.0,8,10,2012,Before the Rains,Presumed Guilty,tt0870195\nmTHQ0fQXf-0,2007.0,6,10,2012,Before the Rains,A Tribal Matter,tt0870195\nvXmHNYtFll8,2007.0,5,10,2012,Before the Rains,God Rest Your Soul,tt0870195\n7Ro8QybNKu8,2007.0,1,10,2012,Before the Rains,Caught in the Act,tt0870195\n_v-_KbjVPxg,2007.0,4,10,2012,Before the Rains,Without Love,tt0870195\nIl1j-dS5dBs,2007.0,3,10,2012,Before the Rains,A Wounded Woman,tt0870195\nrnlyf0wk0ic,2009.0,10,10,2012,Bled,Free My Soul,tt0997143\n8c88JWPmDrA,2009.0,8,10,2012,Bled,Feasting on Kerra,tt0997143\nXGQpnngBL_g,2009.0,9,10,2012,Bled,Choking the Vampires,tt0997143\nMUFqS9iKzHw,2009.0,7,10,2012,Bled,Under the Influence,tt0997143\nGUyIWu59kig,2009.0,5,10,2012,Bled,Wake Me Up!,tt0997143\n8osn-0mHqC8,2009.0,6,10,2012,Bled,Forever Yours,tt0997143\nGlXLG_rF9lg,2009.0,4,10,2012,Bled,So Uncool,tt0997143\nX-w-beB9r3M,2009.0,3,10,2012,Bled,Come With Me,tt0997143\nwweMxbvl86Q,2009.0,1,10,2012,Bled,Beast,tt0997143\njfbbUufb7jM,2009.0,2,10,2012,Bled,The Pleasure and Corruption of Spirit,tt0997143\nXtTVNCZEcAs,2005.0,5,11,2012,Hostel,Death By Chainsaw,tt0450278\nqSmjZYAZQp0,2005.0,4,11,2012,Hostel,Hall of Horrors,tt0450278\nvgZL3KUbu8I,2005.0,3,11,2012,Hostel,I Always Wanted To Be a Surgeon,tt0450278\nshIHmOihazQ,2005.0,2,11,2012,Hostel,I Go Home,tt0450278\nUBMs3lfRim4,2002.0,7,10,2012,Ju-on,Empty Eyes,tt0364385\nh1KasQ7pdL4,2002.0,4,10,2012,Ju-on,Under the Covers,tt0364385\ntvRH4kLj-Dk,2002.0,3,10,2012,Ju-on,Bad Hair Day,tt0364385\nD8aAHxbYCCs,2002.0,9,10,2012,Ju-on,Strange Reflections,tt0364385\nAf6v6H6gvcQ,2002.0,10,10,2012,Ju-on,Family Curse,tt0364385\nMUeixjmY950,2002.0,6,10,2012,Ju-on,Fleeing the Scene,tt0364385\n7-59dVoKmik,2002.0,1,10,2012,Ju-on,Over and Over,tt0364385\nUDqKtqsOwBs,2002.0,5,10,2012,Ju-on,A Mysterious Shadow,tt0364385\nNELtiWqsHY8,2002.0,8,10,2012,Ju-on,Long Lost Friends,tt0364385\n0oDBrYgawmI,2002.0,2,10,2012,Ju-on,Hide and Seek,tt0364385\nEP6Qb7rzBmA,2002.0,6,11,2012,Men with Brooms,Beavers,tt0263734\nYYlvedJn5W0,2002.0,8,11,2012,Men with Brooms,A Woman Scorned,tt0263734\nAmACeERgRA4,2002.0,9,11,2012,Men with Brooms,Father and Son,tt0263734\n0VRTOfZePkM,2002.0,1,11,2012,Men with Brooms,Meet the Team,tt0263734\nR1ejcTtTPTY,2002.0,10,11,2012,Men with Brooms,The Final Shot,tt0263734\nedVZXNgaYbE,2002.0,11,11,2012,Men with Brooms,Stuckmore Returns,tt0263734\nw-jFuEpRFOM,2002.0,7,11,2012,Men with Brooms,Coach Me,tt0263734\n06yqAuIbuVw,2002.0,4,11,2012,Men with Brooms,\"Burning Question, Burning Stone\",tt0263734\njJ-o9HHw-_s,2002.0,5,11,2012,Men with Brooms,Young vs. Old,tt0263734\nZN9EtTazTl0,2002.0,3,11,2012,Men with Brooms,400 Pounds of Defecating Menace,tt0263734\nBNCwxQQcXv8,2002.0,2,11,2012,Men with Brooms,Peculiar Wish,tt0263734\nuWalH3hnCyY,2002.0,6,9,2012,Secretary,Lights Out,tt0274812\nPOEUgs1Shqw,2002.0,5,9,2012,Secretary,I'm Your,tt0274812\nIqenc7PJze4,2002.0,9,9,2012,Secretary,\"Thank You, Daddy\",tt0274812\n4Ufv8hcJZ_A,2002.0,8,9,2012,Secretary,I Love You,tt0274812\nL5Yu-IGx0-4,2002.0,4,9,2012,Secretary,Bend Over,tt0274812\nwX2AeW_M-xc,2002.0,2,9,2012,Secretary,Typos,tt0274812\nie7XVOuzf2U,2002.0,3,9,2012,Secretary,Never Cut Yourself Again,tt0274812\nQflHaPOXcA4,2002.0,1,9,2012,Secretary,There's Something About You,tt0274812\nrypwboimK5k,2008.0,10,10,2012,The Spirit,It Ends Tonight,tt0831887\nU0get4DzXqA,2008.0,1,10,2012,The Spirit,My City Screams,tt0831887\njxIm__RPZuw,2008.0,4,10,2012,The Spirit,What Other Box?,tt0831887\nWgFa1bVTQEs,2008.0,7,10,2012,The Spirit,Dental and Nazi,tt0831887\nalziIIbUN9o,2008.0,6,10,2012,The Spirit,Femme Fatale,tt0831887\nYnpV0k673Ug,2008.0,9,10,2012,The Spirit,A Fabulous Swap,tt0831887\nOPQbpZwpLtE,2008.0,2,10,2012,The Spirit,Shut Up and Bleed,tt0831887\nITSOiqkDzrI,2008.0,3,10,2012,The Spirit,vs. The Octopus,tt0831887\nAIkEAcjhQOA,2008.0,8,10,2012,The Spirit,Give Up the Ghost,tt0831887\nfGV1kmATl0E,2008.0,5,10,2012,The Spirit,Plain Damn Weird,tt0831887\nn1rhiQzW30k,2002.0,4,8,2012,Defiance,It's Your Brother,tt0337972\nwJRb5MKvouw,2002.0,7,8,2012,Defiance,I Think You Killed Him,tt0337972\nCrKUXT6JZ7M,2002.0,1,8,2012,Defiance,Randall's Out!,tt0337972\nmXXucVAQdf4,2002.0,2,8,2012,Defiance,He Killed the Jonas Brothers,tt0337972\nRlPaVTRPVLI,2002.0,5,8,2012,Defiance,Hit Him Again,tt0337972\n27gWbiG9w5A,2002.0,6,8,2012,Defiance,A Good Way to Get Killed,tt0337972\nr8cegnOVDjo,2006.0,10,10,2012,Bug,Contaminated,tt0470705\nfb8Xk2_yqps,2002.0,3,8,2012,Defiance,Tommy Cross,tt0337972\n2Q9h-B9OVVA,2002.0,8,8,2012,Defiance,Final Shootout,tt0337972\noR_XFDHk0Kk,2006.0,8,10,2012,Bug,Machine,tt0470705\nNQdNfhG-s8k,2006.0,7,10,2012,Bug,You're Being Watched,tt0470705\nTgOGj14T0M4,2006.0,6,10,2012,Bug,Pliers,tt0470705\n9hbBpOHXAkc,2006.0,5,10,2012,Bug,Dr. Sweet,tt0470705\nn-G24ROD5g0,2006.0,3,10,2012,Bug,Trouble with the Army,tt0470705\nYShA_c8OUl4,2006.0,4,10,2012,Bug,I Don't Want Any Trouble,tt0470705\n6J3zkkpEkWg,2006.0,2,10,2012,Bug,The Ex-Husband,tt0470705\nNcYbRZdgLik,2006.0,1,10,2012,Bug,I'm Not an Axe Murderer,tt0470705\njqdKv0Vz0sU,2006.0,9,10,2012,Bug,I Am the Super Mother !,tt0470705\nMG_o8Id_UCU,2006.0,6,8,2012,Deliver Us from Evil,Monsignor Cain's Deposition,tt0814075\nSEM1DDRM5r4,2006.0,8,8,2012,Deliver Us from Evil,The Church Betrayed Me,tt0814075\nJOQoxkx9uS0,2006.0,7,8,2012,Deliver Us from Evil,The Wolf and the Gatekeeper,tt0814075\naUIjcrHyvHU,2006.0,4,8,2012,Deliver Us from Evil,Power Trip,tt0814075\n5nilVcDLNYs,2006.0,5,8,2012,Deliver Us from Evil,Being Catholic,tt0814075\nuvQFoM1fj0E,2006.0,2,8,2012,Deliver Us from Evil,The Letter,tt0814075\nZpDnHh_JmQE,2006.0,3,8,2012,Deliver Us from Evil,The Cover Up,tt0814075\n1qamIJWkKi0,2006.0,1,8,2012,Deliver Us from Evil,Oliver O'Grady,tt0814075\nPypxQNMzAHM,2004.0,9,11,2012,Ginger Snaps: Unleashed,Ghost's Secrets,tt0353489\n-9Cf6w28dc4,2004.0,8,11,2012,Ginger Snaps: Unleashed,The Sound of Nature,tt0353489\no3fUAorIxss,2004.0,10,11,2012,Ginger Snaps: Unleashed,Wolf vs. Wolf,tt0353489\nzCpJ5qcmPnY,2004.0,11,11,2012,Ginger Snaps: Unleashed,Something's Still Alive Down There,tt0353489\nOB4ppp4EAAw,2004.0,7,11,2012,Ginger Snaps: Unleashed,The Forest Creatures Wept,tt0353489\nk6v2NnHxYPk,2004.0,6,11,2012,Ginger Snaps: Unleashed,Sleepover,tt0353489\nAYfAyTEVnVI,2004.0,5,11,2012,Ginger Snaps: Unleashed,The Beast Attacks,tt0353489\nQXqBylUsyzM,2004.0,3,11,2012,Ginger Snaps: Unleashed,Vicious Yet Constrained,tt0353489\nKe7vTfbeH0w,2004.0,2,11,2012,Ginger Snaps: Unleashed,Best-Case Scenario,tt0353489\nWRslUrt2NBg,2004.0,1,11,2012,Ginger Snaps: Unleashed,He's Found You Again,tt0353489\nrenIgi40w5s,2004.0,4,11,2012,Ginger Snaps: Unleashed,Eulogy for Beth-Ann,tt0353489\n1TeoyEPmuzA,2005.0,11,11,2012,Hostel,Director's Cut Ending,tt0450278\nNVB5kj4k6O4,2005.0,10,11,2012,Hostel,Catching a Train,tt0450278\nwQ6wc8oc_E8,2005.0,8,11,2012,Hostel,Eye Scream,tt0450278\n_5qVrmBANTE,2005.0,6,11,2012,Hostel,The Butcher,tt0450278\nVAC6RfndhMQ,2005.0,7,11,2012,Hostel,The American Client,tt0450278\nAkl5BAnhh_M,2005.0,9,11,2012,Hostel,Have Gum Will Travel,tt0450278\n7HHCL1eRdVo,2008.0,3,9,2012,The Love Guru,Smuggling a Schnauzer,tt0811138\nxwRlSxS2azA,1996.0,8,8,2012,2 Days in the Valley,Motel Cat Fight,tt0115438\np_UeWtpIW08,1996.0,7,8,2012,2 Days in the Valley,Come Out From Behind That Tree,tt0115438\nTXZ9nnOteV8,1996.0,6,8,2012,2 Days in the Valley,That Won't Fit You,tt0115438\nmcWrZOrafnA,1996.0,5,8,2012,2 Days in the Valley,We Are the Police,tt0115438\nKGKqdRDo-N8,1996.0,3,8,2012,2 Days in the Valley,It's Crooked,tt0115438\nOXcI5qu76jY,1996.0,4,8,2012,2 Days in the Valley,I Don't Need a Nose Job?,tt0115438\n8FysZvGGiz8,1996.0,2,8,2012,2 Days in the Valley,This is Where You Get Out,tt0115438\nIxWEtRxzzhI,2007.0,5,10,2012,Arctic Tale,Starving in the Blizzard,tt0488508\na7K1xgoi_c4,2007.0,7,10,2012,Arctic Tale,Melting Ice,tt0488508\nv-OP9DnMN-w,1996.0,1,8,2012,2 Days in the Valley,A Painful Flat Tire,tt0115438\ndwecZ5D3tFY,2007.0,9,10,2012,Arctic Tale,Guarding the Food,tt0488508\nOIXDhgqDYV0,2007.0,8,10,2012,Arctic Tale,Walrus Island,tt0488508\n89c3RqTIxws,2007.0,3,10,2012,Arctic Tale,Arctic Wildlife,tt0488508\nfhO2QtGb8tY,2007.0,10,10,2012,Arctic Tale,Newborn Polar Bear,tt0488508\n7SQWhD6OeRk,2007.0,4,10,2012,Arctic Tale,Stealing Walrus Meat,tt0488508\nktGwZKWClZg,2007.0,6,10,2012,Arctic Tale,The Narwhals,tt0488508\nnic5WxX4BCo,2007.0,1,10,2012,Arctic Tale,Hunting Walrus,tt0488508\n-YTLGLeKoJQ,1994.0,9,9,2012,Beverly Hills Cop 3,\"So Long, Foley\",tt0109254\nm4VP7c5UCdE,2007.0,2,10,2012,Arctic Tale,Farting Walrus,tt0488508\n2vjWxyJtUdo,1994.0,2,9,2012,Beverly Hills Cop 3,Billy's Green Lines,tt0109254\nRfKKArjmRHI,1994.0,7,9,2012,Beverly Hills Cop 3,The Awards Dinner,tt0109254\n6u79wLUXGPQ,1994.0,8,9,2012,Beverly Hills Cop 3,Alien Attack,tt0109254\nCf3RfidFKBw,1994.0,6,9,2012,Beverly Hills Cop 3,The Annihilator 2000,tt0109254\nWF724QBowDo,1994.0,5,9,2012,Beverly Hills Cop 3,Serge's Survival Boutique,tt0109254\nZhMpx9aeefY,1994.0,4,9,2012,Beverly Hills Cop 3,The Spider Rescue,tt0109254\nfnH1ZtugoqU,2005.0,8,9,2012,Coach Carter,The Final Shot,tt0393162\nWEnGy2hTHgA,1994.0,3,9,2012,Beverly Hills Cop 3,George Lucas at Wonderworld,tt0109254\nJ97F53CAA1I,2005.0,7,9,2012,Coach Carter,Timeout Pep Talk,tt0393162\neSBnFu1YnrU,2005.0,9,9,2012,Coach Carter,Not Your Storybook Ending,tt0393162\n1JDAa0BvD68,1994.0,1,9,2012,Beverly Hills Cop 3,Axel in Pursuit,tt0109254\n2FKPDOpKzDo,2005.0,5,9,2012,Coach Carter,A Better Life,tt0393162\n2_fDhqRk_Ro,2005.0,6,9,2012,Coach Carter,Our Deepest Fear,tt0393162\n1g82D68N-ys,2005.0,3,9,2012,Coach Carter,Push-Ups and Suicides,tt0393162\nqUiptlAJcyQ,2005.0,2,9,2012,Coach Carter,Come-from-Behind Win,tt0393162\nJomrLxDiT5g,2005.0,4,9,2012,Coach Carter,Richmond vs. Bay Hill,tt0393162\nV1wAemvxNaM,2005.0,1,9,2012,Coach Carter,First Practice,tt0393162\n1niI0J4kdI4,2005.0,1,9,2012,Hustle & Flow,Man Ain't Like a Dog,tt0410097\n1pq96OQlUWs,2005.0,7,9,2012,Hustle & Flow,Standing Up To Skinny,tt0410097\n_RsQsYJ_oWE,2005.0,9,9,2012,Hustle & Flow,On the Radio,tt0410097\n7r_DI5X5ROs,2005.0,8,9,2012,Hustle & Flow,A Mix Tape for Skinny,tt0410097\n_Cr0nP3k_p4,2005.0,5,9,2012,Hustle & Flow,Hard Out Here for a Pimp,tt0410097\nq-y6JBpCFtI,2005.0,6,9,2012,Hustle & Flow,What Do You Want?,tt0410097\nYe-GPGstKFc,2005.0,3,9,2012,Hustle & Flow,Shake It Real Fast,tt0410097\n-TzrPYcpPvY,2005.0,2,9,2012,Hustle & Flow,Spiritual Experience,tt0410097\nq-StMfE8NrA,2005.0,4,9,2012,Hustle & Flow,Whoop That Trick,tt0410097\nT5d-R7FDG7s,1990.0,10,10,2012,Tales from the Darkside,A Happy Ending,tt0100740\nEniROJmSS8U,1990.0,9,10,2012,Tales from the Darkside,You Broke Your Vow,tt0100740\n1G9ED_K_IAQ,1990.0,8,10,2012,Tales from the Darkside,A Promise,tt0100740\nfvVBKWMTSRM,1990.0,4,10,2012,Tales from the Darkside,Post-Alexandrian Pictogram Porn,tt0100740\n-SJAzpHg4s8,1990.0,7,10,2012,Tales from the Darkside,Cat Mouth,tt0100740\nKhfsAokR-D4,1990.0,6,10,2012,Tales from the Darkside,Cat's Got Your Tongue,tt0100740\nYMb-AODYc6g,1990.0,5,10,2012,Tales from the Darkside,The Cat Killed Them,tt0100740\nyUd_E5dnVx0,1990.0,3,10,2012,Tales from the Darkside,Open His Eyes,tt0100740\nFRogQQGQn1g,1990.0,2,10,2012,Tales from the Darkside,These Stupid Chrysanthemums,tt0100740\nKRhnyD4ZLkI,1945.0,8,8,2012,The Bells of St. Mary's,,tt0037536\nwzYht_EEf0U,1990.0,1,10,2012,Tales from the Darkside,Mummy Break-In,tt0100740\nmSeeLOr1GKI,1945.0,6,8,2012,The Bells of St. Mary's,Better Than Breaking Their Hearts,tt0037536\nre8jdVlrltA,1945.0,7,8,2012,The Bells of St. Mary's,A Special Gift,tt0037536\noxjeihyxCnY,1945.0,5,8,2012,The Bells of St. Mary's,O Sanctissima,tt0037536\n9d4Zddhcqbc,1945.0,4,8,2012,The Bells of St. Mary's,A Fair Fight,tt0037536\n0AspXDFcGlw,1945.0,2,8,2012,The Bells of St. Mary's,Boxing With a Nun,tt0037536\nLN1WX6JkYaI,1945.0,3,8,2012,The Bells of St. Mary's,Aren't You Glad You're You?,tt0037536\nCqXatBg5LtE,2007.0,4,9,2012,The Heartbreak Kid,Singing in the Car,tt0408839\nV4aBCK2UWpQ,1945.0,1,8,2012,The Bells of St. Mary's,It's a Man's World,tt0037536\ncH8W_cTQQvw,2007.0,8,9,2012,The Heartbreak Kid,Mariachi Meltdown,tt0408839\n9mE6UqKoe5Y,2007.0,9,9,2012,The Heartbreak Kid,Love Love Love,tt0408839\nzHzbei3YeFs,2007.0,7,9,2012,The Heartbreak Kid,World's Greatest Husband,tt0408839\nvrCmp9js4YI,2007.0,5,9,2012,The Heartbreak Kid,Uncle Tito,tt0408839\nFMcQ9qdYBUI,2007.0,6,9,2012,The Heartbreak Kid,Savage Sunburn,tt0408839\nvsBwRV2b3LY,2007.0,3,9,2012,The Heartbreak Kid,Taking the Plunge,tt0408839\neMFxQti1xHU,2007.0,2,9,2012,The Heartbreak Kid,Bicycle Mugger,tt0408839\n7fYY9Fk5vg0,2007.0,1,9,2012,The Heartbreak Kid,The Kids' Table,tt0408839\n_qJp9DwYgck,2006.0,9,9,2012,The Last Kiss,I Miss You,tt0434139\nFkDrbUQLuHY,2006.0,8,9,2012,The Last Kiss,Whatever It Takes,tt0434139\njbh5Q-eHULU,2006.0,7,9,2012,The Last Kiss,Lying About Cheating,tt0434139\nfpLdP56W3do,2006.0,6,9,2012,The Last Kiss,Is He Seeing Somebody?,tt0434139\nBIPpar64F5o,2006.0,4,9,2012,The Last Kiss,Strange Reunion,tt0434139\nmIJdrHpr3_Q,2006.0,5,9,2012,The Last Kiss,Flesh and Blood,tt0434139\nFHs_-lvHG4E,2006.0,2,9,2012,The Last Kiss,Permanent Crisis,tt0434139\nGeYJEkN4fao,2006.0,1,9,2012,The Last Kiss,A Very Big Thing,tt0434139\nqckVPZkmiNU,2006.0,3,9,2012,The Last Kiss,Editing My Life,tt0434139\nqDTmyJdVAF0,2008.0,9,9,2012,The Love Guru,The Joker,tt0811138\nt5qkPMvpDfg,2008.0,8,9,2012,The Love Guru,What is it You Can't Face?,tt0811138\nJU189rHBIIQ,2008.0,2,9,2012,The Love Guru,Thicker Than a Snicker,tt0811138\nOgEr2VRg6n0,2008.0,6,9,2012,The Love Guru,I Miss Prudence,tt0811138\n32XOkSNoXdE,2008.0,7,9,2012,The Love Guru,More Than Words,tt0811138\nGmza139ypxw,2008.0,5,9,2012,The Love Guru,You Got A Problem?,tt0811138\nil4NFf0V_HQ,2008.0,4,9,2012,The Love Guru,Bench Clearing Brawl,tt0811138\ntYPUzX8KTXw,2008.0,1,9,2012,The Love Guru,\"When Love Goes Wrong, Nothing Goes Right\",tt0811138\n8TIqqUbWUTI,2005.0,3,12,2012,2001 Maniacs,Guts and Glory Jubilee,tt0264323\n1OcqJdBrRpw,2006.0,7,9,2012,Ask the Dust,Some Forgotten Dream,tt0384814\n1G3a0mUEz5I,1999.0,7,10,2012,200 Cigarettes,The Worst Lover I Ever Had,tt0137338\n-Ml2V9Mos-4,1999.0,10,10,2012,200 Cigarettes,Jack's Curse,tt0137338\nd6Jy5tMv0GA,1999.0,9,10,2012,200 Cigarettes,A Strong Woman,tt0137338\nk7koR5o-fUM,1999.0,8,10,2012,200 Cigarettes,Caught in the Act,tt0137338\nEinsfcAsUoQ,2005.0,12,12,2012,2001 Maniacs,Mayor Buckman's Eye,tt0264323\nMlb3avSMD_Y,1999.0,6,10,2012,200 Cigarettes,The Desperation of Finding Someone,tt0137338\nhol98WRZtz4,2005.0,7,12,2012,2001 Maniacs,Bestest Festival Ever,tt0264323\n0QTBwHx-Wuw,2005.0,9,12,2012,2001 Maniacs,A Lot of Guts,tt0264323\n5UnFOqWJ5SI,1999.0,4,10,2012,200 Cigarettes,Only Nine O'Clock,tt0137338\nzS9ZrFqMchM,2005.0,11,12,2012,2001 Maniacs,The South Will Rise Again,tt0264323\nxw5Iyx5ejO0,2005.0,10,12,2012,2001 Maniacs,Ricky On A Sticky,tt0264323\n6bRqnek7R6E,1999.0,1,10,2012,200 Cigarettes,Cabbie Advice,tt0137338\npxHoR9Cc6Rg,1999.0,5,10,2012,200 Cigarettes,Crossing Onto Avenue B,tt0137338\ncqlk4EfEDJQ,1999.0,3,10,2012,200 Cigarettes,Say Yes to Your Destiny,tt0137338\nUvMusa65chI,1999.0,2,10,2012,200 Cigarettes,Obligation to Enjoy Yourself,tt0137338\nMTJzGzdA3c8,2005.0,8,12,2012,2001 Maniacs,Horseshoes,tt0264323\nqcP3rt5etd8,2005.0,4,12,2012,2001 Maniacs,Horse Rack Kill,tt0264323\njFKbSAjlJY0,2005.0,5,12,2012,2001 Maniacs,60 Second Romance,tt0264323\neP2aBRb6geI,2005.0,6,12,2012,2001 Maniacs,Suck It!,tt0264323\nJ_uWB_m7ML8,2004.0,8,8,2012,Alfie,What Have I Got?,tt0375173\nqC7yIu-ZQZE,2005.0,1,12,2012,2001 Maniacs,It's About Respect,tt0264323\ns109ZEZXQJE,2005.0,2,12,2012,2001 Maniacs,My Armadillo!,tt0264323\nu7tSASIBz4Y,2004.0,8,8,2012,Against the Ropes,Thanking Jackie,tt0312329\nDfNfg963uEA,2004.0,4,8,2012,Alfie,Joe,tt0375173\n-HTF_tAUtkQ,2004.0,7,8,2012,Against the Ropes,You Are a Champion,tt0312329\nm7_LwdyNsIQ,2004.0,7,8,2012,Alfie,What's He Got?,tt0375173\n4oY9E3_6jlY,2004.0,3,8,2012,Alfie,Lift-Off,tt0375173\nrBZQHST6BQQ,2004.0,2,8,2012,Alfie,Playing with Lonette,tt0375173\neLFf1LzuM1Q,2004.0,6,8,2012,Alfie,Running Into Julie,tt0375173\n5jAVjQh9S8A,1991.0,9,9,2012,All I Want for Christmas,I Tried to Help Things Along,tt0101301\n1fscFQfphvE,2004.0,5,8,2012,Alfie,Plenty of Experience,tt0375173\nzQydroqGFbA,2004.0,1,8,2012,Alfie,I'm,tt0375173\nUYOH5SCstlI,1991.0,8,9,2012,All I Want for Christmas,We Did It!,tt0101301\nUEndkOUG9M4,1991.0,6,9,2012,All I Want for Christmas,I Have To Go,tt0101301\nPTG0z3VWa8g,1991.0,5,9,2012,All I Want for Christmas,It's Either Me or Santa Claus,tt0101301\nAKpSGtlsBws,1991.0,2,9,2012,All I Want for Christmas,That's A Pretty Tall Order,tt0101301\nTuQLFcJ8Eyw,1991.0,7,9,2012,All I Want for Christmas,I Wasn't Expecting an Adventure This Christmas,tt0101301\nIlLYqvnCs0o,1991.0,4,9,2012,All I Want for Christmas,Can I Use the Lap?,tt0101301\nIXgeL39PXAE,1991.0,1,9,2012,All I Want for Christmas,You Can't Ask Santa Claus For That,tt0101301\nDvTSWj2tgnI,1991.0,3,9,2012,All I Want for Christmas,\"Better Get A Move On, Slick\",tt0101301\nvNrNofWBcas,1980.0,8,8,2012,American Gigolo,\"I Had No Choice, I Love You\",tt0080365\nsWs843kQxaM,1980.0,3,8,2012,American Gigolo,Was It What You Expected?,tt0080365\nYa4RBKamUqU,1980.0,7,8,2012,American Gigolo,Why Did You Pick Me?,tt0080365\ndRwiGgbaM84,1980.0,2,8,2012,American Gigolo,You Walk an Awful Thin Line,tt0080365\nnp_HgtPXDXE,1980.0,5,8,2012,American Gigolo,Maybe You're What I'm Looking For,tt0080365\ngec4_X9J2K0,1980.0,6,8,2012,American Gigolo,Searching the Apartment,tt0080365\neoSPKSIxeek,1980.0,4,8,2012,American Gigolo,I Made You,tt0080365\nY55tkTIy5sc,2008.0,8,9,2012,American Teen,Colin Wins the Game,tt0486259\n3Vimb_RuN7c,1980.0,1,8,2012,American Gigolo,I Know What I See,tt0080365\naDUZ8IC6wco,2008.0,7,9,2012,American Teen,Vandalism,tt0486259\nq15Yv0rZXqs,2008.0,9,9,2012,American Teen,Jake Gets Drunk,tt0486259\nWASIZITWvZs,2008.0,3,9,2012,American Teen,Hannah Won't Go To School,tt0486259\nCGzMqCfxpPs,2008.0,6,9,2012,American Teen,Ganging Up on Erica,tt0486259\nwYMfDxQdnUc,2008.0,4,9,2012,American Teen,Spin the Bottle,tt0486259\nsdNPmpfgOMw,2008.0,1,9,2012,American Teen,Meet Megan,tt0486259\ninAlpz8a0aU,2008.0,5,9,2012,American Teen,Going Viral,tt0486259\nmsKXGrgvzP0,2001.0,9,9,2012,An American Rhapsody,Through Different Eyes,tt0221799\niGU6Zqxfw5s,2001.0,7,9,2012,An American Rhapsody,Shooting Holes in the Door,tt0221799\nwXYRFo4rrrw,2008.0,2,9,2012,American Teen,Hannah's Dreams,tt0486259\nhQDDQV-oCsE,2001.0,6,9,2012,An American Rhapsody,Bad Behavior,tt0221799\nSSgDunmuSAA,2001.0,4,9,2012,An American Rhapsody,Suzanne Gets Lost,tt0221799\nOnYQyspzLEc,2001.0,8,9,2012,An American Rhapsody,Tragic Past,tt0221799\n6Bk2AsTcdbE,2001.0,5,9,2012,An American Rhapsody,Father and Daughter,tt0221799\nJSHPdnYixNo,2001.0,2,9,2012,An American Rhapsody,Bad News,tt0221799\nP578OPOe02E,2001.0,3,9,2012,An American Rhapsody,\"Reunited,\",tt0221799\n8VI6vvaZxbE,2006.0,6,9,2012,Ask the Dust,\"Loud, Angry, and Poor\",tt0384814\nQNv1frrhj4s,2006.0,8,9,2012,Ask the Dust,Would You Say Please?,tt0384814\nxfxhI_l9UYQ,2001.0,1,9,2012,An American Rhapsody,Leaving Baby Behind,tt0221799\nX3aJZU6rInc,2006.0,5,9,2012,Ask the Dust,The Hard Stuff,tt0384814\nUt_lRQbeQcU,2006.0,4,9,2012,Ask the Dust,Take Off Those Shoes,tt0384814\n9aaVOicCVcY,2006.0,2,9,2012,Ask the Dust,Bad Coffee,tt0384814\ncETZjbXsUog,2006.0,9,9,2012,Ask the Dust,Too Ashamed to Marry,tt0384814\n2baUXj3vrEs,2006.0,3,9,2012,Ask the Dust,The Land of Somewhere Else,tt0384814\n36WAEsNsfng,2006.0,11,11,2012,Away from Her,Forsaken Me,tt0491747\nAHudLuix7As,2006.0,1,9,2012,Ask the Dust,The Milk Heist,tt0384814\n2hWZyDGHNxI,2006.0,8,11,2012,Away from Her,End of Things,tt0491747\nCrMlZldzxSg,2006.0,10,11,2012,Away from Her,Pretend a Little,tt0491747\nx3SUKG6l6FQ,2006.0,7,11,2012,Away from Her,Everything Reminds Me of Him,tt0491747\nEdxnFXQId-0,2006.0,4,11,2012,Away from Her,A Kiss,tt0491747\nAqKpGR4EocU,2006.0,5,11,2012,Away from Her,I'm Your Husband,tt0491747\nTfWrCqaIAtE,2006.0,9,11,2012,Away from Her,Man With a Broken Heart,tt0491747\nTbdjQ6LLFsU,2006.0,1,11,2012,Away from Her,Wine,tt0491747\nTJj7YqhNxiw,2006.0,6,11,2012,Away from Her,A Depressing Visit,tt0491747\nHLIVYHitYPw,2006.0,2,11,2012,Away from Her,Things I Wish Would Go Away,tt0491747\nIs9bN_cdTMo,2006.0,3,11,2012,Away from Her,Goodbye,tt0491747\n8fIL99qy9HU,2006.0,5,10,2012,Barnyard,Let's Boogie!,tt0414853\nFWx6IsqPUKk,1992.0,5,9,2012,Bad Lieutenant,Routine Traffic Stop,tt0103759\ncQA8oY5pwJQ,1992.0,8,9,2012,Bad Lieutenant,I'm Sorry!,tt0103759\nycKGXmtM6hk,1992.0,9,9,2012,Bad Lieutenant,She Forgives You,tt0103759\n0aMQUngLy1Y,1992.0,7,9,2012,Bad Lieutenant,Forgiveness,tt0103759\nBiO01_Fe6To,1992.0,2,9,2012,Bad Lieutenant,Corner Store Altercation,tt0103759\nukvZvl0GElQ,1992.0,3,9,2012,Bad Lieutenant,Fine Brown Stuff,tt0103759\nFmiBHWtxHLA,1992.0,4,9,2012,Bad Lieutenant,Evidence,tt0103759\nJQRV5_auS_Q,1992.0,6,9,2012,Bad Lieutenant,Baseball Gambling,tt0103759\nhSUo-HJ01kY,2006.0,8,10,2012,Barnyard,A Cow In Our Car!,tt0414853\nWo2ZCh7vc2E,1992.0,1,9,2012,Bad Lieutenant,Drug Counselor or Drug Dealer,tt0103759\n2sY8MYUTfiQ,2006.0,10,10,2012,Barnyard,Daisy Gives Birth,tt0414853\nLQFM8e6gQRg,2006.0,7,10,2012,Barnyard,Cow Tips Boy,tt0414853\n76ftznPZmgk,2006.0,9,10,2012,Barnyard,I Smell Fear,tt0414853\n3J2Hm85PD2E,2006.0,1,10,2012,Barnyard,Farm Surfing,tt0414853\nue0MJQmrIlg,2006.0,6,10,2012,Barnyard,Fooling the Farmer,tt0414853\n-Nr56-RD_g8,2006.0,2,10,2012,Barnyard,Wrong Number,tt0414853\nLrSA5tw_KSc,2007.0,11,11,2012,Before the Devil Knows You're Dead,Robbing the Dealer,tt0292963\nC2db3UusdPc,2006.0,4,10,2012,Barnyard,Coyote Attack!,tt0414853\n90rIOemL6Xg,2006.0,3,10,2012,Barnyard,The Pizza Guy,tt0414853\n7kTGVJ5OKDA,2007.0,4,11,2012,Before the Devil Knows You're Dead,No Shooting,tt0292963\nziF1CU69IEA,2007.0,8,11,2012,Before the Devil Knows You're Dead,A Settlement,tt0292963\n39gtT7pdMwE,2007.0,10,11,2012,Before the Devil Knows You're Dead,I've Been Having an Affair,tt0292963\nV_i1yhjzdgI,2007.0,9,11,2012,Before the Devil Knows You're Dead,Beautiful Birds of a Feather,tt0292963\nqwsrKRo5gdA,2007.0,5,11,2012,Before the Devil Knows You're Dead,Nothing Connects to Anything Else,tt0292963\n88fxqiFGNXY,2007.0,6,11,2012,Before the Devil Knows You're Dead,What Are You Thinking?,tt0292963\nm5aE6rnmIwg,2007.0,1,11,2012,Before the Devil Knows You're Dead,The Robbery,tt0292963\naZtlkGEwfSA,2007.0,3,11,2012,Before the Devil Knows You're Dead,Mom and Pop Operation,tt0292963\n4a55PnIKoz0,2007.0,7,11,2012,Before the Devil Knows You're Dead,Try to Look Normal,tt0292963\nMlhH_sjxXaA,2006.0,8,8,2012,Bella,Playing at the Beach,tt0482463\nO4di7-6b7eY,2007.0,2,11,2012,Before the Devil Knows You're Dead,Victimless Crime,tt0292963\nEG_6BpNd0Vw,2006.0,5,8,2012,Bella,Have You Thought About Adoption?,tt0482463\nuECrYxTF-pU,2006.0,2,8,2012,Bella,Nina's Pregnant,tt0482463\n2OOUlE9F190,2006.0,6,8,2012,Bella,A Terrible Accident,tt0482463\nZGF2551BMIc,2006.0,7,8,2012,Bella,That's My Family,tt0482463\nDDfuaxazcc4,2001.0,1,8,2012,Mostly Martha,My Mother's Recipe,tt0246772\nV2E341Ilexw,2001.0,2,8,2012,Mostly Martha,Two Chefs In the Kitchen,tt0246772\nD93lQnQlJcg,2006.0,4,8,2012,Bella,An Argument With the Boss,tt0482463\nw7VbNRVbRQY,2006.0,3,8,2012,Bella,Not Ready to Have a Kid,tt0482463\n-BOt25-zf8Q,2001.0,3,8,2012,Mostly Martha,Getting Lina to Eat,tt0246772\nmeDRW5WV1R8,2006.0,1,8,2012,Bella,Fired for Being Late,tt0482463\nTsBMOksruxA,2001.0,5,8,2012,Mostly Martha,An Argument With Lina,tt0246772\nZqTzBhLdJO4,2001.0,6,8,2012,Mostly Martha,I'm Starting to Forget Her,tt0246772\nDZ2_coKUWcc,2001.0,4,8,2012,Mostly Martha,Mario Comes to Cook,tt0246772\nAdJe8nZ8crs,2001.0,7,8,2012,Mostly Martha,A Sophisticated Palate,tt0246772\n3CR_U8066OY,2001.0,8,8,2012,Mostly Martha,Rare Enough?,tt0246772\nwMZ5UJRpxfk,2003.0,2,8,2012,Beyond Borders,Stop the Truck,tt0294357\nJvFNTD3NhH8,2003.0,7,8,2012,Beyond Borders,She Needs You,tt0294357\nLbMpSo9yvZo,2003.0,5,8,2012,Beyond Borders,He's Just a Baby,tt0294357\n8uHpWrtDfAU,2003.0,4,8,2012,Beyond Borders,Tampered Cargo,tt0294357\n8RRzvri051s,2003.0,6,8,2012,Beyond Borders,A Plea for Those in Need,tt0294357\n02064E1SHtQ,2003.0,1,8,2012,Beyond Borders,Cruel Joke,tt0294357\ndMJolQgBp38,2003.0,8,8,2012,Beyond Borders,Go Get Help,tt0294357\npYXkfLVbLIQ,1994.0,8,9,2012,Blue Chips,Western Vs. Indiana,tt0109305\nptgpK6nH-5g,1994.0,9,9,2012,Blue Chips,\"Neon Jams, Winning!\",tt0109305\nwAE0vlaKvkM,1994.0,6,9,2012,Blue Chips,Neon Goes to College,tt0109305\nv4Zjie4qH04,2003.0,3,8,2012,Beyond Borders,She's in Pain,tt0294357\nKUnaFhIJ17Q,1994.0,5,9,2012,Blue Chips,The S.A.T. Bet,tt0109305\niNxUsONmig8,1994.0,7,9,2012,Blue Chips,Coach Bell's Pep Talk,tt0109305\nJv_AlRfm998,1994.0,3,9,2012,Blue Chips,Meet Neon,tt0109305\nghn35eUPiIc,1994.0,4,9,2012,Blue Chips,Please Don't Step on the Kids,tt0109305\n5oAIVuFPUdQ,1994.0,2,9,2012,Blue Chips,Ejected,tt0109305\nzTX_mBbobME,2000.0,10,12,2012,Blair Witch 2,News at Eleven,tt0229260\nWA-A3QhXx30,1992.0,7,9,2012,Dead Alive,Party Crashers,tt0103873\n-5RW2xQ9pNs,2000.0,7,12,2012,Blair Witch 2,Beer Run,tt0229260\nweTmdGoN_SQ,1994.0,1,9,2012,Blue Chips,How Bad Can it Get?,tt0109305\nvILYE9lG3Aw,2000.0,6,12,2012,Blair Witch 2,I Have Them Too,tt0229260\n4gbvjHb0ZUA,2000.0,9,12,2012,Blair Witch 2,Where Is Erica?,tt0229260\nd5lyojjyMl0,2000.0,8,12,2012,Blair Witch 2,From Another Time,tt0229260\nkEKqDuIl8Wo,2000.0,11,12,2012,Blair Witch 2,Who Are You?,tt0229260\ndkB5SsVVlOI,2000.0,5,12,2012,Blair Witch 2,The Next Morning,tt0229260\nDZpfEy3OsrI,2000.0,3,12,2012,Blair Witch 2,I Thought the Movie Was Cool,tt0229260\nV9aRvKzTOc4,2000.0,12,12,2012,Blair Witch 2,Breaking News,tt0229260\nViai9bgo5KM,1992.0,9,9,2012,Boomerang,You Got to Coordinate,tt0103859\n7rDK27McgEg,2000.0,1,12,2012,Blair Witch 2,Burkittsville Residents,tt0229260\nUD_gJShgozE,1992.0,2,9,2012,Boomerang,Lady Eloise Seduces Marcus,tt0103859\nO7VH8LKDnr0,1992.0,7,9,2012,Boomerang,No Man Can Turn This Down,tt0103859\niMzGaN5Sg3w,1992.0,4,9,2012,Boomerang,The Essence of Sex,tt0103859\nNP7_SIRfo-c,1992.0,1,9,2012,Boomerang,Hammertime Feet,tt0103859\nqYgpnWoRbXg,1992.0,8,9,2012,Boomerang,Strangé It Stinks So Good!,tt0103859\nsdfDF8OuPPc,2000.0,4,12,2012,Blair Witch 2,Communing With Ellie,tt0229260\nu1_fdJ0f2iQ,2000.0,2,12,2012,Blair Witch 2,Introductions,tt0229260\nHmGeJVIfb1U,1992.0,5,9,2012,Boomerang,Racist Store Clerk,tt0103859\nCaCW78inauI,1992.0,9,9,2012,Dead Alive,\"You Don't Scare Me, Mum\",tt0103873\nv4kXrblmBE8,1992.0,6,9,2012,Boomerang,Does This Mean You Forgive Me?,tt0103859\nIZGhNReGZTs,1992.0,3,9,2012,Boomerang,My Mack Daddy Vibe,tt0103859\n_fap4qRqTlk,1992.0,4,9,2012,Dead Alive,\"Your Mother's Dead, Lionel\",tt0103873\nrC6WAAlNHt4,1992.0,5,9,2012,Dead Alive,I Kick Ass for the Lord,tt0103873\n_ASByCtlV_o,1992.0,8,9,2012,Dead Alive,Baby Face,tt0103873\nebNbXsFdz9w,1992.0,6,9,2012,Dead Alive,Hyperactive Baby,tt0103873\nO_GMXI7Pp6c,1992.0,1,9,2012,Dead Alive,You've Got the Bite,tt0103873\n_frVHCLECNQ,1992.0,2,9,2012,Dead Alive,Rat Monkey Attacks,tt0103873\n8wDlH8jWxYk,1992.0,3,9,2012,Dead Alive,You're Not Well,tt0103873\nXnJvHpxr1Lw,1999.0,9,9,2012,Bringing Out the Dead,Saving Cy,tt0163988\ndcO8blFBl8g,1999.0,8,9,2012,Bringing Out the Dead,The City's Burning,tt0163988\nlQCPntZhPPk,1999.0,7,9,2012,Bringing Out the Dead,Worst Suicide Attempt Ever,tt0163988\nSfQk_TF9KJ8,1999.0,6,9,2012,Bringing Out the Dead,Ambulance Crash,tt0163988\nCXJ8c0rWJsk,1999.0,4,9,2012,Bringing Out the Dead,I Be Bangin'!,tt0163988\nsBpNA3HWj6Y,1999.0,2,9,2012,Bringing Out the Dead,Mr. O the Drunk,tt0163988\n-NeY5tqk1N8,2009.0,3,10,2012,Brothers,Give Me the Keys,tt0838283\nJrlQ3NAcPf0,1999.0,5,9,2012,Bringing Out the Dead,A Virgin Miracle,tt0163988\n_h2BB1vo27s,1999.0,1,9,2012,Bringing Out the Dead,First Call of the Night,tt0163988\nx1brwiNhp6Q,1999.0,3,9,2012,Bringing Out the Dead,Sick Time,tt0163988\nYo3qKhfO_V4,2009.0,9,10,2012,Brothers,Sam Loses It,tt0838283\nFYh2_trJNiA,2009.0,7,10,2012,Brothers,The Truth Comes Out,tt0838283\nK_jwfCn9X6E,2009.0,1,10,2012,Brothers,Family Dinner,tt0838283\nc1nmARXTuvE,2009.0,2,10,2012,Brothers,\"He's Dead, Tommy\",tt0838283\n029Mdp9jYiY,2009.0,4,10,2012,Brothers,Making the First Move,tt0838283\noN2S394WfuU,2009.0,10,10,2012,Brothers,A Family Matter,tt0838283\nc3nJu9SBkis,2009.0,8,10,2012,Brothers,I Wish You Stayed Dead!,tt0838283\nKVy9rgFD5js,2009.0,5,10,2012,Brothers,Kill or Be Killed,tt0838283\nRnTG-5XU49o,2009.0,6,10,2012,Brothers,Did You Sleep With My Wife?,tt0838283\nCMcqNCzUlGw,1999.0,11,12,2012,But I'm a Cheerleader,Simulated Sexual Lifestyle,tt0179116\ny-4yAOPVjZA,1999.0,12,12,2012,But I'm a Cheerleader,Graduation,tt0179116\nIBN5GruNnME,1999.0,9,12,2012,But I'm a Cheerleader,The Final Test,tt0179116\n5k5l5PQJFrE,1999.0,10,12,2012,But I'm a Cheerleader,Never Felt That Way Before,tt0179116\nJoNeXThhiqs,1999.0,1,12,2012,But I'm a Cheerleader,Kissing and Dreaming,tt0179116\noFEEoG2s_04,1999.0,7,12,2012,But I'm a Cheerleader,Family Therapy,tt0179116\nghaZWnGSgMI,1999.0,4,12,2012,But I'm a Cheerleader,Rediscovering Your Gender Identity,tt0179116\nWQyUUpQzdto,1999.0,6,12,2012,But I'm a Cheerleader,Playing Football and Changing Diapers,tt0179116\nHxyKbR3GmsY,2002.0,11,11,2012,Cabin Fever,I Made It!,tt0303816\nnINkPmHZfRc,1999.0,3,12,2012,But I'm a Cheerleader,True Directions,tt0179116\n8NFxckpb-CY,1999.0,8,12,2012,But I'm a Cheerleader,I'm a Heterosexual,tt0179116\nF6AdQghTUis,1999.0,5,12,2012,But I'm a Cheerleader,Reporting Roots,tt0179116\n9AyPzu3JmSE,2002.0,10,11,2012,Cabin Fever,Screwdrivered,tt0303816\nsmtDfh1TXe8,2002.0,8,11,2012,Cabin Fever,Poke it With a Stick,tt0303816\nqBGFAnbZS_M,1999.0,2,12,2012,But I'm a Cheerleader,The Intervention,tt0179116\nFK2rc4NbKco,2002.0,7,11,2012,Cabin Fever,Pancakes!,tt0303816\nqrCkASenz7I,2002.0,4,11,2012,Cabin Fever,The Bowling Alley Story,tt0303816\njCatADs_uW8,2002.0,5,11,2012,Cabin Fever,Help Me,tt0303816\nCjg8Hj75FPQ,2002.0,2,11,2012,Cabin Fever,What's the Rifle For?,tt0303816\n5d0GYRAD_aI,2002.0,9,11,2012,Cabin Fever,Very Bad Dog,tt0303816\nMJJ8AJUn-p4,2002.0,6,11,2012,Cabin Fever,She's Got It,tt0303816\nBxFaosg1mV4,2002.0,3,11,2012,Cabin Fever,I'm Sick,tt0303816\nmFj1lf3ECK8,2002.0,1,11,2012,Cabin Fever,Cute Kid,tt0303816\nB3oSlrpSf8k,2009.0,7,12,2012,Cabin Fever 2: Spring Fever,Government Takeover,tt0961722\nLnDG46BruE4,2009.0,5,12,2012,Cabin Fever 2: Spring Fever,Unsafe Sex,tt0961722\nPUo-B7AEAWY,2009.0,12,12,2012,Cabin Fever 2: Spring Fever,Escape from High School,tt0961722\nmoJvW1-7_Cw,2009.0,6,12,2012,Cabin Fever 2: Spring Fever,Bullsh** Water,tt0961722\nHnqkmLTgv78,2009.0,11,12,2012,Cabin Fever 2: Spring Fever,\"Giving a Hand, Losing an Eye\",tt0961722\nrlX19RmlimM,2009.0,8,12,2012,Cabin Fever 2: Spring Fever,What's Going On Out There?,tt0961722\nUC2zyr54O2w,2009.0,1,12,2012,Cabin Fever 2: Spring Fever,Paul Takes the Bus,tt0961722\nUgjmE8BWps8,2009.0,2,12,2012,Cabin Fever 2: Spring Fever,Just a Moose,tt0961722\nI-xbToSaaPU,2009.0,4,12,2012,Cabin Fever 2: Spring Fever,Spiking the Punch,tt0961722\naxqYHL-KPRk,2009.0,9,12,2012,Cabin Fever 2: Spring Fever,Blood on the Dance Floor,tt0961722\nEYKwSLZPwV4,2005.0,4,12,2012,Cake,Hot Photographer,tt0375912\nRxjCZxfPA3U,2009.0,10,12,2012,Cabin Fever 2: Spring Fever,No Help,tt0961722\negC34ixXtos,2005.0,1,12,2012,Cake,A Subtle Sheen of Desperation,tt0375912\nYYc1h1Pymto,2005.0,12,12,2012,Cake,\"I Like You, Too\",tt0375912\nDTJii7bLit0,2009.0,3,12,2012,Cabin Fever 2: Spring Fever,Choking,tt0961722\n_AA7Q5bWirM,2005.0,8,12,2012,Cake,\"Pippa McGee, the Romantic\",tt0375912\nMiyfHiRy_tI,2005.0,6,12,2012,Cake,Mysterious Mystery,tt0375912\noHpI2u95uUk,2005.0,10,12,2012,Cake,I Planned This Whole Thing,tt0375912\nmLcwaMW919Q,2005.0,5,12,2012,Cake,Bridal Focus Group,tt0375912\nJbRDwutWOng,2005.0,11,12,2012,Cake,Pippa and Ian Make Love,tt0375912\nG-_QYRggMwM,2005.0,2,12,2012,Cake,Bra Fishing,tt0375912\nFdvsQb7f7uM,2005.0,9,12,2012,Cake,Truth or Dare,tt0375912\n5tpVvZo9hus,2005.0,7,12,2012,Cake,I Don't Do Relationships,tt0375912\ndL2_nbhJaTs,2002.0,9,9,2012,Clockstoppers,Blowing It Up,tt0157472\nOPmVkpUsbz4,2005.0,3,12,2012,Cake,Pippa's First Meeting,tt0375912\n4pmBvrehyTk,2002.0,6,9,2012,Clockstoppers,Stealing Science Supplies,tt0157472\n2AHC98YRBKA,2002.0,8,9,2012,Clockstoppers,Hyper-Hypertime,tt0157472\no1JgvBy3_cA,2002.0,7,9,2012,Clockstoppers,Bike Chase,tt0157472\nc9vl9Rurcc8,2002.0,5,9,2012,Clockstoppers,Kicked in the Head,tt0157472\nT60vdoUUk_E,2002.0,4,9,2012,Clockstoppers,Car Chase in Hypertime,tt0157472\nFmG9SZNVpmk,2002.0,3,9,2012,Clockstoppers,DJ Battle,tt0157472\n1uIPM6h1gDg,2009.0,10,12,2012,Crank 2: High Voltage,\"Chevzilla, King of the Monsters!\",tt1121931\n1cFyFvO56Sw,2002.0,2,9,2012,Clockstoppers,Hypertime,tt0157472\nGwkD7itIsCM,2002.0,1,9,2012,Clockstoppers,Possum Trouble,tt0157472\ntqjyFalTkw0,2009.0,12,12,2012,Crank 2: High Voltage,Burning Desire,tt1121931\nWwoxu41UkNw,2009.0,11,12,2012,Crank 2: High Voltage,Young Chev Chelios,tt1121931\ngU8Ksz47C54,2009.0,9,12,2012,Crank 2: High Voltage,Paranoid Fears,tt1121931\nbVZ_-0df7XE,2009.0,8,12,2012,Crank 2: High Voltage,This is How It Is,tt1121931\nVyS-apNPxUI,2009.0,6,12,2012,Crank 2: High Voltage,Creating Friction,tt1121931\nys3a4yA-5Eg,2009.0,7,12,2012,Crank 2: High Voltage,Catching a Ride,tt1121931\n5GL9pbYS_D8,2009.0,5,12,2012,Crank 2: High Voltage,The Electric Dog Collar,tt1121931\nkBJD6iSkqxw,2009.0,1,12,2012,Crank 2: High Voltage,Who's Got My Strawberry Tart?,tt1121931\nVGQWULimSCg,2009.0,4,12,2012,Crank 2: High Voltage,Police Brutality,tt1121931\n0GH64kmHZvs,2009.0,3,12,2012,Crank 2: High Voltage,My Kevin Costner,tt1121931\nyPbgAbAimoA,2009.0,2,12,2012,Crank 2: High Voltage,The Jump Start,tt1121931\nhuE8fA3Ln18,2009.0,3,9,2012,Dance Flick,Acting Class,tt1153706\nQQ6SadUAXWQ,2009.0,9,9,2012,Dance Flick,Prom Night,tt1153706\nI54GtHWXwpc,2009.0,8,9,2012,Dance Flick,Final Dance Battle,tt1153706\npv7Y9z9ZvR8,2009.0,6,9,2012,Dance Flick,Let's Warm Up,tt1153706\nk3rxddIltIA,2009.0,1,9,2012,Dance Flick,Face Off,tt1153706\nVtVq2S8qp1k,2009.0,7,9,2012,Dance Flick,We Need A Break,tt1153706\nCmCNWoo1TD4,2009.0,4,9,2012,Dance Flick,Gonna Have To Step It Up,tt1153706\nM9MvIL2FDaM,2009.0,5,9,2012,Dance Flick,We're Ready To Battle,tt1153706\nKs2IFhAqBSE,2010.0,8,11,2012,Daybreakers,Back to Life,tt0433362\nBMVmbqSR668,2010.0,11,11,2012,Daybreakers,Frankie's Sacrifice,tt0433362\nJxZHAMfuwsA,2010.0,9,11,2012,Daybreakers,Burning the Subsiders,tt0433362\n2RXSVTFM3hQ,2010.0,10,11,2012,Daybreakers,Truth is Like the Sun,tt0433362\n04RW0CPquaE,2009.0,2,9,2012,Dance Flick,D's Final Move,tt1153706\nNCm1lI1L4LQ,2010.0,5,11,2012,Daybreakers,Because of the Sun,tt0433362\nANZUU_ev5HU,2010.0,6,11,2012,Daybreakers,More Blood in My Coffee,tt0433362\nlfXtePMdNMk,2010.0,7,11,2012,Daybreakers,Roadside Attack,tt0433362\nSELIbxPbbh0,2010.0,2,11,2012,Daybreakers,I Can Help You,tt0433362\nZDYLUH3BImk,2010.0,4,11,2012,Daybreakers,Dodging Daylight,tt0433362\naVCOzbRPapo,2010.0,1,11,2012,Daybreakers,Test Subject,tt0433362\nGCOXBnHRdmc,2010.0,3,11,2012,Daybreakers,Home Invasion,tt0433362\nvz2RAznAy9Q,2008.0,4,10,2012,Drillbit Taylor,I'm,tt0817538\nt1x6i73klIs,1996.0,9,10,2012,Harriet the Spy,The Child Psychologist,tt0116493\nJxk0QX01quo,2003.0,10,10,2012,Dogville,\"Goodbye, Tom\",tt0276919\nnYoAZo7L2w4,2003.0,7,10,2012,Dogville,Chained,tt0276919\nZryPGAMBuF4,2003.0,8,10,2012,Dogville,\"A Low, Tough Gear\",tt0276919\nNUAs-J9HatA,2003.0,6,10,2012,Dogville,The Doctrine of Stoicism,tt0276919\nCApovMdNxw8,2003.0,4,10,2012,Dogville,Grace at Work,tt0276919\nUd5-cq0a1sU,2003.0,9,10,2012,Dogville,Judgment is Passed,tt0276919\nwlhtHcN0wo8,2003.0,5,10,2012,Dogville,I Deserve a Spanking,tt0276919\n72R97Mzaey4,1999.0,9,9,2012,Double Jeopardy,\"Reunited,\",tt0150377\nJhGjwr3rLtc,2003.0,3,10,2012,Dogville,Willing to Learn,tt0276919\nMDdgxMEIYFI,2008.0,9,10,2012,Drillbit Taylor,This Fight Is Over,tt0817538\naJl8UJ7-JiI,2003.0,2,10,2012,Dogville,A Beautiful Little Town,tt0276919\n5WaI5NdGVw4,1994.0,8,9,2012,Drop Zone,He's Bluffing,tt0109676\nuDr8qT3BlHM,1999.0,4,9,2012,Double Jeopardy,Library Pick-Up,tt0150377\n23x_B3MpUH4,2003.0,1,10,2012,Dogville,The Beautiful Fugitive,tt0276919\nrAULcuSAZeo,1999.0,8,9,2012,Double Jeopardy,Shot In The Nick of Time,tt0150377\nv5-gQQunvJw,1999.0,6,9,2012,Double Jeopardy,Just Give Me Matty,tt0150377\n_i9YzGZS0I8,2008.0,2,10,2012,Drillbit Taylor,Bumming to Canada,tt0817538\nH-5mWBsCOaw,2008.0,10,10,2012,Drillbit Taylor,Captain Crunch in Prison,tt0817538\nN72sZx-UMlg,2008.0,3,10,2012,Drillbit Taylor,Bullies on the Loose,tt0817538\nHGdt0QR55Ko,1999.0,3,9,2012,Double Jeopardy,,tt0150377\nXFoP9Dy1jNc,2008.0,7,10,2012,Drillbit Taylor,Phase Two: Direct Contact,tt0817538\nm2REqMDEXNU,1999.0,7,9,2012,Double Jeopardy,The Prosecution Rests,tt0150377\nsJusqH8NxP4,1999.0,5,9,2012,Double Jeopardy,Wet Escape,tt0150377\nRslDexUKDB4,2008.0,8,10,2012,Drillbit Taylor,Mind Over Pain,tt0817538\nq7DHkw_5Wzw,1989.0,8,8,2012,Drugstore Cowboy,Dianne Comes Back,tt0097240\nCW_yC7l6PO4,1994.0,9,9,2012,Drop Zone,\"Way to Go, Swoop!\",tt0109676\ndFIsw8XfF30,1999.0,2,9,2012,Double Jeopardy,Daddy,tt0150377\nBpnXXI34rSs,2008.0,5,10,2012,Drillbit Taylor,They Don't Need All This Crap,tt0817538\ng0CFQF54ePo,2008.0,6,10,2012,Drillbit Taylor,Hit That Beat,tt0817538\ns1Y023ZS4Ms,2008.0,1,10,2012,Drillbit Taylor,Matching Shirt Geeks,tt0817538\nrFXajFXNWQw,2004.0,7,8,2012,Envy,A Little Man Who Didn't Like Flan,tt0326856\nsQolThygoGk,1994.0,4,9,2012,Drop Zone,Give Me A Hand,tt0109676\n3qMNxVVQhzM,1994.0,7,9,2012,Drop Zone,Cut Away!,tt0109676\npuXEHhZgXaY,1989.0,1,8,2012,Drugstore Cowboy,At the Pharmacy,tt0097240\nbSW_sW_A8pg,1989.0,4,8,2012,Drugstore Cowboy,No Dogs,tt0097240\nTksvZdrx9_A,1989.0,2,8,2012,Drugstore Cowboy,9 X 10 is 75,tt0097240\nOUo2Klpa8AU,1994.0,5,9,2012,Drop Zone,There's Only One Kind of Jump,tt0109676\nCx7ip9cWKJg,1999.0,1,9,2012,Double Jeopardy,I Don't Know Where My Husband Is,tt0150377\nRSvx75Md5l0,1989.0,6,8,2012,Drugstore Cowboy,Hat on the Bed Hex,tt0097240\n-WN4uZXOltk,1989.0,5,8,2012,Drugstore Cowboy,Hospital Robbery,tt0097240\nzJZiy6BuuLY,1989.0,3,8,2012,Drugstore Cowboy,Break-In,tt0097240\nMqQ9-AP36z4,1994.0,6,9,2012,Drop Zone,\"How Ya Doing Now, Sport?\",tt0109676\nFGcla1_O220,1994.0,2,9,2012,Drop Zone,\"You Fell, You Lived, I'm Gone\",tt0109676\nei2dYpiS-Us,1994.0,3,9,2012,Drop Zone,It's All Over!,tt0109676\n3gCyObtqSEo,1994.0,1,9,2012,Drop Zone,Mayday!,tt0109676\nYGFrKow2KfA,1989.0,7,8,2012,Drugstore Cowboy,Tom the Priest,tt0097240\nGiom5_byviI,2001.0,9,9,2012,Enemy at the Gates,Endgame,tt0215750\nwMvTR012Dmg,2001.0,3,9,2012,Enemy at the Gates,Do You Know How to Shoot?,tt0215750\n93tR96egox4,2001.0,8,9,2012,Enemy at the Gates,Danilov's Sacrifice,tt0215750\nBF-sTHMVoOc,2001.0,6,9,2012,Enemy at the Gates,Koulikov Jumps First,tt0215750\n381Di8Cw0-I,2001.0,4,9,2012,Enemy at the Gates,Nikita Khrushchev,tt0215750\nrRUuycF5FTU,2001.0,7,9,2012,Enemy at the Gates,Trapped,tt0215750\n8yOBCGwMpeo,2001.0,1,9,2012,Enemy at the Gates,Crossing the Volga,tt0215750\n0pxJFZ8HRV8,2004.0,8,8,2012,Envy,Pocket Flan,tt0326856\nv91LBP6w4aI,2004.0,3,8,2012,Envy,Ernie Nice Kid,tt0326856\nWTi7v77XZYs,2001.0,5,9,2012,Enemy at the Gates,Soup Time,tt0215750\neW4DpZkOe1g,2004.0,4,8,2012,Envy,Tim Kills Corky,tt0326856\nbW3ur5td00I,2004.0,1,8,2012,Envy,We Are Going to Be So Rich,tt0326856\noJ3bzg-Tvt4,2001.0,2,9,2012,Enemy at the Gates,Battle of Stalingrad,tt0215750\nYOxfSSv14CM,2004.0,6,8,2012,Envy,Travel Size Va-Poo-rize,tt0326856\nqjbkmhtAsJo,2004.0,2,8,2012,Envy,I Believe in All Environments,tt0326856\nkZGlMOfzhC4,2004.0,5,8,2012,Envy,Hide,tt0326856\nyIF3Vr_at5I,2004.0,8,8,2012,Fade to Black,Second to None,tt0428518\n4Sl4t9JNnuk,1997.0,6,10,2012,FairyTale: A True Story,The Burden of Proof,tt0119095\nNsNN1eHv7MU,2004.0,6,8,2012,Fade to Black,They Scared to Be They Self,tt0428518\nJpE65kS0aIo,1997.0,7,10,2012,FairyTale: A True Story,Finishing the Fairy House,tt0119095\n9CKyWqb5-sw,2004.0,3,8,2012,Fade to Black,Dirt Off Your Shoulder,tt0428518\n-fMCqLBMPPo,2004.0,7,8,2012,Fade to Black,Kanye Did His Job,tt0428518\nA-BrlQ3h1i4,2004.0,4,8,2012,Fade to Black,99 Problems,tt0428518\n2lavod63XMI,2004.0,5,8,2012,Fade to Black,Crazy in Love,tt0428518\nLR6C2oVQr_I,1997.0,9,10,2012,FairyTale: A True Story,A Visit from the Fairies,tt0119095\nPhBZ50d6Btw,1997.0,8,10,2012,FairyTale: A True Story,Do You Ever Tell Anyone?,tt0119095\nMRmFis1ZxUE,2004.0,1,8,2012,Fade to Black,Champion of the World of Hip Hop,tt0428518\nlAIJ6Twk8aQ,1997.0,5,10,2012,FairyTale: A True Story,Sir Arthur Meets the Girls,tt0119095\nDHDOgbfwSlY,1997.0,4,10,2012,FairyTale: A True Story,Do You Believe in Fairies?,tt0119095\nWjY6_V2EM04,1997.0,10,10,2012,FairyTale: A True Story,It's My Daddy,tt0119095\n_r4a-vgIqgM,1997.0,1,10,2012,FairyTale: A True Story,The New Girl in Class,tt0119095\nBSy7Wzj4OCY,2004.0,2,8,2012,Fade to Black,Everybody Has to Be Focused,tt0428518\n6wa4qfLmyoE,2003.0,10,11,2012,Fear X,Meeting in Room 503,tt0289944\nSvVYUW8r_Dk,2003.0,8,11,2012,Fear X,Are You Alone?,tt0289944\nB_CRLQ8VXAg,2003.0,11,11,2012,Fear X,Into the Psyche,tt0289944\nrVEFouzc6LI,2003.0,9,11,2012,Fear X,I Killed an Innocent Woman,tt0289944\nXFmCXGXAZ5A,1997.0,2,10,2012,FairyTale: A True Story,I Can See Them!,tt0119095\nw8td2mMGYjo,1997.0,3,10,2012,FairyTale: A True Story,Chalk Trick,tt0119095\nBdgWnY2SCq4,2003.0,6,11,2012,Fear X,The Woman in the Photograph,tt0289944\nNoiLYCUpS5A,2003.0,3,11,2012,Fear X,Deadly Footage,tt0289944\na_7a2sP4WMw,2003.0,1,11,2012,Fear X,Shoplifter,tt0289944\ngAN-yHGtbY8,2003.0,7,11,2012,Fear X,Who's Harry Caine?,tt0289944\njKu10hihpkg,1993.0,6,8,2012,Fire in the Sky,Travis Escapes,tt0106912\nmO2W96NCiRc,1993.0,8,8,2012,Fire in the Sky,Alien Experiments,tt0106912\nPKr0pj8Dw6A,2003.0,2,11,2012,Fear X,That Man Murdered Your Wife,tt0289944\nOaFB9lMthfU,2003.0,4,11,2012,Fear X,Sneaking Around,tt0289944\nnDbBWcwu1jM,1993.0,2,8,2012,Fire in the Sky,Beamed,tt0106912\n8tp5RSId2g4,2003.0,5,11,2012,Fear X,I'm Not a Murderer,tt0289944\nBSBKmD2TRow,1993.0,7,8,2012,Fire in the Sky,The Space Suit Room,tt0106912\nViUbA_O3N5M,1993.0,4,8,2012,Fire in the Sky,The Lie Detector Test,tt0106912\nmM2Tc_tYYKk,1993.0,5,8,2012,Fire in the Sky,Travis Returns,tt0106912\non6B12rsn9Q,1993.0,3,8,2012,Fire in the Sky,We Gotta Go Back,tt0106912\nZczgtOsK7WU,1993.0,1,8,2012,Fire in the Sky,,tt0106912\n9dcybKF8Pjo,1957.0,8,9,2012,Funny Face,The Quality Woman,tt0050419\ncFzsm8tKWU0,1957.0,1,9,2012,Funny Face,How Long Has This Been Going On?,tt0050419\n9dCHSNdHZQs,1991.0,1,8,2012,Frankie and Johnny,Johnny's Got a Job,tt0101912\nuD2mdsAwJBA,1957.0,9,9,2012,Funny Face,Clap Yo' Hands,tt0050419\ns5jDTz07buw,1991.0,4,8,2012,Frankie and Johnny,I Have a Cousin Who's Gay,tt0101912\nKwnTYy2p0AE,1991.0,5,8,2012,Frankie and Johnny,Does It Have To Be Tonight?,tt0101912\nLOxqK6o4NN0,1991.0,3,8,2012,Frankie and Johnny,She Was Just Asking Me Out,tt0101912\nHnnBvemHrWA,1991.0,2,8,2012,Frankie and Johnny,He Just Asked Her Out,tt0101912\nch6zVPr6lWM,1991.0,6,8,2012,Frankie and Johnny,Talk About a Load Off,tt0101912\n6ygujqr_JWc,1991.0,8,8,2012,Frankie and Johnny,When the Bad Comes Again,tt0101912\nHOr8EwpHNwY,1991.0,7,8,2012,Frankie and Johnny,Open Your Robe,tt0101912\nHp7zxA4BsKg,1957.0,3,9,2012,Funny Face,,tt0050419\nRH4cgOQjITc,1957.0,7,9,2012,Funny Face,He Loves and She Loves,tt0050419\naPElaYUCTmA,1957.0,6,9,2012,Funny Face,The Big Reveal,tt0050419\nljK_2ZT44jA,1957.0,5,9,2012,Funny Face,Let's Kiss and Make Up,tt0050419\nq4G5hUvL-wI,1957.0,4,9,2012,Funny Face,Bohemian Dance,tt0050419\nnKCIuHUFJnY,2009.0,11,11,2012,Gamer,Mental Strength,tt1034032\ncvakyq_EaWY,1957.0,2,9,2012,Funny Face,Her Face Is Perfectly Funny,tt0050419\nsogf5QgMqJs,2009.0,9,11,2012,Gamer,Controlled Execution,tt1034032\nJNLW2R5dYOM,2009.0,5,11,2012,Gamer,You're My Psycho,tt1034032\nQnaTtsClgc4,2009.0,10,11,2012,Gamer,I Will Control Everything,tt1034032\n54kfWG3V-IE,2009.0,7,11,2012,Gamer,We're All Slaves,tt1034032\nlU2FHV2lr04,2009.0,8,11,2012,Gamer,I'm Getting You Out,tt1034032\nEqoU4-wHxDU,2009.0,4,11,2012,Gamer,Upgrades,tt1034032\nSHdKVf4jA0c,2009.0,2,11,2012,Gamer,Slayers,tt1034032\nLEdvMVoFgro,2008.0,1,12,2012,Garden Party,I Know a Job You Can Get,tt0828393\nx9U9Xi1yQMo,2009.0,6,11,2012,Gamer,Grand Theft Auto,tt1034032\nc7StgLYxbPU,2009.0,1,11,2012,Gamer,Save Point,tt1034032\ngpO1qCdOHGc,2008.0,12,12,2012,Garden Party,You Can't Quit,tt0828393\nGp22ZHf0_a0,2009.0,3,11,2012,Gamer,Trying to Stay Alive,tt1034032\nzCz-i5sPrBo,2008.0,9,12,2012,Garden Party,Sally Wants Her Pictures,tt0828393\nEHeR5XCO3uA,2008.0,10,12,2012,Garden Party,We Should Go Dancing,tt0828393\nb_BJbecP-Xc,2008.0,7,12,2012,Garden Party,A Walk on the Wild Side,tt0828393\n8SqhsheKNqg,2008.0,11,12,2012,Garden Party,Bound and Gagged,tt0828393\nrqWU2zS3rJg,2008.0,5,12,2012,Garden Party,I Can't Wait to Take Your Picture,tt0828393\njlwA_X5iyBA,2008.0,8,12,2012,Garden Party,Straight to the Top,tt0828393\nqPpMWDyyHy4,2005.0,5,9,2012,Get Rich or Die Tryin',Marcus Meets Bama,tt0430308\nOel3rZOooFc,2008.0,4,12,2012,Garden Party,We'll Take Care of You,tt0828393\nAQAQUyNnXms,2008.0,6,12,2012,Garden Party,Davey's Date,tt0828393\nMKVy1bpJCi0,2008.0,2,12,2012,Garden Party,The Best in the Neighborhood,tt0828393\n6JHAWVBOq3M,2008.0,3,12,2012,Garden Party,Do You Work Out?,tt0828393\nZ9GVG_9yN7M,1999.0,11,12,2012,Ghost Dog: The Way of the Samurai,Cold Lampin' with Flavor,tt0165798\nfZAksSuI1R4,2005.0,7,9,2012,Get Rich or Die Tryin',\"I Could Be Wrong, But I'm Right\",tt0430308\nujH4hnVthhM,2005.0,4,9,2012,Get Rich or Die Tryin',Are You My Best Friend?,tt0430308\npgk_j6ehCEA,2005.0,9,9,2012,Get Rich or Die Tryin',Love Will Get You Killed,tt0430308\nF4vBy7g5vpo,2005.0,2,9,2012,Get Rich or Die Tryin',I'll Never Let Her Go,tt0430308\n2sROc10VoBA,2005.0,6,9,2012,Get Rich or Die Tryin',I'm Pregnant,tt0430308\nMxtB_Ri0q_w,2005.0,8,9,2012,Get Rich or Die Tryin',I'd Rather Die Like a Man Than Live Like a,tt0430308\nq-5e6U4CdbU,1999.0,12,12,2012,Ghost Dog: The Way of the Samurai,Final Shootout,tt0165798\n-TAp26oPrvE,1999.0,5,12,2012,Ghost Dog: The Way of the Samurai,Ice Cream Freestyle,tt0165798\nQz1-NSdsqNE,1999.0,2,12,2012,Ghost Dog: The Way of the Samurai,Self Defense,tt0165798\nCgfw3cjfO6A,2005.0,3,9,2012,Get Rich or Die Tryin',Rules to Selling Crack,tt0430308\ne4IJ2LyK9cs,1999.0,8,12,2012,Ghost Dog: The Way of the Samurai,I'm Your Retainer,tt0165798\n-pVDJkIp5sc,2005.0,1,9,2012,Get Rich or Die Tryin',Where's the Money?,tt0430308\nomYsWxT4Mbs,1999.0,7,12,2012,Ghost Dog: The Way of the Samurai,I Follow a Code,tt0165798\nnAq5GhiMdSA,1999.0,10,12,2012,Ghost Dog: The Way of the Samurai,Bear Hunters,tt0165798\nfIZiQDCK_Ng,1999.0,6,12,2012,Ghost Dog: The Way of the Samurai,Should I Shoot Him?,tt0165798\nPgeCL2KdU_I,1999.0,3,12,2012,Ghost Dog: The Way of the Samurai,He Calls Himself Ghost Dog,tt0165798\nJoPPsr14gRk,1999.0,9,12,2012,Ghost Dog: The Way of the Samurai,The Bird Man,tt0165798\nrb7z1bFt79k,2004.0,8,9,2012,The Eye 2,Under the Table,tt0405061\nSzzO21mg8yA,1999.0,4,12,2012,Ghost Dog: The Way of the Samurai,The Way of the Samurai,tt0165798\nvjplEkEo_H8,2004.0,5,9,2012,The Eye 2,Labor Pains,tt0405061\npuwOGUjUKz8,1999.0,1,12,2012,Ghost Dog: The Way of the Samurai,You Want My Rolex?,tt0165798\n9hEYOiPK79g,2004.0,9,9,2012,The Eye 2,I Won't Let You Stop Me,tt0405061\nc2TTFWzBuE8,2004.0,7,9,2012,The Eye 2,What Time is It?,tt0405061\nxy2zgeQ7ECg,2004.0,4,9,2012,The Eye 2,Don't Hurt My Baby!,tt0405061\nNd8HPu7y8qk,2004.0,6,9,2012,The Eye 2,Accept This Reality,tt0405061\nxoqU0B7BGQI,2003.0,11,12,2012,Girl with a Pearl Earring,Girl With a Pearl Earring,tt0335119\n9leTC1Rk2bc,2004.0,2,9,2012,The Eye 2,Ghost in the Water,tt0405061\n215DJ7KbNsY,2004.0,3,9,2012,The Eye 2,The Train Station,tt0405061\n4zT8gk15yrY,2004.0,1,9,2012,The Eye 2,What Are You People Doing Here?,tt0405061\n55wIwwmrHxk,1992.0,10,10,2012,Glengarry Glen Ross,I Don't Like You,tt0104348\nZ8E9FEaEm8A,2003.0,7,12,2012,Girl with a Pearl Earring,Master and Maid,tt0335119\nimtYtoHzPJc,2003.0,2,12,2012,Girl with a Pearl Earring,A New Masterpiece,tt0335119\n8aYUJSDZHKw,2003.0,8,12,2012,Girl with a Pearl Earring,I Need to See Your Face,tt0335119\n9M7i6Uaf_f4,2003.0,12,12,2012,Girl with a Pearl Earring,Catharina Sees the Painting,tt0335119\nHzCGd_bsWns,2003.0,3,12,2012,Girl with a Pearl Earring,A Camera Obscura,tt0335119\nrkuhTjnuQZ0,2003.0,10,12,2012,Girl with a Pearl Earring,Painting You at My Pleasure,tt0335119\nYE0WStB-1cc,2003.0,5,12,2012,Girl with a Pearl Earring,Tools of the Trade,tt0335119\nrtVhMrgtcq0,2003.0,4,12,2012,Girl with a Pearl Earring,The Colors of the Clouds,tt0335119\nROYuupoGarQ,1992.0,5,10,2012,Glengarry Glen Ross,So You're Here to Sell Me Land?,tt0104348\nOLhu6bw5EYc,2003.0,9,12,2012,Girl with a Pearl Earring,Artistic Affection,tt0335119\nRCptP8ItWmw,2003.0,6,12,2012,Girl with a Pearl Earring,Faithful to One Mistress,tt0335119\nr6Lf8GtMe4M,1992.0,1,10,2012,Glengarry Glen Ross,Put That Coffee Down!,tt0104348\nrW7WlT6OJxE,1992.0,9,10,2012,Glengarry Glen Ross,Where Did You Learn Your Trade?,tt0104348\nkdj7BqZQfaQ,1992.0,6,10,2012,Glengarry Glen Ross,Looking Forward or Looking Back,tt0104348\nP5Mn2YHVg0s,1992.0,8,10,2012,Glengarry Glen Ross,Deadbeat Leads,tt0104348\nMievQTukqMM,1969.0,8,10,2012,\"Goodbye, Columbus\",All It Takes is Once,tt0064381\nAO_t7GtXO6w,1992.0,2,10,2012,Glengarry Glen Ross,Always Be Closing,tt0104348\nZYq7Q_UW0Vo,2003.0,1,12,2012,Girl with a Pearl Earring,In Front of His Paintings,tt0335119\nB2I2s9rEOCA,1969.0,10,10,2012,\"Goodbye, Columbus\",Brenda's Diaphragm,tt0064381\nsgzxcBufwS8,1992.0,7,10,2012,Glengarry Glen Ross,Thieves,tt0104348\nbzRUc3Zrvfw,1987.0,9,10,2012,Hamburger Hill,That's Why I'm Here,tt0093137\nu9R34QNUy1g,1992.0,3,10,2012,Glengarry Glen Ross,I Need Those Leads,tt0104348\nHapeoGg80EA,1969.0,2,10,2012,\"Goodbye, Columbus\",\"I Was Pretty, Now I'm Prettier\",tt0064381\niMJnr5bhQUI,1987.0,10,10,2012,Hamburger Hill,Final Push,tt0093137\n1LYn1my4jbc,1992.0,4,10,2012,Glengarry Glen Ross,Times Are Tight,tt0104348\nR06Ujp-UBx0,1969.0,3,10,2012,\"Goodbye, Columbus\",Meet the Parents,tt0064381\nRtabrwMvAuY,1969.0,1,10,2012,\"Goodbye, Columbus\",I'll Be Sweaty,tt0064381\nenY9iKZ8mDQ,1987.0,7,10,2012,Hamburger Hill,Break-Up Letter,tt0093137\nKE6dEjZ8qmg,1969.0,6,10,2012,\"Goodbye, Columbus\",Do You Love Me?,tt0064381\nbuGiJK-dXss,1987.0,5,10,2012,Hamburger Hill,Friendly Fire,tt0093137\nHIf2wdbacpU,1969.0,7,10,2012,\"Goodbye, Columbus\",Brenda's Awkward Brother,tt0064381\noEODtP56lBc,1987.0,6,10,2012,Hamburger Hill,My Darling,tt0093137\ncQhgVl3V1Rw,2009.0,1,9,2012,Happily N'Ever After 2,Once Upon a Time,tt1235837\nc_69KA0PKYI,1969.0,9,10,2012,\"Goodbye, Columbus\",You're Next!,tt0064381\nfyIATgssVJw,1987.0,3,10,2012,Hamburger Hill,This Is Han,tt0093137\niB8YcYRzDdE,1969.0,4,10,2012,\"Goodbye, Columbus\",Body or Mind?,tt0064381\nIEfj3lH-scU,2009.0,4,9,2012,Happily N'Ever After 2,Fairy Godmother's Dating Service,tt1235837\nBLHc07GYSVE,1969.0,5,10,2012,\"Goodbye, Columbus\",The Closet Call,tt0064381\n-jiHKFt981Y,1987.0,1,10,2012,Hamburger Hill,\"We Don't Start Fights, We Finish Them\",tt0093137\nRMRT3_djqqw,1987.0,8,10,2012,Hamburger Hill,You Haven't Earned the Right,tt0093137\njyzhfamiaQc,1987.0,2,10,2012,Hamburger Hill,Proper Dental Hygiene,tt0093137\nsOpJs8Licp8,2009.0,9,9,2012,Happily N'Ever After 2,Kill the Fairest of Them All,tt1235837\n50ZwjmYsIcY,2009.0,7,9,2012,Happily N'Ever After 2,Mockingbird,tt1235837\nxPulA49aBZU,2009.0,5,9,2012,Happily N'Ever After 2,Poison Apple,tt1235837\n_z5tcqcVgvA,2009.0,8,9,2012,Happily N'Ever After 2,Crashing the Wedding,tt1235837\n885EiuL9GKg,1987.0,4,10,2012,Hamburger Hill,\"It Don't Mean Nothing, Not a Thing\",tt0093137\np-zGZTYN9nQ,2009.0,3,9,2012,Happily N'Ever After 2,Don't Wake the Castle,tt1235837\njG2FwGoAPNY,2009.0,2,9,2012,Happily N'Ever After 2,Like at First Sight,tt1235837\ndNK-wsUHMvw,2009.0,6,9,2012,Happily N'Ever After 2,A Wolf in Sheep's Clothing,tt1235837\nm9vRMtJDEVU,2005.0,10,12,2012,Happy Endings,,tt0361693\nWlHZBcuKDb8,2005.0,2,12,2012,Happy Endings,Honesty,tt0361693\naM4Gyz0kd3Q,2005.0,12,12,2012,Happy Endings,Gold Digger,tt0361693\nXGmHx9PAaeE,2005.0,7,12,2012,Happy Endings,We're Breaking Up,tt0361693\n76S0ukfD8YU,2005.0,9,12,2012,Happy Endings,The Truth,tt0361693\nT_igwYlgnZ8,2005.0,11,12,2012,Happy Endings,The Biggest Decision,tt0361693\nuFzV6DktOzg,2005.0,6,12,2012,Happy Endings,Making a Movie,tt0361693\nHKrJ0cZ4nDE,2005.0,8,12,2012,Happy Endings,First Session,tt0361693\nvEnbBgByg98,2005.0,5,12,2012,Happy Endings,Max Is Your Kid,tt0361693\nOILU3oEYu8I,2005.0,4,12,2012,Happy Endings,If It's Necessary to the Story,tt0361693\nwFSW1l-Am_I,2005.0,1,12,2012,Happy Endings,It Was a Gift Certificate,tt0361693\nn137CIxjKTA,2005.0,3,12,2012,Happy Endings,Why Do You Think He's a Drummer?,tt0361693\nyWZtEE8C1x4,2010.0,5,9,2012,She's Out of My League,Slap Shot Regatta,tt0815236\nqNCFZLQOj_M,2010.0,2,9,2012,She's Out of My League,Marni Moves On,tt0815236\nb0SfZ4LMV98,2010.0,3,9,2012,She's Out of My League,Not Wearing Underwear,tt0815236\n2nFh-kxiEng,2010.0,1,9,2012,She's Out of My League,Time Off,tt0815236\nYwrX990kW9k,2010.0,9,9,2012,She's Out of My League,\"I Do, I Will\",tt0815236\nLiNFLOs3BfE,2010.0,8,9,2012,She's Out of My League,A Long Flight,tt0815236\nDPksJcC1e_c,2010.0,4,9,2012,She's Out of My League,Meeting the Family,tt0815236\n9FIHPZrHVGs,2010.0,7,9,2012,She's Out of My League,Self-Esteem,tt0815236\n2Ji7Coh4O7E,2001.0,4,9,2012,Hardball,Seeing Sammy,tt0180734\nHL_VmoAOZtY,2001.0,9,9,2012,Hardball,You Showed Up,tt0180734\nWxo_5gNakBA,2010.0,6,9,2012,She's Out of My League,Honesty,tt0815236\ne0qpJCNLViQ,2001.0,1,9,2012,Hardball,G-Baby Breaks It Down,tt0180734\n5CrufNJ4A_Q,2001.0,8,9,2012,Hardball,G-Baby's Hit,tt0180734\ndwMoiBGmH_4,2001.0,6,9,2012,Hardball,Big Poppa,tt0180734\nuOmPHEVoSa4,2001.0,2,9,2012,Hardball,Those Kids Trust You,tt0180734\nMM01XhEgcF0,2001.0,5,9,2012,Hardball,New Uniforms,tt0180734\nNOphOh3EqKI,2001.0,3,9,2012,Hardball,Covering the Spread,tt0180734\nxrgGccehkKY,2001.0,7,9,2012,Hardball,Losing G-Baby,tt0180734\no_49_kbx9yA,1996.0,3,10,2012,Harriet the Spy,Tiny Hole Inside Me,tt0116493\nLf6fX3bsCxA,1996.0,4,10,2012,Harriet the Spy,Paying for Groceries,tt0116493\nE49Wkrqw_DQ,1996.0,6,10,2012,Harriet the Spy,A Good Spy Never Gets Caught,tt0116493\nHre4nTAQcIA,1996.0,8,10,2012,Harriet the Spy,Blue Paint,tt0116493\n3rtbO9uOirI,1996.0,10,10,2012,Harriet the Spy,Big Slice of Heaven,tt0116493\nxSTf5WyBUQ0,1996.0,7,10,2012,Harriet the Spy,The Private Notebook Revealed,tt0116493\nXGgVzfEptX0,1996.0,2,10,2012,Harriet the Spy,Golly Says Goodbye,tt0116493\no2VM3B_izXw,1996.0,5,10,2012,Harriet the Spy,Experiment With Mold,tt0116493\nccX1d19hmc8,1996.0,1,10,2012,Harriet the Spy,Windchime Garden,tt0116493\n-dzyuUNTwUo,1991.0,2,10,2012,\"He Said, She Said\",Typical Guy,tt0102011\nLCxS9lUlCmE,1991.0,6,10,2012,\"He Said, She Said\",Family Dinner,tt0102011\nqKj2c67Ht98,1991.0,9,10,2012,\"He Said, She Said\",Meeting the Ex,tt0102011\nesXVSyflpDU,1991.0,10,10,2012,\"He Said, She Said\",Two Can Play That Game,tt0102011\nJrPj-b18Lt4,1991.0,4,10,2012,\"He Said, She Said\",Only You,tt0102011\nlYGDkN8xPt8,1991.0,7,10,2012,\"He Said, She Said\",I Have This Dance,tt0102011\nfOv_N9k5im4,1991.0,8,10,2012,\"He Said, She Said\",With You Tonight,tt0102011\nlAhQbCN-Zvg,1991.0,5,10,2012,\"He Said, She Said\",I Need More from You,tt0102011\nukmrk8JdGxk,1991.0,3,10,2012,\"He Said, She Said\",Hold the Monogamy,tt0102011\nMC2MLmGhc1M,1991.0,1,10,2012,\"He Said, She Said\",\"Why Fix It, If It Ain't Broken?\",tt0102011\n0sdIO3lVTWE,2003.0,10,10,2012,House of 1000 Corpses,The Legend of Doctor Satan,tt0251736\nHiuPgdW3E9g,2003.0,4,10,2012,House of 1000 Corpses,Showtime!,tt0251736\nCLZUz1TwsDs,2007.0,9,9,2012,How She Move,JSJ Crew,tt0770810\nks32K99a1RU,2005.0,1,11,2012,Hostel,No Dutch in Amsterdam,tt0450278\nBkGbYdSwFCU,2003.0,9,10,2012,House of 1000 Corpses,Run Rabbit,tt0251736\n4cbfnH5APuE,2003.0,5,10,2012,House of 1000 Corpses,Getaway,tt0251736\nYg95nS9poCw,2003.0,2,10,2012,House of 1000 Corpses,Murder Ride,tt0251736\nBWm1l21hBb8,2003.0,7,10,2012,House of 1000 Corpses,Agatha Crispies,tt0251736\nyd13zj2PC1g,2003.0,3,10,2012,House of 1000 Corpses,Tiny,tt0251736\nV82hFRJcrj0,2003.0,1,10,2012,House of 1000 Corpses,I Hate Clowns,tt0251736\n2WZCKiDOQ9Q,2003.0,6,10,2012,House of 1000 Corpses,Bill AKA Fishboy,tt0251736\ni3EF63p3v-I,2003.0,8,10,2012,House of 1000 Corpses,Baby Firefly's Guessing Game,tt0251736\nQV6em4mxnE8,2007.0,7,9,2012,How She Move,Kin Dreadz,tt0770810\nGAEBkpl1cIQ,2007.0,5,9,2012,How She Move,Do Some Damage,tt0770810\n9Jwm_LHAwVo,2007.0,2,9,2012,How She Move,Think Your Step is Better Than Mine?,tt0770810\nXIQbAhdlZt8,2007.0,6,9,2012,How She Move,Detroit Step Show,tt0770810\n-J_tiDK1tEA,2007.0,8,9,2012,How She Move,I Want to Perform with My Team,tt0770810\n9lTKjTuPGEc,2007.0,4,9,2012,How She Move,\"It's a Chance, Not a Guarantee\",tt0770810\naW_qXKNDWtU,2007.0,3,9,2012,How She Move,I Need This,tt0770810\nuAtcsqDjOr8,1994.0,4,9,2012,Intersection,You Do Not Fit in!,tt0110146\nW3WRCxy2ZaE,1994.0,9,9,2012,Intersection,He's Going Flat,tt0110146\nO1fxGIiCt1E,1994.0,3,9,2012,Intersection,Would You Like to Sit Down?,tt0110146\nl_7z4h0soHg,1994.0,8,9,2012,Intersection,The Crash,tt0110146\nuc0l3djxQ5Y,2007.0,1,9,2012,How She Move,My Boots,tt0770810\neqk4fOK2VU8,1994.0,6,9,2012,Intersection,I Love Another Woman,tt0110146\nLgwj8KoDshs,1994.0,5,9,2012,Intersection,Are You Getting Out?,tt0110146\nKek4f12wu3o,1994.0,1,9,2012,Intersection,You're a Knock Out,tt0110146\nld9ehvuVu-8,1994.0,7,9,2012,Intersection,\"By the Way, This is Vincent\",tt0110146\nz67cBIaUOzw,1994.0,2,9,2012,Intersection,I Don't Think This is Such a Good Idea,tt0110146\nkTZLHA6zbnM,1999.0,11,11,2012,Jesus' Son,Dead Husbands,tt0186253\n0xo0KxL_21U,1999.0,10,11,2012,Jesus' Son,Alive In a Deeper Sense,tt0186253\n-FGNt71n2oA,1999.0,8,11,2012,Jesus' Son,The Bunnies are Dead,tt0186253\nGP5MbvcXb0E,1999.0,9,11,2012,Jesus' Son,The Biggest Pill I've Ever Seen,tt0186253\nY99ODe7GzfM,1999.0,6,11,2012,Jesus' Son,First Time,tt0186253\nxZYfE-65U3Y,1999.0,7,11,2012,Jesus' Son,The Cemetery Drive-In,tt0186253\nZMHEIVKg_iQ,1999.0,5,11,2012,Jesus' Son,A Stabbing Headache,tt0186253\nn_Zor8p_ZsA,1999.0,1,11,2012,Jesus' Son,Meeting Michelle,tt0186253\niqH7W6dLTZY,1999.0,4,11,2012,Jesus' Son,You Stiffed Me,tt0186253\n0BozXvlwFCk,1999.0,3,11,2012,Jesus' Son,Stealing Cars,tt0186253\n7keYfMMBIws,1999.0,2,11,2012,Jesus' Son,Dundun,tt0186253\nKf5iT31fZN8,2005.0,9,9,2012,Just Like Heaven,It Wasn't a Dream,tt0425123\ngQ3YdU0WlPw,2005.0,8,9,2012,Just Like Heaven,Stay With Me,tt0425123\n27CB8wWJt94,2005.0,5,9,2012,Just Like Heaven,I Can See Your Sister's Spirit,tt0425123\njJHNJjwNUWM,2005.0,7,9,2012,Just Like Heaven,\"Omigod, It's Her\",tt0425123\nudHPeemZ8zE,2005.0,6,9,2012,Just Like Heaven, I Love You.,tt0425123\nIOmR8ZCYhzc,2005.0,4,9,2012,Just Like Heaven,Coming on Too Strong,tt0425123\nTpXABjbV9cc,2005.0,3,9,2012,Just Like Heaven,She's Not Dead,tt0425123\nqcMHKqF91tM,2005.0,1,9,2012,Just Like Heaven,What's Happening to Me?,tt0425123\nMoInDyDrLKk,2005.0,2,9,2012,Just Like Heaven,Exorcising Elizabeth's Spirit,tt0425123\nWxy1loV9jqc,2000.0,8,9,2012,Road Trip,Mitch Unleashes the Fury,tt0215129\nTsCTF8rAkqk,2010.0,9,11,2012,Kick-Ass,Show's Over,tt1250777\nVa6oQ_2-jh8,2010.0,11,11,2012,Kick-Ass,Play Time's Over,tt1250777\njTGak1m5o6U,2010.0,3,11,2012,Kick-Ass,Sharp Present,tt1250777\nV7yhBe0E85E,2010.0,10,11,2012,Kick-Ass,Just a Little Kid,tt1250777\nh-Y7v9WyBug,2010.0,8,11,2012,Kick-Ass,Teddy Bear Surveillance,tt1250777\nzZaA_9hN1Lo,2010.0,7,11,2012,Kick-Ass,The Origins of Big Daddy & Hit-Girl,tt1250777\nPaei6bi8XBo,2010.0,6,11,2012,Kick-Ass,Hit-Girl Saves the Day,tt1250777\n7PcolFECV_k,2010.0,5,11,2012,Kick-Ass,I'm,tt1250777\njj5CG9kzDYY,2010.0,4,11,2012,Kick-Ass,Human Microwave,tt1250777\n8zUemCOntvo,2010.0,2,11,2012,Kick-Ass,'s First Day,tt1250777\n-uQOkA8zuMk,2010.0,1,11,2012,Kick-Ass,Learning to Take a Bullet,tt1250777\nDTXU2pMEZeA,1995.0,3,12,2012,Kicking and Screaming,I'm Too Nostalgic,tt0113537\noRMqBipT26M,1995.0,12,12,2012,Kicking and Screaming,If We Were an Old Couple,tt0113537\n-qs8tLNcMVY,1995.0,11,12,2012,Kicking and Screaming,I Like a Bartender Who Drinks,tt0113537\ntXmgYy1D5MA,1995.0,10,12,2012,Kicking and Screaming,Video Planet,tt0113537\nXoW9HJEDk5E,1995.0,7,12,2012,Kicking and Screaming,A Visit from Dad,tt0113537\ncLmDqUnUEE0,1995.0,9,12,2012,Kicking and Screaming,I've Inherited a Tragedy,tt0113537\nmhPPLQqVP0c,1995.0,8,12,2012,Kicking and Screaming,\"Ding That, Skippy\",tt0113537\nDTkzFvyvzkk,1995.0,5,12,2012,Kicking and Screaming,Book Club,tt0113537\nC-qXt_tIUJY,1995.0,6,12,2012,Kicking and Screaming,Potato Is an Entree?,tt0113537\n6QYrOTw1Y4w,1995.0,2,12,2012,Kicking and Screaming,Broken Glass,tt0113537\nh4OULP90F0c,1995.0,4,12,2012,Kicking and Screaming,There's Food in the Beer,tt0113537\nuCXHj1i42KA,1995.0,1,12,2012,Kicking and Screaming,\"Oh, I've Been to Prague\",tt0113537\nwk34RXMFgM0,1976.0,3,9,2012,King Kong,Showering Dwan,tt0074751\nP749Vnd3WSw,1976.0,8,9,2012,King Kong,An Escape-Proof Cage,tt0074751\nv6Xbfyz0aXM,1976.0,9,9,2012,King Kong,Don't Kill Him!,tt0074751\n5znSACsZMa0,1976.0,6,9,2012,King Kong,Trapping the Beast,tt0074751\n7H_MQ4OSwPM,1976.0,7,9,2012,King Kong,The Ape Had the Right Idea,tt0074751\neopKHS8iM5Y,1976.0,4,9,2012,King Kong,A Violent Encounter,tt0074751\ncNkof76o8P8,1976.0,5,9,2012,King Kong,Snake vs. Kong,tt0074751\nV2wuTBrkBpU,1976.0,2,9,2012,King Kong,Put Me Down!,tt0074751\nzzt_urtTkG4,1976.0,1,9,2012,King Kong,An Offering,tt0074751\ncbzkmMaYSNg,2003.0,5,9,2012,Lara Croft Tomb Raider 2,Shoot Her Between the Eyes,tt0325703\n1IZtDOuubT4,2003.0,9,9,2012,Lara Croft Tomb Raider 2,Lara's Choice,tt0325703\nmTx6_XT9Hns,2003.0,8,9,2012,Lara Croft Tomb Raider 2,Forest Ambush,tt0325703\n0awcEOEug5c,2003.0,7,9,2012,Lara Croft Tomb Raider 2,Old Feelings,tt0325703\nMVSH6eiGvSM,2003.0,6,9,2012,Lara Croft Tomb Raider 2,Wingsuit Escape,tt0325703\nRrrQxZ4j7t8,2003.0,3,9,2012,Lara Croft Tomb Raider 2,Lara vs. Chen,tt0325703\nyOMv5lJpHwY,2003.0,4,9,2012,Lara Croft Tomb Raider 2,Rope Descent Shootout,tt0325703\nypKY-4583qM,2003.0,2,9,2012,Lara Croft Tomb Raider 2,Riding the Great Wall,tt0325703\n-sq1AYZOWz0,1994.0,9,9,2012,Lassie,!,tt0110305\n9z6_GAPIkTU,2003.0,1,9,2012,Lara Croft Tomb Raider 2,Shark Punch,tt0325703\nq_d_fgqJna8,1994.0,6,9,2012,Lassie,Scare Them Sheep,tt0110305\nLd2g77JckSk,1994.0,8,9,2012,Lassie,They Are Not Your Sheep,tt0110305\na6uHu-9c23c,1994.0,7,9,2012,Lassie,That's My Girl,tt0110305\nUOdl87tD-58,1994.0,5,9,2012,Lassie,Building a Farm,tt0110305\npUNArJgkB2U,1994.0,2,9,2012,Lassie,That Was Awesome,tt0110305\nJ0MXhoaoPy8,1994.0,4,9,2012,Lassie,I've Got a Sheep Dog,tt0110305\nZqp8_F9EXbw,1994.0,1,9,2012,Lassie,Can We Keep Her?,tt0110305\nvBVkz1xSKFc,1994.0,3,9,2012,Lassie,vs. Wolf,tt0110305\nipc4KfTrRZs,1994.0,11,11,2012,Leprechaun 2,He's Gonna Blow!,tt0110329\nb9oREoCw3ew,2004.0,2,12,2012,3 Extremes,The Secret Ingredient,tt0420251\nqcFM5Xhg8W8,1994.0,9,11,2012,Leprechaun 2,Three Wishes,tt0110329\nAgZGoFX8xWY,1994.0,8,11,2012,Leprechaun 2,You Kill Me!,tt0110329\nOg_AVlwo94I,1994.0,10,11,2012,Leprechaun 2,Going for the Gold,tt0110329\n_y5i94TfOxw,1979.0,2,10,2012,North Dallas Forty,Boy Meets Boy,tt0079640\nriJRHpcshE0,1996.0,4,9,2012,Night Falls on Manhattan,Nail the Son of a Bitch,tt0119783\nqlwQsJOKoIo,1979.0,3,10,2012,North Dallas Forty,Breakfast of Champions,tt0079640\n1bZ_L0GOaYw,1996.0,2,9,2012,Night Falls on Manhattan,Do You Hear Me?!,tt0119783\nkgSDN6_VyR0,1994.0,7,11,2012,Leprechaun 2,One of Us!,tt0110329\nD4rlczOezQ8,1994.0,6,11,2012,Leprechaun 2,Welching on a Leprechaun,tt0110329\nQOCLLi8inz4,1996.0,8,9,2012,Night Falls on Manhattan,Everybody's Innocent,tt0119783\nfjsZJkL1lB4,1994.0,2,11,2012,Leprechaun 2,The Only Whiskey Is Irish Whiskey!,tt0110329\nc17KWinVFss,1994.0,5,11,2012,Leprechaun 2,\"It Ain't Much, But It's Home!\",tt0110329\nizxDdUcC3Ag,1994.0,4,11,2012,Leprechaun 2,A Proper Leprechaun Wedding,tt0110329\ns0bxFcZV40A,1994.0,1,11,2012,Leprechaun 2,Three Sneezes,tt0110329\nvEv9tQL3b-A,1995.0,9,9,2012,Losing Isaiah,I Love Him Too,tt0113691\nLwNWzSruov8,1994.0,3,11,2012,Leprechaun 2,Finger-Licking Good,tt0110329\nDEDWjeRGMks,1995.0,8,9,2012,Losing Isaiah,We're Always Together,tt0113691\ndxsVIClobT4,1995.0,1,9,2012,Losing Isaiah,You Ain't Leaving That Baby Here,tt0113691\n6GfFdTJiRmo,2001.0,11,11,2012,Lovely & Amazing,McDonald's,tt0258273\nnLcCOlgev3k,1995.0,5,9,2012,Losing Isaiah,She Wants Him Back,tt0113691\nV6I4cJ1kJVc,1995.0,3,9,2012,Losing Isaiah,Isaiah Grows Up,tt0113691\nWSbK1kJvTkg,1995.0,6,9,2012,Losing Isaiah,I'm His Mother,tt0113691\nr9z4qCu9sTw,2001.0,7,11,2012,Lovely & Amazing,You're Lovely and Amazing,tt0258273\nlOaaPz6E6ms,1995.0,7,9,2012,Losing Isaiah,What About Love?,tt0113691\nTtLvNyDGUg8,1995.0,4,9,2012,Losing Isaiah,I Threw Him Away,tt0113691\nMNWmA8mmbH4,1995.0,2,9,2012,Losing Isaiah,Stop the Blade,tt0113691\nyfrnQMbd64w,2001.0,8,11,2012,Lovely & Amazing,First Dates,tt0258273\nfJ0myLkUGjk,2001.0,10,11,2012,Lovely & Amazing,We're in a Relationship,tt0258273\nR0k1CGlHAtY,2001.0,6,11,2012,Lovely & Amazing,I'm Jewish,tt0258273\nbIcPNZlEW8w,2001.0,3,11,2012,Lovely & Amazing,Elizabeth's Audition,tt0258273\ngLEioQymzKc,2001.0,9,11,2012,Lovely & Amazing,She is Dying,tt0258273\nNjN_jPTXHys,2001.0,4,11,2012,Lovely & Amazing,Stepping on Michelle's Art,tt0258273\nhFON-hiGW8g,2001.0,5,11,2012,Lovely & Amazing,Michelle Gets a Job,tt0258273\n9j0tqkW7Bd8,2001.0,1,11,2012,Lovely & Amazing,These Won't Sell,tt0258273\nl0-EYjaAurE,2001.0,2,11,2012,Lovely & Amazing,What is Reality?,tt0258273\n1RTpXJVozSY,2005.0,8,9,2012,Mad Hot Ballroom,A Dramatic Improvement,tt0438205\n_K6U3FyJBv4,2005.0,9,9,2012,Mad Hot Ballroom,Dancing the Swing,tt0438205\npUtdFHAAGhE,2005.0,2,9,2012,Mad Hot Ballroom,Not in the Mood For Boys,tt0438205\n9oDHw4wwTQI,2005.0,7,9,2012,Mad Hot Ballroom,The Crowd Goes Wild!,tt0438205\n_deZCO2ojAo,2005.0,6,9,2012,Mad Hot Ballroom,What I Want For These Kids,tt0438205\nzhXaZ2a1NcU,2005.0,1,9,2012,Mad Hot Ballroom,Boys vs. Girls,tt0438205\nxehwopjgKGU,2005.0,3,9,2012,Mad Hot Ballroom,Surprise Partner,tt0438205\nLtCy6T9d6-s,2005.0,5,9,2012,Mad Hot Ballroom,Dealing With Losing,tt0438205\nC-DCupYm66Q,2005.0,4,9,2012,Mad Hot Ballroom,Quarter Finals Competition,tt0438205\najvCMC8Na3M,2003.0,8,8,2012,Marci X,Vote for Spinkle,tt0266747\nWB9uluVLP9g,2003.0,7,8,2012,Marci X,\"No, We Do NOT Know What You're Saying!\",tt0266747\n_fPBDSFxGq4,2003.0,6,8,2012,Marci X,In the Butt,tt0266747\nYzPOjXIwbu8,2003.0,3,8,2012,Marci X,Auction for the Doctor of Love,tt0266747\nIqefatGKx68,2003.0,5,8,2012,Marci X,Cuff Me?,tt0266747\nbN3U1IwMvhI,2003.0,2,8,2012,Marci X,\"Hey Guy, Let's Date!\",tt0266747\nOFmxUUOxZl8,2003.0,4,8,2012,Marci X,We Are in Kenya,tt0266747\nr-Pl3TQJqhE,2007.0,6,10,2012,Margot at the Wedding,Bookstore Q&A,tt0757361\nzriRtxv9jf0,2006.0,2,9,2012,Neil Young: Heart of Gold,Far From Home,tt0473692\nuxvN1tNASYo,2003.0,1,8,2012,Marci X,Power in My Purse,tt0266747\nlyCbXVV-PAY,2007.0,3,10,2012,Margot at the Wedding,Swimming at the Koosman's,tt0757361\n0PcN_4_J6b8,2007.0,1,10,2012,Margot at the Wedding,A Game of Croquet,tt0757361\nAbI_r4kXbcQ,2007.0,2,10,2012,Margot at the Wedding,Margot Climbs the Tree,tt0757361\npe1z-Tdk36M,2007.0,5,10,2012,Margot at the Wedding,I'll Punch Your Sister,tt0757361\njQ903giVNAg,2005.0,1,8,2012,Match Point,Scoring a Date,tt0416320\nbnIEGNhW3ZY,2007.0,10,10,2012,Margot at the Wedding,I Miss You So Much,tt0757361\nSEaGeyLjBUU,2007.0,7,10,2012,Margot at the Wedding,Have You Ever Cheated On Me?,tt0757361\nOCXvMchSYX4,2005.0,7,8,2012,Match Point,Are You Having an Affair?,tt0416320\nvVjfW-P5yZY,2005.0,5,8,2012,Match Point,Kiss in the Rain,tt0416320\nHaTAZMTwVoM,2007.0,4,10,2012,Margot at the Wedding,I'm Pregnant,tt0757361\nFj7KNHxzYjc,2007.0,8,10,2012,Margot at the Wedding,You're an A**hole,tt0757361\neqYhouRLYis,2000.0,7,7,2012,Memento,\"When My Eyes Are Closed, The World's Still Here\",tt0209144\n8N6q0Yprfwk,2007.0,9,10,2012,Margot at the Wedding,She Pooped Her Pants,tt0757361\nW3-UIdApbyw,2000.0,6,7,2012,Memento,You Make Up Your Own Truth,tt0209144\nqTIc6y5mojw,2005.0,6,8,2012,Match Point,Reconnecting,tt0416320\nHj9WsioJbJw,2005.0,2,8,2012,Match Point,An Aggressive Game,tt0416320\nSJHWGDkIxNM,2001.0,9,9,2012,Mean Machine,The Game Winner,tt0291341\nIvWyoUACISc,2001.0,5,9,2012,Mean Machine,Danny's Story,tt0291341\nEFgCZDRkacU,2005.0,8,8,2012,Match Point,In for Questioning,tt0416320\nu_Bfpbz3owc,2005.0,3,8,2012,Match Point,Believing in Luck,tt0416320\nKduMYNqIGBA,2005.0,4,8,2012,Match Point,Something Very Special,tt0416320\nKDyJYLDyBzc,2001.0,8,9,2012,Mean Machine,Monk to Save the Day,tt0291341\nmbPEuV3NJIg,2001.0,6,9,2012,Mean Machine,Lightning Can Strike Twice,tt0291341\nQJ3Z0TSIpE0,2000.0,5,7,2012,Memento,Can You Get Angry?,tt0209144\nG9wDgZk1s6E,2001.0,7,9,2012,Mean Machine,Goal!!!,tt0291341\nR5409gLbXuw,2000.0,2,7,2012,Memento,My Wife Deserves Vengeance,tt0209144\nzBjq9UbpCtQ,2001.0,3,9,2012,Mean Machine,Doc's Story,tt0291341\nc__26Uyp5eU,2001.0,2,9,2012,Mean Machine,Try-Outs,tt0291341\nhgGf5X8-j1s,2000.0,3,7,2012,Memento,Will You Remember Me?,tt0209144\nZzuc4RiUjJs,2001.0,4,9,2012,Mean Machine,It's Showtime!,tt0291341\nRh-nBzPUoOk,2001.0,1,9,2012,Mean Machine,Solitary Confinement,tt0291341\nUyVSJcL-7BA,2000.0,4,7,2012,Memento,I Know I Can't Have Her Back,tt0209144\ni_Y5UB3xxW8,2000.0,1,7,2012,Memento,I Finally Found Him,tt0209144\nOXvNnV-cwFQ,1996.0,8,10,2012,Mother,Oedipus Complex,tt0117091\nZ7C6L3yRYGM,1996.0,6,10,2012,Mother,Shopping,tt0117091\nH46x8fD7WzE,1996.0,10,10,2012,Mother,Follow Me,tt0117091\n3MK7O6w2Mz8,1996.0,9,10,2012,Mother,We Know Why She Hates Me,tt0117091\nLg69Gwv4tOM,1996.0,7,10,2012,Mother,A Trip to the Mall,tt0117091\nZ8vCm7TUK8c,1996.0,1,10,2012,Mother,Does That Look a Little Green to You?,tt0117091\nRcqR5cnQyUo,1996.0,3,10,2012,Mother,Mrs. Henderson,tt0117091\n8iqKSKK9_uQ,1996.0,2,10,2012,Mother,I'm Gonna Move Back in With,tt0117091\n1cCEE8-jhus,1996.0,4,10,2012,Mother,That's a Lot of Cheese,tt0117091\n3SGIHbvcTRc,1996.0,5,10,2012,Mother,Sweet Tooth,tt0117091\nZ-GoRxX2exA,1997.0,8,10,2012,Mousehunt,Auction Awkwardness,tt0119715\nTVAhhVrpkwM,1997.0,3,10,2012,Mousehunt,Mouse Traps,tt0119715\nI0YUjv1u-Gw,1997.0,10,10,2012,Mousehunt,String Cheese,tt0119715\n19WT40D513Q,1997.0,9,10,2012,Mousehunt,The House Floods,tt0119715\n8I5_zsRI4Zo,1997.0,6,10,2012,Mousehunt,The Bug Bomb Goes Off,tt0119715\nji4pvRXDMOY,1997.0,7,10,2012,Mousehunt,Find a Blunt Object!,tt0119715\nWrnyKH7u6DQ,1997.0,4,10,2012,Mr. Jealousy,What Lester Does in Therapy,tt0119717\nLwioGjicbRw,1997.0,9,10,2012,Mr. Jealousy,Eternally Grateful and Terminally Smitten,tt0119717\nirQ89Ny0HkI,1997.0,5,10,2012,Mousehunt,Smells Like Gas,tt0119715\ncku1N8eCUlo,1997.0,2,10,2012,Mousehunt,Sleeping Mouse,tt0119715\nDDv-GQjcZDA,1997.0,8,10,2012,Mr. Jealousy,Secrets Revealed,tt0119717\nziPAPWBYU5A,1997.0,4,10,2012,Mousehunt,Caesar the Exterminator,tt0119715\ne-KbcJI8Rl4,1997.0,7,10,2012,Mr. Jealousy,Rekindling an Old Flame,tt0119717\ncidI_7BQUJE,1997.0,10,10,2012,Mr. Jealousy,\"How Does Your Story End, Lester?\",tt0119717\nPu5OjNuJl30,1997.0,1,10,2012,Mr. Jealousy,Spying on Dashiell,tt0119717\nfnl5_3zT1d4,1997.0,6,10,2012,Mr. Jealousy,Ramona's Confession,tt0119717\nhXg2LXOwsoA,1997.0,5,10,2012,Mr. Jealousy,Guys' Night Out,tt0119717\ncktXSK7io8U,1987.0,7,11,2012,Near Dark,Check-Out Time,tt0093605\nfTEPaF5TjWU,1987.0,4,11,2012,Near Dark,The Drink's on Me,tt0093605\nxfwm9CY5dao,1997.0,1,10,2012,Mousehunt,Cockroach Dinner,tt0119715\nufcsS9E-JVs,1987.0,6,11,2012,Near Dark,Finger-Lickin' Good!,tt0093605\n2QLbTjd693M,1987.0,10,11,2012,Near Dark,Bull's Eye!,tt0093605\nSKEvjOq6L6o,1997.0,2,10,2012,Mr. Jealousy,Unfaithful Relationships,tt0119717\nic5tRp5nKOE,1997.0,3,10,2012,Mr. Jealousy,Where Were You?,tt0119717\nqHm2lHzV7tM,1987.0,5,11,2012,Near Dark,This Isn't Gonna Hurt,tt0093605\nClrfnLtqXYo,1987.0,9,11,2012,Near Dark,She's Mine,tt0093605\n1iiGGpwLdQc,1987.0,11,11,2012,Near Dark,Sunrise Burns,tt0093605\nBSEx_EMtQW8,2006.0,8,9,2012,Neil Young: Heart of Gold,Comes a Time,tt0473692\nc_BMbnWPWnU,2006.0,9,9,2012,Neil Young: Heart of Gold,One of These Days,tt0473692\nU_0oVOS3LC4,2006.0,6,9,2012,Neil Young: Heart of Gold,Heart of Gold,tt0473692\nY-N5lfNPLnY,2006.0,5,9,2012,Neil Young: Heart of Gold,Harvest Moon,tt0473692\nddm0aMIKiqY,2006.0,3,9,2012,Neil Young: Heart of Gold,It's a Dream,tt0473692\nSZDFWDc58TE,2006.0,7,9,2012,Neil Young: Heart of Gold,Old Man,tt0473692\n4Xvu9fzPGhA,2006.0,4,9,2012,Neil Young: Heart of Gold,This Old Guitar,tt0473692\n10GtbJs6GEw,1987.0,2,11,2012,Near Dark,Capturing Caleb,tt0093605\nZfCZwP2Qe60,1987.0,3,11,2012,Near Dark,You Could Kill Me If You Drink Too Much,tt0093605\nodWPv33yKAk,1987.0,8,11,2012,Near Dark,We Keep Odd Hours,tt0093605\nQsXsfrk06-I,1987.0,1,11,2012,Near Dark,Horses Just Don't Like Me,tt0093605\neR_BcTP8HOM,1996.0,5,9,2012,Night Falls on Manhattan,Washington Surrenders Unscathed,tt0119783\nPPMM8VRgEUk,1996.0,9,9,2012,Night Falls on Manhattan,You're Garbage! You're Nothing!,tt0119783\nAWLkXfNg6ek,1979.0,7,10,2012,North Dallas Forty,You the Best,tt0079640\nf5f86alm7jk,1996.0,6,9,2012,Night Falls on Manhattan,They're Coming On After You,tt0119783\n6f5ggdRQuB8,1996.0,3,9,2012,Night Falls on Manhattan,Case Closed,tt0119783\nD3XYhRv-rBU,1979.0,9,10,2012,North Dallas Forty,Final Play of the Game,tt0079640\nDCT__l4_m4g,1979.0,8,10,2012,North Dallas Forty,Pre-Game Final Words,tt0079640\nHYvwDxWCSwM,1996.0,7,9,2012,Night Falls on Manhattan,Tiny White Sneakers,tt0119783\nTWqf3iE2Gk8,1979.0,4,10,2012,North Dallas Forty,Ice Bath & Beers,tt0079640\nQ3kOA_8ws6A,1996.0,1,9,2012,Night Falls on Manhattan,\"Send Back-Up, Come Heavy\",tt0119783\nwOp2t0IKnUo,1979.0,6,10,2012,North Dallas Forty,Full-Speed Scrimmage,tt0079640\nI6mpHW3SMcc,1979.0,10,10,2012,North Dallas Forty,It's a Sport Not a Business,tt0079640\nxtz6dAjWz3g,2006.0,7,8,2012,Perfume,An Angel,tt0396171\nI4hc-GcHCsE,1979.0,1,10,2012,North Dallas Forty,A Quarterback Sandwich,tt0079640\nEwdFmqEvG7M,2003.0,10,10,2012,Northfork,Window Shopping,tt0322659\nWEszqunyV0M,1979.0,5,10,2012,North Dallas Forty,Serious Training,tt0079640\nMjFgD2yLBI4,2003.0,5,10,2012,Northfork,A Thousand Miles,tt0322659\nJWUrJ-zH7fw,2003.0,6,10,2012,Northfork,The Bottom Feeders,tt0322659\nte366vMoW0E,1975.0,7,10,2012,Once Is Not Enough,Daddy Issues,tt0073190\nkRWvfBinmWw,2003.0,3,10,2012,Northfork,The Evacuation Committee,tt0322659\nYCN_nis2E84,2003.0,9,10,2012,Northfork,I'm Happy,tt0322659\nBF4-iXXZE-s,1975.0,9,10,2012,Once Is Not Enough,Busted,tt0073190\nOYuE4tFH7lc,2003.0,8,10,2012,Northfork,Your Boat Doesn't Float,tt0322659\nfp86WZ7Jn5g,1975.0,3,10,2012,Once Is Not Enough,I'd Kill for Ya,tt0073190\nVlGVLpW7Dsw,2003.0,2,10,2012,Northfork,I Gave You an Angel,tt0322659\n-_HlyIgHUa0,2003.0,7,10,2012,Northfork,Two Types of People,tt0322659\nwQhcRCuORak,2003.0,1,10,2012,Northfork,The Dam Opening Ceremony,tt0322659\nPiyaX2sq_wk,1975.0,10,10,2012,Once Is Not Enough,It's Over,tt0073190\nx8kclPvcsTI,1999.0,8,8,2012,Payback,The Train Station,tt0120784\nLc1MmNI8jLc,2003.0,4,10,2012,Northfork,Ever Smell Death?,tt0322659\nEr3iFTlMpmc,1975.0,4,10,2012,Once Is Not Enough,Catching Up,tt0073190\nxaOERHG7Qr8,2006.0,5,8,2012,Perfume,Excommunicated,tt0396171\nIpQkAn4FnkY,1975.0,2,10,2012,Once Is Not Enough,Go Faster,tt0073190\nbLjFBMuBc68,1975.0,5,10,2012,Once Is Not Enough,\"Frankly, I'd Love to Sleep with You\",tt0073190\nHHlf5HhqdOs,1975.0,6,10,2012,Once Is Not Enough,Why Him?,tt0073190\nMTRBtcsZwjw,1975.0,8,10,2012,Once Is Not Enough,Lovestruck,tt0073190\nki8KblCCOuA,1999.0,6,8,2012,Payback,Fairfax,tt0120784\nSFHSKaQESeI,2006.0,8,8,2012,Perfume,Purely Out of Love,tt0396171\n0r4uUQBLokk,1999.0,3,8,2012,Payback,Let Her Work,tt0120784\nqkTP21NTcgM,1999.0,5,8,2012,Payback,Kill Carter,tt0120784\nvqlURGjq4AM,1975.0,1,10,2012,Once Is Not Enough,Washed Up,tt0073190\nKu9rtTERy1A,1999.0,7,8,2012,Payback,Hubba-Hubba-Hubba,tt0120784\nWTs3TbtIwUA,1999.0,4,8,2012,Payback,Forgot My Cigarettes,tt0120784\nWyjaZFv4lgI,1999.0,2,8,2012,Payback,Wrong Answer,tt0120784\nePUgjJofgq8,1999.0,1,8,2012,Payback,The Hit,tt0120784\nxUAn-hrMa0A,1992.0,5,9,2012,Pet Sematary 2,Bully Treatment,tt0105128\nilZqZaSUC0Y,2006.0,6,8,2012,Perfume,Water Dunking,tt0396171\nhrcFkSMZBng,2006.0,2,8,2012,Perfume,Distilling Scent,tt0396171\n-o8b7tsVH64,2006.0,4,8,2012,Perfume,Human,tt0396171\n8wTnBC7doPk,2006.0,3,8,2012,Perfume,No Smell of His Own,tt0396171\n4F5sPA5E27o,2006.0,1,8,2012,Perfume,The Plum Girl,tt0396171\nQ9szFqOlDJc,1992.0,9,9,2012,Pet Sematary 2,I'm Melting,tt0105128\nOwCO4rmsct0,1992.0,8,9,2012,Pet Sematary 2,Eat This!,tt0105128\nTKVyyEsA-so,1971.0,7,8,2012,Plaza Suite,Promise You Won't Get Hysterical,tt0067589\nRMd-tHAtdoY,1992.0,7,9,2012,Pet Sematary 2,\"No Brain, No Pain\",tt0105128\ni--0u4m_zZg,1992.0,6,9,2012,Pet Sematary 2,Road Rage,tt0105128\nurWMTYuDxME,1971.0,6,8,2012,Plaza Suite,He'll Kill Himself,tt0067589\nMuBwxePS-s0,1971.0,8,8,2012,Plaza Suite,Cool It,tt0067589\npXIcjMT1SUg,1992.0,3,9,2012,Pet Sematary 2,Gus Gets Mauled,tt0105128\n03NoI9KiZOk,1971.0,3,8,2012,Plaza Suite,My Last Salvation,tt0067589\nBvwCwDf6J3w,1978.0,7,8,2012,Pretty Baby,The Girls at the Lake,tt0078111\nQXB9qatHDSU,1978.0,6,8,2012,Pretty Baby,Violet Gets Married,tt0078111\n6BDzGP6HuGE,1971.0,2,8,2012,Plaza Suite,You're Adorable,tt0067589\nZ18eK57wD3k,1992.0,2,9,2012,Pet Sematary 2,Zowie Returns,tt0105128\n3cqeNsSZYh4,1978.0,8,8,2012,Pretty Baby,Hattie Takes Violet Away,tt0078111\ndv0-EuBX490,1992.0,1,9,2012,Pet Sematary 2,Electrocution on Set,tt0105128\nSZKLpJzv5JY,1992.0,4,9,2012,Pet Sematary 2,Table Manners,tt0105128\npKN_6Javjnc,1978.0,5,8,2012,Pretty Baby,Can I Stay Here?,tt0078111\nnTz_lWcgDhA,1971.0,5,8,2012,Plaza Suite,She's in There!,tt0067589\nPBF9pOAjXt0,1971.0,1,8,2012,Plaza Suite,That's a Sweet Girl,tt0067589\ncNLFuTms4go,1978.0,1,8,2012,Pretty Baby,I Want to Be Respectable,tt0078111\nU6uNt6h3_bM,2008.0,7,12,2012,Rambo,Live for Nothing or Die for Something,tt0462499\niJMYIXoFGcQ,1978.0,3,8,2012,Pretty Baby,Bidding on Violet,tt0078111\nVKaGKi9OHQI,1978.0,4,8,2012,Pretty Baby,\"Violet, You Alright?\",tt0078111\ntTbqVFrvn0E,1971.0,4,8,2012,Plaza Suite,We'll Just Talk,tt0067589\n0S5lIhsh2Rc,2008.0,11,12,2012,Rambo,Mopping Up,tt0462499\nJSyZq8Eg5eg,1978.0,2,8,2012,Pretty Baby,Prepping Violet,tt0078111\n0zVmdCICQok,2008.0,9,12,2012,Rambo,Explosive Chase,tt0462499\n1ZeDq4Yo6Jk,2008.0,10,12,2012,Rambo,50 Caliber Rescue,tt0462499\nh_N5IH-bWNE,2008.0,3,12,2012,Rambo,River Pirates,tt0462499\nIYju9ObPTTw,2008.0,1,12,2012,Rambo,Going Up River,tt0462499\nBKDnwX9P7vo,2000.0,12,12,2012,Requiem for a Dream,Fetal Position,tt0180093\nOfifxt45nfg,2008.0,2,12,2012,Rambo,Changing What Is,tt0462499\nXF0e2BjTDh8,2008.0,12,12,2012,Rambo,Goes Home,tt0462499\n0njU7LPADwY,2008.0,4,12,2012,Rambo,You're Not Gonna Change Anything,tt0462499\nf_BcfyJea_M,2008.0,8,12,2012,Rambo,Rescuing Sarah,tt0462499\niONYYY7lHo4,2008.0,6,12,2012,Rambo,War's in Your Blood,tt0462499\nTlcxW8KUzks,2000.0,11,12,2012,Requiem for a Dream,Wait for Me,tt0180093\n1Mx_jHNEBtA,2008.0,5,12,2012,Rambo,Nightmares,tt0462499\nbkxVMf2ozrs,2000.0,8,12,2012,Requiem for a Dream,I Have a Favor to Ask,tt0180093\neqIkFkmb054,2000.0,10,12,2012,Requiem for a Dream,I Know it's Pretty,tt0180093\n_d4WkQci7zw,2000.0,9,12,2012,Requiem for a Dream,\"Feed Me, Sara\",tt0180093\nncOY7vtsY8I,2000.0,2,12,2012,Requiem for a Dream,Meaningless,tt0180093\n6H72hXsLZ8k,2000.0,3,12,2012,Requiem for a Dream,I'm Thinking Thin,tt0180093\noYcKftzUS_Y,2000.0,6,12,2012,Requiem for a Dream,The Red Dress,tt0180093\n6XWpPwp8p_0,2000.0,2,9,2012,Road Trip,I Could Spit Across This Gap,tt0215129\nmkYNhZvlHv0,2000.0,1,12,2012,Requiem for a Dream,Boss Skag,tt0180093\n2BtZY3z72jY,2000.0,7,12,2012,Requiem for a Dream,\"Smart, Loyal and Not a Junkie\",tt0180093\n2mSiP5Bbdxw,2000.0,5,9,2012,Road Trip,Dinner at the Xi Chi House,tt0215129\nU-JAuw8FsrA,2000.0,4,12,2012,Requiem for a Dream,We're on Our Way,tt0180093\n7TBwFfjXd3s,2000.0,5,12,2012,Requiem for a Dream,\"There's My Three Meals, Mr. Smartypants\",tt0180093\nHNfciDzZTNM,2000.0,4,9,2012,Road Trip,\"French Toast, No Sugar\",tt0215129\nqokWn0jfbM4,2003.0,8,8,2012,Rugrats Go Wild,We're Saved,tt0337711\nA6CTejBh5QU,2000.0,9,9,2012,Road Trip,Having a Smoke,tt0215129\nQKKrwhcVEJA,2003.0,6,8,2012,Rugrats Go Wild,Chuckie vs. Donnie,tt0337711\nbNbi_KLd_Uk,2003.0,7,8,2012,Rugrats Go Wild,Donnie Saves the Rugrats,tt0337711\nR1JHZFJyWds,2000.0,3,9,2012,Road Trip,An Unusual Question,tt0215129\n-rtUvlR1pZE,2000.0,7,9,2012,Road Trip,Milking the Prostate,tt0215129\ngpytphKy7a0,2003.0,4,8,2012,Rugrats Go Wild,Uninhabited Island,tt0337711\npl2HDVRj_4o,2000.0,1,9,2012,Road Trip,You Mailed the Beth Tape to Tiffany?,tt0215129\nPz3SOdEw0LY,2000.0,6,9,2012,Road Trip,Kyle's the Man,tt0215129\nHtxIqa2mXaA,2007.0,8,10,2012,Saw 4,Save as I Save,tt0890870\nzXBPTIjfZgA,2003.0,5,8,2012,Rugrats Go Wild,Spike,tt0337711\nwz4HLeURVOQ,2003.0,2,8,2012,Rugrats Go Wild,Captain Stu,tt0337711\n6UvEeQC0Odc,2003.0,1,8,2012,Rugrats Go Wild,I'm Nigel Strawberry,tt0337711\n5wUu-cKYMgI,2004.0,8,12,2012,3 Extremes,Kill Her!,tt0420251\n3AD_sQbn9EY,2004.0,7,12,2012,3 Extremes,Psychopath Dance,tt0420251\najBK8B_kYO0,2003.0,3,8,2012,Rugrats Go Wild,Abandon Ship,tt0337711\nsqjS__9_Irk,2004.0,11,12,2012,3 Extremes,Shoko's Death,tt0420251\nak4mtSDwxV4,2004.0,9,12,2012,3 Extremes,The Dream,tt0420251\nDLasTex8Vnk,2003.0,6,7,2012,Schultze Gets the Blues,Hello in a Hot Tub,tt0388395\nFYo6dKubr-Q,2007.0,7,10,2012,Saw 4,Your Eyes or Your Body,tt0890870\nhp3inTPISwQ,2004.0,5,12,2012,3 Extremes,A Strange Stranger,tt0420251\nlMy-kxTpXKA,2007.0,10,10,2012,Saw 4,Final Test,tt0890870\nsLlQvz0y7QM,2003.0,1,7,2012,Schultze Gets the Blues,This Is the Wilder West!,tt0388395\nCwowG9t4bPU,2004.0,4,12,2012,3 Extremes,Blood Bath,tt0420251\nURHjEpowEcw,2004.0,10,12,2012,3 Extremes,Long Lost Sister,tt0420251\nBLVhog_zX68,2004.0,1,12,2012,3 Extremes,You Are What You Eat,tt0420251\nlhhxZt-oU38,2004.0,12,12,2012,3 Extremes,What's in the Box?,tt0420251\nRZ-__QD99DA,2003.0,4,7,2012,Schultze Gets the Blues,Olé,tt0388395\nlA2ubmfr6Dw,2007.0,9,10,2012,Saw 4,I'm Not the One You Gotta Worry About,tt0890870\ni3jmM-Fc5Nk,2007.0,5,10,2012,Saw 4,On Thin Ice,tt0890870\nqOeMwWgruZw,2004.0,3,12,2012,3 Extremes,Still Birth,tt0420251\nQDeWmH3M9-M,2004.0,6,12,2012,3 Extremes,One Finger Every Five Minutes,tt0420251\nqZPjRshIz4s,2007.0,1,10,2012,Saw 4,The Games Have Just Begun,tt0890870\nPykWxPq9JEE,2003.0,5,7,2012,Schultze Gets the Blues,Schultze Plays the Blues,tt0388395\nLCEr8N9zXy8,2003.0,3,7,2012,Schultze Gets the Blues,Think of It as a Gift,tt0388395\nqpZBUlqRoeA,2003.0,7,7,2012,Schultze Gets the Blues,Captain Kirk,tt0388395\noOl1Kvh2Zwg,2007.0,2,10,2012,Saw 4,Finding Detective Kerry,tt0890870\nuyfrK4LrXaQ,2003.0,2,7,2012,Schultze Gets the Blues,Schultze Meets the Blues,tt0388395\n3VfuSHP-57o,2007.0,3,10,2012,Saw 4,Constructed for Her Execution,tt0890870\noHyebwN9XXU,2007.0,6,10,2012,Saw 4,Feel What I Feel,tt0890870\nIwcQ6LDdW9Q,2007.0,4,10,2012,Saw 4,Two Officers in Danger,tt0890870\nohgN4PexEv4,2000.0,4,10,2012,Shadow of the Vampire,I'll Eat Her Later,tt0189998\nnALXcRjbVzs,2000.0,7,10,2012,Shadow of the Vampire,This Is Hardly Your Picture Any Longer,tt0189998\n-lAXOMpPqYM,2000.0,10,10,2012,Shadow of the Vampire,Finally Born,tt0189998\nJuvJl9iwKb4,2000.0,8,10,2012,Shadow of the Vampire,No Reflection,tt0189998\nSLNBos63EkY,2000.0,9,10,2012,Shadow of the Vampire,\"If It's Not in Frame, It Doesn't Exist\",tt0189998\nTernps0JFwo,1953.0,5,8,2012,Shane,A Gun Is a Tool,tt0046303\ncEafT-GQfv4,2000.0,6,10,2012,Shadow of the Vampire,Are You Loaded?,tt0189998\n2nChsqAPyHw,2000.0,3,10,2012,Shadow of the Vampire,Blood!,tt0189998\nkVPIOjjbIpY,2000.0,2,10,2012,Shadow of the Vampire,I Feed Erratically,tt0189998\nUa3NXljreQ4,2006.0,7,8,2012,She's the Man,I'm a Boy,tt0454945\nCWnDVW07_1c,1953.0,6,8,2012,Shane,Where Do You Think You're Going,tt0046303\nh5jZBcDev1s,2000.0,1,10,2012,Shadow of the Vampire,Meet Count Orlok,tt0189998\nV1l3TboL5MI,1953.0,7,8,2012,Shane,Low Down Yankee Liar,tt0046303\nDtoCw2iOTSc,1953.0,8,8,2012,Shane,\", Come Back!\",tt0046303\nYklwFCfEEMM,1953.0,4,8,2012,Shane,You've Won,tt0046303\n0TjrNjcFv_A,1953.0,2,8,2012,Shane,Keep the Smell of Pigs Out,tt0046303\nf3z_ene1G6c,1953.0,1,8,2012,Shane,Comes to Town,tt0046303\nopCf3mp24dE,2006.0,8,8,2012,She's the Man,I'm Viola,tt0454945\n9LvdctnZeWE,2000.0,8,9,2012,Snow Day,Anything Can Happen,tt0184907\nFxjONf9AXEs,2006.0,5,8,2012,She's the Man,Make Him Jealous,tt0454945\n4aRryzzZLTI,1953.0,3,8,2012,Shane,Let Me Buy You a Drink,tt0046303\nyNs0hmNinA0,2006.0,6,8,2012,She's the Man,Bad Timing,tt0454945\nntQrC5iclmI,2006.0,3,8,2012,She's the Man,Flow Is Flow,tt0454945\nofIzQbTGQ2E,2006.0,1,8,2012,She's the Man,I Get Really Bad Nose Bleeds,tt0454945\nHOoHh7wHtvQ,2006.0,4,8,2012,She's the Man,What Does Your Heart Tell You?,tt0454945\nNY8m6lManpQ,2006.0,2,8,2012,She's the Man,Welcome To Illyria,tt0454945\ne2-VnrdN_Ng,2000.0,9,9,2012,Snow Day,Charge!,tt0184907\nMlRFw1CvPd4,2000.0,6,9,2012,Snow Day,Taking the Mic,tt0184907\nnr7ui14-O_Q,2000.0,7,9,2012,Snow Day,Destiny,tt0184907\nsKrqOTg_FJY,2000.0,5,9,2012,Snow Day,Clairestock,tt0184907\nt0Yf_fvD-lY,2000.0,3,9,2012,Snow Day,Snowplowman,tt0184907\n7sUwnda1FUs,2000.0,2,9,2012,Snow Day,Snow!,tt0184907\nG4BGtSvviS0,2000.0,1,9,2012,Snow Day,Claire Bonner,tt0184907\nvg6-AbLe5nM,2000.0,4,9,2012,Snow Day,The Perfect Snow Angel,tt0184907\n1DkaN1nDQoY,1948.0,6,9,2012,\"Sorry, Wrong Number\",More Important Than Me?,tt0040823\nXAWdzV2Bafw,2008.0,8,8,2012,Stop-Loss,That Box Inside Your Head,tt0489281\nZSKSNo2z8AM,1948.0,7,9,2012,\"Sorry, Wrong Number\",A Controlling Father-in-Law,tt0040823\n6MbOPK4TCB4,1948.0,8,9,2012,\"Sorry, Wrong Number\",There's Someone in This House,tt0040823\nXLSkfVJxbwo,1948.0,3,9,2012,\"Sorry, Wrong Number\",\"I, Leona, Take Thee, Henry\",tt0040823\ns4AzrUO3D1w,1948.0,9,9,2012,\"Sorry, Wrong Number\",I Want You to Scream,tt0040823\nJ0IxGD8-6Cc,1948.0,2,9,2012,\"Sorry, Wrong Number\",What Does a Dame Like You Want with a Guy Like Me?,tt0040823\nMa6SDu0V98Y,1948.0,1,9,2012,\"Sorry, Wrong Number\",Overhearing the Murder Plot,tt0040823\nzdyBsGHbs4k,1948.0,5,9,2012,\"Sorry, Wrong Number\",The Telegram,tt0040823\ns3RNsZvdYZQ,1996.0,6,9,2012,Star Trek: First Contact,The Line Must Be Drawn Here,tt0117731\nu3A8DoRXiSI,2008.0,5,8,2012,Stop-Loss,King Visits Rico,tt0489281\nsMt3SzAH_i0,1996.0,4,9,2012,Star Trek: First Contact,I Am the Borg,tt0117731\ngzQt5VctFfI,2008.0,7,8,2012,Stop-Loss,I'm Done With Killing,tt0489281\nEaPpa-eoxi4,1996.0,9,9,2012,Star Trek: First Contact,From Another World,tt0117731\n78RKzUAQD40,1948.0,4,9,2012,\"Sorry, Wrong Number\",Someone at the Door,tt0040823\n8fvhchY0UmY,1987.0,10,10,2012,Summer School,Now That's Teaching,tt0094072\nQL412_xWtT8,1987.0,5,10,2012,Summer School,Driving Lessons,tt0094072\nJ6JcrLIvKUA,2008.0,2,8,2012,Stop-Loss,F*** The President,tt0489281\nDYE3nm9voUk,1996.0,7,9,2012,Star Trek: First Contact,Blast Off!,tt0117731\nlDa6qc93nNs,1996.0,2,9,2012,Star Trek: First Contact,They've Adapted,tt0117731\nCttvEq-ypno,2008.0,6,8,2012,Stop-Loss,We Got Out Just In TIme,tt0489281\nD4QyCdRvXr4,1996.0,5,9,2012,Star Trek: First Contact,Assimilate This!,tt0117731\nJnN-SR_2ovA,1996.0,8,9,2012,Star Trek: First Contact,Resistance is Futile,tt0117731\n5Z8LHf9J6PQ,1996.0,3,9,2012,Star Trek: First Contact,First Contact with Earth,tt0117731\n-5Pku48YPFo,1987.0,9,10,2012,Summer School,We're Psychopaths!,tt0094072\nt4DCOpG1oNE,1996.0,1,9,2012,Star Trek: First Contact,It's the Enterprise,tt0117731\nMA6g7AEH_kA,2004.0,3,9,2012,Suspect Zero,He Can See,tt0324127\nB7ZTNm5o780,1987.0,8,10,2012,Summer School,\"Tall, Dark, and Tidy\",tt0094072\nGB7Cq_W4-U4,2008.0,3,8,2012,Stop-Loss,\"I Ain't Scared, I'm Pissed Off\",tt0489281\nCYF7eLv3hMw,2008.0,4,8,2012,Stop-Loss,Soldier In the Pool,tt0489281\nRVevBZFMkys,2004.0,9,9,2012,Suspect Zero,Shut It Off For Me,tt0324127\nu0kF24ceZMI,1987.0,7,10,2012,Summer School,Ladies Night,tt0094072\njJiKYmmWiCA,1987.0,1,10,2012,Summer School,Ain't No English Teacher,tt0094072\nx5Nu0PPrI-E,2008.0,1,8,2012,Stop-Loss,Shriver's Dug In,tt0489281\nfarC0cWkpvc,1987.0,6,10,2012,Summer School,Hot For Teacher,tt0094072\nLzdoMQL_jR8,1987.0,4,10,2012,Summer School,Negotiations,tt0094072\nnjlI82MV0gk,2004.0,5,9,2012,Suspect Zero,A String of Serial Killers,tt0324127\nrroHhssQbok,2004.0,4,9,2012,Suspect Zero,\"It Was There, And We Found It\",tt0324127\nsTI1U2BiTNk,1996.0,5,11,2012,The Arrival,Underground Secrets,tt0115571\n0ROplAtLJvo,2004.0,8,9,2012,Suspect Zero,We Saw Things Men Shouldn't See,tt0324127\nKkLV3MzJM_8,1987.0,2,10,2012,Summer School,First Day of Class,tt0094072\ns4nMGnlbq9I,1996.0,10,11,2012,The Arrival,Right Behind You,tt0115571\n9OFoTABYnY0,1987.0,3,10,2012,Summer School,Let's Start Over,tt0094072\nWO-1MybFFvI,1996.0,3,11,2012,The Arrival,Portable Black Hole,tt0115571\nrs1V8Sxp3ZY,1996.0,7,11,2012,The Arrival,Human Disguise,tt0115571\nakYf73cUU6U,1996.0,11,11,2012,The Arrival,Tell Them That I Know,tt0115571\nYFUCezoyzyk,2004.0,7,9,2012,Suspect Zero,O'Ryan's Not the Guy,tt0324127\nzAc3K7mjlxs,2004.0,6,9,2012,Suspect Zero,Project Icarus,tt0324127\nVwP_-8SCu5s,2004.0,1,9,2012,Suspect Zero,Locating Mackelway,tt0324127\nFCcdMEItd-U,1996.0,4,11,2012,The Arrival,The Creeping Enemy,tt0115571\nlL2AwD_4G8w,1996.0,2,11,2012,The Arrival,Foot Chase in Mexico,tt0115571\nTnwtTQlfaQo,1996.0,8,11,2012,The Arrival,You Don't Deserve to Live Here,tt0115571\nZG4DMIhSIZY,2004.0,2,9,2012,Suspect Zero,Circle With a Slash,tt0324127\ne0wRbbzTdhQ,1996.0,6,11,2012,The Arrival,Alien Secrets,tt0115571\nNmNveyfhpBg,1996.0,9,11,2012,The Arrival,What Do They Look Like?,tt0115571\nGNQ2LOxMi9Q,1996.0,1,11,2012,The Arrival,Problems Here on Earth,tt0115571\n8TJk9N4RrNM,1999.0,6,8,2012,The Blair Witch Project,We're Still Alive 'Cause We're Smoking,tt0185937\nETqX2DZqAN8,1969.0,7,8,2012,The Assassination Bureau,Ivan Rescues Sonya,tt0064045\nArSEv2hjwzE,1969.0,6,8,2012,The Assassination Bureau,I've Nearly Been Killed,tt0064045\nCKJcpp8ff44,1969.0,8,8,2012,The Assassination Bureau,We Only Kill to Destroy Evil,tt0064045\n6_Onrl4g6H4,1999.0,5,8,2012,The Blair Witch Project,It's the Same Log,tt0185937\n3Dit-yAwTgY,1969.0,5,8,2012,The Assassination Bureau,Sausage Bomb,tt0064045\ns0_sBamhlIs,1969.0,2,8,2012,The Assassination Bureau,\"Quick, Break Open the Door\",tt0064045\nIypE3rPP4sc,1969.0,3,8,2012,The Assassination Bureau,Merit of Surprise,tt0064045\nWRtOCCfKEvQ,1969.0,4,8,2012,The Assassination Bureau,What Was in That Case?,tt0064045\ntIB4z4uMeNs,1969.0,1,8,2012,The Assassination Bureau,You Want My Life,tt0064045\nj2lG-WtrrsA,2003.0,4,9,2012,The Big Empty,Candy 4 U,tt0321442\nd8FIxfJaAYM,2003.0,2,9,2012,The Big Empty,Dan the Conspiracy Theory Man,tt0321442\ncmYsRcLMvO8,1999.0,8,8,2012,The Blair Witch Project,The House,tt0185937\nep7wuwsdgqA,2003.0,1,9,2012,The Big Empty,The Blue Suitcase,tt0321442\nE6jJUN52anM,2003.0,9,9,2012,The Big Empty,I'm Just a Cowboy,tt0321442\n1c15w3kCHkw,2003.0,7,9,2012,The Big Empty,Quiet Desperation,tt0321442\nDKMzt447niI,2003.0,8,9,2012,The Big Empty,A Tough Old Road,tt0321442\n2m_lqGnLtWA,1999.0,7,8,2012,The Blair Witch Project,Apology,tt0185937\nn4hHWb2UUQI,2003.0,3,9,2012,The Big Empty,Whip Cream and Jack Daniels,tt0321442\nn3F7_uaZUzU,2003.0,6,9,2012,The Big Empty,The Man in Black,tt0321442\nD8e-_q_iG6Q,2003.0,5,9,2012,The Big Empty,Pistol vs. Chainsaw,tt0321442\nbKy6BtAbTU8,1999.0,3,8,2012,The Blair Witch Project,I Don't Have the Map,tt0185937\nnLKymV5rwAU,1999.0,4,8,2012,The Blair Witch Project,Please Help Us!,tt0185937\nntgrRUML2ic,1999.0,1,8,2012,The Blair Witch Project,Blair Witch Interviews,tt0185937\n5ZHYDynRjV4,1999.0,2,8,2012,The Blair Witch Project,Looks Like an Indian Burial Ground,tt0185937\nw7ZY9tqDsEc,1994.0,9,9,2012,The Browning Version,I Am Sorry,tt0109340\nL4fJ1ht5TJM,1994.0,8,9,2012,The Browning Version,A Special Meaning,tt0109340\nCcPqBfuXdCo,1994.0,7,9,2012,The Browning Version,Cunning Little Brat,tt0109340\n92qwWy1aKH4,1994.0,6,9,2012,The Browning Version,It's for You,tt0109340\nsQFqzFD78Ck,1994.0,5,9,2012,The Browning Version,Soul Destroying,tt0109340\n9H1gvvzRk9o,1994.0,4,9,2012,The Browning Version,Aren't You Going to Say Hello?,tt0109340\nJlbIb4XdF4M,1994.0,3,9,2012,The Browning Version,Looking Forward to Change,tt0109340\nu74DpEZeHbg,1994.0,2,9,2012,The Browning Version,I Feel Sorry For Him,tt0109340\nqDJg1qnedF4,1958.0,7,7,2012,The Buccaneer,Taking the Fall,tt0051436\n2Yu7LGZcPus,1958.0,4,7,2012,The Buccaneer,Only One Throat I'd Like to Slice,tt0051436\nfSqvtspQonw,1994.0,1,9,2012,The Browning Version,You Must Unfix It,tt0109340\nSkEOY1s78e4,1958.0,6,7,2012,The Buccaneer,Proposition,tt0051436\ngqU37m6uoFw,1958.0,5,7,2012,The Buccaneer,No Surrender,tt0051436\njBYxPuIGu_o,1958.0,2,7,2012,The Buccaneer,An Honorable Man,tt0051436\nvfW0mLeRXe8,1958.0,3,7,2012,The Buccaneer,Hanging Captain Brown,tt0051436\n-uhpev-dp2M,1991.0,3,8,2012,The Butcher's Wife,Marina Reads Alex,tt0101523\nFEddJ-WcZfU,1958.0,1,7,2012,The Buccaneer,A Pirate's Market,tt0051436\noWuYilt9hX8,1991.0,8,8,2012,The Butcher's Wife,Life is Messy!,tt0101523\n2CcanSjYzlM,1991.0,7,8,2012,The Butcher's Wife,Commit to This Affair!,tt0101523\n-i9mrpATCms,1991.0,6,8,2012,The Butcher's Wife,Countertransference,tt0101523\n7Qe11Thhwvs,1991.0,5,8,2012,The Butcher's Wife,The Split-Apart Story,tt0101523\nsOesH75ggbQ,1991.0,2,8,2012,The Butcher's Wife,Leo Falls in Love,tt0101523\nnhKgGtFIqXY,1991.0,1,8,2012,The Butcher's Wife,Dowdy and Plain,tt0101523\nIomS4eaONdg,1991.0,4,8,2012,The Butcher's Wife,I Got This Feeling for You,tt0101523\nR-PAimSAL08,2003.0,7,9,2012,The Core,Crystal Grand Canyon,tt0298814\njr7HNZg0ljU,2003.0,2,9,2012,The Core,The Earth Will Be Cooked,tt0298814\njK0s7zfdDOc,2003.0,8,9,2012,The Core,The Golden Gate Bridge Melts,tt0298814\nZkynnGqL7QM,2003.0,5,9,2012,The Core,Drilling In,tt0298814\n6BGmQ21EekY,2003.0,6,9,2012,The Core,Empty Space,tt0298814\nQz836czauEk,2003.0,4,9,2012,The Core,Rome Destroyed,tt0298814\nMAu2e0VbvY4,2003.0,1,9,2012,The Core,The Birds,tt0298814\n0x05PrIasjk,2003.0,9,9,2012,The Core,Braz Burns Alive,tt0298814\nb_HhiU1mOwU,2003.0,3,9,2012,The Core,Unobtainium,tt0298814\ntenCir3A3cE,2005.0,10,10,2012,The Descent,The Killing Floor,tt0435625\nlRjxk7z0kOQ,2005.0,8,10,2012,The Descent,Blood Bath,tt0435625\nRkH6Q6d8ihA,2005.0,9,10,2012,The Descent,Sudden Death,tt0435625\n01X3KxC5GfM,2005.0,7,10,2012,The Descent,Words of Warning,tt0435625\nYiD9zhs0Lt8,2005.0,6,10,2012,The Descent,The Creature Looks Human,tt0435625\nGq3WJ-sJj7I,2005.0,5,10,2012,The Descent,Fighting Back,tt0435625\nEOSJ6vijGyo,2005.0,4,10,2012,The Descent,Holly's Death,tt0435625\nV7-kCVemvVI,2005.0,3,10,2012,The Descent,Juno's Descent,tt0435625\nHbdxvncHvCs,2005.0,1,10,2012,The Descent,A Rock and a Hard Place,tt0435625\nfaZ88f6Gfzc,2005.0,2,10,2012,The Descent,\"If We Stay Here, We'll Die\",tt0435625\nUnSxnVp8FzM,1996.0,7,8,2012,The Evening Star,Make A Wish,tt0116240\ncJeYngoI1oA,1996.0,8,8,2012,The Evening Star,I Was Loved,tt0116240\n0mwMM8VrYmw,1996.0,5,8,2012,The Evening Star,A Call to Granny,tt0116240\nvq8OmtyOsR8,1996.0,6,8,2012,The Evening Star,It's Important to Have Enemies,tt0116240\ns5XdRd5SQIw,1996.0,3,8,2012,The Evening Star,Tommy Takes the Brownies,tt0116240\nHv-n7C1EU3U,1996.0,2,8,2012,The Evening Star,Do You Want to Sleep With Me?,tt0116240\nlp0FOpFdWi8,1996.0,4,8,2012,The Evening Star,Lola Meet Aurora,tt0116240\nbAyb9cEDh2E,1996.0,1,8,2012,The Evening Star,Once Upon a Time We Were a Family,tt0116240\njFP9_AxrurA,2010.0,9,12,2012,The Expendables,Beating an Army,tt1320253\nz0j4sVZHUdo,2010.0,12,12,2012,The Expendables,Knife Throwing Poetry,tt1320253\nxEIhAu0v-kU,2010.0,11,12,2012,The Expendables,Saving Sandra,tt1320253\ntQkTtnCV1n4,2010.0,10,12,2012,The Expendables,Toll Road vs. Paine,tt1320253\nz8lDbb_76Ug,2010.0,7,12,2012,The Expendables,Yin vs. Gunner,tt1320253\nac6FZ59tna4,2010.0,4,12,2012,The Expendables,Blowing Up the Dock,tt1320253\n6SyjoKS9CXM,2010.0,6,12,2012,The Expendables,Truck Bed Chase,tt1320253\nsVbhGDytHk4,2010.0,5,12,2012,The Expendables,Basketball Brawl,tt1320253\n2TWpil1VJ8I,2010.0,8,12,2012,The Expendables,Omya Kaboom,tt1320253\nShB8ZLISubA,2010.0,2,12,2012,The Expendables,Old Friends,tt1320253\nq9n96my-QzI,2010.0,1,12,2012,The Expendables,Greedy Pirates,tt1320253\nuAO727Dw9hg,2010.0,3,12,2012,The Expendables,Catching a Flight,tt1320253\n25_Kvrl7agM,1987.0,9,9,2012,The Gate,Destroying the Demon Lord,tt0093075\nUOOGD4DLy-0,1987.0,8,9,2012,The Gate,Eye Hand,tt0093075\nCKGHiP4bs84,1987.0,7,9,2012,The Gate,Go Get Dad's Gun!,tt0093075\n2mXAB3HO160,1987.0,4,9,2012,The Gate,The Old Gods!,tt0093075\nYOtz3kdBKW8,1987.0,5,9,2012,The Gate,You've Been Bad!,tt0093075\nZ8leMw24Nbc,1987.0,6,9,2012,The Gate,The Gods Attack,tt0093075\n0SMMbr2kXc8,1987.0,3,9,2012,The Gate,I Looooove You...,tt0093075\nVOVOizcl4Gc,1987.0,1,9,2012,The Gate,Treehouse of Horror,tt0093075\nEmeHbU_s7Cg,1987.0,2,9,2012,The Gate,Levitating Glen,tt0093075\n8ZYQejxdHdc,2000.0,6,8,2012,The Gift,Donnie Gets Cross-Examined,tt0219699\nr8zjtGUA6tU,2000.0,5,8,2012,The Gift,,tt0219699\nuY9VcYt2bKE,2000.0,8,8,2012,The Gift,Buddy Cole is Dead,tt0219699\ndaPR5OjY6bI,2000.0,7,8,2012,The Gift,Returning to the Crime Scene,tt0219699\n8TG4sr_y-Ys,2000.0,4,8,2012,The Gift,Why Didn't You Help Me?,tt0219699\nnQunClrM4co,2000.0,1,8,2012,The Gift,Happily Ever After,tt0219699\nzgEYrXfWhWs,2000.0,3,8,2012,The Gift,Annie's Vision,tt0219699\nfMI2u6Jp1FE,2000.0,2,8,2012,The Gift,Buddy's Breakdown,tt0219699\nbW0aNTB523c,1969.0,9,10,2012,The Italian Job,Dumping the Mini-Coopers,tt0064505\nV3s3OXOzoH4,1969.0,1,10,2012,The Italian Job,Lamborghini Destroyed,tt0064505\n5ntVWRhfqo0,1969.0,2,10,2012,The Italian Job,Shooting Tigers,tt0064505\nRtWkewqIFDM,1969.0,6,10,2012,The Italian Job,Mini-Cooper Chase,tt0064505\n3hcmGG6VUsU,1969.0,4,10,2012,The Italian Job,Wrecking the Aston Martin,tt0064505\nsOGhuhC4AF0,1969.0,8,10,2012,The Italian Job,Get The Wheels In Line,tt0064505\nHZCaSyid4m0,1969.0,10,10,2012,The Italian Job,Cliffhanger,tt0064505\nGHRFqRbAx1o,1969.0,5,10,2012,The Italian Job,Gold Heist,tt0064505\nT_ZImfAxOu0,1969.0,7,10,2012,The Italian Job,Look For The Bloody Exit,tt0064505\n7_PX1cVuaVA,1969.0,3,10,2012,The Italian Job,You Were Only Supposed To Blow The Bloody Doors Off!,tt0064505\ndf1mSOyvsXU,1976.0,8,8,2012,The Last Tycoon,I Don't Want To Lose You,tt0074777\n_8GB76HyNNU,1976.0,7,8,2012,The Last Tycoon,Hitting Ten Million Dollars,tt0074777\nisgx4Srs9t8,1976.0,6,8,2012,The Last Tycoon,I'm Gonna Tell Ya What I Really Think,tt0074777\neC2O1zsfn2c,1976.0,5,8,2012,The Last Tycoon,Nor I You,tt0074777\nTqL70V8rn9I,1976.0,4,8,2012,The Last Tycoon,Making Pictures,tt0074777\nFIGm0YdXotI,1976.0,3,8,2012,The Last Tycoon,Undertake Me,tt0074777\nCSwnlwsBAFU,1976.0,1,8,2012,The Last Tycoon,I Want To Do It Again,tt0074777\n6lw33XpYhGs,1976.0,2,8,2012,The Last Tycoon,Earthquake!,tt0074777\nprGnVwLgxPc,2005.0,1,12,2012,The Long Weekend,We Can Work It Out,tt0385057\nHwHADsTOVMs,2005.0,12,12,2012,The Long Weekend,Shakespeare's Hamlet,tt0385057\nFqeo-bUOueA,2005.0,9,12,2012,The Long Weekend,A Hell of a 48 Hours,tt0385057\nOgU8mEFGcfA,2005.0,8,12,2012,The Long Weekend,How'd You Know Her Name?,tt0385057\nf-zgBlWksMc,2005.0,7,12,2012,The Long Weekend,Release My Brother,tt0385057\nrILBK11XLA0,2005.0,6,12,2012,The Long Weekend,Here's to Bad Dates,tt0385057\nCg6X7ukYzTo,2005.0,10,12,2012,The Long Weekend,Cooper Prays,tt0385057\nI0jMv9vF9MI,2005.0,3,12,2012,The Long Weekend,I'm a Nurse,tt0385057\nTnUS6tDANfc,2005.0,11,12,2012,The Long Weekend,The Big Pitch,tt0385057\npbSX1diNIlY,2005.0,5,12,2012,The Long Weekend,The Laundromat and the Gym,tt0385057\ntJimPUh3vmQ,2009.0,9,9,2012,The Lovely Bones,You Wrote Me A Poem Once,tt0380510\n8d6AniF_vxg,2005.0,2,12,2012,The Long Weekend,Dead Animals,tt0385057\nq0DZLuG2FiI,2005.0,4,12,2012,The Long Weekend,Pretending to Be Priests,tt0385057\n_k8uSp3-900,2009.0,2,9,2012,The Lovely Bones,\"You Are Beautiful, Susie Salmon\",tt0380510\n5y719xX1I5U,2009.0,8,9,2012,The Lovely Bones,Lindsey Finds Evidence,tt0380510\nSfL4U_bOGvc,2009.0,6,9,2012,The Lovely Bones,Jack Realizes the Truth,tt0380510\nrGR6aO4JsH0,2009.0,7,9,2012,The Lovely Bones,I Willed Him To Stop,tt0380510\nFKj1vfHB2i0,2009.0,5,9,2012,The Lovely Bones,She's Gone,tt0380510\nM-APah17AQA,2009.0,3,9,2012,The Lovely Bones,\"I'm Not Gonna Hurt You, Susie\",tt0380510\nNc_b69ag6Eo,2009.0,4,9,2012,The Lovely Bones,Last Wednesday,tt0380510\nxam8pRUej7A,2009.0,1,9,2012,The Lovely Bones,A Thing of Beauty,tt0380510\nwXnYmZhdm04,1998.0,7,8,2012,The Odd Couple 2,The Man is Dead,tt3595776\njepTSaMF2ZM,1998.0,8,8,2012,The Odd Couple 2,Déjà Vu,tt3595776\n0q3BH18BmZI,1998.0,6,8,2012,The Odd Couple 2,New Underwear,tt3595776\nj6_umKYN_JU,1998.0,4,8,2012,The Odd Couple 2,Why Don't We Call Budget?,tt3595776\nhsE1N5mfvmA,1998.0,5,8,2012,The Odd Couple 2,A Couple of Pillsbury Doughboys,tt3595776\nlJIPM69YQNY,1998.0,3,8,2012,The Odd Couple 2,Open the Window,tt3595776\nA4ktp_9Q5Es,1998.0,1,8,2012,The Odd Couple 2,My Kid is Getting Married,tt3595776\nPv4M77BcywE,1998.0,2,8,2012,The Odd Couple 2,When Oscar Meets Felix,tt3595776\nk4DsinIrAjQ,1974.0,2,10,2012,The Parallax View,\"Reporting the News, Not Creating It\",tt0071970\nWcZSEqj45Ws,1974.0,10,10,2012,The Parallax View,One Way Out,tt0071970\nI1OmcMDFR0Y,1974.0,9,10,2012,The Parallax View,Hammond's Assassination,tt0071970\n0iSD31ToSC8,1974.0,7,10,2012,The Parallax View,Boating Accident,tt0071970\nhN952f_jn8E,1974.0,8,10,2012,The Parallax View,Recruitment Test,tt0071970\nV9jD7kLAmPM,1974.0,5,10,2012,The Parallax View,Warning Sign,tt0071970\nraLZ6l174_k,1974.0,6,10,2012,The Parallax View,Cop Car Chase,tt0071970\n2RQNDXuAIJI,1974.0,4,10,2012,The Parallax View,Don't Touch Me Unless You Love Me,tt0071970\ncfILhtwu9S0,2004.0,1,8,2012,The Perfect Score,Standardized Testing Is Taking Over,tt0314498\nVF609NvGcCM,2008.0,5,10,2012,Transporter 3,Car Wheelie,tt1129442\nWwHpeDtSMmc,2001.0,2,9,2012,The Score,The Negotiation,tt0227445\nLfDjQe0B7Tw,2008.0,1,10,2012,Transporter 3,Piano Brawl,tt1129442\nygOrLkyfHsw,2005.0,2,9,2012,\"Yours, Mine and Ours\",How Many Kids Do You Have?,tt0443295\nWEScYukcD1Y,1974.0,3,10,2012,The Parallax View,Somebody's Trying to Kill Me,tt0071970\nTrxSTI517Iw,2004.0,8,8,2012,The Perfect Score,Desmond's Mom,tt0314498\nKoNukbGYfFY,1974.0,1,10,2012,The Parallax View,Space Needle Assassination,tt0071970\narfamPuUOek,2004.0,5,8,2012,The Perfect Score,Planning the Heist,tt0314498\nshO2tSVK0IU,2004.0,6,8,2012,The Perfect Score,Masks,tt0314498\n_ewnZCc0imw,2004.0,7,8,2012,The Perfect Score,Trust Each Other's Talent,tt0314498\nI-xX6foX9zw,2004.0,4,8,2012,The Perfect Score,That Scene In The Breakfast Club,tt0314498\nhdVQlYgFRuM,2004.0,2,8,2012,The Perfect Score,I Have an Idea,tt0314498\nLTqaoTSCTc0,2004.0,3,8,2012,The Perfect Score,Copy It,tt0314498\nrz41nM47q7Y,1988.0,9,9,2012,The Presidio,Making Things Right,tt0095897\nvXsKVaJTQCA,1988.0,6,9,2012,The Presidio,\"Like Whoa, Man\",tt0095897\nbQInfO7fE-s,1988.0,8,9,2012,The Presidio,Factory Pursuit,tt0095897\n_BMYVDOOQ0E,1988.0,3,9,2012,The Presidio,Car Love,tt0095897\nGpEhxhSoFAU,1988.0,5,9,2012,The Presidio,\"I'd Like You to Resist Arrest, Just a Little\",tt0095897\nM9CkGS1O5WM,1988.0,2,9,2012,The Presidio,\"You Wanna Die, Cop?\",tt0095897\n9Dka54jH9po,1988.0,4,9,2012,The Presidio,My Right Thumb,tt0095897\n7_OHC_nqFQ8,1988.0,7,9,2012,The Presidio,Drunk Old Guard Dogs,tt0095897\nI_xrNryhq1Y,1988.0,1,9,2012,The Presidio,San Francisco Chase,tt0095897\nWrs-qNpKvbE,2004.0,7,8,2012,The Prince & Me,A Royal Horse Ride,tt0337697\n7rN0Kk3eUSo,2004.0,8,8,2012,The Prince & Me,Goodbye,tt0337697\nUBbsHeltzEE,2004.0,6,8,2012,The Prince & Me,Paige Is in Love,tt0337697\n0AslM2bC5DY,2004.0,4,8,2012,The Prince & Me,A First Kiss,tt0337697\ng2atr8aQ0zg,2004.0,3,8,2012,The Prince & Me,A Shakespeare Lesson,tt0337697\n-L9EZRMgmXM,2004.0,5,8,2012,The Prince & Me,The Truth About Eddie,tt0337697\nrYjtudWe7O0,2001.0,8,9,2012,The Score,Heist Confrontation,tt0227445\nbOKID-aX3z8,2004.0,2,8,2012,The Prince & Me,Put a Shirt On,tt0337697\niv2j0CJkzbM,2004.0,1,8,2012,The Prince & Me,Take Your Top Off for Me,tt0337697\n9aPhLF7yfU8,2001.0,9,9,2012,The Score,Switching Sceptres,tt0227445\nYALDmRKFYSk,2001.0,6,9,2012,The Score,Old Loyalties,tt0227445\n4IOwJNyILNI,2001.0,7,9,2012,The Score,I Got Company,tt0227445\nodEociFdDN4,2001.0,5,9,2012,The Score,Cousins in the Park,tt0227445\nABpeiNlMOHU,2001.0,4,9,2012,The Score,Mother!,tt0227445\nph2dq-pPBnA,2001.0,3,9,2012,The Score,A Toast to Changes,tt0227445\nOkVJ0KvOV60,2001.0,1,9,2012,The Score,Brian,tt0227445\nnd3MVcbnfAc,2002.0,8,8,2012,The Time Machine,What If?,tt0268695\n61xq5Kja1Uo,2002.0,5,8,2012,The Time Machine,All the Years of Remembering,tt0268695\nJwaw24W2bW0,2002.0,7,8,2012,The Time Machine,\"800,000 Years of Evolution\",tt0268695\nRkc09sTiS7g,2002.0,3,8,2012,The Time Machine,\"Time Travel, Practical Application\",tt0268695\nKHPPeGoWDEU,2002.0,6,8,2012,The Time Machine,The Morlocks' Diet,tt0268695\n2KGv86GLvXo,2002.0,4,8,2012,The Time Machine,The Morlocks,tt0268695\nD6uIONVMTxE,2002.0,1,8,2012,The Time Machine,The First Attempt,tt0268695\nW9SemYK9HEw,2002.0,2,8,2012,The Time Machine,Going Forward,tt0268695\njMv808xIuwg,2002.0,9,9,2012,The Tuxedo,Don't Move!,tt0290095\n6oUQEh-Xji0,2002.0,8,9,2012,The Tuxedo,Tux vs. Tux,tt0290095\nQUVhbRmhn_w,2002.0,6,9,2012,The Tuxedo,The Last Emperor of Soul,tt0290095\nJc0r-WTEnzc,2002.0,4,9,2012,The Tuxedo,Confidence,tt0290095\nV7u623DEJD4,2002.0,7,9,2012,The Tuxedo,Pants Only Defense,tt0290095\nc94JyVrcWwE,2002.0,2,9,2012,The Tuxedo,Skateboard Bomb,tt0290095\npxy0q9dp1GA,2002.0,5,9,2012,The Tuxedo,You Killed James Brown,tt0290095\n9GF-YNA-iTM,2002.0,3,9,2012,The Tuxedo,Suit Demonstration,tt0290095\n3XK3y_S1kP8,2002.0,1,9,2012,The Tuxedo,Just Not My Day,tt0290095\n6BS2yXD9Ggo,2003.0,10,10,2012,The United States of Leland,Getting Clean,tt0301976\nas_lXF3HqCY,2003.0,9,10,2012,The United States of Leland,None of Your Concern,tt0301976\nioznxKkY_IE,2003.0,7,10,2012,The United States of Leland,Only Human,tt0301976\n58qDZgvh3jk,2003.0,8,10,2012,The United States of Leland,All of Their Sadness,tt0301976\nfARjlj6q1uU,2003.0,4,10,2012,The United States of Leland,Earl the Pearl,tt0301976\nljdH53Ro0xQ,2003.0,5,10,2012,The United States of Leland,Lazy Angels,tt0301976\n50cIB7qKfnk,2003.0,6,10,2012,The United States of Leland,Something That Happened,tt0301976\n9ac3upRnOl8,2003.0,3,10,2012,The United States of Leland,First Day of Class,tt0301976\ni1n8bNgTUTw,2003.0,1,10,2012,The United States of Leland,The Most Important Stuff,tt0301976\nNAH_6By9C7g,2003.0,2,10,2012,The United States of Leland,Aren't You an Actor?,tt0301976\nA4Sywg8Yw4Q,1999.0,5,9,2012,The Virgin Suicides,Crazy On You,tt0159097\nuLkxV_gyYbI,1999.0,1,9,2012,The Virgin Suicides,The Five Lisbon Sisters,tt0159097\nidKzxvXO9_8,1999.0,7,9,2012,The Virgin Suicides,Impossible Excursions,tt0159097\nX2YdsIm2Pj8,1999.0,8,9,2012,The Virgin Suicides,Call Us,tt0159097\ngaoBscEDdzM,1999.0,6,9,2012,The Virgin Suicides,Homecoming Dance,tt0159097\n9qEoK4PYN5I,1999.0,9,9,2012,The Virgin Suicides,These Girls Make Me Crazy,tt0159097\nLwvvOrYPcuM,1999.0,2,9,2012,The Virgin Suicides,Cecilia's Fall,tt0159097\nQq2TXAE-Ih8,1999.0,3,9,2012,The Virgin Suicides,We Started to Learn About Their Lives,tt0159097\nglz-J_geNNI,1999.0,4,9,2012,The Virgin Suicides,Magic Man,tt0159097\ngW3KZsBwQzw,2002.0,6,8,2012,The Wild Thornberrys Movie,Debbie's New Friend,tt0282120\nWlaQZKko8bk,2002.0,8,8,2012,The Wild Thornberrys Movie,Let's Dance,tt0282120\nOzCu7Cvdsjc,2002.0,5,8,2012,The Wild Thornberrys Movie,Food Fight,tt0282120\nnHyK6uFdDWY,2002.0,7,8,2012,The Wild Thornberrys Movie,I Can Talk To Animals,tt0282120\n2KuNMLOKUXE,2002.0,3,8,2012,The Wild Thornberrys Movie,Preparing for Boarding School,tt0282120\nM8LDQ6M_CBs,2002.0,4,8,2012,The Wild Thornberrys Movie,New Roommate,tt0282120\nEm8I02rqbhw,1999.0,9,9,2012,The Wood,A Toast to,tt0161100\nQKEMn5rTRL4,2002.0,2,8,2012,The Wild Thornberrys Movie,Debbie Tattles on Eliza,tt0282120\nKuwa9UzfMGg,2002.0,1,8,2012,The Wild Thornberrys Movie,Stampede!,tt0282120\nsfHaTenaRBI,1999.0,6,9,2012,The Wood,I Love Lisa ?,tt0161100\nn16wkJDq2VQ,1999.0,8,9,2012,The Wood,The Wedding Is On,tt0161100\nKVt9YlotsuY,1999.0,7,9,2012,The Wood,The Things Men Do for Sex,tt0161100\nd-nJUGK8ABk,1999.0,3,9,2012,The Wood,Learning to Dance,tt0161100\n2LeVu2F6s4g,1999.0,5,9,2012,The Wood,Dancing with Alicia,tt0161100\n-e6lEsIUf3U,1999.0,4,9,2012,The Wood,Hold-Up,tt0161100\nKzWronMcXR8,1999.0,2,9,2012,The Wood,This is My Fight,tt0161100\nLBU5Yu6RFBY,1999.0,1,9,2012,The Wood,The Bet,tt0161100\nex65__9m7f0,2007.0,8,10,2012,Things We Lost in the Fire,Reaching Out,tt0469623\n6IPcEITrktA,2007.0,7,10,2012,Things We Lost in the Fire,Playing Hooky,tt0469623\npe8vv-fGpWk,2007.0,4,10,2012,Things We Lost in the Fire,It Should Have Been You,tt0469623\n4dp5Q3B20aE,2007.0,10,10,2012,Things We Lost in the Fire,He's Gone,tt0469623\nqaQUmqNJTO8,2007.0,2,10,2012,Things We Lost in the Fire,Raincheck,tt0469623\np6LXVK9rPbw,2007.0,9,10,2012,Things We Lost in the Fire,You Are Beautiful,tt0469623\nK44KlE3sSMM,2007.0,5,10,2012,Things We Lost in the Fire,What's Heroin Like?,tt0469623\nVpOmvE4sLUY,2007.0,3,10,2012,Things We Lost in the Fire,Breathe and Count to Ten,tt0469623\nUg0QqktJ5tc,2007.0,6,10,2012,Things We Lost in the Fire,That Wasn't Your Moment,tt0469623\nVwfXJVjptt0,2007.0,1,10,2012,Things We Lost in the Fire,I Hated You,tt0469623\no3uf4YSwY9I,2003.0,1,8,2012,Timeline,You Make Your Own History,tt0300556\nhcUVOlbNb30,2003.0,8,8,2012,Timeline,A Little Surprise for the French,tt0300556\nVEwLgrpyamQ,2003.0,6,8,2012,Timeline,I Thought You Were Dead,tt0300556\nRdIAtsbwb00,2003.0,5,8,2012,Timeline,Trapped in the Past,tt0300556\n3H9TofuarsE,2003.0,7,8,2012,Timeline,Greek Fire,tt0300556\nHsi4X9MxtkY,2003.0,4,8,2012,Timeline,The Journey to 1357 AD,tt0300556\nOdL9R0ZODYs,2003.0,3,8,2012,Timeline,We Discovered a Worm Hole,tt0300556\n3kfnzu3RrFM,2003.0,2,8,2012,Timeline,Weird Findings,tt0300556\n1U9wqQ9a8GU,2008.0,7,10,2012,Transporter 3,Valentina's Story,tt1129442\nYlwAVV3dC2o,2008.0,8,10,2012,Transporter 3,\"He Leaves, He Blows, He Stays, He Drowns\",tt1129442\nk8QQCwXyVbI,2008.0,6,10,2012,Transporter 3,Striptease for the Keys,tt1129442\nB3nAwyocJs0,2008.0,10,10,2012,Transporter 3,Not a Good Fit,tt1129442\nFOAj7BE1VEg,2008.0,9,10,2012,Transporter 3,Catching the Train,tt1129442\nVz04LQ7GGzc,2008.0,4,10,2012,Transporter 3,Bike Chase,tt1129442\ngknxRGof8Pc,2008.0,2,10,2012,Transporter 3,Garage Royale,tt1129442\n9a3z1lvLLng,2008.0,3,10,2012,Transporter 3,The Big One,tt1129442\nAqqc9H83ECk,1999.0,9,9,2012,Varsity Blues,Billy Bob's Touchdown,tt0139699\neKbXO0f-mvw,1999.0,8,9,2012,Varsity Blues,No Huddle Offense,tt0139699\nRjdPAElUs9E,1999.0,2,9,2012,Varsity Blues,Beer Can Challenge,tt0139699\nUtRR6sLexR8,1999.0,6,9,2012,Varsity Blues,One for Wendell,tt0139699\nqbIEepu8Z4w,1999.0,7,9,2012,Varsity Blues,Coach Kilmer's Final Game,tt0139699\nLoT3AimKXmk,1999.0,4,9,2012,Varsity Blues,The Whipped Cream Bikini,tt0139699\nLHrkO46ERP8,1999.0,5,9,2012,Varsity Blues,Playing Hungover,tt0139699\nXFOoJ3gwplQ,1999.0,3,9,2012,Varsity Blues,Harbor Goes Down,tt0139699\nANYJbKdMHk8,1999.0,1,9,2012,Varsity Blues,Second String,tt0139699\nr_a34DBcwCE,1973.0,6,9,2012,Walking Tall,Traitor,tt0070895\nDLuROR8kLy8,1973.0,9,9,2012,Walking Tall,We'll Get the Rest of Them Buford!,tt0070895\nZkpC7VsyqaE,1973.0,2,9,2012,Walking Tall,I Thought You Walked Tall!,tt0070895\nWhZEKkpf3CU,1973.0,8,9,2012,Walking Tall,Crashing The Lucky Spot,tt0070895\n3l7-8yvdTLE,1973.0,4,9,2012,Walking Tall,The Verdict,tt0070895\nKVDtV-uVRq0,1973.0,5,9,2012,Walking Tall,Chased by the Sheriff,tt0070895\no-e8eejeHLA,1973.0,7,9,2012,Walking Tall,Road Ambush,tt0070895\nKNip2ZamrMc,1973.0,1,9,2012,Walking Tall,Buford Catches A Cheater,tt0070895\nq9iIgRYUyA0,1973.0,3,9,2012,Walking Tall,\"3,630 Dollars You Owe Me\",tt0070895\nL6YJkhVYUXs,1956.0,5,9,2012,War and Peace,Think of Me,tt0049934\nXm6JHSUoLpY,1956.0,7,9,2012,War and Peace,The Invasion,tt0049934\n-KOG8edoC00,1956.0,9,9,2012,War and Peace,You've Come Back,tt0049934\nZWSHjks0ESI,1956.0,8,9,2012,War and Peace,The Hardest Thing is to Keep Alive at Sunset,tt0049934\njihDFIqNz1s,1956.0,6,9,2012,War and Peace,War is the Most Horrible Thing in Life,tt0049934\n4XpFpGcTh1s,1956.0,4,9,2012,War and Peace,The Dance,tt0049934\naTTbCJmc3Cg,1956.0,3,9,2012,War and Peace,A Moonlight Night,tt0049934\nEV5W98Ql4vQ,1956.0,1,9,2012,War and Peace,The Greatest Pleasures,tt0049934\nYJbQz3bTn6I,1956.0,2,9,2012,War and Peace,The Duel,tt0049934\nyvcIugB8yt4,1955.0,8,9,2012,We're No Angels,Lovesick Isabelle,tt0048801\nQ-xBDej7O6M,1955.0,9,9,2012,We're No Angels,I Love Only You Three,tt0048801\nWgBb0YoMp1g,1955.0,6,9,2012,We're No Angels,The Only Mistake I Ever Made Was Getting Caught,tt0048801\nxQOZMIbnpMc,1955.0,7,9,2012,We're No Angels,A Change of Heart,tt0048801\nP3QI8hTpxl8,1955.0,4,9,2012,We're No Angels,A Gifted Salesman,tt0048801\nEL9EJL3O7bU,1955.0,5,9,2012,We're No Angels,Don't Hurt the People You Love,tt0048801\nI2UTg_bYu68,1955.0,3,9,2012,We're No Angels,A Disappointing Letter,tt0048801\ntcCo38aP8qc,1955.0,1,9,2012,We're No Angels,An Extremely Handsome Woman,tt0048801\nckAD2sg5SxQ,1955.0,2,9,2012,We're No Angels,A Talk About Marriage,tt0048801\nNvuCGs9iYSk,1997.0,5,10,2012,Wishmaster,You'd Have to Go Through Me,tt0120524\nNWfz4zLi640,1997.0,9,10,2012,Wishmaster,Houdini Did It,tt0120524\ntqfFZYur4sM,1997.0,10,10,2012,Wishmaster,Wish You Were Dead,tt0120524\nDW3d5hYgV_Q,1997.0,7,10,2012,Wishmaster,Face to Face,tt0120524\nwpA9m3t6bNY,1997.0,8,10,2012,Wishmaster,I Am Despair,tt0120524\nF6RpbWC4-L0,1997.0,4,10,2012,Wishmaster,The Face of Fear Itself,tt0120524\nlqA3TgVtN-Q,1997.0,6,10,2012,Wishmaster,What's My Limit?,tt0120524\noa1LGWv3zkA,1997.0,2,10,2012,Wishmaster,Get Cancer and Die,tt0120524\nLWP0KujKOKY,1997.0,3,10,2012,Wishmaster,The Djinn's New Face,tt0120524\n5Rp-dpnsqUo,2006.0,5,11,2012,Wristcutters: A Love Story,The Guy in the Back Seat,tt0477139\n8Z60zTp6Izo,1997.0,1,10,2012,Wishmaster,You Awoke Me,tt0120524\n4TSoSMLHTi0,2006.0,3,11,2012,Wristcutters: A Love Story,Meeting Mikal,tt0477139\nFXZ3JnwIph0,2006.0,7,11,2012,Wristcutters: A Love Story,Call Me Kneller,tt0477139\n3OHisdS9LXs,2006.0,10,11,2012,Wristcutters: A Love Story,\"Reunited,\",tt0477139\nWeVMy5j7ykc,2006.0,11,11,2012,Wristcutters: A Love Story,Desiree's Story,tt0477139\ni5znTCoKLPI,2006.0,8,11,2012,Wristcutters: A Love Story,Crooked Tree,tt0477139\nk0tc08W_t-Y,2006.0,4,11,2012,Wristcutters: A Love Story,Here By Mistake,tt0477139\nqkvQOEJKHNk,2006.0,9,11,2012,Wristcutters: A Love Story,Midnight Beach,tt0477139\nOp9k4MLjKSQ,2006.0,1,11,2012,Wristcutters: A Love Story,Dead and Lovely,tt0477139\njaSs0dUv0zQ,2006.0,2,11,2012,Wristcutters: A Love Story,Cottage Cheese,tt0477139\nGg3woGs9ZGY,2006.0,6,11,2012,Wristcutters: A Love Story,No Exit,tt0477139\nWGBw3zwzqwI,1988.0,9,10,2012,Young Guns,I'm Gonna Kill Billy the Kid,tt0096487\n-Zr-B5aIEvE,1988.0,10,10,2012,Young Guns,Reap It!,tt0096487\niX1ha-hADlU,1988.0,8,10,2012,Young Guns,Chavez's Vision,tt0096487\nUqvuJLOCSxc,1988.0,7,10,2012,Young Guns,Let's Dance,tt0096487\nPII5jcf950Q,1988.0,6,10,2012,Young Guns,The Peyote Trip,tt0096487\nH2iK5QHr3Is,1988.0,4,10,2012,Young Guns,He's a Spy!,tt0096487\nF5ZP1m4J0H4,1988.0,5,10,2012,Young Guns,The Peyote Ritual,tt0096487\nOhtKiOEZBJY,1988.0,3,10,2012,Young Guns,Bathroom Arrest,tt0096487\n3FPsMeQ6Ra4,1988.0,1,10,2012,Young Guns,Get Ready for Hell,tt0096487\ncxgg3KTdRcM,1988.0,2,10,2012,Young Guns,You and I,tt0096487\nE8LQ1SmVO2M,2005.0,4,9,2012,\"Yours, Mine and Ours\",The Shower Trick,tt0443295\nx3jT6tQ_gJk,2005.0,6,9,2012,\"Yours, Mine and Ours\",The Beautiful Lighthouse Keeper,tt0443295\nv3IyV96FX74,2005.0,9,9,2012,\"Yours, Mine and Ours\",Our Kids,tt0443295\nNxnXB1ViFEk,2005.0,8,9,2012,\"Yours, Mine and Ours\",Party at the Lighthouse,tt0443295\nt0R7IRtvvFA,2005.0,7,9,2012,\"Yours, Mine and Ours\",A Greater Enemy,tt0443295\nk2C9QOtoreY,2005.0,5,9,2012,\"Yours, Mine and Ours\",Forklift Ride,tt0443295\nvFSAQ1Nj7fg,2005.0,3,9,2012,\"Yours, Mine and Ours\",Standard Nautical Procedure,tt0443295\nrTCpK6ONu9M,2005.0,1,9,2012,\"Yours, Mine and Ours\",Frantic Business Meeting,tt0443295\nw7mr-fVLqis,2005.0,10,10,2012,Zodiac Killer,Simon Kills Michael,tt0469999\nwVTFBeiqCSE,2005.0,9,10,2012,Zodiac Killer,The Murder of Donald Fisk,tt0469999\nrmqvWkh45gs,2005.0,8,10,2012,Zodiac Killer,Pizza Delivery Victim,tt0469999\nkjRTvd8QRJI,2005.0,7,10,2012,Zodiac Killer,Gas Mask,tt0469999\nUSKy5QYNY70,2005.0,6,10,2012,Zodiac Killer,I Like Killing People,tt0469999\nPjBQfqlstnw,2005.0,5,10,2012,Zodiac Killer,Vampire,tt0469999\n2Qfa77SRZkc,2009.0,2,9,2012,Agora,Earth is the Center of the Cosmos,tt1186830\ncOe_8-IWvmY,2005.0,4,10,2012,Zodiac Killer,Zodiac Cult,tt0469999\nSY3nCdfnsCQ,2005.0,3,10,2012,Zodiac Killer,Buying a Car,tt0469999\nhg27lxt2IFw,2005.0,2,10,2012,Zodiac Killer,Young Zodiac,tt0469999\nlWflJvuYww8,2005.0,1,10,2012,Zodiac Killer,Laundry,tt0469999\nsLECDbDoXaQ,2010.0,10,11,2012,Killers,A Great Time for a Trust Circle,tt1448755\ngZbzZaYK3Zo,2010.0,9,11,2012,Killers,Never Going Back,tt1448755\nS-PPQ9aewqo,2010.0,11,11,2012,Killers,You Copied Me,tt1448755\nOd2dajJAbEE,2010.0,4,11,2012,Killers,Surprise Party,tt1448755\nY_bIzO41o2c,2010.0,8,11,2012,Killers,Deadly Secretary,tt1448755\n3r2JiHZVEk4,2010.0,2,11,2012,Killers,This Dress Is Tight,tt1448755\n6uaqkS1AiS4,2010.0,6,11,2012,Killers,A License to Blah,tt1448755\n1Jaq36snpLo,2010.0,5,11,2012,Killers,\"Killing You, Buddy\",tt1448755\n1-lFBwn6bKg,2010.0,1,11,2012,Killers,To the Beach,tt1448755\n8rF5KWQw6YE,2010.0,3,11,2012,Killers,Sport Shooting,tt1448755\ne3siZO79KrM,2010.0,7,11,2012,Killers,Pregnancy Test,tt1448755\nf5lTRa_ZJn8,2009.0,5,9,2012,Agora,Overtaking the Library of the Serapeum,tt1186830\nFGqPDYzAXdI,2009.0,7,9,2012,Agora,We Do Not Move in a Circle,tt1186830\n2IVX_4BG7m4,2009.0,9,9,2012,Agora,The Stoning of Hypatia,tt1186830\n_lykwQIS_3w,2009.0,8,9,2012,Agora,Kneel Before God,tt1186830\nhZqVpO3_MP4,2009.0,3,9,2012,Agora,I Am a Christian,tt1186830\n5AujBlOtU88,2009.0,6,9,2012,Agora,The Earth is Flat,tt1186830\ngqxV6mOE2L4,2009.0,4,9,2012,Agora,Heliocentric Model,tt1186830\ns2U0dL0k9s8,2009.0,1,9,2012,Agora,I Shall Walk Across the Fire,tt1186830\nyO4oRzCAc4k,2011.0,8,12,2012,From Prada to Nada,Why Are You Here?,tt0893412\nksFNCZ951Oc,2011.0,11,12,2012,From Prada to Nada,I Really Love Your World,tt0893412\n-AlKOlUgzaI,2011.0,12,12,2012,From Prada to Nada,\"My Heart is, and Always Has Been, Yours\",tt0893412\nLlWcSO9ok9g,2011.0,10,12,2012,From Prada to Nada,The Accident,tt0893412\nzXnWUj1a8Ss,2011.0,9,12,2012,From Prada to Nada,I Thought You Were in Mexico,tt0893412\noFon0yFgldk,2011.0,6,12,2012,From Prada to Nada,I'm Falling For You,tt0893412\nthOz5eO74hE,2011.0,7,12,2012,From Prada to Nada,Tell Him How You Feel,tt0893412\nBi2CHeMhNyM,2011.0,4,12,2012,From Prada to Nada,I Dream About a House,tt0893412\nEodapLIzTnk,2011.0,3,12,2012,From Prada to Nada,Sexy T.A.,tt0893412\nk2VevzNW4AY,2011.0,5,12,2012,From Prada to Nada,You've Won!,tt0893412\n0R1F6r2-ngk,2011.0,2,12,2012,From Prada to Nada,Leaving the House,tt0893412\nE-dMy3oJGT0,2011.0,1,12,2012,From Prada to Nada,Dad's Final Dance,tt0893412\nNCqhkbAkzug,2011.0,10,11,2012,The Lincoln Lawyer,Whose Side are You on Anyway?,tt1189340\n0SYBBmzZPOA,2011.0,11,11,2012,The Lincoln Lawyer,\"Hospital, Not the Morgue\",tt1189340\nmPoxI4PmAl8,2011.0,8,11,2012,The Lincoln Lawyer,When Do You Retire?,tt1189340\nX7KoVUspHys,2011.0,9,11,2012,The Lincoln Lawyer,Cross-Examination,tt1189340\nlfCVS3HWdjg,2011.0,7,11,2012,The Lincoln Lawyer,Attorney-Client Privilege,tt1189340\n8qQg4bvTlho,2011.0,6,11,2012,The Lincoln Lawyer,I'm Trying to Make it Right!,tt1189340\n7W78nWDG95s,2011.0,5,11,2012,The Lincoln Lawyer,They Want the Death Penalty,tt1189340\nh6M2ZbuGfYc,2011.0,3,11,2012,The Lincoln Lawyer,It's Called the Justice System,tt1189340\nCcKPNcDGDLs,2011.0,4,11,2012,The Lincoln Lawyer,Can You Give Me a Lift?,tt1189340\ni2uV68pKreU,2011.0,1,11,2012,The Lincoln Lawyer,It's Time to Refill the Tank,tt1189340\nHDUHC--wGt4,2011.0,2,11,2012,The Lincoln Lawyer,This Whole Thing is a Set-Up,tt1189340\nYRG4Q2gIWjo,2011.0,5,11,2012,Abduction,I Hate Balloons,tt1600195\n5eSrShL8dt8,2011.0,6,11,2012,Abduction,Who Are My Real Parents?,tt1600195\nAf2wrig588c,2011.0,11,11,2012,Abduction,Watching From a Distance,tt1600195\nkQUXf8oO73I,2011.0,10,11,2012,Abduction,The Stadium Chase,tt1600195\nIP0UFkE-Nng,2011.0,3,11,2012,Abduction,The Website Got a Hit,tt1600195\nohwhcMgHUKs,2011.0,9,11,2012,Abduction,Diner Attack,tt1600195\n6nvQySlxSWY,2011.0,8,11,2012,Abduction,The Train Fight,tt1600195\nlDksLpsqHwQ,2011.0,4,11,2012,Abduction,There's a Bomb in the Oven!,tt1600195\ndwMz7K0kr-M,2011.0,1,11,2012,Abduction,Hit Me!,tt1600195\n3fjlQw23hd0,2011.0,7,11,2012,Abduction,I Know What I'm Doing Now,tt1600195\nyQi_ZJp9_jM,2011.0,2,11,2012,Abduction,That Doesn't Look Like Me,tt1600195\nhkHrNtJHbRQ,2007.0,7,11,2012,Stir of Echoes: The Homecoming,Meeting Alice,tt0805619\nlsgl848rea8,2007.0,11,11,2012,Stir of Echoes: The Homecoming,Kill Me!,tt0805619\n9MyynB2RnZQ,2007.0,6,11,2012,Stir of Echoes: The Homecoming,A Hard Year,tt0805619\nI2yuo_5AkCs,2007.0,8,11,2012,Stir of Echoes: The Homecoming,Welcome the Fear,tt0805619\ne1NkoFF-13U,2007.0,10,11,2012,Stir of Echoes: The Homecoming,Scene of the Crime,tt0805619\nsCUSUl7-4Qg,2007.0,4,11,2012,Stir of Echoes: The Homecoming,A Helpful Stranger,tt0805619\nnZSxvozKoeE,2007.0,5,11,2012,Stir of Echoes: The Homecoming,Elevator Hell,tt0805619\nsOgO4lPPK1U,2007.0,2,11,2012,Stir of Echoes: The Homecoming,Surprise Party,tt0805619\nD83XRiOVARQ,2007.0,1,11,2012,Stir of Echoes: The Homecoming,Horrors of War,tt0805619\nId3vqOPHk-4,2007.0,3,11,2012,Stir of Echoes: The Homecoming,Consoling the Inconsolable,tt0805619\ngvoBpSAb-vM,2007.0,9,11,2012,Stir of Echoes: The Homecoming,Killer,tt0805619\nBAqabMWnAmk,2003.0,11,11,2012,Leprechaun: Back 2 tha Hood,You Hit Like a Wee Lass,tt0339294\nj67MZXY33c0,2003.0,10,11,2012,Leprechaun: Back 2 tha Hood,Police Brutality!,tt0339294\nY6CMcllU8J0,2003.0,8,11,2012,Leprechaun: Back 2 tha Hood,Bathroom Trouble,tt0339294\nkCqEADYRg8g,2003.0,5,11,2012,Leprechaun: Back 2 tha Hood,Leprebong,tt0339294\ni5Y6BTlx37s,2003.0,9,11,2012,Leprechaun: Back 2 tha Hood,A Gold Tooth,tt0339294\n6JSqeViZRU0,2003.0,7,11,2012,Leprechaun: Back 2 tha Hood,A Little Massage,tt0339294\nPyHK6QRniQ0,2003.0,6,11,2012,Leprechaun: Back 2 tha Hood,Munchies,tt0339294\n_U_s1OKHnlU,2003.0,2,11,2012,Leprechaun: Back 2 tha Hood,I Banish Thee!,tt0339294\nvrujU3pc7-U,2003.0,1,11,2012,Leprechaun: Back 2 tha Hood,Origin,tt0339294\ntifUOGFTOBM,2003.0,4,11,2012,Leprechaun: Back 2 tha Hood,Dog!,tt0339294\nYOO8a-wBTy0,2003.0,3,11,2012,Leprechaun: Back 2 tha Hood,All Will Be Revealed!,tt0339294\nS_PvnzDlqmI,2009.0,5,8,2012,Precious,Baby Abdul,tt0929632\nPlkdsidJA38,2009.0,6,8,2012,Precious,Nothing To Write Today,tt0929632\nCekWztEL504,2009.0,8,8,2012,Precious,You Ain't Gonna See Me No More,tt0929632\nFh1ZUliQDFg,2009.0,3,8,2012,Precious,A Visit From a Social Worker,tt0929632\n_-xCcoG6Wlc,2009.0,1,8,2012,Precious,I'm a Kill You!,tt0929632\nGUw4Qqh5Th0,2009.0,4,8,2012,Precious,Straight-Up Lesbians,tt0929632\n3ZQFpUxopm4,2009.0,7,8,2012,Precious,Mary's Confession,tt0929632\nhFqDZ3vzyRw,2009.0,2,8,2012,Precious,Southern Fried Chicken,tt0929632\nV-SMOiDv5pA,1981.0,1,9,2012,First Monday in October,You Don't Have to Agree with a Man in Order to,tt0082382\nTJ9f2rnjB84,1956.0,7,9,2012,The Court Jester,The Pellet with the Poison's in the Vessel with the Pestle,tt0049096\nVKu1354bPug,2003.0,1,9,2012,Après vous...,A Surprise in the Park,tt0344604\nMPQvVBaOx2E,1984.0,3,8,2012,Star Trek 3: The Search for Spock,Be Careful What You Wish For,tt0088170\njsL4-BxsZjA,2003.0,8,9,2012,Après vous...,Making Excuses,tt0344604\nhvvTxyks7L8,2003.0,9,9,2012,Après vous...,Antoine Gets the Girl,tt0344604\nbbqRezPHMDQ,2003.0,7,9,2012,Après vous...,An Unexpected Kiss,tt0344604\n9GYgmwMfGXU,2003.0,6,9,2012,Après vous...,An Awkward Job Interview,tt0344604\nkW7IPAaL7I4,2003.0,4,9,2012,Après vous...,Meeting Blanche,tt0344604\nfvYD-2ggmcc,2003.0,5,9,2012,Après vous...,An Accidental Proposal,tt0344604\nqO1-at2DUGU,2003.0,2,9,2012,Après vous...,Suicide Letter,tt0344604\njBajVRGElXY,2003.0,3,9,2012,Après vous...,A Revealing Car Ride,tt0344604\nZTGK6ChH494,2004.0,11,11,2012,Saw,Game Over,tt0387564\nHHxezNV6ntY,2004.0,10,11,2012,Saw,Revenge,tt0387564\nYegA1WNRKnU,2004.0,8,11,2012,Saw,It Was Tapp,tt0387564\n7bmB4RhsYgQ,2004.0,9,11,2012,Saw,Lawrence s Off His Foot,tt0387564\n717gDCZQsdc,2004.0,6,11,2012,Saw,Jigsaw Calls Their Bluff,tt0387564\nqqWVQuCaB6Y,2004.0,7,11,2012,Saw,Who Is That?,tt0387564\nZEqt7tr41Mk,2004.0,2,11,2012,Saw,The Game,tt0387564\nWzlAPD4Ttc0,2004.0,3,11,2012,Saw,Razor Wire,tt0387564\nPLBt2zwq_vU,2004.0,4,11,2012,Saw,Head Trap,tt0387564\n5LZfv0tLZKE,2004.0,5,11,2012,Saw,Booby Traps,tt0387564\niNSN6QhIWeA,2004.0,1,11,2012,Saw,Waking Up,tt0387564\na6oC5iQB4u8,2001.0,3,11,2012,Monster's Ball,Takes a Human Being to See a Human Being Scene,tt0285742\nJMWhU1FfqP8,2001.0,5,11,2012,Monster's Ball,Electric Chair Scene,tt0285742\n0tRSAQUheo0,2001.0,6,11,2012,Monster's Ball,I Always Loved You Scene,tt0285742\np_-Zm_G8cBI,2001.0,4,11,2012,Monster's Ball,You Ain't Lost No Weight Scene,tt0285742\nOxqTSDSxRwg,2001.0,2,11,2012,Monster's Ball,Death Row Goodbye Scene,tt0285742\nNOadx4ZICaQ,2005.0,10,10,2012,The Devil's Rejects,Free Bird,tt0395584\nujEbejephNM,2005.0,9,10,2012,The Devil's Rejects,Chicken F***er,tt0395584\narQDNf6cjaw,2005.0,7,10,2012,The Devil's Rejects,Tutti Frutti Ice Cream,tt0395584\ntfvptl5VS08,2005.0,8,10,2012,The Devil's Rejects,Arm of Justice,tt0395584\nJXnNKqu3N3w,2005.0,6,10,2012,The Devil's Rejects,Housekeeping,tt0395584\nyl0jujA2jLw,2005.0,5,10,2012,The Devil's Rejects,Elvis Aaron Presley,tt0395584\n7FN-chIhcNM,2005.0,4,10,2012,The Devil's Rejects,Bathroom Break Entertainment,tt0395584\n0N9Fzv7bYCM,2005.0,3,10,2012,The Devil's Rejects,Clown Business,tt0395584\nj42TrAVceCI,2005.0,1,10,2012,The Devil's Rejects,Midnight Rider,tt0395584\nVjlGwSBvL6g,2005.0,2,10,2012,The Devil's Rejects,Send in the Clown,tt0395584\n1H0J9VhDCno,1993.0,4,11,2012,Leprechaun,A Nice Leg Caress,tt0107387\nQfrPUNMOS6E,2007.0,2,8,2012,Sweeney Todd,My Friends,tt0408236\nxamDprXBtBg,2007.0,1,8,2012,Sweeney Todd,No Place Like London,tt0408236\nMG9L-S6J_18,1997.0,2,12,2012,Cube,How Did We Get Here?,tt0123755\nP6fVrC-RQLg,1987.0,8,12,2012,Dirty Dancing,Johnny Didn't Do It,tt0092890\n7lShqpv3i24,1987.0,5,12,2012,Dirty Dancing,Dance With Me,tt0092890\nLFhlnBzdOtk,1987.0,6,12,2012,Dirty Dancing,Have You Had Many Women?,tt0092890\nXINddkzfTzM,1987.0,12,12,2012,Dirty Dancing,The Time of My Life,tt0092890\nypKSbnYOrwE,1987.0,11,12,2012,Dirty Dancing,Nobody Puts Baby in a Corner,tt0092890\nf8Cjlv6nBTg,1993.0,6,11,2012,Leprechaun,Bear Trap,tt0107387\nx9L9S7jEv_M,1993.0,5,11,2012,Leprechaun,Pogo on His Lung,tt0107387\nev7an6-CYpc,1993.0,2,11,2012,Leprechaun,I'm Back,tt0107387\nB_DMSu-NVZ8,1997.0,9,12,2012,Cube,There's Nothing Down Here,tt0123755\nh__j2aPe63w,1997.0,12,12,2012,Cube,The Return of Quentin,tt0123755\n8AZk-d0z3ws,1997.0,10,12,2012,Cube,Moving in Circles,tt0123755\n3_dGBLwXBIE,1997.0,8,12,2012,Cube,Sound Activated,tt0123755\ntvIE50OJfxM,1997.0,7,12,2012,Cube,No Way Out,tt0123755\nn9-Wk6ulBuA,1997.0,11,12,2012,Cube,Is He Dead?,tt0123755\ngv1nYk_OJjs,1997.0,6,12,2012,Cube,Razor Wire,tt0123755\nX7U_RxbkaIg,1997.0,5,12,2012,Cube,This Room Is Green,tt0123755\nQiVfqVQ5t9A,1997.0,4,12,2012,Cube,Prime Numbers,tt0123755\nK7Dd88h25kU,1997.0,3,12,2012,Cube,Acid Trap,tt0123755\ny3zcF3YvK-o,2001.0,11,11,2012,Monster's Ball,Can I Touch You? Scene,tt0285742\nk8Tw4JhzORM,1997.0,1,12,2012,Cube,Slice and Dice,tt0123755\nf2ugRkVMOuE,1987.0,3,12,2012,Dirty Dancing,Log Dancing,tt0092890\nx6FDJAu5yMc,2001.0,9,11,2012,Monster's Ball,Make Me Feel Good Scene,tt0285742\nMtWRq5FXCbo,2001.0,8,11,2012,Monster's Ball,That's My Baby Scene,tt0285742\nMR93FRxKjTQ,2001.0,7,11,2012,Monster's Ball,I Quit the Team Scene,tt0285742\n8XkrkBt-8LQ,2001.0,10,11,2012,Monster's Ball,Hank Just Like His Daddy Scene,tt0285742\nsiTZSTZwJ0E,1987.0,10,12,2012,Dirty Dancing,\"I'm Out, Baby\",tt0092890\niMA4bMMh44w,1987.0,9,12,2012,Dirty Dancing,I'm Sorry I Lied,tt0092890\nZiXcZtfAbf8,2001.0,1,11,2012,Monster's Ball,\"Like Father, Like Son Scene\",tt0285742\nLnqAE4Rjdqk,1987.0,4,12,2012,Dirty Dancing,Dirty Knife and a Folding Table,tt0092890\naiilV691CzY,1987.0,7,12,2012,Dirty Dancing,Love Is Strange,tt0092890\n-sYKI4A3uhc,1987.0,2,12,2012,Dirty Dancing,Hungry Eyes,tt0092890\nWRdy4CcRchU,1987.0,1,12,2012,Dirty Dancing,I Carried a Watermelon,tt0092890\nVAp9p0U1r4g,2004.0,9,9,2012,Crash,Snow Falls on Los Angeles,tt0375679\nMsSPAEtYaZE,2004.0,5,9,2012,Crash,An LAPD Racist,tt0375679\nEbarO9zF81Y,2004.0,2,9,2012,Crash,I Want the Locks Changed Again,tt0375679\n_QXyyj1RiCE,2004.0,1,9,2012,Crash,Car Jacking,tt0375679\nGDrnSzfL-aI,2004.0,7,9,2012,Crash,I'm Not Sitting On No Curb for Nobody,tt0375679\nEtvbEtPIGiA,2004.0,3,9,2012,Crash,Pat Down by the Police,tt0375679\noUTQFpVOWGE,2004.0,6,9,2014,Crash,I'm Gonna Get You Out,tt0375679\nm6NeY3rTpJU,2004.0,4,9,2012,Crash,How Far Can Bullets Go?,tt0375679\nLlQXhEOzLW0,1998.0,4,11,2012,Belly,The Jamaican,tt0158493\nL-iyxIincCI,2004.0,8,9,2012,Crash,An Invisible Cloak,tt0375679\nB3v1kEzT4bA,1993.0,11,11,2012,Leprechaun,Four-Leaf Clover,tt0107387\nW8Iw5W2_bbM,1993.0,10,11,2012,Leprechaun,Eye for an Eye,tt0107387\nIAYQUTYc_tA,1993.0,7,11,2012,Leprechaun,Ring Around the Rosey,tt0107387\naNUs1A_sUCc,1993.0,8,11,2012,Leprechaun,I'm a,tt0107387\nIhZrBku_eCA,1993.0,9,11,2012,Leprechaun,Wheelchair Chase,tt0107387\nJrvr-VIymgo,1993.0,3,11,2012,Leprechaun,End of the Rainbow,tt0107387\njr_bZ2gzRIY,1993.0,1,11,2012,Leprechaun,This is the Nineties,tt0107387\nyp6SO-tZpJw,1998.0,3,11,2012,Belly,The Basement,tt0158493\nr0Iq2_euH44,1998.0,1,11,2012,Belly,Nightclub Robbery,tt0158493\nk26hmRbDQFw,1979.0,4,8,2012,Apocalypse Now,The Smell of Napalm In the Morning,tt0078788\nWFsMguGrUVo,1979.0,1,8,2012,Apocalypse Now,Saigon,tt0078788\n30QzJKCUekQ,1979.0,3,8,2012,Apocalypse Now,Ride of the Valkyries,tt0078788\n8upFfAQcfEM,1998.0,11,11,2012,Belly,It's Time,tt0158493\nxi5rxsY_Nsw,1998.0,10,11,2012,Belly,Rise Above All This Madness,tt0158493\nWo3XrThPZzo,1998.0,8,11,2012,Belly,Shameek Kills Big Head Rico,tt0158493\nHGCOxt0M7cE,1998.0,9,11,2012,Belly,You Were Scared,tt0158493\nf8znwPYsuFE,1998.0,5,11,2012,Belly,Might Have to Drop a Dime,tt0158493\nTGyqMjtaZiw,1998.0,7,11,2012,Belly,Tommy Panics,tt0158493\nJnFHE_crn0o,1998.0,6,11,2012,Belly,Jamaican Assassination,tt0158493\nbxegamvM8ME,1998.0,2,11,2012,Belly,Tommy's Crib,tt0158493\ngUrSHyV7Opg,2007.0,8,8,2012,Sweeney Todd,Bloody Vengeance,tt0408236\nqZmteh2hT9A,2007.0,5,8,2012,Sweeney Todd,Johanna,tt0408236\nPn_XD7jDwFQ,2007.0,6,8,2012,Sweeney Todd,\"God, That's Good!\",tt0408236\nO1-lkTgl-ws,2007.0,7,8,2012,Sweeney Todd,By the Sea,tt0408236\nsrR56T9-j5M,2007.0,3,8,2012,Sweeney Todd,Shaving Contest,tt0408236\nhTzqKlFConk,2007.0,4,8,2012,Sweeney Todd,Epiphany,tt0408236\nPpUWjff_OcM,2000.0,7,12,2012,American Psycho,Dinner Reservations,tt0144084\nMCo6TtUkCWc,2000.0,6,12,2012,American Psycho,I Gotta Return Some Videotapes,tt0144084\nXMmlJnxP7Y4,2000.0,4,12,2012,American Psycho,Sussudio,tt0144084\nnRTjNEP6v2U,2000.0,12,12,2012,American Psycho,No More Barriers,tt0144084\n0S7olzuojGY,2000.0,8,12,2012,American Psycho,The Greatest Love of All,tt0144084\nqizUajHk7r0,2000.0,9,12,2012,American Psycho,Die Yuppie Scum,tt0144084\nRuw9fsh3PNY,2000.0,3,12,2012,American Psycho,Hip to be Square,tt0144084\n7OARf8dNLBc,2000.0,11,12,2012,American Psycho,A Pretty Sick Guy,tt0144084\n_OtcwxERu50,2000.0,10,12,2012,American Psycho,Feed Me a Stray Cat,tt0144084\nHSWtc01BlqM,1979.0,8,8,2012,Apocalypse Now,The Horror,tt0078788\nGjB8z0Bvi14,1979.0,2,8,2012,Apocalypse Now,Terminate With Extreme Prejudice,tt0078788\nB1kQLmi0q5U,2004.0,2,8,2012,Against the Ropes,Let Me See Your Stance,tt0312329\nJInEj95yoUQ,1979.0,5,8,2012,Apocalypse Now,Do Lung Bridge,tt0078788\n_C672_Fkzms,1979.0,7,8,2012,Apocalypse Now,The Photojournalist,tt0078788\nRjKNbfA64EE,2000.0,1,12,2012,American Psycho,Morning Routine,tt0144084\nAD5N-le_1es,2000.0,2,12,2012,American Psycho,Business Cards,tt0144084\n3T-VAi2Xqq8,1979.0,6,8,2012,Apocalypse Now,Colonel Kurtz,tt0078788\n3-Q6PbschQI,2000.0,5,12,2012,American Psycho,Ed Gein's Philosophy of Women,tt0144084\n_r-R-b72rL0,1997.0,6,10,2012,A Smile Like Yours,I'll Give You One of My Kids,tt0120151\n1i8l526qhzY,1997.0,7,10,2012,A Smile Like Yours,,tt0120151\nEMOE8Ub7-zs,2002.0,1,10,2012,Serving Sara,A Savant,tt0261289\nbBzNPO001NU,2004.0,5,8,2012,Against the Ropes,A New Start,tt0312329\n0BF9MkmTBjk,2002.0,9,10,2012,Serving Sara,Talking Breasts,tt0261289\nL-sb2Xeqn14,1985.0,6,9,2012,Rustlers' Rhapsody,Learning to Be a Sidekick,tt0089945\nBPUpzQ4vX_o,1985.0,7,9,2012,Rustlers' Rhapsody,High-Stepping Horse,tt0089945\nrAKR-BBQY2M,2002.0,3,10,2012,Serving Sara,I'm Happily Married,tt0261289\nsqmzvduQ-JY,1972.0,4,9,2012,Bad Company,Clean Them Out,tt0068245\nHuzpoTGja5M,1972.0,9,9,2012,Bad Company,I Want to See a Man Drop for Every Shot,tt0068245\nKZrcqIvvB_0,1972.0,3,9,2012,Bad Company,Cleaning a Rabbit,tt0068245\ncHQcdgc_Whk,1972.0,2,9,2012,Bad Company,Frog Prank,tt0068245\noN832LNaq4w,1972.0,1,9,2012,Bad Company,Give Me Back My Money,tt0068245\nnXIu-RlvPJM,2005.0,9,10,2012,Asylum,Continued Treatment,tt0348505\nwbMLxj0lKAU,2005.0,10,10,2012,Asylum,Leave Me Alone,tt0348505\nrllKhsQXZXI,2005.0,7,10,2012,Asylum,In the Past,tt0348505\nbXRv0TjJQZ0,2005.0,8,10,2012,Asylum,She's Here,tt0348505\nrtqgJvhrswY,2005.0,5,10,2012,Asylum,Edgar's Arrest,tt0348505\nD3tnuA1OazI,2005.0,6,10,2012,Asylum,Devastating Grief,tt0348505\nxSyvjgWMsKc,2005.0,4,10,2012,Asylum,In Love With a Tortured Genius,tt0348505\nB7FkLh0uqdc,2005.0,2,10,2012,Asylum,Escape,tt0348505\n7khCMEgY5wc,2005.0,3,10,2012,Asylum,The Integrity of the Hospital,tt0348505\nrhNty595BeI,2005.0,1,10,2012,Asylum,An Adventurer,tt0348505\nPTg0wFv6dZ4,2000.0,9,9,2012,An Everlasting Piece,A Gesture,tt0218182\nxxfZmz7TxSo,2000.0,8,9,2012,An Everlasting Piece,Trying to Survive,tt0218182\n3RgRVQqUhhM,2000.0,6,9,2012,An Everlasting Piece,On the Side of the Road,tt0218182\n1fdta94pfxc,2000.0,7,9,2012,An Everlasting Piece,Interrogation,tt0218182\nMrL_uWnwPq0,2000.0,5,9,2012,An Everlasting Piece,Who's That?,tt0218182\nrhQ5dWLFLPM,2000.0,4,9,2012,An Everlasting Piece,I Thought You Said Herpes,tt0218182\nuEJ_Ak34ias,2000.0,3,9,2012,An Everlasting Piece,The Scalper,tt0218182\nqZIIx-X5Bbc,2000.0,2,9,2012,An Everlasting Piece,In An Escort?,tt0218182\nYieQdHA9uIA,2000.0,1,9,2012,An Everlasting Piece,Poetry,tt0218182\n05nRqVJlunA,1996.0,5,9,2012,A Very Brady Sequel,A Very Brady Shopping Trip,tt0118073\nDEHpRuG-P94,1996.0,4,9,2012,A Very Brady Sequel,We're Not Brother and Sister!,tt0118073\ngj-Rl-cgKxM,1988.0,7,9,2012,Tucker: The Man and His Dream,Police Chase,tt0096316\nCZaS2CCnFYs,1988.0,9,9,2012,Tucker: The Man and His Dream,The Idea and the Dream,tt0096316\ndjMYTM1p318,1988.0,8,9,2012,Tucker: The Man and His Dream,Tucker's Defense,tt0096316\neL9aiYpAyI0,1988.0,5,9,2012,Tucker: The Man and His Dream,Christening the Tucker Sedan,tt0096316\niwXsuJXUau4,1988.0,6,9,2012,Tucker: The Man and His Dream,Catching Dreams,tt0096316\nCfcaik7bDyg,1988.0,3,9,2012,Tucker: The Man and His Dream,Tucker's Presentation,tt0096316\nK-Tad1Lgw7k,1988.0,4,9,2012,Tucker: The Man and His Dream,Factory Accident,tt0096316\nbIHeoOh2F7o,1988.0,1,9,2012,Tucker: The Man and His Dream,The Car of Tomorrow Today,tt0096316\nl-vk0fgFGd4,1988.0,2,9,2012,Tucker: The Man and His Dream,The Design Department,tt0096316\n7vp7Lpjl_vk,2005.0,7,9,2012,Prize Winner of Defiance Ohio,The Affadaisies,tt0406158\noXRixZ82ZqU,2005.0,1,9,2012,Prize Winner of Defiance Ohio,A Happy Cry,tt0406158\nFVJX6ODlvFY,2005.0,9,9,2012,Prize Winner of Defiance Ohio,The Real Ryan Kids Grown Up,tt0406158\nOOBt6EktEVg,2005.0,8,9,2012,Prize Winner of Defiance Ohio,I'm Not a Saint,tt0406158\nx9u_a8eEPlM,2005.0,6,9,2012,Prize Winner of Defiance Ohio,Enjoy this Moment to the Fullest,tt0406158\nSqISCN4gNNA,2005.0,5,9,2012,Prize Winner of Defiance Ohio,I Don't Need You to Make Me Happy,tt0406158\nA_6e5AilC6k,2005.0,4,9,2012,Prize Winner of Defiance Ohio,Shopping Spree,tt0406158\nNGceQLxvFNE,2005.0,3,9,2012,Prize Winner of Defiance Ohio,I Want This Thing Out of the House,tt0406158\nyn_iiD8lxZQ,2005.0,2,9,2012,Prize Winner of Defiance Ohio,Only if You'll Do the Ironing,tt0406158\nOMEv7FPE7CQ,1958.0,9,9,2012,\"Another Time, Another Place\",I Want You to Know Who it Was,tt0051364\npV2y0et0TT4,1958.0,6,9,2012,\"Another Time, Another Place\",Remembering Mark,tt0051364\nKRMxuHWOcTI,1958.0,7,9,2012,\"Another Time, Another Place\",You Think I Don't Feel Guilty Enough?,tt0051364\nRXC48uE7UzM,1958.0,8,9,2012,\"Another Time, Another Place\",Was There Someone Else?,tt0051364\nUpww38-2fyo,1958.0,5,9,2012,\"Another Time, Another Place\",The Feeling of Things Half Said,tt0051364\n2QCUgqD37fk,1958.0,4,9,2012,\"Another Time, Another Place\",It's A Mistake!,tt0051364\n8O97aGzvU3g,1958.0,2,9,2012,\"Another Time, Another Place\",There's Something I Haven't Told You,tt0051364\n24QQqGjDEKM,1958.0,3,9,2012,\"Another Time, Another Place\",I Can't Come Back Tonight,tt0051364\nNfah2Cy_mwU,1999.0,7,8,2012,Angela's Ashes,\"Thank You, Saint Francis\",tt0145653\nWQ71crXovIk,1999.0,6,8,2012,Angela's Ashes,Aunt Aggie,tt0145653\n84ybwb86tKs,1958.0,1,9,2012,\"Another Time, Another Place\",Cutting the Wires,tt0051364\nP9aAc9ibVWM,1999.0,3,8,2012,Angela's Ashes,I Could Have Floated Out of the Bed,tt0145653\n8XglzsFYAJU,1999.0,5,8,2012,Angela's Ashes,You're Not Our Father,tt0145653\nEPBcADfQoJY,1999.0,4,8,2012,Angela's Ashes,Jesus and the Weather,tt0145653\ndQ0sgbvSQAk,1999.0,2,8,2012,Angela's Ashes,I Don't Want This,tt0145653\nyq2t7SjUSoI,1999.0,1,8,2012,Angela's Ashes,Hanging on the Cross Sporting Shoes,tt0145653\nC4dkYaeNLuc,1966.0,4,9,2012,Alfie,Shadows On Me Lungs?,tt0060086\nAWJPmyL5uHI,1966.0,2,9,2012,Alfie,Why Did I Get Involved?,tt0060086\nAF9cqjNt9uc,1966.0,3,9,2012,Alfie,A Father's Voice,tt0060086\nYSQ_eohNRrM,2002.0,10,10,2012,Abandon,There is No One There,tt0267248\nvAyq-3z1SYo,2002.0,5,10,2012,Abandon,\"I Love You, But You Can't Come\",tt0267248\ni1lkrSFlpss,2002.0,6,10,2012,Abandon,I'm In Love With You,tt0267248\n70yAXCvid4k,2002.0,9,10,2012,Abandon,You're Irrational,tt0267248\nI1xQMJjTMLQ,2002.0,7,10,2012,Abandon,Where Have You Been?,tt0267248\nGx7y8ecslp4,2002.0,8,10,2012,Abandon,You Can Always Call Me,tt0267248\nNf1uvt0zKFU,1997.0,8,10,2012,A Smile Like Yours,Jennifer Turns Down the Offer,tt0120151\nE0NZlvha-KQ,2002.0,2,10,2012,Abandon,Sing to God,tt0267248\nXAm-zfxcktE,2002.0,4,10,2012,Abandon,You're A Virgin,tt0267248\ne8J56HbIyvc,2002.0,1,10,2012,Abandon,Tell Us About Yourself,tt0267248\nS4YcLymVzXw,1997.0,10,10,2012,A Smile Like Yours,Wonderful Liars,tt0120151\nb2WuWXRVdfk,2002.0,3,10,2012,Abandon,\"Drink, Drink, Drink!\",tt0267248\n8kiNT3_17i8,1997.0,9,10,2012,A Smile Like Yours,Business Scents,tt0120151\nDTXWi9iR2F0,1997.0,5,10,2012,A Smile Like Yours,Lazy Swimmers,tt0120151\nx0yNzsNUoK4,2004.0,3,8,2012,Against the Ropes,Fighting Dirty,tt0312329\nffR1X6gndvo,1997.0,1,10,2012,A Smile Like Yours,The Baby Clinic,tt0120151\nXXVbPZX6qz8,1997.0,4,10,2012,A Smile Like Yours,The Cold Steel,tt0120151\nLntFGGP92xQ,1997.0,2,10,2012,A Smile Like Yours,Fertility Physical,tt0120151\n3JLDAyAEaqI,2004.0,6,8,2012,Against the Ropes,You Fight for Me,tt0312329\n1YGyKYK1HuY,1997.0,3,10,2012,A Smile Like Yours,Occupied,tt0120151\nw3HklXic1eY,2004.0,1,8,2012,Against the Ropes,Drugs and Thugs,tt0312329\n75A7PFuBqFk,2004.0,4,8,2012,Against the Ropes,The First Fight,tt0312329\ngtHSeq99_l8,1996.0,1,9,2012,A Very Brady Sequel,House of Cards,tt0118073\nAA_yIRZNg1s,1996.0,3,9,2012,A Very Brady Sequel,There's Always Room For One More,tt0118073\n_hMtM3QndW8,1996.0,8,9,2012,A Very Brady Sequel,Mr. Brady Saves the Day!,tt0118073\ngz-Uv494KFk,1996.0,2,9,2012,A Very Brady Sequel,Daddy's Back!,tt0118073\nJR_bnlkaEss,1996.0,6,9,2012,A Very Brady Sequel,Marcia and Greg on a Date,tt0118073\nyBwa0z0kCrg,1996.0,9,9,2012,A Very Brady Sequel,Marcia and Greg Kiss,tt0118073\n6Tjcx6B5lbA,1996.0,7,9,2012,A Very Brady Sequel,Good Time Music,tt0118073\nnSJxx_KUEes,1966.0,5,9,2012,Alfie,Live For Yourself,tt0060086\nFyS7kFIZJ6k,1966.0,9,9,2012,Alfie,He's Younger Than You,tt0060086\n7O6j3eHsueM,1966.0,7,9,2012,Alfie,She Ain't So Ugly After All,tt0060086\n9Vve6PAxRpk,1966.0,6,9,2012,Alfie,Street Photographer,tt0060086\nmQAlpiB3_FQ,1966.0,8,9,2012,Alfie,Bar Fight,tt0060086\nB0FZhLeHy7A,1966.0,1,9,2012,Alfie,A Married Woman,tt0060086\nv-UIgJgiPJs,1979.0,3,8,2012,An Almost Perfect Affair,A Bath is More Relaxing,tt0078757\nGlHL_ippO8k,1979.0,2,8,2012,An Almost Perfect Affair,My Lucky Number,tt0078757\ny587UlBV9jg,2001.0,8,10,2012,Pootie Tang,I'm Gonna Sine Yo Pitty on the Runny Kine,tt0258038\nWSIS3ZUDzzY,2001.0,7,10,2012,Pootie Tang,Pootie's Bad Time Burgers,tt0258038\nZW66_8a4rqY,1979.0,8,8,2012,An Almost Perfect Affair,You Threw Away Nothing,tt0078757\nVzZJ9-El-a4,1979.0,7,8,2012,An Almost Perfect Affair,Car Chase,tt0078757\nRemcXMCCQVk,2005.0,5,10,2012,The Honeymooners,Breakdancing for Cash,tt0373908\npFxOuE_0wqc,1979.0,4,8,2012,An Almost Perfect Affair,Something Better to Worry About,tt0078757\nqdy5TZDOwm0,1979.0,6,8,2012,An Almost Perfect Affair,Seen Any Good Films Lately?,tt0078757\nwNqqn5NPJ8k,2001.0,10,10,2012,Jimmy Neutron: Boy Genius,Burping Soda,tt0268397\nfPWCnwZEOqE,1979.0,1,8,2012,An Almost Perfect Affair,Very Sophisticated,tt0078757\nj3k3xWKZIn8,1979.0,5,8,2012,An Almost Perfect Affair,I Could Lose You,tt0078757\nQns26Wdvph8,2009.0,6,8,2012,Case 39,Let Me In!,tt0795351\nFXPNIj7q0lU,1991.0,3,10,2012,Flight of the Intruder,Commander Camparelli,tt0099587\n9J0DZojg6-g,2009.0,1,8,2012,Case 39,In The Oven,tt0795351\nxCI_stZgRHc,2009.0,5,8,2012,Case 39,Why Emily?,tt0795351\nHEnmNkRRmHs,2009.0,4,8,2012,Case 39,Hornet Problem,tt0795351\nsxtENaaaPpQ,2009.0,3,8,2012,Case 39,What Scares You?,tt0795351\nhgCr8TOxcCo,2009.0,8,8,2012,Case 39,Just Die!,tt0795351\n-NW-w5Z_vpk,2009.0,2,8,2012,Case 39,I Killed My Mom and Dad,tt0795351\nvJFN-ZPqCiQ,1989.0,8,9,2012,We're No Angels,Put My Name on That List!,tt0098625\nZvMDRj9jFaE,1989.0,5,9,2012,We're No Angels,\"Help Me, I'm Such a Sinner\",tt0098625\na861J6gxqmg,2009.0,7,8,2012,Case 39,You Silly Pumpkin Head,tt0795351\nw71n9tHYuIw,1989.0,6,9,2012,We're No Angels,Five Dollar Molly,tt0098625\nqGrKwxglKJ0,1989.0,1,9,2012,We're No Angels,Prison Break,tt0098625\nmMyrxQNItpY,1989.0,2,9,2012,We're No Angels,You Don't Know What That Is?,tt0098625\nmFBIlYRQBLI,1989.0,7,9,2012,We're No Angels,The Weeping Madonna,tt0098625\nxiNxK0Xiv2E,1989.0,3,9,2012,We're No Angels,Chanting Along,tt0098625\nsehGLkGe-iI,1989.0,4,9,2012,We're No Angels,Saying Grace Under Pressure,tt0098625\n9lInNK2jtx8,1989.0,9,9,2012,We're No Angels,Jim's Sermon,tt0098625\nS7ZhqwAzKTQ,2003.0,2,9,2012,The Singing Detective,Reassemble Yourself,tt0314676\nwwwhtUdGOVM,2003.0,9,9,2012,The Singing Detective,Dealing with the Devil,tt0314676\nfk2MU617-Bc,2003.0,8,9,2012,The Singing Detective,What Are We Looking For?,tt0314676\nvj6kMfad_2E,2003.0,7,9,2012,The Singing Detective,Word Association,tt0314676\nHBrzlqErO_E,2003.0,6,9,2012,The Singing Detective,I'll Figure It Out,tt0314676\nkKlihXmSqPE,2003.0,3,9,2012,The Singing Detective,Come to Grease Me?,tt0314676\nIrDrwaot490,2003.0,5,9,2012,The Singing Detective,Poison Ivy,tt0314676\n5ud6mZ5SULk,2003.0,1,9,2012,The Singing Detective,At the Hop,tt0314676\nsheRsZ2HOYI,1998.0,7,10,2012,The Rugrats Movie,Poopy Pants,tt0134067\n-A-fBbIXbPo,2003.0,4,9,2012,The Singing Detective,\"Let Go, Kitty\",tt0314676\nSYHN3rt-R5Y,1998.0,2,10,2012,The Rugrats Movie,Baby Shower,tt0134067\nPbwgDqZazAU,1998.0,10,10,2012,The Rugrats Movie,The Wolf,tt0134067\n2fEZc4acGC0,1998.0,9,10,2012,The Rugrats Movie,Monkey Invasion,tt0134067\ntlSZa51g_rc,1998.0,4,10,2012,The Rugrats Movie,Lullaby,tt0134067\nWzDlb8zf7gQ,1998.0,8,10,2012,The Rugrats Movie,Learning to Share,tt0134067\nnOFfrd6bOh0,1998.0,5,10,2012,The Rugrats Movie,Problems With Brothers,tt0134067\nWpen_d9INlw,1998.0,1,10,2012,The Rugrats Movie,The Reptar Wagon,tt0134067\nMOKKPloglVE,1998.0,3,10,2012,The Rugrats Movie,Dil Pickles,tt0134067\nZCz2Ob5_-bg,1998.0,6,10,2012,The Rugrats Movie,Reptar on the Loose,tt0134067\nXbf61_Fgldo,1967.0,2,9,2012,The President's Analyst,You Can Actually Legally Kill Someone?,tt0062153\nAL2Qj_h_d-o,1967.0,4,9,2012,The President's Analyst,I'm All Right... Or Am I?,tt0062153\nBuwF3dRJiS8,1967.0,9,9,2012,The President's Analyst,The Science of Microelectronics,tt0062153\nbXZFFinWVYw,1967.0,6,9,2012,The President's Analyst,\"Don't Say Lousy, It's Impolite\",tt0062153\nBFpoIHexhKQ,1966.0,1,9,2012,The Naked Prey,Elephant Hunting,tt0060736\n3PHLmv4Zzu0,1967.0,7,9,2012,The President's Analyst,\"Please, No Russian - I'm Spying!\",tt0062153\nVgKqo3TvZoI,1967.0,5,9,2012,The President's Analyst,Meet the Quantrills,tt0062153\nJmElZmlYkHU,1967.0,8,9,2012,The President's Analyst,Changes,tt0062153\ngRxu0ooBrPE,1967.0,1,9,2012,The President's Analyst,A Childhood Memory,tt0062153\n5XINVbpWRmw,1967.0,3,9,2012,The President's Analyst,On Call,tt0062153\nkdbGqJtHWQg,1966.0,6,9,2012,The Naked Prey,Snakes in the Desert,tt0060736\nnNLk8GMdFd8,1966.0,9,9,2012,The Naked Prey,Flight to the Fortress,tt0060736\nlk1As4QnaCc,1966.0,7,9,2012,The Naked Prey,Foreign Intruders,tt0060736\n0SHMCN-6-IM,1966.0,4,9,2012,The Naked Prey,Deadly Defense,tt0060736\nmydc8K7yaZI,1966.0,3,9,2012,The Naked Prey,Run for Your Life,tt0060736\nlNHheEljm5s,1966.0,5,9,2012,The Naked Prey,Fighting With Fire,tt0060736\nZpJvQAs3_98,1966.0,8,9,2012,The Naked Prey,Waterfall Escape,tt0060736\nZHNyG9ykGDA,2007.0,7,10,2012,The Kite Runner,The Rest of My Life,tt0419887\nDPPoZpw3NOg,1966.0,2,9,2012,The Naked Prey,Ambush,tt0060736\nky1W2n5RilM,2007.0,1,10,2012,The Kite Runner,Kite Running,tt0419887\nJhvq7EGVtUg,2007.0,9,10,2012,The Kite Runner,Welcome to Afghanistan,tt0419887\n7BEpbVXCbvo,2007.0,6,10,2012,The Kite Runner,The Russian Doctor,tt0419887\ngbbbs1uWxvo,2007.0,8,10,2012,The Kite Runner,Hassan's Letter,tt0419887\n3jEZ_y7_kfs,2007.0,4,10,2012,The Kite Runner,Birthday Party,tt0419887\n20zF8Ug0MjM,2007.0,2,10,2012,The Kite Runner,Tears Into Pearls,tt0419887\n1TroueqxAtM,2007.0,3,10,2012,The Kite Runner,Kite Fighting,tt0419887\nypf6WHYpeRU,2007.0,10,10,2012,The Kite Runner,Teaching Kite Flying,tt0419887\nBZ1KEaetIwM,2003.0,3,8,2012,The Hunted,Hunters Become Hunted,tt0366174\n2HgE2gZhovI,2003.0,2,8,2012,The Hunted,No More Snares on Wolves,tt0366174\n4amekKHX28Q,2007.0,5,10,2012,The Kite Runner,Meeting Soraya,tt0419887\np7zF3vZL-4s,2003.0,4,8,2012,The Hunted,Showdown in the Woods,tt0366174\nF7UEddgJxrE,2003.0,1,8,2012,The Hunted,Silent Kill,tt0366174\nFy_utfWemC4,2003.0,8,8,2012,The Hunted,Knife Fight,tt0366174\nQSQTYxhlIog,2003.0,7,8,2012,The Hunted,War on my Boy,tt0366174\nvdq609Xci-g,2003.0,5,8,2012,The Hunted,Learning How to Turn it Off,tt0366174\nV0MF8uNW_gc,2005.0,8,10,2012,The Honeymooners,Dog Training,tt0373908\nxVpk12wYQ5g,2003.0,6,8,2012,The Hunted,You Better Be Ready to Kill Me,tt0366174\n7UhOWJw9eys,2005.0,10,10,2012,The Honeymooners,The Big Race,tt0373908\ng5lJIy5IcWc,2005.0,7,10,2012,The Honeymooners,Cayenne Pepper,tt0373908\nLhbHp9ey_sU,2005.0,2,10,2012,The Honeymooners,I Can't Take It Anymore!,tt0373908\nG5nY_snMhic,2005.0,3,10,2012,The Honeymooners,Bad Investments,tt0373908\nhUAGX1IOMr0,2005.0,9,10,2012,The Honeymooners,Iggy the Survivor,tt0373908\n2Bml42cWPpo,2005.0,4,10,2012,The Honeymooners,Ralph's New Opportunity,tt0373908\nxVc_GWABEFk,2005.0,1,10,2012,The Honeymooners,I'm Gonna Own This Town!,tt0373908\noIu0P3gXxsI,2005.0,6,10,2012,The Honeymooners,Meet Dodge,tt0373908\naQRjyav-x8o,1952.0,6,9,2012,The Greatest Show on Earth,Be a Jumping Jack,tt0044672\nvykvU-52g6w,1952.0,7,9,2012,The Greatest Show on Earth,You're a Jealous Fool,tt0044672\njDjZ_Dh6HSM,1952.0,2,9,2012,The Greatest Show on Earth,Clowns Only Love Once,tt0044672\n0Nn_t_RfYS8,1952.0,9,9,2012,The Greatest Show on Earth,They Made It,tt0044672\nK9ITp_xSaxE,1952.0,8,9,2012,The Greatest Show on Earth,Train Wreck,tt0044672\nXEQJU3VPjHU,1952.0,3,9,2012,The Greatest Show on Earth,The Great Sebastian Arrives,tt0044672\nBeRTEiGRbw8,1952.0,1,9,2012,The Greatest Show on Earth,The Circus,tt0044672\nnIhrGSxslzQ,1952.0,4,9,2012,The Greatest Show on Earth,Holly vs. The Great Sebastian,tt0044672\n7qPmEvrv3HQ,1952.0,5,9,2012,The Greatest Show on Earth,The Great Sebastian Falls,tt0044672\nxWpMF_EFqyc,2003.0,2,10,2012,The Fighting Temptations,Welcome Home,tt0191133\ndMOQv0rb6DY,2003.0,9,10,2012,The Fighting Temptations,Singing for the Inmates,tt0191133\nw6n3WpRNWTs,2003.0,10,10,2012,The Fighting Temptations,Fighting Temptation,tt0191133\n8UMJAkQqhcM,2003.0,6,10,2012,The Fighting Temptations,Choir Auditions,tt0191133\nb7Dxy34dFyY,2003.0,1,10,2012,The Fighting Temptations,You're Fired,tt0191133\nWI00FLWTRrY,2003.0,4,10,2012,The Fighting Temptations,Sally's Dying Wish,tt0191133\ngjWdFgV-Vz8,2003.0,5,10,2012,The Fighting Temptations,Fever,tt0191133\nrWGj8MCBBnc,2003.0,3,10,2012,The Fighting Temptations,Aunt Sally's Funeral,tt0191133\nUEr47WrS7Ys,2003.0,7,10,2012,The Fighting Temptations,Barbershop Quartet,tt0191133\nFAWPEOWyWN4,2008.0,4,8,2012,The Eye,Chinese Restaurant Fire,tt1305806\naJh1RC2Z474,2003.0,8,10,2012,The Fighting Temptations,No Sinners in the Choir,tt0191133\ngJCMd15eaW8,2008.0,3,8,2012,The Eye,Flashback to the Factory,tt1305806\n2xRNmBGvfSk,2008.0,8,8,2012,The Eye,Rescue at the Border,tt1305806\nIl5lC0E0nqM,2008.0,2,8,2012,The Eye,Coffee Shop Scare,tt1305806\nKtBMZ6VAZyI,2008.0,6,8,2012,The Eye,A Message From the Eye,tt1305806\nJRQJyeZ0wkY,2008.0,1,8,2012,The Eye,Tell Me What You See,tt1305806\nQ1WdHuNv1uo,2008.0,5,8,2012,The Eye,Have You Seen My Report Card?,tt1305806\nRvQ1y_CPuDw,2008.0,7,8,2012,The Eye,Ana's Suicide,tt1305806\n6-RSVTLojGU,1983.0,3,10,2012,The Dead Zone,The Wolf Is Loose,tt0085407\nHG3e03wWQu0,1983.0,5,10,2012,The Dead Zone,Gazebo,tt0085407\n-NgmhVRFApQ,1983.0,4,10,2012,The Dead Zone,The Power of Second Sight,tt0085407\n1Pcd6RZexJI,1983.0,7,10,2012,The Dead Zone,Greg Stillson Needs Your Money!,tt0085407\nzcZJF81jt4w,1983.0,10,10,2012,The Dead Zone,Thwarted Assassination,tt0085407\nTj9M34DzAKo,1983.0,9,10,2012,The Dead Zone,The Missiles Are Flying,tt0085407\nMoRaxm7lK8g,1983.0,2,10,2012,The Dead Zone,First Premonition,tt0085407\nfltSq_QHbbk,1983.0,6,10,2012,The Dead Zone,Bloody Scissors,tt0085407\ny-TUmx2Ow74,1983.0,8,10,2012,The Dead Zone,The Ice Is Gonna Break!,tt0085407\nn1pSObsJ_hk,1975.0,7,9,2012,The Day of the Locust,Cockfight,tt0072848\nwFSWmfqMp7o,1975.0,8,9,2012,The Day of the Locust,Angry Mob,tt0072848\njJ_p_xhMEvU,1975.0,6,9,2012,The Day of the Locust,The Stage Collapses,tt0072848\nP0ePytsVcpI,1983.0,1,10,2012,The Dead Zone,The Accident,tt0085407\nhfW-fzTbpRg,1975.0,2,9,2012,The Day of the Locust,The Movie Theater,tt0072848\ncuK7JbG06ho,1975.0,3,9,2012,The Day of the Locust,Tod Hits Hollywood,tt0072848\najE9h1zUbMs,1975.0,1,9,2012,The Day of the Locust,Tod Meets Faye,tt0072848\nBQO5Xy2ebhs,1975.0,9,9,2012,The Day of the Locust,The Burning of Los Angeles,tt0072848\nUlsRjhvfKJY,1962.0,3,9,2012,The Counterfeit Traitor,I Don't Do Business with Jews,tt0055871\ncmtXA6x6Jm4,1975.0,5,9,2012,The Day of the Locust,Ice Cream Meltdown,tt0072848\nfjzcBqz2Cpk,1962.0,8,9,2012,The Counterfeit Traitor,The Confession,tt0055871\nxLMzMKlv_Ao,1975.0,4,9,2012,The Day of the Locust,Door to Door,tt0072848\n_mwKm8tpz-M,1962.0,1,9,2012,The Counterfeit Traitor,\"Hurt One Jew, Save a Thousand\",tt0055871\nPRximULrt4g,1962.0,2,9,2012,The Counterfeit Traitor,Hans,tt0055871\nbqxDIHYcp9g,1962.0,9,9,2012,The Counterfeit Traitor,Let Him Die in Sweden,tt0055871\n4k9WHvF1QsE,1962.0,6,9,2012,The Counterfeit Traitor,Marianne's Motives,tt0055871\niHllnWESLvY,1962.0,7,9,2012,The Counterfeit Traitor,One Atrocity,tt0055871\nsPS0cKOGZO0,1977.0,8,10,2012,Bad News Bears 2,Bears on the News,tt0408524\nORy5ULEbQ48,1962.0,5,9,2012,The Counterfeit Traitor,Precautionary Measures,tt0055871\ncPooLABE6Js,1977.0,4,10,2012,Bad News Bears 2,Playboy Magazine,tt0408524\nqq4gK8PkKNM,1977.0,9,10,2012,Bad News Bears 2,Let Them Play!,tt0408524\nZ6E9SQ_ZLkw,1962.0,4,9,2012,The Counterfeit Traitor,The Incompetents,tt0055871\nDM7JBXzCP1k,1977.0,6,10,2012,Bad News Bears 2,Beanball,tt0408524\njv2MsLBMi9U,1977.0,3,10,2012,Bad News Bears 2,The Motel,tt0408524\nsloo9PMVoRE,1977.0,2,10,2012,Bad News Bears 2,Hello! How Are You?,tt0408524\nc2TcT9JairA,1977.0,7,10,2012,Bad News Bears 2,Pitching Troubles,tt0408524\n6Qhj03nCJn0,1977.0,1,10,2012,Bad News Bears 2,You Been Fired,tt0408524\nBhbazIuvUCY,1977.0,10,10,2012,Bad News Bears 2,Winning Run,tt0408524\n9BHXzftnFGA,1991.0,7,10,2012,Soapdish,Ego-Maniac,tt0102951\nPlTz6i4z6xU,1991.0,3,10,2012,Soapdish,Death of a Salesman,tt0102951\n8GbzfsvSY7I,1977.0,5,10,2012,Bad News Bears 2,Hot Hitchhiker,tt0408524\n4B0FFnkSCuM,1991.0,5,10,2012,Soapdish,One More Time,tt0102951\ndLLkOjKNanY,1991.0,4,10,2012,Soapdish,Script Changes,tt0102951\nIVxzLITK1YM,1991.0,2,10,2012,Soapdish,Let's Do It,tt0102951\nbANgFADltvw,1991.0,10,10,2012,Soapdish,This is Soap Opera,tt0102951\nOkphsYRRJ_0,1991.0,1,10,2012,Soapdish,When Can You Start?,tt0102951\ngmYSTObayoY,1998.0,6,10,2012,Small Soldiers,Bombshells,tt0122718\n0I7GjbhDYtM,1991.0,9,10,2012,Soapdish,Teleprompter Trouble,tt0102951\nLC1Sb6tRr4E,1991.0,8,10,2012,Soapdish,America's Sweetheart,tt0102951\nfX4XAbCTdYs,1991.0,6,10,2012,Soapdish,Jeffrey Help Me!,tt0102951\nn7KKfjFRw8w,1998.0,7,10,2012,Small Soldiers,I Always Hated These Things,tt0122718\nTgZwFvKRqK4,1998.0,3,10,2012,Small Soldiers,Keeper of Encarta,tt0122718\nH7XEyuPBE48,1998.0,9,10,2012,Small Soldiers,The Gorgonites Fight Back,tt0122718\nul_HuCZxxNU,1998.0,4,10,2012,Small Soldiers,Speech of Speeches,tt0122718\nLs5834hbssM,1998.0,2,10,2012,Small Soldiers,Activating the Troops,tt0122718\n0bbWQy30oc8,1998.0,10,10,2012,Small Soldiers,Have I Got a Shock for You,tt0122718\npMoxr-jgd58,1998.0,8,10,2012,Small Soldiers,Phil Surrenders,tt0122718\nkQoFdaWI4h8,1998.0,5,10,2012,Small Soldiers,Bicycle Chase,tt0122718\nrFHh8MTXs5M,1998.0,1,10,2012,Small Soldiers,Pitching the Real Thing,tt0122718\nDebtnaQFX7M,1993.0,6,9,2012,Sliver,Bra and Panties,tt0108162\nT6QGAOSIE-o,1993.0,3,9,2012,Sliver,Working Out,tt0108162\npKWLGY2fwZg,1993.0,7,9,2012,Sliver,Love in an Elevator,tt0108162\nlDFltuNEfts,1993.0,8,9,2012,Sliver,Hearing a Scream,tt0108162\nnjP__lsFwE4,1993.0,2,9,2012,Sliver,A Friendly Jog,tt0108162\nYa7Qs1NHepQ,1993.0,1,9,2012,Sliver,Long Fall,tt0108162\nZMb-qj1X1do,1993.0,9,9,2012,Sliver,Get A Life,tt0108162\n6QcrQ_TIoKw,1993.0,5,9,2012,Sliver,A Loaded Lead Pencil,tt0108162\nhEiI72hLQX4,1993.0,4,9,2012,Sliver,I Want to See You,tt0108162\njowNLHQCAAY,2001.0,5,9,2012,Sidewalks of New York,Cologne,tt0239986\nf3tseBsU248,2001.0,9,9,2012,Sidewalks of New York,Love and Relationships,tt0239986\nZa9pPzJJcYg,2001.0,8,9,2012,Sidewalks of New York,Are You Having An Affair?,tt0239986\n_4jtkw-qFms,1967.0,6,9,2012,Barefoot in the Park,Proper and Dignified,tt0061385\nM9m4XUd6x98,2001.0,4,9,2012,Sidewalks of New York,Dinner With Friends,tt0239986\n_vxVcxYCyE4,2001.0,3,9,2012,Sidewalks of New York,You're Very Beautiful,tt0239986\n6ylO7RAbApc,2001.0,2,9,2012,Sidewalks of New York,Coming On Too Strong,tt0239986\n2wEjsHggyII,2001.0,7,9,2012,Sidewalks of New York,The Sweet Side,tt0239986\na6mkbps0BmY,2001.0,1,9,2012,Sidewalks of New York,Virginity,tt0239986\nZ_0TQHoV_2I,2010.0,8,8,2012,Shutter Island,Live as a Monster or Die as a Good Man,tt1130884\nerILyrdpSqs,2001.0,6,9,2012,Sidewalks of New York,The Real New York,tt0239986\nrku6u5PmiZ4,2010.0,7,8,2012,Shutter Island,Set Me Free,tt1130884\neveUzWmTxl4,2010.0,6,8,2012,Shutter Island,My Name is Edward Daniels,tt1130884\nHWe802TQAG0,2010.0,4,8,2012,Shutter Island,I Buried You,tt1130884\n9DlWhZ45k5w,2010.0,5,8,2012,Shutter Island,A Rat in a Maze,tt1130884\n9WY5gDBR0gM,2010.0,3,8,2012,Shutter Island,What If They Wanted You Here?,tt1130884\nKihpUEKi4TA,2010.0,2,8,2012,Shutter Island,Could You Stop That?,tt1130884\n-F1-sTyGvwA,2010.0,1,8,2012,Shutter Island,You Have to Let Me Go,tt1130884\nghwBg2RgBJM,1988.0,6,9,2012,She's Having a Baby,The Fertility Clinic,tt0096094\nTyeZy_UPYKM,1988.0,9,9,2012,She's Having a Baby,This Woman's Work,tt0096094\n_W5MVZjoNwc,1988.0,8,9,2012,She's Having a Baby,I Envy Jake,tt0096094\n5uVVWV4FnVU,1988.0,1,9,2012,She's Having a Baby,The Scariest Vows in the World,tt0096094\nDsKfkkrTLMg,1988.0,3,9,2012,She's Having a Baby,You Never Get What You Want,tt0096094\nRfqBp4LFuIQ,1988.0,2,9,2012,She's Having a Baby,How Do You Feel About Slave Wages?,tt0096094\nLDnFpgimHH4,1988.0,4,9,2012,She's Having a Baby,Lawnmower: The Musical,tt0096094\n5_B-hXtddxw,2002.0,7,10,2012,Serving Sara,An Impudent Bull,tt0261289\nViPVPgUJUgM,1988.0,5,9,2012,She's Having a Baby,Promise You Won't Get Mad,tt0096094\ndPXGowa6p3Y,1988.0,7,9,2012,She's Having a Baby,You Can Watch TV If You Get Bored,tt0096094\nnkelgV49oGQ,2002.0,8,10,2012,Serving Sara,First Kiss,tt0261289\n-7-C6lSAfOs,2002.0,10,10,2012,Serving Sara,The Monster Truck,tt0261289\nt5xpX6krGmE,2002.0,5,10,2012,Serving Sara,Stripped by a Conveyer Belt,tt0261289\ncgogH0SylMc,2002.0,6,10,2012,Serving Sara,The Price of a Free Motel Room,tt0261289\nlEiwqEMhS9E,1985.0,4,9,2012,Rustlers' Rhapsody,Spaghetti Western,tt0089945\nDG5ZouipJNs,2002.0,4,10,2012,Serving Sara,Never Hit a Girl,tt0261289\ncIE1fT395HM,1985.0,2,9,2012,Rustlers' Rhapsody,Western Towns Are All Identical,tt0089945\nNARUgQRZhL8,1985.0,5,9,2012,Rustlers' Rhapsody,\"Just Shoot, Okay?\",tt0089945\nR_shARjqjLA,2002.0,2,10,2012,Serving Sara,Why Are You Calling Me Sara?,tt0261289\nsNcBUOlGBcg,2008.0,6,8,2012,Revolutionary Road,What's So Obvious About it?,tt0959337\newVwSrVSKS4,1985.0,3,9,2012,Rustlers' Rhapsody,Take Care of Him,tt0089945\nBPvZa789l5o,1985.0,9,9,2012,Rustlers' Rhapsody,\"I'm Back, Bob\",tt0089945\nVdhhi9nYLTI,1985.0,1,9,2012,Rustlers' Rhapsody,The Bad Guys,tt0089945\ninDZp80Sq6U,2008.0,3,8,2012,Revolutionary Road,The Nice Young Wheelers Are Taking Off,tt0959337\nvYafR-6wNGE,1985.0,8,9,2012,Rustlers' Rhapsody,Good Guy Duel,tt0089945\nm_7Bm1gyq2c,2008.0,4,8,2012,Revolutionary Road,\"I Love My Children, Frank\",tt0959337\nRVGyvDhPE3k,2008.0,5,8,2012,Revolutionary Road,I've Been With a Girl a Few Times,tt0959337\nlPfrzsQ2-Qo,2008.0,8,8,2012,Revolutionary Road,A Swell Breakfast,tt0959337\nn2lTpPptOWA,2008.0,7,8,2012,Revolutionary Road,Shell of a Woman,tt0959337\nRSEMLDUOqe4,2008.0,2,8,2012,Revolutionary Road,Paris!,tt0959337\n1BUBVkpQQGA,2008.0,1,8,2012,Revolutionary Road,You're Sick!,tt0959337\nFhDi_WF5uOI,2005.0,7,10,2012,Red Eye,Keefe is a Target,tt0421239\nZcvlWuqqv48,2005.0,4,10,2012,Red Eye,18F Has Bomb,tt0421239\nSJB5InL3g7I,2005.0,6,10,2012,Red Eye,Airport Pursuit,tt0421239\nkq0YESApfvs,2005.0,9,10,2012,Red Eye,Trying to Kill Me,tt0421239\nG6EPGcF9mW0,2005.0,10,10,2012,Red Eye,Fill Out a Comment Card,tt0421239\n6Wmzed6d0Jo,2005.0,8,10,2012,Red Eye,The Assassin,tt0421239\nx7CXlwS73iI,2005.0,3,10,2012,Red Eye,Don't Get Cute,tt0421239\n1MnPXQSWAJo,2005.0,2,10,2012,Red Eye,If You Want Your Dad to Live,tt0421239\nYaLewAfBoU0,2005.0,5,10,2012,Red Eye,Pen Stabbing,tt0421239\nAIPb1OMTZ0Q,2001.0,6,9,2012,Rat Race,I Love Lucy,tt0250687\nOXpqA3BvLLg,2001.0,2,9,2012,Rat Race,The Radar Tower,tt0250687\nuJMPom6-xmA,2001.0,3,9,2012,Rat Race,The Barbie Museum,tt0250687\nMdMVzxis5vs,2001.0,5,9,2012,Rat Race,Our New Driver,tt0250687\nTuiyN5O4Q5k,2005.0,1,10,2012,Red Eye,Reservation Emergency,tt0421239\nWj2sfYCpHOo,2001.0,9,9,2012,Rat Race,Lightning II: The Landspeeder,tt0250687\nCuscvBChOqM,2001.0,4,9,2012,Rat Race,A Little Detour,tt0250687\nXSVzRBiiTxA,2001.0,1,9,2012,Rat Race,There Are No Rules,tt0250687\n4dsgQb3jkk4,2001.0,8,9,2012,Rat Race,Hitler's Car,tt0250687\nUJbqnbXI0Po,2001.0,7,9,2012,Rat Race,Balloon Chase,tt0250687\nBFanCVteXfw,1981.0,3,10,2012,Ragtime,Pay The Toll,tt0082970\n3b00UbIxbCc,1981.0,4,10,2012,Ragtime,Clean This Up,tt0082970\nlClRzGmpFrs,1981.0,6,10,2012,Ragtime,Attack on Emerald Isle Firehouse,tt0082970\n9wQHMLWpVLk,1981.0,5,10,2012,Ragtime,I Spent My Whole Life Forgetting,tt0082970\nwVpIChmQ7dQ,1981.0,9,10,2012,Ragtime,Rhinelander Waldo,tt0082970\n_U82hhWfDFY,1981.0,1,10,2012,Ragtime,Baby in the Garden,tt0082970\ncLYCKmqJApw,1981.0,8,10,2012,Ragtime,Atlantic City,tt0082970\n40cOkf5fT7A,2001.0,2,10,2012,Pootie Tang,Wa-Da-Tah!,tt0258038\nEPDoc6alrlE,1981.0,10,10,2012,Ragtime,Such a Rage In My Heart,tt0082970\nB1Q2f338TJU,1981.0,7,10,2012,Ragtime,Taking Over Morgan Library,tt0082970\nTJf7vDKfuFQ,1981.0,2,10,2012,Ragtime,Why Is She Tied Up?,tt0082970\ng0mHVE8ebqA,2001.0,10,10,2012,Pootie Tang,\"It's Hot, Too\",tt0258038\nNLIbv_J5E0M,2001.0,9,10,2012,Pootie Tang,\"Clap It Up, My Hammies\",tt0258038\ndOTGLArtfrQ,2001.0,6,10,2012,Pootie Tang,I Am Not Your Damie!,tt0258038\naESwFtEWnpM,2001.0,5,10,2012,Pootie Tang,Just Cause a Girl Likes to Dress Fancy,tt0258038\n89lwQxQm5co,2001.0,1,10,2012,Pootie Tang,Pootie and Bob,tt0258038\nyu_9eQXlsVQ,2001.0,4,10,2012,Pootie Tang,Pootie Too Good!,tt0258038\nTBS2UeiR7Mc,1970.0,5,8,2012,On A Clear Day...,He'll Never Be You,tt0066181\n8Wg3WYlR2M8,2001.0,3,10,2012,Pootie Tang,Mauled By a Gorilla,tt0258038\n2K-ihnb5kho,1970.0,4,8,2012,On A Clear Day...,Go To Sleep,tt0066181\nx1BpKIb7Ces,1970.0,8,8,2012,On A Clear Day...,On a Clear Day You Can See Forever,tt0066181\nuE_EjcgtiVI,1970.0,7,8,2012,On A Clear Day...,Come Back To Me,tt0066181\n_8s4_Nabo4E,1970.0,6,8,2012,On A Clear Day...,What Did I Have That I Don't Have,tt0066181\n4EfmKXE-Li4,1978.0,3,8,2012,Oliver's Story,Don't Forget To Bring Your Ass,tt0078024\nu7kInn-7hcA,1970.0,2,8,2012,On A Clear Day...,Love With All the Trimmings,tt0066181\nu73HoUZD7tc,1978.0,7,8,2012,Oliver's Story,A Business Magnet or a Woman?,tt0078024\nSESbcd2bp80,1970.0,1,8,2012,On A Clear Day...,I Make Flowers Grow,tt0066181\nTV9GpnvWxgQ,1978.0,8,8,2012,Oliver's Story,Something Feels Dead Here,tt0078024\nG_2PNOH_j6A,1978.0,2,8,2012,Oliver's Story,Just a Single Guest,tt0078024\nFsqymfl2Q_A,1970.0,3,8,2012,On A Clear Day...,Meet Tad Pringle,tt0066181\njlYY8xkTXOQ,1978.0,4,8,2012,Oliver's Story,Hardly a Hot Topic,tt0078024\na-KQ5h6WmJg,1978.0,6,8,2012,Oliver's Story,You and I Are Upperclass WASPs,tt0078024\nE6SfKJ0TmXs,1978.0,1,8,2012,Oliver's Story,I Wanna See It,tt0078024\n51pdEOruyWY,1978.0,5,8,2012,Oliver's Story,An Official Go Ahead,tt0078024\n7dHg_hYZDCw,1968.0,6,8,2012,No Way to Treat a Lady,You're A Midget,tt0063356\nUGKRVSevWnA,1968.0,1,8,2012,No Way to Treat a Lady,A Little Delicate Spot,tt0063356\njiP6PiKJLUs,1968.0,8,8,2012,No Way to Treat a Lady,Don't Answer It,tt0063356\n0QeOXuuFo4g,1968.0,7,8,2012,No Way to Treat a Lady,That Girl Is A Gem,tt0063356\nQbfEULz4z98,1968.0,4,8,2012,No Way to Treat a Lady,You Wanted to See Me Again,tt0063356\nWBHjaRXCINg,1968.0,3,8,2012,No Way to Treat a Lady,Goodbye Mrs. Himmel,tt0063356\ngKGmO34XgMU,1968.0,5,8,2012,No Way to Treat a Lady,Who Is She?,tt0063356\n7UsWapAIMGo,1968.0,2,8,2012,No Way to Treat a Lady,No Way To Treat A Lady,tt0063356\nKOV2C0jVS4M,1962.0,4,8,2012,My Geisha,Weak Connection,tt0056267\nrMdZw9aBmnY,1962.0,3,8,2012,My Geisha,Have I Got a Lot To Learn,tt0056267\nvnQ9yD_IIwo,1962.0,8,8,2012,My Geisha,\"Keep Bowing, You Little Ham\",tt0056267\n3FDh8EtZETg,1962.0,2,8,2012,My Geisha,Kissing Is Most Interesting,tt0056267\ncCNhONF1lHI,1962.0,1,8,2012,My Geisha,Lucy In Disguise,tt0056267\n1lCWhKWBjbc,1962.0,7,8,2012,My Geisha,You're Dishonoring Me,tt0056267\nYBRg2qsJ94Y,1962.0,6,8,2012,My Geisha,Community Bath With the Girls,tt0056267\ny47SwwfaTBk,1962.0,5,8,2012,My Geisha,Bluffing Japanese,tt0056267\nQ7-BibZkYxY,1994.0,6,10,2012,Milk Money,\"Very, Very Bad\",tt0110516\nQ-_d7CI08qc,1994.0,5,10,2012,Milk Money,You Should Never Have to Practice,tt0110516\nWFOM58iTTJQ,1994.0,7,10,2012,Milk Money,And Don't Take Your Clothes Off For Money,tt0110516\nmq2cz9Xvzcw,1994.0,1,10,2012,Milk Money,Sex Ed: In a Tree,tt0110516\nB1WG5mK06fA,1994.0,10,10,2012,Milk Money,I'm a Hooker,tt0110516\naNR8SIVnHTY,1994.0,8,10,2012,Milk Money,Sex Ed: Live and in Person,tt0110516\n_AUvAyx_fwc,1994.0,4,10,2012,Milk Money,Frank and Friends Get a Show,tt0110516\ny603mzYAcas,1994.0,2,10,2012,Milk Money,A Spot on a Woman,tt0110516\ng4v51XeJnkw,1994.0,3,10,2012,Milk Money,Frank's Business Proposition,tt0110516\nLOb8UYWDz-0,1994.0,9,10,2012,Milk Money,\"You Know This Woman, Son?\",tt0110516\nTiCSS1zLCCI,1972.0,2,10,2012,Last of the Red Hot Lovers,You Smelled Your Fingers,tt0068835\nI-kLvrKYP4w,1972.0,4,10,2012,Last of the Red Hot Lovers,Bleeding Lip,tt0068835\nFc7bVIA-b1k,1972.0,8,10,2012,Last of the Red Hot Lovers,I Married An Ape,tt0068835\nRw8cPAmrrbU,1972.0,6,10,2012,Last of the Red Hot Lovers,The $20 Loan,tt0068835\nFiAJpDiz6Kw,1972.0,3,10,2012,Last of the Red Hot Lovers,Am I Appealing To You?,tt0068835\ni7vKbmKF9VI,1972.0,5,10,2012,Last of the Red Hot Lovers,I Think About Dying,tt0068835\nGIiXwau_5iw,1972.0,10,10,2012,Last of the Red Hot Lovers,I'm In My Underwear!,tt0068835\nj3MZdcbv-ew,1972.0,7,10,2012,Last of the Red Hot Lovers,I'm Goofy Today,tt0068835\nP38cMPv-Nag,1972.0,9,10,2012,Last of the Red Hot Lovers,Melancholia,tt0068835\nU2Eff0vnE6s,1972.0,1,10,2012,Last of the Red Hot Lovers,Say Something,tt0068835\nMMiicN9p8a8,2006.0,4,9,2012,Last Holiday,Table for One,tt0408985\njqyhGCHT-v0,2006.0,8,9,2012,Last Holiday,The Secret of Life,tt0408985\nV81lVBQ8TCs,2006.0,9,9,2012,Last Holiday,That Is a Long Drop,tt0408985\nOinSJLNXgA0,2006.0,6,9,2012,Last Holiday,First Time Snowboarding,tt0408985\nWg3iwI32C5Q,2006.0,5,9,2012,Last Holiday,Strange Spa Treatments,tt0408985\nhweZTM7VPbk,2006.0,7,9,2012,Last Holiday,Ladies First,tt0408985\ngK06H6EpKP4,2006.0,2,9,2012,Last Holiday,Enough Is Enough,tt0408985\nreIyMTBfEwQ,2006.0,1,9,2012,Last Holiday,Three Weeks to Live,tt0408985\nYorm8_AGu10,2006.0,3,9,2012,Last Holiday,Why Me?,tt0408985\nzPa3qf25T3s,1997.0,5,8,2012,Kiss the Girls,Breaking the Rules,tt0119468\nT6QO7UyB5tI,1997.0,3,8,2012,Kiss the Girls,Why Am I Here?,tt0119468\n5AwBYVybnY0,1997.0,4,8,2012,Kiss the Girls,Who's Out There?,tt0119468\n081zoKkdEYA,1997.0,2,8,2012,Kiss the Girls,What Do You Want From Me?,tt0119468\nQpxdbtnTXXY,1997.0,8,8,2012,Kiss the Girls,What Do You Hear?,tt0119468\nuXyvjZa6x2o,1997.0,7,8,2012,Kiss the Girls,Blame Me,tt0119468\nKiOiYYsMcM4,1997.0,1,8,2012,Kiss the Girls,Just Me and You,tt0119468\nIWe5PTNQ6ko,1997.0,6,8,2012,Kiss the Girls,Kate Escapes,tt0119468\nVYMQZsZUxeA,2001.0,6,10,2012,Jimmy Neutron: Boy Genius,\"Buck Up, Mister\",tt0268397\nhA1BikUzBKc,2001.0,4,10,2012,Jimmy Neutron: Boy Genius,No Parents,tt0268397\nS_fzdjP3jKg,2001.0,9,10,2012,Jimmy Neutron: Boy Genius,Not Tiny!,tt0268397\nQBvJoXAu2zM,2001.0,7,10,2012,Jimmy Neutron: Boy Genius,That's a Big Chicken!,tt0268397\nnIJQOFSGKks,2001.0,1,10,2012,Jimmy Neutron: Boy Genius,Getting Ready For School,tt0268397\na7qRJ9T9TPg,2001.0,8,10,2012,Jimmy Neutron: Boy Genius,Who Wants Fried Chicken?,tt0268397\nr7k9mkm0TKU,2001.0,5,10,2012,Jimmy Neutron: Boy Genius,Blast Off,tt0268397\nEa5k9eZg7rk,2001.0,2,10,2012,Jimmy Neutron: Boy Genius,Greetings from Planet Earth!,tt0268397\nSYOiDFKwCsA,2001.0,3,10,2012,Jimmy Neutron: Boy Genius,Shrink Ray,tt0268397\nPZPOGfNlJyo,1990.0,8,8,2012,Internal Affairs,Put the Knife Down,tt0099850\notQNGe5sWaQ,1990.0,7,8,2012,Internal Affairs,Who Did You Have Lunch With?,tt0099850\nJQ8nLSXGWWE,1990.0,3,8,2012,Internal Affairs,Officer Down,tt0099850\n5R7pGpChUVw,1990.0,6,8,2012,Internal Affairs,Elevator Beating,tt0099850\nhRRvrXxGJjg,1990.0,2,8,2012,Internal Affairs,\"You Can Trust Me, I'm a Cop\",tt0099850\nr0-vDDcDUMo,1990.0,1,8,2012,Internal Affairs,You Call Your Boyfriend?,tt0099850\nZtahDAhvvSc,1990.0,5,8,2012,Internal Affairs,The Game's Over,tt0099850\nMTX0Ig39Nws,1997.0,5,9,2012,In & Out,A Barbra Streisand Bachelor Party,tt0119360\nRh4ap8LIbtw,1997.0,4,9,2012,In & Out,In the Out Hole,tt0119360\ngvbI2bHohQ4,1990.0,4,8,2012,Internal Affairs,The Ugly One,tt0099850\nmD83kao4Q60,1997.0,3,9,2012,In & Out,Of Course He Thinks You're Gay,tt0119360\noZQ95ON2X-s,1997.0,9,9,2012,In & Out,I'm a Mess and I'm Starving!,tt0119360\nUJ9Q1b1FwKM,1997.0,1,9,2012,In & Out,...And He's Gay,tt0119360\nfhUXu7x66BA,1997.0,6,9,2012,In & Out,Know What You Need?,tt0119360\n0yYUlLFlw1I,1997.0,8,9,2012,In & Out,F*** Barbra Streisand!,tt0119360\nxa-P9llTLM4,1997.0,7,9,2012,In & Out,Guide to Being a Manly Man,tt0119360\nZPP70vRDmzM,1997.0,2,9,2012,In & Out,Is There Something You Want to Tell Us?,tt0119360\nLKpCK8OtA1s,1994.0,1,9,2012,I.Q.,Premature Ignition,tt0110099\nOFlIZu9exco,1994.0,2,9,2012,I.Q.,You're Albert Einstein,tt0110099\njD4Fh0LsvjM,1994.0,8,9,2012,I.Q.,I Love  You.,tt0110099\nR7stiKJsGjY,1994.0,6,9,2012,I.Q.,Are You Thinking What I'm Thinking?,tt0110099\nAkEnbYvJGg0,1994.0,9,9,2012,I.Q.,Wahoo,tt0110099\nw6kumXHaOeI,1994.0,5,9,2012,I.Q.,An Unmistakable Chemical Reaction,tt0110099\nqb00B8U8UBw,1994.0,7,9,2012,I.Q.,\"A, B, C, D, or E\",tt0110099\nU3qhoY13AkM,1994.0,3,9,2012,I.Q.,Do You Think Time Exists?,tt0110099\n3NCw83LVWFo,1994.0,4,9,2012,I.Q.,Time Deprivation,tt0110099\nZI1jKmWANP0,2003.0,6,8,2012,I'll Sleep When I'm Dead,The Pathologist,tt0319531\nnZq8AiBXhiI,2003.0,7,8,2012,I'll Sleep When I'm Dead,Getting Out,tt0319531\n8lTcU_MuQGg,2003.0,5,8,2012,I'll Sleep When I'm Dead,Coroner's Report,tt0319531\n-gkBCCbycmQ,2003.0,4,8,2012,I'll Sleep When I'm Dead,Grief,tt0319531\nFvka6JcREsY,2003.0,8,8,2012,I'll Sleep When I'm Dead,I Am Going To Kill You,tt0319531\nOXaqam1ZdZs,2003.0,3,8,2012,I'll Sleep When I'm Dead,Will Returns,tt0319531\ntBeJkq_by_8,2003.0,2,8,2012,I'll Sleep When I'm Dead,Mickser Finds Davey,tt0319531\nVrMWnHwh0z0,1958.0,2,9,2012,Houseboat,\"A Parent, Not a Policeman\",tt0051745\nt-T4RYRUNWk,1958.0,1,9,2012,Houseboat,Cheating the Ring Toss,tt0051745\nBBWQchYpjqQ,2003.0,1,8,2012,I'll Sleep When I'm Dead,Assaulting Davey,tt0319531\n7ynMrmloUVA,1958.0,7,9,2012,Houseboat,You Can't Lose Anything,tt0051745\nWkm_Bp6pG9k,1958.0,8,9,2012,Houseboat,Angelo Gets Cold Feet,tt0051745\nJcO_Cs2WZLU,1958.0,5,9,2012,Houseboat,Home Wreck,tt0051745\neMuBBjnM4yo,1958.0,9,9,2012,Houseboat,Goodnight Ladies and Gentlemen,tt0051745\nh4eOGlJpLYg,1958.0,6,9,2012,Houseboat,The,tt0051745\nuy8_ARH8yyM,1958.0,4,9,2012,Houseboat,Cinzia Stays,tt0051745\nYMhAvAFZ8js,1980.0,3,9,2012,Hangar 18,Exploring the Spacecraft,tt0080836\nKa-SEhfCAUY,1980.0,2,9,2012,Hangar 18,Planning a Cover-Up,tt0080836\nfPk-Dms1rJc,1980.0,4,9,2012,Hangar 18,Well... Be Careful,tt0080836\naqa74uEbtDE,1980.0,8,9,2012,Hangar 18,Gas Truck Getaway,tt0080836\nJQwmeTKQLo8,1958.0,3,9,2012,Houseboat,Perhaps I Will Get a Job,tt0051745\nk0aqHfvHcsc,1980.0,9,9,2012,Hangar 18,Hangar Destruction,tt0080836\nOJiaifxaWCY,1980.0,6,9,2012,Hangar 18,The Origin of Mankind,tt0080836\nwYSIce1SzFU,1980.0,5,9,2012,Hangar 18,Losing the Feds,tt0080836\nzstIMA6K-Ws,1980.0,7,9,2012,Hangar 18,The Brakes Are Gone,tt0080836\nwa5asCQrdPE,1957.0,9,9,2012,Gunfight at the O.K. Corral,The Clanton Family Goes Down,tt0050468\nfCQb93-RrZo,1957.0,1,9,2012,Gunfight at the O.K. Corral,You Want to Get Killed,tt0050468\n_nngOtRHAK0,1980.0,1,9,2012,Hangar 18,The U.F.O. Incident,tt0080836\nBIt9IYPOY2g,1957.0,2,9,2012,Gunfight at the O.K. Corral,You're Getting Out of Here,tt0050468\naE4h5rX9u3U,1957.0,8,9,2012,Gunfight at the O.K. Corral,The Gunfight Begins,tt0050468\n6VUfXGlADjU,1957.0,4,9,2012,Gunfight at the O.K. Corral,I'm Not Fighting,tt0050468\nYJnneXfx_q8,1957.0,7,9,2012,Gunfight at the O.K. Corral,All Gunfighters Are Lonely,tt0050468\nUNlo03HucLM,1957.0,5,9,2012,Gunfight at the O.K. Corral,In a Charitable Mood,tt0050468\nLj7OCHi8x7c,1957.0,6,9,2012,Gunfight at the O.K. Corral,Check in Your Sidearms,tt0050468\n-xX0mOMuxyI,1981.0,6,8,2012,Gallipoli,Bad News,tt0082432\n1yLt0kzJIUQ,1957.0,3,9,2012,Gunfight at the O.K. Corral,Pretty Much Alike,tt0050468\nGLZXGflTTjA,1981.0,1,8,2012,Gallipoli,Meeting Frank,tt0082432\n0VIefkYf2Rs,1981.0,2,8,2012,Gallipoli,\"Reunited,\",tt0082432\nRGuY5r-7ta4,1981.0,3,8,2012,Gallipoli,Friendly Race,tt0082432\nelvtIj_sPwU,1985.0,1,9,2012,Friday the 13th 5,Reawakening Jason,tt0758746\naoZDSctyBE0,1985.0,2,9,2012,Friday the 13th 5,I've Never Really Chopped Wood Before,tt0758746\nHONa-BdZMA4,1985.0,5,9,2012,Friday the 13th 5,I Know Who It Is,tt0758746\nryKepaMME_U,1985.0,8,9,2012,Friday the 13th 5,Plowing Time,tt0758746\nltdgreWmnSY,1985.0,9,9,2012,Friday the 13th 5,He's Back,tt0758746\nYIw-r1yjxMU,1985.0,7,9,2012,Friday the 13th 5,Come Here and Eat My Stew!,tt0758746\nOGEmY8RCF40,1985.0,6,9,2012,Friday the 13th 5,Killer Crapper,tt0758746\nF9fEIstp82g,1985.0,4,9,2012,Friday the 13th 5,Coke Head & Dead,tt0758746\nqlwxaCiNZzo,1985.0,3,9,2012,Friday the 13th 5,Eat My Flare,tt0758746\nlnf-VO8gIGg,2005.0,7,9,2012,Four Brothers,I Hate Dirty Cops,tt0430105\nFZJK7bi2mWU,2005.0,9,9,2012,Four Brothers,Police Interrogations,tt0430105\nCf3YdE-vMyE,2005.0,8,9,2012,Four Brothers,Ice Boxing,tt0430105\nZCYBYZDrmWk,2005.0,6,9,2012,Four Brothers,Mercer House Shootout,tt0430105\nbIbxR_KN2TM,2005.0,3,9,2012,Four Brothers,Basketball Interrupted,tt0430105\nbdm9LVNbuNg,2005.0,2,9,2012,Four Brothers,These White Cops Are Crazy,tt0430105\nBcW6m0Rg1-8,2005.0,1,9,2012,Four Brothers,Evelyn's Murder,tt0430105\nqSnUywWS9xs,2005.0,5,9,2012,Four Brothers,Blizzard Car Chase,tt0430105\nJPofeRImxv8,1991.0,1,10,2012,Flight of the Intruder,Shot in the Neck,tt0099587\nlDduI2NkIsQ,2005.0,4,9,2012,Four Brothers,You Goin' Down,tt0430105\nvXLLH1eSOZE,1991.0,9,10,2012,Flight of the Intruder,Gunned Down,tt0099587\ntBNjWDkNbms,1991.0,6,10,2012,Flight of the Intruder,You Want to Bomb Hanoi?,tt0099587\nrZuHQ94ES6U,1991.0,4,10,2012,Flight of the Intruder,Rowdy Drunken Fun,tt0099587\ng2h8xRzMxtA,1991.0,5,10,2012,Flight of the Intruder,You're All We Got,tt0099587\npZXuol2q1Yg,1991.0,2,10,2012,Flight of the Intruder,Memorial Service,tt0099587\n2wOJBjpLTBA,1991.0,7,10,2012,Flight of the Intruder,Let's Go Downtown,tt0099587\ng8YFtf6tfRg,1991.0,10,10,2012,Flight of the Intruder,I Wouldn't Have It Any Other Way,tt0099587\nXwob-vrMkz0,1991.0,8,10,2012,Flight of the Intruder,That's an Order,tt0099587\n_XriL3ARav8,1981.0,8,9,2012,First Monday in October,Let There Be Light,tt0082382\neZ64IFqMQuQ,1981.0,7,9,2012,First Monday in October,\"If We Don't Hear It, Who Will?\",tt0082382\ndZ-teGgl2tw,1981.0,4,9,2012,First Monday in October,Nebraska vs. Maloney,tt0082382\nr0N4KlcTSUQ,1981.0,2,9,2012,First Monday in October,Another Man's Poetry,tt0082382\nf9vhFEweovc,1981.0,6,9,2012,First Monday in October,A Snapshot of Our Convictions,tt0082382\ni-f0M5TqmsY,1981.0,5,9,2012,First Monday in October,Censorship Is an Outrage,tt0082382\n-Ixi48TxkaA,1981.0,3,9,2012,First Monday in October,A Woman on the Court,tt0082382\nX1DvoMiJ6n0,1981.0,9,9,2012,First Monday in October,\"Extremely Noble, But Wrong\",tt0082382\nDN3iIszMnI0,1989.0,4,9,2012,Fat Man and Little Boy,Kick It or Lick It,tt0097336\n2djG7snKS8w,1989.0,5,9,2012,Fat Man and Little Boy,Optimism vs. Realism,tt0097336\nK8qQO5DvYhE,1989.0,2,9,2012,Fat Man and Little Boy,Beyond the Theoretical,tt0097336\nzB-hQWVCwwU,1989.0,7,9,2012,Fat Man and Little Boy,Stop Playing God,tt0097336\nAQ0P7R9CfCY,1989.0,6,9,2012,Fat Man and Little Boy,I'm Dead,tt0097336\nZQ-8RqS16uU,1989.0,1,9,2012,Fat Man and Little Boy,Is It Possible?,tt0097336\nemVaK5MoPBg,1989.0,9,9,2012,Fat Man and Little Boy,Testing the Bomb,tt0097336\nn3_noySdJVs,2005.0,2,9,2012,Dreamer,Soñador Likes Popsicles,tt0418647\nJPoZcvcPtIA,1989.0,8,9,2012,Fat Man and Little Boy,It's Your Baby,tt0097336\n78xJ5ZYPQnc,2005.0,1,9,2012,Dreamer,Broken Leg,tt0418647\npVZtw0LrIX4,2005.0,9,9,2012,Dreamer,A Great Champion,tt0418647\nYuuMHvaxXFY,1989.0,3,9,2012,Fat Man and Little Boy,A Good Wife,tt0097336\nh0i97SWIdLU,2005.0,6,9,2012,Dreamer,Once Upon a Time,tt0418647\nNjpz7jWgB04,2005.0,8,9,2012,Dreamer,The Breeders' Cup,tt0418647\nBjKq059eG6E,2005.0,7,9,2012,Dreamer,You Came Home!,tt0418647\nSRNxRvPSscQ,2005.0,5,9,2012,Dreamer,She Was Our Horse,tt0418647\nRLcngJeCHtg,2005.0,3,9,2012,Dreamer,We're Going to Run Away,tt0418647\n0M6PP32wggM,2005.0,4,9,2012,Dreamer,You Just Sold Soñador,tt0418647\nOuE_YH1pzC0,1952.0,4,9,2012,\"Come Back, Little Sheba\",Gotta Keep Living,tt0044509\n5IFvZMLDqXA,1952.0,7,9,2012,\"Come Back, Little Sheba\",Relapse,tt0044509\nz7vdutawe8g,1952.0,6,9,2012,\"Come Back, Little Sheba\",Doc's Struggle,tt0044509\n59E_IDXFWuY,1952.0,5,9,2012,\"Come Back, Little Sheba\",Turk and Marie,tt0044509\nLNFINZN0KXY,1952.0,2,9,2012,\"Come Back, Little Sheba\",A.A. Meeting,tt0044509\nOGbya9Fm_Ns,1952.0,1,9,2012,\"Come Back, Little Sheba\",Marie Rents the Spare Room,tt0044509\n8csRJcVDQdc,1952.0,8,9,2012,\"Come Back, Little Sheba\",He's Got a Knife!,tt0044509\nSLkR7mzysAs,1952.0,3,9,2012,\"Come Back, Little Sheba\",Little Sheba,tt0044509\nxPLtxTJnVOY,2000.0,8,9,2012,Bless the Child,A Rude Awakening,tt0163983\n7hrG-FtbWsw,1952.0,9,9,2012,\"Come Back, Little Sheba\",Lola's Dream,tt0044509\nE2syhaH4Qgk,2000.0,6,9,2012,Bless the Child,Subway Chase,tt0163983\nIuCIhvIAn44,2000.0,4,9,2012,Bless the Child,Divine Communication,tt0163983\nyV5JUYhnJQk,2000.0,2,9,2012,Bless the Child,She's Special,tt0163983\nMAzasda1GUA,2000.0,5,9,2012,Bless the Child,Do You Believe in The Devil?,tt0163983\nr2xpAXMPRHc,2000.0,3,9,2012,Bless the Child,Rat Problem,tt0163983\nCeMiILVlZgo,2000.0,1,9,2012,Bless the Child,\"Do You Know Any Tricks, Martin?\",tt0163983\nVyMHLfAg9bI,2000.0,7,9,2012,Bless the Child,\"Thou Shalt Not Kill, Especially Without Bullets\",tt0163983\nD5a4_a3dIK4,2000.0,9,9,2012,Bless the Child,Divine Intervention,tt0163983\nnLeZGuvX7D8,1977.0,2,8,2012,Black Sunday,Sometimes It's Better to Let This Out,tt0075765\nSWjCrhbuvCM,1977.0,6,8,2012,Black Sunday,The Shadow in the Picture,tt0075765\nxknWZIAzBCc,1977.0,8,8,2012,Black Sunday,Crashing the Super Bowl,tt0075765\nVWJfmCFQjAk,1977.0,4,8,2012,Black Sunday,Testing the Weapon,tt0075765\nawYi2rXf1Ws,1977.0,3,8,2012,Black Sunday,Poison Nurse Assassin,tt0075765\n7ZnhCcj4sXg,1977.0,5,8,2012,Black Sunday,What Exactly Is This Super Bowl?,tt0075765\nexE414Mp-gA,1977.0,7,8,2012,Black Sunday,Stealing the Blimp,tt0075765\neensusNo-jE,2003.0,7,10,2012,Biker Boyz,No More Racing,tt0326769\n9R_jeIGgaa4,2003.0,5,10,2012,Biker Boyz,That's Messed Up,tt0326769\nUEemdeEfw-Y,1977.0,1,8,2012,Black Sunday,Mossad Commando Raid,tt0075765\nDt3n2LVD4q4,2003.0,8,10,2012,Biker Boyz,He's Your Son,tt0326769\nxLz4trRoHeM,2003.0,3,10,2012,Biker Boyz,You Want a Piece of Me?,tt0326769\nhMW3GQ2x79Q,2003.0,2,10,2012,Biker Boyz,You Proved Yourself,tt0326769\n317Fhd1UwzQ,2003.0,1,10,2012,Biker Boyz,Will is Dead,tt0326769\nnF2xGs2J6Gk,2003.0,6,10,2012,Biker Boyz,It's On,tt0326769\nDERds8rPSi0,2003.0,4,10,2012,Biker Boyz,Joy Ride,tt0326769\nxaBIju-chWA,2003.0,10,10,2012,Biker Boyz,Motorcycle Malfunction,tt0326769\ngdJC7j6maRs,1967.0,9,9,2012,Barefoot in the Park,On the Roof,tt0061385\nBjbnFg5KBwI,1967.0,8,9,2012,Barefoot in the Park,You Get Out,tt0061385\nQD1FH9vC-q0,1967.0,1,9,2012,Barefoot in the Park,Arriving at the Plaza,tt0061385\nJJAByeqjimo,2003.0,9,10,2012,Biker Boyz,Get Off the Bike,tt0326769\ndjAkVv3P_pQ,1967.0,7,9,2012,Barefoot in the Park,One of the Two,tt0061385\ncJYwpfA3HWY,1972.0,7,9,2012,Bad Company,Shootout,tt0068245\nWvgG6VNS2J0,1967.0,5,9,2012,Barefoot in the Park,Cold First Night,tt0061385\nT3dPGXTusv4,1967.0,4,9,2012,Barefoot in the Park,New Apartment,tt0061385\n7euiG3tT2R8,1967.0,2,9,2012,Barefoot in the Park,A Real Kiss,tt0061385\nAgJE212GTcs,1972.0,8,9,2012,Bad Company,Hanging a Criminal,tt0068245\n22aRiNlHhaI,1972.0,5,9,2012,Bad Company,Trading a Gun for a Meal,tt0068245\npCQuhXDlfL8,1972.0,6,9,2012,Bad Company,Stealing Food,tt0068245\noqyRFXXwB48,1967.0,3,9,2012,Barefoot in the Park,Delivery Men,tt0061385\n752JlGiyHow,2003.0,11,11,2012,Master and Commander,A Duet,tt0311113\nXeERYS-0Tnw,2003.0,3,11,2012,Master and Commander,Man Overboard,tt0311113\nOhWMVue9ai8,2003.0,10,11,2012,Master and Commander,The Battle Is Won,tt0311113\nNMG1EMAgrDk,2003.0,9,11,2012,Master and Commander,Hand to Hand Combat,tt0311113\n576luHgBG64,2003.0,8,11,2012,Master and Commander,Attack on the Acheron,tt0311113\nKlfCBX2CwMM,2003.0,7,11,2012,Master and Commander,This Ship Is England,tt0311113\ndsMSPwyYBbI,2003.0,6,11,2012,Master and Commander,Self Surgery,tt0311113\nw_82krI5UQ4,2003.0,5,11,2012,Master and Commander,Hollom Jumps,tt0311113\nM_pk0lW3oJ8,2003.0,4,11,2012,Master and Commander,Men Must Be Governed,tt0311113\ntIbuhbGhJxk,2003.0,2,11,2012,Master and Commander,My God That's Seamanship!,tt0311113\nXNL0KfD0nts,2003.0,1,11,2012,Master and Commander,The Lesser of Two Weevils,tt0311113\nN-PI5nIwciE,1994.0,9,9,2012,Andre,Goes to the Aquarium,tt0109120\n_c7cV5_jU5Q,1994.0,8,9,2012,Andre,Saved by,tt0109120\ncjS-Y6WsWMg,1994.0,6,9,2012,Andre,Runs Away,tt0109120\nb_jYYdrSYBg,1994.0,7,9,2012,Andre,This is the Only Way,tt0109120\nPJot4Pv7dFI,1994.0,5,9,2012,Andre,in Danger,tt0109120\nRhUPit82Gm0,1994.0,3,9,2012,Andre,My Best Friend,tt0109120\nT7eWdvyCHyI,1994.0,4,9,2012,Andre,'s a Celebrity,tt0109120\nAI9AcMtuqsU,1994.0,2,9,2012,Andre,Convincing  He's a Seal,tt0109120\n39vZZiM3kIA,1994.0,1,9,2012,Andre,Bonding with,tt0109120\nr4SF22qFxbE,2010.0,5,9,2012,True Grit,Shooting Contest,tt1403865\noK4FZ3ks17M,2010.0,1,9,2012,True Grit,A Man with,tt1403865\ngMPr9rchJMs,2010.0,2,9,2012,True Grit,I'm a Texas Ranger,tt1403865\nmbkWniWSpR0,2010.0,7,9,2012,True Grit,Facing Tom Chaney,tt1403865\novy6F76ip3M,2010.0,8,9,2012,True Grit,I Will Kill This Girl!,tt1403865\nwdAXjMj6mfU,2010.0,9,9,2012,True Grit,Bold Talk for a One-Eyed Fat Man,tt1403865\nMHfk4edzvnI,2010.0,6,9,2012,True Grit,I Bow Out,tt1403865\nMEU2EJBkJcs,2010.0,3,9,2012,True Grit,This Ain't No Coon Hunt,tt1403865\n_Rnaa9qtGgs,2010.0,4,9,2012,True Grit,Killing at the Cabin,tt1403865\nfY-Aprk4mtY,2005.0,9,9,2012,The Weather Man,Spritz Nipper,tt0384680\nmQ3tgtzkz_U,2005.0,8,9,2012,The Weather Man,Aiming at Russ,tt0384680\nqvFduxMK7zo,2005.0,7,9,2012,The Weather Man,Pie Breakdown,tt0384680\nvRaCv5oNQ3w,2005.0,6,9,2012,The Weather Man,Tartar Sauce,tt0384680\noCjXFnr826Y,2005.0,5,9,2012,The Weather Man,A Lack of Enthusiasm,tt0384680\nFDGyKHeU2Es,2005.0,4,9,2012,The Weather Man,Trust Counseling,tt0384680\ncSUVLAM8jx0,2005.0,3,9,2012,The Weather Man,Camel Toe,tt0384680\nVB3awTlgRFk,1990.0,8,8,2012,The Two Jakes,One Last Smoke,tt0100828\n-5Rohhkg-7k,2005.0,2,9,2012,The Weather Man,Hit With A Frosty,tt0384680\nb3Aq5Vc0Ics,2005.0,1,9,2012,The Weather Man,Waiting In Line,tt0384680\nwrrxHvC1J7I,1990.0,7,8,2012,The Two Jakes,Who is Kitty Berman?,tt0100828\nN4fylYYIrUc,1990.0,6,8,2012,The Two Jakes,Suck It,tt0100828\n2cExWs8VUN8,1990.0,5,8,2012,The Two Jakes,The Name of the Game is Oil,tt0100828\n_7Y_OCGOKTk,1990.0,4,8,2012,The Two Jakes,Don't Make Me Do It,tt0100828\nZErJ-R9PLFA,2008.0,8,8,2012,The Ruins,Her Name Is Amy,tt0963794\nwCDAFiLrHE0,1990.0,3,8,2012,The Two Jakes,The Wife of the Guy that Jake Berman Shot,tt0100828\noqCHL75LG3Q,1990.0,2,8,2012,The Two Jakes,\"How Could You, Kitty?\",tt0100828\n3zPrtRFOZQY,1990.0,1,8,2012,The Two Jakes,,tt0100828\nphzJ2Iam214,2008.0,6,8,2012,The Ruins,It's In My Head,tt0963794\nVtEOGd7tD9o,2008.0,7,8,2012,The Ruins,What Are You Doing?,tt0963794\nJBLwuC2gHVQ,2008.0,5,8,2012,The Ruins,Cut Them Out,tt0963794\n3i76M1f3nB4,2008.0,3,8,2012,The Ruins,Hold Him Down,tt0963794\nar72efkbkSo,2008.0,4,8,2012,The Ruins,A Jealous Rage,tt0963794\najMVBGbsL_E,2008.0,2,8,2012,The Ruins,It's Not a Phone,tt0963794\nMpGCnuiCSuU,2008.0,1,8,2012,The Ruins,Get It Off,tt0963794\nZh_r3u2RK1Q,1996.0,9,9,2012,The Phantom,Turning Down the Phantom Scene,tt0117331\n2ZiKO3NtZiI,1996.0,4,9,2012,The Phantom,The Ghost Who Walks Scene,tt0117331\nhLUSwJuMjWo,1996.0,8,9,2012,The Phantom,The Fourth Skull Scene,tt0117331\n9lj3ebVWDUw,1996.0,7,9,2012,The Phantom,The Brotherhood Scene,tt0117331\nC_QYZUjx7rs,1996.0,6,9,2012,The Phantom,Show Me The Power Scene,tt0117331\nVNQP-pvNK9A,1996.0,5,9,2012,The Phantom,Opportunity In Chaos Scene,tt0117331\nCvK9ZJVsiPM,1996.0,3,9,2012,The Phantom,A Ship Full of Women,tt0117331\nLkBmLiDPbxQ,1996.0,2,9,2012,The Phantom,The Bladed Microscope Scene,tt0117331\nrYXDky5UYks,1996.0,1,9,2012,The Phantom,Death to Tomb Raiders Scene,tt0117331\nDXRDZkTNEuM,1964.0,7,8,2012,The Pawnbroker,No Shooting,tt0059575\nQn336Lxy1TQ,1964.0,8,8,2012,The Pawnbroker,No To Hurt You,tt0059575\nmoYhss9sP94,1964.0,6,8,2012,The Pawnbroker,Subway to the Camps,tt0059575\noJ_2e3gdfNQ,1964.0,4,8,2012,The Pawnbroker,Money Is the Whole Thing,tt0059575\ngzTzSOHP_HM,1964.0,5,8,2012,The Pawnbroker,Are You That Kind of Man?,tt0059575\n5clBF38sqqw,1964.0,3,8,2012,The Pawnbroker,You People,tt0059575\nXSUU-_0cWn4,1964.0,2,8,2012,The Pawnbroker,It's Glass,tt0059575\nOLtnOGTdLO4,1964.0,1,8,2012,The Pawnbroker,Internment Barking,tt0059575\nwx2g7H8UvrQ,1986.0,2,8,2012,The Golden Child,Dancing Pepsi Can,tt0091129\nNtkLxegTLPU,1986.0,8,8,2012,The Golden Child,Let's Get Outta Here,tt0091129\no50HHf9f_SQ,1986.0,7,8,2012,The Golden Child,Brother Numpsay!,tt0091129\nV1bgBW9xx40,1986.0,6,8,2012,The Golden Child,Viva Nepal!,tt0091129\n7zwPRGbmrow,1986.0,5,8,2012,The Golden Child,There's No Ground Here,tt0091129\njr0JXSM_0Nk,1986.0,4,8,2012,The Golden Child,I Want the Knife,tt0091129\nETkJs0Mhnmo,1986.0,3,8,2012,The Golden Child,Chandler's Dream,tt0091129\na4WffLH9UMs,1956.0,4,9,2012,The Court Jester,Bewitched by Griselda,tt0049096\n4hgt2hCDgr4,1956.0,6,9,2012,The Court Jester,They Say It Isn't Catching,tt0049096\naGMCd4SoXk0,1986.0,1,8,2012,The Golden Child,It's Your Destiny,tt0091129\n3SNcyADMY8k,1956.0,1,9,2012,The Court Jester,The Wine Merchant and the Mute,tt0049096\nTdRbjlsp7uM,1956.0,2,9,2012,The Court Jester,Master of Many Tongues,tt0049096\ncysxO5Z-0L8,1956.0,3,9,2012,The Court Jester,Get It? Got It. Good.,tt0049096\nAfyZ1bWv7Ls,1956.0,9,9,2012,The Court Jester,Crossing Blades with the Snap of a Finger,tt0049096\nG9GWMbrEu_g,1956.0,5,9,2012,The Court Jester,The Maladjusted Jester,tt0049096\n6zIWcCvQNqQ,1956.0,8,9,2012,The Court Jester,The Flagon with the Dragon,tt0049096\nFM_KxbSOjJk,2004.0,7,8,2012,Surviving Christmas,There Was No Real Family,tt0252028\nLmCGd9zuFTs,2004.0,8,8,2012,Surviving Christmas,Who Are You Renting For New Year's?,tt0252028\nuFHReMA18_c,2004.0,6,8,2012,Surviving Christmas,Worst Christmas Ever,tt0252028\njq2tARSds7M,2004.0,5,8,2012,Surviving Christmas,Fiji Time,tt0252028\n2-oMhYVEk8w,2004.0,4,8,2012,Surviving Christmas,A Lifetime of Lonely Christmases,tt0252028\nk1_OK7cug8I,2004.0,3,8,2012,Surviving Christmas,Role Playing,tt0252028\ncM2U8v8OuLo,2004.0,2,8,2012,Surviving Christmas,Contractually Obliged,tt0252028\nFekzb5yWBZk,2004.0,1,8,2012,Surviving Christmas,Burning My Grievances,tt0252028\n78IG1HROeoc,2001.0,7,9,2012,Evolution,Science Project's Over,tt0251075\nd6E6Pu3a5qM,2001.0,8,9,2012,Evolution,Fire Is the Catalyst,tt0251075\n9-Kvo3-7OZo,2001.0,6,9,2012,Evolution,\"Liar, Liar, Pants on Fire\",tt0251075\nmaWXwv9cBS4,2001.0,9,9,2012,Evolution,It's Payback Time,tt0251075\nf9_1eujdVpI,2001.0,5,9,2012,Evolution,\"Here Birdie, Birdie, Birdie\",tt0251075\n-nkxnc1C6rc,2001.0,4,9,2012,Evolution,It's In Me!,tt0251075\naV2eCTRFJbY,2001.0,3,9,2012,Evolution,The Kane Madness,tt0251075\nxAV_XfpHSr4,2001.0,2,9,2012,Evolution,They're Aliens,tt0251075\nYldUEtdvBZU,2001.0,6,8,2012,Domestic Disturbance,What Kind of Man You Really Are,tt0249478\nDZfq30VdBqU,2001.0,1,9,2012,Evolution,Meteor Crashes into Earth,tt0251075\nK7vOjKOdMNE,2001.0,8,8,2012,Domestic Disturbance,Frank Fights Rick,tt0249478\nmTr1vpzU00Q,2001.0,7,8,2012,Domestic Disturbance,\"Where's Your Wallet, Danny?\",tt0249478\nXSa0_MGO8bA,2001.0,5,8,2012,Domestic Disturbance,A Dream About A Murder,tt0249478\nOIl2sEhU24I,2001.0,4,8,2012,Domestic Disturbance,After the Murder,tt0249478\niTlkXQH-sdg,2001.0,3,8,2012,Domestic Disturbance,Back Seat Witness,tt0249478\nmvkHPUZnww0,2009.0,3,9,2012,The Soloist,A New Cello,tt0821642\nhVZ9AGQL_oo,2001.0,1,8,2012,Domestic Disturbance,A Surprise at the Wedding,tt0249478\naYuatR0B8Uc,2001.0,2,8,2012,Domestic Disturbance,A Game of Catch,tt0249478\nrn4Ff3MpiRc,2009.0,2,9,2012,The Soloist,It's a Dream Out Here,tt0821642\nGv_SuIRPPyQ,2009.0,9,9,2012,The Soloist,I'm Honored to be Your Friend,tt0821642\ndAc1rDS3YhQ,2009.0,7,9,2012,The Soloist,I Don't Have Schizophrenia,tt0821642\nV4rNLT7N_VA,2009.0,8,9,2012,The Soloist,You're Never Gonna Cure Nathaniel,tt0821642\nR2n0ZDq1N2c,2009.0,6,9,2012,The Soloist,Don't Ever Put Your Hands On Me,tt0821642\nymzHr_Uvp7w,2009.0,1,9,2012,The Soloist,Meeting Nathaniel,tt0821642\n4tTTXKxHcKY,1992.0,8,8,2012,School Ties,I Saw Dillon Cheat,tt0105327\nkXuzMpA9MaA,2009.0,5,9,2012,The Soloist,Partial Responsibility,tt0821642\nd3P2O-Up78Q,2009.0,4,9,2012,The Soloist,You Are My God,tt0821642\nU2iJ1VmhksI,1992.0,7,8,2012,School Ties,I Saw You Cheat,tt0105327\nfTb9XrbAMRs,1992.0,5,8,2012,School Ties,Anti-Semitism,tt0105327\nDPRsafiw4vQ,1992.0,6,8,2012,School Ties,I'm the Same Guy,tt0105327\nR5SlDq1oRYA,1992.0,3,8,2012,School Ties,St. Matthews Wins,tt0105327\ncyEwqVnXGU0,1992.0,4,8,2012,School Ties,The Joke is on Us,tt0105327\nLVt8wEpPgPQ,1992.0,2,8,2012,School Ties,Nervous Breakdowns,tt0105327\nnuLPRAvxkDo,1992.0,1,8,2012,School Ties,Take it to the Alley,tt0105327\nkF-KLIi97Uc,1972.0,6,10,2012,\"Play It Again, Sam\",Bogart at the Supermarket,tt0069097\nB8CGtuR9FnY,1972.0,2,10,2012,\"Play It Again, Sam\",Getting Ready for a Date,tt0069097\nau5XE48PEeU,1972.0,7,10,2012,\"Play It Again, Sam\",A Platonic Kiss,tt0069097\nZ-Vnk_VTtzk,1972.0,1,10,2012,\"Play It Again, Sam\",Depressed,tt0069097\nfniTZP_4V1M,1972.0,5,10,2012,\"Play It Again, Sam\",A Three Foot Band-Aid,tt0069097\nWdfgoDKArzM,1972.0,3,10,2012,\"Play It Again, Sam\",She Digs Me,tt0069097\nDS1YYtQ_LLY,1972.0,4,10,2012,\"Play It Again, Sam\",Museum Girl,tt0069097\nQlNXJ4pAoZc,1972.0,8,10,2012,\"Play It Again, Sam\",Thinking About Willie Mays,tt0069097\n7iBFIlHDZx0,1985.0,6,9,2012,Young Sherlock Holmes,This is Not Real,tt0090357\nqIV6K8OOvYM,1985.0,4,9,2012,Young Sherlock Holmes,Attack on Waxflatter,tt0090357\n8JkLimZnZAs,1972.0,9,10,2012,\"Play It Again, Sam\",Italian Movie,tt0069097\nMTGOnbJkILg,1985.0,5,9,2012,Young Sherlock Holmes,Holmes' New Hat,tt0090357\npyyquXhcSk8,1985.0,8,9,2012,Young Sherlock Holmes,The Cult of Eh-tar,tt0090357\nye_E3_ik9gQ,1985.0,7,9,2012,Young Sherlock Holmes,The Adventure of a Lifetime,tt0090357\n-33sUQVbQ24,1985.0,9,9,2012,Young Sherlock Holmes,Cold Revenge,tt0090357\n-kRGB8yBnrA,1985.0,2,9,2012,Young Sherlock Holmes,Fencing Lessons,tt0090357\nuOsxXi-tu_U,1985.0,3,9,2012,Young Sherlock Holmes,The Stained Glass Knight,tt0090357\nFdgyK4SErpU,2007.0,3,9,2012,Year of the Dog,Newt and Peggy,tt0756729\n4NES9LMRqAc,1985.0,1,9,2012,Young Sherlock Holmes,Watson Meets Holmes,tt0090357\nOSfjh0d3RkA,2007.0,5,9,2012,Year of the Dog,Paradise Farm,tt0756729\ncUnb4UuUS8E,2007.0,4,9,2012,Year of the Dog,PETA Petition,tt0756729\nRupELElQj6E,2007.0,2,9,2012,Year of the Dog,How Did She Die?,tt0756729\nA1MEIKVyYPk,2007.0,6,9,2012,Year of the Dog,Valentine Killed Buttons,tt0756729\nHJU9-MJ4oEc,2007.0,7,9,2012,Year of the Dog,Too Many Dogs,tt0756729\nBVs5TFKigUw,2007.0,8,9,2012,Year of the Dog,I Think We've Been Robbed,tt0756729\nffPTYWq1YAY,2007.0,9,9,2012,Year of the Dog,Love for Animals,tt0756729\nW1p7SP59Vkk,2007.0,1,9,2012,Year of the Dog,Benadryl Baby,tt0756729\nBZejgesCJhE,2004.0,9,9,2012,Without a Paddle,City Slickers vs. Hillbillies,tt0364751\nBLNQrlY4HMY,2004.0,8,9,2012,Without a Paddle,I Love This Part!,tt0364751\nJ97c0nWkJT4,2004.0,2,9,2012,Without a Paddle,Shine the Fish,tt0364751\nxG6V0I6_ZP8,2004.0,5,9,2012,Without a Paddle,Flower and Butterfly,tt0364751\nkU5tlt5wTcc,2004.0,4,9,2012,Without a Paddle,I'm In Over My Head,tt0364751\njN_ftt-J7S8,2004.0,7,9,2012,Without a Paddle,You Gotta Go Out and Get It,tt0364751\niIeyS_5sJHE,2004.0,6,9,2012,Without a Paddle,ATV Speeder Chase,tt0364751\nUu77LGPAlPA,2002.0,4,9,2012,We Were Soldiers,Moving Into the Valley of the Shadow of Death,tt0277434\num3tlxmK7Cg,2004.0,3,9,2012,Without a Paddle,Dan the Bear Cub,tt0364751\n8T6_bpLwTrc,2002.0,7,9,2012,We Were Soldiers,Napalm Air Strike,tt0277434\nc5ZiiE8fyGk,2004.0,1,9,2012,Without a Paddle,D.B. Cooper's Treasure Chest,tt0364751\neZe4RbiIBpM,2002.0,2,9,2012,We Were Soldiers,Army Housewives,tt0277434\n6M6cpjP7GIo,2002.0,5,9,2012,We Were Soldiers,Arriving in North Vietnam,tt0277434\n3bo6h-7ryfE,2002.0,1,9,2012,We Were Soldiers,The French Foreign Legion,tt0277434\n3e-DXYUvxys,2002.0,8,9,2012,We Were Soldiers,Valley of Death,tt0277434\nVglR1HaNlV8,2002.0,6,9,2012,We Were Soldiers,The Telegram,tt0277434\nUFXtRWVYQV8,2002.0,3,9,2012,We Were Soldiers,Fathers and Soldiers,tt0277434\nEePcWVFtRCU,2009.0,2,9,2012,Up in the Air,Cheap Is Our Starting Point,tt1193138\nKMsryQSdT_k,2002.0,9,9,2012,We Were Soldiers,They Will Think This Was Their Victory,tt0277434\nMIexe6aa14w,2009.0,7,9,2012,Up in the Air,Video Chat Firing,tt1193138\nTkX-TPaodoM,2009.0,3,9,2012,Up in the Air,How Much Did They Pay You to Give Up on Your Dreams?,tt1193138\nZDgFAFQGZbI,2009.0,4,9,2012,Up in the Air,The Miles Are the Goal,tt1193138\nWje5oR4NqYI,2009.0,9,9,2012,Up in the Air,You Are a Parenthesis,tt1193138\nvEDyFvKFcoQ,2009.0,5,9,2012,Up in the Air,Sell Me Marriage,tt1193138\nDsVUFXVx2pQ,2009.0,6,9,2012,Up in the Air,A Cocoon of Self-Banishment,tt1193138\nfjVyrWdUy0c,2009.0,1,9,2012,Up in the Air,People Do Crazy Sh** When They Get Fired,tt1193138\nTsT0ExNMK3I,2009.0,8,9,2012,Up in the Air,What Is the Point?,tt1193138\nVUsdbeBqeeo,1975.0,3,9,2012,The Stepford Wives,\"You're the Best, Frank\",tt0073747\nhVGcbaoRtqk,1975.0,9,9,2012,The Stepford Wives,The Supermarket,tt0073747\nNQobuzmBNXo,1975.0,2,9,2012,The Stepford Wives,You Don't Have to Apologize,tt0073747\nF5mTt2atvVk,1975.0,5,9,2012,The Stepford Wives,Ed Hated Tennis,tt0073747\nVG7JAM6DQnM,1975.0,7,9,2012,The Stepford Wives,I Thought We Were Friends,tt0073747\nJbNo_tlgYfs,1975.0,1,9,2012,The Stepford Wives,Ringdings and Scotch,tt0073747\nt0Hr0YA9_H0,2004.0,3,10,2012,The SpongeBob SquarePants Movie,Plankton's Plan Z,tt0345950\n6_0y_BGIZSU,1975.0,8,9,2012,The Stepford Wives,The Replacement,tt0073747\nGjtM8XhcA-M,1975.0,4,9,2012,The Stepford Wives,Easy On Spray Starch,tt0073747\n8fbZvje4A58,1975.0,6,9,2012,The Stepford Wives,It's Gotten to You Now,tt0073747\nbrTGAgUYnIc,2004.0,8,10,2012,The SpongeBob SquarePants Movie,David Hasselhoff,tt0345950\nr3eNr-xxA7s,2004.0,7,10,2012,The SpongeBob SquarePants Movie,Shell City Comes Alive,tt0345950\nYCPDVVLUw-4,2004.0,10,10,2012,The SpongeBob SquarePants Movie,I'm a Goofy Goober,tt0345950\n0vVy9NBehoc,2004.0,9,10,2012,The SpongeBob SquarePants Movie,Dennis Always Gets His Man,tt0345950\nNpI0s0ky53I,2004.0,6,10,2012,The SpongeBob SquarePants Movie,Becoming Men,tt0345950\nqcFVUGNUWuk,2004.0,2,10,2012,The SpongeBob SquarePants Movie,Morning Routine,tt0345950\n7nUDA-4vD9g,2004.0,4,10,2012,The SpongeBob SquarePants Movie,You're Hot,tt0345950\nohMzC_1W0ZY,2004.0,1,10,2012,The SpongeBob SquarePants Movie,Musical Pirates,tt0345950\nj8yAjWvAqyM,2004.0,5,10,2012,The SpongeBob SquarePants Movie,Bubble Party,tt0345950\n1xI_CHaHWmw,2008.0,9,9,2012,The Spiderwick Chronicles,Hogsqueal to the Rescue,tt0416236\n3qZAvmpNfaw,2008.0,8,9,2012,The Spiderwick Chronicles,A Father and Son Moment,tt0416236\n3V-kJbW3b54,2008.0,5,9,2012,The Spiderwick Chronicles,Escape,tt0416236\nacO1g9PEIBM,2008.0,4,9,2012,The Spiderwick Chronicles,The Griffin's Flight,tt0416236\ng0TZztZJGRo,2008.0,7,9,2012,The Spiderwick Chronicles,Oven Bomb,tt0416236\nq254XDNZ2Ao,2008.0,6,9,2012,The Spiderwick Chronicles,Under Attack,tt0416236\nplovZLxlpGk,2008.0,2,9,2012,The Spiderwick Chronicles,Hogsqueal,tt0416236\nxWTQN9bqbws,1997.0,1,9,2012,The Saint,Microchip Heist,tt0120053\nfZzxZa0k7II,2008.0,3,9,2012,The Spiderwick Chronicles,The Tunnels,tt0416236\n387KRtYq2mE,2008.0,1,9,2012,The Spiderwick Chronicles,The Field Guide,tt0416236\nzmxWCJ8iM_8,1997.0,7,9,2012,The Saint,I'm an American!,tt0120053\nwnosQPQgvTs,1997.0,6,9,2012,The Saint,Hiding in Ice Water,tt0120053\nqYufeLaIggU,1997.0,5,9,2012,The Saint,Thomas the Artist,tt0120053\nO1p6omIzsuY,1997.0,3,9,2012,The Saint,Bruno the German,tt0120053\nyAXioyO-acA,1997.0,9,9,2012,The Saint,Fooling the Detectives,tt0120053\natpbdTo9nno,1997.0,4,9,2012,The Saint,Cold Fusion,tt0120053\nQDYx2BOuAGo,1997.0,8,9,2012,The Saint,August the American,tt0120053\nNaFy_SWmRlI,1997.0,2,9,2012,The Saint,Martin the Spaniard,tt0120053\nog1c8h2UyE8,1998.0,10,10,2012,Star Trek: Insurrection,Too Old For This,tt0120844\ni7KcAEPxDwQ,1998.0,9,10,2012,Star Trek: Insurrection,This Mission is Not Over,tt0120844\n9bHnSNlLZh4,1998.0,6,10,2012,Star Trek: Insurrection,Take Cover,tt0120844\nmha0N1Cx1Ck,1998.0,8,10,2012,Star Trek: Insurrection,Don't Let Go of This Moment,tt0120844\n-1gCG8m1SHU,1998.0,4,10,2012,Star Trek: Insurrection,Holographic Ship,tt0120844\nxdgjUPMiiEc,1998.0,5,10,2012,Star Trek: Insurrection,The Perfect Moment,tt0120844\nN4x1K97JZG0,1998.0,7,10,2012,Star Trek: Insurrection,The Riker Maneuver,tt0120844\njw41pJtU6eY,1998.0,1,10,2012,Star Trek: Insurrection,\"Commander Data, Stand Down!\",tt0120844\n0UlzQ-bao3Q,1998.0,3,10,2012,Star Trek: Insurrection,Yuck!,tt0120844\nvm8sOhr-0lA,1998.0,2,10,2012,Star Trek: Insurrection,\"Come Out, Come Out Wherever You Are\",tt0120844\nTBBN6WvPavY,1995.0,9,9,2012,Nick of Time,In the,tt0113972\ntcfI_6ZMZQo,1995.0,8,9,2012,Nick of Time,Shooting the Governor,tt0113972\nnFYtmrhEBZc,1995.0,2,9,2012,Nick of Time,Taxi Ride Problems,tt0113972\nZ2ixl9gb0uk,1995.0,1,9,2012,Nick of Time,You're Out of Your Mind,tt0113972\nHZJ7Y5JooZM,1995.0,6,9,2012,Nick of Time,Deaf Shoe Shine Man,tt0113972\nbHPmA9JEEQs,1995.0,7,9,2012,Nick of Time,Quick Change,tt0113972\nz1bpjIkTie8,1995.0,5,9,2012,Nick of Time,Shoot Out in the Governor's Suite,tt0113972\n4vOHfYUUCJk,2004.0,6,10,2012,Mean Creek,I Wanna Call It Off,tt0377091\nXmGOiqQm9B0,1995.0,4,9,2012,Nick of Time,I'll Make Gravy Out of Your Little Girl,tt0113972\nmeN82_c9J_U,1995.0,3,9,2012,Nick of Time,What's Behind the Seat?,tt0113972\nM6mnrzwTxVU,2004.0,1,10,2012,Mean Creek,What Do You Think You're Doing?,tt0377091\na5PoLM_QBuo,2004.0,2,10,2012,Mean Creek,Target Practice,tt0377091\nKvWWoKcefWo,2004.0,10,10,2012,Mean Creek,No One Has To Know,tt0377091\nIESky9kgqi8,2004.0,3,10,2012,Mean Creek,Our Date,tt0377091\nQ8HMk-QX5hg,2004.0,9,10,2012,Mean Creek,Wake Up,tt0377091\nnhwtMOjWerg,2004.0,8,10,2012,Mean Creek,\"Shut Up, George!\",tt0377091\n-2LmKW3TtuI,2004.0,7,10,2012,Mean Creek,The Truth,tt0377091\nCmpDJs0Mjj0,2004.0,5,10,2012,Mean Creek,He's Not Such a Bad Guy,tt0377091\nH4zYhsldk8M,2004.0,4,10,2012,Mean Creek,It's Just a Joke,tt0377091\ndC1bJ1qmOCo,1996.0,2,9,2012,Big Night,It's About Money,tt0115678\nnCK7A5Zp9I4,1998.0,7,9,2012,Hard Rain,Ever Think About Taking the Money?,tt0120696\nLCt7YtB6P7g,1998.0,4,9,2012,Hard Rain,Trust Me,tt0120696\ncYdScH3BmBk,2010.0,9,10,2012,Morning Glory,Put Me In Coach,tt1126618\nh52UYfkLhXg,2010.0,10,10,2012,Morning Glory,It's Tough to Get Between You and a Sausage,tt1126618\n_RYBglsS0tg,2010.0,6,10,2012,Morning Glory,Taking it Slowly,tt1126618\nUpHWJ6959yo,2010.0,7,10,2012,Morning Glory,Jimmy Carter: Sex Offender,tt1126618\nVrRhpEc9Ivk,2010.0,8,10,2012,Morning Glory,I Won't Say Fluffy,tt1126618\n8TIPGj4-f-M,2010.0,4,10,2012,Morning Glory,Meeting in the Middle,tt1126618\n9jI5AN2KZJ0,2010.0,5,10,2012,Morning Glory,I Look Like a Jackass,tt1126618\ngHfTsIMdlPg,2010.0,2,10,2012,Morning Glory,Get a Puppet,tt1126618\nI4ktnP8eOOY,2010.0,3,10,2012,Morning Glory,I Had Lunch With Dick Cheney,tt1126618\nGU6US0VlAio,2010.0,1,10,2012,Morning Glory,Are You Gonna Sing?,tt1126618\nrxKp6tH2AKU,1995.0,8,9,2012,Virtuosity,SID 6.7 Disabled,tt0114857\nhM33ekZw3yQ,1995.0,7,9,2012,Virtuosity,Death TV,tt0114857\nFYcrFQ5boyA,1995.0,9,9,2012,Virtuosity,Bombshop 6.7,tt0114857\n47jfeR1H65g,1995.0,6,9,2012,Virtuosity,This One's for You,tt0114857\nGJ1KcXeNstM,1995.0,4,9,2012,Virtuosity,Multiple Personality Disorder,tt0114857\nFs1k0EMYydY,1995.0,3,9,2012,Virtuosity,I Will Not Be Shut Down,tt0114857\nE3LODyZSXT8,1995.0,5,9,2012,Virtuosity,SID's Symphony,tt0114857\nrm6i_YfioZU,1995.0,2,9,2012,Virtuosity,I Ain't Going Nowhere,tt0114857\nIV40w-OYo0A,1995.0,1,9,2012,Virtuosity,I Love To Play,tt0114857\nj0sbjGj7ONo,2001.0,9,9,2012,The Last Castle,It's Over Now,tt0272020\nJh1ujB4gFv8,2001.0,5,9,2012,The Last Castle,I Just Want to Survive,tt0272020\nU318Nwim78E,2001.0,6,9,2012,The Last Castle,Uprising,tt0272020\nTp2V6oAgYbw,2001.0,8,9,2012,The Last Castle,It's Not Your Flag,tt0272020\ncfM9_PduF3M,2001.0,7,9,2012,The Last Castle,Now Is the Time,tt0272020\nUx1Er4tflxI,2001.0,4,9,2012,The Last Castle,You're a Disgrace,tt0272020\nVX5XAwBfy1w,2005.0,9,9,2012,The Chumscrubber,Knowing Troy,tt0406650\nbH5GtRBsss0,2001.0,2,9,2012,The Last Castle,Put Your Hand Down,tt0272020\n1iFQ6IvEQXg,2001.0,3,9,2012,The Last Castle,The Burden of Command,tt0272020\n1F-LMCJ2n4M,2001.0,1,9,2012,The Last Castle,You Weren't a Father At All,tt0272020\nzzjFcjSFoqs,2005.0,6,9,2012,The Chumscrubber,Officer Lou Bratley,tt0406650\nt8Ql94ApRSI,2005.0,8,9,2012,The Chumscrubber,Helping Charlie,tt0406650\n5dxhOkrjfuA,2005.0,7,9,2012,The Chumscrubber,Troy Becomes the Chumscrubber,tt0406650\ncUQZVnerwI0,2005.0,5,9,2012,The Chumscrubber,An Entirely New Life System,tt0406650\n_OpCOSHbqiM,2005.0,4,9,2012,The Chumscrubber,Across Driveways,tt0406650\nKJpaul2yTOU,2005.0,3,9,2012,The Chumscrubber,Casserole Dish,tt0406650\nB_PvKCOXdiw,2005.0,2,9,2012,The Chumscrubber,Spilling Wine,tt0406650\nRC5ZiK6o7uQ,2007.0,9,9,2012,Next,I Made a Mistake,tt0830558\nMGy5sF8PhRQ,2005.0,1,9,2012,The Chumscrubber,Feel-Good Pills,tt0406650\nlufECeWtN34,2007.0,8,9,2012,Next,An Army of Cris,tt0830558\nYj-a2zT-r88,2007.0,7,9,2012,Next,Can I Get a Light?,tt0830558\nzDmvCNfvt5w,2007.0,5,9,2012,Next,Down the Mountain,tt0830558\n9fuapCaufd0,2007.0,6,9,2012,Next,Signals Over the Air,tt0830558\naUWOzyo-Kec,2007.0,3,9,2012,Next,I'm Her Future,tt0830558\nTW8ZML5OvXs,2007.0,4,9,2012,Next,Summation of the Parts,tt0830558\nMpXp07KfSFI,2007.0,2,9,2012,Next,Beating the House,tt0830558\nus54vk5--jM,2007.0,1,9,2012,Next,The Thing About the Future,tt0830558\nTzMC8kgib3c,1989.0,6,8,2012,Harlem Nights,This is Personal,tt0097481\nUXCzmFHm3EE,1989.0,7,8,2012,Harlem Nights,She's a Sweet Old Woman,tt0097481\nOjHAZWyckMc,1989.0,3,8,2012,Harlem Nights,Are You Sayin' I'm Stealin'?,tt0097481\n5RPUchAlppA,1989.0,8,8,2012,Harlem Nights,I Aint Ever Comin Home,tt0097481\nnNXxlYCU0aY,1989.0,5,8,2012,Harlem Nights,Shooting Up Quick,tt0097481\nyMiGHGsdikU,1989.0,4,8,2012,Harlem Nights,\"Come on Sucka, Let's Get It On\",tt0097481\n538H6EYp_ZU,1989.0,2,8,2012,Harlem Nights,\"Bennie \"\"Snake Eyes\"\" Wilson\",tt0097481\nJBOq0nY1rQE,1989.0,1,8,2012,Harlem Nights,Bad Luck With Kids,tt0097481\npcMXFYqwPGI,1982.0,8,8,2012,Grease 2,We'll Be Together Scene,tt0084021\nyPQQzJGKOvk,1982.0,7,8,2012,Grease 2,Love Will Turn Back the Hands of Time Scene,tt0084021\nHiNWDfHz8Io,1982.0,6,8,2012,Grease 2,Let's Do It For Our Country Scene,tt0084021\nCcrrepikVtI,1982.0,5,8,2012,Grease 2,Who's That Guy? Scene,tt0084021\noJGQgAniyho,1982.0,4,8,2012,Grease 2,Reproduction Scene,tt0084021\ndJQGkx5LpuA,1982.0,1,8,2012,Grease 2,Back to School Again Scene,tt0084021\nKWKu1BbZhkQ,1982.0,2,8,2012,Grease 2,We're Gonna Score Tonight Scene,tt0084021\nHk3IpNbltyw,1982.0,3,8,2012,Grease 2,Cool Rider Scene,tt0084021\nt209ljjmTqg,1978.0,8,8,2012,Goin' South,You Ain't Taking My Gold!,tt0077621\n_B9xQeIvdHM,1978.0,5,8,2012,Goin' South,You Were Spying On Me!,tt0077621\nyLPFWQ0NcZo,1978.0,7,8,2012,Goin' South,Keepin' Gold From Us!,tt0077621\nCVyeyli6gzg,1978.0,6,8,2012,Goin' South,Kiss Me... I'm Rich!,tt0077621\nylDhWZKbCrc,1978.0,4,8,2012,Goin' South,Like Eggs Rolled in Sand,tt0077621\nd51N1kUa4lw,1978.0,1,8,2012,Goin' South,I'll Take Him,tt0077621\nSoQzCG8nTbg,1978.0,3,8,2012,Goin' South,Canned Apricots,tt0077621\nENkEuLrzmnc,1978.0,2,8,2012,Goin' South,How's About A Little Dessert?,tt0077621\n25D3SlGLFKg,2004.0,11,11,2012,Garden State,Andrew Chooses Sam,tt0333766\nURt8hBsrHFI,2004.0,8,11,2012,Garden State,Six-Hour Scavenger Hunt,tt0333766\nw13ky72PcKI,2004.0,10,11,2012,Garden State,Leaving Sam,tt0333766\nS-0prbWRAUk,2004.0,9,11,2012,Garden State,The Infinite Abyss,tt0333766\n08iCLTmybXM,2004.0,7,11,2012,Garden State,Krazy Karl,tt0333766\n3Bm1V7eZBR4,2004.0,6,11,2012,Garden State,Can't Cry,tt0333766\nMBopFmu3yAg,2004.0,5,11,2012,Garden State,A True Original,tt0333766\n4ImW1F6LyHE,2004.0,4,11,2012,Garden State,Visiting Jesse,tt0333766\ng46IxT3MGP8,2004.0,3,11,2012,Garden State,Meeting Sam,tt0333766\noh8pzfm5QF8,2004.0,1,11,2012,Garden State,Kenny the Cop,tt0333766\nBCHi6DrWgjI,2004.0,2,11,2012,Garden State,Sir Tim,tt0333766\npDcPRvZ9sDU,1996.0,9,9,2012,Big Night,Brotherly Fight,tt0115678\nYd8gK6EgpLM,1996.0,6,9,2012,Big Night,I Should Kill You,tt0115678\nfz19xrc_99o,1996.0,8,9,2012,Big Night,Can We Talk About It?,tt0115678\nKAPU1-0hGRE,1996.0,7,9,2012,Big Night,I Have Nothing,tt0115678\nd3hs2M_0vLE,1996.0,3,9,2012,Big Night,I Make Fun,tt0115678\nrpUPWSqadTo,1996.0,1,9,2012,Big Night,We Will Foreclose,tt0115678\n24qcFHAk1Cw,1996.0,4,9,2012,Big Night,I Want a Cowboy,tt0115678\n1UeNQlmxEkQ,1996.0,5,9,2012,Big Night,Let's Eat,tt0115678\neEUulOnl-n8,1998.0,8,9,2012,Hard Rain,Shoot Out in the Flooded Church,tt0120696\nBT2RBCEH54M,1998.0,3,9,2012,Hard Rain,Locked In,tt0120696\n5aXmi3hKJrY,2004.0,7,10,2012,Win a Date with Tad Hamilton!,Farm Chores,tt0335559\nP_mbrROQcME,2004.0,10,10,2012,Win a Date with Tad Hamilton!,What's In Your Heart?,tt0335559\ngOb8HH2oKcE,2004.0,9,10,2012,Win a Date with Tad Hamilton!,I Love You For Your Details,tt0335559\nYXzryi4HrVs,2004.0,8,10,2012,Win a Date with Tad Hamilton!,Rosalee's Six Smiles,tt0335559\nkh1sYuFgUAM,2004.0,4,10,2012,Win a Date with Tad Hamilton!,A Kiss Goodbye,tt0335559\nYdiAV1mo4ck,2004.0,6,10,2012,Win a Date with Tad Hamilton!,He's An Actor,tt0335559\n-zoOpeF5Yzc,2004.0,5,10,2012,Win a Date with Tad Hamilton!,Tad's Back,tt0335559\nHYkSzS4v_sI,2004.0,2,10,2012,Win a Date with Tad Hamilton!,\"It's Roseanne, Right?\",tt0335559\nhWRG6Oar-aM,1989.0,6,9,2012,Star Trek 5: The Final Frontier,A Faster Way,tt0098382\nDuvGxB60xCQ,2004.0,1,10,2012,Win a Date with Tad Hamilton!,Guard Your Carnal Treasure,tt0335559\nf3u4j0hVy8c,1989.0,8,9,2012,Star Trek 5: The Final Frontier,\"One Voice, Many Faces\",tt0098382\n2DM0pOmClOg,1989.0,9,9,2012,Star Trek 5: The Final Frontier,Aboard the Bird-of-Prey,tt0098382\n0wMU9XDIm4g,1989.0,7,9,2012,Star Trek 5: The Final Frontier,Approach to Sha Ka Ree,tt0098382\nPK0i_dyx230,1989.0,5,9,2012,Star Trek 5: The Final Frontier,Stand Back!,tt0098382\nxvi62S5Ou_E,1989.0,4,9,2012,Star Trek 5: The Final Frontier,Spock's Brother,tt0098382\n-L3D0BL9ieA,1989.0,3,9,2012,Star Trek 5: The Final Frontier,The Lookout Party,tt0098382\nqL1WqN1XKK0,1989.0,1,9,2012,Star Trek 5: The Final Frontier,Drop In for Dinner,tt0098382\nV7N7EZ79mvM,1989.0,2,9,2012,Star Trek 5: The Final Frontier,Camping Out,tt0098382\naZe77wShCbE,1984.0,7,8,2012,Star Trek 3: The Search for Spock,I'll Kill You Later,tt0088170\nXS4s3XXNLiE,1984.0,6,8,2012,Star Trek 3: The Search for Spock,I Have Had Enough of You,tt0088170\nOlqErSr6Rjw,1984.0,2,8,2012,Star Trek 3: The Search for Spock,Don't Call Me Tiny,tt0088170\nW3c9wtbQTZ4,1984.0,1,8,2012,Star Trek 3: The Search for Spock,A Damn Illegal Thing,tt0088170\nLk9wSrZ0fWA,1984.0,4,8,2012,Star Trek 3: The Search for Spock,A Klingon Bird of Prey,tt0088170\nYc81Un8ltS4,1984.0,8,8,2012,Star Trek 3: The Search for Spock,Ever Shall Be Your Friend,tt0088170\nP1xdGCvNMEY,1984.0,5,8,2012,Star Trek 3: The Search for Spock,The Enterprise Self Destructs,tt0088170\nxj04uvQx9l8,2002.0,4,9,2012,Narc,Shotgun Bong,tt0272207\nnkcLf1CH_MY,2002.0,9,9,2012,Narc,Oak's Final Moments,tt0272207\n7wLSkQOkAGY,2002.0,3,9,2012,Narc,You Know Jimmy Fredericks?,tt0272207\nvmnZ_-Mqb-c,2002.0,8,9,2012,Narc,Cold Blood Shootout,tt0272207\nxQGzDvZq6v0,2002.0,2,9,2012,Narc,I Want a Paycheck,tt0272207\no4U1GZcMmn0,2002.0,8,9,2012,Infernal Affairs,I Just Want My Life Back,tt0338564\n-tlRw45_Ftk,2002.0,7,9,2012,Narc,Hit the Wall,tt0272207\nmTr6qV4PiMc,2002.0,6,9,2012,Narc,Bagels and Guns,tt0272207\n2xfrmlcIQf4,2002.0,1,9,2012,Narc,Playground Hostage,tt0272207\nLUQGBGUI64E,2002.0,5,9,2012,Narc,Right & Wrong,tt0272207\nsN7zJBjZgHU,2002.0,4,9,2012,Infernal Affairs,Trapped Upstairs,tt0338564\ncCtn7_K1GZM,2002.0,3,9,2012,Infernal Affairs,Tailing the Mole,tt0338564\nUgU1ALnQTFA,2002.0,2,9,2012,Infernal Affairs,The Game's Loser Dies,tt0338564\nQWMVhLtFtNI,2002.0,1,9,2012,Infernal Affairs,The Bust Goes Bad,tt0338564\nGfX0WTR-kNI,2002.0,9,9,2012,Infernal Affairs,I'm a Cop,tt0338564\nC1ZrzzP6tSQ,2002.0,7,9,2012,Infernal Affairs,I've Chosen,tt0338564\no2joReiVA1A,2002.0,6,9,2012,Infernal Affairs,Phone Call from a Dead Man,tt0338564\nXWI8ugmXnwM,1995.0,6,9,2012,Jade,Chinatown Parade,tt0113451\nYJBNE7F49Aw,2002.0,5,9,2012,Infernal Affairs,I Didn't Tell,tt0338564\n2mezAYW6Qiw,1995.0,9,9,2012,Jade,Seduced,tt0113451\nGSR6orbPFjo,1995.0,8,9,2012,Jade,Katrina's Confession,tt0113451\nXClRjF_xBj8,1995.0,7,9,2012,Jade,Corelli Gets Wet,tt0113451\nD8yY16GX9t0,1995.0,5,9,2012,Jade,San Francisco Chase,tt0113451\n0MU_p9wU5kQ,1995.0,2,9,2012,Jade,They Called Her,tt0113451\n3Cp_-nl5jEs,1995.0,4,9,2012,Jade,The Hit and Run,tt0113451\nrNOZMZHDVB8,2009.0,7,9,2012,Imagine That,Really Burnt Pancakes,tt0780567\ncJti4-26uFE,1995.0,3,9,2012,Jade,No Brakes,tt0113451\nOT-cPtnytxo,2009.0,5,9,2012,Imagine That,Imaginary Playtime,tt0780567\nDdZlmK8Xxsk,1995.0,1,9,2012,Jade,It Means,tt0113451\nwRUXdHtHe8U,2009.0,9,9,2012,Imagine That,I Need You to Caw With Me,tt0780567\nZCoJgCHXXK8,2009.0,8,9,2012,Imagine That,You've Got the Eyes of a Salamander,tt0780567\nifM0qy83_-A,2009.0,6,9,2012,Imagine That,Can't You Hear the Music?,tt0780567\ncB0p96nOXjo,2009.0,4,9,2012,Imagine That,Their Underwear was Filled With Poop,tt0780567\nrBgn0IhMEBk,2009.0,1,9,2012,Imagine That,\"Rip it Off, Like a Band-Aid\",tt0780567\nzVIDGJxo238,2009.0,3,9,2012,Imagine That,The Dream Sparrow,tt0780567\nq7QxVddVEW0,1998.0,1,9,2012,Hard Rain,We Just Want the Money!,tt0120696\n6zlY2XVDl0E,2009.0,2,9,2012,Imagine That,The Man Whisperer,tt0780567\nrXqRZvG5LAQ,1998.0,6,9,2012,Hard Rain,Changing the Menu,tt0120696\nRv1LUObd720,1998.0,9,9,2012,Hard Rain,Handcuffed in the Flood,tt0120696\nZKTMxF2PrHM,1998.0,2,9,2012,Hard Rain,Jet Ski Chase Through the School,tt0120696\nRineREyWP-4,1998.0,5,9,2012,Hard Rain,And Into the River We'd Dive,tt0120696\nRKBZx9XsCuE,2004.0,3,10,2012,Win a Date with Tad Hamilton!,First Date Jitters,tt0335559\nWXDIkldSPqI,2003.0,10,10,2012,Tupac: Resurrection,The World Loves Tupac,tt0343121\nmWquYel6AI4,2003.0,8,10,2012,Tupac: Resurrection,West Coast vs. East Coast,tt0343121\n-yx9JK_HeQc,2003.0,9,10,2012,Tupac: Resurrection,Tupac Dies,tt0343121\nhC6jyc9reW0,2003.0,7,10,2012,Tupac: Resurrection,Double Standard: Men & Women,tt0343121\nYg1izGf8EFQ,2003.0,6,10,2012,Tupac: Resurrection,What Do You Think We're Gonna Do? Ask?,tt0343121\nw9yRZoY0stg,2003.0,4,10,2012,Tupac: Resurrection,I Love Women,tt0343121\nejJIihkZTGU,2003.0,5,10,2012,Tupac: Resurrection,Thug Life,tt0343121\n1tZ2EZXxU6w,2003.0,3,10,2012,Tupac: Resurrection,From Unknown to Platinum,tt0343121\nhSLj5cQaXM8,2009.0,9,9,2012,The Uninvited,I Finished What I Started,tt0815245\nScMlNpnLI3U,2003.0,1,10,2012,Tupac: Resurrection,This is My Story,tt0343121\nL-HEnOelh-k,2009.0,8,9,2012,The Uninvited,They Can Burn in Hell,tt0815245\nTQebazOCP4M,2003.0,2,10,2012,Tupac: Resurrection,I Could Act Like Those Characters,tt0343121\nGa9YztTUYaU,2009.0,6,9,2012,The Uninvited,This Was The Only Way,tt0815245\n750pEcgJqGg,2009.0,5,9,2012,The Uninvited,Don't Believe Her,tt0815245\nIYqE3JfSbzA,2009.0,7,9,2012,The Uninvited,What Have You Done?,tt0815245\nUU8yY3gkZZ0,2009.0,4,9,2012,The Uninvited,I Don't Want To Hurt You,tt0815245\nETrY43GsoHY,2009.0,3,9,2012,The Uninvited,Take Out the Garbage,tt0815245\nwbccgEaJudM,2009.0,2,9,2012,The Uninvited,What I Saw That Night,tt0815245\nPd8RaVEZlyU,2009.0,1,9,2012,The Uninvited,I Saw Mom,tt0815245\nwf02wZ_Okw8,2004.0,6,8,2012,The Stepford Wives,It's a Whole New Me,tt0327162\nyZvx9PF3NAU,2004.0,3,8,2012,The Stepford Wives,Remote Control Wife,tt0327162\nOp0qrTGRcxk,2004.0,5,8,2012,The Stepford Wives,She Gives Singles,tt0327162\nR57cfRscNyM,2004.0,8,8,2012,The Stepford Wives,The Supermarket,tt0327162\nC-Ad2a7UD0A,2004.0,1,8,2012,The Stepford Wives,I Can Do Better,tt0327162\nHkfaRh__E6U,2004.0,7,8,2012,The Stepford Wives,The Female Improvement System,tt0327162\nmW42lBPbuTc,2004.0,4,8,2012,The Stepford Wives,Stepford Book Club,tt0327162\nsEaSAJgaLtQ,2004.0,2,8,2012,The Stepford Wives,Clairobics,tt0327162\nxfIJV6C9-fM,1997.0,3,9,2012,The Peacemaker,We May Have a Problem,tt0119874\nIwzcDydxQyM,1997.0,1,9,2012,The Peacemaker,Other Motivations,tt0119874\nd5jxXkpstv4,1997.0,9,9,2012,The Peacemaker,Blowing Up the Bomb,tt0119874\nTSaB7Oltgwg,1997.0,8,9,2012,The Peacemaker,Foot Pursuit,tt0119874\nQecVEAGoQ4A,1997.0,7,9,2012,The Peacemaker,Warhead Retrieval,tt0119874\nC2NxwHIDTUA,1997.0,6,9,2012,The Peacemaker,Russian Airspace,tt0119874\ngHfRl_ZjHj8,1997.0,2,9,2012,The Peacemaker,This is My Plan,tt0119874\navXk2EamFs4,1997.0,4,9,2012,The Peacemaker,Rear-Ended,tt0119874\nMXYUFlvaGpk,1997.0,5,9,2012,The Peacemaker,I Don't Think You're Stupid,tt0119874\nDdqQsOC-A2w,1999.0,1,8,2012,The Haunting,No One Will Come,tt0171363\nupwUN92OAQU,1999.0,2,8,2012,The Haunting,Ghost Hair,tt0171363\nbKOW66PVjvA,1999.0,3,8,2012,The Haunting,Beneath the Fireplace,tt0171363\nUgxCAQEI16o,1999.0,8,8,2012,The Haunting,Go to Hell,tt0171363\nNyPF-BmNQjQ,1999.0,4,8,2012,The Haunting,The Mirror Has Two Faces,tt0171363\nxSmmiAl9ZWE,1999.0,5,8,2012,The Haunting,The Spiral Staircase,tt0171363\nPVuB1pBFA5k,1999.0,6,8,2012,The Haunting,The Haunted Bedroom,tt0171363\nN6ffGVe63c0,1999.0,7,8,2012,The Haunting,Magic Carpet Ride of Death,tt0171363\naTPdWYo9zhQ,2002.0,4,8,2012,Star Trek: Nemesis,Teaming Up With the Romulans,tt0253754\nFVfoce-wfgI,2002.0,2,8,2012,Star Trek: Nemesis,I Aspire to Be Better Than I Am,tt0253754\nnYkD6bPe9Ho,2002.0,6,8,2012,Star Trek: Nemesis,Reman Boarding Party,tt0253754\nS02T1j9qzwg,2002.0,8,8,2012,Star Trek: Nemesis,Blue Skies,tt0253754\nbXq3dytL6ZA,2002.0,7,8,2012,Star Trek: Nemesis,Brace for Impact,tt0253754\nDHUSpAtemfg,2002.0,5,8,2012,Star Trek: Nemesis,A Battle of the Mind,tt0253754\nBl0c_aXJtUc,2002.0,3,8,2012,Star Trek: Nemesis,I Can't Fight What I Am,tt0253754\nJl4L_RREcpQ,2009.0,10,10,2012,Hotel for Dogs,Dog Catapult,tt0785006\n5djUDJaY7Ig,2009.0,9,10,2012,Hotel for Dogs,You Can't Date Them Both,tt0785006\nNJJDRmtivWI,2002.0,1,8,2012,Star Trek: Nemesis,A Shadow and an Echo,tt0253754\nDSBU1YgGyt0,2009.0,8,10,2012,Hotel for Dogs,The Golden Hydrant,tt0785006\nw4o45-EnPrU,2009.0,3,10,2012,Hotel for Dogs,Needs More Cinnamon,tt0785006\nT_0IN7mMXZI,2009.0,7,10,2012,Hotel for Dogs,Watch Where You Step,tt0785006\nrTCi5UsRudE,2009.0,6,10,2012,Hotel for Dogs,Fetch Machine,tt0785006\n1i2_WXJB6wI,2009.0,5,10,2012,Hotel for Dogs,All That for a Look Out the Window?,tt0785006\n4xcqyJwEdd0,2009.0,4,10,2012,Hotel for Dogs,Better Here Than the Pound,tt0785006\nkzUfGDKepCA,2009.0,2,10,2012,Hotel for Dogs,Rock Manifesto,tt0785006\nn86CV7VKvfE,2008.0,6,10,2012,Ghost Town,Pepe's Organ,tt0995039\nJYKlYHwUiac,2009.0,1,10,2012,Hotel for Dogs,How to Steal Food,tt0785006\nJeT0XHFyAU4,2008.0,10,10,2012,Ghost Town,He Found His Way Home,tt0995039\nqlUmBE6uGu8,2008.0,8,10,2012,Ghost Town,You're Sick,tt0995039\nTdQkBU9p6Y0,2008.0,4,10,2012,Ghost Town,Leave Me Alone!,tt0995039\nnshLAILEN4w,2008.0,2,10,2012,Ghost Town,He Can See Us!,tt0995039\n7qVgjGI6Lsw,2008.0,9,10,2012,Ghost Town,The Ultimate Question,tt0995039\naOAgGeW7abs,2008.0,1,10,2012,Ghost Town,Gross Invasion of My Privacy,tt0995039\n5kmgUtppQP0,2008.0,7,10,2012,Ghost Town,A Sensitive Gag Reflex,tt0995039\nhcvAwHA7usc,2008.0,3,10,2012,Ghost Town,You Died,tt0995039\nqIOC-6zluBQ,2008.0,5,10,2012,Ghost Town,He Was No Flosser,tt0995039\nNGtMNsci-zk,2007.0,8,9,2012,Disturbia,Home Invasion,tt0486822\nQH8uHNGEvbg,2007.0,9,9,2012,Disturbia,Bad Neighbor,tt0486822\nx883mrwYjDM,2007.0,5,9,2012,Disturbia,Breakfast Surprise,tt0486822\ntoAOUXtlXXc,2007.0,7,9,2012,Disturbia,Living in Peace,tt0486822\nVCghHER3cOU,2007.0,6,9,2012,Disturbia,Paranoia,tt0486822\nRv6_mS8l48U,2007.0,3,9,2012,Disturbia,Dog Sh**,tt0486822\nNH5fod3mC7c,2007.0,4,9,2012,Disturbia,Caught in the Act,tt0486822\nb9qMqGTi1uc,2007.0,1,9,2012,Disturbia,Car Accident,tt0486822\nBWw0KCLcKHc,2007.0,2,9,2012,Disturbia,Punching Señor Gutierrez,tt0486822\njgdFx9Epf78,1990.0,9,9,2012,Another 48 Hrs.,\"Shoot Me, Jack!\",tt0099044\n67cxJ9EynG4,1990.0,8,9,2012,Another 48 Hrs.,Nightclub Shootout,tt0099044\nnS-l7xvs5ew,1990.0,5,9,2012,Another 48 Hrs.,I Always Wanted a Chauffeur,tt0099044\nU6xq6u7vv0U,1990.0,7,9,2012,Another 48 Hrs.,Hotel Shootout,tt0099044\nC_uIIZdNVwk,1990.0,6,9,2012,Another 48 Hrs.,Anyone Else Want a Limp?,tt0099044\nl4bCchzGpkQ,1990.0,4,9,2012,Another 48 Hrs.,The Traffic Cop,tt0099044\nuEchpjUjGPA,1990.0,2,9,2012,Another 48 Hrs.,Prison Bus Attack,tt0099044\nuiWL3bxDifQ,1990.0,1,9,2012,Another 48 Hrs.,Unfinished Business,tt0099044\nhks2iXeaxsk,1990.0,3,9,2012,Another 48 Hrs.,\"No Car, No Money\",tt0099044\nOeLnS8O08ng,1982.0,9,10,2012,Airplane 2: The Sequel,A Bobby Pin,tt0083530\n1UybDydQpNY,1982.0,10,10,2012,Airplane 2: The Sequel,She's Beginning to Crack Up,tt0083530\nq8_R4AG2o1w,1982.0,6,10,2012,Airplane 2: The Sequel,It's Very Likely That We're All Going to Die,tt0083530\nJGnxWlhfrrM,1982.0,7,10,2012,Airplane 2: The Sequel,\"Not A Buh, A Bomb\",tt0083530\nOE8Tc1cvSYM,1982.0,8,10,2012,Airplane 2: The Sequel,Irony Can Be Pretty Ironic Sometimes,tt0083530\nGd6aLnPHqeE,1982.0,5,10,2012,Airplane 2: The Sequel,Don't Panic,tt0083530\n_6AGOfGHzeg,1982.0,4,10,2012,Airplane 2: The Sequel,We've Run Out of Coffee,tt0083530\nJMa1f4jyBa0,1982.0,3,10,2012,Airplane 2: The Sequel,Will You Please Control Yourself?,tt0083530\nbE0mQSaYaNY,1982.0,2,10,2012,Airplane 2: The Sequel,Maybe He's Just an A**hole,tt0083530\nBrRdy4BAYp0,1982.0,1,10,2012,Airplane 2: The Sequel,\"Under Oveur, Oveur Dunn\",tt0083530\ngNtGI_D85mQ,1998.0,8,8,2012,A Simple Plan,\"I'm Tired, Hank\",tt0120324\nEGX-t_U6vkg,1998.0,7,8,2012,A Simple Plan,Where's My Money?,tt0120324\nSWEbahhZEyA,1998.0,6,8,2012,A Simple Plan,Like It Used To Be,tt0120324\ntjYSxlqLOew,1998.0,5,8,2012,A Simple Plan,Happiness,tt0120324\nmflonVbY9gw,1998.0,1,8,2012,A Simple Plan,You Want To Keep It?,tt0120324\nQn6tLR3RGgE,1998.0,3,8,2012,A Simple Plan,The Farm,tt0120324\ntAp2Z3-zx9k,1998.0,4,8,2012,A Simple Plan,Self-Defense,tt0120324\n3I6s_-Q_2kI,1998.0,2,8,2012,A Simple Plan,Killing Dwight,tt0120324\nuYV11ZwpaSQ,2010.0,6,7,2012,The Fighter,Dickie Takes the Cake,tt0964517\nrKV-U-HcGVk,2010.0,7,7,2012,The Fighter,Making Things Right,tt0964517\nYP-rmIcxn1g,2010.0,5,7,2012,The Fighter,I Thought You Were My Mother Too,tt0964517\ns2pqELFTepw,2010.0,4,7,2012,The Fighter,The Fighting Family,tt0964517\niCp3nEO3ttU,2010.0,3,7,2012,The Fighter,Don't Call Me Skank,tt0964517\nOELFAF76DEU,2010.0,1,7,2012,The Fighter,There Wasn't Even Any Good Sex in It,tt0964517\nhKvpF7ACDBo,2010.0,2,7,2012,The Fighter,That's My Life,tt0964517\n0zhatVdxShE,2009.0,8,8,2012,Middle Men,Backdating,tt1251757\nyX5LfZK1wTw,2009.0,7,8,2012,Middle Men,The Wrong Boy,tt1251757\npXe74ckEnME,2009.0,6,8,2012,Middle Men,A Part of Ourselves,tt1251757\n6w6aNHXW93o,2009.0,5,8,2012,Middle Men,District Attorney,tt1251757\nDwOTJvwKKeU,2009.0,4,8,2012,Middle Men,That Ain't Right,tt1251757\nl0VX6h8lP08,2009.0,3,8,2012,Middle Men,Where's Ivan?,tt1251757\nqPZWb3abC9I,2009.0,2,8,2012,Middle Men,Russian at the Door,tt1251757\nZmnzw-Dxym4,1974.0,6,7,2012,The Longest Yard,,tt0071771\nqBWbxMv6v_s,1974.0,7,7,2012,The Longest Yard,Game Ball,tt0071771\nHWAQ8rTBLUk,1974.0,5,7,2012,The Longest Yard,Ball Breaker,tt0071771\nKuXeOs4oOBw,2009.0,1,8,2012,Middle Men,First Sale,tt1251757\n84VVZEw9vBs,1974.0,3,7,2012,The Longest Yard,A Broken Nose,tt0071771\nNhpvvobULYA,1974.0,2,7,2012,The Longest Yard,Team Recruitment,tt0071771\nEPmNA1vLOH4,1974.0,1,7,2012,The Longest Yard,An All-American Son of a Bitch,tt0071771\nsZ0nA_2qOWc,1974.0,4,7,2012,The Longest Yard,A 15 Minute Romp,tt0071771\nZRJ_tgwyLUM,2007.0,4,10,2012,Reno 911!: Miami,Alligator Attack,tt0499554\nMALjtjcdmt8,2000.0,6,9,2012,You Can Count on Me,I Think You Should Leave,tt0203230\nXdMuekkeCeU,2008.0,2,12,2011,Death Race,Prison Cafeteria Fight,tt0452608\nGxhXJGA32YI,1995.0,2,9,2011,Congo,Amy Want Green Drop Drink,tt0112715\n6oPn0DwJOZA,1995.0,8,9,2011,Congo,Killa Gorilla,tt0112715\nEvQmjnk86zA,2002.0,3,12,2011,40 Days and 40 Nights,\"Meeting Erica, Officially\",tt0243736\nViUAWLUF74Q,1995.0,4,9,2011,Congo,Push Me Please,tt0112715\n8fbGbPwKbQA,1995.0,3,9,2011,Congo,Stop Eating My Sesame Cake!,tt0112715\njfgWw43Fcuw,1995.0,9,9,2011,Congo,Put 'Em on the Endangered Species List,tt0112715\n458GisQyQLg,1995.0,1,9,2011,Congo,The First Attack,tt0112715\nAa4bjQGD6oY,1995.0,7,9,2011,Congo,That's an Unusual Name,tt0112715\nvKEqdQhX4lo,1995.0,5,9,2011,Congo,There's Something on My...,tt0112715\n45mmWoSzIAY,1995.0,6,9,2011,Congo,Hippo Attack,tt0112715\nCNH4A1sI_oE,1997.0,3,11,2011,Children of Heaven,One Of The Most Important Things,tt0118849\nWmeaAGe4uMo,2002.0,11,12,2011,40 Days and 40 Nights,Sexual Hallucinations,tt0243736\nWK682NdLvS4,2002.0,9,12,2011,40 Days and 40 Nights,Little Matty Says Hello,tt0243736\nZI827BuJgx8,2006.0,5,10,2011,Johnny Was,The Vice Always Follows,tt0426501\ngRGbGI2-kPs,1991.0,1,9,2011,Operation Condor,Runaway Groom,tt0099558\noUQ9ZKUt2XQ,1997.0,10,11,2011,Cop Land,You People Are All the Same,tt0118887\nwD8pQ5eDneo,1997.0,7,11,2011,Cop Land,Something To Do,tt0118887\nCWxkPQXZo6Q,1997.0,4,11,2011,Cop Land,It's Okay to Be Jealous,tt0118887\nCG88PCHKwOk,1997.0,2,11,2011,Cop Land,I Found Their Piece,tt0118887\nToxlyJ4-zBM,1997.0,9,11,2011,Cop Land,Rooftop Fight,tt0118887\ndKAvAAT2q_U,1997.0,6,11,2011,Cop Land,Deaf In One Ear,tt0118887\neUNWIKp6nR4,2006.0,9,10,2011,Charlotte's Web,He Really is Some Pig,tt0413895\nTBURp00dftA,1997.0,1,11,2011,Cop Land,Road Incident,tt0118887\nH-h_xgdM8FI,2002.0,6,9,2011,The Sum of All Fears,Baltimore!,tt0164184\n20dudgZjeaY,2006.0,7,10,2011,Charlotte's Web,The Rat Rules!,tt0413895\nl-uqZJwOieA,2002.0,7,9,2011,The Sum of All Fears,Terrorist Attack,tt0164184\n9BNJuZn72tg,2006.0,5,10,2011,Charlotte's Web,,tt0413895\nQ0UDJuPozw8,2006.0,6,10,2011,Charlotte's Web,Think About That Corn,tt0413895\nDYFQ9vVqiMA,2006.0,4,10,2011,Charlotte's Web,The Yolks On Me,tt0413895\nzdX69cWtu6w,2006.0,1,10,2011,Charlotte's Web,Fern Saves Wilbur,tt0413895\n_7dr6PCeW4c,2007.0,10,10,2011,Blades of Glory,The Iron Lotus,tt0445934\njaRbZJBLIQo,2007.0,8,10,2011,Blades of Glory,\"I Miss You, Jimmy\",tt0445934\nsDsoiCkKuZY,2007.0,9,10,2011,Blades of Glory,Let's Kick Some Ice,tt0445934\nnekzfohNwuY,2007.0,7,10,2011,Blades of Glory,I'm a Sex Addict,tt0445934\n0LzZVYshI7s,2007.0,6,10,2011,Blades of Glory,Ice Blows,tt0445934\naqvTaYLP8yc,2007.0,5,10,2011,Blades of Glory,The Mac Attack,tt0445934\n0DFBoLZC3Bw,2007.0,2,10,2011,Blades of Glory,Team Van Waldenberg,tt0445934\nJwGZDfu-PZI,2007.0,4,10,2011,Blades of Glory,What a Skater's Body Looks Like,tt0445934\nKKW4wRDTI6Q,1989.0,9,9,2011,Black Rain,Motorcycle Chase,tt0096933\nsh0IBg7GBeY,2007.0,3,10,2011,Blades of Glory,Lady Humps,tt0445934\nMQZES2Vkcws,2007.0,1,10,2011,Blades of Glory,Brawl on Ice,tt0445934\neWmiv9uIXQk,2007.0,1,10,2011,Beowulf,The Demon Grendel,tt0442933\n-RhmDUj_GJs,2007.0,8,10,2011,Beowulf,Dragon Attack,tt0442933\ngAVNayJY7Tc,2002.0,2,12,2011,40 Days and 40 Nights,The Layout Problem,tt0243736\nKZzmopXXE2k,2002.0,6,12,2011,40 Days and 40 Nights,The Machine's Still Running Hot,tt0243736\ngPamy0ygNs8,2002.0,7,12,2011,40 Days and 40 Nights,Spiked Juice,tt0243736\nI2rWcnXUllw,2002.0,8,12,2011,40 Days and 40 Nights,All That Matters is the Kiss,tt0243736\nCr04KncHozI,2002.0,5,12,2011,40 Days and 40 Nights,Regaining the Power,tt0243736\njpY79a30azQ,2002.0,10,12,2011,40 Days and 40 Nights,You've Never Made Me So Hot,tt0243736\n97QNsiDKamk,2002.0,4,12,2011,40 Days and 40 Nights,Bus Date,tt0243736\nOB8uD8FaPXU,1994.0,8,12,2011,The Crow,How Awful Goodness Is,tt0109506\n3Lq9NGTN8Pc,1994.0,3,12,2011,The Crow,\"Victims, Aren't We All?\",tt0109506\nkgxhkCKXyRs,2002.0,8,10,2011,City of God,All-Out War,tt0317248\ndPpj1KEhwpo,2002.0,4,10,2011,City of God,Flirting With Crime,tt0317248\nKDqz--u8NYY,1994.0,2,12,2011,The Crow,Re-Born,tt0109506\nTCQQtdtZmv0,1999.0,5,10,2011,The Cider House Rules,Fuzzy Dies,tt0124315\nhdlfKy3AXDI,2002.0,9,10,2011,City of God,Shooting Photos,tt0317248\nru6jbod6hHI,2002.0,6,10,2011,City of God,Want a Gun?,tt0317248\nqvDxgXX9lww,2002.0,1,10,2011,City of God,Shaggy Takes Off,tt0317248\nFa1zCdRj3MY,2002.0,7,10,2011,City of God,The Exception Becomes the Rule,tt0317248\nHaCRdT6wcyE,1997.0,7,11,2011,Children of Heaven,Why Are You Late This Time?,tt0118849\nInDLvz0bN4k,1997.0,10,11,2011,Children of Heaven,Good News,tt0118849\nPCID_Jg1Djo,1997.0,2,11,2011,Children of Heaven,You Can Wear My Sneakers,tt0118849\nSa6o9ovlX7E,2006.0,10,10,2011,Johnny Was,End of the Line,tt0426501\nJUuQ3MggHbw,2002.0,1,12,2011,40 Days and 40 Nights,No Sex for Lent!,tt0243736\nFcvCuyT-zWs,2002.0,12,12,2011,40 Days and 40 Nights,Laundromat Tryst,tt0243736\n0l5h8k9N9pI,1951.0,1,8,2011,Ace in the Hole,\"I Know Newspapers Backward, Forward and Sideways\",tt0043338\n1eWz6aeGexk,2000.0,5,12,2011,Chocolat,Not That Kind of Poetry,tt0241303\nC0mHRQn_YrI,2006.0,10,10,2011,Charlotte's Web,Magnum Opus,tt0413895\ndcmwPYCUysw,1970.0,6,10,2011,Catch-22,Bomb the Ocean,tt0065528\nbtRNa3CItMc,1997.0,8,10,2011,Life is Beautiful,Buongiorno Principessa!,tt0118799\n4VWgFJUjmHc,2002.0,6,10,2011,Changing Lanes,The Damaged Tire,tt0264472\nzS3qOr0zAJg,2006.0,3,10,2011,Charlotte's Web,Wilbur Meets Charlotte,tt0413895\njKCpGDv8vuY,2006.0,8,10,2011,Charlotte's Web,Fun at The Fair,tt0413895\ncNqSc_WsRJ4,1997.0,3,11,2011,Cop Land,I'm One of the Good Guys,tt0118887\nJoEU1L2kueo,2006.0,2,10,2011,Charlotte's Web,Wilbur Plays in the Mud,tt0413895\nL9x9zuoAEl0,2002.0,10,10,2011,City of God,I Want to Get My Father's Murderer,tt0317248\nALImNM6jWZw,2000.0,2,12,2011,Chocolat,Something Special,tt0241303\nXeN0t2sZaP4,2002.0,2,10,2011,City of God,Thirst to Kill,tt0317248\nV26Pogm8ktk,2002.0,3,10,2011,City of God,Shall I Shoot You in the Hand or Foot?,tt0317248\njPf2y2QGoJw,1985.0,9,9,2011,Clue,They All Did It,tt0088930\nBnrKndkqLaY,2002.0,5,10,2011,City of God,Benny's Farewell Party,tt0317248\nY-9QUziXV1w,1997.0,11,11,2011,Cop Land,Deaf Shoot Out,tt0118887\nK8HgAzIL-iA,1997.0,8,11,2011,Cop Land,Taking Out Superboy,tt0118887\ny7m2AWevwoI,1997.0,5,11,2011,Cop Land,Don't Shut Me Out,tt0118887\nVrJMgYRC_ys,2007.0,6,9,2011,Freedom Writers,Paco Did It,tt0463998\nA63kIf5CfgE,1981.0,7,9,2011,Friday the 13th Part 2,A Surprise for Vicky,tt0082418\nkcYN8phvjSY,1981.0,1,9,2011,Friday the 13th Part 2,\"Look Out, Alice!\",tt0082418\nsOqvTLXZsMs,1981.0,5,9,2011,Friday the 13th Part 2,\"Vicky, Is That You?\",tt0082418\n17gLdc5k_XU,2007.0,9,10,2011,Hot Rod,Let's Jump This Jump,tt0787475\nQaDy4LHwyec,2006.0,2,10,2011,Failure to Launch,Vicious Chipmunk,tt0427229\n6YbTy5AvRP4,1981.0,3,9,2011,Friday the 13th Part 2,Mystery Cabin,tt0082418\nyxoE9td3Hko,1981.0,2,9,2011,Friday the 13th Part 2,Jason's Out There,tt0082418\n-CzO7z1dZ1A,1981.0,8,9,2011,Friday the 13th Part 2,Hiding Under the Bed,tt0082418\nUpj9_vP0WxY,2000.0,3,12,2011,Everybody's Famous!,Kidnappers,tt0209037\nVY6PAkLG2p4,2007.0,8,10,2011,Hot Rod,The King of AM Radio,tt0787475\nOCT_61zKMJU,2000.0,10,12,2011,Everybody's Famous!,Surrounded,tt0209037\nFePVICEsBZY,2000.0,11,12,2011,Everybody's Famous!,Lonesome Zora's Father,tt0209037\nGjOcw8d8yn8,2000.0,1,12,2011,Everybody's Famous!,Debbie,tt0209037\nv2sqjebFODg,1997.0,7,10,2011,Life is Beautiful,I Don't Want to Take a Shower,tt0118799\ndMt-XLWY8-g,2006.0,7,10,2011,Johnny Was,Julius' Stash,tt0426501\nAEucDLp8RdQ,2006.0,4,10,2011,Johnny Was,Warehouse Shootout,tt0426501\nXlfvWdF-g_E,2006.0,6,10,2011,Johnny Was,A Spare Head,tt0426501\nyoeV1e8dTTI,2006.0,8,10,2011,Johnny Was,Back Where We Started,tt0426501\nWd4DobcYu30,2006.0,3,10,2011,Johnny Was,Standoff,tt0426501\nXkFE98rP1eo,1997.0,4,10,2011,Life is Beautiful,Into the Greenhouse,tt0118799\n9lTSqc1UnLU,1997.0,6,10,2011,Life is Beautiful,Creative Translation,tt0118799\nZHGLbVKq9T0,1995.0,6,12,2011,The Crossing Guard,She Was Apologizing to Me,tt0112744\nLdcIe3gGQHY,2006.0,2,10,2011,Johnny Was,Are You Irish?,tt0426501\no4E-yb-1_FA,1997.0,1,10,2011,Life is Beautiful,A Night at the Opera,tt0118799\nl60Xedjvw-Q,2006.0,1,10,2011,Johnny Was,Hiding the White Fish,tt0426501\nKaUEDYWofJQ,1997.0,5,10,2011,Life is Beautiful,Let Me on That Train!,tt0118799\nccAWioDHgQM,1997.0,10,10,2011,Life is Beautiful,We Won!,tt0118799\nh7CBrN19OY4,1997.0,3,10,2011,Life is Beautiful,Take Me Away,tt0118799\nAm-uvoQN72E,1997.0,2,10,2011,Life is Beautiful,A Date Blessed by the Virgin Mary,tt0118799\n-13ScnosXAk,1997.0,9,10,2011,Life is Beautiful,The Final Game,tt0118799\nAuWjXrFh1qQ,1979.0,5,9,2011,Meatballs,Campfire Story,tt0079540\nDONkgw00QSE,1979.0,4,9,2011,Meatballs,Losing With Self-Respect,tt0079540\n85-2A0PHLIc,2007.0,6,10,2011,Reno 911!: Miami,Weed Wacker Threat,tt0499554\n2pud_rEsxMs,2007.0,8,10,2011,Reno 911!: Miami,Ethan the Drug Lord,tt0499554\nGd6ruQcgu9w,2007.0,2,10,2011,Reno 911!: Miami,\"Stop, Chicken, Stop!\",tt0499554\ngAKiWvjfCiQ,2009.0,9,9,2011,Star Trek,To Boldly Go Where No Man Has Gone Before,tt0796366\nk9vHopyEtzs,2009.0,6,9,2011,Star Trek,Emotionally Compromised,tt0796366\netyH2OUxVuQ,2007.0,7,10,2011,Reno 911!: Miami,Terry's Lewd Behavior,tt0499554\n8Ppo5YIYwTM,2009.0,8,9,2011,Star Trek,Spock Meets Spock,tt0796366\n5ECsW0x8svw,2009.0,5,9,2011,Star Trek,The Ice Creature,tt0796366\nqs0J2F3ErMc,2009.0,2,9,2011,Star Trek,A Pointy-Eared Bastard,tt0796366\nQGNfrNJZin4,2009.0,4,9,2011,Star Trek,Beam Us Up!,tt0796366\n-ArVBL8EgKU,2009.0,3,9,2011,Star Trek,Drill Fight,tt0796366\nsDKUL1YRZZs,1997.0,2,10,2011,The Big One,Paydays in the Coffin,tt0124295\nlFiX7y8KFoU,2005.0,12,12,2011,Sharkboy and Lavagirl 3D,Defeating Mr. Electric,tt0424774\nRlphfLO3MYA,2009.0,1,9,2011,Star Trek,Kirk Meets Bones,tt0796366\nFXy_DO6IZOA,2009.0,7,9,2011,Star Trek,Fire Everything!,tt0796366\nvXNr2xtv09Y,1994.0,2,8,2011,Star Trek: Generations,Time Is a Predator,tt0111280\n-tUodP_Wus4,2005.0,4,12,2011,Sharkboy and Lavagirl 3D,Glasses On,tt0424774\nIQp7gtX4w0U,1994.0,11,12,2011,The Crow,\"Kaw, Kaw, Bang, F*** I'm Dead!\",tt0109506\n5uJV71s0r5Q,1994.0,4,12,2011,The Crow,Gideon's,tt0109506\nWwDJZhI5IRM,1999.0,1,10,2011,The Cider House Rules,Adopting Homer,tt0124315\ncXbzJ7xAVn4,1994.0,6,12,2011,The Crow,\"Here, Funboy\",tt0109506\nMwo-Wd__tTI,1994.0,10,12,2011,The Crow,You're All Going to Die,tt0109506\nTGqcz-Xtd6E,1990.0,10,11,2011,The Grifters,Grifter's Dodge,tt0099703\n8gc-RSAJpH4,2007.0,4,10,2011,Beowulf,The Royal Dragon Horn,tt0442933\nTEodx0CTTgE,2002.0,9,10,2011,Changing Lanes,You're Addicted to Chaos,tt0264472\nJyjlwpXupvI,2002.0,10,10,2011,Changing Lanes,I Found the Edge,tt0264472\nUdZuHyttXbw,1970.0,10,10,2011,Catch-22,I Can Do It,tt0065528\nNWsc8gC3nSw,2002.0,7,10,2011,Changing Lanes,Searching for Meaning,tt0264472\ngDwlbuyDPfk,1994.0,12,12,2011,The Crow,Rooftop Showdown,tt0109506\n1edv56TCvxk,1994.0,7,12,2011,The Crow,Mother is the Name For God,tt0109506\n6f1jYUTo7AU,1995.0,11,12,2011,The Crossing Guard,At Close Range,tt0112744\n67jgvKFBCsY,2008.0,8,9,2011,The Duchess,Her Name Is Eliza,tt0864761\nnZE2tGoC0H4,2001.0,4,10,2011,Along Came a Spider,I Happen to Like Spiders,tt0164334\nkGVQE0m_V3A,2007.0,3,9,2011,A Mighty Heart,Interrogating a Jihadi,tt0829459\nLiYdMadk89Q,2001.0,3,10,2011,Along Came a Spider,The Missing Picture,tt0164334\nbmdgHN34hnk,2007.0,8,9,2011,A Mighty Heart,Mariane's Message,tt0829459\nFEioKHlkczY,2007.0,5,9,2011,A Mighty Heart,Veiled Threats,tt0829459\nkgdr5vmYZLw,2007.0,9,9,2011,A Mighty Heart,The Courage to Endure,tt0829459\nNTd3y71iKqE,2007.0,7,9,2011,A Mighty Heart,Learning the Truth,tt0829459\nDfcpuhTr8R0,2007.0,6,9,2011,A Mighty Heart,Danny Didn't Make It,tt0829459\nId3Lr9GyGh0,2007.0,4,9,2011,A Mighty Heart,Daniel and Mariane,tt0829459\nx_H8vusyzN0,2007.0,2,9,2011,A Mighty Heart,I Love You,tt0829459\ndH1SeHOpEO8,2007.0,1,9,2011,A Mighty Heart,Captured,tt0829459\nY4_1X9cpFWI,1951.0,8,8,2011,Ace in the Hole,A Big Human Interest Ending,tt0043338\nLLjiVwzeDb0,1951.0,5,8,2011,Ace in the Hole,You Like Those Rocks Just as Much as I Do,tt0043338\n7hY_dAeX9hw,1951.0,7,8,2011,Ace in the Hole,Below-the-Belt Journalism,tt0043338\n42xTE_bzg18,1951.0,6,8,2011,Ace in the Hole,We've Got an,tt0043338\ndShmoHD7PdM,1951.0,2,8,2011,Ace in the Hole,Small Town Blues,tt0043338\ndoLHipw196I,2001.0,6,10,2011,Along Came a Spider,It's Him,tt0164334\n4D6bHTh4-tE,1951.0,4,8,2011,Ace in the Hole,Finding Leo,tt0043338\nBvPVgwp_M18,1951.0,3,8,2011,Ace in the Hole,Rattlesnake Hunt,tt0043338\nFPbDFxXU_74,2001.0,1,10,2011,Along Came a Spider,Bridge Crash,tt0164334\niH9hjyoAugw,2001.0,8,10,2011,Along Came a Spider,Brutally Honest,tt0164334\n5sRrCX-pLPM,2001.0,5,10,2011,Along Came a Spider,Escape Attempt,tt0164334\nbYQjcjDeGF4,2001.0,10,10,2011,Along Came a Spider,You're Not My Partner,tt0164334\n3OYeaLGRfug,2001.0,7,10,2011,Along Came a Spider,You Do What You Are,tt0164334\nTXs4RCJasOM,1980.0,4,8,2011,Atlantic City,I Didn't Protect You,tt0080388\nExYO7B26kkw,2001.0,2,10,2011,Along Came a Spider,Partner or Stalker,tt0164334\n7UZpRynpUac,1980.0,5,8,2011,Atlantic City,I Want My Money!,tt0080388\nxMpgI4DCKyk,2001.0,9,10,2011,Along Came a Spider,Good at What I Do,tt0164334\nAZ042bsOWTs,1980.0,6,8,2011,Atlantic City,Gunned Down Gangsters,tt0080388\ngL17bwbFDAI,1980.0,3,8,2011,Atlantic City,I Watch You,tt0080388\nzlaLlT-5Lf4,1980.0,8,8,2011,Atlantic City,Don't Forget to Ditch the Car,tt0080388\nDyme80H188w,1980.0,2,8,2011,Atlantic City,Teach Me Stuff,tt0080388\nadOO9YXZ9Ys,1997.0,11,11,2011,Children of Heaven,The Race,tt0118849\nolxqe0CQ7W0,1980.0,1,8,2011,Atlantic City,\"Hard Ten, Soft Three\",tt0080388\n1XkC9it8OPs,1997.0,1,11,2011,Children of Heaven,My Sister's Shoes,tt0118849\noSvVjh93suI,1997.0,8,11,2011,Children of Heaven,Gardening Job,tt0118849\nbd0ZO7Ewiq0,1980.0,7,8,2011,Atlantic City,I've Never Been to Florida,tt0080388\nbhGFCS11OR8,1997.0,9,11,2011,Children of Heaven,A Better Life,tt0118849\nJxTMuhVED0w,1997.0,4,11,2011,Children of Heaven,We'll Wash Them,tt0118849\nuqeGxkIdBiY,1997.0,5,11,2011,Children of Heaven,\"What Is It, Little Girl?\",tt0118849\nrgQjzIVzoh4,1997.0,6,11,2011,Children of Heaven,Zahra Spots Her Shoes,tt0118849\ndJS8Umi2b0Q,2007.0,7,10,2011,Beowulf,Shall Be King,tt0442933\nYWmwAdK48vg,2007.0,10,10,2011,Beowulf,Slaying the Dragon,tt0442933\nKNaj7uCVPCI,2007.0,5,10,2011,Beowulf,I Am,tt0442933\n0KA8Qkw3nks,2007.0,9,10,2011,Beowulf,Dragon Flight,tt0442933\ncs7CW6xDbL8,2007.0,3,10,2011,Beowulf,Sea Monsters,tt0442933\n-A9rFt7ITy4,2007.0,2,10,2011,Beowulf,They Say You Have A Monster Here,tt0442933\nv9qbXZZD-b0,1989.0,4,9,2011,Black Rain,Yakuza Police Raid,tt0096933\nC-dzbTNdd04,1989.0,3,9,2011,Black Rain,Airport Trickery,tt0096933\nW5ATR6lZw4o,1989.0,2,9,2011,Black Rain,Arresting Sato,tt0096933\n3UALmd0PV6o,1989.0,5,9,2011,Black Rain,Kendo Confrontation,tt0096933\nR7CbMBUNC6I,1989.0,1,9,2011,Black Rain,New York Motorcycle Race,tt0096933\nngThTIjgCMw,1989.0,8,9,2011,Black Rain,Yakuza Hideout Gunfight,tt0096933\naYzPUa-6BLE,1989.0,6,9,2011,Black Rain,Motorcycle Decapitation,tt0096933\n4nJl2BZ6obg,1989.0,7,9,2011,Black Rain,Did You Take Money?,tt0096933\ntvGHSvfnlsQ,2000.0,8,8,2011,Cast Away,Stuck at a Crossroads,tt0162222\nri44Zx810p0,2000.0,7,8,2011,Cast Away,You're the Love of My Life,tt0162222\nlv_LfXcjWew,2000.0,5,8,2011,Cast Away,Escape to Sea,tt0162222\nLHtgKIFoQfE,2000.0,6,8,2011,Cast Away,\"I'm Sorry, Wilson!\",tt0162222\nLUDEjulbqzk,2000.0,3,8,2011,Cast Away,I Have Made Fire!,tt0162222\nZ-365iujWk8,2000.0,4,8,2011,Cast Away,\"Never Again, Never Again\",tt0162222\nMLnzF5NcAc4,2000.0,1,8,2011,Cast Away,I'll Be Right Back!,tt0162222\nIyOu9xCNMK0,2000.0,2,8,2011,Cast Away,Plane Crash,tt0162222\nRrQppEXvRcM,1970.0,5,10,2011,Catch-22,A Chair for the Lady,tt0065528\nE9wcK6qvCqI,1970.0,3,10,2011,Catch-22,Where's My Parachute?,tt0065528\ng0UV6ug96c0,1970.0,2,10,2011,Catch-22,It's an Egg,tt0065528\nj-OcaLECz1k,1970.0,9,10,2011,Catch-22,Shameful Opportunist,tt0065528\n0cHePp1_EMg,1970.0,4,10,2011,Catch-22,I'm Desperate,tt0065528\nLwELqrqsf_o,1970.0,8,10,2011,Catch-22,Poor Hungry Joe,tt0065528\n0bkaFNVY2UQ,1970.0,7,10,2011,Catch-22,No Clothes,tt0065528\n-eXI4uy3Mlg,1970.0,1,10,2011,Catch-22,That's Catch -22,tt0065528\nZ89Q2fkgbRo,2002.0,5,10,2011,Changing Lanes,Living on the Edge,tt0264472\nFCYA84FwbC0,2002.0,4,10,2011,Changing Lanes,Forge the Document,tt0264472\nB1QVeR_p7WQ,2002.0,8,10,2011,Changing Lanes,Job Interview,tt0264472\nd9-DFXwcmFI,2002.0,3,10,2011,Changing Lanes,Tiger Woods Commercial,tt0264472\nKtekLRYl3q8,2002.0,2,10,2011,Changing Lanes,I Want My Time Back,tt0264472\n0foXV1hWrx4,1986.0,2,7,2011,Children of a Lesser God,A Dark Place,tt0090830\nsu64KIPecuo,2002.0,1,10,2011,Changing Lanes,The Accident,tt0264472\nBSFgVoDNlG8,1986.0,3,7,2011,Children of a Lesser God,Falling Into The Pool With You,tt0090830\n1Pb1vdt-SnQ,1986.0,1,7,2011,Children of a Lesser God,Picking Up Hearing Girls,tt0090830\nEZ7HxkZKDuk,1986.0,4,7,2011,Children of a Lesser God,I Don't Hurt From Other People,tt0090830\nKQrBeGqz1W0,1986.0,7,7,2011,Children of a Lesser God,Not in Silence...And Not In Sound,tt0090830\n1qO81pgfRVA,1986.0,6,7,2011,Children of a Lesser God,Forgive Me,tt0090830\n1pJywLQLzcA,1986.0,5,7,2011,Children of a Lesser God,Never Come Inside My Silence,tt0090830\nGNUP-so0ndQ,1985.0,1,9,2011,Clue,Over His Dead Body,tt0088930\nnrqxmQr-uto,1985.0,8,9,2011,Clue,Flames on the Side of My Face,tt0088930\nn3PGfjyctSQ,1985.0,7,9,2011,Clue,For She's a Jolly Good Fellow,tt0088930\nuIUCcORbMvg,1985.0,4,9,2011,Clue,\"Let Us In, Let Us In!\",tt0088930\nO5ROhf5Soqs,1985.0,6,9,2011,Clue,One Plus Two Plus Two Plus One,tt0088930\nMRSTpj2Z5cU,1985.0,5,9,2011,Clue,I Am Your Singing Telegram,tt0088930\naKOmGhBOJZI,1985.0,3,9,2011,Clue,I'm Not Shouting!,tt0088930\n7CEYqIjhTHs,2008.0,5,8,2011,Defiance,Welcome to Our Community,tt1034303\nfbwsXqUpZRU,1985.0,2,9,2011,Clue,I Didn't Do It!,tt0088930\nntGBzcfpKYg,2008.0,7,8,2011,Defiance,Crossing the Marsh,tt1034303\nCZrA-i6kOdc,2008.0,8,8,2011,Defiance,To the Rescue,tt1034303\nq8RTGMsDTiw,2008.0,6,8,2011,Defiance,Mazel Tov,tt1034303\ncdVMT44nWzk,2008.0,1,8,2011,Defiance,For My Parents,tt1034303\nS9LRWazyNC0,2008.0,4,8,2011,Defiance,Sibling Rivalry,tt1034303\nSooANfD9sWc,2008.0,3,8,2011,Defiance,An Act of Faith,tt1034303\nDvOrBPJGAnc,2000.0,8,12,2011,Everybody's Famous!,True Identity,tt0209037\nWzeXsjGmkjI,2006.0,4,10,2011,Failure to Launch,When Dolphins Attack,tt0427229\nVw8BozG_LVA,2008.0,2,8,2011,Defiance,The Bielski Otriad,tt1034303\nlXtrwkdSkow,1996.0,1,12,2011,Don't Be a Menace,Ashtray's Father,tt0116126\nMwAV8x0J6DA,1996.0,12,12,2011,Don't Be a Menace,Drive-By,tt0116126\nI_yF6-3pXdw,1996.0,6,12,2011,Don't Be a Menace,Old Lady Dance-Off,tt0116126\nF1Bhl3yjzsQ,1996.0,4,12,2011,Don't Be a Menace,Do We Have a Problem?,tt0116126\nWS94fK4djqg,1996.0,11,12,2011,Don't Be a Menace,Dreams are for Suckas,tt0116126\nphKe4peWFG8,1996.0,10,12,2011,Don't Be a Menace,Old School,tt0116126\nng9LMtcmqNs,1996.0,5,12,2011,Don't Be a Menace,The Man,tt0116126\nN3U5ed3dRAE,1996.0,8,12,2011,Don't Be a Menace,You Got Yourself a Job,tt0116126\nZRJgexzNOMo,1996.0,3,12,2011,Don't Be a Menace,Are You My Daddy?,tt0116126\nGh3AZit48Uc,1996.0,2,12,2011,Don't Be a Menace,Bet You I Could Get Her Number,tt0116126\n9f8liieRepk,2007.0,4,9,2011,Freedom Writers,I Am Home,tt0463998\n1kj111rBzoo,1996.0,9,12,2011,Don't Be a Menace,Dashiki's Poem,tt0116126\nfbNz1vlRSyM,2006.0,4,9,2011,Dreamgirls,We're Your,tt0443489\nqPtAocA3m2Y,1996.0,7,12,2011,Don't Be a Menace,Driving Test,tt0116126\nO3CGLSyIwNo,2006.0,2,9,2011,Dreamgirls,Cadillac Car,tt0443489\nuZgo9g8v76U,2006.0,1,9,2011,Dreamgirls,Introducing: The Dreamettes,tt0443489\n1mJ49BcUM3E,2006.0,3,9,2011,Dreamgirls,Deena's Gonna Sing Lead,tt0443489\nzZK_bkxhJes,2006.0,9,9,2011,Dreamgirls,The Final Song,tt0443489\n79LzBvBRPx0,2006.0,8,9,2011,Dreamgirls,Second Chance,tt0443489\nPAcLQ7fRJlo,2006.0,5,9,2011,Dreamgirls,Stop Bringing Us Down,tt0443489\n53o7_NqrTQA,2006.0,7,9,2011,Dreamgirls,Jimmy Got Soul,tt0443489\nhzV5qSWRfKY,2006.0,3,10,2011,Failure to Launch,Emotional Crisis Stage,tt0427229\nQZO_QFM5j_I,2006.0,6,9,2011,Dreamgirls,I'm Not Going,tt0443489\nOJVDP7FaiqI,2006.0,7,10,2011,Failure to Launch,Tripp Exposes the Plan,tt0427229\n3c5pbePUc2g,2007.0,3,9,2011,Freedom Writers,When Will I Be Free?,tt0463998\nDjANcJEduN0,2006.0,1,10,2011,Failure to Launch,Paula's Pitch,tt0427229\nApv7l4b68MQ,2006.0,10,10,2011,Failure to Launch,Real Feelings,tt0427229\n39OHlSguIy0,2006.0,9,10,2011,Failure to Launch,Kit's Apology,tt0427229\nZCjO50QLDhA,2006.0,5,10,2011,Failure to Launch,Paula Stays Over,tt0427229\n9B7tjXbhnog,2006.0,8,10,2011,Failure to Launch,Fall Guy,tt0427229\nUPkb66KjZc0,1991.0,6,9,2011,Operation Condor,Platform Brawl,tt0099558\nUPu0PU6sLxo,2006.0,6,10,2011,Failure to Launch,To Kill A Mockingbird,tt0427229\nUii-wMha6mE,2007.0,2,10,2011,Hot Rod,Fighting Frank,tt0787475\nDz9YWjkw2BA,1991.0,5,9,2011,Operation Condor,Warehouse Escape,tt0099558\nqOy1ncO2t8c,1991.0,8,9,2011,Operation Condor,The Wind Tunnel,tt0099558\n3EIgmj6gp1I,2007.0,1,10,2011,Hot Rod,Mail Truck Jump,tt0787475\nUrIcAAryafo,1991.0,9,9,2011,Operation Condor,Lift Off,tt0099558\n6oijcajbnM0,1991.0,7,9,2011,Operation Condor,Opening the Vault,tt0099558\n1bvaqpSmBLQ,1991.0,4,9,2011,Operation Condor,Condor's Rescue,tt0099558\nXgZihg6-VZQ,1991.0,2,9,2011,Operation Condor,Bumpy Ride,tt0099558\naeavPOh2Wws,1991.0,3,9,2011,Operation Condor,You Shoot!,tt0099558\nAjGIJPE8B8I,2007.0,5,9,2011,Freedom Writers,You Are The Heroes,tt0463998\njA-BCSOaa4Q,2007.0,7,9,2011,Freedom Writers,You Don't Even Like Them,tt0463998\n1JauH_EKpaY,2007.0,8,9,2011,Freedom Writers,You Are Not Failing,tt0463998\nG0rXUr-msX0,2007.0,9,9,2011,Freedom Writers,We Mattered,tt0463998\nPahVp7p3XHg,2007.0,2,9,2011,Freedom Writers,Not So Different,tt0463998\nqzayNPEmoK0,2007.0,1,9,2011,Freedom Writers,I Saw the War for the First Time,tt0463998\nKJciGsgcYN0,1981.0,6,9,2011,Friday the 13th Part 2,Sex and Death,tt0082418\neBU1T2DdLsk,1981.0,4,9,2011,Friday the 13th Part 2,Left Hanging,tt0082418\ng5Y-PN_duno,1986.0,5,8,2011,Heartburn,Missing Socks,tt0091188\nzEIqJ4321TE,1981.0,9,9,2011,Friday the 13th Part 2,Mommie Dearest,tt0082418\nm-1vkYcqRRw,1986.0,4,8,2011,Heartburn,Can't We Get Someone Else to Do It?,tt0091188\nRuC2eNMtAHA,1986.0,7,8,2011,Heartburn,Imagining Things,tt0091188\nwUP31hGC1A0,1986.0,3,8,2011,Heartburn,Baby Songs,tt0091188\n5soOhh80bK0,1986.0,6,8,2011,Heartburn,You Just Threw it in the Drawer,tt0091188\n9c0szHKahlQ,1986.0,2,8,2011,Heartburn,Apparently They Don't Have Doors Either,tt0091188\ngnaDj74UMqs,1986.0,1,8,2011,Heartburn,I Don't Believe in Marriage,tt0091188\niY68ovrzfXc,1986.0,8,8,2011,Heartburn,Living in a Dream World,tt0091188\nELpItLsTKgY,2007.0,10,10,2011,Hot Rod,Rod Defeats Frank,tt0787475\nNrs-lyhcXmA,2007.0,6,10,2011,Hot Rod,Trippin' Balls,tt0787475\nTOUrLn1FFCA,2007.0,7,10,2011,Hot Rod,Cool Beans,tt0787475\nwxb_X12HZWQ,2007.0,4,10,2011,Hot Rod,I Like to Party,tt0787475\ntHNjy3BH4qE,2000.0,12,12,2011,Everybody's Famous!,Lucky Mañuelo,tt0209037\ngbu88CKkEzI,2007.0,5,10,2011,Hot Rod,Whiskey,tt0787475\nQAztYUCEhzk,2007.0,3,10,2011,Hot Rod,Jumping the Pool,tt0787475\nTumSHtCzjAw,2000.0,7,12,2011,Everybody's Famous!,Mother Knows All,tt0209037\nHNrYPzxrG7I,2000.0,9,12,2011,Everybody's Famous!,See You Tonight Sweetheart,tt0209037\nlBvrfWqCjYE,2000.0,5,12,2011,Everybody's Famous!,That Stupid Dog,tt0209037\nSBLMTDMdTIU,2000.0,4,12,2011,Everybody's Famous!,Madonna,tt0209037\nKocHmCmLwro,2000.0,2,12,2011,Everybody's Famous!,Kisses and Hugs,tt0209037\nFiAndeAR9wQ,2000.0,6,12,2011,Everybody's Famous!,Tied Up,tt0209037\nrCHGzxSBn-c,1979.0,2,9,2011,Meatballs,The Swiss Trained Me to Kill,tt0079540\n-BYVM9TrKzg,2006.0,9,10,2011,Johnny Was,Julius Goes Down,tt0426501\n8-UdwBkXJBI,1979.0,1,9,2011,Meatballs,King of Sexual Awareness Week,tt0079540\npWPn-C5l3Sk,1979.0,7,9,2011,Meatballs,Fink vs. The Stomach,tt0079540\nWaF5AMiC4xU,1979.0,9,9,2011,Meatballs,We Are the North Star C.I.T.s,tt0079540\njdZ6RA_c6oE,1979.0,8,9,2011,Meatballs,Rudy the Rabbit,tt0079540\n-TogGxzlfhM,1979.0,6,9,2011,Meatballs,It Just Doesn't Matter!,tt0079540\nrqVI2DmLI2Q,1980.0,2,8,2011,Popeye,I'm Mean,tt0081353\nma_XNn1bwOM,1973.0,2,8,2011,Paper Moon,Too Young to Smoke,tt0070510\nBGZZ7s7FJlM,1973.0,8,8,2011,Paper Moon,Together Again,tt0070510\nq85fsxWYG6A,1979.0,3,9,2011,Meatballs,Let's Wrestle,tt0079540\n2jTjWGNMo4E,1973.0,7,8,2011,Paper Moon,Parting Ways,tt0070510\nR0zmkkcEdKc,2006.0,1,10,2011,Mr. Fix It,Different Dick,tt0416051\nIK1HlBRMGwk,1973.0,6,8,2011,Paper Moon,Escaping the Cops,tt0070510\nCKJJbZe4TWM,1973.0,5,8,2011,Paper Moon,$20 Bill,tt0070510\nVBA_fhQoArA,1973.0,1,8,2011,Paper Moon,200 Dollars,tt0070510\nATGMbNOmAYs,1973.0,3,8,2011,Paper Moon,Bible Salesmen,tt0070510\nphJJFbxyino,1973.0,4,8,2011,Paper Moon,Calling the Shots,tt0070510\nqAFgj8mqPk0,1980.0,7,8,2011,Popeye,He Needs Me,tt0081353\nmFwAm6oIPtk,1980.0,5,8,2011,Popeye,Stay With Me,tt0081353\nf_G1oYcHFsk,1980.0,4,8,2011,Popeye,Oxblood Oxheart,tt0081353\nUmwLKU5DIGk,1980.0,1,8,2011,Popeye,He's Large,tt0081353\n1-HbIkCjDbk,1980.0,3,8,2011,Popeye,Bluto Blows!,tt0081353\nqhxDQ1g964U,1980.0,6,8,2011,Popeye,I Yam What I Yam,tt0081353\n-ncFDuKdgNE,1980.0,8,8,2011,Popeye,I'm  the Sailor Man,tt0081353\nDq6dW6XbeLI,2001.0,4,12,2011,Prozac Nation,Don't Suggest Therapy,tt0236640\nkdTfLDIbwow,2007.0,10,10,2011,Reno 911!: Miami,Super Terry Airlines,tt0499554\n9G4TzgRUKGI,2007.0,9,10,2011,Reno 911!: Miami,Showdown with Spoder,tt0499554\nkicjYh3v1FI,2007.0,5,10,2011,Reno 911!: Miami,\"What Up, Yo?\",tt0499554\nH53kBYo1Jx8,2007.0,3,10,2011,Reno 911!: Miami,\"Rick Smith, S.W.A.T.\",tt0499554\nhuOZPQ6Hl2c,2007.0,3,8,2011,Shooter,Savior with a Sniper Rifle,tt0822854\nMYge4RghcNQ,2007.0,1,10,2011,Reno 911!: Miami,Asleep at the Wheel,tt0499554\n5cKRTdQtq5w,2007.0,1,8,2011,Shooter,The Assassins Strike,tt0822854\na_6tguZWgmU,2007.0,2,8,2011,Shooter,Losing That Swagger,tt0822854\nmn60YWO218k,2007.0,4,8,2011,Shooter,Mister Rate's Advice,tt0822854\nlKEihcQaa_g,2007.0,7,8,2011,Shooter,Sniper at the Summit,tt0822854\nAoSA32zQ754,2007.0,6,8,2011,Shooter,Flyswatter,tt0822854\nRIN6AtTxFgE,2007.0,8,8,2011,Shooter,\"I Won, You Lost\",tt0822854\npAZOyJPs5bo,2007.0,5,8,2011,Shooter,\"Shoot, Kill, Blast\",tt0822854\nouDfr9Jh0s8,1960.0,9,10,2011,Spartacus,Crassus Identifies,tt0054331\nC1NgX-w54RY,1991.0,6,8,2011,Star Trek: The Undiscovered Country,A Painful Mind Meld,tt0102975\nnrizm2gnQBo,1991.0,8,8,2011,Star Trek: The Undiscovered Country,Second Star to the Right,tt0102975\nBS-f_KwM81I,1991.0,3,8,2011,Star Trek: The Undiscovered Country,Those Were Not His Knees,tt0102975\nl_a2GN0Ix4o,1991.0,2,8,2011,Star Trek: The Undiscovered Country,He's Planning His Escape,tt0102975\ns2wBtcmE5W8,1991.0,5,8,2011,Star Trek: The Undiscovered Country,Two Kirks,tt0102975\nfg58hVEY5Og,1991.0,7,8,2011,Star Trek: The Undiscovered Country,Cry Havoc,tt0102975\nBf4YINfjQaQ,1991.0,1,8,2011,Star Trek: The Undiscovered Country,A Klingon Trial,tt0102975\nU15kcueM3Og,1994.0,7,8,2011,Star Trek: Generations,Kirk and Picard vs. Soran,tt0111280\ny8_oqgPwHfI,1994.0,8,8,2011,Star Trek: Generations,Kirk's Death,tt0111280\ndKSAKBEI4w0,2007.0,3,8,2011,Stardust,\"Honey, You're Wearing a Bathrobe\",tt0486655\navH2K1iR8Oo,1991.0,4,8,2011,Star Trek: The Undiscovered Country,Speaking Klingon,tt0102975\nxz3CYcjdSaI,1994.0,1,8,2011,Star Trek: Generations,Courage Is an Emotion,tt0111280\nVrJiU9BOEBI,1994.0,6,8,2011,Star Trek: Generations,Make a Difference Again,tt0111280\nNY0e-PQeJbQ,1990.0,7,11,2011,The Grifters,Scamming Sailors,tt0099703\nfmIaHAtabSU,1994.0,5,8,2011,Star Trek: Generations,The Nexus,tt0111280\nFpgyrIlhoyw,1994.0,4,8,2011,Star Trek: Generations,The Enterprise Crashes,tt0111280\nJTu1R4b1yZQ,2007.0,8,8,2011,Stardust,What Stars Do,tt0486655\ndkdrbg4EwGA,2007.0,7,8,2011,Stardust,Undead Sword Fight,tt0486655\nDSCWB4GqcFE,1994.0,3,8,2011,Star Trek: Generations,The Bird of Prey's Cloaking Device,tt0111280\n5FZ7jNq8A00,2007.0,6,8,2011,Stardust,Voodoo Drowning,tt0486655\nuopoXtR0Kjk,2007.0,1,8,2011,Stardust,The Matter of Succession,tt0486655\n7ZkmgFpKdxQ,2007.0,2,8,2011,Stardust,Deciphering the Runes,tt0486655\npTCTgL7_9gY,2007.0,5,8,2011,Stardust,I Know a Lot About Love,tt0486655\n_NrqftLip64,2007.0,4,8,2011,Stardust,Twinkle Toes Shakespeare,tt0486655\n0CZAYJ_sotw,2005.0,9,12,2011,Sharkboy and Lavagirl 3D,Melting Bridge,tt0424774\nhhGSeFrYSyo,2005.0,1,12,2011,Sharkboy and Lavagirl 3D,The Birth of Sharkboy,tt0424774\n0EeL2FeI7NA,2005.0,6,12,2011,Sharkboy and Lavagirl 3D,The Land of Milk & Cookies,tt0424774\n4ZaIb1kBnX8,2005.0,7,12,2011,Sharkboy and Lavagirl 3D,Sharkboy's Lullaby,tt0424774\nK1AMs3IPQJQ,2005.0,10,12,2011,Sharkboy and Lavagirl 3D,May the Best Dream Win,tt0424774\nn8hmCcXvpz8,2005.0,11,12,2011,Sharkboy and Lavagirl 3D,A Better Dream Than This,tt0424774\nyKwIEIVAMfE,2005.0,8,12,2011,Sharkboy and Lavagirl 3D,Plug Hounds,tt0424774\n_P3bnWz5GL4,2005.0,3,12,2011,Sharkboy and Lavagirl 3D,Come With Us,tt0424774\n2GvL2DyMfGU,2005.0,5,12,2011,Sharkboy and Lavagirl 3D,Feel the Burn,tt0424774\nSmCSJ3akPIs,2005.0,2,12,2011,Sharkboy and Lavagirl 3D,Get the Book!,tt0424774\nkOS8g1D6MXk,1997.0,6,10,2011,The Big One,TWA Phone Reservations,tt0124295\n9PM9tDtmaaI,1997.0,3,10,2011,The Big One,Steve Forbes Never Blinks,tt0124295\nWeZiTVev7vA,1997.0,4,10,2011,The Big One,80 Cent Check,tt0124295\nPW2Wr4-2oyM,1997.0,7,10,2011,The Big One,Pillsbury Headquarters,tt0124295\nyPBDhqwT8VQ,1997.0,1,10,2011,The Big One,Satan Worshipers for Dole,tt0124295\nb3z4_gJ5hGU,1997.0,8,10,2011,The Big One,We've Been Hoodwinked,tt0124295\n28B_sZZ6km4,1997.0,9,10,2011,The Big One,Tickets to Indonesia for Phil Knight,tt0124295\nymjvQZ6nSd8,1997.0,10,10,2011,The Big One,Video Message to Nike,tt0124295\nNd5_lg9Ea0E,1997.0,5,10,2011,The Big One,Human Resources,tt0124295\ntGs4xAZJkps,1999.0,7,10,2011,The Cider House Rules,Ain't Nobody Having Sex With My Daughter,tt0124315\nSzJ6RfcDato,1999.0,8,10,2011,The Cider House Rules,Performing the Operation,tt0124315\nBoTt0juJio4,1995.0,10,12,2011,The Crossing Guard,I'm Gonna Try and Shoot You,tt0112744\nJES2fQLPoGU,1999.0,6,10,2011,The Cider House Rules,You Are My Work of Art,tt0124315\nNM_5sUMyd0I,1999.0,10,10,2011,The Cider House Rules,Homer Returns,tt0124315\numK3KRcg1V8,1999.0,4,10,2011,The Cider House Rules,Homer Leaves the Orphanage,tt0124315\nazvRjKHhpfA,1999.0,3,10,2011,The Cider House Rules,Happy to Be Alive,tt0124315\nLK4c5TIKY0w,1999.0,9,10,2011,The Cider House Rules,The Rules,tt0124315\nTKKzI-DKhuQ,2005.0,9,10,2011,Aeon Flux,Shootout in the Garden,tt0402022\n8aRwEJvaPiY,1999.0,2,10,2011,The Cider House Rules,Nobody Ever Wants Me,tt0124315\nBw-Y1sEUlSk,1995.0,12,12,2011,The Crossing Guard,\"Tender Child, Rest in Heaven\",tt0112744\nyGy0XuoyTvE,1995.0,8,12,2011,The Crossing Guard,,tt0112744\nscrKz6PN92g,1995.0,5,12,2011,The Crossing Guard,Love Hurts,tt0112744\nhKNSpQwCIdA,1995.0,9,12,2011,The Crossing Guard,I Hope You Die,tt0112744\njszED6T4Gik,1995.0,1,12,2011,The Crossing Guard,That's My Job in Life,tt0112744\nZpuHoppfsN0,1995.0,2,12,2011,The Crossing Guard,Pride and Relief,tt0112744\n8xf7Ee4KLiE,1995.0,4,12,2011,The Crossing Guard,A Perfect Seven,tt0112744\n6teHF2I4UuY,1995.0,7,12,2011,The Crossing Guard,Dancing With a Stripper,tt0112744\nuqLr5PR6sbM,1994.0,1,12,2011,The Crow,Murder Flashes,tt0109506\nUS6tvODNVu4,1994.0,9,12,2011,The Crow,I Just Want Him,tt0109506\nYNTpnxwyEg4,1995.0,3,12,2011,The Crossing Guard,Three Days,tt0112744\nrvjVIwMPxqA,2008.0,9,9,2011,The Duchess,A Calm Normality,tt0864761\nT2R4z7O4kg0,1994.0,5,12,2011,The Crow,Is That Gasoline I Smell?,tt0109506\nXquwlFI-Ygc,2008.0,7,9,2011,The Duchess,The Mistake Of Your Life,tt0864761\nZlITgn8FjDw,2008.0,5,9,2011,The Duchess,One Single Thing Of My Own,tt0864761\neWgOjuLg5oY,1996.0,8,9,2011,The English Patient,Always Loved You,tt0116209\n9V2nsuzAzb8,2008.0,6,9,2011,The Duchess,A Trip To Bath,tt0864761\n7h14GBiAZxo,2008.0,4,9,2011,The Duchess,Close Your Eyes,tt0864761\naW4tjKzDEDU,1996.0,4,9,2011,The English Patient,The Major Who Takes Thumbs,tt0116209\n2NfTq7LPnXk,2008.0,2,9,2011,The Duchess,Only A Girl,tt0864761\nBjCjlMXLVtw,2008.0,3,9,2011,The Duchess,Lady Elizabeth,tt0864761\nJMJAl7PfSlk,2008.0,1,9,2011,The Duchess,I Have Heard A Rumor,tt0864761\nppjyB2MpxBU,1972.0,3,9,2011,The Godfather,Killing Sollozzo and McCluskey,tt0068646\nvoNs3aHZmQM,1972.0,6,9,2011,The Godfather,Working for My Father,tt0068646\nOkSIAlL4f-0,1996.0,3,9,2011,The English Patient,Happy Christmas,tt0116209\n8DlxO2frMPE,1996.0,6,9,2011,The English Patient,Cathedral Paintings,tt0116209\nyU5kwdXhSzY,1996.0,7,9,2011,The English Patient,Defusing a Bomb,tt0116209\nx11OTizHwfE,1996.0,5,9,2011,The English Patient,Why Were You Holding His Collar?,tt0116209\ntK49SBXBK_U,1996.0,1,9,2011,The English Patient,May I Have This Dance,tt0116209\n6SEp2FQYS84,1996.0,2,9,2011,The English Patient,In Love with Ghosts,tt0116209\nz40Tipkm4IA,1996.0,9,9,2011,The English Patient,I Promise I'll Never Leave You,tt0116209\nSWAJPB_5rSs,1972.0,5,9,2011,The Godfather,Michael Loses Apollonia,tt0068646\nDvD9OryD6mY,1972.0,9,9,2011,The Godfather,The New Godfather,tt0068646\njYnRBX2Trtk,1972.0,7,9,2011,The Godfather,Don't Ever Take Sides Against the Family,tt0068646\n0qvpcfYFHcw,1972.0,2,9,2011,The Godfather,It's Strictly Business,tt0068646\n1CDlBLvc3YE,1972.0,8,9,2011,The Godfather,The Baptism Murders,tt0068646\nPJpGMrH7RWs,2002.0,4,9,2011,The Sum of All Fears,I Don't Think He Did It,tt0164184\nsJU2cz9ytPQ,1972.0,4,9,2011,The Godfather,Sonny is Killed,tt0068646\nVC1_tdnZq1A,1972.0,1,9,2011,The Godfather,The Horse Head,tt0068646\n435mkg6_eGQ,1974.0,8,8,2011,The Godfather: Part 2,Corleone Family Flashback,tt0071562\nwPmTp9up26w,1974.0,1,8,2011,The Godfather: Part 2,My Offer is Nothing,tt0071562\ngCdXiOssbM0,1974.0,5,8,2011,The Godfather: Part 2,Sicilian Revenge,tt0071562\nAO-VFDYy9Rk,1974.0,7,8,2011,The Godfather: Part 2,Fredo's Death,tt0071562\n4dWE_ag9W6o,1974.0,6,8,2011,The Godfather: Part 2,If History Has Taught Us Anything,tt0071562\n_g9RI0GgRIQ,1974.0,4,8,2011,The Godfather: Part 2,It Was an Abortion,tt0071562\nem7EcaXPJF8,1974.0,2,8,2011,The Godfather: Part 2,The Murder of Don Fanucci,tt0071562\n5Weaop_aiTg,1974.0,3,8,2011,The Godfather: Part 2,You're Nothing to Me Now,tt0071562\nDiNE5iYBuHA,1974.0,7,9,2011,The Great Gatsby,Rich Girls Don't Marry Poor Boys,tt0071577\nKlPjJx6pMNA,1974.0,4,9,2011,The Great Gatsby,New Neighbors,tt0071577\nEwYjmMjwF_M,1974.0,6,9,2011,The Great Gatsby,Reuniting,tt0071577\nZ8zeMXCxlmE,1974.0,1,9,2011,The Great Gatsby,What Gatsby?,tt0071577\nlE4UQ5gh5Zo,1974.0,9,9,2011,The Great Gatsby,Gatsby is Murdered,tt0071577\n-W93ly0pQGI,1974.0,8,9,2011,The Great Gatsby,Loved You Both,tt0071577\nDrr7dxV6I64,1990.0,11,11,2011,The Grifters,A Mother's Love,tt0099703\ndhRABm5GgHc,1974.0,3,9,2011,The Great Gatsby,How Tom and Myrtle Met,tt0071577\nQxL3vcwOL8E,1974.0,5,9,2011,The Great Gatsby,Meyer Wolfsheim,tt0071577\nvgZ-MV0YbMU,1974.0,2,9,2011,The Great Gatsby,Tom and Myrtle,tt0071577\nsdUbhlY-RP8,1990.0,9,11,2011,The Grifters,We Don't Do Partners,tt0099703\nRlwhv7m3CSI,1990.0,8,11,2011,The Grifters,The Long Con,tt0099703\nQauBYsssnl4,1990.0,5,11,2011,The Grifters,Get Off the Grift,tt0099703\njvhap1vcLDw,1990.0,6,11,2011,The Grifters,Bobo's Oranges,tt0099703\nZ96Hz_Hio8k,1990.0,4,11,2011,The Grifters,Play Nice,tt0099703\nFJU-pWka9lY,1990.0,2,11,2011,The Grifters,Myra's Seduction,tt0099703\n6lOPeGgf9C4,1990.0,3,11,2011,The Grifters,You Wanna Be a Grifter?,tt0099703\nAMibptRTFdo,1990.0,1,11,2011,The Grifters,Dime for Every Quarter,tt0099703\nSUu7hWUv7f8,2004.0,7,7,2011,The Manchurian Candidate,Decisions,tt0368008\nuEYm9Zm5zI8,2004.0,2,7,2011,The Manchurian Candidate,A Big Bite of Shaw,tt0368008\nrRaHWuWTtG8,2004.0,6,7,2011,The Manchurian Candidate,Help Me or Shoot Me,tt0368008\n3cDavZFKopc,2004.0,1,7,2011,The Manchurian Candidate,Dreams,tt0368008\nac7D9kcETUg,2004.0,5,7,2011,The Manchurian Candidate,Father and Daughter,tt0368008\nWR_LpHsIp7Q,2004.0,4,7,2011,The Manchurian Candidate,Private Eddie Ingram,tt0368008\nQub35DMB63E,2004.0,3,7,2011,The Manchurian Candidate,Interrogation,tt0368008\nBU6A7rn15oA,2002.0,8,9,2011,The Sum of All Fears,Back Down,tt0164184\nja4l7-L7n6M,2006.0,5,9,2011,World Trade Center,Kids Just Happen,tt0469641\nIeFdeC6ukDY,2006.0,2,9,2011,World Trade Center,Arriving at the Scene,tt0469641\nBziL_wBTw6A,2000.0,3,9,2011,You Can Count on Me,Can I Ask You A Personal Question?,tt0203230\nFhODkuXIda4,2005.0,3,10,2011,Aeon Flux,She Will See You Now,tt0402022\now9U0uWCfDY,2005.0,6,10,2011,Aeon Flux,Found You,tt0402022\n1iFLiN6E1qE,2005.0,1,10,2011,Aeon Flux,Fly Trap,tt0402022\n5zInmil5iT4,2005.0,4,10,2011,Aeon Flux,Jailbreak,tt0402022\nY0p3egpGwAI,2002.0,3,9,2011,The Sum of All Fears,I Like Him,tt0164184\nglMgSCdK1xU,2002.0,9,9,2011,The Sum of All Fears,Keep The Back Channels Open,tt0164184\nXcNYS8j9Qkg,2002.0,2,9,2011,The Sum of All Fears,I Can't Tell You That,tt0164184\n8GPu-oZ4p64,2002.0,1,9,2011,The Sum of All Fears,Everyone Has Opinions,tt0164184\nWzp2rpe06j8,2002.0,5,9,2011,The Sum of All Fears,This Virus Is Airborne,tt0164184\nVDU2I4kxPY8,2006.0,8,9,2011,World Trade Center,Will Gets Out,tt0469641\noG58-Vs838M,2006.0,1,9,2011,World Trade Center,First Attack,tt0469641\nlPCt2BBqR2k,2006.0,3,9,2011,World Trade Center,Collapse,tt0469641\n2CEYOnJqPE4,2006.0,7,9,2011,World Trade Center,Good News,tt0469641\nwEnaRGQc8Ls,2006.0,6,9,2011,World Trade Center,Found,tt0469641\ncagsLW2dKTI,2006.0,9,9,2011,World Trade Center,You Kept Me Alive,tt0469641\neHx-v7Xto7E,2006.0,4,9,2011,World Trade Center,I Can't Believe This Is Happening,tt0469641\nXP71dJlnLJQ,2000.0,1,9,2011,You Can Count on Me,Serving Some Time,tt0203230\nAd4VvlLYJ9o,2000.0,2,9,2011,You Can Count on Me,Meeting Uncle Terry,tt0203230\nQX1qfAa0np8,2000.0,8,9,2011,You Can Count on Me,Your Future at the Bank,tt0203230\ni1ZUVkU_XK4,2000.0,5,9,2011,You Can Count on Me,Rudy Meets His Father,tt0203230\nMPp_UJZTU78,2000.0,9,9,2011,You Can Count on Me,\"Goodbye, Uncle Terry\",tt0203230\nexIGslwFcMI,2000.0,7,9,2011,You Can Count on Me,Terry Leaves,tt0203230\nhc0o1zXNHAg,2000.0,4,9,2011,You Can Count on Me,I F***ed My Boss,tt0203230\nTiHM7F5EUaI,2005.0,5,10,2011,Aeon Flux,Why Do I Feel This Way?,tt0402022\nrwk6Obqrj9M,2005.0,2,10,2011,Aeon Flux,Welcome to Bregna,tt0402022\njgvj0XwxagY,2005.0,10,10,2011,Aeon Flux,Pose and Shoot,tt0402022\nKPz_yW2gjmI,2005.0,8,10,2011,Aeon Flux,Leap of Faith,tt0402022\nJbyemdsSfI0,2005.0,7,10,2011,Aeon Flux,Aeon vs. Sithandra,tt0402022\nZ9m4hRQkVSA,1996.0,2,12,2011,From Dusk Till Dawn,Convenience Store Massacre,tt0116367\nfEEj6d3GTOU,1994.0,6,12,2011,Clerks,I Don't Watch Movies,tt0109445\nYTkSNIvrueA,2000.0,12,12,2011,Dracula 2000,This is How You Die,tt0219653\nWmD1a_N83ZM,1972.0,2,7,2011,Fist of Fury,The Dojo Fight,tt0068767\nUJUWDZ9JUEI,1995.0,6,9,2011,The American President,White House Sleepover,tt0112346\nNBS7J3KHWhQ,2005.0,5,8,2011,War of the Worlds,Not on the Same Page,tt0407304\nvj_NmzJ0mMA,2000.0,11,12,2011,Dracula 2000,Bitch is Faking it,tt0219653\nKS6f1MKpLGM,1986.0,1,3,2011,Ferris Bueller's Day Off,Bueller?,tt0091042\n4tnHIQmcSHY,1995.0,7,9,2011,The American President,House of Flowers,tt0112346\nOORXuVmd9YQ,1995.0,5,9,2011,The American President,Virginia Ham,tt0112346\naIm1ZGm03WA,1995.0,1,9,2011,The American President,Chief Executive of Fantasy Land,tt0112346\n8sUWwozOFww,2003.0,1,12,2011,Duplex,The Animated Housing Adventures of Alex & Nancy,tt0266489\nm3TAK8ty_cg,2002.0,7,10,2011,Pinocchio,Swallowed by a Shark,tt0255477\nDKCGcHQSvHw,1954.0,3,10,2011,Rear Window,Which One of You Killed my Dog?,tt0047396\nxLq2eTiqbww,1994.0,8,11,2011,Heavenly Creatures,Make a Wish,tt0110005\nkzu2Gwn-sPA,2009.0,9,10,2011,Midgets Vs. Mascots,Jail Time,tt1253596\nYtDqlEcfr9w,1986.0,6,10,2011,Star Trek 4: The Voyage Home,Hard Luck Cases,tt0092007\noozQe2Bk2cA,1985.0,9,13,2011,Brewster's Millions,\"10 Million, 10 Million, 10 Million Dollars\",tt0088850\nCbMYk-lCKOw,2000.0,9,12,2011,Dracula 2000,Never F*** With an Antiques Dealer,tt0219653\n1jiv5JxmUww,1998.0,5,11,2011,The Faculty,Eye Sore,tt0133751\nH19uKs99vIw,1986.0,3,3,2011,Ferris Bueller's Day Off,\"Oh, You Know Him?\",tt0091042\nuBB3Cvxq5f8,2000.0,6,12,2011,Dracula 2000,Creature and the Eternal Keeper,tt0219653\nexcK59qpaOA,2000.0,1,12,2011,Dracula 2000,Booby Traps,tt0219653\nWYzUtZMt5A8,2000.0,3,12,2011,Dracula 2000,Massacre on the Plane,tt0219653\nMicQ48AuWhw,2000.0,7,12,2011,Dracula 2000,\"Dignity, Doctor\",tt0219653\ndejp7HK8Owc,2000.0,2,12,2011,Dracula 2000,Resurrection,tt0219653\nAo5TqA-l2cg,2000.0,4,12,2011,Dracula 2000,They Are the Undead,tt0219653\nrOaNhtHWULw,2000.0,5,12,2011,Dracula 2000,All I Want to do is Suck,tt0219653\nY9NVQr1r9nw,2000.0,8,12,2011,Dracula 2000,I Don't Drink Coffee,tt0219653\nqwMmxh3r8YM,2000.0,10,12,2011,Dracula 2000,Judas Iscariot,tt0219653\nKd9_2TRib3k,1978.0,6,8,2011,The Deer Hunter,,tt0077416\nmcUWG23hqvw,1985.0,6,12,2011,Weird Science,Meet Chet,tt0090305\nmHa1zTLrXO8,1986.0,2,3,2011,Ferris Bueller's Day Off,He's a Righteous Dude,tt0091042\ngA8z3Yk3wWc,2005.0,3,10,2011,Kicking & Screaming,New to Coffee,tt0384642\nGrlUWh2ZlHo,1993.0,4,9,2011,Hard Target,Motorcycle Chase,tt0107076\nUkdFtNyvsBM,1993.0,3,10,2011,Farewell My Concubine,Announcing the Engagement,tt0106332\ny-HKigPxUi0,1995.0,2,9,2011,The American President,Billiards and Dating,tt0112346\nSRWyQELLODg,1985.0,7,13,2011,Brewster's Millions,Monty Mails a Rare Stamp,tt0088850\ngmpBzm5RknI,1982.0,6,9,2011,Conan the Barbarian,Resurrection,tt0082198\nPgOO8Z-FoKY,2007.0,5,11,2011,American Gangster,Drive-By Shooting,tt0765429\ndGFrhVeMm6U,1978.0,5,8,2011,The Deer Hunter,Rescued in Vain,tt0077416\nOzpkzjl-oCU,2005.0,5,10,2011,Kicking & Screaming,Kicked Out,tt0384642\n5I-k7fSMhg8,1993.0,2,9,2011,Hard Target,He's All Ears,tt0107076\nbXEglx-or6k,1985.0,10,13,2011,Brewster's Millions,None of the Above,tt0088850\nrxM8oCm4TnM,2005.0,4,10,2011,Kicking & Screaming,Backyard Camping,tt0384642\n9Najox-g4zE,1985.0,8,13,2011,Brewster's Millions,Fender-Bender Payoff,tt0088850\nZ0JXPVm_Ohg,1993.0,1,10,2011,Farewell My Concubine,What Does it Take to Become a Star?,tt0106332\nX8gUgmkzHjs,1993.0,6,10,2011,Farewell My Concubine,Even the Communists Need Opera,tt0106332\nkC44tlr_KsU,1993.0,1,9,2011,Hard Target,Chance Rescues Natasha,tt0107076\nTd8eEM9KDig,1990.0,5,10,2011,The Godfather: Part 3,Helicopter Hit,tt0099674\n-6fuDrAmhNc,1954.0,5,10,2011,Rear Window,Did You Get My Note?,tt0047396\n6bDAYP4kpGk,1985.0,7,12,2011,Weird Science,Wyatt's Panties,tt0090305\nR6Vbxei-TQc,1993.0,8,9,2011,Hard Target,Chance Hurts van Cleef,tt0107076\nc35RsjYzAhY,1985.0,4,13,2011,Brewster's Millions,What a Country!,tt0088850\n-e3HqC2rbQc,1954.0,1,10,2011,Rear Window,When Am I Going to See You Again?,tt0047396\nJsFO0ZY7whQ,1994.0,6,11,2011,Heavenly Creatures,Two Such,tt0110005\nlhQRz_BP1v8,1993.0,9,10,2011,Farewell My Concubine,Duan Xiaolou's Interrogation,tt0106332\nPAHFNiNl9JM,1982.0,5,9,2011,Conan the Barbarian,Crucifixion,tt0082198\nGvZLaCfU4PA,1985.0,8,12,2011,Weird Science,Slush From Above,tt0090305\nk9gcqiIfw8E,1985.0,11,13,2011,Brewster's Millions,Who's Buying the Booze?,tt0088850\nRVFpy5UwsAU,1982.0,7,9,2011,Conan the Barbarian,To Hell With You!,tt0082198\nL_b55QpXdsg,1985.0,2,13,2011,Brewster's Millions,\"Guilty, With A Real Good Excuse\",tt0088850\n7xOOk5w5dDA,1980.0,7,10,2011,Friday the 13th,Fighting Mrs. Voorhees,tt0080761\n-UJ9K8lMxPA,1985.0,3,12,2011,Weird Science,And Gary Created Woman,tt0090305\n8wh62mxbLy8,1994.0,2,11,2011,Heavenly Creatures,Fast Friends,tt0110005\nF3hX-mdx80w,1994.0,10,11,2011,Heavenly Creatures,Against All Obstacles,tt0110005\nBsTrRttExpA,1978.0,3,8,2011,The Deer Hunter,Killing a Deer,tt0077416\nHbYMkY74ikA,1998.0,7,12,2011,Halloween H20: 20 Years Later,The Garbage Disposal,tt0120694\n8COIJaMQGc0,2000.0,4,10,2011,The Taste of Others,Different for Men and Women,tt0216787\ny5RFBLZV-B4,2007.0,1,11,2011,American Gangster,Nobody Owns Me,tt0765429\npMQxW1t8guI,2008.0,1,12,2011,Death Race,Jensen is Framed,tt0452608\nqvFBGYjAXW8,2005.0,2,10,2011,Kicking & Screaming,Hard Knocks,tt0384642\n00pBYZ1yofs,1993.0,5,10,2011,Farewell My Concubine,Riot at the Opera,tt0106332\nYnKV34oNXiw,1995.0,8,9,2011,The American President,People Want Leadership,tt0112346\n1Ez6dw3ywcc,1954.0,7,10,2011,Rear Window,Caught Snooping,tt0047396\nYIYJpbAK6MY,1985.0,12,12,2011,Weird Science,Chet Apologizes,tt0090305\noOZ7KbI0Phw,1994.0,5,11,2011,Heavenly Creatures,Sexual Reprieve,tt0110005\nRe5jTn8Cv4M,1954.0,10,10,2011,Rear Window,Dream Forever in Your Arms,tt0047396\n_b3_-pPzDVk,2002.0,4,12,2011,Equilibrium,Ludwig van Beethoven,tt0238380\nGyJGnNFU5dc,1999.0,2,10,2011,American Beauty,Could He Be Any More Pathetic?,tt0169547\nq3NI5sE3KeY,1995.0,9,9,2011,The American President,Character and American Values,tt0112346\n3GoXAgg7rgM,1998.0,6,12,2011,Halloween H20: 20 Years Later,Something is Wrong,tt0120694\nxQvyGwbVWHk,2009.0,10,10,2011,Midgets Vs. Mascots,Back from the Dead,tt1253596\nRObb2QfBnUs,1980.0,10,10,2011,Friday the 13th,He's Still There,tt0080761\n6QFgsy9R4uc,2001.0,2,11,2011,The Others,The Children's Limbo,tt0230600\nVt0rz5iPuaA,1999.0,1,10,2011,American Beauty,Carolyn's Private Meltdown,tt0169547\n8ZgKfSqsN80,1994.0,11,11,2011,Heavenly Creatures,Murderers,tt0110005\nVyEM6uxoo7o,1994.0,3,11,2011,Heavenly Creatures,The Fourth World,tt0110005\noLnrsZa4EqQ,1993.0,5,9,2011,Hard Target,Rattlesnake Trap,tt0107076\nyO3eVly1GSI,1980.0,1,10,2011,Friday the 13th,I Think We Better Stop,tt0080761\nslGnGr6kHIA,1994.0,9,11,2011,Heavenly Creatures,Running From Orson Welles,tt0110005\n330mxTrSMLI,2000.0,5,10,2011,The Taste of Others,Teasing Castella,tt0216787\nrDXBM22wbrg,-1.0,5,8,2011,Anchorman: The Legend of Ron Burgundy,In a Glass Case of Emotion Scene,tt0357413\natzQpAlaojg,1980.0,6,10,2011,Friday the 13th,\"Kill Her, Mommy\",tt0080761\nl6zm1uCb30w,1986.0,5,10,2011,Star Trek 4: The Voyage Home,Colorful Metaphors,tt0092007\nDBZUhOSY6g0,1990.0,1,10,2011,The Godfather: Part 3,I Dread You,tt0099674\nsf8rDpu1vCk,1986.0,3,10,2011,Star Trek 4: The Voyage Home,Nuclear Wessels,tt0092007\nefNMnSL6Wlg,1998.0,5,12,2011,Halloween H20: 20 Years Later,I'm Not Who You Think I Am,tt0120694\nXYjynyKDAdY,1998.0,1,12,2011,Halloween H20: 20 Years Later,Miss Whittington's End,tt0120694\njyqr-hGGpQg,1978.0,1,8,2011,The Deer Hunter,F*** It!,tt0077416\nPuVXyMNeXOk,1994.0,7,11,2011,Heavenly Creatures,Bloody Fool!,tt0110005\nbBbLZ6m_9MA,1998.0,9,12,2011,Halloween H20: 20 Years Later,Family Reunion,tt0120694\n36FJgdiYYs4,1980.0,9,10,2011,Friday the 13th,Killing Mrs. Voorhees,tt0080761\nhJVXg1AHQTY,1999.0,5,10,2011,American Beauty,Lester Blackmails Brad,tt0169547\nF0-Ke_gCCNg,1994.0,1,11,2011,Heavenly Creatures,Teacher's Pet,tt0110005\ngxAaVqdz_Vk,1979.0,7,9,2011,Star Trek: The Motion Picture,VGER is Voyager 6,tt0079945\nmS-uVaGMOtw,1980.0,8,10,2011,Friday the 13th,Trapped in the Closet,tt0080761\nOio9JPB1GzI,2001.0,10,11,2011,The Others,They're Dead,tt0230600\nv2pWzqZqTyk,2005.0,9,10,2011,Kicking & Screaming,Making Up With Ditka,tt0384642\nkk2HQ0hCGTE,1980.0,5,10,2011,Friday the 13th,His Name Was Jason,tt0080761\n09idDzvkxZ0,1980.0,4,10,2011,Friday the 13th,They're All Dead,tt0080761\nMvs2nUuXWLo,1980.0,2,10,2011,Friday the 13th,Don't Smoke in Bed,tt0080761\n5DJehPkkRSQ,2009.0,2,10,2011,Midgets Vs. Mascots,Auditions,tt1253596\nG3xSISRjDR4,2005.0,1,10,2011,Kicking & Screaming,Ditka,tt0384642\nHBxcalnSzIk,1986.0,10,10,2011,Star Trek 4: The Voyage Home,Not In His Nature,tt0092007\nf9_akBxA4mU,1993.0,6,9,2011,The Firm,Tricking a Federal Agent,tt0106918\nTVBx0r_xPCo,2005.0,8,10,2011,Kicking & Screaming,Tigers Win!,tt0384642\nPoS1eAVNXWU,1986.0,4,10,2011,Star Trek 4: The Voyage Home,Swimming with the Whales,tt0092007\n_s4J6vN1t9Q,2007.0,8,11,2011,American Gangster,Heroin House Raid,tt0765429\nE16S5BAkzQ8,1980.0,3,10,2011,Friday the 13th,Must Be My Imagination,tt0080761\ncXCMz340CRg,2007.0,2,11,2011,American Gangster,Somebody Or Nobody,tt0765429\n94AnEUa_z8U,1998.0,10,12,2011,Halloween H20: 20 Years Later,Chase Through the Halls,tt0120694\nnIGy0Jw96PY,2001.0,9,11,2011,The Others,Where Are the Curtains?,tt0230600\n_LvUmxUqPTo,2001.0,7,11,2011,The Others,I Am Your Daughter,tt0230600\nt4U-Q2nd6u4,1985.0,1,12,2011,Weird Science,Check Us Out!,tt0090305\naCW9NsrV6VM,1978.0,4,8,2011,The Deer Hunter,Russian Roulette,tt0077416\nNwl4xV6wuRI,1978.0,8,8,2011,God Bless America,The Deer Hunter,tt1912398\nqrCKDRFj-A8,2001.0,5,11,2011,The Others,Book of the Dead,tt0230600\nVlmanKoPLyo,1978.0,2,8,2011,The Deer Hunter,This Is This,tt0077416\nZtuLM666bLo,1990.0,9,10,2011,The Godfather: Part 3,I Always Loved You,tt0099674\nM-cO3MLYOy8,1995.0,4,9,2011,The American President,Sending Some Flowers,tt0112346\n-meMCDrOmpo,2009.0,7,10,2011,Midgets Vs. Mascots,Gator Wrestling,tt1253596\nhcWo8KXmhLs,1995.0,3,9,2011,The American President,First Date,tt0112346\nfpxPstb2DAU,2005.0,6,10,2011,Kicking & Screaming,Crazed Coach,tt0384642\naAF6B3USip0,2005.0,7,10,2011,Kicking & Screaming,Talking Smack,tt0384642\nOuGSXflBoWU,1978.0,7,8,2011,The Deer Hunter,One Last Shot,tt0077416\nIKiSPUc2Jck,-1.0,6,8,2011,Anchorman,\"60% of the Time, It Works Every Time Scene\",tt0357413\nc5WfxwnLlLU,1990.0,3,9,2011,The Hunt for Red October,Turbulence,tt0099810\nqCpDKjDMo6Y,2005.0,10,10,2011,Kicking & Screaming,We've Got Balls,tt0384642\nLe9uGkbtxHk,1998.0,2,7,2011,Saving Private Ryan,Sniper in the Tower,tt0120815\nC3hCT5jijpw,1993.0,3,9,2011,Hard Target,Missed the Party,tt0107076\nLk5QIK3_Cjo,1993.0,6,9,2011,Hard Target,Uncle Douvee,tt0107076\nltO8_FJbRUw,1982.0,3,9,2011,Conan the Barbarian,Crazy Witch Sex,tt0082198\nIAqy_BtCqM4,1993.0,7,9,2011,Hard Target,Hey Pigeon,tt0107076\nv7FL42Fon3g,1954.0,4,10,2011,Rear Window,A Note to Thorwald,tt0047396\npu2ArBfwZcA,1993.0,9,9,2011,Hard Target,Hunting Season Is Over,tt0107076\nQQvcg1NNqWQ,1997.0,4,9,2011,Mimic,A Bug Problem,tt0119675\nc5Re3lGYUA0,1998.0,4,12,2011,Halloween H20: 20 Years Later,Sneaking Into Campus,tt0120694\nzxeNP1dHgXQ,2001.0,8,11,2011,The Others,You Can't Go,tt0230600\nt8eNpwLPwog,1954.0,8,10,2011,Rear Window,Up the Stairs,tt0047396\nEFollUtH108,1954.0,6,10,2011,Rear Window,Sneaking into the Apartment,tt0047396\nB8dldLG_ZhI,1985.0,2,12,2011,Weird Science,Making a Girl,tt0090305\noowcsynjIwc,1954.0,9,10,2011,Rear Window,Out the Window,tt0047396\ng9GBuciv20A,1985.0,5,12,2011,Weird Science,Gary's Blues,tt0090305\nDaz5Pc5rXPA,1982.0,1,9,2011,Conan the Barbarian,A Village Massacre,tt0082198\nw5pn48wzBuw,1954.0,2,10,2011,Rear Window,A Closer Look at the Salesman,tt0047396\nIfggccwQrcY,1985.0,11,12,2011,Weird Science,Lisa Transforms Chet,tt0090305\nfERCwTTOU3M,1982.0,4,9,2011,Conan the Barbarian,Knocking Out a Camel,tt0082198\nMNV86VFd4Zw,1982.0,8,9,2011,Conan the Barbarian,Battle On the Ruins,tt0082198\n_42qmKBSC3g,1982.0,2,9,2011,Conan the Barbarian,Conan the Gladiator,tt0082198\nbj2JORdzs1g,1982.0,9,9,2011,Conan the Barbarian,Beheading Thulsa Doom,tt0082198\nFosFEzsLKiI,1985.0,3,13,2011,Brewster's Millions,Thirty Million in Thirty Days,tt0088850\nA-KN6ZbpIDE,1985.0,1,13,2011,Brewster's Millions,Nude Massage,tt0088850\n9y-f9F8Hl0I,1985.0,9,12,2011,Weird Science,\"You're Dead Meat, Pilgrim\",tt0090305\nnip7ztfMngk,1985.0,4,12,2011,Weird Science,Showering Is Real Fun,tt0090305\nlFHKj8M1maI,2006.0,4,10,2011,Babel,Chieko's High,tt0449467\nVqLghmct2i4,2000.0,1,10,2011,The Taste of Others,You Don't Remember Me?,tt0216787\nfgPFXXhzBCE,1985.0,10,12,2011,Weird Science,Chet Wants Answers ASAFP,tt0090305\nlHqpwH6rqOY,2006.0,6,10,2011,Babel,Border Getaway,tt0449467\nVw_QOIebFpw,1985.0,5,13,2011,Brewster's Millions,Lowlife No More,tt0088850\n22VmzX35pvM,1999.0,9,10,2011,American Beauty,The Colonel's Kiss,tt0169547\njLPtdXAVuwo,1985.0,6,13,2011,Brewster's Millions,\"Morty King, King of the Mimics\",tt0088850\nDVPGcQ1Ljgc,2001.0,3,11,2011,The Others,A Visit from Victor,tt0230600\nwPJE21U518M,1999.0,4,10,2011,American Beauty,\"I'm Very, Very Dirty\",tt0169547\n5P7bIH5iC7M,1999.0,8,10,2011,American Beauty,It's Just a Couch!,tt0169547\nFFJo3KhcZw4,2007.0,4,11,2011,American Gangster,Diluting the Brand,tt0765429\nzd0FCDiFapo,2001.0,6,11,2011,The Others,Lost in the Fog,tt0230600\nNpOTp73r0Cw,2006.0,7,10,2011,Babel,\"You Leave, I'll Kill You\",tt0449467\nkytDzjuBGJI,2005.0,4,8,2011,War of the Worlds,Probing the Basement,tt0407304\nqw0kuEG7NR8,1999.0,7,10,2011,American Beauty,I Rule!,tt0169547\nm3QyTiNVwWA,2007.0,9,11,2011,American Gangster,The End For Frank,tt0765429\ne7X01_j_oDA,1982.0,2,8,2011,Star Trek: The Wrath of Khan,\"Khan, You Bloodsucker\",tt0084726\nH38XiM2EOnQ,2007.0,10,11,2011,American Gangster,The Right Thing To Do,tt0765429\nDtou1hnP_Zo,2006.0,5,10,2011,Babel,Open Fire,tt0449467\nc1gSDo9bO2g,1999.0,3,10,2011,American Beauty,Spectacular,tt0169547\ntB0th8vNLxo,1999.0,6,10,2011,American Beauty,The Dancing Bag,tt0169547\nJZbJcEKVBqk,1985.0,12,13,2011,Brewster's Millions,Spike Talks Trash,tt0088850\nRJsnx3Fqk6w,2006.0,2,10,2011,Babel,Sewing Up the Wound,tt0449467\n3LYT1O8DuR0,2000.0,6,10,2011,The Taste of Others,Dealing Drugs,tt0216787\np29GuFPbzsg,1985.0,13,13,2011,Brewster's Millions,Brewster Becomes a Millionaire,tt0088850\n2V5LfF6uxT0,2006.0,10,10,2011,Babel,Deportation,tt0449467\npK_ffLZIOb4,1993.0,2,10,2011,Farewell My Concubine,Juxian Jumps,tt0106332\n0m3w2NeEPY4,2006.0,8,10,2011,Babel,Surrender,tt0449467\nj4ujHOSbQB0,2007.0,7,11,2011,American Gangster,Don't Lie to Your Mother,tt0765429\nYgcSs9Qt2vU,2001.0,1,11,2011,The Others,Mummy Went Mad,tt0230600\nJu4vhscaYII,1990.0,3,10,2011,The Godfather: Part 3,\"Two Assassins, One Gun\",tt0099674\nv8OMHtUg9sU,2007.0,3,11,2011,American Gangster,Fed Up,tt0765429\n-qmkhAXmBNc,2007.0,6,11,2011,American Gangster,Above the Mafia,tt0765429\nTeGaTTIBv1Y,2007.0,11,11,2011,American Gangster,Progress,tt0765429\ndYQpJJySnwU,2000.0,10,10,2011,The Taste of Others,You're Being Taken Advantage Of,tt0216787\nAaHqtd4dUWs,2000.0,3,10,2011,The Taste of Others,Depressed,tt0216787\nk4-CQXg0Z88,1997.0,7,9,2011,Mimic,Bug Food,tt0119675\nLDsw5Fx76jI,2000.0,7,10,2011,The Taste of Others,Party Crashing,tt0216787\nGKT1gsoVouo,2000.0,9,10,2011,The Taste of Others,I Made a Fool of Myself,tt0216787\ny-79cpg2VC8,2000.0,2,10,2011,The Taste of Others,Counting Sex Partners,tt0216787\nlYa7NsegwsY,1993.0,10,10,2011,Farewell My Concubine,Final Performance,tt0106332\nvnHkr84as-4,1993.0,7,10,2011,Farewell My Concubine,Down with the Counter-Revolutionary!,tt0106332\n-_XIgfmDa1s,1990.0,2,10,2011,The Godfather: Part 3,All Bastards Are Liars,tt0099674\nN5EYRBPqrgs,1990.0,8,10,2011,The Godfather: Part 3,Michael Apologizes to Kay,tt0099674\nZWly042cYCo,1998.0,10,11,2011,The Faculty,Deadly Distrust,tt0133751\niN4yYrCgb0o,2006.0,9,10,2011,Babel,Those Kids Will Die,tt0449467\nU6M-YT5kkio,1990.0,4,10,2011,The Godfather: Part 3,Joey Zasa Gets No Respect,tt0099674\nEZFLsjeeVmo,1993.0,8,10,2011,Farewell My Concubine,Modern Opera,tt0106332\nJVjlqTOPdls,1997.0,8,9,2011,Mimic,Leonard's Last Stand,tt0119675\nf_lRMCPHbuY,1993.0,3,9,2011,The Firm,No Lawyer's Ever Left the Firm Alive,tt0106918\n7tNEvCdVtk0,1993.0,5,9,2011,The Firm,Blackmail,tt0106918\n4unk6siO-tI,1990.0,4,9,2011,The Hunt for Red October,Escaping Torpedoes,tt0099810\n_c_ufaxeSTs,-1.0,3,8,2011,Anchorman: The Legend of Ron Burgundy,Jazz Flute Scene,tt0357413\n5dVpXj--7kY,2009.0,8,10,2011,Midgets Vs. Mascots,Assaulting Scottie Pippen,tt1253596\nQt1cF93u-6A,1986.0,2,10,2011,Star Trek 4: The Voyage Home,Saving the World,tt0092007\nRn2-wALgmMk,1979.0,2,9,2011,Star Trek: The Motion Picture,Kirk Needs Bones,tt0079945\nvE_xjjCJWng,1998.0,8,11,2011,The Faculty,Head Case,tt0133751\n2ikHoBKVlCA,1979.0,8,9,2011,Star Trek: The Motion Picture,VGER's Journey,tt0079945\nPUvS_htXD34,1990.0,1,9,2011,The Hunt for Red October,Another Possibility,tt0099810\nBGnZognK3Oc,1990.0,2,9,2011,The Hunt for Red October,Ryan's Plan,tt0099810\nrNoHdt36C7o,1979.0,1,9,2011,Star Trek: The Motion Picture,Kirk Takes Over,tt0079945\nB2qVxDAonD8,1979.0,4,9,2011,Star Trek: The Motion Picture,Attempting to Communicate,tt0079945\nzR7Zj6ZFyUY,1979.0,3,9,2011,Star Trek: The Motion Picture,Spock Reports for Duty,tt0079945\nJzH1Z17c4yc,1993.0,1,9,2011,The Firm,No Associate Has Ever Failed the Bar Exam,tt0106918\nLkqiDu1BQXY,1986.0,7,10,2011,Star Trek 4: The Voyage Home,The Miracle Worker,tt0092007\nDWjJlErBPX4,1990.0,6,9,2011,The Hunt for Red October,You Speak Russian,tt0099810\n5kaBIMuW74Q,1990.0,8,9,2011,The Hunt for Red October,You've Killed Us,tt0099810\nP8JW75Lv25k,1990.0,5,9,2011,The Hunt for Red October,Living in America,tt0099810\nPWU9g1Fce3U,1990.0,7,9,2011,The Hunt for Red October,Wrong Conclusions,tt0099810\nHCqR0_a6_so,1990.0,9,9,2011,The Hunt for Red October,A Little Revolution,tt0099810\nOofMJ6cwzLM,1982.0,1,8,2011,Star Trek: The Wrath of Khan,Khan's Worms,tt0084726\n04s96zDt1RE,1993.0,7,9,2011,The Firm,Escape from the Firm,tt0106918\niPQfwmfRq2s,1982.0,4,8,2011,Star Trek: The Wrath of Khan,Kirk Beats Khan,tt0084726\nWlhyiskKER8,1982.0,3,8,2011,Star Trek: The Wrath of Khan,Old and Worn Out,tt0084726\nxrUEjpHbUMM,1982.0,5,8,2011,Star Trek: The Wrath of Khan,Khan's Last Breath,tt0084726\n9_8nY_LQL3w,1982.0,7,8,2011,Star Trek: The Wrath of Khan,Spock's Funeral,tt0084726\nKqpcmQhnl48,1982.0,6,8,2011,Star Trek: The Wrath of Khan,Spock Dies,tt0084726\naeneVqyoBTo,1979.0,5,9,2011,Star Trek: The Motion Picture,The Light Probe,tt0079945\n5Ei_2wS0U-w,1979.0,6,9,2011,Star Trek: The Motion Picture,VGER is a Child,tt0079945\nCR08UnlmGKc,1982.0,8,8,2011,Star Trek: The Wrath of Khan,Father & Son,tt0084726\n1tYwDHxg60g,1993.0,2,9,2011,The Firm,Dead Lawyers,tt0106918\nBPNUN_aCFAc,1979.0,9,9,2011,Star Trek: The Motion Picture,Thattaway,tt0079945\n_QE6prpcauw,1993.0,4,9,2011,The Firm,\"If We Run, They'd Find Us\",tt0106918\n0-0MyjmphsA,1990.0,10,10,2011,The Godfather: Part 3,Mary is Hit,tt0099674\nWu7xiJ_HD6c,-1.0,8,8,2011,Anchorman: The Legend of Ron Burgundy,The News Team Battle Scene,tt0357413\nD0vCzkK_AJ0,1993.0,8,9,2011,The Firm,The Chase.,tt0106918\nzCB7RR3RaYg,1993.0,9,9,2011,The Firm,Outwitting the Hit,tt0106918\nMhWCHfeHWJE,2006.0,1,10,2011,Babel,Shot in Morocco,tt0449467\nrYGWG2_PB_Q,2005.0,1,8,2011,War of the Worlds,The War Begins,tt0407304\nqN-_cZNDy0w,-1.0,2,8,2011,Anchorman: The Legend of Ron Burgundy,I'm Going to Punch You in the Ovary Scene,tt0357413\nlscdNc0qTnI,1999.0,10,10,2011,American Beauty,Gratitude for a Stupid Little Life,tt0169547\n_kopi8gT9KE,2005.0,6,8,2011,War of the Worlds,Abduction,tt0407304\nX7rfWPbEufo,2005.0,3,8,2011,War of the Worlds,Fight on the Hill,tt0407304\ntMw_xOuU9DA,2005.0,2,8,2011,War of the Worlds,Ferry Disaster,tt0407304\npCHHv7ojfiw,2005.0,8,8,2011,War of the Worlds,No Shield,tt0407304\nS2fxN2JZ81A,2005.0,7,8,2011,War of the Worlds,Taking Down a Tripod,tt0407304\nWzCgOrQn0GM,1997.0,4,8,2011,Amistad,The Verdict,tt0118607\niMliaXlKxow,1997.0,2,8,2011,Amistad,The Middle Passage,tt0118607\nena0xfW0_Lo,1997.0,1,8,2011,Amistad,Mutiny Aboard La,tt0118607\nPb3txlrBZaE,1997.0,6,8,2011,Amistad,The Natural State of Mankind,tt0118607\n3rpHa7RLvc8,1997.0,7,8,2011,Amistad,The Declaration of Independence,tt0118607\ny8Jkls3xgvg,1997.0,5,8,2011,Amistad,A Call to the Ancestors,tt0118607\nEYu1SK9XyP8,1997.0,2,9,2011,Mimic,Subway Slaying,tt0119675\nEe8NvgURCZs,1997.0,3,8,2011,Amistad,Give Us Free!,tt0118607\nhKqQSFaX4NQ,1998.0,3,12,2011,Halloween H20: 20 Years Later,Maternal Advice,tt0120694\nB_YYf8Z4b3Q,1997.0,8,8,2011,Amistad,The Last Battle of the American Revolution,tt0118607\nXHHg1C8LGnk,1993.0,4,10,2011,Farewell My Concubine,Disbanding the Troupe,tt0106332\ncDfQo1ANeLM,-1.0,4,8,2011,Anchorman: The Legend of Ron Burgundy,This is How I Roll Scene,tt0357413\nZP0mhGmUbr0,-1.0,1,8,2011,Anchorman: The Legend of Ron Burgundy,Insulting the Evening News Team Scene,tt0357413\n1Zro4CfP9wY,-1.0,7,8,2011,Anchorman: The Legend of Ron Burgundy,Wanna Dance? Scene,tt0357413\nLvAIBDGIYE0,1998.0,3,7,2011,Saving Private Ryan,That's My Mission,tt0120815\nOqSg7WO4tT4,1998.0,1,7,2011,Saving Private Ryan,Omaha Beach,tt0120815\nu3_3EUKbY00,1998.0,4,7,2011,Saving Private Ryan,It Doesn't Make Any Sense,tt0120815\nwgHRj2-vvs8,1998.0,5,7,2011,Saving Private Ryan,Private Jackson,tt0120815\nQnX_mQ9apu8,1998.0,7,7,2011,Saving Private Ryan,Capt. Miller's Last Stand,tt0120815\nuW9Q1cm_Tnw,1998.0,6,7,2011,Saving Private Ryan,Upham Fails Mellish,tt0120815\nY_WiVEBST6I,2001.0,11,11,2011,The Others,The Seance,tt0230600\ns66zFW3nogU,2000.0,6,8,2011,Gladiator,Maximus the Merciful,tt0172495\nX1UmHfWCw-4,2000.0,5,8,2011,Gladiator,My Name is Maximus,tt0172495\nBb5tMhOeg5I,2000.0,8,8,2011,Gladiator,Maximus Kills Commodus,tt0172495\nFI1ylg4GKv8,2000.0,4,8,2011,Gladiator,Are You Not Entertained?,tt0172495\nr2jbK6dGLGc,2000.0,2,8,2011,Gladiator,Commodus Murders His Father,tt0172495\nk71x-TmobGo,2000.0,3,8,2011,Gladiator,Maximus Escapes Execution,tt0172495\nspvSw-wR6qg,2000.0,1,8,2011,Gladiator,Maximus Leads His Troops to Victory,tt0172495\nZrF5rZ3FTbg,2010.0,1,-1,2011,The Fighter,MTV Girl,tt0964517\nxfoGEGTl-sg,2010.0,2,-1,2011,The Fighter,You Can't Be Me,tt0964517\nwWswgKOqkZM,2010.0,4,-1,2011,The Fighter,Look At You,tt0964517\nivmjSqQ_7aw,2010.0,6,-1,2011,The Fighter,Not Hiding,tt0964517\n3uUlGkrzPWo,2010.0,3,-1,2011,The Fighter,I'm the One Fighting,tt0964517\n2hs_qcU6410,1994.0,4,11,2011,Heavenly Creatures,Pen Pals,tt0110005\nHEKPhSJ0PjA,2010.0,5,-1,2011,The Fighter,Mickey's Corner,tt0964517\nDoJaIZ2Sajk,2009.0,1,10,2011,Midgets Vs. Mascots,Last Will and Testament of Big Red Bush,tt1253596\n51y64KtGGRI,2009.0,4,10,2011,Midgets Vs. Mascots,Milk Chug,tt1253596\nsSx4IDKK6sg,2009.0,3,10,2011,Midgets Vs. Mascots,Rodeo Poker,tt1253596\nYOrZHY_-ap8,2009.0,6,10,2011,Midgets Vs. Mascots,Door-to-Door Sales,tt1253596\nWiMw3ttzVMs,1997.0,1,9,2011,Mimic,Entomology 101,tt0119675\n1LvSSeZfWmI,2009.0,5,10,2011,Midgets Vs. Mascots,Amateur Porn,tt1253596\nSaWCkQzKopo,1997.0,5,9,2011,Mimic,No Escape,tt0119675\nJjv5GQtJTEw,1997.0,9,9,2011,Mimic,Lighting a Spark,tt0119675\n134ua7rOS4g,1997.0,3,9,2011,Mimic,Some Weird Sh** Here,tt0119675\nIHbIf3K5pdc,1997.0,6,9,2011,Mimic,These Things Can Imitate Us,tt0119675\nmFxrm9Q6E4M,2007.0,6,11,2011,The Diving Bell and the Butterfly,The Butterfly Escapes,tt0401383\neP7cLId4ocM,1998.0,6,11,2011,The Faculty,Drug Test,tt0133751\ni77quMJ5ihE,1998.0,11,11,2011,The Faculty,Deposing the Queen,tt0133751\nH5woQdVbaC0,1998.0,4,11,2011,The Faculty,Science and Fiction,tt0133751\nl_OJuYjvKrM,2007.0,2,11,2011,The Diving Bell and the Butterfly,Sewing Up the Eye,tt0401383\nLekZbZ0ksyA,1998.0,9,11,2011,The Faculty,The Queen Revealed,tt0133751\nPUH2nHjBYsA,2007.0,8,11,2011,The Diving Bell and the Butterfly,Motionless Travel Notes,tt0401383\nl6StIaMaRsg,1998.0,2,11,2011,The Faculty,They Want Everyone!,tt0133751\nNOZMlcY9MC8,2007.0,11,11,2011,The Diving Bell and the Butterfly,A Phone Call from Father,tt0401383\nmtuuOV4FtKY,1998.0,7,11,2011,The Faculty,Sniff This!,tt0133751\nayjftbSDeVA,2004.0,9,12,2011,Ella Enchanted,Kiss Me,tt0327679\nFEAmUOrMd3o,1998.0,3,11,2011,The Faculty,Hostile Takeover,tt0133751\nBNWvtfCdBcA,1998.0,1,11,2011,The Faculty,A New Species,tt0133751\nrD3kI-nioGA,2004.0,4,12,2011,Ella Enchanted,Freeze!,tt0327679\n8BOU3JhcXIU,2002.0,5,10,2011,Pinocchio,Cricket in Playland,tt0255477\nQHYccOE4h4c,2003.0,12,12,2011,Duplex,Gunshot to Mr. Peabody,tt0266489\n_6up-uz7Q9k,2007.0,1,11,2011,The Diving Bell and the Butterfly,Am I in Heaven?,tt0401383\nY2DV9PUx15s,2007.0,4,11,2011,The Diving Bell and the Butterfly,Near Misses,tt0401383\nvjkkbQy9fLA,2007.0,3,11,2011,The Diving Bell and the Butterfly,Good for a Wheelchair,tt0401383\ndf0j-m8xV58,2007.0,9,11,2011,The Diving Bell and the Butterfly,A Father's Approval,tt0401383\nzNkZr44VLFY,2007.0,7,11,2011,The Diving Bell and the Butterfly,I Can Imagine Anything I Want,tt0401383\nXwJGqNQapO8,2007.0,5,11,2011,The Diving Bell and the Butterfly,Women Aren't Complicated,tt0401383\nIeqXtCC8Osk,2007.0,10,11,2011,The Diving Bell and the Butterfly,It Was Only a Dream!,tt0401383\n8ReMLVUwKmA,2004.0,12,12,2011,Ella Enchanted,Don't Go Breaking My Heart,tt0327679\nSN8hW7AeoQI,2004.0,8,12,2011,Ella Enchanted,Somebody to Love,tt0327679\nx7dGXb7jrHw,2004.0,11,12,2011,Ella Enchanted,Marry Me,tt0327679\n9AQGhFGi1dM,2004.0,2,12,2011,Ella Enchanted,Hold Your Tongue,tt0327679\nmNtK6UvRjO8,2004.0,5,12,2011,Ella Enchanted,Benny the Boyfriend Book,tt0327679\nl24yOwR9saU,2004.0,10,12,2011,Ella Enchanted,I'm Free,tt0327679\ngPadm1Ql1Is,2004.0,3,12,2011,Ella Enchanted,Meeting the Prince,tt0327679\ncw1dB9PxWzM,2004.0,1,12,2011,Ella Enchanted,Gift of Obedience,tt0327679\nq0yFqlPrLyE,2004.0,7,12,2011,Ella Enchanted,The Elf Singing Village,tt0327679\nIBPc_SnNPzo,2004.0,6,12,2011,Ella Enchanted,Kick Some Butt,tt0327679\nH2UF-eI_dj8,2003.0,4,12,2011,Duplex,Bath Time,tt0266489\nJ_VTn3SAV20,2003.0,9,12,2011,Duplex,A Clogged Sink,tt0266489\nvR_L-yH_3jY,2003.0,6,12,2011,Duplex,A Raisin or a Mouse Dropping,tt0266489\nBHWGn9p_p4s,2002.0,2,10,2011,Pinocchio,Becomes Rich,tt0255477\nb0xYU8jHaH4,2002.0,1,10,2011,Pinocchio,I'll Call You,tt0255477\nos1gnR5k3S8,2002.0,3,10,2011,Pinocchio,Take Your Medicine,tt0255477\n28JhyDR8-5M,2002.0,4,10,2011,Pinocchio,Growing Nose,tt0255477\nN_20oqY8E2c,2002.0,6,10,2011,Pinocchio,Turning Into Donkeys,tt0255477\nJ8pmj6RkiQk,2002.0,9,10,2011,Pinocchio,Goodbye,tt0255477\nFRC8Nn6PREI,1972.0,5,7,2011,Fist of Fury,Raging Fury,tt0068767\nHvFU1MFkLm4,1972.0,4,7,2011,Fist of Fury,Yoshida Becomes a Scabbard,tt0068767\nUCd_bEZa6k4,2002.0,8,10,2011,Pinocchio,Father and Son Reunite,tt0255477\n0hau_p3N-MI,2002.0,10,10,2011,Pinocchio,A Real Boy,tt0255477\n8t7NUEm0mMM,1972.0,6,7,2011,Fist of Fury,Avenging the Master,tt0068767\nIMjO-38v2cs,1972.0,3,7,2011,Fist of Fury,No Dogs Allowed,tt0068767\nFtZb1Kbh2qY,1972.0,1,7,2011,Fist of Fury,Sick Men of Asia,tt0068767\nPH8Gh-5lQNE,1972.0,7,7,2011,Fist of Fury,An Act of Defiance,tt0068767\nrnnt0KYtwFc,2003.0,2,12,2011,Duplex,Little Dick the Parrot,tt0266489\n4uuvZl95Cyc,2003.0,7,12,2011,Duplex,Choking on Chocolate,tt0266489\n-cBGthOZ-Ls,2003.0,3,12,2011,Duplex,Sex Interrupted,tt0266489\nRVbEs5DBPlY,2003.0,5,12,2011,Duplex,The Clapper,tt0266489\nsdb8G26294A,2003.0,8,12,2011,Duplex,Murdering the Old Hag,tt0266489\nrrejfviNpqE,2003.0,11,12,2011,Duplex,Riverdance,tt0266489\nEBkacU72QM4,2003.0,10,12,2011,Duplex,Booby Trap Backfire,tt0266489\nqq38b_oRYr0,1988.0,4,10,2011,Cinema Paradiso,Movies in the Square,tt0095765\nrrDG0rQCc28,1988.0,10,10,2011,Cinema Paradiso,The Best Parts,tt0095765\nlRd5iD73g2s,2005.0,9,12,2011,Tsotsi,Butcher's Final Job,tt0468565\nGPCN0TioP4A,2005.0,11,12,2011,Tsotsi,Give Back the Baby,tt0468565\nJELOhEjLgmU,2005.0,7,12,2011,Tsotsi,'s Old Home,tt0468565\nr99wnIibUQY,1988.0,9,10,2011,Cinema Paradiso,Life Isn't Like in the Movies,tt0095765\nxr3TcE009HY,1988.0,1,10,2011,Cinema Paradiso,Censoring the Kisses,tt0095765\nmE53H-ZbD7c,1988.0,3,10,2011,Cinema Paradiso,Milk Money,tt0095765\nl1GXJBIkb74,1988.0,5,10,2011,Cinema Paradiso,The Fire,tt0095765\nmDXU3KxBpCM,1988.0,7,10,2011,Cinema Paradiso,Waiting Outside Her Window,tt0095765\ncAEth6FATZk,1988.0,2,10,2011,Cinema Paradiso,Double Feature,tt0095765\nPlO7gaalX68,1988.0,8,10,2011,Cinema Paradiso,Kissing in the Rain,tt0095765\ndJOMfmVs9Ag,1988.0,6,10,2011,Cinema Paradiso,Knowing the Movie by Heart,tt0095765\nx5f6nNMdbgU,2005.0,3,12,2011,Tsotsi,An Unexpected Passenger,tt0468565\nt4k-USM30aU,2005.0,1,12,2011,Tsotsi,The Train Robbery,tt0468565\nAs5-06N6Rko,2005.0,6,12,2011,Tsotsi,'s Past,tt0468565\nzZB1N4IMjlA,2005.0,2,12,2011,Tsotsi,Boston's Blood,tt0468565\ndMhT03nH_HA,2005.0,12,12,2011,Tsotsi,Surrender,tt0468565\nnfJqMoCXVho,2005.0,10,12,2011,Tsotsi,We're Finished,tt0468565\n-FyVSeNTqJM,2005.0,4,12,2011,Tsotsi,The Sun on My Hands,tt0468565\n3F1uAggQmYI,2005.0,5,12,2011,Tsotsi,A Mother's Love,tt0468565\nGgYOGHU_IOY,2005.0,8,12,2011,Tsotsi,He Can Stay at My Place,tt0468565\na5WKH6TNlDw,2000.0,8,10,2011,The Taste of Others,A Love Poem,tt0216787\nqUcMohewjvI,2000.0,7,8,2011,Gladiator,Busy Little Bees,tt0172495\nHpISLkb5L5E,2000.0,2,9,2011,Almost Famous,Lester Bangs,tt0181875\nfgMlyvq2oNo,2000.0,1,9,2011,Almost Famous,Drugs & Promiscuous Sex,tt0181875\nv7b0_Z9dzoM,2002.0,9,9,2011,Road to Perdition,Give Me the Gun,tt0257044\nmCqrIptSd9k,2009.0,9,10,2011,Direct Contact,Bazooka Time,tt1182609\nuPzTQvSPsqY,2009.0,8,10,2011,Direct Contact,Running the Gauntlet,tt1182609\nx2DospZTmUg,2009.0,7,10,2011,Direct Contact,Get Some!,tt1182609\nGEp_uGRMbFM,2009.0,6,10,2011,Direct Contact,One Man Army,tt1182609\neCR4DIi8SzU,2009.0,3,10,2011,Direct Contact,Public Square Chase,tt1182609\nD15UY1FXJpI,2009.0,4,10,2011,Direct Contact,Restaurant Rampage,tt1182609\nkBifgLJF5og,2009.0,2,10,2011,Direct Contact,The Gun Dealer,tt1182609\nQAxmwbQ_7sI,2009.0,10,10,2011,Direct Contact,You'll Never Live Long Enough,tt1182609\no504Z9dWRqs,2009.0,5,10,2011,Direct Contact,Show Me The Money,tt1182609\nmvc_bbaLhSg,2009.0,1,10,2011,Direct Contact,Kafeteria Kick-Ass,tt1182609\n7LhZupa1Bng,2007.0,7,9,2011,Paranormal Activity,How Did She Die?,tt1179904\no5l0Bw2jMO8,2007.0,9,9,2011,Paranormal Activity,Paranormal Ending,tt1179904\nuvgBCv4v71s,2007.0,8,9,2011,Paranormal Activity,Dragged Out of Bed,tt1179904\n4jcflB38DNo,2007.0,5,9,2011,Paranormal Activity,We Need Your Help,tt1179904\n3bgPH3rOWVk,2007.0,4,9,2011,Paranormal Activity,I Feel it Breathing on Me,tt1179904\nhV2om9YBADI,2003.0,6,9,2011,Old School,A Waitresses' Panties,tt0302886\nBogko_zvcaY,2007.0,6,9,2011,Paranormal Activity,The Sheets Move,tt1179904\n4Ky2p76AKSs,2007.0,3,9,2011,Paranormal Activity,Slamming the Door,tt1179904\nS1s9cXYpxNo,2007.0,2,9,2011,Paranormal Activity,Powder Footsteps,tt1179904\nXRz0pSQXTQ4,2003.0,4,9,2011,Old School,The Morning After,tt0302886\nva6nRaZ9eRg,2003.0,2,9,2011,Old School,Earmuff It For Me,tt0302886\n_yYDzLUH1NE,2003.0,9,9,2011,Old School,That's the Way You Debate,tt0302886\nsFW-yxe13lo,2003.0,8,9,2011,Old School,Tranquilizer to the Jugular,tt0302886\njJMXxv-hYPo,2003.0,7,9,2011,Old School,The Cinder Block Test,tt0302886\nNnxcN2umAOk,2003.0,5,9,2011,Old School,Cheeeese!,tt0302886\n20g3QIUnOgY,2003.0,3,9,2011,Old School,We're Going Streaking!,tt0302886\n_yy4qamWAmk,2007.0,9,10,2011,Transformers,\"No Sacrifice, No Victory\",tt0418279\nNUJVU87Qb7A,2003.0,1,9,2011,Old School,A Wedding Toast,tt0302886\nbmHLulbWm74,2007.0,2,10,2011,Transformers,Desert Surprise,tt0418279\nkWmntegbxMc,2007.0,6,10,2011,Transformers,My Name Is Optimus Prime,tt0418279\n5t8Utwa_YYQ,2007.0,5,10,2011,Transformers,That Car Is Sensitive,tt0418279\nIMo_Jx35SZw,2007.0,10,10,2011,Transformers,Taking Down Blackout,tt0418279\nm1ef1Y2x8NY,2007.0,8,10,2011,Transformers,Megatron Gets the Upper Hand,tt0418279\nCs-L3psiK2Y,2007.0,3,10,2011,Transformers,Bumblebee to the Rescue,tt0418279\n5QYQS9SYa6A,2007.0,7,10,2011,Transformers,Optimus Prime Battles Bonecrusher,tt0418279\nf6L3Ef1JCC8,2007.0,1,10,2011,Transformers,Eyes On Mikaela,tt0418279\nCcfN7q8rN58,2007.0,4,10,2011,Transformers,Not So Tough Without a Head,tt0418279\nLqneoJRRqbg,2005.0,5,8,2011,The Ring Two,I Have To Show You Something,tt0377109\nrroMPRc4flw,2005.0,8,8,2011,The Ring Two,I'm Not Your Mommy,tt0377109\nEiVRkqi02a0,2005.0,7,8,2011,The Ring Two,Her Only Way Out,tt0377109\na8xs3O-NwsY,2005.0,6,8,2011,The Ring Two,You're Not My Son,tt0377109\nyl_CgAqNvKc,2005.0,1,8,2011,The Ring Two,Now It's Her Problem,tt0377109\ne7dbge0Zk5A,2005.0,4,8,2011,The Ring Two,It Wasn't Him,tt0377109\niBRhat_CcQM,2005.0,3,8,2011,The Ring Two,Don't Stop,tt0377109\nhpb2-ZOzc_o,2002.0,8,8,2011,The Ring,Samara Comes to You,tt0120737\n398qkvR92GU,2002.0,6,8,2011,The Ring,What Did You Do To Her?,tt0120737\nu4T5X47MKm4,2002.0,5,8,2011,The Ring,Ferry Accident,tt0120737\nbxAiioYl1bw,2005.0,2,8,2011,The Ring Two,I Found You,tt0377109\nigEO_oyUs6U,2002.0,3,8,2011,The Ring,Nose Bleed,tt0120737\nb9abCIgGxT4,2002.0,4,8,2011,The Ring,Nightmare,tt0120737\nOA6wpEFU-uw,2002.0,7,8,2011,The Ring,Into the Well,tt0120737\nVyiCDq6Y0c8,2002.0,2,8,2011,The Ring,The Tape,tt0120737\nPFsl1cGHzp4,2002.0,1,8,2011,The Ring,You Will Die in Seven Days,tt0120737\nLUr7o6R4u8U,2001.0,5,9,2011,The Mexican,The Past Doesn't Matter,tt0236493\nPEo3OnoPBI4,2001.0,2,9,2011,The Mexican,I Have to Shoot You,tt0236493\n9zYrXFG6zSs,2001.0,4,9,2011,The Mexican,Frank the Postman,tt0236493\nFUbC8WBChng,2001.0,9,9,2011,The Mexican,\"When is Enough, Enough?\",tt0236493\nNUdeuIj-yKk,2001.0,7,9,2011,The Mexican,One More Word...Naugahyde,tt0236493\nGanDtOcF0M0,2001.0,6,9,2011,The Mexican,The Point When Enough is Enough,tt0236493\nAgLQ3qTL-t0,2001.0,1,9,2011,The Mexican,The Last Job,tt0236493\nJjfj3SkBkpg,2000.0,6,8,2011,What Lies Beneath,Setting up a Suicide,tt0161081\nSnvRdPwoMRQ,2000.0,3,8,2011,What Lies Beneath,Channeling the Dead,tt0161081\nWNnxjpBMF7U,2000.0,5,8,2011,What Lies Beneath,\"You Killed Her, Didn't You?\",tt0161081\nM4NDR6zyzkw,2000.0,4,8,2011,What Lies Beneath,I Think She's Starting to Suspect Something,tt0161081\nvPTTP3gSLJc,2000.0,1,8,2011,What Lies Beneath,What Do You Want?,tt0161081\nI2AjeXpxmI4,2001.0,3,9,2011,The Mexican,Are You Gay?,tt0236493\nirr4b40Ok7E,2000.0,7,8,2011,What Lies Beneath,Drowning in the Bathtub,tt0161081\nWUApETooc_g,2001.0,8,9,2011,The Mexican,Killing Winston,tt0236493\nF1adM9oDbbw,2000.0,2,8,2011,What Lies Beneath,I Know You Killed Her,tt0161081\n14t1taTBtmc,2000.0,8,8,2011,What Lies Beneath,The Woman That Lies Beneath,tt0161081\nxtXdKETotbc,2002.0,8,9,2011,Minority Report,Run,tt0181689\nhu2AlkyvIe0,2003.0,10,10,2011,Head of State,The First Black President,tt0325537\n3tXDymBcnJY,2003.0,7,10,2011,Head of State,Mays Rocks the Debate,tt0325537\nhRa-69uBmIw,2003.0,9,10,2011,Head of State,\"Yes, I'm an Amateur\",tt0325537\nlCiravgbbJk,2003.0,8,10,2011,Head of State,A Childish Debate,tt0325537\ntPy34tjLOyk,2003.0,4,10,2011,Head of State,Brotherly Advice,tt0325537\nr9bfL4Jz-M8,2003.0,6,10,2011,Head of State,Dress for the Job You Want,tt0325537\nfMTn4M2qfNI,2003.0,5,10,2011,Head of State,That Ain't Right,tt0325537\nhvZiZFDE3A8,2003.0,1,10,2011,Head of State,Save the Cat,tt0325537\nSXjiv_w2i3Y,2003.0,3,10,2011,Head of State,Security!,tt0325537\nPha96r6s_g4,2003.0,2,10,2011,Head of State,Meat Man,tt0325537\nOw8mG8qutkw,2002.0,2,10,2011,Catch Me If You Can,Are You My Deadhead?,tt0264464\nDCOm4osfWn8,2002.0,3,10,2011,Catch Me If You Can,Bank Teller Seduction,tt0264464\nHYOjY7JJDBI,2002.0,9,10,2011,Catch Me If You Can,Caught in France,tt0264464\nsFW15hEqZQk,2002.0,10,10,2011,Catch Me If You Can,Nobody's Chasing You,tt0264464\nO71paEZERHg,2002.0,6,10,2011,Catch Me If You Can,No One Else to Call,tt0264464\ni5j1wWY-qus,2002.0,8,10,2011,Catch Me If You Can,Do You Concur?,tt0264464\nR5WC60UwB_Y,2002.0,7,10,2011,Catch Me If You Can,You Got Your Braces Off,tt0264464\n31lZFoSS-VQ,2002.0,5,10,2011,Catch Me If You Can,Go Fish,tt0264464\nPNOuZUHKneY,2002.0,4,10,2011,Catch Me If You Can,Secret Service Agent,tt0264464\nKAeAqaA0Llg,2002.0,1,10,2011,Catch Me If You Can,Substitute Teacher,tt0264464\nDvS7X6Zik1c,2002.0,7,9,2011,Minority Report,Lamar Murders Danny,tt0181689\nIHLzITVRlCo,2002.0,9,9,2011,Minority Report,One More Murder,tt0181689\n5M4QWD0U8-A,2002.0,6,9,2011,Minority Report,You're Supposed to Kill Me,tt0181689\n8MuZATnrE3Y,2002.0,5,9,2011,Minority Report,Anderton Chooses Not to Kill,tt0181689\n9S44kVrFB24,2002.0,2,9,2011,Minority Report,Anderton Runs,tt0181689\n901lYbPmqu4,2002.0,4,9,2011,Minority Report,Spider Robots,tt0181689\nGurNiNV5XvY,2002.0,3,9,2011,Minority Report,Spoiled Lunch,tt0181689\n2l_IUAcvfv8,2002.0,1,9,2011,Minority Report,Anderton Sees Himself Kill,tt0181689\nTZQWu0gDpO4,2004.0,3,9,2011,Collateral,Pulled Over,tt0369339\nCxzCn3OZfeA,2004.0,8,9,2011,Collateral,Sins of the Father,tt0369339\n6mreIgrIXQ8,2004.0,6,9,2011,Collateral,Max's New Friend,tt0369339\nwDZyu8jYw90,2004.0,5,9,2011,Collateral,One Question Away,tt0369339\nlBS9AHilxg0,2004.0,2,9,2011,Collateral,Bullets and the Fall,tt0369339\n_syPeFclyN8,2004.0,1,9,2011,Collateral,Nobody Notices,tt0369339\nEMS4lYA-hEo,2004.0,9,9,2011,Collateral,Think Anybody Will Notice?,tt0369339\noEFPcljAXgs,2004.0,4,9,2011,Collateral,That My Briefcase?,tt0369339\nC0SqH_PRfGU,1998.0,10,10,2011,Deep Impact,Let Us Begin,tt0120647\n_xJ1KmjXSYc,1998.0,4,10,2011,Deep Impact,Leo Makes a Sweet Proposal,tt0120647\n-nIwFGmgYMs,1998.0,3,10,2011,Deep Impact,Detonating the First Nuke,tt0120647\n5s6vEQzHOcM,1998.0,2,10,2011,Deep Impact,A Crew Member is Lost,tt0120647\nVNtsVP42bOE,1998.0,8,10,2011,Deep Impact,The Comet Hits Earth,tt0120647\nvQWmd8REdaE,1998.0,9,10,2011,Deep Impact,The Ultimate Sacrifice,tt0120647\nTzMGDdUyHkQ,1998.0,7,10,2011,Deep Impact,Jenny Reconciles With Her Father,tt0120647\nAu47y23N-QM,1998.0,6,10,2011,Deep Impact,A One-Way Mission,tt0120647\ngM4-jiKNuIs,1998.0,5,10,2011,Deep Impact,Be the Best,tt0120647\nj0silSyYFPM,1998.0,1,10,2011,Deep Impact,An Order From the President,tt0120647\ndQTwbSY0z_Q,2005.0,6,9,2011,The Island,Jet Bike Chase,tt0399201\npTbelq2dtKg,2005.0,4,9,2011,The Island,What Are We?,tt0399201\nyHBT_3vRbq8,2002.0,2,9,2011,Road to Perdition,Sons Are Put on this Earth,tt0257044\nxPxs0Qh72kY,2008.0,6,10,2011,Tropic Thunder,\"What Do You Mean, You People?\",tt0942385\n9dyhBVEQi9U,2002.0,5,9,2011,Road to Perdition,A Share of the Money,tt0257044\nKA2ziAAXoqE,2008.0,4,10,2011,Tropic Thunder,\"Rick Peck, Hollywood Agent\",tt0942385\n7YdgPy21hBM,2008.0,10,10,2011,Tropic Thunder,You're My Really Cool Brother,tt0942385\nLQNKhY7ws48,2008.0,7,10,2011,Tropic Thunder,I Killed a Panda,tt0942385\nQZocvme6cYc,2008.0,1,10,2011,Tropic Thunder,\"Tugg Speedman, Action Hero\",tt0942385\nMhu2Ij0rWCQ,2008.0,3,10,2011,Tropic Thunder,Epic Explosion,tt0942385\nmgyypjEpK6U,2008.0,9,10,2011,Tropic Thunder,I'm Not Gay,tt0942385\nX6WHBO_Qc-Q,2008.0,5,10,2011,Tropic Thunder,Never Go Full Retard,tt0942385\nzGIIiQyyuYM,2008.0,2,10,2011,Tropic Thunder,Most Dramatic War Movie,tt0942385\nqIxHb7cA6tg,2008.0,8,10,2011,Tropic Thunder,Simple Jack,tt0942385\nnF_6OfgbF7c,1999.0,9,9,2011,Galaxy Quest,Fanboy's Dream Come True,tt0177789\nEQG3I5efwWo,1999.0,8,9,2011,Galaxy Quest,The Rock Monster,tt0177789\nJJ83r886Kyg,1999.0,6,9,2011,Galaxy Quest,Cute But Deadly Aliens,tt0177789\nnW-NiGp1gys,1999.0,7,9,2011,Galaxy Quest,Beaming Up a Pig Lizard,tt0177789\nqopdYE3_QoU,1999.0,5,9,2011,Galaxy Quest,I'm Gonna Die!,tt0177789\n_zSpueUqvcs,1999.0,4,9,2011,Galaxy Quest,When Aliens Attack,tt0177789\nuDJsCE01LYI,1999.0,1,9,2011,Galaxy Quest,How Did I Come to This?,tt0177789\nFEdyNyQCjwE,1999.0,2,9,2011,Galaxy Quest,Signing Autographs and Meeting Aliens,tt0177789\n-hDPK865N9I,2000.0,8,9,2011,Almost Famous,What Kind of Beer?,tt0181875\nn8mK-A_0viA,1999.0,3,9,2011,Galaxy Quest,Probed By Aliens,tt0177789\n3VIKJMifm7k,2000.0,3,9,2011,Almost Famous,Penny Lane & the Band-Aides,tt0181875\nA3WUhMCsZds,2000.0,4,9,2011,Almost Famous,It's All Happening,tt0181875\n6OPp0MyQfoM,2000.0,6,9,2011,Almost Famous,The T-Shirt is Everything,tt0181875\neXAvTZlmYF0,2000.0,5,9,2011,Almost Famous,Do You Wanna Buy a Gate?,tt0181875\nVCfFCFkVSss,2000.0,7,9,2011,Almost Famous,I Am a Golden God!,tt0181875\nTEAIVXJ1Qds,2000.0,9,9,2011,Almost Famous,I'm Gay!,tt0181875\nO_4Sx5NtOPM,2002.0,8,9,2011,Road to Perdition,I'm Glad It's You,tt0257044\nU5418CiBukw,2002.0,7,9,2011,Road to Perdition,None of Us Will See Heaven,tt0257044\n7-VAbEyf9V4,2002.0,6,9,2011,Road to Perdition,Hotel Shootout,tt0257044\nnPWRoCkmaQU,2002.0,4,9,2011,Road to Perdition,Kill Sullivan and All Debts are Paid,tt0257044\nUfmdBPl48uw,2002.0,3,9,2011,Road to Perdition,You Would Like to Apologize?,tt0257044\nMhGl83Qsi4Q,2002.0,1,9,2011,Road to Perdition,You Saw Everything,tt0257044\nsOxspReyzOI,2005.0,8,9,2011,The Island,He's My Clone,tt0399201\n5paBdZiLhqQ,2005.0,9,9,2011,The Island,My Name Is Lincoln,tt0399201\nxCQ2qh3Tu9o,2005.0,7,9,2011,The Island,Riding the Logo,tt0399201\nCHPnFgyg064,2005.0,5,9,2011,The Island,Good Job,tt0399201\nIhd-NwI030c,2005.0,2,9,2011,The Island,I Wanna Live,tt0399201\nIdEsGZhAO7A,2005.0,3,9,2011,The Island,Freedom,tt0399201\nUuVuFO1cCFE,2007.0,1,5,2011,Norbit,Mr. Wong's Toast,tt0477051\n139c6HgY7jA,2005.0,1,9,2011,The Island,Awaits You,tt0399201\nIakgSRSZZ0I,2007.0,3,5,2011,Norbit,Little Red Riding Goose,tt0477051\nE3WlOWMP9KA,2007.0,2,5,2011,Norbit,It's Science,tt0477051\nJUQS0Q_0aQg,2007.0,5,5,2011,Norbit,Splash Down,tt0477051\nyKfQ_-lnMJw,2007.0,4,5,2011,Norbit,Kate's Hospital Visit,tt0477051\nTMUJpec6Bdc,1950.0,2,8,2011,Sunset Blvd.,\"I Am Big, It's the Pictures That Got Small\",tt0043014\nNn4pMI2q_PM,1950.0,4,8,2011,Sunset Blvd.,\"The \"\"Waxworks\"\" Play Bridge\",tt0043014\n_3hajwRww6I,1950.0,7,8,2011,Sunset Blvd.,No One Ever Leaves a Star,tt0043014\nAupQ8Vm51OQ,1984.0,2,9,2011,Top Secret!,The Resistance,tt0088286\nXM3BsAAO8JI,2002.0,5,12,2011,Equilibrium,Puppy Shootout,tt0238380\nixljWVyPby0,1980.0,9,10,2011,Airplane!,Don't Call Me Shirley,tt0080339\n7trB7i2xpfc,1986.0,1,10,2011,Gung Ho,Japanese Board Meeting,tt0091159\nkk0vH1qJPHk,1996.0,12,12,2011,The Crow: City of Angels,Does He Not Bleed?,tt0115986\nnS8tqsjySaI,2008.0,9,10,2011,Doubt,I Will Do What Needs to Be Done,tt0918927\n3ZpmjPc9Vcc,2004.0,7,9,2011,Collateral,Max Takes Action,tt0369339\nV4705kE44Jc,1983.0,7,10,2011,Trading Places,Very Bad Santa,tt0086465\niU0CuPH7akM,1987.0,8,10,2011,\"Planes, Trains & Automobiles\",Chatty Cathy,tt0093748\nevoa_UWUobI,2007.0,1,9,2011,Paranormal Activity,Ouija Board on Fire,tt1179904\nWSlojAguwGE,1991.0,7,10,2011,The Addams Family,Lust in the Graveyard,tt0101272\nfnTckzsYgg0,1997.0,1,12,2011,Scream 2,Killer Opening,tt0120082\nba4niP3IwLQ,1997.0,3,12,2011,Scream 2,Omega Beta Killer,tt0120082\noDeQU3l-JSg,1993.0,4,10,2011,Coneheads,The Birth Spasm Has Begun,tt0106598\nxdPtumdfg9c,1997.0,4,12,2011,Scream 2,It's Showtime!,tt0120082\nJ2_tJIgfnDA,1988.0,1,10,2011,The Naked Gun: From the Files of Police Squad!,Nordberg's Bad Luck,tt0095705\nEA-9nqoIXs8,1997.0,6,12,2011,Scream 2,The Play's the Thing!,tt0120082\nr9aUxfTTLfk,1997.0,10,12,2011,Scream 2,I'm Gonna Blame the Movies,tt0120082\nXFrerPgK0kk,1995.0,8,10,2011,The Brady Bunch Movie,Brady Emergency Meeting,tt0112572\ny8SLxD3ATw0,1997.0,12,12,2011,Scream 2,That... Was Intense,tt0120082\nO7dHybpZ7Mc,2010.0,3,-1,2011,Saint,Shooting Down St. Niklas,tt1300851\nZPk3nEFRuZg,1970.0,5,10,2011,Love Story,Our Two Souls,tt0066011\ncGP9TwLnG78,1983.0,2,9,2011,Terms of Endearment,Asking Out Aurora,tt0086425\ncEjo0ajod1M,1991.0,8,10,2011,The Naked Gun 2½: The Smell of Fear,Boxing Knowledge,tt0102510\nC5LuP6tDw3w,1995.0,1,10,2011,The Brady Bunch Movie,I Don't Understand You,tt0112572\n8hJlwQwwCGk,2002.0,7,10,2011,Orange County,The Dean Trips Out,tt0273923\nIBjrQR_1ef8,2002.0,9,12,2011,Equilibrium,Sense Offender,tt0238380\n9EBnUERX_cU,1986.0,9,10,2011,Gung Ho,This is Looney Tunes,tt0091159\n8iQKnefUJNg,2002.0,7,12,2011,Equilibrium,Joining the Resistance,tt0238380\np-echNQGbug,1994.0,2,10,2011,Naked Gun 33 1/3: The Final Insult,Prison Riot,tt0110622\n59ZcTCijizI,2002.0,3,12,2011,Equilibrium,Why Are You Alive?,tt0238380\nIEOqAlmq2NU,2003.0,1,10,2011,Dickie Roberts: Former Child Star,Big Bully,tt0325258\nuZWDke-bpmc,2002.0,8,12,2011,Equilibrium,The Incineration,tt0238380\npPuAKVnqJdk,2002.0,1,12,2011,Equilibrium,Lights Out,tt0238380\naHM8kYwl1R4,1968.0,1,8,2011,Rosemary's Baby,Baby Night,tt0063522\ngNGmuLYwd3o,1991.0,2,10,2011,The Addams Family,The Hot Seat,tt0101272\n_ZfmXzIbHI8,1978.0,9,10,2011,Grease,Sandy Scene,tt0077631\nuuYTVl0iOkk,1984.0,6,9,2011,Top Secret!,Backwards Bookstore,tt0088286\nTJf9Pf9rjO4,2002.0,2,12,2011,Equilibrium,Killed for Reading,tt0238380\nqXJF21RuqlM,1970.0,7,10,2011,Love Story,Jenny Is Dying,tt0066011\n2jvtU-_WDUw,1991.0,10,10,2011,The Naked Gun 2½: The Smell of Fear,What Are You Trying To Tell Me?,tt0102510\nZzOzVT2o2BU,2000.0,5,9,2011,Shaft,New York Car Chase,tt0162650\nYq5csaHc_GE,1992.0,1,10,2011,Leap of Faith,Scamming a Cop,tt0104695\nSbTWLdT_tgk,1993.0,6,10,2011,Coneheads,Good Neighbors,tt0106598\nmVqKHUtKh8Y,1995.0,6,10,2011,The Brady Bunch Movie,Marsha's Date,tt0112572\nOUHFpvPxmRI,2003.0,8,10,2011,Dickie Roberts: Former Child Star,Auditioning for Reiner,tt0325258\nfoll8sDGq4M,1988.0,5,10,2011,The Naked Gun: From the Files of Police Squad!,Taking Down Terrorists,tt0095705\ngTTHW0Hynbc,1984.0,3,7,2011,Footloose,We Could Have A Dance,tt0087277\ny-qFqfSjN1U,2003.0,9,10,2011,Dickie Roberts: Former Child Star,Big for a Stroller,tt0325258\nFyuo3Z5ZTX4,1984.0,2,7,2011,Footloose,Playing Chicken,tt0087277\nGQDLVpNKFhw,2003.0,3,10,2011,Dickie Roberts: Former Child Star,Schmoozing at AA,tt0325258\n4EdkUt4f5wg,1984.0,4,7,2011,Footloose,Defending Dancing,tt0087277\nN8f-APll5f8,2003.0,4,10,2011,Dickie Roberts: Former Child Star,Farm-A-Long,tt0325258\nQf9xTFEhRS0,2003.0,10,10,2011,Dickie Roberts: Former Child Star,Devil Rabbit,tt0325258\nBkVDaT2FTM8,2003.0,6,10,2011,Dickie Roberts: Former Child Star,Root-Beer Party,tt0325258\nI6_C4fK94-c,1984.0,6,7,2011,Footloose,Forgive Me Father,tt0087277\nLX_cW_dLweA,2003.0,5,10,2011,Dickie Roberts: Former Child Star,The Day the Sitcom Got Canceled,tt0325258\nrr6eufh4DA4,1981.0,9,9,2011,Mommie Dearest,Christina Play Acts,tt0082766\nf0MBL-DyXaE,1981.0,4,9,2011,Mommie Dearest,Racing A Child,tt0082766\nqRAQivSrtm0,1981.0,1,9,2011,Mommie Dearest,Mad At Dirt,tt0082766\n5NOmw_kzrJQ,1981.0,3,9,2011,Mommie Dearest,Reasons For Adoption,tt0082766\nPtwRKtvezd8,1981.0,5,9,2011,Mommie Dearest,Pruning the Garden,tt0082766\ntUkE9qaVgmo,1981.0,6,9,2011,Mommie Dearest,No Wire Hangers,tt0082766\nfqM1ttqNA9k,1981.0,7,9,2011,Mommie Dearest,Christina's Not A Fan,tt0082766\nkm-nbIRZJYk,1968.0,7,9,2011,Romeo and Juliet,Art Thou a Man?,tt0063518\nVToA3hOd3tM,1986.0,1,8,2011,Crocodile Dundee,Death Roll,tt0090555\nkikLy1L-keE,1968.0,6,9,2011,Romeo and Juliet,Romeo Kills Tybalt,tt0063518\nKQ6EyoqFWQM,1986.0,3,8,2011,Crocodile Dundee,Outback Meal,tt0090555\nGvwHxn_ziD4,1986.0,5,8,2011,Crocodile Dundee,Mind Over Matter,tt0090555\nbd165_YTXZQ,1986.0,2,8,2011,Crocodile Dundee,Skippy Gets Even,tt0090555\nuw9V_NayRVY,1986.0,6,8,2011,Crocodile Dundee,Man's Country,tt0090555\n_vW54lAtldI,1986.0,4,8,2011,Crocodile Dundee,That's A Knife,tt0090555\nTi9VcWX0vEs,1986.0,8,8,2011,Crocodile Dundee,Telephone Game,tt0090555\nPuvONUFArdI,1983.0,9,9,2011,Terms of Endearment,Emma's Goodbyes,tt0086425\nuYIe9o2jMSE,1986.0,7,8,2011,Crocodile Dundee,Bidet Mate,tt0090555\n4jsUIgchHXU,1961.0,1,9,2011,Breakfast at Tiffany's,The Mean Reds,tt0054698\n8G0BVEIjGyo,1974.0,2,9,2011,Chinatown,Jake Likes His Nose,tt0071315\n7SZMEImptPQ,1974.0,1,9,2011,Chinatown,Screwing Like a Chinaman,tt0071315\nkh0exWqvxeI,1974.0,4,9,2011,Chinatown,A Respectable Man,tt0071315\n9y2y-Tkn7eg,1974.0,5,9,2011,Chinatown,Nosy Fella,tt0071315\n3BB-PdHTQHg,1974.0,3,9,2011,Chinatown,Find the Girl,tt0071315\nX6CEEc9g9vk,1974.0,8,9,2011,Chinatown,Evelyn's Last Stand,tt0071315\nwnrdetFAo1o,1974.0,6,9,2011,Chinatown,\"My Sister, My Daughter\",tt0071315\nbkH0i7fGo6E,1978.0,1,8,2011,Heaven Can Wait,Picking a New Body,tt0077663\n35fEjN5m4ds,1978.0,4,8,2011,Heaven Can Wait,An Airplane Dream,tt0077663\nNMi4ONkFym8,1978.0,2,8,2011,Heaven Can Wait,I Don't Frighten Anybody,tt0077663\nKejnRkhhY14,1978.0,3,8,2011,Heaven Can Wait,He's Not There,tt0077663\nSzVAyGry2Ic,1978.0,7,8,2011,Heaven Can Wait,How Heaven Works,tt0077663\nnfcci0C95tA,1978.0,6,8,2011,Heaven Can Wait,Anxious Conspirators,tt0077663\nEHJoH9IFboo,1978.0,5,8,2011,Heaven Can Wait,,tt0077663\nEnIL4KXQI2g,1978.0,8,8,2011,Heaven Can Wait,Deja Vu,tt0077663\nQvfJieP0KVA,1991.0,1,10,2011,Necessary Roughness,Andre's a Vegetarian,tt0102517\nkvbYXGOZHnQ,1983.0,4,5,2011,Flashdance,Who's the Blonde?,tt0085549\n2u8cHrJvlHQ,1983.0,3,5,2011,Flashdance,Alex Gets Comfortable,tt0085549\nf4M5MT96FwY,1983.0,2,5,2011,Flashdance,Alex Doesn't Want Nick's Help,tt0085549\n7eI5BfzRCY4,1983.0,1,5,2011,Flashdance,Nick Gets Turned Down,tt0085549\nhP77V2X1Biw,1962.0,7,7,2011,The Man Who Shot Liberty Valance,Showdown with Liberty Valance,tt0056217\nOQrzt7JI_DM,1991.0,1,8,2011,Regarding Henry,Henry Wants Ritz Crackers,tt0102768\nP0GZAeKVtfg,1983.0,5,5,2011,Flashdance,You're Scared,tt0085549\nMTs-HKiOQj8,1994.0,8,10,2011,Naked Gun 33 1/3: The Final Insult,\"Come Here, Sexy\",tt0110622\nUUcH7wBp3G4,1991.0,3,8,2011,Regarding Henry,Messing Around in the Library,tt0102768\n3lGZmV8_XxU,1991.0,4,8,2011,Regarding Henry,Teaching Dad to Read,tt0102768\nvSt6OezOAwg,1999.0,2,10,2011,Superstar,Tree Lover,tt0167427\nTbiSXYT1-SY,1962.0,5,7,2011,The Man Who Shot Liberty Valance,I Hate Tricks,tt0056217\nIeRLdVndLpM,1999.0,1,10,2011,Superstar,I'm Not A Slut!,tt0167427\n7I7OErGVS68,1961.0,2,9,2011,Breakfast at Tiffany's,Hot Party,tt0054698\nTs5FbF_2Wus,1995.0,10,10,2011,The Brady Bunch Movie,This Family is Our Home,tt0112572\nZKtFIgmoqoI,1987.0,3,10,2011,\"Planes, Trains & Automobiles\",Melted Speedometer,tt0093748\nFuZNswuwAxM,1987.0,7,10,2011,\"Planes, Trains & Automobiles\",The Same Underwear,tt0093748\nTZYf96eyE94,1991.0,9,10,2011,The Addams Family,Morticia Gets a Job,tt0101272\nnl8PQAfhi28,1987.0,1,10,2011,\"Planes, Trains & Automobiles\",I Knew I Knew You,tt0093748\nx12Dai43I8Y,1996.0,7,9,2011,The First Wives Club,The Club Comes to Order,tt0116313\nU3sOMWjM7aU,2005.0,9,10,2011,Elizabethtown,See the Sunrise,tt0368709\nLp3r6mBRUXI,1991.0,1,10,2011,The Addams Family,Wednesday's Hero,tt0101272\nqAhaYHHcYyk,1991.0,10,10,2011,The Addams Family,The Tortoise and the Hare,tt0101272\nppGd-2nEOVQ,1974.0,7,9,2011,Chinatown,Capable of Anything,tt0071315\nBEG66-Lro7U,1995.0,7,9,2011,Clueless,Not a Mexican,tt0112697\nxM2mL0y9i5M,1995.0,6,9,2011,Clueless,Violence in the Media,tt0112697\n7uSz0mEtEsQ,1974.0,9,9,2011,Chinatown,It's,tt0071315\nVgiH-x1eRpw,1987.0,6,6,2011,Some Kind of Wonderful,I Always Knew You Were Stupid,tt0094006\nIzYmyWR3pJs,2003.0,7,10,2011,Dickie Roberts: Former Child Star,Running Into Leif,tt0325258\nYzpjrMci980,2003.0,2,10,2011,Dickie Roberts: Former Child Star,Tell All Book,tt0325258\nClr9NbvwbhA,2005.0,2,10,2011,Elizabethtown,Last Goodbye,tt0368709\n0rgfZzE6Ulg,2005.0,3,10,2011,Elizabethtown,Opening For Skynyrd,tt0368709\ntcR7LgBVTNE,1993.0,1,10,2011,Coneheads,We Will Blend In,tt0106598\nBnjXFpoLJfk,1984.0,7,7,2011,Footloose,Letting Go,tt0087277\n2lVRcI0zsvw,1984.0,5,7,2011,Footloose,A Time to Dance,tt0087277\n3eJ8A1W3jqM,2005.0,10,10,2011,Elizabethtown,\"What \"\"They\"\" Say\",tt0368709\n402xHwQGVsE,1993.0,3,10,2011,Coneheads,At the Dentist's,tt0106598\nXkvIlrLiy9o,1993.0,10,10,2011,Coneheads,Jehovah's Witnesses,tt0106598\n2rCTuXAbyTI,1993.0,5,10,2011,Coneheads,Connie's Tattoo,tt0106598\njPsXJlylRvs,1993.0,2,10,2011,Coneheads,Illegal Aliens,tt0106598\nmMRQdL_xvME,1993.0,9,10,2011,Coneheads,Stability & Contentment,tt0106598\nMXkFgmQ2O-Q,1993.0,8,10,2011,Coneheads,Beldar's Fireworks,tt0106598\nreJAzTE980s,1971.0,2,8,2011,Harold and Maude,Dating Questionnaire,tt0067185\n7q-lFxf9-p8,1993.0,7,10,2011,Coneheads,Connie's Diving Meet,tt0106598\nWuHkE1eU2AY,1971.0,1,8,2011,Harold and Maude,Harold Meets Maude,tt0067185\nRU3F4QPUVQw,1971.0,4,8,2011,Harold and Maude,He Seems Very Nice,tt0067185\nQVGOUxQrISc,1971.0,3,8,2011,Harold and Maude,Can I Give You a Lift?,tt0067185\nADl0wC_cAbk,1950.0,3,8,2011,Sunset Blvd.,Have They Forgotten What a Star Looks Like?,tt0043014\nmzuVsHCLSOg,1971.0,6,8,2011,Harold and Maude,Backing Away From Life,tt0067185\n6ooboieA_eE,1971.0,5,8,2011,Harold and Maude,It's Rather Hard to Find a Truck,tt0067185\n0ZzNlA9uZ0g,1971.0,8,8,2011,Harold and Maude,Maude's 80th Birthday,tt0067185\nLYppdp_2GCk,1971.0,7,8,2011,Harold and Maude,The Last Date,tt0067185\nMvajGqWodvM,1950.0,6,8,2011,Sunset Blvd.,Meeting with Cecil B. DeMille,tt0043014\nJWMjQEyfaQ8,1976.0,2,8,2011,Marathon Man,Incompetent with Women,tt0074860\ncKADfQQILN8,1999.0,5,8,2011,Runaway Bride,What Maggie Wants,tt0163187\nkzw1_2b-I7A,1976.0,4,8,2011,Marathon Man,Is It Safe?,tt0074860\nlbaWyJwff-U,1968.0,9,9,2011,Romeo and Juliet,Juliet Joins Romeo,tt0063518\nWziC9cSTCWc,1976.0,1,8,2011,Marathon Man,Hotel Room Attack,tt0074860\nGZeehXqOYVI,1976.0,6,8,2011,Marathon Man,I'll Give You Szell,tt0074860\nlC-DSaxzDzs,1976.0,5,8,2011,Marathon Man,I'm Not Going Into That Cavity,tt0074860\n6nWWM8tTn84,1976.0,7,8,2011,Marathon Man,I Know Who You Are,tt0074860\nSNruq88Dlpg,1976.0,3,8,2011,Marathon Man,Apartment Intruders,tt0074860\nq5BzDVDotzI,2002.0,1,10,2011,Orange County,Shakespeare Movies,tt0273923\nHDq2KcdmVU8,2002.0,6,10,2011,Orange County,Lance Starts the Revolution,tt0273923\n2Tjoz_0I4Gk,1986.0,8,10,2011,Gung Ho,Hunt Fights Oishi,tt0091159\nSdNqYGbc0tU,1992.0,4,10,2011,Leap of Faith,All That Boy Has is Faith,tt0104695\nMkMqRDBKUwM,1992.0,3,10,2011,Leap of Faith,Got Trouble?,tt0104695\nPZGS6N3zG4o,1976.0,8,8,2011,Marathon Man,Swallowing the Diamonds,tt0074860\nB6iOniIX5eA,1992.0,7,10,2011,Leap of Faith,Butterflies,tt0104695\nVSo45ZD29oo,1986.0,6,10,2011,Gung Ho,Morning Swim,tt0091159\nQ1vQUG6GFNE,1992.0,8,10,2011,Leap of Faith,Boyd Walks,tt0104695\ne6kJsyysbSM,1992.0,10,10,2011,Leap of Faith,The Rain Comes,tt0104695\nNgEOTc2qgVg,1992.0,6,10,2011,Leap of Faith,You Need a Real Sinner,tt0104695\nP-4jKZ3X1zQ,1970.0,6,10,2011,Love Story,Love Means Never Having to Say You're Sorry,tt0066011\nhKNeFHBPgRo,1986.0,5,10,2011,Gung Ho,Superior Quality Workers,tt0091159\nfaaBOJDQ_Lc,2002.0,3,8,2011,Crossroads,On a Road Trip with a Killer,tt0275022\nz0ogqhF4ems,2002.0,1,8,2011,Crossroads,Two Virgins,tt0275022\nnYb42fv8pMU,1986.0,2,10,2011,Gung Ho,Is a Frog's Ass Watertight?,tt0091159\nuvtLHXUjt_o,1970.0,4,10,2011,Love Story,You Want to Marry Me?,tt0066011\nqb4Rfj1wp0Q,1970.0,1,10,2011,Love Story,I Like Your Body,tt0066011\nnOLCO4_AKiE,1970.0,3,10,2011,Love Story,Deeper in Love,tt0066011\n7e6DCyXotE0,1970.0,8,10,2011,Love Story,Be Strong and Merry,tt0066011\nee6yIS-0NrI,2002.0,7,8,2011,Crossroads,\"I'm Not a Girl, Not Yet a Woman\",tt0275022\nTsz_tamjpmc,1970.0,9,10,2011,Love Story,Screw Paris,tt0066011\nhZzQx9cEjhQ,1970.0,2,10,2011,Love Story,The Courage to Care,tt0066011\n2fwZfyxiMFY,2002.0,8,8,2011,Crossroads,Let Me Go,tt0275022\ni75piQgUKa0,1970.0,10,10,2011,Love Story,Oliver and His Father,tt0066011\neuxVy9j6TTU,2002.0,4,8,2011,Crossroads,Trailer Trash Sleaze,tt0275022\nWMIho_dolCA,2002.0,6,8,2011,Crossroads,Sunset Camping,tt0275022\n8j5sn2UyTp4,2007.0,1,9,2011,Into the Wild,Two Years He Walks the Earth,tt0758758\n37oJqWp4rJM,2003.0,3,10,2011,The School of Rock,The Man,tt0332379\njEHoNJLqbnk,2002.0,5,8,2011,Crossroads,Fat Camp,tt0275022\nFhPUGeCMKCE,2003.0,1,10,2011,The School of Rock,Dewey's Code of Conduct,tt0332379\nEd2KRddgv-4,2003.0,6,10,2011,The School of Rock,Creating Musical Fusion,tt0332379\nzIC2aMlqEZk,1991.0,6,10,2011,The Addams Family,Gomez Loves Morticia,tt0101272\nkdkVnZsOgJA,2003.0,7,10,2011,The School of Rock,Telling Off Schneebly,tt0332379\nfq_QSi29iGQ,1991.0,5,10,2011,The Addams Family,Calling Fester,tt0101272\nAnPDhq6O8jo,1996.0,3,9,2011,The First Wives Club,Elise Liquidates,tt0116313\nEnrWZiqgv1E,1991.0,4,10,2011,The Addams Family,The Addams Credo,tt0101272\nuDimGOcZ24U,1987.0,2,6,2011,Some Kind of Wonderful,Duncan Crashes the Party,tt0094006\nl-PmluGC2wk,1953.0,1,10,2011,Roman Holiday,Take a Holiday,tt0046250\nMgtXKQbmYRM,1987.0,1,6,2011,Some Kind of Wonderful,Radiating Sexual Vibes,tt0094006\nfF12SZcPQ1s,2000.0,1,6,2011,The Ladies Man,Blooping Bloopie,tt0213790\nexObFY-sHQw,1962.0,1,7,2011,The Man Who Shot Liberty Valance,\"Ransom Stoddard, Attorney at Law\",tt0056217\n3H0V4XiAyv8,1983.0,1,9,2011,Terms of Endearment,Emma's Pregnant,tt0086425\nakrTlYc40XE,1994.0,6,10,2011,Naked Gun 33 1/3: The Final Insult,Mommy Court,tt0110622\nYL19Rvtea4k,1953.0,4,10,2011,Roman Holiday,I Don't Know How to Say Goodbye,tt0046250\noWBYpwZ5-AM,1991.0,7,8,2011,Regarding Henry,Always Working,tt0102768\ndAMqMErPIIY,1994.0,1,10,2011,Naked Gun 33 1/3: The Final Insult,Self-Defense,tt0110622\n8r_dXbWf2Aw,1994.0,5,10,2011,Naked Gun 33 1/3: The Final Insult,Sperm Bank,tt0110622\nJBA3q4S1LE8,1968.0,7,8,2011,Rosemary's Baby,It's Alive,tt0063522\n10fKN4nHNd0,1991.0,2,8,2011,Regarding Henry,The Hospital is My Home,tt0102768\nl1NB8NQc7wU,1962.0,2,7,2011,The Man Who Shot Liberty Valance,Burning Down Dreams,tt0056217\nCo2dpNsHMKo,1991.0,6,8,2011,Regarding Henry,Henry is Shot,tt0102768\nkoPEnaz0Qm8,1988.0,8,10,2011,The Naked Gun: From the Files of Police Squad!,Runaway Car,tt0095705\nrngwd6ExGmc,1991.0,8,8,2011,Regarding Henry,Public Affection,tt0102768\nctrJ0-TLUHQ,1968.0,6,8,2011,Rosemary's Baby,They Want My Baby,tt0063522\n63lE3AOBgeA,1994.0,4,10,2011,Naked Gun 33 1/3: The Final Insult,Mastermind,tt0110622\nPsqrgV2RCCM,2005.0,3,9,2011,The Longest Yard,He Broked-ed My Nose,tt0398165\nb02H0dW2xf8,1980.0,1,7,2011,Ordinary People,Conrad's Breakdown,tt0081283\nIZS7zpXftHA,1980.0,2,7,2011,Ordinary People,Conrad's Breakthrough,tt0081283\nlKTGkLcn3yY,1968.0,5,9,2011,Romeo and Juliet,A Plague on Both Your Houses,tt0063518\nxSQxtMWJzGQ,1976.0,9,9,2011,The Bad News Bears,Wait 'Til Next Year!,tt0074174\nOKn00A40uWE,1981.0,8,9,2011,Mommie Dearest,Rodeo Queen,tt0082766\nOZLVlajiihI,1968.0,3,9,2011,Romeo and Juliet,\"Wherefore Art Thou, Romeo?\",tt0063518\nO6KVfajjyGs,1968.0,8,9,2011,Romeo and Juliet,\"Thus With a Kiss, I Die\",tt0063518\nZMplnAKdBsA,1980.0,1,9,2011,Urban Cowboy,Hitching a Ride,tt0081696\nkflvHGnIkoA,1996.0,4,9,2011,The First Wives Club,Thrilling Escape,tt0116313\n4SNTodFS0h4,2002.0,10,10,2011,Orange County,An Expert at Excaping,tt0273923\n0SbVnjlPhjY,1953.0,6,10,2011,Roman Holiday,Princess Ann's Breakdown,tt0046250\nZEbN6Vnr1g8,1991.0,2,10,2011,Necessary Roughness,Wally's Pep Talk,tt0102517\nS6UlqI_pZr4,1997.0,1,7,2011,The Rainmaker,He'll Kill Me,tt0119978\n7CkTYPnJS0E,1991.0,1,10,2011,The Naked Gun 2½: The Smell of Fear,Pulling The Plug,tt0102510\n14Fq0FgsKfw,1997.0,5,7,2011,The Rainmaker,Cliff Comes Home,tt0119978\nlI-ty9MfICM,1991.0,6,10,2011,The Naked Gun 2½: The Smell of Fear,What A Drag,tt0102510\nPHcwHxzDQDs,2000.0,6,8,2011,Wonder Boys,Fit as a Fiddle,tt0185014\nfsWhDcon8aQ,1994.0,9,10,2011,Naked Gun 33 1/3: The Final Insult,Prison Break,tt0110622\nR9WGPRckS1s,1968.0,3,8,2011,Rosemary's Baby,No Coincidence,tt0063522\nNP5IK_pn1eY,1988.0,7,10,2011,The Naked Gun: From the Files of Police Squad!,Apartment Acrobatics,tt0095705\n1BkNaaNscqU,1980.0,6,7,2011,Ordinary People,Mothers Don't Hate Their Sons,tt0081283\n36T5BEpn3dA,1988.0,6,10,2011,The Naked Gun: From the Files of Police Squad!,Priceless Damage,tt0095705\nhVxEoBe1UVg,1985.0,6,9,2011,Witness,I'm Not a Child,tt0090329\n1KBWO9Js23k,1980.0,3,7,2011,Ordinary People,We Never Had a Pet,tt0081283\nd2zY1WRtG94,1993.0,4,7,2011,What's Eating Gilbert Grape,Because He's Gilbert,tt0108550\nnWRxPDhd3d0,1987.0,6,10,2011,\"Planes, Trains & Automobiles\",A F***ing Car,tt0093748\ndbgOACJpZg0,1987.0,2,10,2011,\"Planes, Trains & Automobiles\",Owen,tt0093748\nYwM7NgPE5lw,1994.0,7,10,2011,Naked Gun 33 1/3: The Final Insult,The Untouchables,tt0110622\nRd5dYQHoZS0,1987.0,9,10,2011,\"Planes, Trains & Automobiles\",My Dogs Are Barking,tt0093748\nzhWJUB-Sub8,2001.0,7,9,2011,Vanilla Sky,Bros,tt0259711\nsGh6m5Ilw_Y,2001.0,4,9,2011,Vanilla Sky,Every Passing Minute,tt0259711\nnhomGXOMYmc,1996.0,6,9,2011,The First Wives Club,Sweet Revenge,tt0116313\nQg4NBOIbwXc,2002.0,2,10,2011,Orange County,I Didn't Get In?,tt0273923\nONRLZIY7gbs,1976.0,8,9,2011,The Bad News Bears,Lupus Makes the Catch,tt0074174\nCWN1xWdKbHY,1976.0,1,9,2011,The Bad News Bears,There's Chocolate on the Ball,tt0074174\ndm61r3qnPKQ,1976.0,2,9,2011,The Bad News Bears,A Girl Ballplayer,tt0074174\nKeX9BXnD6D4,2001.0,6,10,2011,Zoolander,I'm Not Your Brah,tt0196229\nAdh_8pva10k,1976.0,7,9,2011,The Bad News Bears,\"Throw the Ball, Joey!\",tt0074174\njMTT0LW0M_Y,1950.0,8,8,2011,Sunset Blvd.,\"Mr. DeMille, I'm Ready for My Close-Up\",tt0043014\n4OgldRzYvD4,2007.0,7,9,2011,Zodiac,Paul Avery's Houseboat,tt0443706\nwM2NQimHkTY,1995.0,2,10,2011,The Brady Bunch Movie,Breakfast with the Bradys,tt0112572\nHduXGYkoc_w,1950.0,1,8,2011,Sunset Blvd.,Floating in a Pool,tt0043014\nbb_uXwPiNxc,1950.0,5,8,2011,Sunset Blvd.,There Are No Other Guests,tt0043014\nvpHEQqApoAY,2000.0,4,6,2011,The Ladies Man,The First V.S.A. Meeting,tt0213790\nrGS4bE0G3yY,1987.0,4,6,2011,Some Kind of Wonderful,Getting Into Amanda Jones,tt0094006\nA3xuABrdKis,1988.0,9,10,2011,Scrooged,Death in an Elevator,tt0096061\n5LApVevs2II,2000.0,9,9,2011,Shaft,Shoot Him,tt0162650\nmNQx3KPxifQ,2000.0,5,6,2011,The Ladies Man,I Will Crush You,tt0213790\nH2uHBhKTSe0,2001.0,9,10,2011,Zoolander,Computer Experts,tt0196229\nplqzeUB9B-w,1983.0,4,9,2011,Terms of Endearment,Emma's Pain Shot,tt0086425\nQbSFxlfuf9s,1995.0,4,10,2011,Tommy Boy,The Deer Wakes Up,tt0114694\nS2XvxDaIwCw,1995.0,2,10,2011,Tommy Boy,Desktop Demo,tt0114694\ncjkkKO5Gsno,1990.0,6,10,2011,Ghost,Get Off My Train,tt0099653\nRs0tk-z4b2c,2004.0,4,10,2011,Bride and Prejudice,A Visit From Mr. Kohli,tt0361411\nXm-UligdIrQ,1997.0,7,12,2011,Scream 2,One of the Big Boys,tt0120082\nodrqxoaNPC0,1997.0,9,12,2011,Scream 2,Reckless Driving,tt0120082\nrWeaYCoh1qk,1997.0,5,12,2011,Scream 2,The Rules for Sequels,tt0120082\nkaXM8DMSm-g,1997.0,11,12,2011,Scream 2,A Mother's Love,tt0120082\nMi3s2DWKiUo,1997.0,8,12,2011,Scream 2,Stabbed in the Back,tt0120082\nXzKYNZY9Hpk,1997.0,2,12,2011,Scream 2,Sequels Suck!,tt0120082\n2z8XAo4Lpuw,2010.0,2,-1,2011,Saint,A Ghostly Gang,tt1300851\nb_uKO3N_JJQ,2010.0,1,-1,2011,Saint,The Return of St. Niklas,tt1300851\nZtUB8XCrqPg,1995.0,1,10,2011,Dead Man,On the Train to Hell,tt0112817\nbcs2En6tGRw,2002.0,11,12,2011,Equilibrium,Face Off,tt0238380\nW-T51n6etp8,1995.0,4,10,2011,Dead Man,The Hunt is On,tt0112817\nLqQJOr4Rx5k,2002.0,12,12,2011,Equilibrium,Final Fight,tt0238380\nCOhtZbBhOYU,2002.0,6,12,2011,Equilibrium,Cleric Practice,tt0238380\n2mmq2hx0tl0,1995.0,6,10,2011,Dead Man,Philistine Shootout,tt0112817\ncglY-gszmNI,1995.0,3,10,2011,Dead Man,This Is America,tt0112817\nGJkn0wEMc4w,2009.0,10,10,2011,G.I. Joe: The Rise of Cobra,You Will Call Me Commander,tt1046173\nvBH4Hv39SEo,1995.0,5,10,2011,Dead Man,\"Big George, Sally, & Benmont\",tt0112817\nt2RUtqJGxlw,1995.0,8,10,2011,Dead Man,You Know My Poetry,tt0112817\nwAZPdmo7LVA,1995.0,7,10,2011,Dead Man,A Quest For Vision,tt0112817\n4weEXyoXZKs,2002.0,10,12,2011,Equilibrium,Not Without Incident,tt0238380\nlh0yfYUCkIw,1995.0,9,10,2011,Dead Man,Tobacco & An Autograph,tt0112817\ntO1oeKVFlPk,1995.0,10,10,2011,Dead Man,A Burial Voyage,tt0112817\nDH80L45zXJw,1995.0,2,10,2011,Dead Man,Mr. Dickinson,tt0112817\nTb-PscLsY9I,2011.0,1,-1,2011,The Thing,Escapes,tt0905372\npobSophb2UE,2011.0,2,-1,2011,The Thing,Has Replicated a Person,tt0905372\nfy-Ocaxlk1Y,1999.0,2,9,2011,South Park: Bigger Longer & Uncut,Killing Kenny,tt0158983\nroA5fvzJsho,2011.0,3,-1,2011,The Thing,You Could Be One of Those Things,tt0905372\nu6GTs78NHzQ,2011.0,4,-1,2011,The Thing,They're Inside,tt0905372\nW-qUR8qovy8,2011.0,1,-1,2011,Dream House,It's Just Your Reflection,tt1462041\nx0ce_01UW_Q,2011.0,2,-1,2011,Dream House,Who is Peter Ward?,tt1462041\nWpCGV48yiNQ,2011.0,3,-1,2011,Dream House,What is That Out There?,tt1462041\nDXSoxAHjqRg,2003.0,8,10,2011,How to Lose a Guy in 10 Days,He'll Do Anything,tt0251127\nEGa3R9VvDVs,1993.0,6,10,2011,Wayne's World 2,The Leprechaun,tt0108525\nTsIQj8gZeo0,1983.0,10,10,2011,Trading Places,It Was the Dukes,tt0086465\nMQEwJdhfddk,1992.0,4,10,2011,Wayne's World,Exciting Delaware,tt0105793\noxLuG0BYYwE,2003.0,1,10,2011,How to Lose a Guy in 10 Days,How It's Done,tt0251127\nIAsBghop-hw,1987.0,5,8,2011,Fatal Attraction,Alex Comes Over,tt0093010\nEv0Dm5qX0bU,1993.0,7,10,2011,Wayne's World 2,Fighting Cassandra's Dad,tt0108525\n6eWsFFQP0gA,1993.0,10,10,2011,Wayne's World 2,A Real Actor,tt0108525\nNfcmrwPNn7A,1989.0,6,10,2011,Major League,The Thrill of Defeat,tt0097815\nnPH9cWTJgdU,1989.0,10,10,2011,Major League,The Indians Win It,tt0097815\nP0t4ruBVxSA,2002.0,8,10,2011,Jackass: The Movie,Yellow Snow Cone,tt0322802\nQhDRkf_XGVw,2001.0,3,9,2011,Lara Croft: Tomb Raider,Defending the Manor,tt0146316\n5pJOdrchPlo,1980.0,5,10,2011,The Elephant Man,I've Tried So Hard to be Good,tt0080678\nAqWLMW73b6Y,1980.0,3,10,2011,The Elephant Man,I Want Him Back,tt0080678\nId6oS3L-D9A,1956.0,7,10,2011,The Ten Commandments,Moses Presents the Ten Commandments,tt0049833\nDXjOOS4zAq4,1956.0,4,10,2011,The Ten Commandments,You Will Be My Wife,tt0049833\n5Gc9pviBlJA,2001.0,1,9,2011,Lara Croft: Tomb Raider,The Training Robot,tt0146316\nUi8Y0Pqlg_4,2007.0,9,9,2011,Into the Wild,Final Moments,tt0758758\nSY_94CSMlyE,2007.0,5,9,2011,Into the Wild,Family Happiness,tt0758758\nkHq3y20HhRk,2009.0,1,10,2011,G.I. Joe: The Rise of Cobra,Cobra Strikes First,tt1046173\nTReOE4LKcT8,2009.0,4,10,2011,G.I. Joe: The Rise of Cobra,Paris Pursuit,tt1046173\n5ps3fGNzpd0,2009.0,6,10,2011,G.I. Joe: The Rise of Cobra,The Eiffel Tower Falls,tt1046173\ncg7wSv4ALRo,2009.0,7,10,2011,G.I. Joe: The Rise of Cobra,Snake Eyes vs. Storm Shadow,tt1046173\nXYumOva6Xr0,2009.0,9,10,2011,G.I. Joe: The Rise of Cobra,Yo Joe!,tt1046173\nrQbj9uvYL8I,1980.0,2,10,2011,Airplane!,Automatic Pilot,tt0080339\ny_7o1pAwhDA,1980.0,4,10,2011,Airplane!,Girl Scout Tussle,tt0080339\nFNkpIDBtC2c,1980.0,6,10,2011,Airplane!,Get a Hold of Yourself!,tt0080339\n3SLoG8B0HTg,1987.0,10,10,2011,Beverly Hills Cop 2,Lutz Gets Fired,tt0092644\nQse_uMLvdwI,1987.0,4,10,2011,Beverly Hills Cop 2,Final Confrontation,tt0092644\n36IxAWko46A,1987.0,5,10,2011,Beverly Hills Cop 2,F*** Rambo,tt0092644\nEbxlqGXQeEM,1996.0,10,10,2011,Beavis and Butt-Head Do America,Never Gonna Score,tt0115641\nyDq42VIYVnc,1996.0,3,10,2011,Beavis and Butt-Head Do America,Trunk Jumping,tt0115641\nY_SP86WfXZ0,1996.0,6,10,2011,Beavis and Butt-Head Do America,Do My Wife,tt0115641\nYQdnuL6YRBc,1961.0,7,9,2011,Breakfast at Tiffany's,Stealing for the Thrill,tt0054698\nUBU2McO7-GY,1987.0,2,10,2011,Beverly Hills Cop 2,Shooting Gallery,tt0092644\n1KkrlhoFbBM,2006.0,9,10,2011,An Inconvenient Truth,Greenland,tt0497116\nSykyfXBJgNg,1961.0,5,9,2011,Breakfast at Tiffany's,Ten Dollars at Tiffany's,tt0054698\n9tkDK2mZlOo,2006.0,5,10,2011,An Inconvenient Truth,Drastic Rise in CO2 Concentration,tt0497116\nOqVyRa1iuMc,2006.0,2,10,2011,An Inconvenient Truth,None Like it Hot,tt0497116\nNH6x4IDEGKU,1996.0,6,10,2011,Emma,Done with Mr. Elton,tt0116191\np43EnAUd3-w,2006.0,8,10,2011,Nacho Libre,Nacho is Revealed,tt0457510\nlc0UIhNuudQ,2006.0,7,10,2011,Nacho Libre,I Hate Orphans!,tt0457510\ntkRvLFdrbTU,2006.0,2,10,2011,Nacho Libre,Meeting Esqueleto,tt0457510\nr96GiSht1uQ,1996.0,8,12,2011,Walking and Talking,Flirting and Reminiscing,tt0118113\ntTc26ZemSGY,1996.0,6,12,2011,Walking and Talking,A Mole Problem,tt0118113\nnTOUiTegqrA,2006.0,10,10,2011,Nacho Libre,Encarnación,tt0457510\nhHWcoaM_59E,2006.0,1,10,2011,Nacho Libre,Buttload of Favorites,tt0457510\nAMQgbNK7fGs,2006.0,6,10,2011,Nacho Libre,Party for Ramses,tt0457510\nME2mnzfCdug,2006.0,4,10,2011,Nacho Libre,Tag Team Terrors,tt0457510\nEPweJNJOQz8,2006.0,9,10,2011,Nacho Libre,\"Big Kiss, Little Hug\",tt0457510\naoXg7SSmGyk,2006.0,5,10,2011,Nacho Libre,Listen to Ignacio,tt0457510\nh7wEE6Yx7IQ,2006.0,3,10,2011,Nacho Libre,Stretchy Pants,tt0457510\nJHkM4OUkF8E,1990.0,2,9,2011,Days of Thunder,Go to the Outside,tt0099371\nHOldh4ePgnA,1990.0,4,9,2011,Days of Thunder,Cole's Crash,tt0099371\nISs3m1aHZxY,1990.0,3,9,2011,Days of Thunder,Concealed Weapon,tt0099371\nZ9mzzABiQUo,1990.0,7,9,2011,Days of Thunder,Wheeler's Lowdown Racing,tt0099371\n0SSgv8t0QbM,1990.0,6,9,2011,Days of Thunder,A Very Thorough Physical,tt0099371\nguQnnPJgtUo,1990.0,5,9,2011,Days of Thunder,Not My Specialty,tt0099371\n0MoJuaS5x14,1999.0,7,9,2011,Election,McCallister Must Stop Tracy Now,tt0126886\ne77ybggTHHg,1990.0,8,9,2011,Days of Thunder,Drive Through It,tt0099371\nlKE3zh_Hxqw,1984.0,4,10,2011,Beverly Hills Cop,Foul-Mouthed?,tt0086960\nG45X6fSk1do,1990.0,9,9,2011,Days of Thunder,This Guy's Going Down,tt0099371\nJVZwoLZgrRs,1984.0,3,10,2011,Beverly Hills Cop,Thrown Out of a Window,tt0086960\nAd5ZJcmYc_k,1984.0,9,10,2011,Beverly Hills Cop,Shootout at Maitland's,tt0086960\n2dYyyQdjgLI,1984.0,10,10,2011,Beverly Hills Cop,Axel Gets His Man,tt0086960\nHmNJ03s2ZuM,1984.0,8,10,2011,Beverly Hills Cop,A Message for Victor,tt0086960\nUTIjIC00VwI,1984.0,1,10,2011,Beverly Hills Cop,Axel Gets a Room,tt0086960\nGHZWWFmaFcI,1984.0,2,10,2011,Beverly Hills Cop,Serge & Achmed,tt0086960\nycoe7us5bbM,1984.0,6,10,2011,Beverly Hills Cop,Customs Inspector,tt0086960\n8w_naC0saGI,1984.0,7,10,2011,Beverly Hills Cop,Letting It Flow,tt0086960\n6y-pdLyZPJ8,1984.0,5,10,2011,Beverly Hills Cop,A Couple of Bananas,tt0086960\nKnhDO1G0ieY,1992.0,1,9,2011,Patriot Games,London Ambush,tt0105112\ntB9_C5zQLZw,1992.0,2,9,2011,Patriot Games,Ryan's Shadow,tt0105112\nQiuXl1cPfrU,1992.0,5,9,2011,Patriot Games,\"Sorry, Dennis\",tt0105112\nt8loKEw-wlA,1992.0,6,9,2011,Patriot Games,Primary Target,tt0105112\nkrqNvqvhvp0,1992.0,7,9,2011,Patriot Games,Night Vision,tt0105112\nyisFmY4OAbs,1999.0,1,9,2011,Election,\"Apples, Oranges and Democracy\",tt0126886\n6u3GAQgZpww,1999.0,2,9,2011,Election,Tracy Flick Isn't Upset,tt0126886\nNj7HiMh778M,1992.0,8,9,2011,Patriot Games,Out of the Cellar,tt0105112\neh3TXsx8B40,1999.0,4,9,2011,Election,Who Cares About This Stupid ?,tt0126886\n0eJpmeoLXLg,1999.0,6,9,2011,Election,Pre- Prayers,tt0126886\nkvAByCIqoOM,1992.0,9,9,2011,Patriot Games,Speedboat Battle,tt0105112\nOYt6asKb5bw,1999.0,9,9,2011,Election,Seeing Tracy Again,tt0126886\nnV9U23YXgiY,1992.0,2,10,2011,Wayne's World,Wayne Speaks Cantonese,tt0105793\nFPc4QZqz4ek,1992.0,10,10,2011,Wayne's World,You Kiss Your Mother With That Mouth?,tt0105793\nCW0Yfk66UxE,1992.0,1,10,2011,Wayne's World,Wayne Has a Dream,tt0105793\nKjB6r-HDDI0,1992.0,6,10,2011,Wayne's World,I Will Not Bow to Any Sponsor,tt0105793\nKPxDoFbsvWA,1986.0,1,8,2011,Top Gun,Watch the Birdie,tt0092099\nvdHBsWXaHN8,1986.0,4,8,2011,Top Gun,Buzzing the Tower,tt0092099\nwUZxSf_P2r0,1986.0,3,8,2011,Top Gun,I Was Inverted,tt0092099\nWK--S8kuxOI,1992.0,9,10,2011,Wayne's World,Sphincter Boy,tt0105793\no1nS19OOD-U,1986.0,6,8,2011,Top Gun,A Confidence Problem,tt0092099\nfC976fuQm4E,1986.0,5,8,2011,Top Gun,Maverick vs. Viper,tt0092099\nuvFc0EPRSI4,1986.0,7,8,2011,Top Gun,Final Dogfight,tt0092099\nGSSXEGoO53Y,1997.0,5,9,2011,Event Horizon,Save Yourself from Hell,tt0119081\nrF6a1GG1taY,1997.0,7,9,2011,Event Horizon,Sucked Out,tt0119081\nrAchA32z2zM,1997.0,6,9,2011,Event Horizon,Pure Evil,tt0119081\n9JHi4K9XfzM,1997.0,1,9,2011,Event Horizon,Stasis Nightmare,tt0119081\nEHKfoWh8t6o,1997.0,2,9,2011,Event Horizon,The Core,tt0119081\n-nzW1T89qH4,1997.0,9,9,2011,Event Horizon,The  is Destroyed,tt0119081\nW8AmENQ7_ik,1997.0,3,9,2011,Event Horizon,Strange Manifestations,tt0119081\ngiiuqTdBSTc,1997.0,8,9,2011,Event Horizon,To Hell,tt0119081\n3LEa0FN1bf8,1997.0,4,9,2011,Event Horizon,Rescuing Baby Bear,tt0119081\nMg7RrLU3Uq8,2003.0,4,10,2011,How to Lose a Guy in 10 Days,Princess Sophia,tt0251127\nHcHdy_Vc1DY,2003.0,6,10,2011,How to Lose a Guy in 10 Days,Our Family Album,tt0251127\nz3dwJ734jbE,2003.0,2,10,2011,How to Lose a Guy in 10 Days,Mary Had a Little Lamb,tt0251127\ncHUML0EZ1BQ,1988.0,6,10,2011,Coming to America,Akeem Goes to the Barber,tt0094898\na_Txm9dQuhM,1988.0,3,10,2011,Coming to America,New Digs,tt0094898\ndI7M4Om2ITw,1988.0,7,10,2011,Coming to America,Akeem Talks Football,tt0094898\nm7z0sOBPx3g,1988.0,5,10,2011,Coming to America,Akeem Meets Lisa,tt0094898\nMd0LvQ9gANc,1988.0,9,10,2011,Coming to America,Semmi Writes Home,tt0094898\nzHjeOiB-cxY,1993.0,3,10,2011,Wayne's World 2,Scouting the Location,tt0108525\n9vvMKxDvAt8,1993.0,4,10,2011,Wayne's World 2,The Partial Ocular Albino,tt0108525\nExG7Ut6DJ1E,1988.0,4,10,2011,Coming to America,Miss Black Awareness Pageant,tt0094898\nf2ygGoHSuPQ,1988.0,1,10,2011,Coming to America,Sparring Session,tt0094898\nsZywE0AT1qY,1988.0,2,10,2011,Coming to America,The Old Men Discuss Boxing,tt0094898\nbOR38552MJA,1999.0,3,9,2011,South Park: Bigger Longer & Uncut,Blame Canada,tt0158983\n_E62a_RCtX4,1993.0,2,10,2011,Wayne's World 2,The Same Dream,tt0108525\ng9vPtCW9pJ8,1999.0,1,10,2011,Sleepy Hollow,Death of the Hessian Horseman,tt0162661\nrhtLoA3X21s,1993.0,8,10,2011,Wayne's World 2,Del's Plan for Waynestock,tt0108525\n6wJXBUfcIOE,1999.0,1,9,2011,South Park: Bigger Longer & Uncut,\"It's Easy, M'Kay\",tt0158983\n4WcOcgc3WN4,1999.0,5,9,2011,South Park: Bigger Longer & Uncut,Aboot Canadians,tt0158983\nxbga181nm84,1982.0,2,9,2011,48 Hrs.,Interrogating Luther,tt0083511\n1DNyLD2SRjA,1999.0,4,9,2011,South Park: Bigger Longer & Uncut,Terrance and Phillip on Conan,tt0158983\nkTk2jXiuo9s,1999.0,9,9,2011,South Park: Bigger Longer & Uncut,Dumping Saddam,tt0158983\nHrvHeKH9kLg,1982.0,3,9,2011,48 Hrs.,Dinner for Reggie,tt0083511\nIZQFJ6hZNJc,1988.0,8,10,2011,Coming to America,Unhappy Meal,tt0094898\nYg3w_8_fwIc,1987.0,1,8,2011,Fatal Attraction,Lying in the Park,tt0093010\nACV4Krf8JTQ,1988.0,10,10,2011,Coming to America,The King Has Entered the Building,tt0094898\n7msu2ugXGW8,1982.0,4,9,2011,48 Hrs.,Making A Bet,tt0083511\ns_CwatXdxUA,1946.0,4,9,2011,It's a Wonderful Life,Careful What You Wish For,tt0038650\nsJ9nOmRn6fg,1987.0,3,8,2011,Fatal Attraction,Bloody Farewell,tt0093010\nfBaXUdPo_2g,1987.0,2,8,2011,Fatal Attraction,A Married Man,tt0093010\nkvzIRuIg288,1982.0,6,9,2011,48 Hrs.,I Hate Rednecks,tt0083511\nSZ5YPfWeYzA,1987.0,4,8,2011,Fatal Attraction,Alex Is Pregnant,tt0093010\nwsSlB31dwiE,1982.0,7,9,2011,48 Hrs.,Fighting Dirty,tt0083511\nALGW3PA12XE,1982.0,8,9,2011,48 Hrs.,A Bus To Catch,tt0083511\nJS6Gw6NVgRg,1987.0,6,8,2011,Fatal Attraction,Not Going to Be Ignored,tt0093010\nFWEQfN39sTo,1982.0,9,9,2011,48 Hrs.,End of Story,tt0083511\n28C0A4CEUsc,1982.0,5,9,2011,48 Hrs.,Black Russian,tt0083511\necWhXP2jM28,1987.0,7,8,2011,Fatal Attraction,Boiled Bunny,tt0093010\nhd521kE7f0A,1987.0,8,8,2011,Fatal Attraction,Bathroom Brawl,tt0093010\npKEwvDFqMGw,1995.0,2,9,2011,Braveheart,Rescuing Murron,tt0112573\ngr_OpFxCx-A,1995.0,3,9,2011,Braveheart,They Will Never Take Our Freedom,tt0112573\nETcMNeJTfOs,1995.0,1,9,2011,Braveheart,Beautiful In Any Language,tt0112573\nPD5Imb7vWSc,1995.0,4,9,2011,Braveheart,Withstanding the Charge,tt0112573\nQJVsS-vIDdc,1995.0,5,9,2011,Braveheart,The Battle of Stirling,tt0112573\nRN7YPq8i4w0,1999.0,6,10,2011,Sleepy Hollow,The Horseman Emerges,tt0162661\n1KdjUNIcP8k,1995.0,6,9,2011,Braveheart,Revenge in the Night,tt0112573\nsa8E_rZcXho,1995.0,7,9,2011,Braveheart,The Love of a Princess,tt0112573\nX3mBsrFYwjk,1999.0,8,10,2011,Sleepy Hollow,Van Brunt's Last Battle,tt0162661\n2rha-6qG4OQ,1946.0,1,9,2011,It's a Wonderful Life,Pool Party,tt0038650\n2k0mUKGYUQE,1999.0,2,10,2011,Sleepy Hollow,The Devil's Fire,tt0162661\n31Q9JbHAzjA,1999.0,4,10,2011,Sleepy Hollow,Beheading the Magistrate,tt0162661\nkTXlnI1XaSY,1995.0,8,9,2011,Braveheart,To Really Live,tt0112573\nEcOENbnXxQ4,1999.0,5,10,2011,Sleepy Hollow,The Tree of the Dead,tt0162661\ni6zGEBhJMHA,1995.0,9,9,2011,Braveheart,Freedom!,tt0112573\n9fIrXo0raaU,1946.0,3,9,2011,It's a Wonderful Life,Angel Second Class,tt0038650\nSI1K-_VTFrQ,1999.0,3,10,2011,Sleepy Hollow,First Encounter on the Bridge,tt0162661\nTNQ76UyurLA,1946.0,5,9,2011,It's a Wonderful Life,A Great Gift,tt0038650\nShQp2Qp6o7s,1999.0,7,10,2011,Sleepy Hollow,Beheading the Killians,tt0162661\nttIN2nLcy6s,1993.0,1,8,2011,Indecent Proposal,Kiss the Dice,tt0107211\nX4xJLbsa4PQ,1946.0,6,9,2011,It's a Wonderful Life,Vanishing Act,tt0038650\n6SLDMMGzkyI,1946.0,7,9,2011,It's a Wonderful Life,Mary The Old Maid,tt0038650\nu56OqFjs1dg,1946.0,8,9,2011,It's a Wonderful Life,\"Back To Life, Back To Reality\",tt0038650\ndIUK_wn5If4,1999.0,10,10,2011,Sleepy Hollow,Carriage Battle,tt0162661\n4WNfrd5hsdI,1993.0,5,8,2011,Indecent Proposal,I Don't Trust You,tt0107211\nTSaU7qATRHM,1999.0,9,10,2011,Sleepy Hollow,Safe in the Church,tt0162661\nwJCqOhdzatA,1993.0,3,8,2011,Indecent Proposal,Never Negotiate Without Your Lawyer,tt0107211\nOfUV-F9jFro,1946.0,9,9,2011,It's a Wonderful Life,Every Time a Bell Rings an Angel Gets His Wings,tt0038650\n5rivvvWeYh4,1993.0,7,8,2011,Indecent Proposal,David Talks About the Past,tt0107211\nehdAEyAGBEc,1993.0,2,8,2011,Indecent Proposal,John's,tt0107211\nmklRbf1JoGY,1993.0,6,8,2011,Indecent Proposal,The Girl Who Got Away,tt0107211\nj6gLJ4_sfG8,1968.0,6,8,2011,Once Upon a Time in the West,What You're After,tt0064116\ngQubL9r0qAQ,1993.0,4,8,2011,Indecent Proposal,John Places a Bet,tt0107211\npHxvNgorTQA,1993.0,8,8,2011,Indecent Proposal,Always,tt0107211\nzZH3OD9d9Sc,1986.0,1,10,2011,Star Trek 4: The Voyage Home,The General Idea,tt0092007\nl7-rpI0RrQU,1975.0,2,10,2011,Three Days of the Condor,I Just Read Books,tt0073802\nsNJmfuEWR8w,1999.0,7,9,2011,South Park: Bigger Longer & Uncut,What Would Brian Boitano Do?,tt0158983\nJo4XXm8OUP4,1999.0,8,9,2011,South Park: Bigger Longer & Uncut,Up There,tt0158983\n26oRZCLHR1M,1999.0,6,9,2011,South Park: Bigger Longer & Uncut,The V-Chip,tt0158983\nLaIsEAR_R5Y,1975.0,5,10,2011,Three Days of the Condor,You Never Complained,tt0073802\n0u0P8j4vLyw,1975.0,6,10,2011,Three Days of the Condor,You're Sorry?,tt0073802\nRRJ1EPuYkZQ,1975.0,9,10,2011,Three Days of the Condor,Advice From An Assassin,tt0073802\nKJ4q3cWQPsM,1975.0,3,10,2011,Three Days of the Condor,Getting to Know Her Well,tt0073802\nIaqusi3cAAc,1975.0,4,10,2011,Three Days of the Condor,A Dangerous Package,tt0073802\n9w3E3eFMsLg,1975.0,10,10,2011,Three Days of the Condor,We Play Games,tt0073802\n8yDjtE3wmFs,1975.0,7,10,2011,Three Days of the Condor,Fine Qualities,tt0073802\nQQJDkZZaA00,1975.0,1,10,2011,Three Days of the Condor,Turner Calls For Help,tt0073802\nvkkM9YAJ-Ts,1983.0,2,10,2011,Trading Places,You Want Me to Break Something Else?,tt0086465\nKKzWTwJwrGc,1983.0,3,10,2011,Trading Places,Those Men Wanted to Have Sex with Me,tt0086465\nWUuTs5CXP3U,1977.0,3,9,2011,Saturday Night Fever,Rejected By Stephanie,tt0076666\nuI4fVgVVpiw,1983.0,4,10,2011,Trading Places,Pork Bellies Going Down,tt0086465\nWl_vyjME-ug,1977.0,2,9,2011,Saturday Night Fever,Tony Gets a Raise,tt0076666\n9B3TN2rEckQ,1983.0,6,10,2011,Trading Places,The S-Car Go,tt0086465\nV5ej5BJ55us,1980.0,2,10,2011,The Elephant Man,The Greatest Freak in the World,tt0080678\nCvl0iKbdV6A,1977.0,8,9,2011,Saturday Night Fever,Disco Dancing,tt0076666\nDKtjBqJ4NxA,1983.0,1,10,2011,Trading Places,I Can See!,tt0086465\nse9hqOIp810,1977.0,9,9,2011,Saturday Night Fever,Slipping Away,tt0076666\ngADayU4DP9U,1980.0,1,10,2011,The Elephant Man,The Terrible Elephant Man,tt0080678\nwjkdynBFHuQ,1983.0,8,10,2011,Trading Places,The One Dollar Bet,tt0086465\nPT-2kB0dajE,1980.0,7,10,2011,The Elephant Man,Loving Kindness,tt0080678\nZdN6HbD0paY,1982.0,1,9,2011,48 Hrs.,We Ain't Partners,tt0083511\nW2Q27LruEnA,2003.0,7,10,2011,How to Lose a Guy in 10 Days,Mental Person,tt0251127\n9PpBLxJLihI,2003.0,3,10,2011,How to Lose a Guy in 10 Days,He Thinks I'm Fat,tt0251127\nAkOcZ0S8vDg,2003.0,5,10,2011,How to Lose a Guy in 10 Days,Work Visit,tt0251127\nnVhrWyZtYFk,2003.0,10,10,2011,How to Lose a Guy in 10 Days,Calling Her Bluff,tt0251127\nBiQ0NRRraIc,2003.0,9,10,2011,How to Lose a Guy in 10 Days,Losing Andie,tt0251127\nuAERYfeiYBc,1946.0,2,9,2011,It's a Wonderful Life,Lasso the Moon,tt0038650\nAKOtvcIssZk,1992.0,3,9,2011,Patriot Games,Road Rage,tt0105112\n7mtTvR0Rg_8,1992.0,4,9,2011,Patriot Games,Jack's Mission,tt0105112\n9s-a1vp4LLk,1986.0,8,8,2011,Top Gun,You Can Be My Wingman Anytime,tt0092099\njLo7tHDHgOc,1983.0,5,10,2011,Trading Places,Haggling at the Pawnshop,tt0086465\nTVOIig2xLq8,1986.0,8,10,2011,Star Trek 4: The Voyage Home,Interrogating Chekov,tt0092007\nOd4nSd9AVH8,1983.0,9,10,2011,Trading Places,Down & Out Santa,tt0086465\n02Or-Hx3yqc,1986.0,9,10,2011,Star Trek 4: The Voyage Home,Operation Chekov,tt0092007\np890hIa1w9k,1986.0,2,8,2011,Top Gun,Arrogant Pilot,tt0092099\n8aXqgoiVb8E,1993.0,9,10,2011,Wayne's World 2,Handsome Dan,tt0108525\n52FdiECWnhQ,1993.0,5,10,2011,Wayne's World 2,Tighty Whiteys,tt0108525\ngXQhdB1y674,1993.0,1,10,2011,Wayne's World 2,Fast Food Order,tt0108525\n4m2WutlqBk0,1992.0,3,10,2011,Wayne's World,Baberaham Lincoln,tt0105793\nW4xO0k9LcIU,1994.0,1,9,2011,Clear and Present Danger,Sniper Training,tt0109444\n8Qi3JERmk9E,1992.0,5,10,2011,Wayne's World,Garth Likes to Play,tt0105793\n74M0hPAeFHs,1992.0,7,10,2011,Wayne's World,The Phases of Fame,tt0105793\no5FT3IGXtAk,1992.0,8,10,2011,Wayne's World,Alice's History Lesson,tt0105793\nAGk2Hr3GcS8,1990.0,1,9,2011,Days of Thunder,Dropping the Hammer,tt0099371\ndKsDjpKr2Mk,1994.0,7,9,2011,Clear and Present Danger,If I Go Down You're Going With Me!,tt0109444\ni7tGEEWQIhQ,1994.0,9,9,2011,Clear and Present Danger,Presidential Cover-up,tt0109444\nHppKwvQMZ4M,1994.0,5,9,2011,Clear and Present Danger,You Gave Your Word,tt0109444\nZJlmYy-mAZY,1994.0,3,9,2011,Clear and Present Danger,Motorcade Ambush,tt0109444\n61AWnIZrT5g,1984.0,5,9,2011,Top Secret!,Compact Car,tt0088286\njA0RnDQiFbQ,1999.0,5,9,2011,Election,Slanderous Accusations,tt0126886\n5XP3MonWebI,1994.0,4,9,2011,Clear and Present Danger,Bombing the Cartel,tt0109444\nT7pci4SIGCo,1994.0,2,9,2011,Clear and Present Danger,Blowing Up the Bunker,tt0109444\nPqtjbWJPIgQ,1994.0,8,9,2011,Clear and Present Danger,Two Million Dollar Helicopter,tt0109444\nJ07_XVy9Hns,1999.0,3,9,2011,Election,Tammy Runs for President,tt0126886\n0668UNhYjXg,1994.0,6,9,2011,Clear and Present Danger,Computer Theft is a Crime,tt0109444\nwPSEC3PpLuM,1999.0,8,9,2011,Election,All Over for McAllister,tt0126886\nRH3I-IE0Xhw,1989.0,1,10,2011,Major League,I've Been Cut Already?,tt0097815\nbBaNdHqC_Yo,1989.0,2,10,2011,Major League,Nice Velocity,tt0097815\ng_wc9JvTXGc,1989.0,7,10,2011,Major League,Just a Bit Outside,tt0097815\nrBsvuoQMmuo,1989.0,4,10,2011,Major League,Spring Training Highlights,tt0097815\nXDZ_lSJjgvk,1989.0,9,10,2011,Major League,We're Contenders Now,tt0097815\nyBBKcecvEcM,1989.0,8,10,2011,Major League,The Cleveland Wave,tt0097815\nkL4cEH2JdQQ,1989.0,5,10,2011,Major League,Picked to Finish Last,tt0097815\njMaeuWl4qHM,2002.0,2,10,2011,Jackass: The Movie,The Shoplifter,tt0322802\nhGOHE1zqEmY,2002.0,10,10,2011,Jackass: The Movie,Toy Car Up the Butt,tt0322802\nPdjgdb-OxY8,1989.0,3,10,2011,Major League,You Put Snot on the Ball?,tt0097815\nLWWG1eKmylY,2002.0,1,10,2011,Jackass: The Movie,Alligator Tightrope,tt0322802\n7C1Pr4AU2wc,2002.0,9,10,2011,Jackass: The Movie,Golf Course Airhorn,tt0322802\nDrva4gp66lc,2002.0,6,10,2011,Jackass: The Movie,April's Alligator,tt0322802\nt_lvc5iBnNg,2002.0,7,10,2011,Jackass: The Movie,Grinding the Rail,tt0322802\nsSHxFSaOV-o,2002.0,5,10,2011,Jackass: The Movie,Wasabi Snooters,tt0322802\nezj13E-cX9I,2002.0,4,10,2011,Jackass: The Movie,Rocket Skates,tt0322802\nJxRj80eLkMc,1980.0,4,10,2011,The Elephant Man,The Lord is My Shepherd,tt0080678\nf783E8Zi8Q4,1980.0,6,10,2011,The Elephant Man,People Are Frightened By What They Don't Understand,tt0080678\nuqg7Ow4SNk8,1980.0,10,10,2011,The Elephant Man,I Am a Human Being!,tt0080678\nqj_NSmG9m5E,1980.0,8,10,2011,The Elephant Man,Why Did I Do It?,tt0080678\npBNKarJukms,2001.0,2,9,2011,Lara Croft: Tomb Raider,A Lady Should Be Modest,tt0146316\nniFndjwElIY,1980.0,9,10,2011,The Elephant Man,This is My Home,tt0080678\nh1-T9LYq1hI,2001.0,6,9,2011,Lara Croft: Tomb Raider,Escaping the Temple,tt0146316\nnzjEYhUtRGc,2001.0,4,9,2011,Lara Croft: Tomb Raider,Garage Fight,tt0146316\n_fJArvSVqEo,2001.0,8,9,2011,Lara Croft: Tomb Raider,Father Daughter Reunion,tt0146316\n2Wlur8mxYP0,2001.0,5,9,2011,Lara Croft: Tomb Raider,Army of Statues,tt0146316\nfGkSjNHEecA,2001.0,7,9,2011,Lara Croft: Tomb Raider,Race to the Sun,tt0146316\n4cJs-f3NC6s,1956.0,8,10,2011,The Ten Commandments,Moses is Arrested,tt0049833\ntnhW2iYL25k,2001.0,9,9,2011,Lara Croft: Tomb Raider,No Guns,tt0146316\n92ygYJw9CSE,1956.0,2,10,2011,The Ten Commandments,Baby Moses Sent Down the River,tt0049833\nzUm6rC0o7Po,1956.0,10,10,2011,The Ten Commandments,The Burning Bush,tt0049833\nMnBarCQ9BE4,1956.0,5,10,2011,The Ten Commandments,Moses Meets His Real Mother,tt0049833\nQrRTUOebEpU,1956.0,9,10,2011,The Ten Commandments,Moses is Banished,tt0049833\nahkwQhQZWG8,1956.0,1,10,2011,The Ten Commandments,Let My People Go,tt0049833\nxRtjf4AE2-4,2007.0,4,9,2011,Into the Wild,Do Your Folks Know Where You Are?,tt0758758\nOqCTq3EeDcY,1956.0,6,10,2011,The Ten Commandments,Moses Parts the Sea,tt0049833\nOYeox3LLQ08,1956.0,3,10,2011,The Ten Commandments,Moses Turns Water Into Blood,tt0049833\nI70sIrfz0_c,2007.0,7,9,2011,Into the Wild,Weakest Condition of Life,tt0758758\nNL4WWmwdV6g,2007.0,3,9,2011,Into the Wild,Tracy T.,tt0758758\ndZbWmnVOhbA,2007.0,2,9,2011,Into the Wild,On the Beach,tt0758758\nVdlxHA_WLn4,1977.0,4,9,2011,Saturday Night Fever,Brother Frankie,tt0076666\nAhAHDaOGHFI,2007.0,6,9,2011,Into the Wild,Sitting On My Butt,tt0758758\n1U_GoiFy6kw,2007.0,8,9,2011,Into the Wild,Let Me Adopt You?,tt0758758\nGSruhwZsc9c,1977.0,1,9,2011,Saturday Night Fever,Watch the Hair,tt0076666\nmzZgTmwmkfo,1977.0,5,9,2011,Saturday Night Fever,Nothing Personal,tt0076666\nlyuwBW9lNa8,1968.0,1,8,2011,Once Upon a Time in the West,Two Horses Too Many,tt0064116\nvyQHWSbBCcQ,1977.0,7,9,2011,Saturday Night Fever,Settling the Score,tt0076666\n_ptjc9Vono4,1968.0,2,8,2011,Once Upon a Time in the West,McBain Family Slaughter,tt0064116\nvrf1MjmWFRY,1977.0,6,9,2011,Saturday Night Fever,Don't Worry 'Bout Nothin',tt0076666\n_kD54-q1uFM,1968.0,7,8,2011,Once Upon a Time in the West,Harmonica's Flashback,tt0064116\nVtPoKS5cCL8,1968.0,3,8,2011,Once Upon a Time in the West,\"He Not Only Plays, He Can Shoot Too\",tt0064116\n9vUcfymkjNY,1968.0,5,8,2011,Once Upon a Time in the West,That Strange Sound Right Now,tt0064116\nftmRf0AY8Co,1968.0,4,8,2011,Once Upon a Time in the West,A Man's Hands All Over You,tt0064116\n_JZ7U3FsOJ4,2009.0,3,10,2011,G.I. Joe: The Rise of Cobra,The Baroness Escapes,tt1046173\n98wG4OA6iLw,1968.0,8,8,2011,Once Upon a Time in the West,Frank's Death,tt0064116\niNUv6pnKd5s,2009.0,5,10,2011,G.I. Joe: The Rise of Cobra,He Never Gives Up,tt1046173\nSW2HRaFUXV4,2009.0,2,10,2011,G.I. Joe: The Rise of Cobra,G.I. Joe to the Rescue!,tt1046173\nk-Rg51azVlg,2009.0,8,10,2011,G.I. Joe: The Rise of Cobra,Into the Ionosphere,tt1046173\ng0j2dVuhr6s,1980.0,5,10,2011,Airplane!,I Speak Jive,tt0080339\nvkdH0nuDWX4,1980.0,10,10,2011,Airplane!,S**t Hits the Fan,tt0080339\na5QBuJla5do,1980.0,7,10,2011,Airplane!,Crash Positions,tt0080339\nBpw7M2Heuk0,1998.0,1,7,2011,A Night at the Roxbury,Living with Mom & Dad,tt0120770\nAZ2EPeq1TK0,1980.0,1,10,2011,Airplane!,Red Zone vs. White Zone,tt0080339\n6LOwktvZlCc,1998.0,2,7,2011,A Night at the Roxbury,Life in the Fast Lane,tt0120770\nn2A194yTWoQ,1980.0,3,10,2011,Airplane!,Have You Ever Seen a Grown Man Naked?,tt0080339\nNfDUkR3DOFw,1980.0,8,10,2011,Airplane!,Roger Roger,tt0080339\ngMBEqbV0mw4,1998.0,3,7,2011,A Night at the Roxbury,Doug is Like a Fax Machine,tt0120770\n1nLc8ZZUKCg,1998.0,7,7,2011,A Night at the Roxbury,Steve & Emily's Wedding,tt0120770\nncDQvy5GoK8,1998.0,5,7,2011,A Night at the Roxbury,Moving Way Too Fast,tt0120770\nLs9p2CEVQMo,1998.0,4,7,2011,A Night at the Roxbury,Ugly Pathetic Losers,tt0120770\ns6pAWtuEIR8,1998.0,6,7,2011,A Night at the Roxbury,Perfectly Normal Feelings,tt0120770\nnGSrqmJr1Y0,1997.0,3,8,2011,Breakdown,Jeff Breaks Free,tt0118771\nOq3cGgqbWG8,1987.0,7,10,2011,Beverly Hills Cop 2,Deep Deep Undercover,tt0092644\n5AsYaSut428,1987.0,8,10,2011,Beverly Hills Cop 2,You Calling Me a Cop?,tt0092644\nwXf_eaQcSdM,1987.0,6,10,2011,Beverly Hills Cop 2,Conning Sidney Bernstein,tt0092644\nMdQC-DD9fz4,1996.0,7,10,2011,Beavis and Butt-Head Do America,Slots On A Plane,tt0115641\nJCnZaM2qKYE,1987.0,1,10,2011,Beverly Hills Cop 2,Johnny Wishbone,tt0092644\nfqtFUIQ7oWA,1996.0,8,10,2011,Beavis and Butt-Head Do America,Buttzilla,tt0115641\nXvVhKYmr8cE,1996.0,1,10,2011,Beavis and Butt-Head Do America,\"Entertain Us, Anus\",tt0115641\ngoikm-zX9r8,1982.0,5,6,2011,An Officer and a Gentleman,Carried Away,tt0084434\n6lGs-tXWpR4,1982.0,1,6,2011,An Officer and a Gentleman,Steers and Queers,tt0084434\nvuuTS_WNw5w,1982.0,3,6,2011,An Officer and a Gentleman,Mayo-nnaise,tt0084434\nnXJxxahiC3A,1982.0,6,6,2011,An Officer and a Gentleman,\"You Ready to Quit Now, Mayo?\",tt0084434\naU-Qp-5TsB4,1982.0,2,6,2011,An Officer and a Gentleman,Okie From Muskogee,tt0084434\n6Q2rF2uAH6g,1988.0,2,7,2011,Big Top Pee-wee,Agriculture 101,tt0094744\nMCkKihQrNA4,1988.0,4,7,2011,Big Top Pee-wee,Pee-Wee Gets His Way,tt0094744\n6g2JN2PrHJg,1982.0,4,6,2011,An Officer and a Gentleman,I Got Nowhere Else to Go!,tt0084434\nuirBWk-qd9A,1961.0,3,9,2011,Breakfast at Tiffany's,Moon River,tt0054698\nDWoQcfvV1Zw,1988.0,6,7,2011,Big Top Pee-wee,Big Top Big Finale,tt0094744\niTiWC8GpOgM,1988.0,3,7,2011,Big Top Pee-wee,Picnic With Winnie,tt0094744\nAwgrZd_BjtE,1988.0,1,7,2011,Big Top Pee-wee,Pee-Wee's Introduction,tt0094744\n_3K4VtyM3xg,1988.0,7,7,2011,Big Top Pee-wee,A Long Kiss,tt0094744\nkWoC8yYqPJk,1996.0,5,10,2011,Beavis and Butt-Head Do America,Some People Are So Dumb,tt0115641\naSUmLsp97mE,1988.0,5,7,2011,Big Top Pee-wee,Gina Takes Pee Wee's Breath Away,tt0094744\nknL5zY1LRqw,1996.0,2,10,2011,Beavis and Butt-Head Do America,At the White House,tt0115641\nNXG6CKgSNdc,1987.0,3,10,2011,Beverly Hills Cop 2,Dangerous Delivery,tt0092644\neN4fDGHpf_c,1996.0,4,10,2011,Beavis and Butt-Head Do America,Desert Flashbacks,tt0115641\nYkjmtfQVzWU,1996.0,9,10,2011,Beavis and Butt-Head Do America,American Heroes,tt0115641\no4Dly22Kcfs,1997.0,2,8,2011,Breakdown,What Do You Want?,tt0118771\nfRCKKlTNxt8,1997.0,1,8,2011,Breakdown,I Want My Wife Back,tt0118771\n0lInUr7VgCM,1997.0,8,8,2011,Breakdown,Truck to the Face,tt0118771\nZlFSjq7eU4Y,1997.0,4,8,2011,Breakdown,Earl Shoots the Sheriff,tt0118771\nr-zlkOg6_Zw,1987.0,9,10,2011,Beverly Hills Cop 2,Rap Coalition of America,tt0092644\n2YNlWDv95EY,1997.0,5,8,2011,Breakdown,Give Me the Key,tt0118771\nrVFi-yeTe5g,1961.0,6,9,2011,Breakfast at Tiffany's,Cracker Jack Prizes,tt0054698\nfL4j9mZfUdg,1961.0,9,9,2011,Breakfast at Tiffany's,Kissing in the Rain,tt0054698\nnpwnO-yPp8g,1997.0,6,8,2011,Breakdown,Jeff Rescues Amy,tt0118771\nPMVqjEj9eKI,1961.0,4,9,2011,Breakfast at Tiffany's,Wild Things,tt0054698\naMBtKhTlQHk,1997.0,7,8,2011,Breakdown,Truck Chase,tt0118771\nNXMarwAusY4,2006.0,1,10,2011,An Inconvenient Truth,Science of Global Warming,tt0497116\nL_TvaJulWx0,1961.0,8,9,2011,Breakfast at Tiffany's,The Only Chance at Real Happiness,tt0054698\nxtyieNg18O0,2006.0,3,10,2011,An Inconvenient Truth,Weather Balloons,tt0497116\nyRLCUdWuyng,2006.0,8,10,2011,An Inconvenient Truth,Disease Emergence,tt0497116\nFzQ0GeLVLhk,2006.0,10,10,2011,An Inconvenient Truth,U.S. Contribution to Global Warming,tt0497116\n6hFxG-8I0Go,2006.0,4,10,2011,An Inconvenient Truth,Glaciers,tt0497116\nLzx24hw_K5I,2006.0,6,10,2011,An Inconvenient Truth,Hurricane Katrina,tt0497116\nYf7MT1p1VNI,1995.0,1,9,2011,Clueless,R.S.V.P.,tt0112697\nvTFuGHWTIqI,2006.0,7,10,2011,An Inconvenient Truth,Arctic Ice Caps,tt0497116\nTDrGHP9Z8vw,1995.0,8,9,2011,Clueless,Physical Education,tt0112697\nm8-_aJ1BiFE,1995.0,3,9,2011,Clueless,Travis' Acceptance Speech,tt0112697\nQPzZIJ-4Cq4,1995.0,2,9,2011,Clueless,I'll Call You,tt0112697\n0_ArO8UCfyk,1995.0,9,9,2011,Clueless,Josh Kisses Cher,tt0112697\niuL2loyB1bk,1995.0,4,9,2011,Clueless,Christian is a Cake Boy,tt0112697\nh9jsnAD4aNw,1986.0,4,10,2011,Gung Ho,Morning Exercises,tt0091159\nlW2JBJSaXUI,1995.0,5,9,2011,Clueless,Freeway Freakout,tt0112697\nOm3C1EpHLGs,1986.0,10,10,2011,Gung Ho,Hunt's New Car,tt0091159\nHzAzwbkW7tw,1986.0,7,10,2011,Gung Ho,Cleanup in Aisle Three,tt0091159\nmqkqDSAIaBY,1997.0,1,9,2011,Good Burger,Burger Dream,tt0119215\nKlWlhyX6rb0,1986.0,3,10,2011,Gung Ho,The Game Is Won in the Fourth Quarter,tt0091159\n4PXcUkIkulo,1997.0,5,9,2011,Good Burger,Dexter's a Chicken,tt0119215\njzasSSMjsxY,1997.0,4,9,2011,Good Burger,Secret to the Sauce,tt0119215\n4t8bAQ-cGZM,1997.0,3,9,2011,Good Burger,Mondo Idiots,tt0119215\numIEp9WZI9E,1997.0,2,9,2011,Good Burger,Nothing is Something,tt0119215\ndvmqIBOExp8,1992.0,5,10,2011,Leap of Faith,Acting Like a Loser,tt0104695\nsRk8Aentzic,1997.0,8,9,2011,Good Burger,Mondo Demise,tt0119215\ndXj2MnkN2nA,1997.0,6,9,2011,Good Burger,Big Order,tt0119215\nEwSSmKP7ADQ,1997.0,7,9,2011,Good Burger,Ed Talks to Dogs,tt0119215\nJlaTtF1rdVo,2002.0,2,8,2011,Crossroads,Time Capsule,tt0275022\nlAlJRP1W_rU,1992.0,9,10,2011,Leap of Faith,Why'd You Make So Many Suckers?,tt0104695\nvWNDQxvY3iU,1992.0,2,10,2011,Leap of Faith,Supercharged Grenade Launcher of Love,tt0104695\nesHt1mAYF-g,1996.0,9,9,2011,The First Wives Club,Battle of the Insults,tt0116313\nt8HQInlblys,1986.0,6,7,2011,Pretty in Pink,Blane Asks Andie,tt0091790\nSOBvUyimDo0,1997.0,9,9,2011,Good Burger,Hard to Say Goodbye,tt0119215\njrf263yJwic,2005.0,8,10,2011,Elizabethtown,You Failed,tt0368709\nuBf-pbxHb7Y,1986.0,2,7,2011,Pretty in Pink,Flaming Thighs,tt0091790\nC2pUVmGEEeM,2005.0,1,10,2011,Elizabethtown,Nobody's Substitute,tt0368709\ninrI2qvps58,2005.0,7,10,2011,Elizabethtown,Billion-Dollar Failure,tt0368709\n87idpAngKc0,2005.0,5,10,2011,Elizabethtown,Three-Way Call,tt0368709\nv8c2XZdCS_A,2006.0,3,10,2011,The Foot Fist Way,Ju-jitsu Sucks,tt0492619\no1SrrJNjIh8,2005.0,4,10,2011,Elizabethtown,Then I Felt Something Else,tt0368709\npYI0bXZVZek,2006.0,10,10,2011,The Foot Fist Way,I'm Relieving Myself,tt0492619\nuCV1-C_0vC8,2005.0,6,10,2011,Elizabethtown,Son of a Mitch,tt0368709\nlHtMdj1rZks,1984.0,1,7,2011,Footloose,Ariel Likes Ren,tt0087277\nySEkuf94my4,1984.0,9,9,2011,Top Secret!,Nick The Ambassador,tt0088286\nKSZwlMDSOvY,1984.0,3,9,2011,Top Secret!,Some Bad Movie,tt0088286\nqjhh_5PMBZs,1984.0,1,9,2011,Top Secret!,Nick's Reprieve,tt0088286\nvPB2g1y2VFk,1984.0,4,9,2011,Top Secret!,What Phony Dog Poo?,tt0088286\nJe4QCA5KCuc,1988.0,3,10,2011,Scrooged,Towels for Christmas,tt0096061\n-NkNYd_ku_8,1968.0,2,9,2011,Romeo and Juliet,Give Me My Sin Again,tt0063518\ngprLI38JwQ0,1988.0,1,10,2011,Scrooged,I Have to Kill All of You,tt0096061\n-RBjiJto4hc,1999.0,10,10,2011,Superstar,!,tt0167427\n4QagAGmJcnE,2003.0,10,10,2011,The School of Rock,Wound Too Tight,tt0332379\nAk1dPU8uXiE,1988.0,8,10,2011,Scrooged,The Truth is Painful,tt0096061\nmvmAa1cYZK4,1988.0,2,10,2011,Scrooged,Marketing With Terror,tt0096061\nVc_4eoSHwK8,1988.0,4,10,2011,Scrooged,A Visit from Lew,tt0096061\n-MEOfLvOuas,1984.0,7,9,2011,Top Secret!,The Cow Plan,tt0088286\nGeOcsY8foxI,2001.0,9,9,2011,Vanilla Sky,Where is Sofia?,tt0259711\niVoG7CivnH0,2000.0,3,9,2011,Shaft,Meeting Peoples,tt0162650\nyjlZPv-37h0,1993.0,6,7,2011,What's Eating Gilbert Grape,Burger Barn!,tt0108550\nMfRi-a8hPh0,1984.0,8,9,2011,Top Secret!,Underwater Barfight,tt0088286\nOWYSE2bKbNo,2000.0,1,8,2011,Wonder Boys,Good Boy Poe,tt0185014\n6UV_5HvpmgY,2003.0,4,10,2011,The School of Rock,The Rock Band Project,tt0332379\n_xiz8CnP1-0,2003.0,5,10,2011,The School of Rock,New Schedule,tt0332379\n5ut37zda30I,2001.0,1,9,2011,Vanilla Sky,Sofia's Ability,tt0259711\n5gMuofAdW6A,2001.0,2,9,2011,Vanilla Sky,Citizen Dildo,tt0259711\np2esJ_ypn7Y,2007.0,8,9,2011,Zodiac,The Most Dangerous Game,tt0443706\nctTSLWXE58o,2003.0,8,10,2011,The School of Rock,Stick-it-to-the-man-eosis,tt0332379\nUstq_iSIqgQ,1980.0,6,9,2011,Urban Cowboy,Swaller Pride,tt0081696\nK4czoAgsH-0,1987.0,5,6,2011,Some Kind of Wonderful,She Doesn't Love You,tt0094006\nlD1XDCbhtn0,1996.0,1,9,2011,The First Wives Club,Hit Me!,tt0116313\naPrURpNEtkg,1996.0,2,9,2011,The First Wives Club,Youth and Beauty,tt0116313\nYTds2jCQHKA,1987.0,3,6,2011,Some Kind of Wonderful,Hardy is Over,tt0094006\noQAY2uslGuI,1997.0,2,7,2011,The Rainmaker,Unlicensed,tt0119978\nTpOPvupzWow,1997.0,7,7,2011,The Rainmaker,Downsizing,tt0119978\nNXvcleOF798,1997.0,6,7,2011,The Rainmaker,Rudy's Closing Argument,tt0119978\nEyh5RlXHBLU,1991.0,3,10,2011,Necessary Roughness,The Big Whistle,tt0102517\np-Kyr2Ibq3c,1997.0,3,7,2011,The Rainmaker,Guess Who Died Last Night?,tt0119978\nc9xahfssbQg,1968.0,2,8,2011,The Odd Couple,Felix Crying in Bathroom,tt0063374\n_ZJUuDLqjzU,1994.0,10,10,2011,Naked Gun 33 1/3: The Final Insult,Best Picture,tt0110622\nGtV5-2QXj9Y,1968.0,3,8,2011,The Odd Couple,Break the Lousy Cup!,tt0063374\nMw0IakmQri0,1991.0,8,10,2011,The Addams Family,The Mamushka Dance,tt0101272\ng-Yufp_dafk,1968.0,5,8,2011,The Odd Couple,Stepping on the Vacuum Cord,tt0063374\nf_5nHV8FJyI,1968.0,6,8,2011,The Odd Couple,Clearing Sinuses,tt0063374\nhdW1BlDtcyU,1985.0,1,9,2011,Witness,It's Over,tt0090329\nE4s5mJQr94E,2005.0,4,9,2011,The Longest Yard,Prison Cheerleaders,tt0398165\nJ215p0P-ieA,1985.0,5,9,2011,Witness,Murder,tt0090329\n_TRUBZVUg8k,2001.0,3,9,2011,Vanilla Sky,Almost Worthy Dying For,tt0259711\nTDoj_T5cYhE,1985.0,2,9,2011,Witness,Ingrained,tt0090329\nltwRv-C1EFQ,1983.0,7,9,2011,Terms of Endearment,You Do Bring Out the Devil in Me,tt0086425\nWsPcC5TGxlA,1999.0,9,10,2011,Superstar,You Are Your Own Rainbow,tt0167427\niKqGXeX9LhQ,2004.0,7,10,2011,Team America: World Police,Gary Pukes Forever,tt0372588\nQf8im5NX7JE,1995.0,4,10,2011,The Brady Bunch Movie,Marsha's New Hairdo,tt0112572\nI3Mg_5wqewU,1953.0,5,10,2011,Roman Holiday,The Morning After,tt0046250\nNQ-8IuUkJJc,2001.0,4,10,2011,Zoolander,Center For Kids Who Can't Read Good,tt0196229\nfh1Y30QwRGE,2007.0,4,9,2011,Zodiac,We're Not in Anything Together,tt0443706\nTmoeZHnOJKA,2004.0,2,10,2011,Team America: World Police,America F*** Yeah,tt0372588\nnxHTPahkN6M,1986.0,3,7,2011,Pretty in Pink,Andie Confronts Her Father,tt0091790\n17dU___xcdA,1986.0,1,7,2011,Pretty in Pink,Bathroom Inspection,tt0091790\nnoq0Lb6lVEI,1996.0,8,9,2011,The First Wives Club,Social Climb is On The Rise,tt0116313\nWv_JTjYYaQI,2001.0,1,10,2011,Zoolander,Earth To...,tt0196229\nhA0OlCQLC0Q,1986.0,4,7,2011,Pretty in Pink,Duckie Takes A Stand,tt0091790\nw-DFg1aS_2E,2000.0,6,6,2011,The Ladies Man,Leon Confesses,tt0213790\nitdD328hLuQ,2000.0,3,6,2011,The Ladies Man,Leon's Demo Tape,tt0213790\nNIrF-rsXWJM,1983.0,6,9,2011,Terms of Endearment,Beach Ride,tt0086425\n7n1uwzYOBa0,1981.0,2,9,2011,Mommie Dearest,Christina Stands Up To Mother,tt0082766\nYYSAcTkd5B8,1983.0,8,9,2011,Terms of Endearment,I'm the Wrong Kind of Man,tt0086425\n-wSYsQS2-NU,2000.0,2,6,2011,The Ladies Man,Wrestling Attitude,tt0213790\nGxQPnTqPeVM,1983.0,5,9,2011,Terms of Endearment,Emma is Suspicious,tt0086425\noCDk1jDXZnM,1983.0,3,9,2011,Terms of Endearment,Aurora Has a Drink,tt0086425\nhDH1ilg9NMU,1997.0,4,7,2011,The Rainmaker,Miss Birdie's Beneficiary,tt0119978\nJO-L1PjLp5M,2000.0,4,9,2011,Shaft,Million Dollar Bailout,tt0162650\nyRess0-DpRk,1993.0,2,7,2011,What's Eating Gilbert Grape,Praying Mantis,tt0108550\nvKLbd6LeUv8,1993.0,1,7,2011,What's Eating Gilbert Grape,No One's Sorry,tt0108550\n_c97olSX4hE,2006.0,7,10,2011,The Foot Fist Way,Mike McAlister,tt0492619\n3lz4BuydE-Y,1953.0,3,10,2011,Roman Holiday,Cherished Memory,tt0046250\n73ZsDdK0sTI,1988.0,10,10,2011,The Naked Gun: From the Files of Police Squad!,National Anthem,tt0095705\n6af1dAc9rXo,1953.0,2,10,2011,Roman Holiday,The Mouth of Truth,tt0046250\nVdG34y8kUyc,2000.0,1,9,2011,Shaft,Gimme Your Shoes,tt0162650\nQQOWp3tLb2s,2004.0,8,10,2011,Team America: World Police,That's Why They Call it Acting,tt0372588\nq5rs99ZpXCM,2000.0,4,8,2011,Wonder Boys,I Take it Back...Shoot Him,tt0185014\n9DLcDirhBAk,2000.0,2,8,2011,Wonder Boys,James Figures Out the Affair,tt0185014\nI8PLjzTzy08,2000.0,5,8,2011,Wonder Boys,You Didn't Really Make Any Choices,tt0185014\nxCnFME3JqIk,2000.0,2,9,2011,Shaft,Mano a Mano,tt0162650\nO6DFHh2XxLk,1991.0,7,10,2011,The Naked Gun 2½: The Smell of Fear,Wheelchair Mayhem,tt0102510\nJBGkwf707Ls,2000.0,3,8,2011,Wonder Boys,I'm Not Letting You Sleep at the Bus Station,tt0185014\nTYEvhdLuW-U,1975.0,8,10,2011,Three Days of the Condor,All About Oil,tt0073802\nrJWLdQ9vylA,1991.0,2,10,2011,The Naked Gun 2½: The Smell of Fear,Interrogating Almost Dead Guys,tt0102510\nAlV_R7v4DFI,2000.0,7,8,2011,Wonder Boys,Suicide Savant,tt0185014\nNjwqb3iGNto,1991.0,3,10,2011,The Naked Gun 2½: The Smell of Fear,Final Requests,tt0102510\nGUwhnO-nTLo,1991.0,9,10,2011,The Naked Gun 2½: The Smell of Fear,Frank Has The Blues,tt0102510\nNz1NJ3fhso0,1991.0,5,10,2011,The Naked Gun 2½: The Smell of Fear,Frank The Tank,tt0102510\nwG6wio8azyE,1991.0,4,10,2011,The Naked Gun 2½: The Smell of Fear,She Reminds Me Of Mom,tt0102510\nrJodsSNioXY,2000.0,8,8,2011,Wonder Boys,Getting There,tt0185014\nTDMdoNM-pBU,1962.0,3,7,2011,The Man Who Shot Liberty Valance,Appetite Suppressant,tt0056217\nU49MXakb7f4,1962.0,4,7,2011,The Man Who Shot Liberty Valance,A Persistent Cuss,tt0056217\npdE83FX-Mto,1988.0,3,10,2011,The Naked Gun: From the Files of Police Squad!,The Sound of Relief,tt0095705\nnTh9qpzhunE,1988.0,9,10,2011,The Naked Gun: From the Files of Police Squad!,Maybe This'll Help,tt0095705\nFuE5BaM0BdM,1991.0,5,8,2011,Regarding Henry,Henry Makes Amends,tt0102768\n363ZAmQEA84,1962.0,6,7,2011,The Man Who Shot Liberty Valance,Print the Legend,tt0056217\npJ6XiEEJndw,1999.0,3,8,2011,Runaway Bride,A True Marriage Proposal,tt0163187\ntippFPLwGgI,1988.0,4,10,2011,The Naked Gun: From the Files of Police Squad!,Enemies of America,tt0095705\n5cU6TxpG_p4,1988.0,2,10,2011,The Naked Gun: From the Files of Police Squad!,Student Driver,tt0095705\nAcEe0LbP2wY,1985.0,7,9,2011,Witness,A Lesson on Guns,tt0090329\nIT3BdhTyVXs,1968.0,1,8,2011,The Odd Couple,Brown or Green Sandwich,tt0063374\nNXqs_wYohxM,1968.0,4,8,2011,The Odd Couple,Clean vs. Dirty,tt0063374\n7VO2NcQl2-g,1968.0,7,8,2011,The Odd Couple,Oscar Breaks Down,tt0063374\nP10AWBi4-y8,1968.0,8,8,2011,Rosemary's Baby,Aren't You His Mother?,tt0063522\nMfeSSw69cC4,1968.0,8,8,2011,The Odd Couple,I'm Going to Kill You,tt0063374\n4l1Yek0Z1FQ,1968.0,2,8,2011,Rosemary's Baby,The Black Bramford,tt0063522\n1BRteOP9UL8,1968.0,4,8,2011,Rosemary's Baby,Taking Rosemary Home,tt0063522\nEcxB2iCU3w8,1980.0,5,7,2011,Ordinary People,Mother and Son Photo,tt0081283\nYf_toKBYCl4,1993.0,3,7,2011,What's Eating Gilbert Grape,Dad's Dead,tt0108550\nyOpsJ8dh5L4,1980.0,4,7,2011,Ordinary People,Conrad Opens Up to Jeannine,tt0081283\nkye191FZmeU,1968.0,5,8,2011,Rosemary's Baby,Where's the Baby?,tt0063522\nOc2xTMnIwrI,1976.0,5,9,2011,The Bad News Bears,I Don't Want Your Company,tt0074174\n2_SfD5cdrnw,1980.0,7,7,2011,Ordinary People,Love Ends,tt0081283\nKf-JPkSfjug,1993.0,7,7,2011,What's Eating Gilbert Grape,Gilbert Comes Back,tt0108550\neBxVWEnuSC0,1991.0,3,10,2011,The Addams Family,Dinner Conversation,tt0101272\n_akwHYMdbsM,1987.0,5,10,2011,\"Planes, Trains & Automobiles\",Going the Wrong Way,tt0093748\nI5kkwmOapss,1993.0,5,7,2011,What's Eating Gilbert Grape,Going in the Water,tt0108550\n3XeLFSaoyAk,1994.0,3,10,2011,Naked Gun 33 1/3: The Final Insult,Snookie Wookums,tt0110622\nS9RbwDvpqD4,1987.0,4,10,2011,\"Planes, Trains & Automobiles\",Burning Car,tt0093748\nK2qNJ7IzzqE,1976.0,6,9,2011,The Bad News Bears,Do The Best You Can,tt0074174\nML1_2lHFftE,1996.0,5,9,2011,The First Wives Club,Sprung with Divorce,tt0116313\nvbF4qz_-PCM,2003.0,2,10,2011,The School of Rock,Hung Over,tt0332379\nl6uaxfye2Ig,1986.0,5,7,2011,Pretty in Pink,Heartbreaker,tt0091790\n4KJD4aP90YQ,2003.0,9,10,2011,The School of Rock,Learning in Song,tt0332379\n8l7LGK2hnQw,1986.0,7,7,2011,Pretty in Pink,Tell Me the Truth,tt0091790\n4mdd9P7Tn6I,2001.0,8,9,2011,Vanilla Sky,A Real Life,tt0259711\n7xohWvO9i4c,2001.0,5,9,2011,Vanilla Sky,The Car Crash,tt0259711\nLmdcbtSwX6Q,1985.0,4,9,2011,Witness,Positive Identification,tt0090329\n7xVN8Q0OIbo,2001.0,6,9,2011,Vanilla Sky,Hiding,tt0259711\no07ecRzkLuM,1985.0,9,9,2011,Witness,Right of Way,tt0090329\n9GxFab5uMPc,1985.0,3,9,2011,Witness,Time For Milking,tt0090329\nR9goLghpPBg,1976.0,3,9,2011,The Bad News Bears,Picking On Lupus,tt0074174\nnS0fxM7sCHs,1985.0,8,9,2011,Witness,Rachel's Choice,tt0090329\n74Y7PD_uBe8,1976.0,4,9,2011,The Bad News Bears,Cups & Supporters,tt0074174\n2v-VkDiUm0Y,1995.0,5,10,2011,The Brady Bunch Movie,Marsha Breaks Her Nose,tt0112572\npq9dj2Q6edw,2002.0,8,12,2011,Heaven,The Same Birthday,tt0297884\nLBO6A4kU5Vo,2006.0,9,10,2011,The Foot Fist Way,Ridin' The Truck,tt0492619\nTbI7_iOYJvg,2007.0,1,9,2011,Zodiac,Napa Valley Killings,tt0443706\nDSuUJ-Scbeg,2007.0,5,9,2011,Zodiac,I'm Not the,tt0443706\neDhJ-xXsbHc,2007.0,3,9,2011,Zodiac,I Didn't Know You Had a Baby,tt0443706\nWJlOBTLg4xw,2007.0,6,9,2011,Zodiac,Sunset Trailer Park,tt0443706\nRiTXscx2pJY,2007.0,2,9,2011,Zodiac,This is the  Speaking,tt0443706\nW91BHqxJIRg,2007.0,9,9,2011,Zodiac,The Diner,tt0443706\ntz56LhvDFho,1999.0,1,8,2011,Runaway Bride,Rainbow Hair,tt0163187\nEIz94vt-Opo,1995.0,7,10,2011,The Brady Bunch Movie,Marsha's French Kiss,tt0112572\nDxTFwXcsctE,2004.0,9,10,2011,Team America: World Police,Battling the Film Actor's Guild,tt0372588\nuqMxfPMxW78,1999.0,2,8,2011,Runaway Bride,Maggie's Stick-On Tattoo,tt0163187\nvb2GzRckU9s,1995.0,9,10,2011,The Brady Bunch Movie,Jan's Inner Voices,tt0112572\nQNVWY5jUIbc,1993.0,3,10,2011,Searching for Bobby Fischer,Learning From the Master,tt0108065\nsM3PgyGpO7Q,1999.0,6,8,2011,Runaway Bride,Rehearsing the Wedding,tt0163187\nqYbwQoq9XfI,1999.0,4,8,2011,Runaway Bride,Roasting Maggie,tt0163187\n7JISgsyVgUA,1993.0,1,10,2011,Searching for Bobby Fischer,A Prodigy,tt0108065\nTY04QewafKc,1999.0,7,8,2011,Runaway Bride,The  Does It Again,tt0163187\nHIPljGWGNt4,2004.0,1,10,2011,Team America: World Police,Team America Intro,tt0372588\niZLnEfsXttE,1999.0,8,8,2011,Runaway Bride,Will You Marry Me?,tt0163187\nu7tXpBrpecA,2004.0,5,10,2011,Team America: World Police,The Love Scene,tt0372588\nU8XrE0FSQv4,2004.0,4,10,2011,Team America: World Police,Egyptian Rescue,tt0372588\nDIlG9aSMCpg,2004.0,3,10,2011,Team America: World Police,Derka Derka,tt0372588\nUEaKX9YYHiQ,2004.0,6,10,2011,Team America: World Police,I'm So Ronery,tt0372588\nqalHjNdHFJc,1953.0,10,10,2011,Roman Holiday,Where's the Story?,tt0046250\njpPCVq8UmX4,2006.0,1,10,2011,The Foot Fist Way,King of the Demo,tt0492619\n32iCWzpDpKs,2004.0,10,10,2011,Team America: World Police,\"Dicks, Pussies and Assholes\",tt0372588\niJKhynhnPyU,2006.0,2,10,2011,The Foot Fist Way,I Could Eat a Grown Man's Ass,tt0492619\nw9-IJEaGhRg,2006.0,5,10,2011,The Foot Fist Way,\"How Many Slices, Julio?\",tt0492619\nSgO2khv_SDY,2006.0,6,10,2011,The Foot Fist Way,Little Stevie Fisher,tt0492619\n_Er9cXkqWEs,2006.0,8,10,2011,The Foot Fist Way,Chuck the Truck's Party,tt0492619\nKY_G2f2R1Tg,2006.0,4,10,2011,The Foot Fist Way,Is She Still Alive?,tt0492619\nMH9ZK7vSBYY,1968.0,1,9,2011,Romeo and Juliet,I Never Saw True Beauty 'Til This Night,tt0063518\nN_HE8beijHA,1995.0,3,10,2011,The Brady Bunch Movie,Jump Rope Electrocution,tt0112572\nUdhn4vCPZ7A,1953.0,8,10,2011,Roman Holiday,Short Haircut,tt0046250\nNrE3t6Pgps0,2002.0,9,10,2011,Orange County,You Need an Ending,tt0273923\n5FgtVXFRyTQ,1988.0,6,10,2011,Scrooged,Five Pounds of Veal,tt0096061\nhwWsAUpr9eM,1968.0,4,9,2011,Romeo and Juliet,Love's Faithful Vow,tt0063518\nlPe61El1_3E,1988.0,7,10,2011,Scrooged,Crazy Like a Fox,tt0096061\nCblvDFObgNA,1999.0,3,10,2011,Superstar,Red Carpet Dreams,tt0167427\nK0zvX6AGd7Q,1988.0,5,10,2011,Scrooged,Taxi Ride From Hell,tt0096061\n3kX6rf9uw7w,1988.0,10,10,2011,Scrooged,A Christmas Miracle,tt0096061\nsZTRUAFCzF4,1999.0,5,10,2011,Superstar,Mary Fights Evian,tt0167427\nXXLpjT6qjCg,1999.0,7,10,2011,Superstar,Sky Breaks Up with Evian,tt0167427\nl2K4Fw-pmLw,1999.0,6,10,2011,Superstar,Mary's Busting Out,tt0167427\nakyfR8zcmIo,1999.0,4,10,2011,Superstar,Jesus Appears to Mary,tt0167427\nThzCQZyzCkg,1999.0,8,10,2011,Superstar,Move On With Your Life,tt0167427\njzEhVsME8p4,2002.0,3,10,2011,Orange County,The Wrong Transcript,tt0273923\nDnwnDFr9kOs,2002.0,4,10,2011,Orange County,A Normal Loving Parent,tt0273923\nhQEej75JeUQ,2002.0,5,10,2011,Orange County,A Normal Family,tt0273923\nQ5wdXytgRLI,2002.0,8,10,2011,Orange County,She's a Liar,tt0273923\n3zavgk2_BJs,2001.0,7,10,2011,Zoolander,Walk Off,tt0196229\ntUaOBgXp_Pg,2001.0,5,10,2011,Zoolander,Pier 12 Day Spa,tt0196229\nAU0NLheu8mU,2001.0,3,10,2011,Zoolander,You're Dead to Me,tt0196229\nEMTbkfgT_jc,2001.0,2,10,2011,Zoolander,Models Help People,tt0196229\nsP9ufyH-Pdg,1953.0,7,10,2011,Roman Holiday,Alone With a Man,tt0046250\ngx9O6q0pDAU,2001.0,10,10,2011,Zoolander,Magnum,tt0196229\nEUvgqItrt1c,2001.0,8,10,2011,Zoolander,The World's Greatest Hand Model,tt0196229\nNRQifnaioeM,1988.0,1,9,2011,The Accused,Will Those Bastards go to Jail?,tt0094608\nsEXIC0OaQSU,1988.0,2,9,2011,The Accused,You Sold Me Out,tt0094608\nExVWQ_I-elI,1953.0,9,10,2011,Roman Holiday,Vespa Ride,tt0046250\nkf8NklFXAd4,1988.0,3,9,2011,The Accused,Sexy Sadi,tt0094608\nCFstDwSYjkc,1988.0,6,9,2011,The Accused,No Deals,tt0094608\nw0NWPKGGFiY,1988.0,8,9,2011,The Accused,On the Stand,tt0094608\nYJPebmYS95E,1988.0,7,9,2011,The Accused,Acquiring a Witness,tt0094608\n3ArDaUOO6w0,1988.0,4,9,2011,The Accused,I Thought You Were On My Side,tt0094608\nUif48WrZza8,1988.0,9,9,2011,The Accused,I'm Gonna Tell Them What Happened,tt0094608\nT0QshoW8SQY,1993.0,2,10,2011,Searching for Bobby Fischer,The Next Bobby Fischer,tt0108065\nyOoGw9aTRhs,1993.0,4,10,2011,Searching for Bobby Fischer,This Chess Thing,tt0108065\n3orSzPUIVJw,1990.0,1,10,2011,Ghost,Finally Talking,tt0099653\n1ycpmrEl-9E,1979.0,2,8,2011,The Warriors,One Gang Could Run This City,tt0080120\nZurT6BG1OM8,1993.0,5,10,2011,Searching for Bobby Fischer,Fear of Losing,tt0108065\ngwXzOVu0x-U,1993.0,7,10,2011,Searching for Bobby Fischer,Contempt,tt0108065\nv38lu0Bi0Kk,1993.0,8,10,2011,Searching for Bobby Fischer,Master Certificate,tt0108065\nuV5YFJgGPNQ,1993.0,6,10,2011,Searching for Bobby Fischer,Josh Loses,tt0108065\nnWAV_KcSkNw,1980.0,4,9,2011,Urban Cowboy,Sissy Rides the Bull,tt0081696\nk9pFp6iRVM0,1993.0,10,10,2011,Searching for Bobby Fischer,Josh Offers a Draw,tt0108065\ncdaDQcs-XNQ,1980.0,3,9,2011,Urban Cowboy,We Live Like Pigs,tt0081696\n-v8C1H99O_s,1993.0,9,10,2011,Searching for Bobby Fischer,Grandmaster,tt0108065\nwzSYH0nT6Qk,1980.0,9,9,2011,Urban Cowboy,We're Going Home,tt0081696\nf_xjQNnIcdQ,1980.0,5,9,2011,Urban Cowboy,A Sexy Sissy Ride,tt0081696\nc5BJJbtFP4E,1980.0,7,9,2011,Urban Cowboy,Gilley's Rodeo Competition,tt0081696\nXkasRfjEqFs,1980.0,8,9,2011,Urban Cowboy,\"I Love You, Sissy\",tt0081696\nRUX-bx6rwdI,2005.0,5,9,2011,The Longest Yard,Flooded Practice Field,tt0398165\n7UKx-6P2F-k,2005.0,2,9,2011,The Longest Yard,\"You're White, Smile!\",tt0398165\n3JJaD_5oQq8,2005.0,1,9,2011,The Longest Yard,Drunk Driving,tt0398165\nmYhkrT5de2Y,1980.0,2,9,2011,Urban Cowboy,A Wedding at Gilley's,tt0081696\nQ1IQ49BHkEg,2005.0,6,9,2011,The Longest Yard,15 Minutes with Lynette,tt0398165\nhGgWUKweXzI,2000.0,6,9,2011,Shaft,\"April Fools, Motherf***er\",tt0162650\nGKuQDM9OlAQ,2005.0,8,9,2011,The Longest Yard,Fourth and Twenty,tt0398165\nRwtay9w8axo,2005.0,7,9,2011,The Longest Yard,He Just Sh** Himself,tt0398165\nVMVzQ8rW53Q,2005.0,9,9,2011,The Longest Yard,The Fumblerooski,tt0398165\nilrpqagxBf4,1991.0,10,10,2011,Necessary Roughness,Going for the Win,tt0102517\nZSFCW8cDIU8,2000.0,7,9,2011,Shaft,The Iceman Goeth,tt0162650\nXKl9WKaYVRw,1991.0,9,10,2011,Necessary Roughness,Samurai Football,tt0102517\nsLWhxB6QNrw,1991.0,8,10,2011,Necessary Roughness,Taking out the Dean,tt0102517\no4UVXgAzYb0,1991.0,4,10,2011,Necessary Roughness,Bar Brawl,tt0102517\nAyJIq_BNPME,1991.0,6,10,2011,Necessary Roughness,Welcome to Football,tt0102517\n86RH1KAwM2A,1991.0,7,10,2011,Necessary Roughness,Lucy Gets the Shower,tt0102517\n0jzYpSrpVqU,1991.0,5,10,2011,Necessary Roughness,Lucy Joins the Team,tt0102517\ngZXv9XswYM8,1988.0,5,9,2011,The Accused,Criminal Solicitation,tt0094608\nu2pu0m9iTo4,1987.0,10,10,2011,\"Planes, Trains & Automobiles\",Those Aren't Pillows!,tt0093748\nj-47cwN0w_c,1994.0,8,9,2011,Forrest Gump,I Know What Love Is,tt0109830\nxLxCXburq2U,2000.0,8,9,2011,Shaft,Thrown in Jail,tt0162650\nx2-MCPa_3rU,1994.0,2,9,2011,Forrest Gump,\"Run, Forrest, Run!\",tt0109830\ntvKzyYy6qvY,1994.0,1,9,2011,Forrest Gump,Peas and Carrots,tt0109830\nZS9SXH3DfT8,1978.0,3,10,2011,Grease,Phony Danny Scene,tt0077631\nJcP-yeailEM,2004.0,10,10,2011,Mean Girls,Making Things Right,tt0377092\nzL0ipXUD-uU,1979.0,4,8,2011,The Warriors,vs. The Baseball Furies,tt0080120\nKOi9hHjmYq4,1996.0,2,9,2011,Mission: Impossible,A Mole Hunt Scene,tt0117060\ntOZTZP_qzC0,2008.0,3,9,2011,The Curious Case of Benjamin Button,Healing Through Faith,tt0421715\naUNq34kNR0M,1978.0,2,10,2011,Grease,Sonny Don't Take No Crap Scene,tt0077631\nqW7Nq2UBlbk,2008.0,8,9,2011,The Curious Case of Benjamin Button,Meeting in the Middle,tt0421715\ndpBTugwEdaQ,2008.0,5,9,2011,The Curious Case of Benjamin Button,The Witching Hour,tt0421715\nCccXBzfhDVA,2008.0,4,9,2011,The Curious Case of Benjamin Button,Leaving Home,tt0421715\n6soXf476aV0,1978.0,7,10,2011,Grease,A Bun in the Oven Scene,tt0077631\n-zIhorOBLZM,1969.0,4,9,2011,True Grit,I Don't Like the Way You Look,tt0065126\nsthFTs2gWeg,2008.0,2,9,2011,The Curious Case of Benjamin Button,A Child of God,tt0421715\naqIYxDk4vh8,1978.0,4,10,2011,Grease,Hopelessly Devoted to You Scene,tt0077631\nXTMeDBVknQY,1969.0,1,9,2011,True Grit,River Crossing,tt0065126\nwsQJVAzezrc,1978.0,8,10,2011,Grease,Sin Wagon Scene,tt0077631\n9-cPWheNyaA,1969.0,9,9,2011,True Grit,Bold Talk for a One-Eyed Fat Man,tt0065126\nFWrh6KWGFo0,1978.0,6,10,2011,Grease,I Know Now That You Respect Me Scene,tt0077631\nTVaP9kEYVZ8,1996.0,7,9,2011,Mission: Impossible,Master of Disguise Scene,tt0117060\nS1waPNwf_ns,1978.0,5,10,2011,Grease,Danny at Bat Scene,tt0077631\nXW9T7s1U_XU,1969.0,2,9,2011,True Grit,Drop That Switch,tt0065126\n-MQNNzaEt2s,1978.0,1,10,2011,Grease,We're Gonna Rule the School Scene,tt0077631\nZJJGXUlqb_k,1969.0,3,9,2011,True Grit,Smoke Them Out,tt0065126\nMLkaLveElpM,1994.0,9,9,2011,Forrest Gump,His Name is Forrest,tt0109830\nYcbZKza_zUg,1990.0,3,10,2011,Ghost,Still Feel You,tt0099653\nCho039BrHpg,1996.0,9,9,2011,Mission: Impossible,Tunnel Chase Scene,tt0117060\nLb13v2-bBJQ,1969.0,7,9,2011,True Grit,Looking for Sign,tt0065126\n-lb8E3qQVKY,1969.0,8,9,2011,True Grit,\"I Know You, Tom Chaney\",tt0065126\n57yGBikRJec,1969.0,5,9,2011,True Grit,Rooster Opens Up,tt0065126\n6DU0mdThjg4,1969.0,6,9,2011,True Grit,Looking Back Is a Bad Habit,tt0065126\nxuQZJHfWf9U,1994.0,4,9,2011,Forrest Gump,Bubba Goes Home,tt0109830\nHsYC-hVEpQM,1978.0,10,10,2011,Grease,Thunder Road Race Scene,tt0077631\nSqOnkiQRCUU,1994.0,7,9,2011,Forrest Gump,Life is a Box of Chocolates,tt0109830\n9Jt-bxV1gW0,1994.0,5,9,2011,Forrest Gump,First Mate,tt0109830\n_hyXwvNIKZM,1990.0,7,10,2011,Ghost,Carl Suspects Oda Mae,tt0099653\noAb2_-uv41Y,1990.0,5,10,2011,Ghost,Oda Mae Demands Respect,tt0099653\nHqAbjHKO5jM,1994.0,6,9,2011,Forrest Gump,Lt. Dan Makes His Peace,tt0109830\nIdIEDlLAaJs,1990.0,4,10,2011,Ghost,Ditto,tt0099653\n6vg44SEEMmA,1990.0,8,10,2011,Ghost,Scaring Willie,tt0099653\n6ovOboVwB7g,2004.0,4,10,2011,Mean Girls,Such a Good Friend,tt0377092\n5fLlgS6aO9k,1990.0,9,10,2011,Ghost,Molly Finally Believes,tt0099653\nVZpMlm4xYG4,2004.0,9,10,2011,Mean Girls,Regina Meets Bus,tt0377092\nW8_POt2KlfQ,2004.0,5,10,2011,Mean Girls,Sweatpants on Monday,tt0377092\nPoIdfRnQZ4A,2004.0,2,10,2011,Mean Girls,Cady Goes Primal,tt0377092\nre5veV2F7eY,2004.0,1,10,2011,Mean Girls,Meeting the Plastics,tt0377092\nLORyEX_5czg,2004.0,3,10,2011,Mean Girls,Regina Bashes Janis,tt0377092\nNpvlS6uBduQ,1990.0,2,10,2011,Ghost,After the End,tt0099653\nWPYqRaOm1ak,2004.0,7,10,2011,Mean Girls,Girls Gone Wild!,tt0377092\nsT8wMBeVffk,2004.0,6,10,2011,Mean Girls,You're Plastic,tt0377092\n4rT5fYMfEUc,1994.0,3,9,2011,Forrest Gump,Bubba on Shrimp,tt0109830\nsR528E5_8yI,2004.0,8,10,2011,Mean Girls,A Lot of Feelings,tt0377092\nRkFcHUvyJ-k,2008.0,1,9,2011,Cloverfield,The Statue of Liberty's Head,tt1060277\n-Y2wqkD2KVM,1990.0,10,10,2011,Ghost,Carl's End,tt0099653\n6esR4uGEFCc,2008.0,3,9,2011,Cloverfield,What the Hell Was That?,tt1060277\ngRzjSsXw9PU,2008.0,4,9,2011,Cloverfield,Subway Attack,tt1060277\nDUbplahEBfQ,2008.0,5,9,2011,Cloverfield,I Don't Feel So Good,tt1060277\n8c-Na7OHYnI,2008.0,6,9,2011,Cloverfield,\"Something Else, Also Terrible\",tt1060277\ndVCki9kwF_4,2008.0,2,9,2011,Cloverfield,Brooklyn Bridge Collapse,tt1060277\nkyY50rBet2U,2008.0,7,9,2011,Cloverfield,Bombing the Creature,tt1060277\n6ibWJnY6Ur8,2008.0,9,9,2011,Cloverfield,Final Words,tt1060277\nk-oVuQpjG3s,1996.0,4,9,2011,Mission: Impossible,Into the Vault Scene,tt0117060\nsd_I5ez3jwg,1996.0,1,9,2011,Mission: Impossible,Mission Gone Wrong Scene,tt0117060\nocb7pXndlug,2008.0,8,9,2011,Cloverfield,Hud Meets the Monster,tt1060277\nwwzyveUAS80,2006.0,4,8,2011,Mission: Impossible 3,Humpty Dumpty Scene,tt0317919\nar0xLps7WSY,1996.0,5,9,2011,Mission: Impossible,Close Call Scene,tt0117060\nYK-ys6sY_q0,1996.0,3,9,2011,Mission: Impossible,Is He Serious? Scene,tt0117060\nAysV4mGh4fc,1996.0,8,9,2011,Mission: Impossible,High-Speed Train Ride Scene,tt0117060\n2wwC9c3iYK4,1996.0,6,9,2011,Mission: Impossible,Out of the Vault Scene,tt0117060\nzk6ac5Amzr0,2000.0,2,9,2011,Mission: Impossible 2,Atrium Dive Scene,tt0120755\nCgX4uJSj00Y,2006.0,5,8,2011,Mission: Impossible 3,Seeing Double Scene,tt0317919\nbXYobuaTjNs,2000.0,1,9,2011,Mission: Impossible 2,Watch the Road Scene,tt0120755\nhnum8SxuVCQ,2000.0,4,9,2011,Mission: Impossible 2,Nyah Injects the Virus Scene,tt0120755\nQLNUIU7AzTg,2006.0,1,8,2011,Mission: Impossible 3,Count to Ten Scene,tt0317919\niXSKAf6h5vE,2000.0,3,9,2011,Mission: Impossible 2,Destroying Chimera Scene,tt0120755\nGR0R9KfU4tY,2000.0,5,9,2011,Mission: Impossible 2,Just Stay Alive Scene,tt0120755\nxPZ6eaL3S2E,1987.0,2,10,2011,The Untouchables,The Chicago Way,tt0094226\nO3P0SMpqK-8,2000.0,7,9,2011,Mission: Impossible 2,Stop Mumbling! Scene,tt0120755\n00rpUGdvcY0,2006.0,2,8,2011,Mission: Impossible 3,Now I'm Out Scene,tt0317919\nAzIQg6Ly_Rw,2000.0,8,9,2011,Mission: Impossible 2,Motorcycle Chase Scene,tt0120755\nAIcUKqhFp4g,2000.0,6,9,2011,Mission: Impossible 2,Risky Scene,tt0120755\nS69qPup6hyk,2006.0,3,8,2011,Mission: Impossible 3,The Anti-God Scene,tt0317919\neVUsVW87kSk,2000.0,9,9,2011,Mission: Impossible 2,Not a Bad Way to Go Scene,tt0120755\nZUKCW08_8Og,1998.0,4,9,2011,The Truman Show,Driving Through Fire,tt0120382\nYMz-skgeUdw,2006.0,6,8,2011,Mission: Impossible 3,What is the Rabbit's Foot? Scene,tt0317919\nFCRdTWGdngU,2006.0,8,8,2011,Mission: Impossible 3,I Knew He'd Make It Scene,tt0317919\n8l4qdf_1nGM,2006.0,7,8,2011,Mission: Impossible 3,Bridge Attack Scene,tt0317919\ngAM2Q7Sqlbk,1987.0,4,10,2011,The Untouchables,Malone's Methods,tt0094226\nKdNSlyrbcDY,1987.0,1,10,2011,The Untouchables,A Kind Word and a Gun,tt0094226\nQHH9EYZHoVU,1987.0,3,10,2011,The Untouchables,Batter Up,tt0094226\n_d5jXDvrOu4,1987.0,7,10,2011,The Untouchables,Knife to a Gunfight,tt0094226\nj8nZBlPfR7Y,1987.0,6,10,2011,The Untouchables,You Got Nothing!,tt0094226\nYVz211iI26o,1987.0,10,10,2011,The Untouchables,Here Endeth the Lesson,tt0094226\neSm68IEDDT0,1987.0,9,10,2011,The Untouchables,Nitti's Fall,tt0094226\nQJpRSf4q-hI,1987.0,8,10,2011,The Untouchables,The Stairway Shootout,tt0094226\nt2QvuZpxmeo,1990.0,7,10,2011,The Godfather: Part 3,I Killed My Father's Son,tt0099674\ndgoDvnebHRw,1987.0,5,10,2011,The Untouchables,I Want Him Dead,tt0094226\nqoWjU8OAUaU,1979.0,8,8,2011,The Warriors,You're Dead,tt0080120\naRM2YcGpmxg,1979.0,7,8,2011,The Warriors,\"Warriors, Come Out to Play\",tt0080120\n0kqn9qQZdOs,1979.0,6,8,2011,The Warriors,vs. The Punks,tt0080120\nbTUrWYv2vtU,1979.0,1,8,2011,The Warriors,Can You Dig It?,tt0080120\nz9lBvg5clr0,1998.0,3,9,2011,The Truman Show,Being Spontaneous,tt0120382\noMLjP2ajXvs,1979.0,3,8,2011,The Warriors,Did It!,tt0080120\nMdwuW8n3JYA,1998.0,1,9,2011,The Truman Show,\"Good Afternoon, Good Evening and Good Night\",tt0120382\nwIrUoTYd9hA,1998.0,2,9,2011,The Truman Show,\"When It Rains, It Pours on Truman\",tt0120382\n7b9sNVUPFyM,2004.0,2,10,2011,Bride and Prejudice,Lalita and Darcy Butt Heads,tt0361411\nYfJc2bORFHs,1998.0,6,9,2011,The Truman Show,Father Son Reunion,tt0120382\n6U4-KZSoe6g,1998.0,5,9,2011,The Truman Show,Do Something!,tt0120382\n6ZMZYrdXtP0,1998.0,9,9,2011,The Truman Show,Truman Talks to the Creator,tt0120382\nu-ApxFOpl28,1998.0,8,9,2011,The Truman Show,Thar She Blows,tt0120382\nUIfdjPDPM-I,1998.0,7,9,2011,The Truman Show,That One's for Free,tt0120382\nQXtkzFiGsxw,1979.0,5,8,2011,The Warriors,I Like It Rough,tt0080120\n6c5Qlf1Fr28,2003.0,2,8,2011,The Italian Job,Two Kinds of Thieves,tt0317740\n764r3kF5tZg,2003.0,1,8,2011,The Italian Job,,tt0317740\n2bkNfQBLCJw,2003.0,5,8,2011,The Italian Job,Into the Subway,tt0317740\nzmicfGmQZ9s,2008.0,9,9,2011,The Curious Case of Benjamin Button,Be Whoever You Want to Be,tt0421715\ndnnrhhZjTh8,2003.0,6,8,2011,The Italian Job,Tube Chase,tt0317740\nGVAVkeMQyKY,2003.0,3,8,2011,The Italian Job,The Man Who Knew Too Much,tt0317740\n6EFjbeXuNCg,2003.0,4,8,2011,The Italian Job,The Element of Surprise,tt0317740\nYlT7x_8VuMA,2003.0,8,8,2011,The Italian Job,Chicken With a Chopper,tt0317740\nr4IBPd7-LlQ,2003.0,7,8,2011,The Italian Job,Helicopter Chase,tt0317740\njtoYZoKsAnY,2006.0,3,10,2011,Babel,Provoking the Dentist,tt0449467\n_r8MRCkHY54,2008.0,6,9,2011,The Curious Case of Benjamin Button,Sleep With Me,tt0421715\nohz8_IafGwE,1995.0,5,10,2011,Tommy Boy,Fat Guy in a Little Coat,tt0114694\n3QCSrQEGvZA,1995.0,8,10,2011,Tommy Boy,Housekeeping,tt0114694\nndfLW-xm9Xk,1995.0,1,10,2011,Tommy Boy,Cow Tipping,tt0114694\ngkGFvtW0CSE,1995.0,10,10,2011,Tommy Boy,Tommy vs. the John,tt0114694\nn1lbpj6868o,1995.0,6,10,2011,Tommy Boy,Go Time!,tt0114694\nHWrjBBXjjhM,1995.0,9,10,2011,Tommy Boy,Airline Safety,tt0114694\nc1EyN9xTK94,1995.0,7,10,2011,Tommy Boy,I Killed My Sale!,tt0114694\nECDGpYuMRDA,2008.0,1,9,2011,The Curious Case of Benjamin Button,A Clock That Runs Backwards,tt0421715\nGmslKQBmdzg,2008.0,7,9,2011,The Curious Case of Benjamin Button,Will You Still Love Me?,tt0421715\n5LN23qErZDM,1995.0,3,10,2011,Tommy Boy,My Whole Life Sucks,tt0114694\nhIhe-VqMBVI,2004.0,9,10,2011,Bride and Prejudice,I Was Right About You,tt0361411\n1_-RGLVHmOA,2004.0,5,10,2011,Bride and Prejudice,No Life Without Wife,tt0361411\nAoWdk9CB-mU,2004.0,1,10,2011,Bride and Prejudice,The Indian MC Hammer,tt0361411\nWDAo_p8At-o,2004.0,6,10,2011,Bride and Prejudice,Can't Figure You Out,tt0361411\nIH_dSlEAl0A,1998.0,12,12,2011,Halloween H20: 20 Years Later,Final Confrontation,tt0120694\npsru6_9PPcw,2004.0,3,10,2011,Bride and Prejudice,Lalita Meets Wickham,tt0361411\nBkW-4CWw3XQ,2002.0,6,12,2011,Heaven,Philippa Escapes,tt0297884\nTEjRTNg51Io,2002.0,4,12,2011,Heaven,Filippo's Plan,tt0297884\n4dW0aROYEk4,2002.0,5,12,2011,Heaven,Philippa's Confession,tt0297884\n9pDIRuJt-gU,2002.0,11,12,2011,Heaven,In Love,tt0297884\nupyAJ-kEgNY,1998.0,11,12,2011,Halloween H20: 20 Years Later,Laurie Fights Back,tt0120694\ntFAX4TdV6ak,2002.0,9,12,2011,Heaven,I Love You,tt0297884\nOTq3-zG1lCE,1998.0,8,12,2011,Halloween H20: 20 Years Later,Sarah's Unsuccessful Escape,tt0120694\nP-E8ZrQ06go,2002.0,1,12,2011,Heaven,Philippa's Bomb Plot,tt0297884\ng-GJDgd7D8k,2002.0,2,12,2011,Heaven,You Killed Four People,tt0297884\nKtn-Hd2BTzs,2002.0,3,12,2011,Heaven,I Want to Help You,tt0297884\nbwzuMk8SRzY,2008.0,6,9,2011,Iron Man,\"Yeah, I Can Fly Scene\",tt0371746\nqYW3MOezCc4,1997.0,4,9,2011,Face/Off,Prison Escape,tt0119094\n3Im7ZYrXCOY,2008.0,7,9,2011,Iron Man,Handles Like a Dream Scene,tt0371746\nt7S_kRqYshw,2002.0,7,12,2011,Heaven,Philippa's Revenge,tt0297884\nqilGSZ9UWTc,2002.0,10,12,2011,Heaven,I'm Not Going With You,tt0297884\nOYrxSQ_Y2Iw,2008.0,9,9,2011,Iron Man,I Am  Scene,tt0371746\n3o2ACEr9NmQ,2008.0,8,9,2011,Iron Man,to the Rescue Scene,tt0371746\np0qVhhIfWr4,1992.0,6,11,2011,The Crying Game,,tt0104036\n3Ag3aRRoPzk,2004.0,8,10,2011,Bride and Prejudice,Take Me to Love,tt0361411\na4EqbYUl7Rg,2002.0,12,12,2011,Heaven,Now,tt0297884\ndsCzZE_y0so,1998.0,11,12,2011,Rounders,Spotting KGB's Tell,tt0128442\ne2RQwVyRSGU,1998.0,9,12,2011,Rounders,All In,tt0128442\nMbrO-ZbuhIs,1998.0,2,12,2011,Rounders,Aces Full,tt0128442\naXbf3X56rGM,1998.0,8,12,2011,Rounders,Johnny Chan,tt0128442\nc_YHTdu1jFc,1997.0,9,9,2011,Face/Off,Speedboat Chase,tt0119094\nXxsSp2qJIZg,1997.0,7,9,2011,Face/Off,This is Turning into a Real Marriage,tt0119094\nciWBzhmOC_o,1998.0,5,12,2011,Rounders,Atlantic City Suckers,tt0128442\n0ZQln6DsWgE,1998.0,3,12,2011,Rounders,The Judge's Game,tt0128442\n_nqoPInNcvo,2004.0,7,10,2011,Bride and Prejudice,Mr. Kohli's Proposal,tt0361411\nHMziYymVYMs,2004.0,10,10,2011,Bride and Prejudice,Looking For Lahki,tt0361411\nQvVoH-X-Kls,1998.0,10,12,2011,Rounders,I Stick it in You!,tt0128442\nERmo8TmDYCI,1998.0,4,12,2011,Rounders,Destiny Chooses Us,tt0128442\nz7NxEj4A1Cg,1998.0,7,12,2011,Rounders,I Play for Money,tt0128442\nQAJkvEJ2QjE,1998.0,1,12,2011,Rounders,No Limit Texas Hold 'Em,tt0128442\nN7hG6mx0csE,1998.0,6,12,2011,Rounders,Sheriff's Game,tt0128442\nLIXJaTQTDAg,1998.0,12,12,2011,Rounders,The Final Hand,tt0128442\n_7z8a8kTj1c,2001.0,4,11,2011,The Others,Strange Voices,tt0230600\nG5GJHYXrjhY,1997.0,8,9,2011,Face/Off,What a Predicament,tt0119094\nMn6WC1pxVNk,1997.0,1,9,2011,Face/Off,Crashing the Plane,tt0119094\nklCemtBU1cg,1997.0,5,9,2011,Face/Off,I Am the King,tt0119094\nGH-r4HXHcCk,2008.0,4,9,2011,Iron Man,My Turn Scene,tt0371746\nKNAgFhh1ji4,2008.0,2,9,2011,Iron Man,The Jericho Scene,tt0371746\n-zya4vJ-kQE,2008.0,5,9,2011,Iron Man,Is It Safe? Scene,tt0371746\nn4BJBz8GpzI,2008.0,3,9,2011,Iron Man,Cave Battle Scene,tt0371746\nx1ij_TEK_MM,2007.0,1,8,2011,There Will Be Blood,Young H.W. Loses His Hearing,tt0469494\nnVrzbfxxcZ8,2009.0,6,9,2011,Watchmen,Nite Owl Rescue,tt0409459\nY9GAufJIe0I,1991.0,8,10,2011,The Lovers on the Bridge,Torching the Truck,tt0101318\nsBjNpZ5t9S4,1996.0,8,10,2011,Black Sheep,Jack MeHoff,tt0115697\n25Y5O97c1Aw,1997.0,10,12,2011,The Castle,Disenchanted with Our Legal System,tt0118826\n1Gk_oU1m5CY,1997.0,1,12,2011,The Castle,This Is My Story,tt0118826\nxCtMlhZskDE,2000.0,1,7,2011,What Women Want,Flo's Thoughts,tt0207201\nWZppJUaR7_0,1996.0,10,10,2011,Black Sheep,Too Close For Comfort,tt0115697\nBcufzXXaEoI,1996.0,2,10,2011,Black Sheep,Steve's Souvenir,tt0115697\nfvptWDiYrIk,1996.0,1,10,2011,Black Sheep,Questionable Call,tt0115697\nsp8Ufx3Ej24,1998.0,2,12,2011,Halloween H20: 20 Years Later,Michael Myers is Dead!,tt0120694\nkLskn7jHXrg,1997.0,6,9,2011,Face/Off,Let's Just Kill Each Other,tt0119094\nd6ISJ_dN-80,1997.0,2,9,2011,Face/Off,We Both Know Our Guns,tt0119094\nflvyCwagnF0,1996.0,1,9,2011,Primal Fear,A Woman With a Brain,tt0117381\n4vcNnS9k884,2001.0,1,11,2011,Scary Movie 2,Demonic Sh**,tt0257106\n5t_tgiWatvs,2001.0,4,11,2011,Scary Movie 2,Dinner Made by Hand,tt0257106\n8ce557hlgEM,1997.0,3,9,2011,Face/Off,It's Like Looking in a Mirror,tt0119094\nXyGbtYaVcaA,1996.0,5,9,2011,Primal Fear,\"Meeting \"\"Roy\"\"\",tt0117381\ne2g4Wr81rz8,1996.0,8,9,2011,Primal Fear,Playing Rough,tt0117381\nZbaW0HZ_Qy8,1996.0,9,9,2011,Primal Fear,\"Good For You, Marty\",tt0117381\nb4teoyYZsYk,2009.0,7,9,2011,Watchmen,How to Lose Your Arms,tt0409459\nQAFttSucKH4,1996.0,7,9,2011,Primal Fear,How Can You Do What You Do?,tt0117381\njaCofC2Bv-c,1996.0,6,9,2011,Primal Fear,The Tape,tt0117381\nYDV8PMVi-fA,1996.0,3,9,2011,Primal Fear,Just One Juror,tt0117381\nEuSGUhhmYfk,2009.0,8,9,2011,Watchmen,The Greatest Practical Joke in Human History,tt0409459\nPYLokGkYl4E,1996.0,2,9,2011,Primal Fear,Prepping Aaron,tt0117381\nyGbUcqCXe14,2009.0,3,9,2011,Watchmen,The Birth of Dr. Manhattan,tt0409459\nJJ5290-0lw0,2009.0,5,9,2011,Watchmen,You're Locked In Here With Me!,tt0409459\nesQgzR6gTjw,1996.0,4,9,2011,Primal Fear,Powerful People,tt0117381\nBYWVUvqDFh0,2009.0,1,9,2011,Watchmen,Rorschach's Journal,tt0409459\np-mlLMZXqg4,2009.0,4,9,2011,Watchmen,Give Me Back My Face,tt0409459\nNFV2sZJrtDQ,2009.0,9,9,2011,Watchmen,Rorschach's Fate,tt0409459\ns_hFTR6qyEo,2007.0,7,8,2011,There Will Be Blood,I Drink Your Milkshake!,tt0469494\n4u-4PyidIeQ,2009.0,2,9,2011,Watchmen,Face to Face with Dr. Manhattan,tt0409459\nzirtzDl2RH0,2007.0,4,8,2011,There Will Be Blood,Daniel's Confession,tt0469494\n-ZODi5SGAyE,1991.0,1,10,2011,The Lovers on the Bridge,Fire Breathing,tt0101318\nnzyDm-J065g,2007.0,2,8,2011,There Will Be Blood,The Well Burns Up,tt0469494\nHzpxTmlWOC4,2007.0,5,8,2011,There Will Be Blood,Bastard From a Basket,tt0469494\n12Iosf6btzM,2007.0,8,8,2011,There Will Be Blood,I'm Finished!,tt0469494\nMyKNmvJYO7o,2007.0,6,8,2011,There Will Be Blood,A False Prophet,tt0469494\n5yUd7SXxXzs,2000.0,4,7,2011,What Women Want,Imagine the Possibilities,tt0207201\n28BXqQWqYJU,2007.0,3,8,2011,There Will Be Blood,I Have a Competition in Me,tt0469494\nxJp2HXBJv_4,2000.0,3,7,2011,What Women Want,The Brutal Truth,tt0207201\nhf7_JChVnAQ,1991.0,5,10,2011,The Lovers on the Bridge,Water Skiing,tt0101318\nL8eQ78agzQg,2000.0,7,7,2011,What Women Want,Confession and Profession,tt0207201\nFeoFv3dOeqo,2000.0,2,7,2011,What Women Want,Streams of Consciousness,tt0207201\nurby-QPF1hE,2000.0,5,7,2011,What Women Want,Working Relationship,tt0207201\nNrriZYH49yE,2000.0,6,7,2011,What Women Want,Back to Normal,tt0207201\nlKMl0NFXM4s,1991.0,2,10,2011,The Lovers on the Bridge,Move Your Finger,tt0101318\nabh8wBYFeuE,1991.0,3,10,2011,The Lovers on the Bridge,Military Parade,tt0101318\nyDoaKW48_hk,2005.0,5,12,2011,Hostage,The Watchman,tt0340163\nQ6kNpNi_iJI,1991.0,7,10,2011,The Lovers on the Bridge,Missing,tt0101318\n8lD16zBpcog,1991.0,10,10,2011,The Lovers on the Bridge,Reunion in the Snow,tt0101318\ncH80fIW-mrc,1991.0,4,10,2011,The Lovers on the Bridge,Dancing under the Fireworks,tt0101318\nvn1ZcpwPlAA,1991.0,6,10,2011,The Lovers on the Bridge,Drugged Drinks,tt0101318\nrG1qXTVH1t4,2005.0,1,12,2011,Hostage,Shoot Me!,tt0340163\nAMuVqFvM2Rs,1991.0,9,10,2011,The Lovers on the Bridge,I Never Loved You,tt0101318\noW7IadnQblg,1996.0,6,10,2011,Black Sheep,Voting Kicks Ass,tt0115697\nC7G9Q9JcN34,1997.0,2,12,2011,The Castle,Tracy's Wedding,tt0118826\n4sO94xn-C6o,1996.0,9,10,2011,Black Sheep,A Horse's Patoot!,tt0115697\nuCtMTbKX6_I,1997.0,5,12,2011,The Castle,Straight to the Pool Room,tt0118826\nqqhQ9jN3gj4,1997.0,3,12,2011,The Castle,Tell Him He's Dreamin',tt0118826\nqTUcFhCim_A,1997.0,4,12,2011,The Castle,Dale Dug a Hole,tt0118826\nprnQLmVg5V8,1997.0,6,12,2011,The Castle,How's the Serenity?,tt0118826\nwEE-EVC0P8M,1997.0,7,12,2011,The Castle,10% Brains and 95% Muscle,tt0118826\nPfnAhUBroF8,1997.0,8,12,2011,The Castle,Sal Tells a Story,tt0118826\nssukL9a99JA,1997.0,9,12,2011,The Castle,The Vibe of the Thing,tt0118826\nb4kKWa_hjCk,1997.0,12,12,2011,The Castle,A Man's Home Is His Castle,tt0118826\n5smoo7ipoc0,1997.0,11,12,2011,The Castle,The Opposite of Letting Someone Down,tt0118826\nf890SC1schE,1996.0,3,10,2011,Black Sheep,Going Downhill Fast,tt0115697\nHI_mwhUvqHc,1996.0,4,10,2011,Black Sheep,That's Not Normal,tt0115697\ntlE5yK4l34o,1996.0,7,10,2011,Black Sheep,Kill Whitey!,tt0115697\nsjeIpuOhuPM,2005.0,8,12,2011,Hostage,The Best Day of Your Life,tt0340163\nt8dJFMMvNQQ,2005.0,2,12,2011,Hostage,Home Invasion,tt0340163\nRGvWYYCWFq8,1996.0,5,10,2011,Black Sheep,Going Through Hail,tt0115697\ni_sT5Jl3qM4,2005.0,3,12,2011,Hostage,Cop Killer,tt0340163\n68XJpm3q2b4,2005.0,9,12,2011,Hostage,I Know About the Money,tt0340163\nqbfjO2d2S4Q,2005.0,4,12,2011,Hostage,The Man in Charge,tt0340163\nT9tQanQSgQM,2005.0,6,12,2011,Hostage,I'm Trying to Save Your Life,tt0340163\ntJIzs4CS-TE,2005.0,10,12,2011,Hostage,I Am in Charge!,tt0340163\nUGn03bNlFuo,2005.0,12,12,2011,Hostage,Rescuing the s,tt0340163\nM3jyyQMbJNY,2005.0,7,12,2011,Hostage,Bang,tt0340163\nZp4qkAJFHrQ,2005.0,11,12,2011,Hostage,Burn It,tt0340163\nKUGH4XQ94tc,1992.0,11,11,2011,The Crying Game,Tied Up and Shot Down,tt0104036\npwt49IF0uG0,2001.0,3,11,2011,Scary Movie 2,The Caretaker,tt0257106\nEMBCBSoE1rU,1992.0,4,11,2011,The Crying Game,Jody Runs For It,tt0104036\nZOtIoBAxDUw,2001.0,2,11,2011,Scary Movie 2,The Exorcism,tt0257106\nFX3YO40UDHc,2001.0,8,11,2011,Scary Movie 2,Marijuana Monster Tokes Shorty,tt0257106\nsw-oQlitqCY,2001.0,7,11,2011,Scary Movie 2,My Pussy's Gone Crazy!,tt0257106\nVjlUWwstdTU,2001.0,5,11,2011,Scary Movie 2,Nike Freestyle Spoof,tt0257106\njs-kku6X7yU,2001.0,9,11,2011,Scary Movie 2,They Can't Feel Their Legs,tt0257106\nZSoIlS4LQiI,2001.0,6,11,2011,Scary Movie 2,Paranormal Sexual Activity,tt0257106\ndvodASNU58U,2001.0,10,11,2011,Scary Movie 2,Dwight's Time to Shine,tt0257106\nYkGv4M2y3zg,2001.0,11,11,2011,Scary Movie 2,Angel Style,tt0257106\nCXgaZeUY6fM,1992.0,2,11,2011,The Crying Game,She's My Type,tt0104036\nUgd_VB9iVFE,1992.0,3,11,2011,The Crying Game,The Scorpion and the Frog,tt0104036\nMV-KVBADWMg,1992.0,7,11,2011,The Crying Game,First Kiss,tt0104036\nLldAqBKjyJ0,1992.0,1,11,2011,The Crying Game,Checking the Prisoner,tt0104036\n0Z-o1RVdnHE,1992.0,8,11,2011,The Crying Game,The Truth Revealed,tt0104036\nbP9A87VOaYE,1992.0,10,11,2011,The Crying Game,I Knew Your Man,tt0104036\nqvwHppI95K0,2008.0,1,9,2011,Iron Man,The Merchant of Death Scene,tt0371746\nb0fZtW9Niic,1992.0,5,11,2011,The Crying Game,A Haircut from Dil,tt0104036\n7-YQ7rO_JSg,1992.0,9,11,2011,The Crying Game,You're Never Out,tt0104036\nELzQ4OtDjrs,1994.0,1,12,2011,Priest,Different Ministries,tt0110889\nkaZ87rTNkDA,1996.0,5,12,2011,Flirting with Disaster,The Big Circumcision Controversy,tt0116324\nNI7As3rOogo,2001.0,2,12,2011,Jay and Silent Bob Strike Back,What the F*** is the Internet?,tt0261392\nHZs_qERvDko,2007.0,10,11,2011,Becoming Jane,\"Family, Fortune, Importance\",tt0416508\nnaTncfYgYtU,1995.0,1,10,2011,Four Rooms,Room 404,tt0113101\nT2-1TBORh9k,2002.0,5,10,2011,The Dangerous Lives of Altar Boys,I Don't Believe There is a Hell,tt0238924\nvaIRRbuiarE,1999.0,1,12,2011,A Walk on the Moon,The Blouse Man,tt0120613\nyZ1OgEqw2oc,2002.0,10,10,2011,Tadpole,Not a Very Good Mother,tt0271219\nZ5lyNKWvZfc,2003.0,11,11,2011,Once Upon a Time in Mexico,\"The Good, the Bad & the Deformed\",tt0285823\nfVltuJq1SQ8,2003.0,9,11,2011,Once Upon a Time in Mexico,The Blind Gunslinger,tt0285823\nqBrEcM3NbH0,1998.0,12,12,2011,Velvet Goldmine,\"Changing the World, Changing Ourselves\",tt0120879\nRS9Z138meRo,2003.0,8,11,2011,Once Upon a Time in Mexico,Sons of Mexico,tt0285823\nj84y65YfUS4,1999.0,10,12,2011,A Walk on the Moon,I Hate Wasps!,tt0120613\nX7ut7L-X1NQ,2002.0,7,10,2011,The Dangerous Lives of Altar Boys,No One was Coming for this Dog,tt0238924\nyNDm5IA6nQQ,1994.0,5,10,2011,Ready to Wear,On My Hands & Knees,tt0110907\nu3xawRs6Rik,2002.0,4,10,2011,The Dangerous Lives of Altar Boys,Meeting the Cougar,tt0238924\nHtagS7pfoJo,2002.0,1,10,2011,The Dangerous Lives of Altar Boys,Margie Flynn!,tt0238924\n2Fy8vK7IGIs,2002.0,2,10,2011,The Dangerous Lives of Altar Boys,The Atomic Trinity,tt0238924\nkmU4DlO3wzc,2002.0,3,10,2011,The Dangerous Lives of Altar Boys,We're Gonna Need a Bad Guy,tt0238924\nTGWJfpAwlrI,2002.0,6,10,2011,The Dangerous Lives of Altar Boys,The Ransom Note,tt0238924\nNWuqkpD_A6E,2002.0,9,10,2011,The Dangerous Lives of Altar Boys,The Cougar Cage,tt0238924\nisOtwdqD3y8,2002.0,8,10,2011,The Dangerous Lives of Altar Boys,Was That Low Enough for You?,tt0238924\nxTyEZA6ILOk,2002.0,10,10,2011,The Dangerous Lives of Altar Boys,The Final Battle,tt0238924\nJSetLbD948c,1994.0,6,10,2011,Ready to Wear,These Boots Were Made for Walking,tt0110907\ns-kucHjKbG4,1995.0,3,10,2011,Four Rooms,500 Dollars to Babysit,tt0113101\nKz234-_khjs,1994.0,9,10,2011,Ready to Wear,Italian Strip Tease,tt0110907\nBCruokZzMXc,1995.0,5,10,2011,Four Rooms,Milk and Saltines,tt0113101\nRAKPzL6uNOg,1995.0,7,10,2011,Four Rooms,Did They Misbehave?,tt0113101\n9XvQJ2Jbg8A,1995.0,4,10,2011,Four Rooms,The Parents Leave,tt0113101\nRHULBucGlA4,1995.0,8,10,2011,Four Rooms,A Hatchet as Sharp as the Devil Himself,tt0113101\nYO2-9VWwiUI,1996.0,7,10,2011,Emma,Three Things Very Dull Indeed,tt0116191\nwwLnrdD4l3U,1994.0,8,10,2011,Ready to Wear,In The Closet,tt0110907\nrQOBwQbssgo,1995.0,9,10,2011,Four Rooms,A Hitchcock-Inspired Bet,tt0113101\nOsH_JszzicE,1995.0,10,10,2011,Four Rooms,$1000 for One Second's Work,tt0113101\noqDlKpTihNo,1995.0,6,10,2011,Four Rooms,Vaporub on the Eyelids,tt0113101\nqfym2Neaz4c,1999.0,4,10,2011,eXistenZ,The Micro-Pod,tt0120907\nlllLnc58CoI,1995.0,2,10,2011,Four Rooms,Out the Window,tt0113101\ngNCAj7eS07I,1996.0,1,10,2011,Emma,He Wants to Marry Me,tt0116191\nWt5LAZa7LAU,1999.0,3,10,2011,eXistenZ,Bio-Pod Surgery,tt0120907\nHO4TjpZw5zc,1996.0,8,10,2011,Emma,If He Would Just Stay Single,tt0116191\n6B6yElrEeKM,1996.0,3,10,2011,Emma,The Perfect State of Warmness,tt0116191\nLTgOLHxQ9mM,1996.0,10,10,2011,Emma,Marry Me,tt0116191\nM4nag_xN0Rw,1994.0,1,10,2011,Ready to Wear,Kitty Potter On The Scene,tt0110907\n41MHIJIg6u0,1996.0,9,10,2011,Emma,More than a Friend,tt0116191\nmjt0iNTJrWE,1996.0,4,10,2011,Emma,Mr. Elton Adores,tt0116191\n8k_gzuVqZmk,1996.0,2,10,2011,Emma,Men of Sense Do Not Want Silly Wives,tt0116191\nYOLGp-P5QFc,1996.0,5,10,2011,Emma,Duet with Mr. Churchill,tt0116191\nHdU-6bKqhzk,1999.0,2,10,2011,eXistenZ,Gas's Betrayal,tt0120907\n9NCpU9laV9I,1994.0,2,10,2011,Ready to Wear,The Wrong Suite,tt0110907\nW1fkINKMwHA,1999.0,1,10,2011,eXistenZ,Getting a Bio-Port,tt0120907\nYHKkh9b1Oi0,1994.0,3,10,2011,Ready to Wear,French Know Wine,tt0110907\n9KhqPTmsCJU,1994.0,4,10,2011,Ready to Wear,Isabella Faints,tt0110907\n-qq785V7JOU,1999.0,5,10,2011,eXistenZ,is Paused!,tt0120907\nssM67LXOwQw,1999.0,6,10,2011,eXistenZ,I Need to Kill our Waiter,tt0120907\n4zJ3a0K2DP0,1999.0,7,10,2011,eXistenZ,Deadly Spores,tt0120907\n89hYiDNscBE,1999.0,9,10,2011,eXistenZ,tranCendenZ,tt0120907\no3f521sUTaE,1999.0,10,10,2011,eXistenZ,Are We Still In the Game?,tt0120907\n2tmMMXTmM9o,1999.0,8,10,2011,eXistenZ,Have I Won?,tt0120907\nSzQ4cDkdsqg,1994.0,7,10,2011,Ready to Wear,Two Americans in a Hotel Room,tt0110907\nZTUXWwbqu-I,1994.0,10,10,2011,Ready to Wear,Adieu Anne Eisenhower,tt0110907\nOD69M9N_ihQ,2008.0,4,10,2011,Smart People,Self-Absorption's Underrated,tt0858479\nA7kyMbwD9o4,2008.0,6,10,2011,Smart People,Vanessa Kisses Her Uncle,tt0858479\nDcH_p1vfD1g,2000.0,1,12,2011,Chocolat,What Do You See?,tt0241303\nyuU67Mv4bFA,2000.0,3,12,2011,Chocolat,Taming the Shrew,tt0241303\nBbsJiMmpObc,2000.0,6,12,2011,Chocolat,Impure Thoughts at Your Age?,tt0241303\nQ4-XxWqSgH8,2000.0,4,12,2011,Chocolat,I Want to be Your Friend,tt0241303\nyoGdST0RFuc,2000.0,7,12,2011,Chocolat,Vianne Befriends the River Rats,tt0241303\n70E-IYUdbZk,2000.0,12,12,2011,Chocolat,Belonging,tt0241303\nrGvIBT10JDU,2000.0,10,12,2011,Chocolat,Roux's Worm Trick,tt0241303\nxmwm0RH8i-4,2000.0,8,12,2011,Chocolat,Using a Skillet,tt0241303\nPhkCGApLP30,2000.0,9,12,2011,Chocolat,Your Favorite,tt0241303\nxftZzmdlCKk,2000.0,11,12,2011,Chocolat,I'm Throwing a Party,tt0241303\nU-XEvzDp70Y,2002.0,2,11,2011,The Hours,A Visit From Kitty,tt0274558\nhPF9nzzuMfo,2002.0,3,11,2011,The Hours,Laura Consoles Kitty,tt0274558\nUGYt7xZWoPw,2001.0,1,12,2011,Prozac Nation,You Wanna Do Some X?,tt0236640\n1PKDDa6p-xE,2002.0,7,11,2011,The Hours,An Obligation to Your Sanity,tt0274558\nxKL_T4z0QX4,2001.0,3,12,2011,Prozac Nation,Health Hazard,tt0236640\n_f0TNK7fb1w,2002.0,5,11,2011,The Hours,To Kill or Not to Kill the Heroine,tt0274558\nxsyNWPpAb14,2001.0,2,12,2011,Prozac Nation,My First Time,tt0236640\najgeUrUcqfE,2002.0,6,11,2011,The Hours,Happiness,tt0274558\nCWAAUSNLZXQ,2002.0,1,11,2011,The Hours,Staying Alive to Satisfy You,tt0274558\nvWZapP8b11s,2002.0,10,11,2011,The Hours,You Have to Let Me Go,tt0274558\nQk_tn8K0OwA,2002.0,4,11,2011,The Hours,Bird Funeral,tt0274558\nDHkGu6e0R4I,1996.0,11,12,2011,Basquiat,Amoco Artwork,tt0115632\nJsUh_lfcyKk,2002.0,9,11,2011,The Hours,I Changed My Mind,tt0274558\nHtpiEXXf7dI,2001.0,6,12,2011,Prozac Nation,Bad Behavior,tt0236640\nkvHcswMy05A,2002.0,11,11,2011,The Hours,No Choice,tt0274558\nl6SNAV2S5es,2001.0,5,12,2011,Prozac Nation,It Was An Accident,tt0236640\nUaRyn-tb0U4,2001.0,7,12,2011,Prozac Nation,Making the Move,tt0236640\n2wy3acVALNI,2001.0,8,12,2011,Prozac Nation,Real Love Is Total,tt0236640\njAZbK72VLFA,2003.0,10,11,2011,Once Upon a Time in Mexico,El Mariachi's Revenge,tt0285823\nKtGm2OkQa3w,2008.0,1,11,2011,Happy-Go-Lucky,What's So Funny?,tt1045670\nzr5fCCcWRJ4,1992.0,12,12,2011,Reservoir Dogs,I'm a Cop,tt0105236\nz0s6zZJdsZo,1992.0,4,12,2011,Reservoir Dogs,A Rat in the House,tt0105236\nHzF_TbmDH5s,1992.0,11,12,2011,Reservoir Dogs,Mexican Standoff,tt0105236\n1ZT_oKZGgew,2000.0,3,12,2011,Scary Movie,Miss Fellatio Wins,tt0175142\nEzW2MKQ5q4s,2001.0,9,12,2011,Prozac Nation,You're Sick,tt0236640\nrLx1ABxely0,1992.0,3,12,2011,Reservoir Dogs,Pink's Escape,tt0105236\nEyXDqVQ7MBc,2003.0,3,12,2011,The Station Agent,\"I'm a Good Walker, Bro\",tt0340377\nAd7rUGIPVqQ,2001.0,10,12,2011,Prozac Nation,Beaten,tt0236640\nQxn6aafaNP8,1998.0,5,12,2011,54,Names For the List,tt0120577\nWyNGkhmkuus,2001.0,11,12,2011,Prozac Nation,You Don't Have to Pretend,tt0236640\n2eMqB3CFMkI,1994.0,3,12,2011,The Legend of Drunken Master,Friendly Fight For Fish,tt0111512\nAVKK_tDNQMc,2001.0,12,12,2011,Prozac Nation,Gradually and Then Suddenly,tt0236640\nb2zQmmYEDY4,2001.0,8,12,2011,Jay and Silent Bob Strike Back,The Fugitive(s),tt0261392\n3RLPHNi_2-A,1995.0,7,12,2011,Georgia,So Much Soul,tt0113158\nsHTeguzrPto,2000.0,11,12,2011,Scary Movie,Kicking the Killer's Ass,tt0175142\nq9QJ_S62yVo,2000.0,1,12,2011,Scary Movie,Femme Fatality,tt0175142\ntfvoOEa1OOI,1998.0,4,12,2011,54,I Wanna Suck Your C***,tt0120577\nRBvtPZ6zyHI,2000.0,10,12,2011,Scary Movie,\"Hot Sex, Killer Rap\",tt0175142\nA3oL7v7PLac,2000.0,5,12,2011,Scary Movie,Wazzup!,tt0175142\nSgwfvu6k0xs,2000.0,8,12,2011,Scary Movie,Silent Theater,tt0175142\nT8oTlWwAPFI,2000.0,2,12,2011,Scary Movie,\"Run, Bitch, Run!\",tt0175142\n-zLOrCQ0BpQ,2000.0,6,12,2011,Scary Movie,Wanna Play Pyscho Killer?,tt0175142\nmw7xjHBJOvs,2000.0,7,12,2011,Scary Movie,I'm So Scared!,tt0175142\nWUfY9jgSrLI,2003.0,1,11,2011,Scary Movie 3,Becca and Kate,tt0306047\nGhSSEuAEcm0,1998.0,1,12,2011,54,Getting In,tt0120577\nZAerssgC4pc,2000.0,4,12,2011,Scary Movie,Do You Know Where I Am?,tt0175142\nQpbf9NUuuUk,2000.0,9,12,2011,Scary Movie,Stuck in the Door,tt0175142\nUlIBiZxArGY,2000.0,12,12,2011,Scary Movie,Noooooooooooo!,tt0175142\nD9FBXb4G4GI,2003.0,7,11,2011,Scary Movie 3,O Shizl Gzngahr,tt0306047\n9iSVgAZ6bSM,2003.0,2,11,2011,Scary Movie 3,Rap Battle,tt0306047\n9I0E9w8Nqfg,1998.0,3,12,2011,54,New Bus Boy,tt0120577\nvzt7Yb_-yiY,1998.0,10,12,2011,54,Two Lives,tt0120577\nzAeofWDUArU,2003.0,6,11,2011,Scary Movie 3,Fighting MJ,tt0306047\nFxx7g5nz4WQ,2003.0,8,11,2011,Scary Movie 3,Cindy Meets the Architect,tt0306047\nkSk0pCs4pGQ,2003.0,3,11,2011,Scary Movie 3,Faking It,tt0306047\nQe_3aoChgwI,1991.0,10,12,2011,Johnny Suede,Shaving in the Tub,tt0104567\nviCosY2u6YU,2003.0,10,11,2011,Scary Movie 3,Not So Different After All,tt0306047\nmqnB2ef3S6M,2003.0,4,11,2011,Scary Movie 3,No Sex,tt0306047\numjmV3SwDjw,2003.0,9,11,2011,Scary Movie 3,White House Fisticuffs,tt0306047\nAIw6mK0Ob60,1995.0,8,12,2011,Georgia,In Grace,tt0113158\no1mDknOtAv4,2008.0,7,10,2011,Smart People,A Sarcastic Christmas Dinner,tt0858479\nJi28PrD7P-M,1995.0,6,12,2011,Georgia,Take Me Back,tt0113158\nSnMSSAqPSaw,1999.0,9,12,2011,A Walk on the Moon,You Had Your Chance!,tt0120613\noiikIyodOAk,2003.0,5,11,2011,Scary Movie 3,The Wrong TV,tt0306047\nQ1MHXYx2820,2003.0,9,12,2011,Bad Santa,I'm a Motherf***ing Dwarf!,tt0307987\nu83fkqXPIGE,1999.0,2,12,2011,A Walk on the Moon,Tie Dye T-Shirt,tt0120613\ngJvgjH9Tvpo,2001.0,12,12,2011,Serendipity,Together at Last,tt0240890\nxaCe8T1fXSM,1999.0,8,12,2011,A Walk on the Moon,Are You Screwing Someone?,tt0120613\nKerwQ_DokIw,1999.0,3,12,2011,A Walk on the Moon,Alison Becomes a Woman,tt0120613\nc_a5Y18mdLo,1999.0,4,12,2011,A Walk on the Moon,Pearl Makes a Date,tt0120613\nHZkrxGuKHkU,1999.0,6,12,2011,A Walk on the Moon,Getting Too Old for This,tt0120613\n0IxeTLiovq8,1999.0,7,12,2011,A Walk on the Moon,Woodstock,tt0120613\ntPnacrrdjIk,2008.0,3,10,2011,Smart People,45 Minutes,tt0858479\nYzW2OjTJc0o,1999.0,5,12,2011,A Walk on the Moon,One Giant Leap,tt0120613\n0iz6-4QxGnc,1995.0,7,11,2011,The Prophecy,Visions of Death,tt0114194\nugw3DUIVKow,1995.0,8,11,2011,The Prophecy,You Can't Have Her!,tt0114194\nzD0YTr7ZF58,2008.0,2,10,2011,Smart People,Why Are You Here?,tt0858479\nJQc_dMcByUk,2008.0,1,10,2011,Smart People,SAT Practice in the ER,tt0858479\n9pT5FVBFunA,2008.0,5,10,2011,Smart People,Date Do-Over,tt0858479\nj1dkwnqffaM,2008.0,8,10,2011,Smart People,The Wetherhold Bachelors,tt0858479\n1n4wtaSq7AY,1999.0,11,12,2011,A Walk on the Moon,Who Stopped You?,tt0120613\na9eT3NaWLPw,2008.0,9,10,2011,Smart People,Friends,tt0858479\nwyKfuDzbbOI,2002.0,7,12,2011,Frida,Diego Conquers New York,tt0120679\nbTdvsBKjlbE,1999.0,12,12,2011,A Walk on the Moon,Sometimes Things Happen,tt0120613\n8W3_WigxsXs,1992.0,1,12,2011,Strictly Ballroom,Ballroom Champion,tt0105488\ncsfyEVjimu4,1992.0,2,12,2011,Strictly Ballroom,Crowd Pleasing Steps,tt0105488\nBHFoI47tc9A,2001.0,11,12,2011,Serendipity,Living Obituary,tt0240890\nlIzqZwDHis4,1992.0,3,12,2011,Strictly Ballroom,It Takes Two to Tango,tt0105488\nguq6F4Jm5Rs,1992.0,4,12,2011,Strictly Ballroom,Dancing Alone,tt0105488\no-rVEtR9rfQ,1995.0,4,11,2011,The Prophecy,I Can Make This Last Forever,tt0114194\nK-zYWpnMyXI,1992.0,5,12,2011,Strictly Ballroom,Try Outs,tt0105488\nD1kIRqy-sbA,1995.0,6,11,2011,The Prophecy,Questioning the Kids,tt0114194\nWRx0b993Lj4,1992.0,6,12,2011,Strictly Ballroom,Time After Time,tt0105488\nT1Z39yM9AVk,1995.0,2,11,2011,The Prophecy,Dead Angel Storage,tt0114194\nChIS70dX0eU,1995.0,3,11,2011,The Prophecy,The Archangel Gabriel,tt0114194\nmPoyezWAghE,1995.0,9,11,2011,The Prophecy,The First Angel,tt0114194\nO6IMaR_G_sU,1992.0,10,12,2011,Strictly Ballroom,The Ballad of Doug Hastings,tt0105488\nIzOtTXOVc9A,1992.0,7,12,2011,Strictly Ballroom,Backstage Dance Affair,tt0105488\nxwsTm8Xo7kE,1992.0,8,12,2011,Strictly Ballroom,Pasodoble,tt0105488\nix08f9qDkk8,1995.0,10,11,2011,The Prophecy,Job Offer,tt0114194\nRATBzjmcbh8,1992.0,11,12,2011,Strictly Ballroom,The Future of Dance Sport,tt0105488\n2tQUU1c6MIw,1995.0,11,11,2011,The Prophecy,Time to Go Home,tt0114194\nragJxrFknuQ,1995.0,5,11,2011,The Prophecy,Look at Me,tt0114194\nuc7tYT1-Y78,1995.0,1,11,2011,The Prophecy,Dropping In,tt0114194\nuC1Lmk5qK2Q,1998.0,7,12,2011,54,Disco Lessons,tt0120577\nB4Us9Mq7GIc,1992.0,9,12,2011,Strictly Ballroom,Listen to the Rhythm,tt0105488\nXTfUTOcdkqY,1998.0,12,12,2011,54,Steve's Welcome Back Party,tt0120577\nb3EWsHg08x4,2004.0,3,10,2011,Finding Neverland,Grandmother's Hook,tt0308644\nN0gaRYJH5GE,1998.0,11,12,2011,54,New Year's Eve,tt0120577\nqKerIOG7jdI,1998.0,9,12,2011,54,The Clap,tt0120577\nY0FAYOIt-VQ,1998.0,6,12,2011,54,Socialites,tt0120577\nqmBAF_JTwDs,1998.0,2,12,2011,54,Knock on Wood,tt0120577\nntALVSmIUrg,2002.0,1,12,2011,Dirty Pretty Things,Discovering the Heart,tt0301199\nt9iFa_dTcN0,1998.0,10,12,2011,Velvet Goldmine,Death of Glitter (20th Century Boy),tt0120879\nHYUfT__t3jU,2003.0,4,12,2011,The Station Agent,Housewarming/Apology Gift,tt0340377\neN7zGm5KKrI,1994.0,2,12,2011,The Legend of Drunken Master,What Do You Call That?,tt0111512\nwqvnT7u0mSg,1991.0,1,12,2011,Johnny Suede,Black Suede Shoes,tt0104567\n6n6RVIIC8SE,2001.0,7,12,2011,Jay and Silent Bob Strike Back,Adopted Love Child,tt0261392\nCzaHTATaPAc,2001.0,1,11,2011,In the Bedroom,The Old Saying,tt0247425\nMGiNXAG0gjw,1991.0,2,12,2011,Johnny Suede,Another Man's Woman,tt0104567\nIIoBuBiTfS4,1991.0,3,12,2011,Johnny Suede,Never Girl,tt0104567\nToZx1LjLmrM,2002.0,5,12,2011,Frida,and Diego's Wedding,tt0120679\nHadRbtEI7KU,2002.0,8,12,2011,Frida,Cuts Her Hair,tt0120679\n5k2vzUZYdfw,1991.0,4,12,2011,Johnny Suede,I Don't Love You,tt0104567\ns9jX0S7mvB8,2002.0,9,12,2011,Frida,You've Never Been My Husband,tt0120679\n5wThW2AGZw0,1991.0,5,12,2011,Johnny Suede,Midtown,tt0104567\n-9xP6hMwNy4,1991.0,6,12,2011,Johnny Suede,My Turn,tt0104567\npEjOIBe21a8,1991.0,7,12,2011,Johnny Suede,Shoe Fight,tt0104567\nD0NZyQWyZfI,1991.0,11,12,2011,Johnny Suede,What Have You Done?,tt0104567\nx0KnLMaLLcI,1991.0,8,12,2011,Johnny Suede,Mamma's Boy,tt0104567\nlGIEwdZTNRQ,1991.0,9,12,2011,Johnny Suede,Freak and Johnny,tt0104567\nyhf9YADtuyA,2002.0,3,12,2011,Dirty Pretty Things,The Whore & the John,tt0301199\nJcvSNsyvwNc,1991.0,12,12,2011,Johnny Suede,Crash at My Place,tt0104567\nVtkM2SPaSJ8,1992.0,9,12,2011,Reservoir Dogs,Let's Get a Taco,tt0105236\n4_4HFkbbbC4,2002.0,4,12,2011,Dirty Pretty Things,Protecting Senay,tt0301199\n2ZDDIJV5ypc,2002.0,2,12,2011,Dirty Pretty Things,A Nigerian Dinner,tt0301199\nirnb55gfwNc,2002.0,11,12,2011,Dirty Pretty Things,The People You Do Not See,tt0301199\nZJhHYsmJra0,2002.0,6,12,2011,Dirty Pretty Things,I Bit Him,tt0301199\nEmTXI8HV9nE,2002.0,10,12,2011,Dirty Pretty Things,The Set Up,tt0301199\n83twDFjlCjM,2002.0,5,12,2011,Dirty Pretty Things,Okwe's Warning,tt0301199\ng05Ja_89tOg,2002.0,9,12,2011,Dirty Pretty Things,Take it or Leave it,tt0301199\nGL2B4xLAjE4,2002.0,8,12,2011,Dirty Pretty Things,Only Survival,tt0301199\nqjKhJnrMamA,1992.0,12,12,2011,Strictly Ballroom,Love is in the Air,tt0105488\nwek_o4V_T00,2002.0,7,12,2011,Dirty Pretty Things,Forced Treatment,tt0301199\ns0EAZmF0k6g,1995.0,5,12,2011,Rumble in the Bronx,No Way Out,tt0113326\nNRd2gti9rHE,1992.0,1,12,2011,Reservoir Dogs,Like a Virgin,tt0105236\nEb5uCh-8rZ4,1992.0,2,12,2011,Reservoir Dogs,Tips,tt0105236\n4W5KhfJHF_4,1992.0,8,12,2011,Reservoir Dogs,Why Am I Mr. Pink?,tt0105236\nPGqB6JIUzBo,1992.0,5,12,2011,Reservoir Dogs,Stuck in the Middle With You,tt0105236\nz8oaq50tGRI,1992.0,6,12,2011,Reservoir Dogs,Mr. Orange,tt0105236\nfPUJS7w4Dag,2002.0,12,12,2011,Dirty Pretty Things,Always We Must Hide,tt0301199\nP5GNspEWA68,1996.0,4,10,2011,The Pallbearer,Painfully Awkward Date,tt0117283\nZx8vIjEKvT8,1978.0,9,10,2011,Game of Death,The Fight With Hakim,tt0077594\n-zPjGsII_fw,1994.0,11,12,2011,Priest,Casting the First Stone,tt0110889\nfQBlpIivzY8,1978.0,10,10,2011,Game of Death,Billy Lo Triumphant,tt0077594\nf3_39H9_3Qw,1978.0,8,10,2011,Game of Death,Backbreaker,tt0077594\nOIBtFHZy0xk,1978.0,2,10,2011,Game of Death,Shot on Set,tt0077594\n5N0ifKLehLM,1978.0,1,10,2011,Game of Death,Hakim's Power,tt0077594\nSnpNDM1XeZY,1978.0,7,10,2011,Game of Death,Don't Choke,tt0077594\nlYb1h0iDWSE,1978.0,4,10,2011,Game of Death,Lo Chen Fights Killer Miller,tt0077594\nH98MLmW5tYw,1978.0,6,10,2011,Game of Death,Dueling Nunchakus,tt0077594\nqslhUrtrjXQ,1978.0,5,10,2011,Game of Death,Killer Miller Is the Winner,tt0077594\ny69iLU9cSyo,1995.0,1,12,2011,Rumble in the Bronx,Saving the Limo,tt0113326\nl2IJxv1lbAc,1995.0,2,12,2011,Rumble in the Bronx,No Trouble,tt0113326\nqPfLNjGXa2M,1998.0,8,12,2011,54,Jealousy,tt0120577\nNBG53Xzikp8,1995.0,4,12,2011,Rumble in the Bronx,Batter Up!,tt0113326\n5TIiQZo6snc,1995.0,3,12,2011,Rumble in the Bronx,Dead End,tt0113326\nUo18enRpmG4,1995.0,6,12,2011,Rumble in the Bronx,Play Ball,tt0113326\nxfTtfDBUrvA,1995.0,8,12,2011,Rumble in the Bronx,You Win,tt0113326\n6ZZHQMtbhxw,1995.0,7,12,2011,Rumble in the Bronx,This Is Where It Ends,tt0113326\nIUodLjwwSBU,1995.0,9,12,2011,Rumble in the Bronx,Hovercraft By Sea,tt0113326\ndMxAYJDzSls,1994.0,12,12,2011,Priest,Compassion & Communion,tt0110889\nmqzu3AI7Dow,1995.0,11,12,2011,Rumble in the Bronx,Do Something!,tt0113326\nZWrv3l_2tGQ,1995.0,10,12,2011,Rumble in the Bronx,Hovercraft By Land,tt0113326\nPpD6HmPdadI,1995.0,12,12,2011,Rumble in the Bronx,Take Down on Hole 17,tt0113326\nla1tZNwaBog,1994.0,10,12,2011,Priest,The Church Today,tt0110889\nvlqQwxeYtr8,1996.0,5,10,2011,The Pallbearer,The Wrong Signals,tt0117283\nL5xFe4LFtb4,1994.0,9,12,2011,Priest,Suicide Attempt,tt0110889\neG9QMl_w1pk,1994.0,6,12,2011,The Legend of Drunken Master,Mom Has a Little Baby!,tt0111512\nevzxQrEfIG8,1994.0,8,12,2011,Priest,How Could You Know Despair?,tt0110889\nnCO2V7YS1nQ,1994.0,2,12,2011,Priest,Interference with Creation,tt0110889\nxMy-NiI7q-M,1994.0,3,12,2011,Priest,Our Job,tt0110889\nRJAU3K60wIk,2002.0,7,11,2011,Hero,The Most Dangerous Assassin,tt0299977\nRF9vhf_r81w,1994.0,12,12,2011,The Legend of Drunken Master,Just Perfect,tt0111512\njXA-4rN9-ds,1994.0,11,12,2011,The Legend of Drunken Master,Heated Showdown,tt0111512\nF85KoecJotw,1994.0,7,12,2011,The Legend of Drunken Master,The Axe Gang Battle,tt0111512\nC02zRnebZu0,1994.0,10,12,2011,The Legend of Drunken Master,First Wave of Pawns,tt0111512\nN_vildqkupI,1994.0,9,12,2011,The Legend of Drunken Master,The Chained Henchman,tt0111512\n6w-07V2q_DE,1992.0,7,12,2011,Reservoir Dogs,The Commode Story,tt0105236\n8LGY68ppqVk,1994.0,8,12,2011,The Legend of Drunken Master,Bamboo Smack Down,tt0111512\n06u-a5jmi6o,2002.0,3,12,2011,Frida,and Tina Tango,tt0120679\n_mSvR3aQeWU,1994.0,5,12,2011,The Legend of Drunken Master,The Name Game,tt0111512\nNlyai-wfZLw,1994.0,4,12,2011,The Legend of Drunken Master,The Purse Snatchers,tt0111512\nFAY2LYoYCAU,1994.0,1,12,2011,The Legend of Drunken Master,The Train Thief,tt0111512\nHN-YqWQ3PEE,2000.0,10,10,2011,Malèna,\"Good Luck, Malena\",tt0213847\nWvyi2PEVFcQ,1996.0,1,10,2011,The Pallbearer,I Need to Borrow a Shirt,tt0117283\nCIAyyugbq54,1992.0,12,12,2011,Supercop,Stunt Outtakes,tt0104558\ndp4qnnVSk8Y,2005.0,3,11,2011,The Brothers Grimm,That Was Real!,tt0355295\nqe_BzGXRDzo,1996.0,6,12,2011,Scream,School's Out Scene,tt0117571\nvp94AFms0V0,1992.0,10,12,2011,Reservoir Dogs,Mr. White's Escape,tt0105236\nNdYmIIbYoH0,1996.0,7,12,2011,Scream,Death by Doggie Door Scene,tt0117571\nmvLpbHKV1_8,1996.0,8,12,2011,Scream,How to Survive a Horror Movie Scene,tt0117571\ngwnFTbQVOwM,1996.0,9,12,2011,Scream,Look Behind You! Scene,tt0117571\nzyVKJXfRm_g,1996.0,10,12,2011,Scream,\"Surprise, Sidney! Scene\",tt0117571\nmaEC9NS6CkA,2001.0,1,12,2011,Amélie,Little Amelie,tt0211915\nkR3VW07XfUo,1996.0,11,12,2011,Scream,More Creative Psychos Scene,tt0117571\nCiT-XIWEC8c,1996.0,12,12,2011,Scream,Turning the Tables Scene,tt0117571\nxCMsK2duu2s,1996.0,4,12,2011,Scream,How Do You Gut Someone? Scene,tt0117571\niaofBseh0J8,1997.0,11,12,2011,Chasing Amy,Jay and Loquacious Bob,tt0118842\nWuntz3KDIAk,2001.0,2,12,2011,Amélie,Helping a Blind Man,tt0211915\nLWxSBbBX4fs,1996.0,1,12,2011,Scream,Do You Like Scary Movies? Scene,tt0117571\nkORHCVmSucM,2001.0,8,12,2011,Amélie,Payback for Collignon,tt0211915\ngVgsadEybgQ,1996.0,3,12,2011,Scream,Casey Is Killed,tt0117571\nv1M3w_o7cOc,1996.0,2,12,2011,Scream,Wrong Answer Scene,tt0117571\np8Ejl4eeFXM,1996.0,5,12,2011,Scream,\"Do You Want to Die, Sidney? Scene\",tt0117571\n1EbSU5Zyx9Y,1997.0,6,12,2011,Chasing Amy,I'm in Love With Her!,tt0118842\nvTbcPIKxmP0,2001.0,4,12,2011,Amélie,\"Collignon, Dead and Gone\",tt0211915\nl4AmSVb6Hew,1997.0,2,12,2011,Chasing Amy,F*** Lando Calrissian!,tt0118842\n26MkbK_C-lM,2001.0,6,12,2011,Amélie,A Ride with Nino,tt0211915\nhVnFKJJYLPA,2001.0,7,12,2011,Amélie,Do You Want to Meet?,tt0211915\nbQutB3mYc84,2001.0,11,12,2011,Amélie,Speechless Kiss,tt0211915\nInj01auwE9c,2001.0,9,12,2011,Amélie,Is This You?,tt0211915\nmbTZ4ywa1Dc,2001.0,12,12,2011,Amélie,Bliss for Amelie,tt0211915\ng1JAILio6-s,1997.0,8,12,2011,Chasing Amy,A Kiss in the Rain,tt0118842\natGNvojXOvM,1997.0,7,12,2011,Chasing Amy,In Love With Alyssa,tt0118842\ncxWRWbdsTjc,1997.0,9,12,2011,Chasing Amy,Finger Cuffs,tt0118842\n_eCWpUV7cOI,1997.0,3,12,2011,Chasing Amy,The Definition of F***ing,tt0118842\nepHCMiCtt3M,1997.0,1,12,2011,Chasing Amy,You're a Tracer!,tt0118842\nOmQGN9X57Ts,1997.0,4,12,2011,Chasing Amy,Battle Scars,tt0118842\nIqc8WWvcTN4,1997.0,5,12,2011,Chasing Amy,The Virginity Standard,tt0118842\n_undGtyUxeg,1997.0,10,12,2011,Chasing Amy,An Experimental Girl,tt0118842\nwVWk6IfRuEE,2003.0,5,12,2011,Bad Santa,Bob Chipeska,tt0307987\nV9K9m155U2E,2001.0,9,11,2011,In the Bedroom,The Lenient Father,tt0247425\nPe7G8iCN_nM,1997.0,12,12,2011,Chasing Amy,We've All Gotta Have Sex Together,tt0118842\nZ0W6ufDtdS8,2003.0,12,12,2011,Bad Santa,The Three B's,tt0307987\nTt8DoNerIPY,2003.0,8,12,2011,Bad Santa,Half,tt0307987\n1LxDWSYgiUc,2003.0,10,12,2011,Bad Santa,Nutcracker,tt0307987\nJuQmiyLzHdw,2001.0,2,11,2011,In the Bedroom,As Good a Life as Any,tt0247425\ngXJH5jhO9to,2001.0,6,11,2011,In the Bedroom,Only Manslaughter,tt0247425\nR1G5HwXEw9M,2001.0,4,11,2011,In the Bedroom,Grief,tt0247425\nJqyCEV_iACo,2001.0,3,11,2011,In the Bedroom,The Crime,tt0247425\nPhXFRRVBKus,2001.0,5,11,2011,In the Bedroom,In Session,tt0247425\nxE9YSmsKm8I,2001.0,7,11,2011,In the Bedroom,My Lost Youth,tt0247425\nb1eMAFWXZ4Q,2003.0,1,12,2011,Bad Santa,My F*** Stick,tt0307987\nAKONPxrqFxs,2003.0,4,12,2011,Bad Santa,You People,tt0307987\nbZq6Gv7rP0w,2001.0,8,11,2011,In the Bedroom,Mrs. Fowler,tt0247425\nzFo_QE8j1Hs,2001.0,10,11,2011,In the Bedroom,The Unforgiving Mother,tt0247425\nbw4xDTQYIfE,1996.0,1,12,2011,Flirting with Disaster,The Help of a Good Bra,tt0116324\nAuq9e3lBq6I,2003.0,3,12,2011,Bad Santa,F*** Me Santa,tt0307987\nvcsl8fSgqls,2001.0,11,11,2011,In the Bedroom,The Murder,tt0247425\nUnXDK24wbSg,1996.0,9,12,2011,Flirting with Disaster,We Made L.S.D.,tt0116324\nVJOO-fcRLzk,2003.0,6,12,2011,Bad Santa,Santa's Staying Over,tt0307987\nqUu8VHynw40,2003.0,2,12,2011,Bad Santa,He's Freakin' Me Out,tt0307987\nl83CcqhP-kY,1996.0,2,12,2011,Flirting with Disaster,Indian Wrestling,tt0116324\nEKd7z5CY4BU,2003.0,7,12,2011,Bad Santa,Santa's Fatherly Advice,tt0307987\nIHR5ljAFCGE,2003.0,11,12,2011,Bad Santa,Wooden Pickle,tt0307987\n36QmLon8dn8,1996.0,3,12,2011,Flirting with Disaster,Twin Sisters,tt0116324\niF_053JQnQE,1996.0,4,12,2011,Flirting with Disaster,Fritz Boudreau the Truck Driving Father,tt0116324\nCDn1rXzkBEM,1996.0,6,12,2011,Flirting with Disaster,Pup Tent,tt0116324\n_kItBZZK1p0,1996.0,10,12,2011,Flirting with Disaster,Acid Freak Out,tt0116324\nyjU5akwca64,1996.0,12,12,2011,Flirting with Disaster,A Blind U-Turn,tt0116324\nnNXIh6RrvNw,1996.0,11,12,2011,Flirting with Disaster,An Attractive Armpit,tt0116324\n4K8M2EVnoKc,1996.0,1,11,2011,Beautiful Girls,A Girl Named Marty,tt0115639\nE8LYvflSTAE,1996.0,2,11,2011,Beautiful Girls,Andera the Vixen,tt0115639\nDPQ47h-k-nw,1996.0,3,11,2011,Beautiful Girls,Sweet Caroline,tt0115639\nRqCVbiHCYAA,1996.0,4,11,2011,Beautiful Girls,\"Great Ass, Nice Tits\",tt0115639\nM-h1ERyxbQ0,1996.0,7,11,2011,Beautiful Girls,Ice Skating with Marty,tt0115639\ntMIO48oFmHc,1996.0,6,11,2011,Beautiful Girls,A Nabokov Character,tt0115639\nn1BXpNTsoB8,1996.0,9,11,2011,Beautiful Girls,A Piano Playing Drunk,tt0115639\nUyo69utc9bM,1996.0,8,11,2011,Beautiful Girls,Make You Dizzy,tt0115639\nF4T2_xFNAqs,1996.0,5,11,2011,Beautiful Girls,\"Face, Body, Personality Rankings\",tt0115639\nITfoGnAkw4I,1996.0,10,11,2011,Beautiful Girls,Late-Night Ice Fishing Date,tt0115639\n2Vam2a4r9vo,1996.0,11,11,2011,Beautiful Girls,Hope We Stay in Touch,tt0115639\nxIbilLMZLHw,2008.0,6,11,2011,Happy-Go-Lucky,We Got Flamenco!,tt1045670\nr2NHTRgH3G0,2001.0,4,12,2011,Jay and Silent Bob Strike Back,Mooby Internet Retort,tt0261392\n-ftyIj2_b8Y,2001.0,10,12,2011,Jay and Silent Bob Strike Back,The Miramax Lot,tt0261392\nk59rG0r-sqI,2007.0,5,11,2011,Becoming Jane,\"I Am Yours, Heart and Soul\",tt0416508\nEeEhcPAOGUo,2007.0,1,11,2011,Becoming Jane,A Cut Above the Company,tt0416508\nDiIgAES9zt0,2007.0,3,11,2011,Becoming Jane,Your Horizons Must be Widened,tt0416508\nwaE1U01kwxY,2001.0,1,12,2011,Jay and Silent Bob Strike Back,Another Day at the Quick Stop,tt0261392\nNnEKQD1fS20,2007.0,6,11,2011,Becoming Jane,Insult With a Smiling Face,tt0416508\ndiFDBNNmnnU,2001.0,3,12,2011,Jay and Silent Bob Strike Back,Hitchhiking Head,tt0261392\nuPwo-nHWQaM,2001.0,5,12,2011,Jay and Silent Bob Strike Back,Dirty Sheep F***er,tt0261392\nc8qfaEdYBJ0,2007.0,9,11,2011,Becoming Jane,Goodbye,tt0416508\nxqD1y_cJAaM,2007.0,2,11,2011,Becoming Jane,Jane Plays Cricket,tt0416508\n1uLzZVSIo1U,2001.0,6,12,2011,Jay and Silent Bob Strike Back,The C.L.I.T.,tt0261392\nnnESedN4vSI,2001.0,9,12,2011,Jay and Silent Bob Strike Back,Good Will Hunting 2: Hunting Season,tt0261392\nmYZGSfnk144,1998.0,5,12,2011,Velvet Goldmine,Ballad of Maxwell Demon,tt0120879\nPYJFzOzpwHo,2001.0,12,12,2011,Jay and Silent Bob Strike Back,Cocknocker!,tt0261392\n3KoW7h3Auf4,1995.0,10,12,2011,Georgia,Needing Shoes,tt0113158\n8LM8A67uo_M,2007.0,4,11,2011,Becoming Jane,\"Would You Rather be a Poor, Old Maid?\",tt0416508\nKcINC5YSNbE,2006.0,10,10,2011,The Queen,One Must Modernize,tt0436697\nkDnCoiYKmtw,2001.0,11,12,2011,Jay and Silent Bob Strike Back,Chaka Luther King,tt0261392\nXVOsO0E1E34,2007.0,7,11,2011,Becoming Jane,Run Away With Me,tt0416508\nkQ6BSOZ0VGQ,2002.0,2,12,2011,Frida,Calaca Hospital,tt0120679\nOOMIZUsKlmg,2007.0,8,11,2011,Becoming Jane,Jane and Tom Elope,tt0416508\nG5qjWjkpUaI,2007.0,11,11,2011,Becoming Jane,Many Years Later,tt0416508\nVjiy9rCG-yU,1996.0,3,12,2011,Basquiat,How Long to Get Famous?,tt0115632\nvXvHja7vtoU,1996.0,1,12,2011,Basquiat,Pancake Art,tt0115632\noKcbalkmH_Y,1996.0,2,12,2011,Basquiat,The Electrician,tt0115632\ngsJlkWp0p90,1996.0,4,12,2011,Basquiat,Buy Some Ignorant Art,tt0115632\niHWOj17ISfk,2005.0,10,11,2011,The Brothers Grimm,The Queen is Shattered,tt0355295\nZ-5JqDEHfe8,1996.0,7,12,2011,Basquiat,The Gallery Opening,tt0115632\nDiAtgmRa6fc,1996.0,6,12,2011,Basquiat,Painting to Jazz,tt0115632\nMRs1EBoZQ7c,2005.0,11,11,2011,The Brothers Grimm,True Love's Kiss,tt0355295\novV34LOq9Q8,2005.0,9,11,2011,The Brothers Grimm,Enchanted Knives,tt0355295\nTRAlGwGvlXs,2005.0,8,11,2011,The Brothers Grimm,The Woodsman and the Witch,tt0355295\nqM8jk56Vj9Y,1996.0,8,12,2011,Basquiat,Mr. Chow's Meltdown,tt0115632\n9yPj41sNdn8,2005.0,7,11,2011,The Brothers Grimm,The Fairest of Them All,tt0355295\nPR9wl4Qve5E,2005.0,6,11,2011,The Brothers Grimm,Mud Monster,tt0355295\nJDN_C4L6Bjg,2005.0,5,11,2011,The Brothers Grimm,Believe in Me,tt0355295\nF3H_X9-yFZA,1996.0,10,12,2011,Basquiat,Put Their Bill On My Tab,tt0115632\n1BZoajBwbac,1996.0,9,12,2011,Basquiat,An Interview with Jean-Michel,tt0115632\ng3hYbDHwBJY,2005.0,4,11,2011,The Brothers Grimm,Cavaldi's Tortures,tt0355295\n48jtU38CZS4,2004.0,7,10,2011,Dirty Dancing: Havana Nights,Practicing for the Competition,tt0338096\nnYhuIXk_CPk,2005.0,2,11,2011,The Brothers Grimm,The Evil Forest,tt0355295\n2tKQW10sje4,2003.0,7,11,2011,The Blind Swordsman: Zatoichi,Dance of Sorrow,tt0363226\nUWyzrr2ch5s,1993.0,1,10,2011,Iron Monkey,Breaching the Fortress,tt0108148\nDnFk_dGSL5M,2004.0,3,10,2011,Dirty Dancing: Havana Nights,Be My Partner,tt0338096\nEDyDOkeEge0,2005.0,1,11,2011,The Brothers Grimm,Grimm at Your Service,tt0355295\n4jv8ZCoQyZE,2002.0,2,10,2011,Confessions of a Dangerous Mind,I'm Penny,tt0270288\nLABD2un-vIs,1996.0,5,12,2011,Basquiat,It's All Over Now Baby Blue,tt0115632\nX11uEGRnCDs,1993.0,5,10,2011,Iron Monkey,Little Wong Fei-Hung,tt0108148\nVkGD-6ebYJ8,1996.0,12,12,2011,Basquiat,A Prince With a Magic Crown,tt0115632\n99h9RG7Rfp4,1993.0,4,10,2011,Iron Monkey,Shaolin Monks,tt0108148\nu5AzB4EGGpc,1993.0,3,10,2011,Iron Monkey,Baited Prisoners,tt0108148\nvvd0meL8260,1993.0,2,10,2011,Iron Monkey,Father & Son Arrive,tt0108148\nDF2dkoIOm0o,1993.0,7,10,2011,Iron Monkey,Buddha's Palm,tt0108148\na-VqYtkvmzw,2002.0,3,10,2011,Confessions of a Dangerous Mind,The Dating Game,tt0270288\nkzrHg5GOvXE,1993.0,6,10,2011,Iron Monkey,Deceiving Monks,tt0108148\nbC3oNsbOyWY,1993.0,9,10,2011,Iron Monkey,Too Many Stances!,tt0108148\nyJ1hoVGPxCY,1993.0,8,10,2011,Iron Monkey,Miss Orchid,tt0108148\n4865Vc0ptnk,1993.0,10,10,2011,Iron Monkey,Showdown Over Flames,tt0108148\nuOnIqWuSCIk,2002.0,5,10,2011,Confessions of a Dangerous Mind,If I Had a Hammer,tt0270288\nGdrDuVImE2c,1999.0,12,12,2011,She's All That,The First Dance,tt0160862\np2Md_248enw,1999.0,2,12,2011,The Talented Mr. Ripley,Everybody Should Have One Talent,tt0134119\nbg9SuuzPdVE,1999.0,6,12,2011,She's All That,Almost Normal,tt0160862\nqYXoNC_LbcI,2002.0,4,10,2011,Confessions of a Dangerous Mind,Helsinki is Wonderful,tt0270288\ndQSK2gmtNMI,1999.0,4,12,2011,The Talented Mr. Ripley,Accidental Murder,tt0134119\nnOu9n4ulmRk,2002.0,6,10,2011,Confessions of a Dangerous Mind,The Gong Show,tt0270288\nIT-iX7o_ozA,2004.0,2,10,2011,Finding Neverland,Wild West Showdown,tt0308644\nAR4d7r6--I4,1992.0,1,12,2011,Supercop,\"\"\"\"\" Demonstration\",tt0104558\nM0N1Q7Eav4M,2003.0,5,12,2011,View from the Top,Dinner with Sally Weston,tt0264150\niD9tENbIPHg,2004.0,1,10,2011,Finding Neverland,They Hate It,tt0308644\n7JZQiC2eNdU,2005.0,3,12,2011,The Amityville Horror,Creepy Sex,tt0384806\nxs8k31_ucJ8,2002.0,7,10,2011,Confessions of a Dangerous Mind,Find the Mole,tt0270288\nrylEfnxeUZo,2002.0,1,11,2011,Hero,A Mental Battle,tt0299977\nbk9oFLFDsfE,2004.0,5,10,2011,Finding Neverland,That's Not a Pirate Name!,tt0308644\n1Ej-iuKgmvQ,1992.0,3,12,2011,Supercop,Fighting the Cops,tt0104558\nQ6-vRgNPGAw,2005.0,5,12,2011,The Amityville Horror,I Suck at Babysitting,tt0384806\nPrpeARyTcx8,2002.0,8,10,2011,Confessions of a Dangerous Mind,Paranoia,tt0270288\nTE95amqnEx8,2002.0,4,11,2011,Hero,Lethal at Ten Paces,tt0299977\noqBWx58n1Yk,2002.0,9,10,2011,Confessions of a Dangerous Mind,Poisoned Cups,tt0270288\nDv52JE3zqzc,2004.0,4,10,2011,Finding Neverland,Taking Flight,tt0308644\nN6HCOGj1lNI,2002.0,10,10,2011,Confessions of a Dangerous Mind,The Old Game,tt0270288\ngmk1iStpovo,2001.0,3,12,2011,Shaolin Soccer,Steel Leg Trains Scene,tt0286112\nfI-F18nRHBQ,2001.0,5,12,2011,Shaolin Soccer,Kung Fu Is Back Scene,tt0286112\nR0U9F4HexA4,1993.0,5,11,2011,The Piano,Alisdair Spies on George and Ada,tt0107822\nRt7_IUmuwHw,1992.0,7,12,2011,Supercop,Dynamite Vest,tt0104558\nRAQD0bY2_OM,1992.0,8,12,2011,Supercop,May Is Mad,tt0104558\nSCXs7OphbUU,2002.0,1,10,2011,Confessions of a Dangerous Mind,N.B.C. Tours,tt0270288\nrAu-0Ko7uBQ,1992.0,9,12,2011,Supercop,Malaysian Chase,tt0104558\nDurMO8Ayhn4,1992.0,10,12,2011,Supercop,Helicopter Hang,tt0104558\n7uqoIuB8zx4,1983.0,5,10,2011,Jackie Chan's Project A,Bike Attack,tt0085127\nhTv7HXqqqXA,1992.0,11,12,2011,Supercop,Catching the Train,tt0104558\npnTtzyItCQA,2004.0,7,10,2011,Finding Neverland,Twenty-Five Seats for Orphans,tt0308644\njUM7RRZWW78,1992.0,6,12,2011,Supercop,Golden Triangle Shootout,tt0104558\ns-D79Y-gBrs,1992.0,5,12,2011,Supercop,Those Two Are Cops!,tt0104558\njaiWxuKmaa0,1992.0,2,12,2011,Supercop,Undercover Family,tt0104558\nUfziV-fIbyM,1992.0,4,12,2011,Supercop,Boat Escape,tt0104558\ncOyt0_sRRvU,2004.0,6,10,2011,Finding Neverland,Directing Nana,tt0308644\n6X4Sukx3GsY,2004.0,9,10,2011,Finding Neverland,To Die Will be an Awfully Big Adventure,tt0308644\nCmcZU82YaEw,2004.0,8,10,2011,Finding Neverland,\"Second to the Right, and Straight on Till Morning\",tt0308644\n_kV0xtzcwg8,1996.0,7,12,2011,The Crow: City of Angels,Do You Want Me... Baby?,tt0115986\n3yqPdLURXjI,1996.0,8,12,2011,The Crow: City of Angels,Day of the Dead,tt0115986\njDmw_MLAQSU,1996.0,6,12,2011,The Crow: City of Angels,Bird on My Chest,tt0115986\n_tpfO7RS7-U,1998.0,2,12,2011,Smoke Signals,\"Don't Go, Dad!\",tt0120321\nMKboBvadcD8,2001.0,8,12,2011,Get Over It,Crazy Legs,tt0192071\noLQsS64Mgjg,1998.0,6,12,2011,Smoke Signals,You Gotta Have Faith,tt0120321\nE3B_XdL7Z6Y,2004.0,10,10,2011,Finding Neverland,Arriving in Neverland,tt0308644\ndXe45jbpElA,1996.0,8,12,2011,Flirting with Disaster,Our Other Son Lonnie Schlichting,tt0116324\nnIsuwv3VfxE,2002.0,2,11,2011,Gerry,F*** the Thing,tt0302674\n7OmBXWA0Rfc,2008.0,7,10,2011,Doubt,Feathers of Gossip,tt0918927\nTAOUtgdcjik,2008.0,10,10,2011,Doubt,I Have Such s,tt0918927\nZhjyZXJVm4w,2001.0,10,12,2011,Get Over It,Dream of Me,tt0192071\nFuJ2soRp1VI,2008.0,8,10,2011,Doubt,What Have I Done?,tt0918927\n3hqspRARlc4,2001.0,1,11,2011,The Deep End,Stay Away From My Son,tt0250323\nWd16x0wExDE,2000.0,5,12,2011,Reindeer Games,Ice Fishing,tt0184858\nGlO90j-f2vo,2001.0,8,11,2011,The Deep End,Try Harder,tt0250323\nbXpq-sf0Drk,2003.0,2,12,2011,The Station Agent,A New Neighbor,tt0340377\nfvxvrapx3UI,2003.0,1,12,2011,The Station Agent,Fin Meets Joe,tt0340377\nwkH0WdBYT4E,2000.0,10,12,2011,Reindeer Games,The Same Mistake,tt0184858\nhuvEARIzQNc,2000.0,11,12,2011,Reindeer Games,Double Cross,tt0184858\nkxu97nWDapM,2000.0,4,12,2011,Reindeer Games,Switcheroo,tt0184858\nx-Vvl8gkZAw,2000.0,3,12,2011,Reindeer Games,Don't Play No,tt0184858\nsceJ1R4JzMU,2000.0,2,12,2011,Reindeer Games,Dreaming About That Smile,tt0184858\nLMU895wYEDI,2004.0,3,12,2011,Jersey Girl,I'm Just Your Dad,tt0300051\nIWQriJ_Nebs,2003.0,5,12,2011,The Station Agent,You the Man,tt0340377\nCzBxp4EtOXw,1999.0,5,12,2011,Holy Smoke,I Put a Spell on You,tt0144715\n1o56ZKPhPjA,2003.0,6,12,2011,The Station Agent,Train Watching,tt0340377\nZThOaBpFIGg,2005.0,1,10,2011,Proof,Raging Geeks,tt0377107\nBcmM6kMxyBE,2005.0,2,10,2011,Proof,Calling the Cops on Hal,tt0377107\n1mxednlcHSs,2003.0,10,12,2011,The Station Agent,Train Chasing Premiere,tt0340377\nLtKCcSEgPJQ,2003.0,7,12,2011,The Station Agent,Bon Appetit!,tt0340377\n9QNXD_Col7k,2003.0,8,12,2011,The Station Agent,You Timed Me?,tt0340377\n5XiEDoHueUo,2003.0,9,12,2011,The Station Agent,Walking the Right of Way,tt0340377\nKoEPdETXy4k,2008.0,5,10,2011,Doubt,Sweet Tooth,tt0918927\nxD1H-FIqeMA,2003.0,12,12,2011,The Station Agent,Classroom Presentation,tt0340377\nApU6H2gqkMg,2001.0,7,12,2011,Serendipity,Life's Master Plan,tt0240890\nUqKkfcG36V4,2003.0,11,12,2011,The Station Agent,Olivia's Meltdown,tt0340377\n-nh3g6F63qM,2008.0,6,10,2011,Doubt,Pagan Christmas Songs,tt0918927\nqNk-kc0XH4A,2008.0,2,10,2011,Doubt,I Am Concerned,tt0918927\nP53a6QG4jlY,2008.0,3,10,2011,Doubt,Dirty Nails,tt0918927\nKSc0srYx9-4,2008.0,1,10,2011,Doubt,Crisis of Faith,tt0918927\nNpwkIYB3ZEY,2008.0,4,10,2011,Doubt,Supper Time,tt0918927\nxWShDNB5XZU,2008.0,3,11,2011,Happy-Go-Lucky,The Golden Triangle,tt1045670\nuI-q42kRXi8,2008.0,5,11,2011,Happy-Go-Lucky,Lock Your Door!,tt1045670\n7wYMAJSnpVo,2008.0,2,11,2011,Happy-Go-Lucky,The Driving Instructor,tt1045670\nAxeeO1qdrgw,2008.0,4,11,2011,Happy-Go-Lucky,Ding Dang Dilly Dilly Da Da Hoo Hoo!,tt1045670\nmTkgIN2TteI,2008.0,8,11,2011,Happy-Go-Lucky,En-Ra-Ha! En-Ra-Ha!,tt1045670\n3TWxK4Lb6ws,2001.0,6,12,2011,Serendipity,She Sat on Me,tt0240890\n2zZUujqZfQg,2008.0,7,11,2011,Happy-Go-Lucky,Dance Instructor's Meltdown,tt1045670\nhnHERe72nQM,2008.0,11,11,2011,Happy-Go-Lucky,Scott's Meltdown,tt1045670\n8j-53yv1nD4,2000.0,1,10,2011,Malèna,Watching Malena,tt0213847\nwxlvZpMSxM8,2001.0,8,12,2011,Serendipity,The Groom's Gift,tt0240890\n4_9ZfH_x1hE,2008.0,9,11,2011,Happy-Go-Lucky,Acting Like an Adult,tt1045670\nkiv4EChGJVs,2001.0,1,12,2011,Serendipity,The Story of Cassiopeia,tt0240890\ngZ6x-hUpoPo,2001.0,2,12,2011,Serendipity,A Strange and Interesting Woman,tt0240890\nPMar5oQ5Ha8,2001.0,3,12,2011,Serendipity,Elevator Action,tt0240890\n9OGKM_BI9zY,2008.0,10,11,2011,Happy-Go-Lucky,Wake Up and Look Around,tt1045670\n8KaBhZM-PTg,2001.0,4,12,2011,Serendipity,Sara!  Sara!  Sara!,tt0240890\nkNepR8njvT8,2001.0,5,12,2011,Serendipity,I Will Cut You!,tt0240890\nT4l9RZRce58,1983.0,10,10,2011,Jackie Chan's Project A,Defeating Sam Pau,tt0085127\nErQGXlQV6vg,1983.0,8,10,2011,Jackie Chan's Project A,Safety Last,tt0085127\nuTW2Hrn49Yk,1983.0,9,10,2011,Jackie Chan's Project A,Dragon vs. Sam Pau,tt0085127\nsIMxtj6czX8,2001.0,9,12,2011,Serendipity,You Are a Jackass,tt0240890\ni16c8n45lR4,1983.0,6,10,2011,Jackie Chan's Project A,Two at a Time,tt0085127\nwdaFZ0seZBM,1983.0,4,10,2011,Jackie Chan's Project A,Escaping with Winnie,tt0085127\nsEgsFoQhy3Q,1983.0,7,10,2011,Jackie Chan's Project A,Up the Flagpole,tt0085127\nGolLDhBuy74,2001.0,10,12,2011,Serendipity,Five Dollar Fate,tt0240890\n6mGJ0lFK8c8,1983.0,3,10,2011,Jackie Chan's Project A,I Quit!,tt0085127\npCnPsUo_p9w,1983.0,2,10,2011,Jackie Chan's Project A,The VIP Club,tt0085127\nMOB7nv-1G3c,1983.0,1,10,2011,Jackie Chan's Project A,The Bar Brawl,tt0085127\nRntgG4p1m8E,1994.0,2,10,2011,Mrs. Parker and the Vicious Circle,I Could Kiss You,tt0110588\nrqT82hS-rMw,2005.0,3,10,2011,Proof,Claire Questions Catherine,tt0377107\ns3znWXpeLPA,2005.0,4,10,2011,Proof,Glad He's Dead,tt0377107\n1IlqRjk27JI,1994.0,5,12,2011,Priest,Confessionals,tt0110889\ngUpkU0-pS3U,2005.0,6,10,2011,Proof,Coming on Strong,tt0377107\n303wyvo5Uow,2005.0,5,10,2011,Proof,I Always Liked You,tt0377107\nT4V4NqEU668,2005.0,7,10,2011,Proof,I Want to Help,tt0377107\nIE0S6NNXiYM,2005.0,9,10,2011,Proof,Take It,tt0377107\npnvy9q4UpZw,2005.0,8,10,2011,Proof,A !,tt0377107\nSpl7doGUZTI,2000.0,5,10,2011,Malèna,Renato Defends Malena,tt0213847\nFNvk5X4D7g0,2000.0,4,10,2011,Malèna,A Pervert and a Fetishist,tt0213847\nzkBkTx-GL8s,2000.0,8,10,2011,Malèna,Malena's Makeover,tt0213847\nZTAVOF3D4vY,2000.0,3,10,2011,Malèna,Causing a Commotion,tt0213847\ni9_lCyG67Rc,2000.0,7,10,2011,Malèna,Renato's Love Letter,tt0213847\ndsRTzhbsAmQ,2000.0,2,10,2011,Malèna,Measuring Up,tt0213847\naCqhUO76MTU,2000.0,9,10,2011,Malèna,Malena Returns,tt0213847\nrhc_Ds85lG0,2000.0,6,10,2011,Malèna,The Lawyer's Fee,tt0213847\nv3MPODJTzFM,1997.0,2,10,2011,The House of Yes,First Guest,tt0119324\nNCgUx9-REsg,1997.0,1,10,2011,The House of Yes,The Engagement,tt0119324\nBeJMZm6DDtk,1997.0,3,10,2011,The House of Yes,We All Have Our Secrets,tt0119324\nQXa6FXKJQpw,1997.0,4,10,2011,The House of Yes,A Glass of Liebfraumilch,tt0119324\nrcJ5q5BdJi4,2000.0,3,10,2011,Bounce,A Smoking Non-Smoker,tt0186894\nNTPT4BHAmRI,2000.0,2,10,2011,Bounce,Buddy Attacks,tt0186894\n6xSLNonQJSc,2000.0,4,10,2011,Bounce,Inexperienced,tt0186894\nzg4tFOmYKpA,1997.0,6,10,2011,The House of Yes,About Incest,tt0119324\nqw6k-69hm90,1997.0,5,10,2011,The House of Yes,The Truth About Sex,tt0119324\n_yHgZUYOYdY,2000.0,5,10,2011,Bounce,Abby Closes the Deal,tt0186894\nXHdmamu0zPk,1997.0,10,10,2011,The House of Yes,Final Ritual,tt0119324\nSDesztIj8Kc,2000.0,6,10,2011,Bounce,Misread Signals,tt0186894\nNDw4Lax2j0k,1997.0,7,10,2011,The House of Yes,Recreating a Tragedy,tt0119324\nOPwRf_sD5fo,1997.0,8,10,2011,The House of Yes,A Trip Down Memory Lane,tt0119324\nVWwkLEUn-a0,2000.0,7,10,2011,Bounce,I Got Scared,tt0186894\nkY4iDLi0pV8,1997.0,9,10,2011,The House of Yes,Crazy Like You,tt0119324\npqLAni94IEI,2000.0,8,10,2011,Bounce,Making Love,tt0186894\nlhsWHmJiaXE,2003.0,2,11,2011,Once Upon a Time in Mexico,\"Shooting the Cook, Restoring the Balance\",tt0285823\nTqB34Q7iy-A,2000.0,9,10,2011,Bounce,Get Out,tt0186894\nMsxXJOiXEW4,2000.0,1,10,2011,Bounce,Drunken Speech,tt0186894\nt3ttyoPvivk,2003.0,4,11,2011,Once Upon a Time in Mexico,Church Shootout,tt0285823\nXqti-Sxsxk4,1994.0,3,11,2011,Muriel's Wedding,Waterloo,tt0110598\nBrXYAZzLZTg,2000.0,10,10,2011,Bounce,Buddy Takes the Stand,tt0186894\nlhZFyMTaIt8,1994.0,4,11,2011,Muriel's Wedding,First Time,tt0110598\nKJI8TYE7DtE,2003.0,1,11,2011,Once Upon a Time in Mexico,Legend of the Mariachi,tt0285823\nae-cYVuxBKI,2003.0,3,11,2011,Once Upon a Time in Mexico,Chained Escape,tt0285823\nSyiA_t-8c7Y,1994.0,1,11,2011,Muriel's Wedding,I Can Change!,tt0110598\nmTysQF15PHE,1989.0,1,10,2011,My Left Foot,Make Your Mark,tt0097937\n2C6FHPmqETM,1994.0,2,11,2011,Muriel's Wedding,I'm With Muriel,tt0110598\n39M16Z2aYYk,1994.0,5,11,2011,Muriel's Wedding,As Good as an ABBA Song,tt0110598\nX09M4YjeE78,1994.0,6,11,2011,Muriel's Wedding,I Want to Get Married!,tt0110598\nE1BBS1rIgIw,1994.0,8,11,2011,Muriel's Wedding,Mariel's Wedding,tt0110598\nm0uAIT2O5P0,1994.0,9,11,2011,Muriel's Wedding,Wedding Night Blues,tt0110598\nLpk6lNEGrg0,1994.0,7,11,2011,Muriel's Wedding,Arranged Marriage,tt0110598\nMSVT6NNqldY,1994.0,10,11,2011,Muriel's Wedding,I Don't Love You,tt0110598\n5Rl0mFRWfzc,2003.0,6,11,2011,Once Upon a Time in Mexico,Motorcycle Chase,tt0285823\nfKoYXxN6x98,2003.0,5,11,2011,Once Upon a Time in Mexico,\"Three Arms, One Eye\",tt0285823\nBW5hIGrXcEs,1994.0,11,11,2011,Muriel's Wedding,Escape from Porpoise Spit,tt0110598\n_WF9UwKuitI,2003.0,7,11,2011,Once Upon a Time in Mexico,Be My Eyes,tt0285823\nM-VdYzNgtng,1989.0,5,10,2011,My Left Foot,Too Much Hope,tt0097937\nX7Vt8oHsr0g,1989.0,4,10,2011,My Left Foot,Speech Therapy,tt0097937\np12OcbmjVgU,1989.0,6,10,2011,My Left Foot,\"I Love You, Eileen\",tt0097937\nWTW9la6_mEY,1989.0,2,10,2011,My Left Foot,Christy Writes His First Word,tt0097937\ngqKobRWnvZQ,1989.0,7,10,2011,My Left Foot,Platonic Love,tt0097937\nPWvWrHzlfAk,1989.0,8,10,2011,My Left Foot,You Are My Heart,tt0097937\n4C-aVLgAw8g,1989.0,9,10,2011,My Left Foot,Christy Flirts With His Caretaker,tt0097937\nWpULGtEqNBI,1989.0,3,10,2011,My Left Foot,Christy Plays Soccer,tt0097937\nf-9ErKOlWyE,1989.0,10,10,2011,My Left Foot,800 Pounds,tt0097937\nn8JOgoI_2as,1998.0,2,12,2011,Velvet Goldmine,A Whole New Tune,tt0120879\nf0-GryhUnSQ,1998.0,1,12,2011,Velvet Goldmine,Shot on Stage,tt0120879\nQEp-lhl5ImQ,1998.0,3,12,2011,Velvet Goldmine,Glam Child,tt0120879\nHjhg4s4nD5s,1998.0,6,12,2011,Velvet Goldmine,Press Conference,tt0120879\nNEc_n0W4ans,1998.0,4,12,2011,Velvet Goldmine,Curt Wild,tt0120879\nc2gZ4aOYOw4,1998.0,9,12,2011,Velvet Goldmine,Waste of Tape,tt0120879\nX_akiwYsyYM,1998.0,8,12,2011,Velvet Goldmine,Morality in Art,tt0120879\n6-2doIEpFVE,1998.0,7,12,2011,Velvet Goldmine,Star Struck Lovers,tt0120879\nK1C2odNXI4E,1998.0,11,12,2011,Velvet Goldmine,Make a Wish,tt0120879\naXg3HXlsdg0,2006.0,3,10,2011,The Queen,The People's Princess,tt0436697\n-l-VCl5kQuY,2006.0,4,10,2011,The Queen,The Stag,tt0436697\nqo0uCiDpp0k,2006.0,5,10,2011,The Queen,Flowers at Balmoral,tt0436697\nio2eeYm9sQs,2006.0,8,10,2011,The Queen,'s Tribute,tt0436697\nsGbVR3TgQUs,2006.0,7,10,2011,The Queen,Flowers for the Queen,tt0436697\nKAPjaNfNw-I,2006.0,6,10,2011,The Queen,In Defense of,tt0436697\nlF_KpWfFyR8,2006.0,2,10,2011,The Queen,Not Going to Screw Up Her Death,tt0436697\nTgXkBPFZZFY,2006.0,9,10,2011,The Queen,A Diminished Institution,tt0436697\nytFFiCYItjI,2006.0,1,10,2011,The Queen,Meeting the Queen,tt0436697\n_flZU87W_Rc,2002.0,1,10,2011,Tadpole,A Timeless Home,tt0271219\nFYlySSs_-JI,2002.0,5,10,2011,Tadpole,The Thing Itself,tt0271219\n4iMFUxeKJd8,2002.0,3,10,2011,Tadpole,Mum's the Word,tt0271219\nzlL7BbZoSAY,2002.0,6,10,2011,Tadpole,\"A Grown Up, or Close Enough\",tt0271219\nczzH5M2bUYc,2002.0,2,10,2011,Tadpole,Happy Ending,tt0271219\nti2qUYIgpjM,2002.0,8,10,2011,Tadpole,This Is Not Ancient Rome,tt0271219\nrrbEQDRYpy8,2002.0,4,10,2011,Tadpole,Who Is She?,tt0271219\nITszRkvBcUg,2002.0,7,10,2011,Tadpole,Family Dinner,tt0271219\npIWh28WPyxQ,2003.0,11,11,2011,Scary Movie 3,Down the Well,tt0306047\nmT1QTyuTr-M,2002.0,9,10,2011,Tadpole,Kitchen Kiss,tt0271219\nKMFxz39Qhjk,2002.0,8,11,2011,The Hours,Missing London,tt0274558\nh7CCnLwD2MY,2001.0,3,12,2011,Kate & Leopold,No One Wants to be Romanced by a Buffoon,tt0035423\nOMhzAcofd_8,2001.0,5,11,2011,O,din's Accusation,tt0190590\nnyExbZwBM2c,1995.0,11,12,2011,Georgia,\"You Don't Sing, You Can't Sing\",tt0113158\neCCJzVqLBvU,2008.0,10,10,2011,Smart People,I'm Sorry and I Love You,tt0858479\nznxRGH92XDg,2002.0,1,12,2011,Frida,Bus Crash,tt0120679\nE3wiJJOrgho,2002.0,10,12,2011,Frida,The Two s and T rotsky's Assassination,tt0120679\nAjXl70vbOwk,1995.0,1,12,2011,Georgia,Hard Times,tt0113158\nRTCMHLpNi4k,2002.0,12,12,2011,Frida,I Hope the Exit is Joyful,tt0120679\n8KjAsaJdi2w,1995.0,12,12,2011,Georgia,Hard Times Again,tt0113158\nk7VW1xNAn5A,1995.0,3,12,2011,Georgia,Hava Nagila,tt0113158\n99PeJShwZis,1995.0,4,12,2011,Georgia,I'll Be Your Mirror,tt0113158\nJ0IXJNE0FXI,1995.0,5,12,2011,Georgia,My Sister's Here Tonight,tt0113158\nOzP8k0R-USw,2002.0,11,12,2011,Frida,'s Mexican Exhibition,tt0120679\nEnGXNEEHPG8,1995.0,9,12,2011,Georgia,A Thousand Pounds of Dead Weight,tt0113158\nYCIYe01lg1E,1995.0,2,12,2011,Georgia,Almost Blue,tt0113158\n06B3m6L5fFw,2002.0,4,12,2011,Frida,Marriage Without Fidelity,tt0120679\nYlpN0wDqUx4,1994.0,1,10,2011,Mrs. Parker and the Vicious Circle,The Circle Is Formed,tt0110588\nDTVnQBRfCAw,1994.0,3,10,2011,Mrs. Parker and the Vicious Circle,Married to the Town Drunk,tt0110588\nrQP1duR2tf4,2002.0,6,12,2011,Frida,More Affection in a Handshake,tt0120679\nQ0bjuz5YBLM,1994.0,4,12,2011,Priest,Recreation,tt0110889\nJ8_CIsow_Y8,1994.0,6,12,2011,Priest,Incest,tt0110889\nqFsoL6ed_2E,1994.0,7,12,2011,Priest,Denial of Communion,tt0110889\nLWEklaaHGsE,1994.0,4,10,2011,Mrs. Parker and the Vicious Circle,Who Would Want To?,tt0110588\nHhtRNV2v2rU,1994.0,6,10,2011,Mrs. Parker and the Vicious Circle,I Lied When I Smiled,tt0110588\nyvv9DRyxTFo,1994.0,5,10,2011,Mrs. Parker and the Vicious Circle,Drinking Booze and Talking Sex,tt0110588\nFyvzidxs_SY,1978.0,3,10,2011,Game of Death,Billy Lo's Funeral,tt0077594\nJhxb2wWFK4M,1994.0,7,10,2011,Mrs. Parker and the Vicious Circle,Tragedies Don't Kill Us,tt0110588\nB3fgBOG1fWs,1994.0,8,10,2011,Mrs. Parker and the Vicious Circle,Unrequited Love,tt0110588\nef77ViM-f14,1996.0,3,10,2011,The Pallbearer,Nervous Phone Call,tt0117283\nqZBVXYYcCjQ,1994.0,9,10,2011,Mrs. Parker and the Vicious Circle,Might As Well Live,tt0110588\ngZY_zy2hAHA,1999.0,1,10,2011,\"Happy, Texas\",Vigilante Justice,tt0162360\nubgR8CKyzYw,1999.0,6,10,2011,\"Happy, Texas\",That Whole Gay Thing is Just a Hobby,tt0162360\nUqPRk4oFz_U,1999.0,2,10,2011,\"Happy, Texas\",Traveling Midget Tailors,tt0162360\n_OMy1p_m3_Q,1996.0,7,10,2011,The Pallbearer,Tom Spies on Julie,tt0117283\n1H2xudG3BPI,1998.0,2,12,2011,Sliding Doors,Caught Cheating,tt0120148\nWQtoXhnhFwM,1996.0,8,10,2011,The Pallbearer,He Made a Pass at Me,tt0117283\nsj93sTcEJYA,1998.0,3,12,2011,Sliding Doors,A Cheer-Up Date,tt0120148\nuPAXLQIxBGY,1999.0,3,10,2011,\"Happy, Texas\",Wayne Disciplines the Children,tt0162360\nX5wAXtQ0oDY,1998.0,5,12,2011,Sliding Doors,An Ideal Kissing Moment,tt0120148\nMLxnvq1E-ag,1996.0,10,10,2011,The Pallbearer,A Woman Scorned,tt0117283\nQ4DEaXN6Dp8,1996.0,6,10,2011,The Pallbearer,Couldn't Let Her Go,tt0117283\nXfBImxhVWTw,1999.0,5,10,2011,\"Happy, Texas\",\"If You Were Gay, You'd Be Just My Type\",tt0162360\nrxX-JLi1FB0,1996.0,9,10,2011,The Pallbearer,You're Going to Screw Me Over,tt0117283\nqJKahA8B9Ro,1996.0,10,12,2011,Sling Blade,Ain't Got No Boy,tt0117666\n3uHIpj5JpvQ,1994.0,10,10,2011,Mrs. Parker and the Vicious Circle,Analyzing Mrs. Parker,tt0110588\nc-zaHGYURv0,1998.0,10,12,2011,Sliding Doors,A Kiss in the Rain,tt0120148\nMp5IvPj4ay0,1999.0,4,10,2011,\"Happy, Texas\",Like Some Straight Guy is Ever Gonna Say That,tt0162360\nsk3soFv1wHM,2009.0,10,12,2011,Everybody's Fine,One Last Painting,tt0780511\n5xWrsFC7pG8,2004.0,10,10,2011,Dirty Dancing: Havana Nights,The Finals,tt0338096\neeR4VQyoLdc,1998.0,9,12,2011,Sliding Doors,I'm Divorced,tt0120148\n-nkqrSaJf1g,1996.0,2,10,2011,The Pallbearer,Who Is Bill Abernathy?,tt0117283\nUUB75dkgT_c,1998.0,8,12,2011,Sliding Doors,I Wanted to Call You,tt0120148\nidxHUQY4aDA,1998.0,4,12,2011,Sliding Doors,No Need to Become Woody Allen,tt0120148\nv-0Z_0SUtJw,1998.0,11,12,2011,Sliding Doors,A Hospital Promise,tt0120148\n5Ui9rRepv0Q,1999.0,8,10,2011,\"Happy, Texas\",Wayne's Prayer,tt0162360\nditeeSODzTQ,1999.0,9,10,2011,\"Happy, Texas\",Bank Robbery,tt0162360\nFYDrPt06XNI,1996.0,11,12,2011,Sling Blade,You Will Be Happy,tt0117666\nHUwVxqQz25Y,1998.0,12,12,2011,Sliding Doors,Meeting Again in the Elevator,tt0120148\nt9BqiLLt9SI,1999.0,7,10,2011,\"Happy, Texas\",Harry Dumps Chappy,tt0162360\nxCJZij74-J0,1996.0,1,12,2011,Sling Blade,Mercury Is a Real Good Car,tt0117666\nG4tfduPN3rM,1998.0,1,12,2011,Sliding Doors,You're Out,tt0120148\n3c6F_0KpK3k,1998.0,6,12,2011,Sliding Doors,I'm Pregnant,tt0120148\npYBS9Sp0xU8,1998.0,7,12,2011,Sliding Doors,\"You Sad, Sad Wanker\",tt0120148\nneFpFiuvYsQ,1996.0,4,12,2011,Sling Blade,You Just a Boy,tt0117666\nI2eVbp_Jfc0,1999.0,10,10,2011,\"Happy, Texas\",Back to Prison,tt0162360\nsAgSUFT4cVk,1996.0,2,12,2011,Sling Blade,Some Folks Call It a,tt0117666\n4pz2kXoDo_s,1996.0,3,12,2011,Sling Blade,French Fried Potaters,tt0117666\nPJ1i0HuBXPg,1996.0,5,12,2011,Sling Blade,Welcome to Our Humble Home,tt0117666\niLYeR6v-fVE,2004.0,1,10,2011,Dirty Dancing: Havana Nights,\"A Good Dancer, For an American\",tt0338096\nFu6QrGkRdJo,2003.0,2,11,2011,The Blind Swordsman: Zatoichi,Samurai Assassin,tt0363226\nuB2eggtlTfE,1996.0,6,12,2011,Sling Blade,We're Different,tt0117666\nLAd6SaXDdZ4,2004.0,2,10,2011,Dirty Dancing: Havana Nights,James Gets Handsy,tt0338096\nO4qhT8oRvss,2004.0,5,10,2011,Dirty Dancing: Havana Nights,Move Through Your Fear,tt0338096\n7ZhnS45Zexo,2003.0,9,11,2011,The Blind Swordsman: Zatoichi,Zatoichi Kills Everyone,tt0363226\nSlVK7ogwyUI,2003.0,10,11,2011,The Blind Swordsman: Zatoichi,Zatoichi vs. Genosuke,tt0363226\nL9tK9HYspFM,1996.0,7,12,2011,Sling Blade,Band Poetry,tt0117666\n0C6nvNlVx1A,1996.0,8,12,2011,Sling Blade,Doyle Loses It,tt0117666\nH3Epwo8vFpk,2004.0,4,10,2011,Dirty Dancing: Havana Nights,The Sex Talk,tt0338096\n1UqJgV10-wE,2003.0,5,11,2011,The Blind Swordsman: Zatoichi,Caught Cheating,tt0363226\nBydT8m3NdRY,2003.0,6,11,2011,The Blind Swordsman: Zatoichi,Blood and Rain,tt0363226\nZuqwMQTc8cE,2003.0,1,11,2011,The Blind Swordsman: Zatoichi,Blind Fury,tt0363226\ntGYc5woadps,1996.0,9,12,2011,Sling Blade,We All Gotta Get Along,tt0117666\nZnook3DEEaI,2004.0,6,10,2011,Dirty Dancing: Havana Nights,In Each Other's Arms,tt0338096\nbcY4Lhb3yhI,2004.0,8,10,2011,Dirty Dancing: Havana Nights,The Latin Ballroom Contest,tt0338096\nYV2WQTL_45A,2003.0,8,11,2011,The Blind Swordsman: Zatoichi,Bad Teacher,tt0363226\nMFZGTRWVOjU,2003.0,4,11,2011,The Blind Swordsman: Zatoichi,The Origins of Hatred,tt0363226\nsL6QJSdqlt0,1996.0,12,12,2011,Sling Blade,I Aim to Kill You,tt0117666\nXPRFb9J1CvA,2004.0,9,10,2011,Dirty Dancing: Havana Nights,You Humiliated Us,tt0338096\nb_uXZZRpO-E,1995.0,1,12,2011,Smoke,The Weight of,tt0114478\nU6Lt17rALrM,1995.0,3,12,2011,Smoke,A Hook for a Left Arm,tt0114478\nOvloa5lv7io,1996.0,9,12,2011,Citizen Ruth,\"A Check for $15,000\",tt0115906\np7aigA4gPiw,2003.0,3,11,2011,The Blind Swordsman: Zatoichi,Masseur Meets Samurai,tt0363226\nxl01-vBoHsE,2003.0,11,11,2011,The Blind Swordsman: Zatoichi,Sense the Truth,tt0363226\nTZAvqLk4o-g,2007.0,8,12,2011,Eagle vs Shark,Invitation to a Fight,tt0494222\no69EA3eSDf0,1996.0,1,12,2011,Citizen Ruth,You Sicken Me,tt0115906\ntAx_zjVXTOs,1996.0,2,12,2011,Citizen Ruth,Stoney Family Dinner,tt0115906\nNKCskfhsru0,1996.0,3,12,2011,Citizen Ruth,I Want an Abortion!,tt0115906\nzk0AexuAhlw,1996.0,5,12,2011,Citizen Ruth,The Devil Inside,tt0115906\nV2weMKLFJLo,1996.0,4,12,2011,Citizen Ruth,Baby Killer!,tt0115906\n0WjELXl_6zA,2007.0,5,12,2011,Eagle vs Shark,Cockhole,tt0494222\nQzymqXvURkw,1996.0,6,12,2011,Citizen Ruth,A Pro-Choice Spy,tt0115906\nmOpvoWxjz90,1996.0,7,12,2011,Citizen Ruth,I Ain't No Telegram,tt0115906\nX9N-BROIbeY,1996.0,10,12,2011,Citizen Ruth,A Massage and a Bribe,tt0115906\nCymY_Rl1fEs,2002.0,5,12,2011,The Quiet American,Love During Wartime,tt0258068\nTDecVpSLT38,1996.0,11,12,2011,Citizen Ruth,What If I Aborted You?,tt0115906\nndrr3vif10w,1996.0,8,12,2011,Citizen Ruth,A Woman's Right to Pick,tt0115906\nTQrzX_5FO1k,1996.0,12,12,2011,Citizen Ruth,Hallelujah,tt0115906\nZS0rEz8wR4g,2007.0,1,12,2011,Eagle vs Shark,Big Boy Burger with Free Cheese,tt0494222\nxo2meR8UHJ4,2007.0,4,12,2011,Eagle vs Shark,Do You Wanna Kiss?,tt0494222\n-g7jRpukoVg,2007.0,3,12,2011,Eagle vs Shark,Dangerous Person vs. Eagle Lord,tt0494222\nK3ucS56rrpA,2007.0,2,12,2011,Eagle vs Shark,The Animal Party,tt0494222\nQJfhiv1Te6o,2007.0,9,12,2011,Eagle vs Shark,I Thought You Were Dead,tt0494222\nyoWe1gHwSrs,2001.0,9,11,2011,Captain Corelli's Mandolin,Blocked By the Germans,tt0238112\n2GMpuN48u5c,2007.0,10,12,2011,Eagle vs Shark,You're A Cripple,tt0494222\nvVpzpHtm5d8,2001.0,5,11,2011,Captain Corelli's Mandolin,Pelagia Dances,tt0238112\noC1MpovG4N4,2001.0,1,11,2011,Captain Corelli's Mandolin,The Engagement Party,tt0238112\nUYovQZUBzpA,2007.0,12,12,2011,Eagle vs Shark,Sleeping Bag Soulmates,tt0494222\nSKMOhrpxUSo,2007.0,11,12,2011,Eagle vs Shark,Cripple Fight,tt0494222\nJGV_h36uZ5E,1995.0,2,12,2011,Smoke,Auggie's Photo Album,tt0114478\nczJ6KqTkk9o,2001.0,2,11,2011,Captain Corelli's Mandolin,Eating With the Enemy,tt0238112\nvz7jp6GiwTA,2007.0,7,12,2011,Eagle vs Shark,Throwing Her Heart Away,tt0494222\neORAWRKW53s,2002.0,7,12,2011,The Importance of Being Earnest,Algernon Proposes,tt0278500\naAnJ9iO8DAE,2007.0,6,12,2011,Eagle vs Shark,Wanna Go Out With Me?,tt0494222\nNbX7nS8SG7E,2002.0,5,12,2011,The Importance of Being Earnest,Algernon Meets Cecily,tt0278500\nE8eiFdoI5W0,1995.0,4,12,2011,Smoke,Felicity's Abortion,tt0114478\n_6CT5p7fh9g,1995.0,9,12,2011,Smoke,My Name is Thomas Jefferson Cole,tt0114478\nRTObjnUfgNs,1995.0,6,12,2011,Smoke,When I Was Seventeen,tt0114478\nNI4En1gLsXs,1995.0,8,12,2011,Smoke,Auggie The Angel,tt0114478\nWBxpXxZqKms,1995.0,12,12,2011,Smoke,Bullsh** Is A Real Talent,tt0114478\nvG833_jH7eY,1995.0,5,12,2011,Smoke,A Son Older Than His Father,tt0114478\nqUDMInHr_wI,1995.0,10,12,2011,Smoke,Auggie Wren's Christmas Story,tt0114478\nD-UBJzXzoho,1995.0,11,12,2011,Smoke,The End of Auggie's Xmas Story,tt0114478\n04zHzVrubHk,1995.0,7,12,2011,Smoke,A $5K Apology,tt0114478\n5pM-n30jlRk,2001.0,3,11,2011,Captain Corelli's Mandolin,Leaving For War,tt0238112\nkuwMlIheB7M,2001.0,4,11,2011,Captain Corelli's Mandolin,What is There to Sing About?,tt0238112\nPPEX4kaB1-M,2001.0,6,11,2011,Captain Corelli's Mandolin,I Love You,tt0238112\nWIaK0Z7k-Gs,2001.0,7,11,2011,Captain Corelli's Mandolin,What Love Is,tt0238112\ngjiyh8AXkjc,2001.0,8,11,2011,Captain Corelli's Mandolin,Hard to Know Who You Can Trust,tt0238112\nofxfYinuKKc,2000.0,5,12,2011,Scream 3,The Rules of a Trilogy,tt0134084\nyek9a0zFGHE,2001.0,10,11,2011,Captain Corelli's Mandolin,German Ambush,tt0238112\nVevqDJM8KH0,2000.0,1,12,2011,Scream 3,Picked Off,tt0134084\n2RnYLP4Hes4,2001.0,11,11,2011,Captain Corelli's Mandolin,Mandras Saves Corelli,tt0238112\ndsONBwWtAts,2000.0,3,12,2011,Scream 3,Back Stabber,tt0134084\ndDDbmin38gg,2000.0,4,12,2011,Scream 3,Rewriting the Movie,tt0134084\nhQL6_NbLwtk,2000.0,6,12,2011,Scream 3,I Was Up for Princess Leia,tt0134084\nhajGYP3CLKo,2000.0,2,12,2011,Scream 3,The Cutting Room,tt0134084\nVgQOZkXg9t4,2000.0,7,12,2011,Scream 3,Set Visit,tt0134084\ngcu30p7VEKI,2000.0,8,12,2011,Scream 3,\"Oh, You Motherf***er!\",tt0134084\nGwFaz1nukyE,2000.0,9,12,2011,Scream 3,Shattered Glass,tt0134084\nDMeR-bkC13g,2000.0,11,12,2011,Scream 3,A Family Film,tt0134084\nJ6Cg05MhWbw,2000.0,10,12,2011,Scream 3,It's Your Turn to Scream,tt0134084\n1b_sbGJGx0o,2000.0,12,12,2011,Scream 3,Firing the Director,tt0134084\n_OiXT87RhvA,1999.0,1,12,2011,She's All That,Taylor's Hot and Heavy Spring Break,tt0160862\nCB9tbR2M5fg,2005.0,9,12,2011,The Amityville Horror,Rejected Blessing,tt0384806\nmLsptorbPUg,2005.0,10,12,2011,The Amityville Horror,The House's Dark History,tt0384806\nO47od13_x1k,1999.0,2,12,2011,She's All That,The Bet,tt0160862\nr4mQmoD72tc,1999.0,11,12,2011,She's All That,Prom Dance-Off,tt0160862\nnimkNFEKUkY,1999.0,7,12,2011,She's All That,The New Laney Boggs,tt0160862\nx0XE7KFZook,1999.0,10,12,2011,She's All That,Pube-y Pizza,tt0160862\nTbFYMfIpRss,1999.0,9,12,2011,She's All That,You're Vapor,tt0160862\ni9KJXFbkMH0,1999.0,8,12,2011,She's All That,\"Give It to Me, Baby\",tt0160862\nBztqFxMXpTQ,1999.0,4,12,2011,She's All That,Supersize My Balls,tt0160862\n-AlTccRsRsk,1999.0,3,12,2011,She's All That,Laney Boggs,tt0160862\nM_MJrybDRKA,1999.0,5,12,2011,She's All That,\"Be Silent, Be Still\",tt0160862\n5iZUg7tGlxM,1996.0,4,12,2011,Walking and Talking,I Know You Think I'm Ugly,tt0118113\npnjWGD-WW8k,1996.0,2,12,2011,Walking and Talking,That Ugly Guy,tt0118113\n97ZiBty1eTM,1996.0,7,12,2011,Walking and Talking,Obscene Phone Call,tt0118113\nR65UmAfIZpw,1996.0,10,12,2011,Walking and Talking,Gross,tt0118113\neZjR4aso7VY,1996.0,3,12,2011,Walking and Talking,What Went Wrong With Us?,tt0118113\ne_hkxbNpQMw,1996.0,1,12,2011,Walking and Talking,You're an A**hole!,tt0118113\nveN5fuM-AwI,1996.0,5,12,2011,Walking and Talking,Vagina Music,tt0118113\nQoJ5JJ3keUw,1999.0,1,12,2011,The Talented Mr. Ripley,Tom Ripley?,tt0134119\nGdM1NCrxZvI,1996.0,9,12,2011,Walking and Talking,Alone Without Her Cat,tt0118113\nZjDB3Pfl3iA,1996.0,11,12,2011,Walking and Talking,The Black Pants,tt0118113\nE-TthagAhsk,1999.0,3,12,2011,The Talented Mr. Ripley,Peeping Tom,tt0134119\n9KstSfW1IAA,1999.0,11,12,2011,The Talented Mr. Ripley,Dickie's Rings,tt0134119\n8P3Q_di3Lo8,1996.0,12,12,2011,Walking and Talking,I Love You,tt0118113\nBjMrxHxraio,1999.0,5,12,2011,The Talented Mr. Ripley,Run in at the Opera,tt0134119\n_9b7JgWu4PQ,1999.0,6,12,2011,The Talented Mr. Ripley,Cruel Chance Encounter,tt0134119\nbTE69etu_fg,1999.0,10,12,2011,The Talented Mr. Ripley,A Great Friend to My Son,tt0134119\n3si4Cv66RSM,1999.0,8,12,2011,The Talented Mr. Ripley,Just a Coincidence,tt0134119\nMq462kfFKI8,1999.0,7,12,2011,The Talented Mr. Ripley,Freddie's Suspicions,tt0134119\na-IU2mBY1_4,1999.0,9,12,2011,The Talented Mr. Ripley,You've Broken My Heart,tt0134119\nXgTtI5D-INw,1999.0,12,12,2011,The Talented Mr. Ripley,The Silent Promise,tt0134119\nCZK9pY1dA74,2002.0,2,12,2011,The Importance of Being Earnest,A Metaphysical Speculation,tt0278500\nVHVxpLDEAo8,2002.0,4,12,2011,The Importance of Being Earnest,Born in a Handbag,tt0278500\neW4wR7-iOMg,2002.0,3,12,2011,The Importance of Being Earnest,Everything or Nothing,tt0278500\nVpLXPIihj60,2002.0,6,12,2011,The Importance of Being Earnest,\"Earnest is Dead, Quite Dead\",tt0278500\nr3TEbOR9SyQ,2002.0,9,12,2011,The Importance of Being Earnest,Eating Muffins Agitatedly,tt0278500\n3pDOsNri1Ko,2002.0,10,12,2011,The Importance of Being Earnest,Satisfactory Explanations,tt0278500\nQwx74IfTNwo,2002.0,8,12,2011,The Importance of Being Earnest,Algernon and Jack Are Exposed,tt0278500\nKaxcWDmXbBs,2003.0,3,12,2011,View from the Top,We're Gonna Crash!,tt0264150\nwPJvAzfaqlk,2001.0,10,12,2011,Amélie,Fantasy vs. Reality,tt0211915\nr_U2p-bdeww,2003.0,2,12,2011,View from the Top,\"Big Hair, Short Skirts, Service with a Smile\",tt0264150\nFOdizWKG4qk,2002.0,12,12,2011,The Importance of Being Earnest,Miss Prism Knows the Truth,tt0278500\noXDyQju8my4,2003.0,6,12,2011,View from the Top,Royalty Airlines Training,tt0264150\ngtb_4pNuYIA,2002.0,11,12,2011,The Importance of Being Earnest,A Passionate Celibacy,tt0278500\nx7CGZ5vxlLs,2001.0,5,12,2011,Amélie,Amelie the Matchmaker,tt0211915\n2TI2MT0eoSo,2002.0,1,12,2011,The Importance of Being Earnest,\"Bunbury, a Dreadful Invalid\",tt0278500\nVz7PIPZgT0A,2001.0,3,12,2011,Amélie,Love at First Sight,tt0211915\n0p6UQkoNDxc,2005.0,8,12,2011,The Amityville Horror,Chelsea's on the Roof!,tt0384806\ncLm4oCbovsE,2003.0,4,12,2011,View from the Top,The Legendary John Witney,tt0264150\nDmokH6o-nKU,2003.0,1,12,2011,View from the Top,Birthday Break-Up,tt0264150\nX_SthyaIImM,2003.0,8,12,2011,View from the Top,Stewart Family Christmas,tt0264150\nXyBWsO1gVTk,2003.0,7,12,2011,View from the Top,Peak-Too-Sooner,tt0264150\nPIMIz2z-1mk,2005.0,2,12,2011,The Amityville Horror,What's the Catch?,tt0384806\n38ok415yQOc,2003.0,12,12,2011,View from the Top,Cleveland Rocks,tt0264150\n2zi4N3_c4sM,2003.0,10,12,2011,View from the Top,Catfight,tt0264150\nJgYPxPGfaRE,2003.0,9,12,2011,View from the Top,Fly Away,tt0264150\nYBUzc9wJMMI,2005.0,1,12,2011,The Amityville Horror,The First Family,tt0384806\nGBh5nZ3SNz0,2005.0,4,12,2011,The Amityville Horror,Bad Dreams,tt0384806\nhKBHte0cc_0,2003.0,11,12,2011,View from the Top,Paris is Beautiful,tt0264150\nvJzOCmyQY24,2005.0,7,12,2011,The Amityville Horror,Voices,tt0384806\nSfaY0KH76nU,2001.0,12,12,2011,Shaolin Soccer,Shaolin Wins Scene,tt0286112\nSeBHPzqiUlg,2005.0,6,12,2011,The Amityville Horror,Trapped in the Closet,tt0384806\nCWPoQO7bMRU,2002.0,3,11,2011,Hero,Moon vs. Flying Snow,tt0299977\nsjVgX0A8Jtc,2002.0,2,11,2011,Hero,Calligraphy and Swordplay,tt0299977\n2eXbS-qG2GA,2002.0,5,11,2011,Hero,How Swift Your Sword,tt0299977\n57TliyF8MFI,2002.0,6,11,2011,Hero,Lake Fight,tt0299977\nfLxSRdnGucA,2002.0,9,11,2011,Hero,Broken Sword and the King,tt0299977\nVIJIbL0ujtk,2002.0,8,11,2011,Hero,Moon Attacks Nameless,tt0299977\nKeTBqolcrO8,2002.0,11,11,2011,Hero,A 's Death,tt0299977\nE1N0IvW6HyI,2002.0,10,11,2011,Hero,The Ultimate Ideal,tt0299977\nilR3_PaGoJA,2005.0,12,12,2011,The Amityville Horror,Saving George,tt0384806\nUouRrAl48-8,2005.0,11,12,2011,The Amityville Horror,The Escape,tt0384806\nYafZPxB5DRs,1993.0,4,11,2011,The Piano,Sick With Longing,tt0107822\n3WNqgV1M5Zs,1993.0,7,11,2011,The Piano,I Trusted You!,tt0107822\nXawDF5UDgXY,1993.0,3,11,2011,The Piano,Lift it Higher,tt0107822\nQqY-Ikm0kc4,1993.0,2,11,2011,The Piano,The Deal,tt0107822\n4U8n5Kjd0LY,1993.0,11,11,2011,The Piano,Epilogue,tt0107822\nhoHyqSZGPt0,1993.0,8,11,2011,The Piano,Alisdair Sends George a Message,tt0107822\nOMMs6m-HIxM,1993.0,1,11,2011,The Piano,We Can't Leave the Piano,tt0107822\nAZLoDR3AjX8,1993.0,6,11,2011,The Piano,Do You Love Me?,tt0107822\n3_giBWrUYKc,1993.0,9,11,2011,The Piano,I Heard Her Voice in My Head,tt0107822\ntLUrEgC-Dd4,1993.0,10,11,2011,The Piano,Piano Overboard,tt0107822\nHtBebT-rKeM,2001.0,1,12,2011,Shaolin Soccer,Sweetie's Sweet Buns Scene,tt0286112\nexMmixM3b3Q,2001.0,2,12,2011,Shaolin Soccer,Soccer Fight Scene,tt0286112\nn5_WG3WZqVk,2001.0,4,12,2011,Shaolin Soccer,Soccer Is War Scene,tt0286112\nJwfDV_Y54fA,2001.0,7,12,2011,Shaolin Soccer,Mui Beats the Boss Scene,tt0286112\nlqT20npvohw,2001.0,6,12,2011,Shaolin Soccer,vs. Team Puma Scene,tt0286112\nVje8Fp3yQFM,2001.0,9,12,2011,Shaolin Soccer,The Evil Goalie Scene,tt0286112\nfvBB1KK_VY0,2001.0,10,12,2011,Shaolin Soccer,Team Evil Scene,tt0286112\nGo6nwid-CaQ,2001.0,8,12,2011,Shaolin Soccer,vs. Team Mustache Scene,tt0286112\n6BsWrEwtDP8,2001.0,11,12,2011,Shaolin Soccer,E.T. the Goalie Scene,tt0286112\nDF-ifsJZQEM,1996.0,1,12,2011,The Crow: City of Angels,Restless Souls,tt0115986\nqnNr8etyi08,1996.0,5,12,2011,The Crow: City of Angels,Pick a Card,tt0115986\n0tN0uV9DebQ,1996.0,2,12,2011,The Crow: City of Angels,A Bad Batch,tt0115986\nr74QbwaIWFc,1996.0,3,12,2011,The Crow: City of Angels,Resurrection,tt0115986\ndlYo5IHqD80,1996.0,4,12,2011,The Crow: City of Angels,Re-Born,tt0115986\nPu3BkumJXpk,2002.0,5,11,2011,Gerry,Rock Marooned,tt0302674\nn7mEYDnXaMg,2002.0,4,11,2011,Gerry,Conquering Thebes,tt0302674\nfBtPMUJJEg8,1996.0,9,12,2011,The Crow: City of Angels,Hush Little Baby,tt0115986\nFtM7tdP6UDE,1996.0,10,12,2011,The Crow: City of Angels,A Coin For Curve,tt0115986\n0-EcLwovpbU,1996.0,11,12,2011,The Crow: City of Angels,Ashes to Ashes,tt0115986\nlIk-3o2CkM8,1998.0,9,12,2011,Smoke Signals,Everything Burned Up!,tt0120321\n6ZNNfq5l5Ds,1998.0,5,12,2011,Smoke Signals,Broke Some Hearts,tt0120321\nxPnV2392Tck,1998.0,4,12,2011,Smoke Signals,John Wayne's Teeth,tt0120321\nkBEhz8vw2AM,1998.0,1,12,2011,Smoke Signals,The Oral Tradition,tt0120321\nuwcJaUaVfR0,1998.0,3,12,2011,Smoke Signals,How to Be a Real Indian,tt0120321\naz-Q_fYNZrU,1998.0,10,12,2011,Smoke Signals,Running for Help,tt0120321\nafW8dxL3qZM,1998.0,7,12,2011,Smoke Signals,He's Waiting For You,tt0120321\nIdSgAIq22b4,1998.0,8,12,2011,Smoke Signals,Exploring the Trailer,tt0120321\nBi3QsK4sVVA,1998.0,11,12,2011,Smoke Signals,That's My Father,tt0120321\nt0qYTDYyNvs,2001.0,7,12,2011,Get Over It,Kissing Kelly,tt0192071\nND-nldJc8kU,1998.0,12,12,2011,Smoke Signals,To Forgive Our Fathers,tt0120321\nRSm6z78KnxQ,1996.0,7,12,2011,Flirting with Disaster,The Proper Breast Feeding Technique,tt0116324\n6QOqWyBhTVo,2001.0,1,12,2011,Get Over It,Ball to the Face,tt0192071\nOAhF3wWBxbM,2002.0,6,11,2011,Gerry,The Jump,tt0302674\nVyLZlTLEY4U,2001.0,2,12,2011,Get Over It,Swimsuits and Shakespeare,tt0192071\nVK-GL8zzH9I,2009.0,6,12,2011,Everybody's Fine,\"Goodbye, Dad\",tt0780511\nASP2K-sFud0,2001.0,4,12,2011,Get Over It,Disaster Date,tt0192071\nNC756fAs0Hk,2001.0,3,12,2011,Get Over It,Big Red,tt0192071\nl0Io_aXWgkQ,2001.0,5,12,2011,Get Over It,Sex Club Raid,tt0192071\nhoSJVPaj0ds,2002.0,3,11,2011,Gerry,Barreling Down the Road,tt0302674\nGU_FUlOapf8,2004.0,7,12,2011,Jersey Girl,Renting Porn,tt0300051\n_KXS58EqEHY,2001.0,6,12,2011,Get Over It,Little Miss Sassy Pants,tt0192071\nnET7V9DsWgo,2001.0,9,12,2011,Get Over It,Opening Number,tt0192071\nHU3C0Vv0FeA,2006.0,6,10,2011,Hollywoodland,Can I Shoot You?,tt0427969\nS48AVqtonXw,2005.0,1,12,2011,An Unfinished Life,The Bear's Back,tt0350261\ny9DslHbBubA,2001.0,11,12,2011,Get Over It,Improvised Shakespeare,tt0192071\nMKbX6ilLdRQ,2003.0,1,9,2011,The Battle of Shaker Heights,The Reenactment,tt0357470\nYc1M82PB8C4,2001.0,12,12,2011,Get Over It,September,tt0192071\nyOJ1gWVYB88,2002.0,7,11,2011,Gerry,F*** You,tt0302674\niqRZb8tveM0,2002.0,1,11,2011,Gerry,Fanny Packs & Sing Alongs,tt0302674\n6c4QghxZ3IU,2002.0,8,11,2011,Gerry,Gerried,tt0302674\n9GFz8aB2BVE,2002.0,10,11,2011,Gerry,Act of Kindness,tt0302674\nfgxnajrZN9s,2002.0,9,11,2011,Gerry,Another Mirage,tt0302674\nyefj12M8xkY,2001.0,3,11,2011,The Deep End,Deadly Discovery,tt0250323\nkCmyVaHZ4Is,2001.0,2,11,2011,The Deep End,Don't Touch Me,tt0250323\n3Krkeuic8GY,2001.0,4,11,2011,The Deep End,Dumping the Body,tt0250323\nQpGGSlwgOPs,2002.0,11,11,2011,Gerry,The Highway,tt0302674\n1_RHhfIc5iM,2001.0,6,11,2011,The Deep End,Incriminating Video,tt0250323\nQ5HNKhhBjcw,2001.0,5,11,2011,The Deep End,Diving for Keys,tt0250323\nTkeoi_cp0BQ,2001.0,7,11,2011,The Deep End,CPR,tt0250323\n-o2z2G3y50M,2001.0,9,11,2011,The Deep End,Get Out of My House,tt0250323\npPOcpk9-318,2001.0,10,11,2011,The Deep End,Battle of the Blackmailers,tt0250323\nCLp_t1uhYOs,2001.0,11,11,2011,The Deep End,I Can't Leave You,tt0250323\n505KGEuKbNg,1992.0,11,12,2011,Like Water for Chocolate,Breaking Tradition,tt0103994\n-yEB9DCX-Ek,1992.0,6,12,2011,Like Water for Chocolate,The Flare of the Match,tt0103994\nSIQb3d-piF0,2000.0,7,12,2011,Reindeer Games,He Wants Me,tt0184858\nRNXEflQuWsU,1992.0,7,12,2011,Like Water for Chocolate,The Same Fate,tt0103994\nfU9nP5V2vw4,1992.0,2,12,2011,Like Water for Chocolate,Pedro Asks For Tita's Hand,tt0103994\nGt_pfAghaHA,2000.0,9,12,2011,Reindeer Games,The Pow-Wow Safe,tt0184858\nx2vfxsdVhaU,1992.0,8,12,2011,Like Water for Chocolate,Flatulence and Bad Breath,tt0103994\nNbl6Y076TeQ,1992.0,9,12,2011,Like Water for Chocolate,Mama Elena's Curse,tt0103994\nwjHd0VWfuRU,1992.0,10,12,2011,Like Water for Chocolate,Tita Stands Up For Herself,tt0103994\nq1Pz7ppcuJc,2006.0,1,12,2011,Venus,\"Not Yodeling, Modeling\",tt0489327\nLmRLxta5-4U,2000.0,12,12,2011,Reindeer Games,Behind the Wheel,tt0184858\nJ7PnM3ji7uA,1992.0,12,12,2011,Like Water for Chocolate,I Can't Marry You,tt0103994\n8ZDX262xJvo,2000.0,8,12,2011,Reindeer Games,Bad Santas,tt0184858\nO4aMxMg0Vn0,1992.0,3,12,2011,Like Water for Chocolate,Tita's Magical Meal,tt0103994\n2pg_Mr4lIoY,1992.0,1,12,2011,Like Water for Chocolate,Young Love,tt0103994\ncLTBa54o70U,2006.0,2,12,2011,Venus,First Date,tt0489327\nLldI0SRzJX0,2006.0,3,12,2011,Venus,Nude Modeling,tt0489327\nkghbSGoV1kE,2000.0,1,12,2011,Reindeer Games,Monsters in the Gelatin!,tt0184858\nqRAE0UOMyB8,2006.0,4,12,2011,Venus,The Rokeby,tt0489327\ndZgbeIE9Xbo,1992.0,4,12,2011,Like Water for Chocolate,Stolen Kiss,tt0103994\nH3ZYf8ECNWU,1992.0,5,12,2011,Like Water for Chocolate,Evil Mama Elena,tt0103994\nIIn0MEHnMC8,2006.0,6,12,2011,Venus,Does It Suit Me?,tt0489327\n-IZv4Jfl6ZQ,1999.0,2,12,2011,Holy Smoke,\"P.J. Waters, Cult Exiter\",tt0144715\nOYwDIrdkJ3Y,2006.0,5,12,2011,Venus,Silly Old Fools,tt0489327\niR-4e37VUPo,2004.0,1,12,2011,Jersey Girl,I Wanna be a Coked Out Whore,tt0300051\nkuXEfuC92Ag,2006.0,8,12,2011,Venus,Three Kisses,tt0489327\n0VYvdsrV6Lw,2004.0,2,12,2011,Jersey Girl,Ollie's Meltdown,tt0300051\ncIiMDK4UMQM,2006.0,7,12,2011,Venus,Can I Touch Your Hand?,tt0489327\nH60kzF257OI,1999.0,4,12,2011,Holy Smoke,Faking It,tt0144715\nR4O0t9jkkUg,1999.0,7,12,2018,Holy Smoke,How to Kiss a Woman,tt0144715\nyGPikMkqr3M,1999.0,12,12,2011,Holy Smoke,Hindu Hallucination,tt0144715\n5abHHDWcRAQ,1999.0,11,12,2011,Holy Smoke,\"I Love You, Ruth\",tt0144715\nKA-LkJdOzHo,1999.0,3,12,2011,Holy Smoke,Keep Breathing,tt0144715\nq06t8RTLqMQ,1999.0,8,12,2011,Holy Smoke,Man Hater,tt0144715\nig80r0pbEv4,1999.0,9,12,2011,Holy Smoke,An Ugly Woman,tt0144715\n8JfgfdHNkvg,1999.0,6,12,2011,Holy Smoke,Revolting Sex,tt0144715\nuvUH_niF-Zo,2004.0,6,12,2011,Jersey Girl,Birds & Bees,tt0300051\nesrBtSFDlEU,1999.0,1,12,2011,Holy Smoke,Indian Guru Baba,tt0144715\nXy-cq_YpYPg,2001.0,2,11,2011,O,\"Watch Your Girl, Bro\",tt0190590\nIB2eLqqkLaI,2004.0,4,12,2011,Jersey Girl,\"Punch It, Chewy\",tt0300051\nJC2eKssXavo,2004.0,11,12,2011,Jersey Girl,Parental Advice,tt0300051\niRIxb6_ELNg,2006.0,9,12,2011,Venus,Shall I Compare Thee to a Summer's Day?,tt0489327\n_9ZdW3KXuMs,2004.0,5,12,2011,Jersey Girl,A Publicist Legend,tt0300051\nACCoL8xk0Jg,2004.0,8,12,2011,Jersey Girl,Masturbation,tt0300051\n8n2vsSHAs0w,2004.0,9,12,2011,Jersey Girl,Caught in the Shower,tt0300051\nuONmjd_RGk4,2004.0,10,12,2011,Jersey Girl,Priorities of a Single Father,tt0300051\n_VA5a5QSYYA,2006.0,10,12,2011,Venus,We Won't Live Forever,tt0489327\nGXZ-NAPnfsw,2004.0,12,12,2011,Jersey Girl,Sweeney Todd,tt0300051\n3F_Jlo1A4oo,2009.0,3,12,2011,Everybody's Fine,Colleen the Truck Driver,tt0780511\nnKB-Ij0vyB4,2009.0,5,12,2011,Everybody's Fine,I Wanted to be a Good Father,tt0780511\ndRTKQQtFoRU,2006.0,12,12,2011,Venus,Now We Can Really Talk,tt0489327\nWH9nsFQH6KU,2009.0,4,12,2011,Everybody's Fine,A Spaghetti Dinner with Dad,tt0780511\nJf3-qH7OhmM,2006.0,11,12,2011,Venus,Catheters at Dawn,tt0489327\nhiq_FE5dmWI,2001.0,6,11,2011,O,Dunk Contest Drama,tt0190590\n3yp-s7ia9iQ,2001.0,1,11,2011,O,Under Suspicion,tt0190590\nlsxZwAnu8LQ,2001.0,9,11,2011,O,It Has to Look Like Suicide,tt0190590\nYp6X2N7tcKQ,2001.0,10,11,2011,O,A Life of Jealousy,tt0190590\nqFcIW6TtVEI,2002.0,1,12,2011,The Quiet American,He's a Quiet American,tt0258068\nDnKAU918UaE,2001.0,11,11,2011,O,My Life Is ver,tt0190590\nJvtwIPa3c9A,2001.0,7,11,2011,O,Believing the Lie,tt0190590\nkoWFIhw94xo,2006.0,2,11,2011,The Night Listener,Developing Friendship,tt0448075\nfYvvenxELZA,2001.0,3,11,2011,O,Stolen Scarf,tt0190590\nQ1yT_LIMb30,2001.0,8,11,2011,O,Plan of Attack,tt0190590\n42asJ9x0-po,2002.0,2,12,2011,The Quiet American,Saving a Country and a Woman,tt0258068\n-BUI1BdZz94,2009.0,8,12,2011,Everybody's Fine,\"Not My Son, Not My Son\",tt0780511\nGrWqq9ukRY8,2009.0,1,12,2011,Everybody's Fine,I'm Not a Conductor,tt0780511\n9ZhgVCU6ehk,2009.0,9,12,2011,Everybody's Fine,A Letter From Dad,tt0780511\n6RAn28uDZHc,2009.0,7,12,2011,Everybody's Fine,Why You All Lied to Me?,tt0780511\nVbrKHPGdDT0,2009.0,11,12,2011,Everybody's Fine,Home for the Holidays,tt0780511\nc-veUs6bPHY,2009.0,2,12,2011,Everybody's Fine,Quitting Smoking,tt0780511\n9gQIJ4id6pg,2009.0,12,12,2011,Everybody's Fine,Christmas Dinner,tt0780511\nKv_9PD-_akA,2006.0,6,11,2011,The Night Listener,Adapting to Deception,tt0448075\n1TCzcINB8HI,2002.0,3,12,2011,The Quiet American,A Very Bad Dancer,tt0258068\nvJ3TMzKciS8,2006.0,5,11,2011,The Night Listener,Theories,tt0448075\nfPJQ4T2TQ0E,2006.0,1,11,2011,The Night Listener,The First Call,tt0448075\ngY7e586vhzo,2002.0,4,12,2011,The Quiet American,When Did Everything Change?,tt0258068\njEXEQRL2oQw,2006.0,4,11,2011,The Night Listener,They Have the Same Voice,tt0448075\nIiIwhalEAwU,2006.0,3,11,2011,The Night Listener,The Christmas Party,tt0448075\n9NqWMjMX548,1998.0,1,12,2011,Everest,\"Like Father, Like Son\",tt0118949\nilfv_YzaP0U,2002.0,8,12,2011,The Quiet American,That's Not Love,tt0258068\nmWdqcBWVurw,2006.0,7,11,2011,The Night Listener,Phony Address,tt0448075\ntdBNwAJMgW4,2006.0,8,11,2011,The Night Listener,Just Being Friendly,tt0448075\n4cWDWIgBXrw,2006.0,9,11,2011,The Night Listener,Police Brutality,tt0448075\nZLFDR8pvkf4,2006.0,11,11,2011,The Night Listener,The Final Call,tt0448075\nSM-1QC6F1-k,2006.0,10,11,2011,The Night Listener,The Truck,tt0448075\n4uVgjb0gO9E,2002.0,6,12,2011,The Quiet American,I'm In Love With You,tt0258068\npW3peNmE19E,1998.0,3,12,2011,Everest,Crossing the Crevasse,tt0118949\n5w8kGvQ2j5Y,2002.0,7,12,2011,The Quiet American,The Beginning of Death,tt0258068\nlcns0VMck7s,1998.0,2,12,2011,Everest,Base Camp,tt0118949\niVpm6-9dPYs,1998.0,5,12,2011,Everest,Trapped in a Storm,tt0118949\n29KrhW9Ft4E,1998.0,4,12,2011,Everest,Middle Camp,tt0118949\ne50yvXvkaeg,2002.0,9,12,2011,The Quiet American,Behaving Badly,tt0258068\nqEMbpl4V-eA,1998.0,9,12,2011,Everest,The Death Zone,tt0118949\nKS_Doe-4fkM,1998.0,7,12,2011,Everest,Going for It,tt0118949\nUrf145tA2SM,1998.0,6,12,2011,Everest,You Have to Help Yourself,tt0118949\nE54uRkIuRDE,1994.0,1,12,2011,Il postino,Neruda's Autograph,tt0110877\nqmGHg5uJ7xU,1998.0,11,12,2011,Everest,The Summit,tt0118949\n043UFkOXvMo,1994.0,12,12,2011,Il postino,Mario's Song for Pablo,tt0110877\nOrjUfQFz_os,1998.0,8,12,2011,Everest,High Camp,tt0118949\n59R3QIB6NqU,1998.0,10,12,2011,Everest,The Last Stretch,tt0118949\ngBjOW9luDWw,2002.0,10,12,2011,The Quiet American,A Bombing in Saigon,tt0258068\n0qeD9nc9nwo,1995.0,2,10,2011,Unzipped,Nanook,tt0114805\n_OipkhcxS10,1994.0,2,12,2011,Il postino,Metaphors,tt0110877\n7_OiqaOaeNc,2006.0,2,10,2011,Hollywoodland,Superman Audition,tt0427969\noLVqE13mMps,1994.0,3,12,2011,Il postino,You've Invented a Metaphor,tt0110877\nQF08ozhDX-0,2002.0,11,12,2011,The Quiet American,One Has to Take Sides,tt0258068\ngljJhOFXrUU,2002.0,12,12,2011,The Quiet American,A Quiet Death,tt0258068\nSh8lx4EXs4c,1994.0,5,12,2011,Il postino,Five Words to Her,tt0110877\namrMaNtgMl0,1994.0,6,12,2011,Il postino,Touched By Words,tt0110877\nSmp3RNfgjqo,1994.0,4,12,2011,Il postino,Beatrice Russo,tt0110877\nqBCb0lSh5u0,1994.0,10,12,2011,Il postino,The Best Man,tt0110877\nulLABtzLz-I,1994.0,11,12,2011,Il postino,Why Would He Remember Me?,tt0110877\nirjKC9_1l3o,1994.0,7,12,2011,Il postino,Naked Poetry,tt0110877\nfrqWSqg35iM,1994.0,8,12,2011,Il postino,It's Your Fault I'm In Love,tt0110877\ncX0S8SN8Cmk,2001.0,2,12,2011,The Hole,Listening,tt0242527\nW0_4w6GsngI,2001.0,1,12,2011,The Hole,Welcome to the Hole,tt0242527\nKocw_F48CGw,2000.0,8,12,2011,The Yards,It Wasn't Me,tt0190138\nIYB9NFCd5s4,1994.0,9,12,2011,Il postino,Beatrice Loves Mario,tt0110877\nrChS9MeLW-w,2006.0,7,10,2011,Hollywoodland,Costume Shop Murder,tt0427969\nFfIAWygymsc,2006.0,4,10,2011,Hollywoodland,Under the Rug,tt0427969\nIimC6oXVZpI,2001.0,3,12,2011,The Hole,Blaming Liz,tt0242527\ngYhC67R4g64,2001.0,4,12,2011,The Hole,A Bitch or a Complete Slut,tt0242527\nMdTaJDKTgUc,2005.0,10,10,2011,Proof,Robert's Supposed Breakthrough,tt0377107\nshogibE67W8,1995.0,9,10,2011,Unzipped,Nanooked,tt0114805\ncg-wxqxxWs4,2006.0,3,10,2011,Hollywoodland,Putting on the Suit,tt0427969\nWzt_d8eA_m8,1995.0,5,10,2011,Unzipped,50's Cheesecake Meets Eskimo,tt0114805\nAqTaIbDTNnE,1998.0,5,12,2011,Little Voice,I'll Do It,tt0147004\npsDnYKqgVT8,1995.0,10,10,2011,Unzipped,The Runway,tt0114805\nUQzUOKKGfLs,1995.0,6,10,2011,Unzipped,Irving the Joke Writer,tt0114805\nBOaImgyr7mU,1995.0,7,10,2011,Unzipped,Home Movies,tt0114805\nHRbf5iuWZt8,1995.0,8,10,2011,Unzipped,Setting the Stage,tt0114805\nwYwlDchIasw,1995.0,4,10,2011,Unzipped,Yarn't,tt0114805\nn16wxs5pgvk,1995.0,3,10,2011,Unzipped,Gowns for Eartha Kitt,tt0114805\nc_7V6VgIvTY,2000.0,6,12,2011,Reindeer Games,Dart Game,tt0184858\nAVMAbj_Pbnk,2005.0,8,12,2011,An Unfinished Life,A Good Mother,tt0350261\ngJOWAISZDhs,1995.0,1,10,2011,Unzipped,Here's My Process,tt0114805\noxA2tQ6kfdE,1999.0,10,12,2011,Holy Smoke,Punch Out,tt0144715\n-AXjzZskE9U,2005.0,2,12,2011,An Unfinished Life,Redneck Breakfast,tt0350261\nd7RrYVI3Xw0,2001.0,12,12,2011,Kate & Leopold,Kate in the 19th Century,tt0035423\nAw1mnorjq-o,2001.0,1,12,2011,Kate & Leopold,I've Been Warned About You,tt0035423\nzWY-GWMn4Ig,2006.0,5,10,2011,Hollywoodland,Superman Doesn't Smoke,tt0427969\n5EFH9AmTg6c,2001.0,10,12,2011,Kate & Leopold,Peddling Pond Scum,tt0035423\nFmGg8C6mI78,2005.0,4,12,2011,An Unfinished Life,A Gay Couple,tt0350261\nHh-QeqsDXKI,2005.0,3,12,2011,An Unfinished Life,Moths for Lunch,tt0350261\nmfg2O0A6L4g,2000.0,4,12,2011,The Yards,Worried About Wires,tt0190138\nnRq905BT8HM,2002.0,3,12,2011,The Four Feathers,Put Your Gun Down,tt0240510\nM-HCaHXzQRY,2002.0,4,12,2011,The Four Feathers,A Different Kind of Fear,tt0240510\nQt5TuFHZh5E,1998.0,5,11,2011,Senseless,Eavesdropping,tt0120820\nFwfrVozwn7A,1991.0,1,12,2011,A Rage in Harlem,Shootout in Natchez,tt0102749\ndl1X9j-9Lbg,1998.0,8,11,2011,Senseless,Hazed But Unfazed,tt0120820\ncliSp3FNprY,1991.0,2,12,2011,A Rage in Harlem,I Put a Spell on You,tt0102749\nV9Ul46Dj3Hg,1993.0,11,12,2011,Little Buddha,The Middle Way of Enlightenment,tt0107426\nPqGuiXKC320,1991.0,12,12,2011,A Rage in Harlem,My Feet are Killing Me,tt0102749\ngZSxqyNDZvw,2005.0,5,12,2011,An Unfinished Life,A First-Rate Father,tt0350261\nKp6aaQEK5y0,2005.0,6,12,2011,An Unfinished Life,A Grieving Confession,tt0350261\nrV4DxcJOCLs,1998.0,3,12,2011,Little Voice,Ray Hears LV Sing,tt0147004\nhw8D5KSx5p4,2005.0,11,12,2011,An Unfinished Life,A Beating for a Beater,tt0350261\nqIleHfrMWWE,2003.0,3,9,2011,The Battle of Shaker Heights,The Bowland Family,tt0357470\nCjyutBNjVns,2001.0,10,12,2011,The Hole,And Then There Were Three,tt0242527\nwSKGygJ2-oQ,2005.0,7,12,2011,An Unfinished Life,A Caged Animal,tt0350261\nY77zaw13B_8,2005.0,9,12,2011,An Unfinished Life,Freeing the Bear,tt0350261\nL6FYDW1TC4g,2005.0,12,12,2011,An Unfinished Life,A Reason for Everything,tt0350261\nIqOqMdra3rk,2005.0,10,12,2011,An Unfinished Life,Face to Face,tt0350261\n_pEz5emBI4A,2001.0,9,12,2011,The Hole,So You're F***ing Her Now,tt0242527\nfy-PoYl4bQI,2003.0,4,9,2011,The Battle of Shaker Heights,Art Store Run In,tt0357470\nGbW8sknTWZ8,2003.0,2,9,2011,The Battle of Shaker Heights,Undermining Education,tt0357470\nnnJW5FWg9oc,2001.0,5,12,2011,The Hole,\"Touching, Feeling\",tt0242527\nIvKzfpZ1GUw,2003.0,5,9,2011,The Battle of Shaker Heights,Interesting Dinner Conversation,tt0357470\ngnY0vVF0j60,2003.0,9,9,2011,The Battle of Shaker Heights,Cue the Jeep!,tt0357470\nkUAXs0LhD6I,2003.0,6,9,2011,The Battle of Shaker Heights,Awkward Adolescence of the Insect World,tt0357470\n7BnAQgS15HY,2003.0,7,9,2011,The Battle of Shaker Heights,The Prank,tt0357470\n1QDmLu5a0nI,2003.0,8,9,2011,The Battle of Shaker Heights,You Like me Don't You?,tt0357470\nw6v2DUJi-C0,2001.0,8,12,2011,The Hole,Thirst,tt0242527\nfi6U1d5eW4g,2001.0,6,12,2011,The Hole,Trapped in the Hole,tt0242527\nf7utYx1vcM0,2001.0,12,12,2011,The Hole,All for You,tt0242527\nAHyK8eTGHNs,2001.0,7,12,2011,The Hole,You Bitch!,tt0242527\nkaQPejxLNRw,2000.0,1,12,2011,Down to You,I'm Imogen,tt0186975\nI_mYmJVMef0,2001.0,5,12,2011,Kate & Leopold,Charlie Tries Being Romantic,tt0035423\nbSE3gq6Sf6Y,2001.0,6,12,2011,Kate & Leopold,Rooftop Date,tt0035423\nsRqeX6qMlak,2001.0,11,12,2011,The Hole,This One Was Murdered,tt0242527\nU9nydZd_emI,2001.0,2,12,2011,Kate & Leopold,Leopold to the Rescue,tt0035423\ndCxgKZ5QV5E,2000.0,3,12,2011,Down to You,First Real Kiss,tt0186975\nG-FYkB9M72k,2001.0,7,12,2011,Kate & Leopold,Leap,tt0035423\nDLVfYn9pvwo,2001.0,8,12,2011,Kate & Leopold,Who Are You?,tt0035423\nFwi0bsJ5F8I,2001.0,9,12,2011,Kate & Leopold,Leopold's Butter Commercial,tt0035423\n2MtY0yfM0nI,2006.0,8,10,2011,Hollywoodland,Prove It,tt0427969\ntBw_BTLbjJI,2001.0,4,12,2011,Kate & Leopold,\"A Serpent, Braggart, and a Cad\",tt0035423\nliK550asDSw,2000.0,2,12,2011,Down to You,Sexy Cyrus,tt0186975\nhohZbtTAtRA,2000.0,5,12,2011,Down to You,You Make Me Feel Alive,tt0186975\nVrFey4EPA8Y,2000.0,4,12,2011,Down to You,Let's Stay Together,tt0186975\nwF6xVdnFJho,2002.0,1,12,2011,The Four Feathers,I Wish to Resigning my Commission,tt0240510\n1z2AjhGr9XI,2006.0,10,10,2011,Hollywoodland,Lou's Home Movies,tt0427969\nMEdmiHCUvYA,2000.0,1,12,2011,The Yards,Welcome Home Leo,tt0190138\nBRWeoTfbbbg,2006.0,1,10,2011,Hollywoodland,We Don't Give Out That Information,tt0427969\nif5npkJHfik,2006.0,9,10,2011,Hollywoodland,George's Film Reel,tt0427969\nuCCrethRf3E,2000.0,3,12,2011,The Yards,Club Rio,tt0190138\n2sFAyhjR8_o,2002.0,8,12,2011,The Four Feathers,I Can't See,tt0240510\nLrTMwBugt-Y,2000.0,7,12,2011,Down to You,The Man Show,tt0186975\n938jCranAMo,2002.0,2,12,2011,The Four Feathers,Feathers of Cowardice,tt0240510\nZ58VID4Qjf0,2002.0,6,12,2011,The Four Feathers,Surrounded,tt0240510\nNvxttHABP1o,2002.0,5,12,2011,The Four Feathers,They Are Not Armed,tt0240510\nskuMakhGnn4,2002.0,7,12,2011,The Four Feathers,Skirmishers,tt0240510\nptiXfr5lJl8,2002.0,9,12,2011,The Four Feathers,\"Pray For Me, Abou\",tt0240510\nUr4Pg0Jyph0,2000.0,9,12,2011,Down to You,Central Park Love,tt0186975\nDFEuw-bNldk,1998.0,10,11,2011,Senseless,I Know My S***,tt0120820\n9ZvkGoQ1dSU,2002.0,10,12,2011,The Four Feathers,Desert Escape,tt0240510\nU6PfGIrWIak,2000.0,8,12,2011,Down to You,Partying with Jim Morrison,tt0186975\nFlyWwjIuCeE,2002.0,11,12,2011,The Four Feathers,Returning to Ethne,tt0240510\n0PraJ0mNgUs,2002.0,12,12,2011,The Four Feathers,\"Good Soldiers, Better Friends\",tt0240510\n3XPzF1azIkI,2000.0,10,12,2011,Down to You,You're My Vice,tt0186975\n9aHj6prYd54,2000.0,11,12,2011,Down to You,,tt0186975\nbtWDXgrF-bo,2000.0,6,12,2011,Down to You,Honeymoon Days,tt0186975\nPtgGWFzIQq0,2000.0,5,12,2011,The Yards,Murder at the Yards,tt0190138\nz8Z8Qx6-rPY,1998.0,2,11,2011,Senseless,Kappa Material,tt0120820\nbolHm17q3ik,2000.0,6,12,2011,The Yards,Hospital Hit,tt0190138\nbHjHDiu2UR8,2000.0,12,12,2011,Down to You,Can't Get Enough of Your Love,tt0186975\nEF6ss3d4GyI,1998.0,3,11,2011,Senseless,Hyperreal Senses,tt0120820\n17oDZd93a-U,1998.0,1,11,2011,Senseless,Use as Directed,tt0120820\nUTAZimUwzCM,1998.0,9,11,2011,Senseless,Side Effects,tt0120820\njHessqORWLw,1998.0,6,11,2011,Senseless,Haitian Sasquatch,tt0120820\nU937JR-ir5I,1998.0,4,11,2011,Senseless,Master of His Domain,tt0120820\n41IWZRnmb68,2000.0,7,12,2011,The Yards,Was It Leo?,tt0190138\nhLrM7OaMTGg,1998.0,7,11,2011,Senseless,Limp Biscuit,tt0120820\nM7iC24MaxxI,1998.0,11,11,2011,Senseless,To a Deluxe Apartment,tt0120820\nbqPbkGVa_wc,2000.0,9,12,2011,The Yards,A Fight Between Friends,tt0190138\n0g39c4d1fKQ,1991.0,3,12,2011,A Rage in Harlem,A Foot Massage,tt0102749\nifS04il68Yw,1991.0,4,12,2011,A Rage in Harlem,You a Virgin?,tt0102749\nC68UZJevw2Q,1991.0,5,12,2011,A Rage in Harlem,Sex with Imabelle,tt0102749\nxs0lwxmTaZY,1991.0,6,12,2011,A Rage in Harlem,Rye Goddamn Whiskey,tt0102749\ntbjTxvs1nPo,1991.0,7,12,2011,A Rage in Harlem,Leaps of Faith,tt0102749\nDOl-8LrZapk,1991.0,9,12,2011,A Rage in Harlem,Pop Goes the Weasel,tt0102749\nOKjpAsVT-8g,1991.0,10,12,2011,A Rage in Harlem,Don't Shoot my Pappy,tt0102749\nTJIWOgCUdGE,1991.0,8,12,2011,A Rage in Harlem,A 50/50 Split,tt0102749\nUvNE2bjUfC4,1991.0,11,12,2011,A Rage in Harlem,A Final Dance to Death,tt0102749\n4xpGjslC5Vs,2000.0,11,12,2011,The Yards,Leave Me Alone!,tt0190138\nR80X3_lPzoo,2000.0,12,12,2011,The Yards,Under Arrest,tt0190138\n9IMNpGeSLT0,2000.0,10,12,2011,The Yards,A Warning for Willie,tt0190138\n9QbJu_68yS4,1993.0,3,12,2011,Little Buddha,You Will be My Guide,tt0107426\nCb1Pbk3gQSM,2000.0,2,12,2011,The Yards,Job Interview,tt0190138\nEWBVJF9sSPI,1993.0,1,12,2011,Little Buddha,Fateful Premonition,tt0107426\n0zyVlsLgJ8U,1993.0,4,12,2011,Little Buddha,The Birth of Siddhartha,tt0107426\n4nrgeASou5Q,2003.0,4,12,2011,The Barbarian Invasions,Riding the Dragon,tt0338135\nyxnFEjVMK2U,1993.0,6,12,2011,Little Buddha,Gates to the Kingdom,tt0107426\nYmMAmPFhSqw,1993.0,2,12,2011,Little Buddha,Spiritual Guides,tt0107426\n2QT4mFNVyzc,1993.0,5,12,2011,Little Buddha,Beauty Beyond the Walls,tt0107426\nxJzCM_nI2mM,1993.0,7,12,2011,Little Buddha,Show Me Death,tt0107426\nGV9TBb-8Kec,1993.0,9,12,2011,Little Buddha,The Serpent,tt0107426\niGgiGgeCwM8,1993.0,8,12,2011,Little Buddha,The Concerned Father,tt0107426\nzyRjUeY6YOc,1993.0,12,12,2011,Little Buddha,The Third Candidate,tt0107426\nBS_wIUrlOPk,1993.0,10,12,2011,Little Buddha,The Decision,tt0107426\nB_UjiJy0t4c,2005.0,2,12,2011,Kinky Boots,Pass Me My Boobs,tt0434124\nhX5s15LBHqo,1998.0,2,12,2011,Little Voice,She Spoils Everything,tt0147004\ng92cHdRbgag,2005.0,1,12,2011,Kinky Boots,Let's Make Shoes!,tt0434124\nZ519Bs2Kidc,1998.0,1,12,2011,Little Voice,Ray Freakin' Say,tt0147004\nuJNHr8QQVJQ,2005.0,7,12,2011,Kinky Boots,Red Is the Color of Sex,tt0434124\nRxn-KDDZ8RI,2005.0,3,12,2011,Kinky Boots,Whatever Lola Wants,tt0434124\nQX7j8pCeD7Y,1998.0,4,12,2011,Little Voice,You Are My Discovery,tt0147004\nh4SMndWj5To,1998.0,6,12,2011,Little Voice,LV Takes the Stage,tt0147004\nFYDwyb7CJxY,1998.0,7,12,2011,Little Voice,LV Covers Her Idols,tt0147004\nvT6xS0mRapg,1998.0,8,12,2011,Little Voice,Don't Push Her Too Hard,tt0147004\nkhz9zIg_2sc,2005.0,6,12,2011,Kinky Boots,Lola Out of London,tt0434124\nsu2njbUCQhg,2005.0,8,12,2011,Kinky Boots,Arm Wrestling,tt0434124\n4BRkb7LhkUU,2005.0,4,12,2011,Kinky Boots,I Feel Like Oprah,tt0434124\nomiio7SJIOE,2005.0,5,12,2011,Kinky Boots,Testing the Boots,tt0434124\nNBh_b2SBDHs,2005.0,10,12,2011,Kinky Boots,Does He Look Sexy?,tt0434124\nvQyK7Re2-Jc,2005.0,9,12,2011,Kinky Boots,It's a Man's Man's Man's World,tt0434124\nVbfjIg31aE0,2004.0,10,10,2011,The Chorus,Take Me With You,tt0372824\nMwk75Fek3qs,2005.0,11,12,2011,Kinky Boots,These Boots Are Made for Walkin',tt0434124\nP4-obzmm_T0,2005.0,12,12,2011,Kinky Boots,Yes Sir I Can Boogie,tt0434124\nt4qrfjEgdt4,1998.0,12,12,2011,Little Voice,\"Can You Hear Me Now, Mother?\",tt0147004\nuLYYXvBlUgQ,1998.0,9,12,2011,Little Voice,Getting in the Way,tt0147004\nspu_6dxLcok,2003.0,8,12,2011,The Barbarian Invasions,Cretinism,tt0338135\nKdNQBaLVGfI,1998.0,10,12,2011,Little Voice,LV Cracks Up,tt0147004\noBtG0gj6MxA,1998.0,11,12,2011,Little Voice,It's Over,tt0147004\nLwdlYGPcikE,1998.0,12,12,2011,Everest,On Top of the World,tt0118949\ngJyibprvYQk,2001.0,11,12,2011,Kate & Leopold,Kate Crosses the Bridge,tt0035423\nc71vLQPwjdU,2003.0,7,12,2011,The Barbarian Invasions,Withdrawals,tt0338135\nNBTLvFg_ve8,2003.0,1,12,2011,The Barbarian Invasions,Go to Hell,tt0338135\nwPvJ5OJ_P18,2003.0,2,12,2011,The Barbarian Invasions,Barbarians at the Gate,tt0338135\n10Q3mew9R6A,2003.0,5,12,2011,The Barbarian Invasions,The World's Most Gorgeous Women,tt0338135\niXyfNoBlpjA,2003.0,3,12,2011,The Barbarian Invasions,A History of Horrors,tt0338135\n-KvWckPXGIQ,2003.0,6,12,2011,The Barbarian Invasions,Living in the Past,tt0338135\nXI9RzX6Xvyw,2003.0,12,12,2011,The Barbarian Invasions,Final Farewell,tt0338135\nIHPjxbcPnAc,2003.0,9,12,2011,The Barbarian Invasions,The Kiss of Death,tt0338135\nty5exYQi3wg,2003.0,11,12,2011,The Barbarian Invasions,I Take Your Smiles With Me,tt0338135\n4zULAL9VioE,2003.0,10,12,2011,The Barbarian Invasions,Father and Son,tt0338135\nPu54Ka5I6lc,2004.0,9,10,2011,The Chorus,\"Goodbye, Chrome Dome\",tt0372824\nEXS5TiBYESk,2004.0,6,10,2011,The Chorus,Those Children Inspire Me,tt0372824\nCTlALiQtH5o,2004.0,2,10,2011,The Chorus,\"Baldy, You Are Through\",tt0372824\n95XSvfimW_E,2004.0,5,10,2011,The Chorus,Working Mother,tt0372824\nMfmOj8Rqcog,2002.0,10,10,2011,Spy Kids 2: Island of Lost Dreams,Kick His Butt! Scene,tt0287717\n5l1VEIQj0vA,2004.0,3,10,2011,The Chorus,How Did Marshal Ney Die?,tt0372824\ncCn4FUNWvQ4,2004.0,8,10,2011,The Chorus,Rachin Fires Mathieu,tt0372824\nd9N--iGGW3E,2004.0,1,10,2011,The Chorus,No Smoking,tt0372824\n8IXVGrc3uOA,2004.0,4,10,2011,The Chorus,Auditions,tt0372824\na_4TTRfXkgk,2002.0,1,10,2011,Spy Kids 2: Island of Lost Dreams,The Juggler Scene,tt0287717\nZNzVgqv5MtQ,2002.0,8,10,2011,Spy Kids 2: Island of Lost Dreams,Skeleton Battle Scene,tt0287717\nZ09MpDVYWSw,2002.0,2,10,2011,Spy Kids 2: Island of Lost Dreams,I Only Dance Ballet Scene,tt0287717\nYa2mPO0f-uk,2004.0,7,10,2011,The Chorus,Singing for the Countess,tt0372824\nOnqbwlqk4G0,2002.0,3,10,2011,Spy Kids 2: Island of Lost Dreams,Spy Kids vs. Magna Men Scene,tt0287717\n3chYfqAbqow,2002.0,5,10,2011,Spy Kids 2: Island of Lost Dreams,\"Who, What, When, Where, and Why Scene\",tt0287717\nAcNkJ4_bQ1g,2002.0,7,10,2011,Spy Kids 2: Island of Lost Dreams,Romero's Miniature Zoo Scene,tt0287717\n0yc0knpkAxw,2002.0,9,10,2011,Spy Kids 2: Island of Lost Dreams,Your Creature's Lame! Scene,tt0287717\nWZkuKkPQjbQ,2002.0,6,10,2011,Spy Kids 2: Island of Lost Dreams,How Long Have We Been Falling? Scene,tt0287717\nAzGePmv0GD8,2002.0,4,10,2011,Spy Kids 2: Island of Lost Dreams,Machete's Gadgets Scene,tt0287717\nqp27BT2g0BE,1996.0,11,12,2011,Trainspotting,Drug Deal,tt0117951\nmdwLxOK7xLc,2002.0,11,12,2011,Gangs of New York,The Draft Riots,tt0217505\nXNG8wW6Ffw4,2009.0,1,11,2011,Extract,Sam Ash Music Store,tt1225822\nOIyluGsy-zA,2009.0,3,11,2011,Extract,One Nut Freak Accident,tt1225822\ngkEsrZpCdOo,2010.0,8,11,2011,The Switch,Lice,tt0889573\n9nrVYO6LU6I,2003.0,10,12,2011,Cold Mountain,\"I Marry You, I Marry You, I Marry You\",tt0159365\naEpa21af2j4,2003.0,11,12,2011,Cold Mountain,The Confidence of Youth,tt0159365\nTY513V0RMgw,2003.0,12,12,2011,Cold Mountain,What We Have Lost,tt0159365\nAHHH770W4Wk,2001.0,1,10,2011,Spy Kids,Marriage is a Mission,tt0227538\ni-VeLFEMeko,2001.0,3,10,2011,Spy Kids,Becoming Spies,tt0227538\nv2KtG9kFZOI,2001.0,4,10,2011,Spy Kids,Jetpack Pursuit,tt0227538\njx6Rgn1ioAk,2002.0,12,12,2011,Chicago,Hot Honey Rag,tt0299658\n93Z1sPjzz8w,2001.0,10,10,2011,Spy Kids,Family is a Mission Worth Fighting For,tt0227538\n5lqvuMwYODI,2001.0,7,10,2011,Spy Kids,Taking Machete's Spy Plane,tt0227538\nvhQ4S5ajwDQ,2002.0,2,12,2011,Chicago,Funny Honey,tt0299658\nOxzfUI1wSwU,2002.0,6,12,2011,Chicago,We Both Reached For the Gun,tt0299658\nTfxoCicKvCc,2002.0,5,12,2011,Chicago,All I Care About,tt0299658\nq7heVIEyvQ4,1996.0,4,12,2011,From Dusk Till Dawn,Sex Machine,tt0116367\naAWIZFqE6L4,2002.0,4,12,2011,Gangs of New York,The Five Points,tt0217505\nlMrKsKQWrl8,1996.0,7,12,2011,Swingers,Mike Leaves a Message,tt0117802\ncyiC3x6-Kzk,1996.0,3,12,2011,Trainspotting,The Worst Toilet in Scotland,tt0117951\nN7iMP1tPg7I,1996.0,8,12,2011,Trainspotting,Spud Ruins Breakfast,tt0117951\nfeeIOZH7wr4,1996.0,6,12,2011,Swingers,You're Like a Big Bear,tt0117802\nifkYHEoe6_k,1997.0,7,12,2011,Good Will Hunting,Skyler's Joke,tt0119217\n8WsHwXs_aq4,1997.0,6,12,2011,Good Will Hunting,Game Six,tt0119217\nxvvx-0G7XHc,1997.0,5,12,2011,Good Will Hunting,Imperfections,tt0119217\nouppQFx3v-I,1997.0,4,12,2011,Good Will Hunting,Presumptions of a Scared Kid,tt0119217\nHSfxl1KI6y8,1997.0,3,12,2011,Good Will Hunting,The Painting,tt0119217\ne1DnltskkWk,1997.0,1,12,2011,Good Will Hunting,My Boy's Wicked Smart,tt0119217\ngcZPWkNY6x8,1997.0,2,12,2011,Good Will Hunting,How You Like Them Apples?,tt0119217\nyzb726TP-OM,1997.0,12,12,2011,Good Will Hunting,It's Not Your Fault,tt0119217\n3i8eIzSeC8w,1997.0,11,12,2011,Good Will Hunting,The Best Part of My Day,tt0119217\ntrxN4ftuxKQ,1997.0,9,12,2011,Good Will Hunting,Say You Don't Love Me,tt0119217\nVcKVgWYkZa4,1997.0,10,12,2011,Good Will Hunting,The NSA,tt0119217\nC4MVQby0InQ,1994.0,5,12,2011,Clerks,Death Star Contractors,tt0109445\nDDYj5ChFwbU,1994.0,10,12,2011,Clerks,Necrophiliac,tt0109445\ntp7ss_bTP4Y,1994.0,9,12,2011,Clerks,Hockey on the Roof,tt0109445\n3a3zXJ7biqI,1994.0,7,12,2011,Clerks,Guidance Counselors,tt0109445\nD9khHJTztKk,1994.0,8,12,2011,Clerks,F***ing Customers,tt0109445\nup7I_0JGTgQ,1996.0,9,12,2011,Swingers,Go Daddy-O,tt0117802\nWTw51Ynkn7A,1994.0,1,12,2011,Clerks,Jay & Silent Bob,tt0109445\nNg7jUTiM21A,2004.0,11,12,2011,Shall We Dance,Dance With Me,tt0358135\njXb09CCPFO4,2004.0,7,12,2011,Shall We Dance,Rhumba the Dance of Love,tt0358135\nNUXt-stAcRw,2004.0,9,12,2011,Shall We Dance,The Cha-Cha Competition,tt0358135\nFaSlQP79M-M,2004.0,10,12,2011,Shall We Dance,The Waltz,tt0358135\nAKMLjQycW0U,2004.0,8,12,2011,Shall We Dance,Be This Alive,tt0358135\nIIr2CCwrYbU,2004.0,12,12,2011,Shall We Dance,\", Mr. Clark\",tt0358135\nmZwKEa09xTc,2004.0,5,12,2011,Shall We Dance,Link Dances?,tt0358135\nDcaV2VQgea0,2004.0,4,12,2011,Shall We Dance,Diner After Dancing,tt0358135\nPWN2ntVDwoU,2004.0,3,12,2011,Shall We Dance,A Ballroom Dance Demonstration,tt0358135\nu9A2CYMFfNo,2004.0,2,12,2011,Shall We Dance,Miss Mitzi's Ballroom Dance School,tt0358135\nd7V9liYn-IA,2004.0,6,12,2011,Shall We Dance,Learning the Waltz,tt0358135\nKcHfK9kvnvs,2004.0,1,12,2011,Shall We Dance,Dancer in the Window,tt0358135\nvtjCVRm2DAM,1996.0,7,12,2011,From Dusk Till Dawn,Welcome to Slavery,tt0116367\nQTKNzDn8PzA,1996.0,10,12,2011,From Dusk Till Dawn,Mean Servant of God,tt0116367\n0x6LPfRGAL8,1996.0,6,12,2011,From Dusk Till Dawn,F***ing Vampires!,tt0116367\nS8kPqAV_74M,1994.0,9,12,2011,Pulp Fiction,Bring Out the Gimp,tt0110912\nLBBni_-tMNs,1994.0,11,12,2011,Pulp Fiction,I Shot Marvin in the Face,tt0110912\ntVRPz6-Tkww,1994.0,10,12,2011,Pulp Fiction,Marsellus Gets Medieval,tt0110912\nxHO6nBc4YFU,1994.0,8,12,2011,Pulp Fiction,Butch Meets Vincent,tt0110912\nYFtHjV4c4uw,1994.0,7,12,2011,Pulp Fiction,The Gold Watch,tt0110912\nZOoJoTAXDPk,1994.0,6,12,2011,Pulp Fiction,A Shot of Adrenaline,tt0110912\nx2WK_eWihdU,1994.0,3,12,2011,Pulp Fiction,Ezekiel 25:17,tt0110912\nPvMxbRCBalk,1994.0,1,12,2011,Pulp Fiction,Pumpkin and Honey Bunny,tt0110912\nrp4nf7xR9Uk,2005.0,12,12,2011,Sin City,An Old Man Dies,tt0401792\nBahUC3EFWXA,2005.0,11,12,2011,Sin City,\"So Long, Junior\",tt0401792\njYID_csTvos,1994.0,5,12,2011,Pulp Fiction,Dancing at Jack Rabbit Slim's,tt0110912\nppWi_bhS2eQ,2005.0,10,12,2011,Sin City,That Yellow Bastard,tt0401792\nKrDck8ocFu0,2005.0,9,12,2011,Sin City,Nancy Dances,tt0401792\nmdcXOlUMfq0,2005.0,7,12,2011,Sin City,A Ride with Jackie Boy,tt0401792\n6mBFhNSqBk8,2005.0,8,12,2011,Sin City,The Big Fat Kill,tt0401792\nRwyLbX4uOS0,2005.0,6,12,2011,Sin City,Miho vs. Jackie Boy,tt0401792\n9BOOv6NNnP0,2005.0,5,12,2011,Sin City,Shellie's New Boyfriend,tt0401792\n6G6Z60EPieA,2005.0,3,12,2011,Sin City,He Never Screams,tt0401792\ncwJFMjOz_l0,2005.0,4,12,2011,Sin City,You Can Scream Now,tt0401792\njKXg2eMaNXU,2004.0,11,12,2011,Kill Bill: Vol. 2,I Overreacted Scene,tt0378194\nNL7nLSSSWjw,2004.0,12,12,2011,Kill Bill: Vol. 2,The Five Point Palm  Exploding Heart Technique Scene,tt0378194\nI_cEoK1mXms,2004.0,10,12,2011,Kill Bill: Vol. 2,Superman and Clark Kent Scene,tt0378194\n9-qk52E7zj8,2004.0,9,12,2011,Kill Bill: Vol. 2,\"Freeze, Mommy Scene\",tt0378194\nfCbf4DjlHuM,2004.0,2,12,2011,Kill Bill: Vol. 2,Master Pai Mei Scene,tt0378194\nTrZuYfti-pE,2004.0,7,12,2011,Kill Bill: Vol. 2,The Trailer Fight Scene,tt0378194\nfWqnZTTRkm4,2003.0,9,12,2011,Kill Bill: Vol. 1,The Crazy 88s,tt0266697\nJnXi3SVJXbM,2004.0,5,12,2011,Kill Bill: Vol. 2,Out of the Grave Scene,tt0378194\nuGsWYV2bWAc,2003.0,8,12,2011,Kill Bill: Vol. 1,The Bride vs. Gogo,tt0266697\nrIr6rEndy0A,2003.0,5,12,2011,Kill Bill: Vol. 1,Hattori Hanzo,tt0266697\nOLvz5E61UNs,2003.0,6,12,2011,Kill Bill: Vol. 1,Tanaka Loses His Head,tt0266697\nKQM0klOXck8,2003.0,4,12,2011,Kill Bill: Vol. 1,O-Ren's Revenge,tt0266697\n2sJx9qbjetg,2003.0,3,12,2011,Kill Bill: Vol. 1,My Name is Buck,tt0266697\n_Mk_f75TS1A,2003.0,2,12,2011,Kill Bill: Vol. 1,Your Mother Had it Coming,tt0266697\nkgRlzeYc1nk,2003.0,1,12,2011,Kill Bill: Vol. 1,Hello Vernita,tt0266697\nV8K5d3pEUl8,1996.0,1,12,2011,From Dusk Till Dawn,Be Cool,tt0116367\nkGViaTOfSow,2009.0,4,12,2011,Adventureland,Lisa P's Back!,tt1091722\nTEmvPX06cJo,2009.0,9,12,2011,Adventureland,People Are Trying to Kill Me,tt1091722\nzV0rK6KXfwU,2009.0,12,12,2011,Adventureland,Are We Doing This?,tt1091722\nl4L9Yi-lXbo,2004.0,1,12,2011,Kill Bill: Vol. 2,That Woman Deserves Her Revenge Scene,tt0378194\nMnMZeDmfgmU,2005.0,2,12,2011,Sin City,\"Hit Him Again, Wendy\",tt0401792\nETTsJggQl3I,2004.0,3,12,2011,Kill Bill: Vol. 2,Really Pathetic Kung Fu Scene,tt0378194\nsNom4k5Pwb8,2005.0,1,12,2011,Sin City,I'll Be Right Out,tt0401792\nRWwGXIjxbnI,2004.0,8,12,2011,Kill Bill: Vol. 2,Losing the Other Eye Scene,tt0378194\nEajaioMj-NA,2003.0,11,12,2011,Kill Bill: Vol. 1,Showdown at the House of Blue Leaves,tt0266697\nW6bT7Y-WfoY,2003.0,7,12,2011,Kill Bill: Vol. 1,The Bride Arrives,tt0266697\nQsaG8rJGlyQ,2004.0,6,12,2011,Kill Bill: Vol. 2,Budd Meets the Black Mamba Scene,tt0378194\nr1S-yBBZsDI,2009.0,8,12,2011,Adventureland,Tokin' on the Job,tt1091722\njYrKqg2TqUo,2003.0,12,12,2011,Kill Bill: Vol. 1,A Hattori Hanzo Sword,tt0266697\n-nX_jQxWFN4,2009.0,2,12,2011,Adventureland,I Can Give You a Ride,tt1091722\nKqAIrFLuymo,1996.0,12,12,2011,From Dusk Till Dawn,Battling the Beasts,tt0116367\nGG4VDjXtt7Q,1996.0,11,12,2011,From Dusk Till Dawn,Nam Flashback,tt0116367\nYbcfcgX2U3g,1996.0,9,12,2011,From Dusk Till Dawn,Dealing with Vampires,tt0116367\nADmX9eMEV9U,2002.0,2,12,2011,Gangs of New York,Crusty Bitches & Rag Tags,tt0217505\nIj79LQXZDEk,2002.0,3,12,2011,Gangs of New York,Battle of the Points,tt0217505\n2_YvzQoCG68,2002.0,1,12,2011,Gangs of New York,The Dead Rabbits,tt0217505\nns-qtoxnAS8,2002.0,6,12,2011,Gangs of New York,Paddy's Lamentation,tt0217505\nUdhxL9r9hkg,2002.0,7,12,2011,Gangs of New York,Honorable Men,tt0217505\njn8SVc374U0,2002.0,12,12,2011,Gangs of New York,True American,tt0217505\nGQy5xztHVPQ,2002.0,8,12,2011,Gangs of New York,The Priest's Son,tt0217505\nEEjI0A9iMow,2004.0,4,12,2011,Kill Bill: Vol. 2,The Cruel Tutelage of Pai Mei Scene,tt0378194\nlDRzG3mH-DQ,2002.0,10,12,2011,Gangs of New York,Happy Jack,tt0217505\ndmL4e3jljy4,2003.0,10,12,2011,Kill Bill: Vol. 1,Defeating Johnny Mo,tt0266697\n-TPRG6Yqzf4,2002.0,5,12,2011,Gangs of New York,Fidlam Bens,tt0217505\n39mBogAVAQc,2002.0,9,12,2011,Gangs of New York,Sorry Looking Pelt,tt0217505\nMWkN3akP3cU,1994.0,4,12,2011,Pulp Fiction,Uncomfortable Silence,tt0110912\nc9FCOAEPHHM,1996.0,3,12,2011,From Dusk Till Dawn,The Titty Twister,tt0116367\nYW3MIixEps4,2002.0,10,12,2011,Chicago,Razzle Dazzle,tt0299658\nwtMDZyMGKe0,2002.0,8,12,2011,Chicago,I Can't Do It Alone,tt0299658\nTYmMagkfjfI,2002.0,4,12,2011,Chicago,Cell Block Tango,tt0299658\nyy6j2LUyh24,2002.0,3,12,2011,Chicago,When You're Good to Mama,tt0299658\n-xTty5scUwM,2009.0,5,12,2011,Adventureland,You're a Virgin?,tt1091722\nJXEpQzze8Wo,2009.0,6,12,2011,Adventureland,Lisa P. Asks James Out,tt1091722\nrMWZUV287WA,2009.0,3,12,2011,Adventureland,Boner!,tt1091722\n1c8XLJ9MEhk,2002.0,11,12,2011,Chicago,Tapdancing Around the Witness,tt0299658\nZoAlJJb4aYM,2002.0,7,12,2011,Chicago,Roxie (the Name on Everyone's Lips),tt0299658\nHVyg4MchBYM,2002.0,1,12,2011,Chicago,All That Jazz,tt0299658\nOToWh3nrWn8,2002.0,9,12,2011,Chicago,Mister Cellophane,tt0299658\nZFofgS_iQ0Q,2010.0,3,11,2011,The Switch,Big Baster Insemination,tt0889573\npgET7AHDk6Q,2010.0,11,11,2011,The Switch,Happy Birthday Sebastian,tt0889573\nobxWLczHe0c,2010.0,10,11,2011,The Switch,Will You Marry Me?,tt0889573\n4cAxmhotNbI,2010.0,9,11,2011,The Switch,I'm the Seed Guy,tt0889573\ndxqJ_k_uw5k,2010.0,6,11,2011,The Switch,Hypochondria,tt0889573\nzMgKNI5A9ps,2010.0,7,11,2011,The Switch,I Switched It,tt0889573\n5gkiHLA4ZuY,2010.0,5,11,2011,The Switch,Strange Stubborn Sebastian,tt0889573\nnr8nHHg80CM,2010.0,4,11,2011,The Switch,Switching the Sperm Sample,tt0889573\nCTwZmJronis,2007.0,2,10,2011,Gone Baby Gone,Do You Even Give a F***?,tt0452623\nSDRcCeWRVRA,2010.0,1,11,2011,The Switch,Help Me Find Semen,tt0889573\n_2iIyoxqN54,2007.0,9,10,2011,Gone Baby Gone,You Gotta Take a Side,tt0452623\nMrboCh44XGI,2007.0,10,10,2011,Gone Baby Gone,Keep Your Mouth Shut,tt0452623\nyEQtrdTpJFU,2007.0,7,10,2011,Gone Baby Gone,Something Went In!,tt0452623\n-TWsZukTS4Q,2007.0,8,10,2011,Gone Baby Gone,A Gruesome Discovery,tt0452623\nX-3TvjRKYPI,2007.0,6,10,2011,Gone Baby Gone,To Lose a Child,tt0452623\n8V2XD5XS9Ys,2007.0,5,10,2011,Gone Baby Gone,Big Cheese,tt0452623\njJ4zpJxcw4o,2007.0,4,10,2011,Gone Baby Gone,Promise Me,tt0452623\nar5YGIFyEUY,2007.0,3,10,2011,Gone Baby Gone,Questioning Helene,tt0452623\nZx2SsdhKqbk,2003.0,4,12,2011,Cold Mountain,Ruby's Rules,tt0159365\nuAgvdtpmXBk,2007.0,1,10,2011,Gone Baby Gone,Tension at the Fillmore,tt0452623\nwowXQ9ZrN1w,2001.0,8,10,2011,Spy Kids,Thumb Thumbs and Fooglies,tt0227538\njQKx2XTcd_I,2001.0,6,10,2011,Spy Kids,Robot Doppelgangers,tt0227538\n6rl0rXHWtbQ,2001.0,9,10,2011,Spy Kids,\"You're Strong, Juni!\",tt0227538\nTBKiHfVkYCY,2001.0,5,10,2011,Spy Kids,Floop's Dream,tt0227538\nqFL0bfzriR0,2001.0,2,10,2011,Spy Kids,Floop's Fooglies,tt0227538\nhFJlpOjXf9s,2003.0,9,12,2011,Cold Mountain,Reunited.,tt0159365\nxG7kLQh4Qn8,2003.0,8,12,2011,Cold Mountain,As Good As Dead,tt0159365\noeCRY2mdih8,2003.0,6,12,2011,Cold Mountain,A Good Saw,tt0159365\ndarXVyyQUlc,2003.0,7,12,2011,Cold Mountain,Lonely Widow,tt0159365\nUmNPw-PeG8g,2003.0,5,12,2011,Cold Mountain,Ferry Crossing,tt0159365\njmpuAz59EbQ,2003.0,3,12,2011,Cold Mountain,Ruby Arrives,tt0159365\nbHTWme5Ks9g,2003.0,2,12,2011,Cold Mountain,The Kiss,tt0159365\nt7OQIn7Yuvc,2003.0,1,12,2011,Cold Mountain,The Siege of Petersburg,tt0159365\np8xEvj1w23g,2009.0,7,11,2011,Extract,Kinda Nasty,tt1225822\nNXXS-UOKbao,2009.0,8,11,2011,Extract,Stupid-Ass Brad,tt1225822\ny0jPHehx2EQ,2009.0,5,11,2011,Extract,Man Whore,tt1225822\nd4WJ0CGGXo4,2009.0,11,11,2011,Extract,You Banged the Pool Cleaner,tt1225822\nYVHzS7B1NbI,2009.0,10,11,2011,Extract,Big Gun Joe Adler,tt1225822\nSAPvfHqWNFE,2009.0,6,11,2011,Extract,Bong Hits,tt1225822\nw6CQUyyPvAw,2009.0,9,11,2011,Extract,Dumping the Pool Boy,tt1225822\nm2dMEucbXIA,2009.0,2,11,2011,Extract,Nathan the Neighbor,tt1225822\nVwd5W0M3ZC4,2009.0,4,11,2011,Extract,She's a Tramp...Temp,tt1225822\nTvTdzkWNq28,2009.0,10,12,2011,Adventureland,You Wanna End This?,tt1091722\nBgDmIxfkPFE,2009.0,1,12,2011,Adventureland,You Are Hired,tt1091722\nkYlPy24WJzU,2009.0,7,12,2011,Adventureland,A Date with Lisa P.,tt1091722\nZlGg7QIlGp8,2009.0,11,12,2011,Adventureland,I'm Sorry,tt1091722\nuy3UaHILcig,2010.0,1,-1,2011,The Switch,The Friend Zone,tt0889573\nL25W_b8Or5Y,2010.0,2,11,2011,The Switch,The Buzzkill,tt0889573\neD4l8wpbrRI,1994.0,11,12,2011,Clerks,Words of Wisdom,tt0109445\nKIsAH4rSGNo,1996.0,8,12,2011,Swingers,We Made It,tt0117802\nCaAtavKP0-4,1996.0,5,12,2011,Swingers,Playing Hockey,tt0117802\nZlEXOzC6vqE,1996.0,3,12,2011,Swingers,You're So Money,tt0117802\nQCzH42efniU,1997.0,8,12,2011,Good Will Hunting,Direction & Manipulation,tt0119217\ndxlbeqeGkQ8,1996.0,1,12,2011,Swingers,Double Down,tt0117802\n7gFoHkkCaRE,1994.0,4,12,2011,Clerks,Berserker,tt0109445\n1OQl89ewXvc,1994.0,3,12,2011,Clerks,37 Cocks,tt0109445\n3gHqYddtmNU,1994.0,2,12,2011,Clerks,Cancer Merchant,tt0109445\n2TTfvxYUBug,1994.0,12,12,2011,Clerks,We're So Advanced,tt0109445\n3B4fl7vqi5g,1996.0,2,12,2011,Swingers,Trailer Failure,tt0117802\nTscPOjzk0hI,1996.0,4,12,2011,Swingers,Goofy and Golfing,tt0117802\nWqO6vJTUOkM,1996.0,12,12,2011,Swingers,A Great Vibe,tt0117802\n7RD-I8AOf10,1996.0,10,12,2011,Swingers,Getting Digits,tt0117802\neAvVe92mi5k,1996.0,11,12,2011,Swingers,All Grownsed Up,tt0117802\n0wvJETrNQG8,2007.0,1,11,2011,No Country for Old Men,Desert Chase at Dawn,tt0477348\n3B_rRmkbA9I,2007.0,2,11,2011,No Country for Old Men,\"Call It, Friend-O\",tt0477348\nlkmpm4TeOvE,2007.0,6,11,2011,No Country for Old Men,His Name's Chigurh,tt0477348\ndRQtjVzj1bo,2007.0,7,11,2011,No Country for Old Men,The Nature of Anton Chigurh,tt0477348\nGKt6dCi-LJo,2007.0,4,11,2011,No Country for Old Men,Street Shootout,tt0477348\nC-iQldPiH64,2007.0,9,11,2011,No Country for Old Men,You Don't Have to Do This,tt0477348\nd1U3MyX0pmE,2007.0,8,11,2011,No Country for Old Men,You Can't Stop What's Coming,tt0477348\nGH4IhjtaAUQ,2007.0,11,11,2011,No Country for Old Men,The Ending: Dreams of My Father,tt0477348\n6v6C3lZ9Ic0,1997.0,5,12,2011,Jackie Brown,The Delfonics Scene,tt0119396\nNaf_WiEb9Qs,1996.0,1,12,2011,Trainspotting,Choose Life,tt0117951\nVnAR2qB24yQ,1996.0,4,12,2011,Trainspotting,Sick Boy's Theory of Life,tt0117951\nTzatMfqIf3A,1995.0,7,12,2011,Jackie Brown,Fitting Room Exchange Scene,tt0119396\nACkEugMxFvk,1996.0,7,12,2011,Trainspotting,Renton Falls in Love,tt0117951\nb2B7w4Z3uOI,1996.0,2,12,2011,Trainspotting,The Sick Boy Method,tt0117951\nBsxYfYCbVC0,1996.0,5,12,2011,Trainspotting,Spud's Job Interview,tt0117951\nCi82yWg-9Q0,1996.0,9,12,2011,Trainspotting,Colonized By Wankers,tt0117951\nOaSuSnUJm3E,1996.0,10,12,2011,Trainspotting,Nightmare Baby,tt0117951\nfBqbMZ23n5o,2007.0,3,11,2011,No Country for Old Men,Waiting in a Dark Hotel Room,tt0477348\nEsRoSsauhss,1996.0,6,12,2011,Trainspotting,Begbie's Bar Brawl,tt0117951\nGr6eFXNq5Wc,1997.0,1,12,2011,Jackie Brown,Chicks Who Love Guns Scene,tt0119396\nAwFtpeX3V-g,1996.0,12,12,2011,Trainspotting,Don't Mess With Begbie,tt0117951\nM-FOqHC-G6Q,1997.0,2,12,2011,Jackie Brown,\"I'm Home, I'm High Scene\",tt0119396\n3osli3y94I0,1997.0,3,12,2011,Jackie Brown,One Dirty Ass Trunk Scene,tt0119396\nbXy8AgE7jBo,1997.0,8,12,2011,Jackie Brown,Melanie Provokes Louis Scene,tt0119396\nN7W2F1GcD-A,1997.0,6,12,2011,Jackie Brown,Three Minutes Later Scene,tt0119396\ndw7d707e-EI,1996.0,5,12,2011,From Dusk Till Dawn,Santanico Pandemonium,tt0116367\n3e7wbs_xfas,1997.0,10,12,2011,Jackie Brown,Your Ass Used to Be Beautiful Scene,tt0119396\njj1lH26Ky08,1997.0,12,12,2011,Jackie Brown,I'll Send You a Postcard Scene,tt0119396\n57ge-WVuEY0,1997.0,4,12,2011,Jackie Brown,A Gun Pressed up Against My Dick Scene,tt0119396\nIgzFPOMjiC8,1994.0,12,12,2011,Pulp Fiction,The Wolf,tt0110912\n7_ip79SGVLo,1997.0,11,12,2011,Jackie Brown,Ray's Interrogation Scene,tt0119396\no9guyPNZglE,2007.0,5,11,2011,No Country for Old Men,Pharmacy Explosion,tt0477348\nI42_ESLXfWI,2007.0,10,11,2011,No Country for Old Men,Chigurh's Car Accident,tt0477348\nxFfUAjUMVY8,1996.0,8,12,2011,From Dusk Till Dawn,Richie Rises,tt0116367\n6Pkq_eBHXJ4,1994.0,2,12,2011,Pulp Fiction,Royale With Cheese,tt0110912\nFh-7WQr_daM,1997.0,9,12,2011,Jackie Brown,You Shot Melanie? Scene,tt0119396\nQELMO-GsxVA,2003.0,4,9,2011,A Good Night to Die,A Real Life Gangster!,tt0203536\nrW0sXd9Vl_I,2010.0,6,9,2011,House of Bones,You Can't Escape,tt1334536\n5rEwN8tIRWw,2011.0,4,-1,2011,Harry Potter and the Deathly Hallows: Part 2,Snape's Security Problem,tt1201607\nt15VVQjK16Y,2011.0,6,-1,2011,Harry Potter and the Deathly Hallows: Part 2,You and Whose Army?,tt1201607\n_eZeYq2r3tM,2011.0,2,-1,2011,Harry Potter and the Deathly Hallows: Part 2,Accio Horcrux,tt1201607\nFK-mY_mZAzs,2011.0,1,-1,2011,Harry Potter and the Deathly Hallows: Part 2,The Deathly Hallows Exist,tt1201607\ncacjl7UwuVU,2011.0,3,-1,2011,Harry Potter and the Deathly Hallows: Part 2,He Knows We're Hunting Horcruxes,tt1201607\nP57Z6LOoh_k,2011.0,5,-1,2011,Harry Potter and the Deathly Hallows: Part 2,The Chamber of Secrets,tt1201607\nrhTGE6TQdSc,2011.0,9,-1,2011,Harry Potter and the Deathly Hallows: Part 2,Harry's Sacrifice,tt1201607\nn3SrAOdy-tE,2011.0,7,-1,2011,Harry Potter and the Deathly Hallows: Part 2,The Room of Requirement,tt1201607\nbWr67LK9-Uo,2011.0,8,-1,2011,Harry Potter and the Deathly Hallows: Part 2,Goyle's Fiend Fire,tt1201607\nDk0roE34zLw,2011.0,9,-1,2011,\"Crazy, Stupid, Love.\",A Lesson in Footwear,tt1570728\nh52b1cHKeJg,2011.0,1,-1,2011,Cowboys & Aliens,Aliens Kidnap Maria,tt0409847\n9IzZsjED07A,2011.0,4,-1,2011,Cowboys & Aliens,Ella's Abduction,tt0409847\n29NsPLHISNE,2011.0,5,-1,2011,Cowboys & Aliens,Saloon Brawl,tt0409847\nrQVDhPVyU-o,2011.0,2,-1,2011,Cowboys & Aliens,Aliens Attack the Town,tt0409847\neq3-F_738gA,2011.0,8,-1,2011,\"Crazy, Stupid, Love.\",Rediscover Your Manhood,tt1570728\nRaDlQYFo7eU,2011.0,3,-1,2011,Cowboys & Aliens,Alien Escape,tt0409847\nwALbxbEBLU0,2011.0,7,-1,2011,\"Crazy, Stupid, Love.\",Just a Divorce,tt1570728\nsdc5bkFd2X4,2011.0,5,-1,2011,\"Crazy, Stupid, Love.\",The Karate Kid,tt1570728\npVjh7-4ux7g,2011.0,2,-1,2011,\"Crazy, Stupid, Love.\",I Should Have Fought for You,tt1570728\ndtwfZd9KGpo,2011.0,1,-1,2011,\"Crazy, Stupid, Love.\",Do You Like This Girl?,tt1570728\n4xLmxgd-AYs,2011.0,6,-1,2011,\"Crazy, Stupid, Love.\",Do You Find Me Attractive?,tt1570728\n5e9vyyrP4Zs,2011.0,3,-1,2011,\"Crazy, Stupid, Love.\",I'm R-Rated Sexy,tt1570728\ndQoqvTs4lvg,2011.0,4,-1,2011,\"Crazy, Stupid, Love.\",I Want to Show You Off to My Ex-Wife,tt1570728\nMBjVMydv63A,2010.0,6,-1,2011,The Debt,Why Didn't You Go?,tt1226753\nU2ZOhOknNc8,2003.0,8,9,2011,Scorched,Someone Robbed the Bank,tt0286947\neb6k3SU1T2E,2010.0,8,10,2011,The Locksmith,What Grown Up Loses Their Shoe?,tt1557769\nqlrpmMPkRUM,2010.0,8,-1,2011,The Debt,The Break-In,tt1226753\nm1DIBnkwrp0,2010.0,5,10,2011,Quantum Apocalypse,Can I Kiss You?,tt1265621\nlj59KyjwK3c,2010.0,5,-1,2011,The Debt,Train Track Escape,tt1226753\n5OMaEgJv-KE,2010.0,7,-1,2011,The Debt,I'm Not Capable,tt1226753\nUCskICK1t1Q,2004.0,1,10,2011,Dragon Storm,Pillage the Village,tt0377808\nqowk8kRtc8M,2003.0,8,9,2011,A Good Night to Die,The Gun Salesman,tt0203536\naAtrw4G6Ino,2010.0,1,10,2011,Quantum Apocalypse,\"#2 Pencils, Energy Drinks & Cigarettes\",tt1265621\ntGzM5IFK964,2010.0,8,10,2011,Quantum Apocalypse,The President's Speech,tt1265621\nkVH74eYVAus,2010.0,10,10,2011,Quantum Apocalypse,Quantum Reversal,tt1265621\nxDkGfxCKMKA,2010.0,6,10,2011,Quantum Apocalypse,No Gravity Feat of Strength,tt1265621\nuVZLcXAc5aY,2010.0,9,10,2011,Quantum Apocalypse,The Calculations of an Autistic Savant,tt1265621\nlohIAbjwCBE,2010.0,7,10,2011,Quantum Apocalypse,Tsunami,tt1265621\n9nhbb-EhMYg,2004.0,7,10,2011,Dragon Storm,Forest Ambush,tt0377808\nxdXKP_4pbhM,2004.0,10,10,2011,Dragon Storm,The Final Dragon,tt0377808\ntKOX13gKlf8,2004.0,9,10,2011,Dragon Storm,Moonlight Battle,tt0377808\nlIpUIAl6ltw,2004.0,6,10,2011,Dragon Storm,The First Slay,tt0377808\npwr6OtkCTiw,2004.0,4,10,2011,Dragon Storm,King to King,tt0377808\nndV1BsZ1q88,2004.0,3,10,2011,Dragon Storm,The Huntsman,tt0377808\nkPVaohv2-ZI,2004.0,8,10,2011,Dragon Storm,You Could Have Knocked,tt0377808\nTeL-XU97qyY,2004.0,5,10,2011,Dragon Storm,A Date with a Dragon,tt0377808\nZPKEtczECDk,2004.0,2,10,2011,Dragon Storm,I'm Just the Messenger!,tt0377808\nNr1FMis9MiQ,2003.0,6,9,2011,A Good Night to Die,Childhood Flashes,tt0203536\n3Z2NklQONgc,2003.0,9,9,2011,A Good Night to Die,A Way Out For Both of Us,tt0203536\nPSd562J8ZFU,2003.0,1,9,2011,A Good Night to Die,The Right Tools,tt0203536\nwYBcBpFZYF8,2003.0,7,9,2011,A Good Night to Die,Phone Call During a Mexican Standoff,tt0203536\n6zAcU68P0GM,2003.0,5,9,2011,A Good Night to Die,Van F***ing Halen,tt0203536\n6PJ5GsyOt7M,2010.0,3,10,2011,Quantum Apocalypse,Screwed 100 Percent,tt1265621\nvlynd7r6pLU,2003.0,3,9,2011,A Good Night to Die,The First Contract,tt0203536\nPLOMwlZsSYM,2008.0,4,7,2011,The Way of War,Man Down,tt1133995\n2LuJ9QU-6X8,2007.0,6,9,2011,Redrum,The Voice of a Televangelist,tt0815230\nsmNgpBRjuFs,2003.0,2,9,2011,A Good Night to Die,The Doppelganger Story,tt0203536\nKYQjUOjBx0A,2009.0,8,9,2011,High Kick Girl!,The Art of Self-Defense,tt1406157\nsyi46NOW2Fo,2010.0,2,10,2011,Quantum Apocalypse,I'd Make an Excellent Driver,tt1265621\nZur7hoLFsrw,2001.0,7,8,2011,The Attic Expeditions,You Were Supposed to Get Better,tt0118652\nIip4iU0wuAU,2010.0,4,10,2011,Quantum Apocalypse,Massive Migration,tt1265621\nE3bgtIIw9JM,2001.0,8,8,2011,The Attic Expeditions,Killing Faith,tt0118652\nkpsUc7HBCoQ,2001.0,5,8,2011,The Attic Expeditions,Attic Expedition,tt0118652\nPNzvucMz1t0,2001.0,6,8,2011,The Attic Expeditions,It's All in Your Mind,tt0118652\nJL9cenVTdOk,2003.0,9,9,2011,Scorched,Glorious Birds (Gotta Fly),tt0286947\nFNdcZckBm2Y,2010.0,9,10,2011,The Locksmith,The Last Romantic in New York City,tt1557769\ncz4XgiXhVOo,2001.0,4,8,2011,The Attic Expeditions,Healthy Paranoia,tt0118652\n_U4T80Jv9h4,2001.0,3,8,2011,The Attic Expeditions,Talking to a Lunatic,tt0118652\nK3xHM2hrV6U,2003.0,3,9,2011,Scorched,The First Steps,tt0286947\n3z0t0O6ZIPs,2007.0,1,9,2011,Redrum,You Killed Him!,tt0815230\nU9bgSiDUqtg,2001.0,1,8,2011,The Attic Expeditions,Patient or Doctor?,tt0118652\nDqpPwu8MQ2E,2001.0,2,8,2011,The Attic Expeditions,The House of Love,tt0118652\nCr313z3sY6k,2008.0,6,7,2011,The Way of War,King of Infinite Space,tt1133995\nBU6P24jMDLw,2008.0,5,7,2011,The Way of War,Finish It,tt1133995\nytTswOdw54k,2008.0,3,7,2011,The Way of War,Shotgun in Aisle 9,tt1133995\nRdp3LSS_czA,2008.0,2,7,2011,The Way of War,Czechoslovakia,tt1133995\nsWTHIrA5L1o,2008.0,7,7,2011,The Way of War,Can There Be Heroes?,tt1133995\nHuYvFH-he5Y,2008.0,1,7,2011,The Way of War,I Kill People!,tt1133995\nD_-VW2paVeA,2009.0,9,9,2011,High Kick Girl!,This Is Karate,tt1406157\nKlNmtsP9OHQ,2009.0,4,9,2011,High Kick Girl!,Did That Hurt?,tt1406157\nvQWF7zqozSI,2009.0,3,9,2011,High Kick Girl!,Destroying the Destroyers,tt1406157\nqJodFL7bxXg,2007.0,9,9,2011,Redrum,Lovers' Quarrel,tt0815230\ndHLDknvGAn0,2007.0,7,9,2011,Redrum,Killing Spree,tt0815230\nWcRpuNfGtXw,2007.0,5,9,2011,Redrum,Running Over a Racist,tt0815230\nXyd6zzq97LY,2007.0,8,9,2011,Redrum,Ditching the Detective,tt0815230\nnVkMrqrZKmc,2007.0,4,9,2011,Redrum,Something Fun to Do,tt0815230\nd6mZ4guAJK8,2003.0,4,9,2011,Scorched,The Millionaire Many Times Over,tt0286947\nqntho2Y9bLk,2007.0,2,9,2011,Redrum,Beating the Boss,tt0815230\nGxKkfTq41zc,2007.0,3,9,2011,Redrum,Your Bitch Chose Me,tt0815230\nC4o-zcihGN4,2003.0,6,9,2011,Scorched,Day Jobs,tt0286947\nBnZTj4nADDM,2003.0,7,9,2011,Scorched,The Rungs to Success,tt0286947\nC5-RnOKEZ-4,2003.0,2,9,2011,Scorched,Woods & the Horned Toad,tt0286947\n-2kcu-IpfoY,2003.0,5,9,2011,Scorched,I Eat Little Girls,tt0286947\nwfbdNtfo7NA,2003.0,1,9,2011,Scorched,Sheila's Hiccup Cure,tt0286947\nrx4BjUnPGss,2010.0,10,10,2011,The Locksmith,How Bout Lunch?,tt1557769\noGKr8bdx_5E,2010.0,6,10,2011,The Locksmith,Margo to the Rescue,tt1557769\n_kz7e2_Gxoc,2010.0,5,10,2011,The Locksmith,I Lost the Van,tt1557769\nReAGCpATawk,2010.0,7,10,2011,The Locksmith,Margo and Mike Get Closer,tt1557769\nrRGfnT_LUBQ,2010.0,3,10,2011,The Locksmith,Do You Believe in Love?,tt1557769\nwuw6lFV1rRs,2010.0,1,10,2011,The Locksmith,He's F***ing Somebody Else,tt1557769\n6y0Uh3qzK-g,2010.0,4,10,2011,The Locksmith,You Love Her?,tt1557769\nimnkiyOsu_g,2010.0,2,10,2011,The Locksmith,Talk to Him For Me,tt1557769\nd76CwsWbV2E,2011.0,3,-1,2011,Horrible Bosses,Trim the Fat,tt1499658\nNOMdMmQWgjQ,2011.0,5,-1,2011,Final Destination 5,Death Doesn't Like to be Cheated,tt1622979\n-hqNz9Ve-Hs,2011.0,2,-1,2011,Final Destination 5,Coincidence or Pattern?,tt1622979\ne8i7WCXqJ94,2011.0,4,-1,2011,Final Destination 5,The Coroner,tt1622979\nZxkxWhiTQnc,2005.0,7,10,2011,A Little Trip to Heaven,The House Always Wins,tt0420740\nPAxy4zrKs-Y,2006.0,3,10,2011,The Contract,Risky Rock Climbing,tt0445946\nVwYovLPAX0E,2005.0,1,10,2011,A Little Trip to Heaven,Quality Life Insurance,tt0420740\n_z7q7HzR9G4,2005.0,10,10,2011,A Little Trip to Heaven,A One Million Dollar Payout,tt0420740\nAyNEyYnJ_ds,2005.0,9,10,2011,A Little Trip to Heaven,Stop the Car Now!,tt0420740\nNHoU-7e_tw0,2006.0,6,10,2011,The Contract,Heroes Are Out of Fashion,tt0445946\nlWSPwOvJSNs,2005.0,2,10,2011,A Little Trip to Heaven,The Video Speech,tt0420740\nKwmiEuEoY6o,2006.0,2,10,2011,The Contract,My Prisoner,tt0445946\nw42uRnJwoIc,2005.0,6,10,2011,A Little Trip to Heaven,One Last Con,tt0420740\nDiCQwUtulqs,2005.0,4,10,2011,A Little Trip to Heaven,Burned to Death,tt0420740\ndS260nXz5d8,2006.0,4,10,2011,The Contract,Tough for an Old Guy,tt0445946\nTiupPnshH-o,2006.0,5,10,2011,The Contract,\"Wow, the FBI\",tt0445946\nd51kNuh6K-U,2005.0,5,10,2011,A Little Trip to Heaven,\"God in Heaven, Devil in the Ground\",tt0420740\n7gdtw-l0GqQ,2007.0,5,9,2011,The Ferryman,Time's Up,tt0808265\n3cmp6g1fbhs,2005.0,3,10,2011,A Little Trip to Heaven,The Coroner,tt0420740\neltUh-VMAKI,2002.0,4,10,2011,Evil Alien Conquerors,Beheading a Cow,tt0305556\nTxhfeY6M8lQ,2006.0,1,10,2011,The Contract,Fatal Road Block,tt0445946\nDEJ_XECWRcs,2006.0,7,10,2011,The Contract,Tricking the Troopers,tt0445946\n1iJNC4ty1Q4,2010.0,3,10,2011,2001 Maniacs: Field of Screams,Break the Clam,tt0858411\n8NzL8n2GEC0,2010.0,1,10,2011,2001 Maniacs: Field of Screams,Bulls-Eye Thrill Ride,tt0858411\n2mo6oM4vnWY,2002.0,2,10,2011,Evil Alien Conquerors,Oh Rabirr Oh Rabirr,tt0305556\n0huG2wHLCGA,2002.0,1,10,2011,Evil Alien Conquerors,Planet Kabijj,tt0305556\nNYefwzfGRWA,2010.0,2,10,2011,2001 Maniacs: Field of Screams,Road Rascals,tt0858411\nPnpgz413Wpw,2002.0,6,10,2011,The Circuit 2: The Final Punch,Pike Wins Again,tt0321704\nMsMsnCypMuU,2002.0,10,10,2011,The Circuit 2: The Final Punch,How Does It Feel?,tt0321704\n_ZmzCV8muyU,2010.0,5,10,2011,2001 Maniacs: Field of Screams,\"Buck-Man, Buck-Man, Buck-Man\",tt0858411\nYPmYDxnmGnM,2010.0,8,10,2011,2001 Maniacs: Field of Screams,Abraham & Mary Lincoln,tt0858411\n5iKhN22wsmI,2010.0,7,10,2011,2001 Maniacs: Field of Screams,Cannibal Rock,tt0858411\n1rHtYKAv7Vo,2010.0,9,10,2011,2001 Maniacs: Field of Screams,Feast Cannibal Style,tt0858411\navB-gC3PO98,2002.0,9,10,2011,Evil Alien Conquerors,Croker in the Kitchen,tt0305556\n58uMOyQcvms,2002.0,8,10,2011,Evil Alien Conquerors,Play The Supertramp!,tt0305556\nTFmga8EIQpo,2002.0,4,10,2011,The Circuit 2: The Final Punch,\"In Here, I Am God\",tt0321704\n8-TDW9Cm3TA,2002.0,2,10,2011,The Circuit 2: The Final Punch,Nice Kick,tt0321704\nd1VyT4mI-8g,2002.0,1,10,2011,The Circuit 2: The Final Punch,Late Night Brawl,tt0321704\nyr8bdlI4Moc,2002.0,3,8,2011,The Circuit,I Want Him Alive,tt0309452\nPaMAFPMi6cI,2004.0,2,10,2011,Freeze Frame,Darkness Invisible,tt0363095\nKwsyI7nWrG0,2002.0,9,10,2011,The Circuit 2: The Final Punch,Dirk vs. Pike,tt0321704\nArXhfCr-vb8,2002.0,7,10,2011,The Circuit 2: The Final Punch,Blood Lust,tt0321704\nfw_IEdXIuYU,2004.0,1,10,2011,Freeze Frame,Things to Remember,tt0363095\nFIKDkbVveeo,2004.0,3,10,2011,Freeze Frame,Crime Wave Reconstruction,tt0363095\nt3TniZu-fk8,2004.0,5,10,2011,Freeze Frame,A Tale of Two Tapes,tt0363095\nMSIAnJPZeaY,2004.0,6,10,2011,Freeze Frame,No Cure Without Confrontation,tt0363095\nV5Rl2bVxD2o,2004.0,10,10,2011,Freeze Frame,Webcam Murder Suicide,tt0363095\n-MG8-wCvzpE,2004.0,4,10,2011,Freeze Frame,You Know I'm Innocent!,tt0363095\nGNw7aQdAfcA,2001.0,3,10,2011,Epoch,A Picture is Worth a Thousand Words,tt0233657\neQhNOc_Bo78,2004.0,7,10,2011,Freeze Frame,The Truth Revealed,tt0363095\nkqEj45pk6aE,2001.0,4,10,2011,Epoch,A Divine Monolith,tt0233657\ncHJd_bAK9C0,2001.0,1,10,2011,Epoch,Classified Government Meeting,tt0233657\nkJ8_sMrSxns,2001.0,5,10,2011,Epoch,The Solar System is the Key,tt0233657\nKBfD-4BCMR0,2009.0,3,10,2011,Cyborg Conquest,Me & Bobby DuPree,tt1328910\n_cYlrtZSG-c,2001.0,9,10,2011,Epoch,Terraforming,tt0233657\nWuwev3p4rKs,2009.0,4,10,2011,Cyborg Conquest,Lady is a Force of Nature,tt1328910\nr4IlzPnP7ew,2003.0,7,10,2011,Epoch: Evolution,\"When It Rains, It Pours\",tt0374286\nb2IWTMJV2cE,2009.0,7,10,2011,Cyborg Conquest,Who's Who?,tt1328910\nYNJflokcnFI,2003.0,9,10,2011,Epoch: Evolution,One From Within,tt0374286\npDzkhDjTY64,2005.0,9,10,2011,Animal,Smart vs. Tough,tt0437072\nf7q5ce9Jwgw,2011.0,6,-1,2011,Shark Night 3D,We're Here!,tt1633356\nCY1lL585Gjk,2011.0,5,-1,2011,Shark Night 3D,Room For One More?,tt1633356\nmbWtLBLt1ro,2011.0,7,-1,2011,Shark Night 3D,Attack in the Lake,tt1633356\nqIis4kiGo6Q,2011.0,2,-1,2011,Shark Night 3D,Swim Maya!,tt1633356\ndkCUjz7I36M,2011.0,4,-1,2011,Shark Night 3D,Caged In,tt1633356\nPH5pgpWY1uE,2011.0,3,-1,2011,Shark Night 3D,Flesh and Blubber,tt1633356\nFPPdbapD_E0,2011.0,1,-1,2011,Shark Night 3D,Wakeboarding,tt1633356\nwmFhHU38IhE,2011.0,5,-1,2011,One Day,A Writer in Paris,tt1563738\nk6TPsaQRQus,2011.0,4,-1,2011,One Day,An Orgy Won't Keep You Warm At Night,tt1563738\n6-NRVtIrrEs,2011.0,2,-1,2011,One Day,I Had a Crush On You,tt1563738\nqbYHRU551nI,2011.0,3,-1,2011,One Day,I Think About You,tt1563738\nVsLlPXjtnVs,2011.0,1,-1,2011,One Day,We've Never Met,tt1563738\nba-U_sXRFqg,2011.0,1,-1,2011,Final Destination 5,Kill or be Killed,tt1622979\ns5D8jf0k_1k,2011.0,3,-1,2011,Final Destination 5,Laser Eye Surgery,tt1622979\nna_Fzn77bBA,2005.0,4,5,2011,A Get2Gether,Rooftop High,tt0493129\nm2Bf7Viheuw,2005.0,5,5,2011,A Get2Gether,Derrick Gets Dumped,tt0493129\nJ8tCOzttKMA,2005.0,3,5,2011,A Get2Gether,Truth or Dare,tt0493129\nH6NlpE8B0b4,2005.0,2,5,2011,A Get2Gether,It's Time,tt0493129\n0xW-3QH_WGU,2011.0,8,8,2011,Sacrifice,Prayer 11:32,tt1630564\n4pVd11CW1qI,2005.0,1,5,2011,A Get2Gether,\"Big Dick, Hairy Nuts\",tt0493129\nKxMHqnKgF7w,2011.0,7,8,2011,Sacrifice,A Dead Man,tt1630564\nPCNdV_Du58c,2011.0,6,8,2011,Sacrifice,Let's Go Clubbing,tt1630564\nLEwJNM-Oj7s,2011.0,4,8,2011,Sacrifice,He Cut My Face,tt1630564\n2Gd39qysshg,2011.0,3,8,2011,Sacrifice,Who is This Guy?!,tt1630564\n1DA-nWsGNTk,2011.0,5,8,2011,Sacrifice,Virgin Heroin,tt1630564\n2x7aG-JRlCE,2011.0,1,8,2011,Sacrifice,Ice Check,tt1630564\nIfJuol_Q-jw,2011.0,2,8,2011,Sacrifice,John & Father Porter,tt1630564\nortccjAUofU,2009.0,10,10,2011,Wolvesbayne,Back to the Depths of Hell,tt1266121\nzip5M8y42fk,2009.0,9,10,2011,Wolvesbayne,Release Them,tt1266121\n9d6eWkYfjsk,2010.0,9,9,2011,House of Bones,The Foundation for Change,tt1334536\nLFwCy1HuMCY,2003.0,9,9,2011,Dragon Fighter,Dragon Slayer,tt0312640\nZiyuOaPD0eM,2003.0,8,9,2011,Dragon Fighter,Air Combat,tt0312640\n89PPmxL-EVE,2010.0,8,9,2011,House of Bones,The Key,tt1334536\nfn58yij7rxw,2009.0,8,10,2011,Wolvesbayne,\"Immune, Not Immortal\",tt1266121\nUUiiyiX_STo,2009.0,7,10,2011,Wolvesbayne,Hey Toots,tt1266121\nVlS-HHdayMU,2003.0,7,9,2011,Dragon Fighter,Blow This Thing Off My Ass!,tt0312640\nQEcxsTjlIJ4,2003.0,6,9,2011,Dragon Fighter,Dragon Documents,tt0312640\nxdNcrmG6P_Q,2010.0,7,9,2011,House of Bones,The Attic,tt1334536\nzJuMyRu4kkU,2009.0,6,10,2011,Wolvesbayne,Vampire Hunters,tt1266121\nTQezxXB6TYc,2009.0,5,10,2011,Wolvesbayne,Our Kryptonite,tt1266121\nG1JAVVZ_fMA,2003.0,5,9,2011,Dragon Fighter,Tasty Morsel,tt0312640\nS7I9LpgwS1w,2010.0,5,9,2011,House of Bones,The Hairball,tt1334536\neWjLy8S5uyk,2010.0,4,9,2011,House of Bones,A Malevolent House,tt1334536\nyHR-TMj88tc,2010.0,3,9,2011,House of Bones,Sexy Surprise,tt1334536\nTI5XVZEwtiM,2009.0,4,10,2011,Wolvesbayne,\"Relaxation, Meditation, Control\",tt1266121\nHia2AZPMH2Y,2010.0,2,9,2011,House of Bones,The P.A. Life,tt1334536\n6EY8a5WbtLM,2010.0,1,9,2011,House of Bones,Babe's Baseball,tt1334536\ngkEZQDlj6OQ,2003.0,4,9,2011,Dragon Fighter,Breath of Fire,tt0312640\no9W8bxAxvvg,2009.0,3,10,2011,Wolvesbayne,This Is Gonna Hurt,tt1266121\nN9vKzv8jLw8,2003.0,3,9,2011,Dragon Fighter,The Lab Goes to Hell,tt0312640\npQEsnpbMwEM,2009.0,2,10,2011,Wolvesbayne,Transformation,tt1266121\ngDymr00KVAg,2009.0,1,10,2011,Wolvesbayne,Roadside Werewolf Attack,tt1266121\nEQP-k2x6Yzo,2009.0,10,10,2011,Cyborg Conquest,The Question of Freedom,tt1328910\nkBt6bwRR7ls,2003.0,2,9,2011,Dragon Fighter,Cloning a Dragon,tt0312640\nrnm2leIC_5I,2003.0,1,9,2011,Dragon Fighter,Dragon's Lair,tt0312640\nMGsGQAu3aNM,2009.0,2,10,2011,Cyborg Conquest,Getaway,tt1328910\n3WCcFVnEKh0,2009.0,1,10,2011,Cyborg Conquest,They're Robots! Waste Them,tt1328910\nGbLymMUHlXU,2009.0,9,10,2011,Cyborg Conquest,\"Not a Villain, But a Hero\",tt1328910\nxs1kML847Ww,2009.0,8,10,2011,Cyborg Conquest,A Hell for Robots,tt1328910\nws9--JaXKcg,2009.0,6,10,2011,Cyborg Conquest,Supermarket Shoot-Out,tt1328910\nb0ydPnxtSKY,2003.0,10,10,2011,Epoch: Evolution,Ascension,tt0374286\nQv3wA3MJnJk,2007.0,8,8,2011,Dead Heist,A Horde of Zombies,tt0457319\n9QIPuX7vf1U,2009.0,5,10,2011,Cyborg Conquest,Gator,tt1328910\nLPPEPzpSzwM,2007.0,7,8,2011,Dead Heist,Elevator Surprise,tt0457319\nuC74Ix65Aas,2003.0,8,10,2011,Epoch: Evolution,Parachuting Onto the Torus,tt0374286\n28wFNLwZpAU,2007.0,6,8,2011,Dead Heist,No Disrespect,tt0457319\nbqOMJ-Qrg1Q,2003.0,6,10,2011,Epoch: Evolution,Unidentified Guests,tt0374286\nMteufVA29iQ,2003.0,5,10,2011,Epoch: Evolution,Into the Breach Once More,tt0374286\n2X_LdH71B6I,2003.0,4,10,2011,Epoch: Evolution,The Genesis Coalition,tt0374286\nSNdc9-hv8co,2003.0,3,10,2011,Epoch: Evolution,Another Monolith,tt0374286\nQwQ7gl5N41I,2007.0,5,8,2011,Dead Heist,The Zombies Arrive,tt0457319\nxGvLjaA4Zek,2003.0,2,10,2011,Epoch: Evolution,Missile Command Fail,tt0374286\nJR_yxYYp8NM,2007.0,4,8,2011,Dead Heist,Bank Heist,tt0457319\ndwIgQqWOKCg,2003.0,1,10,2011,Epoch: Evolution,Is It Ever Going to Stop?,tt0374286\nF_qsH2om2VI,2001.0,10,10,2011,Epoch,An Immaculate Conception,tt0233657\nD0Led4y5r3I,2007.0,3,8,2011,Dead Heist,What Do You Hunt?,tt0457319\nb-4JObBlWC0,2007.0,2,8,2011,Dead Heist,A Business Opportunity,tt0457319\n-3A2TNWXDXA,2001.0,8,10,2011,Epoch,A Diplomatic Situation,tt0233657\n70ut3wLkQmo,2001.0,7,10,2011,Epoch,God in the Machine,tt0233657\ngPbn1uWQywg,2001.0,6,10,2011,Epoch,Entity Defenses,tt0233657\nzWjlFN5hO6I,2003.0,4,4,2011,Mayor of the Sunset Strip,Rodney's Just a Friend,tt0230512\nxA57pKdLCbM,2007.0,1,8,2011,Dead Heist,Never Ask a Zombie for Directions,tt0457319\n2HOwFvWBZ3A,2001.0,2,10,2011,Epoch,Adios Pendejos!,tt0233657\nw4iERLpYmzU,2003.0,3,4,2011,Mayor of the Sunset Strip,Fight with DJ Chris Carter,tt0230512\naLVn2GWY-Ec,2005.0,5,8,2011,Back in the Day,Coming For You,tt0380201\nlJxNtmP2Nas,2005.0,3,8,2011,Back in the Day,Tell Me the Truth,tt0380201\nrfYZT8xR1Gs,2005.0,8,8,2011,Back in the Day,That's What I'm Talkin' Bout,tt0380201\nQN7he2e5qq0,2005.0,7,8,2011,Back in the Day,It's What You Didn't Do,tt0380201\ni27WEap2cLA,2003.0,2,4,2011,Mayor of the Sunset Strip,Worries With the Film,tt0230512\nthG4yP1OdgU,2003.0,1,4,2011,Mayor of the Sunset Strip,Visiting the Family,tt0230512\nLI-SbYy8hMo,2005.0,5,10,2011,Animal,An Opportunity,tt0437072\ndO7tQ5fXGCY,2005.0,8,10,2011,Animal,A Business Proposition,tt0437072\nq4lM2MGiS20,2005.0,1,10,2011,Animal,Smells Like Death,tt0437072\nPgZp8EEzrJc,2005.0,7,10,2011,Animal,Welcome Home Party,tt0437072\ndLcQb08EVvI,2005.0,2,10,2011,Animal,The Cage,tt0437072\nUT2YmXPRg6c,2005.0,3,10,2011,Animal,Man Enough,tt0437072\nuBIAcBKvF28,2006.0,8,8,2011,Subject Two,\"Congratulations, You're Dead\",tt0492912\nCJHV8XKftbc,2006.0,7,8,2011,Subject Two,Escape Attempt,tt0492912\nvm4p1tZAmEw,2005.0,4,10,2011,Animal,The First Book I Ever Read,tt0437072\nnVwOCEibZu0,2006.0,5,8,2011,Subject Two,The Hunter,tt0492912\nUf0P-Ezxg5Y,2005.0,6,10,2011,Animal,Break the Chain,tt0437072\n0DTD2i-pMl0,2006.0,6,8,2011,Subject Two,No Loose Ends,tt0492912\nPmoU153vF3U,2005.0,10,10,2011,Animal,I Don't Know How to Love,tt0437072\n4p7hZ2WJXHs,2006.0,4,8,2011,Subject Two,Kill Me!,tt0492912\n_dE4g2x-Ing,2006.0,2,8,2011,Subject Two,Resuscitation,tt0492912\nLFinvO6-_T0,2006.0,3,8,2011,Subject Two,You Have No Idea,tt0492912\n4eLsFtya4Gk,2006.0,1,8,2011,Subject Two,Cryonics,tt0492912\nU72Ap0dAveE,2010.0,9,9,2011,As Good as Dead,We're Gonna Miss Her Somethin' Awful,tt1294136\nweUbXakK6Fw,2010.0,7,9,2011,As Good as Dead,The Dirty Work,tt1294136\nmeBbBnp3FcA,2010.0,8,9,2011,As Good as Dead,I'm Her Daddy,tt1294136\ntHdqS2Vda8Q,2010.0,5,9,2011,As Good as Dead,Eye Slice,tt1294136\noj0LXmHzUoM,2010.0,6,9,2011,As Good as Dead,Aaron Drugs Amy,tt1294136\n4kQb8kUDq5o,2010.0,4,9,2011,As Good as Dead,Aaron Captures Amy,tt1294136\nXeZkZIt0zqA,2010.0,3,9,2011,As Good as Dead,Breaking Out of the Fridge,tt1294136\nhBpNWBQZK4s,2010.0,2,9,2011,As Good as Dead,Insensitive Jokes,tt1294136\nK61WsiAs4rE,2010.0,1,9,2011,As Good as Dead,Help!,tt1294136\nJe8n23QMWkg,2002.0,6,10,2011,Evil Alien Conquerors,Fondling Hairy Feet,tt0305556\nlWvb6U-KZds,2006.0,9,10,2011,The Contract,Cabin Invasion,tt0445946\nQiymXl8HTlA,2007.0,8,9,2011,The Ferryman,Come and Get It,tt0808265\nSd6LBK8KhuQ,2006.0,8,10,2011,The Contract,Don't Miss,tt0445946\nof7ZP6vXAPo,2002.0,5,10,2011,Evil Alien Conquerors,Penny & Jan,tt0305556\nuFPINtBli58,2002.0,3,10,2011,Evil Alien Conquerors,Weed Whacking Tools,tt0305556\nP8JnW9dWBRo,2007.0,7,9,2011,The Ferryman,Switching Bodies,tt0808265\nbvRS9b2nhh4,2011.0,6,-1,2011,Horrible Bosses,What's the Plan?,tt1499658\nvKZhOw3Feo4,2011.0,4,-1,2011,Horrible Bosses,Finding a Hitman Online,tt1499658\nnsQtI33UbGI,2011.0,5,-1,2011,Horrible Bosses,Why Don't You Kill Each Other's Bosses?,tt1499658\nARdTVbhhy84,2011.0,2,-1,2011,Horrible Bosses,You Call Your Grandmother Gam-Gam?,tt1499658\nIToYFpzH0_U,2011.0,1,-1,2011,Horrible Bosses,I'm a Squirter,tt1499658\n_wAG98wcrYc,1998.0,7,8,2011,Shakespeare in Love,Viola's Fate,tt0138097\nXrxIR2uja8w,1998.0,8,8,2011,Shakespeare in Love,Write Me Well,tt0138097\no_KXbKa2crI,1998.0,6,8,2011,Shakespeare in Love,A Woman in a Man's Profession,tt0138097\n827EAYtM6XQ,1998.0,5,8,2011,Shakespeare in Love,A New Juliet,tt0138097\nWfUTDlmLMFk,1998.0,4,8,2011,Shakespeare in Love,The Theater Is Closed,tt0138097\n0_avQPM3L90,1998.0,3,8,2011,Shakespeare in Love,Viola Meets the Queen,tt0138097\nifjmJHoUzc8,1998.0,1,8,2011,Shakespeare in Love,Viola Is Thomas,tt0138097\nOJZhDHdlk3w,1998.0,2,8,2011,Shakespeare in Love,It Is a New World,tt0138097\nqF0CMv413PA,2011.0,5,-1,2011,Don't Be Afraid of the Dark,Bright Lights,tt1270761\nalQVZ9YxUJw,2011.0,4,-1,2011,Don't Be Afraid of the Dark,Set Us Free,tt1270761\nF3FrLQdbyKk,2011.0,3,-1,2011,Don't Be Afraid of the Dark,There's a Door Here,tt1270761\nazYL1oPxMGg,2011.0,2,-1,2011,Don't Be Afraid of the Dark,It's Not Safe Back Here,tt1270761\n6xU4PZNn6RQ,2011.0,1,-1,2011,Don't Be Afraid of the Dark,Take a Look at the House,tt1270761\nZK4Ly7Ij81o,2005.0,4,8,2011,Back in the Day,An Eyewitness,tt0380201\ngfXVOCNMpMQ,2005.0,2,8,2011,Back in the Day,Reggie Meets Alicia,tt0380201\nAhHM_fCLsIY,2005.0,6,8,2011,Back in the Day,A Snitch,tt0380201\nF3peN7bOfOo,2005.0,1,8,2011,Back in the Day,No Turning Back,tt0380201\n6Bg4HfBsmAU,2004.0,8,10,2011,Freeze Frame,This Is Deliberate,tt0363095\n0vI6TtIP4t0,2004.0,9,10,2011,Freeze Frame,You Know You Want To,tt0363095\nObf7CnOmBak,2002.0,8,10,2011,The Circuit 2: The Final Punch,The Beach Battle Begins,tt0321704\nkEwJ2uBX7sQ,2002.0,5,10,2011,The Circuit 2: The Final Punch,Did I Pass the Test?,tt0321704\nmro3v8ZZA_E,2002.0,3,10,2011,The Circuit 2: The Final Punch,Preparing for Prison,tt0321704\nHfoa97N4-4w,2002.0,7,8,2011,The Circuit,Climbing the Circuit,tt0309452\n7GF9Ic-yNcc,2002.0,8,8,2011,The Circuit,Double Trouble,tt0309452\nRXvm3oOIG8k,2002.0,6,8,2011,The Circuit,Gate Crashing,tt0309452\ndujvrGLRTlI,2002.0,2,8,2011,The Circuit,Dirk Still Knows How to Fight,tt0309452\nsPdJwBfuEDc,2002.0,4,8,2011,The Circuit,\"One Blow, One Knockout\",tt0309452\neJ6y8TeIeAM,2002.0,5,8,2011,The Circuit,Lenny Loses His Life,tt0309452\nS0IGwZy9_xg,2002.0,10,10,2011,Evil Alien Conquerors,Belly Twisting with Croker,tt0305556\nWyW86PD74dA,2002.0,1,8,2011,The Circuit,Paying Off a Debt,tt0309452\nROUu-unQieo,2002.0,7,10,2011,Evil Alien Conquerors,Learning to Fly,tt0305556\nc1HS49PeMUM,2010.0,10,10,2011,2001 Maniacs: Field of Screams,Damn Yankees,tt0858411\n_zlm3MXTK-0,2010.0,4,10,2011,2001 Maniacs: Field of Screams,Say Cheese!,tt0858411\nY9ewiC2bykI,2010.0,6,10,2011,2001 Maniacs: Field of Screams,Broke Back Mountain,tt0858411\n5e0cFUGyfzI,2005.0,3,6,2011,Shooting Gallery,The Best Hustlers of Them All,tt0339526\nDwDzyVvtR9M,2005.0,2,6,2011,Shooting Gallery,Come With Me,tt0339526\nTn6y5TARbnQ,2005.0,4,6,2011,Shooting Gallery,One Shot,tt0339526\nl_4wAj6Kx-k,2005.0,5,6,2011,Shooting Gallery,\"Kiss My Black, Unruly A**\",tt0339526\nh8QQbFolJZI,2005.0,1,6,2011,Shooting Gallery,Jezebel and Jericho Get Intimate,tt0339526\nOkR9Bp19nKs,2006.0,10,10,2011,The Contract,Frank is Targeted,tt0445946\nyjm6WiV1bBo,2007.0,9,9,2011,The Ferryman,Gets Paid,tt0808265\nIZ3BR0J5vvw,2005.0,6,6,2011,Shooting Gallery,Jezebel Threatens Mortensen,tt0339526\n7Lsh9PH4cn0,2007.0,6,9,2011,The Ferryman,Deadly Love Triangle,tt0808265\nA7ZmPaAVJgo,2007.0,6,6,2011,The Perfect Witness,Momma's Boy,tt0489318\n4X5-zcyQc7U,2005.0,8,10,2011,A Little Trip to Heaven,Let Your Son Go,tt0420740\ny59dykC47mc,2007.0,1,9,2011,The Ferryman,Shark Surprise,tt0808265\nAgbKPzg3rAk,2007.0,4,9,2011,The Ferryman,Covered in Blood,tt0808265\nNXRbXCIjxR0,2007.0,3,9,2011,The Ferryman,Knife in the Chest,tt0808265\nEATS70yNA0E,2007.0,2,9,2011,The Ferryman,Bad Omen,tt0808265\nBxQMT4R51Dk,2003.0,5,12,2011,Intolerable Cruelty,That Silly Man,tt0138524\nusUO449hUXQ,1995.0,5,10,2011,Fist of the North Star,It Ain't Easy Being Sleazy,tt0113074\nQ-BviNtL0PQ,2008.0,3,8,2011,It's Alive,Nasty Scar,tt1172060\nYzu5yxVl3yQ,2008.0,2,8,2011,It's Alive,Deadly Delivery,tt1172060\n6EP_KsI8k8w,2009.0,9,10,2011,The Sanctuary,The Battle Begins,tt1161449\nDwrmKYIuYi0,2009.0,8,10,2011,The Sanctuary,Double Duel,tt1161449\nxUllXfNznIY,2009.0,10,10,2011,The Sanctuary,Back from the Dead,tt1161449\nO0gse4WDTrY,2009.0,7,10,2011,The Sanctuary,Three Against One,tt1161449\nVr9OaXD19JY,2009.0,6,10,2011,The Sanctuary,Hitching a Ride,tt1161449\njuik-nkFIoU,2009.0,4,10,2011,The Sanctuary,\"Shoot, Drop and Roll\",tt1161449\n6kw3u6O_SxE,2009.0,3,10,2011,The Sanctuary,Krit Takes a Beating,tt1161449\nuaSkuUzEuq4,2009.0,1,10,2011,The Sanctuary,Fight for the Royal Antiques,tt1161449\nVwvlEZJMbg0,2009.0,2,10,2011,The Sanctuary,Junkyard Fight,tt1161449\nTVfHmkZlp3s,2009.0,5,10,2011,The Sanctuary,Deadly Surprise,tt1161449\nqhc9YD3ahAs,2010.0,10,10,2011,Once Fallen,Sins of the Father,tt1087524\nY1Q93Zi9_kc,2010.0,9,10,2011,Once Fallen,Superheroes,tt1087524\nJUbVxse8ZrQ,2010.0,8,10,2011,Once Fallen,Where's My Son?,tt1087524\nDedlZ0Es_dU,2010.0,6,10,2011,Once Fallen,Back to the Drawing Board,tt1087524\nsLB6_-ZNR6E,2010.0,7,10,2011,Once Fallen,Blood Trail in the Tall Grass,tt1087524\n0woPxIfjVTk,2010.0,5,10,2011,Once Fallen,Aunt Rose,tt1087524\nrf5MnH9pG_s,2010.0,1,10,2011,Once Fallen,Father to Father,tt1087524\ncbulyV4O3qc,2010.0,4,10,2011,Once Fallen,Eddie the Aging Hipster,tt1087524\nn7DQNB_OKZs,2010.0,2,10,2011,Once Fallen,Rath's Wrath,tt1087524\nQxFgIsrvJR4,2010.0,3,10,2011,Once Fallen,Your Mom is a Real Bitch,tt1087524\na50LKwRt5CU,2010.0,7,9,2011,King of the Avenue,The Floodgates of Hell,tt0770778\nV2j9MRkQE78,2010.0,5,9,2011,King of the Avenue,A Demon Straight From Hell,tt0770778\n4xLBhHfpKTU,2010.0,6,9,2011,King of the Avenue,Evil S***,tt0770778\nf0KpM0-h1CI,2010.0,2,9,2011,King of the Avenue,Silencing a Traitor,tt0770778\noiYIVQm-qvY,2010.0,4,9,2011,King of the Avenue,The Devil's Deal,tt0770778\nAHzW_z8rUyQ,2010.0,3,9,2011,King of the Avenue,A Really Bad Dream,tt0770778\nmXEgUS1i_m4,2010.0,1,9,2011,King of the Avenue,\"Daddy, Do You Kill People?\",tt0770778\nCOsMa1MQIVM,2010.0,9,9,2011,King of the Avenue,She Knows Everything,tt0770778\nn-WzTlw0scA,2010.0,8,9,2011,King of the Avenue,I Like to F*** With People,tt0770778\nyX0WnX27tJw,2008.0,8,8,2011,It's Alive,Daniel vs. Daddy,tt1172060\nBmxi1VgTb-I,2008.0,6,8,2011,It's Alive,Marnie's Murder,tt1172060\nX-RU-b4OyuY,2008.0,7,8,2011,It's Alive,Bodies in the Basement,tt1172060\nQynjN9Nzr7E,2008.0,5,8,2011,It's Alive,Baby on Board,tt1172060\nNCCUGkrIfkQ,2008.0,4,8,2011,It's Alive,Baby's First Bird,tt1172060\nzqIOu4ki5-Q,2008.0,1,8,2011,It's Alive,Labor Pains,tt1172060\nmbGDV3lPib0,1999.0,5,6,2011,Godmoney,Please Don't Kill Me,tt0119208\n_yqWh3OBDEE,1999.0,6,6,2011,Godmoney,Give Me the Gun,tt0119208\n5dBd4x1yxaU,1999.0,3,6,2011,Godmoney,The Power Gets Me Off,tt0119208\n-UEeG5IIQK0,1999.0,4,6,2011,Godmoney,Can You Pull the Trigger?,tt0119208\nuEoCU5cuQA0,1999.0,1,6,2011,Godmoney,I'm Clean Now,tt0119208\ndyVMPRxN0FQ,1999.0,2,6,2011,Godmoney,Nathan Robs a House,tt0119208\nbwcLwZQGCAE,2009.0,10,10,2011,Double Identity,Dr. Nicholas Saves Katrine,tt1290400\ngywGZDlDv7U,2009.0,7,10,2011,Double Identity,Jump When I Say,tt1290400\nnH51jEGD7G8,2009.0,9,10,2011,Double Identity,Diamond Trade Gone Bad,tt1290400\nsSkwCIpxqxU,2009.0,6,10,2011,Double Identity,I Like the Name Olivia,tt1290400\nFxCpDJ1ZAo0,2009.0,8,10,2011,Double Identity,A Helping Stranger,tt1290400\nNodMkxK5ndw,2009.0,5,10,2011,Double Identity,Train Station Escape,tt1290400\n29vmOrsOjvM,2009.0,4,10,2011,Double Identity,A Rock Knockout,tt1290400\nmYqUdiWcOok,2009.0,3,10,2011,Double Identity,Bury Him,tt1290400\nSakCFLhbAJA,2008.0,2,9,2011,Cyborg Soldier,I.S.A.A.C.,tt1151928\ntWmPkmMO-mo,2009.0,2,10,2011,Double Identity,A Proper Introduction,tt1290400\njfVzY0OTW1c,2009.0,1,10,2011,Double Identity,Out to Save the World Pick-Up Routine,tt1290400\nX0NIR5-QiAM,2008.0,3,9,2011,Cyborg Soldier,A Cyborg Savior,tt1151928\nBcRIvgk2USU,2008.0,9,9,2011,Cyborg Soldier,Human Nature,tt1151928\nl4srSgqgncU,2008.0,6,9,2011,Cyborg Soldier,Nice to Meet You,tt1151928\nB64yKhFe5Lw,2008.0,1,9,2011,Cyborg Soldier,I Will Not Comply,tt1151928\nB00qOyB7CuE,2007.0,9,10,2011,Brave,Two Against One,tt0476964\n2bMvW5QUMYk,2008.0,5,9,2011,Cyborg Soldier,No Questions,tt1151928\nLZo51T6e928,2008.0,4,9,2011,Cyborg Soldier,Dead Drop,tt1151928\nvpJbP-sA1gg,2008.0,8,9,2011,Cyborg Soldier,I'm Going to Fry Your Brain,tt1151928\no6bYgD2JDus,2007.0,10,10,2011,Brave,Final Showdown,tt0476964\ngiXrOAZtjaE,2007.0,8,10,2011,Brave,Deadly Weapons,tt0476964\nE2kt9XttAzU,2008.0,7,9,2011,Cyborg Soldier,iStab,tt1151928\nTURTkb6N_FA,2007.0,7,10,2011,Brave,Brothers At War,tt0476964\nhBlhWP2N4j4,2007.0,6,10,2011,Brave,Chase at the Docks,tt0476964\nZr0xGlPjTHA,2007.0,5,10,2011,Brave,Rooftop Dead End,tt0476964\nqCpSqCKBM-M,2007.0,4,10,2011,Brave,Army of One,tt0476964\n1JyApnR4o9U,2007.0,3,10,2011,Brave,Brother Bomb,tt0476964\nylGIAp_-JK8,2007.0,2,10,2011,Brave,Fleeing the Scene,tt0476964\ny2t3XqFAjt0,2007.0,1,10,2011,Brave,Wealthy Bank Heist,tt0476964\nfCXWwJcplg0,2010.0,7,10,2011,Thirst,Poisoned Water,tt0762073\nOxhtzzpoYBk,2010.0,10,10,2011,Thirst,Going to Be O.K.,tt0762073\n-ikc2VldgSU,2010.0,9,10,2011,Thirst,Wake Up!,tt0762073\nZoFNL5lwimk,2010.0,8,10,2011,Thirst,Drink the Blood,tt0762073\nzEdVDymxYQc,2010.0,4,10,2011,Thirst,Rattlesnake for Dinner,tt0762073\nBQ42Z2UGeS4,2010.0,6,10,2011,Thirst,Bryan vs. The Wolf,tt0762073\nDmBEdpsTwxc,2010.0,5,10,2011,Thirst,Eating Cacti,tt0762073\nWX_9RZSjar8,2010.0,3,10,2011,Thirst,Primitive Brain Surgery,tt0762073\nF6-7c3I_egQ,2010.0,2,10,2011,Thirst,I'm Pregnant,tt0762073\nzYySG-Bwo1Q,2009.0,7,9,2011,High Kick Girl!,A Kick in the Head,tt1406157\nb6W1FIgCADQ,2010.0,1,10,2011,Thirst,Rolling the Truck,tt0762073\n4tKHdEaBlXw,2009.0,1,9,2011,High Kick Girl!,Girl vs. Dojo,tt1406157\nkFJm_Gedi7k,2009.0,6,9,2011,High Kick Girl!,Give Her Back,tt1406157\nWBMHd6mCSP4,2009.0,5,9,2011,High Kick Girl!,Can You Beat Me Up?,tt1406157\n9cTHj9NKHXk,2009.0,2,9,2011,High Kick Girl!,Kata Practice,tt1406157\nl6FPyq4wvuA,2006.0,10,10,2011,Wilderness,Not Good Enough,tt0480271\nz_udbrboBXk,2006.0,9,10,2011,Wilderness,Killer's Lost It,tt0480271\n8-IbFKbycv4,2006.0,8,10,2011,Wilderness,Bear Traps,tt0480271\nwgmwBXh6ExI,2006.0,7,10,2011,Wilderness,D For Davie,tt0480271\nVMqDBkf__xo,2006.0,5,10,2011,Wilderness,The Dogs,tt0480271\n136NiOTy4Xo,2006.0,6,10,2011,Wilderness,Predator on the Loose,tt0480271\nIOXtBc7CJI0,2006.0,4,10,2011,Wilderness,Jethro's End,tt0480271\nmwE7hDBei2g,2006.0,3,10,2011,Wilderness,Native Murder,tt0480271\nzySQRLbqyng,2006.0,2,10,2011,Wilderness,Lady Delinquents,tt0480271\n4wvMWwwCRYU,2007.0,7,8,2011,When Nietzsche Wept,The Cruel Joke of Freedom,tt0760188\ncSXgqTUqtOY,2007.0,8,8,2011,When Nietzsche Wept,,tt0760188\naDwNCyqgVA4,2006.0,1,10,2011,Wilderness,Knocked Out,tt0480271\n-Fmvuy-4U_A,2007.0,6,8,2011,When Nietzsche Wept,Ten Insults,tt0760188\nLAvuBfU6iSg,2007.0,5,8,2011,When Nietzsche Wept,Fear and Lust,tt0760188\nrQvp_unbfFM,2007.0,4,8,2011,When Nietzsche Wept,The Story of Anna O.,tt0760188\n2ZhQWROtg58,2007.0,3,8,2011,When Nietzsche Wept,Meltdown,tt0760188\n8AUEcXu2krY,2007.0,2,8,2011,When Nietzsche Wept,Breuer's Dream,tt0760188\n5gQUCqEQVLI,2007.0,1,8,2011,When Nietzsche Wept,God Is Dead,tt0760188\njei1Q_fP_Es,2007.0,5,6,2011,The Perfect Witness,The Urge to Kill,tt0489318\ndEjdEoovBR4,2007.0,4,6,2011,The Perfect Witness,A Cut Above,tt0489318\nH07ghIFjox8,2007.0,3,6,2011,The Perfect Witness,Playing the Victim,tt0489318\n0u_qMyWIZU4,2007.0,2,6,2011,The Perfect Witness,What Are You Doing?,tt0489318\nV2Sa7ey52f0,2007.0,1,6,2011,The Perfect Witness,Witnessing a Murder,tt0489318\nbHSnlMlFC94,2005.0,7,9,2011,The River King,I'm Going to Make You Pay,tt0386751\nMaRBZ90WDYo,2005.0,9,9,2011,The River King,See You Later,tt0386751\nrt8L4_lD-_g,2005.0,8,9,2011,The River King,The Truth Revealed,tt0386751\nQpBfwsw4OaE,2005.0,6,9,2011,The River King,Red Rose,tt0386751\n8QZgJWf5aqg,2005.0,2,9,2011,The River King,The Last Night of His Life,tt0386751\npsHsXebbbYo,2005.0,3,9,2011,The River King,Taking Pay-Offs,tt0386751\ncJBjSpKIRWw,2005.0,1,9,2011,The River King,\"Frozen River, Dead Body\",tt0386751\n6EUxC78eSjk,2005.0,5,9,2011,The River King,End of an Affair,tt0386751\nM--q4JZp5lE,2005.0,4,9,2011,The River King,Photos and Sex,tt0386751\na6DTqXLuu_c,2006.0,9,10,2011,The Kovak Box,The Caves of Hell,tt0455584\npvni4Q-Xh7k,2006.0,8,10,2011,The Kovak Box,You Have to Kill Me,tt0455584\nmoiaW_zgh1c,2006.0,10,10,2011,The Kovak Box,Kill Me or She'll Die,tt0455584\n7VV6BZWittk,2006.0,7,10,2011,The Kovak Box,The Implant,tt0455584\nrsHK7n7hVBQ,2006.0,5,10,2011,The Kovak Box,All Wars Have Their Casualties,tt0455584\ncgGJhEgDgIU,2006.0,6,10,2011,The Kovak Box,Gloomy Sunday,tt0455584\nea2fcCJ0_u0,2006.0,3,10,2011,The Kovak Box,Paralyzed,tt0455584\n6cwIlJvjP6k,2006.0,4,10,2011,The Kovak Box,Cause of Death: Suicide,tt0455584\nYdF7wSrLk-w,2006.0,1,10,2011,The Kovak Box,Masterpiece Needed,tt0455584\nQuVUH1lm8NY,2006.0,2,10,2011,The Kovak Box,Monkey Movie,tt0455584\n2wCqM6rbeWc,1997.0,7,10,2011,Strays,Tough Guy,tt0149171\n5L-JTSGZQ4E,1997.0,8,10,2011,Strays,Bustin' Chops,tt0149171\nF_EJsjP26cI,1997.0,2,10,2011,Strays,I Want to Change,tt0149171\n0ynuAmC24_Y,1997.0,10,10,2011,Strays,Too Late,tt0149171\nO3FndxKOnMA,1997.0,1,10,2011,Strays,Rejection,tt0149171\n4qW5feZgSM8,1997.0,3,10,2011,Strays,Do You Shower?,tt0149171\nqDyiygLEd38,1997.0,4,10,2011,Strays,Misjudged and Misread,tt0149171\nT8QSGSX7joU,1997.0,5,10,2011,Strays,If I Only Had a Heart,tt0149171\nOjxvPz5T7YY,1997.0,9,10,2011,Strays,The Difference Between You and Me,tt0149171\npr335ddgcuQ,1997.0,6,10,2011,Strays,Two Beautiful Strippers,tt0149171\nHzAlqdHBZzs,2001.0,9,9,2011,Don't Tempt Me,The Final Verdict,tt0284491\no3NneX3NJ-I,2001.0,8,9,2011,Don't Tempt Me,The Escape,tt0284491\n4BXpDgTVN2E,2001.0,7,9,2011,Don't Tempt Me,Attention All Customers,tt0284491\ngtSXreFMPpc,2001.0,4,9,2011,Don't Tempt Me,The Stylish & the Sexy,tt0284491\na8DNOaAifkE,2001.0,6,9,2011,Don't Tempt Me,The Game is Changing,tt0284491\nfGJIFMA09cE,2001.0,5,9,2011,Don't Tempt Me,The Weight of Manny's Soul,tt0284491\n8sHaAvi0SJw,2001.0,3,9,2011,Don't Tempt Me,Angels & Demons,tt0284491\nXdUKcQsnS4k,2001.0,2,9,2011,Don't Tempt Me,Operations Manager For Hell,tt0284491\nM9JQBS2Km-Y,2001.0,1,9,2011,Don't Tempt Me,The Divine Trilemma,tt0284491\nsguNMcMJQv8,2006.0,7,10,2011,Relative Strangers,Peak-a-Boo Carnival Company,tt0425395\nvV3Utpy9vCI,2006.0,8,10,2011,Relative Strangers,The Holly Davis Show,tt0425395\nqskwY84EXkw,2006.0,9,10,2011,Relative Strangers,A Ruined Man,tt0425395\n1MJg1718M74,2006.0,10,10,2011,Relative Strangers,Family Forgiveness,tt0425395\nqqATa_flYaI,2006.0,6,10,2011,Relative Strangers,A Game of Charades,tt0425395\n_wfy0wdA2pQ,2006.0,5,10,2011,Relative Strangers,Meet the Biological Parents,tt0425395\nCGX5n1pvu5s,2006.0,3,10,2011,Relative Strangers,The Cheese Ball,tt0425395\nQkAHUSwy8Uc,2006.0,4,10,2011,Relative Strangers,Mysterious Medical History,tt0425395\nMP7SCUB0fWU,2006.0,2,10,2011,Relative Strangers,Mr. & Mrs. Menure,tt0425395\nfbc0TS1kJ5w,2006.0,1,10,2011,Relative Strangers,The Sociological Fantasy,tt0425395\neP7VXLIgaIs,2006.0,8,10,2011,Mr. Fix It,The Way You Look Tonight,tt0416051\nxP_cM03sHgU,2006.0,3,10,2011,Mr. Fix It,The Plan to Become the Perfect Man,tt0416051\nOjZadIbLAIE,2006.0,5,10,2011,Mr. Fix It,Not Wearing Any Panties,tt0416051\nslW61xrU17E,2006.0,10,10,2011,Mr. Fix It,You've Allowed Me to be Me,tt0416051\nJIhx0f2y25I,2006.0,7,10,2011,Mr. Fix It,Operation: Lie,tt0416051\nvecXbFwYvPQ,2006.0,9,10,2011,Mr. Fix It,Ms. Fix It,tt0416051\nBhtHFyjXaXU,2006.0,6,10,2011,Mr. Fix It,A Love Survey,tt0416051\niJ7r9jKl1so,2003.0,10,10,2011,Live Forever,The End of Britpop,tt0358569\nzoFt-5SqUCs,2006.0,4,10,2011,Mr. Fix It,How Sophia Likes Her Men,tt0416051\n7jj-8TCQTXc,2006.0,2,10,2011,Mr. Fix It,Samurai Sal,tt0416051\nvjSMyoCFS_o,2003.0,9,10,2011,Live Forever,Part of the Party,tt0358569\nIEVDBboDFcw,2003.0,7,10,2011,Live Forever,Wonderwall,tt0358569\nTIccuJuQg3w,2003.0,8,10,2011,Live Forever,Taken for a Ride,tt0358569\nOMzGVY5_gpc,2003.0,6,10,2011,Live Forever,Working Class and Middle Class,tt0358569\nVi5nIuJQVpM,2003.0,5,10,2011,Live Forever,Battle on the Charts,tt0358569\n26-SvRLhthc,2003.0,2,10,2011,Live Forever,,tt0358569\non28B5qrgtY,2003.0,4,10,2011,Live Forever,Blur vs. Oasis,tt0358569\ndRTxXWB-lpE,2003.0,3,10,2011,Live Forever,Tony Blair and Britpop,tt0358569\nY937MAvxTZI,2003.0,1,10,2011,Live Forever,Unspeakably Rubbish,tt0358569\nTlnLO-nYFG0,2001.0,3,10,2011,Lawless Heart,Dr. Nick,tt0276276\noDNgxbWzpf8,2001.0,10,10,2011,Lawless Heart,Distracted Heart,tt0276276\n49LrC8wJLPU,2001.0,2,10,2011,Lawless Heart,Bed Takeover,tt0276276\nW6U80LM5b1U,2001.0,9,10,2011,Lawless Heart,I Didn't Have the Courage,tt0276276\n_71L2__mFtE,2001.0,8,10,2011,Lawless Heart,Paths Collide,tt0276276\nKKNUjL6oLeA,2001.0,7,10,2011,Lawless Heart,I'm Having a Party,tt0276276\nMw9Dc_MJF34,2001.0,6,10,2011,Lawless Heart,Sudden Sex,tt0276276\nuHmd86pWvmY,2001.0,5,10,2011,Lawless Heart,Judy Meets Charlie,tt0276276\n-BhFk_mOlxc,2001.0,4,10,2011,Lawless Heart,Nick and Charlie Meet Again,tt0276276\n3ssOgE8RWSI,2006.0,1,10,2011,Journey to the End of the Night,Paul's Rampage,tt0454879\nMLFezSJBdC8,2001.0,1,10,2011,Lawless Heart,Casual Sex,tt0276276\ny935w17KA18,2006.0,5,10,2011,Journey to the End of the Night,I'm Cutting You Out,tt0454879\n6EEradwg8aE,2006.0,8,10,2011,Journey to the End of the Night,Paul's Meltdown,tt0454879\n-fIi-c3tSig,2006.0,10,10,2011,Journey to the End of the Night,Rodrigo Returns,tt0454879\nRn2_vtaTLM4,2006.0,7,10,2011,Journey to the End of the Night,Monique Meets Her Fate,tt0454879\nCjYxp2UFfL0,2006.0,9,10,2011,Journey to the End of the Night,A Tragic End,tt0454879\n6z6MpYHnbRc,2006.0,6,10,2011,Journey to the End of the Night,Chased by a Gunman,tt0454879\nQPKFPLL4XQQ,2006.0,4,10,2011,Journey to the End of the Night,Shoot the Dog,tt0454879\nxGN5cFcaD5A,2003.0,12,12,2011,Intolerable Cruelty,Wheezy Joe,tt0138524\na0uMay4ExT8,2006.0,3,10,2011,Journey to the End of the Night,Does My Wife Love Me?,tt0454879\nSyM4ctfYzks,2003.0,10,12,2011,Intolerable Cruelty,Love Is Good,tt0138524\n1H96OfI64Fs,2006.0,2,10,2011,Journey to the End of the Night,Wemba's Close Call,tt0454879\ngFKba_Esjt0,2003.0,9,12,2011,Intolerable Cruelty,Doyle Eats the Prenup,tt0138524\nKNiplLivjQI,2003.0,7,12,2011,Intolerable Cruelty,The Urge to Wedlock,tt0138524\njGCY8thosNw,2003.0,11,12,2011,Intolerable Cruelty,I'm a Patsy,tt0138524\ndcsVnpHXXX0,2003.0,8,12,2011,Intolerable Cruelty,You Fascinate Me,tt0138524\nZz-mpgYNUW8,2003.0,6,12,2011,Intolerable Cruelty,The Senior Partner,tt0138524\nYgdWrHFx0I0,2003.0,1,12,2011,Intolerable Cruelty,I'll Take the Case,tt0138524\nIkQ_uPNWp28,2003.0,4,12,2011,Intolerable Cruelty,Carnivores,tt0138524\n6PpQk63iIWw,2003.0,3,12,2011,Intolerable Cruelty,It's a Negotiation,tt0138524\n82TS-sLA0P0,2003.0,2,12,2011,Intolerable Cruelty,The Ass Nailer,tt0138524\nFNLQdquN0-I,2005.0,10,10,2011,Her Minor Thing,Intercom Love Profession,tt0417751\nI1L5vXswv0Y,2005.0,9,10,2011,Her Minor Thing,The Compromise,tt0417751\nGrG6AZG-ZOQ,2005.0,8,10,2011,Her Minor Thing,You Guys Know Each Other?,tt0417751\nYiMIAKXwHg4,2005.0,7,10,2011,Her Minor Thing,Jeana Speaks Her Mind,tt0417751\nsR22u1bgrog,2005.0,6,10,2011,Her Minor Thing,I'm In Love With Her,tt0417751\nqTUAF-_v55o,2005.0,3,10,2011,Her Minor Thing,Zsa Zsa,tt0417751\nlcDo8iV-rPg,2005.0,4,10,2011,Her Minor Thing,Jeana Cops an Attitude,tt0417751\nKhjlz5bMb2E,2005.0,5,10,2011,Her Minor Thing,Men Are Such Men,tt0417751\nvZW4Qk-wqlg,2005.0,2,10,2011,Her Minor Thing,I'm Not Going,tt0417751\nGC_ehA6dd_I,2005.0,1,10,2011,Her Minor Thing,My Girlfriend is a Virgin,tt0417751\nsqpSc2wwTaE,2006.0,1,10,2011,Half Light,Come Be With Me,tt0412798\n6AW4O4ohXK0,2006.0,10,10,2011,Half Light,The Ghost of Angus,tt0412798\nFe2CpAhZ9w4,2006.0,6,10,2011,Half Light,Romance,tt0412798\npl3Oay3HDo8,2006.0,9,10,2011,Half Light,She's Awake!,tt0412798\nZ_9GcqiwxF4,2006.0,7,10,2011,Half Light,Angus is Dead,tt0412798\nV6aDrQg-WVU,2006.0,8,10,2011,Half Light,He's Right Behind You,tt0412798\nW51M5otbulY,2006.0,5,10,2011,Half Light,From Grief to Love,tt0412798\nPJjFb1RSFdw,2006.0,2,10,2011,Half Light,Lighthouse Lunch Date,tt0412798\nExGQSMWhujY,2006.0,4,10,2011,Half Light,Psychic Mumbo-Jumbo,tt0412798\ntQPd0OAV7yk,2006.0,3,10,2011,Half Light,Atop the Lighthouse,tt0412798\nUL-ot8sR0P8,2003.0,9,10,2011,Gang of Roses,Time to Die,tt0339091\nwANxoR0GtCs,2003.0,7,10,2011,Gang of Roses,The Pocket Watch,tt0339091\nMOO9hFCMw7Y,2003.0,8,10,2011,Gang of Roses,I Missed on Purpose,tt0339091\nZ_OVcsaEOXA,2003.0,6,10,2011,Gang of Roses,Deadly Game of Poker,tt0339091\nHueqqIRaOQA,2003.0,10,10,2011,Gang of Roses,Rachel's Revenge,tt0339091\nr9RIcLpGaHY,2003.0,4,10,2011,Gang of Roses,Riding Into Town,tt0339091\nmVNG6xFwq2M,2003.0,5,10,2011,Gang of Roses,10 Is Less Painful Than 9,tt0339091\nub-t6RcoeTU,2003.0,3,10,2011,Gang of Roses,\"You Feel Me, Baby?\",tt0339091\nODZ_xokDAc8,2003.0,1,10,2011,Gang of Roses,Shot Dead in the Street,tt0339091\nKqAGFmus6_M,2003.0,2,10,2011,Gang of Roses,The Sex and the Loot,tt0339091\ninmQqyn5fhE,1995.0,10,10,2011,Fist of the North Star,Defeating the Dark Lord,tt0113074\nJ2k2CQgmaWo,1995.0,9,10,2011,Fist of the North Star,Down But Not Out,tt0113074\necuuc8AsMjg,1995.0,7,10,2011,Fist of the North Star,Any More Heroes?,tt0113074\nXHiFqBo1rWI,1995.0,6,10,2011,Fist of the North Star,A Fistful of Torture,tt0113074\nMOuSrB5BYJM,1995.0,8,10,2011,Fist of the North Star,One Against Many,tt0113074\nlrZAnOGjydo,1995.0,3,10,2011,Fist of the North Star,Hit Me!,tt0113074\nLPe-N0frxvU,1995.0,4,10,2011,Fist of the North Star,Who Are You?,tt0113074\nRQmCVPN6V-s,2007.0,9,9,2011,First Born,Witchcraft,tt0470761\nMUVukUuF9tw,1995.0,2,10,2011,Fist of the North Star,Genuine Bad Ass,tt0113074\nvA8oTgiA5WI,1995.0,1,10,2011,Fist of the North Star,Sounds Like Motorcycles,tt0113074\nYrph2A1xc94,2007.0,7,9,2011,First Born,Vaginal Bleeding,tt0470761\nbB-OwUZc-cE,2007.0,8,9,2011,First Born,The Nanny,tt0470761\nFsy3TtA-3NI,2007.0,5,9,2011,First Born,I'm Sorry,tt0470761\n6KgxpUSWsoA,2007.0,6,9,2011,First Born,A Mother's Soul,tt0470761\nIthpPqgEteI,2007.0,4,9,2011,First Born,Trapped in the Basement,tt0470761\nyBrv-a6Nxuk,2007.0,1,9,2011,First Born,I'm Pregnant,tt0470761\nL0oNukxzH4o,2007.0,3,9,2011,First Born,Bad Breast Milk,tt0470761\nXiYDPHi7Acw,2002.0,7,9,2011,Dirty Deeds,Busted,tt0280605\nSJhnQPZtv0M,2007.0,2,9,2011,First Born,New Home,tt0470761\nFptZhFrVXAY,2002.0,6,9,2011,Dirty Deeds,Shoot Him,tt0280605\n11nfPZqT5c0,2002.0,4,9,2011,Dirty Deeds,Wasting Your Life,tt0280605\nzAge7cKvs9s,2002.0,1,9,2011,Dirty Deeds,Darcy Proves Himself,tt0280605\nh1UDUqeJh0Q,2002.0,2,9,2011,Dirty Deeds,The Nature of the Business,tt0280605\nPJeobOT-LGk,2002.0,3,9,2011,Dirty Deeds,I Want You to Stay,tt0280605\niucMQPRSNDg,2002.0,9,9,2011,Dirty Deeds,What's a Bloody Pizza?,tt0280605\n56fdoTQTfuE,2002.0,5,9,2011,Dirty Deeds,I Was You Ten Years Ago,tt0280605\n1Wk9V6yqmZE,2002.0,8,9,2011,Dirty Deeds,I Can't Let You Walk Away,tt0280605\n0bhCbZG80HE,2008.0,4,9,2011,Black Ops,A Good Ol' Smoke,tt0914364\n1LDL6H_on2g,2008.0,5,9,2011,Black Ops,The Ultimate Killing Machine,tt0914364\nVfrbOQ4q_Bc,2008.0,7,9,2011,Black Ops,Gunther Neumann Rampage,tt0914364\n9qzxNMENXJE,2008.0,2,9,2011,Black Ops,Interrogating a Terrorist,tt0914364\nlnNbDaNP-yg,2008.0,6,9,2011,Black Ops,Oh Sh**!,tt0914364\n08_UIVttBK4,2008.0,8,9,2011,Black Ops,High Voltage,tt0914364\nXFYNHsSzMOo,2008.0,3,9,2011,Black Ops,The Cook Dies First,tt0914364\nN6pHjvoxDI0,2002.0,10,10,2011,Crazy as Hell,The Revelation,tt0285487\nCra_JviE1sk,2002.0,8,10,2011,Crazy as Hell,Mind Over Matter,tt0285487\nmefq68nHSMk,2008.0,1,9,2011,Black Ops,The Great Persian Gulf Massacre,tt0914364\n-9FxcS46YmE,2002.0,9,10,2011,Crazy as Hell,Suicide Attempt,tt0285487\nIAx_10MJbfE,2008.0,9,9,2011,Black Ops,The Evil is Destroyed,tt0914364\nOB_iV-135-k,2002.0,6,10,2011,Crazy as Hell,Personal Beliefs,tt0285487\nBuoqHpvCzq8,2002.0,7,10,2011,Crazy as Hell,Lord of Darkness,tt0285487\nmoxAGYR4nYY,2002.0,5,10,2011,Crazy as Hell,Therapy For the Devil,tt0285487\nqMthVugT2wo,2002.0,4,10,2011,Crazy as Hell,Meeting Satan,tt0285487\nIOECGWT9KwE,2002.0,3,10,2011,Crazy as Hell,The Film Crew,tt0285487\n1VXH6jctlV8,2002.0,2,10,2011,Crazy as Hell,A Lively Bunch,tt0285487\nAAmxzswlvIE,2002.0,1,10,2011,Crazy as Hell,Pop Psychology,tt0285487\nNIOWsdgnNiI,2003.0,5,9,2011,National Lampoon's Blackball,Bad Boy Diet Coke,tt0337879\nwm0fKKHMUJI,2003.0,9,9,2011,National Lampoon's Blackball,Trust the Wood,tt0337879\nsBACvIGmLh0,2003.0,8,9,2011,National Lampoon's Blackball,Back in the Ballin' Groove,tt0337879\ntLujRN5bxVA,2003.0,7,9,2011,National Lampoon's Blackball,Bad Boy Nerves,tt0337879\nuzDmyicwgnM,2003.0,6,9,2011,National Lampoon's Blackball,Six Pace Mistake,tt0337879\nU7D-kOB7-PU,2003.0,4,9,2011,National Lampoon's Blackball,Meet Our New Agent,tt0337879\nZqOF2mZJ9t0,2003.0,3,9,2011,National Lampoon's Blackball,Mr. Speight is a Tosser,tt0337879\nFDfUBxkDaWc,2003.0,2,9,2011,National Lampoon's Blackball,Alan the Pipe,tt0337879\n3e7JKCUfrpo,2003.0,1,9,2011,National Lampoon's Blackball,Is It On the Condom?,tt0337879\nLy2Hr9qqp9M,2008.0,9,9,2011,Kill Switch,Now You Look Dead,tt5464234\nCRuiuuKONUQ,2008.0,7,9,2011,Kill Switch,Beat You Silly,tt5464234\nJAG9oylpNiY,2008.0,8,9,2011,Kill Switch,Breaking Bones,tt5464234\nPYTXPrmSwmc,2008.0,6,9,2011,Kill Switch,Cannibals & Clowns,tt5464234\nBAG_EkEcofI,2008.0,1,9,2011,Kill Switch,One Hillbilly Out the Window,tt5464234\nO5ExjpCtg0I,2008.0,4,9,2011,Kill Switch,Batter Up !,tt5464234\nzGDk38z2mbE,2008.0,2,9,2011,Kill Switch,All Work and No Play,tt5464234\ne8KqmFe953I,2008.0,3,9,2011,Kill Switch,Talk to my Fists,tt5464234\nCdwdX5PxF9Q,2008.0,5,9,2011,Kill Switch,You Knocked My Teeth Out,tt5464234\nWSFqs9iugBI,2006.0,8,10,2011,Priceless,Goodbye Kiss Scene,tt0482088\nRWS6EzAkSiU,2006.0,5,10,2011,Priceless,Awkward Breakfast Scene,tt0482088\nDe9FeSg3WTc,2006.0,4,10,2011,Priceless,Paying for It Scene,tt0482088\nLdEwXHHohHs,2006.0,2,10,2011,Priceless,Happy Birthday Scene,tt0482088\nanAmUhhnwUk,2006.0,3,10,2011,Priceless,I Left It All for You Scene,tt0482088\nl-EWc6AcPvQ,2006.0,1,10,2011,Priceless,Lonely Birthday Scene,tt0482088\nmtWSL_-mJaI,2006.0,10,10,2011,Priceless,The Last Euro Scene,tt0482088\nf1gNWDY4gUM,2006.0,9,10,2011,Priceless,Can't Be Bought Scene,tt0482088\nGkM4SQ--vss,2006.0,7,10,2011,Priceless,The Mysteries of Womanhood Scene,tt0482088\ntSrLgG6rOrs,2006.0,6,10,2011,Priceless,A Little Shopping Scene,tt0482088\nMFd88DSTPgI,2008.0,8,9,2011,\"Definitely, Maybe\",The Happy Ending Is You,tt0832266\nKJFbhzrJxg4,2008.0,5,9,2011,\"Definitely, Maybe\",A Terribly Timed Proposal,tt0832266\n7OXf2fFCRB0,2008.0,9,9,2011,\"Definitely, Maybe\",Final Countdown for April,tt0832266\nFg9aUVqD1K0,2008.0,7,9,2011,\"Definitely, Maybe\",Maya Solves the Mystery,tt0832266\nuE-l84hG_BE,2008.0,6,9,2011,\"Definitely, Maybe\",A Drunken Love Confession,tt0832266\nGARQJHyaBD0,2008.0,4,9,2011,\"Definitely, Maybe\",Definitely...Maybe,tt0832266\n804UN9XPV44,2008.0,3,9,2011,\"Definitely, Maybe\",Smoke-Off,tt0832266\nQOgqUHk-zDY,1973.0,10,10,2011,American Graffiti,Drag Race at Paradise Road,tt0069704\nJ_oIvRfVXoA,2008.0,2,9,2011,\"Definitely, Maybe\",Summer's Diary,tt0832266\n99z-H_NEccU,1973.0,9,10,2011,American Graffiti,Wolfman Jack,tt0069704\nGkPbF_FJuho,2008.0,1,9,2011,\"Definitely, Maybe\",April the Copy Girl,tt0832266\nz2OoxzYqgNY,1973.0,7,10,2011,American Graffiti,Must Be Your Mama's Car,tt0069704\nCgZTVkjQwto,1973.0,8,10,2011,American Graffiti,Pharaohs and the Cop Car,tt0069704\n7Z1PBPrjZPQ,1973.0,5,10,2011,American Graffiti,Water Balloon Prank,tt0069704\n-SKfkvvtqN0,1973.0,2,10,2011,American Graffiti,Wanna Go For A Ride?,tt0069704\n6e3dn30X5D4,1973.0,6,10,2011,American Graffiti,Toad Gets Lucky,tt0069704\n7GLhXtUgUg4,1973.0,4,10,2011,American Graffiti,\"This Is My Cousin, Carol\",tt0069704\nj1q-QWHUU0g,1973.0,3,10,2011,American Graffiti,A Snowball Dance,tt0069704\nL8TDBSlgFAw,1973.0,1,10,2011,American Graffiti,The Most Perfect Dazzling Creature Ever,tt0069704\n4Te3H4lBaBo,1999.0,9,9,2011,Man on the Moon,\"A Friendly, Friendly World\",tt0125664\nNlqESIU9i3E,2009.0,8,8,2011,Command Performance,How Does It Feel?,tt1210801\n301qydVqZzM,2009.0,7,8,2011,Command Performance,Blood for Blood,tt1210801\n9yoRcn3UcyU,2009.0,6,8,2011,Command Performance,Venus Escapes,tt1210801\nDaR6i1hQWfo,2009.0,3,8,2011,Command Performance,Death by Feedback,tt1210801\nQunxdSWz-Go,2009.0,5,8,2011,Command Performance,Nice Shootin',tt1210801\nmBLotJEfjDg,2009.0,4,8,2011,Command Performance,Silent But Deadly,tt1210801\nZVpdb1HxgEY,2009.0,2,8,2011,Command Performance,\"Watch the Hair, Dude\",tt1210801\nB7t6KoVULDQ,2009.0,1,8,2011,Command Performance,It Pays the Rent,tt1210801\njTLsI2Z9GiA,2011.0,6,-1,2011,Larry Crowne,Thanks for Keeping Our Secret,tt1583420\n--jPdm57jQs,2011.0,4,-1,2011,Larry Crowne,New Threads,tt1583420\nRBBmO8dhn-I,2011.0,5,-1,2011,Larry Crowne,I Got a Tattoo,tt1583420\nyidXeyTFM48,2011.0,3,-1,2011,Larry Crowne,The GPS Pro,tt1583420\nfgq8TsyNTXM,2011.0,2,-1,2011,Larry Crowne,This Class is Cancelled,tt1583420\n5nvZCMkXEFw,2011.0,1,-1,2011,Larry Crowne,Never Too Old to Learn,tt1583420\nzjwBNUXCA-M,2010.0,6,10,2011,Robin Hood,The Runaways,tt0955308\nSmfPtEWejs8,2010.0,9,10,2011,Robin Hood,Village Rescue,tt0955308\nxTvdOjsJXRY,2010.0,5,10,2011,Robin Hood,You Must Tell The King,tt0955308\nFbmnqGqWgc8,2010.0,10,10,2011,Robin Hood,Beach Battle,tt0955308\nclr6zsehoTg,2010.0,2,10,2011,Robin Hood,Queen in the Making,tt0955308\nif34bKbBqXI,2010.0,8,10,2011,Robin Hood,Power From the Ground Up,tt0955308\nH07DuZQ-rLQ,2010.0,7,10,2011,Robin Hood,Until Lambs Become Lions,tt0955308\nn75PgMSxAOw,2010.0,1,10,2011,Robin Hood,Storming the Castle,tt0955308\nS44FXSiI--Q,2010.0,3,10,2011,Robin Hood,Share My Chamber,tt0955308\nwnfHqnaM0yI,2010.0,4,10,2011,Robin Hood,Robbing the Rich,tt0955308\n_wpGttPSHdE,1999.0,7,9,2011,Man on the Moon,David Letterman,tt0125664\nVKbyotjwcDw,1999.0,8,9,2011,Man on the Moon,A Night at Carnegie Hall,tt0125664\nDdGZ4WYTdHM,1999.0,5,9,2011,Man on the Moon,Wrestling Women,tt0125664\n1ePe7Q_zH1c,1999.0,3,9,2011,Man on the Moon,Tony Clifton,tt0125664\nHurQLHiIVcw,1999.0,6,9,2011,Man on the Moon,A Fight on Live TV,tt0125664\n3Tqgp93zs3Y,1999.0,2,9,2011,Man on the Moon,Mighty Mouse is on the Way,tt0125664\nlm7nrQTysm4,1999.0,4,9,2011,Man on the Moon,Tony Gets Fired,tt0125664\njx8KlhQBsvQ,1999.0,1,9,2011,Man on the Moon,The Elvis Presley,tt0125664\noIC-A9h4cfQ,2004.0,8,9,2011,White Coats,Christmas Party Gone Wild,tt0367232\n9nabHwRMjcE,2004.0,7,9,2011,White Coats,Naughty Nurse Tawny,tt0367232\n332NO4_03vU,2004.0,1,9,2011,White Coats,Malibu Mindy,tt0367232\noVzqiDMOlms,2004.0,3,9,2011,White Coats,You're a Doctor?,tt0367232\n0cPmlvsRKhw,2004.0,5,9,2011,White Coats,The Cleaning Lady Is a Murderer,tt0367232\nYVrMyqmDg3g,2004.0,6,9,2011,White Coats,John Doe #5,tt0367232\nGfhTEwz56do,2004.0,4,9,2011,White Coats,STD's and Colostomy Bags,tt0367232\nbbuElXPp_s8,2004.0,2,9,2011,White Coats,Filthy Mouth,tt0367232\nSF887rPCz_A,2004.0,9,9,2011,White Coats,Organ Fight,tt0367232\nGBV01HnuTz8,2004.0,2,10,2011,Direct Action,The Big Picture,tt0368688\nEpo3jDg5skM,2004.0,10,10,2011,Direct Action,I've Got Some Justice For You!,tt0368688\nPBObihCz2L4,2004.0,9,10,2011,Direct Action,Double Cross Double Down,tt0368688\nOtCu9saoxeU,2004.0,8,10,2011,Direct Action,Hostage Rescue,tt0368688\nPJFA-emTgT0,2004.0,7,10,2011,Direct Action,I'm Here to Help You,tt0368688\nU4iAA0B9fJU,2004.0,5,10,2011,Direct Action,Army of Two,tt0368688\nR5b0a3b6XkE,2004.0,6,10,2011,Direct Action,Gannon Kicks Some Ass,tt0368688\nKBh1vdpGWhE,2004.0,10,10,2011,The Motorcycle Diaries,Swimming Across the Amazon,tt0318462\nyFWgaAX2tCU,2004.0,3,10,2011,Direct Action,You Are Not Untouchable,tt0368688\ngZwxRw15AdE,2004.0,1,10,2011,Direct Action,You Want to Apologize?,tt0368688\nSG4I8PHp880,2003.0,6,7,2011,Crime Spree,Raymond's Revenge,tt0310924\neKHYnWepyRU,2004.0,4,10,2011,Direct Action,Tased and Kidnapped,tt0368688\nOBd1rEo-iyM,2006.0,6,10,2011,Danika,Heads Up,tt0469062\nhVZ0Y8l14M4,2006.0,5,10,2011,Danika,What's a C***?,tt0469062\nksJuTetxrDc,2006.0,1,10,2011,Danika,What's Wrong With You?,tt0469062\njs-337d3gqQ,2006.0,2,10,2011,Danika,Like a Good Neighbor,tt0469062\n9ekHf_EMmSk,2006.0,4,10,2011,Danika,Visions From the Past,tt0469062\nCZ1wzoCOQ-Y,2006.0,8,10,2011,Danika,\"Drugs, Sex, and STDs\",tt0469062\nji8ZM5nKsik,2006.0,3,10,2011,Danika,Alone in the Mall,tt0469062\nR8Oo8hf_n9w,2006.0,7,10,2011,Danika,PTA Meeting,tt0469062\nLhVNDhQKhJw,2003.0,5,7,2011,Crime Spree,Nobody's That Fast,tt0310924\nY4u6gpp399U,2003.0,7,7,2011,Crime Spree,Hotel Shootout,tt0310924\nhjoORS_zVWE,2006.0,10,10,2011,Danika,Blindsided,tt0469062\nIEDhXioCYdc,2006.0,9,10,2011,Danika,Stay Away From My Kids!,tt0469062\nbU6ZsvCba7c,2003.0,4,7,2011,Crime Spree,Prank Call,tt0310924\nOLjVIg8OTNI,2003.0,3,7,2011,Crime Spree,A Big Mistake,tt0310924\nPTCMc9G3bcQ,2003.0,2,7,2011,Crime Spree,Men of Honor,tt0310924\n8sQfEoUNxRo,2003.0,1,7,2011,Crime Spree,Where's the Painting?,tt0310924\n7BapYJuMHMI,2005.0,9,9,2011,Dirty Love,Girls Night Out,tt0327643\nQCqdeiTnnTU,2002.0,2,8,2011,Desert Saints,You Can Call Me Joe,tt0167116\n9_OMUgTFQhw,2005.0,7,9,2011,Dirty Love,Maxi-Pad Time,tt0327643\nEC64kf5_Ldc,2002.0,1,8,2011,Desert Saints,Paradise or Bust,tt0167116\nqcZk7ketB4Y,2005.0,8,9,2011,Dirty Love,A Body Cavity Search,tt0327643\nIEcxOcj3LGA,2005.0,5,9,2011,Dirty Love,Ecstasy-Laced Acid,tt0327643\n65nUs0FyUys,2005.0,4,9,2011,Dirty Love,A Fashion Show Date,tt0327643\ncqzRb7sAL9Y,2005.0,6,9,2011,Dirty Love,Touch My Bass,tt0327643\nLs8-mu4kDpo,2005.0,1,9,2011,Dirty Love,Oh My God!,tt0327643\nYNdZAZ-SPX4,2005.0,2,9,2011,Dirty Love,The Palm Reader,tt0327643\nypmu86_sKpU,2004.0,9,10,2011,The Motorcycle Diaries,To a United South America,tt0318462\nwyUDbbWIXS0,2005.0,3,9,2011,Dirty Love,Slapped,tt0327643\nxKpYBStDLVA,2004.0,7,10,2011,The Motorcycle Diaries,Brutally Honest,tt0318462\nOTfb7n61HIQ,2004.0,4,10,2011,The Motorcycle Diaries,\"Repairing \"\"The Mighty One\"\"\",tt0318462\noOeGE7z8PAk,2004.0,5,10,2011,The Motorcycle Diaries,Hustling for Food and Shelter,tt0318462\nOEgLZ58Xe0Y,2004.0,3,10,2011,The Motorcycle Diaries,Diagnosing a Tumor,tt0318462\ngL0Ph_x8xmg,2004.0,6,10,2011,The Motorcycle Diaries,Traveling Just to Travel,tt0318462\nqSLZflG9sUw,2004.0,1,10,2011,The Motorcycle Diaries,Don't Take Forever,tt0318462\nMiT3ky_83Vo,2004.0,2,10,2011,The Motorcycle Diaries,Looking For Shelter,tt0318462\nQWlbUhsTD4c,2004.0,8,10,2011,The Motorcycle Diaries,Alberto Meets Luz,tt0318462\n2FtBOS5575I,2002.0,5,8,2011,Desert Saints,Capped on the Crapper,tt0167116\n1fbxiPh8RoY,2002.0,8,8,2011,Desert Saints,Goodbye Banks,tt0167116\ncLjX-SEPnR8,2002.0,7,8,2011,Desert Saints,Assassination Attempt,tt0167116\nFNWBoJNTc1w,2002.0,6,8,2011,Desert Saints,Lost on the Highway,tt0167116\nWpOPOQw6nqg,2002.0,4,8,2011,Desert Saints,\"Out of Insulin, Out of Bullets\",tt0167116\nrC0lnrzU0jk,2002.0,3,8,2011,Desert Saints,Humping the Dough,tt0167116\nrNAXkGt7rFA,1999.0,10,10,2011,The Hurricane,Rubin Is Freed,tt0174856\nD60dQGS_qNE,1999.0,6,10,2011,The Hurricane,So Glad I Met You,tt0174856\nwFPtFkZHpBE,1999.0,9,10,2011,The Hurricane,Rubin's Final Plea,tt0174856\nnQkiJT2MR4w,1999.0,8,10,2011,The Hurricane,Take It to the Federal Court!,tt0174856\n4MzZD9mNlww,1999.0,5,10,2011,The Hurricane,is Robbed,tt0174856\naHlMCu3-R3I,1999.0,7,10,2011,The Hurricane,In This Together,tt0174856\nHzWikU7ir4Y,1999.0,3,10,2011,The Hurricane,Why'd You Do All That?,tt0174856\nFPIgb9k3cUo,1999.0,2,10,2011,The Hurricane,Turning Into a Weapon,tt0174856\nb9T64w0cdDA,1999.0,4,10,2011,The Hurricane,Defeats Cooper,tt0174856\ng5Gb7V5-pts,1999.0,1,10,2011,The Hurricane,Framing Rubin,tt0174856\n9pl_3xQBPLk,2011.0,5,-1,2011,Bridesmaids,Air Marshal Style,tt1478338\n1nqF0ddDc8I,2009.0,4,10,2011,Brüno,Bruno Visits a Psychic,tt0889583\nkV1j2VYi7ho,2009.0,8,10,2011,Brüno,Dildo Self-Defense,tt0889583\n9da9FqZc8DU,2009.0,10,10,2011,Brüno,Give Women a Chance,tt0889583\nsc3H4UkkZgk,2009.0,3,10,2011,Brüno,Mexican Chair People,tt0889583\n36p5Jk_y16Q,2009.0,2,10,2011,Brüno,Becoming a Hollywood Star,tt0889583\nOhGVVnZZW5o,2009.0,1,10,2011,Brüno,Bruno's Velcro Suit,tt0889583\nik4LH5ksOn8,2009.0,5,10,2011,Brüno,Healing the Middle East,tt0889583\nyVRv5u36Huw,2009.0,6,10,2011,Brüno,The Hottest Baby Photo Shoot,tt0889583\n0ofpRxc0GVg,2009.0,7,10,2011,Brüno,Baby O.J.,tt0889583\nkq6E2hQ20wc,2009.0,9,10,2011,Brüno,Spicing Up The Uniform,tt0889583\nRLUhwGLJhsI,1991.0,4,11,2011,Backdraft,Tim and the,tt0101393\nkewajS6fh3Q,2008.0,5,10,2011,Stiletto,Restaurant Rampage,tt1027747\nrRbF5cPxVIc,2006.0,5,10,2011,The Breed,Thwarted Getaway,tt0455362\nsmxGSlqjZNk,2004.0,2,10,2011,Bridget Jones: The Edge of Reason,Jellyfisher Alert,tt0317198\nG0aJ4C7y9Qc,2009.0,10,10,2011,The Assassin Next Door,Bus Shootout,tt1198153\npwkzSfo-JA0,2009.0,9,10,2011,The Assassin Next Door,A Shame to Waste You,tt1198153\nqU5QbKnQHak,2009.0,8,10,2011,The Assassin Next Door,I'm No Sucker,tt1198153\nH0UbjaTkx04,2009.0,7,10,2011,The Assassin Next Door,Under Fire,tt1198153\nfpdnG6Fm3LY,2009.0,5,10,2011,The Assassin Next Door,Galia's Gun,tt1198153\ndMg7mCGd3js,2010.0,6,10,2011,Suicide Girls Must Die!,Not From Around Here,tt1584733\nvinDi5O-fu0,2009.0,4,10,2011,The Assassin Next Door,Finish the Job,tt1198153\n_eqtVKrH-f4,2009.0,6,10,2011,The Assassin Next Door,Shooting Lessons,tt1198153\n_jDLZyo3Kg0,2010.0,10,10,2011,Suicide Girls Must Die!,A Hoax,tt1584733\noCayZiKmJBE,2009.0,3,10,2011,The Assassin Next Door,Club Kill,tt1198153\nCg5acxVn2KI,2010.0,8,10,2011,Suicide Girls Must Die!,Wrap Party,tt1584733\njocK7m_000U,2009.0,2,10,2011,The Assassin Next Door,First Hit,tt1198153\n3jtF8hfimrA,2009.0,1,10,2011,The Assassin Next Door,On the Run,tt1198153\ndX-C-8rzN7I,2010.0,9,10,2011,Suicide Girls Must Die!,Last Girl Standing,tt1584733\nhyFgMOop-Mc,2010.0,7,10,2011,Suicide Girls Must Die!,Found Footage,tt1584733\nQR424o5Wch0,2010.0,5,10,2011,Suicide Girls Must Die!,Fractal Goes Missing,tt1584733\nwRRvq70yOt0,2010.0,3,10,2011,Suicide Girls Must Die!,Grave Robbing,tt1584733\nYV-Ik4q-o4k,2010.0,1,10,2011,Suicide Girls Must Die!,Trouble With the Law,tt1584733\nZer3Rr4CwjE,2010.0,4,10,2011,Suicide Girls Must Die!,Ghost Stories,tt1584733\nHoW8jQX83Fw,2010.0,2,10,2011,Suicide Girls Must Die!,Shooting a Bear,tt1584733\nLO2Ej4_42xY,2006.0,10,10,2011,The Breed,Need a Ride?,tt0455362\nj8Zucea5rlY,2006.0,9,10,2011,The Breed,Give Cujo My Best,tt0455362\nrOOymP2hx_c,2006.0,3,10,2011,The Breed,They Don't Want You Here,tt0455362\nCCicXUbaalU,2006.0,8,10,2011,The Breed,Get Out of My House,tt0455362\nqhMhfHHeT_g,2006.0,7,10,2011,The Breed,Jump Start,tt0455362\nl9MW39UXFmU,2006.0,4,10,2011,The Breed,Run to the House,tt0455362\nCsZUGoa3JHc,2007.0,10,10,2011,Hot Fuzz,Get Out of My Village!,tt0425112\n4VJrMSbPe00,2006.0,6,10,2011,The Breed,Into the Attic,tt0455362\nLd6pt1jNCRw,2006.0,1,10,2011,The Breed,Deadly Discovery,tt0455362\nlD6hI1yKd7w,2006.0,2,10,2011,The Breed,First Bite,tt0455362\nCmkT8YU4jH8,2007.0,9,10,2011,Hot Fuzz,Here Come the Fuzz,tt0425112\npcV9ceH4UvE,2007.0,8,10,2011,Hot Fuzz,Mindless Violence,tt0425112\nAMT2RwFFs_g,2007.0,7,10,2011,Hot Fuzz,The Battle for Sandford Begins,tt0425112\nBavTQmiA9mc,2007.0,5,10,2011,Hot Fuzz,Kill the Messenger,tt0425112\nfaMh6OYfuNE,2007.0,1,10,2011,Hot Fuzz,Good Luck Nicholas,tt0425112\nCun-LZvOTdw,2007.0,4,10,2011,Hot Fuzz,Sea Mine,tt0425112\n8QJiAK-s5a0,1996.0,8,9,2011,Happy Gilmore,\"The Price Is Wrong, Bitch\",tt0116483\n7BwxSHs9elk,1996.0,9,9,2011,Happy Gilmore,Happy's Short Game,tt0116483\nfuEG_PSb_Ts,2007.0,2,10,2011,Hot Fuzz,Fence Jumping,tt0425112\n8qaAKxJp0EM,1996.0,6,9,2011,Happy Gilmore,Happy Goes Ballistic,tt0116483\n3dluAhOU1cA,1996.0,5,9,2011,Happy Gilmore,Quilting Sweatshop,tt0116483\nir1sVy9JLyo,2007.0,6,10,2011,Hot Fuzz,Narp?,tt0425112\n0-lcqIuVaR8,2007.0,3,10,2011,Hot Fuzz,The Shortest Police Chase,tt0425112\nVyydT8dy3Hs,1996.0,4,9,2011,Happy Gilmore,The Waterbury Open,tt0116483\nqDR_yTik_xo,1996.0,3,9,2011,Happy Gilmore,Chubbs Sees Pro Material,tt0116483\nGP1KHL0j0GU,1996.0,7,9,2011,Happy Gilmore,Rhyming with Shooter,tt0116483\n0u5O2--9www,1996.0,1,9,2011,Happy Gilmore,Cut and Dumped,tt0116483\nz7coL1WcCoI,1996.0,2,9,2011,Happy Gilmore,This Place Is Perfect,tt0116483\nS501ojiA52c,2004.0,9,10,2011,Bridget Jones: The Edge of Reason,I've Always Loved You,tt0317198\nMGwI25DNrHU,2004.0,10,10,2011,Bridget Jones: The Edge of Reason,Will You Marry Me?,tt0317198\ndwykptqZBj0,2004.0,8,10,2011,Bridget Jones: The Edge of Reason,Rebecca's Confession,tt0317198\nGTCKAy3buxo,2004.0,5,10,2011,Bridget Jones: The Edge of Reason,\"Bridget's \"\"Pregnant\"\" Pause\",tt0317198\nkDeUWLhm-0g,2004.0,7,10,2011,Bridget Jones: The Edge of Reason,First Class Rescue,tt0317198\nj6oHprwdTeA,2004.0,6,10,2011,Bridget Jones: The Edge of Reason,Turning Down The Job,tt0317198\nLIIzjJjsW8s,2004.0,4,10,2011,Bridget Jones: The Edge of Reason,Please Don't Chuck Me,tt0317198\nZ743dOLiGQI,2004.0,3,10,2011,Bridget Jones: The Edge of Reason,Shag Therapy,tt0317198\n4YZy2deJstI,2001.0,3,12,2011,Bridget Jones's Diary,Tarts and Vicars Party,tt0243155\nKusSGPyXugE,2001.0,8,12,2011,Bridget Jones's Diary,Not a Good Enough Offer,tt0243155\nmrx4SwMyGdQ,2004.0,1,10,2011,Bridget Jones: The Edge of Reason,You're On Speaker Phone,tt0317198\nMCXx5saaKOk,2001.0,11,12,2011,Bridget Jones's Diary,Mark Returns,tt0243155\nX3vQPmO3i7Y,2001.0,6,12,2011,Bridget Jones's Diary,The Fireman's Pole,tt0243155\nxfwBwk7k3Gs,2001.0,5,12,2011,Bridget Jones's Diary,Sticking it to Daniel,tt0243155\nF-LlyzCIG6I,2001.0,9,12,2011,Bridget Jones's Diary,Setting the Record Straight,tt0243155\ntcIaT5D4Iwc,2001.0,1,12,2011,Bridget Jones's Diary,Painfully Awful Speech,tt0243155\ndhPSvTyGSgs,2001.0,4,12,2011,Bridget Jones's Diary,Caught Cheating,tt0243155\nqNkP2Y5wme0,2001.0,2,12,2011,Bridget Jones's Diary,Mini-Break,tt0243155\noZu2JfM2Aq8,2001.0,7,12,2011,Bridget Jones's Diary,Just As You Are,tt0243155\np7cYf7GaXgY,2001.0,12,12,2011,Bridget Jones's Diary,Diary Discovery,tt0243155\ntiYXgCsoqaA,2001.0,10,12,2011,Bridget Jones's Diary,Bridget Speaks Up,tt0243155\n2vV-8TyFBTI,1991.0,10,11,2011,Backdraft,Stephen's Final Words,tt0101393\nBkvVBZwXVhg,1991.0,9,11,2011,Backdraft,That's My Brother,tt0101393\nPlBpNTEaRTI,1991.0,11,11,2011,Backdraft,Swayzak Is Served,tt0101393\ndjv5gGXEyXo,1991.0,7,11,2011,Backdraft,Who Doesn't Love Fire?,tt0101393\nqRnjswr1swo,1991.0,5,11,2011,Backdraft,Fire Is a Living Thing,tt0101393\npiOTzME87Dg,1991.0,8,11,2011,Backdraft,\"You Go, We Go\",tt0101393\n61XUb28jkUI,1991.0,3,11,2011,Backdraft,Ronald's Parole Hearing,tt0101393\nqqX1d64OcvI,1991.0,1,11,2011,Backdraft,Race Between Brothers,tt0101393\nmtkuDgE-qOI,1991.0,6,11,2011,Backdraft,Catching the Arsonist,tt0101393\nKrwlDh465HQ,1991.0,2,11,2011,Backdraft,Stephen the Hero,tt0101393\n_rGPOReLRzs,2008.0,6,10,2011,Stiletto,Break-Up Sex,tt1027747\nuXGr0rSGz0A,2008.0,4,10,2011,Stiletto,Don't Mess With the Russians,tt1027747\n5YqbUhVM6Jo,2008.0,7,10,2011,Stiletto,Motel Seduction,tt1027747\nbiFZVekspJ0,2008.0,10,10,2011,Stiletto,\"Two Men, One Gun\",tt1027747\n6xD1JRKscGM,2008.0,3,10,2011,Stiletto,Pretty Hot,tt1027747\nCXoJegmhbI4,2008.0,8,10,2011,Stiletto,Hate's a Good Thing,tt1027747\nqIEDFvdDbVo,2008.0,2,10,2011,Stiletto,Racing the Detective,tt1027747\nUlqSJeiOYPs,2008.0,9,10,2011,Stiletto,You Already Killed Me,tt1027747\nkal9JZpTFJ0,2008.0,1,10,2011,Stiletto,Raina's Revenge,tt1027747\n6vSWuFYVbE8,2010.0,3,-1,2011,The Imperialists Are Still Alive!,The Nail Salon,tt1423593\nEtTIxHlaue0,2010.0,2,-1,2011,The Imperialists Are Still Alive!,Guns,tt1423593\neLyhRYJXf1U,2000.0,11,11,2011,U-571,Sinking the Destroyer,tt0141926\n7U3F1uDBXrw,2000.0,10,11,2011,U-571,Destroy Me,tt0141926\nrJCltwaUrXI,2000.0,9,11,2011,U-571,Tyler's Plan,tt0141926\n3VKQkg9cpio,2000.0,4,11,2011,U-571,A Submarine Captain,tt0141926\n2ed_jTFrZkY,2000.0,1,11,2011,U-571,German U-Boat Attack,tt0141926\nVMU9Yos0mkk,2000.0,8,11,2011,U-571,Depth Charges,tt0141926\nK40Gt3dk1LY,2000.0,6,11,2011,U-571,Men in the Water,tt0141926\nmI3QaSoJado,2000.0,3,11,2011,U-571,Mission Briefing in Submarine,tt0141926\nfUlMUkd7IWU,2000.0,5,11,2011,U-571,Infiltrating the German Sub,tt0141926\nWjyJ_ZUEMEw,1978.0,4,8,2011,The Wiz,I'm a Mean Old Lion,tt0078504\nRHUbiL36yjo,2000.0,2,11,2011,U-571,\"She's Old, But She'll Hold\",tt0141926\nDHzx2P4x63c,1978.0,7,8,2011,The Wiz,If You Believe,tt0078504\npQT-QFy5Nig,1978.0,5,8,2011,The Wiz,No Bad News,tt0078504\n3r1ssg1LIt4,1978.0,1,8,2011,The Wiz,The Crow Anthem,tt0078504\ndslpHxTuA-w,1978.0,8,8,2011,The Wiz,Home,tt0078504\nIV79EIZVuHQ,2000.0,7,11,2011,U-571,The Skipper Always Knows,tt0141926\nzy8dUJEOqos,1978.0,6,8,2011,The Wiz,Everybody Rejoice,tt0078504\ndk3BfcWrx8c,1978.0,2,8,2011,The Wiz,Scarecrow Joins Dorothy,tt0078504\ntULIFKLFp_w,2001.0,4,10,2011,The Stickup,A Beautiful Mess,tt0307507\noGxBx8RzzrM,1978.0,3,8,2011,The Wiz,Ease on Down the Road,tt0078504\neLrwCyXUOLY,2001.0,8,10,2011,The Stickup,Shot in the Foot,tt0307507\nbIaFHqnx6ns,2001.0,9,10,2011,The Stickup,Forest Shootout,tt0307507\nVnrIuEa7ep4,2001.0,6,10,2011,The Stickup,Never Argue with Bank Robbers,tt0307507\n7n8QlEg1k8A,2001.0,10,10,2011,The Stickup,Love at First Sight,tt0307507\nWN_03KbkRdM,2001.0,7,10,2011,The Stickup,Cops as Robbers,tt0307507\n-YjwJY6m9k4,2001.0,2,10,2011,The Stickup,My Word's Good,tt0307507\nyTeJ-41Tl9E,2001.0,5,10,2011,The Stickup,Five-O in the Crib,tt0307507\nd-HW0aPbfIY,2001.0,1,10,2011,The Stickup,Come to My Place,tt0307507\n7MQUQQkzNSU,2001.0,3,10,2011,The Stickup,Clown Robs Bank,tt0307507\nQB91tB_5u88,1997.0,4,10,2011,The Jackal,Good Guys Don't Hide,tt0119395\nXdzp0AluNuQ,1997.0,2,10,2011,The Jackal,The Mission,tt0119395\nR1dILTUMJQI,1997.0,10,10,2011,The Jackal,Kneel Down Declan,tt0119395\nrJGOCtlPzUs,1997.0,3,10,2011,The Jackal,An F.B.I. Deal,tt0119395\nAA4zkmfbFD0,1997.0,6,10,2011,The Jackal,On the Docks,tt0119395\npyXdB_AYiDs,1997.0,5,10,2011,The Jackal,Target Practice,tt0119395\n0gBKE5MUiQc,1997.0,7,10,2011,The Jackal,Armed & Extremely Dangerous,tt0119395\nv3e2maV8MlQ,1997.0,8,10,2011,The Jackal,Assassination Attempt,tt0119395\nWEfVr2S8eo8,1997.0,9,10,2011,The Jackal,Subway Chase,tt0119395\nuBFxCK913PM,1985.0,3,10,2011,Out of Africa,Lions Attack Karen's Ox,tt0089755\n7Vl03BBrGEY,1997.0,1,10,2011,The Jackal,This is Russia,tt0119395\nAP2kX2vE_L8,1985.0,8,10,2011,Out of Africa,All Gone,tt0089755\nXb6svoM3UWE,1985.0,6,10,2011,Out of Africa,Karen Takes the Shot,tt0089755\n-NtpPdMGluE,1985.0,10,10,2011,Out of Africa,Karen Says Goodbye,tt0089755\nwYEn-ZKSg_I,1985.0,4,10,2011,Out of Africa,You Do Like to Change Things,tt0089755\nsRKtU9FF-8w,1985.0,2,10,2011,Out of Africa,Shoot Her!,tt0089755\nd8sDpSZeDBE,1985.0,5,10,2011,Out of Africa,Shampoo By the River,tt0089755\nj38t2lDi4GU,1985.0,7,10,2011,Out of Africa,A Glimpse of the World Through God's Eye,tt0089755\nAgic36OeXC0,1985.0,1,10,2011,Out of Africa,Karen Arrives at Her New Home,tt0089755\nDaMf1FF-iZ8,1985.0,9,11,2011,Legend,Lili Betrays Darkness,tt0089469\nJRpouK0KmWQ,1995.0,4,9,2011,Billy Madison,Billy Pees His Pants,tt0112508\nj91DsC7XvdQ,1985.0,9,10,2011,Out of Africa,He Was Not Mine,tt0089755\nIxjYJayuWoA,1985.0,5,11,2011,Legend,Flattering Meg Mucklebones,tt0089469\nU6iLlH0l-4Y,1985.0,11,11,2011,Legend,Jack Wakes Lili,tt0089469\nA9KjjvZE0Lo,1985.0,8,11,2011,Legend,I Want to Kill the Unicorn,tt0089469\ncAePzEGsP5U,1985.0,6,11,2011,Legend,Kissing Oona,tt0089469\nb2mm79vRuzA,1985.0,3,11,2011,Legend,Gump's Riddle,tt0089469\n8OTa_eNimUE,1985.0,2,11,2011,Legend,Diving for Lili's Ring,tt0089469\n5VMWNnFoi2g,1985.0,10,11,2011,Legend,Jack Defeats Darkness,tt0089469\nWEQOeQBpxvw,2002.0,8,10,2011,Far from Heaven,Frank Cheats on Cathy,tt0297884\nQB5379zBbtA,1985.0,4,11,2011,Legend,Jack the Champion,tt0089469\nX7futPJdeOg,1985.0,1,11,2011,Legend,A Mission for Blix,tt0089469\nKsk7wPX-MI4,1985.0,7,11,2011,Legend,Darkness Seduces Lili,tt0089469\n2wnVCoeCXbY,2002.0,10,10,2011,Far from Heaven,Frank Confesses to Cathy,tt0297884\nsHwRx4bc7fM,2002.0,7,10,2011,Far from Heaven,Frank Accuses Cathy,tt0297884\nFFtP2SGrQsk,2002.0,9,10,2011,Far from Heaven,Sarah is Attacked,tt0297884\nEbyOz1yJgYs,2002.0,5,10,2011,Far from Heaven,Who is that Man?,tt0297884\nkiW7cj162rE,2002.0,6,10,2011,Far from Heaven,The Only Man I've Ever Wanted,tt0297884\n1E7f6xOPL3A,2002.0,4,10,2011,Far from Heaven,Frank Begins Treatment,tt0297884\n4G7TTDEHl5o,1989.0,10,10,2011,Do the Right Thing,Destroying Sal's,tt0097216\nl84trT4b6yE,2002.0,3,10,2011,Far from Heaven,Frank Kisses A Man,tt0297884\nfbZelII-89A,2002.0,2,10,2011,Far from Heaven,Underground Bar,tt0297884\nuSNvF3CEzno,2002.0,1,10,2011,Far from Heaven,There's Someone in my Yard,tt0297884\nTQ4y7GPeFBY,1989.0,9,10,2011,Do the Right Thing,Fight the Power,tt0097216\nqru3WdOfj8s,1989.0,2,10,2011,Do the Right Thing,Da Mayor & Mother Sister,tt0097216\ncMNvYJ6O_Ks,1989.0,7,10,2011,Do the Right Thing,\"20 \"\"D\"\" Batteries\",tt0097216\nzeyaRxHhVu4,1989.0,8,10,2011,Do the Right Thing,No Nasty,tt0097216\npa-oUPTr9LI,1989.0,6,10,2011,Do the Right Thing,LOVE and HATE,tt0097216\nHbA1YOueC_A,1989.0,3,10,2011,Do the Right Thing,Boycott Sal's!,tt0097216\njc6_XgtOQgI,1989.0,4,10,2011,Do the Right Thing,Your Jordans Are F***ed Up!,tt0097216\ngLYTObRhcSY,1989.0,5,10,2011,Do the Right Thing,Racist Stereotypes,tt0097216\nba2VaalmijM,1995.0,9,9,2011,Billy Madison,Billy Wins the Decathlon,tt0112508\nYGeFi3Ap61E,1995.0,6,9,2011,Billy Madison,Billy's Musical,tt0112508\nwCL3OtOzYuQ,1989.0,1,10,2011,Do the Right Thing,Today's Forecast,tt0097216\nKIAzalQUui4,1995.0,2,9,2011,Billy Madison,Billy Mocks a Third Grader,tt0112508\naF3x3Bad2Wk,1995.0,7,9,2011,Billy Madison,Studying for the Decathlon,tt0112508\nB0vKK-4qJac,1995.0,8,9,2011,Billy Madison,The Academic Decathlon,tt0112508\n6vNGX3c03gM,1995.0,5,9,2011,Billy Madison,Billy's a Loser at High School,tt0112508\no7WSgC9oGic,1995.0,3,9,2011,Billy Madison,Billy Has a Cursive Problem,tt0112508\nwf-gIUYRCyk,1995.0,1,9,2011,Billy Madison,Billy at Dinner,tt0112508\nitHVWrhsRSc,1998.0,3,11,2011,Elizabeth,Speaks With Queen Mary,tt0127536\nZjPiVMyfJPs,2011.0,7,-1,2011,Green Lantern,Unprecedented Danger,tt1133985\nql_VifCJG7I,2011.0,6,-1,2011,Green Lantern,We're Going to Fly Now,tt1133985\nrukUxz5J7qg,2011.0,2,-1,2011,Green Lantern,Wingman Decoy,tt1133985\naHix4qGIYHI,2002.0,8,10,2011,Eye See You,Playing the Victim,tt0160184\nweCxCxIIjHA,2011.0,4,-1,2011,Green Lantern,Is That What I Think It Is?,tt1133985\nLOACsaFA_FY,2011.0,8,-1,2011,Green Lantern,The Parallax,tt1133985\neKLKoFIrXgg,2011.0,5,-1,2011,Green Lantern,The Oath,tt1133985\nmIZOUXRYVyE,2011.0,3,-1,2011,Green Lantern,The Ring Chose You,tt1133985\nT4mRbRYaf1Q,2002.0,10,10,2011,Eye See You,You See This!,tt0160184\nzWXZyd07k2Y,2011.0,1,-1,2011,Green Lantern,Let's Fly Some Planes,tt1133985\nuCjC3h_Gc5E,2002.0,9,10,2011,Eye See You,Time to Die,tt0160184\neE-FSOWD_ac,2002.0,5,10,2011,Eye See You,Doc's Dismissal,tt0160184\naUhex6wK5rI,2002.0,6,10,2011,Eye See You,I.C.U.,tt0160184\nPzZHiGYjhss,2002.0,2,10,2011,Eye See You,Chasing the Killer,tt0160184\n-OOTo2P1ivQ,2002.0,7,10,2011,Eye See You,Paranoid Standoff,tt0160184\nhBVvERsq-Kk,2007.0,8,8,2011,Remember the Daze,Life Sucks,tt0790618\nchDaFqJMDeM,2002.0,4,10,2011,Eye See You,Another Dead Patient,tt0160184\neevdCdOddZQ,2002.0,3,10,2011,Eye See You,Goin' to Rehab,tt0160184\nk5oJnFivwSM,2007.0,7,8,2011,Remember the Daze,First Time Babysitting,tt0790618\n3zsTC5aeypU,2007.0,4,8,2011,Remember the Daze,Can You Knock?,tt0790618\nTBiLIqhNiAM,2007.0,6,8,2011,Remember the Daze,Holla at Your Boy,tt0790618\ncb9FUUFtJmc,2007.0,5,8,2011,Remember the Daze,Secret Kiss,tt0790618\nvYyz6nq1mBE,2007.0,3,8,2011,Remember the Daze,Watch Your Language,tt0790618\nLaYpVhckcL8,2002.0,1,10,2011,Eye See You,You Won't See Me,tt0160184\nlnSoyix5fA0,2007.0,1,8,2011,Remember the Daze,Last Day of School,tt0790618\n4gAFIGnJ8zk,2007.0,2,8,2011,Remember the Daze,Get Out of Bed,tt0790618\nLGoKKhQPggM,1995.0,8,9,2011,Babe,The Sheep Pig,tt0112431\n0zHmeTeLgMY,1995.0,9,9,2011,Babe,That'll Do Pig,tt0112431\nMbFux7_RQpA,1995.0,7,9,2011,Babe,The Sheep Password,tt0112431\n83LNTbeatHE,1995.0,6,9,2011,Babe,A Dance for,tt0112431\nZ0pOWMHRgfI,1995.0,4,9,2011,Babe,\", the New Sheepdog\",tt0112431\noKXV-XQzUrY,1995.0,3,9,2011,Babe,Christmas Means Carnage,tt0112431\nU1v_Ed4QFC4,1995.0,2,9,2011,Babe,Ferdinand's Secret Mission,tt0112431\nKRBLeqsoRew,1995.0,1,9,2011,Babe,'s New Beginning,tt0112431\nCHnbS6ZthM4,1995.0,5,9,2011,Babe,Little Ideas,tt0112431\nnWWSMiBag1k,2004.0,10,10,2011,Along Came Polly,Reuben Proves His Wild Side,tt0343135\nJnBh7KBjgwM,2004.0,1,10,2011,Along Came Polly,Reuben and Lisa's Wedding,tt0343135\n2yhGVaVwceE,2004.0,7,10,2011,Along Came Polly,The Boy With a Nub for an Arm,tt0343135\nddGwvveSXxM,2004.0,5,10,2011,Along Came Polly,Praying to the Porcelain God,tt0343135\nC7ke6vWUu18,2004.0,4,10,2011,Along Came Polly,I'm Your Daddy,tt0343135\nenJJeOqHbqE,2004.0,3,10,2011,Along Came Polly,Sasquatch Basketball,tt0343135\nbMVWECam8EA,2004.0,6,10,2011,Along Came Polly,Stabbing the Pillows,tt0343135\nKOXE9k1TX-s,2004.0,2,10,2011,Along Came Polly,Urinal Chat,tt0343135\nuDffmOSVnBM,2004.0,8,10,2011,Along Came Polly,The Non-Plan Plan,tt0343135\nhJckGOSkTG0,2004.0,9,10,2011,Along Came Polly,Sandy's Big Speech,tt0343135\nHOpLncx62oY,1995.0,7,10,2011,Waterworld,The Bargain,tt0114898\nZgsJGHxZxcg,1995.0,9,10,2011,Waterworld,Death From Above,tt0114898\nLoSLZP0e-M4,1995.0,4,10,2011,Waterworld,Attack on the Atoll,tt0114898\nlZQF83kf-a4,1995.0,10,10,2011,Waterworld,Catch of the Day,tt0114898\norgbJEoA7ak,1995.0,5,10,2011,Waterworld,The Mariner Is Freed,tt0114898\nKOWckOfARBE,1995.0,8,10,2011,Waterworld,New Eye,tt0114898\nxy6Ak1DYReI,1995.0,3,10,2011,Waterworld,Sentenced to Be Recycled,tt0114898\n0zJpr-bB1sg,1995.0,6,10,2011,Waterworld,Atoll Escape,tt0114898\nVKFsmZhQWtg,1995.0,1,10,2011,Waterworld,Revenge at Sea,tt0114898\nFv9_YOL38MM,1995.0,2,10,2011,Waterworld,He's a Mutant!,tt0114898\nW6GjHSOtv6o,2004.0,4,10,2011,Perfect Opposites,\"Marriage, Kids, and Panic\",tt0259567\n0s0m7xO0S9A,2004.0,9,10,2011,Perfect Opposites,Pregnancy Test,tt0259567\ndxmqqCK2FaQ,2004.0,3,10,2011,Perfect Opposites,Meeting Monty Brandt,tt0259567\nAEMXmcWOnwU,2004.0,2,10,2011,Perfect Opposites,Come With Me,tt0259567\n03HGdrM25FA,2004.0,10,10,2011,Perfect Opposites,You Can't Marry This Guy,tt0259567\nGq75bSHMKPw,2004.0,7,10,2011,Perfect Opposites,You've Got Balls,tt0259567\nYpIkOtgOdbo,2004.0,8,10,2011,Perfect Opposites,Are You Not in Love With Me Anymore?,tt0259567\nZBLtiP24yTA,2004.0,6,10,2011,Perfect Opposites,That Monogamy Thing,tt0259567\n53GIt1w0LYY,2004.0,1,10,2011,Perfect Opposites,The First Date,tt0259567\n31KYorrCgag,2004.0,5,10,2011,Perfect Opposites,Pussy Comma Cat,tt0259567\nsT-wJhtlMGs,2002.0,9,9,2011,Blue Crush,Anne Marie's Second Run,tt0300532\naRmaCLDJ8Xk,2002.0,8,9,2011,Blue Crush,First Pipeline Run,tt0300532\nFFkQN5DyvXU,2002.0,5,9,2011,Blue Crush,The Wives Talk Trash,tt0300532\nmwAlagYhRV8,2002.0,7,9,2011,Blue Crush,Pipe Masters Begins,tt0300532\nHKXId9qgGfQ,2002.0,6,9,2011,Blue Crush,What Do You Want?,tt0300532\nZTVR1PCRopA,2002.0,1,9,2011,Blue Crush,Slammed by the Pipe,tt0300532\n3tSWRJ3j9fs,2002.0,4,9,2011,Blue Crush,Eden Breaks It Down,tt0300532\nCOGBbUM8F14,2002.0,3,9,2011,Blue Crush,Broken Board,tt0300532\nPNJ_FxaMYUw,2002.0,2,9,2011,Blue Crush,Schooled by the Maid,tt0300532\nYjs3BLAsvOc,1999.0,11,12,2011,American Pie,Sherman Wets Himself,tt0163651\nFdxUNsKZ4T8,1999.0,12,12,2011,American Pie,Stifler's Mom,tt0163651\nbQWaXlsdyko,1999.0,10,12,2011,American Pie,Finch Has Diarrhea,tt0163651\nsKfQGRwlm9Q,1999.0,8,12,2011,American Pie,Nadia on the Web Cam,tt0163651\n2IwV2bHqqyg,1999.0,5,12,2011,American Pie,Sex-Educated By Dad,tt0163651\nMH619vxtNdo,1999.0,9,12,2011,American Pie,One Time at Band Camp,tt0163651\n8sClW0qW9LA,1999.0,7,12,2011,American Pie,Jim Wants a Partner,tt0163651\nRESwG23_YGw,1999.0,9,10,2011,Notting Hill,Just a Girl,tt0125439\nMvzZbUKxNdc,1999.0,4,12,2011,American Pie,Masters of Our Sexual Destiny,tt0163651\ncgXTRSSX3cc,1999.0,3,12,2011,American Pie,Wild Thing,tt0163651\nNCAOKR1jpp0,1999.0,6,12,2011,American Pie,Warm Apple Pie,tt0163651\nBXqeQxRvQGY,1999.0,1,12,2011,American Pie,Penis Tube Sock,tt0163651\nzStjjc7SBto,1999.0,2,12,2011,American Pie,\"Suck Me, Beautiful\",tt0163651\n3F8oJh3J1T0,1999.0,8,10,2011,Notting Hill,Friendly Banter,tt0125439\nhZ8PfLIc8MI,1999.0,5,10,2011,Notting Hill,Best Friends Already,tt0125439\nJexO-N39Nzg,1999.0,6,10,2011,Notting Hill,What Do You Do?,tt0125439\nPTjIRQU_HdM,1999.0,7,10,2011,Notting Hill,Brownie Contest,tt0125439\n_6O2sYLkuO4,1999.0,3,10,2011,Notting Hill,A Spontaneous Kiss,tt0125439\n-xQ5nH_-yyQ,1999.0,4,10,2011,Notting Hill,Questions & Apologies,tt0125439\nArlsU2_cUbg,1999.0,1,10,2011,Notting Hill,Can I Have Your Autograph?,tt0125439\nkxBu82Dte10,1999.0,2,10,2011,Notting Hill,William Runs Into Anna,tt0125439\n6WWdim-OLok,2004.0,9,10,2011,The Grudge,No Escape,tt0391198\nT59ufBxosHI,2004.0,8,10,2011,The Grudge,Drowned in a Bath Tub,tt0391198\nFypw_s62Q0s,2004.0,7,10,2011,The Grudge,Yoko Returns,tt0391198\nuI8lzoeTASI,2004.0,6,10,2011,The Grudge,Apartment Hauntings,tt0391198\nz1cXKdmKuV0,2004.0,5,10,2011,The Grudge,Staircase Encounter,tt0391198\nuJPI1qu9bE4,1999.0,10,10,2011,Notting Hill,The Wrong Decision,tt0125439\ngI7UY6YCAoE,2004.0,3,10,2011,The Grudge,Trapped in a Closet,tt0391198\ndfrZp14tFjA,2004.0,1,10,2011,The Grudge,Unsuspecting Suicide,tt0391198\nmgU73GKlSFw,2004.0,10,10,2011,The Grudge,Final Fright,tt0391198\nP653N6uf3Y8,2011.0,1,-1,2011,The Art Of Getting By,The Moment to Decide Your Future,tt1645080\n2elellCQiAE,2011.0,3,-1,2011,The Art Of Getting By,Rules of Cutting School,tt1645080\nbPavpV1D-g8,2011.0,4,-1,2011,The Art of Getting By,Together.,tt1645080\nyiRcSZp7tYg,2004.0,2,10,2011,The Grudge,Yoko Is Attacked,tt0391198\n4iW0kneOMyw,2004.0,4,10,2011,The Grudge,New Tenants,tt0391198\nmFglGV3n5SM,2006.0,7,12,2011,The Fast and the Furious: Tokyo Drift,Racing Through Tokyo,tt0463985\nfvoNncvOHfc,2006.0,12,12,2011,The Fast and the Furious: Tokyo Drift,Sean Beats D.K.,tt0463985\nkvVlP50LSq8,2006.0,11,12,2011,The Fast and the Furious: Tokyo Drift,The Mountain Race,tt0463985\nKjv-HBYitgk,2006.0,9,12,2011,The Fast and the Furious: Tokyo Drift,Building the Car,tt0463985\nZml7qQpL8Yo,2006.0,8,12,2011,The Fast and the Furious: Tokyo Drift,The End of Han,tt0463985\n926SVUFeJ94,2006.0,10,12,2011,The Fast and the Furious: Tokyo Drift,The Race Begins,tt0463985\nqOKE4dxjayU,2006.0,4,12,2011,The Fast and the Furious: Tokyo Drift,Drifting with Neela,tt0463985\nUbTBbTDjjHI,2006.0,3,12,2011,The Fast and the Furious: Tokyo Drift,Mastering The Drift,tt0463985\nY29DgVgmE2M,2006.0,6,12,2011,The Fast and the Furious: Tokyo Drift,Morimoto Bites the Dust,tt0463985\nszpq76d4ipk,2006.0,5,12,2011,The Fast and the Furious: Tokyo Drift,Out of the Garage,tt0463985\nyElIQDAEtOg,2005.0,5,10,2011,Pride & Prejudice,Offending Lady Catherine,tt0414387\niMP3uLZl6UE,2006.0,2,12,2011,The Fast and the Furious: Tokyo Drift,Collecting From Paw,tt0463985\ns-EheX9m-dE,2006.0,1,12,2011,The Fast and the Furious: Tokyo Drift,Pre-race Tussle,tt0463985\nbFsgLhx9dxg,2005.0,10,10,2011,Pride & Prejudice,You Have Bewitched Me,tt0414387\nONaPfzjl8qc,2005.0,9,10,2011,Pride & Prejudice,Lady Catherine's Interrogation,tt0414387\nz9SXvUdM_iw,2005.0,3,10,2011,Pride & Prejudice,Elizabeth and Darcy's Dance,tt0414387\nLHv4eHp_gUM,2005.0,2,10,2011,Pride & Prejudice,Miserable Mr. Darcy,tt0414387\nDZqOhS2M-DU,2005.0,8,10,2011,Pride & Prejudice,Visiting Darcy's Estate,tt0414387\nlhbHTjMLN5c,1983.0,10,11,2011,The Meaning of Life,Mr. Creosote Blows,tt0085959\nDNZ5NXKtdxs,2005.0,6,10,2011,Pride & Prejudice,Last Man in the World,tt0414387\n8U56CTlGkx8,2005.0,7,10,2011,Pride & Prejudice,A Letter to Elizabeth,tt0414387\n9yEylIfDkms,2005.0,4,10,2011,Pride & Prejudice,Refusing Mr. Collins,tt0414387\nVSMKvHRbHC8,2005.0,1,10,2011,Pride & Prejudice,Mr. Bingley's Single,tt0414387\nQbnv6eHKjCQ,1983.0,2,11,2011,The Meaning of Life,The Miracle of Birth,tt0085959\neyCCuHC08bY,1983.0,5,11,2011,The Meaning of Life,Goodbye Gifts on the Battlefield,tt0085959\nucgU2DJlBiw,1983.0,6,11,2011,The Meaning of Life,Would Rather Be Elsewhere,tt0085959\nPDBjsFAyiwA,1983.0,4,11,2011,The Meaning of Life,Protestants and French Ticklers,tt0085959\nWQEkAbLJ5L8,1983.0,1,11,2011,The Meaning of Life,What's It All About?,tt0085959\nkLNdMY1JlR0,1983.0,8,11,2011,The Meaning of Life,The Penis Song,tt0085959\ng8fheDIG_RA,1983.0,3,11,2011,The Meaning of Life,Every Sperm Is Sacred,tt0085959\nZx0ME65y72E,1983.0,9,11,2011,The Meaning of Life,A Bucket for Monsieur,tt0085959\nkntQNeSge5s,1983.0,11,11,2011,The Meaning of Life,It's Christmas In Heaven,tt0085959\nUGBZnfB46es,1983.0,7,11,2011,The Meaning of Life,Find The Fish,tt0085959\nQXFR1L_gOg8,1999.0,6,10,2011,Mystery Men,Superhero Auditions,tt0132347\n6HJqPZ-KmZs,2009.0,5,10,2011,A Serious Man,The Uncertainty Principle,tt1019452\nOS2udCdOuqA,2006.0,2,11,2011,Inside Man,A Very Large Withdrawal,tt0454848\npFriRcIwqNU,1992.0,2,10,2011,Army of Darkness,This Is My Boomstick!,tt0106308\nB4zWUki6-WE,2008.0,2,10,2011,Milk,My Fellow Degenerates,tt1013753\nNW2QM6c1wAI,1999.0,3,10,2011,The Mummy,Evelyn Saves Rick's Life,tt0120616\n6nX0100wUB0,2001.0,11,11,2011,The Mummy Returns,Defeat of the Scorpion King,tt0209163\nuNE1lEBsBmM,2008.0,5,12,2011,Death Race,You Can't Kill Me,tt0452608\nPdi_kASSsJs,1977.0,9,10,2011,Slap Shot,Old-Time Hockey,tt0076723\n1kejVGS-5q0,1988.0,7,10,2011,Twins,A New Look,tt0096320\nJzOSF71-kl4,2003.0,4,-1,2011,21 Grams,It's Different Now,tt0315733\n3tfI9tTzlI0,2009.0,3,10,2011,A Serious Man,The Columbia Record Club,tt1019452\nm9rBv4Dn3Bk,1999.0,5,10,2011,Mystery Men,Silent and Deadly,tt0132347\nXFC2o44koIA,1999.0,9,10,2011,Mystery Men,Rallying the Team,tt0132347\nlkq-Fd9TU8k,2009.0,2,10,2011,A Serious Man,The Junior Rabbi,tt1019452\neKeTSR1yYfY,1999.0,7,10,2011,Mystery Men,Confronting Casanova,tt0132347\nVUG-5kLRjeY,1999.0,3,10,2011,Mystery Men,Mr. Furious Holds Back,tt0132347\nq7vtWB4owdE,1978.0,9,10,2011,Animal House,Bluto's Big Speech,tt0077975\nH1JCgM_LHAg,1998.0,10,10,2011,Half Baked,Thurgood Wears a Wire,tt0120693\ndHPnUPFcxdE,1998.0,6,10,2011,Half Baked,A Cheap Date With Mary Jane,tt0120693\nWtdVnmI_nYM,1999.0,3,10,2011,Arlington Road,Oliver Gets Too Personal,tt0137363\nKsGS0BJ49LQ,1999.0,5,10,2011,Arlington Road,You Don't Know Me,tt0137363\n_1F59-J8Iwg,2010.0,4,-1,2011,Ceremony,My Greatest Achievement,tt1341341\ns4heu0mPm-I,2010.0,1,-1,2011,The Imperialists Are Still Alive!,Outside the Benefit,tt1423593\ncLApJ5OJaLg,2010.0,2,-1,2011,Ceremony,I Like You the Way You Are,tt1341341\nXjC8-nEGnrE,2008.0,6,11,2011,The Other Boleyn Girl,Love Is of No Value,tt0467200\niGig4Dk3tXc,2010.0,1,-1,2011,Ceremony,What Kind of Dragon Do I Have to Slay?,tt1341341\naoPKajvq3gE,1984.0,9,9,2011,Dune,I Will Kill Him!,tt0087182\nkvhcXo9QzqQ,2010.0,1,-1,2011,All Good Things,Isn't That Great?,tt1175709\n8rsx2IP3HWY,2010.0,4,-1,2011,All Good Things,When Did She Pass Away?,tt1175709\nmWblxPany0E,2010.0,6,-1,2011,All Good Things,You Have to Let Me Go,tt1175709\n4t2pP2KLlgU,2010.0,5,-1,2011,All Good Things,Your Card Was Declined,tt1175709\n1YBkXbf8dg0,2010.0,2,-1,2011,All Good Things,Meeting David's Dad,tt1175709\nD1Sh5qIqc7Y,2010.0,3,-1,2011,All Good Things,The New House,tt1175709\nTQeP6GWU0e4,1984.0,7,9,2011,Dune,The Weirding Way,tt0087182\nBj7R_2WWdKs,1984.0,8,9,2011,Dune,Riding the Sandworm,tt0087182\ng5e3qoREpuA,1990.0,10,10,2011,Tremors,\"Can You Fly, You Sucker?\",tt0100814\nmWq15lDh8yM,1984.0,4,9,2011,Dune,Baron Harkonnen,tt0087182\nbIVzK-h6qao,1984.0,6,9,2011,Dune,Hunter-Seeker,tt0087182\n1G5jMgx8GVU,1984.0,5,9,2011,Dune,Sandworm Attack,tt0087182\nAGqdE1NdMTg,1984.0,1,9,2011,Dune,The Guild Navigator,tt0087182\nCfAS7ONO8OU,1990.0,5,10,2011,Tremors,Pole Vault to Safety,tt0100814\nkJsYKhEV6o0,1984.0,3,9,2011,Dune,Fear Is the Mind Killer,tt0087182\nqFNBUs7O-h4,1990.0,8,10,2011,Tremors,The Wrong Rec Room,tt0100814\nu9O_Xs8wAZk,1990.0,6,10,2011,Tremors,Get Off the Pogo Stick!,tt0100814\nmbKEarx9CCs,1990.0,2,10,2011,Tremors,Old Fred's Flock,tt0100814\nLwbFwVf8yoE,1990.0,4,10,2011,Tremors,They're Under the Ground,tt0100814\nKYUolurihOQ,1984.0,2,9,2011,Dune,Shield Practice,tt0087182\nb5I94bT23cQ,1999.0,8,10,2011,Mystery Men,Superhero Training,tt0132347\nY3kXNEX1Ghs,1990.0,7,10,2011,Tremors,Grabbing Walter,tt0100814\n7bFi99Kojrc,1990.0,1,10,2011,Tremors,Edgar on the Tower,tt0100814\n9DJWMVR_yfM,1999.0,1,10,2011,Mystery Men,Dinner Full of Bicker,tt0132347\nFfdJdZ5_guM,1999.0,10,10,2011,Mystery Men,Mr. Furious Gets Mad,tt0132347\nkFhIMrW1Yk4,1990.0,3,10,2011,Tremors,Bloody Jackhammer,tt0100814\nJuhTQwzizDI,1999.0,2,10,2011,Mystery Men,Capturing Captain Amazing,tt0132347\naDFJMSlmxBg,1999.0,4,10,2011,Mystery Men,Captain Amazing's Idea,tt0132347\n7pDEOCYPRf4,2010.0,2,-1,2011,Vanishing on 7th Street,Plane Crash,tt1452628\nf276MnhGqGg,2010.0,2,-1,2011,Somewhere,You Look Great,tt1421051\nV80rHpEZCl0,2010.0,1,-1,2011,Vanishing on 7th Street,Everyone's Gone,tt1452628\nYjQP7xc5P8Y,2010.0,3,-1,2011,Somewhere,I Do All My Own Stunts,tt1421051\n3-fzc0e4dD0,2010.0,4,-1,2011,Vanishing on 7th Street,Hospital Visit,tt1452628\nWSyi9bIVryk,2010.0,3,-1,2011,Vanishing on 7th Street,Light's Out,tt1452628\nF5eqkWRWZ7c,1931.0,8,10,2011,Dracula,\"Rats, Rats, Rats!\",tt0021814\nfOgpQEngn0c,2010.0,1,-1,2011,Somewhere,You're Really Good,tt1421051\nBzb3rASU-pM,1931.0,9,10,2011,Dracula,and Van Helsing,tt0021814\ndTr8dXob7YI,1931.0,7,10,2011,Dracula,and Mina,tt0021814\nuvIZ4ST6HqE,2009.0,7,10,2011,A Serious Man,I Am Not An Evil Man!,tt1019452\nSAPKjWHikzM,2009.0,9,10,2011,A Serious Man,The Bar Mitzvah,tt1019452\no_N-H_5Pvu8,1931.0,4,10,2011,Dracula,Children of the Night,tt0021814\nKjDfOAhtWwo,1931.0,3,10,2011,Dracula,Renfield Meets,tt0021814\nuyj1CeZt23A,2009.0,4,10,2011,A Serious Man,Hardly a Crime,tt1019452\nTQSMmwQyEjk,2009.0,1,10,2011,A Serious Man,Living Arrangements,tt1019452\nF9b76RWM7qE,1931.0,6,10,2011,Dracula,Why Eat Flies When You Can Have Spiders?,tt0021814\n665wQwXkq6M,1931.0,10,10,2011,Dracula,They're All Crazy,tt0021814\nK5IU4bPS_S8,1990.0,9,10,2011,Tremors,Lassoing the Bait,tt0100814\nTq8robO5eJ0,1931.0,5,10,2011,Dracula,Gets Thirsty,tt0021814\nYSmSuiMNbDI,1931.0,2,10,2011,Dracula,'s Wives Awaken,tt0021814\nsbz_Xq2aEQQ,1931.0,1,10,2011,Dracula,You Mustn't Go There,tt0021814\nSGzmYFcravM,2009.0,6,10,2011,A Serious Man,Serious as a Heart Attack,tt1019452\nb8U1na74Bcc,2009.0,10,10,2011,A Serious Man,Impending Storm,tt1019452\naQQsBjOrNMY,2009.0,8,10,2011,A Serious Man,Not a Frivolous Request,tt1019452\nP90noIrmLZg,2006.0,11,11,2011,Inside Man,\"Who, When, Why, and How\",tt0454848\nj1C0Tw80Fgk,2006.0,7,11,2011,Inside Man,Dalton Gives Frazier a Riddle,tt0454848\nsYNUp5rAZJo,2006.0,6,11,2011,Inside Man,Get Rich Or Die Tryin',tt0454848\nK-xthcJWXn0,2006.0,4,11,2011,Inside Man,Vikram's Questioning,tt0454848\n4disuwEvw-w,2006.0,3,11,2011,Inside Man,Anyone Else Here Smarter Than Me?,tt0454848\nuzgQ_xwWlkQ,2006.0,10,11,2011,Inside Man,The Hostages Are Released,tt0454848\nqCv3989nvog,2006.0,9,11,2011,Inside Man,Shoot Me,tt0454848\nTm3raIkeseE,2007.0,7,10,2011,I Now Pronounce You Chuck & Larry,Sleeping in the Same Bed,tt0762107\nJB9rdCKgGuo,2006.0,5,11,2011,Inside Man,Questioning the Witnesses,tt0454848\nNE0ne430gbA,2006.0,1,11,2011,Inside Man,Therein Lies the Rub,tt0454848\nJc3GBDJ2sK0,2007.0,5,10,2011,I Now Pronounce You Chuck & Larry,Chuck and Larry Get Married,tt0762107\nsUv04cGjaDI,2007.0,1,-1,2011,Elizabeth: The Golden Age,I Have Failed You,tt0414055\nofYq-2TXzTs,2007.0,4,-1,2011,Elizabeth: The Golden Age,Treasonous Mary,tt0414055\nCMvdeSxmPKg,2007.0,3,-1,2011,Elizabeth: The Golden Age,Could You Have Loved Me?,tt0414055\ntrGyimjcGRI,2006.0,8,11,2011,Inside Man,Crossing the Line,tt0454848\nTTX3bYbKAl0,2007.0,10,10,2011,I Now Pronounce You Chuck & Larry,Duncan Comes Out to Chuck,tt0762107\nhOz9L1KrJJY,2001.0,8,10,2011,The Fast and the Furious,Drive-by Shooting Scene,tt0232500\nWSUWoBeJ6dg,2007.0,2,-1,2011,Elizabeth: The Golden Age,We Mortals,tt0414055\nseMHoTTskQc,2007.0,6,10,2011,I Now Pronounce You Chuck & Larry,Chuck Moves In,tt0762107\nK-cBT5AxRrg,2007.0,8,10,2011,I Now Pronounce You Chuck & Larry,Career Day Fights,tt0762107\nisBwMtlWLeE,2007.0,9,10,2011,I Now Pronounce You Chuck & Larry,Real & Creamy,tt0762107\nUmmXGbFASC0,2001.0,9,10,2011,The Fast and the Furious,Chasing the Killers Scene,tt0232500\nSu5vMTdI0yY,2007.0,3,10,2011,I Now Pronounce You Chuck & Larry,\"The \"\"Gay Inspector\"\"\",tt0762107\nzdja5DSb2O8,2007.0,4,10,2011,I Now Pronounce You Chuck & Larry,Wedding Preparations,tt0762107\nxw13vA86I-I,2007.0,1,10,2011,I Now Pronounce You Chuck & Larry,Saving the Fat Man,tt0762107\nB4xzP6H_N1E,2001.0,7,10,2011,The Fast and the Furious,Brian Blows His Cover Scene,tt0232500\nkLJCWb1apYo,2001.0,6,10,2011,The Fast and the Furious,Jesse Races Tran Scene,tt0232500\nDwnkxpu0l3c,2007.0,2,10,2011,I Now Pronounce You Chuck & Larry,An Awkward Proposal,tt0762107\n6hxOoM0-NJI,2001.0,3,10,2011,The Fast and the Furious,Meet Johnny Tran Scene,tt0232500\nWtnTZSJndPc,2001.0,4,10,2011,The Fast and the Furious,10 Seconds or Less Scene,tt0232500\nnfV87TgYH78,2001.0,10,10,2011,The Fast and the Furious,Brian Races Dominic Scene,tt0232500\npB-bN-RkJLM,2001.0,2,10,2011,The Fast and the Furious,Winning's Winning Scene,tt0232500\npZZ60jrw6cg,2001.0,1,10,2011,The Fast and the Furious,The Night Race Scene,tt0232500\nsBDEE3_Z-cw,2001.0,5,10,2011,The Fast and the Furious,Race Wars Scene,tt0232500\npX71mALOPKs,1978.0,10,10,2011,Animal House,Enter the Deathmobile,tt0077975\nDZN4r8p6KbU,1978.0,5,10,2011,Animal House,Bluto's a Zit,tt0077975\nFMENQeCbxfI,1978.0,2,10,2011,Animal House,A Real Zero,tt0077975\n18eaNSxhK5c,1978.0,6,10,2011,Animal House,Toga! Toga!,tt0077975\n0Dy2fo6E_pI,1978.0,3,10,2011,Animal House,Only We Can Do That to Our Pledges,tt0077975\nUKMuVFz3MOQ,1978.0,8,10,2011,Animal House,Finished at Faber,tt0077975\nROxvT8KKdFw,1978.0,7,10,2011,Animal House,Deltas on Trial,tt0077975\nEtSPFXj_eZM,1978.0,4,10,2011,Animal House,Flounder Gets Even,tt0077975\nsarN01WcuZY,1999.0,10,10,2011,Arlington Road,Michael is Blamed,tt0137363\n1tfK_3XK4CI,1978.0,1,10,2011,Animal House,Double Secret Probation,tt0077975\nZJOTrLdxCPE,1999.0,9,10,2011,Arlington Road,The Bomb Goes Off,tt0137363\nnJ98f7z14WI,1999.0,8,10,2011,Arlington Road,Michael Fights Oliver,tt0137363\nSgwBAXfvdFE,1999.0,7,10,2011,Arlington Road,How Many People Are You Going to Kill?,tt0137363\nj7EvXsSJHQc,1999.0,4,10,2011,Arlington Road,How's the Hunting?,tt0137363\n1tBCcfkkDKo,1998.0,9,10,2011,Half Baked,Robbing the Weed Lab,tt0120693\nO6ZWqQ53cJM,1999.0,6,10,2011,Arlington Road,What Are You Doing Here?,tt0137363\nEUtdnTk7wIE,1999.0,2,10,2011,Arlington Road,Safety and Security,tt0137363\nH0AnJKKwhQ0,1998.0,7,10,2011,Half Baked,Scarface Quits & Brian Gets Fired,tt0120693\nBROZYppqsf8,1999.0,1,10,2011,Arlington Road,The Injured Boy,tt0137363\nXLScUvabSr4,1998.0,5,10,2011,Half Baked,Scarface's Plan,tt0120693\noh3KwtatlkY,1998.0,3,10,2011,Half Baked,Thurgood Asks Out Mary Jane,tt0120693\nuUPHlAbAf2I,1998.0,8,10,2011,Half Baked,Thurgood Goes to Rehab,tt0120693\nGDHVi3h6ZXw,1998.0,4,10,2011,Half Baked,Thurgood Gets Some Medical Marijuana,tt0120693\nN3ug0dVCyeE,1998.0,2,10,2011,Half Baked,Killing a Diabetic Horse,tt0120693\nSM0CkReuGMQ,1998.0,1,10,2011,Half Baked,Kenny's Munchie Run,tt0120693\ny8MWkDexzRQ,2000.0,2,9,2011,How the Grinch Stole Christmas,Baby Grinch,tt0170016\nLxuqbh2tjTs,2000.0,7,9,2011,How the Grinch Stole Christmas,What's Christmas Really About?,tt0170016\nc8m6M4RV8p0,2000.0,6,9,2011,How the Grinch Stole Christmas,\"You're a Mean One, Mr. Grinch\",tt0170016\nhE3jShGPscQ,2000.0,9,9,2011,How the Grinch Stole Christmas,The Grinch Finally Cares,tt0170016\nBVrhE9NOwww,1996.0,2,10,2011,Barb Wire,How Romantic,tt0115624\np8J-YmVs1j0,2000.0,8,9,2011,How the Grinch Stole Christmas,His Heart Grows Three Sizes,tt0170016\nC_4LmbuSmpI,2000.0,5,9,2011,How the Grinch Stole Christmas,\"Oh, the Whomanity!\",tt0170016\n0mGmEE20CR0,2000.0,1,9,2011,How the Grinch Stole Christmas,The Grinch and Whovenile Delinquents,tt0170016\n0lq1JIWQSlc,2000.0,3,9,2011,How the Grinch Stole Christmas,I Hate Christmas,tt0170016\neFs_YLy3Ld8,1996.0,10,10,2011,Barb Wire,The Beginning of a Beautiful Friendship,tt0115624\nnBmNcy4zZNU,2000.0,4,9,2011,How the Grinch Stole Christmas,Kids Today,tt0170016\ncKewmzrevAw,1996.0,7,10,2011,Barb Wire,Big Fatso,tt0115624\nct-PElgfWJY,1996.0,8,10,2011,Barb Wire,Escape from Steel Harbor,tt0115624\nH6XIREQHU8M,1996.0,1,10,2011,Barb Wire,Not a Bad Night's Work,tt0115624\nn9L9jMlulXI,1996.0,5,10,2011,Barb Wire,Package Check,tt0115624\nVVp0l2Vas2I,1996.0,3,10,2011,Barb Wire,Don't Call Me Babe,tt0115624\nWs7Uj5D6354,1996.0,4,10,2011,Barb Wire,Extortion,tt0115624\nLSEkG5z7Il4,1996.0,9,10,2011,Barb Wire,\"I Got You, Babe\",tt0115624\n8ARqfD6Wm3E,1996.0,6,10,2011,Barb Wire,Trashing the Bar,tt0115624\nlxOV0MYBpeI,2003.0,1,10,2011,Love Actually,\"Colin, God of Sex\",tt0314331\n_ghkHlthIqM,2003.0,8,10,2011,Love Actually,All I Want for Christmas is You,tt0314331\nnKdSvhCg3VY,2003.0,10,10,2011,Love Actually,Jamie Proposes to Aurelia,tt0314331\n2KtVKu9CfDA,2003.0,6,10,2011,Love Actually,Christmas Cards for Juliet,tt0314331\n-EuO6OFypLo,2003.0,7,10,2011,Love Actually,The Love of My Life,tt0314331\nUCjoOOrgVMM,2003.0,9,10,2011,Love Actually,Sam Runs After Joanna,tt0314331\nwF_UpYqYJuY,2008.0,11,11,2011,The Other Boleyn Girl,The Execution of Anne Boleyn,tt0467200\n3XK2wqc1cr8,2008.0,3,11,2011,The Other Boleyn Girl,For My Good?,tt0467200\nZxpXrz-nEdw,2008.0,9,11,2011,The Other Boleyn Girl,To Pass Judgment,tt0467200\npkfyn6mYlCg,2008.0,5,11,2011,The Other Boleyn Girl,Indecent Proposal,tt0467200\nwzIwPkZkSTk,2008.0,10,11,2011,The Other Boleyn Girl,One Half of Me,tt0467200\nxX08f3GV3v8,2008.0,7,11,2011,The Other Boleyn Girl,The Boleyn Whores,tt0467200\nOksadMMuXQ8,2008.0,9,10,2011,The Mummy: Tomb of the Dragon Emperor,Yuan v. Han,tt0859163\nTY2PGciqbg8,2008.0,2,11,2011,The Other Boleyn Girl,A Royal Seduction,tt0467200\nNTaSvSldlk0,2008.0,8,10,2011,The Mummy: Tomb of the Dragon Emperor,Undead Armies Clash,tt0859163\nKyh3foJVk2k,2008.0,8,11,2011,The Other Boleyn Girl,I Cannot Bear Children,tt0467200\nok_8VGksYow,2008.0,1,11,2011,The Other Boleyn Girl,Caring for the King,tt0467200\nGiRyIbJ7IFg,2008.0,10,10,2011,The Mummy: Tomb of the Dragon Emperor,The Emperor Is Dead,tt0859163\n9wr10j2nUJ4,2008.0,4,11,2011,The Other Boleyn Girl,Looking for a Great Man,tt0467200\nyVcieIZb3_U,2003.0,2,10,2011,Love Actually,Festering Turd of a Record,tt0314331\ngKY3ShRZPkA,2008.0,2,10,2011,The Mummy: Tomb of the Dragon Emperor,Bite On This!,tt0859163\n5ITNMF0kSn8,2008.0,6,10,2011,The Mummy: Tomb of the Dragon Emperor,Same Mummy... Twice!,tt0859163\nPQ-8JIzjq_I,2008.0,5,10,2011,The Mummy: Tomb of the Dragon Emperor,A Bumpy Landing,tt0859163\nHTE6S6x8ixA,2008.0,7,10,2011,The Mummy: Tomb of the Dragon Emperor,Yeti Attack,tt0859163\n0wsXkU-Crjw,2000.0,8,10,2011,Traffic,\"Hi, Daddy\",tt0181865\nJbrBIbtupp8,2008.0,3,10,2011,The Mummy: Tomb of the Dragon Emperor,tt0140864,tt0859163\nDxguAU_KxS8,2008.0,1,10,2011,The Mummy: Tomb of the Dragon Emperor,The Curse of the Dragon Emperor,tt0859163\nE41tGRgKxNk,2000.0,10,10,2011,Traffic,Planting a Bug,tt0181865\n06KH47jZbG0,2000.0,5,10,2011,Traffic,Assassination Attempt,tt0181865\n1z6MvVWZfuc,2008.0,4,10,2011,The Mummy: Tomb of the Dragon Emperor,The Dragon Emperor Resurrected,tt0859163\nJjRx9IJSTMw,2000.0,7,10,2011,Traffic,Drug Economics,tt0181865\n8prXNxNfEpY,2000.0,6,10,2011,Traffic,A Desert Killing,tt0181865\ng9Znovljrq8,2000.0,1,10,2011,Traffic,General Salazar Pulls Rank,tt0181865\nzy0HtNZgbjY,2000.0,9,10,2011,Traffic,Your Whole Life Is Pointless,tt0181865\n6U6MOfuFX-Q,2000.0,4,10,2011,Traffic,Conspiring to Conspire,tt0181865\nLkxbuqvb5A4,2000.0,3,10,2011,Traffic,Addicts Don't Vote,tt0181865\nDsugPaXH4kA,2003.0,4,10,2011,Love Actually,Jamie and Aurelia Go Swimming,tt0314331\n6_6Ml7hPZi0,2000.0,2,10,2011,Traffic,A Drug Bust Shootout,tt0181865\ncfNzZre-sIU,2003.0,5,10,2011,Love Actually,Would You Like It Gift Wrapped?,tt0314331\nmzNUbT2sQT4,1989.0,9,10,2011,Uncle Buck,So Much For Promises,tt0098554\nJOBYJrVQm3A,1989.0,6,10,2011,Uncle Buck,\"Happy Birthday, Miles\",tt0098554\nOA-FmsSdSMY,1989.0,1,10,2011,Uncle Buck,Here Comes Buck,tt0098554\nxEt5dEOcW0I,1989.0,8,10,2011,Uncle Buck,Moley Russel's Wart,tt0098554\n9sWnQ8y_M6A,1989.0,7,10,2011,Uncle Buck,Would Ya Like to See My Hatchet?,tt0098554\nPQCAqu6koEQ,1989.0,4,10,2011,Uncle Buck,His Name is Bug,tt0098554\nghQOllvR2cE,1989.0,2,10,2011,Uncle Buck,I'm Your,tt0098554\n5ibO5kob3OQ,1989.0,3,10,2011,Uncle Buck,The Buck-mobile,tt0098554\nnggWTNLFifA,1989.0,10,10,2011,Uncle Buck,Squashing a Bug,tt0098554\nHf6qAXWkX6w,1989.0,5,10,2011,Uncle Buck,Battle of Wills,tt0098554\nzcgxBHBsl-4,2003.0,3,10,2011,Love Actually,The Dancing Prime Minister,tt0314331\nBP2zVb8Ufsw,2011.0,7,-1,2011,Bridesmaids,Annie Gets Relaxed,tt1478338\ngnI8phF08PE,2011.0,3,-1,2011,Bridesmaids,Gut Reaction,tt1478338\niseaUTEhwzY,2011.0,6,-1,2011,Bridesmaids,Sexual Frustration,tt1478338\nmwqxM-ccpNE,2011.0,4,-1,2011,Bridesmaids,I Want a Carnival Wedding,tt1478338\nKg0YrIiz7Sw,2011.0,2,-1,2011,Bridesmaids,Kids Are Cute But Disgusting,tt1478338\nNL812ag82xI,2011.0,1,-1,2011,Bridesmaids,I Don't Need Dental Work,tt1478338\ni9DMpMCCxuE,2010.0,2,-1,2011,Unstoppable,Are You In?,tt0477080\nzFuw7sB1zxE,2010.0,5,-1,2011,Unstoppable,Will Meets Frank,tt0477080\nfKeNgrRRoN8,2010.0,4,-1,2011,Unstoppable,Runaway Train,tt0477080\nmDI2nymYW1M,2010.0,3,-1,2011,Unstoppable,Going After the Train,tt0477080\nY4ZHPeyJ4ss,2010.0,1,-1,2011,Unstoppable,Playing Chicken with the Train,tt0477080\nSihfPA7vJms,2011.0,2,-1,2011,The Hangover Part 2,Pig!,tt1411697\nDuyH1j2jMRg,2005.0,3,10,2011,Brokeback Mountain,Lovers,tt0388795\nCemLiSI5ox8,2001.0,3,11,2011,A Beautiful Mind,Governing Dynamics: Ignore the Blonde,tt0268978\ncxQuvLl2E-I,2011.0,1,-1,2011,The Hangover Part 2,I Think It's Happened Again,tt1411697\n2Ee6xrIGhcY,1985.0,9,10,2011,Fletch,Hug a Cop,tt0089155\nY-Mhn3xTlUk,1985.0,5,10,2011,Fletch,The Doberman,tt0089155\nZY_uGAx3rxE,1985.0,7,10,2011,Fletch,Inspects a Plane,tt0089155\nAJuIYcVnc2I,1985.0,10,10,2011,Fletch,Mattress Police,tt0089155\noK1X8SfGMs8,1985.0,3,10,2011,Fletch,Autopsy Assistant,tt0089155\npWGGQmeKdkk,1985.0,1,10,2011,Fletch,\"Marvin, Velma, and Provo\",tt0089155\n9-zf2UBp7fY,1985.0,2,10,2011,Fletch,\"Bend Over, Mr. Babar\",tt0089155\ni7AUpGXLDdk,1985.0,4,10,2011,Fletch,'s Laker Dream,tt0089155\n2bx4g-8PY9Q,1985.0,8,10,2011,Fletch,Can I Borrow Your Towel?,tt0089155\nEmDQiL3UNj4,1973.0,10,10,2011,The Sting,It's Close,tt0070735\nm1t9QOSYqYM,1985.0,6,10,2011,Fletch,I'll Waive My Rights,tt0089155\nVYjyFQS3DWM,1973.0,9,10,2011,The Sting,You're a Gutless Cheat,tt0070735\nkAi0cSCUWfg,1973.0,5,10,2011,The Sting,This is a Class Joint,tt0070735\nM-rbVvVD60k,2009.0,7,10,2011,Into Temptation,I Forgive You,tt1232824\nnby0t43dlIs,1973.0,7,10,2011,The Sting,Johnny Gets the Girl,tt0070735\nf0eTISgJ3Io,1973.0,8,10,2011,The Sting,A Real Professional,tt0070735\nBAF9OAO4TtA,1973.0,1,10,2011,The Sting,World's Easiest Five Grand,tt0070735\ntdCot34--pc,1973.0,6,10,2011,The Sting,\"It's Over, Hooker\",tt0070735\n773E6GPll3A,1973.0,3,10,2011,The Sting,A Game of Jacks,tt0070735\nvw1dPsf0JgE,1973.0,4,10,2011,The Sting,The Hook,tt0070735\nLh8dcvj-0NA,1973.0,2,10,2011,The Sting,Name's Lonnegan,tt0070735\nc9wVzDytTFU,1990.0,9,11,2011,Darkman,Chopper Ride,tt0099365\nG4YcCF8uLiI,1990.0,11,11,2011,Darkman,Call Me...,tt0099365\nLSMl31b3OKc,1990.0,10,11,2011,Darkman,Battles Strack,tt0099365\nlbdeAhpIPhE,1990.0,7,11,2011,Darkman,The Pink Elephant,tt0099365\nMuTaXwt02vA,1990.0,6,11,2011,Darkman,Durant Sees Double,tt0099365\nf1fSmptANOU,1990.0,5,11,2011,Darkman,See the Dancing Freak!,tt0099365\nfIT7VMVju0A,1990.0,4,11,2011,Darkman,Impersonates Pauly,tt0099365\nW2gTKUd1gfQ,2002.0,8,9,2011,The Scorpion King,Swords of Fire,tt0277296\nhnNXvk6sLvw,1990.0,2,11,2011,Darkman,Escape From the Burn Ward,tt0099365\nqXL3aXIGIKc,1990.0,8,11,2011,Darkman,You Have Been a Bad Boy!,tt0099365\n6Diop4IOk68,2002.0,9,9,2011,The Scorpion King,Hail to the King,tt0277296\nbSDqN3UTrPI,1990.0,3,11,2011,Darkman,Playing in Traffic,tt0099365\n3fwlRWBtHLg,1990.0,1,11,2011,Darkman,The Explosion,tt0099365\njutOpRQ7Osg,1998.0,6,10,2011,Out of Sight,Ice Cream for Freaks Scene,tt0120780\nrNPcxSp5a2o,2002.0,3,9,2011,The Scorpion King,Punishment For Stealing,tt0277296\nf4zl3CuJvt8,2002.0,7,9,2011,The Scorpion King,Cobra Roulette,tt0277296\ny0iBQV-yyLI,1998.0,10,10,2011,Out of Sight,Karen Shoots Jack Scene,tt0120780\np5lEvn7ejJI,1998.0,9,10,2011,Out of Sight,Opening the Safe Scene,tt0120780\nTe4G4EGjidM,1998.0,7,10,2011,Out of Sight,What If? Scene,tt0120780\n-RJ6USD2nEU,1998.0,1,10,2011,Out of Sight,First Time Being Robbed? Scene,tt0120780\ncbzBwleJnLY,1998.0,4,10,2011,Out of Sight,Karens in the Lobby Scene,tt0120780\nllzXzUe2KAk,2002.0,5,9,2011,The Scorpion King,Soldiers in the Cave,tt0277296\n3ThrlTaPWO8,1998.0,5,10,2011,Out of Sight,Wanting to Tussle Scene,tt0120780\nA59SQO2FvPA,2002.0,6,9,2011,The Scorpion King,Scorpion Venom,tt0277296\nhlNvdfv76WA,2002.0,4,9,2011,The Scorpion King,Capturing the Sorceress,tt0277296\ngAWrAQp7pWQ,2002.0,2,9,2011,The Scorpion King,Fire Ants,tt0277296\nSZfw1S80QoQ,1998.0,2,10,2011,Out of Sight,Jail Break Scene,tt0120780\nomy5TVA-fY0,1999.0,9,10,2011,The Mummy,Imhotep's Priests Return,tt0120616\n98NAf9zhIu0,2002.0,1,9,2011,The Scorpion King,The Great Memnon,tt0277296\nS5IHNcpa7p0,1985.0,5,8,2011,The Breakfast Club,Andrew and Bender Fight,tt0088847\nTm0oAv2moOw,1985.0,4,8,2011,The Breakfast Club,Getting to Know Each Other,tt0088847\nrnbDA4wKrg0,1985.0,2,8,2011,The Breakfast Club,Social Clubs,tt0088847\nbTeYncx1xmI,1985.0,3,8,2011,The Breakfast Club,Eat My Shorts,tt0088847\nw0cXyGVsUjs,1960.0,10,10,2011,Spartacus,Goodbye My Life,tt0054331\nFKCmyiljKo0,1960.0,8,10,2011,Spartacus,I'm,tt0054331\n6DI_C-xXcOQ,1960.0,7,10,2011,Spartacus,Breaking Glabrus' Power,tt0054331\ntetwGGL997s,1960.0,6,10,2011,Spartacus,Death Is the Only Freedom,tt0054331\nARUzoPWS4Uk,1999.0,10,10,2011,The Mummy,Goodbye Beni,tt0120616\nAsBLdj7OyXc,1960.0,5,10,2011,Spartacus,I Want to Know,tt0054331\nersxqFwDkWA,1999.0,7,10,2011,The Mummy,Imhotep Creates a Killer Sandstorm,tt0120616\nK58cPYCTiPM,1999.0,6,10,2011,The Mummy,Imhotep Kills Mr. Henderson,tt0120616\nlBeh1jkanrE,1960.0,3,10,2011,Spartacus,Gladiator Training,tt0054331\npDWR5RkWRTY,1999.0,5,10,2011,The Mummy,Threatens Beni,tt0120616\nGJP8XTzpOCw,1999.0,8,10,2011,The Mummy,Scarab Attack,tt0120616\n6J-PhFYNbOU,1999.0,4,10,2011,The Mummy,The Book of the Dead,tt0120616\nzCLyLBrugD0,1960.0,4,10,2011,Spartacus,Fight to the Death,tt0054331\nYoQeksBRPLI,1960.0,2,10,2011,Spartacus,I'm Not an Animal,tt0054331\nu3XXKF0oDtU,1999.0,1,10,2011,The Mummy,The Pharaoh is Killed,tt0120616\nYL_90r0J120,1999.0,2,10,2011,The Mummy,Imhotep Is Mummified Alive,tt0120616\n_oyt0p3Kikg,2004.0,8,10,2011,Van Helsing,A Werewolf Cure Scene,tt0338526\nA1HqjBc6LhA,1982.0,5,10,2011,Fast Times at Ridgemont High,Brad Gets Canned,tt0083929\njr60kvuKw3w,2004.0,9,10,2011,Van Helsing,Werewolf vs. Dracula Scene,tt0338526\nY2y_dipI6_M,2004.0,7,10,2011,Van Helsing,I'll Set You Free Scene,tt0338526\npgL4IvoR7tw,2008.0,10,12,2011,Death Race,Destroying the Dreadnought,tt0452608\n21Vohd23VMI,2008.0,12,12,2011,Death Race,I Love This Game,tt0452608\nR8-x5ORZe70,2008.0,9,12,2011,Death Race,The Dreadnought,tt0452608\naaU-KRx8Zc8,2008.0,11,12,2011,Death Race,Jensen and Joe Escape,tt0452608\nbMtdrKIdDgE,1982.0,2,10,2011,Fast Times at Ridgemont High,Spicoli Meets Mr. Hand,tt0083929\nhReFx1kjuIE,1982.0,10,10,2011,Fast Times at Ridgemont High,Mi-T Man,tt0083929\nJV8lJEE1p0w,2008.0,8,12,2011,Death Race,Revenge on Pachenko,tt0452608\n6J8__fWphE0,1982.0,9,10,2011,Fast Times at Ridgemont High,Spicoli Orders a Pizza,tt0083929\nk8zDVhc4XPs,2008.0,7,12,2011,Death Race,Jensen Fights Pachenko,tt0452608\nbc2muGlQIlk,1982.0,4,10,2011,Fast Times at Ridgemont High,I Don't Know,tt0083929\nYYV5f0Aqo4w,1982.0,8,10,2011,Fast Times at Ridgemont High,Jefferson Makes Lincoln Pay,tt0083929\nYqf0AqAHhaM,2008.0,4,12,2011,Death Race,Jensen's First Race,tt0452608\nQN_Nod65e7o,1982.0,7,10,2011,Fast Times at Ridgemont High,He's Gonna Kill Us!,tt0083929\nsKrpl-KBTzQ,1982.0,6,10,2011,Fast Times at Ridgemont High,Spicoli's Surfer Dream,tt0083929\nbS9N8dEdZCQ,2004.0,2,10,2011,Van Helsing,Welcome to Transylvania Scene,tt0338526\n9IUZkug8qo8,1982.0,3,10,2011,Fast Times at Ridgemont High,Carrot Practice,tt0083929\n4MFzzWkl0_g,2008.0,6,12,2011,Death Race,You Wanted a Monster,tt0452608\nk2NaHBVVYzY,1982.0,1,10,2011,Fast Times at Ridgemont High,\"No Shirt, No Shoes, No Dice\",tt0083929\nJVWrVCLs8ms,2004.0,4,10,2011,Van Helsing,I Am Count Dracula Scene,tt0338526\nAD9YlbnGwpA,2004.0,3,10,2011,Van Helsing,Here She Comes! Scene,tt0338526\n3kTQBCokfAg,2004.0,6,10,2011,Van Helsing,Save the Monster Scene,tt0338526\njLvu6WNWzKg,2008.0,3,12,2011,Death Race,Rules of,tt0452608\nQIBTN3qSB44,2004.0,1,10,2011,Van Helsing,Werewolf on the Loose Scene,tt0338526\nyiZpb7GPLYs,2006.0,8,10,2011,The Break-Up,Mediation,tt0452594\nLs_8cFgBUj4,1993.0,12,12,2011,Dazed and Confused,Just Keep Livin',tt0106677\nzLso3zVuBMQ,2009.0,4,10,2011,Funny People,Kill Me,tt1201167\nfZIWDis34Xs,2006.0,7,10,2011,The Break-Up,Game Night,tt0452594\n7Lv6KX12Fbs,2006.0,10,10,2011,The Break-Up,Good to See You,tt0452594\npTptxpcYySI,1998.0,3,10,2011,Out of Sight,Stuck in the Trunk Scene,tt0120780\nbX6BKxFkU78,2006.0,9,10,2011,The Break-Up,I'll Take Care of It,tt0452594\nYwd-UZnkfR8,2009.0,1,10,2011,Public Enemies,The Bank's Money,tt1152836\nxx2qTUg_buo,2009.0,10,10,2011,Public Enemies,Gunned Down,tt1152836\ntrgDVhZHIrc,2009.0,9,10,2011,Public Enemies,Defying the Law,tt1152836\neCQIRkboAM4,1998.0,8,10,2011,Out of Sight,Hotel Strip Tease Scene,tt0120780\nU16anbRFRyc,2009.0,4,10,2011,Public Enemies,Gross Incompetence,tt1152836\nd8WHOiQZGok,1993.0,8,12,2011,Dazed and Confused,The Emporium,tt0106677\nZ6XIGZ51VMo,1993.0,7,12,2011,Dazed and Confused,Cruising,tt0106677\nNjFLXuCHUiw,2006.0,2,10,2011,\"You, Me and Dupree\",Guy's Night,tt0463034\nScHOVAo6tQ0,1984.0,3,10,2011,The Last Starfighter,Victory or Death!,tt0087597\nI7MwxFdb0Ls,1993.0,11,12,2011,Dazed and Confused,O'Bannion's Payback,tt0106677\nBYoWNwhu0DM,1984.0,7,10,2011,The Last Starfighter,A Gung Ho Iguana,tt0087597\nOlm0KUtsFE8,1993.0,6,12,2011,Dazed and Confused,Why Can't We Be Friends?,tt0106677\nNjN-PLW521s,1993.0,10,12,2011,Dazed and Confused,Mailbox Man's Revenge,tt0106677\nMbRhuUtKHV4,1993.0,1,12,2011,Dazed and Confused,Gilligan's Island Fantasy,tt0106677\nwknywxfcE5M,1993.0,9,12,2011,Dazed and Confused,High School Girls,tt0106677\naF3BXL1cQYY,1993.0,4,12,2011,Dazed and Confused,School's Out for Summer,tt0106677\nrtkI87FeqOY,1993.0,5,12,2011,Dazed and Confused,Freshmen Hazing,tt0106677\nsKFlL_G9S0c,2006.0,10,10,2011,\"You, Me and Dupree\",Seven Different Kinds of Smoke,tt0463034\n-CgUGjRFukQ,1993.0,2,12,2011,Dazed and Confused,Calling Mitch Out,tt0106677\nANM7_NTFvE4,1993.0,3,12,2011,Dazed and Confused,Don Hits on a Teacher,tt0106677\nREzwusMDvzE,2006.0,8,10,2011,\"You, Me and Dupree\",Fishing Fantasy,tt0463034\nSlyCtFYVQmU,2006.0,7,10,2011,\"You, Me and Dupree\",Going Camping,tt0463034\nuAMrR05Xil8,2006.0,6,10,2011,\"You, Me and Dupree\",Career Day with Randolph Dupree,tt0463034\nDMo2qyKq4_w,2006.0,3,10,2011,\"You, Me and Dupree\",Dupree Moves In,tt0463034\nq4RbzjuXB6E,2006.0,9,10,2011,\"You, Me and Dupree\",Office Smoke Signals,tt0463034\nIg-Vf5-qTSM,2006.0,4,10,2011,\"You, Me and Dupree\",My Little Duprees!,tt0463034\nKW23B9uZBVE,2006.0,5,10,2011,\"You, Me and Dupree\",Mormon Librarian,tt0463034\nbWaxWtgjY1g,2006.0,1,10,2011,\"You, Me and Dupree\",You've Got That Carl-Ness,tt0463034\nwTz_kSiZaIM,2009.0,7,10,2011,Public Enemies,Escaping the Jail,tt1152836\nsUa29Kqpdn0,2006.0,9,10,2011,Smokin' Aces,Stairwell Standoff,tt0475394\nc-tGV96ceBM,2006.0,10,10,2011,Smokin' Aces,The Way of the World,tt0475394\nbiYVl18JAFM,2006.0,6,10,2011,Smokin' Aces,Elevator Shootout,tt0475394\nkP6EOOdTQP8,2006.0,8,10,2011,Smokin' Aces,Sharice Loses It,tt0475394\ny6WmWVpvGqo,2006.0,7,10,2011,Smokin' Aces,A Mortal Wound,tt0475394\niaZzcRtmXXY,2005.0,5,10,2011,Brokeback Mountain,See You Around,tt0388795\nwwE7qkkri-U,2005.0,9,10,2011,Brokeback Mountain,Visiting Jack's Parents,tt0388795\nktrGDczwkec,2006.0,2,10,2011,Smokin' Aces,Is It Cinnamon Roll?,tt0475394\nPkOIMjJrl3Y,2009.0,2,-1,2011,Fighting,Shawn vs. Dragon Lee,tt1082601\nTO0OWazmdc8,2009.0,1,-1,2011,Fighting,Shawn Is Asked to Take the Fall,tt1082601\nXh1Ls7C0UrU,2006.0,1,10,2011,Smokin' Aces,Meet Buddy Israel,tt0475394\nM1fnkYbVijE,2006.0,4,10,2011,Smokin' Aces,\"I Forgive You, Darwin\",tt0475394\nw6RItV0ZDgI,2006.0,3,10,2011,Smokin' Aces,Ripped Reed,tt0475394\nKZtF_gT3Sgg,2006.0,10,10,2011,Accepted,Bartleby's Speech,tt0384793\nlQfG0D7wPKA,2006.0,8,10,2011,Accepted,What Do You Want to Learn?,tt0384793\neP52omnnZmg,2006.0,9,10,2011,Accepted,Ask Me About My Wiener,tt0384793\nQZjmr4_K8To,2006.0,7,10,2011,Accepted,Welcome to S.H.I.T.,tt0384793\n-w9kof4SQp4,2006.0,6,10,2011,Accepted,Bartleby Mocks Hoyt,tt0384793\nmHJH39bjALk,2006.0,4,10,2011,Accepted,We Gotta Find a Dean,tt0384793\ne8HRcYG3Ftg,2006.0,5,10,2011,Accepted,Breeding Pimps and Whores,tt0384793\nTWjtzvFrA8c,2006.0,3,10,2011,Accepted,The Birthplace of Crack,tt0384793\nnGWtzmsCHgc,2006.0,2,10,2011,Accepted,Pocahontas Never Went to College,tt0384793\nRehkdOxmytI,2006.0,1,10,2011,Accepted,An Invitation from Monica,tt0384793\nA8Tw5xASluI,2006.0,6,10,2011,The Break-Up,Family Stuff,tt0452594\nUvtt94Oz4N4,1984.0,2,10,2011,The Last Starfighter,Centauri's Proposition,tt0087597\nMLNvUsTBGyE,1984.0,8,10,2011,The Last Starfighter,Death Blossom,tt0087597\nnLN36pgwS5o,1984.0,9,10,2011,The Last Starfighter,We Die,tt0087597\nRP9ywTd8bRM,2006.0,5,10,2011,The Break-Up,The Alley Has Changed,tt0452594\nU4D0HSqKiKU,1984.0,6,10,2011,The Last Starfighter,,tt0087597\npkk8WIkTJPA,1984.0,10,10,2011,The Last Starfighter,A New Adventure,tt0087597\n_D2USWrWBL8,2009.0,6,10,2011,Public Enemies,You Act Like a Confident Man,tt1152836\nkeQtOFycgPs,2001.0,9,11,2011,A Beautiful Mind,The Baby's Bath,tt0268978\ni9dK32LLtY0,1984.0,5,10,2011,The Last Starfighter,A Terrible Nightmare,tt0087597\nlplDv1m_Zhk,2001.0,7,11,2011,A Beautiful Mind,Intercourse ASAP,tt0268978\nH7Y_mHNgnpA,2001.0,11,11,2011,A Beautiful Mind,The Nobel Prize,tt0268978\nGCfWXNmFFbM,1960.0,1,10,2011,Spartacus,Is Sold,tt0054331\n86CKsczBdu0,2001.0,10,11,2011,A Beautiful Mind,Nash's Pen Ceremony,tt0268978\ntfX2C-Zewuo,2004.0,11,12,2011,Meet the Fockers,You Drugged My Son?,tt0290002\nPMtkv1zgi8o,2001.0,6,11,2011,A Beautiful Mind,Parcher Recruits Nash,tt0268978\nGvF4-C1EuJU,2001.0,8,11,2011,A Beautiful Mind,Charles Isn't There,tt0268978\ntrn1aO8h9Uo,2001.0,2,11,2011,A Beautiful Mind,The Hubris of the Defeated,tt0268978\nVzpu-P2eRuI,2001.0,4,11,2011,A Beautiful Mind,Nash Cracks the Code,tt0268978\nc9O1VVeMzhc,1963.0,8,10,2011,Charade,The Most Valuable Stamp,tt0056923\nWMX_DNeziH0,2004.0,12,12,2011,Meet the Fockers,Tasered and Arrested,tt0290002\npYdjNeFh6zw,2001.0,5,11,2011,A Beautiful Mind,Alicia's Solution,tt0268978\nfrMMK_rKwD0,2004.0,8,12,2011,Meet the Fockers,Little Jack's First Word,tt0290002\nqFc_0WXxOXI,2004.0,6,12,2011,Meet the Fockers,Foreskin Fondue,tt0290002\n1p8N6MlPDvo,2004.0,10,12,2011,Meet the Fockers,Yo Soy Tu Papa,tt0290002\nx0VcDfDfx24,2004.0,9,12,2011,Meet the Fockers,The Lomi Lomi Massage,tt0290002\nPm5gb2FVYRQ,2004.0,7,12,2011,Meet the Fockers,Family Togetherness,tt0290002\nfNqz4AY0pm8,2004.0,4,12,2011,Meet the Fockers,Jinxy Flushes Moses,tt0290002\nT2Lh9Lt3_w4,2004.0,5,12,2011,Meet the Fockers,Handsome Little Focker,tt0290002\nFa1IN1GN4Q4,2005.0,3,8,2011,The 40 Year Old Virgin,How to Talk to Women,tt0405422\ndvm7mLmAtTM,2005.0,8,8,2011,The 40 Year Old Virgin,I'm a Virgin,tt0405422\npYBo5eS5pW8,2005.0,4,8,2011,The 40 Year Old Virgin,Date-a-palooza,tt0405422\ng0s18i95JKA,2004.0,2,12,2011,Meet the Fockers,Jack's Manary Gland,tt0290002\nx-A6zERn6yo,2004.0,3,12,2011,Meet the Fockers,The Wall of Gaylord,tt0290002\nOJ3gsR-DqAE,2005.0,7,8,2011,The 40 Year Old Virgin,Why Don't You Want to Have Sex?,tt0405422\n7vjP2EKf7do,2005.0,6,8,2011,The 40 Year Old Virgin,Getting to Know Each Other,tt0405422\nzXm6Bc3RuJE,2004.0,1,12,2011,Meet the Fockers,Greg Drinks Breast Milk,tt0290002\n99UdqbS8q2M,2005.0,5,8,2011,The 40 Year Old Virgin,Andy Gets a Date,tt0405422\n7OFROViP0J0,1985.0,7,8,2011,The Breakfast Club,Covering for Bender,tt0088847\nVn3IRHhPXMo,2005.0,1,8,2011,The 40 Year Old Virgin,Are You a Virgin?,tt0405422\nu3mupIlFIYQ,1985.0,6,8,2011,The Breakfast Club,Lunchtime,tt0088847\noRKbez1LpWU,2005.0,2,8,2011,The 40 Year Old Virgin,Man O' Lantern,tt0405422\nZ2WZrxuwDhs,1985.0,1,8,2011,The Breakfast Club,Don't Mess With the Bull,tt0088847\njsZkkqLDFmg,1985.0,8,8,2011,The Breakfast Club,Bender Mocks Claire,tt0088847\na8FA5zBHiFA,1963.0,2,10,2011,Charade,Mr. Lampert's Funeral,tt0056923\nvKjBFsyYC0g,-1.0,11,12,2011,The Big Lebowski,The Bereaved Scene,tt0118715\nDXTLoQyijJ0,1963.0,10,10,2011,Charade,Whatever Your Name Is,tt0056923\n7xDTFtG9kYw,1963.0,4,10,2011,Charade,Herman Attacks,tt0056923\n01ZWXIY1mcs,1963.0,9,10,2011,Charade,The Game is Over,tt0056923\nQgsst15iI2k,1963.0,1,10,2011,Charade,When Strangers Meet,tt0056923\nMMuen83l-Sc,2009.0,3,10,2011,Funny People,The Myspace Show,tt1201167\ngfLw0KJ6bLI,1963.0,3,10,2011,Charade,Tex Threatens Regina,tt0056923\nziVJd7Fwzvc,1963.0,5,10,2011,Charade,Who Can You Trust?,tt0056923\nmRmLfuhXHR8,1963.0,6,10,2011,Charade,Rooftop Fight,tt0056923\nQ9vxnIGIFXQ,2009.0,10,10,2011,Funny People,Clarke vs. George vs. Ira,tt1201167\nNEYwJbjyF2M,1963.0,7,10,2011,Charade,Lying Black Foot,tt0056923\nYBc362_R2pw,2009.0,8,10,2011,Funny People,Celebrating George's Recovery,tt1201167\n0qWMjgpIECA,2009.0,9,10,2011,Funny People,Eminem Hates Raymond,tt1201167\np8CPTHEAfJc,2009.0,7,10,2011,Funny People,George's Toast,tt1201167\nXZzaK0UZJ08,2009.0,6,10,2011,Funny People,Ira Cries at Lunch,tt1201167\nk4X42D5Gg7o,2009.0,5,10,2011,Funny People,Terrifying Accent,tt1201167\ngW-Os5mjbGM,2009.0,2,10,2011,Funny People,Randy Kills It,tt1201167\nzeKb7O1KtIU,2009.0,1,10,2011,Funny People,Marginally Famous A**hole,tt1201167\n_ss0nT5DGHw,1981.0,6,10,2011,An American Werewolf in London,Subway Chase Scene,tt0082010\nJ2Ws0QEADsU,1981.0,4,10,2011,An American Werewolf in London,Jack's Warning Scene,tt0082010\nHb7zhYzenhY,1981.0,2,10,2011,An American Werewolf in London,Werewolf Attack Scene,tt0082010\nD0wShZqevLU,1981.0,3,10,2011,An American Werewolf in London,Mutant Nazi Massacre Scene,tt0082010\n07FdVcspOfQ,1981.0,1,10,2011,An American Werewolf in London,The Slaughtered Lamb Scene,tt0082010\nPztgWdMEJdg,-1.0,9,12,2011,The Big Lebowski,Is This Your Homework Larry? Scene,tt0118715\nTfN-0IJACLk,1998.0,9,11,2011,Elizabeth,'s Last Words to Robert,tt0127536\neuV2U_M7RMI,2009.0,3,-1,2011,Taking Woodstock,You're Security?,tt1127896\nLLs-Oreo_bk,1981.0,8,10,2011,An American Werewolf in London,David's Undead Victims Scene,tt0082010\nomTBgliYDKM,2009.0,4,-1,2011,Taking Woodstock,I Remember This Hill,tt1127896\nX9yDWojz6YA,2009.0,5,-1,2011,Taking Woodstock,Some Groovy People,tt1127896\nSQoNv-hzC_Y,1981.0,9,10,2011,An American Werewolf in London,London Massacre Scene,tt0082010\n3p1rb_t2Jg4,2009.0,2,-1,2011,Taking Woodstock,The El Monaco,tt1127896\nIN5zv7oMwwg,2009.0,1,-1,2011,Taking Woodstock,Yasgur's Farm,tt1127896\njniUBhuJSuw,1998.0,10,11,2011,Elizabeth,I Have Become a Virgin,tt0127536\n9mnLbhHR6-g,1998.0,11,11,2011,Elizabeth,The Virgin Queen,tt0127536\nsEnFt6neTu0,1998.0,6,11,2011,Elizabeth,Assassination Attempt,tt0127536\nMHzcc00ZXCM,1998.0,7,11,2011,Elizabeth,Duc d'Anjou in a Dress,tt0127536\nu-BIr0fW5cU,1998.0,8,11,2011,Elizabeth,I Am No Man's,tt0127536\nZ1bYkHffGXI,1981.0,10,10,2011,An American Werewolf in London,Let Me Help You Scene,tt0082010\nWRjPRZEg7kM,1981.0,7,10,2011,An American Werewolf in London,Naked at the Zoo Scene,tt0082010\nnx002D9N6qU,1998.0,5,11,2011,Elizabeth,and Robert Dance a Volta,tt0127536\nyBS-MktwqgI,1998.0,4,11,2011,Elizabeth,Is Crowned,tt0127536\nRngpf0Yluog,1981.0,5,10,2011,An American Werewolf in London,Undead Jack Scene,tt0082010\n44ZZN9BqlEE,2005.0,6,10,2011,Brokeback Mountain,Reunited.,tt0388795\ntzKEAdJLRfg,2005.0,10,10,2011,Brokeback Mountain,Alma's Engagement,tt0388795\niIUzHUOdLhM,1998.0,2,11,2011,Elizabeth,The Small Question of Religion,tt0127536\nnxdpR5oyCOs,1998.0,1,11,2011,Elizabeth,The Burning of Master Nicholas Ridley,tt0127536\nMAvccNVx9tE,2009.0,3,10,2011,Public Enemies,What Else Do You Need to Know?,tt1152836\nWl-C_I-ZhRI,2005.0,2,10,2011,Brokeback Mountain,Nobody's Business But Ours,tt0388795\nop6H61wRi-Y,2008.0,11,11,2011,Baby Mama,One in a Million,tt0871426\n-i9Fv-znJx0,2009.0,4,-1,2011,Fighting,Shawn Fights Evan,tt1082601\nsUa9WglkKCI,2009.0,3,-1,2011,Fighting,Shawn Won't Lose,tt1082601\ng2KF7DAlM4E,2005.0,8,10,2011,Brokeback Mountain,Jack's Death,tt0388795\nF2zTd_YwTvo,1992.0,4,8,2011,Scent of a Woman,The Tango,tt0105323\n958GzzqgWnw,1983.0,4,8,2011,Scarface,Every Dog Has His Day Scene,tt0086250\n-4GsCEopbd4,1983.0,7,8,2011,Scarface,Gina Shoots Tony Scene,tt0086250\n_4ezPvzKe5M,-1.0,12,12,2011,The Big Lebowski,Donny's Ashes Scene,tt0118715\nKVK6yLqY54w,2005.0,7,10,2011,Brokeback Mountain,I Wish I Knew How to Quit You,tt0388795\nBKV1SxfmeYQ,2001.0,1,11,2011,A Beautiful Mind,I Don't Like People Much,tt0268978\nVUChuDMVqvY,1986.0,3,10,2011,Howard the Duck,Howard's Wallet,tt0091225\nLwpaOr1hVZk,1986.0,5,10,2011,Howard the Duck,I'm a Freak,tt0091225\n5ZXyC0SDHNw,1986.0,2,10,2011,Howard the Duck,A Brewski at Beverly's,tt0091225\nfEcClEBT6QU,1988.0,8,10,2011,The Land Before Time,Littlefoot to the Rescue,tt0095489\nweHHBdmI_Jw,1988.0,9,10,2011,The Land Before Time,Petrie Saves His Friends From Sharptooth,tt0095489\nBmLPVUYQM34,1954.0,2,10,2011,Creature from the Black Lagoon,The Creature's Hand,tt0046876\n2t2iFLshgWQ,1988.0,6,10,2011,The Land Before Time,The Friends Find Spike,tt0095489\ns-rl8q9jezU,2008.0,9,10,2011,Hellboy 2: The Golden Army,A Deal With the Angel of Death,tt0411477\ndX762k_3zWg,1977.0,3,10,2011,Smokey and the Bandit,\"Hello, Smokey\",tt0076729\nbg5SLBapMiI,2008.0,10,10,2011,Hellboy 2: The Golden Army,Hellboy vs. The Golden Army,tt0411477\njcNFjpxU0E8,1977.0,5,10,2011,Smokey and the Bandit,That's an Attention Getter,tt0076729\nVSDqDOLupNc,2008.0,7,10,2011,Hellboy 2: The Golden Army,\"Hellboy \"\"Smokes\"\" Johann\",tt0411477\n7oQ-Usd7Tes,2008.0,2,10,2011,Hellboy 2: The Golden Army,Burn 'Em All!,tt0411477\nKBUVZlTNj_8,2008.0,6,11,2011,Baby Mama,Surrogate Support Group,tt0871426\nDY1HyTONAT8,2008.0,4,10,2011,Hellboy 2: The Golden Army,Troll Market Battle,tt0411477\nwNbKp6IGhrc,2008.0,8,9,2011,Frost/Nixon,Nixon Carries a Burden,tt0870111\nzmRPZJp1pYQ,2005.0,1,10,2011,Brokeback Mountain,Ennis Opens Up,tt0388795\n9_sNsOl5uUI,2008.0,1,10,2011,Hellboy 2: The Golden Army,Attack of the Tooth Fairies,tt0411477\nFUR11zrrNb0,2008.0,9,9,2011,Frost/Nixon,Frost Says Goodbye to Nixon,tt0870111\nvFHYiOfBRng,2008.0,7,9,2011,Frost/Nixon,\"When the President Does It, It's Not Illegal\",tt0870111\n_qG67vGwgcY,2007.0,6,10,2011,Knocked Up,Double Date,tt0478311\npT9GPloXjA8,2008.0,6,9,2011,Frost/Nixon,That Shadowy Place We Call Our Soul,tt0870111\nfsaidN93VnA,2007.0,5,10,2011,Knocked Up,Where Do Babies Come From?,tt0478311\nWjQovCr8Tgs,2007.0,9,10,2011,Knocked Up,People Like Pregnant,tt0478311\ngTAMKrPh1AE,2008.0,5,9,2011,Frost/Nixon,Nixon Asks Frost About Fornication,tt0870111\nBYXLKRNCVrw,2007.0,7,10,2011,Knocked Up,Pink Eye,tt0478311\nyrLutFhQLgE,2007.0,10,10,2011,Knocked Up,Giving Birth,tt0478311\nFmiVlyAfTnw,2007.0,8,10,2011,Knocked Up,\"You Old, She Pregnant\",tt0478311\n1M6oW6a0iAw,-1.0,10,12,2011,The Big Lebowski,These Men Are Cowards Scene,tt0118715\n7L2qP-xQ_7o,-1.0,8,12,2011,The Big Lebowski,Nice Marmot Scene,tt0118715\nF1SfzV67Bqw,-1.0,5,12,2011,The Big Lebowski,Nobody F's With Jesus Scene,tt0118715\nbBil15ORYI0,2006.0,2,10,2011,The Break-Up,Happy Holidays,tt0452594\n8sJaglGoByg,2006.0,1,10,2011,The Break-Up,Ever Had a Hot Dog?,tt0452594\nAJRmY9VXf1g,1984.0,1,10,2011,The Last Starfighter,Record Breaker,tt0087597\nnn3I6-DBLJM,2006.0,4,10,2011,The Break-Up,I'm Done!,tt0452594\n1wc_mZ86ypg,2006.0,3,10,2011,The Break-Up,Show Lemons,tt0452594\nt6wgyc8p_hY,2008.0,4,9,2011,Frost/Nixon,Nixon's Upper Lip,tt0870111\niOHElDaRs5E,2008.0,2,9,2011,Frost/Nixon,James Wants to Convict Nixon,tt0870111\n9_4S_-cr9Rs,2009.0,8,10,2011,Public Enemies,Assault on the Lodge,tt1152836\n2DPSnOrJaXo,2008.0,3,9,2011,Frost/Nixon,Nixon Makes a Joke,tt0870111\n_IIp0gq_Jek,2005.0,4,10,2011,Brokeback Mountain,Jack and Ennis Brawl,tt0388795\nIZhBhfty0LA,2009.0,5,10,2011,Public Enemies,I Ain't Goin' Nowhere,tt1152836\nYky4QtRX_DI,1983.0,5,8,2011,Scarface,Say Goodnight to the Bad Guy Scene,tt0086250\nZowmpbv1za0,1984.0,4,10,2011,The Last Starfighter,Interstellar Hit Beast,tt0087597\ngRNkQRhMUiE,2009.0,2,10,2011,Public Enemies,I Rob Banks,tt1152836\na_z4IuxAqpE,1983.0,8,8,2011,Scarface,Say Hello to My Little Friend Scene,tt0086250\nkg7goEASO5E,1983.0,2,8,2011,Scarface,Chainsaw Threat Scene,tt0086250\nTKpXTy-sCxg,1983.0,3,8,2011,Scarface,How to Pick-Up Chicks Scene,tt0086250\nZcQtUdZ5Afs,1983.0,6,8,2011,Scarface,\"No Wife, No Kids Scene\",tt0086250\nNXwxYIjqocA,1986.0,9,10,2011,Howard the Duck,The Dark Overlord,tt0091225\nkZgE_sUrXFY,1983.0,1,8,2011,Scarface,Political Prisoner Scene,tt0086250\nseqBLjTfnl4,1986.0,10,10,2011,Howard the Duck,Howard Saves the Day,tt0091225\nRUE4v1rUpSM,1992.0,8,8,2011,Scent of a Woman,Frank Defends Charlie in Court,tt0105323\nxkNNB9f_3Mc,1986.0,8,10,2011,Howard the Duck,Smog Inspection,tt0091225\nxb8n4wftl08,1986.0,7,10,2011,Howard the Duck,Taking Flight,tt0091225\nWZ6p4t3StSc,1992.0,7,8,2011,Scent of a Woman,I'm In the Dark,tt0105323\nS-6xoT5Z2nA,1992.0,2,8,2011,Scent of a Woman,Frank's Pearls of Wisdom,tt0105323\nZIOCaOpBGpE,1986.0,6,10,2011,Howard the Duck,Intense Animal Magnetism,tt0091225\n-EZ9f-GgWVQ,1992.0,1,8,2011,Scent of a Woman,Charlie Meets Frank,tt0105323\nhHVZ_viVD9E,1992.0,5,8,2011,Scent of a Woman,Gray Ghosts,tt0105323\nP_gn8RkrNAE,1992.0,3,8,2011,Scent of a Woman,The One That Got Away,tt0105323\nItr0jcR0S4s,1992.0,6,8,2011,Scent of a Woman,Ferrari Test Drive,tt0105323\n2mz3oytpugs,1986.0,1,10,2011,Howard the Duck,No More Mr. Nice Duck,tt0091225\nzAV44x9vVrk,1986.0,4,10,2011,Howard the Duck,\"Me Phil, You Howard\",tt0091225\nYAlZyCUJKt4,1954.0,10,10,2011,Creature from the Black Lagoon,Killing the Creature,tt0046876\nI9uVquExMi4,1988.0,10,10,2011,The Land Before Time,The Great Valley,tt0095489\n_mpyFEkzhoo,1954.0,8,10,2011,Creature from the Black Lagoon,Snatched Off the Boat,tt0046876\nq_wefCacDTE,1954.0,9,10,2011,Creature from the Black Lagoon,Into the Creature's Lair,tt0046876\nhR1XzVQnfqY,1988.0,7,10,2011,The Land Before Time,Finding Green Food,tt0095489\nCApLHv_NrAw,1954.0,7,10,2011,Creature from the Black Lagoon,Underwater Hunt,tt0046876\nariuokNFhSw,1954.0,4,10,2011,Creature from the Black Lagoon,Underwater Stalking,tt0046876\nA8wAYZAwQFs,1954.0,6,10,2011,Creature from the Black Lagoon,The Creature Escapes,tt0046876\nBw5UwRasras,2008.0,9,10,2011,Milk,Gay Pride Rally Speech,tt1013753\nFnjrwacqDLc,1988.0,5,10,2011,The Land Before Time,Littlefoot and Ducky Meet Petrie,tt0095489\niiA0J5rKoE4,1954.0,5,10,2011,Creature from the Black Lagoon,\"The Creature, Captured\",tt0046876\npNJRoSfVZxo,1954.0,3,10,2011,Creature from the Black Lagoon,The Creature Attacks,tt0046876\nyMqQUG5t0js,1954.0,1,10,2011,Creature from the Black Lagoon,Dead or Alive?,tt0046876\nQL7Qq67AJrY,1988.0,4,10,2011,The Land Before Time,Littlefoot Meets Ducky,tt0095489\nhLQQfSmgoGY,1988.0,3,10,2011,The Land Before Time,Flyers and Cherries,tt0095489\nWbW8GgAWKi8,1988.0,2,10,2011,The Land Before Time,Littlefoot's Mother Dies,tt0095489\nkJg3GP4tH94,1988.0,1,10,2011,The Land Before Time,Littlefoot is Born,tt0095489\n4wVmrgVqQlM,2007.0,3,10,2011,Knocked Up,Pregnant!,tt0478311\nDZwnFcKAt30,2008.0,10,10,2011,Milk,Harvey Debates Senator Briggs,tt1013753\nwBLliPipoYI,2008.0,4,10,2011,Milk,Cleve Joins the Revolution,tt1013753\n9VAkRDPA2fk,2008.0,8,10,2011,Milk,Harvey Tries to Work With Dan,tt1013753\nrh1lZYqwJAQ,2008.0,3,10,2011,Milk,Harvey Meets Cleve Jones,tt1013753\nwOlCQYZWJRE,2008.0,7,10,2011,Milk,Strategy Session,tt1013753\nC5x9bD6aoss,2008.0,5,10,2011,Milk,Victory Map,tt1013753\njl0ny6ij7jg,2008.0,6,10,2011,Milk,We Must Fight!,tt1013753\nVepWTt1DzTA,2007.0,4,10,2011,Knocked Up,Parental Guidance,tt0478311\n_GxSQs0FNN4,2008.0,1,10,2011,Milk,A Cold Welcome to the Castro,tt1013753\nFRhGCEIB-4Y,2007.0,1,10,2011,Knocked Up,Tighten Up,tt0478311\nJVKMNw0uUGw,1977.0,10,10,2011,Smokey and the Bandit,Bye Bye Sheriff Justice,tt0076729\nrpp930f_fhU,2007.0,2,10,2011,Knocked Up,Did We Have Sex?,tt0478311\nXqtjMtEkDhY,1977.0,9,10,2011,Smokey and the Bandit,The Snowman Is Comin' Through,tt0076729\nfygiSfJjTLc,1977.0,8,10,2011,Smokey and the Bandit,\"Oh, Look, a Football Game!\",tt0076729\nOYlBy85zxdo,1977.0,6,10,2011,Smokey and the Bandit,Jumping Mulberry Bridge,tt0076729\ndIgGZA4qQoc,1977.0,1,10,2011,Smokey and the Bandit,A Real Challenge,tt0076729\nS-pHuT2666s,1977.0,7,10,2011,Smokey and the Bandit,\"Daddy, the Top Came Off\",tt0076729\nXbSfFmKJJ3c,1977.0,4,10,2011,Smokey and the Bandit,Runaway Bride,tt0076729\nJgmk5D4a8K8,1977.0,2,10,2011,Smokey and the Bandit,\"For the Money, For the Glory, For the Fun\",tt0076729\nVLR_TDO0FTg,-1.0,7,12,2011,The Big Lebowski,She Kidnapped Herself Scene,tt0118715\ndQbpx5Be5rI,-1.0,6,12,2011,The Big Lebowski,Bunch of Amateurs Scene,tt0118715\nyAvJkoCNthU,2008.0,5,10,2011,Hellboy 2: The Golden Army,The Forest God Unleashed,tt0411477\nYedqV4Gl_us,-1.0,4,12,2011,The Big Lebowski,You're Entering a World of Pain Scene,tt0118715\nLnV_NPHo7Kk,2010.0,2,-1,2011,Beginners,The Joy of Sex,tt1532503\njAZRevRbGME,2010.0,3,-1,2011,Beginners,Awfully Alone,tt1532503\nr9twTtXkQNA,-1.0,1,12,2011,The Big Lebowski,Where's the Money Lebowski? Scene,tt0118715\nxJjCnWm5cvE,-1.0,3,12,2011,The Big Lebowski,I'm the Dude Scene,tt0118715\n-Y1lyQpBVJI,2010.0,4,-1,2011,Beginners,House Music,tt1532503\n4Wu598ENenk,-1.0,2,12,2011,The Big Lebowski,He Peed On My Rug Scene,tt0118715\nwEUwtFg7PeI,2008.0,6,10,2011,Hellboy 2: The Golden Army,Killing the Forest God,tt0411477\n4pYu83JHg0E,2010.0,1,-1,2011,Beginners,Take Out a Personal Ad,tt1532503\nw4liPmQEPEU,2008.0,3,10,2011,Hellboy 2: The Golden Army,Prince Nuada Kills King Balor,tt0411477\nyMjMgMaakMY,2008.0,8,10,2011,Hellboy 2: The Golden Army,Prince Nuada vs. Hellboy,tt0411477\nDnfl290-aIY,2008.0,10,11,2011,Baby Mama,Angie's Water Breaks,tt0871426\nQxXRhbuqFEw,2008.0,1,9,2011,Frost/Nixon,No Holds Barred,tt0870111\nz0BandJg8y4,2008.0,3,11,2011,Baby Mama,Barry Transfers His Success,tt0871426\nIMSd1IbxmFA,2008.0,9,11,2011,Baby Mama,Five Minutes of Eye Contact,tt0871426\nVUGhvs8zMZ8,2008.0,8,11,2011,Baby Mama,Spray a Little Pam,tt0871426\nneVOaWPM_Mk,2008.0,4,11,2011,Baby Mama,Baby-Proof Toilet,tt0871426\n6-wvim2zLFw,2008.0,2,11,2011,Baby Mama,I Just Don't Like Your Uterus,tt0871426\nHSh7FRalwdg,2008.0,7,11,2011,Baby Mama,Birthing Class,tt0871426\nOl7EpMrfbGQ,2008.0,5,11,2011,Baby Mama,Swallowing the Vitamin,tt0871426\nkK6QQIvO9gE,2008.0,1,11,2011,Baby Mama,Too Much for a First Date,tt0871426\n73LReedA7N4,2005.0,7,-1,2011,Broken Flowers,Go Visit Them,tt0412019\nYhK1fYhl5dg,2005.0,6,-1,2011,Broken Flowers,Hippie Chick,tt0412019\nwqj7Q2jOTc4,2005.0,3,-1,2011,Broken Flowers,What Do You Want?,tt0412019\ndl2NG3vkMTk,2005.0,5,-1,2011,Broken Flowers,Sherry and Don Break Up,tt0412019\njPiotGz9O9s,2003.0,5,-1,2011,21 Grams,Jack Returns Home,tt0315733\nb95SzqTrjRo,2005.0,2,-1,2011,Broken Flowers,Lolita,tt0412019\ntZ97edZTrHQ,2005.0,4,-1,2011,Broken Flowers,The List,tt0412019\nkRg5-TIF9LQ,2005.0,1,-1,2011,Broken Flowers,Cat Communicator,tt0412019\nA2QayxN3z68,2003.0,6,-1,2011,21 Grams,We're Gonna Go Home,tt0315733\nOoKpYXTmYak,2003.0,2,-1,2011,21 Grams,Paul Meets With the Detective,tt0315733\nGnbUZqkXBQM,2003.0,3,-1,2011,21 Grams,Jesus is Your Ticket,tt0315733\n3MzOdxCbTgU,2003.0,1,-1,2011,21 Grams,Maybe Next Time,tt0315733\nTgBLraZlGww,2002.0,2,-1,2011,The Pianist,Play For Me,tt0253474\nAkR9wDct-0o,2002.0,4,-1,2011,The Pianist,Identity Card,tt0253474\n-Hk2z0z216w,2002.0,5,-1,2011,The Pianist,Permitted to Stand,tt0253474\npV2XJZjCvP8,2002.0,1,-1,2011,The Pianist,Is That All?,tt0253474\nyvcHCRvP3Gs,2003.0,5,10,2011,Monster,Now You Know Me,tt0340855\nC4Y-l40swH0,2010.0,4,11,2011,Get Him to the Greek,The Game-changer,tt1226229\n29nIXG5KJYw,1989.0,7,9,2011,Field of Dreams,Ray's Not Invited,tt0097351\npXEqXWfzyBY,2010.0,3,-1,2011,Skyline,No Exit,tt1564585\nHEU-JXcdfIY,2010.0,5,-1,2011,Skyline,A Helicopter Goes Down,tt1564585\n0NH8i-Q5Nck,2010.0,1,-1,2011,Skyline,Abducted by the Light,tt1564585\nrPTis4f5DG8,2010.0,4,-1,2011,Skyline,Taken by the Pool,tt1564585\nFJBpmWxw3o8,2010.0,2,-1,2011,Skyline,Under Attack in L.A.,tt1564585\n1YCz4y8b58k,1990.0,2,10,2011,Opportunity Knocks,Eddie and the Remote,tt0100301\ne8Bn6XVv9ew,1990.0,1,10,2011,Opportunity Knocks,You Do Not Talk When I Talk,tt0100301\ncz1TJ4r7bOU,1989.0,8,9,2011,Field of Dreams,Ray Meets His Father,tt0097351\naQ5PyaHQWVA,1990.0,6,10,2011,Opportunity Knocks,\"Holy Christ, I'm Jewish!\",tt0100301\n7SB16il97yw,1989.0,5,9,2011,Field of Dreams,People Will Come,tt0097351\nwP3H6lZ_mt8,1992.0,7,10,2011,Army of Darkness,The Rise of Skeletons,tt0106308\n6iW8MoAsz9Q,1992.0,9,10,2011,Army of Darkness,Buckle Up Bonehead,tt0106308\nswhep7_jkeY,1992.0,4,10,2011,Army of Darkness,Little Clones,tt0106308\n2gSf5UMZ8ms,1992.0,3,10,2011,Army of Darkness,\"Yo She-Bitch, Let's Go!\",tt0106308\n2xB5GBvOqEY,1992.0,6,10,2011,Army of Darkness,Three Necronomicons,tt0106308\nKIxetRsd_2c,1992.0,5,10,2011,Army of Darkness,Double Trouble,tt0106308\nxFkARs9CHaE,1992.0,1,10,2011,Army of Darkness,A Witch in the Pit,tt0106308\noBoPQUIowHY,2008.0,9,11,2011,Forgetting Sarah Marshall,Matthew Hates Aldous,tt0800039\nreYcW3bp8gg,2008.0,8,11,2011,Forgetting Sarah Marshall,Matthew's Demo,tt0800039\nnp-ndDy9YJ0,2008.0,11,11,2011,Forgetting Sarah Marshall,A Little Holiday With Hitler,tt0800039\nRvNuTuiKyIo,2008.0,10,11,2011,Forgetting Sarah Marshall,Sex Off,tt0800039\nPKIpCPS-oZc,2008.0,6,11,2011,Forgetting Sarah Marshall,\"The Less You Do, the More You Do\",tt0800039\nP8Xg1vVkIh8,2008.0,7,11,2011,Forgetting Sarah Marshall,When Life Gives You Lemons,tt0800039\nb1Qxbu777zo,2008.0,4,11,2011,Forgetting Sarah Marshall,Newlywed Sex,tt0800039\n4Z3s1fJgCEE,2008.0,3,11,2011,Forgetting Sarah Marshall,Peter Cries Hysterically,tt0800039\nFMFJli50jdY,2008.0,2,11,2011,Forgetting Sarah Marshall,Ruining Sarah's Day,tt0800039\nHQv0WWhoZnI,1989.0,2,9,2011,Field of Dreams,Cornfield to Ballfield,tt0097351\n8Kx0qYRv8XQ,2000.0,8,10,2011,Erin Brockovich,The Whole Thing's Falling Apart,tt0195685\nC6k9TFjWiGs,1995.0,8,9,2011,Mallrats,Truth or Date Game Show,tt0113749\n0wVgg5t2LAM,2000.0,9,10,2011,Erin Brockovich,Surprise Evidence,tt0195685\nSy7YnrVXudg,2004.0,8,11,2011,Eternal Sunshine of the Spotless Mind,Meet Me in Montauk,tt0338013\nlFHLE24hDQY,2004.0,6,11,2011,Eternal Sunshine of the Spotless Mind,Remember Me,tt0338013\nXdlIQCbOvrw,1995.0,6,9,2011,Mallrats,Escaping Team LaFours,tt0113749\n1vJpAXf5wyk,1995.0,7,9,2011,Mallrats,Stan Lee Dating Wisdom,tt0113749\nCAeFPZ-yXYM,1995.0,2,9,2011,Mallrats,Jay and Silent Bob,tt0113749\nxA5QELbB-vU,1995.0,5,9,2011,Mallrats,Revenge on the Easter Bunny,tt0113749\ndQRfWqSj3Gw,1995.0,4,9,2011,Mallrats,The LaFours Plan,tt0113749\ndiLE4umndNM,2005.0,6,10,2011,King Kong,Kong's Rampage,tt0360717\nyNyLTVFv8KQ,2005.0,8,10,2011,King Kong,Climbing the Empire State Building,tt0360717\nDTWYQhTT388,2005.0,5,10,2011,King Kong,Giant Bugs Attack,tt0360717\nZYZsJYZVt5g,2005.0,3,10,2011,King Kong,Kong Battles the T-Rexes,tt0360717\nF_EuMeT2wBo,2005.0,7,10,2011,King Kong,Ice Skating in Central Park,tt0360717\nfbrN51dPm0I,2004.0,7,8,2011,Shaun of the Dead,\"Sorry, Mum\",tt0365748\nb-f5iMDXvcA,2005.0,4,10,2011,King Kong,Kong Rescues Ann,tt0360717\n8LFQun4HQj8,2005.0,2,10,2011,King Kong,Dinosaur Stampede,tt0360717\nHmyQDH_PSC4,2004.0,6,8,2011,Shaun of the Dead,Acting Like Zombies,tt0365748\ngz_dPVrciwM,2004.0,5,8,2011,Shaun of the Dead,Feel Free to Step In,tt0365748\nRYHaarxQTFk,2001.0,10,11,2011,The Mummy Returns,The Scorpion King Returns,tt0209163\n6XyUIXqIoAM,2001.0,9,11,2011,The Mummy Returns,Blimp Attack,tt0209163\ny8svNN8saeU,2001.0,8,11,2011,The Mummy Returns,Nefertiri vs. Anck Su,tt0209163\nrxZc0tyTqEg,2001.0,5,11,2011,The Mummy Returns,The Mummy Attacks,tt0209163\nuLquz4Iz-30,2004.0,4,8,2011,Shaun of the Dead,Record Toss,tt0365748\nqs1QcRTOMEg,2001.0,4,11,2011,The Mummy Returns,Mummy Battle on a Bus,tt0209163\nJF4EyXhZudo,2004.0,3,8,2011,Shaun of the Dead,She's So Drunk,tt0365748\ni3JbGwGNRI8,2001.0,7,11,2011,The Mummy Returns,Are We There Yet?,tt0209163\nQ720Fe7IDMk,2001.0,2,11,2011,The Mummy Returns,The O'Connells Attacked at Home,tt0209163\ncgBAJefErZY,2001.0,3,11,2011,The Mummy Returns,Double-Decker Bus?,tt0209163\nEoBngEuWM_o,2001.0,1,11,2011,The Mummy Returns,The Bracelet of Anubis,tt0209163\nirCUvLD1t5U,1989.0,6,9,2011,Born on the Fourth of July,You Never Killed a Baby!,tt0096969\naBADjCeFnuU,1989.0,5,9,2011,Born on the Fourth of July,Thou Shall Not Kill,tt0096969\n9fpDYMwJXQQ,1989.0,9,9,2011,Born on the Fourth of July,Maybe We're Home,tt0096969\nZsRDr3miUyc,1989.0,2,9,2011,Born on the Fourth of July,Treated Like a Human Being,tt0096969\nHhZ3H18ynTA,1989.0,3,9,2011,Born on the Fourth of July,The Homecoming Speech,tt0096969\n6_-kw-0PvJc,2000.0,9,10,2011,Meet the Parents,Greg Has to Wait,tt0212338\nXk5epHF844w,1989.0,7,9,2011,Born on the Fourth of July,A Painful Confession,tt0096969\nSxJvnJyF7xA,2000.0,6,10,2011,Meet the Parents,\"It's Only a Game, Focker!\",tt0212338\nOxCVucvlF1o,2009.0,10,10,2011,Land of the Lost,Your Own Damn Vault,tt0457400\nwbt-sAOjnQQ,2009.0,2,10,2011,Couples Retreat,Powerpoint Presentation,tt1078940\n-U_IRXhodds,2009.0,7,10,2011,Land of the Lost,Feeding Time,tt0457400\nFgfe6pufnLM,2009.0,1,10,2011,Couples Retreat,Motorcycle for Daddy,tt1078940\nVMFwVNGGfBc,2009.0,9,10,2011,Land of the Lost,Saving Holly,tt0457400\nsaBoM7O_imM,2009.0,6,10,2011,Land of the Lost,Hadrosaur Urine,tt0457400\n0JXwzlRcYWk,2009.0,2,10,2011,Land of the Lost,Chaka,tt0457400\nbllBC-ThwjQ,2009.0,5,10,2011,Land of the Lost,Beware of Sleestak,tt0457400\nLuQ6qCNwWY8,2009.0,4,10,2011,Land of the Lost,Walnut-Sized Brain,tt0457400\n7b3D5qPBrI,2009.0,3,10,2011,Land of the Lost,Synchronized Swinging,tt0457400\nKLoOI5Laplo,2009.0,1,10,2011,Land of the Lost,Today Show Interview,tt0457400\n7hwkR_wvrM8,2009.0,4,10,2011,Couples Retreat,Couples Skill-Building,tt1078940\n4hkg3Zut97U,2009.0,8,10,2011,Couples Retreat,Massage Time,tt1078940\n3SiGgXIYppA,2009.0,3,10,2011,Couples Retreat,The Resort Rules,tt1078940\nrl6SpFVJoUA,2009.0,10,10,2011,Couples Retreat,Encouragement!,tt1078940\nBG6uMsq8PPs,2009.0,7,10,2011,Couples Retreat,The Circle of Life,tt1078940\nc-unYxWW6ws,2009.0,8,9,2011,Duplicity,We're Not Like Other People,tt1135487\nzVwWDprMFiI,2009.0,6,10,2011,Couples Retreat,A Hypothetical Gun,tt1078940\nUKGE05RbsV8,2010.0,2,11,2011,Get Him to the Greek,Beyonce's Bidet and The Jazz Man,tt1226229\ncgBz4BKSLRQ,2009.0,7,9,2011,Duplicity,Copying the Formula,tt1135487\ncYjv9uWxW94,2009.0,4,9,2011,Duplicity,Nobody Trusts Anybody,tt1135487\n0fbR1RvOCQA,2009.0,6,9,2011,Duplicity,You're Gaming Me?,tt1135487\niX-nnY0x-SE,2009.0,3,9,2011,Duplicity,People I've Slept With,tt1135487\nGfoSukpWVos,2009.0,2,9,2011,Duplicity,Why Are We Here?,tt1135487\n55X_DAk6K_k,2010.0,1,11,2011,Get Him to the Greek,Showbiz Tonight,tt1226229\nCtIhkGu6ahY,2009.0,5,9,2011,Duplicity,Quitting the Spy Game,tt1135487\nf8_4uckfT8I,1989.0,4,9,2011,Born on the Fourth of July,To Be Whole Again,tt0096969\nNzfSLgWkTlY,2004.0,8,9,2011,The Bourne Supremacy,Car Chase With Kirill,tt0372183\nNq295Mg6PHg,2004.0,7,9,2011,The Bourne Supremacy,Confronting Abbott,tt0372183\nmVv14yZ1c44,2004.0,5,10,2011,In Good Company,Dorm Room Seduction,tt0385267\n87w655s3xKc,1997.0,8,9,2011,Liar Liar,I'm Kicking My Ass!,tt0119528\nX6YLAmKFpRM,1997.0,7,9,2011,Liar Liar,Roasting the Committee,tt0119528\npDy41hvdq4s,1997.0,6,9,2011,Liar Liar,Car Troubles,tt0119528\ndAE7uOO_4v4,1997.0,4,9,2011,Liar Liar,The Pen Is Blue,tt0119528\ngeiS49_p84Q,1997.0,3,9,2011,Liar Liar,I Can't Lie!,tt0119528\nJdfCyow-Tiw,2004.0,5,9,2011,The Bourne Supremacy,Interrogating Nicky,tt0372183\nIsBB4i4k2PM,1997.0,2,9,2011,Liar Liar,A Wish Come True,tt0119528\nql0DycjR8wQ,2004.0,6,9,2011,The Bourne Supremacy,Abbott Kills Danny,tt0372183\njyZU7lfGjyk,2004.0,4,9,2011,The Bourne Supremacy,Fighting Close & Dirty,tt0372183\nY9yrupye7B0,1989.0,4,9,2011,Field of Dreams,Moonlight Graham's Wish,tt0097351\nOwaxFAC6rzk,2004.0,3,9,2011,The Bourne Supremacy,Escaping in Naples,tt0372183\n117FZnev4Os,2000.0,8,10,2011,Meet the Parents,Racing Home,tt0212338\nDxRzEdg0p4Q,2004.0,1,9,2011,The Bourne Supremacy,Goa Car Chase,tt0372183\njgyZ7yb2mmI,2000.0,3,10,2011,Meet the Parents,Lie Detector Test,tt0212338\na5SoIFm-SrQ,2000.0,10,10,2011,Meet the Parents,Will You Be My Son-In-Law?,tt0212338\nlJDRkVKjMOU,2000.0,7,10,2011,Meet the Parents,Up In Flames,tt0212338\nLD-DYjqW7HQ,2010.0,7,11,2011,Get Him to the Greek,Hateful Respect,tt1226229\n5dSvsp3dxvc,2000.0,4,10,2011,Meet the Parents,The Circle of Trust,tt0212338\naTaX_L7msxs,2010.0,9,11,2011,Get Him to the Greek,Clench and Sneeze,tt1226229\n4_Anuo4_Tlo,2010.0,5,11,2011,Get Him to the Greek,Handle the Moment,tt1226229\n6ZcNHOP3wdw,2010.0,6,11,2011,Get Him to the Greek,Move to Seattle?,tt1226229\nCQcGrzmNihY,2010.0,3,11,2011,Get Him to the Greek,Chocolate Daddy,tt1226229\n4hQ0ILw1P7o,2007.0,8,9,2011,The Bourne Ultimatum,Bourne's Beginning,tt0440963\nJRLNdcmRcFY,2007.0,6,9,2011,The Bourne Ultimatum,Stealing the Blackbriar Files,tt0440963\nlnYzb6P_1Wg,2007.0,7,9,2011,The Bourne Ultimatum,Paz Chases Bourne,tt0440963\n3jLbKr11l20,2002.0,9,10,2011,The Bourne Identity,We Always Work Alone,tt0258463\nuLt7lXDCHQ0,2007.0,4,9,2011,The Bourne Ultimatum,Bourne vs. Desh,tt0440963\n3TmzG_fqqU8,2007.0,5,9,2011,The Bourne Ultimatum,Get Some Rest,tt0440963\nLOVgTjeg4fY,2007.0,3,9,2011,The Bourne Ultimatum,Desh Makes a Kill,tt0440963\nUFnmq5PPScA,2002.0,7,10,2011,The Bourne Identity,Pen Versus Knife,tt0258463\ntxHNcE_d7ro,2002.0,3,10,2011,The Bourne Identity,My Name Is Jason Bourne,tt0258463\n2ETruidd5lQ,2002.0,8,10,2011,The Bourne Identity,The Paris Chase,tt0258463\nhKSscAR4cS8,1997.0,7,9,2011,The Game,Back from the Dead,tt0119174\nHSckms_rfwY,2002.0,5,10,2011,The Bourne Identity,\"You Need Money, I Need a Ride\",tt0258463\nIjrWOZby8s8,2002.0,6,10,2011,The Bourne Identity,Why Would I Know That?,tt0258463\nJmxK_pBaG4E,2002.0,4,10,2011,The Bourne Identity,Evacuation Plan,tt0258463\nz0ZnN4mivGw,1997.0,2,9,2011,The Game,Begins,tt0119174\nBFUVGfsVzhQ,1997.0,6,9,2011,The Game,She's In On It,tt0119174\nTfzRP1tCmsk,1997.0,5,9,2011,The Game,Deadly Cab Ride,tt0119174\nSHgs3LFLBzY,2002.0,2,10,2011,The Bourne Identity,No Papers,tt0258463\nM57AIegsBz4,1997.0,3,9,2011,The Game,Bad Waitress,tt0119174\nwqwUdp5-2D8,1995.0,3,9,2011,Mallrats,Superman's Baby,tt0113749\njFPV16f182w,1995.0,8,10,2011,Casino,The Feds Run Out of Gas,tt0112641\nAuYaiXT_1tM,2003.0,6,10,2011,Seabiscuit,The Horse Has a Lot of Heart,tt0329575\nb2dewDwIQyM,1995.0,9,10,2011,Casino,Meeting in the Desert,tt0112641\ngcAaILQ0ATo,1995.0,7,10,2011,Casino,Lester Diamond,tt0112641\nKSRWc7zwzC4,2003.0,9,10,2011,Seabiscuit,The Match Race,tt0329575\nKYa1IsxGVuc,1995.0,5,10,2011,Casino,Cheater's Justice,tt0112641\nk8Pku1zXM5g,1995.0,6,10,2011,Casino,Dominick & the Desperadoes,tt0112641\nrFvaTVV7yO4,2000.0,7,9,2011,Nutty Professor 2: The Klumps,Granny Loves Buddy,tt0144528\nZN6mp2NjMhs,1995.0,2,10,2011,Casino,The Count Room,tt0112641\nvkmf3Hbnh_4,2000.0,8,9,2011,Nutty Professor 2: The Klumps,Giant Hamster Attack,tt0144528\n-JbSkxI2DrY,2000.0,3,9,2011,Nutty Professor 2: The Klumps,Trumpets and Asses,tt0144528\nFFUPB-cVozg,2000.0,6,9,2011,Nutty Professor 2: The Klumps,Armageddon Nightmare,tt0144528\naIPmu6bYZOs,1995.0,3,10,2011,Casino,\"In Vegas, Everybody Watches Everybody\",tt0112641\n1sO7SyT9mS0,2000.0,4,9,2011,Nutty Professor 2: The Klumps,Perverted Proposal,tt0144528\nn0cG11lTS1E,2003.0,7,9,2011,Bruce Almighty,Bruce Answers Prayers,tt0315327\nnhTupXSJkYQ,2003.0,5,9,2011,Bruce Almighty,Bruce Gets His Job Back,tt0315327\nCO5K227sues,2003.0,8,9,2011,Bruce Almighty,Be the Miracle,tt0315327\n_b25Fbg8xqU,1989.0,2,10,2011,The 'burbs,Bees and Bad Karma,tt0096734\ntB6Uj2RGhPU,1984.0,2,10,2011,Cloak & Dagger,Secret Cartridge,tt0087065\nHdXfVjRZ0yU,2005.0,10,10,2011,King Kong,The Fall of Kong,tt0360717\nzJO4Chs7-lg,2000.0,3,10,2011,The Skulls,Initiation,tt0192614\nd63s74ijwb8,2000.0,10,10,2011,The Skulls,Leaving,tt0192614\nTWJEVnNwAtk,2000.0,1,10,2011,The Skulls,Are You Ready To Be Reborn?,tt0192614\nQ4HY544URjA,1984.0,10,10,2011,Repo Man,A Cosmic Ride,tt0087995\nxcJXT5lc1Bg,1984.0,4,10,2011,Repo Man,The Repo Code,tt0087995\nsAO0owc4xeY,1984.0,3,10,2011,Repo Man,The Reverend's Telethon,tt0087995\njnA7jmNVYFs,1989.0,9,12,2011,Parenthood,Gil Quits,tt0098067\n37KddyjUxnQ,2008.0,9,11,2011,Wanted,Wesley's Rampage,tt0493464\nAZMg4vFcRQs,2000.0,7,10,2011,Erin Brockovich,Two Wrong Feet in Ugly Shoes,tt0195685\nqSYAT8jpqgk,2003.0,2,9,2011,Bruce Almighty,Bruce vs. Evan,tt0315327\nQxPA0i_TVvk,2004.0,7,12,2011,Ray,Drunk at a Recording Session,tt0350258\naKIM6q3awws,2004.0,9,10,2011,In Good Company,\"If You Fire Him, You Have to Fire Me\",tt0385267\nYDmULxspTJM,2008.0,3,11,2011,Wanted,Viper Ride,tt0493464\nNDXWV-mGlPE,1989.0,9,10,2011,Fletch Lives,Elmer Fudd Gantry,tt0097366\nkATiU-cZCPc,1998.0,3,10,2011,\"Lock, Stock and Two Smoking Barrels\",\"Guns for Show, Knives for a Pro\",tt0120735\nN_HXTmS-AF4,2008.0,4,9,2011,Role Models,\"Meeting \"\"The Littles\"\"\",tt0430922\nTyDE15kKDpI,1997.0,8,12,2011,Bean,Shower Surprise,tt0118689\nVTyBpsX1TdE,1997.0,1,12,2011,Bean,Blowing His Nose,tt0118689\niQISI7DOVCY,1996.0,7,10,2011,Fear,We Have Something That Everybody Wants,tt0117381\nXpga1vtS3tA,1989.0,6,10,2011,The 'burbs,The Femur,tt0096734\nTtHffqqdh1Y,2010.0,7,-1,2011,Tamara Drewe,Let's Lighten Up,tt1486190\n9C2L5v6BfLE,2004.0,5,10,2011,Van Helsing,He's Alive! Scene,tt0338526\nVUgsvd3ZjvA,2004.0,10,10,2011,Van Helsing,The Death of Dracula Scene,tt0338526\nbwf_EFTMZ9k,1989.0,5,10,2011,The 'burbs,Ray's Nightmare,tt0096734\nyoWz1IdoTIg,2006.0,5,10,2011,Smokin' Aces,Ivy Confronts Buddy,tt0475394\nPPO1EQmj05I,1989.0,9,10,2011,The 'burbs,Ambulance Encounter,tt0096734\n1nVThHLqda0,1989.0,4,10,2011,The 'burbs,Satan Is Our Pal,tt0096734\neCfvE03ufF8,1989.0,1,10,2011,The 'burbs,What Is It?,tt0096734\nCGivL32FazM,1999.0,2,11,2011,October Sky,Railroad Scare,tt0132477\nQyCMxDBGqF4,2002.0,1,10,2011,Ali G Indahouse,Eastside vs. Westside,tt0284837\nZ9agItiMEEk,1992.0,2,10,2011,Bob Roberts,Fanatic Fans,tt0103850\nXHrw3AFW0Z0,2000.0,1,10,2011,Meet the Parents,Greg Says Grace,tt0212338\neC_Ua1svsSE,2001.0,11,11,2011,American Pie 2,Don't Forget Your Penis Cream,tt0252866\nzNvYQ2ILSCo,2011.0,7,-1,2011,Hanna,Are We Going to Kiss Now?,tt0993842\nwytwlFfk5dY,2011.0,1,-1,2011,The Eagle,Esca,tt1034389\nt6bhgzR3gkY,2011.0,2,-1,2011,The Dilemma,Hero Couple,tt1578275\nJuv96hHY62A,2010.0,3,-1,2011,Little Fockers,The Rock Wall,tt0970866\nJtHq6vKm3WU,2010.0,5,-1,2011,Little Fockers,Investment Banker and Shaman,tt0970866\nBHBmOFFExso,2010.0,1,-1,2011,Little Fockers,All Good Under the Hood,tt0970866\nonyfp4uSmcY,2009.0,2,-1,2011,Green Zone,Game Face,tt0947810\nsrTcK8ybXpI,2010.0,5,-1,2011,Greenberg,ADD and Carpal Tunnel,tt1234654\n5oav3ZjdRz4,2009.0,6,-1,2011,Green Zone,The Americans Are Here,tt0947810\n4wddfKqi1hI,2010.0,3,-1,2011,Greenberg,The Vet's Office,tt1234654\nKWaZiVG1RfY,2010.0,4,-1,2011,Greenberg,Trying to Do Nothing,tt1234654\nUoqe4phEwEY,2009.0,3,-1,2011,Inglourious Basterds,The Jew Hunter,tt0361748\nTyoZkvsxrSo,2010.0,5,-1,2011,Leap Year,Runaway Car,tt1216492\nhEDeIvU1si8,2001.0,5,11,2011,American Pie 2,Jim's Trombone Solo,tt0252866\noquM3yN0E4A,2009.0,2,-1,2011,Love Happens,Am I Being Too Harsh?,tt0899106\nNRqxxQy8sLs,2010.0,2,-1,2011,Greenberg,A Birthday Dinner,tt1234654\n3YM3AYZaTZ0,2009.0,1,-1,2011,Inglourious Basterds,Lt. Aldo Raine,tt0361748\nK8yeho0MbYc,2001.0,7,11,2011,American Pie 2,Phone Sex,tt0252866\n9oVoJMVsKtk,2001.0,6,11,2011,American Pie 2,The Rule of Three,tt0252866\nf-PnGRaJaSA,1960.0,1,12,2011,Psycho,The Bates Motel,tt0054215\nYKRnEOUxZm0,1993.0,8,10,2011,Jurassic Park,Clever Girl Scene,tt0107290\noR1-UFrcZ0k,1982.0,9,10,2011,E.T.: The Extra-Terrestrial,Ride in the Sky,tt0083866\n2I91DJZKRxs,1975.0,4,10,2011,Jaws,You're Gonna Need a Bigger Boat Scene,tt0073195\n4WAxDlUOw-w,1958.0,9,11,2011,Vertigo,Scottie's Nightmare,tt0052357\n_WyD94vNqWg,1988.0,6,10,2011,Twins,I'll Be Back,tt0096320\nmGA_uH0-n28,1982.0,5,10,2011,E.T.: The Extra-Terrestrial,Ouch!,tt0083866\n5PT9OxwD6hM,1989.0,11,12,2011,Back to the Future Part 2,Marty Gives Biff CPR,tt0096874\nl9c1k_m6POA,1989.0,8,12,2011,Back to the Future Part 2,The Almanac,tt0096874\nKPowlurwWzU,1998.0,11,11,2011,BASEketball,Reggie Jackson,tt0131857\nCsWFLaHiQa8,1998.0,7,11,2011,BASEketball,Reviving Little Joey,tt0131857\nS4m848bh1iY,1989.0,7,12,2011,Back to the Future Part 2,Biff's World,tt0096874\n1Qb-2KSKByg,1998.0,6,11,2011,BASEketball,Drunk Come True,tt0131857\n6wN78_E4AAs,1998.0,9,11,2011,BASEketball,Kiss and Make Up,tt0131857\n7WD9MVTfdjs,1998.0,8,11,2011,BASEketball,The Radio Gets Specific,tt0131857\nhXce5-f8mkA,1998.0,5,11,2011,BASEketball,Bloody Finger,tt0131857\nNZxjmhwogCk,1998.0,4,11,2011,BASEketball,Chicken Poo?,tt0131857\nyVGlKrziG5E,1999.0,1,10,2011,Bowfinger,A Go Picture,tt0131325\nRG9LKdqzru0,1998.0,2,11,2011,BASEketball,Jenna's Health-Challenged Kids,tt0131857\nB-tq7mbTvrA,1998.0,10,11,2011,BASEketball,The Eric Cartman Psyche,tt0131857\nkXnEMLzzG_s,2002.0,10,10,2011,Ali G Indahouse,Saving Staines,tt0284837\nf9IkJzhoj_I,2002.0,4,10,2011,Ali G Indahouse,Hunger Strike,tt0284837\nztSSzTA5Z90,1998.0,1,11,2011,BASEketball,Shutting Off the Gas,tt0131857\nCSSvNshY5dY,2002.0,9,10,2011,Ali G Indahouse,Nipple Cripple,tt0284837\nIlMjQrpAPHo,2002.0,8,10,2011,Ali G Indahouse,Ali's Stash,tt0284837\nm_PeQCPq8QA,1979.0,10,11,2011,1941,The Ferris Wheel Rolls,tt0078723\nCPnwlNvwBLI,1979.0,2,11,2011,1941,The Indomitable Capt. Kelso,tt0078723\nmT5NiDGbnVM,1986.0,9,9,2011,The Money Pit,I Love This House!,tt0091541\nIptkOvp53-A,1995.0,1,9,2011,The Hunted,Kirina's Room,tt0113360\nNOVNs9sT32k,1979.0,7,11,2011,1941,Dance Hall Brawl,tt0078723\n1ao1yR27lak,1992.0,7,10,2011,Bob Roberts,Bob Is Shot,tt0103850\nB8cWjLMuJgo,1958.0,3,11,2011,Vertigo,Saving Madeleine,tt0052357\nidfa7VqkSOw,1990.0,10,11,2011,Bird on a Wire,Tiger Chase,tt0099141\nPxtuovqUgYU,1992.0,9,10,2011,Bob Roberts,Conspiracy of Silence,tt0103850\nG99Olp16O7M,1992.0,1,10,2011,Bob Roberts,Good Morning Philadelphia,tt0103850\n-x6njs-cGUE,1962.0,6,10,2011,To Kill a Mockingbird,All Men Are Created Equal,tt0056592\nI3znSbbu9IU,2004.0,9,9,2011,The Bourne Supremacy,Final Call to Pamela,tt0372183\neKrEVWGTuRg,1992.0,4,9,2011,Far and Away,Say You Like My Hat!,tt0104231\nC841wEogE4U,1962.0,5,10,2011,To Kill a Mockingbird,Mayella's Guilt,tt0056592\nA4DSD-ZbhoY,1990.0,2,10,2011,Cry-Baby,Turkey Point is Open for Business,tt0099329\noBO9Uy4uc_c,2009.0,9,10,2011,Coraline,No I'm Not!,tt0327597\n1FZ2FA-epcE,1995.0,10,10,2011,Casino,House of the Rising Sun,tt0112641\nVKTT-sy0aLg,1933.0,7,10,2011,Duck Soup,The Mirror Scene,tt0023969\nXOnuxo70q9Q,2003.0,6,10,2011,Honey,Chaz Saves,tt0322589\nAM5EYO5wWMA,1985.0,10,10,2011,Back to the Future,,tt0088763\naZV1XI9qZUc,2000.0,8,12,2011,The Family Man,Interview at the Old Job,tt0218967\n934iAVn9CKw,1991.0,10,10,2011,Fried Green Tomatoes,A Lady Always Knows When to Leave,tt0101921\nG36NDRDO6L8,2000.0,1,12,2011,The Family Man,Do You Want to Die?,tt0218967\na2dHmOQuDaQ,2000.0,5,12,2011,The Family Man,Jack Loses It on Kate,tt0218967\nlx0z9FjxP-Y,1991.0,7,10,2011,Fried Green Tomatoes,Parking Lot Rage,tt0101921\nVHMi-j7W2gM,1977.0,7,10,2011,Slap Shot,Pre-Game Brawl,tt0076723\nnJ04J0TWD1I,1990.0,1,11,2011,Bird on a Wire,Could You Look at My Butt?,tt0099141\nFNHM2JEA1qg,1990.0,8,11,2011,Bird on a Wire,Roach Motel,tt0099141\n1g4V55DSrbg,2001.0,3,10,2011,Mulholland Dr.,Bad Coffee,tt0166924\nruN_KcF-Ouw,2003.0,4,10,2011,Monster,Nothing You Can't Do,tt0340855\nWVx0SlYmaxs,2003.0,2,10,2011,Monster,Here We Go,tt0340855\naJ_NWmLawAM,2011.0,10,-1,2011,Soul Surfer,Why Did This Happen?,tt1596346\nKMm_fkYUdo8,2009.0,1,10,2011,Into Temptation,The Final Confession,tt1232824\nc6GEJoLDcAs,2004.0,10,10,2011,Monster Island,Celebrity Salvation,tt0382856\nLR6zTixElx8,2009.0,6,10,2011,Into Temptation,Impure Thoughts,tt1232824\nL0CGJL5SlsQ,2004.0,7,10,2011,Monster Island,\"Eight Ball, Corner Pocket\",tt0382856\nwwrzI3b5LxI,2005.0,8,10,2011,Little Fish,You're a Lying Junkie,tt0382810\n9IdM84YVmV0,2010.0,1,-1,2011,Super,\"No Cuts, No Buts\",tt1650062\ndfT_2XRB8aU,2004.0,1,10,2011,Monster Island,Carmen Electra Is Taken,tt0382856\nHws-ExO9fhY,2003.0,7,10,2011,Monster,Hiking With a Stranger,tt0340855\nHDxqSt_Ctbw,2005.0,9,10,2011,Little Fish,Lionel ODs,tt0382810\nLsm-snDPXnk,2005.0,1,10,2011,Little Fish,A Few Bitter Words,tt0382810\nW4_F1oMTEFc,2005.0,4,10,2011,Little Fish,Kissing Off Drugs,tt0382810\nx2BuNuwZ9mg,2010.0,3,-1,2011,Certified Copy,Immortalized,tt1020773\n86F-fpdTJg4,2003.0,6,10,2011,Monster,A Real Life,tt0340855\nefr5PYBNZCo,2002.0,2,10,2011,Bark!,I Need to See a Doctor,tt0273453\ntAp6HB4WAdg,2002.0,4,10,2011,Bark!,I'm Just Your Vet,tt0273453\n-3cmJe_Kw30,2003.0,1,10,2011,Monster,Five Dollar Break,tt0340855\n5TcimuSgJoI,2003.0,8,10,2011,Monster,The Final John,tt0340855\nYNN09xbsN1A,2011.0,7,-1,2011,Red Riding Hood,Don't Come Near Me,tt1486185\n2nC7GyHvy0w,2004.0,9,10,2011,Monster Island,Escape From Mumbacha Mountain,tt0382856\nIiD7lmQlL-0,2004.0,6,10,2011,Monster Island,Giant Mantis Sex,tt0382856\n7TcMmmC-PqQ,2009.0,9,10,2011,Into Temptation,Divine Intervention,tt1232824\nQsCPatNIpPE,2009.0,10,10,2011,Into Temptation,Absolution for the Absolver,tt1232824\nmaaoRjQN42c,2009.0,4,10,2011,Into Temptation,Prostitution 101,tt1232824\nHZ1D6bBiufI,2009.0,8,10,2011,Into Temptation,Linda's Apartment,tt1232824\nu0Mz_e_TQCI,2009.0,2,10,2011,Into Temptation,The Less Famous Saints,tt1232824\nAsKzZqVhH88,2009.0,5,10,2011,Into Temptation,Friend of the Cloth,tt1232824\nqaK_jsGvz6Y,2004.0,8,10,2011,Monster Island,A Boost of Slave Morale,tt0382856\n3z637yWEmHs,2009.0,3,10,2011,Into Temptation,Consoling Members,tt1232824\njHZLatZGr0E,2004.0,5,10,2011,Monster Island,The Eccentric Scientist,tt0382856\nDO50JhaRp4A,2004.0,3,10,2011,Monster Island,Attack of the Giant Praying Mantis,tt0382856\npZE1CyPdDMo,2004.0,4,10,2011,Monster Island,Dr. Harryhausen & the Swamp Monkey,tt0382856\nOJZGgPoJ_u4,2004.0,2,10,2011,Monster Island,Who's With Me?,tt0382856\n3FgbU0ZZzQY,2005.0,10,10,2011,Little Fish,I Need That Money,tt0382810\nY7LbtFY23wo,2002.0,6,10,2011,Bark!,Psychiatric Resident,tt0273453\nV3EpNkdgmyo,2005.0,2,10,2011,Little Fish,Loan Rejected,tt0382810\ndp6WEWGtqRo,2005.0,3,10,2011,Little Fish,Going Through Withdrawal,tt0382810\n65L7TzsFaD8,2005.0,5,10,2011,Little Fish,Jonny Offers to Help,tt0382810\nLdnaptnNXbo,2005.0,7,10,2011,Little Fish,It's Your Life,tt0382810\n91wo3olctwU,2005.0,6,10,2011,Little Fish,Tracy Makes a Scene,tt0382810\nE2VBcVxwUqM,2002.0,10,10,2011,Bark!,Eviction Notice,tt0273453\njGWM1SoLAm8,2002.0,8,10,2011,Bark!,I'm Terrible,tt0273453\nm8RpGUXeHFQ,2002.0,9,10,2011,Bark!,You Think You're a Good Kisser?,tt0273453\nPHcV9HUfr0c,2002.0,5,10,2011,Bark!,\"Biting Mother, Barking Sister\",tt0273453\nxeE4wGavBhE,2002.0,3,10,2011,Bark!,Pathological Grief Reaction,tt0273453\nGxd-OPuy2tA,2002.0,7,10,2011,Bark!,I'm Really Mad at You,tt0273453\n1xqufX-xMr0,2002.0,1,10,2011,Bark!,Have You Ever Wanted to Be a Dog?,tt0273453\nGFB8DiM-SLQ,2010.0,2,-1,2011,Certified Copy,A Good Husband,tt1020773\n44rUlHYg-MU,2010.0,4,-1,2011,Super,Uber Enlightenment,tt1650062\nyu2VrqdOVdw,2010.0,5,-1,2011,Super,Damsel in Distress,tt1650062\naP1FZToPFxA,2010.0,3,-1,2011,Super,You Need a Sidekick,tt1650062\ntVl78xgPyow,2010.0,2,-1,2011,Super,Boltie!,tt1650062\nsoTciHbL4iA,2010.0,1,-1,2011,Certified Copy,Fatherly Advice,tt1020773\nqZfK-VnxBSo,2003.0,9,10,2011,Monster,Regrets,tt0340855\nJcTBwzDucE4,2003.0,3,10,2011,Monster,Worried Sick,tt0340855\nexclwIbllXQ,2011.0,11,-1,2011,Soul Surfer,A Prosthetic Arm,tt1596346\nyzGKgnbclz8,2009.0,8,-1,2011,Get Low,A Fair Price,tt1194263\nPpa4gvsZHDE,2009.0,9,-1,2011,Get Low,Broke The Mold,tt1194263\nFvJMbz4vgNY,1997.0,4,7,2011,My Best Friend's Wedding,Last Time Alone Together,tt0119738\nWlB-BbWBzd8,1997.0,7,7,2011,My Best Friend's Wedding,Two-Faced Big-Haired Food Critic,tt0119738\n9ExnVKy8hao,1997.0,6,7,2011,My Best Friend's Wedding,Choose Me,tt0119738\nvGgdg2q1eig,1997.0,5,7,2011,My Best Friend's Wedding,Creme Brulée vs. Jell-O,tt0119738\nYKjzDMrSX3w,1997.0,2,7,2011,My Best Friend's Wedding,Double Engagement,tt0119738\nQAsI8z9qfKY,1997.0,1,7,2011,My Best Friend's Wedding,Moves You've Never Seen,tt0119738\nA9qAaecuaFk,1997.0,3,7,2011,My Best Friend's Wedding,George Overplays His Part,tt0119738\nGLQd8ZTeYlI,2011.0,7,-1,2011,POM Wonderful Presents: The Greatest Movie Ever Sold,Ralph Nader,tt1743720\noAFVhwUVJt4,2010.0,3,-1,2011,Incendies,Not From Here,tt1255953\n6I1qP8w8DxE,2009.0,2,-1,2011,The Hangover,This Can't Be Happening,tt1119646\nzNyykRpFBQY,2010.0,3,-1,2011,Barney's Version,I Need to Get Laid,tt1423894\nTjpkMfTBVQs,2010.0,4,-1,2011,Easy A,A Family of Late Bloomers,tt1282140\nGaBjbzvkxNk,2009.0,4,-1,2011,Get Low,Crazy Old Nutter,tt1194263\nXQLKAVpgHQ4,2009.0,1,-1,2011,Micmacs,Movie Mimic,tt1149361\n-UAV4O9oZy0,2010.0,4,-1,2011,The Bounty Hunter,Seduction,tt1038919\nscEuS9-TozQ,2009.0,9,-1,2011,Planet 51,Rover Singing in the Rain,tt0762125\ngB1LgDhJQMI,2009.0,7,-1,2011,Planet 51,Time to Find Chuck,tt0762125\nmkNO5Y4LOMs,2009.0,6,-1,2011,Planet 51,Military Strategy,tt0762125\ngTLqDBbrmPM,2009.0,5,-1,2011,Planet 51,Time to Run,tt0762125\nkqc4KyCYA0Q,2009.0,2,-1,2011,Planet 51,Chuck's Landing,tt0762125\nsNGlmsj6C-E,2009.0,3,-1,2011,Planet 51,First Encounter,tt0762125\nc3uOWTAuaTQ,2009.0,1,-1,2011,Planet 51,Poop Jelly Beans,tt0762125\nTDo2llQRSOw,2008.0,4,10,2011,Senior Skip Day,What Are the Odds?,tt0849470\nXVEnOs2HVlY,2007.0,9,10,2011,King of California,Thank You,tt0388182\nEzy42s9AacE,2003.0,10,10,2011,Shade,A Real Score,tt0323939\nzrECNEIUFZc,2009.0,8,10,2011,Infestation,Prison Break,tt1020543\nnhUW_MrQGTY,2010.0,6,10,2011,Dead Awake,Mr. Brennan,tt1501652\n77LZW5N_Tic,2002.0,9,10,2011,Ted Bundy,Execution Parade,tt0284929\nnKIH1LgVMpQ,2001.0,3,10,2011,Harvard Man,Girls and Winning,tt0242508\nA-3SeVkGrjE,2001.0,1,10,2011,Harvard Man,Black People Don't Swim,tt0242508\nAekHQpGS_AQ,2005.0,7,10,2011,Wassup Rockers,Different From Most Guys,tt0413466\ndpFSms_kfQo,2001.0,2,10,2011,Harvard Man,Kierkegaard vs. Heidegger,tt0242508\nFUL6DhVU7E8,2005.0,2,10,2011,Wassup Rockers,My First Time,tt0413466\n-qK58CZslAs,1973.0,4,-1,2011,The Exorcist,Captain Howdy & The Ouija Board,tt0070047\noirwXF98wo0,2009.0,3,10,2011,Deadline,Home Movies,tt1242618\n2X80aLjCncQ,2009.0,2,10,2011,Deadline,The First Night,tt1242618\nzQPE6MCV2jo,2005.0,7,10,2011,The Amateurs,\"The \"\"Big\"\" Black Guys Scene\",tt0405163\nR1hGaVoYZxo,2005.0,6,10,2011,The Amateurs,Script Meeting,tt0405163\nfA_1iRByNFw,2005.0,5,10,2011,The Amateurs,Ingredients to a Good Porno,tt0405163\nY2u092TuA8g,2005.0,4,10,2011,The Amateurs,Our Writer/Director,tt0405163\n_P4YRqZPT54,2003.0,3,9,2011,Grand Theft Parsons,Yin and Yang,tt0338075\nhZdl2FFp0eA,2004.0,1,11,2011,Eternal Sunshine of the Spotless Mind,Train Ride,tt0338013\nz1hgz7vgIt4,2011.0,1,-1,2011,Hop,Stuffed Bunny!,tt1411704\n30iTy8ws54M,2010.0,8,10,2011,Scott Pilgrim vs. the World,Knives vs. Ramona,tt0446029\nSlPGQ7r0f7w,2011.0,5,-1,2011,Paul,He Can Read Minds!,tt1092026\nBu2PFyl689w,1991.0,9,10,2011,Jungle Fever,Gator's Last Dance,tt0102175\nWgcXxTUu0aM,2004.0,4,12,2011,Ray,Hummingbirds,tt0350258\nRu2Mvkf9dL8,1989.0,10,10,2011,Fletch Lives,\"Welcome Home, Fletch\",tt0097366\ntTVFP-9AdMk,2004.0,5,12,2011,Ray,The Raelettes,tt0350258\nst0h6-5fVtw,2003.0,10,10,2011,Monster,\"Bye, Baby\",tt0340855\njTtTZjp9ViQ,2009.0,8,10,2011,Fast & Furious,Dom vs. Fenix,tt1013752\n9nFrp7Z9wEU,2004.0,2,12,2011,Ray,\"I Might Be Blind, But I Ain't Stupid\",tt0350258\ndXQq9Y7KnmQ,2003.0,8,10,2011,The Snow Walker,After the War,tt0337721\n8q8m4-7ciaE,1990.0,8,9,2011,Maniac Cop 2,Visiting Hours,tt0100107\nqDF1YfpUaNs,1990.0,5,9,2011,Maniac Cop 2,Stalking a Stripper,tt0100107\nkDHxHA2RzJ0,1990.0,2,9,2011,Maniac Cop 2,Lucky Ticket,tt0100107\nUx_ruB_nt94,2005.0,8,10,2011,The Amateurs,A Porno Penis!,tt0405163\nD407HWykw6o,1990.0,7,9,2011,Maniac Cop 2,You Might Learn Something,tt0100107\nUBvArq7u9N8,2005.0,2,10,2011,The Amateurs,The Film Guy,tt0405163\nAqutucmM6S8,2005.0,3,10,2011,The Amateurs,Big Porno Weenie,tt0405163\n9uFe61ebm30,2005.0,1,10,2011,The Amateurs,Special Balls,tt0405163\nQeoL6G4bW4U,2003.0,3,10,2011,Shade,The Whole Thing Was a Set-Up,tt0323939\nxDwT7-3BQ5c,1993.0,9,9,2011,Maniac Cop 3: Badge of Silence,Still Alive,tt0104808\nqq8xAukB-xI,1993.0,8,9,2011,Maniac Cop 3: Badge of Silence,Blasted to Hell,tt0104808\npSQkW5soVhk,2004.0,9,10,2011,My Date with Drew,Brian and Drew Click,tt0378407\nH3plWCGH4wM,2004.0,10,10,2011,My Date with Drew,Gift Exchange,tt0378407\nkkZWXM6mShg,1993.0,7,9,2011,Maniac Cop 3: Badge of Silence,Finish It!,tt0104808\nK_31ZHeMlB8,2004.0,8,10,2011,My Date with Drew,Brian's Date With Drew,tt0378407\nEbU1vOVwnOo,1993.0,6,9,2011,Maniac Cop 3: Badge of Silence,Patient's Rights,tt0104808\n5klqA0K7K8k,2004.0,1,10,2011,My Date with Drew,Brian's Family Weighs In,tt0378407\ndyb4ztHMFf8,1993.0,5,9,2011,Maniac Cop 3: Badge of Silence,\"Lights, Camera, Bloodshed\",tt0104808\nhf4KXHSvKD8,1993.0,4,9,2011,Maniac Cop 3: Badge of Silence,Ixnay on the X-Ray,tt0104808\nYSrDBY0Tmdc,1993.0,3,9,2011,Maniac Cop 3: Badge of Silence,A Deal for Knicks Tickets,tt0104808\nPtozHYwIkNw,2004.0,2,10,2011,My Date with Drew,Making a Movie Trailer for Drew,tt0378407\n3wtgdxKJI_A,2004.0,6,10,2011,My Date with Drew,Generating Publicity,tt0378407\n8Px7Lr7VzvY,2004.0,3,10,2011,My Date with Drew,A Body to Die For,tt0378407\nJtyvQx-YiCE,1993.0,2,9,2011,Maniac Cop 3: Badge of Silence,A Shocking Encounter,tt0104808\nCbF9_x6zFYo,1993.0,1,9,2011,Maniac Cop 3: Badge of Silence,Dream Stalker,tt0104808\nAPsmTB3F7Rs,2004.0,4,10,2011,My Date with Drew,A Swarthy Guy,tt0378407\nM9nDop-5T0I,2004.0,7,10,2011,My Date with Drew,Drew Loves the Idea,tt0378407\n2P6sN_5eM_M,2007.0,9,10,2011,Sukiyaki Western Django,Crucifixion,tt0906665\n7cTI5pyy3Fw,2007.0,8,10,2011,Sukiyaki Western Django,Ruriko's Revenge,tt0906665\nMrfsbtOOdGA,2007.0,5,10,2011,Sukiyaki Western Django,A Trick Shot,tt0906665\n9k3swSqYKP8,2007.0,7,10,2011,Sukiyaki Western Django,Bloody Benton in Battle,tt0906665\nxl_aSDYuXhM,2007.0,4,10,2011,Sukiyaki Western Django,Lucky Me,tt0906665\ntIypF4ODIsM,2007.0,2,10,2011,Sukiyaki Western Django,Sword Brain,tt0906665\nr51WXifMsZg,2007.0,3,10,2011,Sukiyaki Western Django,Brawl at the Bar,tt0906665\ncPa929v8Hps,2001.0,7,10,2011,Harvard Man,Al Franken Class of  '73,tt0242508\n331wiVQINn8,2007.0,1,10,2011,Sukiyaki Western Django,Piringo's Story,tt0906665\nJjq8Ng6cjxE,2007.0,6,10,2011,Sukiyaki Western Django,The Hidden Badass,tt0906665\n_Pbi5kod89U,2007.0,10,10,2011,Sukiyaki Western Django,Victory or Death!,tt0906665\nQ0Eh0iTF2Bg,2005.0,10,10,2011,Wassup Rockers,,tt0413466\nGuEFmBxmIT0,2000.0,1,10,2011,Ginger Snaps,Three Years Late,tt0210070\nrCg9zLCbhZ0,2009.0,10,10,2011,Bad Lieutenant: Port of Call New Orleans,Great News!,tt1095217\nf27cck3Bl-Y,2009.0,6,10,2011,Bad Lieutenant: Port of Call New Orleans,I Should Kill You Both!,tt1095217\nVv0aAv0lJ3s,2009.0,3,10,2011,Bad Lieutenant: Port of Call New Orleans,These Iguanas,tt1095217\n6uHak2M7cmc,2009.0,1,10,2011,Bad Lieutenant: Port of Call New Orleans,You Wanna Hit?,tt1095217\nswOuQBjbiLU,2011.0,8,-1,2011,Limitless,Subway Fight,tt1219289\nv1Qu3dZlRGE,1997.0,9,10,2011,The Apostle,Nobody Moves That Book,tt0118632\nyuCbYNe3aZY,2010.0,6,-1,2011,Last Night,You Never Mentioned She Was Pretty,tt1294688\nNamXvlffiog,2010.0,5,-1,2011,Last Night,Surprise Visit From Alex,tt1294688\n56a5meaLhBM,2010.0,3,-1,2011,Last Night,Joanna Meets Laura,tt1294688\nqrzj1uVO-Lc,2010.0,2,-1,2011,Last Night,I'd Love Another Drink,tt1294688\nx7j4IiO_6RI,2010.0,1,-1,2011,Cave of Forgotten Dreams,Dreams of Lions,tt1664894\n-szJznl-3UE,2011.0,5,-1,2011,POM Wonderful Presents: The Greatest Movie Ever Sold,I Need Help,tt1743720\nZIc7bCHSmKo,2011.0,4,-1,2011,POM Wonderful Presents: The Greatest Movie Ever Sold,Making the Deal,tt1743720\nS78_9yWvSi8,2011.0,3,-1,2011,POM Wonderful Presents: The Greatest Movie Ever Sold,What is Your Brand?,tt1743720\neLW6uxK_MOI,2011.0,8,-1,2011,Soul Surfer,That's What I'm Talkin' About,tt1596346\nW_7_2Uwl2uc,2011.0,9,-1,2011,Soul Surfer,Bikini Shopping,tt1596346\nLeNRbtWgero,2011.0,7,-1,2011,Soul Surfer,Perspective,tt1596346\njeoUH00woxs,2011.0,5,-1,2011,Soul Surfer,Normal Is So Overrated,tt1596346\nNqxvezqrvQE,2011.0,6,-1,2011,Soul Surfer,She Will Never Be the Same,tt1596346\nNvNkGs5bFtA,2011.0,3,-1,2011,Soul Surfer,So How Have You Been?,tt1596346\npZNQ-Jo7nsI,2011.0,2,-1,2011,Soul Surfer,She's Counting on Me,tt1596346\nKgSTMVwRSiI,2011.0,5,-1,2011,Just Go with It,Love Monkey,tt1564367\nGpD2-wZnpO0,2010.0,5,-1,2011,Incendies,Precautions,tt1255953\nEyokx50Jhrw,2011.0,2,-1,2011,Just Go with It,Shoe Heaven,tt1564367\nkwdRauyX_Sc,2011.0,5,-1,2011,The Green Hornet,Scary In a Suit,tt0990407\nvFqitPr_Gpg,2011.0,1,-1,2011,The Green Hornet,Kato-Vision,tt0990407\n7MF2IgjAjjA,2010.0,4,-1,2011,How Do You Know,Don't Rock The Boat,tt1341188\nCdUzUdaC8tI,2010.0,5,-1,2011,Burlesque,Show Me,tt1126591\nPyeH_sv2TEY,2010.0,1,-1,2011,The Bounty Hunter,Fire Escape,tt1038919\nqi_t-McN6Vk,2009.0,4,-1,2011,Armored,Burn the  Car,tt0913354\nF0wFS45JjWA,2009.0,3,-1,2011,Cloudy with a Chance of Meatballs,Flint's Inventions,tt0844471\n_U-WwYlinTw,2009.0,1,-1,2011,District 9,Entering the Alien Ship,tt1136608\nvf6nfEZgorY,2011.0,10,-1,2011,Fast Five,Rio Chase,tt1596343\n0dlFAtbte0c,2011.0,9,-1,2011,Fast Five,Throw Down,tt1596343\nifG_E9BKfuc,2011.0,8,-1,2011,Fast Five,One Large Piggy Bank,tt1596343\n3u_oizn3fg4,2011.0,6,-1,2011,Fast Five,Safe in Tow,tt1596343\nUCh-HA6pIA8,2011.0,5,-1,2011,Fast Five,Train Rescue,tt1596343\nvQdFnS_u8UM,2011.0,3,-1,2011,Fast Five,The Score,tt1596343\ndobHtRTf5rY,2011.0,4,-1,2011,Fast Five,Chasing Dom,tt1596343\n7ZFGP8b4Nz4,2011.0,1,-1,2011,Fast Five,You Only Live Once,tt1596343\n4rJ4een9CcY,2003.0,5,-1,2011,Swimming Pool,Go to My Summer House,tt0324133\n7Q8m_vs3HzY,2011.0,2,-1,2011,Your Highness,Good Advice,tt1240982\nKm71QCX39rQ,2011.0,3,-1,2011,Hanna,Don't Follow Me,tt0993842\n4iaM0-kcWtc,2011.0,5,-1,2011,Hanna,Psych Evaluation,tt0993842\nILJTdnLyUC8,2011.0,7,-1,2011,Hop,Coup d'etat,tt1411704\nQY11UyRZBM4,2011.0,3,-1,2011,Hop,Forbidden Room,tt1411704\ntH4JJtuyLp4,2011.0,5,-1,2011,Hop,Ungodly Pressure,tt1411704\nsFjraGFeU-A,2011.0,7,-1,2011,Paul,Hey Tara,tt1092026\nBkO51g7oXnw,2011.0,5,-1,2011,Jane Eyre,Is This How You Perceive Me?,tt1229822\nTnniBE14vQY,2010.0,5,-1,2011,Sanctum,The Sinkhole,tt0881320\nR9HPdX0TZAg,2010.0,6,-1,2011,The Adjustment Bureau,I Choose Her,tt1385826\nmnuJ_YVLL64,1991.0,7,10,2011,Jungle Fever,A Big Misunderstanding,tt0102175\nWkOLYUmITfc,1991.0,6,10,2011,Jungle Fever,She Looks Good!,tt0102175\n0l8mYfrxpTw,1991.0,5,10,2011,Jungle Fever,\"The Art of \"\"No\"\" Theory\",tt0102175\nCKJSr3Uw-N0,1991.0,2,10,2011,Jungle Fever,Flip Quits the Firm,tt0102175\njSidQZzJfcc,1991.0,3,10,2011,Jungle Fever,I Like Gettin' High,tt0102175\n1t867tCFccE,2009.0,10,10,2011,Fast & Furious,Fenix Down,tt1013752\nmTfTGanKAJs,1991.0,1,10,2011,Jungle Fever,Office Liaison,tt0102175\nNoRnWATJPrA,2009.0,6,10,2011,Fast & Furious,\"20% Angel, 80% Devil\",tt1013752\ng-gebDSBFkY,2009.0,9,10,2011,Fast & Furious,She Did It for You!,tt1013752\ndFAd35ck7hY,2003.0,10,10,2011,American Wedding,Love is Shaving Your Balls,tt0328828\nx_errHqd92k,2009.0,7,10,2011,Fast & Furious,Night Runners,tt1013752\nFD3Xh_Qez_Y,2009.0,5,10,2011,Fast & Furious,Dom Wins,tt1013752\nhK2bLlVeh-w,2009.0,4,10,2011,Fast & Furious,Cop and Criminal,tt1013752\nZXXpX29Xt-U,2009.0,1,10,2011,Fast & Furious,Fast Rescue,tt1013752\nwNWaYfZI3Ak,2009.0,3,10,2011,Fast & Furious,Visiting the Crash Site,tt1013752\nt1JsC1ur2X8,2009.0,2,10,2011,Fast & Furious,Ride or Die,tt1013752\nHegpqudDvwE,2010.0,1,-1,2011,My Soul to Take,Multiple Souls,tt0872230\nFIekWUU704U,2009.0,5,-1,2011,Love Happens,You're Really Messed Up,tt0899106\nUOVyhaDQNfw,2004.0,12,12,2011,Ray,A Healing Flashback,tt0350258\nnzWDzGxqqa0,2001.0,2,10,2011,Mulholland Dr.,A Living Nightmare,tt0166924\n8Ufi7Z8OokA,2008.0,2,10,2011,Burn After Reading,Cocktails and Goat Cheese,tt0887883\nLakGqZmF-Gg,2004.0,1,12,2011,Ray,Impromptu Audition,tt0350258\n5yGuDDemqaw,2004.0,11,12,2011,Ray,A Wake Up Call,tt0350258\nriYhck-Z9tw,2004.0,9,12,2011,Ray,No More Segregation,tt0350258\n_T7vEyicx6Q,2004.0,10,12,2011,Ray,Stealing From,tt0350258\nMLrd4hKTVLQ,2004.0,8,12,2011,Ray,A Better Deal,tt0350258\n_5TCxc7G31Q,2004.0,10,10,2011,In Good Company,Making an Ad Sale,tt0385267\nQ-R4SPTgjmI,2004.0,6,12,2011,Ray,It's Starting to Show,tt0350258\nFGiocp7_jE8,2004.0,8,10,2011,In Good Company,Questioning Teddy K,tt0385267\nY_RUAeNZs44,2004.0,7,10,2011,In Good Company,Are You Sleeping With Him?,tt0385267\nVFqbGbU8f8o,2004.0,3,10,2011,In Good Company,Synchronize and Synergize,tt0385267\nv6bD23vEigE,1989.0,6,9,2011,Field of Dreams,Doc Saves Karin,tt0097351\ncOE2gQrXchk,2004.0,1,10,2011,In Good Company,Meeting in the Elevator,tt0385267\nlKeaVq6fUpw,1984.0,9,10,2011,Repo Man,Hitching a Ride With J. Frank Parnell,tt0087995\nvRJ5cCP0ZPE,1984.0,6,10,2011,Repo Man,Flying Saucers & Time Machines,tt0087995\niK0-76FChfk,2008.0,5,11,2011,Wanted,Wesley's Breakdown,tt0493464\neb46yXP211w,1995.0,6,10,2011,12 Monkeys,Eating a Spider,tt0114746\n5ecF_TOyhfQ,2003.0,8,10,2011,Seabiscuit,Red's Secret,tt0329575\noXybPR2g7VY,2003.0,1,-1,2011,Swimming Pool,Are You Staying Long?,tt0324133\n9tzlsm5IvIg,2003.0,3,-1,2011,Swimming Pool,Are You Going to Tell My Daddy?,tt0324133\npLpIARbS5Xo,2000.0,6,10,2011,The Skulls,The Revealing Process,tt0192614\ncqpvoIx9wbw,1988.0,5,10,2011,The Great Outdoors,Golf and Go-Karts,tt0095253\nCnSvI5JxRC4,2000.0,4,10,2011,The Skulls,The Good Life,tt0192614\nyGbG0TmmRDg,2003.0,2,-1,2011,Swimming Pool,Do You Think They Will Arrest Me?,tt0324133\nZ8auSdJSusE,2010.0,7,-1,2011,The Kids Are All Right,I Love Lesbians,tt0842926\nQQWyeLLMwmo,2010.0,1,-1,2011,The Adjustment Bureau,Elise and David Flirt,tt1385826\nWL56IXifi9w,2011.0,2,-1,2011,Paul,Psychotic Nerd,tt1092026\n1hw9NF3zzrI,2010.0,4,-1,2011,The Adjustment Bureau,The Plan's Wrong,tt1385826\n-aKc2aFeCOk,2010.0,6,-1,2011,Little Fockers,One Twenty-Third Israelite,tt0970866\n9Qesj84cHLw,2010.0,4,-1,2011,Little Fockers,I'm Her Groupie,tt0970866\nUtIr2Cpk2c4,2010.0,2,-1,2011,The Wolfman,Lawrence Warns Gwen,tt0780653\nwbVpwsKbFCU,2010.0,7,-1,2011,The Adjustment Bureau,What the Hell is Going On?,tt1385826\n7XFAamm-SE0,2010.0,3,-1,2011,The Adjustment Bureau,Harry Tries to Help,tt1385826\nQJZ83TqU_x0,2011.0,3,-1,2011,Paul,Miracle Worker,tt1092026\nn86XlheDzhc,2010.0,2,-1,2011,Sanctum,Sharing Air,tt0881320\ns_j4-cVHFH8,2010.0,1,-1,2011,Sanctum,Making a Bet,tt0881320\nxTseWiI_yns,2011.0,2,-1,2011,Jane Eyre,Why Must You Leave?,tt1229822\ny1tx1hn8Pwo,2011.0,4,-1,2011,Your Highness,Fabious Loves Belladonna,tt1240982\n1eyMnUczVLY,2011.0,3,-1,2011,Your Highness,We Shall Protect You,tt1240982\nkReNcBdLDa8,2011.0,6,-1,2011,Hop,Replacing a Son,tt1411704\nHLO5LmnO8gM,2011.0,1,-1,2011,Your Highness,This Woman Is Mad,tt1240982\nBWnG6--TRYI,2011.0,6,-1,2011,Your Highness,Wake Up,tt1240982\nJuPSeaf--7g,2011.0,2,-1,2011,Hanna,You Didn't Prepare Me for This,tt0993842\n6439wcfAL-E,2011.0,5,-1,2011,Your Highness,I Love You Thadeous,tt1240982\nxMdDeWfS3O0,2011.0,2,-1,2011,The Eagle,Testudo,tt1034389\nHUrzvLhxA0M,2011.0,1,-1,2011,Hanna,Escape,tt0993842\nnPjlPgeaD_M,2011.0,4,-1,2011,Hanna,Just Find Her,tt0993842\nLLyS4KzDsQ4,2011.0,4,-1,2011,Jane Eyre,Only the Housekeeper,tt1229822\ndazYs4DgYtc,2011.0,6,-1,2011,Hanna,I'll See You There,tt0993842\nweDm19eMl8Y,1997.0,10,10,2011,The Apostle,I'll Fly Away,tt0118632\nJfddc8LwQL8,1997.0,8,10,2011,The Apostle,The Passing Troublemaker,tt0118632\njri0U57iWWM,1993.0,9,9,2011,Schindler's List,The Schindler Jews Today,tt0108052\nTxKxj0ZWEcY,1997.0,4,10,2011,The Apostle,One for the Road,tt0118632\nxt0TyfTl03Y,1997.0,6,10,2011,The Apostle,On Fire for Jesus,tt0118632\nfDx628jn1YI,1997.0,2,10,2011,The Apostle,The Keys to the Kingdom,tt0118632\nqIp_8RNNX4k,1993.0,8,9,2011,Schindler's List,He Who Saves One Life Saves the World Entire,tt0108052\nq5v5DOEF45E,1997.0,3,10,2011,The Apostle,Yelling at the Lord,tt0118632\npwdhau_agX0,1997.0,1,10,2011,The Apostle,Last Rites,tt0118632\nCmyP-ljev68,1993.0,7,9,2011,Schindler's List,The List is Life,tt0108052\nZKie_34cpJI,1993.0,2,9,2011,Schindler's List,Commandant Amon Goeth,tt0108052\n7mJ0HSLMba0,1993.0,6,9,2011,Schindler's List,Helen Hirsch,tt0108052\nveztNJQyRJg,1993.0,5,9,2011,Schindler's List,A Small Pile of Hinges,tt0108052\nj1VL-y9JHuI,1993.0,3,9,2011,Schindler's List,The Girl in Red,tt0108052\n5yR0wlrq_h4,1993.0,4,9,2011,Schindler's List,Bach or Mozart?,tt0108052\nlGqBJx2xbqQ,1993.0,9,10,2011,Dragon: The Bruce Lee Story,Showdown at the Ice Factory,tt0106770\nG4cvTaP7RS8,1993.0,8,10,2011,Dragon: The Bruce Lee Story,Kato Saves the Green Hornet,tt0106770\nOC195SrxRmQ,1993.0,10,10,2011,Dragon: The Bruce Lee Story,Bruce Defeats the Demon,tt0106770\n6Ewhxrht6cg,1993.0,7,10,2011,Dragon: The Bruce Lee Story,60 Second Revenge,tt0106770\neBE2Wgz32nY,2007.0,10,10,2011,Evan Almighty,Congress Gets an Ark,tt0413099\ntr4beSTsJ1E,1993.0,6,10,2011,Dragon: The Bruce Lee Story,The Decision is Mine,tt0106770\nPnUvSn9pVaA,2007.0,9,10,2011,Evan Almighty,The Flood Comes,tt0413099\nlbiymQJsC8M,1993.0,5,10,2011,Dragon: The Bruce Lee Story,Breakfast at Tiffany's,tt0106770\ng_U9jZQ54LM,2007.0,8,10,2011,Evan Almighty,There's Going to Be a Flood,tt0413099\nVzonTHZSaq0,1993.0,3,10,2011,Dragon: The Bruce Lee Story,Picking a Fight,tt0106770\nBRZh_NO5tic,1993.0,1,9,2011,Schindler's List,That's Oskar Schindler,tt0108052\nGNTdNXkhZ8Y,2007.0,7,10,2011,Evan Almighty,Evan's New Look,tt0413099\nV7bO0UmtpFs,2007.0,4,10,2011,Evan Almighty,An Office Full of Birds,tt0413099\nnmldcHUthLA,2000.0,9,10,2011,The Skulls,Challenge to a Duel,tt0192614\nFHohKkrVoMI,2007.0,3,10,2011,Evan Almighty,World-Changing Time,tt0413099\newvHk1nM5u0,1984.0,8,10,2011,Repo Man,Don't Go Running to the Man,tt0087995\nH1t84X0iHTY,2010.0,9,-1,2011,Last Night,Thinking About Him,tt1294688\n3fXPZqrKduQ,2000.0,5,10,2011,The Skulls,Will Is Hanged,tt0192614\n3E-C9PipmaA,2007.0,1,10,2011,Evan Almighty,Ready for Work,tt0413099\nHZjZbJuhPAo,1984.0,1,10,2011,Repo Man,What You Got in the Trunk?,tt0087995\neHpBhm4LMfw,2007.0,2,10,2011,Evan Almighty,Evan Meets His Staffers,tt0413099\nfN2AXsF-kwc,1984.0,5,10,2011,Repo Man,The Rodriguez Brothers,tt0087995\nctyDL-6f90w,1991.0,10,10,2011,Cape Fear,Cady Drowns,tt0101540\nZ7xJxo223YA,1991.0,9,10,2011,Cape Fear,The People vs. Samuel Bowden,tt0101540\nBDiB3XcDsT0,1991.0,8,10,2011,Cape Fear,Leigh Offers Herself,tt0101540\n76Dbf85Vo3Y,1984.0,7,10,2011,Repo Man,Firefight With Lite,tt0087995\nCEuqveZyuQw,1991.0,6,10,2011,Cape Fear,Cady Kills Kersek,tt0101540\ntBSbjKyamRo,1991.0,7,10,2011,Cape Fear,More Than Human,tt0101540\n6vO-XDUiRqU,1991.0,5,10,2011,Cape Fear,\"Come Out, Come Out, Wherever You Are\",tt0101540\n-5798-VRVYA,1991.0,4,10,2011,Cape Fear,Sucking Cady's Thumb,tt0101540\nM6HxD6sZ-I0,1991.0,2,10,2011,Cape Fear,Smoking and Cackling,tt0101540\no1Izq-E3o7Y,1935.0,10,10,2011,Bride of Frankenstein,The Monster Meets His Bride,tt0026138\nPOR5t4hjtPg,1991.0,3,10,2011,Cape Fear,Strip Search,tt0101540\n3zhqCccFsGc,1935.0,9,10,2011,Bride of Frankenstein,She's Alive! She's Alive!,tt0026138\ng3E69dpurZA,1935.0,8,10,2011,Bride of Frankenstein,Henry Tries to Give the Creature Life,tt0026138\nFQqo-w1qvws,1991.0,1,10,2011,Cape Fear,Cady's Release,tt0101540\nyQ8PoAkZnew,1935.0,5,10,2011,Bride of Frankenstein,Pretorius Uses The Monster For Backup,tt0026138\n3rcxMDaDYL4,1935.0,4,10,2011,Bride of Frankenstein,Pretorius Has a Plan,tt0026138\ncS3cT6vgiT4,1935.0,7,10,2011,Bride of Frankenstein,Blackmail,tt0026138\nxKdtuwTr-iM,1935.0,3,10,2011,Bride of Frankenstein,Teaching the Monster Manners,tt0026138\nFe4JvbxKwR4,1935.0,6,10,2011,Bride of Frankenstein,Frankenstein Needs a New Heart,tt0026138\n7_WLSh7GE9I,1989.0,12,12,2011,Parenthood,He's Ruining the Play!,tt0098067\nK7AKLKQqfj4,1935.0,1,10,2011,Bride of Frankenstein,Pretorius Shows Henry His Experiment,tt0026138\n5XW-Nxfx5Nw,1989.0,11,12,2011,Parenthood,Kevin's Game Winning Catch,tt0098067\n0t6IIdmOIOQ,1989.0,10,12,2011,Parenthood,Who's a Shi**y Father?,tt0098067\nxwffHJ_pAM0,1935.0,2,10,2011,Bride of Frankenstein,Frankenstein is Hungry,tt0026138\ndQUjkTOrAn4,1989.0,7,12,2011,Parenthood,Kevin Loses His Retainer,tt0098067\nvO2jvLIyIV4,1989.0,8,12,2011,Parenthood,Something to Help You Relax,tt0098067\nUX3HxJ3eTd0,1990.0,10,10,2011,Opportunity Knocks,George Bush Impression,tt0100301\nOBp-kKju0IA,1990.0,9,10,2011,Opportunity Knocks,Born to be Wild,tt0100301\n7QZB_cbjdM8,1990.0,8,10,2011,Opportunity Knocks,Boardroom to Bathroom,tt0100301\nY-CJgOlRfkE,1990.0,4,10,2011,Opportunity Knocks,The Great Sommelier,tt0100301\nuAphWDkKWcg,2008.0,8,11,2011,Wanted,Wesley's Epiphany,tt0493464\nGxznDWMsp8E,1990.0,5,10,2011,Opportunity Knocks,Eddie Translates Japanese,tt0100301\n_xHw_zAJRDk,2008.0,11,11,2011,Wanted,Wesley Fulfills His Destiny,tt0493464\nkDfvxJUxL10,2000.0,3,10,2011,Erin Brockovich,Erin Is Re-hired,tt0195685\nE_Rabq4muu0,1997.0,7,12,2011,Bean,Stuffing the Turkey,tt0118689\nFARSnLU-NJA,2008.0,10,11,2011,Wanted,Wesley Butchers the Butcher,tt0493464\nSSk0B0dVq4g,2008.0,1,9,2011,Role Models,A Venti Coffee,tt0430922\nnIYAfX4gYO0,2010.0,8,-1,2011,Last Night,How Long Have You Been Married?,tt1294688\n5SnIUYLRXro,1997.0,4,12,2011,Bean,Bathroom Mishap,tt0118689\nyde2ib0YiVQ,2010.0,1,-1,2011,Last Night,Can't Unlearn It,tt1294688\nBGX4nMrnxg0,2000.0,6,10,2011,Erin Brockovich,A Lame-Ass Offer,tt0195685\n5Jdk3riKKwo,2000.0,4,10,2011,Erin Brockovich,I Thought We Were Negotiating Here?,tt0195685\nkFCUCnNKmmI,2000.0,5,10,2011,Erin Brockovich,What One Judge Decides,tt0195685\nfXXmeP9TvBg,1976.0,2,10,2011,Car Wash,\"\"\"\"\" Theme Song\",tt0074281\n-Mmq6Kmd75I,1998.0,6,10,2011,\"Lock, Stock and Two Smoking Barrels\",I'll Kill You,tt0120735\n_d4H6lx9-Is,1996.0,1,10,2011,Bulletproof,Stealing the Ferrari,tt0115783\njNN6FI1Gcr8,1998.0,6,10,2011,Patch Adams,To Be a Great Doctor,tt0129290\n8ZezvNWgi4M,1999.0,11,11,2011,October Sky,This One's Gonna Go for Miles,tt0132477\n-riX6Xbvb8w,1995.0,1,10,2011,Casino,A Hell of a Handicapper,tt0112641\nG2bsYSfXO5U,1996.0,5,10,2011,Fear,Nicole 4 Eva,tt0117381\n7IrB1OE9Blo,1996.0,9,12,2011,The Nutty Professor,Reggie Has Left the Building!,tt0117218\nDY61X243BoU,1999.0,5,11,2011,October Sky,Gift from Miss Riley,tt0132477\n2r8yw_fjoHA,2008.0,12,12,2011,Changeling,Hope,tt0824747\nyOgdjlPRWMg,2003.0,9,9,2011,Bruce Almighty,Bruce Learns to Pray,tt0315327\nS7vH1F6nnug,2008.0,3,12,2011,Changeling,That's Not My Son,tt0824747\nvn6qlQGDOIo,2008.0,7,12,2011,Changeling,We Killed Some Kids,tt0824747\nUSKDdEg8N3s,1998.0,2,10,2011,Meet Joe Black,I Like You So Much Scene,tt0119643\niplfWUtKMzI,2003.0,6,9,2011,Bruce Almighty,Evan's Botched Broadcast,tt0315327\nm6kFCNsnQpQ,1998.0,10,10,2011,Fear and Loathing in Las Vegas,Too Much Adrenochrome,tt0120669\n-Bprg2_s9mg,2003.0,3,9,2011,Bruce Almighty,Bruce's Breakdown,tt0315327\n2O-CC3IVPVg,1996.0,2,12,2011,The Nutty Professor,Chemistry with Carla,tt0117218\n74Ern74xGsQ,1996.0,1,12,2011,The Nutty Professor,Hamster Havoc,tt0117218\n9FLLYpUnuwQ,1994.0,10,10,2011,Reality Bites,Troy Comes Back,tt0110950\nNoD85qZhkWY,2005.0,9,10,2011,King Kong,Kong Battles the Airplanes,tt0360717\nmqQ8Y9Sjp7o,2004.0,2,8,2011,Shaun of the Dead,Oblivious to the Zombies,tt0365748\nHvhH6_TMxWw,1994.0,6,10,2011,Reality Bites,The World Doesn't Owe You Any Favors,tt0110950\nnII3ya0MuM0,1994.0,5,10,2011,Reality Bites,A Total Prick,tt0110950\nkXjKUXgoyL4,2004.0,8,8,2011,Shaun of the Dead,Breaking and Eviscerating,tt0365748\nTkyLnWm1iCs,1989.0,3,12,2011,Back to the Future Part 2,Hover Board Chase,tt0096874\nnur4g4r1LN4,1931.0,3,8,2011,Frankenstein,Meet the Monster,tt0021884\nd-kcczAff40,1958.0,2,11,2011,Vertigo,Uncanny Resemblance,tt0052357\nuYBZAS59t14,2010.0,7,-1,2011,Last Night,Where is Michael?,tt1294688\nAK0MPlMNHQ0,2010.0,4,-1,2011,Last Night,Your Hand Rested Against My Leg,tt1294688\nJEsQCm9Q3pk,1990.0,6,10,2011,Back to the Future Part 3,Ain't You Got the Guts?,tt0099088\nLwuZzh79ds4,1990.0,3,10,2011,Back to the Future Part 3,Emmett to the Rescue,tt0099088\nr9nG9RByMRI,1988.0,2,9,2011,Midnight Run,Come Fly With Me,tt0095631\n009tNfQRd4o,1999.0,3,11,2011,Being John Malkovich,7 1/2 Floor Orientation,tt0120601\nJPEmc2HcMmY,1990.0,10,10,2011,Cry-Baby,High School Hellcats,tt0099329\nPXW83EUbeTM,1992.0,1,9,2011,Far and Away,Devil in the Stable,tt0104231\nin-1BIg_Mec,1984.0,3,10,2011,Cloak & Dagger,Hostage Trade,tt0087065\nfZt8dti-r14,1990.0,8,10,2011,Cry-Baby,Teardrops Are Falling,tt0099329\nGP5ss2lYb3Y,2000.0,2,12,2011,The Family Man,This Is a Glimpse,tt0218967\nlp6ibYQN8vQ,2000.0,3,12,2011,The Family Man,Go Get 'Em Tiger!,tt0218967\nMtTE8aWCe9g,1941.0,7,9,2011,Sullivan's Travels,Sully Laughs Again,tt0034240\nqf-4TDEpycw,1997.0,8,9,2011,The Game,He's Got a Gun,tt0119174\n9JQRMnxE6No,1997.0,2,10,2011,Dante's Peak,The Hot Springs,tt0118928\nhYQIObd_bog,1997.0,4,9,2011,The Game,You're With Them,tt0119174\nZcCHgCXxkgs,1981.0,9,9,2011,Continental Divide,Marry Me,tt0082200\nE_tY5yc-yWU,1997.0,1,9,2011,The Game,A Profound Life Experience,tt0119174\nAjZ717HtRy0,1984.0,1,10,2011,Cloak & Dagger,Witness to a Murder,tt0087065\njoAodEzeK34,1997.0,1,10,2011,Dante's Peak,Losing Marianne,tt0118928\niYP5-Dl3rhg,1981.0,8,9,2011,Continental Divide,The Mating Pattern of Eagles,tt0082200\nC-PxIfoch_Y,1981.0,7,9,2011,Continental Divide,A Cougar Problem,tt0082200\nUpr2DiiSRDE,1981.0,6,9,2011,Continental Divide,Rolling Down the Mountain,tt0082200\npZJ7QK2d5-A,1981.0,5,9,2011,Continental Divide,Meet Max Birnbaum,tt0082200\nLUmqBuS8GAA,1987.0,10,10,2011,Three O'Clock High,One Big Punch,tt0094138\nBqV0lNOqaPA,1987.0,8,10,2011,Three O'Clock High,Jerry's Sexy Book Report,tt0094138\niqyFc90L3zw,1987.0,5,10,2011,Three O'Clock High,Assistant Principal Dolinski,tt0094138\nnQYsHLwXnMc,1987.0,7,10,2011,Three O'Clock High,Buddy's Library Dominos,tt0094138\nEECf2o9Ivaw,1989.0,8,10,2011,The 'burbs,We're the Lunatics!,tt0096734\niO8Tg11euPU,2002.0,7,10,2011,Ali G Indahouse,Ali G Meets Borat,tt0284837\nQpux-Drk6EY,2004.0,11,11,2011,Eternal Sunshine of the Spotless Mind,Wait,tt0338013\n-NzSDbGmTpA,2007.0,4,10,2011,Cherry Crush,You Scare Me,tt0473464\n_m9qecEehqY,1944.0,6,9,2011,Double Indemnity,Murder's Never Perfect,tt0036775\nL6g6fH2ev40,1989.0,3,10,2011,The 'burbs,Neighbor Take Warning,tt0096734\nnJPju1f6p0E,1986.0,7,9,2011,The Money Pit,Chain Reaction,tt0091541\nFOM6rvU9xN4,1986.0,2,9,2011,The Money Pit,The Stairs Are Out!,tt0091541\nwBxRwF4qnhU,1986.0,5,9,2011,The Money Pit,Stuck in the Floor,tt0091541\nbXNwzKo5Yps,2000.0,2,10,2011,Meet the Parents,Milking Cats,tt0212338\n_bsnYbe6Dp8,2009.0,7,10,2011,Bad Lieutenant: Port of Call New Orleans,\"To the Break of Dawn, Baby!\",tt1095217\nGtYAzKwm-R0,2002.0,1,10,2011,About a Boy,I Really Am This Shallow,tt0276751\nUWGtZ9Oqcwc,2004.0,4,11,2011,Dawn of the Dead,The Dead Will Walk the Earth,tt0363547\nTS6_Y6r5r-8,2004.0,8,11,2011,Dawn of the Dead,Blow My Head Off,tt0363547\nXNAVsV-Jqfg,1981.0,4,9,2011,Continental Divide,A Secret Rendezvous,tt0082200\npv6EZGMlgX0,2004.0,1,11,2011,Dawn of the Dead,Awake at Dawn,tt0363547\ncqOc4yl1bIw,1981.0,3,9,2011,Continental Divide,Eagle Poachers,tt0082200\nu1pJJOaKdiQ,1981.0,2,9,2011,Continental Divide,One Condition -- No Story,tt0082200\nPf0COLjWys0,1981.0,1,9,2011,Continental Divide,The Oldest Church in America,tt0082200\nzxqYjEzGEPs,1993.0,4,10,2011,Dragon: The Bruce Lee Story,I'm Bruce Lee,tt0106770\nH2tltm5wUCs,1993.0,2,10,2011,Dragon: The Bruce Lee Story,Chef Beat Down,tt0106770\nyb7aNfMvRy0,1993.0,1,10,2011,Dragon: The Bruce Lee Story,Fighting the Sailors,tt0106770\n80x9FmKsyg4,2007.0,6,10,2011,Evan Almighty,Evan Speaks With God,tt0413099\nl8aozWddbPA,2007.0,5,10,2011,Evan Almighty,These Are Birds,tt0413099\nGnjxY_zMxOA,1996.0,8,10,2011,Fear,Let Me in the F***in' House!,tt0117381\nC_2-E5uR-k0,2008.0,10,12,2011,Changeling,Sanford Digs,tt0824747\n1SOZ6caLdUk,2003.0,8,9,2011,2 Fast 2 Furious,Ejecto Seato Scene,tt0322259\nObbLapUaZd4,1998.0,9,10,2011,Fear and Loathing in Las Vegas,Dr. Bumquist's Drug Lecture,tt0120669\nvfNW11vcewM,1990.0,9,9,2011,Maniac Cop 2,Burning Vengeance,tt0100107\nVhtJpZkTZ1M,1990.0,6,9,2011,Maniac Cop 2,Flashback to Hell,tt0100107\nrdFZAYliCgE,1990.0,4,9,2011,Maniac Cop 2,Careening Out of Control,tt0100107\n9rstlW2YsmA,1990.0,3,9,2011,Maniac Cop 2,De-Forrestation,tt0100107\nEdEl2_GReMY,1990.0,1,9,2011,Maniac Cop 2,Last Time On Maniac Cop...,tt0100107\npiOK9oDxl2w,2000.0,7,10,2011,Ed Gein,Strange Sense of Humor,tt0230169\nAWKQSDRekBM,1980.0,6,7,2011,The Shining,\"Wendy, I'm Home Scene\",tt0081505\noptHzRmqdFk,1980.0,1,7,2011,The Shining,The Power of The Shining Scene,tt0081505\nZJxNwE6H1SM,2010.0,3,-1,2011,Cave of Forgotten Dreams,The Chamber of Lions,tt1664894\nM6aKImtVams,2011.0,5,-1,2011,Jumping the Broom,Squash All This,tt1640484\naDdBoZOylmo,2011.0,6,-1,2011,Sucker Punch,Distant Planet (Animated Short),tt0978764\nA2WV257yma8,2011.0,1,-1,2011,POM Wonderful Presents: The Greatest Movie Ever Sold,In Perpetuity Forever,tt1743720\nfyI46_cfTW4,2011.0,1,-1,2011,Soul Surfer,I Love Home School,tt1596346\nxW2dWkdxEVs,2010.0,4,-1,2011,You Will Meet a Tall Dark Stranger,Tickets to the Opera,tt1182350\nKLv0iZ_NPi4,2010.0,2,-1,2011,You Will Meet a Tall Dark Stranger,You're an Actress?,tt1182350\n3dnf7FK-BPk,2010.0,4,-1,2011,Incendies,Disgrace,tt1255953\nbQme3XqjpCk,2011.0,2,-1,2011,The Roommate,Library Stalking,tt1265990\n9Oi7sZ13tNY,2011.0,1,-1,2011,The Roommate,Where Were You?!,tt1265990\nyuklnScufbE,2011.0,1,-1,2011,Just Go with It,The Other Woman,tt1564367\nrJSnxSjZIcA,2010.0,3,-1,2011,\"Life, Above All\",Chandra Walks Alone,tt1646111\ndB2iZKhWArQ,2010.0,2,-1,2011,\"Life, Above All\",You Amaze Me,tt1646111\nMgBCnwI_Hq0,2008.0,5,12,2011,Changeling,I Am Not Your Mother,tt0824747\noZePQEUplJs,2008.0,4,12,2011,Changeling,Corrupt Doctor,tt0824747\n4ld8-QuAFw4,2002.0,3,10,2011,Ali G Indahouse,Keep It Real Class,tt0284837\n-QB2gXiOAKc,2010.0,5,-1,2011,Of Gods and Men,Free Man,tt1588337\niKw7Ndv4bRM,2010.0,4,-1,2011,Of Gods and Men,Birds on a Branch,tt1588337\n6bahX2rrT1I,2010.0,11,-1,2011,The Social Network,I Deserve Some Recognition,tt1285016\nA6f-6l0W-0o,2010.0,10,-1,2011,The Social Network,Your Full Attention,tt1285016\n-wc5S8xwxJk,2010.0,7,-1,2011,The Social Network,Guys That Row Crew,tt1285016\ngkJAPsQ2YHE,2011.0,7,-1,2011,The Green Hornet,We're Helping People!,tt0990407\nnMtW7uy5RrQ,2011.0,6,-1,2011,The Green Hornet,Nunchucks,tt0990407\n9n27j_fe1yE,2011.0,3,-1,2011,The Green Hornet,Who Is ?,tt0990407\nDei-j4tWI0A,1992.0,4,10,2011,Bob Roberts,Debate in Pittsburgh,tt0103850\nZrW0Vk-Y_TU,2010.0,5,-1,2011,The Tourist,Who Are You People?,tt1243957\niOMuP1qEKUc,2002.0,9,10,2011,8 Mile,Rabbit Battles Lyckety-Splyt Scene,tt0298203\nJaIhQFDdcJM,2010.0,1,-1,2011,Resident Evil: Afterlife,Emergency Rooftop Landing,tt1220634\nKDKB37gY7OY,2010.0,7,-1,2011,Easy A,Daughter of the Year,tt1282140\nHuKVUxMpoCk,2000.0,6,12,2011,Billy Elliot,You're Not Concentrating,tt0249462\nv5ueLuyLWn4,2009.0,3,-1,2011,A Perfect Getaway,Photo of the Killers,tt0971209\n_c7XtFcDfX4,2009.0,2,-1,2011,A Perfect Getaway,Cydney Almost Falls,tt0971209\nJXQWJ63fico,2003.0,9,9,2011,2 Fast 2 Furious,Car Meets Boat Scene,tt0322259\naSxScp7zUpY,2003.0,7,9,2011,2 Fast 2 Furious,Harpooned by the Cops Scene,tt0322259\n2xxZ6kju6xo,2003.0,3,9,2011,2 Fast 2 Furious,Audition Race Scene,tt0322259\n3mieBC6wlbs,2011.0,4,-1,2011,Something Borrowed,Help Me Write My Vows,tt0491152\nnMW1Rfbl0tE,1979.0,11,11,2011,1941,Kelso Saves America,tt0078723\nj7O-SUEh-54,1979.0,6,11,2011,1941,\"Wood, Hollis P.\",tt0078723\njJZ5x-zUx28,1979.0,5,11,2011,1941,Lost,tt0078723\nFcqC3ZIsQRM,1979.0,8,11,2011,1941,Mass Hysteria,tt0078723\n-v93NKIFBBw,1979.0,1,11,2011,1941,Something in the Water,tt0078723\nOCGGXaMANys,1973.0,7,-1,2011,The Exorcist,What's Wrong With Her?,tt0070047\nasxNFYNfOWI,2010.0,2,-1,2011,Cave of Forgotten Dreams,Authentic Cave Paintings,tt1664894\ntoq0HYc9mmg,2011.0,6,-1,2011,Jumping the Broom,It's Burning,tt1640484\nxHH-tuDq-T4,2011.0,4,-1,2011,Jumping the Broom,I'm a Hugger,tt1640484\nq-kLlfq4JpU,2011.0,2,-1,2011,Jumping the Broom,Strike One,tt1640484\nk7o8U7h_YHM,2011.0,1,-1,2011,Jumping the Broom,What's His Family Like?,tt1640484\nJtBmjD4WDnM,2010.0,2,10,2011,Dead Awake,Reunited.,tt1501652\nbyObeFcFXmo,2011.0,7,-1,2011,Fast Five,Agent Hobbs,tt1596343\nJ_i4XvgEVDg,2011.0,2,-1,2011,Fast Five,Sexy Gisele,tt1596343\ngAxuiJdRBjQ,2005.0,3,10,2011,The Proposition,Where's Mikey?,tt0421238\n_nFXFkb8i0Q,2009.0,2,10,2011,Bad Lieutenant: Port of Call New Orleans,\"I Love It, I Just Love It!\",tt1095217\nwGvGiFhbmwg,2011.0,2,-1,2011,POM Wonderful Presents: The Greatest Movie Ever Sold,The Pitch,tt1743720\nQG_VaTDn9Uk,2009.0,8,10,2011,Bad Lieutenant: Port of Call New Orleans,My Lucky Crack Pipe,tt1095217\ncczh1r-Mb9o,2009.0,5,10,2011,Bad Lieutenant: Port of Call New Orleans,\"Oh, Yeah!\",tt1095217\nvsevdTMBfC8,2011.0,2,-1,2011,Hop,Pooping Candy,tt1411704\nj_2-8115ZAs,2011.0,4,-1,2011,Hop,A New Boss,tt1411704\nTpwYtP4Kzbs,2011.0,4,-1,2011,Soul Surfer,Just Not There,tt1596346\nKSrAg-DG4Xs,2011.0,6,-1,2011,Paul,We've Been to Comic-Con,tt1092026\n1LatwDo_ZL4,2011.0,6,-1,2011,Limitless,Don't Make Me Your Competition,tt1219289\ncnvdC5TGc3g,2011.0,4,-1,2011,Battle: Los Angeles,They Know We're Here Now,tt1217613\nTotAfd4ercA,2011.0,1,-1,2011,Jane Eyre,I Would Do Anything For You,tt1229822\nENZk6ZwsOzU,2010.0,1,-1,2011,You Will Meet a Tall Dark Stranger,That Cheap Tart,tt1182350\nlScMakd7h6w,2011.0,3,-1,2011,The Roommate,Flirting with Disaster,tt1265990\n898OUCyBulM,2011.0,4,-1,2011,Just Go with It,The Negotiation,tt1564367\n6a9lq0bPrLU,2010.0,4,-1,2011,Sanctum,No Rescue,tt0881320\nlWqHayjaOxo,2011.0,4,-1,2011,The Dilemma,Serious Lady Wood,tt1578275\nTwTQUFCYFsc,2011.0,1,-1,2011,The Dilemma,We Got the Meeting,tt1578275\njmOvg7JKjVI,2009.0,8,-1,2011,An Education,Hard and Boring,tt1174732\nAqtOrW-wiZ4,2010.0,3,-1,2011,The Tourist,When You Upgrade It From Room Service,tt1243957\nzsgAfhsQkYU,2010.0,5,-1,2011,Dear John,Tell Me What You Want,tt0989757\n8TOTUOFMjuo,2000.0,11,12,2011,Billy Elliot,Acceptance,tt0249462\n5MC-cGN0bw0,2010.0,7,-1,2011,The Wolfman,Gwen Consults The Gypsy,tt0780653\nyQ3jp-a5JK4,2009.0,8,-1,2011,Planet 51,Dog Gets Revenge,tt0762125\npKNsKKRGrzs,1989.0,3,12,2011,Parenthood,Kevin the Valedictorian,tt0098067\nuDISBx2Ry7s,2000.0,5,12,2011,Billy Elliot,Private Lessons,tt0249462\nd6NOGc2Dymo,2010.0,8,-1,2011,Cirque du Freak,\"That's Enough, Boys\",tt0450405\ndocSqZBVEUY,2003.0,2,9,2011,Grand Theft Parsons,Hitting the Wall,tt0338075\nUWyz-yfEIN4,2010.0,6,-1,2011,Cirque du Freak,...Before You Get Pink Eye,tt0450405\nAmjfc9pRatc,2010.0,4,-1,2011,Cirque du Freak,Cemetery Ambush,tt0450405\nVGqjv_CkCXo,2009.0,2,-1,2011,District 9,Gathering Alien Weapons,tt1136608\nPf5mDMWYRmE,1989.0,2,12,2011,Parenthood,Taylor Tosses Her Cookies,tt0098067\n0KJ7l4gy4oo,1995.0,4,10,2011,Casino,\"For Ginger, Love Costs Money\",tt0112641\nhwc74Ns9EZI,2010.0,3,-1,2011,Cirque du Freak,Hold Your Breath,tt0450405\n7phF0rMpBiw,1976.0,1,10,2011,Car Wash,Ripping Off a Cabbie,tt0074281\n7P9EEB9Mr18,1997.0,3,12,2011,Bean,Airport Police Chase,tt0118689\nEeyNlzFdjtc,1996.0,12,12,2011,The Nutty Professor,Klump vs. Love,tt0117218\nG_0ZVzUO3Os,1985.0,7,10,2011,Mask,Prostitute Fallout,tt0089560\nVq1W_C-ft0Q,1999.0,8,11,2011,October Sky,Going to Indianapolis,tt0132477\nA4k_HCZNCgs,2003.0,1,9,2011,Bruce Almighty,This Is My Luck,tt0315327\ngtKp8oxOzAU,2008.0,11,12,2011,Changeling,Davy's Escape,tt0824747\nBXvryt6UCC0,1998.0,7,10,2011,Meet Joe Black,That Was Wonderful Scene,tt0119643\n5Xk31NpUX1g,1998.0,5,10,2011,Meet Joe Black,Peanut Butter Man Scene,tt0119643\nBIfyebxopuM,1996.0,8,12,2011,The Nutty Professor,Buddy's Big Apology,tt0117218\nP2pgWsYSyUA,1998.0,1,10,2011,Fear and Loathing in Las Vegas,Somewhere Around Barstow,tt0120669\nv5FtI472Q6I,1931.0,6,8,2011,Frankenstein,The Monster Befriends Maria,tt0021884\nSQVw58aDt3Y,1994.0,3,10,2011,Reality Bites,My Sharona,tt0110950\nDoUYnGrhxi8,2001.0,10,11,2011,American Pie 2,A Medical Emergency,tt0252866\ni5jTH89HjTA,1979.0,6,10,2011,The Jerk,The Opti-Grab,tt0079367\nFCJx1uV38ZQ,1979.0,4,10,2011,The Jerk,Navin Calls the Cops,tt0079367\n1qNeGSJaQ9Q,1931.0,2,8,2011,Frankenstein,It's Alive!,tt0021884\nwcztDZ13TLI,1995.0,4,10,2011,12 Monkeys,Institutionalized With Jeffrey,tt0114746\nlKv7aGku2RQ,1979.0,3,10,2011,The Jerk,Don't Call That Dog Lifesaver,tt0079367\nGokkl2br7G8,1988.0,8,9,2011,Midnight Run,Is That Marvin?,tt0095631\n9rDK1qdc9-Y,1995.0,9,10,2011,12 Monkeys,Jeffrey Reveals His Plan,tt0114746\n25_F9irGdow,1999.0,10,11,2011,Being John Malkovich,John Malkovich Becomes a Puppeteer,tt0120601\nB0YqZqU_z0Q,2000.0,3,10,2011,Bring It On,This Is a Cheer-ocracy,tt0204946\nDSGYElDi38s,1999.0,2,11,2011,Being John Malkovich,The Speech Impediment,tt0120601\nOpZknAZxSjU,1999.0,5,11,2011,Being John Malkovich,Sad Man Becomes John Malkovich,tt0120601\n--VWN_KTxzE,2009.0,4,10,2011,Bad Lieutenant: Port of Call New Orleans,A Simple Purpose,tt1095217\nKN2W3JON7Y0,2011.0,6,-1,2011,POM Wonderful Presents: The Greatest Movie Ever Sold,Musicians & Brands,tt1743720\nHxrS10Oa4qU,2003.0,4,-1,2011,Swimming Pool,Peace and Quiet,tt0324133\nSaAuPbU0eOk,2010.0,5,-1,2011,You Will Meet a Tall Dark Stranger,Out of a Red Dress,tt1182350\nsPQLY7niQC4,2011.0,4,-1,2011,Paul,Friendly Makeout,tt1092026\nqB2H-Gp0nlE,2011.0,1,-1,2011,Paul,Fart Harvesting,tt1092026\nb9WFVLRPOJI,2011.0,3,-1,2011,Battle: Los Angeles,First Contact,tt1217613\n9DKqoFCTC6E,2011.0,3,-1,2011,Jane Eyre,There Is No Debt,tt1229822\nHWDBMnxAk0A,2010.0,5,-1,2011,The Adjustment Bureau,The Race,tt1385826\nXwQuM34oBkg,2010.0,2,-1,2011,The Adjustment Bureau,I Can Read Your Mind,tt1385826\nHEtlEkCoCDQ,2010.0,3,-1,2011,You Will Meet a Tall Dark Stranger,Hopeful Future,tt1182350\nQNUzcLPS_LE,2011.0,4,-1,2011,The Eagle,What Happened to My Father?,tt1034389\n0TmugJo-c9Y,2009.0,9,10,2011,Couples Retreat,Couples Therapy,tt1078940\nSB4SyMKugU8,2004.0,11,11,2011,Dawn of the Dead,Two Buses From Hell,tt0363547\nzATlpF_gylU,2011.0,3,-1,2011,The Eagle,The Fight,tt1034389\nT5pFuaH_A98,2011.0,6,-1,2011,Just Go with It,Fake Hugs,tt1564367\n5KsjPjE-sTw,2011.0,3,-1,2011,Just Go with It,A Serious Case of E.D.,tt1564367\n8D11eYo3bNY,2010.0,3,-1,2011,Sanctum,Climbing a Waterfall,tt0881320\ncu_A-aG8G7U,1995.0,7,10,2011,12 Monkeys,The Great Escape,tt0114746\nb1vFQilhgrY,2010.0,1,-1,2011,\"Life, Above All\",Short Skirt,tt1646111\nW03miqzGMcc,2010.0,2,-1,2011,Incendies,The Orphanage,tt1255953\nWThlmxAdynQ,2010.0,1,-1,2011,Incendies,Mother's Last Wish,tt1255953\npPZ7eetT6oI,2011.0,5,-1,2011,The Dilemma,The Red Zone,tt1578275\nFBWubk2ItBA,2011.0,3,-1,2011,The Dilemma,Relationship Anxiety,tt1578275\nzPvglo_VB9g,2010.0,1,-1,2011,Of Gods and Men,Consultation,tt1588337\nQRGusFszwdA,2010.0,2,-1,2011,Of Gods and Men,Nearest In Love,tt1588337\n5_2gW4c8hZ0,2010.0,8,-1,2011,The Social Network,\"I'm CEO, Bitch\",tt1285016\n3_U1GtNY5xQ,2011.0,4,-1,2011,The Green Hornet,Take My Hand,tt0990407\nNo7DllIwA3w,2011.0,2,-1,2011,The Green Hornet,The Greatest Moment in My Life,tt0990407\nIC8xA-bOXOo,2004.0,10,11,2011,Dawn of the Dead,I'm In,tt0363547\nstSweLZol7U,1988.0,7,9,2011,Midnight Run,A New Watch,tt0095631\n14bY6pwza-Q,2010.0,7,-1,2011,Little Fockers,\"Hottie, Two O'Clock\",tt0970866\nS2LkKVM-dRo,2004.0,9,11,2011,Dawn of the Dead,Fire Power,tt0363547\nDNt7PNTuePY,2004.0,5,11,2011,Dawn of the Dead,Regime Change,tt0363547\nYbfc9RkRUY0,2004.0,6,11,2011,Dawn of the Dead,A New Batch of Survivors,tt0363547\nFaYvxUgA4cw,2010.0,2,-1,2011,Little Fockers,Double Dose of Focker,tt0970866\nRZvwbfpE8CA,2004.0,3,11,2011,Dawn of the Dead,Zombie Janitor,tt0363547\nqeZ0SIG2eJY,2004.0,2,11,2011,Dawn of the Dead,Zombies Ate My Neighbors,tt0363547\nSNrMqIrtbmw,2004.0,7,11,2011,Dawn of the Dead,Holy S***!,tt0363547\nWT2D-ZhTkqQ,2010.0,3,-1,2011,How Do You Know,Father's Rule On Drinking,tt1341188\nEOwmzfyF1oM,2010.0,2,-1,2011,How Do You Know,Running From Bad News,tt1341188\n5K14lfXCgco,2010.0,1,-1,2011,How Do You Know,Room To Think,tt1341188\n0IVFxW63RxU,2010.0,7,-1,2011,Kenny Chesney: Summer in 3D,Don't Happen Twice,tt1545098\nP9iflgkOO-E,2010.0,3,-1,2011,Kenny Chesney: Summer in 3D,I Go Back,tt1545098\nKVIXNJIaQBY,2010.0,5,-1,2011,Kenny Chesney: Summer in 3D,Blue Chair,tt1545098\nsallI5PomoY,2010.0,8,-1,2011,Barney's Version,My Wife and My Best Friend,tt1423894\njvZk0rzVeBw,2010.0,6,-1,2011,Animal Kingdom,Janine Blackmails Randall,tt1313092\nspVHsj3_MEY,2010.0,6,-1,2011,Skyline,Elaine is Attacked,tt1564585\nNACwfzRou0w,2010.0,6,-1,2011,Burlesque,Let Me Show You,tt1126591\n5vKDb4dLu0k,2010.0,4,-1,2011,Burlesque,Please Have the Flu,tt1126591\nxI836Tp4cq4,2010.0,3,-1,2011,Another Year,I Best Be Off,tt1431181\nau_5dPh_Dm8,2010.0,4,-1,2011,Another Year,A Big Secret,tt1431181\ny_5YoG-iXjQ,2009.0,4,-1,2011,The Hangover,Paging the Doctor,tt1119646\nv-tma5YRyGg,2010.0,4,-1,2011,Barney's Version,The Pause,tt1423894\nRpKQ0AC0p9Q,2010.0,2,-1,2011,Barney's Version,I'm Embarrassing You?,tt1423894\nJMt6zz_dYWI,2010.0,3,-1,2011,A Nightmare on Elm Street,Grocery Store Nightmare,tt1179056\nJWGVdLHio5g,2010.0,1,-1,2011,A Nightmare on Elm Street,\"You're Dreaming, But You Don't Know It\",tt1179056\nhSgNZ6R5Rbg,2010.0,4,-1,2011,The Illusionist,Exploring Edinburgh,tt0775489\nKMnK0as4TSc,2010.0,3,-1,2011,My Soul to Take,You Think I Killed Somebody?,tt0872230\nU6X6o4CAqL4,2010.0,3,-1,2011,The Debt,Welcome to the Mission,tt1226753\n6HbrQMgOUFw,2010.0,6,-1,2011,The Social Network,Erica Albright,tt1285016\nzYRqTV7WyMg,2010.0,1,-1,2011,The Debt,Facing the Monster,tt1226753\n5RmABh8MCpE,2010.0,3,-1,2011,The Illusionist,Travelin' North,tt0775489\nDkyCu7ryu-w,2010.0,2,-1,2011,Made in Dagenham,Someone's Got To Stop These Exploiting Bastards,tt1371155\nRv2hRfqlJaE,2010.0,4,-1,2011,Made in Dagenham,Don't Give Up,tt1371155\nLmsukmz3QQE,2010.0,1,-1,2011,The Illusionist,Tough Crowd,tt0775489\n1RbdA_geYpU,2010.0,6,-1,2011,It's Kind of a Funny Story,I'm so Proud of You,tt0804497\nCi3uRpwFlZ4,2010.0,5,-1,2011,It's Kind of a Funny Story,Something Bigger Going On Here,tt0804497\nLkdJwYQIR2o,2010.0,2,-1,2011,The Social Network,Does She Have a Boyfriend?,tt1285016\nbLsM1z8lX_A,2010.0,1,-1,2011,The Social Network,We're Ranking Girls,tt1285016\nJ196d5nLSYA,2010.0,4,-1,2011,It's Kind of a Funny Story,This is a Surprise,tt0804497\n6fXGKCKcXk8,2010.0,2,-1,2011,It's Kind of a Funny Story,I'm a Lady,tt0804497\nsSk2SvdopGY,2010.0,5,-1,2011,Inside Job,A Wall Street Government,tt1645089\nqD6IXIE0cok,2008.0,7,11,2011,Wanted,Curving Bullets on a Train,tt0493464\n2bcSpgxPG0g,1994.0,10,10,2011,The Hudsucker Proxy,Norville's Great Fall,tt0110074\nPuh__Ef3KkI,1996.0,6,10,2011,Mystery Science Theater 3000: The Movie,Voyage to Metaluna,tt0117128\nv71Epv4g6jY,1996.0,8,10,2011,Mystery Science Theater 3000: The Movie,Into the Tubes,tt0117128\nQtBnuCwAJeQ,2010.0,5,-1,2011,Tamara Drewe,Is Now A Good Time?,tt1486190\nMAeQV2NBbhM,2010.0,6,-1,2011,Tamara Drewe,Will You Marry Me,tt1486190\nJUGSh3BMuaQ,2010.0,1,-1,2011,Tamara Drewe,Who Were You Talking To?,tt1486190\ncr13B4L-5-M,2010.0,2,-1,2011,Tamara Drewe,\"I Didn't Know They Provided Material, Too\",tt1486190\nyGzCkRwbFII,2010.0,4,-1,2011,Catfish,Here's Looking at You,tt1584016\nEYn7ZmFV2eY,2010.0,4,-1,2011,Devil,Car Wash Apology Note,tt1588170\nSnXhWbEfDNA,2010.0,2,-1,2011,Catfish,First Phone Call,tt1584016\nQlT6RMtJb6s,2010.0,5,-1,2011,Salt,My Name is Evelyn,tt0944835\nm8hsAr5C2UU,2010.0,4,-1,2011,The American,Come Away With Me,tt1440728\nClylV3dp-Ok,2010.0,2,-1,2011,The American,Don't Make Any Friends,tt1440728\nXvvzZUhRSbI,2010.0,3,-1,2011,The American,The Chase,tt1440728\noTzTcic-1qs,2010.0,6,-1,2011,Easy A,I Dated a Homosexual,tt1282140\nzG0CfU1YnNQ,2010.0,3,-1,2011,Resident Evil: Afterlife,Axe Man,tt1220634\nn3K6Fkd5ri8,2010.0,1,-1,2011,Easy A,A Sexy George?,tt1282140\nw5EQRIoHjQg,2010.0,4,-1,2011,Takers,We Lost Him,tt1135084\nJina0muBqRA,2010.0,1,-1,2011,Burlesque,Something's Got a Hold on Me,tt1126591\nwJnVVC4784c,2010.0,3,-1,2011,Takers,Take Him Out,tt1135084\nroeLoZuFI1I,2010.0,1,-1,2011,Takers,Chopper Getaway,tt1135084\nI6RwgD0b9xA,2010.0,3,-1,2011,Nanny McPhee Returns,The Way I Work,tt1415283\njNEnqzkT_QU,2010.0,5,-1,2011,Nanny McPhee Returns,The Pigs Go Swimming,tt1415283\nbObjXY24Ei4,2010.0,3,-1,2011,Eat Pray Love,Pizza Margherita in Napoli,tt0879870\nmzP8haJXI5A,2010.0,2,-1,2011,Nanny McPhee Returns,The Kids Stop Fighting,tt1415283\nvHbBhI0xLjA,2010.0,5,-1,2011,Eat Pray Love,Best Restaurant in Town,tt0879870\nAhpGExo2hbs,2010.0,2,-1,2011,Eat Pray Love,Far Too Charming,tt0879870\nu8oHCJ8LxtY,2010.0,6,-1,2011,Charlie St. Cloud,Charlie Can't Lose Sam,tt1438254\no6zEapyz33o,2010.0,3,-1,2011,Charlie St. Cloud,Charlie & Tess,tt1438254\nm5n7XpAv46A,2010.0,4,-1,2011,Charlie St. Cloud,Bring the Heat,tt1438254\nP0ojZI9qBPc,2010.0,5,-1,2011,Animal Kingdom,An Unstuck Feeling,tt1313092\nO5W1OfGz3es,2010.0,4,-1,2011,Animal Kingdom,Bad News,tt1313092\nIH6fifC3qSE,2010.0,2,-1,2011,Animal Kingdom,Grubby Business,tt1313092\n7RS4PfQHCX4,2010.0,4,-1,2011,The Other Guys,Seriously...Who Is That?,tt1386588\nmFXxro8aD3A,2010.0,3,-1,2011,The Other Guys,Flotation Device,tt1386588\njwmRNTTDOw0,2010.0,4,-1,2011,The Kids Are All Right,It's Her Job,tt0842926\nyp-LFlDEVdk,2010.0,4,-1,2011,Salt,Crash Landing,tt0944835\nnaI0OgZq73M,2010.0,2,-1,2011,The Kids Are All Right,How Did You Meet?,tt0842926\nrQ7oKh5K7K4,2010.0,1,-1,2011,Salt,Tactical Team,tt0944835\nadT3VQ_Krrk,2010.0,1,-1,2011,The Kids Are All Right,We Support You,tt0842926\nP3jRjtbkmq8,1996.0,9,10,2011,Mystery Science Theater 3000: The Movie,Metaluna Mutant,tt0117128\nnBQDz9PiMDU,1996.0,2,10,2011,Mystery Science Theater 3000: The Movie,Rough Landing,tt0117128\nFKu9sUXtjpI,1996.0,7,10,2011,Mystery Science Theater 3000: The Movie,A Flock of Seagulls,tt0117128\nXJTXpItCqFU,2008.0,6,11,2011,Wanted,Wesley's First Curved Bullet,tt0493464\ndXngQtk0BCU,1994.0,9,10,2011,The Hudsucker Proxy,Getting Off the Merry-Go-Round,tt0110074\nB0cuLHkQDcA,2008.0,4,11,2011,Wanted,Viper vs. Van,tt0493464\nq2pzOimT9so,2008.0,2,11,2011,Wanted,Grocery Store Shootout,tt0493464\nlf3MqrE07I4,2008.0,1,11,2011,Wanted,Cross Kills Mr. X,tt0493464\npbmU2wMnuI4,1994.0,4,10,2011,The Hudsucker Proxy,Single-Stitched Pants,tt0110074\n_SwvSu3jxAA,1994.0,7,10,2011,The Hudsucker Proxy,\"You Know, For Kids!\",tt0110074\nXf_j-iNi9CA,2010.0,2,-1,2011,Grown Ups,Bug Zapper,tt1375670\njz4VT9zHLTU,2010.0,5,-1,2011,Grown Ups,Peeing in the Pool,tt1375670\nwVsMJ0ntvmc,2010.0,1,-1,2011,Grown Ups,Breast Feeding,tt1375670\nWhyNjvISFac,1994.0,1,10,2011,The Hudsucker Proxy,Looking for a Job,tt0110074\nqiVy40O1_Lc,2010.0,3,-1,2011,The Karate Kid,Great Wall Training,tt1155076\n5T607c23L8M,1987.0,2,10,2011,Three O'Clock High,Prelude to a Showdown,tt0094138\nMn5ayQd7Y0Q,1989.0,4,12,2011,Parenthood,Kevin the Psychopath,tt0098067\nOr3okI_mad8,1992.0,10,10,2011,Army of Darkness,\"Hail to the King, Baby\",tt0106308\nsTYIlyRGrA4,1989.0,6,12,2011,Parenthood,Unbreakable Pinata & a Mouthful of Helium,tt0098067\nPPAe_7EK5yQ,2003.0,6,9,2011,Grand Theft Parsons,You Stole Gram Parsons,tt0338075\nidqhhcppnUY,2003.0,8,9,2011,Grand Theft Parsons,Gram's Funeral,tt0338075\n58YNYqN6lko,1989.0,1,12,2011,Parenthood,The Diarrhea Song,tt0098067\nORrQYZCdCwI,2003.0,5,9,2011,Grand Theft Parsons,Running From the Law,tt0338075\nAnue5RDt4Bs,1997.0,11,12,2011,Bean,It's a Poster,tt0118689\nrWqVoaYxgRs,1997.0,9,12,2011,Bean,Staining Whistler's Mother,tt0118689\nzANq9Dusk6Y,1997.0,10,12,2011,Bean,David Freaks Out,tt0118689\nfkHlhiG0h70,1997.0,6,12,2011,Bean,The Two-Way Mirror,tt0118689\nYxzq9BLE5Hg,1989.0,3,9,2011,Field of Dreams,Go the Distance,tt0097351\n68pN_c7DGUE,1997.0,5,12,2011,Bean,Wet Pants,tt0118689\n9plvG6cSgVk,2003.0,1,9,2011,Grand Theft Parsons,Bernice the Psychedelic Hearse,tt0338075\nnMlDPsRwZE4,1930.0,10,10,2011,All Quiet on the Western Front,The Butterfly,tt0020629\nmw96cSYo9dU,1930.0,6,10,2011,All Quiet on the Western Front,\"Forgive Me, Comrade\",tt0020629\njsLOtv4yqIM,1930.0,9,10,2011,All Quiet on the Western Front,Heroism In Vain,tt0020629\n33MiJMF5z7U,1989.0,7,10,2011,Fletch Lives,Sneaking Into the Morgue,tt0097366\n0N-cvihnyqg,2010.0,8,11,2011,Get Him to the Greek,A Monty Python Skit,tt1226229\niOGo0EHHtCo,2010.0,11,11,2011,Get Him to the Greek,A Guardian Angel,tt1226229\nMMSpFkvPOAM,1989.0,6,10,2011,Fletch Lives,Saved!,tt0097366\nCS-nCS9Az94,1989.0,3,10,2011,Fletch Lives,Molesting a Dead Horse,tt0097366\nCnh4Vr0UruI,2008.0,8,9,2011,Role Models,I'm Your Friend,tt0430922\nVjfjS0R1bdk,2002.0,10,10,2011,Big Fat Liar,Marty's Big Confession,tt0265298\nfki-LTswICw,2002.0,7,10,2011,Big Fat Liar,Car Trouble,tt0265298\nRGl3Y1gvv5g,2002.0,6,10,2011,Big Fat Liar,Jason Turns Marty Blue,tt0265298\n2u8m1yeCoyM,2002.0,4,10,2011,Big Fat Liar,I Think I Wrote It,tt0265298\nOP4zJ101EPY,2008.0,5,9,2011,Role Models,Danny Goes Medieval,tt0430922\nGNWJFqW17yg,2002.0,1,10,2011,Big Fat Liar,Lying Through Your Teeth,tt0265298\nHAF359uuWUo,2008.0,6,9,2011,Role Models,Not Sturdy Wings Material,tt0430922\nZbPoAOc_iKw,2002.0,3,10,2011,Big Fat Liar,Don't Call Him Urkel,tt0265298\nA0WEpT1SKV0,1989.0,1,10,2011,Fletch Lives,Fletch Quits,tt0097366\niwfU4ei5gWE,2008.0,3,9,2011,Role Models,Sturdy Wings Training,tt0430922\nw29PG-8Tywo,2008.0,2,9,2011,Role Models,Taste the Beast,tt0430922\nj4yXEmQRq34,2000.0,1,10,2011,Erin Brockovich,On the Prowl for Papers,tt0195685\n5Ay5GqJwHF8,1989.0,1,9,2011,Field of Dreams,\"If You Build It, He Will Come\",tt0097351\njlUPc1tu64s,2003.0,3,10,2011,Seabiscuit,Red's First Ride,tt0329575\nU6fx_zJtL8I,2003.0,4,10,2011,Seabiscuit,Soothing,tt0329575\nyJzn9MhJxRM,2003.0,2,10,2011,Seabiscuit,Similar Breeds,tt0329575\n4xdqgzNNHn0,2010.0,3,-1,2011,MacGruber,Winging It,tt1470023\naMQysPMcE4M,2010.0,1,-1,2011,MacGruber,Vicki's  Disguise,tt1470023\nVHJ5pzTGtag,1998.0,9,10,2011,\"Lock, Stock and Two Smoking Barrels\",Eddie Loses Money Again,tt0120735\nDJnKxIj_D6A,2009.0,7,-1,2011,Mother and Child,All She Wrote,tt1121977\nEQCf1YAzPsg,2004.0,9,11,2011,Eternal Sunshine of the Spotless Mind,Clementine's Tape,tt0338013\n3et9liRrywY,2004.0,4,11,2011,Eternal Sunshine of the Spotless Mind,Baby Joel,tt0338013\nI_e8l4Lj8OE,1998.0,5,10,2011,\"Lock, Stock and Two Smoking Barrels\",Robbing the Thieves,tt0120735\nOvRYeeFT7BA,1998.0,1,10,2011,\"Lock, Stock and Two Smoking Barrels\",Hatchet Harry's Rigged Game,tt0120735\n05O77oX6bQE,1995.0,9,9,2011,Mallrats,Will You Marry Me?,tt0113749\nPoBD69ANBUg,1998.0,8,10,2011,\"Lock, Stock and Two Smoking Barrels\",What the F*** Are You Doing Here?,tt0120735\nRwQVsB6k24Q,2004.0,2,11,2011,Eternal Sunshine of the Spotless Mind,Erased From Her Memory,tt0338013\nhXWDSeVeaAE,1998.0,9,10,2011,Patch Adams,Final Appeal,tt0129290\nrwd5hlQnu0I,1976.0,10,10,2011,Car Wash,Duane Pulls a Gun,tt0074281\nPr9ruvxA3K4,1998.0,8,10,2011,Patch Adams,You Treat a Person,tt0129290\n8h6r3S5zjtk,1976.0,6,10,2011,Car Wash,Just Like a Pimp,tt0074281\n7vZy9ra8kdM,1944.0,1,9,2011,Double Indemnity,I Killed Him,tt0036775\n1WRLqzGkzNw,1944.0,8,9,2011,Double Indemnity,\"Goodbye, Baby\",tt0036775\n8nYPCDXHuPs,1944.0,7,9,2011,Double Indemnity,The End of the Line,tt0036775\nXbTEusaf2nU,1976.0,5,10,2011,Car Wash,Daddy Rich Arrives,tt0074281\n3nydBUSR08o,1996.0,8,10,2011,Bulletproof,Time to Roll,tt0115783\nzcDoyBvCyF8,1976.0,4,10,2011,Car Wash,\"Irwin Gets \"\"Washed\"\"\",tt0074281\nYe4fqNh_vbs,1976.0,3,10,2011,Car Wash,\"Lloyd & \"\"The Fly\"\"\",tt0074281\nzBErHC42Gzk,2009.0,7,-1,2011,Get Low,Maybe He Put His Soul Into It,tt1194263\naRgUxpmvZpc,2009.0,5,-1,2011,Get Low,Clothes Casket,tt1194263\n8WfKSXftr60,1996.0,5,10,2011,Bulletproof,I'm Your God,tt0115783\n784nv_NRf4k,2009.0,3,-1,2011,Mother and Child,What Do You Believe?,tt1121977\n_zlqhZOE4yw,2009.0,2,-1,2011,Mother and Child,Working Late,tt1121977\nGLfcxIq-zmY,1996.0,6,10,2011,Bulletproof,Please Take That Out of My Ass,tt0115783\neQ87hBFrS_I,1998.0,7,10,2011,Patch Adams,At Your Cervix,tt0129290\nVjlGOec7RVU,1996.0,2,10,2011,Bulletproof,Have You Been Drinking?,tt0115783\nhjuYfeA2prM,1944.0,4,9,2011,Double Indemnity,A Claims Man,tt0036775\nbyPJ22JDFjI,1998.0,5,10,2011,Patch Adams,The Children's Ward,tt0129290\nLJq1auJq_gc,1944.0,3,9,2011,Double Indemnity,A Red Hot Poker,tt0036775\nZKdcYnlkhx8,1944.0,2,9,2011,Double Indemnity,\"How Fast Was I Going, Officer?\",tt0036775\njal6Pf2DFlg,1989.0,7,10,2011,The 'burbs,I'm Going Over the Fence,tt0096734\ntSXp2wB6kXQ,1996.0,6,10,2011,Fear,David Kills Gary,tt0117381\na5BtDmdw708,1996.0,10,10,2011,Fear,Forever Hold Your Peace!,tt0117381\nUI6mgCAcXzc,1996.0,9,10,2011,Fear,The Security Guard Is Shot,tt0117381\n5qfoeuQFFHw,1996.0,3,10,2011,Fear,David Apologizes,tt0117381\nbKLQBuSPVwQ,1998.0,3,10,2011,Patch Adams,Patch Earns His Nickname,tt0129290\ntumI28B48wY,1996.0,2,10,2011,Fear,Wild Roller Coaster Ride,tt0117381\n1KfyTORRMXk,1985.0,9,10,2011,Mask,Meeting Diana's Parents,tt0089560\nujBna-ZeAu4,2002.0,2,10,2011,Ali G Indahouse,Freestyling with Ricky,tt0284837\naFDFSGAIrxs,1985.0,10,10,2011,Mask,Rusty Remembers Rocky,tt0089560\nIg8UNiVUfc8,2009.0,1,-1,2011,Mother and Child,The Wrong Foot,tt1121977\nGor6z4YDPhU,2009.0,4,-1,2011,Micmacs,All Mysterious On Us,tt1149361\n1sCRrXnBTZ8,2010.0,5,-1,2011,Death at a Funeral,Having a Seizure,tt1321509\no3aqMjrFf5k,2010.0,3,-1,2011,Death at a Funeral,The Coffin's Moving!,tt1321509\n4snGt8OzUV0,1985.0,8,10,2011,Mask,Rocky & Diana,tt0089560\nfc0uxTiUDrE,1985.0,2,10,2011,Mask,Rocky's Lionitis,tt0089560\nOhOvnL8Q03c,2010.0,2,-1,2011,Death at a Funeral,Trippin',tt1321509\n_2WBjBnwlUs,1985.0,3,10,2011,Mask,Rocky's Test Results,tt0089560\nCzOH54GemVo,1999.0,10,11,2011,October Sky,He Isn't My Hero,tt0132477\nC1kZTfHldfY,1985.0,1,10,2011,Mask,School Registration,tt0089560\nbxgZWv4Db5I,2000.0,9,9,2011,Nutty Professor 2: The Klumps,Sherman Tricks Buddy,tt0144528\nh1F9-NKqDDk,1999.0,7,11,2011,October Sky,I Want to Go Into Space,tt0132477\nudHB3tftPz4,1999.0,6,11,2011,October Sky,Homer Proves His Innocence,tt0132477\ncP_OM5VVcSo,1999.0,3,11,2011,October Sky,Test Launches,tt0132477\nTUlYMYQD3ZE,1999.0,1,11,2011,October Sky,It's Headed for the Mine!,tt0132477\njFoUWFmM-NU,2000.0,2,9,2011,Nutty Professor 2: The Klumps,The Klumps Eat Out,tt0144528\nc0RlK3VAmzg,2000.0,5,9,2011,Nutty Professor 2: The Klumps,A Magical Evening,tt0144528\ni6OCtSqrOQ0,1986.0,6,9,2011,The Money Pit,I'm Right Here!,tt0091541\n9CJ9EDtZ2p8,1986.0,4,9,2011,The Money Pit,Walter's Laugh,tt0091541\n3LY5dV3xghY,1986.0,1,9,2011,The Money Pit,I'll Not Like You Anymore,tt0091541\n9fwBPbt95vA,2000.0,1,9,2011,Nutty Professor 2: The Klumps,Buddy Love is Real,tt0144528\nGm1BZxc4tmk,2008.0,8,12,2011,Changeling,Sanford Identifies Murdered Kids,tt0824747\niB25eDhWImc,1996.0,10,12,2011,The Nutty Professor,Relations,tt0117218\npOPWdQO9bK4,2008.0,9,12,2011,Changeling,Forced Sedation,tt0824747\nedX09NFZ3oc,2008.0,6,12,2011,Changeling,Committed to the Psych Ward,tt0824747\nsxNHNxmgzJU,1998.0,9,10,2011,Meet Joe Black,Joe Says Goodbye Scene,tt0119643\ncZP4yFO6l78,1996.0,11,12,2011,The Nutty Professor,Gluteus Minimus,tt0117218\nal-tdoT3gL8,1996.0,7,12,2011,The Nutty Professor,I'm Thin!,tt0117218\nFlxXhrDycHw,2008.0,2,12,2011,Changeling,Your Son Is Alive,tt0824747\nAe-mN5aD8Qg,1998.0,3,10,2011,Meet Joe Black,Am I Going to Die? Scene,tt0119643\nK8JhJPro-1c,1998.0,8,10,2011,Meet Joe Black,Undressing Joe Black Scene,tt0119643\npHvNvYijtBU,2008.0,1,12,2011,Changeling,Reverend Briegleb's Sermon,tt0824747\nDXief-vtjIs,1998.0,10,10,2011,Meet Joe Black,Bill's Birthday Speech Scene,tt0119643\nYF-7cPk04OY,1998.0,6,10,2011,Meet Joe Black,Mystery Man Scene,tt0119643\nG4RvOmNedls,1998.0,4,10,2011,Meet Joe Black,Bill Introduces Joe Scene,tt0119643\nBwDlobymMk0,1998.0,8,10,2011,Fear and Loathing in Las Vegas,The Lonely Highway Patrolman,tt0120669\ngJ_cx3AmCuI,2003.0,6,9,2011,2 Fast 2 Furious,Rat in a Bucket Scene,tt0322259\nRL_3JEsg994,2003.0,4,9,2011,2 Fast 2 Furious,Snatching the Package Scene,tt0322259\nLGnYM0wT0t4,2003.0,5,9,2011,2 Fast 2 Furious,Pink-Slip Race Scene,tt0322259\nB52L95xRYFs,1996.0,4,12,2011,The Nutty Professor,Family Farts,tt0117218\nbjAM2J_D4UY,2003.0,4,9,2011,Bruce Almighty,Bruce Meets God,tt0315327\nqaBlaPsuHQw,2003.0,2,9,2011,2 Fast 2 Furious,Captured Scene,tt0322259\ngP8_w1J5raY,1998.0,5,10,2011,Fear and Loathing in Las Vegas,\"Getting \"\"The Fear\"\"\",tt0120669\nuOmtVFQ3WF8,1998.0,3,10,2011,Fear and Loathing in Las Vegas,The Hotel on Acid,tt0120669\nL98X2ESOWU0,2010.0,5,-1,2011,The Bounty Hunter,Golf Course Chase,tt1038919\njocnzvDLA60,2009.0,7,-1,2011,Repo Men,Everybody's Gotta be a Hero,tt1053424\nji8jpGMlBE8,2009.0,4,-1,2011,Green Zone,Lawrie Dayne,tt0947810\n9oTVECouTO4,1994.0,1,10,2011,Reality Bites,A Cup of Joe,tt0110950\nLsaLeOKK-EA,1996.0,5,12,2011,The Nutty Professor,Heavy Kissing,tt0117218\nBmylCJhL-5Q,1998.0,2,10,2011,Fear and Loathing in Las Vegas,The American Dream in Action,tt0120669\nxNHt_KWKMbE,1994.0,7,10,2011,Reality Bites,Do You Ever Wish You Were a Lesbian?,tt0110950\nAgB4n-1-_BY,1994.0,9,10,2011,Reality Bites,Only Love Can Break Your Heart,tt0110950\nt--mSXDeETc,2004.0,1,8,2011,Shaun of the Dead,Roommate Troubles,tt0365748\nb_BA368IluE,1994.0,2,10,2011,Reality Bites,A Den of Slack,tt0110950\nYVOKgKYJB2E,1994.0,4,10,2011,Reality Bites,Non-Practicing Virgin,tt0110950\n2W5dr790cKo,2001.0,6,11,2011,The Mummy Returns,Blimp Ride,tt0209163\nCgU-5WQGClY,1958.0,6,11,2011,Vertigo,Don't Let Me Go,tt0052357\nqLvGnro4Cgw,1931.0,7,8,2011,Frankenstein,The Torch-Wielding Mob,tt0021884\nGbZMFMSKQ2s,1931.0,5,8,2011,Frankenstein,The Monster Subdued,tt0021884\nA4Ntv7DJURM,1931.0,1,8,2011,Frankenstein,Fritz Steals the Brain,tt0021884\nzPeqoWzZE5I,2009.0,5,-1,2011,Repo Men,Enforcement of Rules,tt1053424\n96sUPxlIfx4,1931.0,4,8,2011,Frankenstein,The Monster Meets Fire,tt0021884\niCfjoSbWHZM,2009.0,4,-1,2011,Repo Men,Working on Commission,tt1053424\nHXRuqpUG9RI,2009.0,1,-1,2011,Repo Men,\"No Need For Violence, Miss\",tt1053424\nJ1668qPavto,2009.0,1,-1,2011,Green Zone,Intelligence Problem,tt0947810\nrSWBuZws30g,1979.0,10,10,2011,The Jerk,That's All I Need!,tt0079367\n0XOzPjsD_ec,2001.0,9,11,2011,American Pie 2,Super Glue,tt0252866\nkBJDz4ylQO0,1979.0,9,10,2011,The Jerk,Navin Beats the Racists,tt0079367\nTcwz8-EfFYE,1979.0,7,10,2011,The Jerk,He Hates These Cans!,tt0079367\n3ohBUYQJflU,1979.0,2,10,2011,The Jerk,The Lord Loves a Workin' Man,tt0079367\nahuPW6_t-z0,1979.0,5,10,2011,The Jerk,Navin's in Print!,tt0079367\nSlf_2J57SyY,2009.0,5,10,2011,Couples Retreat,Let It All Hang Out,tt1078940\nlEPfDu4pVqg,2011.0,8,-1,2011,POM Wonderful Presents: The Greatest Movie Ever Sold,POM Wonderful Pitch,tt1743720\nTb6dbNhFk7I,2010.0,3,-1,2011,Of Gods and Men,Stubbornness,tt1588337\nFSSlOmgUf0Q,2011.0,3,-1,2011,Jumping the Broom,Life Will Test You,tt1640484\nhG6DmzzU8m0,2011.0,7,-1,2011,Your Highness,Things Get Nasty,tt1240982\nucikAqewZL4,2011.0,2,-1,2011,Battle: Los Angeles,We Can Not Lose Los Angeles,tt1217613\nXlj9wg9q6f8,1988.0,1,9,2011,Midnight Run,An Alonzo Mosely Badge,tt0095631\no6TYEHyv00Y,2010.0,9,-1,2011,The Social Network,Putting It Online,tt1285016\nT3Xlw651IoE,1988.0,5,9,2011,Midnight Run,You're a Pilot?,tt0095631\nW3GsHtZu0Bw,1988.0,3,9,2011,Midnight Run,Living in Denial,tt0095631\nPpj45Ai524s,1988.0,6,9,2011,Midnight Run,Catching a Freight Train,tt0095631\nrbsrjcXynlg,2010.0,1,-1,2011,The Wolfman,Sir John Defends Lawrence,tt0780653\nlfJ7WzyoZH8,2010.0,5,-1,2011,The Wolfman,Abberline Pursues,tt0780653\n0SwgAb1effg,2009.0,6,-1,2011,An Education,Action Is Character,tt1174732\nt4_obOCNYls,2010.0,2,-1,2011,Dear John,You Don't Scare Me,tt0989757\nQxa4zjRostg,2010.0,3,-1,2011,Dear John,I Promise,tt0989757\nC_dc5WzLq_c,2009.0,2,-1,2011,An Education,Cello Ride,tt1174732\nxUp1My_eHn4,2010.0,4,-1,2011,The Tourist,Because I Kissed You,tt1243957\nV4qu6AJNBQ8,2010.0,1,-1,2011,The Tourist,Burn This Letter,tt1243957\nJhSRGLe18OI,2010.0,2,-1,2011,The Tourist,I'm Elise,tt1243957\nG4_3pzwFYKw,2010.0,6,-1,2011,Kenny Chesney: Summer in 3D,Living in Fast Forward,tt1545098\nriicefV6xiI,2010.0,4,-1,2011,Kenny Chesney: Summer in 3D,There Goes My Life,tt1545098\naF4En8CIaNk,2010.0,1,-1,2011,Kenny Chesney: Summer in 3D,Live Those Songs,tt1545098\n_WjIlCZJtLk,2010.0,2,-1,2011,Kenny Chesney: Summer in 3D,These Songs That Are Our Lives,tt1545098\nz6aek_pwEGk,2010.0,7,-1,2011,Barney's Version,Paternal Wisdom,tt1423894\nECoL3IaXgRI,2010.0,6,-1,2011,Barney's Version,Irretrievably in Love,tt1423894\nrP0QURktz3Y,2010.0,9,-1,2011,Barney's Version,Have I Ever Given Up?,tt1423894\nV3Av8JD__sQ,2010.0,7,-1,2011,Skyline,Jet Crash,tt1564585\nIsskB0D2GC0,2009.0,3,-1,2011,An Education,Charming David,tt1174732\nPz0RfOVm-So,2009.0,4,-1,2011,An Education,To Go to Chelsea,tt1174732\nuhpknFQJ7G0,2009.0,1,-1,2011,Julie & Julia,Happy Valentine's Day,tt1135503\nEg8MVTZ12pE,2009.0,3,-1,2011,Julie & Julia,An Idea for a Blog,tt1135503\nYsrQUrJ7AdM,2009.0,5,-1,2011,Julie & Julia,Julia Really Likes to Eat,tt1135503\nTBiqsgxbxLA,2010.0,2,-1,2011,Edge of Darkness,Why Are You Here?,tt1226273\nm03MTJCH0Ns,2010.0,1,-1,2011,Another Year,A Man Who Can Cook,tt1431181\nw0AliJi4npk,2010.0,8,-1,2011,Burlesque,Express,tt1126591\nathtiym8OYE,2010.0,7,-1,2011,Burlesque,Second Best View in L.A.,tt1126591\ncoeU38xEhVU,2004.0,6,10,2011,In Good Company,Can I Still Dunk?,tt0385267\nPWTptbb0vB4,2010.0,9,-1,2011,Burlesque,He Bats for the Other Team,tt1126591\nK9T33H_h0Yk,2010.0,3,-1,2011,Burlesque,From Here To Up There,tt1126591\nxeSDsBS_cvo,2010.0,2,-1,2011,Another Year,Perfect in Every Way,tt1431181\nBvWSMD2FIpU,2010.0,2,-1,2011,Burlesque,Welcome to,tt1126591\ntM3Zg8m373Y,2010.0,1,-1,2011,Barney's Version,A True Blue Shiksa,tt1423894\noqKAuNefcSM,2010.0,5,-1,2011,Barney's Version,\"We Just Met, At Your Wedding\",tt1423894\n8eu9yZ6pWjg,2010.0,5,-1,2011,The Social Network,I Founded Napster,tt1285016\nP2A2nKAbQqI,2010.0,4,-1,2011,A Nightmare on Elm Street,We're Having the Same Dream,tt1179056\n69ux9TSbEKk,2010.0,2,-1,2011,Legion,They're Here,tt1038686\nKPwY1uEFP-c,2010.0,1,-1,2011,Legion,Clouds Don't Buzz,tt1038686\nNYFI1-FTw94,2005.0,3,3,2011,Monster-in-Law,Slap Fight,tt0369735\nndItN7hhtII,2005.0,1,3,2011,Monster-in-Law,Popping the Question,tt0369735\nPolzQMFju_s,2009.0,7,-1,2011,Inglourious Basterds,Shosanna and Fredrick at the Cafe,tt0361748\nMHpyl6uVPrw,2005.0,2,3,2011,Monster-in-Law,In The Nuthouse,tt0369735\ny9jS6a7rIVQ,2010.0,7,-1,2011,Leap Year,Kiss the Girl,tt1216492\nYCIqymquy54,2010.0,6,-1,2011,Leap Year,Coin Toss Deception,tt1216492\ndAOw8dXcMpw,2009.0,3,-1,2011,The Hangover,We Didn't Steal Anything,tt1119646\nOkIYOU1ObYU,2009.0,1,-1,2011,The Hangover,Stolen Police Car,tt1119646\n9ZY9i9-hoQM,2010.0,3,-1,2011,Leap Year,I'll Take You,tt1216492\n1QjC0jXb-9k,2010.0,2,-1,2011,A Nightmare on Elm Street,Won't Happen Again,tt1179056\nvjvHNXSWvPs,2009.0,5,-1,2011,The Hangover,My Wolf Pack,tt1119646\n7d7OeDwkfTg,2010.0,2,-1,2011,The Illusionist,The Fat Lady's Singing,tt0775489\nVvfRXzxBe68,2010.0,2,-1,2011,My Soul to Take,A Call for Help,tt0872230\nF44mBbuqA2c,2010.0,4,-1,2011,The Debt,War Secrets,tt1226753\n4xh-Hz14AA4,2010.0,6,-1,2011,The Illusionist,Making a Work of Art,tt0775489\nj32LbrHGak0,2010.0,2,-1,2011,The Debt,Meeting Rachel,tt1226753\n7Xgj1Csnr_w,2009.0,6,-1,2011,Inglourious Basterds,If a Rat Hides,tt0361748\nFboJePoCAb8,2000.0,12,12,2011,Billy Elliot,Billy Says Goodbye,tt0249462\ndnThWk9ib1c,2009.0,5,-1,2011,Armored,Trying to Fool the Cops,tt0913354\noZ868onS6YY,2010.0,5,-1,2011,The Illusionist,First Time in Heels,tt0775489\nU0tTT_87Hh8,2000.0,10,12,2011,Billy Elliot,What Dancing Feels Like,tt0249462\nM37QsnD6nZ4,2010.0,1,-1,2011,Made in Dagenham,The Girls Aren't Taking These Union Terms,tt1371155\nr0cRrtcU5X0,2010.0,7,-1,2011,Made in Dagenham,\"We Ain't Politicians, We're Working Women\",tt1371155\nUJWni94vAAU,2010.0,6,-1,2011,Made in Dagenham,A Fiery Redhead,tt1371155\nBbjSOt7NxIY,2010.0,5,-1,2011,Made in Dagenham,Rights Not Privileges,tt1371155\nKMD8yO3iM-E,2010.0,3,-1,2011,Made in Dagenham,Progressive Thoughts,tt1371155\nwq26A_QK4So,2010.0,3,-1,2011,It's Kind of a Funny Story,Bob Dylan's Wisdom,tt0804497\nbXt-KqvrSh0,2010.0,4,-1,2011,The Social Network,Marylin Delpy,tt1285016\nnHCEOK9n5z8,2010.0,3,-1,2011,The Social Network,The Winklevoss Twins,tt1285016\n5hXXFQLDsoA,2010.0,1,-1,2011,It's Kind of a Funny Story,Are You a Doctor?,tt0804497\n5msVl3oZl4U,2010.0,4,-1,2011,Inside Job,Financial Stability in Iceland,tt1645089\nxy8a0GKO_Ek,2010.0,6,-1,2011,Inside Job,Sub-Prime Mortgages,tt1645089\nxxbFPdBBjc0,2010.0,3,-1,2011,Inside Job,Lehman Brothers Goes Bankrupt,tt1645089\nvdbQpDHAq5U,2010.0,2,-1,2011,Inside Job,Going Public on Wall Street,tt1645089\nMPOPd2RNLko,2009.0,1,-1,2011,Love Happens,Shot Down,tt0899106\nmSa_kUf6cxs,2009.0,1,-1,2011,Cloudy with a Chance of Meatballs,Cal's Birthday,tt0844471\nqyLJCNyRov0,2000.0,1,12,2011,Billy Elliot,A Disgrace to the Gloves,tt0249462\nvFAE-ZIntVI,1992.0,8,10,2011,Candyman,Summoning The,tt0103919\n54A7W6eEBnw,2009.0,4,-1,2011,District 9,An Alien Spray,tt1136608\nXon0bfX3L1g,2010.0,8,-1,2011,Tamara Drewe,You Can Have Anyone,tt1486190\nQO9r8aO07YE,2010.0,1,-1,2011,Inside Job,Investment Grade Ratings,tt1645089\naRcxYPkFjh4,2010.0,4,-1,2011,Tamara Drewe,That's,tt1486190\nbJgem6Xc3TM,2010.0,3,-1,2011,Tamara Drewe,You're Just a Sex Object,tt1486190\nF2hiFbuQ-Qw,2002.0,10,10,2011,8 Mile,Rabbit Battles Papa Doc Scene,tt0298203\nZ4vn4UWaeZU,2010.0,3,-1,2011,Catfish,Instantaneous Relationship,tt1584016\nX1u5iUcD0Ag,2010.0,2,-1,2011,Devil,Locked Elevator Doors,tt1588170\nPo_w8OmTfoY,2010.0,1,-1,2011,Devil,I'm Not Your Bro,tt1588170\n1q5Us5iVWNI,2010.0,3,-1,2011,Devil,The Lights Go Out,tt1588170\nLiHKY-bG36E,2010.0,1,-1,2011,Catfish,A Drawing of Nev,tt1584016\nnkVK4JHRQfk,2010.0,4,-1,2011,Resident Evil: Afterlife,Double Trouble.,tt1220634\nByNjiy8-j8g,2002.0,8,10,2011,8 Mile,Rabbit Is Betrayed Scene,tt0298203\nsxI6RnTFj3U,2010.0,1,-1,2011,The American,Hunters Travel in Pairs,tt1440728\n5CdiJbnuvYg,2010.0,2,-1,2011,Resident Evil: Afterlife,The Undead Go Over the Edge,tt1220634\nNYTS7NBDKKU,2010.0,2,-1,2011,Easy A,A Pocketful of Sunshine,tt1282140\n0ShWGyC408I,2002.0,7,10,2011,8 Mile,Greg's Outta Here Scene,tt0298203\nLUV0AjnjaT4,2010.0,8,-1,2011,Easy A,A Woodchuck Mascot,tt1282140\n71qm5ZOlpAw,2010.0,5,-1,2011,Easy A,Sex with Brandon,tt1282140\nCEtLeoXjttY,2010.0,3,-1,2011,Easy A,A Higher Power...Tom Cruise?,tt1282140\nVC0uIqac2A4,2010.0,2,-1,2011,Takers,That's The Past,tt1135084\nETC82KEplac,2000.0,5,10,2011,Meet the Parents,Kevin the Ex,tt0212338\nDQYjgqnTmJ8,1994.0,8,10,2011,The Hudsucker Proxy,The Hula Hoop Catches On,tt0110074\nfpiyrd28vfA,1994.0,5,10,2011,The Hudsucker Proxy,A Muncie Girl,tt0110074\nRF0YXIambdI,1989.0,5,12,2011,Parenthood,She's a Weird Child,tt0098067\nvt0hblIsHiY,2002.0,5,10,2011,8 Mile,Cheddar Pulls a Gun Scene,tt0298203\nhLCjV1eOAoA,1994.0,6,10,2011,The Hudsucker Proxy,Meeting the Shareholders,tt0110074\n8bY4qPadkSo,2002.0,4,10,2011,8 Mile,We're Being Evicted Scene,tt0298203\nNBQAXiZ7KG4,2010.0,1,-1,2011,Eat Pray Love,The Palm Reader,tt0879870\naYKt-7msPic,2010.0,4,-1,2011,Nanny McPhee Returns,A Baby Elephant,tt1415283\nyGgOimJaqT4,2010.0,4,-1,2011,Eat Pray Love,James Taylor,tt0879870\nJPasKum1U9Q,2010.0,1,-1,2011,Nanny McPhee Returns,Nanny McPhee Arrives,tt1415283\nbCaHwP04KK0,2010.0,7,-1,2011,Charlie St. Cloud,Take a Chance,tt1438254\nVUvB-jPvVuw,2010.0,5,-1,2011,Charlie St. Cloud,Kissing Tess,tt1438254\nU2p88URI8lg,2010.0,2,-1,2011,Charlie St. Cloud,The Deal,tt1438254\nUu31b0VHCc4,2010.0,1,-1,2011,Charlie St. Cloud,How to Hold a Baseball,tt1438254\n5PKVmzdQGwg,2010.0,5,-1,2011,The Other Guys,Rape Whistle,tt1386588\nmK8ad1nYFQA,2010.0,3,-1,2011,Animal Kingdom,The Trump Hand,tt1313092\n5sFu4iEF8dk,2010.0,1,-1,2011,Animal Kingdom,Let Him Know Who's King,tt1313092\nWzTIhm6YMQk,2010.0,2,-1,2011,The Other Guys,Lion vs. Tuna,tt1386588\n7GIxoAbxvQk,2010.0,1,-1,2011,The Other Guys,Top Cops,tt1386588\nLlRHSFVV8cY,2010.0,3,-1,2011,Salt,Arrest of a Spy,tt0944835\nNG5ijPnfYV8,2010.0,2,-1,2011,Salt,Truck Jump,tt0944835\nP1_QqWRpUQg,2010.0,6,-1,2011,The Kids Are All Right,Fecund,tt0842926\nHPwD7sgVtkA,2010.0,5,-1,2011,The Kids Are All Right,Drop Out,tt0842926\nzU3Hs36FIrw,1994.0,3,10,2011,The Hudsucker Proxy,Mail Room Orientation,tt0110074\n_6dtasEqpLM,1994.0,2,10,2011,The Hudsucker Proxy,Waring Hudsucker Quits,tt0110074\nxxFSUgehWbk,2010.0,3,-1,2011,The Kids Are All Right,Team Sports,tt0842926\nzrR9re9NV_s,2010.0,3,-1,2011,Grown Ups,Wasted,tt1375670\nLRPEYUlE8rU,2002.0,2,10,2011,8 Mile,Wink's Big Deal Scene,tt0298203\nIG4FAGxZvtU,2010.0,4,-1,2011,Grown Ups,Skipping Rocks,tt1375670\nRf9V-yzCzR4,1992.0,8,10,2011,Army of Darkness,The Battle Car,tt0106308\nNNzMjrJQKsc,1997.0,12,12,2011,Bean,'s Analysis,tt0118689\n7_hS3YLPHvI,2003.0,4,9,2011,Grand Theft Parsons,Caught & Busted,tt0338075\nlJ9V5BgkzKU,2003.0,7,9,2011,Grand Theft Parsons,A Junkie's Confession,tt0338075\nGRG-2ocGGnw,2003.0,9,9,2011,Grand Theft Parsons,A Drink With a Ghost,tt0338075\nRdb-5NHyGOA,2010.0,1,-1,2011,The Karate Kid,Chop Sticks or Fly Swatter,tt1155076\n7rlvmkQy4hQ,2010.0,2,-1,2011,The Karate Kid,Needs More Focus,tt1155076\nzyJgcHwLP3w,2010.0,10,11,2011,Get Him to the Greek,The Longest Hallway of All-Time,tt1226229\nlAklD2ULzh0,2009.0,10,-1,2011,Mother and Child,A Generous Person,tt1121977\nqDc-OGF_NJ0,2010.0,5,-1,2011,MacGruber,I Like Holes,tt1470023\nWDiwa8H0DTc,2010.0,4,-1,2011,MacGruber,Party Crasher,tt1470023\nT4Sk7RsIQd0,2008.0,1,11,2011,Forgetting Sarah Marshall,Peter Meets Aldous,tt0800039\n5MBUVKzIyPY,2010.0,2,-1,2011,MacGruber,The Incredi-Mop,tt1470023\n0wFkRRILnPo,1930.0,8,10,2011,All Quiet on the Western Front,You Still Think I'm a Child,tt0020629\nyb_-UHyPC8c,2009.0,8,-1,2011,Mother and Child,A New Therapist,tt1121977\nyLrN6wSSGqk,1997.0,2,12,2011,Bean,Air Sickness,tt0118689\n_SQr8I3lcW8,1930.0,4,10,2011,All Quiet on the Western Front,What Good Are They to You?,tt0020629\n4MG5Dy0gFFY,2009.0,9,-1,2011,Mother and Child,Harsh Date,tt1121977\n-v-KiIuYkCo,2009.0,6,-1,2011,Get Low,Mattie Visits Felix,tt1194263\nnHKJaG3sXMY,2009.0,2,-1,2011,Get Low,Know You're Good,tt1194263\nZgngBG5JX_M,2009.0,3,-1,2011,Get Low,A Funeral Party,tt1194263\nNVR6-HnKtM8,2009.0,1,-1,2011,Get Low,People Won't Die,tt1194263\nf4ojzsvQhh0,2009.0,4,-1,2011,Mother and Child,Making Friends,tt1121977\nfJBrWMxc_P4,2009.0,5,-1,2011,Mother and Child,Scary Feelings,tt1121977\n8WqRrq_lM14,2009.0,6,-1,2011,Mother and Child,Just the Two of Us,tt1121977\nOseaEf8Qy8Y,2002.0,8,10,2011,Big Fat Liar,Helicopter Jump,tt0265298\nRH0zWG3Crzs,2008.0,7,9,2011,Role Models,Battle Royale,tt0430922\np84uEGZqFlk,2008.0,9,9,2011,Role Models,Augie Kills the King,tt0430922\nLJY_pChREVY,2002.0,5,10,2011,Big Fat Liar,Crank Call,tt0265298\n-UAElWXbk3I,2002.0,2,10,2011,Big Fat Liar,The Truth Is Overrated,tt0265298\n8oi8aVwb_Tg,2010.0,4,-1,2011,Death at a Funeral,Oh Daddy!,tt1321509\nyywHSkFkfU0,2010.0,6,-1,2011,Death at a Funeral,A Mistake,tt1321509\nWJeOTphX47E,2010.0,1,-1,2011,Death at a Funeral,Not My Father,tt1321509\n32JbDv50hFc,2009.0,5,-1,2011,Micmacs,Marilyn Monroe Molar,tt1149361\nobDVqhso9l4,2009.0,3,-1,2011,Micmacs,The Veggie Drawer,tt1149361\nIPEX_RXRKgw,2009.0,2,-1,2011,Micmacs,That's My Hat,tt1149361\n6QoON2Vq78k,2009.0,8,-1,2011,Inglourious Basterds,The Basterds,tt0361748\noqAu5fVDwAM,2010.0,3,-1,2011,The Bounty Hunter,In the Trunk,tt1038919\n7nO7han5KIg,2010.0,2,-1,2011,The Bounty Hunter,Off to the Races,tt1038919\n368Nrtkmrls,1930.0,3,10,2011,All Quiet on the Western Front,Dish It Out!,tt0020629\nmKgy5W3S6nw,2000.0,10,10,2011,Erin Brockovich,Erin's Big Bonus,tt0195685\nD-5P2iMf_ZA,2000.0,2,10,2011,Erin Brockovich,You're Someone to Me,tt0195685\nrZ-_UsEBT5E,2009.0,6,-1,2011,Repo Men,Lips...Are All Me,tt1053424\n99odqGVYe4g,1930.0,1,10,2011,All Quiet on the Western Front,Before the Storm,tt0020629\nOSca1EnBNJA,2009.0,2,-1,2011,Repo Men,A Slick Salesman,tt1053424\nUHqUN3um9Bc,2009.0,3,-1,2011,Repo Men,Repossessed Livers,tt1053424\nHvJTquFs5Zk,2009.0,5,-1,2011,Green Zone,Where's Miller?,tt0947810\nu3M_YKjLOkI,2010.0,1,-1,2011,Greenberg,Impressed by You,tt1234654\nqO_4Up5Q5ns,2009.0,3,-1,2011,Green Zone,They Matter to Me,tt0947810\n14HerspIb_U,1998.0,7,10,2011,\"Lock, Stock and Two Smoking Barrels\",Gangster Blood Bath,tt0120735\nkQQfoIy7SNI,2010.0,4,-1,2011,The Wolfman,Abberline Comes for Lawrence,tt0780653\nZbKU3_H3FVw,1995.0,1,9,2011,Mallrats,A Three Dimensional Sailboat,tt0113749\nB_4YNm9mMvo,2010.0,6,-1,2011,The Wolfman,Gwen Asks Lawrence To Stay,tt0780653\nu3UyGrnv1-A,1998.0,4,10,2011,\"Lock, Stock and Two Smoking Barrels\",Hitting the Weed Connect,tt0120735\nPGqBHvtmtgE,1998.0,10,10,2011,\"Lock, Stock and Two Smoking Barrels\",The Money Comes Back,tt0120735\nDl4hTIp8QbM,2010.0,3,-1,2011,The Wolfman,Lawrence Transforms,tt0780653\nRK27DwSEetI,2010.0,1,-1,2011,Dear John,He Loves You,tt0989757\nbQqcnMHjxvQ,2009.0,5,-1,2011,An Education,Art Appreciation,tt1174732\nmudt7nvWwo4,2010.0,4,-1,2011,Dear John,Write Me,tt0989757\n0GiMAf9q3hQ,2009.0,7,-1,2011,An Education,This Is the One,tt1174732\nMCwQ4tdtev4,2009.0,1,-1,2011,An Education,A Rebel,tt1174732\nDUhgY4ohhQA,2009.0,4,-1,2011,Julie & Julia,Watching Julia,tt1135503\naURe7hHL-Dw,2009.0,2,-1,2011,Julie & Julia,Another Meltdown,tt1135503\nG2UTjomYxkc,2003.0,6,10,2011,Lost in Translation,\"\"\"Midnight Velocity\"\" Press Conference\",tt0335266\nlpOdAHwRnXY,2003.0,10,10,2011,Lost in Translation,A Secret Goodbye,tt0335266\nUpLg7Ma-c4g,1976.0,8,10,2011,Car Wash,\"Hippo & the Fly Stop the \"\"Mad Bomber\"\"\",tt0074281\n4HWP1l_KtTc,1998.0,2,10,2011,\"Lock, Stock and Two Smoking Barrels\",Rory's Not to Be Underestimated,tt0120735\ndgJKcCZkXxY,2010.0,4,-1,2011,Legion,It's Just One Baby,tt1038686\nkx2FhY_akDY,1998.0,10,10,2011,Patch Adams,Revealing Graduation,tt0129290\niXfhOj2PobA,1996.0,7,10,2011,Bulletproof,Charlie Knows the Woods,tt0115783\nOHAVcgjGDqM,1976.0,9,10,2011,Car Wash,When Kenny Met Marsha,tt0074281\neNK7N3AwVFQ,2003.0,8,10,2011,Lost in Translation,Does It Get Easier?,tt0335266\njj6ECLiWbxo,2010.0,3,-1,2011,Legion,Extermination,tt1038686\nJxL2yg_bRnQ,2010.0,4,-1,2011,Leap Year,He Got You a Suitcase?,tt1216492\nFHmPBAJK4CY,2010.0,2,-1,2011,Leap Year,A Flight for Leap Day,tt1216492\nkPLNO4WfFJw,2003.0,9,10,2011,Lost in Translation,The Japanese Johnny Carson,tt0335266\n8dhvm-ph88E,2010.0,1,-1,2011,Leap Year,A Gift at Dinner,tt1216492\nezRPVES1oQs,2009.0,5,-1,2011,Inglourious Basterds,We're a Big Fan of Your Work,tt0361748\nXmYC9RAMVeo,2009.0,2,-1,2011,Inglourious Basterds,Business is A-boomin',tt0361748\nvGvDCmuDKKE,2003.0,7,10,2011,Lost in Translation,Bob and Charlotte Meet,tt0335266\nqhAYzFv4HYc,2009.0,4,-1,2011,Inglourious Basterds,A Horse of a Different Color,tt0361748\ni86FbeyKK1U,2003.0,5,10,2011,Lost in Translation,Ditzy Actress,tt0335266\n_xNB1WCQ5NA,2009.0,3,-1,2011,Armored,How Do We Get Him Out?,tt0913354\n4gjiQwh1p6M,2003.0,3,10,2011,Lost in Translation,The Rat Pack Photo Shoot,tt0335266\nuj8ftsuP8T4,2009.0,2,-1,2011,Armored,Car Chase,tt0913354\n4J_8tpDzfAk,2009.0,1,-1,2011,Armored,Bomb!,tt0913354\nFiQnH450hPM,2003.0,1,10,2011,Lost in Translation,Suntory Time!,tt0335266\nwixLlPFJgyQ,2003.0,4,10,2011,Lost in Translation,Bad Exercise,tt0335266\nlPQ6VQzuyxU,2003.0,2,10,2011,Lost in Translation,Lip My Stockings!,tt0335266\nLw0Nn1xSMHk,1976.0,7,10,2011,Car Wash,Lindy Disses Duane,tt0074281\nObey6WggwjM,1996.0,4,10,2011,Bulletproof,Crash Landing,tt0115783\nZVuhyX3w4Yg,1996.0,10,10,2011,Bulletproof,I'm Gonna F*** You Up,tt0115783\nfImqZCIebuw,1996.0,9,10,2011,Bulletproof,Right in the F***in' Eyeball,tt0115783\np0-xbD-mRLs,1996.0,3,10,2011,Bulletproof,I Will Shoot You If You Chew Loud,tt0115783\n5RbN0rjWBAg,2009.0,4,-1,2011,Planet 51,Not So Scary...,tt0762125\nujX0y3zcvP8,2009.0,4,-1,2011,Love Happens,Struttin' Back,tt0899106\nuMH_Ajdp3E0,2009.0,3,-1,2011,Love Happens,Burke Is Rusty,tt0899106\nfLvEcBoOpnQ,2009.0,4,-1,2011,Cloudy with a Chance of Meatballs,Spaghetti Twister,tt0844471\nbbJEqSj7Wkk,2009.0,2,-1,2011,Cloudy with a Chance of Meatballs,Raining Hamburgers,tt0844471\nL24hGLbmNrw,2009.0,8,10,2011,Land of the Lost,Prehistoric Mosquito,tt0457400\nHigxGvmHEdQ,1995.0,10,10,2011,12 Monkeys,Zoo Animals Run Free,tt0114746\nC7Rmtxf-NVE,1995.0,8,10,2011,12 Monkeys,World War I,tt0114746\nq74RKOmIjC8,1995.0,5,10,2011,12 Monkeys,Explaining to the Doctors,tt0114746\nG0yU-YJ6sjY,1998.0,1,10,2011,Patch Adams,He At Least Listened,tt0129290\n0wC8Ab5AZeE,1996.0,4,10,2011,Fear,Practically Family,tt0117381\nSk9mR3zjrkk,1998.0,2,10,2011,Patch Adams,Group Therapy,tt0129290\n9l_U2xXb9VI,1995.0,3,10,2011,12 Monkeys,Plague of Madness,tt0114746\ne4yCxKv-2qw,1995.0,2,10,2011,12 Monkeys,Cole Meets Kathryn,tt0114746\nMKl8s0EO5T4,1998.0,4,10,2011,Patch Adams,I Want to Help People,tt0129290\nCDywMUdVPqk,1999.0,9,11,2011,Being John Malkovich,Dance of Despair and Disillusionment,tt0120601\noMx6C31dCeo,1999.0,4,11,2011,Being John Malkovich,Craig Wins a Date With Maxine,tt0120601\nquJX9XLQe78,2004.0,2,10,2011,In Good Company,You're My New Boss,tt0385267\nmeSIVfOyerg,1999.0,6,11,2011,Being John Malkovich,Malkovich Gets Paranoid,tt0120601\n1itYlP2GpI8,1999.0,11,11,2011,Being John Malkovich,Craig's Escape From Malkovich,tt0120601\nTpGPSRGrL3s,1995.0,1,10,2011,12 Monkeys,The Scientists' Offer,tt0114746\nQ6Fuxkinhug,1999.0,8,11,2011,Being John Malkovich,Malkovich Inside Malkovich,tt0120601\nT2Y7oo3iB40,1999.0,1,11,2011,Being John Malkovich,Welcome to the 7 1/2 Floor,tt0120601\nHQYiGnCpZa8,2009.0,1,-1,2011,A Perfect Getaway,Maybe Next Time,tt0971209\n6_nHubnKxqg,1990.0,4,10,2011,Cry-Baby,Picking Up Allison,tt0099329\nx_75yMOHMiw,1990.0,1,10,2011,Cry-Baby,\"Squares, Drapes and Scrapes\",tt0099329\n1TNL7KlEI8g,2009.0,3,-1,2011,District 9,Using the Weapon,tt1136608\nXDXuWwNXAZM,2009.0,4,-1,2011,A Perfect Getaway,The Gruesome Twosome,tt0971209\niotRit7KMDc,1990.0,3,10,2011,Cry-Baby,'s New Motorcycle,tt0099329\n9QWRxT9oHYI,2009.0,5,-1,2011,A Perfect Getaway,Get Out of Here,tt0971209\nXMrWXjOuv0g,1990.0,9,10,2011,Cry-Baby,Doin' Time for Bein' Young,tt0099329\nzWkNT5A3wIk,1997.0,3,10,2011,Dante's Peak,Please Stay Calm,tt0118928\njn2weAEOp4Q,1997.0,4,10,2011,Dante's Peak,Getting Out of Town,tt0118928\nDsYP0ql5mzM,1985.0,5,10,2011,Mask,The Story of Troy,tt0089560\nIjMTiKtwyKk,1999.0,9,11,2011,October Sky,First Prize,tt0132477\ni9NIwHKBqy0,1996.0,6,12,2011,The Nutty Professor,He's Gonna Blow!,tt0117218\nynGvGgy6K2Q,1999.0,4,11,2011,October Sky,Success!,tt0132477\nd6HReoQl6Mo,1958.0,7,11,2011,Vertigo,Visiting the Past,tt0052357\nR-aJ-2y5ICo,2010.0,1,-1,2011,Scott Pilgrim vs. the World,Hey!,tt0446029\ne62uLLsvUzI,1991.0,4,10,2011,Fried Green Tomatoes,Ruth Leaves Frank,tt0101921\n3rYbV-Q-VFo,2010.0,1,-1,2011,Cirque du Freak,Getting Tickets,tt0450405\nyedsblplSMg,1991.0,5,10,2011,Fried Green Tomatoes,Food Fight,tt0101921\nypvrfx32T0s,2010.0,5,-1,2011,Cirque du Freak,What Did I Say?,tt0450405\nQFOHhusNwtw,2010.0,2,-1,2011,Cirque du Freak,Being a Vampire Is Deeply Depressing,tt0450405\n6oyxLFD2IIw,1977.0,10,10,2011,Slap Shot,Braden's Striptease,tt0076723\n_XbL7lG0Su8,1977.0,1,10,2011,Slap Shot,The Finer Points of Hockey,tt0076723\nLxnLNUq0abk,2010.0,7,-1,2011,Cirque du Freak,Battle in the Theater,tt0450405\nADMAw7UKLsg,1991.0,2,10,2011,Fried Green Tomatoes,The Spark Back in Marriage,tt0101921\njmgV3OFn0aE,2000.0,4,12,2011,Billy Elliot,Not for Lads,tt0249462\nQ7wHV0r256A,2000.0,9,12,2011,Billy Elliot,Royal Ballet Audition,tt0249462\nCH8HV5gXQB4,2000.0,7,12,2011,Billy Elliot,Dancing for Dad,tt0249462\n69RNNex-sig,2000.0,3,12,2011,Billy Elliot,Pirouette Practice,tt0249462\ni0p2X2rQ6Ag,2000.0,2,12,2011,Billy Elliot,Why Don't You Join In?,tt0249462\nVcV-ZLbd-pk,1973.0,3,8,2011,High Plains Drifter,I'm the Sheriff and the Mayor,tt0068699\nTLZClsaDEw0,2000.0,8,12,2011,Billy Elliot,Give the Boy a Chance!,tt0249462\n9EV3DKPo-4U,1998.0,1,10,2011,Meet Joe Black,Lightning Could Strike Scene,tt0119643\nBS8zi7Dg8TM,1996.0,3,12,2011,The Nutty Professor,Klump Family Dinner,tt0117218\nEn1SvG9tOSg,1977.0,4,10,2011,Slap Shot,The Hansons Are Pumped,tt0076723\n2fc36Hc2n2s,1973.0,1,8,2011,High Plains Drifter,A Shave and a Shootout,tt0068699\ntCb_6mO6CmE,2003.0,1,9,2011,2 Fast 2 Furious,Bridge Jump Scene,tt0322259\n5aBsRxccPJI,1941.0,8,9,2011,Sullivan's Travels,I Killed John L. Sullivan!,tt0034240\n9ofxELr5sa4,1941.0,3,9,2011,Sullivan's Travels,Ditching the Entourage,tt0034240\nc7tvfdSjRE4,1977.0,5,10,2011,Slap Shot,Reg Taunts the Goalie,tt0076723\na0QpNMW2kws,2000.0,2,10,2011,Bring It On,Girls Locker Room Trash Talk,tt0204946\n2ah3GNQL6x4,2006.0,5,10,2011,Sleeping Dogs Lie,Shoot the Cookie,tt0492492\nm0z6-iFR-S8,1941.0,9,9,2011,Sullivan's Travels,I Want to Make a Comedy,tt0034240\n6NRK8ai2U0Q,2006.0,4,10,2011,Sleeping Dogs Lie,Monkeys Hate Midgets,tt0492492\n--RFXQ-Xlac,2009.0,10,10,2011,The Code,The MacGuffin,tt1112782\n1g9QEQrHOMw,2009.0,7,10,2011,The Code,Bypassing Lasers,tt1112782\nD5Oc_sYmlt8,2009.0,9,10,2011,The Code,The Trade Off,tt1112782\nhcqpyBBYg_4,2009.0,6,10,2011,The Code,Breaking In,tt1112782\n5gV4JcPhi9I,2009.0,8,10,2011,The Code,The Double Cross,tt1112782\nyJJA6WRpvlg,1979.0,8,10,2011,The Jerk,Navin's Special Purpose,tt0079367\nh30PnSefeZA,2009.0,5,10,2011,The Code,Nicky's Threat,tt1112782\nAPS_K6M4Qac,2009.0,4,10,2011,The Code,Chinese Food,tt1112782\nM94-kf_lXUA,2006.0,10,10,2011,Sleeping Dogs Lie,I Know What Happened,tt0492492\nbd-fVqwNZaQ,2009.0,3,10,2011,The Code,Planning the Heist,tt1112782\nClehpiAu764,2009.0,2,10,2011,The Code,Vault Exposition,tt1112782\n7tmC9Qq5RjA,2009.0,1,10,2011,The Code,Subway Robbery,tt1112782\nzZGqwY_J8Vw,2006.0,8,10,2011,Sleeping Dogs Lie,I Think You're Hot,tt0492492\nkmYAgJwpE-k,2006.0,9,10,2011,Sleeping Dogs Lie,I Kissed a Dead Body Once,tt0492492\n1RBwoUbvxx0,1998.0,6,10,2011,Fear and Loathing in Las Vegas,White Rabbit,tt0120669\nmO5UNbKzcpQ,1988.0,9,9,2011,Midnight Run,\"It's Not a Payoff, It's a Gift\",tt0095631\nGmXGVDnPU9o,1998.0,4,10,2011,Fear and Loathing in Las Vegas,Devil Ether,tt0120669\nIxnZIoP_5J0,2005.0,1,10,2011,King Kong,Human Sacrifice,tt0360717\nSoL6a37d1Rg,1931.0,8,8,2011,Frankenstein,Windmill Burns Down,tt0021884\n8C9qRHJxOO0,2006.0,7,10,2011,Sleeping Dogs Lie,Shut Up and Kiss Me,tt0492492\nhFICuHeg-CQ,2006.0,6,10,2011,Sleeping Dogs Lie,Something About Amy,tt0492492\ncH3mtHI91Sk,2006.0,3,10,2011,Sleeping Dogs Lie,Tell Me a Secret,tt0492492\nlK93bvZ_fTQ,2003.0,9,10,2011,The Snow Walker,Eulogy for Charlie,tt0337721\n6f_Z5OBzY1k,2006.0,1,10,2011,Sleeping Dogs Lie,I Blew My Dog,tt0492492\njoTY2Wir1w0,2003.0,6,10,2011,The Snow Walker,We Never Had a Chance,tt0337721\nexVcH3m_G5c,2006.0,2,10,2011,Sleeping Dogs Lie,Will You Marry Me?,tt0492492\nYY5cUX_o770,2003.0,10,10,2011,The Snow Walker,\"Walk Well, My Brother\",tt0337721\njfk6JSgLdQQ,2003.0,5,10,2011,The Snow Walker,Searching the Wreckage,tt0337721\nIxj8eXcClLE,2003.0,3,10,2011,The Snow Walker,Nice to Meet You,tt0337721\nTzHrqDQ1OJM,2003.0,7,10,2011,The Snow Walker,Hunting Caribou,tt0337721\nvjeGS4bwPX0,2003.0,4,10,2011,The Snow Walker,Inuktitut Lessons,tt0337721\nJMIukdtLDt8,2009.0,8,10,2011,Leaves of Grass,You Know This Guy?,tt1151359\nnNLvDIcBtz8,2009.0,10,10,2011,Leaves of Grass,Pillar of Salt,tt1151359\n_wD15vBDzgs,2003.0,2,10,2011,The Snow Walker,Crash Landing,tt0337721\n54LTsr8IAU4,2003.0,1,10,2011,The Snow Walker,Tuberculosis,tt0337721\nsfzVAilcMAM,2009.0,9,10,2011,Leaves of Grass,Momma Might Have Called It,tt1151359\nMb-3XGFTpLQ,2009.0,7,10,2011,Leaves of Grass,\"Hate Crime, Hindu Crime\",tt1151359\nA2Eu5xmslWI,2009.0,5,10,2011,Leaves of Grass,Ain't Being Taken Advantage of No More,tt1151359\n4WuZapvSL0E,2009.0,1,10,2011,Leaves of Grass,Unacceptable!,tt1151359\nO7why8Xo_RQ,1979.0,1,10,2011,The Jerk,Navin's Birthday,tt0079367\nHUmelrncGRc,1988.0,4,9,2011,Midnight Run,The Dumbest Bounty Hunters,tt0095631\n3hwRv9BXdOw,2009.0,6,10,2011,Leaves of Grass,We Needed a Mother,tt1151359\n6q5a0W2pxS8,2009.0,4,10,2011,Leaves of Grass,Marijuana Emporium,tt1151359\n9V_bukpqoPY,1999.0,7,11,2011,Being John Malkovich,Malkovich Discovers J.M. Inc.,tt0120601\nLyyc9S3iufk,2009.0,3,10,2011,Leaves of Grass,Are You Out of Your Mind?,tt1151359\nPTENrQnBtXc,2009.0,2,10,2011,Leaves of Grass,Single Serving Friend,tt1151359\nXVINVuRkUFg,2008.0,10,10,2011,Senior Skip Day,Ever Been to Burma?,tt0849470\nDbqqjC92PP4,2008.0,10,10,2011,\"War, Inc.\",Fight Me Like a Dude,tt0884224\nFi51abVO4ac,2008.0,9,10,2011,\"War, Inc.\",Father of the Bride,tt0884224\nCaHL7bVTtQQ,2008.0,6,10,2011,Senior Skip Day,Scary People,tt0849470\n8S62emxyIEA,2008.0,4,10,2011,\"War, Inc.\",Progress Report,tt0884224\nxEU2YTN-svo,2008.0,8,10,2011,Senior Skip Day,\"Hello, Old Friend\",tt0849470\nHKpWEkSUs9U,2008.0,9,10,2011,Senior Skip Day,Not Again,tt0849470\nBFeuE0wAHnI,2008.0,7,10,2011,Senior Skip Day,It's Showtime!,tt0849470\ne0WpcoS_fU8,1992.0,2,8,2011,Guncrazy,Praise the Lord,tt0104377\npieqR7-byq0,2008.0,5,10,2011,Senior Skip Day,So Proud of You,tt0849470\nByExQg6WGeE,2008.0,2,10,2011,Senior Skip Day,Dickwalder's Announcement,tt0849470\nmZ-yMd-bmCY,2008.0,8,10,2011,\"War, Inc.\",That Was Intense,tt0884224\n0IL5GIcAS70,2008.0,3,10,2011,Senior Skip Day,Adam Saves the Day,tt0849470\nhrVLeHMpsDY,2008.0,6,10,2011,\"War, Inc.\",Centurions,tt0884224\nZvbwq_7AeU0,2008.0,7,10,2011,\"War, Inc.\",Hauser Cleans House,tt0884224\nBAXWxuKhcTc,1991.0,8,10,2011,Fried Green Tomatoes,Taking the Stand,tt0101921\nOPC2Ahuklt8,2008.0,5,10,2011,\"War, Inc.\",Special Powers,tt0884224\nL897JSOP21U,2004.0,2,10,2011,Employee of the Month,Sleazebag Jack,tt0362590\np1YmfANJdDA,2004.0,5,10,2011,Employee of the Month,Choose Your Destiny,tt0362590\nEC3EYlsUiAo,2008.0,1,10,2011,Senior Skip Day,Seize the Day,tt0849470\nbmgWabhgTyI,2008.0,2,10,2011,\"War, Inc.\",Pop Culture Extravaganza,tt0884224\nj6IS8ftaiKg,2008.0,3,10,2011,\"War, Inc.\",Does Her Ass Make You Puke?,tt0884224\nEXmDxa_WlbU,2004.0,10,10,2011,Employee of the Month,Double Twist,tt0362590\nvU5Weh2-5Ow,2004.0,9,10,2011,Employee of the Month,\"I'm Dead, You're Invisible\",tt0362590\nsF6TDdShI-U,2008.0,1,10,2011,\"War, Inc.\",Sprechen Sie Deutsch?,tt0884224\nv9vgJaU3g1Q,2004.0,8,10,2011,Employee of the Month,David Saves the Day,tt0362590\n_x4ZoZAzlL4,2004.0,7,10,2011,Employee of the Month,David's Rant,tt0362590\ndrdEb-EYhHU,2004.0,4,10,2011,Employee of the Month,Whisper the Prostitute,tt0362590\njYLZsEioFig,2009.0,10,10,2011,Ninja,Final Showdown,tt1186367\npGeODfpFpUQ,2009.0,9,10,2011,Ninja,The Ring of Brothers,tt1186367\nn9r_Sd0cy6Y,2004.0,6,10,2011,Employee of the Month,David Snaps,tt0362590\nE7kK38uDEeo,2009.0,8,10,2011,Ninja,Rooftop Battle,tt1186367\nGh3l6sVwMlI,2004.0,1,10,2011,Employee of the Month,\"You're Fired, Deal With It\",tt0362590\nEW4_qWWvxfg,2009.0,6,10,2011,Ninja,Subway Fight,tt1186367\n3eGHDodwIZI,2004.0,3,10,2011,Employee of the Month,It's Over,tt0362590\ncKFA0tZIc5w,2009.0,7,10,2011,Ninja,Police Station Infiltration,tt1186367\nu82elZ1sGVk,2009.0,4,10,2011,Ninja,Where's the Box?,tt1186367\nKQOWuUy-7qE,2002.0,6,10,2011,8 Mile,The Lunch Truck Scene,tt0298203\nuMb3tldMyn0,2002.0,3,10,2011,8 Mile,You're Gonna Be Great Scene,tt0298203\nDHMF-bVxlkc,2002.0,1,10,2011,8 Mile,Rabbit Battles Lil' Tic Scene,tt0298203\n8bQQIy5TKZE,1997.0,5,10,2011,Dante's Peak,Going for Grandma,tt0118928\ntRT1ASnVfmo,2009.0,5,10,2011,Ninja,Ambush,tt1186367\nAWMxhZbiXLc,1991.0,6,10,2011,Fried Green Tomatoes,Frank Intrudes on Ruth,tt0101921\n4LaL9XB_Cx4,1991.0,3,10,2011,Fried Green Tomatoes,The Best Birthday,tt0101921\nw9pEL5BVnH0,2004.0,10,10,2011,Stateside,You Don't Fix Her,tt0339727\n3RWATaK6rC8,2004.0,9,10,2011,Stateside,Tired of Saying Goodbye,tt0339727\nOwBlTJrvL8Y,2009.0,3,10,2011,Ninja,Masazuka's Revenge,tt1186367\nSn25NmBKxSU,2009.0,2,10,2011,Ninja,Expelled,tt1186367\ns-DcMXlInkU,1992.0,3,8,2011,Guncrazy,Target Practice.,tt0104377\nX9f_YUaQGWw,1992.0,4,8,2011,Guncrazy,Lovin' and Gunning,tt0104377\nuwstRxD2BkA,2004.0,8,10,2011,Stateside,Dori's Song,tt0339727\nmQ13lRBge64,2009.0,1,10,2011,Ninja,The Yoroi Bitsu,tt1186367\npDv-C_TpyG0,2004.0,7,10,2011,Stateside,\"Globa, Your Pet Name\",tt0339727\nidr40IexHQw,2004.0,6,10,2011,Stateside,Are You My Buck?,tt0339727\n_OabFZytcp8,1992.0,1,8,2011,Guncrazy,Revenge on Raping Rooney,tt0104377\nV5B75zKswc8,2004.0,5,10,2011,Stateside,Manic Pixie Dream Girl,tt0339727\nvgEI-Zu4GQE,1992.0,6,8,2011,Guncrazy,Cop Killers,tt0104377\n3fLWNvP8V98,1992.0,5,8,2011,Guncrazy,Dark Secrets,tt0104377\nKcG5AQMRFVU,2004.0,4,10,2011,Stateside,Do You Want to be Men?,tt0339727\nZ41Lvaw_W6E,2006.0,10,10,2011,Caffeine,I'm Gonna Miss You,tt0460732\nMOJFi9-64Qw,2006.0,9,10,2011,Caffeine,What's That Terrible Smell?,tt0460732\nILwsJ3_o4es,2004.0,3,10,2011,Stateside,Squeeze That Trigger Finger,tt0339727\ns4iqKjufJe4,2004.0,2,10,2011,Stateside,Fathers & Mothers,tt0339727\n4lzhxfuOW-A,1991.0,1,10,2011,Fried Green Tomatoes,Buddy's Accident,tt0101921\nAjeO7aL1efU,1973.0,4,8,2011,High Plains Drifter,Target Practice.,tt0068699\nfWLdsqhYVxM,2000.0,1,10,2011,Bring It On,We Are Cheerleaders!,tt0204946\nmVbGpzsuNjE,1989.0,8,10,2011,Fletch Lives,\"T'boo Ted, Hemorrhoid Sufferer\",tt0097366\nn_c7JtDNNUo,1997.0,7,10,2011,Dante's Peak,The Dam Breaks,tt0118928\nn57MunvVpIU,1992.0,8,8,2011,Guncrazy,Last Stand,tt0104377\nlfrEnzxJFps,1992.0,7,8,2011,Guncrazy,Siege on the House,tt0104377\nhXCnYkU0Xy8,2006.0,8,10,2011,Caffeine,Put the Gun Down,tt0460732\n09iu9EiAtKA,2006.0,7,10,2011,Caffeine,Annoying Customer,tt0460732\nqgE9Lbwyzc0,2004.0,1,10,2011,Stateside,Catholic School,tt0339727\n2cSY9R-ka5o,2006.0,6,10,2011,Caffeine,Pervert!,tt0460732\nd2vcACp2hNw,2006.0,4,10,2011,Caffeine,Smokin' in the Boys Room,tt0460732\na4-FtMD0_sk,2006.0,5,10,2011,Caffeine,There's No Prancing,tt0460732\nQ7w2V95g5ew,2007.0,2,10,2011,King of California,Naked Chinese Guys,tt0388182\nA0FU6cYM9Vc,2007.0,8,10,2011,King of California,Jumping Into Raw Sewage,tt0388182\nbOPnZZMObXU,2006.0,3,10,2011,Caffeine,It Was Only Sex,tt0460732\n3nRy9hw7tr0,2006.0,2,10,2011,Caffeine,Recognize That Bird?,tt0460732\n5DefW3MeD_c,2007.0,1,10,2011,King of California,Welcome to McDonald's,tt0388182\nn_6sNnucN9k,2006.0,1,10,2011,Caffeine,Smell That,tt0460732\nzP0dxHW41kg,2005.0,9,10,2011,The Amateurs,Highs & Lows,tt0405163\nRr_zj8D511s,2005.0,10,10,2011,The Amateurs,Moose the Ass Master,tt0405163\n-fJwmmnPHok,2007.0,10,10,2011,King of California,How California Got It's Name,tt0388182\n1eH4YUzgfN4,2007.0,6,10,2011,King of California,They're Swingers,tt0388182\nqSU0iCmocCE,2006.0,3,10,2011,Irresistible,You're Delirious,tt0448564\nVIp_DOwafcg,2007.0,7,10,2011,King of California,Swinging BBQ,tt0388182\n38PbAk_SMdo,1989.0,5,10,2011,Fletch Lives,Microscopic Termites,tt0097366\nhsBtuhWw7RM,1989.0,2,10,2011,Fletch Lives,Plantation Dreams,tt0097366\nCqgXhXx-EAk,2003.0,5,10,2011,Seabiscuit,A Real Longshot,tt0329575\nsYEGcfDCysI,2004.0,10,11,2011,Eternal Sunshine of the Spotless Mind,Joel's Tape,tt0338013\nk1z5PejkIyY,1989.0,4,10,2011,Fletch Lives,Klan Problems,tt0097366\nAOiL4JRqh7c,2003.0,7,10,2011,Seabiscuit,Winning Streak,tt0329575\nct9y-srjYjk,2007.0,5,10,2011,King of California,Pawning the Bass,tt0388182\nAdiEXXKIcpM,2008.0,10,10,2011,Transsiberian,Train Collision,tt0800241\nmuBDF7g_mXY,2007.0,4,10,2011,King of California,X Marks the Spot,tt0388182\n9Xy3PgufXHI,2008.0,9,10,2011,Transsiberian,Stealing a Train,tt0800241\nIHDv7SriHB4,2008.0,3,10,2011,Transsiberian,I Can't Do This,tt0800241\nQ3QqG1UavAU,2007.0,3,10,2011,King of California,Beautiful Hazel Eyes,tt0388182\ngL7zD3RjgTg,2008.0,8,10,2011,Transsiberian,The Torture of Abby,tt0800241\nS63g8N9Wb5c,2006.0,1,10,2011,Irresistible,Mara Confides in Sophie,tt0448564\njmCn-jfg8Jk,2008.0,7,10,2011,Transsiberian,Where Is Carlos?,tt0800241\n-a0vqBmrAh0,2006.0,4,10,2011,Irresistible,You Lied to Me,tt0448564\nOa1LpwUBNAA,2008.0,6,10,2011,Transsiberian,Truncated Train,tt0800241\ntdmGoIYtHzg,2006.0,10,10,2011,Irresistible,A New Identity,tt0448564\nAow66vqHkmU,2008.0,5,10,2011,Transsiberian,Caught With Heroin,tt0800241\narbY3Yvs_Sc,2008.0,4,10,2011,Transsiberian,Destroying Evidence,tt0800241\nLNIKYmO7noI,2006.0,9,10,2011,Irresistible,I Won't Ever Leave You Again,tt0448564\nDGhV02r8Vq4,2006.0,8,10,2011,Irresistible,Sophie and Mara Face Off,tt0448564\nl_nlMehIAqk,2006.0,7,10,2011,Irresistible,Sophie's Discovery,tt0448564\nMFx343hujgA,2006.0,6,10,2011,Irresistible,Locked in the Basement,tt0448564\nPBXIOvTSzao,2008.0,2,10,2011,Transsiberian,Marital Problems,tt0800241\nCUJJdnMG7VU,2008.0,1,10,2011,Transsiberian,Angels and Demons,tt0800241\ndpAoVOU-q60,2004.0,7,11,2011,Eternal Sunshine of the Spotless Mind,The Day We Met,tt0338013\nN1xvQ7iLD0I,2003.0,1,10,2011,Seabiscuit,The History of,tt0329575\nv9kQdDFUWuk,2004.0,5,11,2011,Eternal Sunshine of the Spotless Mind,I've Loved You For a Long Time,tt0338013\n3lX50Lh2Iec,2004.0,3,11,2011,Eternal Sunshine of the Spotless Mind,It's All Falling Apart,tt0338013\nClBUr1FFo4U,2003.0,5,10,2011,Gacy: The Crawl Space,Car Transaction,tt0330181\n5F8dAQs8Vo4,2006.0,2,10,2011,Irresistible,Wasp Attack,tt0448564\na_OuIUbxu6U,2009.0,10,10,2011,Infestation,Bye Bye Bugs,tt1020543\ny6daxZDW37Y,2009.0,9,10,2011,Infestation,The Queen Is Pissed,tt1020543\nCnT7g2Dit2A,2003.0,9,10,2011,Gacy: The Crawl Space,How It All Went Down,tt0330181\nfD1FCHmu2as,2003.0,10,10,2011,Gacy: The Crawl Space,\"\"\"Kiss My Ass!\"\"\",tt0330181\nAQnQ6irZyFk,2006.0,5,10,2011,Irresistible,You're Obsessed With Her!,tt0448564\nNAymJ-WVGOI,2003.0,8,10,2011,Gacy: The Crawl Space,Voices,tt0330181\nptj6u-cdPEM,2003.0,7,10,2011,Gacy: The Crawl Space,Person of Interest,tt0330181\nso4D0cpOaUs,2003.0,6,10,2011,Gacy: The Crawl Space,Home Movies,tt0330181\nf7oHNrQzfis,2009.0,6,10,2011,Infestation,The Swarm Attacks,tt1020543\nEmRlXmyl54I,2007.0,7,10,2011,Cherry Crush,Blackmail,tt0473464\ngs_g4ai4m3Q,2009.0,7,10,2011,Infestation,Al Mutates,tt1020543\ntTtKhD_s3mA,2003.0,4,10,2011,Gacy: The Crawl Space,New Tenant,tt0330181\nyjFU7KJH8AY,2003.0,3,10,2011,Gacy: The Crawl Space,Wanna Get High?,tt0330181\nrGw2mX72ytQ,2007.0,10,10,2011,Cherry Crush,The Only Way Out,tt0473464\nFjb55wq2xuI,2009.0,5,10,2011,Infestation,I'm Really Sorry,tt1020543\niNqWC_4LooU,2009.0,3,10,2011,Infestation,First Impressions,tt1020543\nLlUWLkrBL_Y,2003.0,2,10,2011,Gacy: The Crawl Space,You Know How Much I Hate Homos!,tt0330181\nEFmvTRmRtms,2004.0,4,10,2011,Chrystal,Make the Pain Go Away,tt0362506\nSojaL9M5Pqs,1944.0,5,9,2011,Double Indemnity,Keyes Smells a Murder,tt0036775\n-r_jjQ_idz8,1944.0,9,9,2011,Double Indemnity,I Love You Too,tt0036775\nKPpwiCStA54,1989.0,10,10,2011,The 'burbs,Do Not Mess With Suburbanites,tt0096734\n4Os7yk5rXtY,2003.0,10,10,2011,Seabiscuit,He Fixed Us,tt0329575\nPn4mA5BIzxg,2009.0,2,10,2011,Infestation,Big Bad Bugs,tt1020543\n8KjvR8FpYaQ,2007.0,6,10,2011,Cherry Crush,Third Degree,tt0473464\nh75sq4lELLU,2004.0,3,10,2011,Chrystal,Am I Still Your Husband?,tt0362506\ntUmKlW2VmKo,2007.0,1,10,2011,Cherry Crush,The Awakening,tt0473464\nWUJNkDE4d98,2007.0,5,10,2011,Cherry Crush,Deadly Confrontation,tt0473464\nmpMweFgS2cg,2004.0,10,10,2011,Chrystal,The Cops Come for Joe,tt0362506\nL5-JXPcM3RQ,2003.0,5,10,2011,Shade,Maybe I Oughta Retire,tt0323939\nIFbKYqUofRs,2010.0,1,10,2011,Dead Awake,Stages of Grief,tt1501652\n8CsWUwcJgHA,2001.0,6,10,2011,Harvard Man,Tripping in a Car,tt0242508\ntu-cxDG2mW8,1990.0,9,10,2011,Back to the Future Part 3,The Time Machine Is Destroyed,tt0099088\npm7LihLP7kQ,1992.0,3,9,2011,Sneakers,Private Investigator,tt0105435\nkearXmroxUM,1985.0,6,10,2011,Mask,A Hooker for Rocky,tt0089560\np1lnXM7l2_g,1984.0,3,10,2011,Firestarter,Burning Mommy,tt0087262\nF5bAa6gFvLs,1992.0,4,9,2011,Sneakers,No More Secrets,tt0105435\n3obteqT0VJU,1992.0,1,9,2011,Sneakers,Professional Bank Robber,tt0105435\noG5vsPJ5Tos,1992.0,2,9,2011,Sneakers,Defeating the Keypad,tt0105435\n0c-UIkfsk1U,1990.0,5,10,2011,Back to the Future Part 3,Nobody Calls Me Yellow,tt0099088\neq5NSAyQEtI,1984.0,10,10,2011,Sixteen Candles,Here Comes the Tipsy Bride,tt0088128\ndCRen85hQ7Q,1984.0,1,10,2011,Firestarter,The Experiment,tt0087262\nyo7C-Sp_-MI,1990.0,4,10,2011,Back to the Future Part 3,Marty the Marksman,tt0099088\nwEByIZn5qeU,1990.0,2,10,2011,Back to the Future Part 3,Moonwalk for Mad Dog,tt0099088\n63KOboifCig,1990.0,1,10,2011,Back to the Future Part 3,Indians in 1885,tt0099088\nhPmV9DBCrfQ,1984.0,2,10,2011,Firestarter,Hot Feet,tt0087262\nUv4YAx1nqDM,1984.0,7,10,2011,Sixteen Candles,Fresh Breath's a Priority in My Life,tt0088128\nFjh3TxOHCxE,1984.0,9,10,2011,Sixteen Candles,Drunk as a Skunk,tt0088128\nACiCfGoVIJA,1984.0,8,10,2011,Sixteen Candles,The Geek and the Panties,tt0088128\nFWvAYNw8r9o,1984.0,6,10,2011,Sixteen Candles,The Geek Dances,tt0088128\nJyJBz7Z2EWE,1984.0,5,10,2011,Sixteen Candles,Very Clever Dinner,tt0088128\nEhAiY3hTPpo,1984.0,4,10,2011,Sixteen Candles,\"What's Happening, Hot Stuff?\",tt0088128\nK_LGi3aiF7E,1995.0,5,9,2011,The Hunted,Casino Escape,tt0113360\nW3IgFbCSqSs,1995.0,7,9,2011,The Hunted,Takeda Refuses to Lose,tt0113360\nsOA84te9mAw,1992.0,2,10,2011,Death Becomes Her,Helen Pays Ernest a Visit,tt0104070\n3ZPlgOWbkcY,1985.0,6,10,2011,Brazil,Trust Me!,tt0088846\nojydQ3_FDqI,1962.0,2,10,2011,To Kill a Mockingbird,There's a Lot of Ugly Things in This World,tt0056592\nXFURgTgl0MY,1982.0,3,10,2011,Sophie's Choice,The Land of the Living,tt0084707\nfHmesxUDVz4,1933.0,6,10,2011,Duck Soup,I Was Gonna Ask for the Whole Wig,tt0023969\nEVlaur-kEds,1998.0,4,5,2011,You've Got Mail,What If,tt0128853\n3TA-GALQJfM,1998.0,2,5,2011,You've Got Mail,Nothing But a Suit,tt0128853\ntjsQP94DIfM,2003.0,3,10,2011,Honey,Raymond Gets a Haircut,tt0322589\nsdtIgE33BvQ,2005.0,3,6,2011,Wedding Crashers,Football With the Clearys,tt0396269\n1KbamNWEfdw,2005.0,4,6,2011,Wedding Crashers,A Very Powerful Man,tt0396269\n02A2a-aEvmI,1941.0,4,9,2011,Sullivan's Travels,Meeting the Girl,tt0034240\nmX5Vqy1ETgM,2010.0,5,-1,2011,Valentine's Day,I Wanted It To Be Magical,tt0817230\n8qohrMCMzLc,2010.0,2,-1,2011,Yogi Bear,I'm So Smart It Hurts,tt1302067\nqSE4dF_Feng,2010.0,2,-1,2011,Scott Pilgrim vs. the World,Seven Evil Exes,tt0446029\nt4zyH4BsmgQ,2010.0,8,-1,2011,The Book of Eli,I'll Show You Some Weapons,tt1037705\n8yX0E-XQcms,1998.0,1,5,2011,You've Got Mail,Very First Zinger,tt0128853\nyRPwDJWhqis,1998.0,3,5,2011,You've Got Mail,NY152,tt0128853\n2cjvwTzhG8g,1998.0,5,5,2011,You've Got Mail,I Wanted It To Be You,tt0128853\nJ0WkBVu2C38,2009.0,7,-1,2011,The Informant!,Kickbacks in Cash,tt1130080\nYnpzAImvPsc,2005.0,6,6,2011,Wedding Crashers,John Apologizes to Claire,tt0396269\nGhF060VmS1g,2003.0,1,9,2011,The Lord of the Rings: The Return of the King,My Precious,tt0167260\nAmd3bMqEdjs,2005.0,2,6,2011,Wedding Crashers,Lock It Up,tt0396269\n3kaShGPva2Q,2005.0,1,6,2011,Wedding Crashers,The Perils of Dating,tt0396269\nBu3n2LEcUbg,2009.0,4,10,2011,Infestation,\"Half-Man, Half-Bug\",tt1020543\nb3DNx3kLY58,2007.0,9,10,2011,Cherry Crush,Dead End,tt0473464\nv8YgSZAbKgQ,2007.0,8,10,2011,Cherry Crush,One Million Dollars,tt0473464\nccNvps_rac8,2003.0,1,10,2011,Gacy: The Crawl Space,\"Hit Me, Jerk Off\",tt0330181\nHJhNgjVydac,2007.0,3,10,2011,Cherry Crush,Photo Shoot,tt0473464\nyyYfKxW1T8Q,2007.0,2,10,2011,Cherry Crush,Lipstick Fetish,tt0473464\nWc2CaWm1Gno,2004.0,9,10,2011,Chrystal,Closure for Joe,tt0362506\n8nHwpjCIJqM,2009.0,1,10,2011,Infestation,Beetle Bully,tt1020543\nkt5pjPdRDVU,2004.0,6,10,2011,Chrystal,Snake's Sinister Plan,tt0362506\nF9ktw07IEr0,2004.0,8,10,2011,Chrystal,I've Been Waiting for Joe My Whole Life,tt0362506\nSL40LOsREzE,2004.0,7,10,2011,Chrystal,\"Heard, Not Seen\",tt0362506\nyAbQlHZz4tU,2008.0,7,10,2011,Day of the Dead,Killer Nose Bleed,tt0923671\nKMUDG7AOw1w,2004.0,5,10,2011,Chrystal,Get This Thing Outta Me,tt0362506\nCoHgpkuV1hU,2002.0,10,10,2011,Dog Soldiers,It's All Over Now,tt0280609\nEEGg9AZmHZ4,2002.0,1,8,2011,Ash Wednesday,A Sick Thing to Say,tt0280438\nP5ooU8rf1f0,2002.0,9,10,2011,Dog Soldiers,Last Stand,tt0280609\noEOsbgXpiNg,2004.0,2,10,2011,Chrystal,Recruiting Joe,tt0362506\n-nXBi-mtvR8,2000.0,5,10,2011,Ed Gein,What the Hell Are You Doing?,tt0230169\nbw0-q-wjSIM,2002.0,8,10,2011,Dog Soldiers,A Real Bitch,tt0280609\n_SVlezvh3zk,2000.0,8,10,2011,Ed Gein,Dancing in the Moonlight,tt0230169\nUaqCBqd8NcA,2002.0,7,10,2011,Dog Soldiers,The Transformation,tt0280609\nEVdo5BfJMCQ,2000.0,10,10,2011,Ed Gein,The Arrest,tt0230169\nJhtaGVmtcwU,2000.0,9,10,2011,Ed Gein,How You Liking That Gun Ed?,tt0230169\nqemi7V4jUjk,2002.0,6,10,2011,Dog Soldiers,Escape Attempt,tt0280609\nMYpqwTSpp_E,2007.0,9,9,2011,An American Crime,Murder in the First,tt0802948\nfuJceBJIp8k,2004.0,1,10,2011,Chrystal,Joe's a Badass,tt0362506\n5GlQJ1kKxMA,2000.0,4,10,2011,Ed Gein,Hussy Fantasy,tt0230169\n_Gm42rDEb38,2000.0,3,10,2011,Ed Gein,Henry's Accidental Death,tt0230169\nAZ_MUktgWxg,2000.0,6,10,2011,Ed Gein,Mary's Abduction,tt0230169\nWjm3qeQvGxs,2002.0,5,10,2011,Dog Soldiers,Under Siege,tt0280609\nZ0092DSphF0,2002.0,4,10,2011,Dog Soldiers,Don't Stare Back,tt0280609\nYhiy0ZHMyik,2007.0,8,9,2011,An American Crime,Escape from Bondage,tt0802948\niJsNpzHlrgs,2007.0,7,9,2011,An American Crime,Branding Sylvia,tt0802948\ncqeUgjPpCCM,2000.0,2,10,2011,Ed Gein,Vicious Jungle Headhunters,tt0230169\n-oWSoBQzQNA,2002.0,3,10,2011,Dog Soldiers,Close Call,tt0280609\nHtt0B7bZ4tI,2007.0,6,9,2011,An American Crime,You're All I've Got,tt0802948\nBlG0jGX34i8,2000.0,1,10,2011,Ed Gein,Model Babysitter,tt0230169\nQMDO-3fqU0c,2002.0,2,10,2011,Dog Soldiers,Impaled,tt0280609\nuHEG_fTDZss,2002.0,7,8,2011,Ash Wednesday,Back From the Dead,tt0280438\nc8pZIocR-lQ,2002.0,8,8,2011,Ash Wednesday,Face to Face,tt0280438\nzlRuCc0kYQ0,2007.0,5,9,2011,An American Crime,\"I Don't Know, Sir\",tt0802948\nn3TNGpjl-kM,2002.0,6,8,2011,Ash Wednesday,Spotted by the Mick,tt0280438\n32me3lMxEDU,2002.0,1,10,2011,Dog Soldiers,Camping Couple,tt0280609\nVy4OBSqz5dw,2003.0,1,10,2011,Shade,A Winner Every Time,tt0323939\n60Sc8RmA458,2003.0,7,10,2011,Shade,Some Things Are More Important Than Money,tt0323939\nwY6sZJKyxo8,2007.0,4,9,2011,An American Crime,Put It Up Her,tt0802948\neu2OiA65JOA,2007.0,3,9,2011,An American Crime,An Act of Cruelty,tt0802948\ncP95rCyLijI,2002.0,5,8,2011,Ash Wednesday,How Could You?,tt0280438\nJpYjN3cZR3U,2003.0,9,10,2011,Shade,The Outcome,tt0323939\ndKMVUS6TC2A,2002.0,4,8,2011,Ash Wednesday,Grace Finds Out the Truth,tt0280438\nlIOwxzY4M6s,2003.0,8,10,2011,Shade,It's Good to Have Friends,tt0323939\n_5UWCkgkSzA,2002.0,3,8,2011,Ash Wednesday,Hiding,tt0280438\nwrAksGY1TSk,2007.0,2,9,2011,An American Crime,She's Got It Coming,tt0802948\n3VgqDRrUIOo,2002.0,2,8,2011,Ash Wednesday,The Straight Arrow,tt0280438\nd_8TCN2wA7s,2003.0,4,10,2011,Shade,\"Dean \"\"The Dean\"\" Stevens\",tt0323939\n2XgWUoUe_lw,2003.0,6,10,2011,Shade,Bar Shootout,tt0323939\nmlpWVL2gHG4,2006.0,10,10,2011,Big Nothing,You Shot Me,tt0488085\nNy1Q4bR5dMc,2007.0,1,9,2011,An American Crime,Whipped for Nothing,tt0802948\nDfDQo7Gm8CI,2006.0,9,10,2011,Big Nothing,The Wyoming Widow,tt0488085\nf-ZCZ5BNloQ,2006.0,8,10,2011,Big Nothing,Special Agent Hippo,tt0488085\nkMjUZodyvtA,2008.0,10,10,2011,Day of the Dead,Flame On,tt0923671\nc0pmWNOt3fM,2003.0,2,10,2011,Shade,No Limit,tt0323939\n-aH-cLQqwHQ,2006.0,6,10,2011,Big Nothing,That Doesn't Suck,tt0488085\n-W2T5Gm7i74,2006.0,7,10,2011,Big Nothing,Detective Penelope,tt0488085\nZhzpLQbMNjQ,2006.0,5,10,2011,Big Nothing,Who the Hell Are You?,tt0488085\n1_NERqSdt9U,2006.0,1,10,2011,Big Nothing,\"Welcome to Hell, Dickhead\",tt0488085\nYBEUHTsxyXs,2008.0,9,10,2011,Day of the Dead,Underground,tt0923671\nPnjqfWEL6bc,2006.0,4,10,2011,Big Nothing,No Biggie,tt0488085\nfr_9D8OREfk,2006.0,3,10,2011,Big Nothing,I'd Arrest You,tt0488085\nLVt7Zvxk934,2006.0,2,10,2011,Big Nothing,Fired on the First Day,tt0488085\nYH7W2AR9b8w,2008.0,8,10,2011,Day of the Dead,Vegetarian Zombie,tt0923671\nXtadtlSUNQg,2002.0,4,10,2011,Ted Bundy,The One That Got Away,tt0284929\nFhAIXOkAUhY,2008.0,6,10,2011,Day of the Dead,Spears & Bullets,tt0923671\ncvvweP3N_f4,2002.0,3,10,2011,Ted Bundy,Pretty Girls,tt0284929\nOhYlQ6kSQFs,2004.0,8,10,2011,Unstoppable,We're on the Same Side,tt0349889\n2x5L2L4XZng,2008.0,4,10,2011,Day of the Dead,Captain Rhodes (The Other One),tt0923671\nPcRJie18fYs,2008.0,5,10,2011,Day of the Dead,Bitten,tt0923671\nk5kTx_bZznU,2008.0,3,10,2011,Day of the Dead,Hospital Massacre,tt0923671\nOH_cAf9RFSU,2009.0,10,10,2011,Triangle,Another Dead Bird,tt1187064\ny69ebASPg8A,2008.0,2,10,2011,Day of the Dead,Something's Happening,tt0923671\nekOi-hwWNoM,2008.0,1,10,2011,Day of the Dead,Overwhelmed Hospital,tt0923671\nH7H1eydzTCY,2009.0,8,10,2011,Triangle,Put Down the Gun,tt1187064\n1-G0Fxf9IYU,2009.0,9,10,2011,Triangle,Bad Mommy,tt1187064\nM_beJ-qJlQo,2009.0,7,10,2011,Triangle,Another Dead Sally,tt1187064\niyPGMUFQiW0,2009.0,6,10,2011,Triangle,Not Who You Think,tt1187064\nGK7IQ-raJOc,2009.0,5,10,2011,Triangle,A Copy of Myself,tt1187064\nw-4XyyU2w9g,2009.0,4,10,2011,Triangle,Who Are You?,tt1187064\nWa6au8A-3Zg,2009.0,1,10,2011,Triangle,Electrical Storm,tt1187064\nG_0o3NoEXJQ,2009.0,2,10,2011,Triangle,Trail of Blood,tt1187064\nEN8q8mJrAZY,2009.0,3,10,2011,Triangle,You Shot Him,tt1187064\nndrLDbtM-CY,2011.0,9,-1,2011,Something Borrowed,Sharing Secrets,tt0491152\numOy9nT4Wpw,2011.0,8,-1,2011,Something Borrowed,Do Something For Yourself,tt0491152\ndM6waznJ7No,2011.0,6,-1,2011,Something Borrowed,Push It Dance,tt0491152\nGhaxB8afkj0,2011.0,3,-1,2011,Something Borrowed,I'm Out of Here,tt0491152\n6svLqrJqoWk,2011.0,7,-1,2011,Something Borrowed,Nobody Knows Me Like You,tt0491152\nihyRhFcUVto,2011.0,5,-1,2011,Something Borrowed,Can I Come Up?,tt0491152\nfuOY4W9QFNI,2011.0,1,-1,2011,Something Borrowed,Ask Me Out,tt0491152\nDNC3OciAF3w,1974.0,2,10,2011,Blazing Saddles,Frontier Gibberish,tt0071230\nwp4tgWYqjyw,2011.0,2,-1,2011,Something Borrowed,Stop Staring,tt0491152\nt9P2B7NUPfM,1974.0,6,10,2011,Blazing Saddles,Mongo Comes to Town,tt0071230\nNzbhbetwYFU,1974.0,3,10,2011,Blazing Saddles,Harrumphing with the Governor,tt0071230\n4w36z7XnwOM,1974.0,1,10,2011,Blazing Saddles,Quicksand!,tt0071230\ns9JqbCH4aVw,1974.0,7,10,2011,Blazing Saddles,Lili Goes Black,tt0071230\nOwB1Fd-IeS4,1999.0,10,10,2011,Bangkok Dangerous,Factory Showdown,tt0263101\nDR91SIIPCkQ,2004.0,9,9,2011,September Tapes,Leave the American,tt0390468\n_DK3DYHAQvc,1999.0,9,10,2011,Bangkok Dangerous,Running and Gunning,tt0263101\nyE_JbyAR7qY,2004.0,8,9,2011,September Tapes,Take His Camera,tt0390468\nVN8DStEDHd0,1999.0,7,10,2011,Bangkok Dangerous,Get Ready to Die,tt0263101\nvWyTTJE081c,2004.0,7,9,2011,September Tapes,Night Raid,tt0390468\n5WuZvuZjk3o,1999.0,8,10,2011,Bangkok Dangerous,Mob Massacre,tt0263101\nUzBE29ENnjA,2004.0,6,9,2011,September Tapes,Warzone Pursuit,tt0390468\nzoK9i_LiB5s,2004.0,4,9,2011,September Tapes,Checkpoint Thieves,tt0390468\nFonBCrV4Fqs,2004.0,5,9,2011,September Tapes,Ambush,tt0390468\nTil9ScLdyv0,2004.0,3,9,2011,September Tapes,Buying Arms,tt0390468\ns0RwiqEDRbM,1999.0,6,10,2011,Bangkok Dangerous,Revenge Killing,tt0263101\nVgyyxiZGzNo,1999.0,5,10,2011,Bangkok Dangerous,Attempted Mugging,tt0263101\nMosezS_qfk4,2004.0,5,10,2011,My Date with Drew,Reenacting Brian's Encounter With Drew,tt0378407\nJlpBRPIgoIk,2004.0,2,9,2011,September Tapes,Blood on the Streets,tt0390468\nA8CNtor4BPA,2010.0,10,10,2011,Dead Awake,One More Chance,tt1501652\nCer8qtPJiaI,2004.0,1,9,2011,September Tapes,Anything Can Happen,tt0390468\nIGtoG5BnW_g,1999.0,4,10,2011,Bangkok Dangerous,Subway Hit,tt0263101\n-p3FtQtQ6q8,2010.0,9,10,2011,Dead Awake,Jesus Wept,tt1501652\nonD3Eppv3EQ,1999.0,3,10,2011,Bangkok Dangerous,Assassin Training,tt0263101\n6lzU26KS9yw,1999.0,2,10,2011,Bangkok Dangerous,Target Practice.,tt0263101\niOb_w3y2stg,2010.0,5,10,2011,Dead Awake,The Old Flame,tt1501652\nC8IBujBZjaE,2010.0,8,10,2011,Dead Awake,You Have Me,tt1501652\nnXqdGyqR82Y,2010.0,7,10,2011,Dead Awake,The Accident,tt1501652\n3gt4aiQrmb8,1999.0,1,10,2011,Bangkok Dangerous,Witness to a Hit,tt0263101\n5B5VRYzzz0M,2010.0,4,10,2011,Dead Awake,Guardian Angel,tt1501652\nh3Aam5h7qAA,2010.0,3,10,2011,Dead Awake,The Fake Funeral,tt1501652\n1qbYMSC8ggg,2006.0,10,10,2011,A Guide to Recognizing Your Saints,So Much to Say,tt0473488\nKuR_Z_vRD2Y,2006.0,7,10,2011,A Guide to Recognizing Your Saints,It's Time to Go,tt0473488\nVbw4I7BhEBk,2006.0,9,10,2011,A Guide to Recognizing Your Saints,Did You Love Me?,tt0473488\n_vjn86zTNVI,2006.0,8,10,2011,A Guide to Recognizing Your Saints,You Want It Straight?,tt0473488\nhUz7Nan8kpM,2006.0,6,10,2011,A Guide to Recognizing Your Saints,Dito Takes a Beating,tt0473488\nQSWGpf7NQ7k,2002.0,10,10,2011,Ted Bundy,Who is ?,tt0284929\nsY1NGOTGpUs,2006.0,5,10,2011,A Guide to Recognizing Your Saints,Laurie's Corner,tt0473488\nU0sp1K-D1RE,2002.0,8,10,2011,Ted Bundy,Prison Life,tt0284929\n6OofgRuJnIE,2006.0,4,10,2011,A Guide to Recognizing Your Saints,You're Not Going Anywhere,tt0473488\nn5YGsbi7BNw,2002.0,7,10,2011,Ted Bundy,Bundy's Escape,tt0284929\n2eqWGVKtm5w,2006.0,3,10,2011,A Guide to Recognizing Your Saints,Reaper's Brother,tt0473488\njnRIqedIizM,2004.0,3,10,2011,Unstoppable,Cocky Little Prick,tt0349889\nShqQo3JOdew,2006.0,2,10,2011,A Guide to Recognizing Your Saints,Riding the Subway,tt0473488\nfBkFWhWXWuA,2002.0,6,10,2011,Ted Bundy,\"No More Lee, Honey\",tt0284929\ny8Jqk1kPtQI,2006.0,1,10,2011,A Guide to Recognizing Your Saints,Monty's Kitchen,tt0473488\neswi0L8WNzs,2002.0,5,10,2011,Ted Bundy,First Arrest,tt0284929\ncZP3u5XAeHk,2004.0,2,10,2011,Unstoppable,A Prohibited Narcotic,tt0349889\n-uU3MTcwg_s,2004.0,9,10,2011,Unstoppable,Dean's Hallucination,tt0349889\n3sDL4LJUc_c,2004.0,1,10,2011,Unstoppable,Mistaken for the Wrong Guy,tt0349889\nm9Wh66FXZJQ,1933.0,9,10,2011,Duck Soup,This Means War!,tt0023969\nAO9pxLEHVfI,2004.0,10,10,2011,Unstoppable,The Antidote,tt0349889\nhqVbOSEsJNo,1982.0,6,10,2011,The Thing,Tainted Blood Sample,tt0084787\nQQwJyX56Z6o,2002.0,2,10,2011,Ted Bundy,The Caller,tt0284929\n5mEsXz-Bpog,1933.0,10,10,2011,Duck Soup,To War,tt0023969\nq9OUIk4Oaq4,1933.0,4,10,2011,Duck Soup,The Lemonade Vendor,tt0023969\nqSabiG8q8-k,1933.0,1,10,2011,Duck Soup,Working His Magic,tt0023969\nJjIXwkX1e48,1982.0,5,10,2011,The Thing,Chest Defibrillation,tt0084787\nP4KH_RSZyl8,2010.0,4,-1,2011,Hereafter,The Experience of Death,tt1212419\nAFk0BnxndMA,1933.0,5,10,2011,Duck Soup,Without a Word,tt0023969\nq-1DREuXwjc,2010.0,3,-1,2011,Hereafter,Can I Ask You a Question?,tt1212419\njJze-x__3o8,2002.0,1,10,2011,Ted Bundy,Peeping Tom,tt0284929\nuIJDIumyakw,2004.0,7,10,2011,Unstoppable,Fuel Truck Chase,tt0349889\nmlAtuy15iIM,2004.0,6,10,2011,Unstoppable,Dean Escapes the Asylum,tt0349889\nMflY-IYl0Bk,2001.0,10,10,2011,Harvard Man,Everything's Okay,tt0242508\nUtt18i8DSSg,2004.0,5,10,2011,Unstoppable,Reliving a Memory,tt0349889\nPSe5x7y-kVY,2001.0,9,10,2011,Harvard Man,The LSD Doctor,tt0242508\ncx_45Z56ZQA,2001.0,8,10,2011,Harvard Man,The Longest Acid Trip,tt0242508\nNF-httKm7RU,2002.0,5,10,2011,Dahmer,Knife Shopping,tt0285728\nKThMkPl6q5A,2004.0,4,10,2011,Unstoppable,You're F***ing With My Family,tt0349889\n0j4aiJowI8I,2002.0,6,10,2011,Dahmer,The Way We Are,tt0285728\nlgwJVRwJn3k,2001.0,5,10,2011,Harvard Man,Tripping on a Plane,tt0242508\n2GXdTkYEPm4,2002.0,2,10,2011,Dahmer,Close Call,tt0285728\naqbP3OofrHU,2002.0,9,10,2011,Dahmer,Pulled Over,tt0285728\nS32b64ns3fM,2001.0,4,10,2011,Harvard Man,Throwing the Harvard Game,tt0242508\nq2nChVvlZ8w,2002.0,10,10,2011,Dahmer,Seduction,tt0285728\nk7GcyfPypGY,2002.0,8,10,2011,Dahmer,Harbored Anger,tt0285728\n2V0WuzhmAjY,2002.0,7,10,2011,Dahmer,Just Playing,tt0285728\nDdnox9DoK88,2005.0,9,10,2011,The Proposition,No More,tt0421238\nNSsW9EXadik,2005.0,8,10,2011,The Proposition,Jail Break,tt0421238\nHEGucJf9y-w,2005.0,7,10,2011,The Proposition,\"Life Is Very Sweet, Brother\",tt0421238\nquzMffZuuCQ,2005.0,10,10,2011,The Proposition,\"You Got Me, Charlie\",tt0421238\nwLaXJWcrgzM,2005.0,6,10,2011,The Proposition,Martha's Dream,tt0421238\nlWTyXHZu09w,2005.0,5,10,2011,The Proposition,Your Brother's Come to Kill You,tt0421238\nPT3GmTvF9t4,2002.0,3,10,2011,Dahmer,No Big Deal,tt0285728\n0642x0-QL0Y,2002.0,4,10,2011,Dahmer,The Box,tt0285728\nJbI9xgX8H-8,2003.0,10,10,2011,Party Monster,Disco Bloodbath,tt0320244\n0SXgXYo-Vk8,2003.0,9,10,2011,Party Monster,Rat's Revelation,tt0320244\nsh8VHDoEDik,2003.0,8,10,2011,Party Monster,Promise,tt0320244\nTg_qXTVaZSE,2002.0,1,10,2011,Dahmer,Drilled,tt0285728\nEOCgXlRkmKk,2003.0,7,10,2011,Party Monster,Dallas,tt0320244\nvvWyQxD3ZmI,2003.0,6,10,2011,Party Monster,Club Kids,tt0320244\n4VfWFRMVM_M,2003.0,5,10,2011,Party Monster,Junkie Boyfriend,tt0320244\np0WBxRosKq4,2003.0,2,10,2011,Party Monster,How to be Fabulous,tt0320244\nQRHGpNm96gY,2003.0,4,10,2011,Party Monster,Party Truck,tt0320244\nj1CC9YKFpXA,2003.0,3,10,2011,Party Monster,Holidays,tt0320244\nxEQ_h9zO4II,2005.0,9,10,2011,Wassup Rockers,Kico Lands a Cougar,tt0413466\njC5O4or6dB8,2005.0,1,10,2011,Wassup Rockers,Meet Jonathan,tt0413466\nG7GXq4M7SuI,2003.0,1,10,2011,Party Monster,Michael's Story,tt0320244\nFBpPaF5Kg_Y,2005.0,5,10,2011,Wassup Rockers,Preppy Chicks Dig the Rockers,tt0413466\nmeBbz4hop-w,2005.0,6,10,2011,Wassup Rockers,We're All the Same,tt0413466\neOgMuHykBAA,2005.0,8,10,2011,Wassup Rockers,We Left a Homie,tt0413466\nlrvMjEmOFhE,2005.0,3,10,2011,Wassup Rockers,My Life is S***,tt0413466\nowJTZiiUoUQ,2005.0,4,10,2011,Wassup Rockers,Suicide Attempt,tt0413466\nnU1jeDXloRs,2000.0,5,10,2011,Ginger Snaps,Spreading the Disease,tt0210070\nA7UHJpZ4Jrw,2000.0,10,10,2011,Ginger Snaps,Sister to Sister,tt0210070\nWmu-F4mJ-eI,2000.0,9,10,2011,Ginger Snaps,Bonding,tt0210070\n4CgNb8LRtng,2000.0,6,10,2011,Ginger Snaps,Hiding the Corpse,tt0210070\nGwYqUTPQT-w,2000.0,8,10,2011,Ginger Snaps,Outside the Closet,tt0210070\nEMga19u0TaA,2000.0,7,10,2011,Ginger Snaps,Final Transformation,tt0210070\n11TGIP2Kouk,2000.0,3,10,2011,Ginger Snaps,Just Cramps,tt0210070\nFrisJJ0G4N8,2000.0,4,10,2011,Ginger Snaps,The School Nurse,tt0210070\nYpkqDHGJzJ8,2007.0,6,10,2011,Smiley Face,Three Little Pig Sausage,tt0780608\npnqh4SI-E6c,2007.0,10,10,2011,Smiley Face,What Was She Thinking?,tt0780608\noZrpLQFH960,2000.0,2,10,2011,Ginger Snaps,Lycanthrope Attack,tt0210070\nHiMImmy3l5o,2007.0,9,10,2011,Smiley Face,Ferris Wheel Ride,tt0780608\nO73Q7jd3VkA,2007.0,8,10,2011,Smiley Face,33rd Annual Venice Hemp Fest,tt0780608\nca_Ac4lF2Vk,2007.0,7,10,2011,Smiley Face,F*** Me Mikey!,tt0780608\nViZ5qXg5xQA,2007.0,4,10,2011,Smiley Face,\"Hello, Smiley\",tt0780608\nbLqwpb4eDeA,2011.0,6,-1,2011,Born to Be Wild,Elephant Bedtime,tt1680059\na2Nw8Hen7Bo,2007.0,5,10,2011,Smiley Face,Brevin Ericson,tt0780608\nS7C-PTowNSU,2011.0,4,-1,2011,Born to Be Wild,The Lucky Ones,tt1680059\nRpatQWLKfAE,2011.0,3,-1,2011,Born to Be Wild,Elephant Sunscreen,tt1680059\nXZT1cB8KU_I,2007.0,3,10,2011,Smiley Face,Audition,tt0780608\nugXeKGSjvKw,2011.0,2,-1,2011,Born to Be Wild,Orangutan Release,tt1680059\ndfFFgV624TA,2011.0,5,-1,2011,Born to Be Wild,Elephant Nursery,tt1680059\ngXv4mbv8-cE,2011.0,1,-1,2011,Born to Be Wild,Orangutan Washing,tt1680059\nW1Ipb0WpoGI,2005.0,4,10,2011,The Proposition,The Flogging,tt0421238\nSAo2EHsCPn8,2007.0,1,10,2011,Smiley Face,A Conversation with Roscoe Lee Browne,tt0780608\nVWELyY3orwI,2007.0,2,10,2011,Smiley Face,Steve the Roommate,tt0780608\n7L2NhtAzHYw,2005.0,2,10,2011,The Proposition,A Fortune Hunter,tt0421238\n_DgOdOLNiaI,2005.0,1,10,2011,The Proposition,,tt0421238\nsolCkKfZObE,2010.0,6,10,2011,The Penthouse,Roommate Auditions,tt0929618\nmIM8G1SoJAc,2010.0,10,10,2011,The Penthouse,You Had Fun,tt0929618\nQ8IqpcS31Xo,2010.0,8,10,2011,The Penthouse,The Invisible Girl,tt0929618\ntbcg51lQx8Y,2010.0,9,10,2011,The Penthouse,How Could You?,tt0929618\nJgIJDix2oy0,2010.0,7,10,2011,The Penthouse,Lunch With the Parents,tt0929618\n_3EcvKXH9zY,2011.0,7,-1,2011,Sucker Punch,First Five Minutes,tt0978764\n3ZuQQQTv48I,2010.0,4,10,2011,The Penthouse,Male Nurse,tt0929618\n_mVMG_Rbk5w,2010.0,2,10,2011,The Penthouse,Awkward and Boyish,tt0929618\n6IbECSkNmiY,2010.0,5,10,2011,The Penthouse,Impossibly Far Away,tt0929618\n0eBehC1Ky8c,2010.0,3,10,2011,The Penthouse,A Lying Agent,tt0929618\nZf_Dt4lo_3c,2009.0,10,10,2011,Labor Pains,I'm So Over This,tt1231287\nDdet2d9EtTY,2009.0,9,10,2011,Labor Pains,Pop Goes the Baby,tt1231287\nxLL3-fP9NAw,2009.0,8,10,2011,Labor Pains,Baby's Out of the Bag,tt1231287\n2UCoVnTjV4k,2009.0,7,10,2011,Labor Pains,Surprise Baby Shower,tt1231287\nl29oT_LWdfM,2009.0,6,10,2011,Labor Pains,Coffee Date,tt1231287\nU0Sk5u00YHs,2009.0,5,10,2011,Labor Pains,Pregnancy Focus Group,tt1231287\nROO66Mi8gTY,2010.0,1,10,2011,The Penthouse,Beware of Coyotes,tt0929618\nDOtd-mykOhE,2009.0,4,10,2011,Labor Pains,Birthing Class,tt1231287\nzDYk7hXvQ0Y,2009.0,2,10,2011,Labor Pains,Can't Fire a Pregnant Woman,tt1231287\ndOObdbjoJ4c,2009.0,3,10,2011,Labor Pains,Pregnant and Engaged,tt1231287\nSmLwnNTfwHI,2009.0,1,10,2011,Labor Pains,Sick Dog,tt1231287\nb5jr8NxFS-E,2004.0,10,10,2011,Trauma,She's Dead,tt0363143\nVT2pepdAtJo,2004.0,9,10,2011,Trauma,Trust Me,tt0363143\n3JO11PBdCAo,2009.0,10,10,2011,Deadline,Alice Lives,tt1242618\nIFTHxZ22woc,2009.0,8,10,2011,Deadline,The Burial,tt1242618\nBX91rzHyMv0,2009.0,7,10,2011,Deadline,The Drowning,tt1242618\nXi3ymXEMyjU,2009.0,6,10,2011,Deadline,You're Not Leaving,tt1242618\nH1SvA7bU0oM,2009.0,9,10,2011,Deadline,David and Lucy Return,tt1242618\nIqqznoT4Jb0,2004.0,8,10,2011,Trauma,What's Real,tt0363143\n0a_HvCBSa1I,2009.0,5,10,2011,Deadline,I Belong to You,tt1242618\nutKueh6Yj9Y,2009.0,4,10,2011,Deadline,Someone Died Here,tt1242618\nN5i6B7WyZQE,2004.0,7,10,2011,Trauma,Nightmares,tt0363143\nFDxm9DsmBk8,2009.0,1,10,2011,Deadline,Old Houses are Like People,tt1242618\n1Oge9qUat-I,2004.0,6,10,2011,Trauma,Grief,tt0363143\nij3HAftwQQ0,2011.0,6,-1,2011,Arthur,I Don't Date Boys Who Have Nannies,tt1334512\nB6E_rp80QMc,2011.0,7,-1,2011,Arthur,A Harmless Game of Dress Up,tt1334512\n2NnR3gblKYI,2011.0,3,-1,2011,Arthur,A Radiant Stranger,tt1334512\nXsdRpsG43WI,2011.0,4,-1,2011,Arthur,\"Till Death Do Us Part, As Scheduled\",tt1334512\n5dA3DePirsE,1982.0,8,10,2011,Blade Runner,Deckard vs. Batty,tt0083658\n-3mo5CqjvWs,2011.0,2,-1,2011,Arthur,Nothing in Common,tt1334512\neX3czjlDO5w,2011.0,5,-1,2011,Arthur,I Could Get a Job,tt1334512\n5lPsmFSNWc4,1982.0,10,10,2011,Blade Runner,The Ending: A Replicant?,tt0083658\nw_tQqymkPdA,2011.0,1,-1,2011,Arthur,Have You Ever Been in Love?,tt1334512\ne9t5ikxjAQ4,1982.0,6,10,2011,Blade Runner,Deckard vs. Pris,tt0083658\n__yiHzuT3ig,2004.0,5,10,2011,Trauma,Receiving,tt0363143\nKcJs4qJPQ_M,1982.0,5,10,2011,Blade Runner,The Prodigal Son,tt0083658\nyWPyRSURYFQ,1982.0,1,10,2011,Blade Runner,She's a Replicant,tt0083658\nmvBtzXZWWG8,2004.0,4,10,2011,Trauma,Arachnophobia,tt0363143\nFuXl-Pmr5kc,2004.0,3,10,2011,Trauma,Entomology,tt0363143\n0NtiiKd1HnA,2004.0,1,10,2011,Trauma,You Again,tt0363143\nIlIhWS7-x1Y,2003.0,8,10,2011,King of the Ants,Nothing You Can Say,tt0328031\nBl6Wk5M1vjk,2004.0,2,10,2011,Trauma,The Medium,tt0363143\nCaaKsf8zOyA,2003.0,10,10,2011,King of the Ants,That's What I Do,tt0328031\nB2TqswpzDlg,2003.0,9,10,2011,King of the Ants,Sizing Duke Up,tt0328031\ng4-0zhNcrnQ,2003.0,6,10,2011,King of the Ants,Losing His Mind,tt0328031\n_MlQzLtPA0Q,2003.0,7,10,2011,King of the Ants,The Escape,tt0328031\nPzocCTnSU3w,2003.0,4,10,2011,King of the Ants,A F***ing Insect,tt0328031\nkqVqHxVJCaA,2003.0,1,10,2011,King of the Ants,Immoral,tt0328031\nVZFMY9mYu4Q,2003.0,3,10,2011,King of the Ants,Not Quite Dead,tt0328031\nFNaOG7EN5jE,2003.0,5,10,2011,King of the Ants,The First Blow,tt0328031\nbgCUriRuVx8,2009.0,9,10,2011,\"My Son, My Son, What Have Ye Done\",Following an Inner Voice,tt1233219\nLt3HDRrYt9E,2009.0,10,10,2011,\"My Son, My Son, What Have Ye Done\",Flamingo Hostages,tt1233219\na6kk9d5OQ-c,2009.0,8,10,2011,\"My Son, My Son, What Have Ye Done\",The World Stares at Brad,tt1233219\nGO4D8MjC6xU,2003.0,2,10,2011,King of the Ants,Conditions For Murder,tt0328031\nvHIbZ0uOAL4,2009.0,6,10,2011,\"My Son, My Son, What Have Ye Done\",Acting a Role,tt1233219\nGTv9dFFHtW4,2009.0,5,10,2011,\"My Son, My Son, What Have Ye Done\",Uncle Ted's Sword,tt1233219\n1zOSmScTr_w,2009.0,4,10,2011,\"My Son, My Son, What Have Ye Done\",You Love Jell-O,tt1233219\ngyUrAK47OY4,2009.0,2,10,2011,\"My Son, My Son, What Have Ye Done\",God Is Here!,tt1233219\nczIb_WZRk-U,2009.0,3,10,2011,\"My Son, My Son, What Have Ye Done\",Call Me Farouk,tt1233219\nXmhfuDf1hZI,2009.0,7,10,2011,\"My Son, My Son, What Have Ye Done\",Disturbing the Play,tt1233219\nzX2LRszGCro,2009.0,1,10,2011,\"My Son, My Son, What Have Ye Done\",Cops and Criminals,tt1233219\nspwoWkSEmsE,2011.0,5,-1,2011,Sucker Punch,Bad Eggs,tt0978764\noJFKZnePh3k,2011.0,4,-1,2011,Sucker Punch,Take That!,tt0978764\nKV143Jx9hFs,2011.0,3,-1,2011,Sucker Punch,I'm In,tt0978764\nuwV4iMoc7xg,2011.0,5,-1,2011,Red Riding Hood,Alliance,tt1486185\nMMeHpxjiU0U,2011.0,2,-1,2011,Sucker Punch,The Bunker,tt0978764\nBT7WTaXcPLU,2011.0,6,-1,2011,Red Riding Hood,Demon Musk,tt1486185\nUrUNUzp14Bc,2011.0,1,-1,2011,Sucker Punch,All The Weapons You Need,tt0978764\npiFTKwqrqYA,2011.0,4,-1,2011,Red Riding Hood,The Wolf Talked to Me,tt1486185\nDYsJH2JWJTY,2011.0,2,-1,2011,Red Riding Hood,Blood Moon,tt1486185\n3cnhsHMhVZE,2011.0,4,-1,2011,Hall Pass,Fake Everything,tt0480687\nDl8BO_ZLdEc,2009.0,9,9,2011,Duplicity,We Got Totally Played,tt1135487\niI0hgr8Kff8,2011.0,3,-1,2011,Red Riding Hood,Wolf Attack,tt1486185\njkHrHAKwPZk,2011.0,1,-1,2011,Red Riding Hood,I Can't Lose You,tt1486185\nu17vCX9koaI,2011.0,3,-1,2011,Hall Pass,Cruising for Babes at Applebee's,tt0480687\n4j9EwcO8tDM,2011.0,2,-1,2011,Hall Pass,I Got a !,tt0480687\nCxxuM1HCI-8,2011.0,1,-1,2011,Hall Pass,Mental Photographs,tt0480687\nUubHqEOLd8I,2009.0,1,9,2011,Duplicity,All the Way In,tt1135487\nuSkVR8Tbu8c,2011.0,1,-1,2011,Unknown,Car Accident.,tt1401152\nKNyFPVliMEE,2009.0,8,9,2011,Drag Me to Hell,\"Choke on It, Bitch\",tt1127180\nyXl3ENKGAUQ,1985.0,4,10,2011,Mask,First Day of School,tt0089560\ndSpTTf_dzDI,2011.0,3,-1,2011,Unknown,The Chase,tt1401152\nquY0mRlL5FQ,2009.0,9,9,2011,Drag Me to Hell,Dragged to Hell,tt1127180\nFBV_POzEeks,2011.0,2,-1,2011,Unknown,Who the Hell Are You?,tt1401152\nL_NfCmTkLPQ,2009.0,7,9,2011,Drag Me to Hell,The Seance,tt1127180\nwReulnRQA-Y,1987.0,4,10,2011,Three O'Clock High,There Is No Escape,tt0094138\nqMwvHLe5m3g,1963.0,11,11,2011,The Birds,Unending Terror,tt0056869\npE4-ePx_OAI,2009.0,6,9,2011,Drag Me to Hell,Harvest Cake,tt1127180\nUW-Y3QyK-aU,1987.0,1,10,2011,Three O'Clock High,The New Guy,tt0094138\nirglc0zZbvA,1987.0,9,10,2011,Three O'Clock High,Inside Job,tt0094138\n8tanKqukbfM,2009.0,5,9,2011,Drag Me to Hell,Haunted by Shadows,tt1127180\nQAUmchzQJAE,1987.0,6,10,2011,Three O'Clock High,School Store Robbery,tt0094138\n8DrzN7pcJpI,1987.0,3,10,2011,Three O'Clock High,Pep Rally,tt0094138\nc27gUzZEjvA,2009.0,4,9,2011,Drag Me to Hell,A Gypsy Funeral,tt1127180\nOd1ZBTstSHg,2009.0,2,9,2011,Drag Me to Hell,Fly Nightmare,tt1127180\nv0KOJWyR4SU,2009.0,1,9,2011,Drag Me to Hell,Button Curse,tt1127180\nSI7LDY6E1Rw,2009.0,3,9,2011,Drag Me to Hell,Nose Bleed,tt1127180\n8W4DxSCopj8,1988.0,2,10,2011,The Great Outdoors,Suck My Wake,tt0095253\n9r4784rihOc,2003.0,9,10,2011,Honey,Michael's Bitter Move,tt0322589\ntkN8fCU-rzU,2003.0,7,10,2011,Honey,Career Suicide,tt0322589\newwKExvkqXQ,1984.0,2,10,2011,Repo Man,You're All Right!,tt0087995\nUephHvStdWw,1989.0,8,9,2011,Born on the Fourth of July,Your Yankee Doodle Dandy Come Home,tt0096969\neeGuOguh33o,2003.0,4,10,2011,Honey,Miss Thing,tt0322589\nQcubF7zXxwo,2007.0,6,9,2011,Eastern Promises,Reasonable Responses,tt0765443\nClQNLSnl1ow,2002.0,9,10,2011,Big Fat Liar,Give Me Back My Monkey,tt0265298\nm_xLtlNx7Io,2007.0,7,9,2011,Eastern Promises,Soccer Game Killing,tt0765443\nfOHbTh1Wo4o,2007.0,9,9,2011,Eastern Promises,Progress Report,tt0765443\n4rJgIW-Qwzk,2007.0,5,9,2011,Eastern Promises,The Exchange,tt0765443\nWhw_HyeXyCY,2007.0,4,9,2011,Eastern Promises,Ordinary People,tt0765443\n-WW51YaWO-4,2006.0,6,10,2011,Children of Men,Kee Opens Up,tt0206634\nfRdo188PjXA,2007.0,8,9,2011,Eastern Promises,Tattoo Ceremony,tt0765443\nbBg5uLCQrbU,2007.0,3,9,2011,Eastern Promises,Prayers For the Prostitute,tt0765443\ncyrDoGdif_o,2007.0,2,9,2011,Eastern Promises,Anna's Ride Home,tt0765443\nEddCNkvpmjw,2006.0,3,10,2011,Children of Men,The Plan for Kee,tt0206634\nt5CxCy7VC7M,2007.0,1,9,2011,Eastern Promises,Thawing the Corpse,tt0765443\n8K84sx9EJzc,2006.0,4,10,2011,Children of Men,Can't Trust The Fishes,tt0206634\niU1C20Ap8og,2002.0,5,10,2011,Ali G Indahouse,Tight Rhymes for a Honky,tt0284837\nklz6IVHfHpY,2002.0,6,10,2011,Ali G Indahouse,R-E-S-T-E-C-P,tt0284837\n5HaKHp8glPc,2010.0,10,10,2011,Scott Pilgrim vs. the World,Kicking Gideon's Ass,tt0446029\n_7vyrudcgOQ,2010.0,9,10,2011,Scott Pilgrim vs. the World,Level One: X2 Bonus,tt0446029\nN13WI3oVda8,2010.0,3,10,2011,Scott Pilgrim vs. the World,How Are You Doing That With Your Mouth?,tt0446029\nILwoKfeDJO4,2010.0,1,10,2011,Scott Pilgrim vs. the World,The A-Lister,tt0446029\nJcuE90flGj4,1990.0,7,10,2011,Opportunity Knocks,Bar Mitzvah Dancing,tt0100301\nNZ94hNaoyLA,2002.0,9,10,2011,About a Boy,I'm Not Your Father,tt0276751\ndLpCZ8g5uK8,2010.0,5,10,2011,Scott Pilgrim vs. the World,The Vegan Police,tt0446029\nUS9enXEHnR4,2011.0,5,-1,2011,The Rite,She Doesn't Need a Priest,tt1161864\nSzO7T8P4_JA,2011.0,6,-1,2011,The Rite,Close the Door Please,tt1161864\nfZXtCHoRb50,2007.0,6,9,2011,Charlie Wilson's War,The Nerdy Kid in the White Shirt,tt0472062\n1NQhKtWHtmQ,2011.0,4,-1,2011,The Rite,She Should See a Psychiatrist,tt1161864\n-c_ctZ4lUCk,2007.0,4,9,2011,Charlie Wilson's War,The Day I Fell in Love with America,tt0472062\nWjJQ6L_BS58,2011.0,3,-1,2011,The Rite,Father Lucas Gets Results,tt1161864\nSuRxmapiDeU,2007.0,7,9,2011,Charlie Wilson's War,Belly Dancer Diplomacy,tt0472062\nNJ8rJ-i-OKE,1990.0,3,10,2011,Opportunity Knocks,Tipping the Bathroom Attendant,tt0100301\nLdsaucLvRb4,1994.0,8,10,2011,Reality Bites,You Look Like a Doily,tt0110950\n81hWxoHF1uA,2011.0,2,-1,2011,The Rite,Interested in the Truth,tt1161864\nzCv0AZeyCaQ,2011.0,1,-1,2011,The Rite,Loss of Faith,tt1161864\nzIJgAMpRG-k,1979.0,9,11,2011,1941,Don't You Dare!,tt0078723\nxg4OR0Tpy6U,2002.0,6,10,2011,About a Boy,A Crap Christmas,tt0276751\np-YvF5eXwYM,1979.0,3,11,2011,1941,Patriotic Duty,tt0078723\niBbWqmzzKMU,2002.0,4,10,2011,About a Boy,You Don't Have a Kid,tt0276751\n4qMv02zxgdM,1979.0,4,11,2011,1941,Japanese Christmas Trees,tt0078723\nVsdeqOdkdTY,1984.0,9,10,2011,Firestarter,Showdown at the Barn,tt0087262\npPZMrs3QGug,1984.0,6,10,2011,Firestarter,Go to Hell!,tt0087262\n_cZZ4xkgUBg,1996.0,10,10,2011,Mystery Science Theater 3000: The Movie,Battling the Mutant,tt0117128\nNpiIAuEOzmA,1996.0,5,10,2011,Mystery Science Theater 3000: The Movie,The Brack Show,tt0117128\nm2giPgQXSn4,1996.0,4,10,2011,Mystery Science Theater 3000: The Movie,The Interocitor,tt0117128\n0EC3NTMOF4Q,1996.0,3,10,2011,Mystery Science Theater 3000: The Movie,Special Delivery,tt0117128\n_dl2L4v6ecM,2000.0,5,10,2011,\"O Brother, Where Art Thou?\",The Sirens,tt0190590\nVd1j1GAExH0,1996.0,1,10,2011,Mystery Science Theater 3000: The Movie,A Push-Button Age,tt0117128\nFRdIXmfm6PA,1977.0,8,10,2011,Slap Shot,Reggie vs. The Owner,tt0076723\nfxWE6pnuPzo,1977.0,2,10,2011,Slap Shot,Fashion Show,tt0076723\n9RTPdAAdw30,2000.0,10,10,2011,\"O Brother, Where Art Thou?\",The South Is Gonna Change,tt0190590\nZruKu2N6nQw,1958.0,4,11,2011,Vertigo,What Happened?,tt0052357\nWsrIYleq2KY,2000.0,9,10,2011,\"O Brother, Where Art Thou?\",Saved by the Flood,tt0190590\nFZ65jfSwpAk,1958.0,5,11,2011,Vertigo,Wandering Together,tt0052357\ntN4mmLewz_E,1941.0,5,9,2011,Sullivan's Travels,Washed Up Picture Director,tt0034240\ngLvcrsbliOo,2000.0,8,10,2011,\"O Brother, Where Art Thou?\",Klan Rally,tt0190590\nrW23RsUTb2Y,1975.0,2,10,2011,Jaws,Get out of the Water Scene,tt0073195\nFKDCoc_i-ZU,1941.0,2,9,2011,Sullivan's Travels,The Valley of Adversity,tt0034240\nvUgs2O7Okqc,1998.0,7,10,2011,Fear and Loathing in Las Vegas,The High Water Mark,tt0120669\nu9S41Kplsbs,1975.0,7,10,2011,Jaws,The Indianapolis Speech Scene,tt0073195\ndPi40lQetew,1975.0,3,10,2011,Jaws,\"The Head, the Tail, the Whole Damn Thing Scene\",tt0073195\nayl2X5zfUAk,2004.0,3,12,2011,Ray,Little  Goes Blind,tt0350258\nq4Qlk7sfZfQ,1932.0,9,9,2011,Horse Feathers,Pinky's Fourth Quarter Heroics,tt0023027\n0lCPmaq960E,1932.0,8,9,2011,Horse Feathers,Romance on a Canoe,tt0023027\nnP7OKtlMO2w,1932.0,7,9,2011,Horse Feathers,Three's a Crowd,tt0023027\nOjS7LxDYad8,1932.0,6,9,2011,Horse Feathers,Class Clowns,tt0023027\n3skIjrkta2Q,1932.0,5,9,2011,Horse Feathers,Prof. Wagstaff's Office,tt0023027\nj7PgnjEiMcA,1932.0,3,9,2011,Horse Feathers,Recruiting at the Speakeasy,tt0023027\ni9Iy9amffa4,1932.0,4,9,2011,Horse Feathers,Everyone Says I Love You,tt0023027\nPUV_2cqbrbo,1932.0,2,9,2011,Horse Feathers,Advice for Dad,tt0023027\n29E6GbYdB1c,1932.0,1,9,2011,Horse Feathers,I'm Against It,tt0023027\nCiq9ts02ci4,1930.0,2,10,2011,All Quiet on the Western Front,The Charge,tt0020629\ner2a5WhYU-4,1930.0,5,10,2011,All Quiet on the Western Front,I Want To Help You,tt0020629\nrSPj_G2yVz4,1930.0,7,10,2011,All Quiet on the Western Front,To Die For Your Country,tt0020629\n8cp_Be49Tyk,1984.0,10,10,2011,Cloak & Dagger,A Real Hero,tt0087065\nkPsFoudYVSg,1995.0,8,9,2011,The Hunted,Teaching Paul a Lesson,tt0113360\nRY-4FCh9UFY,1995.0,9,9,2011,The Hunted,Showdown in the Rain,tt0113360\nqdK7QVuaSlM,1995.0,6,9,2011,The Hunted,Train Face-Off,tt0113360\nYGf3jBzkUeg,1995.0,3,9,2011,The Hunted,Kinjo Deals with Failure,tt0113360\n3fbtYisNC7c,1995.0,2,9,2011,The Hunted,Kinjo Kills Kirina,tt0113360\nSj8eNDOZAAk,1995.0,4,9,2011,The Hunted,There Are No Ninja Cults,tt0113360\nqhquCQirt48,1948.0,7,11,2011,Abbott and Costello Meet Frankenstein,Return of the Count,tt0040068\nQRizQTLmAMU,1992.0,10,10,2011,Bob Roberts,They Killed Bugs Raplin,tt0103850\nRjYsIv90zWk,1948.0,6,11,2011,Abbott and Costello Meet Frankenstein,Where Are They?,tt0040068\n-h62m4d4MmA,1992.0,6,10,2011,Bob Roberts,Shut It Down,tt0103850\nVE6K18Mfln4,1992.0,8,10,2011,Bob Roberts,Covert War,tt0103850\n88HW9wtz3F4,1948.0,2,11,2011,Abbott and Costello Meet Frankenstein,Keep Your Shirt On,tt0040068\n1Oetxnq_OG4,1992.0,3,10,2011,Bob Roberts,Tunnel Vision,tt0103850\nQJFwZP8DgVE,1992.0,5,10,2011,Bob Roberts,Motorcycle Mishap,tt0103850\nx0YLLkr7VfU,1948.0,10,11,2011,Abbott and Costello Meet Frankenstein,Evading The Monsters,tt0040068\nEr54USCnsds,1992.0,9,10,2011,Death Becomes Her,Ernest's Escape,tt0104070\nZpXzLVGlnc8,1992.0,8,10,2011,Death Becomes Her,Shovel Showdown,tt0104070\nD_A6gdlNh00,1992.0,7,10,2011,Death Becomes Her,Madeline's Revenge,tt0104070\nycpEjbV4KRM,1992.0,10,10,2011,Death Becomes Her,Friends Forever,tt0104070\nKZ04pEN715I,1991.0,10,10,2011,Cool as Ice,Get Wit' It,tt0101615\n03a-vG6wHDI,1992.0,6,10,2011,Death Becomes Her,Medical Mystery,tt0104070\nErqotNH65_E,1992.0,5,10,2011,Death Becomes Her,Madeline Takes a Fall,tt0104070\nBWWFJ2yjQGE,1992.0,4,10,2011,Death Becomes Her,Plotting Madeline's Death,tt0104070\nyqTTejoQVXw,1992.0,3,10,2011,Death Becomes Her,Eternal Youth,tt0104070\nzJ5Nxx3H-Tc,1991.0,9,10,2011,Cool as Ice,I Forgot Somethin',tt0101615\nY1aP-YyBdIw,1991.0,8,10,2011,Cool as Ice,Johnny the Badass,tt0101615\nb8oFKKPfgi0,1991.0,6,10,2011,Cool as Ice,Smooth as Ice,tt0101615\n8aW-vJWY87I,1991.0,5,10,2011,Cool as Ice,Homeboy This!,tt0101615\nNaGkSrOXOp4,1973.0,5,8,2011,High Plains Drifter,He Shot My Ear Off,tt0068699\nfr5rDEInWQA,1986.0,8,9,2011,The Money Pit,Home Crap Home,tt0091541\nMqMD1DK0CTQ,1991.0,7,10,2011,Cool as Ice,Kidnapping Tommy,tt0101615\ns-pgK_Rvuwc,1992.0,1,10,2011,Death Becomes Her,At Home With Helen,tt0104070\nZd17-69y_i8,1973.0,6,8,2011,High Plains Drifter,A Whipping Revenge,tt0068699\n0yOwWkbamyM,1991.0,4,10,2011,Cool as Ice,The People's Choice,tt0101615\nbsBxt2RpiIU,2000.0,2,10,2011,The Skulls,Luke's New Friend,tt0192614\n3dMF8cHKHZA,1986.0,3,9,2011,The Money Pit,Sleazy Carpenter,tt0091541\nHBdaCz2BeoY,1991.0,3,10,2011,Cool as Ice,'Cause I Wanna Know,tt0101615\n_ElAIqSBTKc,1991.0,2,10,2011,Cool as Ice,Get With the Hero,tt0101615\nj477dAxaeck,2008.0,10,10,2011,Burn After Reading,Clusterf***,tt0887883\nz09OYmZg6-Q,2008.0,9,10,2011,Burn After Reading,Tuchman Marsh,tt0887883\ny7gfbVpraWw,1991.0,1,10,2011,Cool as Ice,She Likes Me,tt0101615\nlxQZQ8uXBwg,2000.0,8,10,2011,The Skulls,Chloe Loves Luke,tt0192614\nhOgBvXEmScc,2000.0,7,10,2011,The Skulls,Caleb Issues A Warning,tt0192614\nc6dmj-WpTW4,1992.0,2,10,2011,Candyman,Sweets To The Sweet,tt0103919\nZo3a3XvzTaA,1992.0,6,10,2011,Candyman,Innocent Blood,tt0103919\n8x_8B2imlgE,1996.0,1,10,2011,Fear,All the Time in the World,tt0117381\n-yZVme3ToO8,1997.0,7,10,2011,The Apostle,On My Way to Heaven,tt0118632\nz_r6KUYYO5E,1997.0,5,10,2011,The Apostle,Radio Waves,tt0118632\n4uHWjeoTol8,2010.0,8,-1,2011,Yogi Bear,Rafting Danger,tt1302067\ng0AMLVSBfSs,2010.0,4,-1,2011,Yogi Bear,Boo-Boo Cam,tt1302067\nWy-H77tovC8,2010.0,7,-1,2011,Yogi Bear,Check the Safety Manual,tt1302067\nxp7F-8G_bPI,2010.0,6,-1,2011,Yogi Bear,\"Run, Boo-Boo, Run!\",tt1302067\nfwI7COVTitQ,2010.0,5,-1,2011,Yogi Bear,Razzle Dazzle,tt1302067\nMalJ_GPU4vI,2010.0,3,-1,2011,Yogi Bear,Ranger Smith At Your Service,tt1302067\nsJwgNs3BWYY,2010.0,1,-1,2011,Yogi Bear,Pic-a-nic Basket,tt1302067\nDbz02p90CV8,1930.0,4,9,2011,Animal Crackers,Chase'a Da Women,tt0020640\nZuVe3leQQgE,1930.0,8,9,2011,Animal Crackers,You Are A Contemptible Cur!,tt0020640\n_YrNQaXdOxU,1930.0,1,9,2011,Animal Crackers,\"Hello, I Must Be Going\",tt0020640\nT6RkPxawpY0,1930.0,3,9,2011,Animal Crackers,\"Well, Three Anyway\",tt0020640\ncvmcGY_VwvU,1930.0,6,9,2011,Animal Crackers,Where's The Flesh?,tt0020640\n5xUMeF5rgQo,1930.0,2,9,2011,Animal Crackers,The Professor!,tt0020640\n1m9DjG3QRzs,1930.0,9,9,2011,Animal Crackers,You Sure Surprised Me,tt0020640\nB9nqewDmx2U,1930.0,5,9,2011,Animal Crackers,Let's Play Bridge,tt0020640\nFZUfhfHbjE4,1930.0,7,9,2011,Animal Crackers,\"Africa, God's Country\",tt0020640\n5WuYr3fFNFg,1991.0,10,10,2011,Jungle Fever,A Disturbing Vision,tt0102175\n-sv5DJfslVM,1991.0,8,10,2011,Jungle Fever,I Don't Love You,tt0102175\nCgd47hmpvE8,1991.0,4,10,2011,Jungle Fever,Thrown Out,tt0102175\ncVIS31ghLNQ,1997.0,9,10,2011,The Lost World: Jurassic Park,Downtown Rampage,tt0119567\nw7tqVEdyteg,1997.0,8,10,2011,The Lost World: Jurassic Park,Backyard Dino,tt0119567\nAL7UDurxc3w,1997.0,10,10,2011,The Lost World: Jurassic Park,Learning to Kill,tt0119567\n9t8iEpdabms,1997.0,5,10,2011,The Lost World: Jurassic Park,T-Rex in the Tent,tt0119567\n2h8rH8zxA64,1997.0,6,10,2011,The Lost World: Jurassic Park,Raptor vs. Gymnast,tt0119567\np8fPj1-nKw0,1997.0,7,10,2011,The Lost World: Jurassic Park,The T-Rex Takes San Diego,tt0119567\nLpxwR_9EhlY,1997.0,3,10,2011,The Lost World: Jurassic Park,Over the Cliff,tt0119567\nmZ2kxdQf3t0,1997.0,4,10,2011,The Lost World: Jurassic Park,Ripped Apart,tt0119567\neFqD0yeyGTs,2000.0,9,10,2011,Bring It On,Mix Tape Dancing,tt0204946\nHqT0L6jFMNs,2000.0,7,10,2011,Bring It On,Bikini Car Wash,tt0204946\nCYGtLUZg1xA,1997.0,2,10,2011,The Lost World: Jurassic Park,Mommy's Very Angry,tt0119567\n8NaBHCuxqhA,1997.0,1,10,2011,The Lost World: Jurassic Park,The InGen Team Arrives,tt0119567\n69vn_WxKBUs,1988.0,9,10,2011,Twins,Sleeping on the Floor,tt0096320\npJJjycrT0RA,1988.0,4,10,2011,Twins,Singing in the Shower,tt0096320\nhgzSTQiMxj4,2003.0,9,10,2011,American Wedding,The Real Steve Stifler,tt0328828\n0tjKGAwyCIY,2003.0,5,10,2011,American Wedding,Stifler's Coming,tt0328828\n4lat6XqtJ0A,2003.0,3,10,2011,American Wedding,Stifler's Not Invited,tt0328828\nDu95opzY8qg,2001.0,10,10,2011,Jurassic Park 3,Returning the Raptor Eggs,tt0163025\n-WmDszVxti0,2007.0,8,9,2011,Charlie Wilson's War,Anti-Helicopter Light Missile,tt0472062\ncVA4BO2v7zs,2001.0,7,10,2011,Jurassic Park 3,A Broken Reunion,tt0163025\nQ-LFUnE8zzE,2001.0,9,10,2011,Jurassic Park 3,Persistent Beast,tt0163025\n-T16rxR-nCo,2003.0,2,10,2011,American Wedding,Wedding Plans,tt0328828\nKFJmxST-xRI,2001.0,8,10,2011,Jurassic Park 3,Billy Saves Erik,tt0163025\n2vOhL_Hw-gg,2001.0,6,10,2011,Jurassic Park 3,What Are You Doing Here?,tt0163025\nTTLjOAdckzM,2001.0,5,10,2011,Jurassic Park 3,They Set a Trap,tt0163025\njT8TUowrkLU,2001.0,2,10,2011,Jurassic Park 3,Spinosaurus Attack!,tt0163025\ntrPOKL7Nguo,2001.0,4,10,2011,Jurassic Park 3,Raptor Ambush,tt0163025\nn7cRx_7umjE,2001.0,1,10,2011,Jurassic Park 3,Crash Landing,tt0163025\ngTVoFCP1BLg,1982.0,7,10,2011,E.T.: The Extra-Terrestrial,Across the Moon,tt0083866\nM7tNqjsclhs,2001.0,3,10,2011,Jurassic Park 3,Spinosaurus vs. T-Rex,tt0163025\nQmrEOTm0rOc,1982.0,4,10,2011,Sophie's Choice,Extermination,tt0084707\nPwjMgnUNcBk,1982.0,8,10,2011,Sophie's Choice,Free My Little Boy,tt0084707\neKJv3dWsZ7E,2010.0,2,-1,2011,Due Date,Traveling with a Child,tt1231583\nk79KJYXrBkc,2010.0,1,-1,2011,Due Date,This is My Daddy,tt1231583\nKkh9BnEDT_s,1982.0,10,10,2011,Sophie's Choice,A Flight From Memory,tt0084707\nR2Dxx3_iF14,1982.0,9,10,2011,Sophie's Choice,I Can't Choose!,tt0084707\nPcMHygYMF6Q,1982.0,7,10,2011,Sophie's Choice,An Enemy of the Reich,tt0084707\n5_yRovTM8sY,1982.0,6,10,2011,Sophie's Choice,The Resistance,tt0084707\nfk7GWw7MagU,1982.0,2,10,2011,Sophie's Choice,Scars,tt0084707\nL3YhZvt8BlU,1982.0,1,10,2011,Sophie's Choice,New Friends,tt0084707\ngEygOJWaMk0,1982.0,5,10,2011,Sophie's Choice,Remembering Josef,tt0084707\nO5Dec6RdFzw,2003.0,8,10,2011,American Wedding,\"\"\"Chocolate\"\" Truffle\",tt0328828\nnqaJ3f0z3Lw,2003.0,7,10,2011,American Wedding,Hairy Cake,tt0328828\nnqz6wwDRWiE,2003.0,4,10,2011,American Wedding,Gentleman Steve,tt0328828\nO5tNdOzsbvQ,2003.0,6,10,2011,American Wedding,Interrupted Bachelor Party,tt0328828\nw0Z44BIDPPc,1982.0,3,10,2011,The Thing,Human Mutant,tt0084787\n9blGmvMjHlk,2003.0,1,10,2011,American Wedding,Ready to Burst,tt0328828\ntd3p2XKHP2M,1933.0,8,10,2011,Duck Soup,I Object!,tt0023969\nJVgqhPqHPa4,1982.0,9,10,2011,The Thing,F*** You Too!,tt0084787\nGA4Ozqt7338,1982.0,10,10,2011,The Thing,\"Why Don't We Wait Here, See What Happens\",tt0084787\nZH7hyzPIbp0,1982.0,4,10,2011,The Thing,MacReady's Tape Recorder,tt0084787\noZzS9hBwaqg,1982.0,8,10,2011,The Thing,Warm Things Up a Little,tt0084787\nuSsUoxlSADk,1933.0,2,10,2011,Duck Soup,The Laws of My Administration,tt0023969\nYDDzjijc6jY,1982.0,7,10,2011,The Thing,Tied to This Couch,tt0084787\nFNSNLXNnx-o,1933.0,3,10,2011,Duck Soup,These Are My Spies,tt0023969\ngP2sCE166o4,2010.0,2,-1,2011,Hereafter,\"It's Not a Gift, It's a Curse\",tt1212419\nZXHuGyv1KXM,1982.0,1,10,2011,The Thing,The Norwegian Dog Hunt,tt0084787\n5cqQdDitGuA,2010.0,1,-1,2011,Hereafter,I Don't Do That Anymore,tt1212419\nNtgFKdWcKXY,1982.0,2,10,2011,The Thing,It's Weird and Pissed Off,tt0084787\ni8WK-3pUpwk,2009.0,10,10,2011,Coraline,The Creepy Hand,tt0327597\nHOp1wRImIxY,2009.0,6,10,2011,Coraline,The Play's the Thing,tt0327597\n91nfNp7MVIw,2009.0,8,10,2011,Coraline,Good Kitty,tt0327597\navt_f-TaDBs,2009.0,5,10,2011,Coraline,The Magical Garden,tt0327597\n2hcVZo8jP6A,2009.0,7,10,2011,Coraline,Buttons for Eyes,tt0327597\nw0C4gjdag8o,2009.0,4,10,2011,Coraline,Welcome Home!,tt0327597\nwyaGIaJsmTg,2009.0,3,10,2011,Coraline,'s Other Parents,tt0327597\nrx1TXzxMEfo,2009.0,1,10,2011,Coraline,Why Were You Born,tt0327597\nR_VEQI2nS48,2001.0,8,10,2011,Mulholland Dr.,This is the Girl,tt0166924\nNMaLs9vr7ko,2009.0,3,-1,2011,Where the Wild Things Are,They Act Weird,tt0386117\nkA10xksmpCI,2009.0,4,-1,2011,Where the Wild Things Are,What's Your Story?,tt0386117\njwrWJXtNYWU,2009.0,2,-1,2011,The Invention of Lying,Getting Fired,tt1058017\nU3nWo59iBg8,1941.0,9,10,2011,The Lady Eve,What a Friend!,tt0033804\nrkrnVkFn59c,2009.0,2,10,2011,Coraline,Passage to the Other World,tt0327597\n1T53iV8HKXQ,1941.0,10,10,2011,The Lady Eve,Positively the Same Dame!,tt0033804\nI8ilwspLbDM,1941.0,8,10,2011,The Lady Eve,Not Over a Sofa!,tt0033804\n9VEScwL3KGQ,1941.0,6,10,2011,The Lady Eve,Father Loves to Lose,tt0033804\nJZhLiJowzNY,1941.0,7,10,2011,The Lady Eve,Charles Meets,tt0033804\nRBrzUwP2whM,1941.0,5,10,2011,The Lady Eve,\"I Like Him, Too\",tt0033804\ndOnoBJvtVMU,1941.0,4,10,2011,The Lady Eve,An Ideal Mate,tt0033804\nY3Q6BzRtl5w,1941.0,3,10,2011,The Lady Eve,Who's Emma?,tt0033804\nvkoJH4fum58,1999.0,5,-1,2011,Three Kings,A Terrible Haircut,tt0120188\njL6oromerXE,1999.0,3,-1,2011,Three Kings,This Isn't Right,tt0120188\n9acYlZC9RLI,1999.0,4,-1,2011,Three Kings,You Can't Come with Us,tt0120188\nQ_aPecwFK08,1941.0,2,10,2011,The Lady Eve,\"Hello, Hopsie!\",tt0033804\nqhH634B4jGg,1999.0,2,-1,2011,Three Kings,Calling Gooney Bird,tt0120188\nfZ7X5JDKmSI,1941.0,1,10,2011,The Lady Eve,She Knows His Type,tt0033804\nMEl5g32bzMY,1999.0,1,-1,2011,Three Kings,I'm Sorry I Hit You,tt0120188\n5xiAs8GGqD8,1973.0,6,-1,2011,The Exorcist,That Thing Upstairs Isn't My Daughter,tt0070047\nPcBKId4l6LA,1973.0,5,-1,2011,The Exorcist,Mother!,tt0070047\ng5m411zcNA4,1973.0,2,-1,2011,The Exorcist,Is There Someone Inside You?,tt0070047\nNd5HqEJuY1g,1973.0,3,-1,2011,The Exorcist,That Was No Spasm,tt0070047\nswpveBgb0Zs,2010.0,6,-1,2011,Life as We Know It,A Date with Dr. Love,tt1055292\nZZGHXZmxlZA,2010.0,5,-1,2011,Life as We Know It,The Messer Magic,tt1055292\nC_4mdGA9ehk,1973.0,1,-1,2011,The Exorcist,Burke Is Dead,tt0070047\nDnYv2MyCXss,2010.0,4,-1,2011,Life as We Know It,The Baby Cab Killer,tt1055292\n9CmgJI8aGDg,2010.0,7,-1,2011,Legend of the Guardians: The Owls of Ga'Hoole,Use Your Gizzard,tt1219342\nW6IeoTNRVf4,2010.0,3,-1,2011,Life as We Know It,Changing Diapers,tt1055292\n4Albtnu3zyQ,2010.0,2,-1,2011,Life as We Know It,Learning to Self-Soothe,tt1055292\nHWFpzw87VZM,2010.0,5,-1,2011,Legend of the Guardians: The Owls of Ga'Hoole,I am the Echidna,tt1219342\n8YSVapFtvtU,2010.0,1,-1,2011,Life as We Know It,Guardianship Arrangements,tt1055292\n80ZafDq4xq4,2010.0,6,-1,2011,Legend of the Guardians: The Owls of Ga'Hoole,Basic Training,tt1219342\np4SqclCqxuU,2010.0,3,-1,2011,Legend of the Guardians: The Owls of Ga'Hoole,Name's Digger,tt1219342\nOBWwzOCkE_E,2010.0,4,-1,2011,Legend of the Guardians: The Owls of Ga'Hoole,Twilight,tt1219342\n5ZzIGV7JAwY,2010.0,1,-1,2011,Legend of the Guardians: The Owls of Ga'Hoole,My Beak,tt1219342\nwq3EAVEnW8Q,2010.0,2,-1,2011,Legend of the Guardians: The Owls of Ga'Hoole,I Am Nyra,tt1219342\nzFgFyCSZUvU,2010.0,9,-1,2011,The Town,Get the Plunger!,tt0840361\npaNPEeQVCTc,2010.0,8,-1,2011,The Town,I Want to Go With You,tt0840361\nuRxCU1MW8B4,2010.0,4,-1,2011,The Town,How Come You Never Looked For Her?,tt0840361\ndLjnIpWhLZ4,2010.0,7,-1,2011,The Town,We're Holding Court in the Street,tt0840361\nBJ3BAzRulPY,2010.0,6,-1,2011,The Town,How Do You Know Doug?,tt0840361\nNrDO7L8jXWo,2010.0,5,-1,2011,The Town,I Never Asked You To,tt0840361\nt9eDVFrQDXM,2010.0,3,-1,2011,The Town,You Dummies Shot a Guard,tt0840361\nFnmVnBcfpWw,2010.0,2,-1,2011,The Town,You Working with the FBI?,tt0840361\n-o1N2unFkSs,2010.0,1,-1,2011,The Town,She Didn't See Anything,tt0840361\nYa00KlBMEyc,2010.0,7,-1,2011,Going the Distance,Are You Dating?,tt1322312\nJMBzKJj-nIE,2010.0,6,-1,2011,Going the Distance,You Know How Much I Love My Sister,tt1322312\nmm93ELyLN1w,2010.0,8,-1,2011,Going the Distance,Are You Introducing Yourself?,tt1322312\nhERyYjy3O3U,2010.0,4,-1,2011,Going the Distance,Women Who Like Mustaches,tt1322312\neK5PghRFnBI,2010.0,5,-1,2011,Going the Distance,Tanning Salon,tt1322312\nunl0GXfJRLA,2010.0,3,-1,2011,Going the Distance,I'm Crazy About You,tt1322312\nftAorMqqjy8,2010.0,2,-1,2011,Going the Distance,Can I Get Your Drink Order?,tt1322312\nlhHv2EyaaNc,2010.0,9,-1,2011,Lottery Ticket,Reverend Taylor's Vision,tt0979434\nMfBkwdh4GU4,2010.0,1,-1,2011,Going the Distance,Take Me to Berlin,tt1322312\nOkvebeqIrqk,2010.0,11,-1,2011,Lottery Ticket,Where's My Ticket?,tt0979434\nhW1KqOVCeKw,2010.0,10,-1,2011,Lottery Ticket,Giving Back,tt0979434\nwV-0rTzEedk,2010.0,8,-1,2011,Lottery Ticket,Shopping Spree,tt0979434\nhVQT9mDDeJo,2008.0,5,11,2011,Forgetting Sarah Marshall,Yoga Class,tt0800039\nX-_LZp9jUgQ,2010.0,7,-1,2011,Lottery Ticket,Going to Jimmy,tt0979434\n6bANKvFGxGU,2010.0,6,-1,2011,Lottery Ticket,I Got You,tt0979434\nP9Fg8M0JCHE,2010.0,5,-1,2011,Lottery Ticket,What Can Go Wrong?,tt0979434\noNGklu1muXI,2010.0,3,-1,2011,Lottery Ticket,Man,tt0979434\nb_wnD6jxREU,1989.0,9,9,2011,Field of Dreams,A Catch With Dad,tt0097351\nkGpNxt3bD6E,2010.0,4,-1,2011,Lottery Ticket,Winning the Lottery,tt0979434\n9sx5r-n9uYE,2010.0,2,-1,2011,Lottery Ticket,Thump,tt0979434\n0RlJNtKi_Pc,2010.0,1,-1,2011,Lottery Ticket,Play My Numbers,tt0979434\nx0Fnxdv5rJ8,2010.0,9,-1,2011,Flipped,Lunch Dates,tt0817177\nnOQCz7STLIY,2010.0,8,-1,2011,Flipped,You Hate Her,tt0817177\nbe-Ou9Xkh48,2010.0,7,-1,2011,Flipped,Invited for Dinner,tt0817177\nM4UpIJYB9Xo,2010.0,4,-1,2011,Flipped,The Whole Picture,tt0817177\nQfVKP_ibzsI,2010.0,6,-1,2011,Flipped,Dinner Plans,tt0817177\nuNPU0cPPsmA,2010.0,2,-1,2011,Flipped,Meeting Bryce Loski,tt0817177\n5aa_kvfMxBs,2010.0,1,-1,2011,Flipped,Meeting Juli Baker,tt0817177\nCdQ7AbtXZaw,2010.0,5,-1,2011,Flipped,Where the Tree Was,tt0817177\nmRoffE53BJk,2010.0,6,10,2011,Scott Pilgrim vs. the World,Bi-Furious,tt0446029\nUgFBbUinHSw,2010.0,3,-1,2011,Flipped,Tell Me About Your Friend,tt0817177\nXjTFVcgR0qE,2010.0,2,10,2011,Scott Pilgrim vs. the World,The L-Word,tt0446029\nIRvVdVENFmo,2010.0,7,10,2011,Scott Pilgrim vs. the World,Laters!,tt0446029\nvqqGZBRBLcM,2010.0,4,10,2011,Scott Pilgrim vs. the World,Todd the Vegan,tt0446029\na88BNDMlPSE,2010.0,7,-1,2011,Cats & Dogs: The Revenge of Kitty Galore,I Think I Like You,tt1287468\nn4Mohc3SrHs,2010.0,3,-1,2011,Cats & Dogs: The Revenge of Kitty Galore,The Tech Specialist,tt1287468\n05nQ6FtAaYg,2010.0,6,-1,2011,Cats & Dogs: The Revenge of Kitty Galore,Kitty's Evil Plan,tt1287468\nDj8hhzx9Sfk,2010.0,5,-1,2011,Cats & Dogs: The Revenge of Kitty Galore,Cats Rule!,tt1287468\ngGKNhGbPp6Y,2010.0,4,-1,2011,Cats & Dogs: The Revenge of Kitty Galore,Kitty Galore,tt1287468\nuvPjPzmUC7w,2010.0,2,-1,2011,Cats & Dogs: The Revenge of Kitty Galore,Welcome to Dog HQ,tt1287468\nGLH6JPoOLJY,2010.0,1,-1,2011,Cats & Dogs: The Revenge of Kitty Galore,Doggy Jail,tt1287468\nyycyKndEWcA,2010.0,4,-1,2011,Inception,Dream a Little Bigger,tt1375666\n9U7_NBIHsQk,2010.0,3,-1,2011,Inception,Shared Dreaming,tt1375666\nRMGsvyrEB-E,2010.0,2,-1,2011,Inception,I Need an Architect,tt1375666\nfpXngRB-VTw,2010.0,1,-1,2011,Inception,The Most Skilled Extractor,tt1375666\nuySQvxQHbdI,2010.0,2,-1,2011,Jonah Hex,Train Heist,tt1075747\nT04I6guPabI,2010.0,5,-1,2011,Jonah Hex,Can You Shoot?,tt1075747\nEY2tpd1CejA,2010.0,4,-1,2011,Jonah Hex,They Searched You Pretty Darn Good,tt1075747\nbNkeBqdWGzE,2010.0,3,-1,2011,Jonah Hex,He Don't Look so Tough,tt1075747\nwuZwdLfxTQ8,2010.0,1,-1,2011,Jonah Hex,Cut Him Down!,tt1075747\nqdrvmgnw1YQ,2009.0,2,-1,2011,Splice,It's Alive,tt1017460\n2g7MZJfmBA4,2009.0,4,-1,2011,Splice,You're Part of Me,tt1017460\nOn364s5HiSk,2009.0,3,-1,2011,Splice,A Miracle,tt1017460\nDCSeUhWzdBM,2010.0,9,-1,2011,Sex and the City 2,Girl's Night Out,tt1261945\nKdMZwqYiRH8,2009.0,1,-1,2011,Splice,Not Due For Months,tt1017460\neolBcBPpwyE,2010.0,6,-1,2011,Sex and the City 2,The Best Mirage,tt1261945\n2ovvUa5WXU4,2010.0,8,-1,2011,Sex and the City 2,Rikard,tt1261945\nnImG5bpVpVI,2010.0,7,-1,2011,Sex and the City 2,A Hot Flash,tt1261945\nPnMJqjE52VQ,2010.0,5,-1,2011,Sex and the City 2,One Week in Abu Dhabi,tt1261945\nrpvLdqBrY8s,2010.0,3,-1,2011,Sex and the City 2,Work Woes,tt1261945\nYHJnS2dsT-Q,2010.0,2,-1,2011,Sex and the City 2,The Hormone Whisperer,tt1261945\n3oLuIPYxGpE,2010.0,5,-1,2011,The Losers,Children on Site,tt0480255\n-qG1Hke8w_8,2010.0,4,-1,2011,Sex and the City 2,Happy Anniversary,tt1261945\nJCruFiGN5h4,2010.0,1,-1,2011,Sex and the City 2,Here Come the Gays,tt1261945\n9Ihxdc2RbIE,2010.0,4,-1,2011,The Losers,Feeling Better?,tt0480255\nAoRafeVBNvc,2010.0,1,-1,2011,The Losers,Business Proposition,tt0480255\nExI6DdBEu4c,2010.0,3,-1,2011,The Losers,Under Attack,tt0480255\n7hKcWzt4rBA,2010.0,2,-1,2011,The Losers,Chopper Jacked,tt0480255\n9HGMxZEl60k,2010.0,10,-1,2011,Clash of the Titans,Release the Kraken,tt0800320\nvvDkLhvUa2o,2010.0,8,-1,2011,Clash of the Titans,Medusa,tt0800320\noD4UHPNEZek,2010.0,7,-1,2011,Clash of the Titans,Take a Stand,tt0800320\nk1pv94Y0fbw,2010.0,6,-1,2011,Clash of the Titans,Preparation for Medusa,tt0800320\nCJBoHk_Ld1g,2010.0,9,-1,2011,Clash of the Titans,Calibos Battle,tt0800320\nKbKQQZsQJwk,2010.0,4,-1,2011,Clash of the Titans,Scorpion Battle,tt0800320\nYIZlw1Ou77Y,2010.0,3,-1,2011,Clash of the Titans,There's a God in You,tt0800320\nNv88ASiLmgk,1960.0,3,12,2011,Psycho,We All Go a Little Mad Sometimes,tt0054215\nI9mJ2oBONug,1960.0,2,12,2011,Psycho,A Boy's Best Friend,tt0054215\n-98BSUhcZtY,2010.0,5,-1,2011,Clash of the Titans,We Die for Each Other,tt0800320\nA-FV2T68Bz4,2010.0,2,-1,2011,Clash of the Titans,The Son of Zeus,tt0800320\n82KgLj5UKUc,2010.0,1,-1,2011,Clash of the Titans,We Are the Gods Now,tt0800320\nY3Ij2iWHFV0,2010.0,7,-1,2011,Cop Out,Munching on Chips,tt1385867\nrm49NpSVgo4,2010.0,5,-1,2011,Cop Out,Stop Repeating Me!,tt1385867\nozAXbxleK-8,2010.0,3,-1,2011,Cop Out,A Research Monkey,tt1385867\n-C7Fcg58rZU,2010.0,6,-1,2011,Cop Out,10-Year-Old Thief,tt1385867\nDWl0gnig_X8,2010.0,4,-1,2011,Cop Out,Put the Gun Down!,tt1385867\nsUhg39GEqGA,2010.0,1,-1,2011,Cop Out,A Horrible Actor,tt1385867\nZKDQJGSNJag,2010.0,2,-1,2011,Cop Out,Suspended Without Pay,tt1385867\n4qg64Ml2OdE,2010.0,7,-1,2011,Valentine's Day,Do You Have a One Course Option?,tt0817230\nNsQ4dm3q8f0,2010.0,8,-1,2011,Valentine's Day,What Are You Doing Tonight?,tt0817230\n35RzyYwEnH0,2010.0,6,-1,2011,Valentine's Day,Why Do You Hate Heart Shaped Candy?,tt0817230\nE_wUrAXTbPo,2010.0,3,-1,2011,Valentine's Day,We Might Get Along,tt0817230\n_Xe_d5rtWpQ,2010.0,4,-1,2011,Valentine's Day,And Then I Liked Him,tt0817230\nmTVRho54mAg,2010.0,1,-1,2011,Valentine's Day,She Said Yes!,tt0817230\ndSRxB66FLV4,2010.0,2,-1,2011,Valentine's Day,Don't Be Mad,tt0817230\nWMhx09c4TcQ,2010.0,3,-1,2011,Edge of Darkness,A Wise Man,tt1226273\n7eng0FHSiNk,2010.0,4,-1,2011,Edge of Darkness,What Are You Going To Do?,tt1226273\nM1VNPTj-1uc,2010.0,5,-1,2011,Edge of Darkness,Welcome to Hell,tt1226273\nudn4UB_EZ1E,2010.0,1,-1,2011,Edge of Darkness,Meeting the Boss,tt1226273\naZiDvfhRpz4,2010.0,9,-1,2011,The Book of Eli,Solara Finds a Grenade,tt1037705\nvdpUDOxQ0ao,2010.0,7,-1,2011,The Book of Eli,Old But Resilient,tt1037705\nmAs4z9GV84Q,2010.0,4,-1,2011,The Book of Eli,Why Do You Want the Book?,tt1037705\nBW4-PA9Xksw,2010.0,1,-1,2011,The Book of Eli,I'll Wait Here,tt1037705\nZERmWM-OrK0,2010.0,6,-1,2011,The Book of Eli,Teach Me,tt1037705\nDqHxOQWW_Nw,2010.0,5,-1,2011,The Book of Eli,The Book Is a Weapon,tt1037705\nfvuqUVSwpPY,2010.0,3,-1,2011,The Book of Eli,What Do You Want With Me?,tt1037705\njb0Cjzd2lKU,2009.0,8,-1,2011,Sherlock Holmes,It's a Band Saw,tt0988045\nFRaIvI54IOw,2010.0,2,-1,2011,The Book of Eli,Thorns and Thistles,tt1037705\n1WybekasErM,2009.0,7,-1,2011,Sherlock Holmes,Let It Breathe,tt0988045\n3-EGP38lS5E,2009.0,5,-1,2011,Sherlock Holmes,A Matter of Professional Integrity,tt0988045\n7RLU1N4-8SM,2009.0,6,-1,2011,Sherlock Holmes,When Do I Complain?,tt0988045\nfbYS5f3GFek,2009.0,4,-1,2011,Sherlock Holmes,I Need You to Find Someone For Me,tt0988045\ntesqTwX7cpc,1958.0,10,11,2011,Vertigo,Judy Becomes Madeleine,tt0052357\nYjaEc9KUlBI,2009.0,3,-1,2011,Sherlock Holmes,The Gravity of Coming Events,tt0988045\nmkn6s-f8PqM,2009.0,2,-1,2011,Sherlock Holmes,We Ain't Done Yet,tt0988045\nDQO3aIpmIDg,2009.0,1,-1,2011,Sherlock Holmes,That's the Irene I Know,tt0988045\n0lNb6NAV6jg,2003.0,8,10,2011,Honey,Rejects Michael,tt0322589\naPvptS4t6RA,2003.0,2,10,2011,Honey,Gets the Hookup,tt0322589\n3KNEj-B5HB8,2003.0,10,10,2011,Honey,Missy Wants,tt0322589\nKE-ok-meF3E,2009.0,9,-1,2011,Invictus,This is Our Destiny,tt1057500\n0Z286w5pRSo,2009.0,4,-1,2011,Invictus,Finding Inspiration,tt1057500\nzH57XU378EI,2009.0,6,-1,2011,Invictus,Township Rugby,tt1057500\nyFMFSxDF3uU,2009.0,8,-1,2011,Invictus,Inspired by Mandela,tt1057500\nXekcysu64Rg,2009.0,7,-1,2011,Invictus,The President's Cell,tt1057500\n3m1JShNLCYA,2009.0,5,-1,2011,Invictus,We Need Inspiration,tt1057500\n25Lb1YpSEic,2009.0,3,-1,2011,Invictus,This is the Time to Build Our Nation,tt1057500\n_fibH0WUWYg,2009.0,2,-1,2011,Invictus,The People Are Wrong,tt1057500\nHHqi6ZB_F0U,2009.0,1,-1,2011,Invictus,Reconciliation and Forgiveness Start Here,tt1057500\nrzXNFMVS7PM,2009.0,5,-1,2011,The Blind Side,You Wanna Do What?,tt0878804\n9DaWcHIGk7I,2009.0,6,-1,2011,The Blind Side,I'm A Democrat,tt0878804\no8ETRMZt6kg,2009.0,2,-1,2011,The Time Traveler's Wife,Don't Marry Henry,tt0452694\n1OCmZuUVZfA,2009.0,4,-1,2011,The Blind Side,He's Changing Mine,tt0878804\n-85ubSkzSWg,2009.0,4,-1,2011,The Time Traveler's Wife,Winning the Lottery,tt0452694\neVarVWL4PwA,2009.0,3,-1,2011,The Time Traveler's Wife,Will You Marry Me?,tt0452694\ngivOs4_nb-I,2009.0,1,-1,2011,The Time Traveler's Wife,It's You,tt0452694\n8WraflY6rl0,2009.0,6,-1,2011,Ninja Assassin,Brothers' Confrontation,tt1186367\nbQzBPo2qRuk,2009.0,3,-1,2011,The Blind Side,It's Mine?,tt0878804\nTipOwV7y_q4,2009.0,2,-1,2011,The Blind Side,Sleep Tight,tt0878804\npPjYhPGkhGA,2009.0,1,-1,2011,The Blind Side,Do You Have Any Place to Stay?,tt0878804\nRoCmHW-wdtE,2009.0,5,-1,2011,Ninja Assassin,Street Fight,tt1186367\ns_PLAOcbbzI,2009.0,5,-1,2011,The Box,Arthur Talks to Ryan,tt0362478\nmV__PXYxQYY,2009.0,4,-1,2011,The Box,Phone Call From Arlington,tt0362478\nQbVzoV4GgM8,2009.0,1,-1,2011,The Box,If You Push the Button,tt0362478\nyaGbKy7gAkM,2009.0,3,-1,2011,The Box,The Offer Will Be Made to Someone Else,tt0362478\n6HT1K-XoREU,2009.0,2,-1,2011,The Box,What Do You Want to Do?,tt0362478\nmVcHdILwsXQ,2009.0,4,-1,2011,Ninja Assassin,Dock Ambush,tt1186367\nEU70jtTYN0E,2009.0,2,-1,2011,Ninja Assassin,Without One of Your Senses,tt1186367\nIgBQwCBi8vI,2009.0,5,-1,2011,The Informant!,I'm Gonna Be OK at the Company,tt1130080\nSjNu8J7JQMk,2009.0,3,-1,2011,Ninja Assassin,They're Already in the Room,tt1186367\nt6FIm6TCkCE,2009.0,1,-1,2011,Ninja Assassin,Pain Breeds Weakness,tt1186367\nkYcvOPf4GqE,2009.0,6,-1,2011,The Invention of Lying,Birthday Coupon for Sex,tt1058017\nST9DTmR2xG4,2009.0,6,-1,2011,The Informant!,Who Else Did You Tell?,tt1130080\nuAS_k95ZRUk,2009.0,3,-1,2011,The Informant!,Surveillance Malfunction,tt1130080\nyVE7YDYgtHE,2009.0,2,-1,2011,The Informant!,No More FBI Cooperation,tt1130080\n1JVewdBZyYA,2009.0,4,-1,2011,The Invention of Lying,I'll Always Be More Successful Than You,tt1058017\nD_Acqs7T5-0,2009.0,4,-1,2011,The Informant!,The Next Company President,tt1130080\nFF9t_GekWjU,2009.0,1,-1,2011,The Informant!,This Involves Price Fixing,tt1130080\nVpehD7unUGw,2009.0,5,-1,2011,The Invention of Lying,I Think I'm in Your League,tt1058017\ngILsE7uSUkA,2009.0,3,-1,2011,The Invention of Lying,You're Fired,tt1058017\n3DmchoOLczY,2009.0,1,-1,2011,The Invention of Lying,First Date Honestly,tt1058017\nwz_y0fibuQE,2009.0,5,-1,2011,Where the Wild Things Are,Dirt Clod Fight,tt0386117\nf58Ba78abHg,2009.0,2,-1,2011,Where the Wild Things Are,What Comes After Dust,tt0386117\nDoq_EUCSB5k,2009.0,4,-1,2011,Harry Potter and the Half-Blood Prince,In Love With Who?,tt0417741\nRQH_q5kOlCE,2009.0,1,-1,2011,Where the Wild Things Are,I Like How You Destroy Stuff,tt0386117\nje6L2clZOGM,2001.0,10,10,2011,Mulholland Dr.,Llorando,tt0166924\nKM9SPmAD6M8,2009.0,2,-1,2011,Harry Potter and the Half-Blood Prince,\"Quiet, Please\",tt0417741\nkI9rnng7ns0,2009.0,1,-1,2011,Harry Potter and the Half-Blood Prince,A Dark Memory,tt0417741\nAXukn4q48sY,2009.0,5,-1,2011,Harry Potter and the Half-Blood Prince,I Know What You Did Malfoy,tt0417741\nV-GgWCBVhrg,2009.0,3,-1,2011,Harry Potter and the Half-Blood Prince,But I Am the Chosen One,tt0417741\n6DZ7DfrTDds,2001.0,9,10,2011,Mulholland Dr.,No Hay Banda,tt0166924\naeevxJaJl1U,2001.0,7,10,2011,Mulholland Dr.,Betty's Audition,tt0166924\nrNjX3tQMygk,2001.0,6,10,2011,Mulholland Dr.,The Cowboy,tt0166924\ne4pMjAtdmO0,2001.0,5,10,2011,Mulholland Dr.,Someone Is in Trouble,tt0166924\nSk990pKn7vY,2001.0,4,10,2011,Mulholland Dr.,No Way to Treat Your Wife,tt0166924\n1atAz0BIlm0,1992.0,10,10,2011,Candyman,Burn Him!,tt0103919\nTrqpRcocmrw,1992.0,9,10,2011,Candyman,'s Lair,tt0103919\nB3rFARaSAws,1992.0,3,10,2011,Candyman,The Legend of,tt0103919\nyusKlHgtvIE,2001.0,1,10,2011,Mulholland Dr.,Dan's Nightmare,tt0166924\n920BmIe4nN4,1992.0,5,10,2011,Candyman,Be My Victim,tt0103919\nvG6bW7_-CRQ,1992.0,4,10,2011,Candyman,Better Off Dead,tt0103919\n77XaekZUvL0,1992.0,7,10,2011,Candyman,Believe In Me,tt0103919\n7JlG7q-ld8M,2008.0,7,10,2011,Burn After Reading,Appearances Can Be Deceptive,tt0887883\n3mycwnQWlug,1992.0,1,10,2011,Candyman,The Scariest Story I've Ever Heard,tt0103919\nc38HJR-9vhU,2008.0,8,10,2011,Burn After Reading,Caught and Shot,tt0887883\n7kMyom2sHyA,2008.0,4,10,2011,Burn After Reading,Raw Intelligence,tt0887883\nEnFcN2CMNps,1988.0,5,10,2011,Twins,Born to Be Bad,tt0096320\nhSe6p6SLuvI,2008.0,6,10,2011,Burn After Reading,Harry and Linda's Blind Date,tt0887883\nmO8roISHjJo,2008.0,1,10,2011,Burn After Reading,Osbourne Is Out,tt0887883\nq6zi7XGjQQw,2008.0,5,10,2011,Burn After Reading,I Got His Number,tt0887883\nPJkmvYEqRVE,1987.0,9,9,2011,Harry and the Hendersons,Harry and His Family,tt0093148\nLUi7mkGXDRo,2008.0,3,10,2011,Burn After Reading,Baby Crow's Feet,tt0887883\n1d8oqIXtjdo,1987.0,8,9,2011,Harry and the Hendersons,\"Goodbye, My Friend\",tt0093148\nqBFSCbptrJk,1987.0,7,9,2011,Harry and the Hendersons,There Are No Bigfeet!,tt0093148\nx421Na9VfNE,1987.0,6,9,2011,Harry and the Hendersons,Dumpster Diving,tt0093148\neuorMDBYxrk,2002.0,5,10,2011,About a Boy,I'm Bloody Ibiza,tt0276751\ngWB-uAtqUIs,2002.0,8,10,2011,About a Boy,I'm Really Nothing,tt0276751\nnfk-kn7YP04,1987.0,5,9,2011,Harry and the Hendersons,Sitting Lessons,tt0093148\nY5drWYjmJFY,1987.0,4,9,2011,Harry and the Hendersons,Hiding Harry,tt0093148\nCJGNkuaveUE,2002.0,7,10,2011,About a Boy,Will Meets Rachel,tt0276751\n42ikB9YlkW4,2002.0,10,10,2011,About a Boy,You're Sick,tt0276751\nkZQwVWTB2hI,1948.0,11,11,2011,Abbott and Costello Meet Frankenstein,Death of the Monster,tt0040068\n74256F5BtiI,2002.0,3,10,2011,About a Boy,Island Living,tt0276751\nfpKl9lrLfx0,1987.0,3,9,2011,Harry and the Hendersons,Eating the Corsage,tt0093148\nBxL5O2tuDtk,1987.0,2,9,2011,Harry and the Hendersons,It's Alive!,tt0093148\nyJBIO7B_XI4,1987.0,1,9,2011,Harry and the Hendersons,Bear or Gorilla?,tt0093148\n_KpSBVJq7jo,1948.0,8,11,2011,Abbott and Costello Meet Frankenstein,Take the Mask Off,tt0040068\n19q6jSWFPCo,1948.0,9,11,2011,Abbott and Costello Meet Frankenstein,Do You Believe Me Now?,tt0040068\nPqw0GsAAzEo,2004.0,4,10,2011,In Good Company,A Bizarrely Honest Guy,tt0385267\n3FWjipa2Ztw,2007.0,9,9,2011,Charlie Wilson's War,A Toast for the Vanquished,tt0472062\nC3W5kkZLN50,1948.0,5,11,2011,Abbott and Costello Meet Frankenstein,The Wolf Man,tt0040068\n4t7GADjRIuA,2007.0,3,9,2011,Charlie Wilson's War,Afghanistan Refugee Camp,tt0472062\nl6NIVn6_m1c,1948.0,3,11,2011,Abbott and Costello Meet Frankenstein,Dracula Rises,tt0040068\nl5s3_XV1rkA,1948.0,4,11,2011,Abbott and Costello Meet Frankenstein,Dracula Wakes Frankenstein Scene,tt0040068\nKr9_dJ6TPPQ,1948.0,1,11,2011,Abbott and Costello Meet Frankenstein,The Wolf Man Transforms,tt0040068\nOHNZUmdqdv8,2007.0,5,9,2011,Charlie Wilson's War,Bugging the Scotch,tt0472062\nwJmIEj-uVYk,2007.0,2,9,2011,Charlie Wilson's War,The Sexiest Woman Ever,tt0472062\nsQ_4m2ocxhI,2007.0,1,9,2011,Charlie Wilson's War,Another Broken Window,tt0472062\npcqaeLRop58,1999.0,7,10,2011,Bowfinger,Guerrilla Filmmaking,tt0131325\nNQFMeyWVe3g,1999.0,10,10,2011,Bowfinger,Chubby Rain Movie Premiere,tt0131325\nwMgKj3QGv2o,1999.0,9,10,2011,Bowfinger,Gotcha Suckers!,tt0131325\noFwbpFJpQbg,1999.0,8,10,2011,Bowfinger,My Gonads,tt0131325\nQ0i1ldFm-oI,1999.0,4,10,2011,Bowfinger,High-Heel Wearing Dog,tt0131325\n9cb5Ka9SqGM,1999.0,5,10,2011,Bowfinger,Crossing the Freeway,tt0131325\nE6yFlIQxp8g,1999.0,3,10,2011,Bowfinger,Buck the Wonder Slave,tt0131325\nYrx2bv_LoG0,1999.0,2,10,2011,Bowfinger,Spearchucker Says Hello!,tt0131325\nSoP7TLCtylg,1999.0,6,10,2011,Bowfinger,Daisy's Topless Scene,tt0131325\n0fwudBWsw9Q,2001.0,4,11,2011,American Pie 2,Was I Any Good?,tt0252866\nKKjCm_IoPRQ,2001.0,3,11,2011,American Pie 2,Warm Champagne,tt0252866\nZ7RKrb4jLOU,2001.0,1,11,2011,American Pie 2,Jim's Big Surprise,tt0252866\nNlSuj6YIG94,2001.0,2,11,2011,American Pie 2,The One That Got Away,tt0252866\nFpxOLhuNXfM,1975.0,10,10,2011,Jaws,Brody Kills the Beast Scene,tt0073195\nr0ladY1kwco,1989.0,1,9,2011,Born on the Fourth of July,Ron Is Shot,tt0096969\npmLP0QQPqFw,1975.0,9,10,2011,Jaws,Quint Is Devoured Scene,tt0073195\ncW7Q7UySxRA,1975.0,8,10,2011,Jaws,Hooper in the Cage Scene,tt0073195\ngTWo9oLJOWk,1993.0,10,10,2011,Jurassic Park,T-Rex vs. the Raptors Scene,tt0107290\nCwdGYMM2bHM,1975.0,5,10,2011,Jaws,Barrels Scene,tt0073195\ndLjNzwEULG8,1975.0,6,10,2011,Jaws,Scars Scene,tt0073195\ndnRxQ3dcaQk,1993.0,9,10,2011,Jurassic Park,Raptors in the Kitchen Scene,tt0107290\nnM-RPO10aPY,1993.0,6,10,2011,Jurassic Park,They're Flocking This Way Scene,tt0107290\nPscRUlsvhtI,1993.0,7,10,2011,Jurassic Park,Back in Business Scene,tt0107290\nm7mbDPykHoc,1960.0,8,12,2011,Psycho,People Just Come and Go,tt0054215\nyrEvK-tv5OI,1975.0,1,10,2011,Jaws,Chrissie's Last Swim Scene,tt0073195\niTLUzEjV3Bg,1960.0,9,12,2011,Psycho,I'm Not Capable of Being Fooled,tt0054215\niPt2PNpjOq4,1960.0,7,12,2011,Psycho,Sinking Marion's Car,tt0054215\nghew-s2zPjE,1960.0,4,12,2011,Psycho,Peeping on Marion,tt0054215\nP-sWReV2DDQ,1958.0,11,11,2011,Vertigo,Judy Jumps,tt0052357\nO888bu0QrMg,1958.0,1,11,2011,Vertigo,Officer Down,tt0052357\n0fTXzdHoip8,1963.0,9,11,2011,The Birds,I Think You're Evil!,tt0056869\nd921M-ACMM4,1993.0,5,10,2011,Jurassic Park,Nedry's Plan Goes Awry Scene,tt0107290\nGjPCk494e5Q,1958.0,8,11,2011,Vertigo,The Bell Tower,tt0052357\npwOhqGhP-mk,1963.0,10,11,2011,The Birds,Attacked in the Attic,tt0056869\nD15HPy4x73g,1963.0,8,11,2011,The Birds,Trapped in a Phone Booth,tt0056869\nM0HjlCowwuM,1963.0,4,11,2011,The Birds,Eyes Pecked Out,tt0056869\nIdOF7xg5lug,1963.0,7,11,2011,The Birds,Gas Station Explosion,tt0056869\nv5Co3A3fLBo,1993.0,4,10,2011,Jurassic Park,Tyrannosaurus Rex Scene,tt0107290\nJylK4HuKMvQ,1993.0,3,10,2011,Jurassic Park,The Sick Triceratops Scene,tt0107290\nPJlmYh27MHg,1993.0,1,10,2011,Jurassic Park,Welcome to  Scene,tt0107290\n0WtDmbr9xyY,1960.0,5,12,2011,Psycho,The Shower,tt0054215\ndYDxxHrlmUg,1960.0,12,12,2011,Psycho,She Wouldn't Even Harm a Fly,tt0054215\nxWHYmNrAFlI,1960.0,11,12,2011,Psycho,The Truth About Mother,tt0054215\n5bieIiX5KLQ,1960.0,10,12,2011,Psycho,Arbogast Meets Mother,tt0054215\ndyxcQ4FV6KM,1960.0,6,12,2011,Psycho,Norman Finds the Body,tt0054215\nhplpQt424Ls,1963.0,6,11,2011,The Birds,Crows Attack the Students,tt0056869\nn-mpifTiPV4,1993.0,2,10,2011,Jurassic Park,Chaos Theory Scene,tt0107290\nFe3c7Txx0Sc,1963.0,2,11,2011,The Birds,Children's Birthday Surprise,tt0056869\n9tGWHkKzeeI,1989.0,12,12,2011,Back to the Future Part 2,Battle for the Book,tt0096874\nydLJtKlVVZw,1963.0,5,11,2011,The Birds,Crows on the Playground,tt0056869\nXei_IKhp9tU,1963.0,3,11,2011,The Birds,Birds Invade the House,tt0056869\neHh6bwuPShw,1963.0,1,11,2011,The Birds,Seagull Attack,tt0056869\n74ocbvwam7c,1992.0,9,9,2011,Sneakers,The Team's Demands,tt0105435\n-zIzLRgwdxA,1989.0,9,12,2011,Back to the Future Part 2,Marty Tricks Biff,tt0096874\nlNWV7T5KlRE,1992.0,8,9,2011,Sneakers,Driving Blind,tt0105435\n0sNSVtTcxpo,1988.0,10,10,2011,Twins,\"Oh, Mama!\",tt0096320\nKuIheGaiFLM,1992.0,7,9,2011,Sneakers,Navigating by Sound,tt0105435\n4EUsnCqqc9s,1988.0,8,10,2011,Twins,Dance Lessons,tt0096320\nWlcH-5LQbhA,1989.0,10,12,2011,Back to the Future Part 2,Marty Sneaks Past Himself,tt0096874\nKy7ncpdpMUc,1988.0,3,10,2011,Twins,First Time Driver,tt0096320\n3VlyZIywY9c,1992.0,6,9,2011,Sneakers,Call to the NSA,tt0105435\npLRk4xG-JCI,1985.0,1,10,2011,Back to the Future,The DeLorean,tt0088763\nuGstM8QMCjQ,1988.0,2,10,2011,Twins,No Respect for Logic,tt0096320\nW0ZgTVoA0eY,2004.0,1,10,2011,Friday Night Lights,\"Get Off the Field, Dad\",tt0390022\nGCPMRHNwR8E,2000.0,4,10,2011,Bring It On,\"This Isn't About Cheating, It's About Winning\",tt0204946\ngkfAyFT8xGc,1984.0,4,10,2011,Cloak & Dagger,Morris Gets Shot,tt0087065\nK0qG34a5oqY,2004.0,2,10,2011,Friday Night Lights,Duct Tape for Don,tt0390022\noHJVJ_MEyQI,2004.0,10,10,2011,Friday Night Lights,Agony of Defeat,tt0390022\no-iPiN_YHjY,2004.0,9,10,2011,Friday Night Lights,Coach Gaines on Being Perfect,tt0390022\n1AtE54HpXBM,1990.0,10,10,2011,Back to the Future Part 3,Your Future Is Whatever You Make It,tt0099088\ncoDtzN6bXAM,1992.0,5,9,2011,Sneakers,Changing the World,tt0105435\nGuuUX-4_K-A,1977.0,3,10,2011,Slap Shot,The Hanson Brothers,tt0076723\n8CZ-ICxcEYg,2004.0,8,10,2011,Friday Night Lights,Ivory's Pep Talk,tt0390022\nKm6bFBSVty4,1989.0,6,12,2011,Back to the Future Part 2,Future Marty Is Terminated,tt0096874\n8ktMe0xclxA,1990.0,8,10,2011,Back to the Future Part 3,Train Ride to the Future,tt0099088\nzJiCswIaIkI,1990.0,7,10,2011,Back to the Future Part 3,\"Time's Up, Runt!\",tt0099088\nMw1Z2Jlp9Qw,1988.0,1,10,2011,Twins,Not Identical,tt0096320\nFHNT4E_55jY,1984.0,8,10,2011,Firestarter,Cinder Blocks on Fire,tt0087262\n75M1XXEZciU,1982.0,10,10,2011,E.T.: The Extra-Terrestrial,I'll Be Right Here,tt0083866\n5ztwns5PkJY,1989.0,5,12,2011,Back to the Future Part 2,The Future McFlys,tt0096874\n6xZif3WmG7I,1982.0,4,10,2011,E.T.: The Extra-Terrestrial,E.T. Phone Home,tt0083866\na-9990dlfvo,1982.0,8,10,2011,E.T.: The Extra-Terrestrial,He's Alive! He's Alive!,tt0083866\nVrVEHszxL7E,1982.0,6,10,2011,E.T.: The Extra-Terrestrial,Halloween,tt0083866\nTaLsQSCK0Jo,1982.0,3,10,2011,E.T.: The Extra-Terrestrial,Saving the Frogs,tt0083866\n0xWMqsZOYWg,1982.0,2,10,2011,E.T.: The Extra-Terrestrial,Getting Drunk,tt0083866\nGzeNMZcP8Xg,1984.0,3,10,2011,Sixteen Candles,Am I Turning You On?,tt0088128\nNWcBwgxUyuM,1984.0,1,10,2011,Sixteen Candles,They Forgot My Birthday,tt0088128\n2quc-iQ96R0,1980.0,9,9,2011,The Blues Brothers,Paying the Price Scene,tt0080455\njFrVoG-edFc,1992.0,7,9,2011,Far and Away,The Oklahoma Land Rush,tt0104231\nLMagP52BWG8,1980.0,7,9,2011,The Blues Brothers,Chased by the Cops Scene,tt0080455\nEHV0zs0kVGg,1980.0,6,9,2011,The Blues Brothers,Everybody Needs Somebody to Love Scene,tt0080455\n0IWdfqsImMU,1984.0,2,10,2011,Sixteen Candles,I Loathe the Bus,tt0088128\neGu2camh0WA,1980.0,8,9,2011,The Blues Brothers,The Bluesmobile Does a Backflip Scene,tt0080455\nSldtDNNTA2s,1992.0,9,9,2011,Far and Away,Staking Their Claim,tt0104231\nWULhkipzltU,1992.0,8,9,2011,Far and Away,This Land Is Mine!,tt0104231\nRdR6MN2jKYs,1980.0,5,9,2011,The Blues Brothers,Rawhide Scene,tt0080455\nqdbrIrFxas0,1980.0,4,9,2011,The Blues Brothers,Shake a Tail Feather Scene,tt0080455\nHlXsMMnAlmU,1992.0,5,9,2011,Far and Away,Fighting for Us,tt0104231\nFROgIia2cb8,1962.0,9,10,2011,To Kill a Mockingbird,Boo is a Hero,tt0056592\niRmIef02Ajk,1962.0,10,10,2011,To Kill a Mockingbird,Scout Meets Boo Radley,tt0056592\nZTT1qUswYL0,1980.0,3,9,2011,The Blues Brothers,Nazis Take a Dive Scene,tt0080455\nmHh8PKWMQEw,1992.0,6,9,2011,Far and Away,Pretend You Love Me,tt0104231\n44TG_H_oY2E,1962.0,4,10,2011,To Kill a Mockingbird,Atticus Cross-Examines Mayella,tt0056592\nq7CX_5D6y6E,1962.0,8,10,2011,To Kill a Mockingbird,Your Father's Passing,tt0056592\naErDEFpoD_0,1985.0,10,10,2011,Brazil,Sam Is Captured,tt0088846\n8MmtVx1A8BA,1962.0,7,10,2011,To Kill a Mockingbird,Atticus's Closing Statement,tt0056592\noaVuVu5KXuE,1962.0,3,10,2011,To Kill a Mockingbird,The Children Save Atticus,tt0056592\nIIdGxR-aU6o,1980.0,2,9,2011,The Blues Brothers,Mall Chase Scene,tt0080455\n3Nzc3Rezt3w,1990.0,5,10,2011,Cry-Baby,King,tt0099329\nujxDA9VsQG4,1980.0,1,9,2011,The Blues Brothers,Filthy Mouths & Bad Attitudes Scene,tt0080455\newkroL1cP_Q,1982.0,1,10,2011,E.T.: The Extra-Terrestrial,\"It Was Nothing Like That, Penis Breath!\",tt0083866\n20M_teQf-l8,1992.0,3,9,2011,Far and Away,Scrapping,tt0104231\nolXUIcb80N0,1985.0,9,10,2011,Brazil,Harry Wastes Central Services,tt0088846\nsTDhNLLglf8,1990.0,7,10,2011,Cry-Baby,Orphans,tt0099329\npnaWqq2eRcc,1997.0,5,9,2011,Liar Liar,I'm Reaping What I Sow,tt0119528\nguMVb47aD-k,1962.0,1,10,2011,To Kill a Mockingbird,What Kind of Man Are You?,tt0056592\n1O7AX7tqEHE,1992.0,2,9,2011,Far and Away,I'm Running Away,tt0104231\nKyHilwSRo28,1985.0,8,10,2011,Brazil,My Complication Had a Little Complication,tt0088846\nmS5WLkb_Cxk,1985.0,5,10,2011,Brazil,The Moving Desk,tt0088846\nSbYzo8L9DLc,1985.0,7,10,2011,Brazil,I Love You,tt0088846\n1jQP0Y2T2OQ,1997.0,9,9,2011,Liar Liar,And the Truth Shall Set You Free!,tt0119528\ndht_3NziwSw,1985.0,3,10,2011,Brazil,\"Harry Tuttle, Heating Engineer\",tt0088846\n0B61_5sRoBI,1985.0,4,10,2011,Brazil,Central Services Pays a Visit,tt0088846\nf_GI8syIgIs,2003.0,5,10,2011,Honey,Tweet Video,tt0322589\nBnx95KyQEAA,1985.0,2,10,2011,Brazil,Plastic Surgery,tt0088846\nZh6NzOHOU8s,1997.0,1,9,2011,Liar Liar,Big Liar,tt0119528\nfbbatiKJ6rQ,2003.0,1,10,2011,Honey,Meets Benny and Raymond,tt0322589\nDrIsPRZL578,2004.0,2,9,2011,The Bourne Supremacy,Marie Is Killed,tt0372183\nDk7DE4FghW0,2005.0,8,8,2011,Cinderella Man,The Ending: New World Champion,tt0352248\nHGU3PRBxQiw,2005.0,7,8,2011,Cinderella Man,Braddock vs. Baer,tt0352248\nSMJqQ3VrcCA,2006.0,10,10,2011,Children of Men,We're Safe,tt0206634\n83Jr_6b9pHA,2005.0,6,8,2011,Cinderella Man,The Champion of My Heart,tt0352248\nYBzWTIexszQ,2006.0,9,10,2011,Children of Men,Miracle Cease Fire,tt0206634\nJCKh3Jsge4E,2005.0,4,8,2011,Cinderella Man,Fighting for Milk,tt0352248\nzpmLSGixYwM,2005.0,5,8,2011,Cinderella Man,Run It Again,tt0352248\nG-ZJbAdw1Rw,2005.0,3,8,2011,Cinderella Man,Braddock Beats Lasky,tt0352248\n-3ywc_7_IE8,2005.0,2,8,2011,Cinderella Man,One Hell of a Goodbye,tt0352248\nioTMlrCoU2E,2006.0,7,10,2011,Children of Men,Luke Murders Jasper,tt0206634\nIZocpwWLsyE,2000.0,7,10,2011,\"O Brother, Where Art Thou?\",Big Dan Teague,tt0190590\nlNXTKVxOmfk,2005.0,1,8,2011,Cinderella Man,Braddock Begs for Money,tt0352248\n-LjxKR0q7Yo,2006.0,5,10,2011,Children of Men,Escaping The Fishes,tt0206634\np56k6QCjJnc,2000.0,6,10,2011,\"O Brother, Where Art Thou?\",Horny Toad,tt0190590\nXoWvE383hm4,2006.0,8,10,2011,Children of Men,It's a Girl,tt0206634\nVJivXSErhB8,2006.0,1,10,2011,Children of Men,Cafe Bomb Blast,tt0206634\nNdVRDlmWhg4,2006.0,2,10,2011,Children of Men,Kee Is Pregnant,tt0206634\nN7UtdTiuO3w,2000.0,12,12,2011,The Family Man,Jack Catches Kate at the Airport,tt0218967\nnSQ5EsbT4cE,1985.0,1,10,2011,Brazil,A Receipt for Your Husband,tt0088846\napq46lA0uSM,2000.0,4,10,2011,\"O Brother, Where Art Thou?\",Baby Face Nelson,tt0190590\n5tbx8osZ87M,2000.0,11,12,2011,The Family Man,\"Remember Me, Kate\",tt0218967\njxsvzuRl1O8,2000.0,9,12,2011,The Family Man,A Life That Other People Envy,tt0218967\nn0ZGibTDo9A,2000.0,10,12,2011,The Family Man,I Choose Us,tt0218967\nfgcWfVvT_UM,2000.0,3,10,2011,\"O Brother, Where Art Thou?\",Crossroads,tt0190590\nDUd5RPVDjPY,2007.0,2,9,2011,The Bourne Ultimatum,Ross and Waterloo,tt0440963\nBCTFuIw1Bv8,2000.0,6,12,2011,The Family Man,What Are You Sure About?,tt0218967\nS1i5coU-0_Q,1985.0,9,10,2011,Back to the Future,Johnny B. Goode,tt0088763\naGMhMCHyM3c,2000.0,4,12,2011,The Family Man,Where's My Real Dad?,tt0218967\nSOcgrVL8Dg0,2000.0,7,12,2011,The Family Man,I Never Stopped Loving You,tt0218967\nMwmy0awMZXY,2007.0,1,9,2011,The Bourne Ultimatum,Bourne Evades Police,tt0440963\ntXp79rAS5JQ,2007.0,9,9,2011,The Bourne Ultimatum,Shot and Missing,tt0440963\ntPImdMknAO4,2000.0,2,10,2011,\"O Brother, Where Art Thou?\",We're in a Tight Spot!,tt0190590\nXhpJ11dNp2o,2002.0,10,10,2011,The Bourne Identity,Stairwell Plunge,tt0258463\nzZJ7cq6T3v4,1985.0,7,10,2011,Back to the Future,Skateboard Chase,tt0088763\nPeGDBR0Ej_0,2002.0,1,10,2011,The Bourne Identity,What's Your Name?,tt0258463\nQzklMXES1BU,1985.0,8,10,2011,Back to the Future,You Leave Her Alone,tt0088763\nf-77xulkB_U,1985.0,6,10,2011,Back to the Future,1.21 Gigawatts,tt0088763\nSR5BfQ4rEqQ,1985.0,5,10,2011,Back to the Future,I'm From the Future,tt0088763\nw-VBcSukH_8,1991.0,9,10,2011,Fried Green Tomatoes,Evelyn the Destroyer,tt0101921\n95_DB6GgLQs,1985.0,4,10,2011,Back to the Future,You're George McFly!,tt0088763\nf2c-tMZSZtY,1985.0,2,10,2011,Back to the Future,The Libyans Find Doc Brown,tt0088763\nKPeHFDxKUP4,1985.0,3,10,2011,Back to the Future,Back in Time,tt0088763\ndrvaZz3FWOI,2000.0,1,10,2011,\"O Brother, Where Art Thou?\",Yours Truly,tt0190590\nQAygM0YfY10,1990.0,7,11,2011,Bird on a Wire,Airplane Chase,tt0099141\nV3RHvyrqTak,1990.0,11,11,2011,Bird on a Wire,A Little Extra Effort,tt0099141\nkxtAmNDjfj4,1990.0,6,11,2011,Bird on a Wire,Operating on Rick,tt0099141\njlFLcKaBLz0,1990.0,9,11,2011,Bird on a Wire,Sharing the Bed,tt0099141\n1VEcaRh4c1A,1990.0,5,11,2011,Bird on a Wire,The Michelangelo of Hair,tt0099141\nex6X6rXcXKQ,1990.0,4,11,2011,Bird on a Wire,The Train Tunnel,tt0099141\nN9hJ6pUeqxQ,1990.0,3,11,2011,Bird on a Wire,Chased by the Cops,tt0099141\n-rq6IBVPcBU,1990.0,2,11,2011,Bird on a Wire,Killer Room Service,tt0099141\no9splceYBXQ,1973.0,8,8,2011,High Plains Drifter,The Stranger Rides Away,tt0068699\nq_215iQ7KDs,1988.0,7,10,2011,The Great Outdoors,The Old '96er,tt0095253\nsOLnb7BrMC8,1973.0,7,8,2011,High Plains Drifter,Who Are You?,tt0068699\nOBJ-MpPBDug,1988.0,10,10,2011,The Great Outdoors,Big Bear Chase Me!,tt0095253\nyuI8BfvTwfY,1988.0,9,10,2011,The Great Outdoors,Chet and the Bald Bear,tt0095253\nWRR4iYRRBLk,1988.0,6,10,2011,The Great Outdoors,He's on My Face!,tt0095253\n1VZzulIl0DI,1988.0,4,10,2011,The Great Outdoors,At the Bear Dump,tt0095253\nI3K8xBfywg0,1988.0,8,10,2011,The Great Outdoors,It All Starts to Ooze Out,tt0095253\nPAC3F5dQufQ,1988.0,1,10,2011,The Great Outdoors,Horny the Bear,tt0095253\nFvYtbd7YE3k,1988.0,3,10,2011,The Great Outdoors,Accidental Waterskiing,tt0095253\nD7P4FYWHVYQ,1997.0,6,10,2011,Dante's Peak,Row Your Boat,tt0118928\nS1EsCWrUY84,1997.0,8,10,2011,Dante's Peak,The Bridge is Destroyed,tt0118928\nr421zjv-hoE,1997.0,9,10,2011,Dante's Peak,Crossing the Lava River,tt0118928\nvfIUYDjo8WM,1997.0,10,10,2011,Dante's Peak,The Volcano Explodes,tt0118928\nIUbn5ss8j9c,1977.0,6,10,2011,Slap Shot,The Hansons Play Dirty,tt0076723\ndXBUdCvqpNg,1997.0,9,9,2011,The Game,\"Happy Birthday, Nicky\",tt0119174\nW7WmhkO_GWI,1941.0,1,9,2011,Sullivan's Travels,With a Little Sex In It,tt0034240\nzhnB6vIifkc,1941.0,6,9,2011,Sullivan's Travels,Sully and the Girl,tt0034240\nnyn04CxGBLs,1984.0,5,10,2011,Firestarter,Tranquilized,tt0087262\nfCjsUxbNmIs,1989.0,1,12,2011,Back to the Future Part 2,We Don't Need Roads,tt0096874\nL-IoFdCv_Hs,1984.0,5,10,2011,Cloak & Dagger,Hiding in the Trunk,tt0087065\nduT6QvbGAls,1984.0,6,10,2011,Cloak & Dagger,The Three-Fingered Lady,tt0087065\nKXYxfwVioeE,2002.0,2,10,2011,About a Boy,Marcus Kills a Duck,tt0276751\nzi-vtjCN9Rw,2004.0,4,10,2011,Friday Night Lights,\"You're Gonna Seriously Fly, Son\",tt0390022\nWOjsnY1P7lk,2004.0,3,10,2011,Friday Night Lights,Boobie Goes Down,tt0390022\nMo_AVIt369k,2000.0,5,10,2011,Bring It On,Cheer Sex,tt0204946\n9UMX4dGRYEw,2000.0,6,10,2011,Bring It On,A Brush Off,tt0204946\n_2LMj-4PtdU,2004.0,5,10,2011,Friday Night Lights,Boobie's MRI,tt0390022\nNj-F4OvzyLM,2000.0,8,10,2011,Bring It On,Sparky the Choreographer,tt0204946\nf_Pc2_cTQnk,2004.0,6,10,2011,Friday Night Lights,Boobie Cleans Out His Locker,tt0390022\nAOh4PeDIkWs,1984.0,7,10,2011,Cloak & Dagger,Real Bullets,tt0087065\nMDC-al-lnoE,1984.0,8,10,2011,Cloak & Dagger,Jack Flack Dies,tt0087065\nGD-EP3ucPNk,2004.0,7,10,2011,Friday Night Lights,Creepy Boosters,tt0390022\n6Wx2sfjX0qs,2000.0,10,10,2011,Bring It On,Bring It!,tt0204946\nd68yRIE9OvQ,1989.0,2,12,2011,Back to the Future Part 2,\"Hill Valley, 2015\",tt0096874\nUk280jVuH1w,2005.0,1,6,2011,Batman Begins,The Will to Act,tt0372784\nKmn7tIRUImY,1984.0,9,10,2011,Cloak & Dagger,Airport Showdown,tt0087065\n59BWCEaowC4,1989.0,4,12,2011,Back to the Future Part 2,\"Welcome Home, Jennifer\",tt0096874\nxtRnl5zHKxc,1998.0,3,11,2011,BASEketball,Got Milk,tt0131857\n4sRzks3eR-M,1984.0,10,10,2011,Firestarter,Charlie Burns Everything,tt0087262\nq5K1fm56gI8,1984.0,4,10,2011,Firestarter,Torching the Agents,tt0087262\nLixsNtGM8tc,1984.0,7,10,2011,Firestarter,Wood Chip Test,tt0087262\nTklrBmHo7Do,1952.0,2,8,2011,Singin' in the Rain,Make 'Em Laugh,tt0045152\n4lQ_MjU4QHw,1980.0,3,7,2011,The Shining,All Work and No Play Scene,tt0081505\nHZNy5irM2YE,1952.0,1,8,2011,Singin' in the Rain,Shadow Sparring,tt0045152\nUWjXERbOr70,2003.0,5,5,2011,The Texas Chainsaw Massacre,Slice of Revenge,tt0324216\naz5NDvQ41ys,2003.0,4,5,2011,The Texas Chainsaw Massacre,Slaughterhouse,tt0324216\ncAM7skQKVk8,2003.0,2,5,2011,The Texas Chainsaw Massacre,Bring It,tt0324216\nLmrLiS3ZWxo,2001.0,5,5,2011,Rush Hour 2,Egyptian Style,tt0266915\n5kI7hvWF_BM,2001.0,4,5,2011,Rush Hour 2,Money Fight,tt0266915\nYFTbj6DJbGQ,2001.0,3,5,2011,Rush Hour 2,Belle of the Ball,tt0266915\n2qKoFdPJ4rI,2001.0,2,5,2011,Rush Hour 2,Massage Parlor Fight,tt0266915\nEvCuX-oY4_c,2001.0,1,5,2011,Rush Hour 2,Bamboo Scaffold,tt0266915\nI-AhUVGpGoU,2008.0,1,4,2011,Get Smart,I Gotta Get That Out,tt0425061\nSDls-ZJDLXE,2008.0,2,4,2011,Get Smart,A Little Something Extra,tt0425061\npLKZ0Adi70c,2004.0,2,5,2011,Troy,Hector Saves Paris,tt0332452\n6GN20jud6MI,2008.0,4,4,2011,Get Smart,Golf Course Gauntlet,tt0425061\nr2ucpHgHo1g,2004.0,4,5,2011,Troy,Hector Kills Achilles?,tt0332452\nHG8iPGFvfxU,2008.0,3,4,2011,Get Smart,That's Not Cheese,tt0425061\nf8zZksymCzw,2007.0,4,4,2011,P.S. I Love You,The Last Letter,tt0431308\n-BiLCJxpqi4,2004.0,1,5,2011,Troy,Is There No One Else?,tt0332452\nvTp6sSlv_aY,2007.0,2,4,2011,P.S. I Love You,Pills For Rudeness,tt0431308\nd0xC6yVjU9Q,2007.0,3,4,2011,P.S. I Love You,Nobody's Gerry,tt0431308\nFz9HnTVx52g,2007.0,1,4,2011,P.S. I Love You,From Beyond the Grave,tt0431308\ndAzXib-thq8,2006.0,2,5,2011,We Are Marshall,Shouldering Responsibility,tt0758794\nLkyMbgKtCAs,2006.0,1,5,2011,We Are Marshall,!,tt0758794\nMDwNSR0QmBY,2007.0,5,5,2011,Hairspray,You Can't Stop the Beat!,tt0427327\nhL71tkydKPM,2007.0,4,5,2011,Hairspray,Last Minute Entry,tt0427327\nrRLP7r6OuYE,1983.0,1,4,2011,Risky Business,What the F***,tt0086200\n6NvDZa8hWSs,1983.0,4,4,2011,Risky Business,Washing the Car,tt0086200\nI5cS0_op1IE,1983.0,3,4,2011,Risky Business,Guido's Livelihood,tt0086200\ntdcUxHh3tAc,2007.0,3,5,2011,Hairspray,Timeless Couple,tt0427327\n1B8juGIsDl8,2007.0,1,5,2011,Hairspray,The Corny Collins Show,tt0427327\n8O8_FMhW9dY,1983.0,2,4,2011,Risky Business,Porsche Getaway,tt0086200\nUhkYrd0Sg3o,2007.0,2,5,2011,Hairspray,Naturally Stiff,tt0427327\nmCdbIDiib5U,1973.0,3,3,2011,Enter the Dragon,Lee vs. Han,tt0070034\nwxrmK9esHpc,1973.0,2,3,2011,Enter the Dragon,Master Fighter,tt0070034\n1R5Li-f1IP8,1973.0,1,3,2011,Enter the Dragon,Lee vs. O'Hara,tt0070034\nP9pa_8-WdlU,2004.0,3,5,2011,Starsky & Hutch,Do It,tt0335438\n6c_H45kt1_8,2008.0,9,9,2011,The Dark Knight,The Hero Gotham Deserves,tt0468569\nuBX2b-zback,2004.0,5,5,2011,Starsky & Hutch,Too Much Car,tt0335438\nE6N0yJRAAAM,2004.0,4,5,2011,Starsky & Hutch,Caddy Hack,tt0335438\ndJma8pVAvH4,2008.0,8,9,2011,The Dark Knight,Two Face,tt0468569\nWj6vEYwwJFI,2004.0,2,5,2011,Starsky & Hutch,What Bad Men Do,tt0335438\nFzx9OpDH8HY,2008.0,7,9,2011,The Dark Knight,The Battle for Gotham,tt0468569\nHIcIIBTJA6o,2008.0,6,9,2011,The Dark Knight,Agent of Chaos,tt0468569\n2-1pev4OEJY,2004.0,1,5,2011,Starsky & Hutch,Little Knife Thrower,tt0335438\n0uSOiu_WUDw,2008.0,5,9,2011,The Dark Knight,\"Good Cop, Bat Cop\",tt0468569\nmKl11EzMTAE,2008.0,4,9,2011,The Dark Knight,Hit Me!,tt0468569\nWm_Z34Fyww8,2008.0,3,9,2011,The Dark Knight,Always Smiling,tt0468569\njrIc1SlA7O8,2008.0,2,9,2011,The Dark Knight,Why So Serious?,tt0468569\nf_XHjqABQQA,2008.0,1,9,2011,The Dark Knight,Kill the Batman,tt0468569\nRNP4caHnknA,2000.0,1,5,2011,The Cell,Boy With a Horse,tt0209958\nU5VW0XTFBZo,2005.0,4,4,2011,March of the Penguins,First Steps,tt0428803\nAe_PWQfCW1Q,2005.0,3,4,2011,Family Reunion,March of the Penguins,tt0455612\n5FtZqXd6IJo,2005.0,2,4,2011,March of the Penguins,Life Under the Sea,tt0428803\nLGAfIx5VQ_M,2005.0,1,4,2011,March of the Penguins,Protecting the Egg,tt0428803\nuiy-sT9JgRo,2007.0,4,4,2011,The Bucket List,He Saved My Life,tt0825232\ndnIPfZIKYPc,2007.0,5,6,2011,Ocean's Thirteen,Breaking Bank,tt0496806\niioBwO6vnEs,2007.0,3,4,2011,The Bucket List,Find the Joy,tt0825232\noOFm9UaRuik,2007.0,2,4,2011,The Bucket List,Not Fun Anymore,tt0825232\n1RIOFzhufm8,2007.0,1,4,2011,The Bucket List,Skydiving,tt0825232\nfOSuCsgJ26M,1982.0,7,10,2011,Blade Runner,Shoot Straight,tt0083658\nUKAi_Zpp0_E,2007.0,6,6,2011,Ocean's Thirteen,Terry On Oprah,tt0496806\nHU7Ga7qTLDU,1982.0,9,10,2011,Blade Runner,Tears in the Rain,tt0083658\nL1YN9QMKpBo,1982.0,4,10,2011,Blade Runner,Time to Die,tt0083658\n4lj2ISTrfnE,1982.0,3,10,2011,Blade Runner,\"\"\"Retiring\"\" Zhora\",tt0083658\nNwJEb3vJvWY,1982.0,2,10,2011,Blade Runner,Somebody Else's Memories,tt0083658\nQs_PHrILn6k,2002.0,2,3,2011,Blade 2,Reinhardt Gets Split,tt0187738\nEFpsSudUhQU,2002.0,3,3,2011,Blade 2,Blade vs. Nomak,tt0187738\nuU6LIbi7NZQ,2002.0,1,3,2011,Blade 2,Motorcycle Fight,tt0187738\nEmkAdY2AT-U,2007.0,4,6,2011,Ocean's Thirteen,Abigail Gets Played,tt0496806\nKTuGK7Ob2QI,1998.0,1,3,2011,Blade,Vampire Killer,tt0120611\nj1tkwdfz7n4,2007.0,3,6,2011,Ocean's Thirteen,Basher Distracts Bank,tt0496806\nnQZd4bNOSAI,2007.0,2,6,2011,Ocean's Thirteen,Watching Oprah,tt0496806\njRYdVUtQs-8,1998.0,3,3,2011,Blade,Deadly Serum,tt0120611\nfFan929BTPE,2007.0,1,6,2011,Ocean's Thirteen,Rusty the Scientist,tt0496806\nPTEskprXZOg,1998.0,2,3,2011,Blade,vs. Frost,tt0120611\nNAGgo5AtHzE,2004.0,3,6,2011,The Aviator,Not One for Tears,tt0338751\noXjCj86GB-I,2004.0,1,6,2011,The Aviator,Fine Pair of Misfits,tt0338751\nKH5Q12Yb5u8,2004.0,5,6,2011,The Aviator,Beverly Hills Crash,tt0338751\nC3Um4x6M8ew,2004.0,4,6,2011,The Aviator,Show Me the Blueprints,tt0338751\ntYRzkKtCRuY,2008.0,1,6,2011,Sex and the City,Big Proposes,tt1000774\nVa4gTqyLJeQ,2008.0,6,6,2011,Sex and the City,Big's Romantic Proposal,tt1000774\nBkwke3UCbCQ,2008.0,5,6,2011,Sex and the City,Charlotte's Water Breaks,tt1000774\nmnUfDpO87Y0,2008.0,4,6,2011,Sex and the City,Charlotte Poughkeepsies,tt1000774\nH-O-z5gELUY,2008.0,3,6,2011,Sex and the City,Carrie's Humiliated,tt1000774\nTk5XmgEEHoc,2008.0,2,6,2011,Sex and the City,Colorful Girl Talk,tt1000774\nmXp99jJtyII,2006.0,4,4,2011,Blood Diamond,Danny Says Goodbye,tt0450259\nygU3F1ho3gg,2006.0,3,4,2011,Blood Diamond,A Good Boy,tt0450259\nielkiD8w-M8,2004.0,6,6,2011,The Notebook,I'll Be Seeing You,tt0332280\n3nc6Tf26afI,2004.0,5,6,2011,The Notebook,The Best Love,tt0332280\nE1I0hAxGFXw,2004.0,4,6,2011,The Notebook,What Do You Want?,tt0332280\nEemLsTG5fX8,2004.0,3,6,2011,The Notebook,It's Not Over,tt0332280\nOLSHQCAncC4,2004.0,2,6,2011,The Notebook,The Breakup,tt0332280\nd7_F5P5PygM,2004.0,1,6,2011,The Notebook,\"If You're a Bird, I'm a Bird\",tt0332280\n9hT-t19CJ4E,1989.0,3,10,2011,Christmas Vacation,Bend Over and I'll Show You,tt0097958\nvQLNS3HWfCM,1939.0,2,8,2011,The Wizard of Oz,We're Not in Kansas Anymore,tt0032138\naopdD9Cu-So,1939.0,7,8,2011,The Wizard of Oz,I'm Melting!,tt0032138\nz2itQkiQUOE,1939.0,6,8,2011,The Wizard of Oz,The Cowardly Lion,tt0032138\n4IErqIMLwtQ,1939.0,3,8,2011,The Wizard of Oz,The Ruby Slippers,tt0032138\nN7LxzkB0imk,1996.0,1,5,2011,Hide and Seek,Twister,tt0116529\nbhGWWY1nCWw,1996.0,4,5,2011,Twister,Debris on the Road,tt0117998\nW59U7VWHZ1Y,2002.0,4,6,2011,Two Weeks Notice,Not in a Good Way,tt0313737\naG55Y-zpxyo,2002.0,2,6,2011,Two Weeks Notice,Twisty Bobcat Pretzel,tt0313737\nLj4adAAHa68,2001.0,5,5,2011,King Kong,Training Day,tt0360717\noY7QReO1WOQ,2001.0,2,5,2011,Training Day,Standoff,tt0139654\nfMxA90YU2Jw,2002.0,1,6,2011,Two Weeks Notice,Lucy Gives Notice,tt0313737\nib3Hn188Jwc,2004.0,1,5,2011,The Polar Express,All Aboard Scene,tt0338348\n77tn-KPS334,2004.0,5,5,2011,The Polar Express,Believer's Bell Scene,tt0338348\ndofECCtTfaM,2004.0,4,5,2011,The Polar Express,The First Gift of Christmas Scene,tt0338348\nuKwwpmC02IQ,2004.0,3,5,2011,The Polar Express,When Christmas Comes Scene,tt0338348\nCht63QybtiA,2004.0,2,5,2011,The Polar Express,Back on Track Scene,tt0338348\nHFduVeNEWSA,2001.0,5,5,2011,Ocean's Eleven,Personal Effects,tt0240772\nQb2tjzecJX4,2001.0,4,5,2011,Ocean's Eleven,Benedict Gets Duped,tt0240772\nbCIXKzeaAAs,2001.0,3,5,2011,Ocean's Eleven,A Thief and a Liar,tt0240772\n1mJf24luhuo,2001.0,2,5,2011,Ocean's Eleven,Reeling in Reuben,tt0240772\nm6ux3-Z03B4,2001.0,1,5,2011,Ocean's Eleven,Calling Out the Bluff,tt0240772\nDCnvuyK6ur8,2000.0,3,5,2011,Miss Congeniality,You Think I'm Gorgeous,tt0212346\nkdW1wdpEP4Y,2000.0,2,5,2011,Miss Congeniality,Bagel Prayer,tt0212346\n9pXTSPcZEWE,2000.0,5,5,2011,Miss Congeniality,The Crowning Moment,tt0212346\n34Rit1AnlVg,2007.0,2,5,2011,Harry Potter and the Order of the Phoenix,Expecto Patronum!,tt0373889\nj5B70NEq_fY,2000.0,4,5,2011,Miss Congeniality,Brief Shining Moment,tt0212346\nhw6GwhfNl7U,2007.0,5,5,2011,Harry Potter and the Order of the Phoenix,Harry's Inner Battle,tt0373889\naEBLrCGhTVM,2000.0,1,5,2011,Miss Congeniality,Gracie's New Assignment,tt0212346\nOsI3mSgTFnk,1994.0,5,5,2011,Interview with the Vampire: The Vampire Chronicles,New Companion,tt0110148\nu8QMY9JKlDk,2007.0,4,5,2011,Harry Potter and the Order of the Phoenix,Dumbledore Vs. Voldemort,tt0373889\nc9cV7bFKMNQ,1994.0,1,5,2011,Interview with the Vampire: The Vampire Chronicles,Becoming A Vampire,tt0110148\n5xzDAgFrnf8,1994.0,4,5,2011,Interview with the Vampire: The Vampire Chronicles,Back from the Dead.,tt0110148\neFKh6cYmQ4M,2007.0,3,5,2011,Harry Potter and the Order of the Phoenix,Fireworks,tt0373889\nLIm8HfwnmVE,1994.0,3,5,2011,Interview with the Vampire: The Vampire Chronicles,Forever Young,tt0110148\n8_MpC8PcPQ0,2007.0,1,5,2011,Harry Potter and the Order of the Phoenix,I Must Not Tell Lies,tt0373889\nfzAKSbtYBMU,2004.0,3,3,2011,Ocean's Twelve,The Best,tt0349903\n3lfTLYMECtc,2004.0,2,3,2011,Ocean's Twelve,Lie Hard,tt0349903\nifYK21xsVtI,1998.0,5,6,2011,The Wedding Singer,Punched Out,tt0120888\nTPsW2FYprfI,1998.0,6,6,2011,The Wedding Singer,Grow Old With You,tt0120888\n_HCS9AJ0rEI,1994.0,5,5,2011,The Mask,That's a Spicy Meatball Scene,tt0110475\nYGEL2muzPEE,1994.0,4,5,2011,The Mask,Frisking the Mask Scene,tt0110475\nW_gYRFDb8_A,1994.0,3,5,2011,The Mask,Oscar-Winning Performance Scene,tt0110475\nT1TrFjLKryc,1994.0,2,5,2011,The Mask,Balloon Animals Scene,tt0110475\nQP2uPNypJlE,1994.0,1,5,2011,The Mask,Time to Get a New Clock Scene,tt0110475\nbgXlHdBRpjs,1998.0,5,5,2011,Rush Hour,Curtain Call,tt0120812\n-eIH1jFAGlY,1998.0,4,5,2011,Rush Hour,Death Fall,tt0120812\nmwHOh0YPpBU,1998.0,3,5,2011,Rush Hour,Fighting to Preserve,tt0120812\nOofNBvo-ABU,1998.0,2,5,2011,Rush Hour,Partners in Crime Fighting,tt0120812\n0Rl9Cxc7uZA,1998.0,1,5,2011,Rush Hour,Do You Understand the Words That Are Coming Out of My Mouth?,tt0120812\n9eGwOuyKu1U,2005.0,5,5,2011,Harry Potter and the Goblet of Fire,He's Back,tt0330373\n2bujRZhOt9w,2005.0,4,5,2011,Harry Potter and the Goblet of Fire,Harry Battles Voldemort,tt0330373\nW7Ic9rZ9OQw,2005.0,3,5,2011,Harry Potter and the Goblet of Fire,The Dark Lord Rises,tt0330373\nwsl5fS7KGZc,2005.0,1,5,2011,Harry Potter and the Goblet of Fire,Mad-Eye Moody's Class,tt0330373\nleQiIU7fzPs,2005.0,2,5,2011,Harry Potter and the Goblet of Fire,Tower Chase,tt0330373\n_3F3eCypuko,1984.0,6,6,2011,Gremlins,Gizmo to the Rescue,tt0087363\nKBaCHull47I,1984.0,5,6,2011,Gremlins,The Deagle Has Landed,tt0087363\nsz8itUBsCTk,1984.0,4,6,2011,Gremlins,A Tree With Teeth,tt0087363\nu1QIbENq66w,1984.0,3,6,2011,Gremlins,in the Kitchen,tt0087363\no2vw_iYBAyY,1984.0,2,6,2011,Gremlins,Multiplying Mogwai,tt0087363\nkgfgiLlW-yw,1984.0,1,6,2011,Gremlins,Billy Meets Gizmo,tt0087363\nAu-u9RWe0Jo,1973.0,5,5,2011,The Exorcist,Take Me!,tt0070047\nlpyg94OzHK0,1973.0,4,5,2011,The Exorcist,The Power of Christ Compels You,tt0070047\nsZazSFEHfg8,1973.0,1,5,2011,The Exorcist,A Harrowing House Call,tt0070047\nbSxuXQCEC7M,1973.0,3,5,2011,The Exorcist,Head Spin,tt0070047\n8QjrBjdb2T8,1973.0,2,5,2011,The Exorcist,Projectile Vomit,tt0070047\nWDTRyjMnDOk,2006.0,3,5,2011,The Departed,Costello Smells a Rat,tt0407887\nOcr0aNwQvVg,2006.0,5,5,2011,The Departed,I Erased You,tt0407887\ngsGm2Ohl7x8,2006.0,4,5,2011,The Departed,Officer Down,tt0407887\nNEwspgySg5s,2006.0,2,5,2011,The Departed,I Want Some Pills,tt0407887\nqVwoeNk9554,2006.0,1,5,2011,The Departed,Someone Else Every Day,tt0407887\nbcokL59jeqU,1974.0,10,10,2011,Blazing Saddles,\"Boy, Is He Strict\",tt0071230\nfLpmswBKVN4,1974.0,9,10,2011,Blazing Saddles,\"Mugs, Pugs and Thugs\",tt0071230\nIZT7xLjxuhs,1974.0,4,10,2011,Blazing Saddles,\"Welcome, Sheriff\",tt0071230\nqVhCNgct9JQ,1974.0,8,10,2011,Blazing Saddles,Applause for the Waco Kid,tt0071230\nVPIP9KXdmO0,1974.0,5,10,2011,Blazing Saddles,The Campfire,tt0071230\nWSS4dOe8Ul8,1999.0,2,7,2011,Austin Powers: The Spy Who Shagged Me,Zip It!,tt0145660\ng5AixBKy7b4,1999.0,7,7,2011,Austin Powers: The Spy Who Shagged Me,Fat Bastard's Vicious Cycle,tt0145660\nbu83p1i0D1A,1999.0,6,7,2011,Austin Powers: The Spy Who Shagged Me,Little Bugger,tt0145660\ndzvTHhWDjIg,1999.0,5,7,2011,Austin Powers: The Spy Who Shagged Me,Just the Two of Us,tt0145660\nz-5iCygFd9M,1999.0,3,7,2011,Austin Powers: The Spy Who Shagged Me,The Three-Question Rule,tt0145660\nfBlAMqoJ5BA,1999.0,1,7,2011,Austin Powers: The Spy Who Shagged Me,\"The Evils on \"\"Springer\"\"\",tt0145660\nLXekH_8vXnM,1999.0,4,7,2011,Austin Powers: The Spy Who Shagged Me,Get in My Belly!,tt0145660\n2NdymhVOFF8,1997.0,5,5,2011,Austin Powers: International Man of Mystery,A Simple Request,tt0118655\nEJR1H5tf5wE,1997.0,2,5,2011,Austin Powers: International Man of Mystery,One Million Dollars,tt0118655\npYwgIQaq9qY,1997.0,4,5,2011,Austin Powers: International Man of Mystery,Support Group,tt0118655\nZywVV0T5DcA,1997.0,3,5,2011,Austin Powers: International Man of Mystery,Dr. Evil Meets Scott,tt0118655\nonK1BeyHSZ4,2007.0,3,4,2011,Fred Claus,Elf Secret Service,tt0486583\nOfsHMuWn95I,2007.0,4,4,2011,Fred Claus,Brothers Anonymous,tt0486583\n3a49kwfRAtI,2007.0,2,4,2011,Fred Claus,Santa Fight,tt0486583\nbD_rWCvgDy8,2007.0,1,4,2011,Fred Claus,Fred's Advice,tt0486583\nfmT8JstRohg,1999.0,4,4,2011,Analyze This,Ben Sobeleone,tt0122933\nGXwVNAl1fN8,1999.0,3,4,2011,Analyze This,Father Issues,tt0122933\nShQD76s4WZk,1999.0,1,4,2011,Analyze This,You Did Nothing For Me,tt0122933\nzEE7xzwogMc,1999.0,2,4,2011,Analyze This,Hit the Pillow,tt0122933\ncDpI6Zzy-vo,2006.0,2,5,2011,300,This Is Where We Fight Scene,tt0416449\nTofiEsdr7YE,2005.0,6,6,2011,Batman Begins,The Ending,tt0372784\nEGWfothiSU8,2005.0,5,6,2011,Batman Begins,Train Fight,tt0372784\n5v5JjUZpAPk,1985.0,2,6,2011,The Color Purple,All My Life I Had to Fight,tt0088939\nWJB3hqUsHDE,2005.0,4,6,2011,Batman Begins,Tumbler Chase,tt0372784\nSH4PhFHyC5s,1985.0,5,6,2011,The Color Purple,God Loves Admiration,tt0088939\nyqmreq-dV84,1985.0,4,6,2011,The Color Purple,Celie Stands up to Albert,tt0088939\nbQbH32KcjG0,1985.0,6,6,2011,The Color Purple,Reunited.,tt0088939\nHcREWDplGBo,2005.0,1,5,2011,Charlie and the Chocolate Factory,I Don't Care,tt0367594\nIy2GKyD2IoQ,1985.0,3,6,2011,The Color Purple,Hell No,tt0088939\nRmISVHxjcAI,2005.0,4,5,2011,Charlie and the Chocolate Factory,Bad Nut,tt0367594\nyY8Pf2rgP5s,1985.0,1,6,2011,The Color Purple,Sisters Separated,tt0088939\nckjDSzjU-cQ,2005.0,5,5,2011,Charlie and the Chocolate Factory,Charlie's Choice,tt0367594\nMLZZos7_fYo,2002.0,5,5,2011,Austin Powers in Goldmember,Nice To Mole You,tt0295178\nnHByIEUb37Y,2006.0,5,5,2011,300,Remember Us Scene,tt0416449\nMUn6X9lpOZE,2005.0,3,5,2011,Charlie and the Chocolate Factory,Violet Turns Violet,tt0367594\nkmgRv2V_7P4,2006.0,4,5,2011,300,Divine Power Scene,tt0416449\nz4nPyI-zA74,2002.0,4,5,2011,Austin Powers in Goldmember,Hard Knock Life,tt0295178\nuBrvKhAs4S4,2006.0,3,5,2011,300,The Warrior King Scene,tt0416449\nMAviyhpn7Lg,2005.0,2,5,2011,Charlie and the Chocolate Factory,Chocolate Gloop,tt0367594\n4Prc1UfuokY,2006.0,1,5,2011,300,This Is Sparta! Scene,tt0416449\nNIaiW1XrzxA,2002.0,3,5,2011,Austin Powers in Goldmember,Naughty English,tt0295178\nJaBh-B6F2sk,1989.0,2,5,2011,Batman,A Hot Time in Old Town,tt0096895\ncQ_dL_IMPP4,2003.0,5,5,2011,Elf,The Angry,tt0319343\ncbQZ8GK2usU,2003.0,4,5,2011,Elf,Snowball Fight,tt0319343\nRfvKvTlQHuw,1989.0,5,5,2011,Batman,Who Made Who,tt0096895\n9tIcnydrwFY,2003.0,3,5,2011,Elf,You Sit on a Throne of Lies,tt0319343\nfNMtHosai08,2003.0,2,5,2011,Elf,Buddy Meets His Dad,tt0319343\ndJU1SZIfK3Y,2003.0,1,5,2011,Elf,Buddy Realizes He's Human,tt0319343\nEFkIZ-Zf32Y,2002.0,2,5,2011,Austin Powers in Goldmember,Preparation H,tt0295178\n9OufCgFZCyU,1989.0,4,5,2011,Batman,Dance With the Devil,tt0096895\nwZ30Qxv0vtI,1989.0,3,5,2011,Batman,Who is this Guy?,tt0096895\n9XoPQEOY7L8,2002.0,1,5,2011,Austin Powers in Goldmember,It's Britney Spears!,tt0295178\n63iuB-cSY7Q,1989.0,1,5,2011,Batman,You Can Call Me Joker,tt0096895\niqLDCIZ1DIs,2005.0,3,6,2011,Batman Begins,The Doctor Isn't In,tt0372784\nZmdWPv5R_J8,2005.0,2,6,2011,Batman Begins,The Night Stalker,tt0372784\n0atATbXbQ9g,1985.0,4,5,2011,The Goonies,It's Our Time Down Here,tt0089218\nROhFRFmHexM,1985.0,2,5,2011,The Goonies,Chunk Spills His Guts,tt0089218\nkr_z37TgQO4,1985.0,1,5,2011,The Goonies,Truffle Shuffle,tt0089218\nKu1Xc6NT6m8,1994.0,6,6,2011,Dumb & Dumber,Two Lucky Guys,tt0109686\nOnrORwEG4lQ,1985.0,3,5,2011,The Goonies,The Wishing Well,tt0089218\nrEWaqUVac3M,1942.0,5,6,2011,Casablanca,\"Here's Looking At You, Kid\",tt0034583\nk_uINM_XI6I,1942.0,4,6,2011,Casablanca,I Still Love You,tt0034583\n6AVMcJa77PM,1994.0,4,6,2011,Dumb & Dumber,The Toilet Doesn't Flush,tt0109686\nmK10Ze-mcQo,1942.0,3,6,2011,Casablanca,I Don't Know the Finish,tt0034583\nbuRR_o85qhQ,1942.0,2,6,2011,Casablanca,The Last Time,tt0034583\nIBJGHvt7I3c,1942.0,1,6,2011,Casablanca,Secret Sentimentalist,tt0034583\nylRqJapI0wQ,1994.0,3,6,2011,Dumb & Dumber,Atomic Peppers,tt0109686\nRD2YJrvd71Y,1994.0,1,6,2011,Dumb & Dumber,Urine Trouble,tt0109686\n-9IgLueodZA,1994.0,5,6,2011,Dumb & Dumber,There's a Chance,tt0109686\nTQXuazYI_YU,1989.0,9,10,2011,Christmas Vacation,Clark Freaks Out,tt0097958\nJdyo4evwMxU,1989.0,10,10,2011,Christmas Vacation,Squirrel!,tt0097958\nqTwXudZTWQA,1989.0,8,10,2011,Christmas Vacation,Turkey Dinner,tt0097958\nLSqb4e8mUd4,1989.0,7,10,2011,Christmas Vacation,Eddie's Sewage,tt0097958\nbSdm_eA1Css,1989.0,6,10,2011,Christmas Vacation,Downhill Fast,tt0097958\nfKncYRJQRC8,1989.0,5,10,2011,Christmas Vacation,Cousin Eddie and Snot,tt0097958\nGxGkcC1VrhU,1989.0,4,10,2011,Christmas Vacation,A Bit Nipply Out,tt0097958\ngTKpKBzd7jg,1989.0,2,10,2011,Christmas Vacation,The Griswold Family Christmas Tree,tt0097958\nozksR8QLWzM,1989.0,1,10,2011,Christmas Vacation,Eat My Rubber,tt0097958\nxkzkmyOln6I,2005.0,5,6,2011,Wedding Crashers,Motorboating,tt0396269\nzE7PKRjrid4,1999.0,2,9,2011,The Matrix,Blue Pill or Red Pill,tt0133093\nVKhEFVAoScI,2004.0,2,5,2011,Harry Potter and the Prisoner of Azkaban,Dementor on the Train,tt0304141\n9-DOuX-Pi6o,2006.0,2,5,2011,Superman Returns,In Love With Superman,tt0348150\nePRYhNNdzwk,1993.0,1,4,2011,Grumpy Old Men,Not-So-Friendly Neighbors,tt0107050\nkTnEyRLMvqk,1993.0,2,4,2011,Grumpy Old Men,Remote Control,tt0107050\nKTyLJftgoc0,1993.0,4,4,2011,Grumpy Old Men,The Horizontal Mambo,tt0107050\nWcZ62d0PATY,1993.0,3,4,2011,Grumpy Old Men,Cold Revenge,tt0107050\nS4AmLcBLZWY,1994.0,2,6,2011,Dumb & Dumber,The Most Annoying Sound in the World,tt0109686\n5kiNJcDG4E0,1942.0,6,6,2011,Casablanca,The Beginning of a Beautiful Friendship,tt0034583\nbr-ljup5Bow,2004.0,2,6,2011,The Aviator,Dinner with the Hepburns,tt0338751\ngiEV8fvrDd8,2004.0,6,6,2011,The Aviator,The Spruce Goose Flies,tt0338751\nlW1vzy6psfE,2006.0,2,4,2011,Blood Diamond,Rescuing Dia,tt0450259\n82IXVFuJllI,2006.0,1,4,2011,Blood Diamond,God Left This Place,tt0450259\n_j9qAhXfNAU,2004.0,1,3,2011,Lost in Translation,Ocean's Twelve,tt0335266\nE-PIidaqCyU,1997.0,1,5,2011,Austin Powers: International Man of Mystery,Throw Me a Frickin' Bone Here Scene,tt0118655\nyNvuIuWY3Sw,1939.0,4,6,2011,Gone with the Wind,Leaving for Battle,tt0031381\nc8EodW2ossg,1939.0,5,6,2011,Gone with the Wind,Abasing Herself,tt0031381\nM4-DIldIX6U,1939.0,3,6,2011,Gone with the Wind,You Need Kissing Badly,tt0031381\n2zomyWfPgjE,1939.0,2,6,2011,Gone with the Wind,Bidding for Scarlett,tt0031381\nlrhNPS4nbmQ,1939.0,1,6,2011,Gone with the Wind,Scarlett Meets Rhett,tt0031381\nGQ5ICXMC4xY,1939.0,6,6,2011,Gone with the Wind,\"Frankly My Dear, I Don't Give a Damn\",tt0031381\nNJk-yQadw_U,1991.0,4,5,2011,Robin Hood: Prince of Thieves,Call Off Christmas,tt0102798\n8ucelPNuKdk,1999.0,1,5,2011,The Green Mile,One Horny Motherf***er,tt0120689\nxqbb1FCX6wM,1999.0,5,5,2011,The Green Mile,The Execution,tt0120689\n083OMBnPA3c,1999.0,4,5,2011,The Green Mile,It Was A Kindness You Done,tt0120689\nrRNj9qpTgOc,1999.0,3,5,2011,The Green Mile,Infected with Evil,tt0120689\npLbS8f9IplI,1999.0,2,5,2011,The Green Mile,Miracle Worker,tt0120689\n22gw_64AGKM,2000.0,2,5,2011,The Cell,Demon King,tt0209958\nNlP9f8i-4c4,2000.0,4,5,2011,The Cell,Carl's Torture Chamber,tt0209958\nnCuYBELZjpY,2000.0,3,5,2011,The Cell,Cell Shocked,tt0209958\n8G40_afpkGA,2000.0,5,5,2011,The Cell,He Always Finds Me,tt0209958\n12DQN8oxKTs,2003.0,4,4,2011,The Last Samurai,The Last Ride,tt0325710\nIV7jcaXQgds,2003.0,3,4,2011,The Last Samurai,Village Ambush,tt0325710\nA-Cj7v3rTWg,2003.0,2,4,2011,The Last Samurai,Ninja Attack,tt0325710\nrSB9VJcwQsc,2003.0,1,4,2011,The Last Samurai,Never Say Die,tt0325710\nKY_pTVfz3gU,2003.0,6,6,2011,The Matrix Reloaded,Beat the Bullet,tt0234215\nwSPAPeO17Zk,2003.0,5,6,2011,The Matrix Reloaded,Truck Stop,tt0234215\n_b6S8tpQtdw,2003.0,4,6,2011,The Matrix Reloaded,Freeway Fight,tt0234215\nx1srznPx1qA,2003.0,3,6,2011,The Matrix Reloaded,Hall of Pain,tt0234215\nGSprkzio_pE,2003.0,2,6,2011,The Matrix Reloaded,The Burly Brawl,tt0234215\nFRvxzdkj_YI,2003.0,1,6,2011,The Matrix Reloaded,Seraph's Test,tt0234215\nl8WyXv7hQvE,2002.0,9,9,2011,The Lord of the Rings: The Two Towers,The Ents Attack Isengard,tt0167261\nsL9vUjm2mIE,2002.0,8,9,2011,The Lord of the Rings: The Two Towers,Gandalf's Charge,tt0167261\nk72rrPUEDdk,2002.0,7,9,2011,The Lord of the Rings: The Two Towers,Helm's Deep,tt0167261\nF3GFYKIwJ9Y,2002.0,6,9,2011,The Lord of the Rings: The Two Towers,Warg Battle,tt0167261\nO_aziIIp8U8,2002.0,5,9,2011,The Lord of the Rings: The Two Towers,Sneaky Little Hobbitses,tt0167261\nY6wE2W3ag1g,2002.0,4,9,2011,The Lord of the Rings: The Two Towers,Healing the King,tt0167261\nExU37Xz5Q0Q,2002.0,3,9,2011,The Lord of the Rings: The Two Towers,Gandalf Returns,tt0167261\nuFzAxAEMwrY,2002.0,2,9,2011,The Lord of the Rings: The Two Towers,Treebeard,tt0167261\nePzOShBS9uU,2002.0,1,9,2011,The Lord of the Rings: The Two Towers,Gollum,tt0167261\nrBtzudk40pE,2003.0,9,9,2011,The Lord of the Rings: The Return of the King,You Bow to No One,tt0167260\nY0F2c4VgxW8,2003.0,7,9,2011,The Lord of the Rings: The Return of the King,Don't You Let Go,tt0167260\nyIUdnWv0MP0,2003.0,5,9,2011,The Lord of the Rings: The Return of the King,The Witch King,tt0167260\n6vry0ijbJVE,2003.0,8,9,2011,The Lord of the Rings: The Return of the King,The Fall of Sauron,tt0167260\n132WIdxvgdo,2003.0,6,9,2011,The Lord of the Rings: The Return of the King,Legolas Slays the Oliphaunt,tt0167260\ndwT9BEh7qZ0,2003.0,4,9,2011,The Lord of the Rings: The Return of the King,Ride for Ruin,tt0167260\nNQp6RWrHxRE,2003.0,3,9,2011,The Lord of the Rings: The Return of the King,Spider Slayer,tt0167260\nySQ8WJNGp0U,2003.0,2,9,2011,The Lord of the Rings: The Return of the King,Born A King,tt0167260\nmxJtFvNByKw,2001.0,5,8,2011,The Lord of the Rings: The Fellowship of the Ring,An Encouraging Thought Scene,tt0120737\n0L-Zqr0eyDg,2001.0,3,8,2011,The Lord of the Rings: The Fellowship of the Ring,Rescued By Arwen,tt0120737\niBSLBl-64fk,-1.0,8,8,2011,The Lord of the Rings: The Fellowship of the Ring,\"My Brother, My Captain, My King Scene\",tt0120737\nVlaiBeLrntQ,2001.0,7,8,2011,The Lord of the Rings: The Fellowship of the Ring,You Shall Not Pass,tt0120737\nVi5pdd7xHNI,2001.0,6,8,2011,The Lord of the Rings: The Fellowship of the Ring,Cave Troll,tt0120737\nbdFKfRmmbk0,2001.0,4,8,2011,The Lord of the Rings: The Fellowship of the Ring,Council of the Ring,tt0120737\n2L0A2D7zV7A,2001.0,2,8,2011,The Lord of the Rings: The Fellowship of the Ring,The Black Rider,tt0120737\nqFUISvEZ3aw,1985.0,5,5,2011,The Goonies,Sloth's Baby Ruth,tt0089218\nx4QJwGTOny8,2001.0,1,8,2011,The Lord of the Rings: The Fellowship of the Ring,The Way of Pain,tt0120737\nXUxAGsL8b0o,2006.0,5,5,2011,Superman Returns,Superman's Fall,tt0348150\nC2gQo-0VW5c,2006.0,4,5,2011,Superman Returns,Bullet Stopper,tt0348150\njP8dC8E6Emk,2006.0,3,5,2011,Superman Returns,Not One of Them,tt0348150\n6aWxJ0cxD8c,2006.0,1,5,2011,Superman Returns,Plane Heroic,tt0348150\nkb7T9oK0tF8,2002.0,5,5,2011,Harry Potter and the Chamber of Secrets,Basilisk Slayer,tt0295297\nBfcfTmh8RKo,2002.0,4,5,2011,Harry Potter and the Chamber of Secrets,Riddle Unraveled,tt0295297\nrwzNpFWiOTg,2002.0,3,5,2011,Harry Potter and the Chamber of Secrets,Pesky Pixies,tt0295297\ncPsIU9BTbcQ,2002.0,2,5,2011,Harry Potter and the Chamber of Secrets,Reckless Flying,tt0295297\nw3-V_82VwQQ,2002.0,1,5,2011,Harry Potter and the Chamber of Secrets,\"Dobby, The House Elf\",tt0295297\nf1N8-L5cuWQ,2001.0,5,5,2011,Harry Potter and the Sorcerer's Stone,The Last Temptation,tt0241527\nF3YR1-gJjWM,2001.0,4,5,2011,Harry Potter and the Sorcerer's Stone,Catching the Snitch,tt0241527\n_v5g_GFm1W0,2001.0,3,5,2011,Harry Potter and the Sorcerer's Stone,Toilet Troll,tt0241527\nFeK3AM7NZzQ,2004.0,1,5,2011,Harry Potter and the Prisoner of Azkaban,The Knight Bus,tt0304141\n50N2eB0JI80,2001.0,1,5,2011,Harry Potter and the Sorcerer's Stone,Harry's Birthday,tt0241527\nGVhi1qkt5I4,2004.0,4,5,2011,Harry Potter and the Prisoner of Azkaban,The Feminine Touch,tt0304141\nTsNv4tohJ7Y,2004.0,3,5,2011,Harry Potter and the Prisoner of Azkaban,\"Like Father, Like Son\",tt0304141\nn1TqCGEBdLw,2004.0,5,5,2011,Harry Potter and the Prisoner of Azkaban,The Silver Stag,tt0304141\n9JVNdsyjU5A,2001.0,2,5,2011,Harry Potter and the Sorcerer's Stone,Fame Isn't Everything,tt0241527\n4NcH64kh_24,1998.0,5,5,2011,Lethal Weapon 4,Hospital Wedding,tt0122151\nDlwuwiBLAmM,2004.0,3,5,2011,Million Dollar Baby,Get Home,tt0405159\nEOyH6NwoQL4,2004.0,5,5,2011,Million Dollar Baby,I Killed Her,tt0405159\no4SUU7XoRl8,2004.0,4,5,2011,Million Dollar Baby,Maggie's Final Request,tt0405159\njcXErUFrA68,2004.0,2,5,2011,Million Dollar Baby,Maggie Victorious,tt0405159\nUtz-RZwQpyE,2004.0,1,5,2011,Million Dollar Baby,The Way It's Going to Be,tt0405159\nA_S1oRHSH80,1998.0,4,5,2011,Lethal Weapon 4,A Watery End,tt0122151\n_P9ZorzeECg,1992.0,3,5,2011,Lethal Weapon 3,Damsel in Distress,tt0104714\nkNpbZ_oVHxE,2000.0,5,5,2011,The Perfect Storm,Christina's Dream,tt0177971\nu-bWIkGa0QA,1998.0,3,5,2011,Lethal Weapon 4,Laughing at the Dentist's,tt0122151\nCeSQfi3eLhs,2000.0,4,5,2011,The Perfect Storm,Down with the Ship,tt0177971\nW9Tdw5nG4dQ,2000.0,3,5,2011,The Perfect Storm,The Giant Wave,tt0177971\nWsAVIpTwAP4,1998.0,2,5,2011,Lethal Weapon 4,The Cell Phone Conspiracy,tt0122151\nFM-wfXvcbAY,2000.0,2,5,2011,The Perfect Storm,Freeing the Anchor,tt0177971\n8jd1NKyFQJI,1998.0,1,5,2011,Lethal Weapon 4,Messing With Leo,tt0122151\nO-ydNrUWOik,2000.0,1,5,2011,The Perfect Storm,A Swordboat Captain,tt0177971\n3A3iNVaLod4,1992.0,2,5,2011,Lethal Weapon 3,Scaring the Jaywalker,tt0104714\ncy-OKLuMikk,1992.0,1,5,2011,Lethal Weapon 3,Grab the Cat,tt0104714\nhImAmM5-Fpg,1995.0,3,5,2011,Se7en,John Doe Surrenders,tt0114369\nlWZU3pPZWig,1995.0,2,5,2011,Se7en,Apathy,tt0114369\nVN9icwiN6io,1995.0,5,5,2011,Se7en,Vengeance and Wrath,tt0114369\nK49NaFf6i_E,1992.0,5,5,2011,Lethal Weapon 3,Free Fall,tt0104714\n8vq_k0yqq88,1995.0,4,5,2011,Se7en,Setting the Example,tt0114369\ncNOsA4nH8yE,1992.0,4,5,2011,Lethal Weapon 3,Comparing Battle Scars,tt0104714\nh8m69o_1PoQ,1995.0,1,5,2011,Se7en,The Sloth Victim,tt0114369\nsmHHU_ONdGU,2007.0,5,5,2011,Rush Hour 3,Tonight I Lose a Brother,tt0293564\nFXKx1sX8ESs,2003.0,5,5,2011,The Matrix Revolutions,Crashing The Matrix,tt0242653\n9rySfLgqHJc,2003.0,3,5,2011,The Matrix Revolutions,Last Kiss,tt0242653\nRP7pZNhYm3c,2003.0,2,5,2011,The Matrix Revolutions,Saviors of Zion,tt0242653\njk3Z-MVoUg4,2003.0,1,5,2011,The Matrix Revolutions,Blaze of Glory,tt0242653\nYBQLEhzlYX8,2003.0,4,5,2011,The Matrix Revolutions,It Ends Tonight,tt0242653\nPry7CGd09jU,2007.0,4,5,2011,Rush Hour 3,Get Your Own Damn Cab,tt0293564\n7DfNc-wxnBM,2007.0,3,5,2011,Rush Hour 3,Lee's Deadliest Fan,tt0293564\nkmjblNu2_6M,2007.0,1,5,2011,Rush Hour 3,Carter vs. the Giant,tt0293564\naOg9IcxuV2g,1999.0,9,9,2011,The Matrix,A World Without You,tt0133093\nr_O3k-RpV2c,1999.0,3,9,2011,The Matrix,Waking from the Dream,tt0133093\nj6oBbBfhgYE,1999.0,1,9,2011,The Matrix,Living Two Lives,tt0133093\nHQkSMJFJu4g,2007.0,2,5,2011,Rush Hour 3,Yu & Mi,tt0293564\nDMx-Az5Da4M,1999.0,8,9,2011,The Matrix,Subway Fight,tt0133093\n-wI4jJq98tU,1952.0,8,8,2011,Singin' in the Rain,Switch-a-Roo,tt0045152\n73ytL_HAwt8,1999.0,7,9,2011,The Matrix,Rooftop Showdown,tt0133093\nZQaBYT4MxWU,1999.0,6,9,2011,The Matrix,The Lobby Shootout,tt0133093\nXO0pcWxcROI,1999.0,5,9,2011,The Matrix,There Is No Spoon,tt0133093\n_UmaFTEIZ84,1952.0,7,8,2011,Singin' in the Rain,Dancing in the Rain,tt0045152\nO4yuhvccQog,1999.0,4,9,2011,The Matrix,Virtual Combat,tt0133093\nB0asbGJbLKc,1952.0,6,8,2011,Singin' in the Rain,Singing in the Rain,tt0045152\nWg-UpYglAEw,1991.0,5,5,2011,Robin Hood: Prince of Thieves,Rescuing Marian,tt0102798\nqu4v5hB1dKk,1952.0,5,8,2011,Singin' in the Rain,Good Morning,tt0045152\nm_1yILWMqFA,1991.0,3,5,2011,Robin Hood: Prince of Thieves,Readying the Troops,tt0102798\nfLWrnVuT4Is,1991.0,2,5,2011,Robin Hood: Prince of Thieves,Take it Back,tt0102798\nB42mhJ4DY4I,1991.0,1,5,2011,Robin Hood: Prince of Thieves,It Begins,tt0102798\nYMzV96LV6Cc,1952.0,4,8,2011,Singin' in the Rain,Out of Sync,tt0045152\nWDpipB4yehk,1980.0,7,7,2011,The Shining,Here's Johnny! Scene,tt0081505\nOTFCctdiS04,1952.0,3,8,2011,Singin' in the Rain,The Sound Barrier,tt0045152\nFLjixsUEj5E,1980.0,5,7,2011,The Shining,Redrum Scene,tt0081505\nyMRmV1Sj6j4,1980.0,4,7,2011,The Shining,Are You Concerned About Me? Scene,tt0081505\nCMbI7DmLCNI,1980.0,2,7,2011,The Shining,Come Play With Us Scene,tt0081505\nmV5UHLHdkY8,2003.0,3,5,2011,The Texas Chainsaw Massacre,Shooting the Sheriff,tt0324216\nPRtTmayVhKI,2003.0,1,5,2011,The Texas Chainsaw Massacre,You're All Gonna Die,tt0324216\nNjIszoXfvUQ,2004.0,5,5,2011,Troy,Achilles' Revenge,tt0332452\n1SnPHdvPPxM,2004.0,3,5,2011,Troy,Hector vs. Ajax,tt0332452\nEEm8IXm88Tw,2006.0,5,5,2011,We Are Marshall,Marshall Wins,tt0758794\nI3wUstDFDN0,2006.0,4,5,2011,We Are Marshall,Rise From These Ashes,tt0758794\nxM311HohUzA,2006.0,3,5,2011,We Are Marshall,We Cannot Lose,tt0758794\nBZSb0JCWcXk,1939.0,8,8,2011,The Wizard of Oz,There's No Place Like Home,tt0032138\nlouBM-Mix7s,1939.0,5,8,2011,The Wizard of Oz,Finding The Tin Man,tt0032138\nnauLgZISozs,1939.0,4,8,2011,The Wizard of Oz,If I Only Had a Brain,tt0032138\nPSZxmZmBfnU,1939.0,1,8,2011,The Wizard of Oz,Somewhere Over the Rainbow,tt0032138\ndYg-LtUxhcE,1996.0,5,5,2011,Twister,Against the Wind,tt0117998\neFU730P9f54,1996.0,3,5,2011,Twister,Obsessed,tt0117998\n2cDcwnVNoGc,2002.0,6,6,2011,Two Weeks Notice,The Stapler,tt0313737\n82aLTSlTL44,2001.0,4,5,2011,Training Day,Jake Shoots Alonzo,tt0139654\nIIjzneqtAZA,2001.0,3,5,2011,Training Day,Jake Pleads For His Life,tt0139654\nac9w0rKTRPM,2002.0,5,6,2011,Two Weeks Notice,What Baby?,tt0313737\n2dQgjrrEeHA,1996.0,2,5,2011,Twister,We Got Cows,tt0117998\nK53sv3l9DB4,2002.0,3,6,2011,Two Weeks Notice,Double Trouble,tt0313737\nHy37hjPUFWo,2001.0,1,5,2011,Training Day,Taking the Evidence,tt0139654\nNfrk2UdEOcQ,1998.0,4,6,2011,The Wedding Singer,Somebody Kill Me,tt0120888\nC_SFevIz1FI,1998.0,3,6,2011,The Wedding Singer,I Have the Microphone,tt0120888\nwAjHfBk-ZeY,1998.0,2,6,2011,The Wedding Singer,Things That Should've Been Said Yesterday,tt0120888\nlt9IJX0qI6o,1998.0,1,6,2011,The Wedding Singer,A Drunken Toast,tt0120888\n"
  },
  {
    "path": "data/metadata/descriptions.csv",
    "content": "imdbid,videoid,description\ntt1707386,Sv-BxH3SVS8,\"On the eve of the Rebellion, the players sing \"\"One Day More\"\".\"\ntt1707386,IsZdfna1LKA,Javert struggles with his conflicting morals and police duties.\ntt6398184,tdzX5AKWiDw,\"Violet Crawley passes on Downton's legacy to her granddaughter, Lady Mary Talbot.\"\ntt6398184,mycAsRhAr_M,Richard gives Thomas a memento before he leaves.\ntt6398184,WgXQnXPb-TA,\"Tired of the pompous Royal Staff, the Downton staff does away with them for the night.\"\ntt6398184,WgMhaDEPGXo,\"Sparks fly between Lucy and Tom, Downton's former chauffeur.\"\ntt6398184,HummNgSGn8k,The Crawley family welcomes King George V and Queen Mary to their estate.\ntt6398184,33uE1YctOf4,The Crawley family enjoys the ball while Tom and Lucy have a romantic dance of their own.\ntt6398184,bvl-DxX9N8g,The royal dinner goes smoothly until Molesley makes an announcement.\ntt6398184,E0BY209ZNEY,\"When members of the royal household arrive, the Downton servants quickly realize that they must fight for their responsibilities.\"\ntt6398184,q7S2ckr4IkM,Andy reveals to Daisy that he broke the boiler.\ntt6398184,frZrAIZrOI8,The Downton Abbey staff smirks their farewell to the Royal Staff.\ntt6324278,A-Ckh0slywY,Yi discovers a yeti on her roof.\ntt6324278,GU1zIn2BRN0,Everest defends the group by summoning a raging blizzard.\ntt6324278,0XLEGFSKVhs,Jin races to save his friends.\ntt6324278,eNCK08cInIE,The group disguises Everest as a yak to get him through a marketplace.\ntt6324278,LCj92toBBBE,The group escapes Burnish using Everest's magic powers.\ntt6324278,ViQZwRewYl8,Yi helps Everest escape from Dr. Zara's forces.\ntt6324278,Btywn5TiBNQ,Yi uses her magical violin to save Everest from Dr. Zara.\ntt6324278,chvjkV0jRh8,Yi plays her yeti-magic-infused magic violin.\ntt6324278,rRUVmTXpPyg,The group escapes from drones on a dandelion.\ntt6324278,GZiLvbk8fL8,Everest goes overboard making food for the group.\ntt1707386,88T3elu2wfE,Fantine's spirit leads Jean Valjean to paradise.\ntt1707386,ojoC-Kbzpo8,\"Marius, Éponine, Enjolras, and the Friends of the ABC inspire the crowd.\"\ntt1707386,deUgUoJ4z5I,Éponine sings of her unrequited love for Marius.\ntt1707386,ocDL_b6BRE4,\"Marius and Cossette pine for each other, leaving Éponine in the cold.\"\ntt1707386,0BM-Q3BDrkw,Marius mourns his fallen comrades.\ntt1707386,9jfRE_FljrE,Javert attacks Jean Valjean.\ntt1707386,iLN9GLRC5is,The Thénardiers swindle guests at their inn.\ntt1707386,ulJXiB5i_q0,Fantine sings of her past and the horror of her current desperation.\ntt0448115,Ok63vpXNhNc,Freddy helps Shazam test out his new superpowers.\ntt6343314,OfLhd_wJux8,Adonis seizes victory over Viktor.\ntt6343314,TGghm3K1NXQ,Adonis Johnson and Viktor Drago square off for the Heavyweight Belt.\ntt6343314,u0RqfETo2ok,\"Adonis Johnson fights Danny \"\"Stuntman\"\" Wheeler for the WBC World Heavyweight Championship.\"\ntt6343314,oaKjYmfK_Pw,Adonis tells Rocky he wants to accept the fight with Viktor Drago.\ntt6343314,oqGij9ylbAk,\"Ivan Drago trains his son, Viktor.\"\ntt5013056,QT2Anb4MY38,The Shivering Soldier fights Dr. Dawson for the boat's wheel.\ntt0448115,jbvQvJV_97M,Shazam tricks Envy into coming out of Dr. Sivana.\ntt0448115,UAYL8R2ZPuI,Shazam stops an armed robbery at a convenient store.\ntt0448115,g8pt9OoaPlY,Dr. Sivana demands Shazam's powers.\ntt0448115,AONuDilRd5k,Shazam inducts his family into superherodom.\ntt0448115,_nSQhWq7etg,The Shazam Family battles Dr. Sivana and the Seven Deadly Sins.\ntt0448115,-W8pOz1fsD0,Shazam brawls with Dr. Sivana and one of the Seven Deadly Sins.\ntt0448115,ChIQpmBLPAo,Dr. Sivia unleashes the Seven Deadly Sins.\ntt0448115,GC6ksHacdXI,\"Dr. Sivana gets a visit by Mister Mind, an alien worm.\"\ntt0109288,lsa5PDPgJmI,Darryl gives up his life as a hero and gets a job at McDonald's.\ntt0109288,MGBHNeYbsbg,\"Darryl delivers a woman's baby in an elevator, cementing himself as a true hero.\"\ntt0109288,-mXoZz1dqMQ,Blankman and Other Guy are honored for their heroism.\ntt0109288,Jgye_cEhfGQ,Blankman makes the community a safer place.\ntt0109288,-jpEsYBH3g4,Blankman and Kevin try to save Mayor Harris before the bomb goes off.\ntt0109288,ljAdSzBv0ug,\"While trying to stop a bank robbery, Blankman gets taken hostage.\"\ntt0109288,RFR3AJ-jE88,\"In his first attempt at vigilantism, Darryl saves a helpless woman in an alley.\"\ntt0109288,RLbry-3z8yQ,Blankman and Other Guy attempt to rescue Mr. Stone and Kimberly from Minelli.\ntt0109288,sM1I11qUM44,Blankman and Other Guy face off against Minelli and his goons.\ntt0109288,RxwUv1BcPwg,Blankman gives Kimberly a ride on his wacky motorcycle.\ntt6343314,sSc4Y4Z9lsk,Ivan Drago challenges Rocky's protege to a grudge match.\ntt6343314,9wCiCJ7KDs8,Adonis and Viktor have a rematch for the WBC World Heavyweight Championship.\ntt6343314,ttiEgVcV-Xo,\"Adonis proposes to his girlfriend, Bianca.\"\ntt6343314,b2MEP246DxY,Adonis refuses to go down without a fight.\ntt5013056,S3moqQqx3Nk,The Moonstone rescues soldiers from a burning oil slick.\ntt5013056,bgS0GPQhzHg,\"Royal Navy Commander Bolton spots \"\"home\"\" in the form of heroic naval and civilian vessels coming for rescue.\"\ntt5013056,TIEtN-jVDbg,The soldiers begin to succumb to despair.\ntt5013056,2W3KDB0yHYM,Stranded soldiers step out of their lines when dive bomber planes start dropping bombs.\ntt5013056,K9j6xEBFek4,Stukas bomb a British evacuation ship.\ntt5013056,c5mAaBl_qqk,A blind man imparts his meaning of victory to the soldiers as they board the train home.\ntt5013056,WygmbuU_78c,Commander Bolton is helpless to save the medical ship.\ntt5013056,X5_GpmLuea4,Tommy escapes a German ambush and arrives at the beach where thousands of troops are waiting to be evacuated.\ntt5013056,7ycVIGqnLO8,Farrier chases down a stuka over the English Channel.\ntt7343762,cg49Y3jpZsQ,Max flies the drone home before his dad notices it's missing.\ntt7343762,NYRHTYWWiGU,The boys make the mistake of trying to cross the highway.\ntt7343762,mlc2UyZdalQ,The boys consult the internet and Thor's parents' doll for kissing practice advice.\ntt7343762,4-BWFsE_TQE,\"When Benji refuses to sell drugs to the kids, Max takes matters into his own hands.\"\ntt7343762,i_Rupd9NU4E,The boys confront Hannah and Lily at a playground to get their drone back.\ntt7343762,_0gn0zQx4_s,\"The boys escape on bike from Lily, who chases after them on foot.\"\ntt7343762,cV9dlsOzyVc,A tired police officer doesn't want to deal with the boys' antics.\ntt7343762,mcerWHb94yo,\"Thor sings \"\"I Want to Know What Love Is\"\" as the boys grow apart.\"\ntt7343762,uQ_nGVp6x6U,The boys come across unknown artifacts after Thor steals Hannah's purse.\ntt7343762,UECge-Vi8VA,The boys make a deal with Claude.\ntt6095472,j71oHN1i2pU,The animals try to stop Zeta's super-weapon with Silver's super-string.\ntt6095472,DXFN60x3vP4,Red & Silver race for their lives in an ice-ball track.\ntt6095472,YvL_-Awg2gg,The hatchlings receive a slithering surprise.\ntt6095472,WzAHXnFWd5U,The gang's costume inadvertently triggers a dance-off.\ntt6095472,e198XToyAkk,\"Garry provides the team with inventive, finger-licking gadgets.\"\ntt6095472,A6d0qIZY3Hg,Red and Leonard gather a team of specialists.\ntt6095472,_bJYiiCvPW4,Zeta fires a giant ice ball at the angry birds' island.\ntt6095472,WavZVQM3U00,Things get messy in the bathroom when the eagle costume pees alongside one of Zeta's guards.\ntt6095472,480Hw45m9v8,Mighty Eagle admits the truth about his and Zeta's relationship.\ntt6095472,WncnbHD-JXI,Zeta struggles to make her frozen home livable.\ntt2709692,MmKlIGkxGyM,The Grinch gives back everything he stole from Whoville.\ntt2709692,eVmYZJQxawo,\"Dressed as Santa, The Grinch steals Christmas from Whoville.\"\ntt2709692,HGZotWs54rU,The Grinch has a difficult time collecting reindeer for his Christmas heist.\ntt2709692,NjUtH1NBFyY,The Grinch's plan to catapult Whoville's tree misfires in a big way.\ntt2709692,DmXp6Pm-uLI,The Whos' untainted joy and love causes an awakening within The Grinch.\ntt2709692,8coCtKWysGk,The Grinch tries to steal Santa's sleigh from the wrong house.\ntt2709692,BiPY5_H9EIw,Carolers hound The Grinch all the way through Whoville.\ntt2709692,ZhqHIrO4ePo,Fred and Max complicate the Grinch's plans.\ntt2709692,XMGoOSCbul0,The Grinch gets ready for a miserable day with Max's help.\ntt2709692,96pSGRvBg3I,The Grinch has a thrilling sleigh ride with Max & Fred.\ntt5109784,-r_-EnupRXo,Him takes Mother's heart to replace his crystal object.\ntt5109784,TcBlM3VLePM,The wake for Man and Woman's son brings a number of disorderly guests.\ntt5109784,nxc6kwBYFSM,\"Mother's baby is worshipped, ritualistically murdered and eaten.\"\ntt5109784,nXSfDMvXAxw,\"Mother grieves for her slaughtered son, but her husband gives her no comfort.\"\ntt5109784,eGXnEeW_KdA,\"Mother finds her house transformed into a brutal, authoritarian police state.\"\ntt5109784,rQ3Qokn9t_w,\"The fans riot, growing ever more radical and zealous.\"\ntt5109784,iJDnG2RAlzk,Mother burns down the house to end all her suffering.\ntt5109784,iPcAns5pKVw,Mother delivers her baby amid complete chaos.\ntt5109784,iGsce-w4TtY,Soldiers eradicate radicals in the battlefield of Mother's home.\ntt5109784,lyd4tC8LH1s,Man and Woman's sons have a Cain & Abel-esque fight.\ntt0077288,2LwWmJojqvM,Laurent and Andrea deal with their parents' reactions to the news of their engagement.\ntt0077288,tXhTaL04ByA,\"Albin is insulted by a man at the bar during his walking practice, so Renato confronts him.\"\ntt0077288,mBiT0g4TIYc,Simon is forced to dress in drag in order to escape the club undetected.\ntt0077288,cW7AkQihsa8,\"Renato teaches Albin how to act like a real man, starting with buttering his toast.\"\ntt0077288,db1o8mTCBXU,Albin decides to leave Renato for good.\ntt0077288,JYwvFPjJ7dM,Jacob acts the part of a real butler and Albin tries to act straight.\ntt0077288,6RbMqRpNqmY,Albin frustrates Renato with his distrust.\ntt0077288,RdpvBc4bahI,Albin's role as the mother comes to a screeching halt when the biological mother shows up.\ntt0077288,9lqv-q15y1c,Albin enters the room in drag and introduces himself as the mother.\ntt0077288,ATNjQgr7LXc,Renato tells Albin that Laurent is getting married to a woman.\ntt0069995,TfKw3gvxff0,John chases what he believes to be the ghost of his drowned daughter.\ntt0069995,ySINkZRkHi0,John spots a child who reminds him of his late daughter.\ntt0069995,LWz_6w0paEg,\"Heather repeats the name of Laura's husband, John, and goes into a trance.\"\ntt0069995,n-2Lxsj7sf4,A loose board crashes into John's scaffolding while he's restoring a church.\ntt0069995,JL_tj5M1o-c,John has a fatal premonition about his daughter.\ntt0069995,r0iSxOsPGl8,Heather foresees John's fate.\ntt0069995,HFTqyXV9Vio,Heather 'sees' Laura's deceased daughter.\ntt0069995,CMMzjgpnLGc,A drowning victim reminds John about his late daughter.\ntt0069995,D2JzjzTWMxw,John reports his missing wife to Inspector Longhi who believes him responsible.\ntt0069995,9zcAqShAXPo,John finally corners the ghost of his daughter.\ntt0070666,htWhh0DIFgk,Serpico witnesses the brutality of his superior officers.\ntt0070666,9_n15K7rv1Y,Officer Frank Serpico is rushed through the hospital in critical condition.\ntt0070666,POLkdKBw3LM,Serpico's stress takes a toll on his and Laurie's relationship.\ntt0070666,_1tCmEtAbnw,A disillusioned Serpico rejects the gold badge that he always wanted.\ntt0070666,4WXN2HQ7PQ0,\"Serpico testifies before the Knapp Commission, a government inquiry into NYPD police corruption.\"\ntt0070666,n0PS-QVcoJo,Serpico and Lombardo break up a police racket.\ntt0070666,lYu_8OE3sCE,Serpico's fellow officers don't back him up on a drug raid.\ntt0070666,0frXMGxB0Ko,Serpico watches in disbelief as Rubello assaults a man for bribe money.\ntt0070666,fluKR9XbEjQ,Serpico's fellow officers try to intimidate him into silence.\ntt0070666,mPDFATjS8l0,Serpico nearly gets shot by a fellow officer.\ntt2561572,-1W4xHNKvAk,Darnell pretends to be several made-up prisoners to help James prepare to go to jail.\ntt2561572,x4IKGG_2L6I,James and Darnell steal the master records from Martin's office.\ntt2561572,PvMk6sjZlTU,\"With help from Darnell, James uses Capoeira to defeat Martin's thugs.\"\ntt2561572,RaicjdiN8ag,\"Assuming he's been to prison because he's black, James asks Darnell to help him prepare for life behind bars.\"\ntt2561572,M7CL4l-bu68,\"Darnell makes up the story of how he was sent to prison, which is suspiciously similar to the plot of \"\"Boyz N the Hood\"\".\"\ntt2561572,ThIBEo7fsSQ,James shows that he's still worth a million dollars.\ntt2561572,dhJPm7NolLc,Darnell tries to teach James how to look tough in prison.\ntt0408306,MgL18hwJZ0A,\"After an explosive device fails, Hans uses a grenade to assassinate their target.\"\ntt0408306,ZvvQ3CLveAA,Avner and Robert assassinate Wael Zwaiter.\ntt0408306,PMdokZIn2_s,\"Avner and his team carry an assassination, using a telephone as an explosive.\"\ntt0408306,zuFtCz663GQ,Avner makes love to his wife while having a PTSD flashback.\ntt0408306,CToeYdx6SsU,Soldiers disguise themselves as local women to carry out a brutal raid.\ntt0408306,0bR6pUOhZo4,Avner and Ephraim discuss the assassinations they carried out together.\ntt0408306,WzmAy1QyIH8,\"Avner ponders the horrible attacks at the Munich Olympics, known as Black September.\"\ntt0408306,w3trh6DMpHI,Avner and Steve's last assassination goes awry when they hit the wrong target.\ntt0408306,YoAV0xF7A2U,Avner and Ali discuss their positions on the conflict between Israel and Palestine.\ntt0408306,azRJpVsJ7AM,Tensions mount when a group of PLO members enter Avner's safehouse.\ntt7547410,hck3C2VMRzk,Swiper chases down Dora and steals her map.\ntt7547410,YI8DWdXhg5Q,Dora helps Sammy warm up to doing her business.\ntt7547410,Ajh84X59SH4,\"Stuck in a flooding room, the group brainstorms a way out.\"\ntt7547410,Nhj2rSOUjwU,Dora parties with her friends over the end credits.\ntt7547410,rQABiLDqdVc,Parapata begins collapsing after Swiper angers the Gods.\ntt7547410,vXQlXYcAksI,\"After following Dora's team, Alejandro attempts to steal the treasure.\"\ntt7547410,4IbNz68R49c,Boots helps Dora and her friends escape from Viper.\ntt7547410,mPWo1Dsti3c,The group holds on for dear life when their hallway turns into a spike trap.\ntt7547410,8mDtsn0yrsA,\"Dora and her friends breathe in strange jungle spores, giving them vivid hallucinations.\"\ntt7547410,F9vKkW_NNjE,Dora and Boots search for the ancient Incan city of Parapata.\ntt0071402,36FYEbRBy48,A pair of muggers follow Paul from a diner into the subway.\ntt0116225,cj5Mp68u2tY,There are no winners on the deathball court.\ntt0116225,a3HOCIXroqQ,Snake rides the tsunami with the help of a Malibu surfer.\ntt0116225,BMlHiDzHkSk,Cuervo forces Snake to shoot hoops or die.\ntt0116225,8OilisaAv0I,Snake and Taslima find themselves trapped by the Surgeon General of Beverly Hills.\ntt0116225,0tro-o0fOk4,\"Double-crossed, Snake gets the ultimate revenge on the President and upon planet Earth.\"\ntt0116225,_X8bBE1M994,Snake and his crew dive-bomb Cuervo in the ruins of Disneyland.\ntt0116225,4N_0iP8TSRo,Snake takes on Cuervo only to get cornered by his men.\ntt0116225,40p6dkKil_8,Snake makes a desperate escape in a helicopter.\ntt0116225,WCf36CQxBfY,Snake speeds to not-so-sunny L.A. in a nuclear-powered submarine.\ntt0116225,aEIaR1nlEoo,'Map to the Stars' Eddie is a little more than a tour guide.\ntt0071402,DWFZ7v72HjA,Paul gives chase to the thug who shot him.\ntt0071402,syjdYGc2A20,A group of thugs follow Joanna and her daughter Carol home.\ntt0071402,S8avj5d8G6s,Paul arrives in Chicago and immediately sees a young woman being harassed.\ntt0071402,Kbb4g4m68sc,Frank tells Paul to leave town or face prosecution.\ntt0071402,MfV5DOQ9zac,Paul intervenes when he witnesses a mugging.\ntt0071402,b_Wpqni4yMQ,\"Walking alone at night, Paul comes face-to-face with an armed criminal.\"\ntt0071402,L8JRx-zXz7w,Three thugs corner Paul in Central Park.\ntt0071402,BYN41wGmP8U,Paul makes a pair of thieves pay for bringing a knife to a gun fight.\ntt0071402,RkaM5GL1LTc,Paul and Aimes watch a mock gunfight at Old Tucson.\ntt0092493,qDBjp7fdIVw,Sue and Walter open fire on the gangsters.\ntt0092493,pikL2Z9sykc,Rico's gang threatens Walter to smoke out Crocodile Dundee.\ntt0092493,2m2vmTtcCM8,Crocodile Dundee wins over street thugs with his knife throwing skills.\ntt0092493,QCkiT56VSR4,Crocodile Dundee gets double-crossed in the subway.\ntt0092493,crbN4daV5IU,Mick uses Sue's bra to lure Frank.\ntt0092493,J7kO-7jEveA,Luis starts a bushfire to corner Crocodile Dundee.\ntt0092493,qFKVhx9wBZ4,\"A \"\"crocodile\"\" apparently kills Walter.\"\ntt0092493,FX1FiZxQo7k,Crocodile Dundee sort of helps a would-be jumper.\ntt0092493,g05nAeO-uKY,Mick calls Australia's animals to scare Rico's gang.\ntt0092493,VmCRT88HTWE,Crocodile Dundee interrogates a gangster off the side of a building.\ntt0082782,6JfQ82WowC8,The Miner gets creative when offing Sylvia.\ntt0082782,f06qimixOOI,Hollis finds more than he is looking for while searching the mine for his friend.\ntt0082782,rS_HIFTV7wM,The Miner attacks Sarah and T.J. on a minecart.\ntt0082782,EodzQpkDFYo,\"While setting up a prank to scare dance attendees, Happy gets a surprise of his own.\"\ntt0082782,uifDWAJ6rBY,The Miner makes his mark on a lover.\ntt0082782,QfSL-PSHTkQ,Happy recounts the mining accident that has haunted Valentine Bluffs for decades.\ntt0082782,21Vg94SOqk0,The group makes their way up the service ladder only to have a grisly reunion with Howard.\ntt0082782,acZDS8WDtHs,Mabel get a deadly valentine from the Miner.\ntt0082782,Pku1UxtmkLM,Patty and Sarah race to escape the mine.\ntt0082782,7H3XPETdtmc,\"Fighting for their lives, T.J. and Sarah discover the Miner's identity.\"\ntt0070016,3kvqIswrPhg,Fern sings to Wilbur about the joy their friendship brings her.\ntt0070016,xE4RRKaCifU,Templeton enjoys a night at the fair.\ntt0070016,6HboqAtIPA0,Wilbur befriends three of Charlotte's daughters.\ntt0070016,kf1bu5sUXaU,Goose convinces Templeton to go to the fair.\ntt0070016,nCm4_MJstGQ,Charlotte reveals to Wilbur that she won't make it back home to the farm.\ntt0070016,SaRtVS1Fx1Q,A barbershop quartet sings in celebration of Wilbur at the county fair.\ntt0070016,rPh94cOW-MI,Templeton retrieves Charlotte's egg sac to take back to the farm.\ntt0070016,YHvTfLaOREg,\"A Goose prompts Wilbur to speak his first words and then, sing.\"\ntt0070016,__7NUrkFirA,Wilbur experiences fame after Charlotte writes a message about him in her web.\ntt0070016,qQjdOtebYns,\"After singing an optimistic song to Wilbur, Charlotte introduces herself.\"\ntt0073440,OqyvMY1fcr4,\"Winifred calms the crowd after the shooting with \"\"It Don't Worry Me.\"\"\"\ntt0073440,dbX-ekoWGWE,\"Each woman who has been involved with Tom hopes that his song is dedicated to her, but he only has eyes for Linnea.\"\ntt0073440,UVOJk8TFwpQ,A disparate group of people get in a huge car crash on the internstate.\ntt0073440,ktCIr_DMGOI,\"Barbara Jean's performance of \"\"My Idaho Home” ends with a fatal finale.\"\ntt0073440,Jrn-OprEMLI,Opal takes a deep analysis of a junkyard.\ntt0073440,hT_G4j4nI-8,\"After being booed offstage, Sueleen Gay emotionally agrees to strip in hopes of becoming a star.\"\ntt0073440,oNpeuCWJgCc,\"Haven Hamilton performs \"\"Keep a-Goin.\"\"\"\ntt0073440,eclUi6kVFcM,Tom rings up Linnea at her family's home.\ntt0073440,fO8fKHbg4kw,\"Wade insults singer Tommy Brown for acting too \"\"white\"\" and starts a fight.\"\ntt0073440,mr1bVID2qao,Barbara Jean succumbs to her stress and anxiety on stage.\ntt5952594,clDZPzwANeE,Myles tells Roman that the program - and Marquis' life - are coming to an end.\ntt5952594,hOH-oOCfsX4,Roman showcases Marquis to the auctioneers.\ntt5952594,2qyJ5r7Wink,\"Taking advantage of the damaged prison gates, Roman frees Marquis.\"\ntt5952594,_wkTjOjTafw,Roman struggles to train an ornery stallion.\ntt5952594,4ZiwLxnl_9k,Roman punches a horse after he is unable to get it under control.\ntt5952594,lGAADj8laqo,\"Roman apologizes to Martha, his daughter.\"\ntt5952594,cpZIiyp8juU,\"As a thunderstorm stirs up the horses, the convicts rally to get them inside.\"\ntt5952594,23uAYGDpS_I,Roman attends his first anger management session.\ntt0118688,xSJaxpJHf-s,Mr. Freeze traps Batman in his rocket bomb.\ntt0118688,erE6UlOi3E0,Batman and Robin's race for Mr. Freeze.\ntt0118688,UIxwyNULzdk,Robin is prepared for Poison Ivy's deadly kiss.\ntt0118688,MGJlq-gjQj8,Batman & Robin fight Poison Ivy & Bane.\ntt0118688,OE7aSKZDjTo,\"After thawing Gotham City, Batman deals with Mr. Freeze.\"\ntt5952594,Zbmc8C3GaC8,Roman invites Martha to the horse auction to reconcile with her.\ntt0118688,L6w-80CFfAs,Batman and Robin confront Mr. Freeze.\ntt0118688,gSG9bZu1NtM,Poison Ivy and Bane break Mr. Freeze out of Arkham Asylum.\ntt5952594,ZPDbP3gms30,\"Dan stabs Henry in the yard, and swiftly faces retribution.\"\ntt0118688,gnallHWgupY,Gothamites bid on Poison Ivy.\ntt0118688,k6dRH6fO3Xw,\"Mr. Freeze freezes Gotham while, Batman, Robin and Batgirl race to stop him.\"\ntt0118688,73Pm3rkTzb0,Poison Ivy gives Dr. Woodrue a kiss of death.\ntt2599716,es2xkV9Be20,Wei tells the story of how his attempted robbery led to Wu's sister's death.\ntt2599716,BrGfzBJW-Do,Wu takes Zhong's daughter Miao hostage and demands that Zhong kill himself in order to save her.\ntt2599716,IMlPpjJlzFA,\"Zhong tries to arrest Wu, but Wu tries to commit suicide.\"\ntt2599716,ZyXHxrg-zTA,Zhong fights one of Wu's henchmen in order to free three hostages.\ntt2599716,YbM3eHylkqY,\"After a brief bomb scare, Zhong is knocked out and taken hostage by Wu.\"\ntt2599716,o-HlGWzIqec,Wu tells Zhong about his past as an underground street fighter.\ntt2599716,yUVhyWMVx-A,\"The police tries to take out Wu, but the gangster is one step ahead.\"\ntt2599716,VP8hyYS5WjU,Zhong escapes Wu's clutches.\ntt2599716,2xbv4AnWS3Q,The SWAT team breaks into Wu's compound and frees the hostages while Zhong chases after the kidnapper.\ntt8079248,oMH9kIyIl1I,\"Jack screams his emotions into \"\"Help!\"\" as he sees Ellie with her new boyfriend.\"\ntt8079248,5EN4MulDX_A,Jack's Beatles covers take off in a hurry.\ntt8079248,5VgRuLQgeSE,\"Jack plays \"\"Yesterday\"\" for his friends, who've never heard of The Beatles.\"\ntt2599716,T16_n7praO4,Zhong tells Wu how his sister really died.\ntt8079248,Q_UdYBBk9XI,\"Jack performs \"\"Back in the USSR\"\" in modern-day Russia.\"\ntt8079248,XDlC8NyBBro,\"Jack repeatedly tries to play \"\"Let It Be\"\" for his parents.\"\ntt8079248,56v74zFOV58,Jack confesses to his fans and to Ellie.\ntt8079248,yyPkV_leKEY,Ellie pours out her heart to Jack.\ntt8079248,PIHPbvviS2w,Ed Sheeran challenges Jack to a songwriting competition.\ntt8079248,0ONU_H0EjIg,John Lennon inspires Jack to take action with his love and lies.\ntt8079248,SrvRkUwIFfk,Jack realizes his complicated feelings for Ellie.\ntt4532826,5Svd15hqUfs,Will leads the commoners against the Sheriff while Robin and Marion carry out an underground heist.\ntt5164214,FGWPKiI0YJQ,Debbie goes over the plan with her crew.\ntt5164214,1VEMit7JERo,Daphne reveals her part in the heist.\ntt4532826,_AElcgYtxpA,Robin & Little John steal a carriage to save Marion.\ntt4532826,0tnKF_qcXTo,Robin and Little John raid the Sheriff's coffers.\ntt4532826,V9GnOAfI4w4,Robin fights to save Little John's son from being beheaded.\ntt4532826,tMcUZSJ3xDY,Robin faces off against Little John.\ntt4532826,O9Q_5-rAw_k,Little John trains Robin into an unparalleled warrior.\ntt4532826,6hUiaXXj_Hg,Gisbourne pursues Robin and Marian over the rooftops.\ntt4532826,6LyYxpkxILE,Will is appointed the new Sheriff and issues an arrest warrant for Robin Hood.\ntt4532826,Oe_cBDzqBUI,Little John saves Robin and helps him hang the Sheriff.\ntt4532826,wTf4njh9TnE,Robin inspires the townsfolk to revolt against the Sheriff and take back their town.\ntt5164214,QsP5Y1-eUIM,Debbie reveals her masterful diversion to the crew.\ntt5164214,HiPRBsFF-zU,John investigates the missing diamond necklace.\ntt5164214,vBtG9eqgf2Q,Rose and Amita trick their way into replicating the necklace.\ntt5164214,CgwNoOUtr7s,\"Debbie tells the story of her patsy, Claude.\"\ntt5164214,7Wyjo_hrIbM,The crew works in tandem to steal the necklace at the Met Gala.\ntt5164214,iaTG4JflfqM,Debbie tells an insurance investigator she may know who stole the necklace.\ntt5164214,1CTjGKT-hDY,The crew splits and separates the necklace.\ntt5164214,OkBaZLq7gnU,Debbie cons her way into a hotel room.\ntt0058672,ZhGme4W06Kk,\"The gang arranges to lose the police at a wrestling match, but Elizabeth gets distracted by the hot Turkish wrestlers.\"\ntt0058672,Ua4pj7Sxy-8,Ali questions the validity of the evidence Arthur has acquired.\ntt0058672,5LvcBgWzjwc,Giulio descends into the museum to replace the real dagger with a replica without triggering the floor alarm.\ntt0058672,WbFri7eX_YA,\"Walter worries about changes in the plan, and Elizabeth tries to distract him.\"\ntt0058672,Izp0m24gYRU,\"After a bird sets off the alarm in the museum, Ali pieces together the details of the heist, and the gang ends up in prison.\"\ntt0058672,5hriUO428pw,\"When Arthur is unable to hold the weight of Giulio on the rope, Walter helps to pull him into position.\"\ntt0058672,vITX2N0hpYE,The gang decides to test Arthur by challenging him to drag the sofa using only his arms.\ntt0058672,JfsgeCwAYEM,\"At a traveling fair, Elizabeth spies a replica of a jewel-encrusted dagger and formulates a plan for stealing it.\"\ntt0058672,9ZBPZ4b5LRw,\"When Arthur refuses to cross the roof at night, Walter agrees to make the trip in broad daylight.\"\ntt0058672,55uK9Lg3TaY,\"Elizabeth and Walter visit mechanical expert Cedric, who demonstrates the museum's alarm system.\"\ntt0058672,hIokX-nhQd8,\"Arthur denies all involvement in terrorism, and agrees to work with the Turkish police to clear his name.\"\ntt2495118,6nmLldKD8fw,Ip Man spars with martial arts master Ng.\ntt2495118,nEAgLZRGV98,Rival martial arts gangs go after Master Ng during the Lion Dance ceremony.\ntt2495118,JKPRgXq8K1E,Wang Dong fights in a crooked boxing match.\ntt2495118,AvNNkDEqjdQ,Ip Man shows Leung Sheung his Wing Chun skills.\ntt2495118,Fo16J2G4bvU,Ip Man fights the Dragon.\ntt2495118,eUGtEOY5ZLE,Ip Man meets his former student.\ntt2495118,Y7DGxkezqSc,Ip Man and his disciples fight the Dragon.\ntt2495118,xjYdRu4FiyA,Emotions run high at Ip Man's New Year's celebration.\ntt2495118,vcURIKX8710,Ip Man's reputation grows after a street fight.\ntt2495118,kurx75GAz74,Ip Man puts a drunk in his place when he harasses Jenny.\ntt7634968,eLKbRagkB7M,Ali learns to 'share' with Will.\ntt7634968,hF_9GQFISow,Ali can't escape all the men's thoughts running through her head.\ntt7634968,taOda6ZwWyw,All hell breaks loose when a drunken Ali spills the beans at Mari's wedding.\ntt7634968,fhK8qpO-iD4,Ali passes up the promotion for success on her terms.\ntt7634968,08cPFt1GzBs,\"Ali makes advances on her neighbor, who isn't what she expected.\"\ntt7634968,Dys_AAhlGqU,Ali's co-workers present a racist sales pitch to Jamal and his father.\ntt7634968,pWfB7jrCgxk,Ali's manipulations come crashing down around her.\ntt7634968,aNbtnYXp9-k,\"After a night with Will, Ali does the walk of shame...and brings something with her.\"\ntt7634968,KDXK5R3f01I,Ali parties hard and wakes with a surprising new power.\ntt7634968,75k4CoAyT4I,Sparks fly between Ali and Will over pool.\ntt6017942,R76ux4iCRzI,The Cleaners explain why Eli was put on Earth.\ntt6017942,QKbA0PxeoaM,Taylor urinates on the floor in a gas station.\ntt6017942,zwLOflhZOBg,The mysterious Cleaners track their missing gun.\ntt6017942,4xtCQLbXDqY,Eli saves his brother Jimmy with the gun's explosive force.\ntt6017942,zjXn9UGZt4o,Lee beats up Jimmy for dancing with Milly.\ntt6017942,cXlRo6pJ9ig,Jimmy robs Hal's safe with disastrous consequences.\ntt6017942,7rYqBdJdnqo,Eli and Jimmy rob Lee at gunpoint.\ntt6017942,KTIw9F3TY88,The Cleaners freeze everyone but Elijah.\ntt6017942,gp6FX1H99NA,Eli retrieves a sci-fi gun from an abandoned warehouse.\ntt6017942,A5CndWt2xrY,Eli shows Jimmy and Milly the gun's power.\ntt0046754,_YMLnL33X78,\"At Maria's funeral, Oscar recalls the popularity Maria achieved upon the release of her first motion picture.\"\ntt0046754,PrBVgtAeNhE,Kirk and Alberto face off in an argument caused by their competing affections for Maria.\ntt0046754,6oxCZ2CyGII,Alberto berates Maria until he receives a slap from the Count.\ntt0046754,x_6ZpxB4xIc,Harry goes backstage at a Madrid nightclub to meet Maria and convince her to see a movie producer.\ntt0046754,8Q2WgdOSfms,Maria poses for a statue and Harry gives her away at her wedding to the Count.\ntt0046754,i07yEczcujQ,Oscar recalls the way Maria held off the advances of Alberto and everyone else.\ntt0046754,q9sjo2J6hIk,The Count makes eye contact with Maria while she's dancing.\ntt0046754,d35M7d-E_PY,\"Harry introduces Maria to Kirk and Oscar, who pitches her on the idea of movie stardom.\"\ntt0046754,EoikWLSsmRk,A drunken blonde accosts Maria at a party and demands to know which rich producer she plans to seduce.\ntt0046754,zUCWPJk-XHk,\"Faced with the news of Maria's father murdering her mother, Kirk and Oscar consider how best to keep the tragedy out of the headlines.\"\ntt0046754,cJyhEAxnQ-U,Maria recalls her childhood and explains to Harry why she hates to wear shoes.\ntt0046754,-VnQ_KpOBm4,\"At Maria's funeral, Harry recalls how he first came to meet the woman who became the famous actress.\"\ntt1001526,b2P-oU216V4,Megamind taunts Titan into a superpowered duel that gets hotter than he can handle.\ntt1001526,MuG157PWMWI,\"Titan forces Roxanne on a date, assuming she'll love him now that he's a superhero.\"\ntt1001526,UayJYYeMANA,\"Metro Man returns to fight Titan, but he's a little different than before.\"\ntt1001526,svwcgrDZVPw,Megamind inadvertently catches Metro Man in the ultimate deathtrap.\ntt2888046,-wwDqsmUkxQ,Ip Man fights Cheung Tin-chi for the future of Wing Chun.\ntt2888046,nl5l8Vn3Syc,Ip Man and Cheun Tin-chi use their impressive Wing Chun skills to fight off henchmen.\ntt1001526,a_hsjTExzbw,Megamind returns to rescue Roxanne from Titan.\ntt1001526,Q7r3HIkBJcg,Megamind tries to intimidate Roxanne with hackneyed tricks.\ntt1001526,GNAJWwqr8cM,Metro Man reveals how he faked death to become a terrible musician.\ntt1001526,dwufX9GKI_4,\"Megamind trains his new superhero, Titan.\"\ntt1001526,zeGRvFbWbz8,Megamind recounts the loneliness of his childhood.\ntt2888046,FIGj7z-7olo,Ip Man defends his son from Ma.\ntt2888046,Abb6BQgz0N4,Ip Man uses the one inch punch against Cheung Tin-chi.\ntt1001526,2Q7wnttjQgw,Megamind faces off against Titan for the last time.\ntt2888046,VMGKsJi34Ac,Ip Man fights Triad leader Ma and his men.\ntt2888046,O6Ap5AtXFbg,\"In order to gain recognition, Cheung Tin-chi fights a series of high profile martial artists.\"\ntt2888046,PhQsxcbo6gk,Ip Man fights Frank for three minutes.\ntt2888046,W-KxBQyVfc0,Bruce Lee tries to convince Ip Man to train him.\ntt2888046,b_fKzher8QQ,Ip Man is attacked by the Thai boxer while taking his wife home from the hospital.\ntt2888046,3WksbH_r10U,Ip Man saves the school principal from Ma and his henchmen.\ntt1860353,1SPMnqTUu1A,Chet encourages Turbo to finish the Indianapolis 500 before Guy Gagne does.\ntt1860353,VuUzda9kvJA,\"With his newfound powers, Turbo confronts the snails' nemesis.\"\ntt1860353,spy6L78o3-A,\"During a pit stop, Whiplash teaches Turbo a valuable lesson.\"\ntt1860353,_Hxk9-WNdGQ,Turbo ends up in the middle of a street race and gets a dose of Nitrous.\ntt1860353,gH1kstAfb5g,Turbo shows off his speed on the track.\ntt1860353,XUcN9bf_jP0,Tito brings Turbo and Chet to a snail race.\ntt1860353,pvACjy-tYFE,Turbo races for a tomato before the gardener and his lawn mower get it.\ntt1860353,JkrovwTh2rw,Turbo races to save Chet from crows.\ntt1860353,lJf8EW9800o,Turbo and Guy Gagne are neck-and-neck until a devastating crash.\ntt1860353,j0c_RQDfjSM,Whiplash challenges Turbo to a death-defying race.\ntt1386932,MTSpAVqgSso,Ip Man and the Twister square off in the ring.\ntt1386932,rTy_mgJIIrk,Ip Man musters his strength to fight Twister.\ntt1386932,-ZJZF6PuwxE,Ip Man acquires his first pupil by beating him in a fight.\ntt1386932,8TTWKlJdWVE,The Twister starts a riot when he insults Chinese Boxing.\ntt1386932,CyGOqLQTww0,Ip Man and Wong fight their way out of a dangerous situation.\ntt1386932,9aR0JkmZLk0,Hung Chun-nam is willing to fight Twister to the death.\ntt1386932,XkvSrgngUrw,Ip Man fights Master Hung Chun-nam.\ntt1386932,8kcd603M8vA,Ip Man frees his protege Wong from a gang of martial artists.\ntt1386932,SajgVNIRdn8,Ip Man competes against the local martial arts masters.\ntt1386932,rA8NAlaMgPo,Hung Chun-nam fights heavyweight champion the Twister.\ntt0097388,TXlioVAN41o,Tamara and Wayne try to entrap Mr. McCulloch.\ntt0097388,hktlkG0QuKY,Jason hunts for Rennie and Sean through a diner in New York City.\ntt0097388,b8t5kX7k0vQ,\"Eva discovers Tamara dead, then runs into Jason.\"\ntt0097388,CflcJ-HSA_Y,Jason chases Rennie and Sean onto the subway.\ntt0097388,VhYxVXimdIw,Jason kills two junkies who kidnapped Rennie.\ntt0097388,U74NUVSKuP0,Wayne discovers his classmates' corpses before being thrown to death by Jason.\ntt0097388,-vT2ztIXioo,Jason takes out two amorous teens on a boat.\ntt0097388,o6tz9pga4H4,Julius goes a full round with Jason.\ntt0097388,jtSnHOkSJxM,Rennie exterminates Jason and sees his hopeless child-form at the same time.\ntt0097388,Gdp4SEfQzy8,Jason drowns Charles in a barrel of sludge.\ntt1220719,AVxDyv1h9Pw,The factory workers fight against Jin's gang of ruffians.\ntt1220719,z1hLLDMkdlM,Master Jin mocks Ip Man's style.\ntt1220719,Kv9ygN2B8WU,Ip Man demands to fight ten Japanese martial artists.\ntt1220719,aXYTDZr_rmU,Ip Man accepts Master Lin's challenge to a private match.\ntt1220719,Z2SdWJJWe4I,Jin challenges the local masters.\ntt1220719,ciue6Puy53s,Japanese General Miura fights three Chinese martial artists at once.\ntt1220719,CqsCkhbCUr4,Ip Man fights General Miura for the honor of the Chinese people.\ntt1220719,gCRokIMgn1A,Ip Man agrees to train cotton factory workers.\ntt1220719,wBHZhBnXRew,Lin fights Japanese martial artists for bags of rice.\ntt1220719,kQosO29X9Bo,Ip Man defends his home from Japanese soldiers.\ntt8695030,zfyDw7VR3Hg,Ronnie beheads three murdered teens to prevent them from reanimating as zombies.\ntt8695030,PSW5cd8WVwM,Zombies raid the town while Hank and Bobby defend the hardware store.\ntt8695030,khX9fjqlf40,Ronnie tells Cliff how he knew everything would end badly.\ntt8695030,IuiKCwrTYO0,Zelda criticizes a zombie's fashion choices.\ntt8695030,4_SBdgdCwDA,\"The town drunk, Mallory O'Brien reanimates in the police station.\"\ntt8695030,bICHpdNbsmU,Zelda is forced to behead two zombies.\ntt8695030,AX-qpuOuDVg,Cliff and Ronnie are shocked when they see Zelda's exit strategy.\ntt8695030,btVoaFC1Aqk,Cliff and Ronnie take on a cemetery full of zombies.\ntt8695030,PNwyZMNu1gA,\"A pair of coffee-loving zombies kill two diner employees, Fern and Lily.\"\ntt8695030,iK03b228mmo,Cliff and Ronnie slaughter their way through the zombified town.\ntt0045920,sw1tJoYrs7M,John demands the aliens release the townspeople.\ntt0045920,sAvGdule3fA,The alien stalks John and Ellen after some mechanics go missing.\ntt0045920,i4NRgUeziqA,John Putnam discovers an alien space ship.\ntt0045920,8fHMMPXUE5I,Ellen and John watch a UFO fall from the sky.\ntt0045920,aGMiaQISzq0,The aliens break free of the mines and travel home.\ntt0045920,5ZCaXimXaxo,John is forced to fight the alien-possessed Ellen.\ntt0045920,eeWPnGsY-Xc,John sees the aliens for the first time.\ntt0045920,ge9ahoqNSLE,The townspeople form a posse to take out the alien-possessed Frank.\ntt0045920,VohdBtnMchg,Frank stops Ellen's car with nefarious intent.\ntt0045920,5lekLtatLl0,John and Ellen nearly hit an alien with their car.\ntt7958736,Xq5eXYCKUF8,\"Ma gets intimate with Andy in front of Maggie, his girlfriend.\"\ntt7958736,X36kqKTClAg,\"Maggie and Haley discover Genie, Ma's daughter.\"\ntt7958736,4F5AGPMRwgw,\"Ma buys booze for the teens, then calls Ben, one of their fathers.\"\ntt7958736,8a2aEHT7v54,\"Believing men to be dogs, Ma injects Ben with dog's blood.\"\ntt7958736,aL4dQo8iBLo,\"As the teens struggle to escape, Ma refuses to let go of them or the past.\"\ntt7958736,tBOZNOYMHEg,Ma takes revenge on Mercedes with her truck.\ntt7958736,O0PDEEFMUB4,Ma doesn't take crap from punk teens.\ntt7958736,sMLop6XZBEw,Ma responds to Maggie's insult with roofied shots.\ntt7958736,nqzkyfeS2Oo,Ma avenges her traumatic past upon her helpless captives.\ntt2639336,Rf02bF9xoaY,Greta drugs and kidnaps Frances.\ntt7958736,wTfbHs4HlPo,Ma's date takes a turn when Ben calls her out on hanging out with his underage son.\ntt2639336,2s7POrgTTzg,Greta shows up at Frances' work.\ntt2639336,0DPfRUFGaLE,Frances tries to escape during Greta's baking lesson.\ntt2639336,DawumJOyTOU,Greta shows Frances that she'll be sticking around for a long time.\ntt2639336,Nohgrc3m3z4,Greta drugs and attacks Inspector Cody with Chopin.\ntt2639336,fV4ApYBVa3w,Frances finds herself locked in Greta's box for badly behaved girls.\ntt2639336,c5IXZhctoV0,Erica.\ntt2639336,pwidWMvvsVc,Frances and Erica free themselves from Greta.\ntt2639336,qI14dmYhHGE,Frances finds the stash of purses that Greta uses to lure victims.\ntt2639336,INGcULi_c2U,Greta stalks Erica while taunting Frances.\ntt0068909,2WDIu8XbVD8,Cervantes transforms and reveals himself to the others as Don Quixote de La Mancha.\ntt0068909,ALWV_EA6x8I,\"Cervantes sings \"\"Man of La Mancha.\"\"\"\ntt0068909,v4U2mAwO6-4,Aldonza brings Don Quixote back by reminding him of his own inspirational words.\ntt0068909,bD8bl3omDIU,Everyone bands together in faith as Cervantes and Panza leave prison.\ntt0068909,14t7g8Yq8vE,\"Aldonza is irritated as the men sing her a song and call her \"\"Little Bird.\"\"\"\ntt0068909,oo7VlD66ISM,Don Quixote sings a song of inspiration and unwavering determination.\ntt0068909,QPDuZ_Wq7ZA,Don Quixote has a vision when he sees Aldonza and remembers Dulcinea.\ntt0068909,Pl8E_9CTS1Y,Don Quixote is hypnotized by the Knight of the Mirrors.\ntt0068909,0iUKZskQEso,Aldonza sings a song about her cynicism towards men and love.\ntt10720210,d0ZOz1i5-PE,Joe Croaker and Bartle Bee fight over a mushroom.\ntt10720210,g3kYdbqIwBE,Bartle Bee tries teaching Joe Croaker how to fly.\ntt10720210,MVo83HAnysQ,Bartle Bee tries to impress Cosmo with her nunchuck skills.\ntt10720210,LZ7Thv4ztjg,\"Joe Croaker and Cosmo play an intense game of Rock, Paper, Scissors.\"\ntt10720210,UhL24j9G3tc,Joe Croaker cheats to win a game of hide-and-seek.\ntt10720210,AxGMySJ6ySc,Flutterby tries to prove she is a better dancer than a toy.\ntt10720210,BCSe_CsI75w,Bartle Bee tries to help Joe Croaker lose some weight by getting him in shape.\ntt10720210,msWWI02CG-o,\"Using her nunchucks, Bartle Bee defends Cosmo from his disgruntled landlord.\"\ntt6212136,h7iSkEafJ0o,The couple's built-up tension erupts over the course of a dinner party.\ntt6212136,rIGsI26-Bg4,Franny gives Dan his Christmas present.\ntt6212136,fnV93ymcOME,Franny and Dan wake up together for the first time as newlyweds.\ntt6212136,dUMW1YRsWcY,Franny and Dan exchange their regrets and come to terms with their separation.\ntt6212136,l3H-hjiT6wg,Franny and Dan have a pregnancy scare.\ntt6212136,DqOU6NcRVe4,Franny gives into her feelings for Noah.\ntt6212136,oRX8ramIWwI,\"Noah tricks Franny into a \"\"date\"\" -which she thought was a company gathering.\"\ntt6212136,JcF3Ay4sjss,Franny fantasizes about her stalker boss.\ntt6212136,L38j8UMd4oM,Franny's mother consoles and gives her martial advice.\ntt6212136,IXyMkCDTmfA,Franny meets her skeevy bosses on her first day at work.\ntt7334528,YPXkzktz5oA,Dax has a recurring nightmare about the game that ruined basketball for him.\ntt7334528,06qgu4XoNL4,The group persuades Big Fella to join the team just like the old times.\ntt7334528,TvFCzrDQrD8,Uncle Drew reminds Dax of a game's true importance.\ntt7334528,etixMqUt8Ak,\"Dax loses his team to his rival, Mookie.\"\ntt7334528,FC9AZFwoLVg,Boots motions are suddenly rekindled when his old teammates visit him in his retirement home.\ntt7334528,K_NTydd3MqM,\"Betty Lou tries to prevent her husband, Preacher, from leaving.\"\ntt8426112,H4hjg6jAhOY,Joe fights a relentless Easter egg.\ntt8426112,M5DZzTtbV1g,Joe and Cosmo battle each other in the sky.\ntt7334528,7ML-9r4M_qk,The group goes from laughingstocks to it crowd through their dance-off.\ntt8426112,jXReN1Nzlws,Joe finds himself on a wild bouncy ball ride.\ntt8426112,0zHERbRFxTU,Cosmo wages a brutal nautical fight.\ntt8426112,aRav_8OWESA,Joe takes drastic measures to get fruit from the tree.\ntt8426112,kg3erAXOz34,Bartle Bee tries to stop Joe Croaker from hurting a rubber duck.\ntt7334528,6q2aPotJP7w,Dax's dream team doesn't fare well against a girls basketball team.\ntt7334528,bIpQoVucszI,Uncle Drew proves his extraordinary skills.\ntt7334528,93qTzU2bNh8,\"Dax tries to save a baby from being dunked by Preacher, but he gets baptized instead.\"\ntt8426112,MlUEy_9s0D0,Joe has some ill-behaved fun with a slingshot he found.\ntt8426112,Jye1gDePzgY,Joe gets into a sticky situation when he uses Cosmo's idea for getting on top of the tree.\ntt8426112,I7pEk2hB5OQ,Bartle Bee helps McBroom find the best assistant for carrying his dung balls.\ntt8426112,wNRvgeiaVXA,The insects team up to save Joe from a dinosaur balloon.\ntt6806448,uTOoWlYv95w,Hobbs and Shaw chase Brixton and Hattie down a building.\ntt6806448,CFqO1y01qjs,Hobbs rallies Samoa's warriors to battle Brixton.\ntt6806448,xcTK6uPPiAo,Hobbs and Shaw clobber goons as they head through the Eteon facility.\ntt6806448,sfgNK5f04iY,Hobbs and Shaw outsmart and overpower Brixton's chopper.\ntt6806448,1afS6fOeldc,\"Hobbs, Shaw, and Hattie escape from Brixton's base.\"\ntt6806448,W9Rb6wHuQXU,Hobbs and Shaw talk smack to Brixton before Hattie makes her move.\ntt6806448,R8JjTOsPHo4,Hobbs and Shaw have their final showdown Brixton.\ntt6806448,dapP5W153YE,Hobbs' brothers help him and Shaw chain themselves to Brixton's helicopter.\ntt6806448,v8CflcvxDJo,\"Brixton pursues Shaw, Hobbs, and Hattie on a motorcycle.\"\ntt6806448,qabChviGItk,Hobbs and Shaw face off Brixton.\ntt8426846,I7-GvXsr40k,The gang traps Joe after mistaking him for a monster.\ntt8426846,40NyqKryTUU,Joe becomes infatuated with a fantastic smelling plant.\ntt8426846,_myZeGUaveU,Cosmo and Bartle Bee race to save Joe as he rolls down a hill in a can.\ntt8426846,hv_mYkUEGko,Joe takes flight with the help of a kite.\ntt8426846,S0pCBDjC9Wk,Joe gets a fish bone stuck in his throat.\ntt8426846,J9Sz39odDjw,Smelling a certain plant makes Cosmo hyper aggressive.\ntt8426846,7ygAdJYS9m0,Joe steals Cosmo's car and cheese.\ntt0092605,jUkqho3OUos,\"When Verne tells J.C. that her well has run dry, she suffers a nervous breakdown.\"\ntt0092605,4YPxIpLpLRM,J.C. walks in to find Eve naked with a stranger and promptly fires her.\ntt0092605,rwr1IzFzjqA,\"J.C. interviews prospective nannies, settling on the innocent but clueless Eve.\"\ntt0092605,GEB8rnOevpY,\"While changing her tire, J.C. tells Dr. Cooper about her plan to get out of town, until he surprises her with a kiss.\"\ntt0092605,hgLkypdC6wo,J.C. struggles to change a diaper with little help from Steven.\ntt8426846,yjrvJkWU_5k,\"Joe tries his hand at bungee jumping, only to realize he's scared of heights.\"\ntt8426846,UGfYt2Ufipw,Joe struggles to get a stamp off of his butt.\ntt0092605,Mm9Y9JEmekY,\"J.C. meets Mrs. Atwood at the airport and picks up an \"\"inheritance\"\" in the form of her cousin's baby.\"\ntt0092605,_OaOalM_tcY,J.C. runs into some obnoxious yuppies at the general store and gets some ideas for her homemade baby food.\ntt0092605,tSpOMNC3WtQ,\"After discovering that the baby might be sick, J.C. takes her temperature the hard way.\"\ntt0092605,nAqJV2olXN0,Dr. Cooper kisses J.C. in the kitchen and she admits he's the only man who doesn't make her nervous.\ntt8426846,AryZBe8C69U,Joe gets stuck in a can.\ntt0092605,AAByjopE2GE,J.C. and Steven learn the hard way that babies don't care for linguini.\ntt0092605,adxwpSdHj90,\"J.C. opens up to Dr. Cooper about her sex life, unaware that he's a veterinarian.\"\ntt0092605,rlMANFZdCkk,\"Late for her lunch meeting, J.C. drops her new baby off at the coat check.\"\ntt7207158,fyOv0TB4lXU,Joe Croaker tries to fly like his insect friends.\ntt2872518,QtVEk0oKtkM,Sophia asks Mack to sit in divine judgment over sinners and his family.\ntt2872518,J90JKBCDzSs,Mack arrives at the shack to confront his child's murderer.\ntt2872518,gHJwn_JEazA,\"Mack meets Papa, Jesus, and Sarayu.\"\ntt2872518,536GqWYOHdI,Mack buries his daughter.\ntt2872518,t_9GTwEOdkY,\"Mack sees souls in heaven, including that of his abusive father.\"\ntt2872518,6Mr9bQJEuN0,Sarayu teaches Mack about the intersection of good and evil.\ntt2872518,ns7B5fzH11c,Mack receives word about his daughter's kidnapper.\ntt2872518,gjuizikJ2bk,Papa instructs Mack to forgive his daughter's killer.\ntt2872518,K2NNznJJadY,Mack races to save his kids from drowning.\ntt2872518,VRuV5oMqkDg,Jesus talks Mack down when he begins to literally sink into his fear and despair.\ntt7207158,3cBAmkzKEBU,Joe Croaker and his friends are determined to break open a nut.\ntt7207158,gJDpyQ1Efto,Joe Croaker's solo performance ends poorly for everybody.\ntt7207158,NKewr9uDDck,The insects get back at Joe Croaker for his whistling pranks.\ntt7207158,StUN1G5filU,\"Joe Croaker fights for a pill full of poop, believing it to be candy.\"\ntt7207158,iKi2wYZNAnE,Joe Croaker decides to save his friend Cosmo from a toy crocodile.\ntt7207158,kFuzbEylajA,Bartle Bee gets involuntary chiropractic treatment for his neck by his friends.\ntt7207158,tHHqfGeeXps,Joe Croaker pits his strength against McBroom the dung beetle.\ntt7207158,1JJjo2GcRrg,Joe Croaker and his newfound whistle make a torturous duo.\ntt0095179,TRCSLhYz9CA,Tina's battle with Jason continues.\ntt0095179,1rKzD4yNMoc,Tina unleashes her psychic powers against Jason.\ntt0095179,D4sj2Yq5bnU,Maddy tries and fails to hide from Jason.\ntt0095179,Ed8T-GzBcIY,Jane isn't safe from Jason even in her sleeping bag.\ntt0095179,f0ui8NJnqN8,Jason interrupts a horny couple with a horn of his own.\ntt0095179,oY31D4QSB-Y,Tina tries to revive her father from the lake but unwittingly animates Jason.\ntt0095179,Irq818Ek0Ro,Tina summons her late father to combat Jason.\ntt0095179,JivWELi2rFw,Robin finds a cat and a present Jason left for her.\ntt0095179,YIhMJMRdGGY,Jason cuts Dr. Crews down to size.\ntt0095179,VhzodI8yBUE,Tina squares off with Jason.\ntt2992146,S71iST-01VM,Detective Dee and the others confront the Dondoers on their island.\ntt2992146,aQ2aje8PZz0,A Chinese fleet is attacked by a giant monster.\ntt2992146,wBq7RLGDqKE,Detective Dee and Zhenjin race to save Ruiji from brigands and a monster.\ntt2992146,1TY9TWCU1z8,Detective Dee shows off his fine horseback skills to combat the sea dragon.\ntt2992146,u4NTe-ZIrGs,Chief Zhenjin crosses blades with Doctor Wang Pu.\ntt2992146,skrnn_M3e9A,Detective Dee finds a novel cure for the parasite-laced royal tea.\ntt2992146,OVSaW3-ehsQ,\"Chief Zhenjin  battles Cheng An, the traitor.\"\ntt2992146,VK2Bz9yq2As,Detective Dee and company combat the sea monster.\ntt2992146,pQwl5G0ZHdY,Chief Zhenjin defends Swallow House from a group of water-bound assassins.\ntt2992146,IagCGWtNyTQ,Detective Dee and Chief Zhenjin square off against Wang Pu on a cliff.\ntt1563742,eFF1grhBvsE,Kate pulls off her scheme on the amnesiac Leonardo.\ntt1563742,JqYtHZw-M8c,Leonardo and Kate receive a visitor bearing an incredible gift.\ntt4795124,K3OlytfxzHU,Maximo tries and fails to use shoe polish to make himself look younger.\ntt1563742,zvn05TBxdUo,Kate decides to forgo her ruse over Leonardo just a little longer.\ntt1563742,GpLeHrROqRE,Leonardo suffers through his first day of work -ever.\ntt1563742,t45uy-QuRDU,Leonardo chooses between his wealth and Kate.\ntt1563742,AD26OcrFQOY,Leonardo discovers the heartbreaking truth of his identity.\ntt4795124,vyb2Imfghkg,Maximo gives Sara the surprise of her life.\ntt4795124,MHPp7bN1kXI,Maximo teaches Hugo how to seduce women.\ntt1563742,QbJIRG4T680,Kate falls for Leonardo after a romantic story.\ntt4795124,p5BfdwK92UI,Maximo & Rick both try their hands at seducing Celeste.\ntt1563742,QqFuGUbvgnQ,Leonardo goes for condoms only to fall off his boat.\ntt4795124,GNSkaIuTNao,Maximo tries his best to woo Celeste but can't seem to say the right thing.\ntt4795124,aD4ZPXHAVCA,Sara proves that she can make any song into a rousing salsa.\ntt1563742,XkNQZg7yTvw,Kate stands up to Leonardo when he refuses to pay her.\ntt1563742,fRF7InV7TfI,Leonardo proposes to Kate for what he thinks is the second time.\ntt4795124,aX9m-xzauMw,Scott and Nick break Maximo's balls for screwing them over.\ntt4795124,I9NGZteE31I,Rick helps Maximo sneak into a shady office.\ntt4795124,67dyb52zKRs,Maximo tries getting competitive with his sign-flipping gig.\ntt4795124,32pZcw3acD0,Maximo decides to make himself sexy.\ntt6663582,hw3lBV-89M0,Audrey and Morgan celebrate a birthday -and a new mission- in Tokyo.\ntt6663582,wB2w4t9dr0Y,\"Nadedja is ordered to kill two Americans, which turns out to be harder than it looks.\"\ntt5186608,FeLR7tVzVeA,Things go from bad to worse when Ben gets bullied.\ntt5186608,kAKY4ZkKIPs,Ben throws a tantrum when Master Kang forbids him from training.\ntt6663582,yqlAjK0PVsU,Morgan fights Nadedja during a high-flying circus act.\ntt6663582,gap2gWQy77A,Morgan swings into action against Nadedja\ntt6663582,CtcQNdbPsSQ,Morgan will do anything to get a computer drive decrypted.\ntt6663582,XC0h9nx3Pw4,Audrey tries to get Morgan to swallow a flash drive containing top secret information.\ntt6663582,AHLo7Vs6drM,Audrey reveals that she hid the flash drive inside her special place.\ntt6663582,nqEL7fP4Rvs,Sebastian rescues Audrey and Morgan from Nadedja.\ntt6663582,r2fHzai5ih4,Audrey and Morgan tell Nadedja literally everything they know.\ntt6663582,vo0cUbT4Lh4,Audrey and Morgan enact a plan to find out who's behind everything.\ntt5186608,fR16yYVpcPw,Ben finds serenity with Master Kang and reopens the dojo.\ntt5186608,pRwRO-DTniM,Master Kang gives Ben simple orders that help him walk again.\ntt5186608,AXZhl8klPfM,\"Ben goes nuts on his bully, Dorian.\"\ntt5186608,kQnmD2gLRVw,Ben's absorption in Taekwondo hinders his and Adrienne's relationship.\ntt5186608,6A7uz7Orp_c,Ben comforts Adrienne before she enters surgery.\ntt5186608,M2UIT2nHDaU,\"Ben trains hard, but isn't ready to face his bully, Dorian.\"\ntt5186608,NQbCRZG4-jo,Ben spars with Tom.\ntt5186608,4EEMDr8l_gY,Adrienne's attempt to befriend Ben doesn't go as planned.\ntt0091080,V0sQmOr826A,A bolt of lightning brings Jason back to life.\ntt0091080,kT_dXxp7eAo,Jason murders Nikki and Cort in an RV.\ntt0091080,lFyh5QCd6kw,Sheriff Gorris learns the hard way why not to shoot Jason.\ntt0091080,R-wQWw1geBM,Jason breaks Sheriff Garris' back backwards.\ntt0091080,r1N-Xby5AnA,Jason beheads three paintballers with one swipe.\ntt0091080,S1NFRvZE3FA,Jason kills two police officers.\ntt0091080,L91dx9ovcz8,Jason impales two young camp counselors.\ntt0091080,crKAy2dGX_8,Tommy and Megan fight Jason in a burning lake.\ntt0091080,5QMsr3UxzPk,\"Tommy lures Jason into the lake, but quickly finds himself in over his head.\"\ntt0091080,zbAsqngq2qY,Jason murders the grave digger and a couple who witness it.\ntt9251598,I-6xj25pOP4,The animal guardians and intergalactic penguins join forces to defeat the evil rat.\ntt9251598,NdaWQm_UAF0,The legendary Space Guardians offer to help the penguins.\ntt9251598,-G7OPYUlnT0,The penguins learn an important lesson and vow to find who attacked their sandwiches.\ntt9251598,geGO_emEsqs,Flip and Zooey realize their sandwiches have been tainted --with cheese!\ntt9251598,YqNktpnzIf8,The rat confesses to spiking the penguins' sandwiches with cheese.\ntt0332375,Z_WhAyucr_E,The truth comes out about Hilary Faye framing Mary and Cassandra for vandalizing school property.\ntt0332375,VlMy5-BAjzo,Cassandra and Mary are framed for having graffitied the school.\ntt0332375,1UbxL1MVZ7o,Cassandra gives the tough girl act a rest and talks to Mary about her situation.\ntt0332375,o6MDdOWCCT8,\"Hilary Faye tries to show Cassandra that Christians are cool, but it backfires.\"\ntt0332375,ij0JLKDJOrc,\"Hilary Faye, Tia and Veronica give Mary a \"\"gentle\"\" intervention.\"\ntt0332375,bYt5SAF0M3I,Dean assures Mary he is going to beat his gayness.\ntt0332375,SaUYfjxV8Ic,Roland and Cassandra help Patrick surprise Mary for prom.\ntt0332375,cvPIBkkwvD4,\"When Dean tells Mary that he thinks he's gay, Mary has a vision of Jesus.\"\ntt0332375,Ded2FG1gA0c,\"In a fit of rage, Hilary crashes her van into Jesus in front of the entire prom.\"\ntt0332375,q2YwvMc96VY,Patrick takes Mary into a private room in the mall to tell her how he feels about her.\ntt3887158,DznDZ_VH_2c,\"Hadad summons Asmodeus, a powerful demon, to help him get revenge on King Solomon.\"\ntt0332375,EpCp0rAGDNo,\"Roland tells off Hilary Faye, which frees him up to hang out with Cassandra.\"\ntt3887158,SeiUW113A_c,\"Using a camel as a getaway car, Solomon helps Princess Na'ama escape from her arranged marriage.\"\ntt0332375,Ent1UQJ4mdU,\"Mary speaks out against Hilary Faye's prayer circle to \"\"save Dean.\"\"\"\ntt3887158,1Quc4FFOwBM,Hadad frees Asmodeus from the earthen jar.\ntt3887158,8zqwJl6lq-4,Solomon defeats Asmodeus and restores Jerusalem.\ntt3887158,hwQWBQjvbgM,\"The elderly beggar reveals himself to be Shamir, the Stone Worm.\"\ntt3887158,SemxtZJHxEQ,Asmodeus blows Solomon & Tobby away from Jerusalem.\ntt3887158,uYV3p1yRHyg,\"Hadad comes to Jerusalem, seeking vengeance for what Solomon's father, King David, did to his people.\"\ntt3887158,HpJfIRs8rfc,Solomon leads an army of animals into Jerusalem.\ntt3887158,ZEXNPj-4clI,King Solomon captures Asmodeus in a magic trap.\ntt3887158,MDv-LBBUkVA,Eagle returns just in time to save the crew from an army of soldiers.\ntt1846589,ESEKkJNt1P8,\"The USS Tampa Bay hunts The Konek, unaware that a deadlier predator is stalking them both.\"\ntt7401588,6ikH1EFDm6A,Pete and Ellie deal with Lizzy's explicit cell phone photos.\ntt7401588,Q-ABzsALkYs,\"While Pete and Ellie struggle to connect with Lizzy, Grandma Sandy easily wins her over.\"\ntt7401588,_i97zAZclkI,\"Pete is thrilled to hear Lita call him \"\"Daddy\"\" for the first time.\"\ntt7401588,AAN85u-udis,Pete and Ellie assault Jacob for sending illicit photos to their daughter.\ntt7401588,7-5kYQLJnFw,Lizzy finds out that her biological mother isn't coming for her and her siblings.\ntt7401588,NCjjqtamXzU,\"Pete gets caught in Ellie and Lizzy's argument, leaving Juan unattended.\"\ntt7401588,HceqAAw60vQ,Lizzy learns how much her foster parents love her.\ntt7401588,Jy8mz4gu2oQ,The family's dysfunctions hit in a disastrous chain reaction over Christmas dinner.\ntt7401588,ay1hpFWZQnI,The couple falls for Lizzy at the adoption fair.\ntt7401588,Qc9eycqDJKk,Pete helps Lizzy take out her frustrations.\ntt1846589,IKo0Eu-Xk_0,Beaman's team makes a desperate amphibious escape.\ntt1846589,CvnpRyO6pH0,The Arkansas faces off against a deadly Russian destroyer.\ntt1846589,KGwANfqAjNY,Captain Glass outwits a Russian sub hidden in an iceberg.\ntt1846589,w_XUAmQdKJI,Captain Glass and the crew brace for impact from an enemy torpedo.\ntt1846589,DfKYwoHHceM,Beaman and President Zakarin run into fierce resistance.\ntt1846589,1eg0tbBF6eo,Captain Glass and Captain Andropov work together to elude a destroyer.\ntt1846589,4XSuEmqtnRw,Beaman's team rescues Russian President Zakarin from Admiral Durov's.\ntt1846589,RcccijujIjE,Captain Andropov helps Captain Glass navigate a Russian submarine trap.\ntt1846589,7UQAjKVyjIs,Captain Glass plays chicken with Admiral Durov.\ntt6836772,Txy4-5uYN0M,Lt. Calloway and his platoon escape Nazi pursuit and arrive at a small drawbridge.\ntt6836772,TrWMrEKpT7M,Thomas makes a last stand against Nazis in pursuit.\ntt6836772,pOlGqiWm9yY,Strasser explains his penchant for torture to an involuntary participant.\ntt6836772,IBsHlPPeaY0,Strasser tortures a scientist for information.\ntt6836772,4mfQVFVg16s,Sgt. Walker comes up with a plan to steal a Nazi envoy with little resources at his disposal.\ntt6836772,rC3OdZQgztY,The surviving members of the crew are cornered by Strasser with no hope of escape.\ntt6836772,4JjOrujlaLg,Strasser proves less than grateful after receiving intel from a local.\ntt6836772,vL21VCK_zLk,Lt. Calloway helps Roger King after the boy steps on a tripwire and boobytrapped weapon.\ntt6836772,14drcivv0CE,Lt. Calloway and his troops are captured by Strasser while setting up bombs under a bridge.\ntt6836772,tyXI3CQSQJE,Strasser dramatically increases pressure on Lt. Calloway and his platoon.\ntt4530422,ibcYEwzgai8,Boyce tries to survive parachuting into France.\ntt4530422,mS4njwcS4dw,Chloe is chased by a Nazi zombie.\ntt4530422,jUYCTHwAQvw,The squad sends a Nazi back to base with a nasty little surprise.\ntt4530422,0yDzNGZc9DI,Boyce and Ford make a final stand against Wafner.\ntt4530422,lFGfoPuKx9o,Ford sacrifices himself to destroy the underground Nazi lab.\ntt4530422,NYBMaVtMaEM,Boyce and the platoon fly into France during the D-Day invasion.\ntt4530422,ngdsRt31sIc,\"The serum resurrects Chase, but not without side effects.\"\ntt4530422,IZxYRZdq2P0,Wafner takes a hostage and makes his escape.\ntt4530422,3i-ooDJMOzo,Boyce rescues Rosenstein from a secret Nazi laboratory.\ntt4530422,ZKgJtlJDPcc,\"Desperate to save Chase, Boyce injects him with a mystery serum.\"\ntt0104573,EZaYMKD6Iqs,Q distracts a shopkeeper while his friends pocket records.\ntt0104573,CoXniP8kldY,Bishop tells Q how little concern he has about his world.\ntt0104573,8b1jfsKFu2w,Q pits his DJ skills against the reigning champ.\ntt0104573,q51BSsTrN_I,\"Bishop tries to kill Q, the last witness.\"\ntt0104573,P3imZIQJez8,Raheem tries to take the gun from Bishop.\ntt0104573,PldJ3snU1C0,Q watches in horror as Bishop comforts Raheem's mother after murdering him.\ntt0104573,lv0CgSfmWxc,Bishop and Q fight until Bishop hangs on for his life.\ntt0104573,wuM_9dYtRwo,Bishop deviates from the plan during a corner-store robbery.\ntt0104573,s7kCd2kuoME,Radames pushes Bishop too far.\ntt0104573,f8Jf9xoJQwI,Bishop kills his last friend and lies to Trip about it.\ntt0087298,_vwllSx_Ew8,\"After Jason corners her, Trish jumps through a window to escape.\"\ntt0087298,WZ6JK1mPT-A,Tommy kills Jason.\ntt0087298,YTdTD0TbEp4,Trish escapes after Jason kills Rob.\ntt0087298,qaQQ3LLyKvo,Jason kills Doug and Sara.\ntt0087298,ukNsgDQKqfY,Trish and Tommy are trapped in their cabin by Jason.\ntt0087298,XHuewsIKvP0,Tommy goes a little overboard in killing Jason.\ntt0087298,w80bZTK88mc,Sam skinny dips in the wrong lake.\ntt0087298,EelncXXu150,Jason gives Jimmy some help in the kitchen.\ntt0087298,_0vYFxJJcB4,\"After Paul finds Sam's lifeless body, he too is killed by Jason.\"\ntt0087298,Ej1lqvtmcMg,Jason kills a doctor and nurse.\ntt0109447,HbWD-eclNf4,Clifford turns to drastic measures after discovering he won't be going to Dinosaur World.\ntt0080487,P3Mo5t61kO4,Carl conducts an anti-gopher mission.\ntt0080487,I3akC_INsFc,Danny asks Ty for life advice and Ty responds with golf wisdom.\ntt0080487,S-pmcO6U8eg,Ty visits Carl at his home.\ntt0080487,Pe5eL8LQdY0,The Bishop has Carl caddy for him during a thunderstorm in which he plays his best and final round of golf.\ntt0080487,bCYs8v0Xji4,Carl imagines himself playing at Augusta.\ntt0080487,GFpm2LR0sGQ,get rid of all the gophers.\ntt0080487,40CAAtSZsbw,Lacey discovers why drugs and love rarely mix.\ntt0080487,QpmECKEHSQs,Nothing more terrifying than poop in a pool. Or is it?\ntt0080487,5NlQiQfC4zQ,Carl makes animal-shaped explosives and plots the gopher's demise.\ntt0109447,k9utcDoerr0,Martin has little luck trying to sympathize with Clifford.\ntt0109447,bbnkw5RyiCI,Martin is at a loss for words in front of his future in-laws after he takes a swig of Tabasco sauce.\ntt0109447,_HgOQNBkVvY,Clifford is enamored of Sarah Davis.\ntt0109447,_UvKhc0wVU8,\"Although it may not be on his terms, Clifford finally goes on his favorite ride.\"\ntt0109447,i_9mM4F_JVI,Martin's hard work goes up in flames.\ntt0109447,Pui9t9vPUTc,Larry the Scary Rex takes a dangerous turn after Martin puts it into hyperdrive.\ntt0109447,y_LVaQiyLrM,Clifford meets his Uncle Martin.\ntt0109447,Rq3xZDyJtMk,Clifford's dad is ready to strangle his son.\ntt0109447,EGt-Nk6a1UQ,Martin returns home to find Clifford is just as manipulative as ever.\ntt0109447,AszdXufdl3E,Clifford embarrasses Martin when he comments on Mr. Ellis' wig.\ntt0109447,S_lcxLCaxAw,Mr. Ellis is exposed as a balding jerk.\ntt7282468,NZuXsiyF5Bk,Ben makes a curious and cryptic confession to Jong-Su.\ntt7282468,57X3MgtTMfM,Hae-mi expresses herself through dance in front of Jong-su and Ben.\ntt7282468,gAI36zhS84Y,Jong-su realizes Ben may have had something to do with Hae-Mi's death and takes action.\ntt7282468,2NNOFLGL_VE,Jong-su tries to squeeze information on Hae-mi's disappearance out of Ben.\ntt7282468,hegwdxt_FjA,Childhood neighbors Jong-su and Hae-mi run into each other on the street.\ntt7282468,byUbi9hlirE,Hae-mi uses dance to describe her experience in Africa to Ben and his friends.\ntt7282468,jJeed7K-6fQ,Hae-mi tells Jong-su and Ben about her epiphany while watching the sunset in Kenya.\ntt7282468,CA66So14ydI,\"Hoping to find the truth, Jong-su questions Hae-mi's family about a traumatic childhood experience.\"\ntt7282468,456ZpoRaRWI,Hae-mi tells Jong-soo about her upcoming trip to Africa.\ntt7282468,d47y-Jm4m_o,Hae-mi reminds Jong-su about when he insulted her as children while the two flirt.\ntt6777338,v6nkTlU_iT8,An unseen assassin expertly murders her way through a warehouse.\ntt6777338,AJhPYwtbCo0,\"Disguised as a bride, Sook-hee is tasked with killing a criminal, but it turns out to be her ex-lover that she thought was dead.\"\ntt6777338,s8gCo-QjtGk,\"Sook-hee and Min-joo go on a dangerous mission to steal the contents of a phone, but things get deadly when their cover is blown.\"\ntt6777338,r8SqKn2AmKc,\"While on an assassination mission, Sook-hee has a flashback to when she witnessed her father's death.\"\ntt6777338,83BVVnFnQkA,Sook-hee confronts Lee Joong-sang who tells her that he killed her father.\ntt6777338,3yqsR2cziD0,Sook-hee kills an entire dojo of martial artists and assassins.\ntt6777338,cRj9pF0YGT8,\"Sook-hee chases after the bus carrying Joong-Sang and his men, and takes them all on.\"\ntt6777338,-ecKc5pOEWk,Sook-hee races to escape the henchmen of a man that she assassinated.\ntt6777338,M_TCpfWTFjo,\"After crashing the bus, Sook-hee finally gets revenge on Joong-sang for killing her father.\"\ntt6777338,Zxw1Z6pzKvA,Sook-hee returns to her apartment building just as an explosion goes off that kills her boyfriend Jung Hyun-soo and her daughter Eun-hye.\ntt7040874,pppK-fl9a2E,Stephanie pulls a gun on Emily and Sean to find the truth.\ntt7040874,7uSfWo-jr8o,Stephanie confesses to sleeping with her half brother.\ntt7040874,-ZxtmDbqDRc,Emily gets the drop on Stephanie...or so she thinks.\ntt7040874,xDZfwTsiLrk,Emily is found dead in a lake.\ntt7040874,u6IAct0ow4c,\"Emily, caught faking her death, confesses to murdering her father.\"\ntt7040874,vxFr0xNspFU,Emily makes a fatal decision after her sister tries to blackmail her.\ntt7040874,hZvud4MnaQ0,Stephanie finds comfort in Emily.\ntt7040874,frV4tvni8H0,Sean begins to realize that he's caught in Emily's trap.\ntt7040874,jwjCPSUGPXU,Emily entraps Sean into a darker relationship.\ntt7040874,NEDEjJ5FyS4,Stephanie and Sean give into their carnal urges.\ntt6371588,q-kSu3KWfEI,Ollie saves Nikolai when he's beaten and knocked into the lake.\ntt6371588,sWgPWKj2G7I,Ollie crashes a party.\ntt6371588,FFU7WJWXrvk,Isadora shows Ollie how to practice tantric breathing with a partner.\ntt6371588,Q-D1e1u4ufk,\"After arriving at his family's lake cabin, Ollie and his friend, Nikolai, get drunk and wrestle around the cabin.\"\ntt6371588,CKtUpbJ30Dg,Ollie takes Isadora for a boat ride.\ntt6371588,sQV6nuap8WA,Ollie uses a forgotten record to reveal that the family has been conned.\ntt6371588,tbty8Ao7_IE,Ollie and Nikolai help Charlie by cleaning up around the lake cabin.\ntt6371588,o2YKoT7jL4M,Ollie stalks Isadora.\ntt6371588,ML4CcaTFsZE,Charlie and Nikolai dance to her wedding song.\ntt6371588,Q2GegbPq3Lg,Ollie shows Nikolai his father's record collection.\ntt7752126,vcdDRblTOmM,Kyle takes Brandon hunting with the intent of killing more than deer.\ntt7752126,t6UyEPrqaQI,Tori tries to trick Brandon.\ntt7752126,Gdpx9aiEtmg,Brandon pits his skills against the local police.\ntt7752126,0h0FeEzxCaM,Brandon torments Erica before killing her.\ntt7752126,3ge07nbMna0,Tori tries whatever she can to escape Brandon.\ntt7752126,CYO8cs7VRMc,Brandon kills his Uncle Noah.\ntt7752126,vJhO79OGi20,Tori tells Brandon the true story of where he was found.\ntt7752126,6mooNp4aWBo,\"Kyle accuses Brandon of lying, with disastrous results.\"\ntt7752126,McmlPCS1kHc,Kyle relives the night he and Tori found Brandon.\ntt7752126,757qJxO5D6Y,Brandon begins to discover his powers.\ntt0455857,BgxPmLpvxzc,Jill hides from the Stranger in the greenhouse.\ntt0455857,-pKrpqoPu1o,Jill tries to keep hidden from the Stranger.\ntt0455857,4EWgdeVQzEk,Jill gets a creepy call from The Stranger.\ntt0455857,enG1CfTbT08,\"Jill runs to the guest house, where she believes the Stranger may be hiding.\"\ntt0455857,gnlvKhPzx5A,\"Recovering in the hospital, Jill receives a haunting phonecall.\"\ntt0455857,ZXkKHnmKWoI,Jill makes a grisly discovery.\ntt0455857,6w4Chzgna0c,Jill tries to find the source of the strange noises.\ntt0455857,4gftIIxf7B4,\"Tiffany tries to leave the mansion, but runs into trouble.\"\ntt0455857,kokQDLJ1104,Jill tries to protect the children.\ntt0455857,QR6Ds-Tvd1g,Jill struggles to survive the Stranger.\ntt0110367,NxCa0cVaxQo,Jo invites Laurie to participate in a play she and her sisters are putting on for themselves.\ntt0046816,fWYs-bFK9_s,\"After one of Queeg's orders threatens the safety of the crew, Lt. Maryk takes command of the ship.\"\ntt0110367,A3Vm7zSOm7M,\"After she becomes severely ill, the March family gifts Beth a Christmas surprise.\"\ntt0110367,erX0T5r5xbE,\"At a society party, Jo runs into her neighbor Laurie.\"\ntt0110367,Xvyf7ml1ndo,Jo gets a welcomed surprise visit from Laurie.\ntt0110367,n_z0TcZkPzg,Laurie and Meg have a tiff after he says her behavior is not becoming.\ntt0110367,nLDgcHxJ4Sc,\"Laurie confesses his love to Jo, but receives an unexpected reaction.\"\ntt0110367,j_sD0t5L8kE,Laurie confesses his long admiration to Amy.\ntt0110367,ESUdqZoRu3A,Jo meets the enchanting scholar Friedrich.\ntt0110367,1Ylk2e-x--8,Jo confesses her undying love for a forlorn Friedrich.\ntt0110367,LJye4-HVyCU,Jo comforts Beth while she passes.\ntt0046816,wzZ3S0ZC1Is,The crew of the Caine test their efficiency during a sweep drill.\ntt0046816,5SRxYONb12I,Lt. Greenwald teaches the officers of the Caine about honor.\ntt0046816,KekChFdIe00,Lt. Greenwald questions Queeg.\ntt0046816,R0CN7Enq4Rg,Queeg makes a questionable decision during a military operation.\ntt0046816,mNd16XocjBg,\"After the mutiny, Lt. Maryk and Lt. Keith meet with lawyer Lt. Greenwald before their trial.\"\ntt0046816,UPIr8vb7OeI,Capt. Queeg nearly compromises the Caine while chastising a seaman.\ntt0046816,edQy5jBxhV8,Lt. Cmdr. Queeg tries to prove beyond a doubt that strawberries were stolen from the freezer.\ntt0046816,oDjuY9KCsI8,Lt. Maryk and Lt. Keefer are sent on a special mission by an increasingly delirious Lt. Cmdr. Queeg.\ntt0060429,fAaVf_wel0c,Everyone sings about their excitement to make it onto Broadway.\ntt0060429,JAd3SSNqZlI,Johnny sings the blues.\ntt0060429,Xstux7DlrgU,The gypsies sing about luck.\ntt0060429,aoc1wqaK8cc,Johnny sings a jaunty song about happiness.\ntt0060429,vm-rgqRKqz8,Johnny listens to Abigail and loses all of his money gambling.\ntt0060429,wuzbUsy6snc,\"Johnny sings about his love, Petunia.\"\ntt0060429,8ISsNLwwmXg,\"Johnny bets big at the roulette table, but discovers that his lucky girl is none other than Frankie.\"\ntt0060429,SqFAf6aGTtw,Johnny fights Braden.\ntt0060429,SmrdaRhZJt4,Johnny sings to Frankie about his brand of luck.\ntt0060429,8p1gevM0y-I,\"Johnny meets Nellie Bly, who brings him good luck at roulette.\"\ntt0060429,4kIbIjoVakQ,Johnny tries to sing Frankie back into his arms.\ntt0060438,sMrjeejmCpI,Pseudolus introduces the setting and characters of the story through song.\ntt0060429,r_tl6PA-Rd4,\"In the show, Frankie almost shoots Johnny with a real bullet.\"\ntt0060438,lLgOrvsA9tw,\"Captain Miles Gloriosus comes for his bride, singing a very macho song.\"\ntt0060438,NzCTDwlquaQ,Hero tries to escape with Philia by chariot.\ntt0060438,doKP3Il9R1k,Pseudolus tells Captain Gloriosus that his bride is dead.\ntt0060438,WAX89Cuk-Yc,Pseudolus builds Hysterium's confidence in the deception by singing about his beauty.\ntt0060438,1EtA0HrUrYM,\"Hysterium and Pseudolus scramble when Gloriosus decides he wants to cremate the \"\"dead\"\" bride.\"\ntt0060438,W_fixpI0BL8,Pseudolus tries to save Hero who has gone to a gladiator camp to commit suicide.\ntt0060438,ghfqnmL0d_A,Pseudolus tries to stall Captain Gloriosus when he calls for his bride.\ntt0060438,dvIzAdqrb4U,Pseudolus meets Captain Gloriosus who is impatient to meet his bride.\ntt0060438,BCC8LOkisAI,Pseudolus pretends to be a soothsayer to keep Erronius from going into his home.\ntt0104009,2vIINq7m10Q,The release of the Spike causes an outbreak of doodles and chaos in Las Vegas.\ntt0104009,FlCzygStNzM,Holli lashes out when she's trapped on a ledge.\ntt5537600,urk-FzNJvzE,\"Bailey discusses his unconventional yet orthodox childhood, and his favorite side of his mother.\"\ntt5537600,u-PbWxhmJto,The subjects reflect on the AIDS epidemic and its devastating impact on the gay community.\ntt5537600,s9_C0lmrp1M,Several NYC drag icons attest to Susanne's role in nightlife and pop culture.\ntt5537600,_PXmVLPkYVo,The nightlife personalities and artists discuss gender notions.\ntt5537600,Q4B11j9T3hE,Susanne imports the ever-evolving fashions of London and Tokyo to New York.\ntt5537600,h846tnckLFE,Susanne traces her childhood in Switzerland and her father's dual life.\ntt5537600,HZbYIyL-tUQ,An array of NYC nightlife artists speak for Susanne's generous acceptance.\ntt5537600,vdZ7vQG2hzI,People describe Susanne's parties and the overall clubbing experience.\ntt5537600,KtumRXjIzQY,\"An intimate look at Susanne's fundraiser for AIDS, The Love Ball.\"\ntt5537600,Y5B6H8G2WcE,Susanne Bartsch marries Dave Barton.\ntt0104009,Cm6FChNhtSc,Frank alerts Jack about the oldest law in Cool World.\ntt0104009,wM5rRXQZvjU,Jack turns into a satire superhero to combat Holli.\ntt0104009,rhFw9HYTReY,Frank chases the cartoon psychopath Holli.\ntt0104009,-wci2oycOQA,The Popper Police go after Holli and Jack for their human-cartoon affair.\ntt0104009,9zbF578--dE,Holli tries to seduce Frank in order to achieve humanity.\ntt0104009,fBpNFLngzT4,Holli revels in the real world while Jack flickers into his doodle form.\ntt0104009,3hOO0D1rH-w,\"Holli sleeps with Jack, breaking the one rule of Cool World.\"\ntt0104009,DSyCwx2AlQc,Jack has an all-too-real hallucination of the Cool World and Holli Would.\ntt2066051,S1Xm1jBc84U,\"Overdosing, Elton jumps into his pool, where he sees his younger self.\"\ntt2066051,BGGyUpO3W-A,\"Elton makes his debut performance playing \"\"Crocodile Rock\"\" at The Troubadour.\"\ntt2066051,Cp2KrXtWwAA,\"Elton performs \"\"Bennie and the Jets\"\" and enters a hallucinogenic nightmare.\"\ntt2066051,M5ny5tMsxrs,\"An invigorated Elton exits the rehab center singing \"\"I'm Still Standing.\"\"\"\ntt2066051,1kuNl2T_mjQ,\"Elton performs \"\"Pinball Wizard\"\" in a whirlwind of costumes.\"\ntt2066051,30IrWTTMWos,Elton and John Reid bond on a deeper level than their shared interest in music.\ntt2066051,yPJlBsQE96o,\"Elton John makes a breakthrough with \"\"Your Song.\"\"\"\ntt4911996,oPPxArk70IY,Jay comes to Josh's rescue.\ntt2066051,M16l8dqWTuI,Elton receives a crushing response in coming out to his mother.\ntt2066051,kyfMjDlcisQ,\"Elton goes from overdose to performing \"\"Rocket Man\"\" at Dodgers Stadium.\"\ntt2066051,ef7rQniaz5c,\"Elton addresses everyone in his life including his neglected, younger self.\"\ntt4911996,MnTKULzMhMs,\"As Tommy confesses, Jay finds the body of the missing Asian woman.\"\ntt4911996,Pibr2kMG1HA,Jay races to the airfield to stop Johnny's escape.\ntt4911996,InHZNhmQyd4,\"Josh investigates May, an unwilling prostitute in the small town.\"\ntt4911996,EYvn7xDKKtA,\"Caught destroying evidence, Maureen tries to bribe Josh.\"\ntt4911996,aNv_E1Gh-1k,Mrs. Lao warns Mei against escape attempts.\ntt4911996,MLv1hfiUaNk,Jay witnesses young Asian women being forced into prostitution.\ntt4911996,Iyv1Br-dG8Q,Jay interviews Pinky and gets much more than he bargained for.\ntt4911996,4fgrzQIolcc,Jay and Josh take out the Furnace Creek miners.\ntt4911996,dlzBcCsKQXY,Hitmen attack Jay on the road.\ntt2283336,5CxYctMSiw0,The alien twins bust a move at Vungus' nightclub.\ntt2283336,BYrS2k5nPbw,Vungus gives Agent M a small crystal while Agent H fights off the alien twins.\ntt0369441,DZlM8Wm7OKY,\"Dick tries to be a day laborer, and Jane volunteers for medical experiments.\"\ntt2283336,vjDxkz5LO7A,\"Trying to get the crystal back, Agent M sneaks into Riza's fortress for the crystal.\"\ntt2283336,ruwbVFvdfco,The alien twins trap Agent M and Agent H on a cliff.\ntt2283336,obn9BZj6V-M,High T opens up a wormhole and reveals himself as the Hive alien.\ntt2283336,jgBGoS4a5rc,Molly makes a good impression on Agent O after sneaking into the MIB agency.\ntt2283336,c3vmsUcknhY,\"Agent M, Agent H, and Pawny make an escape on a hover bike.\"\ntt2283336,dXNu5a3KmMg,\"Agent H and Agent M meet Pawny, the last of a recently slain alien race.\"\ntt2283336,uciRaLsFmfM,Agent M discovers that the crystal is actually a star-powered super-weapon.\ntt2283336,Xr9GABUefT8,\"Agent M makes a sudden, live-saving realization about Luca.\"\ntt0369441,r-IE6wNNbAI,Dick and Jane start to get the hang of robberies.\ntt0369441,yQXi94aNwBU,\"Dick refuses to back down from Jack, the man who ruined him.\"\ntt0369441,8bJzLt9AYqc,Dick and Jane finally get their revenge on Jack.\ntt0369441,mFA9-zsFtt8,Dick and Jane try entering the job market after losing their jobs.\ntt0369441,xBI5Rk9qYjU,Dick and Jane attempt more robberies with mixed results.\ntt0369441,oflnRQP6Woo,Dick tries his hand at robbing a convenience store.\ntt0369441,reyTknNqDjA,Dick races to beat a competitor to an interview.\ntt0369441,hA063IaOHyQ,Dick Harper finds himself spinning the news for his company.\ntt0369441,I8yvHZ7de2k,Dick and Jane begin their bank heist only to run into another.\ntt6466464,Zsf-encTJXk,The Monkey King uses water from the Miscarriage Spring against his friends' wishes.\ntt6466464,JPbZNEly1N0,\"After jumping into the river, Bajie, Sanzang, and Wujing become magically pregnant.\"\ntt6466464,L46gYnVmYY8,\"The Monkey King, Sanzang, Bajie, and Wujing narrowly escape an attack by a River Monster with some help from the Buddha.\"\ntt6466464,948o2mF4QAs,\"The Monkey King, Bajie, and Wujing fight the River Goddess.\"\ntt6466464,Djlih7ELcTA,\"The Monkey King, Sanzang, Bajie, and Wujing get questioned by the women warriors.\"\ntt6466464,40vMiKmqaCk,Tang Sanzang prays to Buddha to vanquish the River Monster.\ntt6466464,1HBiMXpncto,\"The Monkey King, Sanzang, Bajie, and Chaseng are sentenced to death for being men.\"\ntt6466464,i44zbRoYBtw,The Monkey King and the gang fight off giant scorpions.\ntt6466464,sRGrUQRVPoI,\"When the Queen tries to pass the Gates of Love, the women and island turn to stone.\"\ntt6466464,KiwEFBgGh-o,\"When Sanzang is exiled from the Womanland, the Queen sacrifices everything to join him.\"\ntt1876517,Y69UrBaCUAs,Polaris and Bunny outsmart Trapper during a battle.\ntt1876517,0qzRQ3qxv5Y,Polaris learns how to stand on eggs as part of Bunny's training.\ntt1876517,R9l_adCi74g,Polaris fights an amnesiac Bunny.\ntt1876517,L6f07_-wG9o,Polaris and Rascal leave the mountain where Master Wizard lives.\ntt1876517,0WKopiIhAdI,Trapper finds a way to escape captivity.\ntt1876517,gnfp7yyQgH8,Bat uses dynamite to blow up a bridge while Bunny and Polaris walk across it.\ntt1876517,WkEK2NyGq10,\"Suffering from amnesia, Bunny has flashbacks of her past.\"\ntt1876517,RHlGpxG_-wM,\"Bunny and Polaris fight Bat, who has plenty of tricks waiting for them inside his cave.\"\ntt1876517,1jjQuF3a-7U,Polaris learns how to unlock his legs' full potential.\ntt1876517,otOIqHsnQZY,Polaris tries using acupuncture on Bunny to cure her amnesia.\ntt4591310,eS-f-9meg9E,\"The Monkey King fights the White Bone Spirit, now a giant skeleton.\"\ntt4591310,_qw-Blkf5zU,Wujing and Bajie fight evil skeletons.\ntt4591310,9FcSX6y6OCA,Monk Tang Sanzeng sacrifices his life to absolve the White Bone Demon's soul.\ntt4591310,qIhQJubhA_Q,Tang Sanzang and the Monkey King meet the pig Bajie and water-buffalo Wujing.\ntt4591310,_klWa7UqpwQ,The Monkey King fights the White Bone Spirit.\ntt4591310,Pc4vZPJ4AVs,The White Bone Spirit and her naga spirits attack and kill a criminal and a helpless family.\ntt4591310,EIHtZl__2tw,A deadly dragon attacks the monk and the Monkey King.\ntt4591310,crSg7r225Hw,\"Buddhist monk Tang Sanzang frees Wukong, the Monkey King.\"\ntt4591310,hCCpL0zgYoc,The Monkey King and his friends fight the White Bone Spirit and her demonic hench-creatures.\ntt4591310,WQth5UmIAbI,The Monkey King returns to kill all the skeletons in his path.\ntt7275200,MuYLaaVqJf0,\"Dancing sardines give Fifi, Lilly, and Cheri a strange clue.\"\ntt7275200,YIg4Pcmy8ww,Fifi and Lilly swim away from a sea monster and get separated from their classmates.\ntt7275200,6tVC53rH37g,\"Skeleton Fish threaten Fifi, Lilly, and Cheri.\"\ntt7275200,YlbjPR7t1IU,Fifi and Lilly meet a shark with a toothache and some tunes.\ntt7275200,3GrjR4Fib1M,\"Fifi, Lilly, and Cheri learn that sea monsters aren't so bad and befriend Glurp and Toothy.\"\ntt7275200,vpqzFo0aD0c,\"Cheri finally reunites with her mother, while Fifi and Lilly introduce their new friends to the class.\"\ntt0092948,08rJmhhQHtY,\"At Thanksgiving dinner in 1968, a young Eddie shocks the family with a crude joke.\"\ntt0092948,gq1gSTF2oyA,Eddie Murphy does a bit about a mistreated girlfriend who who takes a solo vacation to the Bahamas.\ntt0092948,yr5x9xFoI04,Eddie Murphy talks about being scared after doing jokes about Mr. T.\ntt0092948,qLFrdv2R8ng,Eddie Murphy jokes about how men deal with getting caught cheating on their girlfriends.\ntt0092948,91Z-_ujQGik,Eddie Murphy impersonates an angry Michael Jackson.\ntt0092948,WOnHL_mSXRY,\"Instead of dealing with American women, Eddie Murphy plans on finding a wife in Africa.\"\ntt0092948,zvGA7DNmxmw,\"Eddie Murphy does a raunchy impression of his idol, Richard Pryor, and describes why foreigners can never understand his act.\"\ntt0092948,r12JlwSBvVQ,Eddie Murphy does impressions of Bill Cosby and Richard Pryor.\ntt0092948,L6HWF_-Vmbw,Eddie Murphy does an impression of a white guy dancing.\ntt0092948,Omewqh9iivg,Eddie Murphy jokes about how Italians act after watching Rocky.\ntt6212478,XF7nz6p4H9U,Warren gives the crew nicknames and tells them what their roles in the heist will be.\ntt6212478,E5M67kHOzyw,Warren meets with potential buyers in Amsterdam.\ntt6212478,2aFfcz677qk,Warren tries to convince Spencer not to abandon the heist.\ntt6212478,KH9yFcfLfOY,\"The crew begins the heist, but there's one little snag.\"\ntt6212478,glDG7hJd9Hk,Chas scolds Warren and Spencer after they leave a traceable cell phone number with an assistant at an auction house.\ntt6212478,a6QMSQ9NtGM,Warren walks Spencer and Eric through his plan for the heist.\ntt6320628,v0AyEpFDi48,\"When Hydro-Man attacks, Mysterio comes to the rescue before Spider-Man can.\"\ntt6320628,q9X6tpvxZyE,Spider-Man tranfers Stark's glasses to Mysterio.\ntt6320628,is4ZtB0U7Vo,Spider-Man teams up with Mysterio to fight Molten Man.\ntt6320628,j4onAJ-3FAM,Spider-Man takes out Mysterio's holographic monster from the inside.\ntt6320628,qRQu4tZF1GA,Peter inadvertently orders a drone strike against his classmates.\ntt6320628,7R9gbSQenqg,Nick Fury rescues Spider-Man from Mysterio.\ntt6320628,HfEjIU7Qbj8,Peter goes on a revealing date with MJ.\ntt6320628,zErzJxN84iw,Spider-Man takes MJ for a ride.\ntt6320628,P-mT2D6iM5k,Spider-Man reels in Mysterio's macabre illusion.\ntt6320628,NPY5Iq-tCvk,\"Spider-Man must rely on his \"\"Peter-tingle\"\" to defeat Mysterio.\"\ntt6857112,vh7_WKODlE8,Red explains the Tethereds' arrival to the Wilson family.\ntt6857112,29YDqiuyaOU,Jason confronts his doppelgänger to avert an explosion.\ntt6857112,RbdGl6wRKDc,Zora is forced to kill her doppelgänger.\ntt6857112,3s2XMsUdd1k,The Tethered invade the Wilsons' home.\ntt6857112,hYvxbtiGvrk,Young Adelaide wanders into a spooky funhouse.\ntt6857112,-uAEWFPmAwU,The Tylers face off against their Tethered.\ntt6857112,lVSMG8FTnpw,Adelaide and Gabe Wilson are held captive by the Tylers' Tethered.\ntt6857112,fuCe9uaRx_0,Zora flees from her doppelgänger.\ntt6857112,Bc3PB049HQc,\"Jason leads his doppelgänger, Pluto, into a closet.\"\ntt6857112,1ZJEtM585x0,Gabe fights his Tethered on a motorboat.\ntt0155711,xBr1UV3kWqA,\"Rusty introduces \"\"Amazing Grace\"\" at the club.\"\ntt0155711,8myhALdcfvI,Rusty shares memories of his mother after her funeral.\ntt0155711,CpcopOQAWWA,\"Walt tries to sing at his lesson, but fails miserably.\"\ntt0155711,CEwyZcmwNiQ,Rusty witnesses a throwdown while signing up for the Flawless competition.\ntt0155711,p2CR0S7DHyQ,Walt has a romantic dance with Tia.\ntt0155711,FbY1BfonRu4,\"When Walt is injured, Rusty accompanies him on the ambulance and pays for his treatment.\"\ntt0155711,FTO-jtC7Hf4,Rusty berates the Gay Republicans for being ashamed of the drag queens.\ntt0155711,DCF_BXNE3oM,Walt asks Rusty how he got involved in the whole drag queen thing.\ntt0155711,qrONj6Srq7M,Rusty and Walt discuss their complicated love lives.\ntt0155711,dJBnRYy3mFI,\"At the party, Cha-Cha comes on to Walt.\"\ntt0155711,x1YvX61qS0Q,\"When Cha-Cha pays a visit, Walt is embarrassed in front of his friends.\"\ntt0155711,g6DnsZvudTI,Walt asks Rusty for singing lessons.\ntt2025526,wWHOsR_cHt0,Nam-yi holds Prince Dureugon at knifepoint while Ja-in and Seo-goon escape the Manchurian base.\ntt2025526,RJePUClQaCA,Seo-goon stands up and takes on Mongolian soldier and Nam-yi returns to help save the villagers.\ntt2025526,6efkIA6C2h4,\"The Manchurian horde appear to let their captors run free, but then chase them down and kill them.\"\ntt2025526,2oFTDbVMd18,Ja-in defends herself against Prince Doreugon.\ntt2025526,kvEgzOjGpoA,Nam-yi leads the Manchurian troops into the middle of a tiger's den.\ntt2025526,ZR9qd2jynNA,\"During the Manchurian invasion, Ja-in is taken prisoner and Mu-seon is killed by the attacking army.\"\ntt2025526,qO6AV-o8fuw,Nam-yi and Jyuushinta go head-to-head one last time with Ja-in in between them.\ntt2025526,WgCQS7EllP8,Nam-yi and the Manchurian soldiers trade arrows from across a ravine.\ntt2025526,abyQFrI-BTE,The Manchurian army attacks during Ja-in and Seo-goon's wedding.\ntt2025526,ex2RuacnG5M,Seo-goon takes on a Manchurian commander with some unexpected but welcomed help.\ntt1456661,zUtw46VWtVM,Chen Zhen and Chikaraishi face off in hand to hand combat.\ntt1456661,JgAmbGwTMbI,\"Chen Zhen kills Sasaki and his men, but can't save Wenzai from the assassins.\"\ntt1456661,dSSXODCgJOA,Chen Zhen fights off a slew of Japanese military officers.\ntt1456661,LrDnPOOQ7mg,Chen races to save the Chinese activists from Japanese assassins.\ntt1456661,S_7ZwIV43zQ,The Chinese rebels destroy the Japanese military base.\ntt1456661,S5Y83cDu8II,\"In World War I, Chen Zhen takes on the occupying German army by himself.\"\ntt1456661,srpM16MbHAE,Chikaraishi forces Kiki to kill her closest friend.\ntt1456661,aoe4V2f2AHg,Chen Zhen foils an assassination attempt.\ntt1456661,Wf-GYKvvI58,Chikaraishi intimates that he knows Chen Zhen is the Masked Warrior.\ntt1456661,CtBWf0Oq0bQ,Chen Zhen suspects that Kiki is a spy.\ntt1999890,BHJTeH6TLx4,The Other teaches Gavin not to steal -the hard way.\ntt1999890,x7TNrjPLDBs,The Barker has Taylor sent to the very real guillotine.\ntt1999890,164eTBYcySQ,Natalie finds herself trapped on a ride with The Other.\ntt1999890,xnv86GOjJz4,Taylor finds herself strapped in the guillotine she thinks is a stunt.\ntt1999890,Z37CyC5UB5Q,\"Natalie dries her hair, unaware of how close danger lurks.\"\ntt1999890,HDOGthpW1Hs,\"Natalie gets intimate with Gavin, unaware that The Other is watching.\"\ntt1999890,szVtrq1Wt8I,\"The Other returns home, putting on his human mask for another year.\"\ntt1999890,aR4h3HHzqlE,Natalie and Brooke hide from The Other in a funhouse.\ntt1999890,-_2TyCKWCcc,\"Natalie plays along with a murder scene, not knowing the 'actor' is a real killer.\"\ntt1999890,2MyJctzA-4s,Asher fights for his life in a zombie maze.\ntt0113464,05s6W7dLEbY,Jeffrey and Steve have a romantic candlelit dinner with musical accompaniment by Mother Teresa.\ntt0113464,lunmhq3ZejE,Jeffrey goes shopping with Sterling to get his mind off his decision to give up sex.\ntt0113464,O4PP1tdCHJA,Jeffrey imagines having a painfully honest conversation with his mom and dad.\ntt0113464,wzlxR3dKjrg,\"Jeffrey receives a visit from Darius, who tells him to enjoy life while he still can.\"\ntt0113464,hb4N2SJjXRM,Father Dan tries to kiss Jeffrey in his moment of spiritual need.\ntt0113464,goRmKynyjqU,Sterling and Darius chastise Jeffrey for skipping out on his date.\ntt0113464,fPQJBHWr8zI,\"Jeffrey, Sterling and their waiter appear on a game show dedicated to human sexuality.\"\ntt0113464,PjYVxXOmsrc,Sterling and Darius try to convince Jeffrey that all he needs is a boyfriend.\ntt0113464,A4g68fTngpA,Jeffrey attends a seminar led by obnoxious self-help guru Debra.\ntt0113464,Vz1MWTi13qA,Jeffrey and Steve run into a transsexual and his mother at the gay pride parade.\ntt0113464,liRaKtnWUAE,A local TV news reporter files a report from Manhattan's gay pride march.\ntt0113464,Pe3mEnRE-EI,Jeffrey decides to give up sex after a night with a crying guy.\ntt3531824,MczK8n5msJM,Vee guides a blindfolded Ian on a motorcycle to complete a dare.\ntt3531824,yKw8Cw13NmY,Ian is given the same dare that killed his friend.\ntt3531824,q8Wj4buHUtE,Vee and Ian are dared to team up.\ntt3531824,nQ2Y1gm0fRU,Sydney and Vee get into a fight at a party.\ntt3531824,W4vPyEk5UK8,Tommy and Hacker Kween hack into the game code and shut it down.\ntt3531824,ce5cnb_5dVk,Vee gets her first dare and must kiss a stranger for five seconds.\ntt3531824,G4ENL-T7Dyk,Sydney attempts a dare to walk across a ladder suspended between two buildings.\ntt3531824,IiQlYWhL_UI,Vee goes to the police to report the game.\ntt3531824,-jg0_iXfTE4,Ty is willing to shoot Vee to win the game.\ntt3531824,PYkBs86HnUc,Vee and Ian must escape a store without their clothes.\ntt7042862,485KJTKt6RE,Santa uses his powers to turn an ornery ogre into a gentle sweetheart.\ntt7042862,2DpotjffI6U,Arvid banishes a gingerbread man to the Land of Icicles and Thorns.\ntt7042862,SjF_DpHczjE,Finn and Haldor talk to the All-Knowing Sage.\ntt7042862,u6W5OFK9jpU,Haldor answers a philosophical question.\ntt7042862,cSO2u-StPbY,Finn and Haldor warn Santa of Arvid's diabolical plan.\ntt0083972,CzbL7AJIhJI,Jason ransacks the barn to find Chris.\ntt0083972,-a1FAp677Vo,Debbie discovers why Andy has gone silent.\ntt0083972,6zx4HGKU2E4,Jason takes out a gang of bikers.\ntt0083972,NxnafGrvcqU,\"Rick looks for the group, but finds Jason.\"\ntt0083972,nfQr0dDL8jg,Chris wakes up to an all-new nightmare.\ntt0083972,8d3LDYM0GF4,Jason kills the owners of a lakefront store.\ntt0083972,FVRaOepQ02I,Jason slashes through the group during a power outage.\ntt0083972,hcb0vROvmWk,\"Trapped, Chris tries to escape Jason.\"\ntt0083972,AQfWibFXtO4,Vera gets shot in the eye by Jason.\ntt0083972,TzAEE887L_g,Chris and Ali face off against Jason.\ntt4761916,3lxLsyE0CRo,The Charons show the group a video of Lexx getting killed.\ntt4761916,FJWgF5XnVLY,Matias finds a hidden folder on his computer full of videos of unsuspecting people.\ntt4761916,0k_yjEiPLoc,A mysterious figure shows up in Kelly's house.\ntt4761916,D4gPEFccxPk,Matias blackmails Charon IV with $10 million dollars in Bitcoin.\ntt4761916,aJgS31WWIG8,\"Amaya is killed, and The Circle votes to see if Matias should also die.\"\ntt4761916,szIOuIIbVfQ,The Circle makes Damon's murder look like a suicide.\ntt4761916,wIloYFMzS6M,The gang unearths a hidden folder on Matias' computer that is full of disturbing and graphic videos.\ntt4761916,5QJGkxbb0wE,Charon makes a dark request to Matias.\ntt4761916,11-AlLawdeg,Serena has to choose between saving the life of her fiancee or her mom.\ntt4761916,rbhNKSWKWwU,The Circle audio edits AJ into making a threatening call to the police.\ntt8726116,ooS5gVdYgRQ,\"On Fantasy Island, Axle and Scout befriend a fire-breathing dragon.\"\ntt8726116,Dh3WAI9JeJw,Scout and Axle talk to a rabbit in a hot air balloon.\ntt8726116,Qwr539L6kCI,Axel and Scout confront a troublesome vulture.\ntt9251718,kdrPUm5zBqA,Luna and her friends battle Lacerta.\ntt9251718,xxGmwvrt4ZA,Lacerta drops by Pixy Dragon Town to show the fire-breathing contenders how it's done.\ntt9251718,4hY7f4nOQtU,Lacerta agrees to help Draco and Grus in the competition if they accompany him into town.\ntt5113040,Z0AxmKelYrE,Katie gets Max a dog cone to treat his nervous scratching habit.\ntt5113040,MrrYu07MIbk,Max and his friends fight Sergei.\ntt5113040,UBWIoJF2X4A,Captain Snowball enlists Gidget and a Cat Lady for backup.\ntt5113040,5Io8n3JYNUY,Rooster gets Max to face his fears and retrieve the sheep named Cotton.\ntt5113040,kMcvRpOOIwY,Captain Snowball fights a circus monkey to save Daisy.\ntt5113040,br2rj_3KW1A,Snowball answers the call of justice!\ntt5113040,u6HHla9ApmI,Chloe teaches Gidget how to be a cat.\ntt5113040,JnuYlFhXWsU,Gidget sneaks into a cat-infested apartment.\ntt5113040,exu61pb5X68,Gidget finds Chloe acting a little strange when she goes to ask her for help.\ntt5113040,0C-qxjiDP1o,Snowball raps while his owner is away.\ntt7073518,HbgLp9_yU_c,\"Eileen prepares to fight her enemy, Amy, and reclaim the title that she took from her years ago.\"\ntt7073518,aa0NlkF7Rug,A young slave fights to escape her master.\ntt7073518,vT3QXNKoZKw,\"A woman journeys to the past to meet Kurt Gödel, a pioneering theorist of the concept of time travel.\"\ntt7073518,DX1p8C_FuxU,A blind teen lives with his new mother in the post-apocalypse.\ntt7073518,N2s_Iij3Xfk,\"Elaine gets stripped of her bikini bottom, but not of her crown.\"\ntt7073518,3gD5egw3-Lg,Summer turns cannibalistic after being roofied with the extract from outer space.\ntt7073518,zhhLFNr_Jio,A man fights a car thief for his car.\ntt0418819,2SJ3eoUGXy0,Cholo and his crew hijack the Dead Reckoning rig during a zombie attack.\ntt0418819,6-s02HyO3XA,Big Daddy watches as his zombie brethren are killed by marauders.\ntt0418819,1s-qZUCH3xY,Zombies carve their way into Fiddler's Green.\ntt0418819,KJ_8vD4Rv9Y,The Dead Reckoning Rig cuts through a gang of zombies.\ntt0418819,2w8LYlDlls4,Riley visits an underground casino where Slack's arena fight is the main attraction.\ntt0418819,7KByxGMoiO4,Big Daddy leads the undead into Fiddler's Green.\ntt0418819,NpjcjrKoeBs,Cholo and his boys raid a liquor store only to run afoul zombies.\ntt0418819,aNA-hjvEyUY,Kaufman gets cornered by Big Daddy and Cholo.\ntt0418819,ukWCpVUXs_E,\"Riley releases the drawbridge for Dead Reckoning, but is besieged by zombies.\"\ntt0418819,_3bYh7CffIQ,Big Daddy's zombie army butchers its way through a luxurious mall.\ntt0085970,Y--v_LdWlQA,Jack gets into big trouble when he takes the kids to a grocery store.\ntt0085970,NkzG9RZBERE,Jack has a growing addiction to daytime soap operas.\ntt0085970,Kcmz-QxexRo,\"Bickering with Caroline, Jack describes his life as a househusband.\"\ntt0085970,fHerVxCsbyc,\"When Jack and his fellow engineers are fired, they take turns throttling Jinx.\"\ntt0085970,7RBqyBb-MlU,Jack plays poker with the neighborhood housewives.\ntt0085970,WBY5O2nTvSU,\"Just as he's about to win, Jack forfeits the race to his wife's boss.\"\ntt0085970,zBLsO7BKVHw,Jack battles an out-of-control washing machine and a ravenous vacuum cleaner.\ntt0085970,OvQctA3xsoE,Jack complains to Caroline about being dragged to her work party.\ntt0085970,1D8CfzvSy7g,\"Threatened by his wife's new boss, Jack plays up his manliness.\"\ntt0085970,BSWKnZ4-2eE,Jack gets a handle on the household chores.\ntt0085970,crI67brUX84,\"In a meeting with corporate bosses, Jack chides Jinx for his self-serving lies.\"\ntt0085970,t794eVHOIvo,\"When Jack changes his daughter's diaper, his boys flee the scene.\"\ntt6146586,BUqJMPAtmdY,\"Using his belt as a weapon, John Wick takes on two Shinobi assassins.\"\ntt6146586,YduLKKYfgSk,\"John Wick and Sofia fight their way through a complex in Casablanca, taking on armed guards with the help of Sofia's dogs.\"\ntt6146586,iw-0Y6HWb9Q,\"When Sofia denies Berrada's request to keep her dog, he shoots it instead.\"\ntt6146586,-1zLU5N6uBU,Two of Zero's assassins attack John Wick in the glass room.\ntt6146586,6eW1ht2HbtQ,John Wick reaffirms his loyalty to the High Table by cutting off his ring-finger and giving his wedding ring to The Elder.\ntt6146586,Sw4pvbkQ-jk,\"Fighting off assassins, John Wick uses a stable full of horses to his advantage.\"\ntt6146586,U5EKQ63wREM,\"On his way to the Continental, John Wick is attacked by Zero and several of his sword-wielding assassins.\"\ntt6146586,L-zzxADqlu8,\"Zero deals the Bowery King seven cuts, one for each bullet he gave to John Wick.\"\ntt6146586,E9B65UGKQ5o,The Bowery King tells John Wick that he is upset with the High Table's betrayal.\ntt6146586,2i8C-GOsHo0,\"After Winston is reinstated as manager of the Continental, he shoots John Wick several times, causing him to fall off the roof.\"\ntt6146586,6CmxSs6Mmx4,John Wick fights Zero on the top floor in the glass room.\ntt6146586,v00zKyXbfD4,\"At an antique arms shop, John Wick takes out a wave of assassins using the old weapons in his vicinity.\"\ntt0096256,Du5YK5FnyF4,Nada makes a bullet deposit at the bank.\ntt0096256,iVXVD0KxSug,The police raid a church that secretly houses a rebellion against the alien horde.\ntt0096256,yjw_DuNkOUw,Nada wears the sunglasses for the first time and discovers the truth of our world.\ntt0096256,vlTPIYTd32Q,Nada and Frank continue the epic fight.\ntt0096256,GeAcikP5N7M,Nada and Frank meet the human collaborators.\ntt0096256,qQgyoHsknIk,Nada accidentally reveals that he's aware of the alien presence and becomes a target.\ntt0096256,vPpNgsJp4DA,Nada and Frank assault the alien propaganda station.\ntt0096256,dgyue1tT-uE,Nada and Frank have an epic fight.\ntt0096256,QB8ken8pZ_s,The Ghouls and police raid an activist hideout.\ntt0096256,aFz1y45KaHA,Nada and Frank attack the Ghouls' TV studio.\ntt8155288,G7gklW3Xbn8,Tree realizes she is stuck in her original time loop again.\ntt8155288,xRShAxpUZ6Y,Tree enlists Danielle to distract Dean Roger Bronson.\ntt8155288,QMBLWE0pu8U,\"After finding Lori dead, Tree is attacked by Babyface.\"\ntt8155288,hT_CiaTcnN8,Tree drives her car into an electric substation.\ntt8155288,1jEe_vPgNJE,Ryan meets an alternate version of himself who tries to warn them about the reactor.\ntt8155288,qUammhHxd1k,Tree studies the time-travel formula and repeatedly offs herself before the killer can.\ntt8155288,x4L81QLGYuM,Tree confronts Dr. Parker.\ntt8155288,SmMmQHR_F4Y,Ryan runs for his life as he's chased by a murderer in a Babyface mask.\ntt8155288,I8-3VpZrBww,DARPA needs a subject to test the reactor on.\ntt8155288,2dn_r_sgBEE,Ryan is murdered by someone in a Babyface mask.\ntt0289765,QAO6uTkGpjM,Dolarhyde attacks Will's family.\ntt0289765,Kq3TiuRC-VQ,Dolarhyde tortures Freddy for his mocking tabloid.\ntt0289765,4WNq9Yy9m_g,Francis apparently kills himself to save Reba from the dragon.\ntt0289765,6nSu2qhTmNU,Francis panics when he feels compelled to kill Reba.\ntt0289765,HVgu-41adSY,\"On his date with Reba, Dolarhyde watches a home video of his next victims.\"\ntt0289765,Kb2WClrbrAc,Will begins to suspect that Dr. Lector is a serial killer.\ntt0289765,4fwQKF64AWY,Will seeks Dr. Lecter's consultation on the Tooth Fairy case.\ntt0289765,UWlxRKXD6sY,\"The FBI finds a note from the Tooth Fairy in Dr. Lector's cell, and have to investigate and decipher it before Dr. Lector gets suspicious.\"\ntt0289765,l4S4IBACQCM,Dolarhyde works out while talking to his deceased abusive grandmother.\ntt0289765,G8_ch6wsWjs,Francis eats a 200-year-old painting of the Red Dragon.\ntt3281548,Ap8p92HCAbg,\"Jordan is welcomed by a group of misfits in the \"\"Friend Zone\"\" at school.\"\ntt3281548,0IuOpt3p3WE,Jordan gives her new friends a makeover.\ntt3281548,Z0sFhnkRCsQ,\"Jordan begins her first day of school by hitting on her teacher, Mr. Marshall.\"\ntt3281548,V6SMgd9L6Z0,\"Trevor makes an ill-judged surprise, thinking that grown Jordan is in the room.\"\ntt3281548,goEiURelfsM,Jordan and April drunkenly serenade with breadsticks in a crowded restaurant.\ntt3281548,oNuGwa5Kd8E,A young girl puts a curse on Jordan for her heartless behavior.\ntt3281548,V-vgoh3ukPc,Jordan's glamorous world goes awry when she wakes up in her prepubescent body.\ntt3281548,HTFjrXA8bFI,Jordan and her new friends join in a song-and-dance number that is well-received.\ntt3281548,a_VIjZa76jI,Young Jordan shows her friends how to live their best lives.\ntt3281548,z82GwvEQ3Vc,April shows Jordan who's the new boss.\ntt2386490,uIsdG0ydS5o,Hiccup and his dragon-riders rescue dragons from trappers.\ntt2386490,dHXVvD4FFas,Hiccup reunites with Toothless.\ntt2386490,X4lUmgN_ByQ,Hiccup leads the dragon-riders on a mission to rescue their dragons.\ntt2386490,tJ1uXsPXyao,The dragon-riders of Berk wreak havoc on Grimmel's boat.\ntt2386490,_0FLP8sxv2E,Toothless and Hiccup battle Grimmel.\ntt2386490,yCHoWsMt0LY,Toothless tries every trick in the book to attract Light Fury.\ntt2386490,9JQEbj0uh0k,The Berkians wish the dragons farewell as they leave the human world.\ntt2386490,w6YTq-3hmnA,Ruffnut annoys her way out of Grimmel's captivity.\ntt2386490,-AZg55qXj7U,\"While searching for Toothless, Hiccup and Astrid discover the Hidden World.\"\ntt2386490,O-W3C2RQduY,Grimmel demands Hiccup relinquish Toothless.\ntt5649108,r5ilcq9hUZI,Amanda tells Lily how she killed her horse.\ntt5649108,PzTICfN0A-4,Amanda learns that she's an unwitting part of Lily's murder scheme.\ntt5649108,C4DPvNXtOzA,Lily tells Amanda how weird she thinks she is.\ntt5649108,S1UpuPvAUss,Lily and Amanda recruit Tim into their murder plot.\ntt7287136,o5NPINxrB7g,Tai confronts Jerod about his infidelity.\ntt5649108,F5NFCYDB5hI,Lily murders her stepfather and implicates the unconscious Amanda.\ntt5649108,rsi2WcPIcQ0,Amanda and Lily try to blackmail Tim into committing murder.\ntt5649108,IfZmBGcWkLI,Amanda tries to teach Lily how to fake cry.\ntt5649108,DYPR82c0v00,Amanda casually proposes killing Lily's stepfather.\ntt5649108,j91qPMHaqbg,Amanda tells Lily that she doesn't have any feelings.\ntt5649108,1bBOUr7rAHw,Amanda writes about her dreams of a horse-apocalypse.\ntt7287136,CwgIvhYyeTc,Jerod mourns the loss of his friend on the court.\ntt7287136,kJVKPHBFNF8,\"Overwhelmed by grief and his failings, Jerod drunkenly falls on Edgar's floor.\"\ntt7287136,9Wy-6pabUwU,Jerod finds inspiration in the local church.\ntt7287136,3jEDXJvOCs8,Jerod considers carrying a gun for protection against police.\ntt7287136,SZnZMhfusbA,Jerod and others try to reduce shootings by fostering love and community.\ntt7287136,_BK3aiBX43Q,The community reels in the wake of a fatal police shooting of an unarmed black man.\ntt7287136,B3bUD6nAKvU,Jerod leads by example with the kids in his community.\ntt7287136,GM59PdNB7FI,Jerod has a drunken hookup with his baby's mother.\ntt7287136,Gcs2QIB_X5k,Jerod's life flashes before his eyes when he's mugged.\ntt4666228,E7XIYOvcjuE,Elijah Berle grinds for a really long time.\ntt5968394,_iinqPkm6m4,Commander Mulligan coerces Gabriel into joining him.\ntt5968394,MybqJCvM1z0,Gabriel discovers that Commander Mulligan has been preparing to bomb the aliens.\ntt5968394,zZg6j228i3A,Aliens hunt down the perpetrators of the Unity Rally attack.\ntt5968394,vi8Kaoib33Y,A medic removes the implanted larvae from Anita's neck.\ntt5968394,A3yrtArn5zA,The Drummond family tries to flee Chicago after it is placed under martial law.\ntt5968394,V4hv2OSD3s4,The members of Phoenix attack the Unity Rally at Soldier Field.\ntt5968394,c6EhzIb5NKo,\"Evading Commander Mulligan, Gabriel gets attacked by flying aliens.\"\ntt5968394,Dka4AUVm_j4,Law enforcement rounds up the citizens of Pilsen.\ntt5968394,4hA7ILi4l68,Rafe and others are sent to a prison off-world.\ntt5968394,q0k-b9FeGFU,Rafe runs afoul a Legislator Alien.\ntt4666228,M_h6qdnNiNw,Chris Pfanner rips through the city.\ntt4666228,o_rv7bmEDm0,Rowan Zorilla delivers thrills and chills all over the world.\ntt4666228,22LBB9jJG60,Pedro shows off his skateboarding finesse.\ntt4666228,rdc5PXKBFdE,\"Gilbert Crockett skated everywhere, except where the man with the hammer lurked.\"\ntt4666228,S_rNBw8E98s,\"Kyle Walker rips, grinds, and ollies.\"\ntt4666228,N1UxH6P-Fgc,Chima Ferguson has mastered the fine art of jumping off of things while on a skateboard.\ntt4666228,ss7eqc_SHsg,Skating is life for Dustin Dollin.\ntt4666228,FqbR0-PbFOo,Geoff Rowley will do anything to be able to skate.\ntt4666228,LjSeILLCe2M,Tony Trujillo masterfully blends parkour and skateboarding.\ntt0837563,IKa2Mr-yHnE,The reappearance of Church leads to an unexpected death.\ntt0837563,70eKt79PSQw,Rachel trembles before her reanimated daughter.\ntt0837563,Y5Y0SYRZRtM,Ellie tricks Jud into a grisly death.\ntt0837563,xHtAfA2ctBs,Louis buries Ellie in the Pet Sematary.\ntt0837563,H5LLqPyF11w,A patient named Victor Pascow rises from the dead and warns Louis about the cemetery.\ntt0837563,tMB7LgnO2Wo,Jud explains to Louis the inexplicable power of the Pet Sematary.\ntt0837563,HUPoWdZ1ZdQ,Ellie torments Rachel.\ntt0837563,6_Ed23ettio,\"Rachel has a nightmare about Zelda, but Ellie is terrifyingly real.\"\ntt0837563,FMbSH8g9vsU,Ellie returns to Louis.\ntt0837563,ewbUaMvCaYg,Rachel helps Ellie kill Louis.\ntt5599818,vizu1RigaBI,Guy and Girl try to determine the nature of their relationship.\ntt5599818,ewANNniIEhc,\"When Girl steps on a nail, Guy searches for a way to clean her wound.\"\ntt5599818,4fKRyf8BI-Q,Miranda plays the cello while plotting her escape.\ntt5599818,rKQEYi53rvQ,The Boy meets a Woman-Child while wandering the wastes of the apocalypse.\ntt5599818,gbIKuFaDbV8,Miranda struggles with her ennui while having dinner with her father.\ntt5599818,YoI_YkIGXXs,\"Chaos, driven by isolation and madness, finds distraction in an unlikely place.\"\ntt5599818,x7TPeGns0N8,Miranda escapes her protective bunker.\ntt5599818,-krDTO77jrY,Miranda does her daily routine with the apocalypse outside her room.\ntt5599818,an5-b_99zH0,Chaos finds his rampage at a violent end after men more savage than him attack.\ntt5599818,uD-VMe03AdY,Guy meets Girl only to forget her and fall in love again.\ntt3391782,GOYpqqTsO-k,\"Occupy Wall Street organizer Monica Hunken tells her story of abuse, adversity, and loss, and how this shaped her journey to the Occupy Wall Street movement.\"\ntt0098084,fgbjvvCPa88,Gage wanders after a kite and into a truck.\ntt0098084,A_bC8fF6WZE,Jud tells Louis the story of Timmy Baterman.\ntt0098084,J-D8n4_fd6Q,\"Louis tends to Victor Pascow, who is fatally injured after being hit by a truck.\"\ntt0098084,OBXQr25dHQE,\"After coming back from the dead, Gage kills Jud.\"\ntt0098084,gA-VU0mczSI,A reanimated Gage kills his own mother.\ntt0098084,v3E4s7VN4xE,Rachel recounts her sister Zelda's death.\ntt0098084,A949a8j5Boo,Louis kills Church.\ntt0098084,ZbL_db16k0w,Church comes home after being killed and buried.\ntt0098084,g0nhEzoCkJo,\"Louis kills his zombified son, Gage.\"\ntt0098084,egC6XhnfuZk,A reanimated Rachel returns home to Louis.\ntt3391782,MY-ZusWqyqs,\"New York University professor Andrew Ross discusses debt, and how Occupy Wall Street has helped save people from its crushing burden.\"\ntt3391782,gaz2wRxRZ7s,Sympathizers protesting the eviction laws of Spain talk about what can be done to change the government and the banking system of Madrid.\ntt3391782,pgkcX22u0SI,Occupy Protestors decry wealth disparity largely caused by banks and the 1%.\ntt3391782,QmSSFYFSA00,Nonviolent protest consultant Srdja Popovic discusses how graffiti can help raise the profile of nonviolent causes.\ntt3391782,Bf0HvoLXWdU,Victims and abusers speak about the horrible atrocities that occurred in Iran between 1981 and 1988 at the Iran Tribunal in The Hague.\ntt3391782,9aIOR7dl2CY,\"Iranian protestors recount the actions, failures, and effects of the 2009 Iranian Rebellion.\"\ntt3391782,AajX1xvWnk0,Syrian protestors talk about their unique methods of undermining Bashar al-Assad.\ntt3391782,S1C8tqyy3oc,\"The Occupy Movement protests, faces adversity, but endures.\"\ntt3391782,aYbKjHmTdMw,FEMEN gather to practice methods and to unite their philosophy.\ntt6428676,oexJPg9rZqo,\"The Chimpanzombies invade Clockwork Springs, separating June from the group.\"\ntt6428676,u_jemmhoj0Q,June and her mother use their imagination to add more joy to Wonderland.\ntt6428676,NCi4QNKpVB8,June uses the spider robot to rebuild Wonderland.\ntt6428676,3wLF8oDA3ZM,June ignites the light within Peanut which helps them escape the darkness.\ntt6428676,_t38ENQ9jlY,June and her animal friends race to save Boomer from a broken roller coaster.\ntt6428676,b5Q6A_1YyHg,June tests her homemade roller coaster.\ntt6428676,-sD2jY0KMA8,June runs from the ferocious Chimpanzombies.\ntt6428676,PlJ-x-JNEj8,Chimpanzombies attack the group using a spider-robot ride.\ntt6428676,ANTOMowTXZU,June and her team accomplish restoring Wonderland and the Chimpanzombies back to their splendid state.\ntt6428676,-kKqgjrbb6I,June and Peanut flee from chimpanzombies.\ntt2267858,vKuvku8JEq0,Mirela finally takes her Indian driving test.\ntt2267858,U5nphwXr8VY,A couple of students face failure on their driving journeys.\ntt2267858,dP5e3MxjRiw,\"During her first driving lesson in India, Mirela has a problem with everything from the shape of the car, the fan and the language barrier.\"\ntt2267858,LN8iHxuFSts,\"Jake's driving instructor, Tetsuya, teaches him the proper way to enter a vehicle, and then they 'practice' sitting inside one.\"\ntt2267858,RsGRrlK84zM,\"After immigrating from South Korea, Hye-Won decides to enroll in a German driving school so she can drive her and her family around Munich.\"\ntt2267858,Vb9wR2ibCRw,\"Mirela's driving instructor completes his daily Puja, and Mirela learns more about the culture and religion of India.\"\ntt2267858,F3yawE_0QaE,Jake gets some last-minute advice from a fellow American before he takes his driving test.\ntt2267858,YtceTJF_VhM,\"The day before the driving test, Tetsuya makes Jake circle around the course for hours.\"\ntt2267858,z6JcuVWaVfQ,\"Hye-Won's husband tells her that he will have to join the South Korean Army, creating serious questions about their family and future.\"\ntt2267858,X3WA8eZ4Q_0,\"Hye-Won argues with Herr Krieger and says that she is the real cause of her faults, not what she learned in Korea.\"\ntt6495770,0Dp--gKKMJ8,D.C. and Benny hunt animals to create a petting zoo for the park.\ntt0106220,yWSRVYU_JMo,Pugsley and other campers sing of the first Thanksgiving.\ntt0106220,v9UIDDlnSgA,Wednesday and the other camp outcasts hijack the Thanksgiving play.\ntt0106220,Ke-MYW3XORg,Wednesday and Pugsley have an 'experiment' with their brother.\ntt0106220,NIDabDkcS8o,Morticia and Gomez dance a death-defying tango.\ntt0106220,yprYw3FQUpQ,Debbie's gift for Fester doesn't go as she planned.\ntt0106220,w80ZSg7kNbE,\"Wednesday, Pugsley, and Joel are punished in the Happy Hut and emerge different.\"\ntt0106220,D1IshjFWDJk,Fester and Debbie have their bachelor and bachelorette parties.\ntt0106220,7p0J9wVGwZ0,Morticia gives birth to her third child.\ntt0106220,PmYdvwAqwDg,\"Debbie tries to electrocute the Addams Family, but gets a shocking surprise.\"\ntt0106220,oK1zfJausVM,\"On their Honeymoon, Debbie tries to kill Fester.\"\ntt6495770,ZKxqB5gCX6E,\"Benny breaks into a news station, but gets a show of his own.\"\ntt6495770,1N81Dwye3VM,D.C. ramps up the chaos at the park in a bid to attract more customers.\ntt6495770,3Cf6HfBCcso,D.C. breaks into a rival park to steal lumber.\ntt6495770,E4rFRdmeWqU,D.C. and Benny chase after a bus to find Boogie.\ntt6495770,STfoetR9Su8,D.C. revels in a riot at Action Point.\ntt6495770,Vchw3dbVeUo,\"D.C. waxes poetic about the halcyon days of his rowdy, no-rules amusement park.\"\ntt6495770,9EFxRx8EbDk,D.C. and the gang decide to crash a televised grand opening to promote Action Point.\ntt6495770,UUAQ3T09_os,D.C. tests his new trebuchet earlier than expected.\ntt6495770,PyUqYOB4ey8,D.C. and the Shitbirds shoot a commercial for Action Point.\ntt0117894,ALO5aag-ZIo,\"Billy finds the \"\"Gypsy\"\" camp and threatens to curse them all in return for what they've done to him.\"\ntt0117894,9fFbDzUOD5o,\"Billy finds the carnies at a carnival, and discovers that getting the curse lifted won't be so easy.\"\ntt0117894,HiavOVW1Iv8,Billy gives the cursed pie to Heidi.\ntt0117894,6BBGO5M_2A0,\"Richie attacks the \"\"Gypsy\"\" camp to make them to take the curse off of Billy.\"\ntt0117894,uCG1EiqEAEg,\"Tadzu tells Billy that in order to lift the curse, he must transfer it to someone else.\"\ntt0117894,Ky6GupHDuOw,\"After Billy is cleared of all charges, Tadzu puts a curse on him.\"\ntt0117894,-7cV5cWQmxg,\"Billy accidentally runs over an old \"\"Gypsy\"\" woman when he is distracted by his wife, Heidi.\"\ntt0117894,OFJKL2POF5I,Billy visits Hopley and discovers that he has also been cursed.\ntt0117894,gp7K6ZwuDow,Billy loses his cool when Heidi refuses to believe that he was cursed.\ntt0117894,81oozSLS2CM,Billy is horrified that his daughter also ate the cursed pie.\ntt2062996,PWihKQVb_aY,\"World renowned chefs Mary Sue Milliken and Susan Feniger recount their beginnings in the industry, what it was like to be a woman in the cooking world, and how they got together to start their restaurants.\"\ntt2062996,ZMIGwSNQA4Y,Pulitzer Prize winning cartoonist Steve Breen struggles to come up with an idea for an editorial cartoon as his deadline quickly approaches.\ntt2062996,zdF8hHVUzM8,\"World renowned creatives from across disciplines tell what they did, and what you can do to be successful.\"\ntt2062996,Qxzrv4GCwo0,\"Creators explain how they work, deal with deadlines, overcome procrastination, and accomplish their goals.\"\ntt2062996,Z_5l0p0gmvA,\"Creators from a variety of fields discuss how their brains work, and what makes them so creative.\"\ntt2062996,eqarJw8A2YY,\"Famed composer, and former child prodigy, Jay Greenberg talks about how he focuses on indentifability and personality when composing.\"\ntt2062996,fp8Ob7kBqJc,\"Moungi Bawendi and W. David Lee speak of their cancer detection invention, and how they overcame doubts of its possibility.\"\ntt2062996,koahs44agqU,\"Creative talent of dancers, political cartoonists, comedians, and musicians talk about their early days.\"\ntt2062996,EE2FUs9iI0A,\"Tom Perrotta recounts how his unpublished novel \"\"Election,\"\" and a bit of luck, led to his literary breakthrough.\"\ntt2062996,miE1oJ9ysUs,Neville Page recalls how he found his inspiration for designing a grotesque creature for J.J. Abrams' Star Trek.\ntt5596104,sFRjPMAxn1k,Chandra reveals the cult's inhuman origins.\ntt5596104,MGuKcmxMPQk,\"After a young girl is hit by a motorcycle, Jamie watches the cultists heal her by spiritual means.\"\ntt5596104,ZzkELXr8siQ,Jamie has his first encounter with the Ashram's Guru.\ntt5596104,F2UxQiUoCD8,Jamie learns to become one with the universe.\ntt5596104,QymZP9taonU,Jamie finds Sophie trapped in a spiritual coma.\ntt5596104,_pZJUgFokcw,Jamie learns of his special gift from the Guru.\ntt5596104,Z8lnce2Ij-4,Jamie's telekinetic powers come into their own.\ntt5596104,7_ClXAzhDQ4,Jamie makes a grisly discovering linked to the disappearance of Nitin.\ntt7014006,6pUt6xlMorQ,Kayla deals with anxiety and awkwardness at a pool party.\ntt3576060,RA0xUXiz_dc,Matthew becomes a Libyan freedom fighter.\ntt3206798,oSEQnREqfF4,Lola has a moment with a random stranger.\ntt3206798,MpPwsiwPhF4,Lola's emotions spring forth.\ntt3206798,ofrL7_UA04k,Lola apologizes to Tim years after she drunkenly ran over his son.\ntt3206798,bocu5uL8siM,Sam doesn't take news of Lola's ex-con status very well.\ntt3206798,W4zjAZcHUaE,Lola and Sam make up and make out.\ntt3206798,yHo2Yx50F8c,Lola and Sam have a very good first date.\ntt3206798,PeliEV1oD2A,Lola records her farewell to Henry.\ntt3206798,ZRdnTHyJQQM,Sam learns the truth about Lola.\ntt3206798,2c3-0yhNlfI,Lola would rather have Sam fix her up than talk about flipping houses.\ntt3206798,R5h3Pynz-ts,\"Knowing the full truth, Sam accepts Lola for who she is.\"\ntt3576060,SdSQJTSYXJY,Matthew contemplates his decisions while in Libyan prison.\ntt3576060,OAqqb5FC_a0,Matthew feels a sigh of relief after hearing he may be saved.\ntt3576060,yU6yKmqhhp8,Matthew is shocked by how much of the war is inspired by American films and likes on social media.\ntt3576060,yebKBYB7rEs,Rebels help Matthew escape from prison.\ntt3576060,8nSGhJRDjX4,Matthew experiences what it's like to be a soldier while filming a troop during the war in Iraq.\ntt3576060,pf4EjhjgisM,Matthew and his comrades reflect upon overthrowing Gaddafi.\ntt3576060,4MWlfC7QTDs,Matthew returns home only to realize he has to return to Libya.\ntt3576060,sa2LecdGh5Q,Matthew recounts a combat situation that led to his first kill.\ntt3576060,HNPPD_4oD9M,Matthew VanDyke gets captured in Libya after surviving the fight at al-Brega.\ntt7014006,kNtopT3-5t0,\"Kayla shadows Olivia, a friendly twelfth-grader.\"\ntt7014006,Yq9fKm8q0iY,Kayla comes to terms with her anxieties and insecurities.\ntt6958014,sxY6Jc1MZSE,Sergio and Naima form a deep emotional and sexual connection when they go back to Sergio's house.\ntt6958014,6R2Uu5x6Imo,Sergio and Naima tickle the ivories and each other.\ntt7014006,VwkGKFFk-F4,Mark expresses his pride of being Kayla's father.\ntt7014006,AcSDeQhGGFM,Riley pressures and harasses Kayla into truth or dare.\ntt7014006,LK-4Dmq6Hs0,Kayla tells off Kennedy and Steph at her class graduation.\ntt7014006,NX12Wu1uqbI,Kayla has a good time at the mall until she receives an unexpected visit from her father.\ntt7014006,hH3peh07eq4,Kayla starts her day by filming an advice blog on her Youtube channel.\ntt7014006,6Ua_T32yaic,Kayla and Gabe bond over chicken nuggets and Rick and Morty.\ntt7014006,V9E9Nce1dC0,Mark Day can't figure out why Kayla has a banana.\ntt6958014,qiRW4OvzELU,\"Naima is excited and enthralled by the free spirit and sexuality of the nightclub singer, Sergio.\"\ntt6958014,lUPTOiM_7CM,Naima proposes having group sex with Sergio's friends.\ntt6958014,2jqk0yyPkrY,Naima and Sergio discuss past relationships.\ntt6958014,iwryTZf6bA0,Sergio convinces Naima to send an angry email to the Duplass brothers.\ntt6958014,GM1x6UcMp0Y,\"Naima, Sergio, Glow, and Kathy attempt to have group sex, but Naima gets uncomfortable.\"\ntt6958014,IznFYCiGAPA,Sergio and Naima plan to make love every hour for 24 hours.\ntt6958014,uh4bsAP7K4k,Sergio defecates in a pan and throws it at Naima.\ntt6958014,qy58BaeEMyw,\"Naima, Sergio, and Susana share an awkward meal.\"\ntt6921996,5W19mLb-9JM,\"Johnny English tries to train using virtual reality, but ends up wreaking havoc on the city of London.\"\ntt6921996,suYDvQwikn4,Johnny English and Bough sneak on to Jason's yacht.\ntt6921996,rpqgDDBcmcI,Johnny English and Bough chase after terrorism suspect Ophelia.\ntt6921996,Jhzm2AvUGHA,\"Johnny English is smitten with the beautiful Ophelia, but is she hiding something sinister?\"\ntt6921996,31fx9aF04ww,Johnny English unwittingly avoids an assassination attempt from Ophelia by taking uppers and spending all night in the club.\ntt6921996,s6moLb_ieqA,Johnny English accidentally stuns three British spies with a pen cap grenade.\ntt6921996,gFJT9ziRAUI,Jason Volta tries to escape and it's up to Johnny English to stop him.\ntt6921996,wmu9xg12xuc,Johnny English commandeers a driving school car in order to elude Jason Volta.\ntt6921996,lISiW7wcIVc,Johnny English and Bough pretend to be French waiters to steal a suspect's cell phone.\ntt6921996,lJ7F2kWLGuE,Johnny English inadvertently triggers a missile launch which destroys Jason's yacht.\ntt5610554,9_SMqU969fw,Marlo's brother Craig tells her about 'night nannies'.\ntt5610554,NxrAVHpoBs4,Marlo has it out with school principal Laurie after learning that Jonah isn't welcome at his private school.\ntt5610554,CmUXU3VLgGI,\"On his first day at his new school, Jonah goes into a tantrum.\"\ntt5610554,2W7WM3CuXPU,Marlo and Tully recreate Tully's husband's greatest sexual fantasy.\ntt5610554,OCYRGGLywdQ,\"Marlo realizes that \"\"Tully\"\" was just a figment of her imagination stemming from extreme sleep deprivation.\"\ntt5610554,EBu9PvRBPos,\"Marlo reminisces about her youth and says goodbye to her younger alter ego, Tully.\"\ntt5610554,qW7LtKsIfHM,Tully tells Marlo that she can't be her night nanny anymore.\ntt5610554,O3TmokjuQR0,Tully gently seduces Marlo.\ntt5610554,-Ian949JzDw,Night nurse Tully shows up at Marlo's.\ntt5610554,qDQo4nvQ2yw,\"On the way home from Brooklyn, Marlo falls asleep and crashes her car off a bridge.\"\ntt0397535,3rb5s-BoCFM,Chiyo receives kindness from the Chairman.\ntt0397535,KVnOa_HhgX4,Sayuri plans to drive Nobu away are ruined when Pumpkin brings the Chairman instead.\ntt0397535,HliXkWOMgaE,Sayuri is chosen as the lead in a popular dance performance.\ntt0397535,dPaM45IreF4,\"Chiyo catches Hatsumomo together with her boyfriend, Koichi.\"\ntt0397535,HV6s5JiA82g,Mameha takes Sayuri to a sumo match to meet Nobu.\ntt0397535,HUZ-rA7L0uk,\"Chiyo and her sister are both sold into servitude, but only Chiyo is taken in by \"\"Mother\"\".\"\ntt0397535,0NAWQvMZpO8,Sayuri returns to help Nobu and the Chairman win the approval of Colonel Derricks.\ntt0397535,lG40tBFlGMQ,Sayuri returns to find Hatsumomo in her room.\ntt0397535,MyzSuy1v6DM,\"Expecting to see Nobu, Sayuri is surprised to find the Chairman.\"\ntt4092422,hhjLmbn5YoM,Arthur and Vida make their vows to each other.\ntt0397535,LeGBkG_sRNc,Sayuri begins her transformation into a geisha with the help of Mameha.\ntt4092422,9qNFpkUBSro,Arthur's family tries to move their father's body.\ntt4092422,tQ_Ry1KTluA,Vida and Arthur find living together a bit more difficult than they anticipated.\ntt4092422,tgBurIq9lGE,Arthur and Vida start over again.\ntt4092422,vAO2D0riCDg,Arthur makes a proposition to Via and she makes a proposal of her own.\ntt4092422,owUlPwoEfaM,Tensions come to a head between the the Davies and the Berliners when Adam and Llion bring their bigotry to the bathroom.\ntt4092422,3w6Z_-R4Kk8,Vida meets Arthur's very eccentric family and breaks all the house rules.\ntt4092422,r5ia1XDzIAU,Vida doesn't take kindly to Arthur's comments.\ntt4092422,rc5v5EODszE,Arthur makes one last visit to Vida.\ntt4092422,bqy-R0SemoM,Arthur makes a bet with Vida.\ntt2798920,YOCEHKSgwlQ,A mutated alligator attacks the expedition team.\ntt2798920,ZrDL3HQCwE8,Anya cracks and kidnaps the expedition team.\ntt2798920,xC3PGTTjX7E,The expedition finds chilling footage recorded by Kane's team.\ntt2798920,mAB-hSPmzjk,The Humanoid creates itself from Lena's blood.\ntt2798920,Mg0bvyIEHcs,A bear mutated by the shimmer terrorizes the surviving members of an expedition.\ntt2798920,Gi3K-CApAS4,The Humanoid becomes Lena.\ntt2798920,RSl6bwZabjA,\"Josie reveals that she's infected, but wants to choose her own way to die.\"\ntt2798920,282_VCffiTo,\"Lena reunites with Kane, but is it really them?\"\ntt2798920,VHj96nAjRn0,The expedition finds the mutilated body of the disemboweled soldier.\ntt2798920,kVbmTKqZ31M,The entity takes over the body of Dr. Ventress and erupts outside of her.\ntt7575702,aPdxMGV1Y28,A girl turns the table on a couple of bullies.\ntt7575702,2kdSBZ2QieY,Henry tries to kill the alien bug growing inside his pregnant wife Kate.\ntt7575702,jcmTZfv5z-k,A werewolf attacks and kills a young woman on her way home.\ntt7575702,hq4lKhTXzXQ,Henry satisfies the hunger of the alien bug that lives inside him by killing and eating an old lady.\ntt7575702,rdWIo5R10CM,A serial killer turns on his former partner when he tries to attack his family.\ntt7575702,ZyMP_jN2Veg,A woman finds a routine surgery to be more than she bargained for.\ntt4953610,MFN2fMP05CI,\"Bruce hears a noise in the night, and recruits Mark to help him search the house.\"\ntt0114608,S3MGT2fahAY,The Collector attempts to seduce Jeryline one last time.\ntt0114608,5zileWIEgoQ,Amanda gets off on murder.\ntt0114608,Kuy5Qgp5pvg,The Collector comforts -and corrupts- Cordelia.\ntt0114608,2sX5DMSCipI,Brayker and Jeryline fight off a possessed Uncle Willy.\ntt0114608,ewiNzru8Kek,\"Brayker leads everyone through the mine, and Jeryline finds Danny.\"\ntt0114608,7sXlyaQ_ZHs,The Collector raises some demonic friends to his deadly hoedown.\ntt0114608,urbo6F_qD5k,\"The Collector traps Jeryline, who has one last gambit.\"\ntt0114608,fbDgv4huUp4,Demonic creatures attack the boarding house.\ntt0114608,MWc0I1-Sfj4,Roach makes a deal with The Collector.\ntt0114608,D7gk8nagjHU,A demonically possessed Cordelia feasts on Wally.\ntt4953610,H6jj52hYXeQ,Bruce tries to start the car to escape what is terrorizing him and his family.\ntt4953610,FFnlaQlI1So,\"Officer Morrison talks about what he saw when he arrived at the scene of the murders, and other locals talk about the possible curse of the area.\"\ntt4953610,ogUC0Fcvh7g,A fellow teenager sneaks up on Mark and Kacie in the woods.\ntt4953610,UkPkaNawTUw,The family hunkers down in the master bedroom.\ntt4953610,c_SJMeRltkA,Mark goes looking for Manny's medicine in the garage.\ntt4953610,0yAYgv2YQ5k,Maria seeks cover in her bedroom.\ntt4953610,NirTc-GvKLk,Bruce heads back inside to look for his family only to get a nasty surprise.\ntt7043070,PkUS3Y9bR9s,\"Coworkers trapped in an elevator turn to murder, but all is not as it seems.\"\ntt0455760,5k-dlqqHE2M,Billy the puppet comes to life and brutally kills Lisa.\ntt0455760,qTey0qxMboA,Jamie gets a fright when he spends a night in a motel room with the dummy.\ntt0455760,n1VEmXiaFY4,Henry tells Jamie the story of Mary Shaw.\ntt0455760,p0cf4-1zuOk,\"Jamie realizes that his \"\"stepmother\"\" Ella was Mary Shaw all along.\"\ntt0455760,rOzJnj3UmNE,Henry gets killed by Mary Shaw.\ntt0455760,X2X3DxFAFlQ,Edward tells Jamie about the curse that Mary Shaw placed on the Ashen family.\ntt0455760,Y9Nt3hlMUUI,A possessed clown doll tells Jamie why Mary Shaw killed his wife.\ntt0455760,oEHayxH_YT8,\"Detective Lipton and Jamie stumble upon Mary Shaw's collection of dummies, as well as the body of a missing child.\"\ntt0455760,-t06SZje8O0,Mary Shaw and her dolls attack Jamie and Detective Lipton\ntt0455760,z7J95xF4vW8,Jamie burns the Billy dummy in the fireplace as Mary Shaw attacks him\ntt7043070,DyUus5cUe08,Sister isn't feeling too well...\ntt7043070,aHI-JX6Q3Xk,A woman begins to suspect that she's being watched.\ntt7043070,rHIIMIBMvng,Never make the mistake of watching a cursed video tape.\ntt7043070,py7xqlpvCIk,A haunted toothbrush attacks.\ntt7043070,6puVCaR2E7M,A woman is haunted by her dark half.\ntt7043070,dXk2wGeBUHE,A possessed woman tries to seduce two burglars.\ntt7043070,eQSqgubHzn0,A woman's doppelganger attacks her while she's in the tub.\ntt5886046,eB-ldQkL--0,The group tries to escape the first room before they are burned to death.\ntt5886046,Kiw89e1mHpM,Ben meets the Games Master.\ntt5886046,jjwg2PeDUxM,Ben and Jason try to escape from a room while hallucinating.\ntt5886046,aW3-E3My-kc,Ben looks for clues while the room closes in on him.\ntt5886046,7mm8aQCp_oc,Mike and Jason test the limits of their bodies hoping to find the next clue.\ntt5886046,X8w0J4y5X4g,Zoey shares her investigative findings with Ben.\ntt5886046,S6yZ-K4SHJU,Amanda's only chance of survival is hanging onto a phone.\ntt5886046,z7siqPhc1qc,The group finds a clue under thin ice.\ntt5886046,StoThowf7Y4,Zoey goes back to the crime scene with Detective Li.\ntt5886046,E-EDJ6Z8mS8,Zoey outsmarts her opponents.\ntt1521787,8uLL9nYu9YA,\"Drake makes the acquaintance of Harrison Dent, a paranormal investigator.\"\ntt1521787,6qXs7Yp75M8,Drake and Susan uncover the truth behind the house's curse and reunite their angry spirits.\ntt1521787,UU_Ly8gXV6M,Susan discovers the awful truth of what happened before they arrived at the Wincester house.\ntt1521787,REkL4uLFnPs,Harrison Dent arrives to help Drake and Susan fight against the angry spirits in their home.\ntt1521787,ST9ouIvHftA,Harrison Dent asks the spirits who haunt the mansion what their business is with the family who's recently moved in.\ntt1521787,ntqVq02V2v0,Drake and Susan discover secrets of the home they are staying in.\ntt1521787,LMcBi9a8_RQ,Drake and Susan panic after an intense encounter with the spirits.\ntt1521787,b31BhA8om1E,Harrison Dent leads Drake and Susan to a safety circle in the hopes of preventing an imminent attack.\ntt1521787,I3G-1_l97K4,Susan and Haley hide from angry ghosts in the halls of their home.\ntt1521787,WjWpGhzYS6o,Haley discovers a spirit inhabiting her room.\ntt5941692,G5aoRyZ-QtM,\"Gloria makes a run from the gang, but gets picked up by the DEA.\"\ntt5941692,tEyY-ijoyaQ,Lino pressures Gloria into entering the Miss Tijuana pageant to save her best friend.\ntt5941692,HhmpYA22oio,Gloria follows Lino's orders and wins the fixed Miss Tijuana beauty pageant.\ntt5941692,VLm7BuSsFK8,Gloria reverses the plan to assassinate Chief Saucedo.\ntt5941692,PdmlJSk6QAk,Gloria rescues Suzu and confronts Lino.\ntt5941692,d0c6KWKMAF8,Gloria watches in horror as Isabel dies to protect her cover.\ntt5941692,FbDFmWdG3NU,Gloria tries to cross the border while carrying money and drugs.\ntt5941692,qoXJJin1e7g,\"The morning after the club shooting, a police officer agrees to take Gloria to the station to find her friend.\"\ntt5941692,891-YR-fgsk,Gloria tries to sneak a chip into Lino's phone.\ntt5941692,fwITaMQj7S8,Gloria decides to save Lino during a shoot out with the DEA.\ntt3080844,3TF7zAiuX1k,Father Gennadiy finds a predator while rescuing drug-addicted street kids in Ukraine.\ntt3080844,qHizQ-En6Tk,\"Gennadiy's rehab center gets most kids back on their feet, but it's not without its struggles.\"\ntt3080844,N7wkGjBcjp0,Gennadiy saves a mentally handicapped woman from her abuser.\ntt3080844,NWNMrmwD7Xo,Gennadiy laments his helplessness in the face of Russian occupation.\ntt3080844,QteR6PIwTNk,Gennadiy preps his kids for a televised statement against Putin's invasion of Crimea.\ntt3080844,fXn18S0O52A,\"Gennadiy reflects on the faults of the Soviet regime, the trouble it has caused, and the trouble that is yet to come.\"\ntt3080844,wS93oTI5JY8,Gennadiy expresses his hopes and dreams for his country and the kids he is helping shepherd.\ntt3080844,9J_YOz9jvG4,Gennadiy welcomes a new rescue to his rehab center.\ntt3080844,XP2jPEAalOw,\"Father Gennadiy helps a street kid piece his life together, starting with his surname.\"\ntt3080844,ljzeZK56UeY,Gennadiy recounts finding his life's calling.\ntt5160154,sxGRFqybDw8,Jason and Ade tease each other about girls and sports.\ntt5160154,WUgVUfYuEiQ,Jason explains the hell of public opinion on sexual orientation.\ntt5160154,JXRw_5ug68w,Jason and Ade horseplay with racial epithets.\ntt6205872,VJECUbUadpg,A group of masked men break in to the house to kidnap and kill the girls.\ntt5160154,Qh5tZM4ybhI,Jason uses Harry to toy with Ade's feelings.\ntt6205872,y-qCvfXMTlg,\"After her nudes leaked online, Lily gets harassed and chased by a sexual predator.\"\ntt6205872,jyDUZd-Orlc,Lily kills Nick after he tries to assault her.\ntt6205872,944BOVL_y_U,Lily makes a viral video inspiring the young women of Salem to take up arms.\ntt6205872,Q1khILbP8yU,\"Lily, Em, and Sarah save Bex and kill her tormentors.\"\ntt6205872,5oHNA8muC4I,\"Lily discovers that all the messages and nudes she's sent to her adult lover, Nick, have been leaked.\"\ntt6205872,2k0S-F8VIhI,Grace takes out her revenge on Reagan after her texts are leaked.\ntt6205872,NadEkwOLA7k,Lily and Bex fight back against the men who try to kidnap and murder them.\ntt6205872,S0X0KScmHvo,Lily arms herself and goes to rescue her friends from a corrupt cop.\ntt6205872,tfUt-J2GCmA,Lily and Mark have sex while her secret lover Nick watches.\ntt5160154,lQm7hpsJsPA,Lyndsey's seduction of Jason doesn't go as either planned.\ntt5160154,CVjRQMnURtM,Jason struggles to express what's really on his mind.\ntt5160154,luE7cUCzQK4,Jason & Ade's screwing around leads to something more.\ntt5160154,oJT7pQyq63M,Jason starts a toxic drinking game with Ade and Harry.\ntt5160154,8510wKZLa6g,Jason pushes Ade to kiss Harry.\ntt0864835,_nnGxztgrQk,Sherman and Penny return to the present to warn Mr. Peabody of his imminent demise.\ntt0864835,jfhEIIK-jB8,Mr. Peabody and Sherman craft a plan to save the city as the past comes crumbling down atop them.\ntt0864835,AhcxeUrWTRc,Penny tricks Sherman into using Da Vinci's flying machine.\ntt0864835,rWlFWMR9MfY,Mr. Peabody rescues Sherman from the Greek army during the Trojan War.\ntt0864835,PiL1okP-jbc,\"Mr. Peabody, Sherman, and Penny rush to rectify the tears in their timeline.\"\ntt0864835,9L-HJ7BVR6A,Mr. Peabody and Sherman get swept up in the French Revolution.\ntt0864835,jjPq-r91oB4,Friends of Mr. Peabody provide their support after Ms. Grunion takes him.\ntt0864835,T1IyMJOC0JM,Mr. Peabody and Sherman pretend to be the god Anubis to save Penny from being sacrificed.\ntt0864835,Ru_KziPyopw,Mr. Peabody remembers the days since he first met and adopted Sherman.\ntt0864835,ZgeAaV-OFvs,Mr. Peabody explains how he came to be the dog he is today.\ntt2582784,G-I4i0ClrmQ,Luke tells Erica what Will really did.\ntt2582784,Pf9UUPDJl9k,Erica gets questioned by the police and her mother.\ntt2582784,iM0XndiNfd8,Erica seduces Will in a parking lot while her friends watch.\ntt2582784,_v0aLo9ualA,Erica flirt-entraps Will at a supermarket.\ntt2582784,ZNQVHnzKvjg,\"On the run from the cops, Luke confesses his love for Erica.\"\ntt2582784,jWtYVevvApk,Seventeen year old Erica entraps a pedophile cop.\ntt2582784,0kM0c3Q-hHQ,Will denies his molestation charges while drinking a drugged beer.\ntt2582784,UpsprkCDFOs,\"After a suicide attempt, Erica learns that Luke was once molested by a former teacher.\"\ntt0245429,KhS2-vKr1JY,\"Spirit, with Rain in tow, reunites with his family.\"\ntt5912454,JrjycvHR0iI,Jim and Amanda listen to tape of them role-playing as adults when they were teenagers.\ntt5912454,qlUJueukntw,Jim and Amanda relive their teenage days by dancing together.\ntt0245429,futultLrWms,Spirit freezes in a train and longs for freedom.\ntt0245429,BfF5J0uSC3E,Spirit grows up from a foal to a stallion.\ntt0245429,Ca273QV9ik8,Spirit rushes to save Little Creek after The Colonel attacks Little Creek's village.\ntt0245429,-Kztqrjp2yw,The Colonel thinks he can break Spirit. He thought wrong.\ntt0245429,0J4K03Owgwc,Spirit and Little Creek outrun the Colonel's men.\ntt0245429,dRVq4Um7E5Q,Little Creek and Rain teach Spirit manners.\ntt0245429,Z9h-ht1mVkw,Spirit rebels against the railroad.\ntt0245429,QSqUVzkUvj8,Spirit falls for Rain.\ntt0245429,weEay_Y4EeE,Spirit's curiosity gets him in trouble.\ntt5912454,WgRUpptAcAA,Jim reads his letter to Amanda after leaving it unopened for over twenty years.\ntt5912454,a88UYg3uwZw,Jim and Amanda reminisce about the days they used to play house.\ntt5912454,VbQOa65nKqU,Amanda reads some embarrassing literature from Jim's mom's erotic library.\ntt5912454,AL5i8ko_Blg,Jim and Amanda relive their senior prom.\ntt5912454,vGqM44xx4zI,Jim and Amanda make promises to each other that neither should keep.\ntt5912454,4x8o78xHel8,The truth comes out between Jim and Amanda.\ntt5912454,vEaLVMOwHn4,Jim and Amanda return to his old bedroom after their passion reignites.\ntt5912454,oyXKvCRzYz8,Jim and Amanda catch up after many years.\ntt0424095,yEqjnlWEIcg,The Toad shows Roddy his shrine of artifacts.\ntt2518848,OypxsTReBOM,\"In an attempt to fix the superstorm they caused, Simon rushes to adjust the core settings.\"\ntt0424095,mI6O2d4Ieok,Roddy and Rita are chased by The Toad's henchmen.\ntt0424095,cbN7TQSGYlI,Sid flushes Roddy down the toilet.\ntt0424095,r67faKKQyO4,Roddy and Rita race to save Ratropolis from The Toad.\ntt0424095,eOYwXi0B6KQ,Things don't go well for Roddy on his escape from Toad.\ntt0424095,2cxG6iiqEdk,Toad annoys Le Frog with his life story.\ntt0424095,m3XsVwEuULw,Roddy enjoys the thrills of being a bachelor.\ntt0424095,uI7ijvSCHcI,Roddy and Rita fight Le Frog.\ntt0424095,ePgiRqRIdwg,Roddy attempts to ply Rita with song.\ntt0424095,VGcOGt-OV7s,The Toad prepares to freeze Roddy and Rita.\ntt2518848,ABLVvVkVtHo,The Sims family tries to escape the oncoming superstorm by car.\ntt2518848,DotrfvKEyiI,Nathan Sims loses control of the Sims' helicopter in the middle of the storm.\ntt2518848,lXKwuj1pqrM,\"While trying to escape the storm, the Sims family runs into a menacing stranger.\"\ntt2518848,bMblXxTNWQg,\"To save the world from \"\"hypercane\"\", Nathan blows up the weather power station base.\"\ntt2518848,p7h8oBhP_lE,Nathan survives the eye of the storm to help his team diffuse it.\ntt2518848,WtVDF5bNkqM,\"As the storm quickly approaches, the Sims family rush to safety from a tornado that is tearing through their town.\"\ntt2518848,PFjN94zKbc4,\"Nathan Sims, Captain Wright, and Private Gentile run away from an underground flood.\"\ntt0120587,KfxQi9_BfHI,General Mandible's evil plan comes to fruition as the worker ants inadvertently flood the colony.\ntt2381317,jEeRRb8wnqQ,\"Dr. Jenna Sparks, Dr. Percy Cavanaugh, and Travis Verdon have to outrun an expanding sinkhole, but will they all make it to the other side alive?\"\ntt2381317,3RWHkM-krJA,\"As fire rains down from the sky, Dr. Jenna Sparks, Dr. Percy Cavanaugh, and Travis Verdon must escape their car before it burns them alive!\"\ntt0120587,wZWNmL5VsIs,\"Z meets, dances, and falls in love with Princess Bala at a bar.\"\ntt0120587,6PrFocPT-Rs,Z fights General Mandible for the colony.\ntt0120587,-rsImQShehk,Z and the soldiers go to war against the termites.\ntt0120587,Sbtm5uE3cCQ,Z and Bala meet Chip and Muffy.\ntt0120587,gFX14TEiBOw,Z seeks therapy for his countless insecurities.\ntt0120587,0h0S6EmQWrI,Z tries to rescue Princess Bala when she gets stuck beneath a shoe.\ntt0120587,XrujkDtd0iY,\"Trapped in the flooded colony, Z plans a desperate escape.\"\ntt0120587,eK20uOpc_AM,Weaver works in the tunnel and hits on Azteca.\ntt0120587,M9CgWWkwvdw,\"While he is being honored as a war hero, Z hits on Princess Bala.\"\ntt2381317,T0gaeDWYHr4,\"Travis Verdon sacrifices himself to save the world from the \"\"super cyclone\"\".\"\ntt2381317,P430SxnueE4,\"Dr. Jenna Sparks, Dr. Percy Cavanaugh, and Travis Verdon drive into a tornado made of oil.\"\ntt2381317,qURMZDMKpxY,\"In the middle of the storm, engineers and sailors fall off the deck of the oil rig and into the open ocean.\"\ntt2381317,F0xKJcGIQZM,\"The super cyclone causes a dam to burst, spilling millions of gallons of water and flooding Los Angeles.\"\ntt2381317,1DNNWWORGo0,\"At the most advanced oil rig in the world, Travis Verdon's team accidentally drills into an active underwater volcano sparking a series of volcanic explosions and climatic disasters.\"\ntt2381317,2k-G7TPLUfk,Jenna rescues Travis.\ntt2381317,86mBBMobUdY,Gary Winters and Engineer Alex Rowell have to jump into the ocean to escape the burning oil rig.\ntt2381317,Kq3ZaI7ccrM,\"Air Force pilot Lt. Connelly tries to put out the oil fire, but the firestorm gets to him first.\"\ntt3120508,BFWChdiNlEg,\"The burglars try to steal from Bone's family home, but Bone's pranks keep them at bay.\"\ntt3120508,Spg3JX8dRos,\"The burglars try to get in to the house, but get trapped on the deck and Bone gives his noggin a floggin'.\"\ntt0110366,MZG1HbQ3KCE,Alfalfa wins the race by a hair when he attempts to tie Darla's handkerchief to his go kart.\ntt0110366,E-F92GOLVcU,\"Alfalfa sings a song in the talent show to try to win Darla back, but his performance gets ruined by Waldo.\"\ntt0110366,7S2ffMUk7iI,Buckwheat and Porky trick Alfalfa and Darla into breaking up.\ntt0110366,ufllQr0ClXg,Alfalfa's friends sabotage his date with Darla.\ntt0110366,VC0PPBrYBco,Alfalfa romances Darla on the lake.\ntt0110366,mHGHJwXWh1k,\"The He-Man Woman Haters Clubhouse catches on fire, and the boys have to work together to put out the fire.\"\ntt0110366,F8UwjJzF4LY,Alfalfa runs away from bullies and an attack dog.\ntt0110366,DVA8vzEbm9Y,Spanky and Buckwheat try to take out a loan from a banker.\ntt0110366,aZJG26fSy94,The boys and girls talk about their distaste for the other.\ntt0110366,tNvDa9kTDUw,\"Waldo sings \"\"L.O.V.E.\"\" to Darla in the talent show.\"\ntt3120508,VO_llDPp0kY,\"Quentin sets a trap for Bone, but Bone outsmarts him and Quentin gets a bigger catch than he expected.\"\ntt3120508,zanh_ElKfdI,\"The burglars fall into the traps that Bone has set out for them, leading to frightful, fuzzy, and flatulent effects.\"\ntt3120508,W_aGbCWYX2Q,\"Dog catcher Quentin tries to shock Bone into leaving, but it's the dog catcher who ends up getting electrocuted.\"\ntt3120508,62Zbtotq0B8,\"Bone, Columbus, and Diesel put the finishing touches on the burglars and wrap them up in a nice little package for the family to find.\"\ntt3120508,5MpwO0oMUBY,\"After being left in a kennel during Christmas, Bones breaks out so he can save his family.\"\ntt3120508,far9-9beq-M,\"With Columbus and Bone working together to stop the burglars, Rob gets stuck in the chimney and Phil gets blown away.\"\ntt3120508,frwyMLRko_8,\"Jake finally has Bone in his clutches, but Bone proves that his brain is worse than his bite.\"\ntt3120508,3mhdNBdzHO8,\"Bone's tricks come to fruition as Rob gets barbecue, Jake gets stuffed, and Phil gets prune-y. But will a flooded shower wash Bone's master plan away?\"\ntt6644200,KD6FsEaD-3U,\"Heartbroken by the loss of his wife, an old man screams for death... which is lurking nearby.\"\ntt6644200,4CmmKmlXD9I,Beau plays with the wrong toy in the wrong place.\ntt6644200,CeJQF4L0hx8,Evelyn bleeds out during her pregnancy as she desperately tries to stay calm.\ntt6644200,Zufljc_8uLk,\"Lee reunites with his kids, but realizes that they're under attack.\"\ntt6644200,2F4ExP0q6RU,Evelyn awakes to find her basement flooded and an alien threatening her baby.\ntt6644200,1eoKvx5X9JQ,\"Cornered by a creature, Evelyn and Regan discover the aliens' weakness.\"\ntt6644200,rwDDgGuCVS0,Regan tries to rescue Marcus from the corn silo.\ntt6644200,ThWvubM3qSs,\"Her water broken, Evelyn tries to hide from an alien.\"\ntt6644200,kTtxe4pWpfQ,Evelyn and Regan team up to kill their alien assailant.\ntt6644200,5WvXdaXIbYw,Lee sacrifices himself to save his children.\ntt1628841,RKlctKGIpsA,Kelly leads a militia into the spaceship in order to sabotage it.\ntt1628841,a1dqJn-r0-k,Alien spaceships attack earth.\ntt1628841,5tZeutuxfJw,President Raney and her crew find themselves under attack from hazardous gas.\ntt1628841,AySMP0SgVFY,President Raney executes a masterplan to sabotage the mothership.\ntt1628841,DPU8L2vJvsc,Aliens attack DC and attempt to take out the White House.\ntt1628841,yriA_JXQ8dw,President Raney and her crew rush to escape the mothership after destroying it.\ntt1628841,9TwfC7_M2b4,President Raney lets her son Bobby enter an alien healing chamber as a show of good faith from the aliens.\ntt1628841,KdBP8sYgMT0,The Earth One militia goes after an alien convoy.\ntt1628841,5nWugkh7A5U,President Raney sends in a soldier to infiltrate the alien spaceship.\ntt4520924,Kqdi0X9vJ0Q,\"Angie negotiates her rent on a house, but the down payment is too expensive.\"\ntt4520924,9EF7lRxLbtg,\"Angie tries to sue her abuser, but learns that the statute of limitations has passed.\"\ntt4520924,FbI1dmDdLg8,\"Angie meets with Kaylee, another abuse survivor.\"\ntt4520924,z1PcJZEi_js,Angie meets with Pastor Hodges to learn more about Bruce and his victims.\ntt1343092,ZgAf9AuNc6Q,Gatsby takes Nick on a crazy car ride through New York while relaying his life story.\ntt1343092,A1-XFXX8rU4,Nick reflects on Gatsby's will to reach for the future and pursue the incorruptible dream.\ntt1343092,6rVFFaIyfH0,Gatsby tells Nick his story of falling in love with Daisy.\ntt1343092,2FlG1Z6jY-0,Gatsby reveals to Nick that it was Daisy who struck and killed Myrtle.\ntt1343092,jL6rrLaw6rc,Daisy and Gatsby see each other for the first time in over 5 years.\ntt1343092,VKl41s51JvE,\"When Tom exposes the truth about Gatsby, Gatsby loses his temper and attacks him.\"\ntt1343092,2zHHkSu1br4,\"At a massive party, Nick finally meets the elusive Gatsby.\"\ntt1343092,2Qz0AREgsdQ,Jordan tells Nick the story of Daisy and Gatsby's forgotten romance.\ntt1343092,tFkpixS3QZQ,\"Believing Gatsby to be the man who killed his wife, George shoots him in cold blood.\"\ntt1343092,ZQHhiZUNM3Q,Daisy tells Nick that she hopes her daughter will be a beautiful little fool.\ntt4520924,RVVBffj2v8o,\"Angie meets with a younger abuse victim, but Pam refuses to bring up the past.\"\ntt4520924,8cjxrd4MMMU,Angie decides to give her abuser Bruce a private dance in exchange for rent money.\ntt4520924,XgZDk5PcLYg,Lorraine takes Angie to audition for a job.\ntt4520924,cUFdtdKFaOo,Ruth Ann seduces Bruce for rent money.\ntt4520924,CMMXbRt2zLQ,\"Desperate, Angie goes to her former abuser Bruce to ask for money.\"\ntt4520924,qIsyU3MH-Zw,Angie and her mother Ruth Ann argue.\ntt3626442,UwN27CAbgFQ,Björk performs 'Thunderbolt' from her album Biophilia.\ntt3626442,OSEHYgl2-_M,Björk performs 'Nattura' from her album Biophilia.\ntt3626442,xY6bhYtH8Pw,Björk performs 'Crystalline' from her album Biophilia.\ntt3626442,iNiZJmh1ALI,Björk performs 'Hidden Place' from her album Vespertine.\ntt3626442,nf_4vFdS80M,Björk performs 'Mutual Core' from her album Biophilia.\ntt3626442,Dp8y3CiQDgw,Björk performs 'Isobel' from her album Post.\ntt3626442,g_HrR50Z5LM,Björk performs 'Possibly Maybe' from her album Post.\ntt3626442,Od3sXn4mOF0,Björk performs 'Hollow' from her album Biophilia.\ntt3626442,3hPy770hf_s,Björk performs 'Cosmogony' from her album Biophilia.\ntt3626442,bOge5t77CLw,Björk performs 'Moon' from her album Biophilia.\ntt3986978,Y8AM8s9zoKY,\"Buoyed by success at the Venice International Film Festival, Dennis Hopper pushes back too hard against studio notes on his cut of \"\"The Last Movie.\"\"\"\ntt3986978,dKX4NN38vpc,\"The story of the making of, and the reception to, Dennis Hopper's movie \"\"Out of the Blue\"\".\"\ntt3986978,RcjY_I91okg,Dennis Hopper's collaboration with David Lynch in Blue Velvet marked somewhat of a return to Hollywood.\ntt3986978,FzemDO1TITY,\"Satya De La Manitou, recounts when Hopper had to be sent to rehab.\"\ntt3986978,WNU59WxKw-g,\"Friends, family, and co-stars recount the process that followed the success of \"\"Easy Rider\"\", and how Dennis Hopper found funding and a studio to make his passion project, \"\"The Last Movie\"\".\"\ntt3986978,iFzuPtVopnE,\"Cast and crew recall making Dennis Hopper's \"\"The Last Movie.\"\"\"\ntt3986978,ARQrc5qPDPE,\"Satya De La Manitou and Tony Dingman talk about Dennis Hopper's time on the set of \"\"Apocalypse Now.\"\"\"\ntt3986978,pWREOi5GPZ4,\"Dennis Hopper's longtime friends, Satya De La Manitou and Dean Stockwell, recall the time that Hopper faced off with the State Police at a bar in New Mexico.\"\ntt3986978,TAN8GthZg7s,\"The tumultuous editing process of Dennis Hopper's film \"\"The Last Movie\"\" is discussed by his friends and studio executives.\"\ntt3986978,Cw7Ed1B3g18,\"Satya and the director of \"\"Mad Dog Morgan\"\" talk about working with Dennis Hopper and his mania in Australia.\"\ntt1210166,PlKDQqKh03Y,The scouts are doubtful when Billy describes Peter's strategy for picking players.\ntt1210166,aNDj-H1jxV0,Billy is frustrated with the scouts when they refuse to think differently about their financial problems.\ntt1210166,fkiY6TBT4mo,Casey asks her dad about his job security.\ntt1210166,JXyisZLObHc,Billy is frustrated with the team's small budget.\ntt1210166,Ofkb_7EnunM,John offers Billy a job as GM of the Boston Red Sox.\ntt1210166,AKXKkeLQWac,The scouts are confused when Billy declares a radical new direction for their team.\ntt1210166,IpoReT0HjsQ,Billy questions Peter's belief in their strategy.\ntt1210166,IgKQ8z_xNhk,Billy tells Peter why winning matters to him.\ntt1210166,1pzV9GoSuys,Justice asks Peter about Billy's business practices.\ntt1210166,ySC245RIiD8,Billy refuses to watch his team's game.\ntt2401878,HCGVmIe_V1c,Michael invites Lisa to his hotel room.\ntt2401878,YJV5WB1wxdk,The walls begin closing in on Michael as he rushes to escape a hive mind of admirers.\ntt2401878,6F_Wp3IlryI,Lisa asks Michael what she did wrong after he spontaneously begins to lose feeling for her.\ntt2401878,mXvst0jlR9Q,\"After listening to her sing, Michael attempts to get Lisa into bed with him.\"\ntt2401878,NmSNUylSNvo,Michael comes home to find the humdrum life he was so desperate to escape will never allow him to leave.\ntt2401878,wTqLwoaEUmU,Michael meets up with an ex-girlfriend years after abandoning her.\ntt2401878,zSh-Wy2vvHY,Michael has a nervous breakdown while giving a seminar on customer service.\ntt2401878,xPk6RGGwQC8,Michael attempts to seduce Lisa by letting her talk about her day.\ntt2401878,XAVgIM5X42w,Michael has a disturbing run-in with a hotel manager.\ntt2401878,G1uBkHVIGfc,The allure of Lisa begins to fade for Michael after he begins to notice her imperfections.\ntt2385752,Aq4LMaeZAns,\"Liam and Natalie get to know each other through music, and share their first kiss on a dancefloor.\"\ntt2385752,oTd-6xia-xY,The Curve praises and consoles Liam after he falls apart onstage.\ntt2385752,UIpSn7Kma80,Liam and Natalie have a less than graceful first time in Natalie's dormroom.\ntt1230168,Oj8S0fNum9g,Denver blesses the Christmas dinner only for Earl to ruin it.\ntt1230168,d7WraA-roN8,Denver storms into the homeless shelter and leaves a big impression on Ron and Deborah.\ntt1230168,WO0KS0mbu80,Denver reveals how he's suffered at the hands of bigots.\ntt1230168,paPWv3HjXAI,Deborah has a nightmarish vision of her fate.\ntt1230168,s8tXE43jYho,Young Denver plays 'Klansman' with his white friend Bobby.\ntt1230168,I-Iankzmv3I,Ron and Denver say goodbye to Deborah.\ntt1230168,L4MyGhbXKZU,Denver reveals how he came to be a felon.\ntt1230168,Q4r4jGPegHs,Deborah uplifts Clara's spirits.\ntt1230168,sjEDF282UvY,Deborah cuts things off with Ron's mistress.\ntt1230168,-pXlicO85dk,Denver gives a touching eulogy for a very special friend.\ntt2385752,TYJXBdLgPks,\"With the help of The Curve, The Head Cleaners play their first official gig.\"\ntt2385752,tbWLF2J10xY,\"Natalie watches a viral video of Liam crying while singing a song about her, and realizes that she loves him.\"\ntt2385752,4a_1wkseCkQ,Liam gets drunk and embarrasses Natalie in front of her boss and coworked at a gallery opening.\ntt2385752,2Pl7zNuA-vY,Natalie and Liam argue about their relationship and their future together while at a rain-soaked music festival.\ntt2385752,sJALMf17QBg,\"Liam meets Natalie at a record store, and form a connection.\"\ntt2385752,TOzf01qWO-Y,Liam breaks down while thinking about his ex-girlfriend Natalie while he and his band performs his latest song.\ntt2385752,iIPeQxzLVlY,Liam gets a job at a local coffee shop and has to serve Natalie with her new boyfriend Adrian.\ntt2368619,9H8h3YZTsmg,Michael leads Sean on a wild chase over Parisian rooftops.\ntt2368619,AqV77k80Iw0,Michael steals the wrong package.\ntt2368619,7yg4b79rNQY,Sean gets some unexpected help during a shootout with corrupt French Spec Ops.\ntt2368619,5BL8zybMd-M,Michael plays chicken with Rafi.\ntt2368619,Q7r5VtqG7cE,Sean confronts Rafi in the bank vaults.\ntt2368619,7UANVfaybow,Sean uses questionable tactics to secure information on a missing suspect.\ntt2368619,usoH9GnfJrA,Sean encounters a group of assassins targeting a pickpocket.\ntt2368619,Vq2YQ_fXZoA,Sean tests Michael's alibi during an interrogation.\ntt2368619,Wn02SYyYhRA,Michael causes a scene in order to get information.\ntt2368619,Gr9p1MnLMj8,Sean makes his move after he and his partners are kidnapped by corrupt French cops.\ntt5081618,x6PMTIOZY4A,Natia and Lilly go to the bar for a drink... named Buck.\ntt5081618,9JVQzj-iWI0,Natia punishes an abuser and demands money.\ntt5081618,j1DtkoNFVHY,\"Natia comes to kill Lilly, but gets distracted.\"\ntt5081618,WgeM95snEhU,Detective Brennan interviews an uncooperative gangster.\ntt5081618,3aBcNzAFnxY,Natia grants Luke's tragic request.\ntt5081618,aQ8UQmMypws,Natia fights a pimp and his bouncers.\ntt5081618,gcoKGdZcf7A,Natia performs a sharpshooting circus act with Aria.\ntt5081618,N5oKlOWxzio,Natia walks in on Lilly and her guest.\ntt6857166,q3deD1S7v5I,Mitchell takes Diane on a romantic plane ride.\ntt6857166,DRTuzzBTrGs,Carol tap-dances to a surprise song with a surprise guest.\ntt6857166,qVhR3cLu_zY,The book club spies on Mitchell.\ntt6857166,D_D9eQtLpCI,Diane accidentally grabs Mitchell's joystick.\ntt6857166,a2RgwHcY9ZM,Vivian plays with Arthur in a fountain.\ntt6857166,IrBymbqWH54,Sharon seduces George.\ntt6857166,8c-NNYNy5Bk,Mitchell asks for Diane's phone number while at work.\ntt6857166,3UBXU1m7rkk,Carol tries and fails to seduce Bruce.\ntt6857166,AvIUAlTg5J8,Arthur professes his love for Vivian.\ntt6857166,imITvYE-QBo,Bruce grumbles at Carol after she spikes his drink with a certain medication.\ntt5338644,788ZdV-LT0U,Mrs. Géquil demonstrates a Faraday cage to her class.\ntt5338644,hMYdeT6aOnE,The students pick on mild mannered teacher Mrs. Géquil.\ntt5338644,gkeddnrEeV8,Mrs. Géquil gets a shock while experimenting in her private laboratory.\ntt5338644,iVzz5FIaCkA,Mrs. Géquil offers to help Malik with physics.\ntt5338644,NL_vaHjmqC0,Madame Hyde wanders the streets at night and finds some of her students having a rap battle.\ntt5338644,ArOB5wVIf-Y,Madame Hyde kills one of the teenage rappers by setting him on fire.\ntt5338644,YYZSg-BBAmw,\"Madame Hyde is confronted by a nosy neighbor, and then kills two stray dogs.\"\ntt5338644,EG9eUCA_MxE,Madame Hyde sets Malik afire.\ntt5338644,rLj7k4gxnRg,Madame Hyde saves Malik from some bullies.\ntt0318155,vBAK4o8zHF4,Drake tries and fails to eject Daffy on Kate's orders.\ntt0318155,waeNIUB5wz4,Marvin the Martian escapes and unleashes a horde of classic movie aliens.\ntt2991532,c6pX60F0bsI,\"When blood starts spewing out of the Sawyers' sink, Scott goes to investigate the source.\"\ntt0318155,Dk2BtXCzdzc,Mr. Chairman calls in Wile E. Coyote's aid.\ntt0318155,0IWmniYe7aI,Bugs & Daffy run afoul Marvin while Drake learns Mr. Chairman's evil plot.\ntt0318155,D56dpMQVGTo,\"Drake gets the Blue Monkey Diamond, but runs into trouble.\"\ntt0318155,xfF-ZL3xvxw,Daffy demands a twist on an age-old classic.\ntt0318155,bYO_AhZaG24,Daffy decides to be a hero while Drake deals with a robotic dog.\ntt0318155,6Dg0qouE5Zo,\"Drake and Kate save the day, and Daffy gets a surprise.\"\ntt0318155,Wc_pikEIkcQ,Bugs reenacts a classic horror scene.\ntt2991532,gQ8uzN8MSfM,A priest comes to perform an exorcism on Dana and banish the Bell Witch spirit from the home.\ntt2991532,d4QJy7RMxok,Brandon and Scott Sawyer search for Colby in the woods after he goes missing.\ntt2991532,eng2A_NwG04,Scott Sawyer gets possessed by the Bell Witch.\ntt2991532,UHwiWw0vfps,\"While searching for the possessed Dana, the real Bell Witch attacks.\"\ntt2991532,EqYD_u86J8E,A teen paying his respects to the murdered Colby soon becomes another target of the merciless Bell Witch.\ntt2991532,NIZSw5HFr60,A police officer finds the bodies of two brutally killed teenagers in the woods.\ntt2991532,WhsSP-hValQ,An electrician and wannabe YouTube star comes to fix the electricity at the Sawyer's house.\ntt2991532,3U7pCM576i4,A group of teenage girls get spooked by ominous noises.\ntt2991532,r28aUcqqgbA,\"The Sawyers search the woods behind their house for their possessed daughter, Dana.\"\ntt0093756,tJ4H77qrLjI,Capt. Harris and Lt. Proctor commandeer a hot air balloon to chase a group of criminals in another balloon.\ntt0093756,RRDzDy5wLh4,Tackleberry jumps onto the criminals' hot air balloon and makes his arrest while Sweetchuck and Zed fight over the last parachute.\ntt0093756,qTjz5LJwnOw,Capt. Harris chases Kyle and Arnie through the city before ultimately crashing Mahoney's speech.\ntt0093756,2UuM47BOqNA,Mahoney and the guys play an elaborate prank on a few of the cadets.\ntt0093756,shal5AF2Gxc,\"Callahan teaches aerobics, Sweetchuck teaches self defense and Larvell teaches karate.\"\ntt0093756,Eq4GnUgNeMg,The officers are attacked by a group of ninjas on a ship.\ntt0093756,upPFFVaVSY4,Laura teaches Capt. Harris a lesson by switching his oxygen tank for helium during a demonstration.\ntt0093756,ZrPvUd7E9HU,\"At the gun range, Mrs. Feldman convinces Tackleberry to let her try shooting his gun.\"\ntt0093756,hxi06yeErvk,Capt. Harris ends up in a body cast after Zed switches his deodorant for mace.\ntt6981634,50CeayOz-rs,\"Alex runs afoul Danny, who is eerily committed to his job.\"\ntt6981634,wkqss9zZOhc,\"Alex meets a mystery woman, Penelope, on the beach but is too shy to swim with her.\"\ntt6981634,ieXrbTpZsvM,Lisa gets upset when she realizes Alex is actually a stranger.\ntt6981634,dfK91HGGVL8,\"Alex learns to appreciate life from a group of cyclists, including Anais.\"\ntt6981634,1bpUlGBdKyE,Shirley serenades and tries to seduce an unwilling Alex.\ntt6981634,1wWk7qN62dI,Alex tries to cheat the ferryman.\ntt6981634,aRJXM-rYZQM,Shirley all but spells it out her attraction to Alex.\ntt6981634,fvXLs4FFSJc,Doctor Rock Positano does a swing number.\ntt6981634,wLhu6Zy6ixo,\"While Alex searches for an exit, Kale sings about missed opportunities.\"\ntt6981634,nxDhsiiBH7Q,Alex has a deep conversation with Hope and watches her model.\ntt3597400,-zOoQRf6DNw,A farmer describes why he has to waste two bushels of greens just to sell one.\ntt3597400,PWebnyN1kSU,Grant and Jenny find a surplus of hummus while experts discuss how so much could go to waste.\ntt3597400,6ZUg51T5ly8,Grant and Jenny hit the jackpot after a friend calls them about a truckload of good food being tossed out.\ntt3597400,aFIOmbHlYo4,Grant hits the jackpot when he finds boxes of chocolate thrown away but realizes they may be defective.\ntt6149802,H_hW3ML6Ips,Liam and Beck go to couple's counseling inside their blanket fort.\ntt5167174,DbJ1V4yEZP0,\"Shonzi embarrasses Lindsay's neighbor, Justine, while interviewing her.\"\ntt0087928,PniQ5j9ZqQk,Nothing like a good machine gun --or at least Larvell's imitation of one!\ntt0087928,J3Dc6UV1ML4,Lassard gives -and receives- a very gratifying speech.\ntt0087928,p7zS671gCo4,Maybe Harris shouldn't hold the megaphone so close to his mouth.\ntt0087928,GIASYqV_Xds,Lt. Harris learns the virtues of patience and motorcycle breaks.\ntt0087928,6sfgXGPtVQk,Tackleberry brings some extra fire power to the shooting range and Leslie gets tackled by Sgt. Callahan.\ntt0087928,KBLBKR6bQCI,Lt. Harris checks out the new recruits. So does Mahoney.\ntt0087928,I4tqrGqT_b0,\"When Martin breaks and enters, Callahan uses excessive force.\"\ntt0087928,7a3vbSR4qWU,The trainees practice using the.12 gauge shotgun.\ntt0087928,6OKt2CZ4ULE,Mahoney meets Larvell Jones at the police station.\ntt5167174,1JLugcZa7kw,Todd catches Shonzi videotaping Lindsay during foreplay.\ntt5167174,MuLtmNixbdw,Shonzi gets off to dark fantasies of his brother's girlfriend.\ntt5167174,wQ0QXBmaY58,Todd allows Shonzi to spy on him and Lindsay.\ntt5167174,vqGsQEGHl0w,Shonzi reveals he's been spying on Todd and Lindsay.\ntt5167174,U9qK-5bDP4A,Shonzi gets the wrong idea about societal progress.\ntt5167174,7hDIu_ZNkbk,\"Shonzi helps his niece, Lilly, out of a bad situation.\"\ntt5167174,o561o4AQdXQ,Todd can't stop thinking about Lindsay's ex during sex.\ntt5167174,XHEs28Z99so,Shonzi acts as 'coitus interruptus' to Todd and Lindsay.\ntt5167174,TUmckZQBzvk,Shonzi has adult play time with his toys.\ntt6149802,_-6IvJMziRc,Liam confronts Chippy Beck's imaginary friend.\ntt6149802,ckSC7ZLyGG8,Beck has a dream about stripping with Liam's ex-girlfriend.\ntt6149802,zZoxnqqZpDQ,Beck and Liam share a first dance and a first kiss.\ntt6149802,ipt7yPT4Lkw,Liam and Beck start to find things wrong in each other.\ntt6149802,JHvgBh9ZC3I,\"Beck and Liam share nachos, drinks, and literal personal demons.\"\ntt6149802,m07ShpSpKJw,Liam & Beck rush their relationship and immediately hit issues.\ntt6149802,ZoWhq3dNFn0,\"When Beck learns about Liam's dead ex, Beck's imaginary friend Chippy blows it out of proportion.\"\ntt6149802,psA_jrGe1PY,\"Beck doesn't want to meet Liam's giant, mother.\"\ntt6149802,PkO3bgn-Qgs,Liam performs without his partner.\ntt3597400,FYeKDtzDy60,Experts weigh in on the extraordinary amount of food waste in America.\ntt3597400,6q5DmJCpaC0,Grant and Jenny score their first break after weeks of struggling to find food.\ntt3597400,WItFgdMdxDk,\"Grant and Jenny get a bumpy start to their journey of only living off food wasted by stores, restaurants, and outlets.\"\ntt3597400,LUjMzKQtq8U,Experts break down the real meanings behind 'best by' and 'sell by' dates.\ntt3597400,fpJjOz1Yy8c,Grant and Jenny are halfway through their dumpster dive journey and find a surplus of food.\ntt3597400,z_98hXRRn2A,Grant and Jenny hit a rough spot between their ethics and reality.\ntt1791528,xq5lZuN6geo,Doc investigates a swinger's mansion where his girlfriend went missing.\ntt1791528,tr8peYDm1fE,Doc reacts to a photo of Hope's baby.\ntt1791528,F9M5eGoCnO0,\"Bigfoot is a man of the law, and a fan of frozen bananas.\"\ntt1791528,4RPigjaVctQ,\"In the midst of a cocaine binge, Doc and Dr. Blatnoyd are pulled over by the police.\"\ntt1791528,4lWui2b5GBI,Doc investigates a cult fronting for the cartels.\ntt1791528,nuhGjqaBzes,\"After being drugged by Puck, Doc makes a daring escape.\"\ntt1791528,k6pHxD7qB7k,Shasta returns to Doc.\ntt1791528,eO-4vwbIJR8,Doc receives a letter from Shasta and recalls a romantic day they shared.\ntt3084904,PJze0WsDW8o,Calpurnia and Ellen attend egg donors anonymous.\ntt3084904,q9jTg_91KxU,\"While under the needle, Calpurnia describes the medical process.\"\ntt3084904,zgEsN9EckAI,\"Calpurnia and Ellen get close, but not too close.\"\ntt3084904,McQ2XFcPCys,Calpurnia goes through rigorous testing in order to be qualified by an egg donation clinic.\ntt3084904,vEOtK-qX4kE,Calpurnia is surprised to learn how much Ellen wants to show her.\ntt3084904,bTpRY4tkyio,Calpurnia learns what she needs to do to secure a leading role.\ntt3084904,yPD2Vq50JlQ,Acting coach Barnard gives Calpurnia a lesson in potential and talent.\ntt3084904,8zomTUuLank,Ellen comes on a little hard to Calpurnia.\ntt3084904,IoeYkolhKYM,Calpurnia learns how to use syringes in preparation for her egg donation.\ntt3084904,NVSG5djzkdo,Calpurnia has a nightmare and gets a bizarre request from her client.\ntt2439946,C_Emdu3KwHg,Tessa and Lynn find a group of threatening rednecks who might even be a greater danger to them than the weather.\ntt2439946,48DTcfNRIoM,\"A sinkhole rips through Morgantown, Virginia and the few left in the town try to survive.\"\ntt5657846,jFjy1RkmXUg,\"Dusty and Brad lead snowed-in moviegoers in a rendition of 'Do They Know It's Christmas?\"\"\"\ntt5657846,JPjeOAVkSe4,The Dads start fighting after Dusty throws a snowball at Roger.\ntt5657846,h7ZUKB_zYQ0,\"Dusty reveals his love for his family, even his stepdaughter's dad.\"\ntt5657846,7I6z51iYFg8,Kurt takes his granddaughter Megan hunting.\ntt5657846,3D0gGgMTylk,Don has a breakdown on stage while performing improv.\ntt5657846,LF0dTioXk3A,Dusty and Kurt teach Dylan how to bowl.\ntt5657846,EzjFE2CnTBQ,Dusty and Brad prepare to pick up their dads from the airport.\ntt5657846,C05qUz1ukWo,Two generations of dads take on the case of a fiddled thermostat.\ntt5657846,vnh7gxa0z4Q,Dusty and Brad try chopping down a tree as 'co-dads'.\ntt5657846,eVzxDwu506A,A distracted Brad accidentally unleashes the snow blower on the Christmas decorations.\ntt7131870,rd1w9BCiy1M,Leng Feng leads his friends past an attacking rebel army.\ntt7131870,PBeP9JUk5cM,\"While missiles rain down on the mercenaries, Feng Leng and Big Daddy fight to the death.\"\ntt7131870,Mvrl3jeiJlg,Rebel forces attack an African village where Leng Feng is buying groceries.\ntt7131870,N25MiYpmMVw,\"Leng Feng, He Jianguo, and Zhuo Yifan give Big Daddy the bird.\"\ntt5700672,y41KY83U1VQ,Seok-woo fights an undead Yon-suk.\ntt2439946,0t7ZsuI05Uw,\"After crashing into a mountain range, Lynn and Maddie must place an explosive charge underneath the ship to break it free.\"\ntt2439946,w_iXru-XxwU,\"The deluge breaks through the military bunker, forcing the crew and civilians to take cover in the 'Ark'.\"\ntt2439946,P_zAPM1cQdM,\"While having a fun spring break in the middle of the Sahara desert, four college kids get caught in a flash flood.\"\ntt2439946,49BRJlMRZ18,\"While trying to get back to the 'Ark', Tessa and Lynn try to land in Denver, Colorado.\"\ntt7131870,hwI9jLgUnbI,Big Daddy unleashes deadly drones on celebrating refugees.\ntt7131870,j76FbuAQUsc,Leng Feng hijacks a tank and engages in an epic tank battle.\ntt7131870,5AMX5PaikhU,\"Leng Feng, Rachel, and Pasha lead the mercenaries on a chase through an African village.\"\ntt7131870,GlrYbmdZk24,Leng Feng singlehandedly takes out an entire pirate crew.\ntt7131870,56_IiZ3k0OY,\"Using a homemade crossbow, Leng Feng takes out a lot of armed guards.\"\ntt7131870,0OmDcj8U3Xs,Leng Feng saves Dr. Chen from mercenaries terrorizing his hospital.\ntt3540136,15lEWX16LV0,Leng Feng fights Tom Cat to the death.\ntt3540136,K2bk8aUwIis,Leng Feng disobeys his commander's orders during a mission and takes out a dangerous drug lord with impeccable shooting.\ntt3540136,C5o1JYo-4pU,Leng Feng and other Wolf Warriors fight off a deadly wolf pack while participating in war drills.\ntt3922754,9AEbJDyNTSo,Dawson and Sister Claudette are rescued by American forces just as the bombing begins to hit behind Germany lines.\ntt3922754,PY8WEjeHGTE,\"American and Nazi soldiers shoot it out in a French village, but it is a French woman that deals the final blow.\"\ntt3922754,XnvMGSn4KHQ,\"An American soldier is captured, tortured, and interrogated by a Nazi officer.\"\ntt3922754,79PCtxPbMlc,Private Luinstra and Sgt. Dawson steal a German support vehicle and try to outrun a Nazi tank.\ntt3922754,lGQFgsEBe4M,Sgt. Dawson and Nazi Major Zeller go at it one final time with one of them not making it out alive.\ntt3922754,l8L0q_dnoKA,\"With the enemy hot on their heels, Corporal Michael Griffin draws the Nazis away by making the ultimate sacrifice.\"\ntt3922754,jM2drh7uhsw,Sgt. Nathaniel Rose attempts to save Mother Mary after she steps on a land mine.\ntt3922754,uyMQqUwKVBY,Private Luinstra rescues Lance Dawson after he is taken prisoner by Nazi soldiers.\ntt3922754,mos7tNLWRz0,Young Pierre is shot in the back and killed by a wounded Nazi soldier.\ntt3922754,7YpyRO7N1YI,Sgt. Lance Dawson is captured and tortured by Major Heston Zeller.\ntt3540136,ep-ggf8CcX8,Leng Feng comes up with a brilliant way to save his commander from enemy fire.\ntt3540136,4YW2E3yaMjc,Leng Feng and his fellow Wolf Warriors fight back against the mercenaries.\ntt3540136,gcqk1NcWIGQ,\"With the help of Lt. Long Xiaoyun, Leng Feng dodges enemy fire.\"\ntt3540136,xzPgefI2u9k,Leng Feng steps on a land mine and realizes what's important to him.\ntt3540136,b8Dp_WyoPSU,\"International drug kingpin Ming Deng gets arrested, but his gang of mercenaries kills all the police officers and sets him free.\"\ntt3540136,v9VqcsF7s5E,Leng Feng and the Wolf Warriors are attacked by Tom Cat and his assassins.\ntt3540136,ddhfpfnwgRI,Leng Feng proves his worth during the war games by sniping the PLA General.\ntt6015706,3S35Cy1GMMU,Kabbah fights when Lauder accosts him for not drinking.\ntt6015706,SkefiJco10U,Kabbah and Lauder square off.\ntt6015706,9qtw3cXqWfw,Lauder comes to Yan Jian's rescue.\ntt6015706,cOy7yCnHMAE,Yan Jian climbs the radio tower while Kabbah wages war.\ntt6015706,PP4-LYtVpRg,Yan Jian and Susanna steal a child from a ritual circumcision.\ntt6015706,EfX6L0wDT4Y,Kabbah's forces fight over control of the radio tower.\ntt6015706,Al7y7aRrASE,Yan Jian makes a desperate ploy to get past a military checkpoint.\ntt6015706,ruaqMoxwvjg,Kabbah and his men violently interrupt negotiations between two telecommunications companies.\ntt6015706,B4D0g5tfp7A,An intruder attacks Sheik Asaid.\ntt1068242,85cnCW_4LIc,\"After her ex-boyfriend physically assaults her, Ariel confronts her dad over his stubbornness.\"\ntt1068242,MGIjofJUXyo,Ren dances with Ariel.\ntt1068242,8Lv0BuXTgoY,Ren participates in a deadly bus demolition derby.\ntt1068242,-Nzbwerwks8,Ren helps fight off Chuck and his goons.\ntt1068242,5lgCxWubUnU,Ren line dances with Ariel at the hoedown.\ntt1068242,p70o9g5gcdY,Willard learns how to dance.\ntt1068242,jlCEAJXSwJc,Ren dances his frustrations out in defiance of the repressive town.\ntt1068242,ElidXD2F2eo,\"Free from dance oppression, the kids of Bomont show off their crazy dance moves.\"\ntt1068242,1sz2oWajICY,Things heat up between Ariel and Chuck.\ntt1068242,QH2Z3rBA9C4,A high school barn dance takes a tragic turn after a group of kids drink and drive.\ntt2611408,L9wacy030Kw,Contemporaries talk about what makes Trixie and Evil Hate Monkey such a special act.\ntt2186712,wYumvThtFrc,James believes he is meeting Anna for a night of passion but finds the prospect more difficult than expected.\ntt2186712,tdDDMrzq9lE,James has a fight Anna and finds himself psychologically outdone.\ntt2186712,MASZNTnZals,James and Monica are caught trying to have sex on the bus.\ntt2186712,14I9e5jH9bw,James and Monica are frustrated as they search for a place to have sex.\ntt2186712,0tg_TU8EfCs,James sends a passionate goodbye to his lover Lily.\ntt2186712,yZgf5wSULog,James visits a girl he only knows as Rapunzel for anonymous sex.\ntt2186712,fzG_88hJcqM,James meets Marie outside a bar she shouldn't be in.\ntt2186712,PlPRa95iR3k,Lorraine sings about then deals with her hellish affair with James.\ntt2186712,lTm0Gql9HME,Sarah breaks her own rules.\ntt2186712,nRkXwphpaQ0,James dances with Marie after a long night of flirting and frustration.\ntt2611408,v5YaaXLJw2A,The Evil Hate Monkey shows the crowd at the Burlesque Hall of Fame his banana.\ntt2611408,oMpbWgx0Cdk,\"Trixie and Monkey hone their craft at a circus school, and discuss what they're learning about themselves there.\"\ntt2611408,iWHYx50w6ts,\"Trixie and Monkey perform in Brighton, England for their first international gig.\"\ntt2611408,VuGGlc9x5PE,\"After years of working together and being together, Trixie and Monkey bite the big banana and get married.\"\ntt2611408,ZhbolQxBK2s,Trixie and Monkey travel to Las Vegas to compete at the Burlesque Hall of Fame weekend.\ntt2611408,wX06J0jh7BU,\"Trixie and Monkey perform their most ambitious act yet, and reflect on the sacrifice and risk that it took to put it on.\"\ntt2611408,MfM4qCHUPH8,Trixie and Evil Hate Monkey perform on a cross-country tour.\ntt2611408,yOrYFxd4En4,Trixie and Monkey perform a new act in an off-Broadway theater.\ntt2611408,lJmafWivAtQ,Trixie performs at the 2010 Burlesque Hall of Fame Weekend in Las Vegas.\ntt3261182,0gKYY9NCTvY,Domenico pulls a prank on a vegan date.\ntt3261182,LJK2Ox4UlM0,Domenico has a string of rough dates while taste testing several dating apps.\ntt3261182,wQS5Cu_bGs0,a pickup artist.\ntt3261182,w0dNGg0OiAc,Domenico tries to impress a fitness enthusiast.\ntt3261182,LGL0Gz_QgDk,Domenico meets a tantric specialist who teaches him a little about sexual energy.\ntt3261182,xg5ZJAo_1v8,Domenico Nesci can't figure out why nobody wants to date him.\ntt3261182,GDpzofT_Pdk,Domenico meets with a priest and a rabbi at a bar but they're not joking.\ntt3261182,ekbIXnK0_ek,Domenico has sex with a dominatrix.\ntt3261182,3EdXrMS1gJc,Domenico makes every aspect of his life a prank.\ntt3261182,I51Z3trNfZo,Domenico discovers Tindr and loses his mind.\ntt5354458,Gqa-biM6qKM,\"The morning after the alien attack, the crew tracks down a injured, and disoriented Björn.\"\ntt5354458,kARcfM_M6VE,Björn Eriksson espouses that aliens built the Hoover Dam.\ntt5354458,7szH-UZx2JU,\"While goofing around on the lake, the power goes out, and security guards come suspiciously fast.\"\ntt5354458,uxj3cKArYDI,Björn Eriksson and Brittany Big Time perform their raunchy rap.\ntt5354458,wLGpzRMJsVE,The crew investigates a mysterious flash of that burns Brock.\ntt5354458,HeRIwSpHZCk,Björn Eriksson interviews alien researcher Elsa Moulton.\ntt5354458,ADqmUtPjP0Q,The crew returns to their houseboat to find their place ransacked and their stuff arranged into pyramids.\ntt5354458,z8XPccwMkKE,\"A grey alien breaks into the boat of the cast and crew of \"\"Alien Engineers\"\", and it wants blood!\"\ntt2296777,Ng06lmNU4K8,Sherlock fights Moriarty atop London Bridge.\ntt2296777,7fOizvx1cUM,A gargoyle attacks Gnomeo and Watson.\ntt2296777,6fs-P3Vq9BI,Sherlock saves helpless gnomes from Moriarty.\ntt2296777,zpvTZ0G0UiM,Irene well and truly tells off Sherlock with song.\ntt2296777,HIOSYqainIs,Watson saves the captive gnomes.\ntt2296777,1xccuQBsJfU,Gnomeo & Juliet stumble upon Sherlock and Watson's sewer boat.\ntt2296777,vuvmITfWFuo,The garden gnomes run afoul a mob of black cat ornaments.\ntt2296777,tNYSeyXRkiE,Gnomeo tries to steal a rare flower for Juliet.\ntt2296777,1aZDrjQGvIU,Sherlock and Juliet don't let a sleeping dog lie.\ntt2296777,9cNdat9JJuE,The gnomes put on a stage play to distract their captor.\ntt4701182,8TcZDzWEVDM,Bumblebee's memories return with a vengeance.\ntt4701182,nTAYbwY6oeU,Bumblebee defends against Blitzwing.\ntt4701182,RuFd7DELPYc,\"Charlie, Memo, and Bumblebee get chased by the police.\"\ntt4701182,ZKuscOD0LOM,\"Charlie, Memo, and Bumblebee prank a bully.\"\ntt4701182,Xv9ME0TfQjk,Bumblebee faces off against Shatter.\ntt4701182,jsbjmWo3c38,Bumblebee and Charlie stumble into an ambush by the military and the Decepticons.\ntt4701182,bu5m4sr6e6I,Optimus Prime helps Bumblebee escape Cybertron.\ntt4701182,hD7KaqFoSq0,Bumblebee causes a chain reaction against Dropkick.\ntt4701182,AVzJme0mGY8,Bumblebee makes a mess of the house.\ntt4701182,Ok3_qMNWAo0,Charlie learns that there's more to her VW Bug than meets the eye.\ntt6215044,yGrvM8gN0w0,\"Josh, Dr. Zicree, and Pam restart the earth's magnetic field by using particle accelerators.\"\ntt6215044,9tDGIpP7Kfc,\"Josh yells at the President about climate change, and resigns as a government employee.\"\ntt6215044,KBmsdzLFpvc,Marjorie is killed by electrocution after a power line goes down at the military base.\ntt6215044,gTkzaR0pGgE,Josh receives a call that he will remember forever.\ntt6215044,_mnvg-i4Qks,Josh finally finds CERN and meets up with Dr. Zicree.\ntt6215044,CpA9NJEL2EM,Josh and Pam save some survivors of the flood by bringing them on their boat.\ntt6215044,t1V-lbe6gII,Josh and Pam narrowly escape a flash flood by jumping onto Josh's boat.\ntt6215044,w01pKxgINao,Pam risks her life to save the whole world.\ntt1610528,QABInjYQVes,\"Special Agent Gina Vitale takes on one of the skyjackers, and then fights the leader of the terrorist gang.\"\ntt1610528,OBQcsOUZ2u0,\"Joseph Franklin loses control of the plane during the skyjacking, and must perform a dramatic maneuver to save the plane and its passengers.\"\ntt1610528,Dkd1ak3tQ5s,\"One of the kidnappers manages to get away, but he doesn't get far before he is killed.\"\ntt1610528,UIkY2KKWmdk,\"In an attempt to take over controls of the plane from the pilots, the military hacks the plane, but things go awry, and Joseph Franklin must save the plane from crashing into a city.\"\ntt1610528,GALfESO3afQ,\"The Franklin family gets kidnapped by some armed assailants, and on a run from the police.\"\ntt1610528,ljOOPtZAk2c,\"The FBI finds out where the neo-Nazis are holding the Franklin family, and move in on the cabin.\"\ntt1610528,UwhUd2cPOYE,The leader of the skyjacking terrorist organization sets a bomb that blows an engine off the Starquest.\ntt1610528,p74VOGdtMTw,the Starquest.\ntt1610528,7_UHtWGKsuc,\"Pilot Joseph Franklin attempts to land the hijacked and severely damaged plane while avoiding all of the landmarks of Washington, D.C.\"\ntt1610528,lLScgb8ZP_8,\"In an attempt to stop the skyjacked plane, President Harriet Franklin enlists the help of an experimental laser shot out of a satellite, but this laser misses the target and backfires spectacularly.\"\ntt5460416,DTWggpNq1a0,A comparison of young and old couples and the subtlety of love.\ntt1411238,pJFZLCoqB9w,\"When the girls cycle's sync up, Adam makes a mixtape to \"\"soothe your womb.\"\"\"\ntt1411238,4ak8huhsVKc,Adam has no idea what happened after waking up from an all night bender.\ntt1411238,qhGsK4yvxmg,Adam and Emma get intimate.\ntt1411238,G3qOB7PGBXE,Emma isn't thrilled with Adam's choice of company.\ntt1411238,EBLS3sCB4rk,Adam and Emma see how dating suits them.\ntt1411238,RuOjVbqLiZU,Adam and Emma have an awkward dinner with his dad and his ex.\ntt1411238,Q3JqdmUTsLI,It's all fun and games until someone falls in love.\ntt1411238,i4NIiCSEiTg,Emma finally admits to Adam her feelings for him.\ntt1411238,uL1Q5YZ0Ejc,\"Adam and Emma make quick usr of their \"\"friends with benefits\"\" pact.\"\ntt1411238,DIlHR2SWW9E,Adam discovers his first romantic experience after Emma to be more awkward than expected.\ntt5460416,k67i1cISzsI,Zoe seduces Malcolm.\ntt5460416,HzvL4MonF-I,Malcolm and Lily's relationship begins to crumble.\ntt5460416,AcvWJ8bgA8w,Malcolm exchanges manual labor for information on his grandfather's whereabouts.\ntt5460416,foQnR1eZO-Y,Malcolm ruminates on the ways his life will change after his girlfriend Lily gets some good news.\ntt5460416,3tuV7dBxBPU,Malcolm & Lily adjust to life in a retirement community.\ntt5460416,GXZSat3AqwE,Lily's prepares for an interview.\ntt5460416,hDA_Bn7UhlA,Bart searches for love and authenticity.\ntt5460416,UPAs32xduAM,Malcolm fantasizes about getting back with his girlfriend while waiting to confront his grandfather.\ntt5460416,rhfBzC5A79o,Lily has a breakdown while interviewing for a job.\ntt3715296,GsP6mQAcxj8,Zade attempts to seduce Kevin after being paid to sleep with him.\ntt3715296,g2cIMCa6N64,Carl has a boner that lasts too long.\ntt3715296,_ZjTuvkIbcg,Kevin discovers Angie's new beau is someone he trusted.\ntt3715296,WcPbZiPqUlE,Zade tries to get Kevin to loosen up.\ntt3715296,SLC6o6KPuro,Kevin and Zade find themselves in trouble after Hank decides to have a little fun.\ntt3715296,wQR6vm3kDSI,Things get awkward when Kevin meets with Zade's parents.\ntt3715296,yJ0RpuixpT4,Zade is aggressively pursued while she and Kevin wait to bail out their friend.\ntt3715296,qkHBpSypnHI,Kevin blunders.\ntt3715296,urr-Zn5nq2w,Kevin propositions Zade at an inopportune moment.\ntt5039994,_GjXqTtZjDg,\"Mr. Butler meets with Paul, another teacher whose life Lucas tried to ruin.\"\ntt5039994,qNXYR0fe1Lk,Lucas flips the script on the popular kid who interrupted class.\ntt5039994,2eltEasOEig,Lucas reacts badly when he's benched for a chess match.\ntt5039994,41v_zrra00A,Becca tries seducing Mr. Butler after getting bad advice from Lucas.\ntt5039994,nloEs-bbjXM,Lucas uses Becca in his plan to ensnare Mr. Butler into a scandal.\ntt5039994,PdYD2Sdt8s4,Lucas is finally found out as a sociopath after Mr. Butler finds evidence the boy tried setting him up.\ntt5039994,CYs5HBcQBNc,\"Mr. Butler is accused of menacing behavior after a student, Becca, is found dead.\"\ntt5039994,w_ZDbyiJlF8,Lucas tortures Mr. Butler by kidnapping and threatening to kill his son.\ntt5039994,4bT5OwL1UnY,Lucas is infuriated to find that Mr. Butler has failed him.\ntt0113957,gvTCSxLPy0Q,Angela discovers that Devlin is not who he seems.\ntt2693580,BiVnGF_72u8,Billy performs a monologue in front of his peers.\ntt2693580,cNjcecvssqE,Miss Stevens consoles Margot after watching her choke on stage.\ntt2693580,aFQabbA_FMs,Miss Stevens tells Billy about the loss of her mother.\ntt2693580,FpFqjfqGyRE,Miss Stevens meets Walter at an extended school function and tries to flirt.\ntt2693580,a7t6tQVX7T8,Billy is convinced he can 'solve' Miss Stevens's unhappiness.\ntt2693580,pxQ07GfWFjs,\"After Billy wins a top prize at the retreat, Sam scores something else.\"\ntt2693580,lKXUBB09y4k,Miss Stevens and Billy get close while walking back to the hotel.\ntt2693580,Jftv5w9B3So,Billy becomes convinced he can connect with Miss Stevens.\ntt2693580,AoHVBb8Bc_4,Miss Stevens tells the students of the time she was part of an accidental protest during a school play.\ntt0113957,6IXjYpPtjWk,\"Devlin catches Angela off guard at the Santa Monica Pier, but she escapes.\"\ntt0113957,6ya9GVSPiXs,Angela tricks Devlin into destroying the Gatekeeper software after she sends evidence of criminal acts to the FBI.\ntt0113957,FETaRGJH_JE,\"After Jack accidentally kills Ruth, Angela is forced to fend her life.\"\ntt0113957,6PEQcK6G_4M,\"After running from the police, Angela tries to connect with someone at Cathedral and ends up talking to her imposter.\"\ntt0113957,Oo67jMp9UbI,Angela discovers that Ben is working for the bad guys.\ntt0113957,hoWEYBSlctc,Dale enlists Angela's help decoding a confusing computer glitch.\ntt0113957,HZQlFhnFVjg,Angela is arrested after trying to run away from the police on the highway.\ntt0113957,yLm_tJ-ZrNc,Devlin stages a robbery in order to steal Angela's disk.\ntt0113957,D01cKQMu5Ew,Angela describes her perfect man while chatting with her internet friends in a chat room.\ntt1869315,T15XvRqmhqU,Brooke gets close to Denny.\ntt1869315,8gUP_uUpmSw,Denny doesn't like Brooke's ex-boyfriend.\ntt1869315,RKCrqtbqvio,Katherine makes good use of her gardening tools.\ntt1869315,4XHwJQfIyTo,Brooke tries to stop Denny's murderous rampage.\ntt1869315,AdmsyTzM7YY,Denny puts a date to bed.\ntt1869315,DU8nLYGOMIc,Denny comes on strong in every way.\ntt1869315,b8bioz2Eb84,Brooke's parents learn the truth about Denny.\ntt1869315,-c5QAS76N_A,Denny seduces Brooke.\ntt1869315,Om-y-goxpYc,Denny hits a wall in his relationship with Brooke.\ntt1869315,Y1RH4S7GPLA,Denny is determined to get the contents of the safe.\ntt1972591,RyQUewFDEx4,A dramatic realization of the murder of an innocent black teenager by a convenience store owner.\ntt1972591,_w2nm32Dbg4,Jesse saves Nicole from a couple creeps outside a liquor store.\ntt1972591,haSWFp-ToRM,Millie's kids find themselves at separate ends of the L.A. Riots.\ntt1972591,gwdClG0txYM,Obie and Millie share a moment and a kiss after breaking out of handcuffs.\ntt1972591,NpQNeUSJLjI,The city descends into chaos after the Rodney King verdict is announced.\ntt1972591,7mO_TD_Co1U,Obie takes care of his neighbor's children after they run away from their mother Millie.\ntt1972591,042B8vTl0ig,Jesse stabs William after William tries killing a bystander during the riots.\ntt1972591,IGDViR244hs,Mille goes looking for her missing children with the help of her neighbor Obie.\ntt1972591,_LNnkttaKXo,Nicole tries to get thrown in jail so she doesn't spend a night on the streets.\ntt1972591,YQxXtdN7j4U,Millie has a sexy dream about her neighbor Obie.\ntt5716380,UoDOFJsC608,Ellen demands results from Kate.\ntt5716380,_i6Du5s9Il0,Kate and Beaver get close.\ntt5716380,2uVdxC_gCro,Wyatt has a bit of trouble at the pharmacy.\ntt5716380,wCFnoBDeauY,Kate ingratiates herself with her classmates.\ntt5716380,92eioWPPuOI,Kate tries to play it cool when Wyatt catches her looking for evidence.\ntt5716380,HcjPZqjGuFA,Kat endangers herself by coming to warn Beaver of an impending drug raid.\ntt5716380,RXkLf3ucqIY,\"Kate gets more than she asked for when she meets local kingpin, Wyatt.\"\ntt5716380,3WIjC39hJF8,\"Kate gets heartbreaking news from her son's father, Jimmy.\"\ntt5716380,5jsb1xN8byg,Wyatt challenges Kat to prove she is a junkie and not a cop.\ntt0081573,G4DcKX_XRA8,Superman fights General Zod's gang in Metropolis.\ntt1907668,9ccE4YIG76Y,Whip attempts to pull the flight out of a nosedive.\ntt0081573,hJ9hMyqKcg8,General Zod and his cohorts arrive on the moon.\ntt0081573,_xUiCNlDeJk,General Zod and the Kryptonians invade the White House to force the President's surrender.\ntt0081573,UZ7PTLCQZwU,The citizens of Metropolis get blown away by General Zod's gang.\ntt0081573,_rCRxCR06UY,Superman fights General Zod's gang in his Fortress of Solitude.\ntt0081573,4xLa-Rn-gdo,Lois gets suspicious when Superman saves a child at Niagara Falls.\ntt0081573,NRYvrDdntjA,\"Clark Kent exacts revenge on Rocky, a jerk who beat him up.\"\ntt0081573,vAfD-vF8yss,\"Superman saves Lois and the Eiffel Tower, but unwittingly unleashes something much worse.\"\ntt0081573,rMH3omIA15k,Lois finally puts the pieces together and realizes that Clark Kent is Superman.\ntt0081573,Y3gJGuQQPnw,Superman tricks General Zod and the Kryptonian criminals into losing their powers.\ntt1907668,edaHyeIxzcI,Whip makes a desperate decision in order to save his passengers and crew.\ntt1907668,D0bIbyAa_XE,Whip prepares for an improvised landing of his plane.\ntt1907668,u_G4el-62Ik,Harling gets Whip back on his feet.\ntt1907668,Jv7PzcVfULc,Whip meets Nicole and a cancer patient in the hospital stairwell.\ntt1907668,uzhsjyHUBt8,Hugh breaks how badly things could go for Whip.\ntt1907668,bEpL6Mt_jrk,Whip can no longer hide from the truth.\ntt1907668,WHcarLLrz9Y,Whip contemplates selling out an innocent woman in order to get his case dismissed.\ntt1907668,vpEAO0gIAxE,Whip comes to terms with himself.\ntt1907668,fIfQbocblZc,Whip and Nicole find healing of a different kind.\ntt0185431,rOu9FD63Z68,Nicky gets help from Beefy after he has a hard time adjusting to Earth.\ntt0185431,0QLGAhQDgsE,Nicky challenges the Referee to a basketball game.\ntt0185431,IQVt4ZtUzgc,Nicky uses his gift from God - Ozzy Osbourne.\ntt0185431,Uovtut2ckMg,Adrian takes over his father's throne and brings Hell to Central Park.\ntt0185431,9eI4mt_lKTw,\"Nicky is tasked to bring his brothers back from Earth, but not without a few setbacks.\"\ntt0185431,arzwnRoAQP0,\"Nicky tries to convince his brother, Adrian, to go back home to Hell.\"\ntt0185431,ZwQuo7dY_Dw,Nicky goes looking for his brothers in a sea of New Yorkers.\ntt0185431,Q2x3eUH0ytI,Adrian and Nicky battle for the fate of Earth.\ntt0185431,N7itFdNE2Qw,The Devil announces who will take the throne of Hell before his four o'clock appointment with Hitler.\ntt0185431,W8fjSVywGGk,A Peeper gets caught watching Mrs. Dunleavy get undressed.\ntt0096101,U8fgto8IZLM,Johnny Five defends the warehouse from a couple of burglars.\ntt0096101,Z6cDbMLcxQI,Johnny Five catches Oscar and his friends but is quickly overpowered.\ntt0096101,NTdHPAY7rOE,Johnny Five fights off Oscar and his thugs.\ntt0096101,2ADaXnuG-YM,Johnny Five comes across a bad influence while searching for more 'input'.\ntt1258972,gWGhsJWFOrU,The Blacksmith and Madame Blossom try to fight off the Lion clan.\ntt1258972,h5f5GgqVWes,Jack Knife makes his presence felt at the local brothel run by Madam Blossom.\ntt1258972,a8mImo0aNDo,Jack Knife helps the Blacksmith build a pair of iron forearms.\ntt1258972,zOvMmwnFVa0,Jack Knife fights Poison Dagger.\ntt1258972,_4oM1Sa1Pb8,Zen Yi is attacked by the rival Rodent clan.\ntt1258972,za8FVqsMmZ0,The Gemini twins are attacked by the Lion clan over a shipment of gold.\ntt1258972,UWS3FOpdFMU,The Blacksmith faces off against Brass Body.\ntt1258972,bfgJbZHRes8,Madame Blossom directs the prostitutes to assassinate the Lion clan.\ntt1258972,Ko8vqBmZRfE,The clans collide in a bloody battle at the Pink Blossom Brothel.\ntt1258972,lS9V0oDrPfs,Brass Body confronts Zen Yi and his men.\ntt0892791,UVDRpF027l0,Shrek and his friends lead a final attack on Rumplestiltskin and his witches.\ntt0096101,qSd4Q3GY7dc,Johnny Five searches for his humanity in the streets of New York.\ntt0096101,LABMISLl7Y8,Fred helps Johnny Five repair himself.\ntt0096101,Jf7jVM7NoVE,Johnny Five helps Ben woo Sandy while the two are on a date.\ntt0096101,pR8Lt5DyU88,Johnny Five is finally recognized as being 'alive.'\ntt0096101,R1zRKVLsmrM,Johnny Five makes all the toys they need in one night.\ntt0096101,l0zmCUVB0Yw,Ben and Fred are surprised by the arrival of Johnny Five.\ntt0892791,XTjTXskLQO0,Shrek tries a unique approach to flirting with Fiona.\ntt0892791,6I5B0jyLBUg,Shrek gets overwhelmed while trying to throw a birthday party for the triplets.\ntt3607812,KJtfL83FLj8,One of Sheik's three daughters is murdered.\ntt3607812,NRuVbAAb_FU,The Sheik's peers discuss the dominating presence that the wrestler brought to the mat.\ntt3607812,aOCAfIWw2H0,The Rock reminisces about The Sheik.\ntt3607812,Bc_4HO3jI1g,The Sheik helped establish Hulk Hogan's career.\ntt3607812,25UN_cgKaxc,The Sheik takes Twitter by storm.\ntt3607812,vtdnjV0Q2fE,The Iron Sheik finds himself struggling to find work.\ntt3607812,5RFz0uu2ZuA,\"The Sheik & Hacksaw get busted for drunk driving, changing the face of the WWE forever.\"\ntt3607812,3ZL5il1o-AQ,The Sheik falls into a drug-induced stupor after falling from grace in his career and losing his daughter.\ntt3607812,Yo8mYWU0oTk,The Sheik's fame reaches explosive heights during the Iran Hostage Crisis.\ntt3607812,C1MsPeGKyMs,The Iron Sheik learns how to use the internet and the whole world loses it.\ntt0448694,Pvva0sdUEkc,\"Puss in Boots, Kitty Softpaws, and Humpty Dumpty steal the Golden Goose.\"\ntt0892791,TJa_A5cVd-w,Shrek finds Puss in Boots in a very compromising position.\ntt0892791,zkRkL94VQxY,\"Shrek stumbles across a village of ogres led by a fierce, warrior version of Fiona.\"\ntt0892791,YNZmZ4ARr38,Shrek begins to feel the monotony of family life with Donkey and Fiona.\ntt0892791,1IaDQdo8x1I,King and Queen come to Rumplestiltskin in a desperate attempt to save their daughter.\ntt0892791,hIJ0gMDZT_4,Shrek and Fiona are ambushed and forced to boogie by the Pied Piper.\ntt0892791,0osA8jKKotc,\"Shrek manages to rescue the ogres, save the kingdom, and kiss Fiona.\"\ntt0892791,uuNy1Ibdk_Y,\"Shrek signs a contract with Rumplestiltskin allowing him to go back to being a big, scary ogre.\"\ntt0448694,MaqzxDPwOB4,Puss in Boots comes face to face with the original owner of the Magic Beans.\ntt0448694,FcSSNKWcReg,Puss in Boots learns just how deep Humpty Dumpty's betrayal went.\ntt0448694,u4gz2yNW_Go,Mother Goose ravages a town in search of her stolen chick.\ntt0448694,UpgP8aA8ABE,The gang dances in celebration of stealing the Golden Goose.\ntt0448694,gxuEGIzZrGc,\"Puss in Boots attempts to rob Jack and Jill, but someone else is already there.\"\ntt0448694,-19d_T472co,Puss in Boots challenges the Masked Kitty to a dance fight.\ntt0448694,zHwUR2EqUO0,\"Puss in Boots, Kitty Softpaws, and Humpty Dumpty steal magic beans from Jack and Jill.\"\ntt0448694,x2S78gnCkRg,Puss in Boots and Kitty Softpaws share a victory dance after saving the day.\ntt0448694,g1r-B5ZGZWY,\"Puss in Boots, Kitty Softpaws, and Humpty Dumpty plant the magic beans.\"\ntt8804688,avdSnNmqs7c,Kirk Cameron talks to Dr. Kathy Koch about solutions to the 'Cultural Lies' kids on social media start to believe.\ntt1192628,uw7rRlJvEl4,Rango runs for his life from the hawk.\ntt1192628,BIg5_09Tcf8,Rango walks out to duel with Jake the Rattlesnake.\ntt1192628,7cZ3I9Bn9Rg,Rango faces off against Jake the Snake.\ntt1192628,SW5_v_8r9VA,\"When Rango can't blend in, a Hawk sets sights on him.\"\ntt1192628,de_Dik7HT6E,\"Without hope, Rango gets advice from the Spirit of the West.\"\ntt1192628,qN_sGdVG0Yw,Rango and Beans find themselves in over their head.\ntt1192628,nS4Zfx9BSX0,Rango bumbles his way through a town ritual.\ntt1192628,uAroGB_YCmw,Rango and his posse make a mad dash to escape the mole people.\ntt1192628,XgGyrrzTBz4,Rango takes things too far with Bad Bill.\ntt1192628,TuBXSOUS-U4,\"While Rango searches for purpose, purpose finds him.\"\ntt0120630,VkD1dhWMYts,\"As Mr. Tweedy rebuilds the pie machine, the chickens make a flying machine.\"\ntt0120630,8xgUm0plA8w,\"After fixing the pie-making machine, Mr. Tweedy is sent to retrieve the chickens.\"\ntt0120630,wQj8uFwQP2A,Rocky throws a party for all the chickens after a hard day of trying to fly.\ntt0120630,mlHF0Vv7yEc,Ginger and Rocky fight a bloodthirsty Mrs. Tweedy.\ntt0120630,qTj4aSPwTBk,Ginger tries to escape.\ntt0120630,mjuNE5wyMzY,\"With Rocky's help, Ginger, Fowler, and the chickens manage to get their plane in the air.\"\ntt0120630,zQf0jUhqJYw,Rocky comes to the rescue to save Ginger from the pie machine.\ntt0120630,ZVlfttyv5js,The chickens line up for morning roll call.\ntt0120630,i_zdyGw0tEo,Rocky leads the chickens in a series of flying practices.\ntt0120630,0hNbRd78jOE,Rocky wakes up in the hen house to find a slew of eager chickens.\ntt8804688,j9FpQjinKMY,Kirk Cameron imagines what it may be like should the Devil come to his home.\ntt8804688,mfgrntgrWTw,Kirk Cameron continues his talk with Dr. Kathy Koch about 'Cultural Lies' kids on social media start to believe.\ntt8804688,3Bz0cqx4ZyI,Kirk Cameron talks to Dr. Kathy Koch about 'Cultural Lies' kids on social media start to believe.\ntt8804688,e70y31Gbhpg,Parents discuss the dangers of social media from their own experience.\ntt8804688,1rd6owpXoC4,\"Kirk Cameron talks to a father whose son was being harassed online by an older, predatory male.\"\ntt8804688,S5CmrYAWxh4,Two teenagers discuss their growing obsession and dependency with social media.\ntt8804688,ROf2H0OX39s,Kirk Cameron talks to Pastor Ken Graves about salvation and the internet.\ntt8804688,c_5924m1jNM,Kirk Cameron talks to a father who set up his own investigation into a sexual predator who targeted his son.\ntt8804688,I8qfzVFTQuo,Kirk Cameron interviews a minister who preaches a more understanding parenting style.\ntt1277953,ghUFMbHmw8s,\"The gang reaches Monaco, where they enact a crazy heist.\"\ntt1277953,OuQTes47k14,\"While the gang prepares the circus, King Julian weds his bride.\"\ntt1277953,UZ2IjJCsxxo,The gang realizes that buying a circus before seeing it wasn't their best investment.\ntt1277953,22xJjwTRC10,Captain Dubois chases the zoo gang across the rooftops of Monaco.\ntt1277953,Gq43zgK0T94,Captain Dubois rallies her wounded men with a French classic.\ntt1277953,A7mWnsrRu6w,The Afro Circus comes to rescue the Zoo Crew from Captain Dubois.\ntt1277953,PXSMKQqZjaE,\"When Stefano overshoots himself from a cannon, Marty flies to the rescue.\"\ntt1277953,jFWnVdsSgxs,\"The Afro Circus gives an epic show to the tune of Katy Perry's \"\"Fireworks.\"\"\"\ntt1277953,JFAAK6FfOSA,King Julien meets the cycling bear Sonya.\ntt1277953,wEvSZB_Dhqc,Captain Chantal Dubois begins her pursuit of Alex and his friends.\ntt0413267,mZHlantNtwg,\"Prince Charming attack Fiona's Baby Shower, but finds bumbling fairy tale creatures instead.\"\ntt0413267,sWjVe9dMRHU,Shrek and Fiona suffer through the rigors of royalty.\ntt0413267,MriW09XMJeo,Shrek is brought up on stage to meet his death by Prince Charming.\ntt0413267,6TOx7qsyaxU,Prince Charming takes one last stab at taking over the realm.\ntt0413267,0L1sL54G45Q,The princesses break into the castle.\ntt0413267,O12Ve5AFu7o,\"Prince Charming's henchmen attack Shrek, Donkey, Puss In Boots, and Artie.\"\ntt0413267,0igqAlu8Oqc,\"After Puss and Donkey get thrown in jail, Fiona and the princesses break out.\"\ntt0413267,IEaqLI9HAmA,Arthur learns that he is the heir to the throne of Far Far Away.\ntt0413267,Vs0CShp6HFA,\"Shrek, Donkey, and Puss In Boots go back to High School to find Arthur.\"\ntt0413267,SVTxvLaac6A,Shrek has a nightmare about being a father.\ntt0481499,GaUGoueAS4Y,\"The Croods fight off prehistoric birds, ferocious big cats, and other strange creatures to steal an egg to eat for breakfast.\"\ntt0138749,hlWL5Az4pow,Miguel and Tulio search for the fabled city of El Dorado.\ntt0138749,Y0IXtktHTgk,Tzekel-kan and his stone jaguar confront Miguel and Tulio.\ntt0138749,FSXijk37oNs,Miguel and Tulio sing about the difficulties of being gods.\ntt0138749,e-NMI6o5ynk,\"El Dorado, the city of gold, was a paradise created by the gods.\"\ntt0138749,jG7W6jwCSd0,Miguel ingratiates himself with the inhabitants of El Dorado.\ntt0138749,h3AqOR2Ru1s,Miguel and Tulio work their normal con.\ntt0138749,bRehxlYZ_CE,\"Tzekl-kan summons a giant, stone jaguar to attack Miguel and Tulio.\"\ntt0138749,Hm8hcRPGyME,Miguel and Tulio play a Mesoamerican ball game despite having no real skill.\ntt0138749,xaIlgOMjspo,Tzel-Kan interrupts Chel and Tulio with some spooky advice.\ntt0138749,NipqouLNqAY,\"Miguel and Tulio enter El Dorado, and after seemingly performing a miracle, the two are perceived as gods.\"\ntt0481499,z7tcVyV7wjw,\"After sneaking out of the cave, Eep meets Guy and is enthralled by his invention of fire. Until her dad Grug comes and takes her back home.\"\ntt0481499,irnju0G-lBg,Grug comes up with an idea to create a ribcage and Piranhakeet-powered airship that can fly him and all his family's furry friends across the chasm.\ntt0481499,xxl1Hrw2eQM,\"Grug and Guy get stuck in tar, and Guy comes up with an idea to get them out.\"\ntt0481499,hR4oc1us1aU,Grug demonstrates some of his terrible inventions to the family.\ntt0481499,BM29Ze3d_cs,\"Guy creates shoes for the Croods, and shows them how useful they can be along with many other inventions.\"\ntt0481499,KToHdILd_p0,\"Guy and Eep get close while setting a trap to catch dinner, and nearly catch Grug instead.\"\ntt0481499,29Pg9Oo6P2w,\"Grug throws Guy and the Crood family to safety on the other side of the chasm, and also invents the hug.\"\ntt0481499,yISManYcWqU,Guy uses fire to save Eep and the Croods from the bloodthirsty Piranhakeets.\ntt0481499,w6ivjvOqBy0,\"Eep introduces Guy and his fire to the family, and they are both transfixed and terrified.\"\ntt7399158,_QKwR14HKf8,\"Christine prepares for her impregnation by Paolo, only to make a disappointment discovery.\"\ntt7399158,WdS4ZMa6tXM,\"Christine, Margo, and Mikki extract sperm from Paolo's corpse.\"\ntt7399158,YpFmmzisOy0,\"Christine has a candlelit dinner with potential sperm donor, Paolo.\"\ntt7399158,h41ylpWhV1I,Christine's first attempt to get pregnant goes awry.\ntt7399158,wxhUTK7xbz8,Bob breaks up with Christine.\ntt7399158,-fRY1b6WAx4,Tony makes a pass at Christine.\ntt7399158,IT4vcwIvSCI,A cautionary tale of smuggling condoms.\ntt7399158,zyaOnPSzcPE,Christine decides she's desperate enough to try a dating service.\ntt1694020,gjmt7I1OJfw,Joyce tries to help Andy with his sales pitch.\ntt1694020,jMxYv05A7B0,Joyce reveals how she named her son.\ntt1694020,DLzp0YkZnRc,Joyce has a meltdown after an outburst from her son.\ntt1694020,8v7xHt-CJZg,Andy has an incredibly awkward meeting with hotel concierge.\ntt1694020,P4aGofKtJsA,Andy somehow winds up in a strip club with his mom.\ntt1694020,39471A71y3w,Andy and Joyce part ways after a long journey together.\ntt1694020,6dA4C1NKChE,Andy and Joyce learn the truth about her lost love.\ntt1694020,TgujxmrRUlw,Joyce gets support from a handsome spectator.\ntt1694020,wR_e9lxh7Ds,Andy pitches his product to the Home Shopping Network.\ntt1694020,fZB65wj9nz8,Andy doesn't like the men taking advantage of Joyce.\ntt0097778,FHiB0ZTO8fU,James visits Mollie after she gets out of the hospital to return her purse.\ntt0097778,2NA_wZ2MWBc,Mollie and James panic after Mikey walks out and into a car being towed.\ntt0097778,vId4AoKDg2s,James catches Mollie dancing in the kitchen.\ntt0097778,BPuGsFSTy0Y,James picks up a pregnant Mollie who is going into labor.\ntt0097778,QDARBy0jCgs,James learns about Mollie's secret when Albert comes to see his son.\ntt0097778,vozjOGBUz2I,Mollie and James find themselves alone after their date.\ntt0097778,CeX8drgioLs,Mollie runs into her lover in a surprising place.\ntt0097778,03uEq5dKcFs,Mollie catches James using her address in order to get his grandfather into a senior home.\ntt0097778,eUogxXRPC7E,James babysits for Mollie while she goes out on a date.\ntt0097778,gQgdweybPwk,Mollie begs James to help her get drugs for the labor pain.\ntt0479952,cPVM14Bnf5I,Alex saves himself with the power of dance.\ntt0479952,iNg7uRYtqLA,Baby Alex is kidnapped by a hunter and accidentally stumbles into America.\ntt1911658,5aY5jTL60pA,\"Skipper, Kowalski, and Rico steal The North Wind's plane to chase after Dr. Brine, but secret agent force has other ideas.\"\ntt0479952,DpA2bMJlDpI,Alex and the gang find their true home in the African Sahara.\ntt0479952,9F3iBMYvQOs,\"The Penguins discover a blinking light in the airplane, which leads to troubles.\"\ntt0479952,j2JFTz9KQhk,The Penguins play out their cunning plan to steal a safari jeep.\ntt0479952,jQp4IlURoNg,The Penguins play out their cunning plan to steal a safari jeep.\ntt0479952,p2zDdb_MqmI,\"The Penguins rescue Alex and Zuba, but run into Nana.\"\ntt0479952,Omdvu0f-Wuw,Melman prepares to die until receiving advice from King Julian.\ntt0479952,ouQG7Pcq1S8,Madagascar: Escape 2 Africa - The Nana Cometh: Alex runs afoul his nemesis: Nana\ntt0479952,UvRaab90nQ0,King Julian thinks the animals need to sacrifice each other to the water gods.\ntt7454138,9mwgsjG2Vtw,Elias participates in an epic rap.\ntt0298148,rmpFmJfEZXs,Shrek meets Fiona's parents over an awkward dinner.\ntt0298148,_t4L-ZdoEr8,\"Pinocchio and the others help break Shrek, Donkey, and Puss in Boots out of prison.\"\ntt0298148,sOBIrjgDZr4,Shrek and Fiona are given a seal of approval from an unexpected place.\ntt0298148,C9PYzGyIfF8,Donkey and Puss in Boots sing in celebration.\ntt0298148,ZOfisAF09AA,Shrek and Fiona go on their honeymoon.\ntt0298148,vaJ2yQC_ktY,Puss in Boots attacks Shrek and Donkey.\ntt0298148,A_HjMIjzyMU,\"Shrek, Donkey, Puss in Boots, and the Gingerbread Men race to save Fiona.\"\ntt0298148,LzJ1fo-oUpk,\"Shrek and Donkey wake up after drinking the Happily Ever After potion, and find that things have changed a little bit.\"\ntt0298148,UgiK8333Np0,Shrek and his friends fight the Fairy Godmother.\ntt0298148,FFnyDGETjzA,\"Shrek, Donkey, and Puss in Boots break into the Fairy Godmother's Potions Factory.\"\ntt7454138,ES20xt2nU10,Young tugboat Elias saves Vinny from a dangerous storm.\ntt7454138,UFFaqQYlg0E,Elias finds Vinny and two henchmen doing something sinister in a nearby cave.\ntt7454138,Tm1fX-cqfxk,Elias and his heroic rescue is celebrated and honored in the city of Big Harbor.\ntt7454138,L1AHpY6Gcbs,\"Elias goes out with Stella, but their date gets interrupted by Elias' new job.\"\ntt7454138,eAx_rXKiO48,Elias and the gang distract Vinny as they try to free his captives.\ntt7454138,cIesHaxakmU,Elias jumps out of the collapsing cave.\ntt7454138,157mo2VaYqc,Elias rescues his friends from a collapsing cave.\ntt1911658,nHcRQhadzhY,\"Octopus henchmen chase Skipper, Kowalski, Rico and Private through the streets and canals of Venice.\"\ntt1911658,5VmWe3LyUDM,\"Skipper, Kowalski, Rico and Private jump out of a plane, and have to figure out how to land safely.\"\ntt1911658,81MNbVi5a64,The penguins' plan to reverse Dr. Brine's evil scheme hits a snag when their remote control runs out of batteries.\ntt1911658,pAwdeWy9yYM,\"Dr. Octavius Brine returns the stolen penguins, but not until after he turned them into monsters!\"\ntt1911658,gIZ64_sZbCY,\"After saving all the penguins, Private is turned into a monster himself, but is now a meaningful and valued member of the team.\"\ntt1911658,zXR_4li9ZnA,\"Private manages to snap Skipper, Kowalski, and Rico back to normal, and they embark on a plan to stop Dr. Brine.\"\ntt1911658,fqKdFZ1jKMY,\"The penguins capture Dr. Octavius Brine while he tries to steal the 'Penguin Mermaids.\"\"\"\ntt1911658,A1GJyyJzpCo,The Penguins rush to save Private from the clutches of Dave.\ntt1911658,sF-j-GhV6xw,The penguins head back to North Wind HQ but have a hard time working with a new team.\ntt0312528,g2ElfIY2zfQ,\"The Cat, Sally, and Conrad return home to find the greatest mess ever made.\"\ntt7575480,Pu8AnCsWdiM,The Explorers learn about different types of penguins and about humpback whales.\ntt7575480,LAajBhbC5Y8,\"The Space Explorers learn about global warming, and what they can do to fix it.\"\ntt7575480,iGawlpfe6a0,Nick and Sammy learn about the planet Earth.\ntt7575480,EDywdraYOBA,The Space Explorer recruits answer trivia questions about penguins.\ntt7575480,d0hM2Ekkk-8,\"Cup-K offers the Explorers a closer look at a penguin colony, and tells them about their unique adaptations.\"\ntt7575480,2iF-cU-qnbc,The team learns about orcas.\ntt0312528,ph7amveyJHY,\"The Cat tries to blend in at a birthday party, but ends up being the main event.\"\ntt0312528,3iJ8esboOjA,The Cat in the Hat takes the children through a surprisingly risque club.\ntt0312528,0gouIFYgm2k,The Cat helps Sally and Conrad clean the house before their mother gets home.\ntt0312528,LOIF-564wKc,The Cat enlists the help of Thing One and Thing Two to clean Mom's dress.\ntt0312528,1SEsxhvzzT0,\"The Cat, Sally, and Conrad drive The Cat's Super Luxurious Omnidirectional Whatchamajigger.\"\ntt0312528,57VO_eSiDG4,The Cat demonstrates a cupcake making machine.\ntt0312528,8QbFslYlKIk,Conrad and Sally demand The Cat leave their house.\ntt0312528,yId_D0rOn8Y,Sally and Conrad meet The Cat.\ntt0312528,Pq2Z7Qf45gM,The Cat in the Hat sings about fun.\ntt1757944,G77jx5jd2-c,\"Princess Evelyn gets away from the kidnapping henchmen in the house of mirrors, and her pony knocks out the evil carnie Theodore.\"\ntt1757944,ItkWLEWFjVI,\"Princess Evelyn tries to show off her skateboarding skills to her new classmates, but things don't go as planned.\"\ntt1757944,0ov8ekqSAOU,\"Princess Evelyn is announced to the world, with all her friends, family, and even her pony in attendance.\"\ntt1757944,wJROB9vIUFk,\"Theodore orders his evil henchmen to kill Princess Evelyn's pony, but the pony manages to escape.\"\ntt1757944,IFETv7hMlqc,\"Princess Evelyn meets a lonely pony in a barn, the scary carnival owner Theodore, and gets a job working in the stables.\"\ntt1757944,wnmtGj0vBo0,Evelyn tries to teach her pony how to jump.\ntt1757944,iH-ioakPz6s,\"Evelyn finds Becky captured, and must trick Theodore into thinking each other is the real princess.\"\ntt1757944,pPnfIsbcwfw,Princess Evelyn and Becky escape from the clutches of Theodore and his henchman.\ntt1757944,jxEVFU6EN_k,\"Evelyn and her pony ride after the evil Theodore Snyder, and capture him in a net.\"\ntt1107365,sRR3ukzqiGs,Boog comes up with a way to disguise the animals in order to get into the park.\ntt1107365,QQaLVYSCwrc,Fifi tries to change Mr. Weenie back into a pet.\ntt1107365,qULlmr4lxb0,Elliot attempts to save Giselle while Boog runs into trouble at the park.\ntt1107365,CBUtXwZNA8Y,Elliot and Boog come up with a plan to save Mr. Weenie.\ntt1107365,Xa0JBPt2cGU,Boog and Elliot create a plan to get into the park to save their friends.\ntt1107365,rjnLGy6uWKc,Boog tries to help Giselle and Elliot's relationship through the power of s'mores.\ntt1107365,Yn8Or4O6_9U,Fifi recounts his harrowing tale of the time he first encountered wild animals.\ntt1107365,E-mnMI7Klyw,Elliot brags about his brand new antlers.\ntt1107365,P7-rs7H1CAE,Elliot battles Fifi as the animals try to avoid being shot by the security guards.\ntt1107365,H4YWQ0uEY2U,Elliot tries to express his love to Giselle.\ntt5667482,gSepgtf10wk,Isabel and April try to hop across a volcano on the ocean floor in order to make it to the coral reef in time to meet her father.\ntt5667482,v0xXbyXI6YI,Isabel and her new friends reunite with the old group from her aquarium.\ntt5667482,5MINtb6BV6Q,Isabel accidentally comes across a deadly predator at the ocean floor.\ntt5667482,9lOj8ThRAWI,Isabel and her friends are attacked by a deadly lion fish.\ntt5667482,y10ao1Tib8A,Isabel drags her cave dwelling friends from out of the darkness to explore the rest of the ocean.\ntt5667482,GxDvAEsMvoc,Isabel tries to use a fish hook to get a better view of the ocean.\ntt5667482,LWtB2BdJ3kk,Isabel and April come across one of the ocean's deadliest predators... a dolphin.\ntt5667482,sVc3ln7vaig,Isabel meets April - a rockfish who protects her from the dangerous environment of the ocean floor.\ntt5667482,h6klN0zNh64,Harold and Carl team up to find Harold's daughter and run into a few natural predators along the way.\ntt5667482,W112SAzt_FI,Isabel and her dad are tossed overboard from their aquarium after a giant wave knocks it overboard.\ntt6499752,n3L8UVTe6Ak,Grey confronts Fisk.\ntt6499752,wsooQlbj934,\"Grey and his wife, Asha are taken out of their crashed car by assassins.\"\ntt6499752,o_3BdeGhzrs,Det. Cortez chases Grey while STEM tries to stop her.\ntt6499752,gi9EwdK-6L4,Eron reveals STEM's plan to steal Grey's body as his host.\ntt6499752,yn2p3AV23-Q,Grey is chased by Fisk and his crony.\ntt6499752,AZxn9md_aZI,Gray breaks into the home of one of the men who murdered his wife.\ntt6499752,-DqmTaUK-Ow,\"After taking over Grey, Stem boasts about his victory to an injured Det. Cortez.\"\ntt6499752,xDkXQ7uBr5M,STEM commandeers Grey's body when they're confronted by Det. Cortez.\ntt6499752,1GYZPg_aQdw,Grey lures Tolan into the bathroom.\ntt6499752,4A-hmyHNaxM,Grey tortures Tolan for information about his wife's killer.\ntt4943934,Mcv-560wn_s,A storm over Mars threatens to destroy a major human settlement.\ntt4943934,ZVLaVxPjPcQ,Neil helps save Foster's life after his suit ruptures.\ntt4943934,clN9kykVhOs,Miranda runs to the tunnels to find her daughter.\ntt4943934,N3_pKdxk5OM,Ellie and Ida try to help a young couple make it through the tunnels to safety.\ntt4943934,TWUQypjv2Gw,Neil sacrifices himself in order to save Foster who he hopes will save his family.\ntt4943934,11MponTu30M,Foster and Neil try to escape from the storm that is destroying human cities on Mars.\ntt4943934,QQsg9djZsRE,Foster and Neil find themselves at the center of the storm while attempting to destroy it.\ntt4943934,1UN6pgpke7o,Ellie and Ida rush to stop the sandstorm from destroying the city.\ntt4943934,RZM3dVWNLG0,Miranda and Andrews rush to help Miranda's family save Mars.\ntt2196430,C7vyta1sCfU,A bloodthirsty alien attacks and kills a group of soldiers.\ntt2196430,Td1oEs-H3QA,The military expedition is forced to fight back as the alien swarm begins to shoot at them.\ntt2196430,R0fmtWlMpHc,\"A mysterious spaceship lands right in front of Dr. Susan Nieman, Julia Evans, and the rest of the military expedition.\"\ntt2196430,W2sUalav-ak,A group of archaeologists inspecting a newly found cave in a Belizean mountain range uncover some very curious fossils.\ntt2196430,0cQThjQfEEc,\"After escaping the alien spaceship, the military troops run from a series of explosions emanating from the alien ship.\"\ntt2196430,SHwGQTJ73Mg,The military expedition goes inside to investigate a spaceship that landed right in front of them.\ntt2196430,XGsmIO5GUZI,Julia Evans and her escorts venture into a cave and get attacked by an alien.\ntt2196430,0dmwDGkQJR8,A military operation finds shocking footage from an abandoned camera.\ntt0884732,wq-H7qGfF68,Jimmy throws a bachelor party for Doug.\ntt0884732,Ep30EE2v0mU,Jimmy agrees to provide groomsmen for Doug's wedding.\ntt0884732,fvHgXzOY12Y,Jimmy and Doug try out their dance moves at a wedding.\ntt0884732,k2s7U_7gHtE,Bic gives a heart warming speech at Doug's wedding.\ntt0884732,ClOGZ8IiO90,\"After the bachelor party goes awry, the crew rushes Doug to the hospital.\"\ntt0884732,OjkIBSE3yfY,Jerry holds auditions to find friends for Doug's wedding.\ntt0884732,Na9qhz28ZWQ,Jimmy introduces Doug to the men who will pretend to be his groomsmen.\ntt0884732,RWfQwm_BgZY,Bic tries to keep his cover when he meets Doug's family at brunch.\ntt0884732,WhUvsKY-l28,Doug and Jimmy escape from the wedding.\ntt0884732,Se2zCvUqqWw,Doug's father-in-law challenge the groomsmen to a game of football.\ntt0279493,K93YrK48ZG0,Mr. Feather and Undercover Brother fight for their lives at The Man's headquarters.\ntt0279493,IspZWYlmYZY,Undercover Brother reveals that he's gone too deep in the world of assimilation.\ntt0279493,ngLX1uDh-eg,White She Devil.\ntt0279493,FloKMOp4wN8,White She Devil and her henchmen take on Undercover Brother and Sistah Girl.\ntt0279493,l38Qliee6VE,Undercover Brother undergoes intense training in order to go undercover as an assimilated black man.\ntt0279493,DQjDI3NorAY,Undercover Brother is reluctantly let into the secret organization known as 'The B.R.O.T.H.E.R.H.O.O.D.'\ntt0279493,H1IhRMtTUno,\"White She Devil and Lance join the B.R.O.T.H.E.R.H.O.O.D., much to Conspiracy Brother's dismay.\"\ntt0279493,lfUlATBIer8,Undercover Brother arrives at B.R.O.T.H.E.R.H.O.O.D.\ntt0279493,H_pmwvIvi9Q,Undercover Brother gets in over his head while trying to woo White She Devil.\ntt0279493,RMWfAkUhGCM,Undercover Brother and Sistah Girl are chased by White She Devil and her henchmen.\ntt0763831,Nuwu9VTP3Ak,Dr. Sinja encourages Jack to make peace with himself.\ntt0763831,f8dkNziRlHg,Jack uses his remaining words to make peace with the world and himself.\ntt0763831,XPsddyf2EcY,\"Unable to speak, Jack uses toys and action figures to land a major deal.\"\ntt0763831,B_cE7WEW5gM,Caroline tries to get Jack to open up.\ntt0763831,6AJH6b91rF8,Aaron reveals too much when he thinks Jack is mad at him.\ntt0763831,PurV6BzV3fI,Jack infiltrates a new age monastery in order to secure a new client.\ntt0763831,qvvcVzNqXVg,\"While his 'soul tree' is treated with chemicals, Jack has an interesting reaction to the pesticides.\"\ntt0763831,8rX7fkDLEx0,Jack pantomimes his order to a barista.\ntt0763831,B2KSjVAskxM,Jack tries to ignore a phantom sensation during an important introduction.\ntt0763831,4vJ6xB6ctaA,Dr. Sinja realizes what is happening to Jack.\ntt1321509,9dqOdoFtNcM,Aaron and Ryan refuse to be extorted and takes Frank hostage instead.\ntt1321509,OxEcQFG6U4g,Frank reveals that he and Aaron's father were former lovers.\ntt1321509,ByRUwa_QiaE,Aaron and Ryan hide Frank's body in their father's coffin.\ntt1321509,aEG9dwOsAAg,\"While on hallucinogenic drugs, Oscar interrupts Aaron's eulogy and causes his father's corpse to fall out of the coffin.\"\ntt1321509,yXDgPREBssw,\"When Frank breaks out of Edward's coffin, it causes utter chaos at the funeral.\"\ntt1321509,B-S7jkgEC8Y,\"While trying to help Uncle Russell on the toilet, Norman gets covered in poop.\"\ntt1321509,CnrR2upI8Jo,Aaron discovers that the funeral home has put the wrong body in his father's coffin.\ntt1321509,6PAMZYS1Fqk,Norman and Jeff try to hide their hostage from Uncle Russell.\ntt1321509,DHzeRLN8UVc,Oscar learns that he has accidentally been given hallucinogenic drugs and begins to panic.\ntt1321509,rgmKJYrtmkw,Elaine tries to stop a drugged-out Oscar from jumping off the roof.\ntt0168501,aOX72bZr_LA,Lance gets offended when Quentin insinuates that Mia cheated in the past.\ntt0168501,auNkHDpPil4,Quentin teases Shelby and Jordan encourages Harper to stay with Robin.\ntt0168501,llTSaDl6Pcg,Lance tries to keep images of Mia and Harper out of his head during his wedding ceremony.\ntt0168501,CTRZgOL-vA0,Harper proposes to Robin at the wedding and then everyone dances.\ntt0168501,js11RqXLkZg,Harper gives a speech as Lance's best man.\ntt0168501,F0VmzZy-AF4,Harper tells Murch his story about what almost happened with he and Jordan in college.\ntt0168501,txybV-1ao_Y,Lance is enraged when he reads Harper's novel and discovers that Harper slept with his fiancé in college.\ntt0168501,cm1NBLlRxy0,Lance gets a lap dance and Murch gets attached to a stripper named Candy.\ntt0168501,xjAHbBY-UUM,Harper blames Jordan for his problems and she won't stand for it.\ntt0168501,VCJrgPb3y80,\"Harper tries to talk sense into Lance, who's angry about Mia's infidelity.\"\ntt1640484,NQBMjZqgGEI,Pam expresses her anger at her son's fiancee for not meeting her before the wedding.\ntt1640484,geiub8WP_XE,Jason surprises Sabrina before she leaves for China.\ntt1640484,xhj4CAFsPt0,Jason introduces his family to his fiancee Sabrina and her family.\ntt1640484,24adocMDT_U,The rehearsal dinner is interrupted by a musical number performed by Sabrina's Aunt Geneva.\ntt1640484,KVvqRC018VA,Sabrina and Jason finally jump the broom.\ntt1640484,Ypa0nma0aSs,Jason tries to get a little passion in with Sabrina before the wedding.\ntt1640484,s7ougTo-pGg,The Watsons and Taylors come together and dance the Cupid Shuffle after the wedding.\ntt1640484,fBXXvn4s-74,The Watson and Taylor family clash at the rehearsal dinner.\ntt1640484,wgkxKdTVrHo,Blythe and Chef get the kitchen a little too hot.\ntt1640484,qnFWCagTOtw,\"Sabrina finally gets some alone time with Pam, to moderate success.\"\ntt0081562,oyU6En9HN8E,Reality sets in for Harry and Skip as they enter the Arizona penal system.\ntt0081562,ar_o_qS68oA,Harry and Skip enjoy their first lunch in prison.\ntt0081562,-H6l6-_elF0,Harry and Skip and the other prisoners are joined in song by Grossberger.\ntt0081562,Jd3GwwxFDPY,Harry and Skip meet the man with whom they'll be sharing a bunk.\ntt0081562,-FU65KX7aJs,Harry and Skip try their hardest to stay tough while in lockup.\ntt0081562,XvnWjkHgWEw,Harry is targetted for an elective surgical procedure that puts him on edge.\ntt0081562,2vi_VeRSHbM,Harry and Skip are tailed by an unknown vehicle following their escape from prison.\ntt0081562,gDtB0Sr8sbY,Harry and Skip find themselves unfairly targeted for hard labor.\ntt0081562,hM3nn30NxCE,Harry is taught how to be a rodeo clown by Blade.\ntt0081562,V6xx32EGypQ,Harry and Skip both have odd days at work.\ntt0113845,jW2zOdceqr8,John and Charlie barrel toward an impenetrable barricade.\ntt0113845,V3aM1IFedho,John and Charlie are mugged in the middle of an argument.\ntt0113845,wTzfJT3zGz0,John and Charlie try to escape the out of control subway train.\ntt0113845,JzmD5wQpm5c,\"John, Charlie, and the team track down a dangerous arsonist.\"\ntt0113845,o6Jkz5TQv84,John comes to stop Charlie before he can rob the money train.\ntt0113845,r86n2JRUyRc,John and Charlie chase a suspect through the subway.\ntt0113845,l94geYuwNJg,John races to help Charlie.\ntt0113845,kLjET9nE2dQ,John goes to Mr. Brown to settle his brother's debt.\ntt0113845,CaQWWTLOzhY,John and Charlie come to blows over the heist.\ntt0113845,4GRGY20zWkU,John rescues his brother Charlie from a mobster.\ntt0297181,p4ylvDhfiQw,Kelly and Alex are chased through the streets of Budapest.\ntt0297181,HNPRZ2M3h-M,Kelly is interrogated by an enemy agent.\ntt0297181,sJsHcwZsNnI,Alex is on a mission to rescue and secure information from a defecting American pilot.\ntt0297181,EL-Zzx9ZrOw,Kelly and Alex try to stop Gundar and his men from selling a high-tech jet on the black market.\ntt0297181,70tY44WxygM,Kelly guides Alex through a seduction.\ntt0297181,fM3FUot8TCY,Kelly meets a fan while on assignment in Budapest.\ntt0297181,OeknFyEHaMw,Kelly defends his heavyweight championship while Alex is tortured by Rachel.\ntt0297181,574oBJ7SR_8,Kelly and Alex hide out in the sewers after a long pursuit.\ntt0297181,n0QO2xOuqp0,Kelly and Alex are chased by Gundar's men.\ntt0297181,fpwM2-jDwQU,Kelly interrupts Alex in the middle of a covert mission.\ntt1636629,oJITCthevTE,\"Adrian Sinbad and Loa manage to get off the island on a hot air balloon, but how far can it take them?\"\ntt1636629,6DxeFNOzuWo,\"Island native Loa comes across Adrian Sinbad and the wreck victims, and takes them with her.\"\ntt1636629,0PPstocAAAo,\"Adrian Sinbad and Loa must escape their native captors who intend to keep them on the island, dead or alive.\"\ntt1636629,Dhn_1iKEsQE,\"As the world descends into climatic chaos, Adrian Sinbad and Loa manage to save the day by cleaning up the wrecked oil tanker.\"\ntt7108976,i23d4uqAG80,Seo-pil frees Detective Kim Min from his imprisonment.\ntt7108976,sbM9An15WNQ,Detective Kim Min and Seo-pil investigate a morgue.\ntt7108976,O7s-DtIX_8g,Seo-pil isn't as great a combatant as he thinks.\ntt7108976,3dJLDhRGBpE,Detective Kim Min stands in the way of Wol-young's revenge.\ntt7108976,BmuWHveTicc,Detective Kim Min and Wol-young defend themselves against a vampire.\ntt7108976,te4DfoUHm1s,An amnesiac vampire wakes in feudal South Korea.\ntt7108976,pDzvia9Yuk0,\"In a flashback, Jeong leads the queen and her infant son to safety.\"\ntt7108976,ANEr1fSCLFw,\"Detective Kim Min returns from the dead, but he isn't alone.\"\ntt7108976,L9reo1mJVMg,Detective Kim Min and his assistant Seo-pil perform a magic show.\ntt7108976,nogLQrWY-bM,Detective Kim Min defends against Jeong's attack.\ntt1636629,SyKWZOEqhzw,\"After their helicopter crash, Adrian Sinbad washes up on the shore of an island and has to fight off a giant crab.\"\ntt1636629,bPZwO18R-1Q,\"Adrian Sinbad, Loa, and the rest of the shipwreck victims must escape a swarm of bloodthirsty dragons.\"\ntt1636629,IQa9PQO3jhE,\"Adrian Sinbad must defeat the fearsome cyclops after it attacks Sinbad, Gemma Hargrove, and the rest of the crew.\"\ntt1636629,9jfaSZXLxGQ,\"Adrian Sinbad and Loa must steal the magic stones from the depths of the island, but the balrog that lives below has other ideas.\"\ntt1636629,Cl5eAgx8K8Y,\"While attempting to correct the oil spill, Adrian Sinbad and Loa are attacked by a giant squid.\"\ntt6231588,GJE9jRmD3RE,Sinbad and Jax fight Manta and his henchman.\ntt6231588,l753e8ClbPI,Sinbad and Jax escape the Furies on a flying carpet.\ntt6231588,BL-fRfeQTNc,\"Jax and Manta show off the gun made from the Heart of Medusa, and shoot at Sinbad.\"\ntt6231588,MXa-QNQ1zfE,The Furies attack Sinbad's boat.\ntt6231588,Re6AZiB6JQM,Sinbad discovers the Heart of Medusa in a cave.\ntt6231588,fKTTAEY4cuo,Ace tells Sinbad and Jax the story of how the original Sinbad created the Furies.\ntt6231588,gBRwHB9FSas,Jax shoots two of the Furies with the Medusa 2.0.\ntt6231588,dYNP7UULtwM,\"One of the Furies kills Jax, and Sinbad destroys the Heart of Medusa, setting the Furies free of their curse.\"\ntt6823368,gTKqZp_fABE,Mr. Glass reveals that he got it all wrong.\ntt6823368,mNCLMfXv7ek,The Beast turns against Mr. Glass and nearly drowns The Overseer.\ntt6823368,c5JH3hyjFcY,The Overseer fights The Beast.\ntt6823368,noakeL8pCX8,Mr. Glass schemes in secret with The Horde.\ntt6823368,vU1mJ4LF3u0,The Horde bleeds out in Casey's arms.\ntt6823368,i71zp2X4XDw,Dr. Staple pushes The Horde to their edge.\ntt6823368,E9uah5ldjvo,Dr. Staple taunts The Overseer as her soldiers drown him.\ntt6823368,sw52VLDCFhk,Mr. Glass & The Beast get revenge on Pierce.\ntt6823368,aKFriCo_HWE,Mr. Glass enacts his escape plan.\ntt6823368,XLi1XYfldbg,The Overseer fights The Horde to stop his evil plan.\ntt1091863,R4JJihSXMRU,Stan Lee discusses his beginnings in the comic book industry.\ntt1091863,wwHjdOzIloc,\"Stan Lee lives the dream, appearing in major movies based on his comics.\"\ntt1091863,YIfrX-BJbgA,Stan Lee discusses his collaboration with legendary artist Steve Ditko.\ntt1091863,TNPMRbIE9k8,Lee describes his relationship with legendary illustrator and co-creator Jack Kirby.\ntt1091863,1zl35F7uPoo,Stan Lee talks about creating two of the most iconic heroes in comic history.\ntt1091863,QvMf6_foftw,Stan Lee talks about the moment a more personal writing style changed the direction of comics forever.\ntt1091863,4mYsa1t21Mg,Friends of Lee discuss how his personality bled into his creations.\ntt1091863,dbGs2OWRYqM,Stan Lee's dream of making successful Marvel movies becomes a reality.\ntt1091863,faUJYzpcDec,Marvel Comics becomes a marker for Civil Rights and humanism.\ntt1091863,ovmEekx3IcA,Stan Lee takes Marvel to the next step - the television screen.\ntt7745068,plkfDAtzmjE,Lee goes to buy some marijuana off his friend Jeremy.\ntt7745068,ENEIHMJjims,Lee gives an emotional audition.\ntt7745068,o2gmatNTH1Y,Lee runs into Charlotte at a taco truck.\ntt7745068,1Igt8Zl7xwM,Lee listens as Charlotte reads to him one of her favorite poems.\ntt7745068,ThBbbiT_cCU,Lee watches Charlotte do standup.\ntt7745068,viJsUgnT_HY,Lee and Charlotte have a thing for each other.\ntt7745068,iQxa0TuKY-c,Lee accepts a lifetime achievement award with an inspiring speech.\ntt7745068,GwLec89XpYs,Lee and Charlotte head to a gala honoring Lee's acting.\ntt7745068,RF_7uvTh-dI,Lee tries to make amends with his estranged daughter Lucy.\ntt7745068,BN-FwrjSrFA,Lee and Charlotte give into their desire.\ntt2436386,6AE1I5edCfQ,The group's activities have unforeseen consequences and ripple effects.\ntt2436386,gK6JyAanVNE,The group parties at Lollapalooza.\ntt2436386,n3tXVrGw3kY,Quinn uses a time machine to get an A on a class presentation.\ntt2436386,0aX79Yt3Bno,\"The time machine works, despite a minor setback.\"\ntt2436386,mS1u_E53e10,Christina and the group use the Almanac to get revenge on bullies and play the lotto.\ntt2436386,p4Pq9aZVV9Y,The group's plan to rig the Lottery doesn't quite go as expected.\ntt2436386,4RrAmzAYCQY,The group time-travels back to Lollapalooza.\ntt2436386,os1x0te4Waw,David endangers Jessie after accidentally pulling her into a time warp with him.\ntt2436386,x5Gwzy2FY10,David manipulates time to finally make it happen with Jessie.\ntt2436386,1ZVcZnWu57k,David meets his father in the past as he prepares to remove himself from the timeline.\ntt0099582,iG5M3WSF1DY,Nelson leads his friends to Billy's grave and explains how he accidentally killed him.\ntt0099582,kPiMgLB7S7c,\"When the electricity blows, the doctors scramble to bring Rachel back from flatline.\"\ntt0099582,yi2YuSALRzs,Rachel flatlines and David insists they bring her back early.\ntt0099582,yMyXgCLhAXk,Rachel flatlines and David insists they bring her back early.\ntt0099582,iXo8qxLvcSs,Nelson is attacked by Billy while David apologizes to Winnie.\ntt0099582,R_4_btP862g,Nelson is dead for too long and the group can't bring him back.\ntt0099582,lyM65FpQLlM,Nelson gets closure about Billy's death while his friends try to bring him back to life.\ntt0099582,r76peMNNiyw,David has a vivid hallucination of a child bullying him.\ntt0099582,9uXRIrNj_z4,Nelson flatlines alone.\ntt0099582,wpci2WuWy4E,Medical students kill Nelson and bring him back to life for 'the sake of science'.\ntt0033553,ujFOaYo5QME,Dr. Jekyll argues with the notable gentlemen of the town about his scientific work.\ntt0033553,WGRVxwlEoio,Dr. Jekyll attempts to hide his secret from the police.\ntt0033553,4kmeixKc9yk,Dr. Jekyll hallucinates after taking his serum for the first time.\ntt0033553,WmzictYYVj4,Mr. Hyde demands that Ivy bring him champagne.\ntt0033553,QS3UyqLs5KY,Dr. Jekyll tries to protect Beatrix from Mr. Hyde.\ntt0033553,uabEMv5Sr68,Ivy finds a way to repay Dr. Jekyll after he saves her on the street.\ntt0033553,bxEqg39v9Ec,Beatrix comes to check on Dr. Jekyll.\ntt0033553,t5vDcrQIig0,Mr. Hyde visits Ivy at her house.\ntt0033553,YqkDor9GqqE,Mr. Hyde confronts Ivy about her visit to see Dr. Jekyll.\ntt0033553,3K0KQCvu2Xo,Dr. Jekyll comes face to face with Mr. Hyde.\ntt0190865,BDvjjQvM498,The surviving members of the rescue team make a disturbing discovery that gives peace and resolve to Wick.\ntt0190865,3IZVz7ukKyU,Peter and his team make it to their destination but turbulence threatens to kill the entire crew.\ntt0190865,D1YHdHw-doQ,Elliot and Annie argue the ethics of rationing medicine and supplies.\ntt0190865,Q0gx_D--iDw,Peter and Annie run into grave trouble while climbing.\ntt0190865,UepHO767tO8,The rescue team and survivors fight for their lives against the dangers of the mountain as both parties get closer to finding the other.\ntt0190865,gH4dw-S1esk,\"After ignoring warnings from Tom, Elliot gets his team trapped in a crevasse.\"\ntt0190865,TMe71Lvy1lA,Peter and his team finally reach Annie and attempt to extract her from the crevasse.\ntt0190865,oH-kAHKtbTE,Peter and Annie forgive one another for what happened on their last climb.\ntt0190865,Kfzxu_SIzGo,\"After barely surviving a near fall, the survivors and rescue team are rocked by an avalanche.\"\ntt0190865,UvDzmAFiUj8,Peter and Monique reach the final point before they can make their rescue as the survivors begin to run out of time.\ntt7204400,W7_EwytEz4w,The Mason family awake from the mass destruction to find themselves trapped.\ntt7204400,nLlnq5zJKvo,The Mason family is caught by surprise by a high magnitude earthquake and must find a way to make their way to safety.\ntt7204400,P0yhCqbwnsU,Seismologists Noah and Rajesh discuss their heritage in the middle of a giant disaster.\ntt7204400,1Oxtu2-DlI4,Matt and his son are pulled over in an attempted carjacking.\ntt7204400,M8K1rD4PGkI,Johanna faces off against another survivor over an escape vehicle.\ntt7204400,EHOt9vYunt8,The Mason family finally reunite and make there way to safety after the disaster threatens to destroy half the planet.\ntt7204400,UadRg4D-PNI,Johanna and her stepdaughters try to make their way out of the stairwell with other survivors.\ntt7204400,qOeIJ8YVJeg,The Masons try to find a way to communicate with one another while a lightning storm brews around them.\ntt7204400,qybKU4uNtV0,Johanna  and her stepdaughters race against the threat of a major tsunami hitting the city.\ntt0059245,HnhM0M5UzX0,Mary shows the Three Wise Men the newborn Jesus Christ.\ntt3417334,l18i2Kxo8o4,\"The Air Force manages to get a plane close enough to transfer some passengers to safety, but can't escape the clutches of the volcano.\"\ntt3417334,AupnEJf5ZNw,\"The passengers say their last goodbyes, which finally convinces Colonel Ryker to send in military personnel to save the people on the airplane.\"\ntt3417334,GRpcj2aG6MI,The mad Carlos Crieger breaks out of his handcuffs and kills Air Marshall Jim Kirkland.\ntt3417334,FVgkuDNTOa0,\"A passenger plane on the way from Los Angeles to Hawaii flies into a series of volcanic eruptions, and the pilot and co-pilot both die.\"\ntt3417334,dzGkUGKULRI,\"With one engine already down, Rick Pierce must find a way to take some weight off the plane.\"\ntt3417334,wmm6PIPCg9c,\"Rick Pierce and Rita Loss accidentally lose some of the fuel, sparking a trail of fire that leads directly to the plane.\"\ntt3417334,jpeq9SWXrQo,Frank Matthews volunteers for the incredibly dangerous mission of climbing out on the wing of the plane.\ntt3417334,p1k68Ri9DKg,The Air Force comes to rescue the passengers from the doomed plane.\ntt3417334,i7zzhK5XoAI,\"Rick Pierce volunteers to fly the plane into the volcano, which means killing himself but saving the rest.\"\ntt3417334,igmlE2TDEyw,\"The military comes in to rescue the passengers from the plane, but first they have to clear a path by shooting at the ash and debris.\"\ntt0059245,3lQ1fd0hBe0,Jesus commits himself to God while he dies on the cross.\ntt0059245,wyQmO-LFF4M,John the Baptist is honored when Jesus asks him to baptize him when they meet for the first time.\ntt0059245,MaSm7idHMtI,Jesus institutes the Sacrament and comforts his disciples before leaving for Gethsemane.\ntt0059245,DIkKczv9Eo4,Jesus enlists the help of God and raises Lazarus from the dead.\ntt0059245,1LoGtPIr2-k,Jesus asks his disciples who they think he is and Peter gives the best answer.\ntt0059245,UWtFueVeqHc,The lame man walks after Jesus heals him.\ntt0059245,W-rC7PEsItw,Jesus speaks aloud to his Father and says he is ready to die if it is God's will.\ntt0059245,Da02cZG3NDI,Jesus preaches the sermon on the mount.\ntt0059245,4Tb7SrDUXWo,\"When Jesus is resurrected from his tomb, he reminds his people that he is always with them and to love one another.\"\ntt0059245,epupZLvDDts,Jesus intervenes when Mary Magdalene is publicly judged and ridiculed for adultery.\ntt4288674,sgs4FFD0oH4,Giant killer ants invade a desert party.\ntt4288674,R8r9iHY2pCw,\"Lukas learns that in secret military bases, it's never Miller Time.\"\ntt4288674,ZCrTaNYTk_M,Dr. Renard tells Lukas and Brian how to stop the ants.\ntt4288674,X55PmVk-KvM,\"Brian watches a movie of his hero, the Eradicator.\"\ntt4288674,95jCkyuV0VQ,The only thing more urgent than giant ant attacks is making sure your crush likes you.\ntt4288674,FG31-KlqhCI,Brian and Lukas find the means to fight giant ants.\ntt4288674,OunFjTXpbMY,Lukas and the gang discover that giant ants love beer.\ntt4288674,VBpCoOfLlgU,\"Sometimes, Duck and Cover doesn't quite cut it.\"\ntt4288674,kxGdpZ6GCcs,Brian inadvertently leads ants into a deathtrap.\ntt4288674,BL_RaZ6VCgo,Never gloat before you're sure giant alien insects are dead.\ntt8671462,B_JVGEptSOw,\"Hookups are hard, especially in the end times.\"\ntt8671462,-cdk5mhKuWc,Lily watches as some version of herself is murdered by her husband.\ntt8671462,KjbNSIIOEo4,This dork's got serious moves. And delusions.\ntt8671462,5CO6DsmrIDw,Pamela experiences a supernatural vision after reading a mysterious book.\ntt8671462,ywlNZzvlaKE,John has some deadly dreams.\ntt8671462,plu5YA3t2l8,Nothing like getting blocked by an elder god.\ntt7475886,Ec2ek8MmHRA,A group of women held captive in cages rise up against their captors.\ntt7475886,qv_DJYvELTQ,A woman and her family meet a sinister stranger while stranded on the side of a country road.\ntt7475886,GP8HnRCjLGg,A teenager gets revenge on a mime for the murder of her friend.\ntt7475886,6V22uyjiMpw,A teenager falls victim to a killer mime.\ntt7475886,tEs0OuspG4w,\"After escaping captivity, two women get revenge on one of their captives.\"\ntt7475886,NMbSKSzRvF8,Two friends are stalked by a face painted menace.\ntt7475886,4XK1zU7zhkI,A young woman visits her ex-boyfriend and gets her revenge.\ntt7475886,t09QqjBkg0c,Cult members make a ritual sacrifice out of a kidnapped woman.\ntt7475886,sjmh7BViBtg,A young girl investigates ominous sounds in the dark and finds more than she bargained for.\ntt7475886,2-1_64NeG_E,Olivia's sister learns the first rule of babysitting- always check on the children.\ntt0120794,HXmru6NrSAY,\"God visits his final, most terrible plague upon Egypt.\"\ntt0120794,Zw7lsVV14Yo,Rameses makes his final push as Moses leads his people out of Egypt.\ntt0120794,GJleW4TCQM0,Rameses' refusal to free the Israelites leads Moses to unleash plagues upon Egypt.\ntt0120794,TzRrEgkfhG8,Moses parts the Red Sea to escape Rameses.\ntt0120794,NieC8KA0EvI,Miriam and Tzipporah sing after the Israelites are set free.\ntt0120794,psDtqypK3hI,Moses laments after discovering his life may not be what he has always known.\ntt0120794,1-WimijgGEU,Yocheved sends baby Moses in a basket to save him from Pharoah Seti's wrath.\ntt0120794,sDEWZnPJGRU,Moses discovers peace amongst the Midianites.\ntt0120794,cLomnZIvoFs,The court alchemists Huy and Hotep taunt Moses.\ntt0120794,r5zhPLNGAOE,Moses delivers the first plague when Rameses refuses to free the Israelites.\ntt0264734,aG8bSNpEGoE,Joseph implements a plan to reserve enough grain from the annual harvest to sustain the kingdom through a serious drought.\ntt0264734,SRy397r355A,Zuleika attempts to seduce Joseph while the two are alone.\ntt0264734,QWiJ8VQXJzY,Joseph interprets the dreams of the Pharaoh.\ntt0264734,-pq4FpNnvcg,Joseph tests his brothers' morality.\ntt0264734,7wgLb8Ykb24,Joseph realizes a group of Canaanites are in fact the family who sold him into slavery.\ntt0264734,VIA2wUCj36Q,The life of young Joseph as chronicled in song.\ntt0264734,7tXcQ8BBqXs,Joseph is sold into slavery by his brothers.\ntt0264734,vI_kMlvUWDw,Joseph's jealous brothers accost him.\ntt0264734,GuAHdW8FdLs,Joseph interprets the dreams of two prisoners jailed with him.\ntt0264734,E-Ts3DuFLDg,Joseph arrives in Egypt after being sold into slavery by his brothers.\ntt0095497,unWr90pLIvc,Jesus shares his body and blood with his disciples.\ntt0095497,JyTf7wR8vWI,\"Jesus's guardian angel arrives, stops his suffering, and reveals that he his not the Messiah.\"\ntt0095497,iGRj7rfPdQc,Jesus begs God to take him back and let him be the Messiah.\ntt0095497,pXGsio9H1xs,Pontius Pilate reveals to Jesus that he must die because he wants to change the minds of the people.\ntt0095497,lZ_r2Q0FQ1A,\"After being condemned by the Romans, Jesus is beaten and forced to march through town carrying his own crucifix.\"\ntt0095497,poTqVcSgFRE,\"Jesus is shocked to find Paul preaching a sermon based on his death, which never happened.\"\ntt0095497,PW20LbwAmng,\"While searching for God in the desert, Jesus is tempted by Satan with all the power in the world.\"\ntt0095497,LJvCFAHRAFI,Jesus is nailed to the cross and crucified.\ntt0095497,CB5qzQrDnZE,Jesus starts an uprising against the unrighteous.\ntt0095497,TpNPIxWdZgY,Jesus tears out his heart and invites the apostles to follow him in a war against the devil.\ntt0490215,DTqY1j7wgD4,Ferreira pleads with Father Rodrigues to renounce his mission.\ntt0490215,c_ByO08UsWg,Father Rodrigues is given a Buddhist funeral.\ntt0490215,VNI6movTCuQ,Father Ferreira watches as Catholic priests are tortured in feudal Japan.\ntt0490215,EOX8-c-_uVY,Father Rodrigues must choose between his faith and the lives of his congregants.\ntt0490215,ukXfvR7wi0U,Father Rodrigues watches as the faithful of Japan refuse to renounce Christ.\ntt0490215,GyM8LvY5RW8,Catholics in Japan are martyred for their faith.\ntt0490215,t6plGJhbkgM,Father Rodrigues finally comes face to face with the reformed Ferreira.\ntt0490215,ks7pfp1_V-o,Fathers Rodrigues and Ferreira search for Christian contraband.\ntt0490215,gDVYKkvkguQ,The Japanese kill Christians who have already renounced their faith in an effort to make priests recant.\ntt0490215,SEzrTYKabwI,Father Rodrigues hears the confession of a man who turned his back on God and his family.\ntt5582876,QUgviX8jMaY,\"Adrian must fight to save the life os his love, Lucia.\"\ntt5582876,PEg46xyJNPw,\"After capturing Judah Ben Hur, Cassius demands Ben Hur take part in a trial by sword.\"\ntt5582876,MDxkA-Msgdk,\"Despite his brief escape, Ben Hur turns himself back in to the Romans and reveals who he really is.\"\ntt5582876,zquC4ky_d6M,Ben Hur and Adrian take off on a chariot to escape the murderous Romans.\ntt5582876,b4TJqx34ynE,Ben Hur must fight Atticus for his freedom and his life.\ntt5582876,Dq7TcTBsAJI,\"Adrian tries to rescue a damsel from a gang of Roman soldiers, but Ben Hur is forced to step in.\"\ntt5582876,vY9yCPmqbc8,\"Cyprian decides to let Ben Hur go free, and gives Ben Hur his word that no harm should befall him.\"\ntt1411704,oWjtcWh-gyI,E.B. returns to a Carlos -controlled Easter Island.\ntt1411704,X0uMMVqQgeY,\"Carlos transforms into the Easter Bunny, and E.B. tries to stop him from reaching the egg sleigh.\"\ntt1411704,WK0fQueuPoI,\"After saving Easter from Carlos, E.B. and Fred are named co-Easter Bunnies.\"\ntt1411704,XUyFzVAKCm4,Fred and E.B. accidentally become the main attractions at a school play.\ntt1411704,GSkbcI9F5ec,E.B. argues with his father about taking over the job of Easter Bunny and escapes to Hollywood to pursue his passion for drumming.\ntt1411704,uy4F1IeShVA,The Pink Berets attack E.B. and Fred.\ntt1411704,qYZw_tL0j9U,\"E.B. helps Fred train to be the next Easter Bunny, but Carlos also has his sights set on the job.\"\ntt1411704,sneQ02FCals,E.B. auditions for David Hasselhoff's talent show.\ntt1411704,cbEbCrrgWiA,Fred tries to hide E.B. from his sister Sam.\ntt1411704,XnfiKz-Zk7Y,Fred tries to release E.B. into the wild.\ntt0101329,CvLrYbRzjAE,\"Fievel, Tiger, and Wylie Burp save the mice from Cat R. Waul.\"\ntt0101329,cglsMVVevx8,Wylie Burp and Fievel train Tiger to act like a dog.\ntt0101329,TC41JxKq_xQ,Tiger tries his best to join Fievel's family on the train.\ntt0101329,q5eGg_CgBPk,Tanya performs to a saloon full of cats.\ntt0101329,S76Oq-NDyvw,The mice sing about the virtues of the West.\ntt0101329,JWrDT-JGDug,Fievel attempts to fight a cat to protect his family.\ntt0101329,FLPGiFhKS28,A cowboy mouse is a little less than he appears.\ntt0101329,DRtbf7iG8Nw,Cat R. Waul is enraptured with Tanya's song.\ntt0101329,Wq8gxNsz9ZQ,Fievel accidentally ends up in Tiger's mouth.\ntt0101329,c9YJ-KJZKyY,Fievel discovers that Cat R. Waul scammed all the mice.\ntt5112578,F7FEV8M0ZZQ,Zach calls Charlie to warn him that Josh has gone off the deep end.\ntt5112578,zsiYUAF5Xtc,Zach and Allison's long awaited kiss.\ntt5112578,Tuceg816_j4,Zach helps Josh bury Daryl's corpse and get rid of the evidence.\ntt5112578,TBLYqmHXPk8,Zach has a nightmare where Daryl's corpse appears to suffocate him.\ntt5112578,xlTl5F96ZVo,Allison explains her feelings to an anxious Zach.\ntt5112578,fxff52VbAa4,Josh accidentally has a fatal reaction to Daryl's bullying.\ntt5112578,aSQrrou9CbU,Zach rushes to rescue Allison from Josh.\ntt5112578,WeMJebErzLY,Zach has a nightmare involving dreams of Allison and Daryl's murder.\ntt5112578,gs6FcpgTCqE,Zach and Josh have a run-in with a couple of neighborhood bullies.\ntt0970179,X6zbmAt0YwI,\"While the magic of storytelling ends in one medium, it begins in another.\"\ntt0970179,FuYjhxmpoOQ,Prof. Tabard tells the story of the first and only time he met Méliès.\ntt0970179,E-fSwxZNG-0,Hugo and Isabelle find an old lockbox containing concept art.\ntt0970179,IqsvjhHv5wo,Hugo finds himself in a film of his own as he dreams of the train station.\ntt0970179,UHaEsAcQQ6k,The story of Georges Méliès and how he became a leading pioneer in cinema.\ntt0970179,puyN3edOOUY,Hugo rushes up to the top of the clocktower in order to escape the Inspector.\ntt0970179,c-ej3IOxBno,Georges welcomes to audience to a colorized screening of Méliès' finest work.\ntt0970179,XqqckmSFUwo,Prof. Tabard shows Hugo and Isabelle the last surviving film of Méliès.\ntt0970179,vn-PJRh_nFQ,Hugo and Isabelle read a book about the first years of cinema.\ntt0970179,TSnlLU5k9lU,Hugo and Isabelle watch as the automaton performs its purpose.\ntt0085248,WCB6zM_9DQU,\"Alec meets Tabari, who asserts herself as Black's new rider.\"\ntt0085248,XlOaSZy_S50,Abu Ben Ishak appeals to Alec to ride Black on his behalf in the The Great Race.\ntt0085248,X2YJECANG6A,\"Alec and The Black have a slow start, but manage to catch up to the pack.\"\ntt0085248,rcIfzdLjjxU,Alec volunteers to be a guest of Raj and Meslar in order to find The Black.\ntt0085248,NBxg8a4TAng,\"Tabari brings The Black to Alec, who releases him to be with the other horses.\"\ntt0085248,IXl4S2_5sX4,\"Kurr tries to sabotage Alec and Raj while they are racing, but their horses manage to outrun his truck.\"\ntt0085248,1eP7huR6T3U,Alec agrees to help Tabari ride the Black.\ntt0085248,qDjmN1TyJAU,\"Alec meets Raj, who tries to deter him from finding his horse.\"\ntt0085248,hSBoEivF-hk,\"Alec calls for the Black, who manages to save the day.\"\ntt0085248,qrIt5BPvCv8,\"Alec gets picked up by a truck where he meets Raj, who speaks English and helps him find out who took his horse.\"\ntt0085248,dJsuwhIpSDQ,Alec and The Black win The Great Race.\ntt0085248,1gj7X8C31Tg,Ishak steals The Black from Alec's family's farm.\ntt0093999,6JIY7mRvsRE,\"The glass coffin falls off the wagon, awakening Snow White, and the Prince asks her to be his queen.\"\ntt0093999,Sf47YRUStx8,The Evil Queen disguises herself in order to give Snow White a poisoned comb.\ntt0093999,CRu7V9v8Nnk,The King and Queen sing and dream of a day when they have a child.\ntt0093999,b0p7_jQ8HiE,\"Snow White is pleased to find shelter, but none of the beds seem to fit her just right.\"\ntt0093999,-mexzYsMSro,\"With her dying breath, the Queen names her newborn baby and encourages the King to remarry.\"\ntt0093999,t9XjAhGr8us,\"As she begins to outgrow her home with the seven dwarves, Snow White dreams of a castle and a prince.\"\ntt0093999,riSEerXD6nE,\"The Evil Queen, in yet another disguise, convinces Snow White to take a bite of a poisoned apple.\"\ntt0093999,2-L4tBlUJos,\"A prince discovers a beautiful girl asleep in the forest, along with the seven dwarves who put her there.\"\ntt0093999,Zauzaj2bpvM,\"Snow White sings and dances with the King, until the Evil Queen tells her to go to bed.\"\ntt0093999,JJwp_lEoOuI,The Evil Queen reacts poorly to the magic mirror's claim that her step-daughter is the fairest of them all and plots to do away with her.\ntt0093999,gnbjy2tWfd4,The seven dwarfs sing a song to help Snow White remember their similar-sounding names.\ntt0093999,8xorDb45ajE,Snow White watches through the keyhole as the Evil Queen questions her magic mirror.\ntt7616798,2T51K4xsBjg,\"Chuck, the dogcatcher, comes to take Bella away for good.\"\ntt7616798,hcWY1CYRCsw,Bella tries to cross a busy highway in order to get home.\ntt7616798,r3_IvtMPIi4,\"Bella chases a squirrel only to meet Chuck, the dogcatcher.\"\ntt7616798,mZYTLYXT-CQ,Bella is taken in by a homeless man.\ntt7616798,87IqS4kQqgE,\"Bella befriends Big Kitten, a baby mountain lion.\"\ntt7616798,YfKjUgN_RcY,Bella finds another dog and inadvertently causes disaster.\ntt7616798,VqZAfqVCEnk,Bella and Big Kitten fight in the snow.\ntt7616798,M47Aq3yj_NQ,Bella finally finds Lucas.\ntt7616798,5XQqslDEoeI,\"Coyotes stalk, chase, and corner Bella.\"\ntt7616798,Te32eYR3jo4,Bella defends Big Kitten from coyotes.\ntt3606888,dfoGRpHc4qA,James takes Bob out busking in the streets of London.\ntt3606888,Q1CJv_8XbmU,James visits his estranged family for New Year's and finds himself far from welcomed.\ntt3606888,PBMH9WdsHDc,James discovers the hell of medicating cats.\ntt3606888,GpMfzrGJvZY,James and Bob find themselves desperate for work after being unjustly let go from their job.\ntt3606888,N0V-2VgCwxk,James and his father finally reconcile after nearly a decade of alienation.\ntt3606888,Ln55e0EyX6E,Betty finds out that James is an addict.\ntt3606888,GfpVMjrhYQg,Bob refuses to let James leave him alone while at work.\ntt3606888,ZCTCHQWhYCA,\"James meets Belle, a neighbor and veterinarian, who introduces him to his own cat- Bob.\"\ntt3606888,GHKfMt_4V7U,James goes through full detox from methodone.\ntt3606888,Dyo5g-ozH2c,James searches for an intruder and finds a sweet little surprise.\ntt0103786,ES496lmmGcM,The Newtons confront Dr. Varnick about Beethoven's alleged attack.\ntt0103786,AyYlJ6YQp3I,The Newton family struggles to come up with a name for their new puppy.\ntt0103786,7bFIUJ_voCs,The stolen dogs promptly chase down their captors.\ntt0103786,RWYM4Npp9rI,Beethoven fights Herman Varnick and his cronies.\ntt0103786,YG-plVmM7O4,Veterinarian Herman Varnick gets Beethoven to attack him.\ntt0103786,zDQHwzF1n4U,\"Much to George's chagrin, Beethoven keeps getting bigger and messier.\"\ntt0103786,JcAdeY9KlpE,Beethoven takes Brad and Brie on an unexpected ride.\ntt0103786,85A2rWA5O3o,A St. Bernard puppy sneaks into the Newton family home and immediately becomes beloved by the family.\ntt0103786,gCE5175IkoY,\"While the babysitter is distracted, Emily falls into the pool.\"\ntt0103786,WsgkiKu7AO8,George gets an unwelcome surprise in bed.\ntt7008872,PWz21cujw28,Jared's parents receive a phone call about him.\ntt7008872,vlK8CMKzWUY,\"Brandon tries to train the teens of Love In Action to be more \"\"manly.\"\"\"\ntt7008872,Y2ZU8ZjyzoA,Gary tells Jared how he deals with life in the gay conversion therapy camp.\ntt7008872,_X6dHrTceEE,Cameron is brutally tortured by his family for being gay.\ntt7008872,8VZctic_uTI,Jared confronts his father.\ntt7008872,PLOSA5L0dxE,Victor is suspicious of Jared's writing.\ntt7008872,Mkkd7taPqEY,Jared goes to an appointment with Dr. Muldoon for a blood test.\ntt7008872,MOLAFbjjOl0,\"Victor and the \"\"therapists\"\" physically prevent Jared from leaving.\"\ntt7008872,SbP_EGRp9Kw,Jared tells his parents that he is gay.\ntt7008872,g511NYTRiOE,Victor Sykes berates Jared about his father.\ntt2018111,OVCIGGHelu0,Edwin talks to his brother Gus on the eve of his heinous crime.\ntt2018111,aUSko3Om3sI,Flake fights Edwin after he questions his ability to beat up the school bully.\ntt2018111,Q7qNk9dKVpE,\"Edwin, and his parents meet with Edwin's teacher and principal to discuss his anti-social behavior.\"\ntt2018111,fr_ciJPUO1k,Edwin breaks down and his mother can't console him.\ntt2018111,neH8cVDLuac,Flake and Edwin get in a fight with a couple of kids from school.\ntt2018111,ymoeXOQLtGY,Tim tries to talk to Edwin about his social struggles.\ntt2018111,vppCnOOwS_4,\"Flake shows Edwin his father's guns, and Flake seriously discusses committing a dark deed.\"\ntt2018111,szqlpf28SRM,Edwin gets his ball stolen by a kid and his angry father.\ntt2018111,2WF0XgWQles,Flake and Edwin work out a plan to shoot their school.\ntt1645170,cnM9pdjp5o4,Aladeen settles into life at the vegan co-op.\ntt1645170,7C-aB09i30E,Aladeen rules his country with an iron fist.\ntt1645170,vV30irsal-w,Aladeen is disappointed in the latest design of his country's first nuclear missile.\ntt1645170,BT_QpciXdcI,Aladeen accidentally winds up in a restaurant consisting only of people he'd put to death.\ntt1645170,GC8KstVPxPM,Aladeen tries delivering a baby in a grocery store and finds love inside an unexpected place.\ntt1645170,sWqTiz8caoM,Aladeen tries to squeeze extra cuddle time with Megan Fox.\ntt1645170,0GEynXlmNYA,Aladeen watches helplessly as his imposter threatens to dismantle his precious dictatorship.\ntt1645170,iN0ZnG7yo6o,Zoey instructs Aladeen in self-love.\ntt1645170,hqslb1FVoQQ,Aladeen's plot to zipline into a hotel doesn't go as expected.\ntt1645170,yWeMWD-Yagg,Aladeen and Nadal get into trouble on a helicopter.\ntt3553442,RYP_NSi9g3Y,Kim organizes a rescue mission for Iain.\ntt3553442,-dWENMR2aag,Kim visits a Chinese brothel with her friends.\ntt3553442,WPggG_9I20E,Iain makes his move on Kim.\ntt3553442,M4fuweiQQCA,Tanya runs into insurgents while en route to Kabul.\ntt3553442,801rBxBY-5w,\"Kim enters the foray during a firefight, much to the dismay of her escorts.\"\ntt3553442,8kzZwPsHkfo,Tanya gets real with Kim about dating in Kabul.\ntt3553442,rFbe4I4SXGg,Kim tries to figure out how she feels about Iain in the morning after.\ntt3553442,y6uK9wxhl_w,Kim visits a Marine whose injuries may have come about from her report.\ntt3553442,sT7Xef0oYLU,Kim confronts Tanya about her journalistic integrity.\ntt3553442,SiY9kPYOZuM,Iain and Kim release tension after a rough night.\ntt4225696,IXep9SfBhrg,Mary Beth and Curtis find love in a stinky place.\ntt4225696,cslI2draO_E,Sally and Jerry get close while the Wereskunk gets closer.\ntt4225696,-ZRSgs6PHaY,Curtis accidentally becomes a coitus interruptus for his parents' kinky foreplay.\ntt4225696,HNV5ksTBzLk,Curtis can't contain himself around Dr. Nancy.\ntt4225696,gWHvF157sFI,Nina warns Curtis about excitement then proceeds to excite him.\ntt4225696,rglfoXHFty8,It's the battle of the century!\ntt4225696,ULu38sbUDdA,The Wereskunk viciously mauls some women in their underwear.\ntt4225696,qwblOHgiG5E,Mary Beth finds herself using a pom pom handle.\ntt4225696,_-9wCERdcog,Mary Beth shares an intimate moment with Curtis until the curse fouls things.\ntt4225696,JIMykDzqRbY,Curtis sings about his ideal woman.\ntt4217392,7F1OGZeeva4,\"Jack, Jones, and the others find themselves being chased by Randall's men at an Indian market.\"\ntt4217392,NiQGOyewakw,Jack gives chase after Randall steals the Eye of Shiva but finds a surprise in the back of his car.\ntt4217392,Hh823sEeCL8,Jack tells the story of Wang Xuance and the history of Chinese/Indian relations.\ntt4217392,T6GiDpoGg0k,Jack and Ashmita try to protect the Eye of Shiva from Randall.\ntt4217392,M1J7yqXNItw,Jack and Ashmita discovers a secret cave but fall victim to a trap.\ntt4217392,V-uaIme1eqw,Jack and his students get a lesson in yoga from Ashmita.\ntt4217392,W2UAnJuDL0A,Xiaoguang rescues Jones and Kyra from a hyena den.\ntt4217392,Vk2MgC2loOo,Ashmita reveals the treasure Randall sought was actually about peace.\ntt4217392,TF2BDWsAg2U,Jack and his team get cornered by Randall while on an archaeological dig in an ice cavern.\ntt4217392,9xp2WW4VPnI,\"Jack, Ashmita, and the others celebrate their victory over Randall wth a dance number.\"\ntt3228302,jL_AtO4yMio,Linda confronts Elliot after getting information about Elliot having a woman over from her neighbor.\ntt3228302,Co6hnyHm9FU,Elliot gets some sage advise from an actual Shaolin monk.\ntt3228302,jatrkHMHR5s,Elliot takes advantage of a well-endowed cast member.\ntt3228302,zg0bUxwdano,\"Elliot's friend and main cast member, Blake, explains how life led him to find Elliot.\"\ntt3228302,VBOg6u6zNUI,Elliot visits China on a class trip and disturbs his classmates over his appropriation of Chinese culture.\ntt3228302,tCDK-8hzqYI,Linda reveals that Elliot lied about everything he told the filmmakers about his life.\ntt3228302,mxIe3BjQYq4,Blood Fight's composer shows his process for making the movie soundtrack.\ntt3228302,ByIEbq6tv6g,Students on the trip to China with Elliot explain his creepy tendencies with Chinese women.\ntt3228302,Nggy-DIaf-0,The film reveals that Elliot has secretly been filming x-rated films behind his fianceé's back.\ntt3228302,YLhHH7GXdkw,Elliot discusses his past few films and sincere approach to making action films.\ntt2839312,YRDc9SZWuE4,Ricky fights in his first round bout.\ntt2839312,rCRl3aaJEdI,\"After Carlos beats up Chuy, Morales orders Ruiz to shoot them both, but Ruiz kills the ruthless gangster instead.\"\ntt2839312,Zc61Xb1A3R8,\"At the gangster Morales' urging, Chuy shoots Ricky, so Carlos takes his anger out on him.\"\ntt2839312,cqJitdI6d24,\"Chuy takes part in his first tournament fight, and absolutely destroys his opponent.\"\ntt2839312,cH8ebYzr5f4,\"In the first round of the underground fighting tournament, Carlos knocks out his opponent.\"\ntt2839312,6_BnBOUwAPo,\"Carlos fights in a bout at the underground fighting tournament, and gets criticized for refusing to intentionally injure his opponent.\"\ntt2839312,x_3EEWK-YQc,\"Ricky is forced to take on Chuy, and Chuy gratuitously and unfairly breaks Ricky's arm.\"\ntt4537896,bDW3OVitFE8,The FBI questions Rich and Rick about some local gangsters.\ntt4537896,5gOfKFlEJvo,\"Rick gets shot by a rival drug dealer, and Rich blames the FBI for the shooting.\"\ntt4537896,-JhNO_E3aEE,Rick and Rich learn that Rick has a child.\ntt4537896,-FQOaUEE69I,The FBI and police come to Rick with an offer to go undercover to investigate the world of crime in Detroit.\ntt4537896,xqeAW5qAHNQ,Rick is found guilty of dealing drugs and is sentenced to life in prison.\ntt4537896,ZD9DyYVR3BI,\"Rick and his sister Dawn get arrested, but bailed out by the FBI.\"\ntt4537896,Q9Vl1VGj0LE,Rick and Rick argue about whether they should start dealing drugs.\ntt4537896,L3gtPb6y2xg,\"Despite being an undercover informant, Rick gets arrested for dealing drugs.\"\ntt4537896,a-CS6CjnEw8,Rich visits Rick in prison.\ntt4537896,kgwjR-pQ29o,Rich and Rick search for Dawn.\ntt2165735,xc_90HgCenY,A shootout ensues when Timmy runs into the mute brothers.\ntt2165735,RS01myY24NA,Captain Zhang goes undercover and breaks up a drug smuggling ring.\ntt2165735,YUF1PIe1RVY,Captain Zhang leads a raid on Haha's suppliers before arresting Haha and his crew.\ntt2165735,nsDjpgWu8F0,\"With Captain Zhang, the mute brothers, and the cops dying on the ground, Timmy returns to finish the job and escape the police.\"\ntt2165735,s37owQJdelU,Timmy tells his buyers that he's working with the cops and ignites a shootout between the two sides of the law.\ntt2165735,wuRzu_xHPa4,\"The drug dealers and police escalate their bloody standoff, but Timmy manages to escape.\"\ntt2165735,F2GgBAXj69U,\"Captain Zhang begins to overdose on the drugs, shifting Timmy and Yang Xiaobei into action to save him.\"\ntt2165735,PFG8nJ4gwvo,\"Now pretending to be Haha, polic Captain Zhang meets with drug dealer Chang who forces him to do cocaine in order to test his commitment.\"\ntt2165735,GdMQOwEnATM,\"Captain Zhang leads a mission to capture the mute brothers, but the brothers shoot their way out and escape through a hidden tunnel.\"\ntt2165735,GgASWe5c8kE,\"Timmy introduces Captain Zhang pretending to be the mysterious \"\"Uncle Bill\"\" to drug dealer Haha.\"\ntt5177088,QB9AY9Em4To,Ed uses satellite imaging to save Lisbeth.\ntt1255919,1J3WNRR4O60,Young Sherlock Holmes has an awakening that sparks his brilliance.\ntt1255919,a_DkEkfAO4s,Holmes and Watson arrive to Moriarty's trial.\ntt1255919,0WRtWiz_Xvg,Holmes and Watson find romance in Dr. Grace Hart and her ward.\ntt1255919,Ihkrc6Srv0Y,Holmes and Watson have a bit of problem while taking a selfie with the Queen.\ntt1255919,ze8D_5hdmTE,Watson finds the strength to stop Mrs. Hudson's plot to kill the Queen.\ntt1255919,q928Wa_h_gg,Holmes and Watson met their biggest foe yet...a mosquito.\ntt1255919,iv_Q51lofKM,Holmes slips poison into Watson's tea.\ntt1255919,8D7EY0zKevM,Holmes and Watson have a little too much fun going undercover.\ntt1255919,wVFNjHAnpcI,Watson telegrams a booty call with the help of Holmes.\ntt1255919,QjZUS2455z8,Holmes tries to fight his weak stomach while visiting a morgue.\ntt5177088,ow3Pf0LSXwc,Lisbeth frees Ed from airport security.\ntt5177088,uckdiNJ10LE,Lisbeth races to defend Balder and his son.\ntt5177088,ATid397QdsY,Lisbeth deploys her hacking skills to stop an assassin in his tracks.\ntt5177088,g_fIDwoORl4,Lisbeth confronts her sister Camilla.\ntt5177088,sOHoeZYeAeM,Lisbeth metes out vengeance against an abuser of women.\ntt5177088,Yr1quUpD0Y0,Lisbeth walks right into a trap set by her sister.\ntt5177088,k8Vn9zLollY,Lisbeth discovers terrorists in her apartment.\ntt5177088,6QfunXjWCpc,Lisbeth eludes the police any way she can.\ntt5177088,CMfYaFpa3nY,\"Camilla tortures her sister, Lisbeth.\"\ntt1758810,MBgPSe_p1fk,Det. Bratt attempts to trap Arve but is cornered by the real killer.\ntt1758810,C_fhEQGp9Hw,\"Det. Harry Hole investigates the background of Det. Rafto, a detective driven insane by his inability to catch the Snowman killer.\"\ntt1758810,1TX6svl0Qjc,Det. Harry Hole investigates the home of a Snowman victim while Det. Bratt makes a gruesome discovery.\ntt1758810,cGDwEP-RWHo,\"The Snowman, Mathias, interrogates Det. Harry Hole while threatening to kill his ex-girlfriend, Rakel.\"\ntt1758810,QxrBZStJOGk,Det. Harry Hole and Det. Bratt interrogate Vetlesen over his interactions with a victim.\ntt1758810,K6Kkwi0nfHg,Det. Harry Hole and Det. Bratt are called back to the house they just visited.\ntt1758810,OiJ8mt6Nn5s,Det. Harry Hole tries to use Mathias's past to save himself.\ntt1758810,LJgqSSZpdns,Mathias' entire life falls under the ice.\ntt1758810,yV5w71aImSo,Rakel sleeps with her ex-boyfriend Det. Harry Hole while Det. Bratt tries to trap suspected murderer Arve.\ntt1758810,4ZCtygwf67Y,Det. Harry Hole and his partner Det. Bratt search for Sylvia Ottersen after an anonymous call about her disappearance.\ntt1912996,Sj3sHAe1bAY,Cheryl can't tell the difference between her toys.\ntt1912996,iTH2RpdXTBA,\"Sue, Lexi, and Cheryl picture their dream men.\"\ntt1912996,1a3iljVEif4,Lexi is determined to get serviced.\ntt1912996,b_kHujzG_w0,Sue finds the ride she's been looking for after a day of self-discovery.\ntt1912996,KMcBrs0aWbo,Cheryl really enjoys cleaning up.\ntt1912996,MEYupVDPDRE,Cheryl tries awkwardly to sleep with Eric after catching her boyfriend cheating on her.\ntt1912996,qrd5QtOa6O4,Sue has a less than expected reaction to her confession.\ntt1912996,8zdNf9EtW-A,Lexi and Sue tease Cheryl over her failed attempt at romance.\ntt1912996,JYymQ87_t8o,Lexi tries to convince Sue to 'find herself'.\ntt4504438,5LdmmsMZU-I,Bayu wakes up to find Dharma holding his daughter hostage.\ntt4504438,g1bhGNv0Ei4,Nomura gets revenge on a pimp who had beaten him down the day before.\ntt4504438,4OyCzhF1A8s,Nomura expresses his disappointment in Hisae for not being a killer like him.\ntt4504438,7d4Sd1W25xs,Nomura has a bit of fun with his latest murder victim.\ntt4504438,-jYZCqfUfVU,Bayu takes matters into his own hands and eliminates a corrupt lawyer.\ntt4504438,MVxXoBHtBfs,Nomura expresses his kinship with Bayu by forcing him to kill Dharma.\ntt4504438,yRpnEq9A3vo,Bayu fights his way out of a hotel after killing a prominent politician's son.\ntt4504438,cSjzA3Wl6hY,Bayu finds himself in a precarious position after falling asleep in a taxi on his way home.\ntt4504438,TllGibabkYg,Nomura tries to show Bayu his true nature.\ntt4504438,NTne-1oUAZU,Nomura chases Hisae and another victim as they try to escape.\ntt7074886,Lv41GcKWfJg,Gary accosts a reporter after he asks a personal question.\ntt7074886,bTJAIONGv0Y,\"Gary falls apart when AJ, questions his morality.\"\ntt7074886,sdkgpg4Plxo,Lee tells Gary exactly how she feels about his scandal.\ntt7074886,h5OjSHDUn8c,Gary confronts an editor of the Miami Herald during a press conference.\ntt7074886,r3BS4jKjRkc,\"As the scandal grows, Gary and Lee discuss their private life.\"\ntt7074886,cE2bc0vU9pg,Gary gives an ominous warning about politics and news media during his resignation speech.\ntt7074886,ZCdhsYpdRck,\"Bill questions Senator Hart's mistress, Donna.\"\ntt7074886,E1u3lo2EsMg,Gary confronts a group of stalker Miami Herald Reporters.\ntt7074886,7AnDGdVit4w,Gary decides enough is enough.\ntt7074886,0qkVyahL10U,Gary and his campaign manager argue about his affair.\ntt1477834,x24Olya2NLk,Aquaman and King Orm face off in a fight to the death in front of all of Atlantis.\ntt1477834,5Fa3enGmEfA,Vulko's meeting with Aquaman and Mera is violently interrupted by Atlantean soldiers.\ntt1477834,44MohOiWwnA,Black Manta launches an offensive against Aquaman and Mera.\ntt1477834,0y5KiKKCD7A,Aquaman faces off against the monster Karathen for Atlan's Trident.\ntt1477834,nF74obZFKp8,Mera rescues Aquaman from being crushed by King Orm.\ntt1477834,00QMS3Ldb20,Aquaman takes on his brother King Orm in a duel for the throne.\ntt1477834,8Q0KYSXhKMU,Aquaman and Mera fight off The Trench.\ntt1477834,ob2QomOgStQ,Mera and Aquaman fend off Black Manta through a coastal town in Sicily.\ntt1477834,Zeg6dl4L60M,\"Aquaman meets, and quickly overpowers, Black Manta.\"\ntt1477834,vEWPq-4sa3w,King Orm launches his offensive against the kingdoms of the sea.\ntt1596363,xAlCbE-yCTw,Dr. Michael Burry stands by his crazy bet against the housing market.\ntt1596363,1RwwTgTVnJs,Mark Baum learns just how screwed up the banking system is.\ntt1596363,1Rhs3PVAP4o,Margot Robbie breaks down Wall Street's jargon.\ntt1596363,Mfu_iFS-UY8,Mark Baum and his team investigate the housing market in Florida.\ntt1596363,OpCXQJyiXQ8,Dr. Michael Burry makes an unprecedented short against the housing market.\ntt1596363,tjRgzcM2HoU,Jared Vennett shows how easily everything will fall.\ntt1596363,WgxNguNEMpE,Mark Baum lords over a Bear Stearns banker as their firm fails.\ntt1596363,0X0-NpZpx6U,Mark Baum learns about synthetic CDOs from Mr. Chao.\ntt1596363,Pxr_FzpPM2Q,Pop star Selena Gomez and Behavioral Economics Pioneer Dr. Richard H. Thaler teach you about Synthetic CDOs.\ntt1596363,HudtZNmmVwo,Ben Ricker and Dr. Michael Burry cash out and making unfathomable amounts of money.\ntt4925292,0quxzV2i_gQ,Lady Bird meets Kyle at a high school party and finds a connection.\ntt4925292,aG3Oc5TNd-Y,Lady Bird and Julie walk in on Lady Bird's boyfriend in a compromising position.\ntt4925292,KtwPWWCJHAE,\"After realizing her ditching her boyfriend, Lady Bird goes to pick up her best friend Julie and ask her to prom.\"\ntt4925292,836TMubeCfo,Marion finds it difficult to say goodbye to Lady Bird.\ntt4925292,DL-fT3OymQI,Lady Bird finally makes it to New York but finds it difficult to adjust to college life.\ntt4925292,4HgHU5fVqbI,Lady Bird decides to sleep with Kyle but is quickly disappointed with the experience.\ntt4925292,3Avu3KdHGdo,\"Lady Bird and Julie have a fight after Lady Bird abandons Julie for a new, popular group of friends.\"\ntt4925292,tF3eceBqcik,\"Julie goes to play rehearsal while Lady Bird skips in order to spend time with her new, popular friend Jenna.\"\ntt4925292,mpDGnFwbw0U,Lady Bird and Marion argue on the trip home.\ntt4925292,koZie6TLz3s,Lady Bird has an unpleasant interaction with the key speaker of an anti-abortion assembly.\ntt1663143,R_moIp38Fk8,Fuzzy saves Albert.\ntt1663143,pVB70-zPv5E,Albert hits on Galaxy Scout at a dance party.\ntt1663143,-ON8ZTCiuYo,April takes matters into Peng's hand.\ntt1663143,GOwehDo9xYQ,The group's Volvo gets clucked hard.\ntt1663143,jo-aQkgNMKQ,April's aversion to hair removal has a dramatic effect on the family cat.\ntt1663143,myZDn8fFRLY,Albert finally reveals his master plan.\ntt1663143,qLCy66eZrQs,Albert prefers tricks over treats.\ntt1663143,-1eKufUP5XQ,Roosevelt rushes to confess his love to Wren but runs into her mother instead.\ntt1663143,FPYjy-ZWB-c,Jorgen gets a hot foot.\ntt1663143,C5lMZZxrewE,\"Fuzzy's toilet paper prank goes very, very badly.\"\ntt1817771,rNxqb6KMtkg,Petra gets her heart broken by Milan after he has turned her into a vampire.\ntt1817771,KLDQLqzbrPE,Dag's life-altering night turns into a life-destroying one.\ntt1817771,GlP6emuR3z8,Dag fights to save Petra from Milan and discovers a new part of himself in the process.\ntt1817771,NgAjrtEmWxI,Dag and his friends get transported to the shopping mall that the aliens have taken.\ntt1817771,de1vEYiEMro,Dag and Lorelei try to escape the town after aliens attack.\ntt1817771,7AajEaNH7g4,Ned is bullied by his father Chaz Sr. while eating dinner.\ntt1817771,MUeKujlb6gc,Dag consoles Petra after she's eaten his crush.\ntt1817771,PI8G4wCa8m4,Dag and his friends try to figure out how to escape the alien invasion.\ntt5734576,gs0WQmW1icQ,Megan finds someone trying to steal the body of Hannah Grace.\ntt5734576,__bdFiweOJY,Grainger suffocates his possessed daughter during a failed exorcism.\ntt5734576,C3TAMx8Gqro,Former cop Megan recalls the shooting death of her partner.\ntt5734576,zGXxYW_Zisk,Megan spots a shadowy figure on security footage.\ntt5734576,B5uw3qZ04NY,Grainger tells Megan that Hannah Grace is his daughter and that she was possessed by the devil.\ntt5734576,VDCoR_PxceY,Megan manages to escape from the locked cadaver door.\ntt5734576,NInjsGq2yCA,A priest tries to exorcise the demon from Hannah Grace.\ntt5734576,f6Dan7z0p4c,Dave gets killed by the possessed body of Hannah Grace.\ntt5173032,Yvoy77W0Ofg,Buster makes dinner for a family he has taken hostage in their own home.\ntt5173032,PyK__VjhdEE,\"Squatting in a vacation home, Buster lies to a local sheriff, but the police soon learn the truth.\"\ntt5173032,0g32SegeaTw,\"Buster tells a phone sex worker about the coming \"\"Inversion\"\".\"\ntt5173032,6WKFs4PhRkA,Jonah goes into his hotel room after a long day of work and finds his wife and daughter murdered in the bed.\ntt5173032,oH5Dww7Umog,\"Down on his luck, The Last Free Man comes back to the hotel.\"\ntt5173032,ysRnmU7UZLA,\"Jonah meets a mysterious and eccentric man at the hotel one night who has calls himself \"\"The Last Free Man\"\".\"\ntt5173032,ki5XFDm1ufM,Jonah and The Last Free Man work out a plan to steal jewelry from the guests of the hotel.\ntt5173032,cvaUo282fEg,Jonah yells at his wife Marty while discussing their future.\ntt5173032,2qqJr7uFeTA,Jonah puts and end to his petty theft operation and tells off The Last Free Man.\ntt5173032,eXHKngWBha0,\"With Buster surrounded by the police, he tries to shoot his way out, and ends up in another plane of existence.\"\ntt1911533,da1prguylik,Anneliese attacks and kills the doctor sent to help her.\ntt1911533,eAVgMr_VCH4,The priests and her family perform a final exorcism on Anneliese.\ntt1911533,oSIR6UvH1G8,Father Renz and Pastor Ernest Alt perform an exorcism on Anneliese.\ntt1911533,xcYhjlyrjfc,\"Anneliese begins convulsing, gets violent, and starts speaking in foreign languages that she never spoke before.\"\ntt1911533,FtoH7NJV5Go,Anneliese spits vitriolic emotional abuse at the innocent Sandy.\ntt1911533,vwrqj6aqJAw,\"Dr. Kenneth Landers announces how he wants to put an end to this case, but Anneliese puts an end to him.\"\ntt1911533,QbthrROkWXM,\"Anneliese breaks down, but then tries to get it on with a priest.\"\ntt1911533,9FA_bAXW-Y8,Anneliese attacks Dr. Kenneth Landers while he is documenting the case.\ntt5664636,kSQaXjYkZpc,The gang finds their hometown overrun with monsters.\ntt5664636,9We9JImjg-c,Slappy gets revenge on Tyler for Sarah.\ntt5664636,SKTvxXjJ_MU,Slappy reveals what he's done to Kathy.\ntt5664636,mpG7K909Gi4,Sarah confronts Slappy beneath a Tesla coil.\ntt5664636,MzzWzX-HGbA,The kids decide to get rid of Slappy.\ntt5664636,R7P5OWV436c,Sonny shows off his electrifying science project.\ntt5664636,AhZw2QXKT1A,Slappy recruits an army from Halloween masks.\ntt5664636,UgSVWM44JBE,Kathy discovers Slappy and rejoices.\ntt5664636,Gr-s1mxnwM0,Sonny and Sam make a creepy discovery in R.L. Stine's house.\ntt5664636,lnPDc4XE77w,Sonny & Sam get into a sticky situation with some possessed candy.\ntt2267968,rhnCmErsnYA,\"Po,, his dads, and his panda pals protect the secret panda village against Kai's jade zombies.\"\ntt2267968,tekVuL2mT7A,a village full of pandas!\ntt2267968,30VlDItRAVk,Po uses his newfound Chi become the Dragon Warrior and fight Kai.\ntt2267968,m7HLqZP-l7E,Kai attacks Shifu and the Furious Five.\ntt2267968,w86nTX6Iixo,Po's biological father Li shows up at his village.\ntt2267968,DVQQY4-us8k,Shifu cedes control of the class to Po.\ntt2267968,gRP3sdjszlQ,Li gives Po panda training while Mr. Ping has a rough day.\ntt2267968,YeDjVvr-6Zc,\"Po performs the Wuxi Finger Hold on Kai, but it doesn't go as planned.\"\ntt2267968,sCsMjWjftZs,\"In the Spirit Realm, Kai tries to take Po's Chi.\"\ntt2267968,FGwgHAqBLDY,\"Po, Shifu, and the Furious Five fight Kai's jade zombies.\"\ntt0090633,M93XQJPV51c,Fievel and Tiger learn through song that they are more alike than they thought.\ntt0090633,gQMtp2WxEA4,The Mousekewitz family and fellow immigrants sing about the virtues and promise of America.\ntt0090633,Mi6CrAUhnzE,\"After scaring away the cats, Fievel is caught up in the flames.\"\ntt0090633,XWgSKXw8ZwI,\"While traveling to America, Fievel gets tossed overboard during a terrible storm.\"\ntt0090633,2jzlSeFLr7A,\"Separated from one another, Fievel and his sister Tanya share a song about missing each other.\"\ntt0090633,sJsCKwZLztk,\"With Tiger's help, the Mousekewitz family finds Fievel.\"\ntt0090633,65pGOp7qa_s,The mice unleash the Giant Mouse of Minsk.\ntt0090633,Vro5qtVA4PE,A gang of cats attack the Mousekewitz's village.\ntt0090633,HFAGAjkDaOU,Fievel discovers that Warren T. Rat is actually a cat.\ntt0090633,kXvNxXDDHSY,\"Fievel nearly gives up hope of finding his family, until Henri brightens his spirit with a song.\"\ntt2832470,yqVb0Ten3G4,Glenn acts as bait in order to thin the zombie herd.\ntt2832470,tsCGLuufHvk,Martin learns to discipline his zombie arm for good.\ntt2832470,e2FPI_ylwJg,Martin gives an resurrecting touch to his undead girlfriend.\ntt2832470,71ZR5BcX-Pc,Martin and the Zombie Squad fight against undead Nazis.\ntt2832470,e5gfRaN5gaE,Martin and the Zombie Squad watch as Herzog delivers a devastating blow.\ntt2832470,T5k1Olhmz_E,Herzog murders a horny elderly couple.\ntt2832470,__zoXOgNRvk,Martin goes face to undead face against Herzog.\ntt2832470,e80EOZnHpLQ,Herzog and his army destory a small Norwegian town.\ntt2832470,qwgO1dNfBl0,Martin watches as Herzog and his zombie horde massacre a bus of tourists.\ntt2832470,dvlZ2PtH_zc,Martin thinks he's gotten away from the zombie Nazis but gets a rude awakening.\ntt5938084,wMclAYZ_6kU,Manigan and Yatco fight back against an onslaught of thugs and citizens.\ntt5938084,sG8uXeC_jNg,Manigan delivers Biggie Chan to her boss before being forced to join in his corruption.\ntt5938084,i3ywt-oTQv4,Manigan and Yatco face off against an angry mob in the slums.\ntt5938084,_65de63xao0,Bravo team get ambushed and cornered by Biggie Chen's goons.\ntt5938084,bCtvFlr2hHI,Manigan is shocked to learn from Biggie Chan that the police chief set her squad up.\ntt5938084,LB08HHk7Ssk,\"Backed into a corner, Manigan goes on the offensive against Cocky.\"\ntt5938084,VLx6HcJ7sas,Manigan is chased across the rooftops of the slum by an angry mob hellbent on murder.\ntt5938084,gOeKwFPUA50,Manigan gets caught on the rooftops of the slum as the residents give chase.\ntt5938084,3_SZ0F3VTVU,\"The Squad stakes out the hideout of crime boss, Biggie Chen.\"\ntt5938084,8C3n6k49Dmg,Bravo team scrambles to the scene of the crime and find themselves in the aftermath of a massacre.\ntt0841046,9zZLmOA4OsA,Dewey enters rehab after spending time in prison.\ntt0841046,xVANxG9gI6g,Dewey performs at a high school talent show and sets off excitement across the town.\ntt0841046,PoAxZJMYRWE,Dewey and his Pa finally reconcile after decades of hostility.\ntt0841046,R2lhQCxKx_Y,\"After trying his hand at pop covers, Dewey discovers his original song may be a hit.\"\ntt0841046,8tLhtdDVqzg,\"After his first big performance, Dewey tries drugs for the first time.\"\ntt0841046,c7cm-r7oJ2E,Darlene and Edith discover Dewey hasn't been honest with them.\ntt0841046,oflbCHWZCBU,Dewey meets Darlene and tries his hardest to contain his passion for her.\ntt0841046,a_iEYXLXbjY,Dewey gets terrible news and resorts to drugs to cope with the pain.\ntt0841046,SDIk9DOro4A,Dewey and his brother Nate play increasingly dangerous games.\ntt0841046,ikcKKvKkf4Y,Dewey gets his chance to perform on stage after musician Bobby Shad gets injured.\ntt1302011,jY4nU1rwWv8,Po and the kung fu masters sneak around in a dragon dance costume.\ntt1302011,hTpVCu5DzpA,Po and the Furious Five square off against a group of bandits in the musicians' village.\ntt1302011,WsHqQAfZvc4,Po chases after the Wolf Boss in rickshaws.\ntt1302011,h5UGcMYOaaU,Po and the Furious Five break free of Shen's chains and destroy his cannon.\ntt1302011,22Xiae6LXdU,Po and the Furious Five sneak in to Shen's secret factory.\ntt1302011,4SDOcUPE1GI,Po and the Furious Five run from Shen's cannons.\ntt1302011,ePtwxRF1WZA,Po rescues the Furious Five from Shen and his army of wolves.\ntt1302011,QXeYlaZJ64k,Shen's cannonballs are nothing against the tranquility of Po's inner peace.\ntt1302011,Ln91UqmKxwI,Po gives Shen a chance to change his ways.\ntt1302011,nXait2wHOQc,Mr. Ping tells Po the story of how he found him as a baby.\ntt7349662,8tFrGaU6p5U,Ron calls up the local Ku Klux Klan chapter.\ntt7349662,AxxKJ2QgPtY,\"Jerome Turner tells the bloody history of \"\"Birth of a Nation.\"\"\"\ntt7349662,dmy8Lcf_TiE,Flip is interrogated by a white supremacist.\ntt7349662,X3XwuyPljm4,Ron takes a picture with the grandmaster of the Ku Klux Klan.\ntt7349662,ruCFlIoCpJ8,Ron calls up David Duke and reveals his identity.\ntt7349662,o6synmrDXqU,Ron gets to know local Civil Rights activist Patrice.\ntt7349662,yV5UTHVjMME,Ron teaches Flip to be black enough to play him playing white.\ntt7349662,HQrM6Rk7WWE,\"Though the Klan suffered a blow, racial injustice is a continued threat in America.\"\ntt7349662,1Aoukxd0GvI,Jerome tells a tale of the klan's hatred while the klan inducts new members.\ntt7349662,lIbBAWzE6H8,Ron rushes to save Patrice from a KKK bomb plot.\ntt6966692,aB6Tdk6f2Lw,\"Dr. Shirley and Tony have a heated debate about race, identity, and acceptance in a segregated and racist world.\"\ntt6966692,nsp9ex69rQQ,Dr. Shirley interviews Tony for the driver position.\ntt6966692,4RBnTZELQX8,Dr. Shirley reprimands Tony after his temper landed them both in jail.\ntt6966692,e_fI5no9SKk,Tony and Dr. Shirley get pulled over for being out after sunset.\ntt6966692,KXoFUS5Dzto,Tony bribes a couple Southern police officers when Dr. Shirley is arrested after being caught in a compromising situation.\ntt6966692,tnZ55SLhan4,Dr. Shirley unexpectedly shows up at Tony's family Christmas dinner.\ntt6966692,89HcLOHubgo,Tony saves Dr. Shirley when he gets beaten up by racists in a southern bar.\ntt6966692,eiqBbLVXbQg,Dr. Shirley cuts loose and plays a little pop music at a small town jukejoint.\ntt6966692,ymmlNaUhZE8,\"When Dr. Shirley is denied entry to the dining room, he and Tony leave the country club in protest.\"\ntt6966692,JCT1VtaBpqg,Tony introduces Dr. Shirley to fried chicken.\ntt2119543,2HuQzKat6hU,Jonathan tells Lewis that he and Mrs. Zimmerman are magical.\ntt2119543,XA0J-wn1Esg,Lewis uses the Book of Necromancy to raise the dead.\ntt2119543,mpgaMjGOeJg,Jonathan and Mrs. Zimmerman show Lewis how to cast spells.\ntt2119543,bwKwR3hV0zA,Undead Isaac Izard comes back to the house.\ntt2119543,aWjBDI02kSE,Lewis explores the mysterious new house with Uncle Jonathan.\ntt2119543,n8yUoQP6Rwo,\"Lewis, Mrs. Zimmerman, and Jonathan fight off evil pumpkins.\"\ntt2119543,npaLKZ0Egus,Lewis uses his Magic 8 Ball to stop the magical machine and save the world.\ntt2119543,qp-uFNB9jYo,Mrs. Zimmerman tells Lewis about her past.\ntt2119543,5noS6qGxcbM,Isaac tells his captives about his evil plan to undo the passage of time.\ntt2119543,ANigqhwwafs,Jonathan and Lewis try to prevent Isaac's evil plot.\ntt4244998,13h4zTXEjvw,Keda wakes up on the precipice of a cliff after falling off the edge.\ntt4244998,8wduU3eU6XQ,Keda begins to bond with Alpha after she tried to kill him.\ntt4244998,4IHDSpacpbc,Keda gets attacked by a pack of hungry wolves.\ntt4244998,LahMUQTEbcY,Keda rushes an injured Alpha to safety.\ntt4244998,MDG6JsXqaRA,Keda and his father hunt buffalo as part of a rite of passage.\ntt4244998,cfnBcA2ckeQ,Keda falls beneath a frozen lake.\ntt4244998,0uyVs4iKp_E,Keda tries getting rid of Alpha but finds the two work better as a team.\ntt4244998,f96ppJ3DSGE,Keda and Alpha seek refuge from a snowstorm but find something worse.\ntt4244998,QFDZTfWnWGg,Keda bids a sad farewell to Alpha.\ntt4244998,U7jlC1QNaUM,Keda and his tribe discover that Alpha is not only female but pregnant.\ntt5700672,vNk30YAdCEo,\"Seok-woo, Su-An, and Seong-kyeong race for a train with zombies on their heels.\"\ntt5700672,POpYt4cHlFs,\"The surviving passengers search for safety at a train station, but find waves of the undead instead.\"\ntt5700672,zpmd0YiERdQ,The undead rampage from car to car as passengers flee to safety..\ntt5700672,Er_oU3Sl1GI,A sick traveller delivers the fight bite of the zombie outbreak.\ntt5700672,tKeJ34qjORQ,Growing fear causes the passengers to exile other survivors and leads to their own doom.\ntt5700672,zhaVycw4FXI,Seok-woo and the others fight off waves of the undead to get to their families.\ntt5700672,nKkgc9WTY38,The rail passengers find themselves trapped under a fallen train car filled with the undead.\ntt5700672,dcR7fdkLhJ4,\"In the face of an overwhelming horde of zombies, the rail passengers display the best and worst of humanity.\"\ntt1270797,zuSBq10_5go,Venom's fight with Riot gets crazy and violent.\ntt1270797,UCGdsPwcKKg,Venom takes on a SWAT team.\ntt1270797,Wl6COOA3V6Y,Venom stops a thug from robbing a convenience store.\ntt1270797,3kEL1doAC4M,Eddie investigates a secret laboratory.\ntt1270797,xL3ZOCRgJZM,Venom has some unique demands for Eddie.\ntt1270797,dOZndhz24OA,Anne reunites Eddie with Venom.\ntt1270797,09zP4iK6QuI,Eddie has an interview with Cletus Kasady.\ntt1270797,vi9m0JRo71I,Venom makes his big debut.\ntt1270797,rsnLwzzkF_Q,\"Riot makes his move, but Venom is there to stop him.\"\ntt1270797,8zYGzyIpue8,Eddie rips through the streets of San Francisco while on the run from Carlton Drake's men.\ntt3766354,-BgZFaMJRxM,McCall warns Dave and his men that he's coming for them.\ntt3766354,rmE6nTzmDqI,Dave reveals he is behind the murder of Susan Plummer.\ntt3766354,hN5We42pLhs,McCall fights his way through a project building in order to find and rescue Miles from making a terrible decision.\ntt3766354,bxs77K1DkD0,McCall equalizes a group of bros after discovering they sexually assaulted a young girl.\ntt3766354,5D20G8qe4Qc,McCall equalizes a man who has kidnapped his daughter and taken her to Turkey.\ntt3766354,7HEi1kmCzEY,McCall gives Miles a lesson in life and death.\ntt3766354,m43-bLl6ZwI,McCall picks off Dave's men one by one.\ntt3766354,nNGz1GspkbM,McCall finds a creative way to roast a few mercenaries.\ntt3766354,GuqaloLJNJk,McCall goes head to head against his former squadmate-turned-enemy Dave.\ntt3766354,1M00J5Q1Vv8,McCall picks up a suspicious fare.\ntt4633694,XMKKYshEbzM,Miles fights Kingpin for control of the particle accelerator.\ntt4633694,5h2uLkqpVV8,\"Miles has a tough day at school, but does meet a cute new girl.\"\ntt4633694,5XnGKA75dtI,\"After the particle accelerator explodes, Kingpin kills Spider-Man.\"\ntt4633694,qCjSApp2o1E,Miles Morales and Peter B. Parker try to steal a computer from Doc Ock.\ntt4633694,zWW_SH8IFnI,Officer Jefferson cheers on Miles Morales.\ntt4633694,3v9Pfg4Ocbg,\"While doing graffiti art with his Uncle Aaron, Miles Morales gets bitten by a strange spider.\"\ntt4633694,kDTjN5dVCzg,Jefferson drives Miles to school.\ntt4633694,qcaVM8TcZbA,Miles reconciles with his father.\ntt4633694,6bO4ZsAMowI,Miles discovers that he can stick to walls.\ntt4633694,GuqCibVW5wo,Miles says goodbye to Gwen Stacey and Peter B. Parker.\ntt7668870,gC6gD7Qzry8,David believes he's found his daughter's abductor.\ntt7668870,jGXpyMDIZ_U,David accuses his brother of kidnapping Margot.\ntt7668870,m-3Ohq-bVFA,Detective Vick explains the events leading to Margot's disappearance.\ntt7668870,qjJnk3MgNgc,Detective Rosemary Vick is assigned to David's case.\ntt7668870,jkmyjHYMH0Q,\"David realizes that the Memorial One photo is Margot's social media friend, fish_n_chips.\"\ntt7668870,po0Gj897Tmk,A fateful discovery leads David to the person responsible for his daughter's disappearance.\ntt7668870,SN8buDY-7LM,Margot gets close to fish_n_chips and further from her father.\ntt7668870,c2ecZiVEs70,David discovers where Margot was when she disappeared.\ntt7668870,YeqQ-Iae_VI,Detective Vick gives David some parenting advice.\ntt7668870,IKnygn5ysHU,Margot deals with her mother's passing.\ntt0181316,1iEOBKuW9TQ,Martin Lawrence and the detectives chase down a bonded truck in search of contraband material.\ntt0181316,ysudBGghmnA,Miles corners Deacon as he crosses the border into Mexico.\ntt0181316,IfO6AIsvlKw,Miles tries to enter the building under disguise.\ntt0181316,iswgTDjihrU,Miles chases after Deacon and the stolen diamond.\ntt0181316,q7V1sM0VNaw,Miles accidentally finds himself leading a detailed briefing at the precinct.\ntt0181316,KNQpMgWWB5Y,Carlson calls Miles out on his nonsense as he crosses into Mexico.\ntt0181316,IoQ4G5p-Z-g,Miles interrogates Tulley after the latter attempts to blackmail him.\ntt0181316,W18J6bcq9YI,Miles preps to go undercover.\ntt0181316,t3gqjXINvac,Miles goes undercover with Tulley to take out a major gun runner.\ntt0181316,5UjmbtIRvLY,Martin Lawrence works out a deal with Tulley to save them both without blowing his cover.\ntt3450650,R1eDE5bXCds,Paul Blart gets the call to head a keynote at a security guard convention.\ntt3450650,m7xTE3rvkDk,Paul Blart corners Vincent on the casino rooftops.\ntt3450650,cMwOJoesx8M,Paul Blart and his daughter Maya discuss her becoming an adult.\ntt3450650,Xq4HZGi38qo,Paul Blart questions a man with a disgusting snack.\ntt3450650,fo0KBFhChFU,Paul Blart and his crew face off against Vincent's men.\ntt3450650,ob_6XAhj_1U,Paul Blart shows off in front of his daughter and his peers with some impressive segway maneuvers.\ntt3450650,0zuW4KMG7XQ,Paul Blart makes an exchange with Vincent in order to get his daughter back.\ntt3450650,N7vSJzq1zAY,Paul Blart face off against Vincent's men.\ntt3450650,Q37sWrXU39s,Paul Blart accidentally stumbles onto the La Rêve stage in Las Vegas.\ntt3450650,vbJsLuL2YzQ,\"Paul Blart tries to calm down, but a bird has other plans.\"\ntt0095647,t5nBikdQ1kE,FBI agents Anderson and Ward get to know each other on the drive into Mississippi.\ntt0095647,iJrgXYnUVe8,Three civil-rights workers are shot by a mob of local bigots.\ntt0095647,pHBKmT6eNGw,Agents Anderson and Ward are greeted with snickers at the sheriff's office.\ntt0095647,qOeZ9TL0wHs,\"At the funeral of a black civil-rights worker, a speaker incites the mourners to anger.\"\ntt0095647,1ovQhqQy7bE,\"Ward stops Anderson from avenging a battered woman, but promises to unleash him on the Klan.\"\ntt0095647,y8i5Nwg_TqU,Local Klansmen send Anderson and Ward an ominous message.\ntt0095647,ZCZyxZYgKIg,\"Anderson questions Pell in the barber chair, menacing him with a razor.\"\ntt0095647,ccr0gfJ5q0I,\"When the missing activists' car is found, Ward orders a sweep of the entire area.\"\ntt0095647,vWkJPL2Dt9A,Mrs. Pell explains to Anderson how prejudice takes hold.\ntt0095647,zvy5tDkETfQ,Anderson responds to Bailey's threats with one of his own.\ntt0092563,2Ht6646WCMU,Harry Angel confronts Mr. Krusemark about helping Johnny Favorite.\ntt0092563,isQIyXfV6Cw,The local cops inform Harry Angel of Toots Sweet's grisly murder.\ntt0092563,KUdG72N_mek,Harry Angel questions Epiphany Proudfoot about her mother.\ntt0092563,yGWUHeP16Zk,\"Harry Angel explains why he wants to drop the case, but Cyphre raises his pay.\"\ntt0092563,eb1AjU67W2s,Harry Angel discovers the terrible truth when he realizes he sold his soul to Cyphre.\ntt0092563,ij-qB9jrMnY,\"Harry Angel returns after locking Dr. Fowler in his room, only to find he's committed suicide.\"\ntt0092563,6SLhTIdGfhU,\"Harry Angel searches a dead woman's apartment, only to find she's no longer all in one piece.\"\ntt0092563,TVSr02WLC4o,Harry Angel meets Cyphre in a church to give him an update on the investigation.\ntt0092563,oGFkOiYpEeE,Cyphre hires Harry Angel to find a man who broke a contract.\ntt0092563,USjNhsetZWc,\"Harry Angel returns to investigate the church where he met Cyphre, only to be attacked after he discovers a voodoo shrine.\"\ntt1213641,TrvXqosqkls,Neil Armstrong successfully lands the Lunar Module on the surface of the moon.\ntt1213641,-2QFIXEHnOY,Neil Armstrong crashes during a test flight of the lunar rover.\ntt1213641,2Y_CzHI89mQ,Neil Armstrong answers questions from his children about his mission to the moon.\ntt1213641,JgTgQvvqRqE,Neil Armstrong pilots and lands a test plane.\ntt1213641,atBUgwJAD0U,\"Neil Armstrong, Ed White, and the other recruits go through a rigorous physical and mental training regiment.\"\ntt1213641,oUKw4qcGHZs,\"On the moon, Neil Armstrong remembers his family and his deceased daughter.\"\ntt1213641,MevYeKlyQM8,Janet confronts Neil about the risks associated with his mission.\ntt1213641,FubpK1Tho6M,The lunar mission begins on the launchpad.\ntt1213641,rzuN9uvnsZI,\"Janet listens as her husband, Neil Armstrong saves his ship from a dead spin.\"\ntt1213641,r3L0e0izKG4,\"Neil Armstrong takes \"\"one giant leap for mankind\"\" onto the lunar surface.\"\ntt2671706,d7-pWfZgFKU,Rose gives Troy the bad news about his mistress.\ntt2671706,q_tMagfE-nM,Rose reminds Cory of the good in his father and what he meant to them.\ntt2671706,2lh1uIhuujc,Troy explains where his life went wrong to his son Lyons.\ntt2671706,wAJQ-yWgSJs,Troy reveals a secret he's been hiding from his wife Rose.\ntt2671706,xI9CLKI1h-g,\"After the news of his mistress's death, Troy wrestles with death once again.\"\ntt2671706,ytEsz9ZEh_g,Rose explains to Troy how the consequences of his actions will affect their lives.\ntt2671706,PomVYrPHoAg,Troy weaves a tall tale to Rose and his friend Bono.\ntt2671706,tVxYCeRXzGo,Cory asks his father a simple question and gets an honest answer.\ntt2671706,Vh7XH68xWKw,Cory finally stands up Troy and more than meets his match.\ntt2671706,2hs-yt-Pmk0,Rose stands up against Troy's excuses after he reveals he is having an affair.\ntt0057251,aoBeDwBxv04,Homer brings food and gifts back to the convent but does not receive the thanks he feels he deserves from Mother Maria.\ntt0057251,KU5yx6v_Jr8,Mother Maria gets Homer to help build the nuns a chapel.\ntt0057251,qgm_ou3TsIs,Mother Maria believes Homer is a godsend when his car breaks down outside the convent.\ntt0057251,ljMuEDlInLo,Juan tells Homer about the nuns' journey from East Germany.\ntt0057251,3hUkHF18IrI,Homer vents his frustrations of Mother Maria over a Catholic breakfast.\ntt0057251,12iewuXNhbE,Homer finds Juan's bar during church services and sits down to order a real breakfast.\ntt0057251,S0LBIxKRCHw,Homer leaves the convent after a heated debate with Mother Maria.\ntt0057251,h5dCFGJp__0,Homer tricks Mother Maria into thanking him with a simple English lesson.\ntt0057251,RwMgEM9FNhE,Homer gives an impromptu English lesson to the nuns.\ntt0057251,Bfj5GHwgXno,\"Homer cites scripture to try and leverage payment from Mother Maria, but she outwits him with a counter-citation.\"\ntt0057251,s6JmX_n5oeo,A sulky Homer confides to Mother Maria that he is upset because he wanted to build the chapel by himself.\ntt0057251,ScJijQn6RyI,\"After some observation, Homer decides to improve the nuns English lesson by stepping in as their teacher.\"\ntt1285009,gwGqg69sqi0,\"The Man in the Mask survives the car explosion, and chases Kinsey until collapsing on the bridge.\"\ntt1285009,uwta-bET3aQ,\"Luke manages to kill Pinup, but can't escape the Man in the Mask in the pool.\"\ntt1285009,Av0pWtQ36tU,Kinsey and Luke find their aunt and uncle's dead bodies in an abandoned trailer.\ntt1285009,SMd0299YDac,\"The masked maniac sneaks up on Mike, who clings to life in the car, and murders him.\"\ntt1285009,4kaYp9uUNgw,\"Kinsey hides in a drainage pipe, but little does she know that Pinup is there waiting for her.\"\ntt1285009,LTESHXdMyQg,\"A police officer arrives to save Kinsey, but Dollface kills him first, so Kinsey has to take matters into her own hands.\"\ntt1285009,T_Kn_D-zfeg,\"Cindy and Kinsey hide in the bathroom to escape Dollface, but the bloodthirsty murderer gets in and kills Cindy while Kinsey escapes through a window.\"\ntt1285009,fKyoILW1Npw,\"The Man in the Mask crashes into Kinsey's car, so Kinsey lights the cars on fire and blows them up.\"\ntt1285009,ElkY5U7WSiA,\"Kinsey finds a ride away from the murder scene, but the Man in the Mask seemingly comes back from the dead to finish the job.\"\ntt1285009,9uGuf4e252w,Kinsey and Luke think they find relative safety in a trailer until one of the murderers crashes a truck into the living room!\ntt0102960,pmAZlEkONa0,Justice is served when the greaser ghouls and the Norman family showdown in a familiar location.\ntt0102960,-dlOM4ocKUM,Jim Norman remembers what happened on that fateful day.\ntt0102960,Fz43jl18aiY,\"After confiding with Mr. Norman, a once bullied Chip is picked up by the greaser ghouls.\"\ntt0102960,2UOL-ZHUOC4,\"When Jim Norman is introduced to the new student, Richard Lawson, he can't shake the striking similarity to a ghost from his past.\"\ntt0102960,_ZA8FE-nu3E,Jim Norman's second transfer student bears striking resemblance to a ghost from his past.\ntt0102960,p9W9PhaNGOY,\"When Jim spots a familiar car chasing down one of his students, he tries to catch up.\"\ntt0102960,buIXWAgTUIU,Mrs. Norman and her son are attacked by the greaser ghouls in their home.\ntt0102960,w4TCxFKaqIw,\"When Jim remembers that Mueller survived the accident, he hunts him down.\"\ntt0102960,OlLMqN-vjKk,A manhunt ensues when Jim has a feeling the greaser ghouls attacked Kate.\ntt0102960,K3jk2RjLJ3c,Jim Norman's first day as the new teacher doesn't go as planned.\ntt0470993,GczlfeOFPDE,Jennifer makes a startling realization when she discovers a butterfly painting on the wall.\ntt0470993,PbCNDD4y-Zs,Wayne gets crushed by a window.\ntt0470993,2nCjaCV1v0U,\"Robbed of her vision, Gina accidentally stabs Lyle.\"\ntt0470993,w_ZzqN2TWTI,Jennifer and her friends open and examine the contents of a mysterious box.\ntt0470993,dSOFfyFdHXA,Brent and his friends find a skeleton in a wooden chest.\ntt0470993,xoTuKbJE9aw,Jennifer and her friends realize they were part of an experiment when they were young.\ntt0470993,KxOI0mEOHsY,Jennifer is haunted by voices and comes to the conclusion that she needs to kill herself.\ntt0470993,des_yFi9fiM,Gina gets attacked by a ghost when she separates from the group.\ntt0470993,BiXpNk-huqQ,Lyle gets his throat slit while searching for the lost slingshot.\ntt0470993,9sVpipEqpD8,Beth is haunted and killed by a ghost.\ntt0470993,4psRZr3sxHs,Jennifer gets grilled about her knowledge of the kitchen.\ntt0470993,MjrbUV78y5A,Beth reads from her dead friend's diary.\ntt1428538,L9EPJ7ZYjHk,\"Villagers get the drop on Gretel, but she's not alone.\"\ntt1428538,PDWuHeevSAk,\"Having saved his sister, Hansel and his friends go after Muriel.\"\ntt1428538,sxKLANwXzzg,Hansel comes to Gretel's rescue.\ntt1428538,HMyfwfUs64I,Hansel and Mina face off against Muriel.\ntt1428538,DbcOnkSMGK0,Young Hansel & Gretel deal with their first witch.\ntt1428538,dTIoEMxqckg,Hansel & Gretel hunt down a witch.\ntt1428538,PKKSqcq9iGU,Hansel & Gretel take on alpha witch Muriel in the house where it all started.\ntt1428538,tc7rC53gLUU,Hansel and Gretel rush to save a young girl from being kidnapped by witches.\ntt1428538,uZ_X4w_9lgk,The witch sends Hansel and Gretel a disgusting message.\ntt1428538,irxaBbMXsUk,Hansel & Gretel get the drop on a witch.\ntt5481984,SDNStLatNk8,Alice convinces Rumpelstiltskin to calm down a rogue Gelda.\ntt5481984,VUljC2ih5YY,Alice and Goldilocks review the cast of villains they have recruited to join in their fight against Death's Messengers.\ntt5481984,XFu7Fz4g1VM,Alice and her crew rush to rescue the Hatter.\ntt5481984,M32XWG0NQPQ,Bluebeard reveals his true allegiance during a vital mission.\ntt5481984,SUruJPHdHUQ,Goldilocks finds a hard target when going after Bluebeard.\ntt5481984,31G0GtKW8iM,Allegiances crumble as Death's Messengers attack Looking Glass HQ.\ntt5481984,nxKAr1Gebjk,The Grimm Squad work together to protect Looking Glass HQ.\ntt5481984,pt94aydCMXg,Rumpelstiltskin's bid to turn Gelda's allegiance gets an unexpected ending.\ntt5481984,LaajQCWsyzE,Alice and her team scramble to stop Death and Rumpelstiltskin from executing their plan.\ntt0365957,Ooiw8ZYnzdU,Elgin's crew makes it to the finals to compete against Wade's crew.\ntt0365957,_ZzKJflnVHU,Elgin watches as Wade's crew defends their title in the fourth dance sequence of the film.\ntt0365957,cIEPiYHzTto,David and Elgin train for the big competition.\ntt0365957,BpAvVBwO8J0,David and Elgin get challenged by Wade's crew.\ntt0365957,HJKL8Ta-kt8,David and Elgin's crew face off against Wade's after being betrayed by one of their own.\ntt0365957,15MbDpZad74,David and Elgin compete with their respective crews for a chance at a cash prize and a spot in a Lil' Kim video.\ntt0365957,_oOULG_nhEc,David and Elgin's crew destroy the competition in the second dance scene of the film choreographed to Aceyalone's 'Find Out'.\ntt4145324,Tirgk-Is0QY,Michelle meets Ryan Black at a bar and his aggressive attitude takes her by surprise.\ntt4145324,bHnpX4LBdGw,Michelle and Ryan Black explore the dynamics of the dominant/submissive relationship.\ntt4145324,5rQD746bDOc,Ryan Black tortures Michelle while she is forced into a last minute pitch with a potential investor.\ntt4145324,VlqxnvmTcAk,Michelle sets up a major business merger for her father's company.\ntt4145324,H6pjCQosMxk,Michelle meets with Ryan Black at a photoshoot with Terrell Owens.\ntt4145324,Cwqmd8pSkEo,Ryan Black offers Michelle an entertaining way to spice up attending a fundraiser.\ntt4145324,qFnqH95k_rU,Ryan Black teaches Michelle how to let go and enjoy the moment.\ntt4145324,Yk2ZbS2FKe4,Michelle takes action against Ryan Black after he sleeps with her teenage daughter.\ntt4145324,4LCN8__54AQ,Michelle offers a turn of the tables on Ryan Black.\ntt4145324,7Ev8Q9RDC8k,Michelle catches Ryan Black in bed with her daughter.\ntt1473801,LiogBSpbSE8,\"Spanky and Mert look for their stash at a kid's birthday party, and meet a foul-mouthed child and his sexually aggressive mom.\"\ntt1473801,WDAIccQnnV8,\"The gang gets confronted by Mert's brother's ex-girlfriend, Pinky.\"\ntt1473801,BzKbRv8tcBc,\"After getting caught looking into the neighbors' apartment, Spanky and Mert are forced to wait in her smelly bathroom until the neighbors decide their punishment.\"\ntt1473801,dtIqkgW18-0,\"Spanky, Mert, Princess, and Strawberry get pulled over and get into trouble when the GPS insults the cop.\"\ntt1473801,1EkjxpUe5TY,Spanky and Mert take their car to a bikini car wash.\ntt1473801,y5ysUSgyVqs,Spanky and Mert try to find some strangers to buy them alcohol.\ntt6781982,7PI0v2ZWDl0,Carrie convinces Teddy to take a learning disability test.\ntt6781982,sqLiTaVHPdo,Students in Teddy's class introduce themselves.\ntt6781982,OwG27DvQf68,\"Carrie uses a few alternative, and violent, teaching tactics to motivate Teddy.\"\ntt6781982,npSYPN8LXas,Stewart shows up Teddy's chicken restaurant to apologize.\ntt6781982,2UBYT9teTIs,\"Teddy returns to his old high school to inquire about night school classes, but finds that his old high school bullying victim Stewart is the new principal.\"\ntt6781982,honAzu3xOP0,\"At an expensive dinner, Teddy tries to get out of paying the bill by planting body hair in the dessert.\"\ntt6781982,8Ds9R9puftI,Teddy accidentally blows up the barbecue shop while proposing to Lisa.\ntt6781982,6rHHZ3hiwcQ,Lisa shows up at the high school prom where Teddy and his night school class is celebrating.\ntt6781982,bgZWbi1o8bY,Teddy and his classmates try to escape the school after stealing the midterm.\ntt6781982,4c_4MGTCgHY,Carrie's class gets an unexpected interruption.\ntt2937696,KoY720x5fuw,The upper classman baseball players show the freshman how everyone earns their stripes on the team.\ntt2937696,nvAZrrDwecI,Willoughby tries to get the guys into the complexities of Pink Floyd during a smoke session.\ntt2937696,PTOkGaI3ZAE,The boys on the baseball team take their respective partners home after a night of partying.\ntt2937696,H6XWqMB-Ow8,\"The team puts their own spin on Sugarhill Gang's \"\"Rapper's Delight\"\" while on their way to pick up girls.\"\ntt2937696,jME-000LFNY,Dale explains to Jake exactly how Finnegan tries to pick up women.\ntt2937696,XIJ-TpmNlI0,Finnegan convinces two women to strip down and fight in a mud pit.\ntt2937696,qpxUYzNSGn0,Dale and Jake interrupt Finnegan mid-pitch to a freshman drama student.\ntt2937696,5IzNXdsZUHk,Jay antagonizes McReynolds while on the pitcher mound.\ntt2937696,7iajsLA5MKM,Jay gets into a bar fight after the bartender doesn't make his drink the way he likes it.\ntt2937696,cZy7qSG8RHQ,The upperclassman on the team play another prank on the freshman players.\ntt0090685,CXdc2L3QH9U,Thornton wins over Dean Martin by donating a building.\ntt0090685,QXruKKf3my4,Thornton creates a distraction during registration and then buys books for everyone.\ntt0090685,4VDry9fy8UE,Thornton pulls off the impossible dive when he nails the Triple Lindy.\ntt0090685,CHOpoOnkRJE,Thornton watches a new commercial for his clothing business and attends a board meeting.\ntt0090685,lKBbFHMEvDc,Diane helps Thornton remember and interpret a poem during his oral exam.\ntt0090685,aP7GTu8tbvQ,Dr. Barbay accuses Thornton of academic fraud and suggests an oral examination.\ntt0090685,uSLscJ2cY04,Thornton challenges Dr. Barbay about the true cost of business in the real world.\ntt0090685,k9DO26O6dIg,\"During a discussion of the Vietnam War, Professor Terguson yells at a student, inspiring Thornton to speak up.\"\ntt0090685,-8ajIeIeJpY,\"With no time to write his paper on Kurt Vonnegut, Thornton turns to the man himself.\"\ntt0090685,umKFAbLoUxQ,Dr. Barbay sends a threatening message to Thornton through his secretary.\ntt0090685,4kAViGVuLmM,Thornton reports to the lab for his project and quickly corrupts the chimps.\ntt0090685,0T3hXtyuX0g,It's love at first sight when Thornton sees sexy English teacher Diane.\ntt6911608,zqv3YesdtRU,\"Ruby, the Donnas, Rosies, Tanyas, and the boys sing \"\"Super Trouper.\"\"\"\ntt6911608,nB9rg6sxHhU,\"Ruby meets an ex-lover Fernando Cienfuegos, and the two sing a duet of \"\"Fernando.\"\"\"\ntt6911608,bCZRAcsuRgY,\"Separated by distance, Sophie and Sky share a heartbreaking duet of \"\"One of Us\"\".\"\ntt6911608,KOuClUYl0_U,\"Donna returns to witness her grandson's christening, and her and Sophie sing \"\"My Love, My Life\"\".\"\ntt6911608,LrQqG7HxUao,\"Sophie fulfills a lifelong dream by singing \"\"I've Been Waiting For You\"\" with Rosie and Tanya, and in 1979, Donna gives birth to her daughter.\"\ntt6911608,Zo0d4xk3BXw,\"Donna plays hard to get, Bill plays hard to resist, and lovestruck Harry can only watch from the dock.\"\ntt6911608,3lR-s-Q5XsQ,\"Despite the storm, Bill and Harry bring boatloads of reinforcements to attend Sophie's hotel grand opening, including her husband Sky.\"\ntt6911608,YSN08rz66zE,\"At their college graduation, Donna, Rosie, and Tanya sing \"\"When I Kissed the Teacher.\"\"\"\ntt6911608,jq_tO6NAlPI,\"Rosie and Tanya help cheer Donna by singing \"\"Mamma Mia\"\".\"\ntt6911608,pHXL7yantDY,\"Donna and Harry express their intentions and sing \"\"Waterloo\"\" in a crowded Parisian restaurant.\"\ntt3640424,ISKL5Sy_Mt8,Max and Marianne are given a thorough vetting by Hobar before being allowed to attend a Nazi gala.\ntt3640424,Mkn0Iji6g9w,Max recognizes a German officer sitting near him in a cafe and rushes to stop him before he is outed.\ntt3640424,HpGmAvMtScw,Max and Marianne release long-built tension before first mission.\ntt3640424,w5oWgKtku3Q,Max forces Marianne to play the piano in order to find out whether or not she really is a German spy.\ntt3640424,s43ARFFNrz0,\"When the couple is caught trying to make their escape, Marianne makes a fatal decision.\"\ntt3640424,Y6CLpg06kFE,German soldiers arrive at the police station Max has infiltrated in order to gather information.\ntt3640424,ntKYG1LdbV8,Max and Marianne infiltrate a Nazi gala in order to assassinate a German ambassador.\ntt3640424,QaUjGv3GLeg,Marianne tries to seduce Max.\ntt3640424,E0og5D_sPpM,Max waits for a phone call detailing information for an important mission while Marianne attempts to distract him.\ntt3640424,Pl1dl--4OBE,Max and Marianne search for shelter during an air raid when a downed plane begins crashing toward their home.\ntt0427152,71pIZ76YvR4,Tim is surprised by Barry's sincere stupidity.\ntt0427152,A_R76lKU0DI,\"Barry accidentally invites Tim's stalker, Darla, over for the night.\"\ntt0427152,HHRCWQEM7UQ,Tim's important dinner is ruined when his stalker Darla arrives.\ntt0427152,C2KN6BHuPWA,Kieran explains the ecosystem of sex to Tim.\ntt0427152,-7-2-088LnM,A pet psychic has a spiritual episode after dinner is served.\ntt0427152,KaVglFjQynk,Barry pits his brain control over Therman's mind control.\ntt0427152,MVRR0XlqA4g,\"Tim meets Therman, the mind controlling tax specialist.\"\ntt0427152,9BdW5LHQvjM,\"Darla tries, and fails, to use Barry to make Tim jealous.\"\ntt0427152,E_TbL7vdWGo,\"Tim reveals the true intent of the dinner, leading to a revolt by the 'idiots' in attendance.\"\ntt0427152,zbHFgQ419Qs,Barry is shocked to see Therman show up at the dinner.\ntt0077504,deUroRuOCwM,Sonny holds a gun to his head as he talks with his girlfriend Mary Ellen.\ntt0077504,JuxyMqr7FNA,Sonny attempts his first suicide by swallowing a bunch of pills but he's unable to keep them down.\ntt0077504,0aKB_Qm-z6g,\"Dr. Maneet, a specialist in death therapy, dies in front of Sonny.\"\ntt0077504,tDD6wnNN-IQ,\"Sonny and Marlon tries to devise new ways for Sonny to kill himself, but get sidetracked by orderlies.\"\ntt0077504,lb6nAmbkk9Y,Sonny meets Marlon in the nuthouse.\ntt0077504,CjXwJJQ-8XM,Sonny weeps and weeps in a full elevator.\ntt0077504,kZRq9scxIWM,Marlon tries to help Sonny kill himself.\ntt0077504,7ZzaLI6n1pU,Marlon shoots at Sonny who has had a change of heart and now wants to live.\ntt0077504,PUFwiKDWxUo,Sonny plays a game of chicken while driving against an old lady.\ntt0077504,kCrtP_gPMwk,Marlon tells Sonny about his family background and how he landed in the mental institution.\ntt0077504,9qdMVMCGr48,\"During an attempted suicide by drowning, Sonny decides he wants to live.\"\ntt0111143,UsNnkax2wNA,\"Local gangster Duke Rollins and his goons fit Dr. Tam with some cement shoes, only to be interrupted by The Shadow !\"\ntt0111143,RFBlDixa33k,\"In Tibet, evil warlord Ying-Ko is forcefully taken to the inner sanctum of the mysterious and powerful holy man Tulku and his blood thristy knife, the Phurba.\"\ntt0111143,6DlOr1PP0Fc,The Shadow attempts to rescue Dr. Reinhardt from Khan's Mongol warriors.\ntt0111143,YKvG96jMVWE,\"After the New York Museum of Natural History mysteriously recives the coffin of Genghis Khan, a poor guard discovers that it contains a body very much alive.\"\ntt0111143,ybF7eOf_n4s,\"While Margo Lane and her father try to disarm Khan's atomic bomb, elsewhere in the hotel The Shadow shows Shiwan Khan the strength of his powers.\"\ntt0111143,ROqfvY68ijM,Lamont and Margo both have drastically different dreams.\ntt0111143,fEsN1FMfBvI,The Shadow falls into a watery grave of a trap when tracking Farley Claymore.\ntt0111143,oZ1Mz78d3wI,\"The Shadow finally confronts Shiwan Khan, who pulls out an old and very sharp friend to aid him in dealing out death.\"\ntt0111143,U7HxeKhKgwM,\"After entering Shiwan Khan's base of operations, The Shadow runs into the fully armed nervous wreck that is Claymore.\"\ntt0111143,Ueq8bUwdm80,\"After surviving a failed assassination attempt, Lamont meets up with his evil rival Shiwan Khan in a Chinese restaurant.\"\ntt0117107,bHW5h5O-e5I,Hoover questions General Timms about the murder of Allison Pond.\ntt0117107,sGPeVmnAFAI,General Timms explains his twisted philosophy of leadership.\ntt0117107,31LlQhZmSYs,\"When Chicago mobster Jack Flynn mocks Hoover, he gets more than he bargained for.\"\ntt0117107,TcJjhnPrM9o,\"Hoover questions Allison, but is distracted by her beauty.\"\ntt0117107,MM1no56lIjw,Special Agent McCafferty shows an interest in the murder of Allison Pond.\ntt0117107,uydWF18xoCQ,Hoover and his boys are caught trespassing on military property.\ntt0117107,MtyfXKbZUus,Max and Allison have a heart-to-heart conversation that ends with a kiss goodbye.\ntt0117107,O2yNsybczj4,Colonel Fitzgerald arrests Max and his men for entering restricted military territory.\ntt0117107,Vln90evTYog,Max teaches the FBI agents who holds the power in L.A.\ntt0117107,NfQcD7ZLWL0,\"Hoover and his men take care of a mobster by introducing him to \"\"Mulholland Falls.\"\"\"\ntt0117107,p9Bo67_slJY,Hoover and his crew head out of the courthouse to investigate Allison Pond's murder.\ntt0281686,g2tNQ_6-kpg,What was Marilyn Monroe like in bed?\ntt0281686,s039YJGaP-Y,\"As Elvis and Jack discuss the purpose of Hotep's existence, they are paid a visit by the mummy himself.\"\ntt0281686,Fz7dtq-saJo,\"After learning about how threatening the mummy Ho-tep really is, a downtrodden and defeated Elvis finds the resolve to get up and do something.\"\ntt0281686,IRycPfFjVBI,Elvis battles Ho-tep in one last confrontation.\ntt0281686,kVujmsfAIUk,Jack shows Elvis the mysterious Egyptian hieroglyphs he discovered written inside of one of the stalls in the men's room.\ntt0281686,1R4FATHHlTU,\"Elvis reminisces about the glory days of living as someone else's double. Then, one night while performing as Haff, Elvis injures his hip in a freak stage accident.\"\ntt0281686,iGk7QYThMTk,\"Elvis encounters a nasty beetle in his room, and ends up burning the insect with a portable heater.\"\ntt0281686,t_JOKNfSn1w,\"Elvis reveals his reasons for shunning the limelight when he recounts the time he switched places with Sebastian Haff, a lowly Elvis impersonator.\"\ntt0089489,5H_MyLSpRSs,A corpse resurrects spontaneously and steals the life force of the a doctor.\ntt0089489,_iUWKODwAN8,Dr. Fallada tells Colonel Caine that he believes that Space Girl is really a vampire.\ntt0089489,AsfxK5fWMu8,Two vampire zombies begin to lose control when they can't feed.\ntt0089489,_5IVdeFrhv4,Caine shoots a possessed Dr. Fallada and watches as Fallada's lifeforce drains out of his body.\ntt0089489,zzabhummvzk,Caine kills the First Vampire with the sword he took from Fallada's lab.\ntt0089489,bQObeZ5R0mc,\"Carlsen smacks Ellen around, trying to get the being to leave her body.\"\ntt0089489,e9_4oS3hTPk,Space Girl escapes Dr. Armstrong's body and reconstitutes herself before exploding into a pool of blood on the helicopter floor.\ntt0089489,Hsh6n5RfCoc,Carlsen kills Space Girl and himself with Caine's sword in order to save the world from total destruction.\ntt0089489,7uOhTRONUbY,\"While interrogating a sedated Dr. Armstrong, Space Girl reveals herself to Carlsen.\"\ntt0089489,1d-Q6pT4pxo,The two male vampires awaken and scare the crap out of a pair of soldiers.\ntt2042447,a2xcMwtUQFY,\"A few teenagers sneak in to an abandoned house to have some fun, but don't realize they came to the wrong place.\"\ntt2042447,Wafr97M23uU,Melanie completes the curse and kills her father.\ntt2042447,oQnm8w8f-lM,\"Hired to help safeguard the house, Donny becomes the latest target of the Amityville curse.\"\ntt2042447,bH3ulIPKNrc,\"Tyler find his mother dead in the kitchen, and it looks like he might be next.\"\ntt2042447,VbAh3UbaGHQ,\"In the wake of some terrifying events and deaths, Douglas Benson has a nervous breakdown and gathers his family for a \"\"family meeting\"\" ever.\"\ntt2042447,lryUDOG6bS4,\"Lori and a local boy sneak into her house, but her dad catches them.\"\ntt2042447,VHkoII8ewWk,Lori Benson is woken up by a mysterious force and falls victim to the Amityville curse.\ntt1912981,6SDs2BTqYpw,Wayne comes back to bed only to find that his wife might not be the only one in there.\ntt1912981,ISXVGrqvV1A,\"Wayne finds his murdered son and wife in the house, and begins the steps to finally destroy the evil that has haunted his home.\"\ntt1912981,G1Q68kAK4qc,\"The sheriff's neighbor, Mary Winston, stops by the house and is forced into committing suicide.\"\ntt1912981,FJnJJOAN_PU,The sheriff of Salem comes home just as his family is being brutally murdered.\ntt1912981,YU_Sm_2vH5w,\"While escaping the house, Carrie and Kyle meet their deaths at the hands of an unsuspecting assailant.\"\ntt1912981,LiA9AsjqVWU,Wayne finds his possessed daughter Ali and kills her in the hopes that the evil presence doesn't survive.\ntt1502407,MuW72eVCQno,Officer Hawkins and Dr. Sartain run over Michael Myers.\ntt1502407,KuStVllxFuI,Michael Myears rouses from the edge of death and kills Dr. Sartain.\ntt1502407,bEBQWhgGM1g,\"Michael Myers wreaks homicidal havoc on a gas station, and then dons his mask.\"\ntt1502407,4-3B-Y9bM0M,Michael Myers kills Ray and sets his sights on Laurie.\ntt1502407,0p2Oyd040pg,Michael Myers kills the babysitter Vicky.\ntt1502407,Je3Vjos0TlQ,Three generations of Strode girls fight off Michael.\ntt1502407,7qhNVDPZ-0I,Reporters Aaron and Dana show the incarcerated Michael Myers his mask.\ntt1502407,Iy2kMtJa2q8,Michael Myers goes on a random murder spree.\ntt1502407,k0LLcRLSSlE,Oscar makes a bad pass at Allyson and is rewarded in kind by Michael Myers.\ntt1502407,j7m47I9BuuY,Laurie fights Michael Myers in her house.\ntt6133466,JV05-E5FF2g,\"With Nya, Dmitri, and the rest hiding in the bedroom, Skeletor comes from behind to kill the mercenaries, and gives Dmitri enough time to blow up the group of soldiers.\"\ntt6133466,NdbZtOpgsUY,Isaiah saves his sister Nya from Skeletor.\ntt6133466,kEL5reRoNk8,The first kill of the night is televised and goes viral.\ntt6133466,WQP_cY7FAyQ,\"Skeletor puts down partakers at a previously positive \"\"Purge Party\"\", while Dmitri fights off hookers who were hired to kill him.\"\ntt6133466,P9jJ6Bejayg,\"Nya, Isaiah, and Dolores kill the mercenaries sent to clear out the apartment building, with a little help from Dmitri.\"\ntt6133466,AVHPmsWZnb4,Dmitri takes out two mercenaries in a stairwell.\ntt6133466,7oDSPSwMw5k,Nya and Isaiah try to get to safety as government hired mercenaries dressed like cops and the Klan start massacring their way through the city.\ntt6133466,_qxAcodjpCo,\"Dmitri gets run off the road by a flaming truck, forcing him to kill the mercenaries targeting him.\"\ntt6133466,lCL7DI3ah40,Dmitri and his gang gets shot at by the drones that were supposed to only observe.\ntt6133466,UX1-VvE01iw,\"Dmitri and his gang gets revenge on the mercenaries, and saves some of the citizens.\"\ntt4786282,evM3k7ep4wo,Becca finds out that Diana has been living in the house the whole time.\ntt4786282,mpfBH5WLlOA,Becca and Martin are rescued by police but Diana has other plans.\ntt4786282,zn9D_4bE0hM,Becca and Martin are cornered by Diana.\ntt4786282,jYbI8iVYCpc,Martin is chased by something in the dark.\ntt4786282,tw84SFLxC_o,Becca comes face-to face with Diana.\ntt4786282,M-HysTegELs,Sophie finally stands up to stands up to Diana\ntt4786282,MZaX-RbQ7ic,Bret is stalked and attacked by Diana.\ntt4786282,nD8KtgWozeM,Paul is chased by a mysterious force while leaving his office late at night.\ntt4786282,NqJ6llRZg-M,Becca and Martin get an unexpected delivery while trying save their mother from Diana.\ntt0096118,LWoKa0wYTJk,\"Molly knocks out Angela, and escapes her cabin of dead campers.\"\ntt0096118,NPmAEqlzKqE,\"When Angela finds two sisters drunk with a boy in the woods, she hosts a barbecue in their honor.\"\ntt0096118,kzxz5xezOAI,\"Angela will do whatever it takes to \"\"drill\"\" some self-respect and common sense into Mare.\"\ntt1980209,U_MNiopwFxs,Lugo recruits ex-convict Doyle.\ntt0096118,j0z0V2JJ5II,\"When Anthony and Judd play around with masks of notable horror icons, Angela shows up to play for real.\"\ntt0096118,AxrQtWFF91k,Angela kills the babbling Demi.\ntt0096118,kSaOMRXiLVA,Angela is furious when she catches the boys doing a panty raid in the girls' cabin.\ntt0096118,vmWm02fUJ-o,Angela's true identity is revealed to the other surviving councilors.\ntt0096118,IqJWWBRnrH4,\"Angela sings the \"\"Happy Camper Song\"\" after being awarded counselor of the week.\"\ntt0096118,njz1p35e_EU,\"Angela has a terrible nightmare about the camp murders sung to the tune of the \"\"Happy Camper\"\" song.\"\ntt0096118,AaMkmiZ9bMM,Angela stabs Ally and drowns her in the outhouse toilet.\ntt1980209,aZbGlkGWiZc,The gang celebrates after getting away with stealing all of Kershaw's money.\ntt1980209,5K6sh7HZri4,Adrian recollects meeting the his future wife Robin.\ntt1980209,iKp5ARBBpyc,The Sun Gym gang assimilates into the community by starting a Neighborhood Watch.\ntt1980209,XOfjQQT9O08,Lugo tries to butter up Frank before he and his friend rob him but loses his temper.\ntt1980209,Z9vRmexWHUo,Lupo explains his version of the American Dream.\ntt1980209,hIUrt0AsTjw,Doyle's finds out running from police while high on coke is harder than one might think.\ntt1980209,JnjO0v-AYFo,The Sun Gym crew tries to kill Kershaw.\ntt1980209,O0fQ_rrQedE,\"The Sunny Gym Gang tries to kidnap Kershaw, with little success.\"\ntt1980209,esg4w4b2xvc,\"While Paul disposes of body parts, Lugo and Adrian try to return a \"\"faulty\"\" chainsaw.\"\ntt0479884,0OppC7vTtY0,Chev Chelios saves Eve from Carlito's men.\ntt0479884,swn9_FjwmJo,Chev Chelios is chased by the cops through a mall.\ntt0479884,YNBtb-8zpko,Chev Chelios hallucinates in the elevator.\ntt0479884,UBNLrL7RvJM,To get his adrenaline up Chev Chelios has sex with Eve in the middle of Chinatown.\ntt0479884,IHDzQ29EgsY,\"Chev Chelios tries to get answers from Verona's brother, Alex.\"\ntt0479884,aH6N58NST30,\"Chev Chelios saves an oblivious girlfriend, Eve, from the danger that surrounds her.\"\ntt0479884,G_ee7q8w-PU,\"Expecting a set up, Chev Chelios infiltrates Don Kim's factory through the roof and finds one of Verona's bodyguard's.\"\ntt0479884,nNtl5Hv0bv0,Chev Chelios says his last goodbye to Eve while falling from the sky.\ntt0479884,IBwJ7rFHpE8,Chev Chelios and Eve are in a high speed chase with Carlito's gang.\ntt0479884,U59aJCoJLRU,\"Chev Chelios wakes up to find out he's been poisoned by his rival, Verona.\"\ntt0479884,Y6hHVWwwfPA,Chev Chelios forces the doctor to use the defibrillator on him.\ntt0479884,KVV02IJlGCQ,Chev Chelios steals a motorcycle from a police officer.\ntt5734548,2GvyC7s3RpU,Odysseus and Circe must fight the terrifying cyclops.\ntt5734548,d6263F3UkWo,\"After returning to his kingdom, Odysseus kills all the suitors that aim to marry his wife Penelope.\"\ntt5734548,V-hOCaVISok,Odysseus and Circe must defend Ithaca and fight the horrifying Kraken.\ntt5734548,y_Zo1Wg4RAM,Odysseus proves he is the true king by stringing his former hunting bow and shooting an arrow through the five golden rings.\ntt5734548,FXeNdV-FTjI,Odysseus uses a powder to break the sirens' illusions that have tricked his friends.\ntt5734548,s_SM1Hly-uw,\"While on the island, Odysseus grows disillusioned of his fantasy life and asks for a way out.\"\ntt5734548,Z1DO7_hHqbw,\"Odysseus' ship passes a mysterious island, and a siren song calls Odysseus to swim to shore.\"\ntt5734548,kcrHhDoUS1k,Odysseus and the rest of his warriors emerge from the Trojan Horse and wreak havoc on the city of Troy.\ntt5734548,wnvRIdndQdk,\"Odysseus, Circe, and Aesus enter the Paths of the Dead and encounter the dreaded Agamemnon.\"\ntt5734548,LVbkD8ZogwA,\"After taking part in the sacking of the city of Troy, Achilles is killed by the beautiful Circe.\"\ntt0409847,l1X4RDCFmsE,\"A fleet of alien spaceships attack a sleepy, Western town and abduct many of its residents, and Jake Lonergan uses an alien weapon to shoot down one of the spacecrafts.\"\ntt1335975,4d9fx7umXgg,\"Kai asks for weapons from a Tengu Master, while Oishi has to resist the Tengu master's mind games.\"\ntt1335975,qC_pkxnYQfk,\"Kai, Oishi, and the Rōnin are ambushed by the Witch and Kira's warriors, and presumed dead.\"\ntt1335975,SroZoan9faw,\"During Mika and Kira's wedding celebration, the Kai and the Rōnin sneak into the palace to exact revenge on Lord Kira.\"\ntt1335975,FZOF6ePjVcM,The Witch casts a spell on Lord Asano which causes him to attack Lord Kira.\ntt1335975,ffmSFNEG6pM,\"Kai secretly fights the Golem Samurai, but when he is discovered, Mika risks her life to protect him.\"\ntt1335975,LoBAmFanDhY,Kai singlehandedly saves his fellow Rōnin when they come across a group of rival warriors.\ntt1335975,T4WNCHc_MmQ,Kai and his fellow warriors face off against a massive forest beast.\ntt1335975,EEaUjfxQQFI,Ôishi leads the Ronin in the Bushido ritual of seppuku.\ntt1335975,VmT0mZH5ivo,Oishi and Kai face off in a sword battle before escaping from the slave pits together.\ntt1335975,74DUcGnFH8g,In two epic battles Kai defeats the Witch and Ôishi defeats Lord Kira.\ntt0409847,S6rgOlhmAHo,\"A gunslinger  wakes up in the desert with no memory, weird tech on his wrist and three bounty hunters on his tail.\"\ntt0409847,r1md9sIev2M,\"Jake covertly blows up a portion of the alien mothership, but this sets the aliens upon them.\"\ntt0409847,I21bX4cEhRM,\"When the aliens attack Col. Dolarhyde and his men, Nat Colorado sacrifices his life to save Dolarhyde.\"\ntt0409847,GfLc8Z4_lFw,\"With the help of the Native Americans, Ella is brought back to life, and reveals that she is from another alien race.\"\ntt0409847,1zQvfrTK6Y8,\"Ella is abducted by the aliens, and Jake jumps into action to rescue her.\"\ntt0409847,5dCI82ffuIc,Jake gets a drink in the saloon while the Sheriff and his men arrive to bring him in for some questions.\ntt0409847,xW4xczuVMq4,Jake and Ella sneak into the alien ship and free the humans who have been captured by the aliens.\ntt0409847,AbV04B_yV34,\"Col. Dolarhyde saves Jake from being killed in the mothership, and Ella sacrifices herself and blows up the alien ship.\"\ntt0409847,xsM9jr1e4F4,\"When Emmett is attacked by a hostile alien, the preacher Meacham comes to his rescue, but the alien fights back before Jake and Ella can show up.\"\ntt0076239,BkNCfTfR6fQ,\"As Scott and Cindy get intimate, Sanders and his men show up to ruin the occasion.\"\ntt0076239,pM87ObBNOk4,\"After spending the night in the freezing cold, Susie thinks that John is dead.\"\ntt0076239,emW6qKMxIUU,\"After stealing the ransom money, the gang makes a fast getaway.\"\ntt0076239,xsK7WF3jWI4,\"While her friends get hammered, Susie suddenly finds herself in the arms of an older man.\"\ntt0076239,N26K5UeOTPE,John gets into a pissing contest -- literally -- and wins a bunch of money.\ntt0076239,FaX0hq8BZc8,John and the gang make a run for the Canadian border.\ntt0076239,Jj6H6tJvRjU,\"Scott and John hold up the local bank, while Susie drives getaway.\"\ntt0076239,jlcZPO2FhGE,\"When a mysterious woman catches Scott's eye, he's all ears.\"\ntt0076239,RM0NW8MF9wY,Scott and John take Sanders' car out for a joyride.\ntt0076239,f-DiniX_1mI,Scott tries to teach John and Susie how to shoot a pistol.\ntt0076239,96dlvQbYEds,\"With his mind in disarray over Susie's affair, John resorts to reckless and petty theft as an outlet for his emotions.\"\ntt1823051,BshBOgRLN28,\"While racing Kayce, Thomas spins out, flips over, and bites the dust.\"\ntt1823051,9tx1z5_iVeo,Kayce shows up to Tom's funeral demanding that he get Rick's car as a means of resolving his debt.\ntt1823051,27ARVhE-a58,Rick Merchant wins a street race at the Sepulveda Suicide races.\ntt1823051,G6PcFmNCQpA,Kayce threatens and sexually harasses Claudia and tries to force her to undress.\ntt1823051,HxfzrUYFsLk,\"Rick and Claudia try to get away from the vengeful Kayce, but get involved in a horrific crash.\"\ntt1823051,opXI29YEI5s,\"Rick and Kayce face off in the final race to determine the fate of their cars, their girls, and their lives.\"\ntt2543164,9YJRtvamIjU,Louise explains the linguistic nature of a question to Ian and Colonel Weber.\ntt2543164,C2IvmQI_efs,Louise learns what happened to one of the heptapods.\ntt2543164,2kt3CmzYGu4,General Shang explains the only thing that stopped him from starting WWIII was what Louise told him over the phone.\ntt2543164,sg39yDRzklg,\"Louise realizes she has the ability to see the past, present, and future at the same time.\"\ntt2543164,G6uZp-33qcY,The Heptapods share communication for the first time.\ntt2543164,fOFGL7-qmqs,The Heptapods reveal the purpose of their arrival to Louise.\ntt2543164,Rd_gE_G9R1k,The Heptapods give Louise and Ian all the information they can.\ntt2543164,i6AtG8BdONE,Ian details the sum of what they know and don't know about the Heptapods.\ntt2543164,dQlExOgF5eU,Louise and Ian meet the aliens after they arrive.\ntt2543164,mBdWBpsA5eQ,Louise makes a breakthrough in communication with the heptapods.\ntt0134983,_EjWpjky5lU,Kaela attempts to save Marley as Nick tries to prevent a crash.\ntt0134983,vrEjev5DoXc,\"While Nick searches Titan 37 for fuel, Larson tries to ensure that he never returns to the ship.\"\ntt0134983,fgDgZGePcwk,The crew of the Nightingale respond to a distress call via a disorienting dimension jump.\ntt0134983,VILmrL5jP7s,\"When Danika learns that Larson has stranded Nick on Titan 37, he blasts her out of the airlock.\"\ntt0134983,W-7hoLpXFXE,The crew of the Nightingale intercepts an evacuating ship containing a mysterious young man.\ntt0134983,iSio5xjSYqs,Nick returns from Titan 37 with a plan to destroy Larson and the alien object.\ntt0134983,p-tvo3Hz3nw,Kaela and Nick use the alien object to lure Larson to his death.\ntt0134983,rUbY9uikvWc,Nick and Larson disagree about the best way to handle the alien object.\ntt0134983,edhJGqAjG7s,\"With only one chamber remaining, Nick and Kaela make the dimension jump together, with surprising results\"\ntt0134983,DC_6r5VR5_U,Nick brings Kaela a bottle of pear brandy as an aid in seduction.\ntt0134983,S_QFbRtEF7I,\"Yerzy tries to get to the alien object, but Karl has other ideas.\"\ntt0134983,86xtQC4rp98,Kaela examines Nick and encourages him to interact with the rest of the crew.\ntt0062622,Gfje9_QRQbk,\"Having gone from Jupiter and beyond the infinite, Bowman arrives in a strange bedroom with Louis XVI-style decor.\"\ntt0062622,XDO8OYnmkNY,\"Believing they're talking in private, Bowman and Poole discuss disconnecting the Hal 9000 computer, but they don't realize Hal can read their lips.\"\ntt0062622,Wy4EfdnMZ5g,\"The Hal 9000 computer refuses to obey an order from Bowman by simply responding in monotone, \"\"I'm sorry Dave, I'm afraid I can't do that.\"\"\"\ntt0062622,_XuDmoP5scY,\"As Dr. Dave Bowman – now an elderly man – lays on his death bed, the monolith appears, and the star child is born.\"\ntt0062622,avjdKTqiVvQ,\"Using a bone as a weapon, an ape beats down the leader of another tribe to reclaim control of a watering hole. Triumphant, the ape tosses the bone into the air which transforms into an orbital satellite, jumping ahead four million years of human history.\"\ntt0062622,HH37JTBpi2A,\"When Bowman disconnects Hal 9000's memory core, Hal regresses to its earliest programmed memories.\"\ntt0074559,96IU0EisCes,\"Holding Chuck at gunpoint, Dr. Duffy reveals the master plan behind the creation of the human duplicates.\"\ntt0074559,BkZ6lFCzAwM,Chuck and Tracy discover that the scientists at Futureworld have made robotic replacements of them.\ntt0074559,M4LidfkbW68,\"Tracy dreams of a daring rescue by, and a torrid affair with, the Gunslinger.\"\ntt0074559,NBfCeTdLDbQ,Duffy explains to the media how the robots malfunctioned at Westworld and the other parks.\ntt0074559,yR3zsO8pCMw,\"Harry is brutally murdered by Chuck's robotic doppelgänger, as Chuck watches helplessly from afar.\"\ntt0074559,QC5re6k5nLk,Ron asks Tracy if she plans on having sex with a robot.\ntt0074559,Cq2Wzdd_PYs,Tracy has her brain images recorded while Chuck and Duffy watch.\ntt0074559,WhT70B0c7TE,Chuck and Tracy trick Dr. Schneider and escape.\ntt0074559,uDAIoSeEoZA,\"Chuck tries to make a truce with Tracy, while also hitting on her.\"\ntt0074559,BuPdA_CDITw,\"Hoping to make a point, Tracy tries and fails to seduce a robot technician.\"\ntt0074559,hfzsR-3PLcg,\"Chuck and Tracy walk through Futureworld and do a little \"\"boxing.\"\"\"\ntt0074559,S4WqfcnVT2g,\"Dueling with his robotic doppelgänger, Chuck tries to lure it into a trap.\"\ntt0983193,R3KOKpvoLIo,Captain Haddock's pirate ship gets entwined with another ship.\ntt0983193,93U_80mhzVk,Tintin passes out at the worst possible moment.\ntt0983193,UsM7OBEMqnk,Haddock duels Sakharine.\ntt0983193,kXXnZuu72DA,\"When Tintin is kidnapped, Snowy races to his rescue.\"\ntt0983193,oAjKMLcDlfc,Tintin races after Sakharine.\ntt0983193,SHaByZZvfFE,\"When their plane starts going down, Captain Haddock finds a unique way to power it.\"\ntt0983193,gQ48-nl8wwc,Tintin continues to chase after the map fragments.\ntt0983193,xUHjhz5U1bA,Captain Haddock duels to a fiery finish.\ntt0983193,O7S9X8e2uhA,Captain Haddock has too much alcohol.\ntt0983193,02AyhONR_DQ,Tintin attempts to get the key without waking the sailors.\ntt2279373,RRDbQPvtAxY,Plankton sneaks inside the mind of SpongeBob in order to find the secret formula to the Krabby patties.\ntt2279373,H92n6qsNHbY,Plankton uses teamwork to help his friends fight against Burger Beard.\ntt2279373,RxyMbaDX22g,SpongeBob and the gang get super-powers from the storybook and take on Burger Beard.\ntt2279373,gs3GHB24IaM,SpongeBob and Plankton go back in time to look for a way to find the Krabby Patty recipe.\ntt2279373,32OSGQmjP1Y,SpongeBob and Patrick face off against Plankton in order to stop him from stealing the Krabby patty recipe.\ntt2279373,ctjucF9fiFw,SpongeBob and Plankton try to help Bubbles and get into trouble.\ntt2279373,5TG1Wh04D1g,Bubbles interrupts the theme song with a rendition of his own.\ntt2279373,W3x0ZxDSF38,SpongeBob Squarepants and his friends are transported to land so they can find whoever took the Krabby patty secret recipe.\ntt2279373,3FKMUa7vCZU,Mr. Krabs tortures Plankton using the annoyingness of SpongeBob Squarepants.\ntt2279373,tPJJlCdrJ0M,Burger Beard goes after SpongeBob and his friend after they try to take the Krabby patty formula back from him.\ntt3095734,woSj0M9Decw,Creech takes to the roof to escape the clutches of Burke and his men.\ntt3095734,YmC-BayMaDg,Tripp and Meredith rush to escape Burke and his men from stealing Creech.\ntt3095734,iNQYIdE6DOg,Sheriff Rick comes to the aid of the gang as they race to get Creech and his family home.\ntt3095734,4QR_9BehbWc,Tripp and Meredith team up with Dowd to free Creech and his family.\ntt3095734,W1w1qcvdTi8,\"Unsure of what is chasing him, Tripp tries to trap the monster in a car compactor.\"\ntt3095734,xNNd9Uc9J_8,Tripp and Meredith rush to escape Burke and his men.\ntt3095734,D_N9S0bAiWI,Tripp and Creech get in a monster truck wrestling match.\ntt3095734,uioT_3dqzXc,Tripp and Creech race to get his family back to their home deep inside a chasm in the Earth.\ntt3095734,N27ZYQKRYnQ,Tripp and Meredith bond with Creech on her ranch.\ntt3095734,Ig6hIs0jsjg,Tripp and Meredith have trouble with Creech after he gets souped up on gasoline.\ntt2202750,jBMb3PU-2-w,The puppies try to escape after accidentally trapping themselves in the garage.\ntt2202750,R07vQvbALWk,\"After finding a nice feast of trash, the hungry puppies are confronted by a gang of mean, stray dogs.\"\ntt2202750,FJ_NU1sSk5A,\"The puppies try to call 9-1-1 to find their mom, but while doing it they see a group of kids breaking into their home.\"\ntt2202750,3XX9d9BO5qs,\"After being tricked into breaking into a family's home, the puppies must stall while trying to get Oliver out of the house.\"\ntt2202750,FqtEB6j5jEQ,\"Oliver loads the puppies in a wagon, and bikes them around town in search of their lost mother.\"\ntt2202750,jhMCxDi0Xs4,\"With Frankie's fiendish plot firmly in motion, it's up to the puppies and Oliver to stop the crime and catch the criminals.\"\ntt2202750,1rVMJNSZHZg,Oliver is caught and introduced to the slime-ball Frankie who lets Oliver on on his devious plan.\ntt2202750,RruqW_fwhEg,\"With their mom away, the golden retriever puppies take the chance to run around the house and play freely.\"\ntt2202750,oKdCaLj8b5o,Oliver and his parents celebrate Christmas Day with the puppies and their mother.\ntt2202750,IRdxr5ilGfw,\"Frankie reveals his master plan to steal $10,000 from charity, and how the group of kids will be used to help him.\"\ntt3860916,fn9gU50qXvU,Danny faces off against a Monster Truck in a demolition derby.\ntt3860916,cqUpOLpJ1iU,\"Danny, Cabigail, and Vin make a plan to escape from juvie.\"\ntt3860916,q_Gp2jL-V6I,Cabigail voluntarily joins Danny on his way to Juvenile Detention.\ntt3860916,o2GcoDvPVuA,\"Danny and Cabigail come across a being calling itself the \"\"Spirit of the Forest\"\".\"\ntt3860916,y8cL18qVz6E,Carlotta laments life on Clunker Island.\ntt3860916,qTwgG6t94Ko,Danny laments the life of an adolescent convertible.\ntt3860916,ITaBaJEJLaA,Danny must defeat the Monster Truck again in order to free his dad from Clunker Island.\ntt3860916,UpYME9Wz8Xc,Danny and Cabigail finally arrive at Clunker Island but are stop by a tribe of junk cars.\ntt3860916,l12dwyHThc8,Vin shows Danny how to break some rules.\ntt3860916,E9smjLi8m28,Danny and his father have an argument after he is caught drag racing.\ntt0938283,Cm5NLiqmVtk,Zuko faces off against Katara while Aang meditates.\ntt0938283,KMOr9s3kfM0,Aang enters the Avatar State to defeat the Fire Nation.\ntt0938283,CYGCwkmaa1s,\"Aang is a master of waterbending defense, but he struggles with offense.\"\ntt0938283,Nqt6-rPGGEo,The Avatar must escape after being captured by Zuko.\ntt0938283,Px2L96GVrKs,Zuko and Commander Zhao face off.\ntt0938283,kU74wgKk8lo,Commander Zhao commits sacrilege in order to ensure victory for the Fire Nation.\ntt0938283,bvnOqxRHjuc,Zuko fights Aang to regain his honor.\ntt0938283,vejLIHky2HE,Princess Yue relinquishes her soul to save her kingdom.\ntt0938283,Gif5ZnaOOQ8,Aang and the Blue Spirit fight Fire Nation soldiers as they escape.\ntt0938283,HR2kbOK8i6I,Aang rallies the prisoners of a fallen Earth Tribe village.\ntt0082348,J-fa9awvFBY,Morgana and Merlin discuss the secrets of Magic. Gawain accuses Guenevere of an affair with Lancelot.\ntt0082348,3mNDakZu1JA,\"Merlin shows Morgana his lair, but ends up impaled by Excalibur when Arthur discovers Lancelot's betrayal.\"\ntt0082348,2C8fB8p6crY,King Arthur and Lancelot do battle and Arthur calls upon the power of Excalibur to gain the upper hand.\ntt0082348,bKbZTFrWing,\"Merlin comes to Morgana in a dream and convinces her to use a spell which causes her to age rapidly, and confuses Mordred.\"\ntt0082348,61nCIyBCmjg,\"Perceval seeks the Holy Grail to save King Arthur from the curse laid on him by his evil sister, Morgana.\"\ntt0082348,Af-N8CLLoqU,King Arthur meets a stubborn knight Lancelot and they battle for dominance.\ntt0082348,7ZEqMqBLOOI,King Arthur and the Knights of Camelot fight for their kingdom.\ntt0082348,H2hbov4Rb6g,Merlin and King Arthur speak to the men after their victory and forge plans for Camelot and the round table.\ntt0082348,XAIeh0YarFs,King Arthur gives Sir Uryens the choice to give him his Knighthood and swear allegiance to him as King or strike him down and claim the throne for himself.\ntt0082348,4gO9OFumO8U,\"Lancelot escorts Guenevere to her wedding, but things get complicated when Lancelot professes his love for her.\"\ntt0026714,7dgOcvrxxac,Puck addresses the audience at the conclusion of the story.\ntt0026714,cv8yjJQg4Nc,\"Hermia is confounded by Lysander's change of heart, and Helena is convinced that her suitors are mocking her since neither loved her before the spell.\"\ntt0026714,31vkz05skoc,Hermia awakens to find that Lysander is gone.\ntt0026714,p6IvB-2jYtY,\"Titania wakes from her slumber and falls in love with Bottom, the first thing she sees.\"\ntt0026714,Xurw2Ar9NNk,Oberon plans to meddle with the affairs of Demetrius and Helena after eavesdropping on their quarrel.\ntt0026714,9dN7jGSbsVE,Oberon gives the mischievous Puck a task to perform.\ntt0026714,2GFzqqC8iUg,Helena is wooed by both Demetrius and Lysander when the fairies place both men under the same spell.\ntt0026714,U0HHhK_MrWg,Hermia makes a fuss about being pressured to marry Demitrius when she really loves Lysander.\ntt0026714,wsFQrTAEs7A,The lovers all wake from their spell and rejoice in thinking it was all a dream.\ntt0026714,yJ_3DswWIeI,Oberon reunites with Titania after lifting her spell and fulfilling his plot.\ntt0026714,sZ6t_-wKImw,Puck transforms an unsuspecting Bottom into a donkey.\ntt0026714,9nwSOUvKyys,Puck puts a spell on Lysander when he mistakes him for the Athenian.\ntt4912910,585p7sJhiFk,\"During a shootout, Walker stabs IMF Secretary Alan Hunley and escapes.\"\ntt4912910,mqkYeGeQ1f4,Hunt and his team free the notorious terrorist Solomon Lane from the French authorities.\ntt4912910,0pUMzDEV-DE,\"Hunt and Walker attempt to parachute into a party, but hit some bad weather along the way.\"\ntt4912910,egwR6gS9UMM,Ilsa saves Hunt and Walker after their suspect gets the upper hand on them.\ntt4912910,HsMVFxZ43iU,Benji leads Hunt on a chase around London to catch up to Walker.\ntt4912910,WLKpgzXHKLA,\"While Ilsa fights Solomon Lane, Hunt crashes his helicopter into Walker's.\"\ntt4912910,Veh9KV9fm6s,Ilsa chases after Hunt and Solomon Lane.\ntt4912910,14zxmnIDoLs,Hunt violently commandeers a helicopter in pursuit of Walker and the nuclear detonator.\ntt4912910,kvzzBebEAHQ,\"With the clock quickly ticking, Hunt fights Walker for the nuclear warhead detonator.\"\ntt4912910,Qwx9wZgxUoQ,Hunt leads the French authorities on a chase through Paris.\ntt1205537,wn_8YBvVugo,Cathy gets kidnapped by Viktor Borovsky.\ntt1205537,WC7TpzxGktk,The Russian government activates a family of sleeper agents in their attack.\ntt1205537,8n6mcd5Odj8,Jack Ryan escapes with some help from Harper.\ntt1205537,GQYCNF_zoDM,Viktor taunts Jack Ryan by promising to kill Cathy.\ntt1205537,8NZ9CLszc_g,Jack Ryan fights off an assassin in his hotel room.\ntt1205537,tuusFUTcCO8,Jack Ryan's chopper is hit by an enemy missile while in the mountains of Afghanistan.\ntt1205537,relfjwjhscE,Jack Ryan saves New York from a terrorist plot.\ntt1205537,nEGbOGGiENU,Jack Ryan chases after a terrorist in a disguised police van.\ntt1205537,fKaiHVTL5nQ,Jack Ryan fights a terrorist in the sewer.\ntt1205537,0zsUFpPjt8g,Jack Ryan enacts his plan against Viktor.\ntt2538128,uqfD6UPvkR8,Steve and Lacey reach a obstacle on their journey that could come between them getting to the kids.\ntt2538128,9cw9NI4BKnQ,Steve and Lacey rescue a group of survivors from an incoming ice cyclone.\ntt2538128,fD3pjFbgcyc,Steve and Lacey race to escape the overflowing tunnel.\ntt2538128,bK_2x293Urw,\"Ryan rescues Taryn before ceiling caves in, yet there's no escaping from danger as buildings outside crumble.\"\ntt2538128,tRuqSw7mX5A,Ryan and Taryn receive a phone call from their father Steve and his girlfriend before getting caught in a freakish hail storm.\ntt2538128,pHH7NwBwxM0,Taryn trapped in a building as her brother Ryan rushes to find help before it collapses.\ntt2538128,_NEfPBtUqS4,Colonel Ralph and others rescue Steve and his family after their helicopter crashes.\ntt2538128,0ZkuRt2ZKRE,\"After being captured by UN soldiers Taryn, Ryan and Angelique up in more danger than before.\"\ntt2538128,h08whCp_tL4,\"Taryn and Ryan, in search of a way to keep warm, are greeted buy an angry store owner.\"\ntt2538128,5zzYjkS_iMA,Tayrn and Ryan are headed to the store to stock up on supplies when an earthquake erupts through Paris.\ntt0101452,y64QBxHJiqI,Bill and Ted introduce their band mates to the Battle of the Bands including the Grim Reaper on bass.\ntt0101452,R81ZAKQzJ5Q,Bill and Ted are visited by their evil robot copies.\ntt0101452,pLqoZtmyxxk,Bill and Ted watch as the two Stations merge into one giant being.\ntt0101452,_ZwkQIBp4TA,Bill and Ted crash Missy's new-age seance.\ntt0101452,EGbVLHy9Lvw,\"Bill and Ted ask God for help in saving their women, and they congratulate him on \"\"Mars, Jupiter...Uranus.\"\"\"\ntt0101452,06L5y4Z9KcE,\"At Bill's urging, Ted leaps into his dad's body to address a roomful of cops.\"\ntt0101452,S-WVZ-d28yg,\"With the help of Station's robots, Bill and Ted destroy their evil selves and rescue the babes.\"\ntt0101452,vLt5ei598CY,Bill and Ted drop down a deep hole to hell.\ntt0101452,tktoOXBmflI,Bill and Ted square off against the Grim Reaper in a series of party games.\ntt0101452,OAtwRoFSlOE,Bill and Ted wind up dead and meet the Grim Reaper.\ntt0109045,OroiRWIR2gQ,\"Bernadette has words with a surly woman at the local bar, and then later beats the woman in a drinking game.\"\ntt0109045,ZreZzV7y18Y,\"Felicia performs opera atop the bus, and then later shares a darkly humorous childhood story with Tick.\"\ntt0109045,p2QiCFAQ-qQ,\"Priscilla, Queen of the Desert.\"\ntt0109045,X5dtBoyZ33o,The drag show at the bar gets upstaged by a raunchy ping-pong performance from Cynthia.\ntt0109045,kevJJDQloNE,\"Bernadette, Mitzi, and Felicia make their grand performance.\"\ntt0109045,v0gGWiRkjYM,\"The guys get an Aboriginal Man in on their campfire performance of \"\"I Will Survive.\"\"\"\ntt0109045,ec9h1IjltJg,The group fulfills a long-held dream of Adam's to climb Kings Canyon in full drag regalia.\ntt0109045,9nc12yOA4jM,\"Felicia dresses up and goes out for a night on the town, despite being warned about the rough neighborhood.\"\ntt2136808,IOV2-bbOHts,Ross meets Mellony Adams to apologize for putting her sex tape online and ask for her help.\ntt2136808,Gpc4_pqXMVo,Ed confronts Ross about losing his girlfriend and not wanting to do porn causing the two friends to get into a fight.\ntt2136808,fin0EY5-n_s,\"Ed, Ross, Kwan, and Marcus find out that their friend has stolen their sex tape and put it online.\"\ntt2136808,wCmL4G9TYMk,\"Ross, Ed, Kwan, and Marcus confront Doug about him putting Ed's sex tape online.\"\ntt2136808,59-Yznur6tg,\"Ross, Ed, Kwan, and Marcus head to a local comic and science-fiction convention to find a former actress who might want to star in their next sex tape.\"\ntt2136808,mr0RZ7hUrpU,Danny Silver comes to the guys with a new proposal for their joint sex tape venture.\ntt2136808,Zb10goz7guA,\"Ed meets the drunk, stoned, and lustful actress Mellony Adams.\"\ntt2136808,nX4t6GMjNqg,\"Mellony Adams fires her agent Danny Silver, and gives him a parting gift he'll never forget.\"\ntt2136808,BSmKQGvL9ho,Mellony Adams' agent bursts into the guys' house and threatens them after they made an illegal sex tape of the actress and put it on the internet.\ntt2136808,2JweD72Ains,Ed apologizes to the gang and gives them the good news about Danny Silver while Kim and Ross get back together.\ntt0058586,TmALN8vdU0s,Clouseau is awakened by a surprise attack from Cato.\ntt0058586,QsSD6_V2IYk,Clouseau interrogates Ballon over a game of billiards.\ntt0058586,E3yX8lT2UAI,\"After Clouseau and Maria are caught naked in a traffic jam, Clouseau is demoted by Dreyfus.\"\ntt0058586,ZjPPfwVPTDE,\"Clouseau searches for Maria at a resort, which he discovers to be a nudist colony.\"\ntt0058586,eRNCIg86DKs,Clouseau reviews the case with his usual clumsiness.\ntt0058586,xYfxboRtKJE,\"While exploring a nudist colony, Clouseau encounters a corpse.\"\ntt0058586,0oFdsgLP8n8,Clouseau reviews the facts of the Gambrelli case with Hercule.\ntt0058586,TIu_CYwemFo,Dreyfus tells a psychiatrist his troubles.\ntt0058586,sSRmhI94MUs,\"Before leaving the Ballon residence, Clouseau attempts to return a pool cue to its rack.\"\ntt0058586,N9d-c9ooO7s,Clouseau sets his trench coat on fire as he flirts with Maria.\ntt0058586,ebkY0u1-NKk,\"Clouseau recounts the murder, trying the patience and pain threshold of his listeners.\"\ntt0078163,DdpMl3_vPmQ,\"The bird-brained Clouseau receives a medal for his \"\"exemplary\"\" service.\"\ntt0078163,dX0dcSJE7ek,\"When the Inspector and Simone need disguises for their trip to Hong Kong, they turn to the great Balls.\"\ntt0078163,WT6DQ_NO5zw,\"When Clouseau's cover is blown, he and Cato are chased through the shipyard and end up in the water\"\ntt0078163,CARc1uUq1lA,\"Clouseau goes undercover as a one-legged Swedish sailor, complete with blow-up parrot.\"\ntt0078163,nAuz36A1zG0,\"In his attempt to best Cato, Clouseau accidentally takes out the intruder, Chong.\"\ntt0078163,0z-FtAMg6Vw,\"The Inspector and Cato fire up their super car, the Silver Hornet.\"\ntt0078163,shE7b_6NNpU,\"Douvier hires a Hong Kong assassin, Mr. Chong, who demonstrates his abilities by taking down other contracted assassins.\"\ntt0078163,BEKzJzaZ0Fk,\"Still smoking from the bomb attack, Clouseau accidentally burns down the Commissioner's office.\"\ntt0078163,q8HcMk_IimM,Inspector Dreyfus chases Clouseau into a fireworks factory with the mob on their tail.\ntt0078163,haX0ACElUQc,\"The Inspector accepts a special delivery at Professor Balls' shop, only to find out it is a bomb!\"\ntt0078163,XRtuUFYTctA,Clouseau's fight with Cato is halted momentarily when he receives a phone call from his contact.\ntt0078163,oc8bWybEFFI,The good Inspector finds himself in a brothel run by Cato where Tanya the Lotus Eater whips him into shape.\ntt0051786,UmynxNlSRaE,Keinholz investigates some strange noises only to discover that their source is the monster.\ntt0051786,Im39PGAb82I,The crew attempts to kill the monster by popping the spaceship's airlock to drain the oxygen.\ntt0051786,QbOo_FctFu4,Bob Finelli is killed by the monster while trying save Calder.\ntt0051786,18ARBQLResg,Maj. Purdue finds Gino barely alive in a tunnel just before engaging the monster in a fire fight.\ntt0051786,YPIfHEdHjHI,Col. Van Heusen further questions Carruthers about his dead crewmen and what happened on Mars.\ntt0051786,7vWLiI04VCw,\"The crew attacks the monster with gas, but nothing seems to work.\"\ntt0051786,gPJFxEvmHpQ,\"Wearing spacesuits, Calder and Carruthers walk along the outside of the ship as the crew inside distract the monster with talk and footsteps.\"\ntt0051786,T69FlogsAGI,\"Col. Van Heusen has the crew sound off as they prepare to depart Mars, but something has stowed away.\"\ntt0051786,3reg2k9xS9k,A government spokesman explains to a press conference the details of Colonel Carruthers' time on Mars and his controversial return.\ntt0051786,2gzVWIUhUOg,Calder fends off the monster using a blowtorch while he waits for help with a broken leg.\ntt0051786,CsOM7mptOLM,The crew fires on the monster through an open door before retreating.\ntt0051786,5W_sktmZuzI,A final letter explains the monster attack and warns of the dangers of Mars colonization.\ntt5160954,yNmBX5mZvRw,Weird and worrisome things start to happen as they look for Damian in the dark.\ntt5160954,h36wtoBcAS8,\"Practicing for their web show, Jonas teaches how to use rope, but Damian teaches it more entertainingly.\"\ntt5160954,nPJFSx8RTzo,\"The guys keep coming up with survival tips, whether they can pull them off or not.\"\ntt5160954,j_txRPwTvpk,\"While still attempting to film their series, Damian suddenly gets aggressive before unleashing a mind straining energy.\"\ntt5160954,0z9b9_n8-Ek,Damien attacks everyone he sees.\ntt5160954,6KYxDFGC2hE,Damian has some thoughts on his friends mothers while talking to the camera.\ntt5160954,1lxY4Sc9eNg,\"While looking for Damien, the guys discover only dark clues before finally see's the strange and powerful thing that he has become.\"\ntt5160954,QBUTO2RVjXU,Alien assimilation beams rain down from the heavens.\ntt5160954,WcmMx1_lQmA,The guys meet a hunter out in the woods who is more than willing to show off for the camera.\ntt5160954,7RSJehegfZw,Rhodes runs for his life from his possessed friend before realizing that running is useless.\ntt1679335,5RKld6BGJA4,The Trolls give Bridget a makeover in the hopes of getting King Gristle to notice her.\ntt1679335,En7TapBA84M,Poppy and Branch meet Cloud Guy as they search for a safe route to Bergen Town.\ntt1679335,wwnqJH8OF-I,Poppy invites a very curmudgeony Branch to her blowout party.\ntt1679335,9hPgjW2ou9E,Poppy and Branch show the Bergens how to be happy from within.\ntt1679335,wWRnv1V8iUY,The Bergens head to the Troll Tree on Trollstice in the hopes of eating the Trolls and experiencing happiness.\ntt1679335,3Y-pMJ4IcTY,Branch tries to heal Poppy by revealing his feelings for her in song.\ntt1679335,DNHmujbuC74,The Trolls try to bring out the best in Bridget while on her date with King Gristle.\ntt1679335,9nOc2GqCQ2Y,Poppy invites the entire village to have the biggest party ever.\ntt1679335,gtHhlD6p8BY,Poppy throws a rager of a party which attracts the attention of a dangerous spectator.\ntt1679335,7aYOGUPabd8,Poppy tries exploring the forest herself and finds it's a bit harder to navigate than she expected.\ntt8560130,4UC_5gXVXUk,Squeak empties his mind and saves the day.\ntt8560130,_f7p28YFgvc,Squeak isn't good at his job.\ntt8560130,rpPm4pAJQbc,Squeak begins his mission.\ntt8560130,0N7ilB9wX3o,Squeak can't keep focused on the mission when he only has one thing on his mind.\ntt8560130,nc0LwkqYGpM,Crazy Robo Cat threatens the Space Guardians.\ntt8560130,gq6JKq3Q_uw,Squeak falls into a familiar trap.\ntt8560130,xYHBAXUJ-Zs,Squeak might not be a good fit for samurai training.\ntt8560130,DKtupzAQYv4,Crazy Robo Cat enacts his evil plan.\ntt8560130,G8FhdcsVB_o,Professor Mucus troubleshoots his machine.\ntt8560130,kdbRwpxZHJY,Commander Ham Sanders reveals his amazing secret.\ntt6408946,0yngsYrBCLg,Genevieve the Goat recites 'The Goose With The Golden Eggs'.\ntt6408946,WcsyV7eMrGI,An owl tells the 'The Tortoise and the Hare' to the Easter Bunny and Wilma the Chicken.\ntt6408946,SuSUwDgtq1g,\"Billy the Hog tells the stories 'The Wolf and the Shepherds', 'The Goat and the Goatherd', and 'The Miser and His Gold'.\"\ntt6408946,xsHxWhCydMI,Horace the Horse tells the Easter Bunny and Wilma the Chicken the story of 'The Wolf and the Kid'\ntt6408946,xwfJyzB6dow,Donna the Cow tells the story of 'The Lion and the Mouse'.\ntt6408946,rS-P78D5US4,\"Frida the Frog tells stories that give insights on war, preparedness, and loyalty.\"\ntt6408946,1maNhuFVhmk,Vincenzo the Bull tells two fables including 'The Travelers and the Sea' and 'The Wolf and the Lion'.\ntt6408946,msSsPzKVzW0,Donna the Cow tells 'The Boy Who Cried Wolf' to the Easter Bunny and Wilma the Chicken.\ntt6408946,rYS9mUCFOAk,A bee tells the Easter Bunny and Wilma the Chicken the fable of 'The Wolf and the Lamb'.\ntt6408946,Afwy5S9__0E,Millie Mouse tells the fable 'The Rat and the Elephant' to the Easter Bunny and Wilma the Chicken.\ntt9004516,8fizKw4z9fI,Boo Boo uses the 'Sauce' to read the mind of Princess Sparklefeather.\ntt5936438,J03m0CzUvJU,Dr. Bones & Shortstack make a critical mistake across the time stream.\ntt0312004,xI-ehlRwN8o,\"Gromit saves the Were-Rabbit from being shot by Victor, and then the Were-Rabbit saves Gromit from crashing to his death, but does this mean the end for Wallace?\"\ntt0312004,aTxu-zthTgs,\"Gromit hijacks a children's carnival airplane in an attempt to save the Were-Rabbit, but Victor's dog won't let that happen so easily.\"\ntt0312004,5Tqsh3b_lb4,\"Wallace attempts to use his latest invention to brainwash rabbits to dislike vegetables, and it seems to work, but at what cost?\"\ntt0312004,BgCgiRitEmM,\"Gromit chases after the monstrous were-rabbit, but the giant rabbit gets away by digging a tunnel.\"\ntt0312004,-nk6Gs6Z_Bo,Wallace transforms into the were-rabbit while fighting Victor.\ntt0312004,f9wFKCfic8Q,\"At the vegetable contest, Gromit draws the Were-Rabbit away from the entries by sacrificing his prized melon.\"\ntt0312004,Jmf4o8UalVM,\"Wallace wakes up to find that he's sprouted ears, and that the rabbit they've captured he sprouted a vest and a love of cheese!\"\ntt0312004,zZLAinjBShg,Gromit feeds the rabbits and Wallace a very similar breakfast.\ntt0312004,E7fMOxGw-dw,Lady Tottingham swings by Wallace and Gromit's house just as Wallace begins transforming into the Were-Rabbit.\ntt0312004,egTtyS-PlRM,\"At Tottingham Hall, Wallace and Gromit use the BV6000 to vacuum up all the rabbits, and also Lord Victor Quartermain.\"\ntt9004516,DECG3af2qh8,\"Nuke, B-52, and Squeezy Whistle find themselves face to face with an idiot space warrior.\"\ntt9004516,YsCeolAfbLw,Boo Boo Squeal uses the sauce to banish Tar Tar.\ntt9004516,LJym4mTtLRY,\"Nuke and Squeezy Whistle teleport to Bongo Bananas' secret world, and meet the mysterious mentor.\"\ntt9004516,HOjApJYsWC0,\"Nuke hears a mysterious voice that tells him what he must do to find the ultimate truth, and he gets teleported to a spaceship.\"\ntt9004516,4vekUOykIvw,\"The \"\"chosen one\"\" Felipo, Nuke, B-52, and Squeezy Whistle defeat the evil Boo Boo Squeal and his \"\"Sauce\"\".\"\ntt9004516,qMaZAi73HDo,Nuke and B-52 maneuver around an asteroid field and teleport into the 'Sauce Dimension'.\ntt5936438,b_aJy2SE60E,Dr. Bones & Shortstack meet a moronic dinosaur.\ntt5936438,YprQvoOj6wM,Shortstack gets the time-travel formula from a scientist chicken.\ntt5936438,JHAtw0HRhho,\"Back in the time of dinosaurs, there was a magic bone that was so delicious, so legendary, wars would be fought over it.\"\ntt5936438,6kN5IkXFwcQ,Captain Adventure Cat argues with his clones.\ntt5936438,GqGPu-X3cv8,Dr. Bones & Shortstack get themselves in trouble.\ntt5936438,ag2wbvh5VDs,Dr. Bone & Shortstack travel to the time of dinosaurs.\ntt5936438,IgeW0MPX60Q,Shortstack finds herself timewarped to the American Civil War.\ntt5936438,--hendERqm0,Dr. Bone gets his picture taken.\ntt5936438,pkogDQ3CK9E,Dr. Bone recounts his horrible war stories.\ntt3604958,0D35LZ4UBX8,\"David and Muhammad share music with the children of Israel, giving them home.\"\ntt3604958,BUB6TUH7N0A,\"Israeli & Palestinian teens sing about peace, love, and understanding.\"\ntt3604958,5uEViMQGON4,\"Steve Earle performs and discusses his song \"\"Jerusalem.\"\"\"\ntt3604958,N6SPrarFcBA,Mina Awad discusses translation differences between Hebrew and Arabic.\ntt3604958,hYIWCm-Lpj0,David Broza and his friend introduce us to modern day Jerusalem.\ntt3604958,kvtsZ1Edkk4,David discusses his background in the Israeli army and the Lebanon War.\ntt3604958,HrFlTjySp8E,Muhammad Mughrabi discusses the sense of displacement inherit to life in Jerusalem.\ntt3604958,HC1LN5AgjRU,\"Mira and David sing the duet \"\"Midnight in Tel Aviv.\"\"\"\ntt5974388,n6zlrCAvNRg,\"Laila tricks Wissam into meeting her, Salma, and Nour, his victim.\"\ntt5974388,7sQRpVCnRto,Laila connects with Nour.\ntt5974388,Vez07Q0O7c0,Leila courts Ziad.\ntt5974388,v5oVPhcW9nk,Salma takes her secret girlfriend to a dinner with her family.\ntt5974388,ClUoUHjr-zE,Laila and her boyfriend Ziad argue over how conservative she is.\ntt1928329,ZCU-wmL_XNw,Martirio reluctantly accepts a late-night client.\ntt1928329,up86hjG02yU,Bordalo and Pedro find the remains of a slaughter and are shocked by their barbarous companions.\ntt1928329,pDdLHI3b7lI,Pedro escapes an infirmary as the French approach and comes across a house in his hometown.\ntt1928329,oUrT0qTcHBE,Clarissa seduces Portuguese officer Major Foster.\ntt1928329,R-ciRNPLhWE,Xavier is surprised to find Martírio in his tent while trying to sleep.\ntt1928329,YJjM9EMhQ1E,The Duke of Wellington explains his embarrassment over having a food named after him.\ntt1928329,lMZzHaUh_Bc,\"Xavier proposes to the widow of his close friend, Maureen.\"\ntt1928329,Nc6K_D4rtGU,Maureen shoots a lame horse.\ntt0064395,XNwDyM81lSE,The Garrett boys start a shoot out with Chris and Keno over a stolen horse.\ntt0064395,tY5el7dZ9H0,Max pleads with Lobero to help the gang fight the military and rescue Quintero.\ntt0064395,-5twCD8tAMc,\"Col. Diego is convinced by Quintero to let the prisoners go, but on one condition.\"\ntt0064395,LVvJj9sDilQ,The gang have a friendly game of cards.\ntt0064395,WLE2QEOBde4,\"While looking for members to fill their crew, Chris and Keno find Slater performing an act at a carnival.\"\ntt0064395,yQ62WM_w2iM,\"Realizing they need more support, The Magnificent Seven frees a prison gang from the military carriage.\"\ntt0064395,q3Vvto0REuc,Max offers Chris and Keno a job to help him rescue Quintero.\ntt0064395,yWP5eC822Ac,Col. Diego tortures a group of men buried up to their necks by having his men trample over their heads.\ntt0064395,i3yO0OagpNY,The gang coordinates an attack against Col. Diego and starts it off with a bang.\ntt5091014,M669rZIUGIs,Jasper tells Charlie about his life to this point.\ntt5091014,7DnCFrbE88A,Ruth has a unique punishment for Charlie.\ntt5091014,MO7Sa_dI0SM,Charlie rushes to meet Eliza after promising to meet her.\ntt5091014,VD704T-c64c,Jasper wakes Charlie in the middle of the night asking for help.\ntt5091014,UpWvuwMabSA,Jasper and Charlie stake out the home of Mad Jack Lionel.\ntt5091014,UxVY9CTaNNQ,Charlie sneaks onto the farm of a suspected murderer.\ntt5091014,oX3yOgEmFOI,Jeffrey shows his athletic prowess to the racist crowd.\ntt1492842,UNLFpS_xEZI,Kevin goes bowling with Jamie.\ntt1492842,W7BLikBY5Ak,Kevin flames out after a one-night stand.\ntt1492842,dwK_rODYMrY,Kevin pushes things further than he should.\ntt1492842,rXxBQRh89AA,Jamie hits a low point in her battle with suicidal thoughts.\ntt4779682,VAmXYYSt6TM,Jonas faces the Meg in open water.\ntt4779682,xYIhxXt58uE,Jonas has a final showdown with the Meg.\ntt4779682,FovnKIV3VD0,Suyin uses a shark cage to confront the Meg.\ntt4779682,oiQPOmrEAxo,Jonas & Suyin launch their plan against the Meg only to end up trying to avoid being eaten.\ntt4779682,p3zb4fwFd3E,Meiying runs afoul the Meg.\ntt4779682,IxRCDx-YV4I,Suyin gets attacked while she tries to rescue the submarine crew.\ntt4779682,LZ6HA66dXVw,Morris bombs the Meg.\ntt4779682,ujA70PK6E7U,The Meg attacks China's Sanya Bay.\ntt4779682,sVfmACBWnIY,\"After killing the Meg, the group parties...too soon.\"\ntt4779682,QxReNyiIprw,Jonas & Suyin work to save a submarine crew.\ntt7681902,SWlYiOtP5mI,The relationship between Fred and his character Daniel is discussed.\ntt7681902,USWXF1XW2zo,Jeff Erlanger's parents reflect on the time their disabled son visited Mister Rogers' Neighborhood.\ntt7681902,uEW0FlmiNec,Friends and family talk about Fred's death.\ntt7681902,4cl5cWYmvgc,\"Friends and family talk about what sparked him to take on superheroes, and then start weeks on specific themes including divorce, death, and loss.\"\ntt7681902,wLuRwDl3MrE,Those close to him recall how 'Mister Rogers' Neighborhood' paralleled real world problems so children could understand them.\ntt7681902,pQv0ZtpRdNk,\"Coworkers, friends, and the man himself recount the special 'Mister Rogers' Neighborhood' episode after Bobby Kennedy's assassination.\"\ntt7681902,gMdTl2R354A,\"With PBS' budget on the line, Fred Rogers appears before the congressional committee and convinces the chair to give PBS the funding it needs.\"\ntt7681902,HPcr2gT_cnA,\"Friends and family think about what Mister Rogers would do in today's society, and look back on what he meant to them.\"\ntt7681902,K6O_Ep9bY0U,Francois Clemmons discusses his role on the show as a black police officer and the show tackling racial segregation.\ntt7681902,DqSBqfDgOsQ,François Clemmons discusses his genuine love and friendship with Fred Rogers.\ntt5218234,14pZQ6VASRI,Jens-Jürgen Ventzki talks about Heinrich Himmler and his family's cognitive dissonance.\ntt5218234,PmxzK5IzcaM,\"Natan Grossman recounts how his mother, father, and brother died, while the son of one of the men who condemned them to death listens on.\"\ntt5218234,BSXK08_Ivac,Natan Grossman learns that his brother most likely volunteered to go to the concentration camp to help lead a resistance.\ntt5218234,3ReLHqluiXY,\"the Nazi sympathizer who pretended to ignore the genocidal activities in his town, and the one who played games with his family.\"\ntt5218234,V9LA86HF3i8,\"Natan Grossman returns to the site of the Lodz ghetto, and recalls his father's death.\"\ntt5218234,Ud8doeLuJWk,The trains out of the Polish ghettos were places of abject misery.\ntt5218234,vxEvNuW12dk,Natan Grossman talks about the day the Jews of Zgierz were rounded up and sent to the Lodz ghetto.\ntt5218234,FvN03fXmnQU,\"Jens-Jürgen Ventzki talks about how much his father knew about what was happening in his town, and he visits the \"\"gypsy camp\"\" within the Lodz ghetto.\"\ntt6599064,bqUmYcmLCMI,Easy Rider is trained for the performance of a lifetime.\ntt6599064,jP6-fvz9W04,Ballerinas dance as delicately as falling snow.\ntt6599064,MsIWigAwas8,Ballerinas train to absolute perfection.\ntt6599064,HCNwZZ3Baus,\"Mikhail finally gets his chance to sing, closing out the season.\"\ntt6599064,3zgwoTgXXuc,The Paris Opera performs the greatest show of their season.\ntt6599064,daJzFEzxXos,Mikhail Timoshenko has a nervous meeting with another opera singer who happens to be his idol.\ntt6599064,pTxj-Dks1Mg,Mikhail Timoshenko tries out for the Paris Opera.\ntt6599064,O75p8X8YBtw,\"Aided by Easy Rider, the Paris Opera performs 'Moses and Aaron'.\"\ntt2833768,sUQ9cisQpaY,Friends of The Residents explain the origin of the eyeball-hats!\ntt2833768,fRNR8-FqzM4,\"What is music? To the Residents, it's whatever you want it to be.\"\ntt2833768,5RUWalajNYE,\"\"\"Randy Rose\"\" sings 'Give it to Someone Else' from their album 'Commercial Album'.\"\ntt2833768,t-B2zR5O5Ys,The Residents explore technology in order to expand their art.\ntt2833768,BCcw2q6KbbI,\"The Residents shot a weird, experimental film called \"\"Vileness Fats.\"\"\"\ntt2833768,9FAeJgWLKRo,\"Experts summarize the Residents to the tune of their song \"\"Neediness.\"\"\"\ntt2833768,cnwddNSgakk,The early days of The Residents's visualizations for their music.\ntt2833768,Nwru3-Uif_Q,\"On an open stage in San Francisco, The Residents perform their spellbinding first concert.\"\ntt0389790,jpEfgrff8z0,\"At the trial against the honey industry, Barry calls three witnesses, including Sting and Ray Liotta.\"\ntt0389790,7h-q7bXYD1c,\"Barry flies through the streets of New York City to get on board a truck heading to a honey farm, but soon learns from Mooseblood that life in the fast lane is tough for a bug,\"\ntt0389790,O4brzUAaTS0,The Pollen Jocks and the rest of the hive help Barry and Vanessa land the plane containing the last of the world's flowers.\ntt0389790,-nswXtzrfQU,\"Barry brings the bee smoker in as evidence, and Judge Bembleton rules in favor of the bees.\"\ntt0389790,3WmyeqVxCV0,\"After the bees win their case against Big Honey, they get all they could ever want, and begin to abandon their necessary duties which has devastating effects.\"\ntt0389790,74ZjOVz3gs4,Vanessa's boyfriend Kenneth tries to exterminate Bary.\ntt0389790,oNWAiWBup2Q,Barry goes out with the Pollen Jocks and pollinates the flowers of Central Park.\ntt0389790,vubylfvbMhk,\"Barry is berated while on the stand at his trial, so Andy loses his temper and stings the other attorney.\"\ntt0389790,IFBAXbrw31g,\"While out with the Pollen Jocks, Barry gets stuck on a tennis ball and caught up in a game.\"\ntt0389790,L46syxgju18,Barry introduces himself to Vanessa.\ntt1576379,BGOL5YmTrAY,The animals attack the boat of an evil logging company.\ntt1576379,-Qq6ZZy0yGg,A koati trains to fight the mechanical monster.\ntt1576379,phGwatUEyzc,The Dodo sings about the dangers of extinction.\ntt1576379,6VvluTE_w14,A mechanical monster attacks the jungle.\ntt1576379,ueMuCbXkDhw,A koati gets chased by dogs.\ntt1576379,Td3qZIf5Swg,A koati teaches a child about the wonders of the jungle.\ntt1576379,4Fa5YPKxwRU,Koatis recall an encounter with the monster and play together.\ntt1576379,eG2Yo0l78tM,The animals throw a surprise party for one of the koatis.\ntt1576379,p0CQcDumPh8,Flamingos get into trouble with snakes while koatis play games with each other.\ntt1576379,hudgzkYfSvU,A Parrot makes a deadly betrayal.\ntt5363648,GZauEya_plU,\"Cleo, Puffer, and Crash encounter some seahorses, and Cleo teaches Crash about them.\"\ntt5363648,aPFbf954LJ0,\"Cleo, Puffer, and Crash encounter a jellyfish bloom and learn a lot of cool facts about these strange creatures!\"\ntt5363648,qL5_xmtFVDo,Angie and Puffy get questioned by a dangerous and hungry eel.\ntt5363648,mT3_2sDEBJQ,Cleo talks about seals and sea lions.\ntt5363648,VTTj-7UumYk,Cleo teaches Puffer and Crash about frogs.\ntt5363648,jH07BdMRP0g,\"Cleo, Crash, and Puffer meet Breeze, and learn about sea turtles!\"\ntt5363648,NQcQ3bA_NXw,\"Cleo, Puffer, and Crash meet some shrimp and have to answer some questions about crustaceans.\"\ntt5363648,Uvm8N3wQDTo,\"Cleo, Puffer, and Crash swim into a school of sharks, and Cleo teaches Crash and Puffer about different types of sharks.\"\ntt1235522,_5kQ0ekY5l8,Mr. Buckley comes home to a grizzly discovery.\ntt1235522,Lbxeyn5IS8Q,Mike is accused by Susan of sexual assault in order to hide her promiscuity from her abusive father.\ntt1235522,3Sot46WTjcY,Skunk's brother Jed visits Susan to offer support for her baby.\ntt1235522,wVCf-70SKKg,Skunk gets into an altercation with Sunrise leading to even more trouble with her sister.\ntt1235522,WuvoHScKCR0,Bob prepares to go to jail after assaulting Mike.\ntt1235522,sZdVc2KAfWQ,Skunk witnesses an attack on her neighbor Rick after he is accused of molestation by Bob's daughters.\ntt1235522,9sSxcSntcyE,Skunk is held hostage by Rick after he has a mental breakdown and kills his parents.\ntt1235522,IIJZj1M4tN8,The Oswald Sisters accuse Rick of harming their sister despite having just been released from an institution.\ntt0102388,Gklme1-eQGE,Dani is horrified when she comes upon Marie holding the lifeless body of Court after an accident.\ntt0102388,sCSTQpBwqqs,Dani's efforts to get close to Court are complicated when he eyes Maureen for the first time.\ntt0102388,miJ26dYcbBw,Matthew returns home from the hospital with the news that Court has died.\ntt0102388,oT_RsXOPjTs,Court interrupts Dani's private skinny dipping in the lake and sneaks a peek when she leaves.\ntt0102388,YzIWoPLLktE,Court gets angry when he and Dani almost kiss in the lake.\ntt0102388,HYWSAtLFgXg,Court takes Dani for a wild ride on their way into town.\ntt0102388,TiQaVmutQwg,Court invites Dani into the lake with him and they jump in together.\ntt0102388,daVOnsL2wkU,Court gives Dani her very first kiss… and it's perfect.\ntt0102388,N7i4yZhm6V0,Maureen gives Dani some advice on boys and shows her how to practice kissing on her hand.\ntt0102388,R5wXxo6yIU4,Dani and Maureen discuss their fears and lament growing older.\ntt0102388,oefn8TJ3_H8,Matthew tells Dani to reconcile with her sister.\ntt0102388,pUPliO3qy04,Maureen and Dani have a heart to heart and Maureen assures her that they'll always have each other.\ntt5758778,UAoJ_mv0Pqo,\"Will reunites with his wife Sarah, and she has to cross a fallen bridge to rescue their son.\"\ntt5758778,ioUedV29CQE,\"After learning that Ben set him up, Will has to escape a crew of ruthless international henchmen, but they catch him and steal the skyscraper control table.\"\ntt5758778,Uo1FfULMJ5E,\"Sarah Sawyer knocks out the terrorist Xia while fighting in a police car, and Sarah recovers the master control tablet.\"\ntt5758778,M06KzvYxlsc,\"With Will and Georgia stuck on the roof of the burning skyscraper, Sarah manages to reboot the fire safety system, and save her husband and daughter.\"\ntt5758778,3PoW8y_3rzU,Will and Zhao confront Bores and his henchmen at the top of the tower and then draw them into The Pearl.\ntt5758778,KMkdp0Uy8t0,\"To save his family, Will has to jump from a crane to the burning skyscraper more than 2,000 feet off the ground.\"\ntt5758778,aKE0S2gCOfc,\"Will attempts to scale the outside of building and break into a control panel, but things go awry after his rope breaks which leaves him dangling more than 1,000 feet above the earth.\"\ntt5758778,RtRffVRFz6M,\"Will has to fight his former friend Ben after he betrays him and tries to steal the tablet that controls \"\"The Pearl\"\".\"\ntt5758778,e_S58iPZYu8,\"To save his wife and son, Will sends Sarah and Henry down over 10 floors in a broken elevator.\"\ntt5758778,S7A0JYPGklw,\"Will faces off against the terrorist Kores Botha, but finds that Botha has taken his daughter Georgia hostage.\"\ntt1268799,VFWn3fpVdEk,\"Harold and Kumar save Santa's life. Then, they hitch a ride home in his sleigh.\"\ntt1268799,6nrumyJrmZ8,\"Harold and Kumar reconcile their friendship. Then, Wafflebot saves them from their Russian captors.\"\ntt1268799,75EThT2il7k,Harold's assistant takes on angry Wall Street protestors so his boss can make a clean getaway.\ntt1268799,JzJ0EVqZAzU,\"Harold wins a game of beer pong with his signature trick, the \"\"Roldy Roll\"\".\"\ntt1951261,9YyC1Uq84v8,Alan sings and speaks at his father's funeral.\ntt1951261,elmk8Hsbw_0,The guys convince Chow that they are his best friends.\ntt1951261,mkbZvLfg2Yg,Marshall takes revenge on Black Doug for failing to keep the guys from stealing his gold.\ntt1951261,efkuXTpfxhc,Alan returns to the pawn shop to ask Cassie on a date.\ntt1951261,XsHBLhORcls,Alan accidentally releases all of Chow's trained chickens.\ntt1951261,lSmcbUFG-W4,Chow and Stu struggle to sneak into Marshall's mansion.\ntt1951261,v4np7L0aJd0,Alan's friends and family stage an intervention.\ntt1951261,Bo8mRH33NCw,Marshall explains why he kidnapped the Wolf Pack.\ntt1951261,xPI7JdEPCP8,\"Black Doug kidnaps the Wolf Pack and delivers them to Marshall, who has connected them to Leslie Chow.\"\ntt4738802,s55ay3OA1vE,\"Polly pretends to be her sister to sleep with Jack, Amy's ex.\"\ntt4738802,QsY1JHFo9c0,\"Polly has an audition for a feature film, but the casting crew thought she was her sister.\"\ntt4738802,EaizaMokSqI,\"Amy proposes switching places with Polly, and the two twin sisters have a heart-to-heart conversation.\"\ntt4738802,urNeTIDRg6A,Zoe Cooper makes the wrong kind of impression at a Hollywood agency.\ntt4738802,KhOfO0lI9-E,\"Despite the success of her sister, Polly's agent tells her that she can't represent her anymore.\"\ntt4738802,EHqhCxcRkwc,\"Pretending to be Amy, Polly goes out with Jack where she \"\"meets\"\" Oliver.\"\ntt4738802,eEt5ebZFVWE,Polly and Zoe discuss why they want to be actresses.\ntt4738802,Wka1m7CSEro,\"Polly comes to L.A. with dreams of becoming a famous actor, and gets some sage advice from a customs agent.\"\ntt4738802,nFpK9Si2uUc,Polly watches her sister play an awkward role she'd turned down.\ntt4738802,L5Ub_8HT6HE,\"Polly lashes out at a customer, and is fired from her job at the movie theater.\"\ntt2767266,tiu9_CUkGn0,Frida Giannini talks about the diversity of the women of Gucci and how each collection allows versatility.\ntt2767266,pFmo1haIgtA,Frida Giannini highlights what attracted her to Gucci and the inspiration of her first collection.\ntt2767266,PwBs-mLkZyo,Frida Giannini explores China's marketplace while setting up the Gucci Fashion show.\ntt2767266,8bZMd3JUu0c,Frida Giannini reflects on her work/life balance with her husband and business partner.\ntt2767266,2WZkIK0cbLc,Frida Giannini elaborates on the first days of Gucci and why it was so successful.\ntt2767266,rJ6wWIo3hFA,Frida Giannini transitions the collection from winter to spring with vibrant colors.\ntt2767266,ubwNf0oYYZI,Frida Giannini talks about the in's and out's of being a Gucci women and evolution of her dreams.\ntt2767266,YlHQAbd3Pvc,Frida Giannini critiques a male model during runway walk rehearsal.\ntt2767266,EqiDQxAatPQ,Frida Giannini sits down with James Franco to discuss the importance of fashion in cinema.\ntt2767266,0QNpXi4k5eU,Frida Giannini compares work to being with her family.\ntt7137846,vJi3kGaAQfo,Shaun is chased through her house by a vengeful Duncan.\ntt7137846,cycPu9OddzU,Shaun tries to make a deal with Eddie to get back her kids.\ntt7137846,F2V5i3EyRd4,Shaun escapes with her kids with Duncan on her tail.\ntt7137846,z5NuK6qTdBc,\"Shaun manages to get her family safe inside the house but Eddie catches her husband, Justin coming home.\"\ntt7137846,e7qjmOp9G34,Duncan and Sam corner Shaun while she's attempting to rescue her kids.\ntt7137846,xUNy6fZy4WE,Shaun tries making a deal with Eddie but is surprised by his ruthlessness.\ntt7137846,GbZZ2TDY5dA,\"Shaun tries to warn her real estate agent, Maggie, not to enter the house.\"\ntt7137846,yWGLNaCYevk,Shaun checks on the safety of her daughter Jasmine.\ntt7137846,SpOd7BwzlMU,Shaun gets chased by an intruder after her house gets broken into.\ntt7137846,-agdK2N5wX4,Shaun makes a final gambit against Eddie but is shocked by the appearance of someone she thought dead.\ntt7260048,oZ-BCSM4O8g,Ted apologizes to Chris for letting him take the fall for the murder twenty years ago.\ntt7260048,Kc2Hv1tPMig,\"Chris apologizes to Carol for getting her daughter drunk, and then proposes that she and him go out on a date so he can move on.\"\ntt7260048,dye8cQvz0Kc,\"Linda tries to get intimate with Chris, but it's been a while since Chris has felt the touch of a woman.\"\ntt7260048,zllKdwaYi50,\"Chris kisses Carol and tells her how he feels about her, but she rebuffs him.\"\ntt7260048,xWYBaNVEpVY,\"Carol and Chris reconcile, and Carol asks him to lunch.\"\ntt7260048,ZcO9A2DK_8o,\"Carol talks to Hildy about her relationship with Chris and her father, and apologizes for what she's put her through.\"\ntt7260048,QId6ztQeHCI,Chris meets with his former teacher turned pen pal Carol and thanks her for being there for him while he was in jail.\ntt7260048,TFfe7ZgIVUc,\"Chris drinks too much at his brother's birthday party, and makes a toast that implicates Ted in a murder.\"\ntt2309260,jT09lgUTdFg,Cassidy cries after losing her boyfriend- unaware the ghost of Charlie is not far behind.\ntt2309260,kKH0IEVUhNw,Reese and Pfeifer race to find the fire alarm and get the attention of the police.\ntt2309260,sIGoScxocUY,Reese sacrifices himself to save Pfeifer but gets an unpleasant surprise.\ntt2309260,D7LCHE4pTe0,Reese and Pfeifer run across disturbing evidence left by the ghost of Charlie.\ntt2309260,nBRbD7RKrK0,\"Twenty years before the events of the present, a family records a tragedy during a high school play.\"\ntt2309260,ACvjoLAtwnU,Ryan antagonizes the ghost of Charlie.\ntt2309260,iwZzRrzGLfE,\"The group come across a TV that explains the history of their high-school's production of \"\"The Gallows\"\" and realize a decades old secret.\"\ntt2309260,t6w2XWv2A7M,\"Following a startling discovery, the group is chased by an unseen force seemingly bent on revenge.\"\ntt2309260,bCBpo6H97oY,Ryan finds himself trapped alone with the ghost of Charlie.\ntt2309260,WyqeTjEcUTk,The cops come to the Grimille household to arrest Pfeifer and her mother.\ntt6883152,B41g0ZjS8M8,Fr. Amorth concludes his exorcism session with Cristine.\ntt6883152,1CjLSig2Hv0,William Friedkin recounts being stuck in a church with a possessed woman.\ntt6883152,y-1iNc7NzNM,Fr. Amorth begins his exorcism by mocking the devil.\ntt6883152,VKonjShA8Rg,Friedkin and William Peter Blatty discuss the inspiration for The Exorcist.\ntt6883152,R5BlH8IPv9Y,Nadia and Paolo recount her exorcism and cure.\ntt6883152,k6VGwPFIctQ,The Devil claims Cristina as his own.\ntt6883152,yMo3ISSjYn4,\"While her family receives Fr. Amorth's blessings, Christina's demon rages.\"\ntt6883152,haeQVOcIyKY,Friedkin discusses the psychological and sociological methodology of exorcism with UCLA's vice chancellor of medical sciences.\ntt6883152,DstF9Ge_6wI,Fr. Amorth discusses the nature of Cristina's possession.\ntt5725894,sSu-nM25zqw,Henry chases after the survivors.\ntt5725894,8X5miLF1n5M,Henry and Devon have an encounter with an angry spirit.\ntt5725894,ljifYuVnH1Y,Devon is led to the secret lair of a notorious serial killer.\ntt5725894,jz7WEh-DK0w,Amy and the hunters go after another spirit but Amy has a ghostly episode.\ntt5725894,Fdy2A4nbNik,Amy comes across a spirit while searching for evidence of paranormal activities.\ntt5725894,SCRZD2_Tkeo,Henry attacks Jessica and Amy as they try to escape the house.\ntt5725894,Ye3l05tkIcQ,The surviving hunters discover the identity of the Night Stalker and are shocked to discover it may be one of their own.\ntt5725894,zA1afZS6G_c,Amy and the hunters find another spirit in a makeshift meat freezer.\ntt5725894,gIig_bRnDz0,A serial killer murders a woman in front of her daughter.\ntt5725894,MXcA1Ow7Lzw,Amy is again visited by the house's spirits.\ntt0095990,lpBYHa7VDRk,Jesse makes a deadly discovery as the zombies begin to rise.\ntt0095990,XAa7RcPdE2U,A decapitated zombie is not an incapacitated zombie.\ntt0095990,NqXxeZTvuYQ,Be careful who you rescue in the event of a zombie attack.\ntt0095990,dq_RCN3esGk,Doc Mandel lends his car against his will.\ntt0095990,SSQJIBb_9gw,\"Brenda gives her brains to Joey, her boyfriend.\"\ntt0095990,7mPDafCQ5iQ,Jesse helps take down a persistent zombie.\ntt0095990,eYCV5Zm4Ov0,The Undead decide to get up for a walk.\ntt0095990,xIsVK254RXU,\"The military takes on the zombies, and it goes as well as you'd expect.\"\ntt0095990,zHqM-oKCPBY,Jesse has a creative way of taking out zombies.\ntt0095990,4ozs0VI04xI,Billy dies. Then he gets better.\ntt5435476,iMlCK0hr8Is,the name that he has mysteriously written on a note.\ntt5435476,IW3rXhNFyVw,Joe savagely murders a homeless man in the middle of the night.\ntt5435476,oB1yULtM2Mw,Joanne and Joe argue about his career and duties as a future husband.\ntt5435476,NGmtKz6HMkI,\"Struck with bloodlust and haunted by a past murder, Joe kills a stray dog.\"\ntt5435476,CB73lI-OjOE,\"Joe tells Joanne about his increasing paranoia, frustration, and creeping madness.\"\ntt5435476,AZlZO5TT0wo,\"Joe has a job interview, but things do not go well.\"\ntt5435476,xxoeXvIeZXQ,Joe comes across a tourist and flirts with the idea of pushing him over the edge.\ntt5435476,JXiJ7GS-9aA,\"Joe's sister-in-law Allison comes to drop off her child with Joanne but, unbeknownst to her, Joe killed her sister the night before.\"\ntt5435476,-XnDw75Lp1Y,\"Joanne and Joe bring home their baby, but is parenthood a dream or a nightmare?\"\ntt6874406,H6ZNmRApuGw,A group of engineers test a fighter jet capable of being piloted by disabled pilots.\ntt6874406,PuUMs6fNGo0,\"Bruce, a paraplegic, is left alone in the truck as the alien approaches.\"\ntt6874406,DrOLHuvOMi0,The pilots scramble to their fighter jets after the Alien attacks their base.\ntt6874406,JKJsu3JatYk,\"Emma helps her dad, Ben, train to take on the alien.\"\ntt6874406,YIqAz8SfE2M,The crew discover the home of the alien creature and investigate its nest.\ntt6874406,HV_SMZR6gjg,The pilot crew watch as a fighter jet takes on an alien that causes all who look at it to get sick.\ntt6874406,vaWlmr2BwuE,The crew celebrates their victory against the alien too soon and Emma is left reeling after Ben is shot down.\ntt6874406,uun8fsWOaeE,Emma watches as Ben takes on the alien using her high-tech gear.\ntt6874406,KZJetTa4DjQ,Emma and Ben go head to head against the alien.\ntt0085470,80fHUAW_up0,\"Clive introduces Monty's \"\"regular guy\"\" fashion line.\"\ntt0085470,L90uDzDbdV0,\"Nicky, Monty, and Paddy make a bad horse-racing bet.\"\ntt0085470,jJ8rgMkWFWA,Monty wears a wedding dress to help with alterations.\ntt0085470,H1_mdoiwhBY,Monty consoles the birthday girl after a boy hits her.\ntt0085470,T7kklmGWLDk,Nicky and Monty browse the upscale department store Monty will soon inherit.\ntt0085470,V99QCtwXKsI,\"Hiding in a bush, Hector feeds Julio lines of love.\"\ntt0085470,DC3rYQXOTjA,When Nicky pressures Monty to go faster on the stationary bike.\ntt0085470,vcw4b2U_0nU,Julio and Allison have wedding night jitters.\ntt0085470,nUpmxMzBCjk,Don't drink and drive. Especially when your daughter's wedding cake is in the back seat.\ntt0085470,TcaAWs46kog,Is this a wedding or a funeral?\ntt0085470,whFoAKQ10gY,Nicky helps Monty adjust to his rehab program.\ntt0085470,btMisVovQKk,Monty loses his temper when Anthony won't sit still during a photo session.\ntt6580394,ULElX0fO5JE,\"After hours of waiting in the dark, passengers begin to turn on the crew during the hijacking.\"\ntt6580394,2T01Xm19LJM,The crew try to maintain proper altitude while avoiding civilian air traffic.\ntt6580394,WcmGju9lzAY,The crew tries to deal with all the injured passengers as the plane tries to avoid parasailers.\ntt6580394,1bKCN4B2g-g,Crew and passengers find relief after safely landing on the runway following a hijacking.\ntt6580394,v2iOrjYQOHQ,Benji is pushed to the edge by Juliette.\ntt6580394,9C5A-YyMLnY,The flight crew listens as a recording found by the stewardess warns that the plane will crash if it drops below a certain altitude.\ntt6580394,V3JGZdiYwIg,Donna uncovers Kurt's true intentions and scrambles to foil his plans.\ntt6580394,dHxPxFeI6GQ,Coleman attempts to board the hijacked flight with the help of Alexis and J.C..\ntt6580394,deth7hZBzxs,Donna faces off against Alexis after discovering the flight attendant was secretly one of the hijackers.\ntt6580394,AUppZZuFnJI,Pilot Khalib faces opposition from his co-pilot J.C. over how to handle the hijacking situation.\ntt3399112,mXgY4vnucPc,\"Dock Ellis, Scipio Spinks, Enos Cabell, and more talk about the rise, risk, and results of amphetamine use in baseball in the 1970s.\"\ntt3399112,yqvlrJQVAP4,Dock Ellis reveals what he was thinking during his no-hitter.\ntt3399112,SndhPCSVtuc,\"Dock Ellis' teammates, and sportswriters talk about Ellis' statements about, and him starting, the 1971 MLB All-Star Game against Vida Blue.\"\ntt3399112,THmBqW0zLuY,Dock Ellis and teammates tell the story of that fateful day Ellis threw a no-hitter while on LSD.\ntt3399112,s5F51a7xkiA,\"Former teammates and players recount Dock Ellis' innovative and inspirational approach to race relations, and Ellis reads a letter sent to him by Jackie Robinson.\"\ntt3399112,wIw19V0b390,Dock Ellis and teammates tell about the time baseball took exception to Dock's use of hair curlers.\ntt3399112,E-OEyIQ12Mw,\"Former Pittsburgh Pirates teammates talk about September 1, 1971, when the Pirates start a lineup of all African-American and Latino players for the first time in baseball history.\"\ntt3399112,--UgPWRVt8A,\"Loved ones reminisce about Dock, and mourn his death.\"\ntt3399112,rJv6bP5Lvao,Those close to him talk about how Dock Ellis used his experiences to educate and inspire.\ntt3399112,Jn23_pn6aAE,\"Ellis and family discuss his time in rehab, and how he came out afterwards.\"\ntt0061512,JkQzE831VM8,Luke is shot and killed by a boss and Dragline tells the chain gang about it.\ntt0061512,Bzk_5Jzvxdk,Luke refuses to stay down and accept defeat in his boxing match with Dragline.\ntt0061512,9T4kKk7zH34,\"Luke's mother, Arletta, visits Luke in prison to reminisce with her son before she dies.\"\ntt0061512,SMaYCguBHAA,\"When Luke claims that he can eat fifty eggs, Dragline sets up a friendly wager.\"\ntt0061512,cINFeXqwbDo,A beauty washes her car while the men watch.\ntt0061512,_WUyZXhLHMk,Luke is returned to prison after his first escape attempt.\ntt0061512,k3oMPqUTxCE,Luke tries to eat all fifty eggs.\ntt0061512,qqhyIIZt87A,Carr catches sight of Luke's defiant personality during his recitation of prison camp rules on the first day.\ntt0195714,PaqNqocHJ-o,Alex tries to save Clear from an impending car explosion.\ntt0195714,klg2YuapPFY,Carter proves that it's not his time to die.\ntt0195714,weDQxJm9K-Y,Alex Browning tries convincing people on the plane that his premonition was true.\ntt0195714,iU908ncV2q0,\"Alex, Clear, and Carter debate death's design.\"\ntt0195714,0p9Q6tDJJ1w,Bludworth the Mortician explains the nature of death.\ntt0195714,Uc0Cd3LErFs,Alex runs from the police and death to save Clear.\ntt0195714,6HrTgWedKG0,Alex death-proofs his house.\ntt0195714,2ReEFgaq_9g,Alex Browning experiences a frightening premonition of his flight exploding in mid-air.\ntt0195714,8R0wW6GTMk4,A good bathmat could've saved poor Tod.\ntt0083642,Y5EkcuhBwiU,Melvin Thorpe reveals the existence of the the whorehouse on national TV.\ntt0083642,gcPY3RIvtCw,Miss Mona and the ladies try to put on a happy face when the Chicken Ranch gets shut down.\ntt0083642,Ad2-FiCzJxc,Miss Mona explains the rules of her house.\ntt0083642,CkKUHwyFqJw,Deputy Fred tells the legend of the Chicken Ranch.\ntt0083642,MuIkmspTRo0,The Chicken Ranch Ladies dance with the Aggies.\ntt0083642,8O9FIRPJRXc,The Aggies Sing about their impending visit to the Chicken Ranch.\ntt0083642,iy-SmSGYYBM,Melvin and his crew raid the Chicken Ranch for a national expose.\ntt0083642,AALREbJZEZk,The Governor makes his position clearly unclear.\ntt0083642,0KjO3YwlhEE,Miss Mona says her good-byes to Ed Earl.\ntt0083642,wr5-v7rYg70,Miss Mona and Ed Earl sing about their frequent trysts.\ntt8033592,FgG9LDxHHv0,\"Phillipa's parents meet Danny, but Danny drops a bomb on them and takes her father hostage.\"\ntt8033592,Uu2u8T7tS9o,\"Danny and his gang kidnaps Glen, and forces Phillipa into giving in to their demands.\"\ntt8033592,KD5-tY6m9Cw,\"After the family loses the roulette roll, Danny threatens to light Margaret on fire, but then reveals that this ordeal was all an act to scare the rich.\"\ntt8033592,tt5BJlT7f6I,Danny reveals his motivations for kidnapping Phillippa's family\ntt8033592,6EAVY3gCWpY,Danny tells his friends how he found Phillipa and Glen and about his plan to take advantage of them.\ntt8033592,AURxtujY4MM,\"Danny, Tommy, and Sean discuss sex, power, income inequality, and how their generation has it worse than the last.\"\ntt8033592,fJDl0RSPWBg,\"Glen gets tied up and trapped in a shed, and has to use the tools to escape.\"\ntt8033592,_H0EYJHeddU,\"Danny tries to buy a gun from Little Kev, but Kev will only sell him a BB gun.\"\ntt0111686,IOUbfaHj2HU,Freddy kills Julie.\ntt0111686,V4SyBSgOIgM,Freddy lures the sleepwalking Dylan onto the highway.\ntt0111686,JlvCQXYfOAI,Heather confronts Freddy in his lair.\ntt0111686,dJltbkhK6-s,Heather tries to save Dylan from Freddy.\ntt0111686,_HcDe70cSRU,Chase's animatronic Freddy hand goes awry.\ntt0111686,ZOhpE4LjR5E,Freddy gives Chase a hand while driving home.\ntt0111686,TqRBV9xkrAU,Freddy visits a sleeping Heather.\ntt0111686,XTtjLtf_Tw8,Freddy chases Dylan into a furnace where Heather is ready to have her final fight.\ntt0111686,dShLedyR4eg,Freddy attacks Heather in her home.\ntt0111686,ZObhl67NCzQ,Heather runs into Freddy at the hospital while getting Dylan treated.\ntt0101917,49rUb1-JaIM,Freddy lays down the law to Doc.\ntt0101917,S0_bjXPRlio,John learns the truth about him and Freddy.\ntt0101917,jorhoh0NNQI,Freddy gives Carlos a demonic hearing aid.\ntt0101917,DgpMTfkui0w,Freddy attacks Carlos.\ntt0101917,1U146AYx6-M,Maggie takes a journey inside Freddy's damaged psyche.\ntt0101917,G7RTm-c2aXc,Tracy has a run-in with Freddy.\ntt0101917,_RG4iCmljGE,First Spencer sees a familiar face before Freddy arrives.\ntt0101917,gGz0wTHCHK4,\"Maggie dons the glove of Freddy Krueger, and sets to work.\"\ntt0101917,sg-d9ZBsiWo,John gets terrorized by Freddy.\ntt0417148,Z0k-0HG4fR0,Maria helps a young boy by sucking out the poison from his wound.\ntt0417148,y7-LHFxFS8o,The snakes attack the passengers with the full force of their reptilian rage.\ntt0417148,3U0EdULZGes,A passenger is bitten by a snake in a very sensitive area.\ntt0417148,h3-FAzeYut4,A giant boa constrictor makes a meal out of Paul.\ntt0417148,UqXJc-VxorY,\"With Claire's help, Agent Flynn navigates the plane's underbelly in order to get power restored, but uncovers a trove of more snakes.\"\ntt0417148,7pzz0eGQdyQ,Agent Flynn has had it up to here with these snakes on this plane.\ntt0417148,ws7Ve4mehqs,\"Troy is the only person on board qualified to land the plane, due to his PlayStation flight simulator.\"\ntt0417148,ov5KEgF0hgo,\"Claire notices a sudden descent in the plane's trajectory and finds Rick, the last remaining pilot, missing.\"\ntt0417148,sbb9Re-KYlE,Agent Flynn talks to a snake expert via airphone and realizes that the snakes are under influence of powerful pheremones.\ntt0417148,5nDwwq0ANPE,\"As Agent Flynn works his way through the snake-filled cabin, flight attendant Ken cooks up a snake in the microwave. Delicious.\"\ntt0102266,Ggnrvt77YOM,Joe and Jimmy are captured by Marcone's thugs.\ntt0102266,QeTaNmnwFHo,Joe comes to suspect his wife Sarah is hiding someone in their bedroom.\ntt0102266,2Zi7Y1-rgts,Joe wakes up after being kidnapped and is assaulted by Carmone's goon.\ntt0102266,06MiYpKxjCY,Jimmy follows Cory home and finds himself under fire.\ntt0102266,wmBGdpkagEc,Joe and Jimmy confront Marcone in his office.\ntt0102266,fdw_aFH3To4,\"Joe, Jimmy, and Darian are chased by Marcone's thugs.\"\ntt0102266,N2Yk8EvrrBU,Joe and Jimmy face off against hired assassin Milo.\ntt0102266,x91Nyuo55_c,\"After losing key evidence, Joe and Jimmy run into trouble.\"\ntt0102266,aWNJKbGrETo,Joe catches Jimmy doing drugs in his bathroom.\ntt0102266,uKlIPUovwIc,Jimmy and Joe bond over the story of Jimmy's lost son.\ntt1037705,w-nqMWvpzY8,\"Solara attacks Carnegie's men and makes an escape, killing Redridge in the process.\"\ntt1037705,eHj2IgKYofo,\"When Solara attempts to help a woman at the side of the road, she is attacked, but Eli arrives to save her just in time.\"\ntt1037705,-6IX1nWqW3o,\"When Carnegie's men attack, Eli takes them all down single-handedly.\"\ntt1037705,5qE52hylNT0,\"When Eli is ambushed by a gang of thugs in a bar, he beats them all up.\"\ntt1037705,R_rN21oKxSE,Eli recites his final prayer before he passes away.\ntt1037705,Q-_wlz6jYSw,Eli hunts a cat.\ntt1037705,2bvUOFDgo_c,\"When Eli is ambushed by a group of hijackers, he shows them who's boss.\"\ntt1037705,-7uYlaqkkzw,\"Carnegie threatens Solara's mother, Claudia, to gain information about Eli's Bible.\"\ntt1037705,aRK4YcnTtIk,\"After getting his hands on the Bible, Carnegie shoots Eli.\"\ntt1037705,Pv2MlxSgwv4,\"Unable to read the Bible in Braille, Carnegie begs Claudia to help him. When she refuses, he falls into despair.\"\ntt6231792,q8NwQoVkAr0,\"'Wild' Wally Palmer takes it off the course, and rips up\"\ntt6231792,M1dWcUcCAgk,\"Carson Mumford competes in the Amateur National Motocross Championship, and takes home the trophy.\"\ntt6231792,dEAaneP7a3g,\"Tom Parsons, Dereck Beckering, and Jimmy Hill head to Kernside, California to have some fun in the open air.\"\ntt6231792,gZE1B2zL1fg,\"Motocross rider Christian Craig talks about what it means to be a family man, and rips up a course.\"\ntt6231792,F0YzQbNdlpI,Harry Bink takes a motorcycle off the street and rips off some crazy tricks.\ntt6231792,dWdQG4BEX3s,Jimmy Decotis and Aaron Plessinger hit the course.\ntt6231792,z4216EVIfdE,The 2017 AMA Pro Motocross Championship is highlighted.\ntt6231792,dwULCnXeEOA,\"Fifteen year-old Carson Mumford talks about how he has turned into a phenom, and shows what he can do on the supercross course.\"\ntt6231792,RfGOwHvIyK8,\"Ben Townley shows what New Zealand motocross is all about, as he takes off at his hometown of Tauranga, New Zealand.\"\ntt6231792,vtEw8hLJKzo,\"On his second attempt at the 2017 Nitro Games FMX Best Trick, Harry Bink pulls off the world's first Rock Solid Frontflip which would win him the gold.\"\ntt1690991,94pYLwdWTW0,The group imitates how slowly turtles move.\ntt1690991,wgb4Fz7D7wI,Grunty makes a discovery.\ntt1690991,PMFU8b_2cC0,\"Miffy and her friends ride camels, but they're a little scary.\"\ntt1690991,2dOsofLx6jc,Grunty helps her friends.\ntt1690991,Ev2Z-YUO2f4,Miffy and her friends try to catch the the silly monkeys being playful.\ntt1690991,bbtIanfT4oo,Miffy and her friends happily sing a song about their friendship.\ntt1690991,Ywn0PmxYgGo,Sing along with the Treasure Hunt song!\ntt1690991,s_8zJYpN2mc,Grunty wishes she was just a little older.\ntt1690991,8jfrU0a-Ayk,The group sings with the Owls!\ntt1690991,aB6SfK9qD5Y,Miffy and her friends decide where to go.\ntt0842000,104odr4s7Yc,Marchello and Pinky deal with silly Squirrels.\ntt0842000,QrXSZJ3am_s,Marchello tries to get through to Pinky via a game of tag.\ntt0842000,71_zrDEkRc0,Marchello plays with Jujube.\ntt0842000,szDAoChHbrQ,Marchello helps Pinky gain the courage to live with Blackie.\ntt0842000,4Tu7_tAe2tk,Marcello and Jujube play hide and seek.\ntt0842000,SVtUDd2sBwE,Marchello has a hard time adjusting to street life after meeting a stray.\ntt0842000,2pOMv-jM5lU,Marchello gets cat-napped!\ntt0842000,H1sEkNAlW9w,Marchello learns street smarts and protects himself from a dog.\ntt0842000,u3E23a-SpF0,Marchello escapes.\ntt0842000,gNdQdrKADh0,Pinky fights Marchello for suggesting that her parents aren't returning.\ntt7424200,qYEOmZzqX28,\"Slade steals the crystal, reveals his master plan, and leaves Robin to die in his own base.\"\ntt7424200,PitkS4aYur8,\"The Teen Titans square off with the new arch nemesis, Slade, but his powers of mind manipulation are too much for the Titans.\"\ntt7424200,GgBt0TlbwUY,\"Superman, Green Lantern, and Wonder Woman save Jump City from the Balloon Man, and the three superheroes discuss the Teen Titans movie prospects.\"\ntt7424200,y4fdm5gdvnE,\"Thanks to a very upbeat song, the Teen Titans are inspired to go to Hollywood to seek out a movie deal.\"\ntt7424200,NKhTArRP31Q,The Teen Titans use their Time Cycles to go back in time to create a world without superheroes.\ntt7424200,7XBizI9jArU,The Teen Titans use their unique brand of heroism to destroy Slade's giant robot and break the hypnotic spell he has cast on the world.\ntt7424200,qB93c2JU4uQ,\"Slade unleashes the D.O.O.M.S.D.A.Y. Device and hypnotizes everyone in the world, and the Titans have to fight off all the world's superheroes.\"\ntt7424200,dnrJELv76n4,Robin embarrasses himself at a movie premiere when he mistakes an upcoming movie about Batman's utility belt for his own.\ntt7424200,VqAqUVcgQdE,\"The Teen Titans fight Slade and steal back the crystal, but in true arch nemesis fashion, Slade gets away.\"\ntt7424200,hFfQhVgQU44,\"Robin tries to convince Jade Wilson to make a movie of him, but even an epic song won't sway her.\"\ntt5639446,OYSVICsTq78,\"Jonathan's split personality has made love many times, but he never has.\"\ntt5639446,SEmSJCzcxyc,Jonathan explains that another one of his personalities was systematically destroyed.\ntt5639446,O0PAT4-kuY4,Private Investigator Craine reveals that Jonathan's split personality has a girlfriend.\ntt5639446,Qulj96h_-W0,Jonathan explains his position to Elena.\ntt5639446,cEyfq9j80Do,\"Jonathan meets his split personality's ex, Elena.\"\ntt5639446,5-kt5Av0s2M,Jonathan explains to Dr. Nariman that he's sleeping with his split personality's ex.\ntt5639446,7Z3ccysbMwE,\"As Jonathan gets closer with Elena, John's behavior becomes increasingly erratic.\"\ntt5639446,t3nm6EPiuyw,Jonathan discovers that his other half is suicidal.\ntt3874544,IJnig4nc0xg,Tim tries to give evidence of his little brother's deception to his parents while being chased by a gang of babies.\ntt3874544,9WpO5zPo8Dg,Tim is shocked when his parents bring home a little brother whom they immediately start giving into his demands.\ntt3874544,A_CGtuDwl-A,Boss Baby and Tim are chased by Eugene while rushing to save their parents.\ntt3874544,rxkB20Tpvx0,Boss Baby gets sorted into a family or management after being born.\ntt3874544,mIGCgzqFR0s,Boss Baby uses his binky to bring Tim to BabyCo Headquarters.\ntt3874544,VbP7jMN_v-w,Boss Baby and Tim have to make a plan to escape the watchful eye of Eugene.\ntt3874544,UXldWskFeFY,Boss Baby gets a letter from Tim and decides to quit his job in order to become a part of Tim's family.\ntt3874544,uNjrnjiEEY8,Boss Baby and Tim pretend to love each other in order to please their parents.\ntt3874544,prTlJO34AHE,Boss Baby and Tim try to sneak into PuppyCo during a 'bring your kid to work' day with their parents.\ntt3874544,KjWPSq6-Ets,Boss Baby and Tim take on Francis Francis in order to stop his plans to make puppies cuter than babies.\ntt0061791,dVLMfoIop9M,\"As the day winds down, Finch and Rosemary flirt with the idea of grabbing dinner together to the beat of \"\"It's Been a Long Day\"\".\"\ntt0061791,luF2eyiYlyE,\"Finch gets an \"\"in\"\" with Biggley by wooing Miss Jones with a flower.\"\ntt0061791,LKJOXcFUSzc,Finch professes his love for Rosemary and asks her to be his wife.\ntt0061791,1GbNS7IcCj0,Finch successfully deceives his boss during his advertising presentation by playing to his vanity instead of laying out a real plan.\ntt0061791,8FHO7Ry4_Jc,\"Biggley discusses the new opening in the mailroom with his wife, who wants him to give their nephew the opening.\"\ntt0061791,SKC8iPeIvEA,Mr. Twimble sings about his quarter century experience as a company man with Finch.\ntt0061791,uETwKF_fgKw,\"When a beautiful new employee arrives at the office, Bratt reminds the men that a secretary is not a toy.\"\ntt0061791,DhUcvFP_Tas,\"Finch, the management and the executives sing of the Brotherhood of Man after it is discovered that Finch was a window washer and not a college graduate.\"\ntt0061791,GwvrEz7vTZY,\"Rosemary reassures Finch in her confidence in him with the number \"\"I Believe in You\"\".\"\ntt0061791,NV9oKGj_CcU,\"As the clock hit 9 a.m., girls at the office get into gear to prepare for the work day.\"\ntt0126029,UvSGGd3ewFI,Shrek leads Donkey and Fiona out of the castle as the Dragon chases them all.\ntt0126029,AxGXZOLn-U0,Fiona shows Shrek and Donkey that she hardly needs saving.\ntt0126029,iropsnsCEjA,\"While Shrek is busy trying to rescue Fiona, Donkey finds himself getting unwanted advances from the least likely place.\"\ntt0126029,em9lziI07M4,Shrek enjoys a day of solitude just like any other before a group of villagers decide to change that.\ntt0126029,mFl8nzZuExE,Lord Farquad interrogates the Gingerbread Man as to the whereabouts of the other fairytale creatures.\ntt0126029,LSD1fq3xDA8,Shrek interrupts the wedding of Fiona and Lord Farquad in order to confess his love for her.\ntt0126029,xvZRXcg4iS8,Shrek starts to fall for Princess Fiona as they make their way back to the castle.\ntt0126029,aQqAUXKn7t4,Shrek and Donkey accidentally find themselves in the middle of a trial by combat.\ntt0126029,xURDJ-IW5YM,Shrek and Princess Fiona can't stop missing each other.\ntt0126029,a3bI7kbVBwM,Donkey and the fairytale creatures celebrate Shrek and Fiona's marriage.\ntt0974015,f2FzrfnfQPY,Diana tells Bruce Wayne the history of the Mother Box and Steppenwolf.\ntt0974015,9QJ2mqXdr5I,Wonder Woman rescues hostages from a terrorist plot at a London bank.\ntt0974015,NC34ce5BkWQ,The Flash prepares to race Superman.\ntt0974015,CKc8xHhxP0Q,lash and Superman rush to save civilians from destruction.\ntt0974015,JQOay4rjHas,The Justice League works together to defeat Steppenwolf.\ntt0974015,3sP7UMxhGYw,The team resurrects Superman who immediately turns hostile toward the crew.\ntt0974015,z79ikmr3JY8,The Justice League launches an assault on the para-demons and Steppenwolf.\ntt0974015,b3OlGLDk4pY,The Justice League must escape after a cornered Steppenwolf floods the tunnels.\ntt0974015,f9Od8yx9gmg,Hippolyta races to stop Steppenwolf before steals the Mother Box.\ntt0974015,WXne2B_inx8,Aquaman makes a heartfelt and passionate confession to the other heroes.\ntt2126355,CLxHRE-Knmc,\"With San Francisco in ruins, Ray and Emma are forced to skydive from their plane in order to get to their daughter.\"\ntt2126355,n4bsNkDyF2s,\"As a major quake hits, Ray helps the citizens of San Francisco survive.\"\ntt2126355,2UPj8FTPaXg,\"When they are caught in an earthquake, Daniel abandons Blake in an underground parking garage.\"\ntt2126355,OfXLQt6B8v4,\"Blake, Ben, and Ollie are stricken by a massive wave, which destroys the building they are inside.\"\ntt2126355,OqGw-1_vIWk,Ray runs a daring mission to rescue the victim of a car wreck.\ntt2126355,Z-WSedqa5zA,\"While Ray and Emma drive their boat across the ocean, a massive wave destroys the Golden Gate Bridge.\"\ntt2126355,fYbbxzLGpbI,Dr. Hayes watches helplessly as Kim falls to his death during a destructive quake at the Hoover Dam.\ntt2126355,0ERIepJUdPc,Ray races to save Blake from drowning.\ntt2126355,xGon_kZAVtU,Emma struggles to get to the roof where Ray will pick her up while a building collapses around her.\ntt2126355,NE6nLFq0eqc,\"As Los Angeles falls to pieces, Ray tries to save Emma with his helicopter.\"\ntt0351283,kPE7ZCGjw4o,The gang is caught trying to leave New York\ntt0351283,JaTAjmSppvA,The Penguins commandeer the shipping boat.\ntt0351283,U1_VGnnMle8,The animals toast to Alex being back to a friendly lion.\ntt0351283,FpekkNyDPcc,\"Maddened by hunger, Alex attempts to eat everyone.\"\ntt0351283,8ty1025m6XQ,King Julian sends out Mort to meet savage beasts.\ntt0351283,rPuW7T25Yuw,Alex reluctantly leaves his friends to be a predator.\ntt0351283,CyJglP6k8lE,The Penguins rescue the gang from the Fossa.\ntt0351283,YoIcmX40-_s,The gang arrives on the beaches of Madagascar.\ntt0351283,ApuFuuCJc3s,King Julian leads his people in dance.\ntt0351283,wV7vM4-FzJM,The gang discovers that they've been trapped in boxes.\ntt0441773,rHvCQEr_ETk,Po shows Tai Lung the true meaning of the Dragon Warrior.\ntt0441773,_7DVsN761n0,Mantis tries relaxing Po after a hard training session when Tigress arrives and gives the history of their greatest enemy.\ntt0441773,AhbCYVILusc,Po takes on the incredibly powerful Tai Lung in order to save his village.\ntt0441773,GQM4dSjjQuE,Shifu faces off against his former protégé turned villain Tai Lung.\ntt0441773,Jy2_J5WCzDY,The Furious Five decide to take on Tai Lung alone.\ntt0441773,UsZNj9srzR8,Tai Lung makes his escape from prison with ease.\ntt0441773,zvY-EPgYB4Y,Shifu finally allows Po to train to be the Dragon Warrior.\ntt0441773,ihKHvNOTcwk,\"In his desparate attempt to check out the Dragon Warrior trials, Po finds himself smack dab in the middle of the ceremony.\"\ntt0441773,STqJ_Up4iFg,Po daydreams of being the Dragon Warrior and fighting with the Furious Five by his side.\ntt0441773,0_1NU60qHWs,Po shows his skills as a chef to his new friends.\ntt4624424,wMr2d10-xf0,wolves and glass.\ntt4624424,kzZQYnvw-6E,\"Junior, Tulip, and the baby are captured by wolves, who fall in love with the \"\"tiny thing\"\".\"\ntt4624424,ZPCSC8NM87k,Junior and Tulip fire up the baby making machine and create more babies than they can handle!\ntt4624424,9NTvToplMlw,\"Junior and Tulip get woken up by the baby, and try to get her to fall back asleep.\"\ntt4624424,bx_rua3EXFc,\"Hunter tries to destroy the baby making factory, but an innocent baby and his own greed get in the way.\"\ntt4624424,U6GY91u1I_c,Junior and Tulip flee from a surprisingly resourceful wolf pack.\ntt4624424,sCr9YZRDsJA,Tulip's innovation goes horribly wrong.\ntt4624424,uTUupV0ZfBk,Junior and Tulip try to fight penguins without waking the baby.\ntt4624424,SQH8if7dbqw,Tulip delivers a letter asking for a baby which starts up the baby-making machine.\ntt4624424,-pix6UL8ONk,Junior tries to get the baby to fall asleep.\ntt1935859,LiODoFVKD40,Oh and Tip stop for a bathroom break after being chased by a fleet of Boov.\ntt1935859,Y-rxY2LxPI8,\"After Oh survives almost being crushed, he makes a friendly gesture towards the Gorg, with surprising results.\"\ntt1935859,AD3baa_nijI,Oh and Tip rush to escape the Boov after Oh is sentenced to execution.\ntt1935859,hMGHJFVuqpg,Oh tries to return an important artifact to the Gorg in order to save earth.\ntt1935859,rLVwKpyUwWI,Oh finds himself unable to stop his body moving when Tip turns on the radio.\ntt1935859,kWHOafRR0Sk,Tip gives Oh a lesson on humor by teaching how to tell a 'knock knock' joke.\ntt1935859,Hiwu7Hu2hAs,Oh and Tip rush to Australia to find Tip's Mom during the Boov evacuation.\ntt1935859,K8yA801TQVQ,Tip finally finds her Mom with Oh's help.\ntt1935859,fwZw8vujVMU,\"After enjoying a successful escape, Oh and Tip wake up to find themselves in the middle of a Boov evacuation as the Gorg approaches earth.\"\ntt1935859,ykQ9g2HT2sU,Oh supes up Tip's car after she asks him to repair it.\ntt0063829,8H_aePfIMzQ,A nervous Helen practices how she will break the news about her eight children to Frank on their date.\ntt0063829,Uiqk92r4luQ,Helen loses an eyelash and tries to hide it from Frank.\ntt0063829,WbcZ3k4Mr6Q,The family doctor is overwhelmed by the chaos of a child-filled home.\ntt0063829,OGEfW_fV9ZI,Helen's daughters help her get ready for her date with Frank.\ntt0063829,D93GR0PGUD0,Helen and Frank get married despite their children's wishes.\ntt0063829,LiioO2L5ZA4,Helen's daughters make her modest dress a few inches shorter before her date with Frank.\ntt0063829,mvH6IhKpehk,Frank and Helen hit it off while his date Madeleine is stuck in the middle.\ntt0063829,G5_nIhUCuhk,Helen finds herself inexplicably drunk during dinner with Frank's family.\ntt0063829,x7S89GM5N7w,Colleen asks a busy Frank for boy advice.\ntt0063829,mkG2YdCogPY,Helen gives advice to Frank about what's going on with his daughter.\ntt0063829,ExsSDD8Lpsc,Helen tries to reason with Sister Mary Alice about her son.\ntt0063829,cyUf4tLI53o,Helen & Frank reveal how many children they have.\ntt1446192,gzbYTUXZkSI,Sandy and Jack go head to head against Pitch in order to stop him from spreading his nightmares to children.\ntt1446192,BpnlB0ILpWw,Pitch tries to convince Jack to join him in his battle against the Guardians.\ntt1446192,lNVb-ZNIO-A,\"After defeating Pitch, Sandy and the Guardians eschew Pitch's nightmares in favor of making dreams return.\"\ntt1446192,Lgpg6frCrvw,Jamie and his friends give the Guardians the faith they need to defeat the Boogeyman.\ntt1446192,vqPT1IbJrX8,\"After returning to the fight, Jack finds the Guardians in a weakened state and unprepared to fight Pitch.\"\ntt1446192,1OxDZKordaM,\"Jack Frost discovers he has been chosen to join the \"\"Guardians\"\", a team made of Santa Claus, the Easter Bunny and the Tooth Fairy.\"\ntt1446192,mpBQ883QIUs,Bunny takes the Guardians back to his homeland in order to get some help in getting his eggs out in time for Easter.\ntt1446192,z9uP9znP-mA,Jack discovers that North's way of travel is alot more exciting then one would expect.\ntt1446192,fYVAGoTb8w4,Jack uses his dreams to access his memories and find out where he came from.\ntt1446192,89RJwGDFpC4,The Guardians work double time to deliver rewards to all the kids who have lost teeth in order to save Tooth from disappearing.\ntt0083767,_-9Pewr-JgY,Professor Henry Northrup introduces his abusive and ungrateful wife Wilma to the crate monster.\ntt0083767,jkZtAzrw3Q8,\"After killing his wife and her lover, Richard Vickers gets a late night visit from their drowned corpses.\"\ntt0083767,L_nh3Rtyj-Y,\"After dousing a strange meteorite with water, Jordy Verrill's house gets coved with an alien vegetation while Jordy himself wakes up transformed into a plant like being.\"\ntt0083767,WMFxWlrpnLM,Hank Blaine goes in search of Aunt Bedelia only to find not one but two corpses.\ntt0083767,intjK7aTbjs,\"Ignoring Professor Dexter Stanley's warnings, grad student Charlie investigates the crate and gets sharp teeth in his neck for it.\"\ntt0083767,bJ09DFHWeXk,\"Sylvia goes in search of her son-in-law and the maid. She finds a family member, but not the one she expected.\"\ntt0083767,GOpFSBhGjuU,Richard Grantham and his sister Cass go in search of their mother.\ntt0083767,9E1ulvRRYFM,Aunt Bedelia sits by her father's grave and reminisces about the abuse she took from him. Her father's corpse decides to join the conversation.\ntt0083767,2LsMNs4hW1s,\"Upson Pratt, a cruel business man, locks himself in his panic room to get away from an infestation of cockroaches.\"\ntt0083767,WXeW1HiwAtE,\"After finding an old and mysterious crate underneath the basement stairs, Mike the Janitor and his friend, Professor Stanley, attempt to open the crate.\"\ntt0082250,7nWfsF7ThLw,Kersey catches up with Jiver.\ntt0082250,IGaJfcOD6gs,\"Kersey watches as Nirvana, under the influence of PCP, wrestles an onslaught of police.\"\ntt0082250,zH80pWTYSLg,Carol escapes her attackers by jumping out a window.\ntt0082250,A8xy9h5olhQ,Kersey follows the thugs onto a bus.\ntt0082250,duZLaW_6qLc,A tourist and his wife can't remember the vigilante's appearance.\ntt0082250,Yh03Vnp8pCk,Kersey interrupts a drug deal to kill Stomper.\ntt0082250,sbZB1drlKWI,\"After his wallet is stolen, Kersey tracks down Jiver, one of the thugs who took it.\"\ntt0082250,vh-mdPoc92Y,Kersey disguises himself as a doctor and kills Nirvana.\ntt0082250,Lw5Ss6z8IoM,Kersey asks Geri to marry him in Mexico.\ntt0082250,L7FVtB7mKEU,Kersey tracks Nirvana to an illegal weapons trade.\ntt0082250,aDcfm_9GTyU,Kersey returns home with Carol to find Nirvana and his gang inside the house.\ntt0082250,RNPPrvhTKuc,Nirvana and his gang break in when Rosario is home alone.\ntt3230934,LT9qOeKcL-o,\"The Executive Director of New Yorkers Against Gun Violence explains the purpose of her organization, and the extent that gun violence has affected the American population.\"\ntt3230934,_RsxXzFxqdg,A gun store owner gives a brief overview of the different types of handguns and how they work.\ntt3230934,ENmpNBFdwFQ,\"Artist Greg Bokor introduces his large-scale, interactive art piece in which participants erase a drawing of an AR-15 assault rifle.\"\ntt3230934,IGCJTr90IZk,\"Greg Bokor's art installation is open to the public, and the artist speaks of his feelings regarding gun violence and gun control.\"\ntt3230934,ln_5-pRR-HQ,State Senator Angela Giron and Colorado gun rights activist Victor Head state their opinions on the competing sides of the debate surrounding Colorado newly enacted gun control laws.\ntt3230934,HexOzLEvLGA,\"Artist Greg Bokor discusses his thoughts regarding gun control, as well as how he procured and made erasers with the names of victims of gun violence.\"\ntt3230934,B1bYkou_mnY,\"As gun owners show off what they proudly own, Colorado Sheriff Terry Maketa asks and expands on the question that he thinks people are forgetting when it comes to the gun control debate.\"\ntt3230934,lsES3-QXzZQ,\"After Colorado enacted stricter gun control laws, the proponents of the law were recalled. The Senators who led the charge for stricter laws, and the citizens who led the charge for their removal tell their stories.\"\ntt3230934,4o1x3FxQLf8,\"Creator of the first 3D printable gun, Cody R. Wilson explains why he did it, and what the \"\"Liberator\"\" means for America and the future of gun control.\"\ntt3230934,L5jFIw9yBbA,\"Law Professor Stanford Levinson tells of the differing interests of, and the divide between, the people, the lawmakers, and the gun industry, and why it's harmful for the country.\"\ntt0245803,wO4P6Yz_LZg,Monk disappears with the scroll after his monastery is attacked by Nazis.\ntt0245803,qqAzmt1d8kU,Jade faces off with Nina.\ntt0245803,VwlkxIN9tfQ,Jade shows Kar that she can take a bullet too.\ntt0245803,sVfuigRSl8g,Kar and Jade fight to decide if they can trust each other.\ntt0245803,XT2IS2dn8gM,Monk teaches Kar mystical kung fu.\ntt0245803,leSpIIaEblk,Kar and Monk are chased through the streets of New York.\ntt0245803,ioE_djgs810,\"Mercenaries chase Kar and Monk, looking for the scroll.\"\ntt0245803,LBm4aJ0ZcqY,Strucker fights Monk and Kar on the rooftop.\ntt0245803,GW475l4IoyU,Kar is quickly subdued after he tries to fight Monk.\ntt0245803,DHXHxop1gPw,Kar shows off his pipe fighting skills.\ntt0245803,DtH30Cz2Zec,Monk completes his training.\ntt0060921,JNcNy7bJxDg,\"After his son calls him a traitor, Walt attacks the Russian holding them hostage.\"\ntt0060921,MYErK-XLJv0,Walt finally makes friends with Rozanov after shooting his car down.\ntt0060921,YmRuVv2V5Go,Mr. Everett is surprised to find his wife tied to the wall by the Russians.\ntt0060921,1PRZi8t38OQ,\"Alison meets Kolchin, but sees that he is not a bad person.\"\ntt0060921,ILkyIHOOoq4,\"The Russians try to borrow the Whittaker's car, but have trouble finding the keys in Elspeth's purse.\"\ntt0060921,VzXMcMcBwA8,\"While the town searches for the Russians, Walt and Miss Foss have trouble escaping their bonds.\"\ntt0060921,ijBU9q7fb3U,\"As Fendall Hawkins rallies the militia, Muriel makes a daring ride to alert the town.\"\ntt0060921,k3TpBfnaEmI,Mattocks faces down the Russian captain and his artillery.\ntt0060921,PBHYbeg2nao,Russians masquerade as Norweigans then pull a gun on the Whittakers.\ntt0060921,jMqI9UV3ob4,Norman pleads with the townspeople to bring more guns and get themselves organized.\ntt0088915,BrLcbi68R_A,The entire cast performs the musical's signature tune in the grand finale.\ntt0088915,PahRJMVNho0,Cassie begs to audition for Zach.\ntt0088915,4t7oXxFAlHM,A group of dancers participate in an open casting call for a Broadway musical.\ntt0088915,FhsFZDrRvoM,\"A Chorus Line - Dance: Ten, Looks: Three: Val sings about upgrading her physical attributes to improve her dancing gigs.\"\ntt0088915,t1RkYJaG9bo,Diana describes her frustration with acting class.\ntt0088915,8TbUl9dhTRg,Cassie refuses to regret the decisions she made with her heart.\ntt0088915,7bCqTdKJPFo,Paul describes to Zach his first job at a drag show and an embarassing encounter with his parents.\ntt0088915,5Ehdu6XTlBc,Mike sings a song about loving dance from an early age.\ntt0094118,ozkF8KRjeO8,Todd throws his opponent a curve ball when he transforms into the wolf in the middle of their boxing match.\ntt0094118,ndpVsMLr424,\"After a challenging fight, Todd is named the new regional champion from Hamilton University.\"\ntt0094118,kFeduM49hBY,Todd overcomes his temptation to turn into the wolf and continues the fight as himself.\ntt0094118,xKYgXZQuqm8,The crowd cheers on the wolf Todd to victory in the boxing ring.\ntt0094118,OflOQW_pkvc,\"When an argument between Nicki and Todd gets out of hand, a frog fight breaks out in their biology class.\"\ntt0094118,HavLrFJcqMs,\"Professor Brooks tells Dean to leave Todd alone, but she has to threaten a little more before he listens.\"\ntt0094118,KgnrxjgHngA,Todd panics when he starts transforming into the werewolf during a dance with Lisa.\ntt0094118,DYAdSce8Rd0,Two cute girls pull a prank their classmate Todd Howard by putting some ants in his pants.\ntt0094118,jTkt23CfSp4,\"Todd has an unfriendly greeting with his new roommate Chubby, and Stiles sets his evil plan in place.\"\ntt0094118,ffknf2fIpiY,\"Stiles, fed up with Todd's new demeanor, tells him he's become a jerk.\"\ntt0094118,95FV_p0Rivo,Todd uses a little bit of the wolf to frighten the mean admissions lady into letting him change his classes.\ntt0094118,fb-9_MV15I4,Todd impresses his schoolmates when he catches a frisbee in his mouth as the wolf.\ntt0892782,eGtDmvtBZQY,\"Susan finds herself in a covert government facility and meets fellow monsters B.O.B., Dr. Cockroach, and The Missing Link.\"\ntt0892782,eoREjwjeH30,Ginormica wakes up in Gallaxhar's alien spaceship where he zaps her of her powers.\ntt0892782,tLXNDzc-2fA,\"President Hathaway makes first contact with the alien ship by tickling the ivories, but the alien must not like Axel F because things do not go well.\"\ntt0892782,nmaCobIvt2w,Dr. Cockroach uses his impressive dance moves to break into the spaceship mainframe and cue a self-destruct sequence.\ntt0892782,JcC5XdvOWWM,\"Susan, B.O.B., The Missing Link, and Dr. Cockroach try to sneak into the spaceship's power core, but Gallaxhar sics his clones on them.\"\ntt0892782,BTJ-smMan7Y,\"Ginormica, B.O.B., The Missing Link, Dr. Cockroach, and Insectosaurus fight an alien robot on the Golden Gate Bridge.\"\ntt0892782,XF5omSq8eRQ,Susan takes on Gallaxhar but she must turn back into Ginormica to save her and her monstrous friends from the spaceship's self-destruction.\ntt0892782,XcgNkFuPBV8,\"During her wedding, Susan transforms into a giant monster, and the military has to come in to take her down.\"\ntt0892782,ETu553EnTJM,\"After stealing Ginormica's powers, Gallaxhar uses the quantonium to make clones of himself to take over the world.\"\ntt0892782,pjF6bofXAvQ,General W.R. Monger tells the President about his monsters and proposes using them to to fight the aliens.\ntt2091256,UciEIYZ-Eos,George and Harold celebrate their friendship and their weekend.\ntt2091256,evQcKvkQCl0,George and Harold have a little bit of fun with Captain Underpants posing as their principal.\ntt2091256,lGuivq-6xrw,George and Harold fight back against Professor Poopypants after he ensnares him in his trap.\ntt2091256,uzTuGHYRJ9w,George and Harold discuss the meanness of Principal Krump.\ntt2091256,kv-hhf-kPkw,\"George and Harold when Captain Underpants, as Principal Krump, takes over the school fair.\"\ntt2091256,rilZTyv9RLo,George and Harold describe the 'Origin Issue' of their Captain Underpants comic.\ntt2091256,grwlYBNyMk4,\"Captain Underpants, finally injected with real super powers, faces off against Professor Poopypants and Melvin.\"\ntt2091256,dSdY41CWixQ,George and Harold try to hypnotize their Principal Krump and accidentally convince him that he is actually Captain Underpants.\ntt2091256,u-eTCyG0jpA,George and Harold chase after Principal Krump after hypnotizing him into thinking that he's Captain Underpants.\ntt2091256,7wZdMPB-O6Y,Principal Krump finally get his revenge on George Harold after years of pranks.\ntt0062803,L_l2ii_25tc,Potts and Truly sing and dance for the Baron and Baroness dressed as dolls in order to get behind enemy lines.\ntt0062803,kBErrmmqnkI,\"The children of Vulgaria initiate their rebellion against the ruling class, while Potts and Truly free their own young ones from imprisonment.\"\ntt0062803,yuU4pFcEgWo,\"The Baron and Baroness are captured, and Chitty leaves Vulgaria with the newly reunited group.\"\ntt0062803,oY0spjrKFdM,Caractacus expresses his love for his two favorite things through song.\ntt0062803,LehcJeNbFBw,The Child Catcher sets his sights on the Potts children.\ntt0062803,SUr7fu-LXj4,Caractacus gets roped into a busking performance while running away from an angry customer.\ntt0062803,go4K4rCFjMQ,The Potts family and Truly Scrumptious enjoy a lovey day at the beach.\ntt0062803,aak6BqNR150,The Baron sings about his love to the Baroness while repeatedly trying to kill her.\ntt0062803,f1bk5a_jaEA,The group sings a song about Toot Sweets in the candy factory.\ntt0062803,Wuer3mLqIxc,Chitty flies and Grandpa sings about the Posh life.\ntt0062803,YfdRr7MWax4,Caractacus sings his children to sleep.\ntt0062803,1lt4euqZLsY,The Potts gang illustrates to Truly Scrumptious the sound their car makes through song.\ntt1646971,YSfBTZfswSg,\"Drago unleashes his own Bewilderbeast to fight Valka's Alpha, and Stoick squares off with Drago.\"\ntt1646971,6_eBGV71X0w,\"Valka shows Hiccup her dragon refuge, and examines and admires Toothless.\"\ntt1646971,IvFBobchMoc,Hiccup and Toothless lead the rest of the dragons in the fight against Drago and his Bewilderbeast.\ntt1646971,TiJBxtM5iKw,Hiccup tests out his new wing suit so that he can fly alongside Toothless.\ntt1646971,awuqJuO5WOc,Hiccup learns that the mysterious dragon warrior who just kidnapped him and Toothless is actually his mother Valka.\ntt1646971,DBUXGB_L5q8,Drago and his dragon army attacks Valka's safe haven for dragons.\ntt1646971,pDjY4qorZrg,\"Eret and his men capture Hiccup, Astrid and their dragons.\"\ntt1646971,PMjbPEGDJ7w,\"Drago's Bewilderbeast hypnotizes Toothless and forces him to attack Hiccup, but Stoick steps in front of the blast.\"\ntt1646971,S-EfnfP_cGY,\"At his father's funeral, Hiccup reminisces about his father and worries about how he will be able to live up to his great legacy.\"\ntt1646971,07kluxoO8j8,Hiccup helps Toothless break free from his hypnosis and turn on Drago and his Bewilderbeast.\ntt0892769,jFQUE_6Zhn0,Hiccup builds a prosthetic fin for Toothless.\ntt0892769,Up7TU2t7_8g,Hiccup and Toothless fight the monstrous Red Death dragon that rules over the dragon nest.\ntt0892769,VvNX7pOAK58,\"Hiccup, Astrid, and their friends come on their dragons to rescue Stoick and his men from the Red Death, and Stoick and Hiccup release Toothless to aid in the fight.\"\ntt0892769,2iD5pPwbDJ8,Hiccup takes Astrid out for a flight on Toothless to show her that dragons aren't dangerous.\ntt0892769,aFnS18LM8Ws,\"After things go awry during Hiccup's final dragon killing test, Toothless tries to save him but gets captured by Stoick.\"\ntt0892769,ZDyEERuK31Y,Hiccup and Toothless practice flying using Toothless' new prosthetic fin.\ntt0892769,Vv9KJYUnVvA,Hiccup and Toothless begin to bond over a shared meal of raw fish.\ntt0892769,T5KjTcbQVMs,\"Hiccup wakes up with an injury from the battle, but finds out that Berk is now a dragon friendly place.\"\ntt0892769,c95YKkIbTGg,\"After taking down a Night Fury, instead of killing it, Hiccup frees the dragon from his trap.\"\ntt0892769,yHjejU3HvRE,\"While bonding with Toothless, Hiccup uses his newfound understanding of dragons to excel in his class.\"\ntt7690670,8m3HqHIpcWU,Adalberto Gonzalez kills Scatter after he realizes that he's been stealing from him.\ntt7690670,CUnezbuG4fo,Priest and Eddie have an argument about striking back at another crew while at the gun range.\ntt7690670,Kekb8jHfDxI,\"Youngblood Priest and Georgia try to take Cynthia out of the country, but Juju and the Snow Patrol show up at Priest's house.\"\ntt7690670,ysLBlalu91s,Crooked cops Officer Franklin and Detective Mason blackmail Fat Freddie and his girlfriend into revealing their boss.\ntt7690670,GaIcAaHFc0U,Priest pays a visit to upcoming rapper Litty and shows that knowledge can be the scariest weapon.\ntt7690670,nIW73heJdg4,Eddie and Priest get into a fight after a visit from two corrupt cops.\ntt7690670,KBCL6GBurNw,Priest and Scatter spar while discussing Youngblood's cocaine supply.\ntt7690670,9svQ60inP0g,Eddie leads the Snow Patrol into an ambush at Priest's furniture store where Detective Mason and a SWAT team take out the drug dealers.\ntt7690670,EOavA469Z24,\"After being kidnapped by the cartel, Youngblood makes a deal with Adalberto Gonzalez to sell his product.\"\ntt7690670,-npMZStX7dU,Fat Freddie and an accomplice go rogue and shoot up a Snow Patrol barbershop.\ntt0067741,F70EkgLs4DM,\"Shaft, Ben and their men raid the Mafia's building to rescue Marcy.\"\ntt0067741,dxzktMx1jbY,Shaft drops in on Ben and his gang.\ntt0067741,hfNlv4HLZ5k,Shaft runs in to save Marcy.\ntt0067741,up1wTd5shfc,Shaft tends bar in order to spy on two mobsters watching his apartment.\ntt0067741,IBRkROD4KAU,Shaft gets more information from Captain Vic regarding his investigation.\ntt0067741,dzabuGq1wIE,Captain Vic brings Shaft in for questioning.\ntt0067741,94k4a1GI9rY,Shaft is questioned by Captain Vic and Tom Hannon.\ntt0067741,uo6yyV0N7y4,Shaft gets a surprise visit from Bumpy's goons.\ntt0067741,UaCGeQifvdo,Shaft rudely awakens Linda.\ntt0095348,ikqLKMZ86d8,\"When Jack makes an embarrassing confession to Cherry, she makes a few frightening confessions of her own.\"\ntt0095348,EzRtOVxgKCI,\"Jack cries out as he mends a small cut on his finger, then returns to battle.\"\ntt0095348,uhDhzHrffBQ,Jack panics when he and Slade come under fire.\ntt0095348,fJlJX4Rj_WU,Kung Fu Joe whips out his moves on two cops that pull him over but gets ambushed by a new group of officers.\ntt0095348,38jXOaoZQZI,Ma teaches Mr. Big's henchmen a lesson when they get out of line with her and her daughter.\ntt0095348,TjvHy-IYET8,Lt. Baker investigates a death caused by too many gold chains.\ntt0095348,Hb8I1My6zOM,Cheryl makes Leonard cry like a little girl when she turns demonic on him.\ntt0095348,LJl8SSI8MHA,Ma whips out the moves to protect her son Jack when he gets accosted by two mob men.\ntt0095348,NJNAE_e-gM0,\"The streets come alive when the Youth Gang Competition comes to town, chock full of car stripping, rioting, and more.\"\ntt0095348,4MbRVVP6rPg,Willie and Leonard try to justify their failure to a disappointed Mr. Big.\ntt0095348,tgHcYxKjwVE,Hammer is at the end of his rope when a cheap customer comes into his rib joint with some special requests.\ntt0095348,4CVFOnmW6v8,The crowd erupts in cheers as Flyguy recites a poem about pimping hos.\ntt0111161,SiwL_3yOWRM,Andy Dufresne asks Red for a lethal object.\ntt0111161,U_74PjS1Epk,Brooks hates life outside Shawshank Prison and decides not to stay.\ntt0111161,HT4kxxCpWYM,\"After Andy's escape, Red feels a hole in his heart.\"\ntt0111161,9UE8ospTDgA,\"After Brooks' breakdown, Red explains to the other prisoners what the prison walls do a man.\"\ntt0111161,s0ADj-PzbF0,\"Before the parole board, Red wonders what it means to be \"\"rehabilitated.\"\"\"\ntt0111161,-nCYpOC-Gtk,Andy Dufresne narrowly avoids getting raped by The Sisters.\ntt0111161,aP22KbKvaMg,\"Andy Dufresne offers Captain Hadley some free tax advice, but almost loses his life in the process.\"\ntt0111161,wMu4IBsX--I,Andy Dufresne explains his hopes and philosophy of life to Red.\ntt0111161,k1jq4jHNYpg,Red follows Andy's advice and heads south to Mexico.\ntt0111161,fR-2fk_qusE,Andy Dufresne goes through hell to escape Shawshank Prison.\ntt0051525,AWi8x9ctlps,\"Cullen and Joker are at each other's throats after their run-in with a lynch mob, until their caught by a little boy.\"\ntt0051525,MFmLZibi7DE,Cullen and Joker try to hop a train with the law hot on their heels.\ntt0051525,BN77UGYk5tg,Big Sam challenges the mob that has gathered to lynch Cullen and Joker.\ntt0051525,wpQ4R1jlFHs,Billy's Mother tells Joker she sent Cullin to his death by giving him the wrong directions through the swamp.\ntt0051525,sgB8cpEi_zU,Cullen and Joker try to climb out of a clay pit they jumped in to avoid being seen.\ntt0051525,XPKzmSSQ2xk,\"While waiting for the townsfolk to go to sleep, Joker and Cullen talk about how they ended up in jail.\"\ntt0051525,KGV-R-dVuGA,\"After failing to break their chains, Cullen and Joker argue about which direction they should go.\"\ntt0051525,e8EAVtsvfxc,\"For reasons of his own, Big Sam cuts Joker and Cullen loose and let's them go.\"\ntt0051525,uqVEYJGg3J0,\"Joker complains how he hates the word, \"\"thanks,\"\" which leads to Cullen explaining how he has a few words that needle him too.\"\ntt0313443,X0vQQA32UAs,Matthias scuffles with Paul on a hotel room balcony.\ntt0313443,XNZRK35VNrk,\"At the old boat, Ann pulls the trigger on Chris after his long tussle with Matthias.\"\ntt0313443,S99xKAAo43k,\"When Chris returns home unexpectedly, Matthias acts fast in order to save Ann from a domestic dispute.\"\ntt0313443,yiPqxnLMKbs,Matthias covers his tracks with a fake phone call when Alex receives incriminating evidence from Ann's colleague.\ntt0313443,Lh3y_KLTwWc,Matthias works fast to modify and intercept Alex's incoming fax.\ntt0313443,INrZ0l5JbrA,\"Forced to assume two different identities, Matthias thwarts Alex and her task force, and flees the hotel.\"\ntt0313443,zpsNG-exYxE,An eyewitness identifies Matthias as a suspect at the police station.\ntt0313443,WNAjVd38Q1E,\"In an attempt to intimidate each other, Chris and Matthias have a hypothetical conversation at the local bar.\"\ntt0313443,H-Mr-QmgheY,Ann meets her demise when Alex shows up.\ntt0313443,0g2o-CfakW0,Matthias flirts with Ann and pretends to conduct an investigation at the scene of a crime.\ntt0313443,m3qnMx_kA2A,Matthias receives a late night phone call from Ann and learns that she is still alive.\ntt0087800,P3WCkLjKW-k,Nancy finally stands up to Freddy.\ntt0087800,cl3sud_uDhc,Nancy goes into the nightmare realm to find out more about Freddy but finds more than she bargained for once inside.\ntt0087800,rSAWPBO-ewA,Nancy meets Freddy for the first time after falling asleep in class.\ntt0087800,0OqXqd_s0ho,Glen accidentally falls asleep while awaiting Nancy's call.\ntt0087800,Tf9j5763-Gc,Nancy has a visit from Freddy Krueger while taking a bath.\ntt0087800,aaGgRabJ0NI,\"Fearing for her friend Rod's safety, Nancy and Glen rush to the prison where he is being held to save him from Freddy.\"\ntt0087800,HcrTqof683A,Tina is pulled into the nightmare realm by Freddy.\ntt0087800,mD5CrAC4LPI,\"Just when Nancy things all is well, she learns that you can never escape Freddy Krueger.\"\ntt0087800,5aegHe2iS8w,Nancy goes into her nightmare to find Freddy and bring him back to the real world.\ntt0087800,S0hTkEECANg,Nancy traps Freddy inside her house after pulling him out of her nightmare.\ntt0089901,vq0OqfmArnY,Remo attempts Chiun's  training course.\ntt0089901,1V4SU2_-Ppg,Remo tries -and fails- to fight his way past Chiun.\ntt0089901,upoh7LbKZR0,Chiun instructs Remo to breathe.\ntt0089901,HcGpEScyT5o,Remo's training with Chiun continues… on a ferris wheel.\ntt0089901,2Q0IkYxSo3w,\"Chiun teaches Remo to live healthy, kill healthy.\"\ntt0089901,JmSmZRCl6A4,Chiun runs on water to escape enemy soldiers.\ntt0089901,ROXLPqlbJck,Remo busts some hoods then gets pushed into the river.\ntt0089901,kbpdM9ORaI8,\"Remo descends from the Statue of Liberty, taking out some goons along the way.\"\ntt0089901,3NRVJdoihjY,Remo Williams knows proper cool-action-hero procedure.\ntt0089901,qwwLKFCR4K0,Remo escapes his pursuers by running across wet cement.\ntt0089901,ZTsUO_9AT20,Diamond teeth can be a valuable investment.\ntt0089901,5OkvZ-y_dgI,Remo takes out Grove's jeep using logs.\ntt5220122,43OVm86-4rU,\"Drac and Johnny use his epic DJ skills to counter Van Helsing's evil beats, until they have no choice but to pull out the big guns...the Macarena.\"\ntt5220122,U9WHLcpvVz0,Dracula and the rest of the cruise arrives at Atlantis where a Kraken regales them with song as they enter.\ntt5220122,L2inhzv1Rs8,\"Dracula goes on a date with Ericka, and she tries to poison him with garlic.\"\ntt5220122,Z4kBo6FO8bc,\"At a wedding reception, Frank introduces Dracula to his cousin Frankenlady, but she proves to be a bit too much for Dracula.\"\ntt5220122,IAaXyDc1gjk,\"Dracula is dumbfounded after meeting the cruise captain Ericka and feeling the \"\"zing\"\" of monster love.\"\ntt5220122,9oS260wm-UM,\"As Dracula frets about his crush, his daughter gets everybody together for some fun in the pool.\"\ntt5220122,OjDuQ7O9XUo,Van Helsing uses the Instrument of Destruction to hypnotize and turn the Kraken against the friendly monsters forcing Dracula to take a stand and protect his family.\ntt5220122,NM0WEaC8LcQ,Ericka tries to kill Dracula while he and his family explore an underwater volcano.\ntt5220122,bC0vGFJbMjo,\"After following her through the ruins of Atlantis, Dracula dances with Ericka while saving her from the boobytraps that protect an ancient artifact.\"\ntt5220122,vM7QMLTm1so,\"Van Helsing tries to kill Dracula, but time and again the vampire gets away and foils the vampire hunter's plan.\"\ntt1179056,a8cviBPaWJ0,Kris falls asleep at school only to get a quick lesson from Freddy Krueger.\ntt1179056,rvpFERo3ZnA,Freddie Krueger tortures and taunts Jesse.\ntt1179056,Q2-Jg_2l1FA,Quentin witnesses the event that man Freddy Krueger the nightmare he is today.\ntt1179056,PQ3Qc8bOqlY,Nancy falls asleep in the bathtub.\ntt1179056,uycL6ws3vMc,Kris walks in on Dean while he gets a disturbing visit from Freddy Krueger.\ntt1179056,e2Cuc3oHb4U,Nancy is trapped in a nightmare with Freddy Krueger.\ntt1179056,q4feCJ__GwI,Nancy and Quentin finally bring Freddy Krueger into their world and attempt to kill him.\ntt1179056,vMzDPwqnJfw,Nancy and Quentin jump back into the nightmare world to catch Freddy Krueger.\ntt1179056,Tp5Q4AyqFOM,Freddy Krueger brings Kris into his nightmare.\ntt6772950,qlfI_AppyIk,\"Carter tells Olivia and her friends the real, sinister reason he invited them there to play truth or dare.\"\ntt6772950,2dvchK48Z-o,Olivia is dared to tell Markie of the night her father died.\ntt6772950,ftDkeswkEYU,\"Penelope is dared to walk along the roof while drunk, and Olivia, Brad, Markie, and Lucas try to catch her before she falls to her death.\"\ntt6772950,P6c_kQL3ZdU,\"Previous victim Giselle tells the gang how the game started, and then tries to complete her dare by killing Olivia.\"\ntt6772950,EAd7cMSm4Ng,\"After Olivia finds out that there is no way to end the game, she recruits the world to join.\"\ntt6772950,DGW436DH8Yw,\"Tyson doesn't tell a truth during a med school interview, so the demon kills him with his lucky pen.\"\ntt6772950,p07sXB8H3zQ,\"Ronnie doesn't complete his dare at a bar, so he falls off a pool table and breaks his neck.\"\ntt6772950,eMHv9pPuDiI,\"Before Sam can cut out his tongue and complete the ritual, Calux takes over Lucas' body and kills the only who can end the game.\"\ntt6772950,FgUKDQA1qFg,Brad is dared to take his father's gun and make him beg for his life.\ntt6772950,9WQJxS6-2iI,\"Olivia is dared to have sex with Lucas, and Lucas is forced to tell the truth about whether he loves Olivia or Markie.\"\ntt1540011,Tazw08OZpwU,Peter helps his girlfriend Ashley tend to her infected wound.\ntt1540011,37O1H9YiBJo,\"The crew runs into Lane and Talia, who believe like they've been lost for days.\"\ntt1540011,5XZcn9qR5SE,Lisa runs into the Parr house to find her friends and comes across a crazed Lane.\ntt1540011,UP6UWl1Y1-Q,Talia describes the history of the Blair Witch while the crew camps out in the Black Hills Forest.\ntt1540011,pVqOcGEbZvo,Lisa is attacked by a crazed Lane before being chased through the house by the Witch.\ntt1540011,LJ8UoUA2_uE,Lisa and James are cornered by the Blair Witch.\ntt1540011,wyHOKleZzFM,\"After waking up to find an eerie omen hanging above their camp ground, Ashley finally breaks and accuses Talia of being behind it all.\"\ntt1540011,sf2RRCNlz38,Lisa climbs her way through a small tunnel with the Witch following close behind.\ntt1540011,bmBh8DSdcnU,James runs into the Parr home to find his sister.\ntt1540011,e80zdJ6pWlI,\"Lost, tired and injured, Ashley attempts to free a drone camera from being stuck in a tree.\"\ntt2660888,HYctFVhe2Rc,\"Kirk, Spock, and McCoy go after Krall before he can destroy Yorktown.\"\ntt2660888,5PaUTnk9k9Y,\"Scotty and the crew use \"\"classical music\"\" by the Beastie Boys to destroy the enemy.\"\ntt2660888,qu68Gym5PvE,Kirk must make the choice to rescue Jaylah or get back to the ship safely.\ntt2660888,e5LZR3vCkzo,\"Kirk, Jaylah, and the crew stage a diversion to allow Scotty to beam up the crew.\"\ntt2660888,Q4KRYWe3ngs,Scotty comes across a group of bloodthirsty scavengers after crash landing on an alien planet but is rescued by Jaylah.\ntt2660888,mtsQ0CR4Z28,Krall cuts the Enterprise in half in order to stop Kirk and his crew from escaping.\ntt2660888,ssgm3-sCY-Y,Kirk orders his crew to abandon ship before its inevitable destruction.\ntt2660888,Ff20ZDSj7d8,Krall and Kirk come face to face after Krall attempts to kill the citizens of Yorktown.\ntt2660888,YRpgfi7L9Rs,Kirk tries to make piece with a warrior race of aliens.\ntt2660888,nvldRH4OC_k,Kirk and Chekov rush to escape from Kalara and her men.\ntt0078346,2AmY_TaUh8M,Clark decides to show off his powers a bit after a fellow student interrupts his chances with Lana Lang.\ntt0078346,bfKu5Jc8TjA,Superman rescues Lois when she falls out of a helicopter.\ntt0078346,YwnX8My7428,\"With planet Krypton moments away from total annihilation, Jor-El ensures that his son escapes in a specially constructed spacecraft.\"\ntt0078346,ju9K6nk07iE,Lois Lane is totally enrapt with Superman as she flies in the sky with him under the pale moonlight.\ntt0078346,Ov6nBKuu6pI,\"Miss Teschmacher saves Superman, who flies directly to the offending missile and changes its course.\"\ntt0078346,TZyl-21DgPo,\"After tricking Superman into opening a case containing Kryptonite, Lex Luthor throws him into a swimming pool and leaves him for dead.\"\ntt0078346,LoCaeI5RffI,A grief-stricken Superman literally turns back time in order to save Lois.\ntt0078346,nprJvYKz3QQ,Clark saves Lois by catching a bullet with his hand.\ntt0078346,3gSOZW-vNFk,\"Superman races across the sky to save Lois, but it's too late.\"\ntt0078346,3oIQCt6GVcY,Superman does his best to fix the damage that the second missile did after hitting California's San Andreas Fault.\ntt0114069,CRjB5ImoHXk,\"After making an antidote to the virus, Sam and Major Salt decide to fly in the path of the bomber that is preparing to destroy the town of Cedar Creek.\"\ntt0114069,HaK75RHhEEw,\"After hearing that the Motaba virus has appeared California, Sam asks General Billy Ford why they aren't doing anything about it.\"\ntt0114069,Z6cRw6CU7l0,Sam and Major Salt capture the host animal with the help a family whose daughter has befriended it.\ntt0114069,MZq_z08pLqI,\"After capturing the host animal and heading back towards Cedar Creek, Sam and Major Salt are confronted by Maj. Gen. Donald McClintock.\"\ntt0114069,pW-ZHlM3RxI,\"After finding out he has been taken off the Motaba virus case, Sam Daniels confronts General Billy Ford.\"\ntt0114069,HRkSVkOdXcU,\"While investigating a massive Motaba outbreak in a California town, Sam brings the news to General Ford that the virus has mutated.\"\ntt0092710,a2H-pXAgx6s,\"Bernice chases down Carson, a wanted murderer, and the two get into a fight.\"\ntt0092710,ZUmTlIUmbmE,\"Detectives Nyswander and Todras attempt to arrest Bernice, but have trouble with the front door.\"\ntt0092710,76dXe1ePSrQ,Detective Nyswander attempts to question Carl Hefler.\ntt0092710,MnosttqGIfw,Bernice and her friend Frankie confront Carson about the people he killed.\ntt0092710,PjPEnXNEX_E,\"While taking her time robbing an apartment, Bernice panics when the owner comes home with a date.\"\ntt0092710,a3GgzkKvBVY,Bernice catches a customer stealing books from her store.\ntt0092710,SBIpGdJA_5Q,Carl pretends to be package delivery man in hopes of getting the real name of a bartender.\ntt0092710,_bUaFRyP80A,\"Bernice cons her way into the apartment of K.E. Graybow, a man she suspects is a killer.\"\ntt0092710,-DXQJLwDAwg,Professional thief Bernice meets Dr. Cynthia Sheldrake for a possible job.\ntt0102526,T4wxOGDv980,Nino makes his case in court and ends up getting a light sentence.\ntt0102526,RQUwqHaBuOk,\"After the Carter fiasco, Nino takes his anger out on Kareem and threatens Gee Money.\"\ntt0102526,3jYu-qta0mU,A hit is put out on Nino Brown after a wedding celebration\ntt0102526,b6WK3MwYFSk,Scotty Appleton meets Pookie and sees the horrors of the crack epidemic firsthand.\ntt0102526,D6OAWdqi-s0,Peretti and Appleton surveil Nino Brown and a stick-up kid named Pookie.\ntt0102526,4dNwoRFjOkQ,The Old man is fed up with what Nino Brown is doing to the community.\ntt0102526,7SybWD4iYMA,\"When Scotty's cover is blown, the cops and the gangsters hunt each other through a factory.\"\ntt0102526,wstckFfu1z4,Scotty and Nick capture Nino and give him some of his own medicine in front of the neighborhood.\ntt0102526,taGt2UqFdm0,\"Nino Brown reveals his plan to take over \"\"The Carter\"\" apartments and turn them into a crack production facility.\"\ntt0102526,K4lTsRzlorA,\"Nino and Gee Money try to pick up the pieces, but it is too late for reconciliation.\"\ntt0106455,_3v30bJGaCg,\"Jimmy and his partner, Brady, are in the middle of an undercover operation when a fellow officer gets killed.\"\ntt0106455,ExvYKH9z-9A,Jimmy and Brady try to get information out of a lawyer who made a bad deal with a few killers.\ntt0106455,ku4GcEUQ0TA,\"After con man Red is arrested after a shooting, he agrees to help officers Mercer and Brady catch his violent partner Ronnie.\"\ntt0106455,b4kRHpvisxE,Ronnie tries to sell a large amount of counterfeit money to a very successful lawyer who does illegal dealings on the side.\ntt0106455,OTp5qNMBuRY,Ronnie meets up with man who is going to buy counterfeit bills from him.\ntt0106455,K0QjNiVA6NU,Red tries to get himself more time to pay back a debt to mobster Tony Dio.\ntt0106455,LunIbcmUQtE,\"Red and his trigger happy partner, Ronnie, kill the man Red owed tons of money to while Jimmy and Brady rush to arrest them.\"\ntt0106455,lx420G7IDnE,Officer Mercer tries to get a counterfeiter he arrested to snitch on his clients.\ntt2404233,fZrN9LabLQQ,\"After Bek steals back Horus's eye from Set he is nearly thrown off the obelisk; leaving Horus to chose between saving his companion, or recovering the eye that would restore his power.\"\ntt2404233,X_4WgfjyOyg,Bek breaks into Set's treasure vault to steal Horus's eye.\ntt2404233,VJW2e8_cIfw,\"Horus battles Set to avenge his father's murder, and take back the throne.\"\ntt2404233,dp2MR9fswWk,\"Horus, Bek and Hathor visit Thoth, the God of Wisdom, for help.\"\ntt2404233,r9ae_frgcpU,Set uses Horus's coronation as an opportunity to seize the throne from his family.\ntt2404233,uOHMPcGgInI,Bek and Horus fight off two goddesses armed with giant snakes with help from Horus's ex-lover Hathor.\ntt2404233,TfbuiIc3pME,Horus and Set battle in their divine forms for the fate of mankind.\ntt2404233,fKpKz3dysY0,Set denies Ra's wish and seeks immortality by destroying creation.\ntt2404233,kDDU-k-5v6s,Mnevis and his soldiers ambush Bek and try to reclaim Horus's eye for Set.\ntt2404233,CUYNZo-8cDM,Thoth tries to solve the Sphinx's riddle before the group is killed.\ntt2404233,89OqkIyNnfQ,Bek fights Urshu while Horus tries to stop Set from destroying the world.\ntt0104265,GewQTlvA_3Y,Isaac meets with his patient Diana who reveals that she has purchased a gun.\ntt0104265,tVubEM2oUj4,\"Isaac and Heather realize they are in love, even though she is married.\"\ntt0104265,tr2hYRUEkHk,Dr. Isaac Barr meets Heather Evans and is immediately smitten.\ntt0104265,SriHCm7dhyw,Isaac asks Heather why she involved him in a plot to kill her husband.\ntt0104265,RxLb-Iqyqps,Isaac meets with Diana who has an improved confidence.\ntt0104265,Tvmzk3Ce8-s,Isaac meets Heather's criminal husband Jimmy who thinks he is a federal agent.\ntt3110958,OxLmmTv6CTs,\"While the Horsemen learn more about how The Eye works, Thaddeus leaves The Eye to Dylan.\"\ntt3110958,DQU7X4QDX80,\"While Atlas controls the rain and Jack does card tricks, Merritt reveals their final act to his brother.\"\ntt3110958,LoG_2u-0rWo,Dylan creates a distraction so Atlas can get away with the stick.\ntt3110958,Dr6eV4y0atg,Merritt and his twin brother Chase taunt each other and Jack fails to hypnotize Chase.\ntt3110958,CWS1CWSAmjs,\"In the middle of their presentation intended to bring down the Octa CEO, the Horsemen find themselves exposed by a mysterious presence on stage.\"\ntt3110958,vRUQ_q5mivc,\"After throwing the Four Horsemen out of a plane, Walter and Arthur are surprised to find out that they were tricked.\"\ntt3110958,3IVugy6dK3E,The Horsemen succeed in getting the chip through the metal detector and out of the laboratory.\ntt3110958,KEc0SGkBDJ4,Atlas finds a strange woman in his apartment.\ntt3110958,_uwVIMdk7hc,Walter explains to the Horsemen who he is and why he kidnapped them.\ntt3110958,5ve2E8iEbSQ,The Four Horsemen create an elaborate ruse in order to hypnotize Octa owner Owen Case.\ntt3110958,YmGBAiHnK0U,The Horsemen work together to hide the playing card with the chip while security searches them.\ntt0101984,4N-rVUkv-lw,\"David and Ruth have dinner with Dorothy, an actress whose life was ruined by the House Committee on Un-American Activities.\"\ntt0101984,nA3-p6SeWtc,David gets fired while he is in the middle of filming a movie.\ntt0101984,XlS3PKbK2Wc,David decides to stand up for what is right while being questioned by the House Committee on Un-American Activities.\ntt0101984,Qdgk7Q1dn34,David is hired to direct a film that has already started filming.\ntt0101984,oNySP0X32eI,David is questioned about his wife and friends by the House Committee on Un-American Activities.\ntt0101984,AeM2PgL5hm0,\"David Merrill visits Larry, a fellow filmmaker, and discovers he sold out his friends to the House Committee on Un-American Activities.\"\ntt0101984,F67qzjMABFQ,David meets with two lawyers who inform him about the House Committee on Un-American Activities.\ntt0101984,Wn73_KG11Wo,The House Committee on Un-American Activities attempts to get Larry Nolan to name which of his friends are members of the Communist party.\ntt0101984,3ND0jZIthFo,\"After finding out that the House Committee on Un-American Activities might call on him, Baxter gets into a fight with David.\"\ntt1411697,xe6kO-SJYCk,Alan gives an uncomfortable toast at Stu's wedding.\ntt1411697,Fb1v9LGaZ1w,The guys seek information about Teddy from some angry and unhelpful monks.\ntt1411697,yxOMkjGIZYI,\"Just as he's about to recount last night's events, Chow dies after snorting cocaine.\"\ntt1411697,kgd0wuSVHXo,\"Stu struggles with the fact that he had sex with a transvestite. Then, Phil gets shot by a gang of criminals seeking their monkey.\"\ntt1411697,b_SJOg2q3PM,Stu and the guys try to steal their monkey back while Chow drives through Bangkok in a crazy car chase.\ntt1411697,D0yfau4bAXM,\"Kingsley tricks the guys into believing he has Teddy, only to arrest Chow and leave them hanging.\"\ntt1119646,XMt98-MEWmw,The guys check into Caesar's Palace and Phil decides they should rent a villa.\ntt1119646,daULewxdD8w,Stu lets his controlling girlfriend boss him around while he packs for the trip.\ntt1119646,JZCM0ZW-GMw,\"As a punishment for stealing a cop car, Stu, Alan, and Phil must participate in a stun gun demonstration.\"\ntt1119646,Hl1mw0-APy8,\"When the guys gather on the roof to make a toast, Alan gives a heartfelt speech.\"\ntt1119646,G-lDaFtb7eE,\"Stu, Phil, and Alan return to their hotel room and find Mike Tyson waiting for them.\"\ntt1119646,h4Zho4DUcXw,The guys wake up to find their hotel room in shambles and a tiger in the bathroom.\ntt1119646,znjpkKX6bek,Stu discovers that he got married while blacked out.\ntt1119646,DdNfSuTpDbA,Stu feeds the tiger a drugged piece of meat and then sings a song.\ntt1119646,sIbYUg1FKK4,\"During the wedding singer's inappropriate song, Stu breaks up with Melissa.\"\ntt1119646,u_6tnXDfxBo,\"When the guys go to pick up their friend in the desert, Mr. Chow gives them the wrong Doug.\"\ntt5052474,AUbfGwY4Fco,Matt tries a less-than-conventional technique to squeeze the truth from a Somali pirate.\ntt5052474,ch_JeDyNaFM,Matt and Alejandro are taken by surprise when the police escorting suddenly attack.\ntt5052474,HXubLg3o3qY,Matt brings Alejandro into the fold on a war against the cartel.\ntt5052474,eMyuRmZNaTk,Alejandro deals with the remaining sicario after nearly being assassinated.\ntt5052474,YOUt-qq-snc,A team of soldier raid the home of Somali pirates.\ntt5052474,gA0u3Iir0CU,\"While Matt tries to escape to the border, Alejandro searches for Isabel.\"\ntt5052474,xVWAp3OLYTM,Miguel is forced to assassinate a captured and hogtied Alejandro.\ntt5052474,99wezqewopU,Border Patrol chases down a group of undocument immigrants attempting to cross the border and discover something unexpected.\ntt5052474,uvZImlL51Io,Matt avenges the death of his friend Alejandro by murdering all those he believes responsible.\ntt5052474,6hT5xOszncI,Alejandro and Matt lead a covert team posing as a rival cartel while kidnapping Isabel.\ntt0112401,otlsrvaxpdE,Bain and Rath try to kill each other in a moving taxi.\ntt0112401,Tpz4Dl8focY,\"A figure from Rath's past appears, but will not let him get away alive.\"\ntt0112401,infMR62l_dc,Bain uses ingenuity to escape from a moving cop car.\ntt0112401,D0p6abBHjZU,Rath makes Bain wait all day to kill him to make him lose his cool.\ntt0112401,6MaOE8YiJy8,\"Rath and Bain try to kill each other, while Electra tries to stay alive.\"\ntt0112401,pK35em6gl0Q,\"After losing his patience waiting, Bain goes inside the bank for a chat with Rath.\"\ntt0112401,wbROoMNi8Ho,\"Bain threatens to kill Electra, but Rath has something to say about that.\"\ntt0112401,FOXEyMTnekU,Rath meets Miguel Bain for the first time when he takes the hit that belonged to him.\ntt0112401,howhfMAoEt0,Bain and Rath have one final confrontation to prove who is number one with a bullet.\ntt0112401,TZXt5K8U_HM,\"Bain finally gets a shot on Rath, but realizes that Rath is not working alone.\"\ntt0111255,elR_OgHND1c,Ray plants a bomb to kill the first of Tomas' men.\ntt0111255,RGaBXM3EHUo,Ray is surprised when he sees May alive at what was supposed to be her funeral.\ntt0111255,B9SkWFyq-EQ,Ray fights to take back a woman's seat on the bus.\ntt0111255,g4BV-MbeTjM,Ray spoils Ned's plan when he rigs a restaurant with explosives.\ntt0111255,uraQr7J0Tlw,Ned threatens the Miami Bomb Squad by building a bomb of his own.\ntt0111255,NqWsINBcm2o,\"Ned listens in on Ray's phone call about the ad, but Ray knows he's there.\"\ntt0111255,D6XNq3CrDBU,Ray plants a special bomb to take care of Tony.\ntt0111255,PJ0NkZgbrUw,Ned walks right into Ray's trap as the building around them begins to self destruct.\ntt0111255,HOePjj-M63Y,Ray rigs his hotel room with explosives when he learns that Ned is coming after him.\ntt0111255,c82FD6lh2LQ,Ray has an explosive teacup delivered to Tomas.\ntt2557478,lp1s4-tc2U0,\"In Gipsey Avenger, Jake and Nate defend Sydney, Australia from Obsidian Fury, a rogue jaeger.\"\ntt2557478,1qYVJgixc3U,\"When kaijus attack, the jaegers of the Pan Pacific Defense Corps fly into action!\"\ntt2557478,E9pB6_WUR-U,Jake and Nate fight Obsidian Fury on thin ice and make a horrifying discovery.\ntt2557478,O7jHiw8IyxQ,The scientists manage to save the Shatterdome just in the nick of time.\ntt2557478,j66Fsl_q5Ig,\"In Scrapper, Amara and Jake outrun November Ajax.\"\ntt2557478,4KkCEjawUHM,Newton makes his monsters grow.\ntt2557478,DtV4RnADOeA,The Mega-Kaiju slaughters its way through the PPDC.\ntt2557478,U22aGOTlIy8,The PPDC drops Gipsey Avenger on the Mega-Kaiju.\ntt2557478,836dGO4v65I,Kaiju-Jaeger hybrids attack the Shatterdome.\ntt2557478,4sNyWmYN-rM,Jake does his best to get the cadets into the fighting spirit before they take to the skies.\ntt3410834,t5GdZx7AS-E,\"After shooting Four's mother, Evelyn, Peter releases the memory-erasing serum on the citizens of Chicago.\"\ntt3410834,6O_dprt5rts,Tris and Christina use high-tech drones to fight their way into Evelyn's facility and reunite with Four.\ntt3410834,pwSkfvXD_ug,Four participates in what he believes is a rescue mission into the unforgiving Fringe.\ntt3410834,mmH76155CuU,\"When Four gets news that he's not going to Chicago, he attacks the passengers and pilot of his hovercraft and brings it crashing down.\"\ntt3410834,I9r1j1ZKBYk,Tris shares a message of determination with the newly liberated citizens of Chicago.\ntt3410834,FlQd5p9_XvY,\"Tris and her friends climb over the dividing wall and escape, but not before losing one of their own.\"\ntt3410834,tlSscKeO9Cc,Tris steals David's hovercraft and makes a daring escape.\ntt3410834,Q7--4JW6y6E,Tris and her friends are rescued in the nick of time when trying to escape Edgar.\ntt3410834,Drt2w_iit1M,Evelyn tests a serum that wipes out people's entire memories.\ntt3410834,Vn5WazNB5sU,Tris shuts off the release of the memory serum and defeats David.\ntt0293815,oXGJeQDRuxE,Money Mike attempts to escape from Damon with the help Craig.\ntt2531344,REWaiDiKDIE,\"Mitchell bursts into Kayla's hotel room, throws her date against the wall, but then the error of his ways and reconciles with his daughter.\"\ntt2531344,Qc-E0u_1Ei4,\"Lisa, Mitchell, and Hunter try to run their daughters' limo off the road which leads to a barf chain reaction in the girls' limo.\"\ntt2531344,QzcXi2irovs,\"Lisa, Mitchell, and Hunter crash their daughters' prom to stop them from having sex.\"\ntt2531344,V9RhgEHIxkI,\"Lisa, Mitchell, and Hunter arrive at Austin's house to stop their daughters from having sex, but instead find Austin's parents acting on their prom night fantasies.\"\ntt2531344,RgPuswoKZtw,\"Julie, Kayla, and Sam tell each other about the results of their sex pact, and Sam comes out to them.\"\ntt2531344,NizLAsFlvww,\"Mitchell and Hunter break into Ron and Cathy's house to steal Ron's cell phone, but find themselves in the middle of one of their sex games.\"\ntt2531344,x3OTeacsT84,\"Hunter tells Sam that he wants to spend more time with her, and she tells him that she is a lesbian.\"\ntt2531344,ZvGaiZMBOOI,Lisa has to escape the hotel room before her daughter has sex.\ntt2531344,Eu1EfSDUKFg,\"Lisa, Mitchell, and Hunter read their daughters' text messages, and find out that their emojis mean they're making a \"\"sex pact\"\" to lose their virginity tonight.\"\ntt2531344,TfsGgp4go6k,\"Mitchell is challenged to a chugging contest at a high school party, but this isn't your father's drinking contest.\"\ntt0293815,A7a7RtpKzYY,Craig and Day-Day fight over Donna.\ntt0293815,XUnfvueexSk,Craig and Day-Day find crime on the first day of their new job.\ntt0293815,TRgkvisG4yg,Damon corners Money Mike in the bathroom and shows him how they flirt in prison.\ntt0293815,D4E8UpMb8SI,Craig and Day-Day run into Damon on the way to work.\ntt0293815,xNSWp7Hb5tU,Craig and Day-Day meet Money Mike.\ntt3393786,nma6daFY6b0,Reacher finds himself being followed by a group of guys intent on hurting him real bad.\ntt3393786,3Blk7Vo0abY,Two cops arrest Reacher in a diner only to find that he's not the one who should be wearing the cuffs.\ntt3393786,mfCwgYR1yS8,Reacher finally has a showdown with the Hunter that threatened Samantha's life.\ntt3393786,kjLqB63ihJE,Reacher escapes custody and saves Susan Turner from men sent to kill her.\ntt3393786,6R3tTi_m8VQ,Reacher catches up to the Hunter who is holding Samantha at gunpoint.\ntt3393786,jk2mjuWhQ_0,\"Still wanted for murder, Reacher and Turner have one final chance to prove that Gen. Harkness is the real bad guy.\"\ntt3393786,KkBUMdYMw-8,Reacher and Turner rush to the rescue of Lt. Espin after he gets caught in a shootout.\ntt3393786,rrWLFKZafAc,\"While on the run, Reacher and Turner decide to confront a dangerous looking man following them.\"\ntt3393786,vYm_2A_cg0Y,Reacher spots two passengers that he thinks deserve some turbulence.\ntt3393786,jF6JN1VSpmY,Reacher takes a break from his meal to say hi to two guys following him.\ntt0790724,YkfEc-PYJ8A,\"After screwing up, Linsky finally has to meet the mysterious man behind the killings, The Zec.\"\ntt0790724,9g5pe-B6uL8,A mysterious man in a parking garage uses a sniper rifle to kill five innocent people.\ntt0790724,PxuQ1n3xaRQ,Jack Reacher finally confronts Charlie and gets some revenge for all the people that had been killed.\ntt0790724,nXrsB2RMo2w,\"Before Reacher can ask gunstore owner Martin Cash about his customers, he has to first prove he can shoot.\"\ntt0790724,mySMw3VkEBE,Reacher calls Helen only to find she's been captured by Charlie and his men.\ntt0790724,cgLMSMIU124,Reacher gets attacked by two destructive idiots while investigating a missing suspect.\ntt0790724,lfeYgfKa2cY,\"Reacher finds himself framed and chased by the cops, only to literally run into the guys who set him up.\"\ntt0790724,ILbn3iOiOiU,\"Reacher, being chased by cops and bad guys, puts his faith into the local public's dislike of police to save him.\"\ntt0790724,5U8scp5J9Is,Jeb Oliver and his friends attempt to take on Jack Reacher in a bar fight.\ntt0790724,h8Rxb-9snJQ,Jack Reacher gets a provoking visit from a girl named Sandy and her fight happy friends.\ntt0385307,hhmPqQpJWks,\"Gracie offers to be the face of the FBI because she is an exemplary role model for women, but she runs into another agent with anger management issues.\"\ntt0385307,FQH9s2dJe50,Gracie keeps her promise to help an elementary school girl with her school presentation.\ntt0385307,1etjTR5wYhU,\"Gracie Hart is recognized by a fan, which blows her undercover operation in a bank.\"\ntt0385307,Hi93mYJyO8I,Gracie makes her debut on Regis Philbin's tv show and brings Fuller for a demonstration.\ntt0385307,c0N60xOU9yk,Gracie goes undercover in an old folk's home to get information from Stan Fields' mother.\ntt0385307,H6Y2GNQfNo4,\"Gracie and Fuller try to clarify their working relationship, but it gets violent.\"\ntt1055292,CaG_6UWfyLE,\"The case worker drops by for a surprise visit, but Holly is drunk.\"\ntt1055292,0SNckpLgK_Q,Holly and Messer have a big fight at Thanksgiving.\ntt1055292,gvANfpQnohw,The case worker shows up at a really bad time again and they forget to hide the pot brownies.\ntt1055292,_ICXfAWaISQ,Holly and Messer try to change the baby's diaper for the first time.\ntt1055292,2DCjXk4qpLo,Holly ask Messer to show how he picks up women at the grocery store.\ntt1055292,_O8yGbcFmc4,\"After a romantic evening, Holly accidentally crashes Messer's motorcycle.\"\ntt1322312,9QwQbE5Eu-I,\"Erin and Garrett have phone sex, but the fantasy rapidly unravels.\"\ntt1322312,FYZrWswLpu0,\"Garrett has a private talk with Erin's protective sister, Corinne.\"\ntt1322312,yceziOf95-0,Garrett and Erin have some really bad wine at an Italian restaurant.\ntt1322312,3QoYCS0iOq4,Erin and Garrett say goodbye at the airport.\ntt1322312,WEvTEdLLa2s,Erin and Garrett have dinner with some married couples.\ntt1322312,9Ro2O9YAkAo,Box explains how his mustache helps him pick up women in a specific age group.\ntt1322312,dJhNjpuc9eo,\"Corinne explains how she and Phil like to dry hump, but she makes Erin worry about her long distance relationship.\"\ntt0419843,Hj7OFElSIlM,Sarah shares with Carter how she feels she is exactly where she is supposed to be.\ntt0419843,XSX3JKL0DpU,\"Carter meets Eric, a guy who has a huge crush on Lucy, in the mall bathroom.\"\ntt0419843,Rf161T4RyxA,Sarah opens up to Carter that she has breast cancer and they share a passionate kiss.\ntt0419843,GwtcfnmV68I,Carter moves in with his grandma Phyllis.\ntt0419843,l17e0M4TTBA,\"Sarah takes Carter to her special place, where she reveals that her husband is having an affair.\"\ntt0419843,8ZSuFOPBDmI,Lucy shares a humiliating story with Carter and he encourages her not to be angry at her sick mother any more.\ntt0419843,JhMO7RA7-VI,Lucy decides to forgive her mother and work on the next phase of their relationship.\ntt0419843,WCM5kknf5nI,Sarah and Carter go for a walk around their suburban neighborhood.\ntt0419843,F8q-K4BTbEk,\"At the mall, Carter asks Lucy about the suburban scene and the average high school experience.\"\ntt1340138,AEBd24_Uxfk,T-1000 chases Kyle Reese through a shopping mall until an unexpected savior shows up.\ntt1340138,wXLFg03in2U,John Connor and Pops finally go head to head as the fight to stop Genisys comes to an end.\ntt1340138,5Le4OlAvuME,\"After saving Sarah and Kyle Reese, John Connor reveals the truth of his origins to them.\"\ntt1340138,XGoagkYcJ38,Pops sacrifices himself by holding off John Connor while Kyle Reese and Sarah escape.\ntt1340138,LTfMvliqiGk,Sarah is forced to make a tough decision before she can take out the T-1000.\ntt1340138,y5vxDOma1Ok,The new and improved John Connor goes after Kyle Reese and Sarah after his identity is revealed.\ntt1340138,NBYfDP0IO18,\"Pops, Kyle Reese, and Sarah are chased by John Connor.\"\ntt1340138,RtxMw4sua3Q,Sarah and the group take to the skies to take on John Connor.\ntt1340138,C9rUREflwDI,Kyle Reese faces off against the original T-800.\ntt1340138,UZnkAElIe_c,Pops goes up against the original T-800 model in a new timeline.\ntt0090859,EdiZzm9bA2I,\"Detective Monte reluctantly congratulates Cobra on a job well done, but Cobra has one more surprise in store.\"\ntt0090859,pdwGNiv2q4U,\"Captain Sears assigns the Night Slasher case to Cobra, who gives Gonzales some dietary advice.\"\ntt0090859,Ycv2RoyxW1w,Ingrid narrowly survives an attack by the Night Slasher.\ntt0090859,o6sD0PvhkWc,Cobra fends off an onslaught of psychopaths as they descend upon a motel to kill Ingrid.\ntt0090859,99ziSsaLUpU,Cobra protects Ingrid with his defensive driving skills in a furious car chase throughout Los Angeles.\ntt0090859,Vbj9JcYGo_w,Cobra faces off against Night Slasher in an abandoned factory.\ntt0090859,F_cS_kmSiRY,Cobra inflitrates a supermarket to free some hostages and put away a psycho.\ntt0090859,UqPsrqpwLmU,Ingrid drives while Cobra lays waste to a swarm of motorcycle-riding murderers.\ntt0090859,q1bV-D8cSz8,Cobra fights off some assailants at his apartment as the Night Slasher prepares to make his move at the hospital.\ntt0090859,VqL0Mr9uNL8,Cobra races to the hospital as the Night Slasher pursues Ingrid.\ntt1469304,dZjgSYTxWsY,\"Brody, Mitch, and Summer are arrested and scolded by actual cop Sgt. Ellerbee after an illegal investigation.\"\ntt1469304,x35VnGsGrFc,Mitch chases after Victoria's henchman Frankie and take back the evidence the man stole from him.\ntt1469304,Wd5RTjtSSxk,Mitch and Brody go undercover to infiltrate Victoria's secret operation.\ntt1469304,axhUtepWokA,\"While Ronnie distracts Victoria, the rest of the Baywatch crew investigates a drug operation.\"\ntt1469304,WDuIl_uPY_s,Mitch challenges Brody to a strong man contest before he can join the squad.\ntt1469304,CDTnjLPgMKM,Ronnie gets a little too excited after seeing CJ fresh out of the water.\ntt1469304,FFvaLp9s1p0,\"Brody, Mitch, and Summer hide in a morgue while a pair of thugs hide evidence from a murder case.\"\ntt1469304,QlDqtuo10fA,The Baywatch squad finally corner Victoria as she is about to escape.\ntt1469304,HfgFZz6gCOM,\"After saving the beach, the Baywatch crew settles in for the first time as a real time.\"\ntt1469304,N_qIfvDbZjc,\"Fired from the job he loves, Mitch gets inspiration from his old mentor.\"\ntt0095188,wka4snE-AmU,\"Andy uses a huge boulder to stop the speeding mailman, but he ends up ruining his publisher's car.\"\ntt0095188,dqfoyAnszH0,\"Andy goes fishing with some locals, but makes enemies instead of friends.\"\ntt0095188,oo5SkNM3c1Y,Elizabeth shares her squirrel story with Andy and he realizes it is based on himself.\ntt0095188,vIgFGJRGlkk,\"Andy Farmer tries to call the Sheriff about a coffin in the garden, but the operators are not obliging.\"\ntt0095188,mxnq8jkwttE,Elizabeth tells Andy that his novel really stinks.\ntt0095188,QNUbwijCKfw,\"Andy loves the \"\"lamb fries\"\" at the local diner and breaks the record for eating them.\"\ntt0095188,gMCgkXpEOIY,Andy tries to sell the farm with a little help from the townsfolk he hired.\ntt4881806,s-vP7WgMkpA,\"As a volcano erupts on the island, Claire and Franklin are attacked by a carnotaurus. Thankfully, Rexy intervenes.\"\ntt4881806,hAf3IBKWubo,A team sent to get a Indominus Rex rib runs into more than they bargained for.\ntt4881806,an9Zfn3IZCY,Mills tries to escape with the Indominus Rib and Owen has to say a final goodbye to Blue.\ntt4881806,CkAf_qzHNwo,Wheatley tries to get teeth from the wrong dinosaur.\ntt4881806,NFj82X1Fdh4,Dr. Ian Maclcolm talks to the U.S. Senate about the new age brought upon by bringing Dinosaurs back into the world.\ntt4881806,xgX9WrVFO0Q,\"Claire, Owen, and Franklin outrace the erupting volcano. They view the tragic sight of a Brachiosaurus getting caught in the destruction of the island.\"\ntt4881806,EQWtaLTOwCw,\"Owen, Claire, Maisie, and Blue confront the Indoraptor.\"\ntt4881806,jwnPI-d36vU,\"Owen tracks down Blue, but so do Wheatley's men.\"\ntt4881806,XUSzvNtSsFE,Owen and Claire try to get T-Rex blood for a transfusion.\ntt4881806,BfRUV4g8sYw,\"Franklin inadvertently allows a Baryonyx into their facility, along with lava.\"\ntt1179933,4UzVKW_Iqi0,\"Michelle makes a break for the airlock, only to have a terrifying surprise.\"\ntt1179933,DJTF3NmqF7U,Howard confronts his captives about their absconded supplies.\ntt1179933,Mc_zp1s60NY,\"Howard, shows Michelle what's happened outside.\"\ntt1179933,bMjYOV8VnYk,Michelle escapes from the burning bunker.\ntt1179933,lLeY8-bhEuQ,\"Michelle uses her creativity to craft a Molotov cocktail, just in time to take down the living alien ship.\"\ntt1179933,jypAc6XYFfA,Howard breaks down the situation for Michelle.\ntt1179933,UglfLjHUNbU,Michelle flees from Howard.\ntt1179933,iQJh6I8kH_E,Michelle launches an escape attempt.\ntt1179933,pl7JzW6eGZg,Michelle hides in a barn from an alien stalker.\ntt1179933,InkyowbQcIs,Michelle finds a large alien ship spraying poisonous gas.\ntt4172430,Vh-olAK5vrs,The safehouse is subject to a surprise mortar attack in the middle of the night.\ntt4172430,_IwNoboTiHU,A group of Libyan enemies attack the embassy where Ambassador Chris Stevens is staying.\ntt4172430,0K6bVf4ra1w,The team is attacked by a second wave of enemies with more artillery than before.\ntt4172430,pAwoA-XPzsQ,The Soldiers hold down the fort as an offensive is launched by their enemies.\ntt4172430,2pCUsMk0Zs0,\"Jack Silva realizes the mortar attack has heavy casualties, including his close friend Rone.\"\ntt4172430,OxBd2RQI4eQ,A group of Libyans surge the compound as the group prepare for what may be the final siege.\ntt4172430,hgqJjr7pBa0,Jack Silva and Rone are cornered by a group of militiamen at a makeshift checkpoint.\ntt4172430,88dS92rgWhA,\"After only finding Ambassador Stevens body, Tyrone and Jack try to instruct their team to leave the burning compound and make it back to the Annex.\"\ntt4172430,cWj-sdxFiY4,A group of military contractors escape the ruins of the embassy but run into a road block after going the wrong way.\ntt4172430,EL3Ma917bug,The Secret Soldiers are attacked by the same group who went after the Ambassador while en route to the makeshift embassy.\ntt2118624,UDINZf4W4mw,Max and her friends watch as the killer in the film strikes his first victim.\ntt2118624,LQFc7IKhUuE,Max and the other survivors attempt to run away from Billy but are stuck in slo-motion.\ntt2118624,YNAv6w5RDIs,Max says goodbye to Amanda one last time.\ntt2118624,FTzUto6toxY,The gang finds out firsthand the origin of the murderous monster stalking them.\ntt2118624,BGZN_6xPw64,The gang has a hard time convincing the camp counselors in the movie that they can't escape the genre they are in.\ntt2118624,gpjYU0C2yrY,Max faces off against Billy.\ntt2118624,QgqXAXhRvYU,Duncan finds out the rules aren't exactly what he thinks.\ntt2118624,ywRWNlbXD8s,Max and the survivors flashback in time in order to escape from Billy.\ntt2118624,kfdeG-hRX7A,Max and her friends embrace the slasher genre and enact a plan to get Billy out of hiding.\ntt2118624,HfFM7RZ5GxI,Max goes to rescue her mother alone.\ntt0822847,PBaQezez_UU,Vampires attack the homestead of Lucy Pace and her family.\ntt0822847,2nclzm_QlLw,\"Priest's interrogation of a vampire's \"\"familiar\"\" is cut short.\"\ntt0822847,SJSDO3IHsrs,The bloody history of the war between humans and vampires.\ntt0822847,sdwghUH-K14,Priest is given final orders by Monsignor Chamberlain.\ntt0822847,BN8VnFVqRRI,Black Hat wreaks havoc on an unsuspecting border town.\ntt0822847,5uvhg1AtZlQ,Priest and Priestess try to slow down Black Hat's train and save his niece.\ntt0822847,iktC8imMBnw,Priest fends off a nest of vampires while trying to find information on his niece's captors.\ntt0822847,kCxqmweKXZ0,Priest fights Black Hat atop a speeding train.\ntt0822847,usmBCn2WxYU,Priest makes a last stand against Black Hat.\ntt0822847,nixHRzTvCUE,Priest and Hicks investigate a vampire hive and find more than they bargained for.\ntt2304933,rt3FEbzjM3o,Sergeant Reznik indoctrinates Ben into the military.\ntt2304933,9UrJ60MVNao,Cassie finds that Evan lied to her about her gun.\ntt2304933,xLdIkC6qcow,Ben and his squad are sent on a mission to kill the Others.\ntt2304933,tmUleIek9Fc,Evan takes care of a wounded Cassie after she is shot in the leg.\ntt2304933,2oLqQw8jHts,Ben's squad gets a new member named Ringer.\ntt2304933,QNlazlRan6A,Evan follows Cassie in order to help her find her brother.\ntt2304933,HGgfJkZAx8Y,Cassie goes back to get Sam's stuffed bear.\ntt2304933,3IUoqFHJ6wk,\"After escaping, Ben and Cassie discuss what they should do next.\"\ntt2304933,r2GpJzIdoYQ,Cassie learns the truth about Evan.\ntt2304933,LTyelOWIGh0,Cassie and Sam fight to survive the first two waves of attacks from the Others.\ntt3862750,gxqt6x5ThcU,Carter breaks into Leah's house while she is away and goes through her personal belongings.\ntt3862750,6QB5kS_JcuU,\"Carter tampers with Dave's car, causing him to crash. After the crash, he kills Dave.\"\ntt3862750,AvPVexWamGg,Carter attacks a man talking to Leah at the gas station.\ntt3862750,OByY45anMr4,Carter saves Leah from a jerk at the bar.\ntt3862750,oNiW2ftWINg,Dave threatens Carter when he makes Leah uncomfortable at a restaurant.\ntt3862750,QP_o0yWJYKM,Detective Hansen gives Leah some advice off-the-books.\ntt3862750,eJ93IIgvVyI,Leah breaks up with Carter.\ntt3862750,_JoP_xhSETM,\"Carter breaks into Leah's house to finally make her his, only to find a shotgun waiting for him.\"\ntt3862750,rey_J7jIvno,Leah breaks into Carter's apartment and destroys his stuff.\ntt3862750,-Xb-ryuTDlE,Mrs. McCarthy checks out suspicious behavior next door and Carter kills her for it.\ntt1198138,LFO-xqbWYpw,Sharon is shocked to find out what Derek has been hiding from her.\ntt1198138,Rp8A7gf0dZ8,Lisa attempts to seduce Derek at the company Christmas party.\ntt1198138,y2wupV34DRk,Derek and Sharon are shocked to discover Lisa may have kidnapped their child.\ntt1198138,ROeFmcvZRf8,Lisa and Sharon have an all our wife vs wanna-be-mistress battle after Sharon finds Lisa in her bedroom.\ntt1198138,DbORPqtzyx4,Lisa and Sharon take their fight to the next level.\ntt1198138,-YaPh7shnWQ,Sharon accuses Derek of cheating on her with Lisa.\ntt1198138,HRmLJScvW8M,Lisa follows Derek to his car and surprises him with a gift.\ntt1198138,O6Stx_mwAVY,\"Derek is surprised when an emergency from his \"\"wife\"\" turns out to be Lisa.\"\ntt1198138,g425SDBoDBI,Derek is shocked to find out Lisa has followed him to her hotel.\ntt2011159,b60DLSEemEY,\"Colin stalks his ex-fiancee, Alexis after he escapes from prison.\"\ntt2011159,9Wfswn2lkAo,\"After getting pulled over, Terri tries to get help from a cop when Colin isn't looking.\"\ntt2011159,njfu6wuNC_w,Meg joins Colin for a smoke in order to find out more about him.\ntt2011159,NcMHcR5IzEY,Terri defends herself against Colin in an effort to buy more time.\ntt2011159,Wrb8nkLKkxU,\"Jeffrey apologizes to his wife, Terri.\"\ntt2011159,PECLt8uCcRk,Terri discovers that Colin isn't who he appears to be.\ntt2011159,xCvyw2bipUM,Colin forces Terri to change in front of him.\ntt2011159,dfLN2aPZ5sM,Colin takes Terri to his ex-fiancee's house.\ntt2011159,KXTBm9eUiko,Terri lets Colin use her phone after he crashes his vehicle in the storm.\ntt2011159,bhtJNsUfHIM,Colin's parole hearing doesn't go as he planned.\ntt2381249,fegOYb4_PSk,Ethan Hunt negotiates with Lane to set Benji free.\ntt2381249,u4T7slD8Mq4,Ethan Hunt gets unexpected help from Ilsa Faust while being tortured.\ntt2381249,jBMZnAIY_Ng,Ilsa Faust faces off against Janik.\ntt2381249,Oy9R8mpKSmM,Ethan Hunt goes after Ilsa Faust after she steals top secret data.\ntt2381249,Jf8Sheh4MD4,\"While Benji attempts to infiltrate a government building, Ilsa Faust must decide if she should rescue Ethan Hunt.\"\ntt2381249,880-MqUhhEk,Ethan Hunt battles against Ilsa Faust and a mysterious sniper in order to foil or start and assassination attempt.\ntt2381249,e56FOw5rIhw,Ethan tries to get himself and Ilsa from Lane's men.\ntt2381249,OArHd5pe8Ls,Ethan Hunt tries to stop an attempted assassination and runs into a giant-sized sniper.\ntt2381249,elpUGB9Ap1Y,Ethan Hunt is left hanging onto a plane mid-takeoff while Benji tries to get him inside.\ntt2381249,GSrtUVzdt6M,Ethan Hunt and Benji chase Ilsa and her crew through the streets of Morocco.\ntt0419706,ThCnJ2m0exo,\"When a mutant attacks and kills Portman, Sarge annihilates it with \"\"The Big F***ing Gun.\"\"\"\ntt0419706,D1Iu4JKRGIM,Dr. Carmack and his colleagues run from monsters of their own making.\ntt0419706,FBpdDE96XhE,Sarge and his men shoot the hell out of space zombies.\ntt0419706,nUxHF4O3GYU,\"The Kid refuses to follow orders to kill everybody on sight, which causes conflict.\"\ntt0419706,-Jf-E7oEguU,\"Reaper goes on a rampage, shooting and killing attacking monsters and mutants as he searches for his sister.\"\ntt0419706,nr1sLngjJXQ,\"As Sarge begins to mutate, he and Reaper square off in a battle of bullets, lasers, and explosives.\"\ntt0419706,JyEvCZ8kwW4,Destroyer tries to survive an attack by a hulking mutant.\ntt0419706,y0DYykDLU0Y,Sarge and John fight off even more zombies but it becomes obvious it's a losing battle.\ntt0419706,lPOo7SzR7Sc,\"Reaper is attacked by a mutated scientist. Then, a crazy monkey scares Sarge and Destroyer.\"\ntt0419706,MPQojemDuDo,Goat is attacked and gravely wounded by a mutant.\ntt0483607,SEn179T1Apk,Eden fights in Kane's medieval arena.\ntt0483607,eWuiIzqZryQ,Eden and her team make a final getaway from the raiders.\ntt0483607,UYzF0CAcN3I,Sol's raiders attack Eden and the other survivors.\ntt0483607,4T8OrSXKqVo,Eden leads her team on a mission on a shipping boat.\ntt0483607,jf_-d13-UNw,Sol's men pursue Eden's unit.\ntt0483607,-yzEjTjo2IA,Eden fights Viper.\ntt0483607,XN7uqQnAxIc,Sol gives his raiders a show.\ntt0483607,9IVd9X91fiI,Eden out-maneuvers a pack of raiders.\ntt0483607,b0kunBGZmK4,\"As the team tries to escape in an APC, they get attacked and captured by a never-ending group of raiders.\"\ntt0483607,TL91ZYSxoag,Eden's mission gets off to a bad start when they are suddenly attacked by violent raiders.\ntt1482459,BXlYuaycRbU,The Once-ler wonders how bad it can actually be to chop down trees to make a profit.\ntt1482459,OqvD4NC-s9E,Ted and the townsfolk finally stand up to Mr. O'Hare and sing a song as they plant a tree downtown.\ntt1482459,r0eg-ieT77g,O'Hare pursues Ted in a zany high-speed chase for the seed.\ntt1482459,9KYrqmQdvsI,\"The Lorax tries to steal The Once-ler's bed, but he accidentally sends it down a raging river.\"\ntt1482459,StvrI9z9kLY,\"When Ted shows up at her house, Audrey shows him her painting of something called \"\"trees\"\".\"\ntt1482459,aecYY1vUiDU,\"When Ted wonders where he can get a real live tree, Grammy gives him advice.\"\ntt1482459,gV6Y3OwR2n0,The Once-ler makes sense of the Lorax's lesson and gives Ted a seed.\ntt1482459,92lO2Bum7v4,The villagers introduce us to the town of Thneedville.\ntt1482459,GZ3fgYIUrJU,\"After the Once-ler chops down a tree, the Lorax appears out of the sky to confront him.\"\ntt1482459,tp1eVLXEXm8,The Once-ler discovers a beautiful forest and makes friends with the animals.\ntt0482606,KEfLE_bvsSo,The masked strangers force themselves into the home.\ntt0482606,PmNdhL9_nPM,\"Kristen hears another knock, but this time it's inside the house.\"\ntt0482606,ZpwDcgHhFDQ,\"Believing he is one of the killers, James mistakenly shoots his friend Mike.\"\ntt0482606,018kRNbZj0I,Kristen is tormented and attacked by the mysterious masked criminals.\ntt0482606,VjRhsK7p8gY,Two young Mormons discover the brutal murder scene at James and Kristen's house.\ntt0482606,hFNZy6iBNVs,The masked intruders end their torment by stabbing and killing James and Kristen.\ntt0482606,hyopxkr7RuY,\"Despite warnings from Kristen, James steps outside to investigate his car.\"\ntt0482606,06qgPR9Eqww,Kristen makes a break for and tries to escape the house.\ntt0482606,8pbM30ZMO84,James and Kristen act fast when an axe starts chopping through their front door.\ntt0482606,GLQiaEzx03A,\"When their car is destroyed, James and Kristen head back into the house, only to discover that someone has been inside.\"\ntt7518466,6qZZWAScCn8,Conor has a rematch against Diaz for the title.\ntt7518466,XdtbL0dP0X0,Conor has some choice words when he learns that the world featherweight champion is canceling their fight.\ntt7518466,MLCZ_B7FKc8,Blink and you'll miss it!\ntt7518466,4C7VpH9VvC0,The fighters talk smack in preparation of their title fight.\ntt7518466,djPS3AC9DKk,Conor meets Arnold Schwarzenegger.\ntt7518466,UB1xsj0ZiKA,Conor McGregor takes on Chad Mendes.\ntt7518466,NQw5e3HJgfk,Tempers flare between Conor and Nate Diaz.\ntt7518466,a7vAR-7YBWE,Conor has an accident during training.\ntt7518466,j1tXIl0snEk,Conor McGregor faces stiff competition in Nate Diaz.\ntt7518466,JvTQZxz-KBk,Conor McGregor begins his UFC career with an impressive winning streak.\ntt0795421,alhVUKh36_Q,Sophie gets overwhelmed with the mystery of her parentage.\ntt0795421,2GvL0jFY7u8,\"Donna and the Dynamos perform \"\"Waterloo\"\" with the guys.\"\ntt0795421,bu9YxTb6gf8,Sam and Donna play cat and mouse with their feelings.\ntt0795421,nLkmfL6IVQs,Rosie aggressively pursues Bill.\ntt0795421,CyUZe8xRNnQ,Sophie gets to know her potential fathers.\ntt0795421,QRoWiTcO7dk,\"Everyone dances along with Donna and her friends to \"\"Dancing Queen.\"\"\"\ntt0795421,05qid4p_cfw,Sophie reads about her mother's romantic past.\ntt0795421,Qe2m1wxb5_w,Donna grieves over the end of Sophie's childhood.\ntt0795421,mIeU7y3CGKQ,Sophie and Sky declare their love for each other.\ntt0795421,DUjB9LTtzGg,Donna sings about her ex-boyfriends.\ntt5308322,1dwtsZ4IJQE,Tree confronts the real killer.\ntt5308322,NnDKut3pxoU,Tree makes one terrifying discovery at the hospital after another.\ntt5308322,rtn4-lDSB80,The Murderer stalks Tree in the parking garage.\ntt5308322,IlH-egwG2pQ,Tree gets a deadly drop on the killer.\ntt5308322,idvqLiOeLgc,Tree gets herself repeatedly murdered in an attempt to discover her murderer's identity.\ntt5308322,YAmnMBHMPso,Tree sticks it to Danielle and makes her move on Carter.\ntt5308322,yQpFQFL-YLI,Tree mistakenly thinks that getting arrested will save her.\ntt5308322,uAjGtAOqMQw,Tree kills Tombs before he has a chance to kill her.\ntt5308322,86Vd7XFiYZA,Tree walks into a deadly trap.\ntt5308322,_y_We1FV_RQ,Tree lets her guard down at an inopportune moment.\ntt5776858,MNmdm8voYFE,Alma & Reynolds retrieve a dress from a troubled customer.\ntt5776858,fn5dXUu_qxM,Alma's surprise dinner for Reynolds goes downhill.\ntt5776858,KfAm5nyHM3U,Reynolds takes ill when inspecting a wedding dress.\ntt5776858,a87b-bsz1Mg,Reynolds rages about his marriage to Alma.\ntt5776858,URDzGjLruJU,Alma gains confidence and vies for Reynolds' attention at a fashion show.\ntt5776858,iHQZhYadNwQ,\"Reynolds deliberately eats a poisoned dish, and Alma tells him her intentions.\"\ntt5776858,WQLTwtwUnEI,Reynolds takes Alma's measurements.\ntt5776858,w424xCe0eGQ,Alma details her love with Reynolds.\ntt5776858,UQes95Ouciw,\"After recovering from his poisoning, Reynolds makes a major life decision.\"\ntt5776858,vvBW4Szes1U,Reynolds and Alma hit it off immediately.\ntt7109844,3PhcsTMfqIs,The unregulated days of the post-Civil War whiskey industry and the federal law that fixed it is recounted.\ntt7109844,K3Po5dqfTgc,Neat: The Story of Bourbon - The Right Way To Drink Bourbon: Longtime distillery employee Freddie Johnson talks about the best way to drink bourbon: whichever way you want to.\ntt7109844,xpQ1_5xZuKY,\"Third-generation Buffalo Trace Distillery employee Freddie Johnson talks about what good bourbon is all about, and how much it can mean to enjoy it with family.\"\ntt7109844,-HwJeE-iuIY,\"Distillers and Bourbon drinkers all discuss the legacy, the future and their hopes for bourbon.\"\ntt7109844,MqiNJmj_ODg,\"Castle & Key Master Distiller Marianne Barnes, and other distillers talk about what the corn means for bourbon.\"\ntt7109844,ldzjtk016bY,The importance of the white oak barrel in the bourbon-making process is analyzed.\ntt7109844,EIrEOL6S6sk,Distillers and bourbon aficionados recount how Elmer T. Lee and his single barrel bourbon revitalized the whiskey industry in the 1980's.\ntt7109844,DZuHwW24HUY,\"Distillers tell how bourbon is made, from when the grain comes in to when it hits the barrel.\"\ntt7109844,9tqaHOTOasE,\"By the 1980s, the popularity of bourbon was surpassed by new, cooler liquors, and the bourbon industry began to suffer.\"\ntt7109844,SBSzom7RbCs,\"The bourbon making process is examined, and we find out what makes bourbon different from whiskey.\"\ntt4542660,RG4exoyldqw,The skaters shred in Dubai.\ntt4542660,L0-Ye--I0Uo,American skateboarders come to China.\ntt4542660,wXc9z1SmLJM,\"The group spends all day skating through Barcelona, Spain.\"\ntt4542660,wcYfLYh8ixg,Skateboarders will do anything to land a trick.\ntt4542660,Tcnr8WoHAOI,The group plays with some fire before going back to the basics at a school.\ntt4542660,HMQpYC2SMX8,Here's an off-the-grid skateboarding paradise.\ntt4542660,UIRhpmPhehk,Skateboarding proves a welcome release for Brandon.\ntt4542660,qiAPls8Te0k,\"Skating is everywhere and for everyone, no matter your age, race, gender or where you find yourself living.\"\ntt4542660,fLRlh8AHh8k,Skaters in Spain resurrect one of Europe's first skate parks.\ntt4542660,lMYtQlLlu3c,Security guards in China found a good way to deter skaters.\ntt2527336,poswRRB_2i0,Bo and the other animals witness the newborn Jesus Christ.\ntt5117670,n5tMCxz-9uY,Peter Rabbit and the rest of the cute animals throw a huge party in Old Mr. McGregor's garden and house.\ntt5117670,4FppyDurg7c,\"After Thomas McGregor captures Benjamin, it's up to Peter, Mopsy, Flopsy, and Cotton-Tail to save him.\"\ntt5117670,A9QknjLLso4,\"Through Bea's art, the story is told of how Peter and his sisters lost their father and grew to dislike Mr. McGregor.\"\ntt5117670,51IaQuowCcA,Peter and his friends find a way to turn the new electric fence against Thomas.\ntt5117670,9VwWPnHZMrs,\"Peter, Benjamin, Cotton-Tail, Flopsy, and Mopsy prank Thomas by hitting him with fruit, including his allergy-inducing blackberries.\"\ntt5117670,YSOUTJUdTgs,\"Peter and the rabbits push Thomas to use his explosives, but this leads to disastrous results for everyone involved.\"\ntt5117670,QkrYlP8-Cmo,\"Peter and Benjamin try to sneak in to Thomas McGregor's garden, but Thomas has other ideas.\"\ntt5117670,roST4TM0ccM,Peter and Thomas get into a fight in Bea's art studio.\ntt5117670,9fEMKGFr-Sk,Peter and Thomas both apologize to Bea as she finds out Peter has been involved in everything.\ntt5117670,izWrKfUUP9o,Peter and Benjamin head to Thomas' work to convince him to move back to his house in the country.\ntt2527336,c6mLa5_GvCQ,Dave makes a distraction for Bo's escape.\ntt2527336,VgO0K_0mi1U,Bo goes to great lengths to save Mary.\ntt2527336,sYdqpWTQyaI,Bo leads all his animal friends in an attack on the soldier and dogs searching for Mary.\ntt2527336,fDeQjTPTlDE,The camels mishear what all the fuss is about.\ntt2527336,-qGU1hiiJfU,Bo's game of charades goes poorly as he tries to explain to Mary the danger she's in.\ntt2527336,r2x4QueC2As,\"Bo prays for help, and receives a blessing... of sorts.\"\ntt2527336,e48T01eVXtU,Dave helps Bo escape from his owner in the busy city of Jerusalem.\ntt2527336,Cp3FHbNWi64,Ruth gets some help rallying her flock.\ntt2527336,dj0MEV7d1NE,The Angel Gabriel appears to Mary and tells her that she is to be the mother of Jesus Christ.\ntt6000478,m-L3k3ElIQE,Roman is shocked to find the man he is representing CJ is the same gangster he personally put in jail.\ntt6000478,sYWS5RSmJ-s,\"After finding out his client was murdered in jail because of him, Roman experiences a string of unfortunate events.\"\ntt6000478,c9oE47YW6YM,Roman and Maya find trouble when the police show up after finding what they believe to be a dead man in the street.\ntt6000478,i_SnR25Zoho,Roman speaks at Maya's activist meeting and finds more opposition than expected.\ntt6000478,hp3HX9PAkcA,Roman finally finds a bit of success after a long bout of awful fortune.\ntt6000478,rCEbhr55ISU,Roman says goodbye to Carmen.\ntt6000478,ZFrDw6oQai4,\"Paranoid after receiving a death threat from a known killer, Roman fears he is being followed.\"\ntt6000478,9V_GlFhNX2g,Maya confesses her falling faith to a disillusioned Roman.\ntt6000478,Hs8mVGI7uVc,\"Former student to Roman's partner, George, tries to persuade Roman to work for his firm.\"\ntt6000478,oR3h33DSGPM,Roman appears in court for the first time in years and finds immediate opposition from the ADA.\ntt6116682,JpQqyJbdb44,An actor reads a letter from Rosa Parks detailing an encounter with a white man with cruel intent.\ntt6116682,G90tPiniLd8,Scholars and eyewitnesses discuss the history of black women's mistreatment in American history.\ntt6116682,8O8gYNK3ULc,Relatives discuss the night Recy disappeared after walking home from church.\ntt6116682,43mOz_bosUY,The aftermath of Recy's case is explored by those who remember.\ntt6116682,0nEWiH0pYR8,Scholars comment on the systemic racism that allowed Recy's rapists to feel entitled to her body.\ntt6116682,zzkjLhitH7c,\"Recy Taylor, herself, comments on the case over 70 years after it ended in injustice.\"\ntt6116682,ZNzEreKcfUU,Recy's rapists all give varied accounts of the night in question leading to one criminal confessing the crime.\ntt6116682,sr7zvUpRxIU,The suspects in Recy's case all lie in their testimony alleging that Recy was in fact a prostitute.\ntt6116682,STcAVDuOkv8,Recy's case attracts the an investigator from the NAACP by the name of Rosa Parks.\ntt6116682,LjKWOmIeSQs,Relatives discuss the night Recy came home after going missing for days.\ntt4572792,l46yjkR0SqU,\"Peter ends the talent show with a magic trick, while Susan discovers that Henry's plan wasn't really needed after all.\"\ntt4572792,JJrTnnaEZ_w,Dr. Daniels tries explaining the prognosis to Henry.\ntt4572792,gVdIiTE1ykg,Susan begins the prep set out by Henry before he passed away.\ntt4572792,fTIIhYZ_CzA,Susan is confronted by Glenn after he realizes she lured him into the woods to kill him.\ntt4572792,AX4i2YZqE14,\"Susan rushes to enact Henry's plan to kill Glenn, while everyone is at the Talent Show.\"\ntt4572792,34FTDewDftA,Peter begs Henry to help him get rid of a bully but Henry gets distracted when he runs into Christina.\ntt4572792,9C6DANHgdrE,\"Henry gives a special task to his little brother, Peter, to carry out following his potential death.\"\ntt4572792,sIwsArbH5ck,Susan panics after awaking to hear Peter and Henry having a seizure.\ntt4572792,dg6PaO0e6wA,\"Susan contemplates assassinating Glenn while his step-daugher, Christina, performs at the school Talent Show.\"\ntt4572792,MYkSUEjYLc0,Susan breaks down over Henry's illness which takes him soon after.\ntt3250590,AvPljYL3Sq4,\"Kamala Lopez and activists talk about what the Equal Rights Amendment can do for our nation, and what we can do to help the cause.\"\ntt3250590,e0oLpONe5O0,\"The foster home to streets pipeline is examined, and experts speak on the child sex worker epidemic.\"\ntt3250590,2h6NGVrMQ20,\"The abusive behavior of pimps is looked at, and Placement Director of the Los Angeles County Probation Department recalls a heartbreaking story of a girl who unfortunately was not helped by the county.\"\ntt3250590,Iqkw8K2hT74,\"Wal-Mart v. Dukes, the largest equal rights employment case in history, is examined. It was found that there was \"\"statistically and anecdotal evidence\"\" of discrimination at Wal-Mart, but the corporate giant was found not guilty.\"\ntt3250590,06456EaXTVM,\"How employers and the U.S. Government have exploited, ignored, and undercut laws protecting the rights of pregnant women.\"\ntt3250590,5JjVwGi4aHU,\"Kamala Lopez and fellow activists explain what the Equal Rights Amendment is, and recount its tumultuous history.\"\ntt3250590,D2l0Qk_lxo0,\"Experts on sexual assault cases take a look at the pervasive rape culture that is so prevalent in the country's high schools, colleges, and universities.\"\ntt3250590,m_Wx68QkJSU,Kamala Lopez and others examine the prevalence of instances of sexual assault within the United States military.\ntt3250590,v8L3Lyit8Ro,Experts on domestic violence and former victims tell of how the political and legal system has failed to protect women who are victims of domestic violence.\ntt3250590,awhN-boYW_I,\"International women's rights activists talk about CEDAW, and discuss why the United States is one of only seven countries in the world to not ratify it.\"\ntt2923316,Og88KQM5nVk,Matt Dillahunty rebuts ad hominem attacks against his atheism.\ntt2923316,z8NcTAIV0Wc,Radio hosts discuss firearms being allowed in church.\ntt2923316,SZCtfLaCWO0,Matt Dillahunty schools a caller on why situations dictate moral decisions.\ntt2923316,zdOov2A4-os,Easter eggs are dropped from a helicopter during a church sponsored children's event.\ntt2923316,QcFKRqQENrI,These people pray with intensity.\ntt2923316,W4jxHLn-00g,\"Although he didn't practice what he preached, Joel Osteen at least spread the word of God.\"\ntt2923316,8TwlBdCGS24,Folks in Texas pray before their rodeo.\ntt2923316,EchEZ7BmRos,Folks in Texas pray before a Nascar race.\ntt0228333,dmASD5tRwV4,\"When Lt. Ballard is possessed by one of the ghosts, the taking of some pills gives her visions of the spirit's martian past.\"\ntt0228333,m-2WmcLl_PQ,Lt. Ballard and Desolation lead the fight against the possessed miners after the train doesn't arrive in time to rescue them.\ntt0228333,KwpO_4Rq13o,Lt. Ballard and Desolation fight off the surviving ghosts on the train home.\ntt0228333,CG2YRWPhfiA,Lt. Ballard and Desolation encounter and fight a group of infected miners.\ntt0228333,GvHBefStM7o,Lt. Ballard and the survivors prepare to battle to the train depot.\ntt0228333,ZUchY9Hw48A,\"After her plan goes awry, Lt. Ballard and her crew make a last ditch effort back to the train.\"\ntt0228333,X1SJgm2hIAY,\"Lt. Ballard, Desolation, Jericho and Bashira make a grand stand against the possessed led by Big Dadd Mars.\"\ntt0228333,6TVik8mYxrY,Sgt. Jericho discovers the commanders head on a stick and the self-mutilated ones who did it.\ntt0228333,F0ga5pmQjnc,\"After a debriefing and thinking the terror is over, Lt. Ballard is awoken to find the ghosts are back.\"\ntt0228333,QEfuINMgcnI,Lt. Ballard gets into it with Desolation after he takes a rookie hostage.\ntt5325030,ZrW_1_rFaw0,Tom acts and hits on Ellie.\ntt5325030,Qm-fzB7OmEU,Ellie makes a fan film with Frank.\ntt5325030,bq5vS1a-smo,Ellie recreates a romantic scene from Bell Book and Candle.\ntt5325030,6P5yW3rYuMs,\"For her art project, Ellie has her friends recreate the famous ending of Some Like It Hot.\"\ntt5325030,XHCai_8cuiU,\"Inspired by song, Ellie shakes her stuff.\"\ntt5325030,W-phG8nc1Xc,Ellie gets into some pot cookies.\ntt5325030,Oro8uCubA84,Ellie fantasizes over John.\ntt5325030,HpeiPgkqEro,Ellie gets her friends to help her recreate a scene from A Clockwork Orange.\ntt1578275,kIIY1-f_rBg,Ronny encourages Nick to make the money shot at the hockey half-time show.\ntt1578275,aSsFjcw8R3Y,\"Ronny follows Nick to his Thai massage place, but Nick lies about it.\"\ntt1578275,uR7yS87K1tA,Ronny makes a negative toast at Beth's parents' anniversary party directed at Geneva.\ntt1578275,LHcbbXpKIrc,Ronny makes up a crazy story to explain his facial injury to Beth.\ntt1578275,vDzbcWty6m0,\"Zip attacks Ronny, but Ronny finds his weakness.\"\ntt1578275,UFiKhV_Ay70,Zip shows up at Ronny's intervention and pretends to be his bookie.\ntt1578275,TChg5dQ36WM,\"Ronny tries to get his camera back from Zip, who is still angry about their previous altercation.\"\ntt1578275,BLElh2JGufs,\"Ronny threatens to tell Nick about Geneva's infidelity, but she threatens him back.\"\ntt1578275,8aK7LsC0G-4,\"Dana is incredibly enthusiastic for Ronny and Nick's vision, but Nick has serious anxiety about delivering.\"\ntt1578275,8sURhgulh7E,Zip finds Ronny spying on him and Geneva and a fight ensues.\ntt3957170,1DDHNN3oums,Arile's family highlights all that he's sacrificed and how little his dream has helped them.\ntt3957170,nQuKmZkCDZ8,Matanda recounts being a cattle rustler with Arile.\ntt3957170,01rrDGEzBc4,Matanda deals with the fallout of blowing his family's savings.\ntt3957170,a-qtnTRl6HA,Arile runs in the Prague Marathon.\ntt3957170,UX8ua4_z-kg,Robert Matunda runs for political office to change the cultural landscape.\ntt3957170,DTZylvspsps,\"Arile travels to Iten, Kenya, where he can travel with the very best.\"\ntt0455944,TunbuB_bBb8,Bob gets Masters to help him raid Pushkin's cash drop.\ntt0455944,DyxkjYmlzhg,Bob and Teddy discuss the mysteries of a familiar Russian tale.\ntt0455944,4zBMw2XqgWY,Bob goes after the head of the organization that has been after him.\ntt0455944,Z-l7wGkNyko,Terri visits Bob after getting out of the hospital.\ntt0455944,BdZgC84uYUo,Bob has an unwelcome encounter in the local diner.\ntt0455944,EWSHsRBP88Y,\"Bob gets a visit from Russian assassin, Teddy disguised as a police officer.\"\ntt0455944,1DvFzLRPc_w,The aftermath of Bob trying to buy Terri's freedom from her pimp.\ntt0455944,GtqIqWKdlD4,Bob stops two corrupt cops from extorting funds from local businesses.\ntt0455944,QLkt-SfsCsQ,Bob and Terri discuss their pasts with one another.\ntt0455944,40ryheWGyZY,Bob and Terri run into trouble with her pimp.\ntt3532216,wDFOO-dC-Nw,Barry is set on making a record of everything he's done after being targeted by a group of assassins hired by the Medellin cartel.\ntt3532216,zDEPob22tHs,\"After his arrest, Barry tries to give the authorities a chance to gain something out of their potentially fruitless efforts.\"\ntt3532216,SxJcAxTBKOk,Schafer disavows Barry and the two scramble to scrap any evidence of their involvement in smuggling before anyone can get to them.\ntt3532216,2XmLLBZnvDg,\"After making a deal to transport drugs for Pablo Escobar, Barry has to take off with a heavy plane from a short runway.\"\ntt3532216,ODIZKyevVxQ,\"Barry and his crew, The Snowbirds, try to out-maneuver a DEA plane.\"\ntt3532216,Wi4OhwrVwP8,Barry gets cornered by two federal agencies and decides to make an emergency landing in the middle of a Louisiana suburb.\ntt3532216,4gSkh86zcaU,Barry expands his drug smuggling empire after a deal with the Contras and the CIA.\ntt3532216,HBj5pxrFyE4,\"In order to save himself from prison time, Barry turns federal witness and entraps his old friends Ochoa and Ecobar.\"\ntt3532216,CHBydX2-I50,Barry gets word from the Medellin that they plan to 'take care' of his brother-in-law and decides to try to help him escape.\ntt3532216,WBreuW9LLSw,\"Barry's smuggling business gets so hectic, he can barely keep up with all the money he's making.\"\ntt0462504,KMHmLy9C2hU,Dieter and Duane attack the guards then make a break for it.\ntt0462504,sxo7GjhsghQ,\"When Duane freaks out after the guards frighten the prisoners, Dieter comforts him.\"\ntt0462504,BFAfiz1daR4,\"As Dieter is describing his love interests to Duane, a gun unexpectedly goes off and everyone takes cover.\"\ntt0462504,6kktAYxwo7M,\"The prisoners are served worms for dinner, and Dieter is desperate enough to eat them.\"\ntt0462504,UN5YOny_U8g,\"The Admiral forces his troops to watch a survival training video, which Spook mocks mercilessly.\"\ntt0462504,xmihht20Z0E,Dieter is rescued from the jungle and his rescuers drill him for the correct identifying codes.\ntt0462504,6i7cWj1WqDU,Dieter withstands brutal torture from his captors.\ntt0462504,ZekXmBuhS5c,Dieter returns to a throng of cheering soldiers.\ntt0462504,W_qA7Xt_UPw,\"Dieter and Duane are attacked, and while Dieter escapes, Duane is not so lucky.\"\ntt0462504,XUdBdsMc5EQ,\"Dieter meets Duane and Gene, two other Air Force pilots that have been marooned in Vietnam.\"\ntt0462504,99qifKCGPfA,The guys sit around their prison talking about what's in their imaginary refrigerators.\ntt0462504,-OMiOIbouaA,The Province Governor tries to bargain Dieter's release by having him sign a false confession.\ntt0102316,_0X1jPgLo-A,\"During a horseback ride, Damon offers some advice to Fred, and Fred hallucinates as he looks up into the trees.\"\ntt0102316,-oL4NpO7eAw,Fred has a very happy 8th birthday party.\ntt0102316,RjDv_swo0rY,\"During a crowded car drive, Damon talks back to the adults and acts like a brat while Fred dotes on him.\"\ntt0102316,SCn7SurOKdw,\"Jane is surprised when Fred blurts out the correct answer, upstaging a hubristic Damon.\"\ntt0102316,GBu5QE-EsSg,\"After running away, Dede finds Fred alone back at the apartment. The mother and son have a talk and a hug.\"\ntt0102316,Us1MxXdSHw8,Eddie introduces himself to Fred in the cafeteria and takes him around for a day of fun.\ntt0102316,qjUsrdzDbuY,Fred unknowingly interrupts Eddie in bed with a girl.\ntt0102316,_Du0A1y4Wh4,\"As Dede says goodbye to Fred, she tells Jane that she'll kill her if anything happens to Fred.\"\ntt0102316,0m5VGBc8VrQ,Dede decides it's best for Fred to go on the gifted student trip with Jane.\ntt0102316,UrCi_k2TXOA,\"Even though he just wants a Coke, Jane tries to feed Fred a macrobiotic smoothie, but he throws it up.\"\ntt0102316,FVGKgrxQP9M,\"When Eddie tosses a globe into the air, it accidentally knocks out Fred.\"\ntt0056264,CN6dU8mcuMY,Christian makes an appeal to his men to return to England and bring Bligh to justice.\ntt0056264,jpoR10Zh0ig,\"After brutally punishing a man for a minor infraction, Captain Bligh justifies his cruel methods to his officers.\"\ntt0056264,XyEHIOZf5yE,Mr. Christian exchanges final words with Captain Bligh.\ntt0056264,6IJ8LfJnJvQ,Fletcher Christian teaches Maimiti how to kiss.\ntt0056264,t0oqEjxOUww,Christian leads a mutiny against Captain Bligh.\ntt0056264,BznPcrTUYvg,\"As Christian lays dying, Mills explains why he burned the Bounty.\"\ntt0056264,uNcKTuAqLag,Christian chastises Captain Bligh for punishing men with relish.\ntt0056264,EPa8iQyK5mQ,Captain Bligh accuses Fletcher Christian of holding contempt against everyone below his social status.\ntt0056264,oNoOFf527GU,\"At the expense of his crew, Captain Bligh insists that the trail to catch the Bounty must not run cold.\"\ntt4555426,pBd7XYjjvRw,\"Over radio, Churchill delivers his first speech to the British public as Prime Minister.\"\ntt4555426,htHKbsUKDDw,Parliament is unimpressed by Churchill's first speech.\ntt4555426,skrdyoabmgA,Churchill delivers his historic speech to Parliament following the success of Operation Dynamo.\ntt4555426,Wo4U1SqnRpA,\"Desperate for assistance in getting troops out of Dunkirk, Churchill politely asks President Roosevelt to make good on a deal to send ships to the UK.\"\ntt4555426,7SZcDW_1o8g,King George VI shows his first sign of support for Churchill.\ntt4555426,gCHCR0wZclg,Churchill gives an update to his party over his position on negotiating with the Axis powers.\ntt4555426,Ts8WRHAQvk4,Churchill rides the tube and asks the British public their thoughts on negotiating with Hitler.\ntt4555426,1YpDd1nVthI,Churchill pleads with his war council on the proper strategy over the crisis at Dunkirk.\ntt4555426,JwlhFfOC5Zo,Elizabeth tells Churchill his 'V for Victory' may not mean what he thought it means.\ntt4555426,xA1Uz_TMzhs,Churchill suspects a political insurgency led by Viscount Halifax.\ntt0077572,_PSZEvsYD6o,Force 10 blows holes in the dam and it explodes while Miller and Weaver look on.\ntt0077572,TEZq-_XkcRA,Mallory confronts Nikolai about his identity as the Nazi spy.\ntt0077572,jgosH8zc83Q,\"Mallory briefs Petrovich about their mission to kill Nikolai, while Nikolai stands by, listening.\"\ntt0077572,MwjIdhPU43A,\"When Miller tells Force 10 that they can't blow up the bridge in time, Mallory suggests they destroy the dam instead.\"\ntt0077572,JJyK0EX6s_Q,\"Mallory plays possum, drawing the enemies in for Barnsby to take them out.\"\ntt0077572,69v1tcsG6nc,\"When they are captured by the Nazis, Mallory tells Maj. Schroeder an elaborate lie about being criminals.\"\ntt0077572,g3D2eGiLoeI,\"Plotting their desperate escape, Mallory and Barnsby are rescued unexpectedly by Maritza.\"\ntt0077572,xFoBu7P_Kwc,Mallory and Barnsby agree to sacrifice their lives to blow the dam.\ntt0077572,tMYOmMWbUME,Drazak introduces the partisans and starts a fight with Weaver.\ntt0077572,kDSiyU72RpA,Weaver forces the mission to a stand still to get answers from Mallory and Barnsby.\ntt0077572,DEKdqE9W_i8,Maritza discovers that Nikolai is a traitor just as he radios in an attack.\ntt5719108,XxWjAkr7ujk,Reporters film explosions for rebels in order to sell the footage and help fund the war.\ntt5719108,ZtgEJOBzX6A,A look at the beginnings of the Syrian rebellion as the narrative becomes distorted to benefit certain factions.\ntt5719108,LbPm19yBPis,The faces of the rebellion are revealed and given life.\ntt5719108,RxPJd3_j5O0,The narrator meets an inspiring young woman during a protest against Assad.\ntt5719108,yzSjRcABUBY,The presence of extremist groups begins to dilute the rebellion.\ntt5719108,ZbtcQZ1yDjc,The Syrian Revolution becomes diluted when extremists and profiteers enter the fight.\ntt5719108,GP9FOGsbYsw,The revolution begins taking a dark turn as Assad attempts to brutally squash the rebellion.\ntt0104815,mbzNdI-1iUc,El Mariachi is chased from his hotel room by a group of armed men after they mistake him for a gang rival.\ntt0104815,7yBBNmR1CLg,Domino accuses El Mariachi of being a murderer and forces him to sing to prove his innocence.\ntt0104815,PGbBz0m0pTc,El Mariachi searches for work at a local bar.\ntt0104815,Snbbz0C_ZiA,El Mariachi asks Domino for work at her bar after confessing to murdering Moco's men.\ntt0104815,2kK1wyTEMUQ,Domino plots with Azul to find El Mariachi at Moco's compound.\ntt0104815,k7ej9E5b8js,\"El Mariachi finally crosses paths with Azul, the man for whom he has been mistaken.\"\ntt0104815,lqnKLTA2GVE,El Mariachi arrives at Moco's compound and discovers the heartbreaking aftermath of Azul's plan.\ntt0104815,xNc951Hq2WA,Azul shows up to a bar owned by Moco and kills almost everyone.\ntt0104815,KQzNG70KguM,El Mariachi finally gets a chance to sing.\ntt0104815,LVGZy2YKAh8,\"Azul and his men fight off some hitmen sent by drug lord, Moco.\"\ntt0066448,5ckqhebte9o,\"After robbing a rich man, surviving prison, escaping and traveling back to the spot where he hid the money, Paris Pitman, Jr. finds out that life just doesn't want him to succeed.\"\ntt0066448,_uXfbxevYyg,\"Paris Pitman, Jr. befriends Floyd Moon in the prison yard.\"\ntt0066448,1GiYwJRA2NA,\"New prison warden, Woodward W. Lopeman, meets Paris Pitman, Jr., a prisoner in solitary confinement who had a deal with the last warden.\"\ntt0066448,IgTIy5MUBxM,\"Paris Pitman, Jr., Floyd Moon and Ah-Ping attempt to escape from prison, but find themselves in the sights of warden Woodward W. Lopeman.\"\ntt0066448,J9qv_a_s7Gs,\"Prisoner Coy Cavendish is set to be hanged, but Floyd Moon and the other prisoners start a riot and tear down the gallows.\"\ntt0066448,IaeWrM5PlmU,\"After starting a food fight in the new dining hall, Paris Pitman, Jr.'s escape plan goes into effect.\"\ntt0066448,jZXuLQdIrEg,\"The prison warden tries to thank Paris Pitman, Jr. for saving him earlier.\"\ntt0059803,uXUPYAomwDU,Juan visits Casildo.\ntt0059803,CMPJ23f8BeM,Julian learns about his father.\ntt0059803,OhM4B8B6B28,\"Julian beats Pedro, his brother.\"\ntt0059803,uhOCeh9oGK4,Julian threatens Juan.\ntt0059803,n0MX1a8uh3w,Julian steps up harassing Juan.\ntt0059803,RRfoHyYJnAc,Julian reveals his intentions to Pedro.\ntt4477536,64tSUb_LTdI,Anastasia reminisces on her relationship with Mr. Grey.\ntt4477536,rvQZ6MdHSEk,Jack Hyde attacks Anastasia.\ntt4477536,5BLZxhN2lDE,\"Anastasia finds out she's pregnant, a bit of news that Christian doesn't take very well.\"\ntt4477536,X7Jay8hlfHY,Mr. Grey takes Anastasia to the playroom.\ntt4477536,_OZS09-GVTg,Anastasia pulls a gun on Hyde.\ntt4477536,OFDJnI4RczY,Sparks fly between Anastasia & Gia over Mr. Grey.\ntt4477536,vmpSyqa5kXQ,Anastasia and Mr. Grey have fun with ice cream.\ntt4477536,AdKWXA8npgE,Anastasia prepares to cut Mr. Grey's hair.\ntt4477536,LmsnknGIx74,Anastasia shakes a tail and then gets revved up.\ntt4477536,sC78ImgOLQI,Mr. Grey seduces Anastasia.\ntt0382992,z08tZYDrY_8,\"Gannon, Purcell, and Wade do a dry run of a covert operation in the desert.\"\ntt0382992,diNo0cO2Je0,Gannon rescues Wade from the Korean DMZ with a little help from EDI.\ntt0382992,fBTODK66ymw,\"On a mission to take out terrorists in a populated area, Gannon risks a dangerous flight maneuver suggested by artificial intelligence EDI.\"\ntt0382992,sa9AzlyS9h0,Wade attempts to make it back to base after the wing of her jet is damaged.\ntt0382992,4InwO1SSp5o,\"While on vacation, Gannon, Purcell, and Wade experienced different outcomes in their romantic interests.\"\ntt0382992,notFMAwEQeM,\"Ben orders an 'Abort Mission' after discovering a nearby civilian population, but their A.I. partner ignores him.\"\ntt0382992,Y_U49qqwDGI,Purcell tries to stop a rogue EDI from attacking enemy territory and potentially starting a major conflict.\ntt0382992,mpr3XG5Tzmk,EDI catches and sabotages Gannon while he attempts to refuel.\ntt0382992,JIsrqAWzVoA,\"Gannon, Purcell, and Wade enjoy a vacation in Vietnam after a tough mission.\"\ntt0382992,nP-P4IYLJWY,Gannon and EDI are caught by Russian pilots while flying over Russian territory.\ntt0257076,qVDMu-erGtc,Jim Street and SWAT take a shot at taking down Gamble and his crew.\ntt0257076,aDU5CcINqyI,Jim Street and Gamble move in to stop a hostage situation during a bank robbery.\ntt0257076,rhkkbjKcaJ0,Jim Street fights one on one with his ex-partner Gamble.\ntt0257076,8N9oQUJJstQ,The decoy convoy carrying Montel is hijacked by a group of armed criminals seeking a reward.\ntt0257076,t0tIXAlLX8s,Deke chases a runaway suspect through South LA.\ntt0257076,hV55sjy1QFI,The team is betrayed by McCabe who then kidnaps Montel.\ntt0257076,Dc-fBk3yoqs,Jim Street and the new SWAT team train under Sgt. Hondo.\ntt0257076,MBeBFVoomg8,Jim Street and his squad are called in for their first operation as SWAT.\ntt0257076,raSWINBYtuc,Brian executes an elaborate escape by using the Sixth Street Bridge as a runway.\ntt0257076,G61d-lcbLT4,The operation to transport international crook Montel is sabotaged by Gamble.\ntt0048380,9ykMeXdU_Ng,Pulver asks Lt. Roberts what he thinks of him.\ntt0048380,4DKTOdul0_I,\"Capt. Morton runs into Pulver, who has done his best to avoid the captain for months.\"\ntt0048380,GHpQUOP8vcE,A sailor is given the duty of cleaning the ship's collection of binoculars and ends up spotting a nurse taking a shower.\ntt0048380,PTQLBv8sgDI,Doc and Lt. Roberts create some homemade scotch for Pulver's date later that night.\ntt0048380,lCF6_l8gtdA,\"After his prized palm tree is discovered to be missing, Capt. Morton confronts the only suspect, Lt. Roberts.\"\ntt0048380,NZzeLRspnMg,Pulver gets a letter from Roberts and reads it to the whole crew.\ntt0048380,ALSUu2CSBOg,\"While Doc and Lt. Roberts share a drink, Pulver accidently blows up the laundry room.\"\ntt0048380,PPhxsJho48c,A group of attractive nurses visit the ship and are given a tour by Pulver.\ntt0048380,qFH0mR6eVLg,\"Pulver gets a letter saying that Roberts has died in battle. Angry at the news, Pulver throws Capt. Morton's tree overboard and finally stands up to him.\"\ntt0048380,-rkhqMzCUnA,\"After Lt. Roberts, Doc and Pulver hear the news that Germany surrendered, Pulver has a great idea of how to celebrate.\"\ntt0250720,OHCVQcnqGcY,Gordon ends up locked outside his apartment building after being tricked by Spot.\ntt0250720,ivG26TnBWGI,Gordon and James escape from two hitmen by leading them to a street full of dogs.\ntt0250720,Z0Fm3Ym-aJM,FBI agent Murdoch is informed that his canine partner is being transferred to another facility because a mobster put a hit out on the dog.\ntt0250720,z2NhPvlzjcg,\"Gordon, the mailman, delivers the mail on a street full of angry dogs.\"\ntt0250720,E6AYVGKx6Es,\"An FBI dog escapes from two hitmen who want to kill him, only to end up hiding in the back of Gordon's mail truck and befriending James.\"\ntt0250720,Kpxk3UkX5s4,\"While babysitting James, the son of his health conscious neighbor, Gordon introduces the kid to sugar filled cereal.\"\ntt0250720,tD8f4Xk30bg,\"During an FBI canine training course, two mobsters try to kill Agent 11, the best dog on the force.\"\ntt0250720,g8hPeRFRiHY,Gordon convinces Murdoch that Spot should stay with James and get to be a normal dog.\ntt0077235,e0UZ0rc0KH4,Everyone says an emotional goodbye to Jack who's going off to Vietnam.\ntt0077235,FAK7ssvx3oE,\"Leroy, Jack and Matt enjoy surfing together.\"\ntt0077235,iaCvBhskyk0,\"Matt, in a drunken stupor, causes an accident which makes Jack kick him off the beach.\"\ntt0077235,5T17qRlPIiA,\"Matt surfs the giant wave, but his friends have to pull him out.\"\ntt0077235,2WJjBuXiXK0,\"At the cemetery, the friends remember their old buddy Waxer, who died in Vietnam.\"\ntt0077235,gUeHamRZkSY,Matt fakes an injury and Leroy fakes madness in order to escape going to Vietnam.\ntt0077235,6moZJqA4iuc,\"Matt is praised for his magnificent ride, but he, Jack and Leroy know that their summer days are over.\"\ntt0077235,mfkzA9zjRdM,The three friends reunite to surf one of the biggest swells in years.\ntt0077235,0B3lnfdJ_iE,Leroy and Jack take their alcoholic friend Matt where he feels most comfortable - surfing.\ntt0077235,AN21TljYB8E,Matt tells Bear he won't take any more of his sponsorship because he is not a good role model for kids.\ntt0034587,pE0vTejjWuk,Irena runs into Dr. Judd at the zoo.\ntt0034587,cRpMdH1D55o,\"Dr. Louis Judd kisses Irena, not believing her stories about turning into a panther.\"\ntt0034587,16xSXPPqBfM,Irena attempts to play with her pet bird but it dies of fright trying to escape her.\ntt0034587,lz98akbX_NE,Alice Moore is stalked by an animal while swimming in her apartment building's pool.\ntt0034587,Wf6feYvdHs4,\"Oliver and Irena visit a pet store to return a kitten, but when Irena walks in all the animals go crazy.\"\ntt0034587,yiOUEU4KG6s,\"While working late one night, Alice and Oliver are attacked by a panther.\"\ntt0034587,DrrwX4AnbMk,\"After killing a man and having all her fears confirmed, Irena allows herself to be killed by the panther in the zoo.\"\ntt0034587,RFtZAVgf1Yg,Alice Moore is walking home alone when she starts to get the feeling that she is being followed.\ntt0036855,ctd3NPx1pdM,\"After Gregory is captured and tied to a chair by the police, Paula takes the moment to get some psychological revenge on him for driving her insane.\"\ntt0036855,BICqcEvzhVw,\"After becoming hysterical at a friend's house Paula, Gregory shares his frustrations with her.\"\ntt0036855,Fp5iPmpZiNE,\"With Brian's help, Paula discovers the horrifying truth about her husband.\"\ntt0036855,6o8Eq0LEpf0,\"Gregory accuses his wife of taking and hiding a picture from the wall, feeding the idea that she's going mad.\"\ntt0036855,ty68MEZQPS0,Paula Alquist meets a very excited and morbid woman named Miss Thwaites on the train.\ntt0036855,eIlzY-UcYZU,Gregory openly flirts with the maid Nancy in front of his wife Paula.\ntt0036855,kFhDGoJh4O4,Gregory questions the maid about the man that Paula told him came to visit and broke into his desk.\ntt0036855,_HoKFu0orAs,Paula starts believing she is losing her mind after Gregory accuses her of hiding a picture that has disappeared from the wall.\ntt0071675,zNT4XSI1doU,The mutant Davis baby kills a milk man.\ntt0071675,PvEongWRs5Q,\"Frank is waiting patiently at a hospital while his wife, Lenore, gives birth down the hall.\"\ntt0071675,jaSSXV5AFHk,Frank is brought by police to the school where they believe his mutant baby is hiding.\ntt0071675,ilRq_PR6oi4,The mutant Davis baby attacks a police officer who is searching for it.\ntt0071675,aTSa6E4_Zgs,\"During a manhunt for his mutant baby, Frank finds it huddled in the sewers.\"\ntt0071675,_gVrJIUmCqU,\"While signing away the rights to the body of his mutant baby, Frank starts thinking about the story of Frankenstein.\"\ntt0071675,wxlD2wwIgVk,Frank investigates their baby room after beliving his mutant son has returned.\ntt0079239,t3mwyiOBDrk,Bull forces Ben to attack another boy at a basketball game.\ntt0079239,MxDtKTClKGI,Bull becomes abusive after his son Ben beats him in a basketball game.\ntt0079239,WnrOQRdqiQ4,Bull and Lillian enjoy their first time together in a long time.\ntt0079239,JJ0IOFvfu3Q,Bull hazes a young officer in the bathroom.\ntt0079239,w294_yaM85M,Bull proposes a toast to Ben on his 18th birthday.\ntt0079239,droww43JVyA,Bull tells his squadron that he is their God now.\ntt0079239,fz_9uPJnGEQ,\"Lillian comforts Ben, who feels responsible for his father's death.\"\ntt0079239,LgNSetWhfhw,Bull berates Ben for disobeying his orders until he realizes that he was trying to save Toomer's life.\ntt0079239,Pj2K4FrqTmw,Bull teaches his kids what it means to be a Marine kid and a Meechum.\ntt6333066,5Zpj9911g6I,Rhino breeder John Hume painlessly removes a rhino's horn to prevent poachers from doing worse.\ntt6333066,EVy-c7ZaMvI,Born Free Foundation CEO Will Travers discusses how Cecil the Lion's killing put a spotlight on the big game industry.\ntt6333066,_jl40Gzivhs,Reality hits big game hunter Philip Glass.\ntt6333066,dtQLSM8VvfU,John Hume breaks down how rhino horns are a potentially renewable -and extremely lucrative- resource.\ntt6333066,6IdswAQLBKk,\"Big game hunter Philip Glass has killed a bull elephant, but a juvenile one.\"\ntt6333066,5bTmqPTQPOg,A look into the Safari Club International convention and all the hunters that it brings together.\ntt6333066,oBeMUEkfDtk,Ecologists Adam Roberts & Craig Packer break down how conservation and sustenance hunting became conflated with masculinity and exploitation.\ntt6333066,HgqmQ4RN9vo,A rich hunter pays to kill crocodiles trapped in an enclosure.\ntt6333066,VcH7mgvr2jY,\"Zimbabwe Wildlife Officer Craig Moore raids the home of a poacher, hoping to improve the community.\"\ntt6333066,TV1QrgMYa3M,\"Mabula Pro Safaris' hunting outfitter, Christo Gomes, reminisces about the hunt and the pains of caring for a hunted animal.\"\ntt4397414,wmEQUpu_zeA,Pro skaters remember the heyday of skating in Philly's Love Park.\ntt4397414,io8KUjovuYo,A new generation of skaters discuss how Chris inspired them.\ntt4397414,lZrD7xTi8Ss,Pro skaters discuss the beginnings of Chris Cole arriving on the skate scene in Philly.\ntt4397414,5CrXuWBxVVk,Cole and other pro skaters talk about skate pioneer Rodney Mullen.\ntt4397414,PnNS71ethmI,Jaimie Thomas discusses Chris's beginnings with him under his Zero banner.\ntt4397414,ddGbf6I8UH4,Chris Cole and his friends recall their first demo tapes.\ntt4397414,wUkrRABqkzg,Chris reminisces about Love Park and some of his best tricks.\ntt4397414,OC6SxQVSMHo,Friends of Chris recall the moments after Chris met Rodney Mullen.\ntt4397414,lK8cWFLr5qE,Chris talks about his reaction to advice he was given and how to started to change his image as he grew.\ntt4397414,UW80kY7-HkY,Chris Cole meets Bam Margera at the pinnacle of his CKY fame.\ntt0451279,KnI9MBbPCT8,\"Led by Hippolyta and Antiope, the Amazons defend their island from the Germans.\"\ntt0451279,c2k_kuU84ro,Diana fights the Germans occupying the Beligum village of Veld.\ntt0451279,QnDgw7XXaOU,Diana has some questions for Steve.\ntt0451279,pJCgeOAKXyg,\"When Steve Trevor tells Diana that it's impossible to cross no man's land, she proves him wrong.\"\ntt0451279,1-9573qxk5g,German agents confront Steve and Diana in an alleyway.\ntt0451279,jEav9DdL4iI,Steve and Etta take Diana dress shopping to help make her less conspicuous.\ntt0451279,_CuE3lto5XA,\"Steve makes the ultimate sacrifice, devastating Diana.\"\ntt0451279,CNuEnlaPuls,\"Antiope trains Diana like no Amazon ever before, but Diana has a powerful secret.\"\ntt0451279,0v74ANWBqv0,Ares tempts a grieving Diana to murder Dr. Poison.\ntt0451279,FNA0Ejpu22Y,Sparks fly when Steve dances with Diana.\ntt0918940,TKpYtp4Io9U,Chief Mbonga fights Tarzan in the hopes of avenging his son.\ntt0918940,hwe32v3I7R0,Leon Rom kidnaps Jane and the villagers.\ntt0918940,QYUhwlQe0IU,Tarzan tries to stop Leon Rom from escaping with a trunk load of diamonds.\ntt0918940,9ecrIMjE4GQ,\"Jane escapes Leon's grasp, but nearly falls prey to the wilds of the jungle.\"\ntt0918940,E7mB8U4nCCU,Tarzan and Dr. Williams fight a train full of Belgian soldiers on their way to find Jane and the kidnapped villagers.\ntt0918940,Yz7PedIGC6A,\"Tarzan faces off against his brother, Akut, in order to pass through his troop's territory.\"\ntt0918940,rTvJrOUuOTM,Tarzan chases Leon Rom to find and rescue Jane.\ntt0918940,hIMv_pWXqFY,Jane is rescued by Tarzan.\ntt0918940,pXQjNz6Pyzo,Tarzan rushes to save Akut and his tribe from Rom's men.\ntt0211443,ueeK1V8j-WQ,Jason is kept in chains in a secret research facility as Dr. Wimmer unwisely prepares to transport him in the name of science.\ntt0211443,iog7zMkTVmQ,\"Thanks to the future advances of medical technology, Jason is brought back to life as an advanced Cyborg, much to the surprise and dread of the survivors.\"\ntt0211443,4f7U_YO0fVc,Jason is distracted by a holographic campground with naked girls while the survivors set up explosives to destroy him once and for all.\ntt0211443,K2zen737biU,\"After Jason has killed all the soldiers guarding him, Rowan realizes it's up to her to get him into a cryogenic pod.\"\ntt0211443,285uHkPZOkE,Jason stumbles upon Azrael and Dallas playing an advanced co-op VR game and decides to join in.\ntt0211443,m-5pPy7zuyc,\"After being thawed out, Jason comes back to life and kills Adrienne by freezing her face in liquid nitrogen.\"\ntt0211443,SP8YbyZwVeQ,Jason possibly meets his match in the female android Kay-Em 14 who has gotten a killer upgrade.\ntt0211443,gdkJ2WwMhAg,\"Sgt. Brodski leads a group of soldiers with the goal of taking out Jason, but it doesn't go as easily as they'd hope.\"\ntt0211443,jBxvOT0p-1k,Jason breaks into the control room and gets back his always reliable machete.\ntt0211443,P9_EB2_tUGA,Jason kills Crutch causing Kinsa to have a panic attack and crash the shuttle after trying to launch it with the fuel line attached.\ntt2967226,srpCm9gPmZI,Chris Kim and David Hasselhoff team up for a dance track.\ntt2967226,Uz8w8WHmWMI,Chris Kim discovers a teenage celebrity is in the VIP room of his club.\ntt2967226,lHxzWs9NcS0,Tommy comes to stop Chris Kim from killing David Hasselhoff.\ntt2967226,1didVrNjTpQ,Nick meets with hired assassin Redix and is uncomfortably surprised by his sexual orientation.\ntt2967226,JSqbIAemGcs,David Hasselhoff comes face to face with a would be assassin who has a crush on him.\ntt4872162,4HOgujwklBY,Ray is arrested by his fellow officers and interrogated for his possible part in the crime.\ntt4872162,MVY7ci-BTI4,Ray hunts down a terrorist who is holding a young boy hostage.\ntt4872162,tAHCa87P8YI,Ray catches Nikolai as he sits poolside during a family barbecue and aggressively interrogates him.\ntt4872162,dcSalZZ5YjM,Ray rushes to the forensic lab to disarm the bomb vest around a child.\ntt4872162,jCSsP6ooQf8,Ray and Julia are captured by Nikolai just as they find the location of the missing child.\ntt4497338,zoo3aMvQdMw,Nolan takes Vasti to a neo-nazi bar in order to find out their affiliation with one another.\ntt4497338,klpN-W3Z8Cw,Nolan races to stop a madman with an automatic machine gun from killing a group of cops.\ntt4497338,1cHRBd6l2UM,Nolan finally makes it to the end of Vasti's game but may have discovered his plan too late.\ntt4497338,QkKXJ82vfJU,Nolan chases after a suspect in a white supremacist bar.\ntt4497338,6H6RGCBUcf4,Nolan faces off against Vasti after the latter escapes his custody.\ntt3957956,sPlsA3_6hB8,Shaw heads to the rooftop to warn his captain of Burke's plans.\ntt3957956,euCWQcrBwPY,Shaw tries to escape through the garage but is cornered by Burke's men.\ntt3957956,8PALGqaFoFI,Shaw and Burke face each other again in the office.\ntt3957956,AQpPxTYahZo,Shaw finally gets the drop on Burke and arrests him.\ntt3957956,ZdhLQ1toP9s,Shaw finally rendezvous with his Captain in order to clear his name.\ntt4765284,C_06Kac9rpg,\"Beca leads the Bellas in a diversion rendition of \"\"Toxic\"\" while Fat Amy fights her way through the boat to rescue them all.\"\ntt4765284,2aKkSYvLvXk,The Bellas take on the other bands competing for a spot on DJ Khaled's tour with a singing competition.\ntt4765284,3MhzaQnLhRY,Theo takes Beca to a surprise meeting with DJ Khaled.\ntt4765284,VPaFRrTJZ4U,The Bellas perform on the USO stage in Italy.\ntt4765284,41BnkhKxWHA,The Bellas arrive at DJ Khaled's suite and proceed to wreck everything in sight.\ntt4765284,foV6LGohzBI,Beca invites the Bellas onstage to perform with her during her solo showcase for DJ Khaled.\ntt4765284,5x1FeyWYp9s,\"The Bellas nervously jump into their first performance at the USO Show in Spain with a rendition of \"\"Cheap Thrills\"\".\"\ntt4765284,rxWQfQcLAUA,\"The Bellas continue competing against the other bands on the USO tour by challenging them all to sing \"\"Zombie\"\".\"\ntt4765284,gDVyEzQNvhU,Fat Amy faces a boatload of her father's henchmen in order to save her friends.\ntt4765284,DyCfCl46JSE,\"Becca and her old group watch as Emily leads the new Bellas in a crowd pleasing rendition of \"\"Sit Still, Look Pretty\"\".\"\ntt5726086,qsyYw2x1-js,The spirit of Audrey enters the fight against the Key Demon in order to save Elise and her grandchildren.\ntt5726086,fKGjSXtCou4,Elise comes face to face with the Key Demon and a few personal demons of her own.\ntt5726086,XHuo5etrwvY,Melissa searches the basement for her father's boyhood trinket and finds herself in the clutches of the Key Demon.\ntt5726086,STh780YGgIo,Elise has a vision of a boy being haunted by a familiar demon.\ntt5726086,ddQe0gG79zk,Elise investigates her childhood home and finds an old spirit haunting her.\ntt5726086,8pDCGWKvBlk,Elise uncovers a startling secret in the basement of Ted Garza.\ntt5726086,QS8fJMeJqsQ,\"Elise, with the help of her mother leads her nieces to safety from the Spirit Realm.\"\ntt5726086,5mcjt53aqlE,Specs is chased by Ted Garza after the crew discovers he has kidnapped a young girl and held her captive in his basement.\ntt5726086,bp5HRI2hEW0,\"After realizing a devastating mistake from her childhood, Elise searches for the remains of a woman her father murdered and finds something much more sinister.\"\ntt6421110,gKJerAxfSzw,Mary finds Tom holding Danny hostage and threatening to kill him to avenge the murder of his own father.\ntt6421110,vdMEu03CjTk,Tom squeezes troubling news out of an informant.\ntt6421110,IGFdF06VVF8,Danny tries going directly to Benny to ask for Mary's freedom.\ntt6421110,2k6F2WITgac,Tom confronts Mary after discovering she may have had something to do with an assassination that has put his business in jeopardy.\ntt6421110,oyuHdD6ORAg,Mary crashes through her own turf in order to get to Tom after he kidnaps Danny.\ntt6421110,DsMU1n2HUDo,Mary and Tom raid the headquarters of the Russian mob seeking revenge on an attempted hit on their boss.\ntt6421110,hwevrtap9AY,The assassination of a Russian mobster leads to a domino effect of consequences as Mary takes out an old acquaintance in order to cover up her involvement.\ntt6421110,_pH9HcBNO2I,Danny deals with a difficult customer while delivering an important package for his employer.\ntt6421110,fAiJAcgjWeQ,Mary takes Danny to get fitted for a suit.\ntt6421110,C41s4A5Wq1Y,Mary goes to confront Uncle over his abuse of Danny and loses her temper in the moment.\ntt3829920,s2TbUio6uF0,\"All the wives and families of the Hotshots wait for news only for Brendan, the only survivor, to walk in.\"\ntt3829920,nAbqTdINpOk,Another fire-fighting agency misses the mark.\ntt3829920,vAaBuA-ZeuI,Remembering the Granite Mountain Hot Shots.\ntt3829920,7p9YNPcOJ-4,Brendan gets closer to the fire than he'd like.\ntt3829920,OkZ0AKNb82c,Eric and Brendan stop the Dragon Fire as best they can.\ntt3829920,BVAo7tAxtVw,Nobody believes that Brendan can finish the trail.\ntt3829920,aHoNp7pBeCA,The Granite Mountain Hotshots save one of Arizona's greatest trees.\ntt3829920,Cre1DOpQFx8,The Granite Mountain Hot Shots try to endure against the Yarnell Hill Fire.\ntt3829920,XG3hNDnidfk,Eric and Duane inform their team that they are no longer trainees.\ntt3829920,PIAvGkpGZXw,Brendan has a rough encounter with a rattlesnake.\ntt3783958,vVqCU0iWlFM,\"Mia is entranced by Seb's music, but his boss fires him on Christmas.\"\ntt3783958,DOmIpiTMs2w,\"Mia runs into Seb again at a party and she forces him to play \"\"I Ran.\"\"\"\ntt3783958,SY40M1lhknY,\"While Seb plays their song, Mia dreams of what could have been if they had never seperated.\"\ntt3783958,7CVfTd-_qbc,\"Commuters on the L.A. freeway sing and dance about life in \"\"La La Land.\"\"\"\ntt3783958,lNFbbWOM5FU,\"At Griffith Observatory, Mia and Seb fall in love and dance away into the stars.\"\ntt3783958,b65C_muXajk,Seb tries to convince Mia to come back to L.A. for a crucial audition.\ntt3783958,RHz9rXVt3cQ,Seb and Mia realize that their decisions are taking them down seperate paths.\ntt3783958,FAmaskY8eXE,Mia shares a personal story for her audition and sings a heartfelt song about dreamers.\ntt3783958,wSOMPH85zvQ,\"Seb and Mia sing about dreams and love in the \"\"City of Stars.\"\"\"\ntt3783958,cmkZeTX5fq0,Mia's roommates convince her to go an L.A. party with the hope of being discovered.\ntt3783958,_8w9rOpV3gc,Seb and Mia sing and dance over the lights of L.A.\ntt0451279,M_7k0PCONF0,Via introduces her boyfriend to her family.\ntt0451279,zJMCctR8ivc,Mr. Browne asks Auggie to introduce himself to the class.\ntt0451279,ZoL1epfoq-g,Auggie gets cozy with Jack Will during his first week of public school.\ntt0451279,29VjYkPPY2s,Jack Will realizes Auggie overheard him while his friend were insulting him and fights Julian to make up for it.\ntt0451279,ceWNY5eNSWY,\"Auggie gets a tour around school from Jack Will, the school bully, and Charlotte.\"\ntt0451279,l2zrJ_LZrhg,Auggie and Jack Will run into a pack of aggressive kids looking for a fight but thankfully get some unexpected help.\ntt0451279,vYH5urNq1Ao,Mr. Tushman tries his best to suspend Julian after he is caught bullying Auggie.\ntt0451279,C0KLb_v50-k,\"Via tries to find out what upset her younger brother, Auggie, at school.\"\ntt0451279,AmCR7Owu6R8,\"Miranda explains what happened the summer before she stopped speaking to Auggie's sister, Via.\"\ntt1219827,nbssDN3Y75Q,Kuze explains the motivation for his actions to Major.\ntt1219827,vOQ211AFtLU,Major and her squad eliminate the last man standing behind the conspiracy that nearly killed her.\ntt1219827,bNFWITNVAKU,Major jumps into the mind of a hacked android in order to find out who is behind her reprogramming.\ntt1219827,uPQcsSuWlB4,Major and Batou go on the hunt for rogue machine Kuze.\ntt1219827,Ct21N7taYlc,Major rushes to save Dr. Ouelet and find out who has been behind a string of murders across the city.\ntt1219827,sB1jRg2iQsg,Major and Kuze are cornered by a giant mech intent on taking them out.\ntt1219827,fDcZoI_wy_w,Major flies into a dangerous mission to stop an assassination.\ntt1219827,V9mx4UV8DNc,Killer's target Major's squad after the crew discovers a major corporation is behind the murders happening across the city.\ntt1219827,OtjQUwKlR0U,Major and Kuze remember what happened to them before they were murdered.\ntt1219827,Cw9FQ_X-gP0,Major goes through the process of becoming a cyborg.\ntt4966046,HjQPsZjrgkY,Richard Hambleton shifts into landscapes in rejection of the art scene.\ntt4966046,mji8ZFst3ws,Richard Hambleton's paintings are a wild success.\ntt4966046,tB7Ml4tO7d4,Richard Hambleton explodes onto the art scene during his heyday.\ntt4966046,UoNbV-qxEJE,Richard Hambleton first makes his mark with crime scene performance art.\ntt4966046,AmYSeovvscE,Richard Hambleton's life falls to ruin.\ntt4966046,g0PEGEYvZd8,Richard Hambleton debuts a new kind of street art.\ntt4966046,mce5xJi8uH8,Richard Hambleton becomes obsessed with the Marlboro Man.\ntt4966046,EaCGKhxR0P0,Richard Hambleton discusses the nature and impact of his shadow people.\ntt3371366,MtRlOvoq9Ls,Optimus Prime is given a death sentence by the transformers order of knights.\ntt3371366,MdoBOoR576Y,Cade and Vivian are brought to meet Sir Edmund.\ntt3371366,M2E0xzfvDMw,Cade and his crew are cornered by Megatron and his Decepticons.\ntt3371366,KJtmyW2urUk,\"When Cade gets captured by the TRF, Bumblebee comes to his rescue.\"\ntt3371366,rbrIQjVNl0E,\"Optimus Prime, under the evil influence of Quintessa, faces off against his friend Bumblebee.\"\ntt3371366,OfnIw7Y8IUY,\"Cade and Vivian find the Staff of Merlin, but are discovered by ancient autobots and government soldiers.\"\ntt3371366,4g_oMoSgIas,Optimus Prime arrives in the nick of time to save his friends.\ntt3371366,WS8Sc1nCi8U,Optimus Prime faces off against Quintessa while Cade and Vivian search for the Staff of Merlin.\ntt3371366,DGOews8SVLw,\"The government and the Decepticons chase after Cade, Vivian, and Sir Edmund.\"\ntt3371366,2rSSxAdDhuU,\"Sir Edmund tells Cade of Transformers through the ages, including when Bumblebee fought in WWII.\"\ntt6094944,X3nIJPj_7J0,Rita breaks out of jail using her expert breaking-out-of-jail skills.\ntt6094944,3s--5gsc4bs,Corn has an interesting way of making money off Jamaica's finest.\ntt6094944,Yn8ZE58MFEc,\"When Corn and Rita argue, disaster strikes.\"\ntt6094944,5eNVHUxlR1Y,What do you do with a goat corpse? Sell it to a butcher.\ntt6094944,-XuS9JQgu4M,God doesn't need money. A dead goat does.\ntt6094944,BuQKVYgI8S0,Corn and Rita encounter a symphony of wind and percussion instruments.\ntt4211312,kvBiMHIuFbw,Djata and his friends are bullied by the Roman twins Romulus and Remus.\ntt4211312,6SAzrCAaFG8,Djata and his friend Shabby search for a rumored hidden treasure beneath the statue of a dictator.\ntt4211312,oZVMUM4k29o,Colonel Fitz explains the difficulties of living in a despotic country to his grandson Djata.\ntt4211312,oJAYU5a8zTs,Djata is shocked to see his father appear at his grandfather's funeral while serving time in a re-education camp.\ntt4211312,7Ecvvu9ovIU,Djata is forced to shoot a housepet by his grandparents.\ntt4211312,g50ARHr0mkA,Djata and his mother go to the home of General Meade to beg for reprieve for his father.\ntt4211312,acBlGJZCIiQ,Djata is berated by a schoolteacher after being accused of theft.\ntt4211312,KM6fEMvPvqc,Djata goes up against the psychotic twins Romulus and Remus.\ntt1291150,9v-2_YOVxGw,The boys escape from the Foot Clan base so they can find Shredder and put a stop his plans.\ntt3949660,bY6jLt3owBQ,April tries to get information on evil scientist Baxter Stockman.\ntt3949660,lh5IiK9eQhA,The boys work to stop Shredder from escaping from an armored vehicle.\ntt3949660,_OrEOa0TYTY,Casey saves April and meets the Turtles for the first time.\ntt3949660,hITWJ6vE1os,\"While being chased by ninjas, April is saved by a hockey-mask wearing Casey Jones.\"\ntt3949660,CdVuOYKr2cQ,\"When April and Casey chase find foot soldiers in the local police precinct, the turtles and them have a rough time with Ninjas and the NYPD.\"\ntt3949660,npkzgnKAgXU,The boys finally face off against Krang while trying to stop him from building his spaceship and destroying the planet.\ntt3949660,HkXGq2kJAlM,\"The Turtles meet and battle Krang while April and Casey take on Bebop, Rocksteady and the Foot Clan.\"\ntt3949660,lKStI-3GHDc,The boys face off against Bebop & Rocksteady in order to stop the two from delivering an inter-dimensional device to Shredder.\ntt3949660,4xg-5TeGvQY,Raph panics when Leonardo suggests they jump from one plane to another without a parachute.\ntt3949660,6MJJXdBz1q0,April watches as Bebop and Rocksteady transform into monsters.\ntt1291150,-W_4EZvbrEI,The Turtles work to rescue April and Vernon while being chased by the Foot Clan.\ntt1291150,OLZhL2R4cfg,April chases after the Ninja Turtles and gets an abrupt introduction.\ntt1291150,TKszvumsyFY,The Turtles corner Shredder as his plans to terrorize the city are about to take hold.\ntt1291150,SWgcv5EwMgI,April searches the subway for evidence of the Ninja Turtles' existence.\ntt1291150,wKIL7__ybL0,Raphael takes the fight to Shredder so he can free his brothers from captivity.\ntt1291150,3gLxv0qizPY,\"The Turtles, along with April and Vernon, try to escape the Foot Clan chasing them down a mountain.\"\ntt1291150,J3Sl8B7RzUg,\"With the Turtles trapped, April tries a last gambit against Shredder.\"\ntt1291150,ZyirxKE2aFs,\"After the Turtles' sewer base is attacked by the Foot Clan, Splinter buys the guys time by facing off against Shredder.\"\ntt1291150,1JHqVsXnQxQ,Splinter tells April how they came to be who they are after she rescued them as a child.\ntt5061162,KKsaYBeEr1w,Maria begins her seduction of Vaclav.\ntt5061162,yadi1fTl4p0,Maria loses her temper when a student heckles her story.\ntt5061162,wcN3fX7oiSQ,Mr. Binder confronts Maria about her blackmailing students.\ntt5061162,3K3KlDWq-qo,Danke stands up for herself against her abusive teacher.\ntt5061162,9KTEYDd0F7g,\"Binder fights for the safety of Danka, only for his dark past to emerge.\"\ntt5061162,OEvu7pkH8o4,Maria publicly shames Karol to get close to his father.\ntt5529680,xmcpR-iaa7o,\"Rahim drives through the streets after a frustrating argument with his apprentice, Aiman.\"\ntt5529680,ctB6OIa3Pz0,Rahim teaches Aiman the ins and outs of being a hangman.\ntt5529680,j6kHHLVRPak,Aiman tells his sister Suhaila the news of his promotion.\ntt5529680,ZiNx61K8QT8,Rahim confronts Aiman over hiding his past from him.\ntt5529680,2aTxwlSE2mw,Aiman visits the family of a condemned man and finds they may have already moved on.\ntt5529680,8wMS2SCtVM4,Aiman digs into Rahim over his hanging of a potentially innocent man.\ntt5529680,AfNCKS2a3nU,Aiman conducts his first execution under the apprenticeship of Rahim.\ntt5529680,2-qyN66Kr24,Aiman conducts his first execution on his own.\ntt1293847,-0SHIbuEO3w,Xander races against the clock to stop a defcon-1 incident from occurring.\ntt3773378,dMri-2QuZtI,Aziz Shokhakimov talks about his theories on the role of conductors in music.\ntt3773378,ESgYnVVq9AY,Aziz Shokhakimov watches in frustration as Andreas Hotz rehearses for the final round.\ntt1519461,VDwI61e2_6I,\"After Reid sneaks into the house of an Area 51 employee, Darrin goes after him.\"\ntt1519461,jh_EME9M-mg,Reid and Jelena find themselves in a creepy cave beneath Area 51.\ntt1519461,Sy_thm1fviY,Reid and the others hide in a locker room only to experience strange alien noises.\ntt1519461,duU5cdQtpSE,\"After walking miles, Reid and his two friends defuse a motion sensor, dodge a helicopter and finally reach Area 51.\"\ntt1519461,GVqoyzJUzJk,Darrin attempts to escape Area 51 while being chased by an escaped alien.\ntt1519461,qj3TqaXp2Mg,Reid and his friends discover a real UFO in an Area 51 hanger.\ntt1519461,QvVUxPcMZQE,\"Reid, Jelena and Darrin discover a science lab with out of this world experiments.\"\ntt1519461,yAo3144gBw4,\"While searching the house of an Area 51 employee, Reid and Darrin are surprised to discover the family coming home sooner than they thought.\"\ntt1519461,KwfnVFtdn_E,\"Darrin and Ben realize their friend, Reid has mysteriously gone missing while at a party.\"\ntt1519461,ICJi_nMcUQc,Reid finds Jelena in some sort of trance only to discover they are both trapped on a moving UFO.\ntt1293847,nXV8YHeJfOs,Serena and the team get some help from an unexpected source.\ntt1293847,eAp8Vm19uQU,Xiang and his crew break into a government building and steal a WMD called Pandora's Box.\ntt1293847,9T7zP4Ui9VE,Gibbons tries to recruit Neymar Jr. for the XXX program.\ntt1293847,PRk69Z74hPs,Xander goes after Xiang as he escapes the attack on the island.\ntt1293847,r29P93wUiMg,\"While Serena holds off waves of government operatives, while Xander has trouble flushing.\"\ntt1293847,eg8WzaSrZpg,Xander and his team chase after Xiang on a busy street.\ntt1293847,VdAC6kNpXeM,\"After Pandora's Box is used to target his team, Xander sacrifices himself to stop a downed satellite from killing them.\"\ntt1293847,vq6ofw0hqkU,Xander plays a deadly game with Xiang and Serena in search of answers about Pandora's Box.\ntt1293847,oS6AtbHHjSo,Xander and his team take on a group of mercenaries who show up to steal Pandora's Box.\ntt3773378,M9C1xAQdSKk,Shizuo Kuwahara discusses his conducting technique.\ntt3773378,chCsCDHJZtY,A look at half the conductors competing in the Sir Georg Solti competition.\ntt3773378,pLXw-1RPsJs,Andreas Hotz has his second round of rehearsals with the orchestra and discusses the troubles of being younger than most of the musicians he is conducting.\ntt2283362,2pw_36yxgXI,Fridge and Spencer teach Bethany how to pee with a male body.\ntt2283362,C0NVo07t9UI,The players realize that they're stuck in a game... and in different bodies!\ntt2283362,iKduvC0uNs8,Spencer and Martha make use of the video game mechanics to save the day.\ntt2283362,vhEOInyNr54,Spencer and Martha confess their feelings for each other.\ntt2283362,w5yJV_TKOWg,Spencer throws Fridge out of the helicopter for the magic stone.\ntt2283362,V3Gnq8VFai4,Spencer and Martha show their stuff against a motorcycle gang of henchmen.\ntt2283362,Vx0MQxIFBW8,Martha tries and fails to flirt her way past the guards.\ntt2283362,IB7BvgXIKOs,Bethany teaches Martha how to flirt.\ntt2283362,rKh4muRk_s0,Alex desperately tries to save the group from a rhino stampede.\ntt2283362,5YgMl4JQxKw,Bethany gives Alex CPR to keep him alive.\ntt5301544,bN7jTZKITG8,Ethan is forced into a dinner with conservative pundit Ann Alcott.\ntt5301544,IXOq5goG2G0,\"When a conservative talk show host has a sudden stroke, his assistant producer Daryl finds a replacement in liberal music DJ Ethan.\"\ntt5301544,vTUM5grJwTE,Ethan interviews gubernatorial candidate Richard Sollow.\ntt1386697,0w8oeXvLXOw,Diablo shows his true form and faces off against Incubus.\ntt5612742,nCw-UbptqD4,Cole and Maddy finally express their feelings for one another.\ntt1386697,S-2cloMm4Lk,The Squad goes up against Enchantress's goons.\ntt1386697,_bS2cHSqgnE,The story of how The Joker and Harley Quinn fell in love.\ntt1386697,T2IZiCyLFmI,The Squad gets ambushed by Enchantress's minions while searching for their mission objective.\ntt1386697,g5-KsABvVzU,Rick Flag begs the Squad to help him save the woman he loves as they all sit around a bar and drink.\ntt1386697,wdcRrpMHIGM,\"Harley Quinn, Deadshot, and the others work together to defeat Enchantress.\"\ntt1386697,gQATrdAXELg,The Joker makes a daring play for Harley's freedom and Deadshot is faced with a dilemma.\ntt1386697,Q0IHL6WGFY0,The Joker interrogates Griggs to find information on Harley Quinn's location.\ntt5612742,BK9Rn_s8idI,\"Maddy and Cole get the last two members of their team, Mutey and TJ.\"\ntt5612742,PR1WWVvDs3s,Marissa makes Cole an enticing proposition.\ntt5612742,-yMT2S8fJ9g,An introduction to the 'losers' and 'geeks' who will join Cole and Maddy's plot to sabotage prom.\ntt5612742,MPY58gIH65M,Stuffs describes how she got her nickname to Maddy.\ntt5612742,M-LhdLDYOps,Cole is publicly embarrassed by an angry Marissa and uses the spotlight to deliver a heartwarming speech.\ntt5612742,JfJSwQkRgbk,Cole finds out Maddy has betrayed him and quit their plans to sabotage the prom.\ntt5612742,w0A-YZ0Yd2Q,Cole rushes to stop his friends before they prank Maddy as she is crowned prom queen.\ntt5612742,aF4SahLqcxw,Maddy confronts Marissa after Marissa double crossed her.\ntt5612742,cvuTnguNL8g,Cole reveals to Maddy the day their friendship changed forever.\ntt5301544,UTGEXJSxPvY,Ethan is surprised to discover his conservative friend is attracted to him.\ntt5301544,aqTS6jAqmUA,Rouge uncovers Ethan's identity.\ntt5301544,EhyXopafOeA,Ethan has his first on-air interview as Charles Fern.\ntt5301544,wyRpsUOH4f0,Rouge helps Ethan fake his own death.\ntt5301544,BYQ0Q0oqYOA,\"I successfully \"\"kills\"\" his conservative alter ego and wins back his girlfriend.\"\ntt5301544,KtEzZuRX23M,Ethan Smith admits to Julia that his alter ego is a conservative radio host.\ntt5301544,y3E0ot-4Egw,Ann Alcott tries to seduce Ethan.\ntt4848010,3wjBPKUDk_Y,\"After being unable to locate his wife and having a hellish night with her friends, David rips into every guest at the party.\"\ntt4848010,1spvdwcb7jg,David runs into an old friend who breaks a bit of bad news about his book.\ntt4848010,UYhBmdQ0VWc,David finds very little in the way of help while searching for his wife Jennifer.\ntt4848010,-QGGk3M5S3c,\"While being patronized by a critic, David recalls the moment he knew his wife had talent.\"\ntt4848010,tJwt-LcbRIw,Sawyer offers David a strange ultimatum regarding his career and his facial hair.\ntt4848010,xmbmcfVs1u4,Jennifer decides to get spontaneous and pulls over for a roadside quickie with David.\ntt4848010,AaF3SiD4IYM,David and Jennifer hit a bump in the road on their way to grab a rental from a car-sharing company.\ntt4848010,BpP_rFPFUPM,David has an uncomfortable encounter with a dentist at a party.\ntt4848010,PSWftrnsEcU,David meets a friend of his wife who seems to imply he slept with her.\ntt4848010,4l4OmZk59Gc,David has an interesting conversation with an eccentric literary agent.\ntt3518988,bPL9A5VyKrY,The story of DM Spencer Crittenden and how he came into the path of Harmontown.\ntt3518988,oP_Y5LgieXA,A look at Harmontown fandom.\ntt3518988,mWB4xc6-Pdk,Dan makes a fool of himself after a fan offers him moonshine.\ntt3518988,X_7TJFVH3R4,\"An examination of the reception of Dan's first pilot \"\"Heat Vision and Jack\"\".\"\ntt3518988,7X59lLfqm3c,Dan and his friends discuss the creation of Community.\ntt3518988,wZ6Dlo8z04I,Friends and collaborators try to explain exactly who Dan Harmon is.\ntt3518988,Ku3KKPEi-Ag,Dan and co. play a sold out show.\ntt3518988,wHgeI9HnroU,Collaborators discuss the rise and fall of Dan's time as showrunner for the Sarah Silverman Show.\ntt3518988,iQPvgoJ5l2s,Dan and his girlfriend Erin bring a big fight they had to the audience at a taping of Harmontown.\ntt3518988,cgGOnelqMi8,Dan and special guest Jason Sudeikis make a prank phone call to Chevy Chase.\ntt1754767,AUCbYHVFnf0,Dalton discovers the horse he's riding can talk.\ntt1540115,23zu-1Nsqg4,The Prince family describe how the coal contamination in their town led to the tragic death of their daughter.\ntt1540115,Uz6jhOP_nm8,A local confronts a coal miner about his former employer's part in contaminating her water.\ntt1540115,W08YzBOfqV8,A local family takes you through the daily routine of living with contaminated water.\ntt1540115,P-SVl6Ql7xU,\"Don Blankenship, the president of one of Massey Coal's subsidiaries, refuses to answer questions about the coal mines operations, but will mention he doesn't drink the water.\"\ntt1540115,CsfBuhXV2lA,\"Plaintiffs in the civil suit against Massey Energy find out their trial has been pushed yet again, but Massey ends up settling before it ever happens.\"\ntt1754767,KC2YLhHiXv4,Dalton tries to thwart a potential jailbreak.\ntt1754767,nyJ00UjcA0c,Dalton chases down a group of bandits holding Gail\ntt1754767,aB5g_U4qo_Q,Slim shows Dalton how to shoot a gun.\ntt1754767,Uxo5LmSDK34,Dalton goes after an outlaw missing the bottom half of his head.\ntt1754767,7Mz5jmOePsk,Dalton and the citizens of Toonstone fight against an alien invasion.\ntt1754767,NO9Qt8NB7JQ,Dalton discusses gun-slinging with McConaughorse before deciding he needs a different deputy.\ntt1754767,A9MNy__qBaQ,Dalton is rudely interrupted by McConaughorse during his conversation with Gail.\ntt1754767,rBy7ZDob8a8,Dalton faces off against the evil Two-Eyed Jack.\ntt1754767,D4x3BaaJ2gY,\"Slim tries to teach Dalton to be a real gunslinger, but he is violently bad at it.\"\ntt3605266,91GNWPp-a38,Rola asks Susan what she would want most.\ntt3605266,T8qZ73IazvY,Rola bumps heads with Susan over her constant suggestions.\ntt3605266,Ri408Ie3zQs,Rola and Lernert come across a Stranger searching for the same lake they are.\ntt3605266,vKT_HKcwxFY,Rola eats a potentially poisonous fruit.\ntt3605266,HBYW2199vpo,Rola explains her feelings for Lernert.\ntt3605266,wNuVF4lnszE,Lernert and Rola have a bit of leisure time in the desert.\ntt3605266,AGi49DPszHg,Lernert and Rola finally find the mysterious lake they had been searching for for months.\ntt3605266,snkc0SvbR4M,Lernert explains the difference between a posionous fruit and an edible one to Rola.\ntt3605266,sxyaSXAF5kI,Lernert finds a battery to charge his broken robot companion Susan.\ntt1856101,nL3o4MGY9NQ,\"Joi, K's holographic girlfriend, walks outside and experiences the rain for the first time thanks to a new device.\"\ntt1540115,jUgr32wtqiM,Locals meet in a town hall to discuss the contamination problem.\ntt1540115,cj8XKnVdCDs,Residents of a small West Virginia town describe the conditions they've been living in thanks to water contamination at the hands of a powerful coal company.\ntt1540115,YZN59OZIz30,\"A Massey representative disagrees with the company's alleged part in the contamination of local water and sewage, though it's ex-employees have a different view.\"\ntt1540115,LSUPf57En54,Advocates for the locals affected by the toxic contaminants investigate another case of rusted water.\ntt1856101,ZjEnS3hA1B4,\"While traveling with Joi, K stumbles into a hijacking.\"\ntt1856101,eCvY-ualWwY,K and Luv face off to the death.\ntt1856101,E_PIi8tRcCo,\"K visits Dr. Ana Stelline, the designer of memories for replicants.\"\ntt1856101,I4_AaEazcbk,K and Deckard are attacked by Luv and her men.\ntt1856101,lIbKD5ovjok,Lieutenant Joshi gets paid a visit by the villainous replicant Luv.\ntt1856101,PLgNzEctkO4,K takes Deckard to finally see his child.\ntt1856101,bbX5KM0tFVk,Officer K comes to recall rogue replicant Sapper Morton.\ntt1856101,tJya-fbl4R8,K finally meets ex-Blade Runner Deckard who gives a less than warm reception.\ntt1856101,BLSFQUjyBQo,K derails Luv as she takes Deckard hostage.\ntt4877122,YFIIcUg_C4I,Gene runs into Hi-5 while trying to escape Smiley's Malware Bots.\ntt4877122,OIf1BFh8UwA,Gene and Hi-5 search for the mysterious hacker Jailbreak.\ntt4877122,cbH10o2VTXI,Gene introduces the ins and outs of the emoji city living in our phones.\ntt4877122,nWwlcubR7s0,The rogue emojis scramble to break through the cell phone's firewall and to 'the cloud'.\ntt4877122,jXIFh5Gwqno,Jailbreak and Hi-5 scramble to save Gene from being destroyed in a game of Candy Crush.\ntt4877122,-vvxRiJkXAs,Smiler captures Gene and intends to delete him.\ntt4877122,1Pk2FQUbnm0,Gene and Jailbreak make a last ditch effort to save Textopolis from being wiped out from the phone.\ntt4877122,xzBC35K-vug,\"After teaching Jailbreak how to dance, Gene and the others move to the beat in order to escape Smiler's bots.\"\ntt4877122,WEwS34zf8mk,Gene is selected by his user to be used in a text and buckles at the opportunity.\ntt4877122,nYvvM0FXKWQ,\"After turning down Gene's romantic feelings for her, Jailbreak must team up with Hi-5 to save him from being deleted.\"\ntt1650062,JVRdRQaccL0,Sheriff Pruitt is attacked by an unseen force while getting gas.\ntt1650062,DtuXEqWdWCI,The group scrambles to find the monster's hideout and runs into an army taking over their neighborhood.\ntt1650062,u1MRGbWEI9M,Alice is abducted by the creature after an argument with her father.\ntt1650062,fWgpZ_2oYfE,The gang watch as a truck collides with a train while filming a zombie movie.\ntt1650062,KFzIZnYLKSo,Joe lets go of his locket of his mother as the alien leaves Earth in a makeshift craft.\ntt1650062,ekSSp-zvdgk,Joe and Cary find the creature's underground hideout and search for Alice.\ntt1650062,n_3Fsg5qGfk,The kids find a survivor in the wreckage.\ntt1650062,DRGjkQ_iBL8,Joe and Alice bond over the death of Joe's mother.\ntt1648190,ulFxMs35-P0,The Man in Black has finally kidnapped Jake and Roland is pinned by his henchmen.\ntt1648190,CtYTXG1RFQ0,Jake is kidnapped and Roland has one chance to take out his kidnapper.\ntt1648190,oIlpo2mj_qk,Roland teaches Jake how to shoot and the Gunslingers creed.\ntt1648190,Cn_70ds_Slw,Jake runs away and discovers a portal guarded by a possessed house.\ntt1648190,w0qfQaJtF2E,Roland and the Man in Black finally face off in a fight to save Jake or face the end of the world.\ntt1648190,vVmZO3W0I1A,Roland and Jake go to a gun store to pick up ammunition only to run into the Man in Black.\ntt1648190,R7vFG7jQZGY,Roland and his father Steven face off against dark magician Walter.\ntt1648190,5Cv1ENey4yU,The Man in Black has an army of Taheen attack the village Roland and Jake have taken sanction in.\ntt1648190,y1-gPBJ-C_U,Jake gets an unexpected visit from his 'father while traversing the forest.\ntt1648190,wWKQ2aOTfN0,Roland and Jake are attacked by a creature while traveling through the forest.\ntt1959563,mQTPziHf9Qc,\"Kincaid tells the story of how he met the love of his life, Sonia.\"\ntt1959563,1mVk7wal9bk,\"Fed up with his antics, Michael swears off helping Kincaid escaping Belarusian mercenaries.\"\ntt1959563,Gh9kc9DiDnE,\"Kincaid finally confronts Dukhovich, the war lord who has tried to kill him all day.\"\ntt1959563,ISQMNhOd96w,\"While arguing, Kincaid reveals the truth behind Michael's most life-changing event.\"\ntt1959563,q7tLJC4pC14,Michael is tortured by Dukhovich's men into giving away Kincaid's whereabouts.\ntt1959563,kTNDYiONld8,Michael helps Kincaid escape the streets of Amsterdam.\ntt1959563,sohDA6TQuiE,Michael and Kincaid are split up and chased across the city.\ntt1959563,9pF_vfzjbpY,\"While Agent Roussell is escorting Kincaid to Amsterdam, her cargo is destroyed by Belrusian thugs.\"\ntt1959563,hX-ezXejcU0,Michael is cornered by Dukhovich goons and tries to fight his way out to get to Kincaid.\ntt1959563,BCyz82L_61E,Michael does a job as a favor to his ex-girlfriend Agent Roussel but is shocked to find out the client is Kincaid.\ntt1959563,UlxZ06150xI,Kincaid tries to escape Michael's custody and accidentally leads the bad guys to their location.\ntt1959563,iLJtz-2nkGk,\"Michael tries his best to keep his client, Kincaid, from getting in the way of being protected.\"\ntt3892618,nbxAMHD0_dc,Cora and June meet up in Heaven during an orientation.\ntt3892618,21rlL3oxEIY,Lucifer tells the story of June's fall from grace.\ntt3892618,6MIGRX1AVKo,The Librarian teaches Heaven's Applicants a bit of discipline.\ntt3892618,U5XIY-s43aQ,\"June is cast down from Heaven and enters Hell's Carnival, meeting The Twin\"\ntt4335520,iLH6Fzd2V94,Entrepreneurs and experts discuss the importance of coding in education.\ntt4335520,9lnovJPbLTc,Experts dig into the possibilities for the future of women in tech.\ntt2378507,gqe-oAUoEto,Rex tries teaching Jeanette  how to swim by throwing her into the pool.\ntt2378507,zm9XOZXVyyU,Rex challenges Jeanette's fiancée to an arm wrestling match.\ntt2378507,wcjCEUeC8nk,\"After Jeanette has her family visit in the hospital, her father Rex devises a plan to bust her out without paying the bill.\"\ntt2378507,H7tyPUAH1lo,\"While helping her dad sew up a wound from a drunken fall, Jeanette asks her dad an important question.\"\ntt2378507,7l79p5apaqQ,Jeanette is left alone with a strange man by her father.\ntt2378507,B9r99FImuSc,The Walls family move to West Virginia and finally settle into a home.\ntt2378507,j_3wS3OIgc8,Jeanette and her siblings pull their mother to safety after a fight between their parents leads to her falling out of the window.\ntt2378507,qp-Jr4oEFWo,Jeanette is surprised to see her parents at her engagement party until they tell her why.\ntt2378507,Ed__PtLnaeo,Jeanette walks in on Grandma Emma being dangerously close to Brian.\ntt2378507,F70k-PX3p0o,\"On his deathbed, Rex finally reconciles with his daughter Jeanette.\"\ntt4131800,bTPrlCglvFo,The Mane 6 get saved by a sly and charming alley cat named Capper.\ntt4131800,KxoJQx_MgAc,Twilight Sparkle and Tempest Shadow both risk their lives in trying to stop the Storm King.\ntt4131800,sH8nzHarprc,Prep for the Friendship Festival is interrupted by an invasion led by the broken-horned unicorn named Tempest Shadow.\ntt4131800,yaWmlDjvMs8,\"Twilight Sparkle's friends, along with Capper, the pirates and Skystar, battle through the Storm King's minions to rescue her.\"\ntt4131800,nSH_S3LDUYI,The Friendship Festival resumes with a song by Songbird Serenade as Twilight Sparkle welcomes Tempest Shadow as a friend.\ntt4131800,XEF8mU3Vanc,\"After discovering the lost Hippogriffs in the underwater Seaquestria, the Mane 6 get turned into Seaponies by Queen Novo.\"\ntt4131800,vhmFJKHhdw4,Twilight Sparkle is captured by Tempest Shadow who reveals how she became such a dark and cruel pony.\ntt4131800,7VOpGn2RTP4,Twilight Sparkle gets a little encouragement from her friends in song form.\ntt4131800,rsktGDtzKhg,Pinkie Pie and her friends play with Princess Skystar and bring all of Seaquestria on their side with a song.\ntt4131800,2gUFZCRHHvE,\"Rainbow Dash convinces some former pirates, led by Captain Celaeno, to joins the cause of getting help for the ponies.\"\ntt3892618,ccgVkEP4hLs,God sings the prelude to a major shake-up in Heaven.\ntt3892618,1lVlP8o6t94,\"Eons after casting her to Hell, The Agent has a run-in with the Painted Doll as the Devil prepares for war.\"\ntt3892618,ql8RBlb-IJQ,Lucifer takes wayward souls headed for Hell back to Heaven.\ntt3892618,rvYoAzmAcAI,The Agent sings for June while in Club Cloud Seven\ntt3892618,eesYEZ3pp5Q,The Translators arrest and annoy Cora and June.\ntt3892618,Ozg8nU5yyWc,Lucifer teaches June a thing or two about being cast down from Heaven.\ntt4335520,zDGDWdvLCrM,A look at the non-profit program 'Black Girls Code'.\ntt4335520,kE8qSUcrrmk,A look at women's pioneering position in computing.\ntt4335520,-c6nNzrAqs0,An examination of the lack of diversity in programming and those looking to change it.\ntt4335520,-EZS68nXwHo,\"The story of tech pioneer Grace Hopper and also how she coined the term \"\"computer bug\"\".\"\ntt4335520,YtprbvdApU4,\"A look at the times a lack of diversity in the room caused tangible, and sometimes fatal, consequences.\"\ntt4335520,U4fHvCvrTjQ,Techies and scholars discuss the pre-conceived notions of being a woman in tech and the mindset this perception perpetuates.\ntt4335520,9w3jysNGqeA,Julie Ann Horvath describes a long ordeal of abuse after calling out an instance of sexism at work.\ntt4335520,qULQCbfqJm8,A primer on the basics of computing.\ntt3469046,9riBff-h-hM,\"Gru, Stu, and Lucy rush to save their girls and save the city from Balthazar Bratt.\"\ntt3469046,P94mqkWtfxU,Gru and Dru sneak into Balthazar's lair.\ntt3469046,_RG8hoGMxKw,\"After abandoning Gru, the minions run into trouble on a movie studio.\"\ntt3469046,m9Gg_VQP2zw,Gru and Stu face off against Balthazar Bratt and challenge him to a dance battle.\ntt3469046,Ps3MsEdfpAw,Gru faces off against Balthazar Bratt on the ship.\ntt3469046,yijQXDtxgic,Agnes gets told a story about a real-life unicorn.\ntt3469046,C0H2SnzitoM,\"The minions have adjusted to prison life, but still mis Gru.\"\ntt3469046,2tqG6KMgyv8,Lucy helps Margo get rid of an unwanted suitor.\ntt3469046,B5goHV7tFnE,Dru shows Gru their family legacy.\ntt3469046,H9PmpwhBg8w,The girls arrange a romantic dinner for Gru and Lucy.\ntt3564472,J4ZnYc3tNyw,Lisa gets stuck hanging over a busy street with a full bladder.\ntt3564472,wXDgyuxBuBU,Ryan tries to teach her manager Liz about cultural appropriation.\ntt3564472,193KvPnLO4I,The girls try to encourage Lisa to be a little less tense.\ntt3564472,kxvkI8K7fTo,Dina tries to convince Lisa to relax with the help of her secret hash.\ntt3564472,G8r48HzrYHE,Dina shows her friends the versatile functions of a grapefruit.\ntt3564472,FbV4VCCk3Sc,\"Ryan, Sasha, Lisa and Dina get into a dance fight and then a real fight with the side chick of Ryan's husband.\"\ntt3564472,m0etOugqkPU,The girls start hallucinating after Dina spikes their drinks with Absinthe.\ntt3564472,N_aPyfiVWEE,The Flossey Possey crashes the stage in order to stop Ryan  from being embarrassed by her husband's girlfriend.\ntt3564472,CYQXYJIN3Jw,The Flossy Possey breaks up after Ryan accuses Sasha of selling her out.\ntt3564472,h4lbn5nDXwY,\"Dina very violently confronts Stewart, Ryan's husband, after finding out he's been cheating on her friend.\"\ntt1711525,LQVzgO14oIU,Josh and Tracey catch up to Clay as he tries to drunkenly drive over the river.\ntt1711525,I3XgtCzF5UY,Nate and Allison find themselves unhappy in romance.\ntt1711525,y5_Q3HufngU,Carol finds out about the raging party that is happening behind her back.\ntt1711525,UUDv-oUehMU,Joel shows off his new DJ identity much to the chagrin of HR rep Mary.\ntt1711525,sf1LMw0a95g,Carol fights with her brother after closing half of his branch.\ntt1711525,CJGeUFtiJP0,\"Nate orders a callgirl to pretend to be his girlfriend and meets her eccentric \"\"manager\"\"Trina.\"\ntt1711525,j4OMpEp-bFk,Carol announces the imminent closure of her brother's branch.\ntt1711525,tgpGrfh6gM8,Josh is tricked into drinking egg nog for an ice sculpture while trying to impress a potential client.\ntt1711525,OgqkqYeNbOM,Josh and Tracey do damage control after their party gets out of hand and their client gets injured.\ntt1711525,km_nixuzb1A,Josh and Tracey try to rescue Clay.\ntt0498381,w3hwZ-7CWeg,Julia and Holt find Samara's grave.\ntt0498381,o9-cFlOdXn8,Julia and Holt stumble upon the wreckage that has Professor Gabriel trapped under a live wire.\ntt0498381,YptUTTJjUVs,Holt and Professor Gabriel investigate the seemingly modified version of Julia's visuals.\ntt0498381,_qbp2nGRp1Q,Julia frees Samara but is cornered by Father Burke.\ntt0498381,cwgaR1xDiyE,Father Burke reveals that Samara cannot harm him.\ntt0498381,pN5RlyFWJBA,Holt realizes too late that something is wrong with Julia.\ntt0498381,QiT-jk74QMw,Julia discovers the identity of the priest who abuse Samara and Samara's mother.\ntt0498381,_GJG2JDvCes,\"After failing to trap Julia, Skye fights against time as Samara attempts to break through to her world.\"\ntt0498381,Pm_7ga5bxeI,Julia finds an underground prison where Samara's mother was held captive.\ntt0498381,-p4TkuB20bs,Kelly and Faith are startled when a man claims he's about to die while aboard their flight.\ntt2473510,vsU27J8K3Tw,Skyler senses a dark presence in Leila's room that can only be seen on the video camera.\ntt2473510,iErVeElswus,Ryan and Emily hear a frightening message from little Leila.\ntt2473510,4F_jLtYFT6Y,\"When Father Todd is killed, the family has to deal with an enraged demon by themselves.\"\ntt2473510,gBdbUMTXKIA,A mysterious portal opens in Leila's room.\ntt2473510,UgtSRZHvyWY,Skyler and Mike investigate strange disturbances in the backyard.\ntt2473510,FPpYxPOjtsw,\"Emily comes face to face with the living incarnation of her daughter's demon friend \"\"Toby.\"\"\"\ntt2473510,mAD2gJTRSbI,Ryan and Dan Gill capture evidence of the demon on camera.\ntt2473510,KeiJDMd8loM,Mike freaks out when the demon stalks him in the house.\ntt2473510,GUw4G1lDGYE,Ryan discovers that the old Kristi and Katie videotapes somehow connect with his family in the present.\ntt2473510,v8kB6cqv8qM,Father Todd tries to exterminate the demon from the house.\ntt3065204,LKrcDYvwV1Q,Billy wakes up to find a malevolent spirit called the Crooked Man chasing after him.\ntt3065204,Trx5K54MNp8,Ed encounters the ghost in the flooded basement.\ntt3065204,W8EhiYDVPEU,Janet's interview is interrupted when she is possessed by the ghost of Bill Wilkins.\ntt3322940,piYwvMvqXPg,Mia and her husband John are attacked by home intruders.\ntt3322940,8Qw1dYiaCto,Father Perez tries to take Annabelle into his church in order to drain the energy of the evil spirit possessing the doll.\ntt3322940,axWtCnuctw0,Mia is chased by a demon while in the basement of her apartment building.\ntt3322940,_8hB8umrGlo,Mia has a physical encounter with the demon possessing Annabelle.\ntt3322940,_2gI4vpq9fo,Mia is haunted by the spirit of Annabelle.\ntt3322940,EPj1eq1csm4,The spirit in Annabelle continues to play mind games with Mia.\ntt3322940,KTVlvs7mtkM,Mia and Evelyn are attacked by a demonic spirit.\ntt3322940,GfUqvGxa6YE,Evelyn and John Form rush to save Mia from the demon haunting Annabelle.\ntt3322940,NGkLen8TbHc,Mia is chased through her apartment building's stairways by a malevolent creature.\ntt3322940,Csn39S3c0kI,Mia feels a demon's presence and visits Evelyn for help/\ntt3799694,Pg_mCxaEa10,\"While looking for Amelia at a porn producer's party, Jack Healy gets into a fight with a gun thug while Holly March gets captured by Blue Face.\"\ntt3799694,7fxvOlQLJWo,Jack Healy takes on John Boy as Holland March tries to get a hold of the secrets-filled film reel.\ntt3799694,3snpAmY2xeE,\"Tally holds Holland March and Jack Healy at gun point, revealing her betrayal.\"\ntt3799694,Xdp-MXh84BA,Blue Face chases down Amelia and Holly with Jack Healy  and Holland March not far behind him.\ntt3799694,bKWBb1_NJe8,Holland March gets cornered on the roof as Jack Healy and assassin John Boy start a firefight on the ground.\ntt3799694,-wBOjw_08o8,\"Jack Healy pays a visit to Holland March to give him a message, one that involves breaking his arm.\"\ntt3799694,1nwaifplKCI,Jack Healy and Holland March realize there might be a hitman killing their missing girl a few floors above them.\ntt3799694,QQAd5xx0XHc,Jack Healy and Holland March rush home only to discover a hitman named John Boy is already there looking for Amelia.\ntt3280262,AC9URVogG3g,\"After being locked up in the asylum like he planned, Andy is attacked by a Chucky doll that he himself sent there ahead of time.\"\ntt3280262,uQR_i0ydJik,\"Chucky has a frustration conversation with Angelea, a patient that thinks she see's things.\"\ntt3280262,xD9G6rUq_5I,\"Chucky visits Madeleine, a patient that views the doll as the baby she had previously killed.\"\ntt3280262,JCo3QW-S310,Chucky interrupts a disturbing hypnosis session between Dr. Foley and Nica.\ntt3280262,I4mtL3Zs0Zs,Chucky saves Nica for the second time only to show her that he's made some friends.\ntt3280262,wPmgfWpamb0,\"Nica, now possessed by Chucky, exits the Asylum and reunites with Tiffany.\"\ntt3280262,UA1QG3_VoQ4,Chucky posses Nica and gets revenge on Dr. Foley with a brutal head stomp.\ntt3280262,sHjCcVC1uR0,Claire loses her head when she discovers that Chucky is actually alive.\ntt3280262,bdFo-WtjOmA,\"Andy, now a lonely, gun collecting, vengeful adult, spends his Friday night torturing the remains of Chucky.\"\ntt3280262,v04j4-SBv9M,Chucky and his new pals kill Nurse Carlos.\ntt2975590,PsRTAWDrNYo,Lex Luthor unleashes his secret weapon upon Superman.\ntt2975590,MWAMJWYNpK8,Batman and Superman finally face off.\ntt2975590,i5dTE5dgWOw,Batman chases Luthor's cargo-hold in search of kryptonite and runs into the Man of Steel himself.\ntt2975590,4GlXOOYL_5I,Batman has an apocalyptic vision of a future where Superman has taken over the world.\ntt2975590,ttEZ7b4Cf9w,\"Superman launches a final gambit against Doomsday, but is injured during the fight.\"\ntt2975590,UeeK-Fgup9w,Superpowered Batman and a weakened Superman go head to head in battle.\ntt2975590,Xu0QBBxHZWs,\"As Batman is about to deliver the final blow, Superman yells something that gives him pause.\"\ntt2975590,7HlSKPTYZhs,Superman faces a congressional hearing on his actions after the Zod incident.\ntt2975590,4JE04So6OqU,Wonder Woman enters the fray and rescues Batman while Superman also rejoins the fight.\ntt2975590,rRlfzy7Rxdo,Batman goes to rescue Martha Kent from Lex Luthor's henchmen.\ntt1528854,RmEZwxFSsWE,Brad goes all out on the Christmas presents.\ntt1528854,vk5Kr-zV8AE,\"After bringing Brad and Dusty's families together, a new challenger arrives.\"\ntt1528854,WrY9UuucSUs,Brad and Dusty square off against the bully's dad.\ntt1528854,taf0MZ5VgDc,Brad shows Dusty his skateboarding skills.\ntt1528854,vLw24Xr1zKo,\"Brad, tries to show off in front of Sara by parking Dusty's motorcycle.\"\ntt1528854,3OFda9AT-U4,Brad and Dusty take out their aggression on one another during their childrens' story time.\ntt1528854,vPYiq9JNq_c,A drunk and depressed Brad tries to shoot a halfcourt shot for a contest.\ntt1528854,Iii55E60gfg,Dusty makes breakfast for the family and brings a surprise home from the street.\ntt1528854,fPcbyFeefXs,Dusty tries to embarrass Brad by taking him to a sperm doctor.\ntt1528854,6fJNyx7kI6w,Brad and Dusty reconcile and head to their daughter's dance only to catch Dylan in the middle of a fight with a bully.\ntt0088206,IMT0EqTWI6I,Kara appears in public for the first time and saves the day.\ntt0088206,JT_59yK4Gm4,Kara and Zaltar try to escape the Phantom Zone.\ntt0088206,2IIA6TYZynQ,\"Kara lands on earth and tests her newfound, terrestrial strength.\"\ntt0088206,ZWe2pwIiWsk,\"Kara goes out with Ethan, but the date is rudely interrupted by Selena.\"\ntt0088206,EMKD4L6Peto,Scarlet imprisons Supergirl and sends her to the Phantom Zone.\ntt0088206,f0-Ea9Ki7YU,Supergirl is nearly defeated by Scarlet.\ntt0088206,hzmZJcPlJlE,Supergirl races against time to save her friends from Selena.\ntt0088206,VM8ViJw7uNs,Kara is rescued by Zaltar in the Phantom Zone and taken to his home.\ntt0088206,0zQAUQGwv4A,Kara as Supergirl rescues Ethan and takes him on the beach.\ntt1253863,MkKO-Z_Sjm4,Queen Gorgo recalls the days of Xerxes from prince to god-king.\ntt3482062,qMMl8NYzcNQ,The roommates decide to have a threesome.\ntt3482062,vDL4qARSaBA,\"Bobby and Ray, jealous of her sexual escapades, decide to throw Chloe out of the house.\"\ntt2406566,5wcg-4j9CZ0,\"Lorraine makes a love connection with French agent, Delphine.\"\ntt2406566,rCUNazDU2mg,\"Lorraine tries to escape assassins by car, but loses Spyglass.\"\ntt2406566,zNMpSVorNr0,Percival meets his fate.\ntt2406566,iG5oSrAW9FQ,Percival takes out Delphine before Lorraine can get there.\ntt2406566,gQO9bgOLhmg,Lorraine uses her training to escape her captors in a moving car.\ntt2406566,DxCjqhDD7X4,Lorraine uses a hose and other other household tools to escape police.\ntt2406566,q8-xQspXFag,\"Lorraine meets with Bremovych, but has one final move left.\"\ntt1253863,VOk7mIZRPzI,Artemisia and Themistocles fight face to face.\ntt2406566,4-hiooEmi-I,Lorraine and Spyglass try to dispatch the last assassin sent to kill them.\ntt2406566,xwjw5TFPKwA,Lorraine tries to elude Bremovych's men at a movie theater.\ntt2406566,XarGS1AeEcE,\"Lorraine fights brutally to protect her informant, Spyglass.\"\ntt1253863,XDnXI6KXoeg,Artemisia challenges Themistocles in more ways than one over his choice to fight for Greece.\ntt1253863,sN16d6mhe-A,Themistocles attempts to fight his way out of vital battle.\ntt1253863,aex6V8aGvxY,Artemisia asserts her power among the Greek prisoners on her ship.\ntt1253863,VONBpGWaxL8,Artemisia closes in on Themistocles and the Greek forces.\ntt1253863,qbRoK8WhJQQ,Queen Gorgo tells the story of the bloody Battle of Marathon.\ntt1253863,VA6nnlleAb4,Themistocles faces off against Artemisia in a naval battle.\ntt1253863,PHJisUS7KSg,Artemisia launches a final gambit against Themistocles and his navy.\ntt1253863,-jtzzs0_bM4,Queen Gorgo arrives in the nick of time to bring reinforcements to Themistocles and his forces.\ntt4139124,tOeINWwKvoA,\"Cheddar tells Rell and Clarence to kill Hulka, but they have some reservations.\"\ntt4139124,-s52VEAQmKc,Rell and Clarence get to know the rest of the gang better.\ntt4139124,UkZVQNNzUAA,\"Rell and Clarence gets information on who kidnapped Keanu from Rell's dealer, Hulka.\"\ntt4139124,I8gdjJYDJ4o,\"On a crazy car chase, Rell tries to keep himself and Keanu alive with Bacon Diaz trying to kill him.\"\ntt4139124,HthNICfVKS0,\"Rell and Clarence meet the leader of the Blips, Cheddar, and discover that he has Keanu.\"\ntt4139124,2jHKPubCPDY,Rell finds a connection with Hi-C.\ntt4139124,Uc2sp69O0uU,Rell and Clarence take out the Allentown Boys.\ntt4139124,7qjZeHpcVtI,Rell and Clarence are turned over to Bacon Diaz as the thugs who killed his cousin.\ntt4139124,7_G8cPqQwEM,Rell finally gets some help to take out Bacon and Cheddar.\ntt4139124,1DgOAPBMXws,Rell finds Keanu the kitty and introduces him to his cousin Clarence.\ntt10146586,v4X6u53WL0U,Three top Minecraft YouTubers compete at a convention.\ntt10146586,RwN3A9iBARI,Analysts discuss what exactly makes Minecraft so popular.\ntt10146586,aBACy7VwhhA,A breakdown of Microsoft's purchase of Minecraft.\ntt10146586,mtZ90MN57TE,Analysts and celebrities discuss the most recent strata of online celebrity.\ntt10146586,qLBpHZ9dUZk,Experts walk through the Minecraft basics.\ntt3534842,RvZfy1w-M7g,John gets internationally famous for his lost leg.\ntt3534842,GCdylltS-m8,\"John remembers his press conference at the Dollar General, which was interrupted by Shannon Whisnant.\"\ntt3534842,eFs__fovQyk,John and his family recall the plane crash that killed their father and took his leg.\ntt3534842,ZlFVmr9iJjc,John describes how he became addicted to painkillers after the plane crash.\ntt3534842,56o2aefvmRA,Shannon Whisnant uses John's lost leg in various business opportunities.\ntt3534842,5ArOFrHp9Lo,Shannon Whisnant describes how he found a human leg in a barbecue grill.\ntt10146586,9Ou3nVQc4V8,Ali A describes his experiences in playing Minecraft.\ntt3534842,XPhVzIgYjhc,John and Shannon appeal to TV Judge Mathis to settle their dispute.\ntt3534842,VAfaWTc3WlQ,\"Shannon goes on a reality TV show, but doesn't like being portrayed as an idiot.\"\ntt3534842,s0rlNw_cXqI,John realizes that the whole brouhaha with the leg has helped him get his life back on track.\ntt3534842,43nQlnNaU-8,\"John tells how his amputated, mummified leg ended up in a barbecue grill.\"\ntt10146586,lsSC_8Aqums,Ashley Surcombe shines light on Minecraft's popularity on YouTube.\ntt3482062,hMCFlfCw0HA,\"Bobby and Ray steal Chloe's pizza, unaware she spiked it with magic mushrooms.\"\ntt3482062,0cWnOxMXOEo,Bobby and Raymond search for a new roommate and find Chloe.\ntt3482062,YQJoemnpWaM,Chloe brings home Bobby's ex-girlfriend Jennifer back to the house so the two can sleep together.\ntt3482062,IJIeGOw5bXk,Bobby and Ray wage an all out war against Chloe in order to push her out of the house.\ntt3482062,mN22-ZrX-tc,Bud gives Bobby and Ray a bit of advice on their potential new roommate.\ntt3482062,M5mJMC_RpNc,Chloe and Bobby take the prank war to an emotionally devastating level.\ntt3482062,GoqDlg4px4M,Bobby has a breakdown the day after his ex-girlfriend sleeps with his roommate Chloe.\ntt10146586,fm12-rhW8cU,Minecraft YouTubers talk about how they've dealt with newfound celebrity.\ntt5278578,ONBLhIZCtQU,Mark Barden remembers the days before the tragic event that took his son away from him.\ntt5278578,tVBI-Fup8EI,A Newtown priest recalls consoling the town after the tragedy.\ntt5278578,pQ62TmdWnyI,Residents of Newtown remember awaiting the news of what happened to their children.\ntt3482062,PPhGRj0W8e4,The roommates have an all out war.\ntt5278578,wxiEJrmUlL0,Nicole Hockley finds solace in speaking with the parent of a survivor of the Sandy Hook murders.\ntt5278578,Z_7N4TS_AzA,The Wheelers discuss life after their son was taken from them in an horrific event.\ntt5278578,ayq1fVd6Qhk,Those affected by the massacre speak out against lax gun laws.\ntt5278578,1YsmGZIZG0U,Nicole Hockley details the trauma of losing a child in such a horrific way.\ntt5278578,2anI_i9YYf4,\"The Hockleys share memories of their son, Dylan, before the tragedy.\"\ntt5278578,XocJyNxHsW0,Nicole Hockley shows exactly how close the man who murdered her son lived to her.\ntt5278578,PzjOxjO_LuI,Nicole Hockley discusses Dylan's life with the media and during a Town Hall.\ntt2250912,VkldXV8Pgi8,Spider-Man wakes up to find that he's stuck inside a storage vault at Damage Control.\ntt2250912,umcyzRBeJtE,Spider-Man tries to be intimidating to get info out of Aaron Davis.\ntt2250912,PCn1uAs_0VQ,\"Spider-Man finds himself at his weakest point, trapped beneath rubble as the Vulture escapes.\"\ntt2250912,r8-BFx3xFJ4,\"A day in the life of Spider-man as he deals with bike thieves, fans and little old ladies.\"\ntt2250912,dR3cjXncoSk,\"Spider-Man climbs the Washington Monument to save Ned, Liz and his other friends from a falling elevator.\"\ntt2250912,sR_tidD4M_8,\"In the burning wreckage of a Stark Plane, Spider-Man has his last chance to stop The Vulture.\"\ntt2250912,fB5HTcFhCso,\"After finding out his date's father is Adrian Toomes, Peter gets a very honest talk from the villain that has figured out he's Spider-Man.\"\ntt2250912,ORrQKFliVLM,\"While attempting to stop an weapons deal, Spider-Man gets into a fight with The Vulture that nearly destroys a ferry full of people.\"\ntt2250912,_sHXbqFJCr0,Spider-Man finally catches up to Toomes and finds he's a little out of his league.\ntt2250912,tu6FDI4JBDY,\"Spider-Man is ambushed by Herman Schultz, the new Shocker.\"\ntt3717490,C0vM89y4088,\"After a reckless test drive of a Zord by Zack, things come to a head within the team, leading to Billy transforming.\"\ntt3717490,wa_9eIwrEK8,The Rangers try to take down Goldar using their Dinozords.\ntt3717490,opSAGkaqx6Y,Zordon tries to explain to the group that they are supposed to save the world.\ntt3717490,YtqU_6Imito,The team jumps in their Dinozords and travels to Angel Grove to face Rita.\ntt3717490,enNm82zd1Ho,The Rangers see what their new Megazord can do in an attempt to defeat Goldar and Rita once and for all.\ntt3717490,jgk96izcJbw,\"After saving Billy, Jason leads the time in morphing for the first time.\"\ntt3717490,te2WMrdJ3yQ,Rita captures all the rangers after they try to take her down before they are ready.\ntt3717490,Kdu22nQNZmQ,The Rangers try to keep Goldar and Rita from getting the Zeo Crystal.\ntt3717490,jojFdN-oysU,The Rangers discover that their Dinozords can join together to create the all powerful Megazord.\ntt3717490,V11YeYfaxv0,The Power Rangers take on an army of Rita's rock monsters while she finally creates the giant Goldar.\ntt4005332,f03hKUGdtzY,A brief examination of the origin of One Direction.\ntt4005332,06h5HJo7A6I,An examination of America's obsession with Niall Horan over Harry Styles.\ntt4005332,UwvIz7Vdhn0,\"The story of 1D's second single \"\"Live While We're Young\"\".\"\ntt4005332,Kk3XhT9UJAM,\"The story behind 1D's documentary \"\"This Is Us\"\".\"\ntt4005332,oOhFc0F3jVw,A brief look at Harry's relationship with Taylor Swift.\ntt3890160,uHltDaQU1uc,\"Baby meets Debora but Buddy, hellbent on revenge, stands in their way.\"\ntt3890160,6O554p-ovsI,Baby and Debora bond over their mutual love of music.\ntt3890160,ZFXOR2yoWCg,The crew's meet-up with a gun smuggler goes spectacularly awry.\ntt3890160,UFo40MSG5Ss,Baby runs from the cops and into Buddy and Darling.\ntt3890160,276AIPEK_JA,Bats deals out some harsh truths to the crew.\ntt3890160,iDnE3PV4YNc,Baby goes to Doc for help.\ntt3890160,HlsvFTNrKK8,Baby and Debora are chased by Buddy.\ntt3890160,PDnA3LOm-xY,Bats tells the story of the bad luck driver right before they all go over the plan.\ntt3890160,KVbBkEyaoT8,Griff grills the necessity of Baby on the crew.\ntt3890160,_oLBVF_VYRM,Baby drives through the streets of Atlanta to get his crew to safety.\ntt6414866,bkLs-xLbpNY,\"Rene spends sometime with the Tuvan people living off the land in Mugur, Siberia.\"\ntt6414866,-r_EtRqgj_o,\"Rene gets some help from a small village in Africa, incorporating their culture and music into a song.\"\ntt6414866,P-M4AnVnnyU,\"Rene stops by Mona Lisa Studios in China, a photo studio that lets brides and grooms live out fairy tale weddings for a day.\"\ntt6414866,8KuNjb2xEoM,Rene goes to China and decides to fuse hip-hop and Chinese Opera to tell a story.\ntt6414866,C3lLA69xOc0,\"Rene puts together a hard hitting song about war while using people and survivors from Armenia, Georgia and other lands at war.\"\ntt6414866,PK14gY9Gn-A,Rene goes back home and puts together a song that celebrates the people and history of Puerto Rico.\ntt6414866,VB_ZrC1u74w,Rene pulls in help from Lin Manuel Miranda.\ntt6414866,zm44ZmISCac,\"Visiting Armenia, Rene talks to a family that has lived a life under shelling and sacrifice.\"\ntt6414866,pmU6-1I7eyQ,Rene Perez recaps his underdog rise to fame with his rap group Calle 13.\ntt4425200,xSM_nz6gKOI,John Wick tries to silently take out Santino at his coronation.\ntt4425200,7-TZCEyok_o,John Wick faces off against Ares.\ntt4425200,Ct-zGV4TgKY,Abram waxes poetic about the brutal efficiency of the legendary John Wick.\ntt4425200,rsuNowyCF0c,Winston warns Santino of the world of trouble he has started after putting out a contract on John Wick.\ntt4425200,Pv70ImW-l3s,John Wick face off against Cassian after murdering the man's ward.\ntt4425200,qIalODmFrZk,John Wick preps for his assignment by finding the most stylish way to kill.\ntt4425200,CujcdaQpYWE,John Wick and Cassian finish their rivalry on a crowded New York subway.\ntt4425200,eVJhlVgr9lM,John Wick is betrayed by Ares and tries to survive under the castle.\ntt4425200,-xZKHX91z9I,John Wick corners Santino at the Continental.\ntt4425200,0xSSnfRYBQY,John Wick tries to make his escape after assassinating his target.\ntt6414866,R66bHMRd6L4,Rene puts together a song with some local musicians in Africa.\ntt3038734,6rvbWWlv_qY,Johnny D. tries to impress on his first date with a model.\ntt3038734,Kh60xjnuAhA,Johnny D.'s nervousness and lies get the best of him while on a date with a model.\ntt4935334,TgWu1QcM1Tg,Lucas tries to resuscitate Sadie with help from paramedics over the phone.\ntt4935334,2dPi-jM7Jzo,Sadie escapes the cult but is struck by a driver not watching the road.\ntt4935334,Pq9kAmZ3X_k,Lucas pleads his innocence with the demonic paramedics.\ntt4935334,31ZrzeS_ymg,Danny finds his sister and makes his escape.\ntt4935334,3uIw6INr36g,A family that recently moved into their home is attacked and tied up.\ntt4935334,w4GgZsdpMDA,\"Jem tries to fight back, but makes the choice to run when faced against the men who murdered her parents.\"\ntt4935334,J8hfrE2LBSk,\"Jem fights back against the men who murdered her parents, but there is something much worse out there.\"\ntt4935334,Wx98L_LssbI,Mitch and Jack can't agree on what to do next as they are chased by monsters.\ntt4935334,QHcl5XE4XuM,Three friends are invited to dinner by a strange family.\ntt4935334,P7J3raOVLNU,Sadie watches her friends be indoctrinated into a cult.\ntt3038734,B493yqCgpZQ,Johnny D. discusses awful dads with Sebastian.\ntt3038734,516x-cH_Cpk,\"Johnny D. confronts his dying, comatose father after losing everything.\"\ntt3038734,lUyHKva8Wfg,Johnny D. faces off against Bobby and Mark over proceeds from the night before.\ntt3038734,cmJRHlOcTVw,Johnny D. lies about his identity in order to get a house full of models to come to his club.\ntt3038734,285xhqP7D_Q,Johnny D. is introduced to the world of club promoting by veteran promoter Mark.\ntt3038734,9cJ1ZWXeOXg,Mark tries to sabotage Johnny D.'s big opening.\ntt3038734,TvxfLhFGRzY,Johnny D. throws a party in a secluded warehouse in order to impress Sebastian and his father.\ntt3038734,QwjfMOhKcTw,Mark shows Johnny D. the ropes of party promoting.\ntt4005332,9ZmqIpTPFmM,\"The story behind 1Ds single \"\"The Best Song Ever\"\".\"\ntt4005332,v7Z3aLND9Xg,A look at the 1D fanbase.\ntt4005332,Fq5yX9ENZh0,The story behind 1D's first single.\ntt4005332,9F5v795Cfo4,The boys of 1D get their first BRIT Award.\ntt4005332,FRvhNHgU6fI,A look at how 1D has been making money since being signed.\ntt5115546,IYHAqyiQ2i4,Ross uses his paintball expertise to help Zak escape the meth makers.\ntt5115546,PcyonXZoHfQ,The team records a sinister message - or an order for cinnamon.\ntt5115546,s_B1ul97bfE,\"The team searches for Victoria, who has gone missing in the stables.\"\ntt5115546,Dv-ibHmFlS8,The Ghost Team discovers a meth lab and real danger beneath the creepy house.\ntt5115546,qXu7Ts5FWqA,Louis and Ellie discover what is making the strange noises in the house.\ntt5115546,Ir4wUoK_-c4,The team uses a ouija board to communicate with spirits.\ntt5115546,vMWCg4TNWIg,The team is disappointed by the lack of ghostly evidence and failed dreams.\ntt5115546,JKbrP4cjzo8,Victoria pretends to communicate with Mitch's deceased father to save her life.\ntt5115546,4w6WN2_l0wA,Zak sees a haunting face with a dark message for the team.\ntt5115546,pwuNGRVWB9w,Ross and Stan go missing as the team searches for Zak.\ntt5462602,VCLJGenGyB4,Kumail feels he should be at the hospital even though Emily's parents don't want him there.\ntt5462602,QiK2W8YshS4,Emily comes to New York to reconcile with Kumail.\ntt5462602,mbRL9NE5NXk,Kumail is shocked when Emily is put into a coma to treat a massive infection.\ntt5462602,ocqy8r8rDI0,Kumail explains that he can probably never marry Emily because of his family's culture.\ntt5462602,VpmnPgUwVO8,Beth goes crazy on a heckler at Kumail's show.\ntt5462602,uJ2RTDbq1IU,Kumail and Emily get to know each other after spending the night together.\ntt5462602,vrluM6pe89w,Kumail receives some unwanted love advice from Emily's dad.\ntt5462602,NTTyF1mDtgw,Kumail goes postal on a fast food worker.\ntt5462602,zsmP1h809F4,Kumail's parents disown him for rejecting their Pakistani traditions.\ntt5462602,Ik8q8LDqWiE,Kumail tells his family that they cannot disown him.\ntt6231792,QHjr51lAne4,\"Ivan Ramirez goes off-road in Ensenada Baja, California.\"\ntt5199588,5rVB1DFakzA,An Introduction to John Florence and the world he inhabits.\ntt5199588,lQLchoQRlZk,John John arrives home to the north shore of Oahu.\ntt5199588,Ae3HbC1X-_A,John John goes surfing with his friends in West Australia.\ntt5199588,mat5twjYjJ8,Memories of John Florence family and his family from his younger days as a surf prodigy.\ntt5199588,9fHiacvqXLY,John John rides a huge wave while surfing in Hawaii.\ntt5199588,zY2G4v0b5IU,John John goes surfing with his friends in Rio.\ntt5199588,ih4MIVjS8yU,John John goes surfing with his friends in South Africa.\ntt5199588,cscOz4NHIWY,John John goes surfing with his friends in Hawaii before heading off to surf around the world.\ntt5199588,GwowcP5KIIA,John John goes surfing with his friends somewhere on the continent of Africa.\ntt5199588,6U61OQAOe84,John John prepares to take on the African coastline.\ntt5226436,ToI9OHLE068,\"As his crew rides through the snowy hills of Japan, Travis stands in awe of the nature surrounding him.\"\ntt5226436,uJ_dVRo08Sc,The crew discovers unbelievable amounts of snow in Japan.\ntt5226436,D8gSV_8abXc,Travis makes his way down a cliff with heavy amounts of sheet ice and is rendered unconscious.\ntt5226436,2wN8f0ezRS8,Travis explains the nature of his studies and how they apply to his passion for snowboarding.\ntt5226436,TLOD07LZw90,The crew enjoys a fire festival in between shredding the snowy hills in Japan.\ntt5226436,fWRkpKq-9f0,Travis explains the ethos of his work while we get a first hand look at what it's like to ride an incredibly steep hill.\ntt5226436,3N5u8TKtmfk,\"In Alaska, Travis must face the rocky cliffs with one man down.\"\ntt5226436,64-EdvBcZYg,Travis's crew explains what it's like to work for him.\ntt5226436,pNRl-3kZPzY,\"After being crushed by falling snow, Travis examines what got him to this point.\"\ntt5226436,jNNX5a8ogr8,Travis goes back to the simpler peaks after severely injuring himself.\ntt2538778,ftOTPUX7vss,\"Aliya and her lover, Ruslan, nearly escape but are cornered by Mussa.\"\ntt2538778,tuh3yZXagYE,An introduction to drug lord Khazar.\ntt2538778,mPxP11XFKcw,Aliya and Ruslan finally escape the clutches of the drug cartels only to find they may not be as far as they thought.\ntt2538778,aYNntWtMi24,Mussa and Khazar are pitted against one another by two undercover cops.\ntt2538778,dyupZilayXY,Aliya reveals the truth of her disappearance to Ruslan.\ntt2538778,a7dRLlirThw,\"Tom, Mike, and Olga meet up to exchange money for a blood diamond only to get attacked by women with machine guns.\"\ntt2538778,0mRRULBvuj0,A boat keeper defends himself against a small army of mercenaries working for a drug cartel.\ntt2538778,tStZuBeyeok,Bulo faces off against a rival gang leader.\ntt2538778,JtgnLYdR2ec,Aliya and Ruslan are chased by the drug cartels looking for stolen money.\ntt2538778,mMG-Op_PPEE,Aliya is turned into a lethal weapon after being kidnapped by a drug kingpin.\ntt4698584,oUXKSovzDMw,Óscar interrogates Delia and discovers he has been two steps behind his prey the entire time.\ntt4698584,iQrYqaPeMlc,Óscar narrowly misses catching Pablo.\ntt4698584,mu9cObUl8Gg,Óscar interviews a prostitute hoping to finding information about Neruda's whereabouts.\ntt4698584,UIKJTZC53hY,Pablo finds the dying Óscar and sends him a fond farewell.\ntt4698584,PDVyr--ODQs,Pablo is given a lesson in modesty by his bodyguard.\ntt4698584,E-gwIn1O1pE,\"Neruda attends a local brothel, unaware Óscar is right behind him.\"\ntt4698584,2r_EHD8QVYg,Pablo is arrested as he is crossing the Andes.\ntt4698584,oeKyva3fU1c,Neruda is chastised by a member of his political party.\ntt4698584,3oQd25IcII8,Óscar finds the wife Pablo abandoned in the hopes of tarnishing the man's reputation in public.\ntt4698584,hgQC-VGKUHo,Óscar's ploy to tarnish Naruda's reputation backfires spectacularly.\ntt4939066,0fAHVLBuwVU,Joe and his group gets raked over the coals by their client for their offensive voice response system.\ntt4939066,Ro4xPHjRH8k,The real Emily mocks her fake Emily voice response at an improv show.\ntt4939066,Ty0O5WKbLkU,Gregg sees that Joe is losing his grasp on reality.\ntt4939066,8rSdR6dU7KA,Tensions rise when Joe gets his wife to be the new voice of their product.\ntt4939066,Kmnf2USgtiA,Joe has a severe panic attack and turns to the fake Emily for comfort.\ntt4939066,wPw9GesZAcw,Emily chooses to give Joe a second chance.\ntt4939066,Se3ZAXB8sU4,Emily helps Joe's mom overcome her fear of needles so she can get better.\ntt4939066,ABYeVd_JWss,Joe faces his fear and goes on stage at the improv show to win Emily back.\ntt4939066,9DmxaUyjKTk,Emily is tired of having Joe listen to her conversations for his work.\ntt4939066,DDaR9vzYJWA,Emily is jealous of Joe's connection to the cyber version of herself.\ntt2989524,8PB5sU_QcUc,\"Carrie's father, Mr. Pilby pays a visit to the man who broke his daughter's heart.\"\ntt2989524,YzCruCXU8Xc,Carrie grills her psychiatrist on his own ethical and moral conundrums.\ntt2989524,77DXn43fhVw,Carrie remembers the exact moment her relationship with sex became sour- the night she slept with her English professor.\ntt2989524,TYCfoxmY_vg,Carrie goes to hook-up with Matt but can't stop thinking about his fianceé.\ntt2989524,S_l6py_n6RM,Carrie finishes off her to-do list by inviting her neighbor Cy over for New Year's Eve.\ntt2989524,nqJIAz0C5Ig,Carrie has a surprisingly enlightening conversation with her neighbor Cy.\ntt2989524,M6W-zjN_LYQ,Carrie sets out to trap a cheater.\ntt2989524,BvS7NWvYZb0,Carrie meets and falls in love with her English professor.\ntt2989524,t9SNzY1Hq1k,Carrie goes out to see a show with her new work friend Tara.\ntt2989524,0qzhcuRwBnY,Carrie has an awkward run-in at a café.\ntt3717316,7tb3_GWTIaU,\"At the end of his rope, Ashley is saved from killing himself by a dear friend.\"\ntt3717316,oKW6UxOdICg,Jeremy desperately tries to save his grandfather from dying.\ntt3717316,lKzUGYETlU4,\"Ashley Douglas and his new friend, Jeremy, go to dispose of his mother's refrigerator and run into his ex-girlfriend's new man.\"\ntt3717316,7jXZpvSkCaM,Ashley asks Jeremy to show him what the doctors are doing to him.\ntt3717316,-LfB7USrdis,Ashley is home from prison and immediately goes to visit his ex-girlfriend Linda.\ntt3717316,7n9xJpld-0s,Jeremy participates in an experimental treatment for his condition.\ntt3717316,ZnxMS3Nf6Ws,Ashley's world begins to crumble after a series of half-bred decisions.\ntt3717316,ZeuUMdNQTHQ,Ashley takes Jeremy on a journey to find some cash.\ntt3717316,kHAHQMb4Lmc,Ashley and Jeremy dig for a box Ashley hid before his time in prison.\ntt3717316,97E7Kft_bno,Ashley's last ploy to get back the love of his life has a soberingly unexpected result.\ntt5072406,9hNNrKNPGVo,Hélène breaks into the home of the people she suspects may have killed her child.\ntt5072406,ermD7PGA3Do,\"Hélène finds Michel, the owner of the car that killed her son, and tests his sensibilities.\"\ntt5072406,aiiJ0fBFjCQ,Hélène investigates the daily life of the man who may have killer her son.\ntt5072406,24B-_HU7NLs,Hélène has dinner with her recently separated husband Vincent.\ntt5072406,Zdv1_Iimmgg,Hélène's second drive with Michel is interrupted by an unexpected sexual advance.\ntt5072406,tm_W36kWahM,\"Hélène corners Marlène, believing the woman was involved in her son's death.\"\ntt3911554,g_C56llGC1E,Peelander Red contemplates life after the band.\ntt3911554,4tMdFDBXDpk,Kengo Hioki expresses his displeasure at his best friend and former bandmate Kotaro Tsukada.\ntt3911554,WShQx7lNPi4,A look at the timeline of Japanese punk rock band Peelander-Z.\ntt3911554,rZyjko9lXo0,Bandleader Kengo Hioki talks about what brought him to Peelander-Z.\ntt3911554,HCRagorblVI,Kotaro Tsukada plays his final performance as Peelander Red.\ntt7456468,aGE--b9ilhk,Julia watches as Tzanko unwittingly unravels a conspiracy against her ministry.\ntt7456468,7SNohNGz_f0,Tzanko is honored by the Transportation Minister for returning the money he found and they present him with a reward - a new watch.\ntt7456468,wz0UlSqctTI,Tzanko struggles through an interview after turning over millions of dollars to the government.\ntt7456468,97gMDmQV_es,\"After being forced into repudiate the truth, Tzanko must publicly broadcast an apology to the government.\"\ntt7456468,nvCEzZ3P_x8,Julia discovers that her plot against Tzanko may have resulted in his death.\ntt7456468,KS1iOmeMGEU,\"While trying to get his watch back, Tzanko accidentally reveals a conspiracy to a major journalist.\"\ntt5022872,gXVvoSa1xBg,Dana takes Naama to her first gay bar in Tel Aviv.\ntt5186236,4iLKU2WRo4k,Wladyslaw Strzeminski destroys a political banner blocking his light.\ntt5022872,KW7bMwCb2_4,Naama asks Dana to fully commit to her.\ntt5022872,JdWS7JkUno8,\"Naama and her family visit her sister, Liora, after she went AWOL from the Israeli Defense Forces.\"\ntt5022872,o71CfblYCqI,Naama shares her first intimate moment with another girl.\ntt5022872,dIx1J8hHVkw,Gidon grills his missing daughter's friends in order to find her whereabouts.\ntt5022872,ArnlIuuyPJ0,Naama parties with her friends and meets the new girl at school.\ntt5022872,rHYsSCKGZGo,Naama fights heartbreak after her girlfriend ditches her for another girl.\ntt5022872,fZMKMakjV_A,Naama and Dana discuss their obligation to freeing the attractive girls at their school.\ntt5186236,7eYTzvoxmk4,\"Wladyslaw Strzeminski discusses the new political landscape they find themselves in with his friend, the poet Julian Przybos.\"\ntt5186236,_sMqmGJObDU,Wladyslaw Strzeminski teaches lessons to his students after being fired from the university for his objection to the government's art sanctions.\ntt5186236,inMPeTx6hoA,Hania rushes to class in the mountains to meet professor Wladyslaw Strzeminski.\ntt5186236,QHTbbfdmYuc,Wladyslaw Strzeminski finds himself losing another job at the hands of the city government.\ntt5186236,YDBqQMQB_ls,A group of government thugs disrupt and destroy an art gallery featuring the work of the students of Wladyslaw Strzeminski.\ntt5186236,pUtBYdlwUNA,Wladyslaw Strzeminski walks in to stop the city government from censoring another one of his art pieces.\ntt5186236,mymHgUYBTfk,Wladyslaw Strzeminski is saddened to discover his student and transcriber Hania has been in love with him since the day they met.\ntt5120042,hfXW-z1-aUY,Bobby Rush plays a juke joint outside of Louisiana.\ntt5120042,qlk05SwGu10,Blues artist Carol Fran tells the story of her hit 'Emmitt Lee'.\ntt5120042,lFzZCgFxUSc,Lil' Buck Senegal shows the feeling that moves him and guides the way he plays the blues.\ntt5120042,WDrQaK1i_9U,Bobby Rush and Duck Holmes discuss the racism they experienced performing in the Chicago suburbs.\ntt5120042,kJg9uBKvDZ4,Lazy Lester explains the difference between White Boy Blues and Black Boy Blues.\ntt5120042,Qx1wXZHymV8,R.L. Boyce plays the blues at a fish fry in south Louisiana.\ntt5120042,fhCVsKgC12w,Duck Holmes discusses the old days of the blues.\ntt5120042,636QHxJvvjc,Bobby Rush hits the stage again after decades off the road.\ntt6231792,MsUXCqHc8xE,Toby Price talks about the almost life ending injury that he survived and his love of racing through Australia.\ntt6231792,gw4boF1v2YI,\"Brian Deegan talks about his young son, Haiden, getting into motocross.\"\ntt6231792,0xHPBlFPCwo,\"Josh Hill, Bilko, Harry Bink and Axell Hodges take their bikes to the St. Anthony Sand Dunes in Idaho.\"\ntt6231792,o00oxyBzsb4,\"Tyler Bereman, Axell Hodges and Josh Hill all spend some time riding on the tracks of California.\"\ntt6231792,ttjmXS4de4Y,Tom Parsons and Kris Foster take a few rides through some vineyards.\ntt6231792,VD-_YgrNOk4,Dean Wilson has some fun at Florida Tracks and Trails.\ntt6231792,E6T4nHj8afI,Tim Gajser discusses growing up and getting into Motocross while living in Slovenia.\ntt6231792,Q2P2WsgH6mQ,\"Brian Deegan's whole family gets in on the world of Motocross, including his sons Haiden and Hudson.\"\ntt6231792,T6P6Jyhmj6E,Reagan Sieg talks about adapting to snow and ice as he rides around Grizzly Lake in British Columbia.\ntt4666726,GGK2S2wy9sA,Christine finds out that the owner of their station is visiting.\ntt4666726,TgfJD9geSac,Christine unleashes all of her frustration on her mother Peg.\ntt4666726,jakEl-SL35c,\"Christine tries to push a new idea to Michael, but only finds disappointment.\"\ntt4666726,31XcssmnGvM,Christine is taken on a date by George but is disappointed to discover things were not what she believed.\ntt4666726,kidICVXLnRY,Christine tries to get advice from Michael on how she can get a promotion.\ntt4666726,NXedF2XcFkA,Christine gets a break on a local news story.\ntt4666726,MX7c3F1q8UQ,Christine has a fight with her mother Peg after a bad day at work.\ntt4666726,kNAO6eHuCjY,\"George tries to connect with Christine, but is met with apprehension.\"\ntt4666726,poVn84doiN8,\"Christine attends an experimental, New Age therapy session.\"\ntt4666726,5YEw7F6ri_0,Christine argues with her boss about the news station's new direction.\ntt4799050,wTLo8CdhxGs,The girls do a dance at the club that they perfected in college.\ntt4799050,s9TKR7rSFfA,\"The girls dump the body in the ocean, but Pippa flies off the jet ski.\"\ntt4799050,c0XTkj3PIWg,Blair is forced to seduce the neighbors in order to get their security camera tape.\ntt4799050,Fr6fIMIc_Jo,Pippa shares her original song about Jess's bachelorette party.\ntt4799050,05foBuX_brU,\"When Pippa realizes that the cops are actually criminals, she uses a code word to alert Blair.\"\ntt4799050,5NTDlhH174M,The girls try to hide the body from the incredibly horny neighbors.\ntt4799050,fEwSNiZ3zn4,Alice convinces the girls to do a special picture pose.\ntt4799050,ra9UQb-OVqQ,The girls freak out when their stripper dies and they have to get rid of the pizza guy.\ntt4799050,OnJAp2emJ4U,The girls have a hard time hiding the dead stripper in a glass house.\ntt4799050,SwOfGb9QwTc,The girls convince Jess to partake of some cocaine for her bachelorette weekend.\ntt2763304,_yxKJaVk4kI,\"Renton meets his former girlfriend Diane, who is now a successful lawyer.\"\ntt2763304,N35FsMxEmSc,Renton and Simon realize that Begbie has set a trap to get revenge on Renton.\ntt2763304,3x0UxzeZBso,Begbie exacts his revenge on Renton.\ntt2763304,I_X6zWElJdw,Renton takes Spud on a run and advises him on his drug addiction.\ntt2763304,2EQCpQbUrzI,Renton and Simon improvise a Protestant bar song in order to escape with stolen credit cards.\ntt2763304,lQhQeus0ItY,Begbie is supremely disappointed that his grown son does not want to go into crime like his Dad.\ntt2763304,eKCkxzJFP5M,The guys go to the country where they remember their friend Tommy and past mistakes.\ntt2763304,cvNjYmDiV0Y,Renton returns home and saves Spud from killing himself.\ntt2763304,fBNzgfFkvEo,A very angry Begbie seeks revenge on Renton after 20 years.\ntt2763304,ahxDiseuAak,\"Renton rants to Veronika about what \"\"Choose Life\"\" means.\"\ntt3121332,F6dN5Kq5NZ8,\"After a bad day, Freddy is followed and harassed by The Bishop.\"\ntt3121332,JIkmOqrneTU,Polly gives Freddy the bad news that his sperm count is too low to conceive a child.\ntt3121332,9SYhu10qJ-o,Freddy and Mo murder The Bishop and the group tries to figure out what to do with the body.\ntt3121332,aiWJhEMskMU,\"Polly and Freddy meet The Bishop, a mentally ill resident of their Brooklyn neighborhood.\"\ntt3121332,YqRwOf0XHUg,Freddy leads a neighborhood revolt against The Bishop.\ntt3121332,yQ7JLXkHq2M,Freddy and Polly run into issues with Mo's family.\ntt3121332,5W60oPaZOIc,Freddy looks for a solution after seriously injuring The Bishop.\ntt3121332,EntbO16GpNA,Polly gets harassed by The Bishop.\ntt3121332,w7DIFgkIh4o,\"After celebrating Mo's birthday, Freddy decides to play a prank on their neighbor.\"\ntt3121332,VDGE0RPwLH4,\"Freddy, Polly, and Mo work to conceive their child the night the decision is made to have it.\"\ntt3416742,DUYaGj7RBfk,Nick brings a surprise to the flat.\ntt3416742,Iae-A9s8Nk4,The flatmates fall in love with Nick's friend Stu.\ntt3416742,cWKL1gFCS54,The undead flatmates have a house meeting.\ntt3416742,CaIXZsmUl4I,Vlad comes to the rescue for Stu.\ntt3416742,qL_XE00jzXM,The cops investigate the house after a fight between the roommates.\ntt3416742,e1BdvP4zenI,The flatmates rush to get Stu out of the party and away from the creatures attempting to eat him.\ntt3416742,Yr3YqpkoN_o,The flatmates take Nick out for a night on the town but are worried when he can't stop boasting about his recently deceased status.\ntt3416742,qQJmr9kI9uw,The flatmates come across Anton and his pack as they prepare for transformation.\ntt3416742,RAqYpOzllmM,The flatmates have two victims brought home by Jackie.\ntt3416742,rF9Z6Hvmf5M,The flatmates comes across Anton and his pack.\ntt2592614,FRSfDQyoav8,Alice goes after Dr. Isaacs but runs into his right-hand Commander Chu.\ntt2592614,ILwJA2feDRs,Alice runs into a trap while on route to Raccoon City.\ntt2592614,z2PH2-yl5Ho,Alice and Claire help defend the last human settlement in Raccoon City.\ntt2592614,RDBywHkU6Wg,The survivors run into a major obstacle while infiltrating the Hive.\ntt2592614,eGLC0vhemeA,Alice starts losing her fight against Dr. Isaacs in the laser hallway.\ntt2592614,O7z6rV8Gdbs,Alice rushes toward an escape after getting captured by Dr. Isaacs.\ntt2592614,0mPTGVoG248,Alice faces off against a giant monster after surviving an attack from Wesker.\ntt2592614,elcYyXvJF7U,Dr. Isaacs corners Alice into a familiar trap.\ntt2592614,EXUzqVIocHI,Dr. Isaacs launches a major attack against Alice and the other survivors.\ntt2592614,OpAEdqIIWpY,Alice and Razor face off against a monster after falling into one of Wesker's traps.\ntt5442430,KSZN8iThGZ8,David comes up with one last desperate plan to keep the alien from reaching Earth.\ntt5442430,XaI13YBdi_M,Miranda and David track the alien as it hunts for blood.\ntt5442430,r3fnCEjvPCQ,Hugh shocks the alien organism and it takes hold of his hand with deadly strength.\ntt5442430,iwGU5hY6stw,Miranda takes a lifeboat bound for Earth while David pilots his towards deep space with the creature aboard.\ntt5442430,iPgcg3DVoUY,\"A rescue ship approaches the station, but David soon realizes that rescue is not intended.\"\ntt5442430,m-PsCZ_57MY,\"Commander Golovkina is attacked by the alien, dubbed \"\"Calvin\"\", as she is doing a space walk.\"\ntt5442430,zfUzaYV1xfE,\"The crew tries to revive Hugh, but Calvin appears, bigger than ever.\"\ntt5442430,V022pMeqRjA,\"A lifeboat splashes down on Earth, but whose is it, Miranda's or David's ?\"\ntt5442430,ViF6HrzoOj4,\"David tries to save Kat, but she sacrifices herself to save the crew from the alien.\"\ntt5442430,_SdYxgbXnHs,Scientist Hugh Derry discovers extraterrestrial life in a soil sample from Mars.\ntt4698684,32QcvEuJYFA,Ricky and Hec mourn the loss of Hec's wife.\ntt4698684,QfATkY6jMtM,Hec and Ricky run into a trio of idiot hunters.\ntt4698684,av2VWuMUFCM,Hec and Ricky come across a man named Psycho Sam while running away from the authorities.\ntt4698684,_s3bHABazDA,Bella and Hec celebrate Ricky's birthday.\ntt4698684,jirWCRbgK8E,Ricky fails to warn Hec the police are coming and finds the compound they were hiding in being raided by police.\ntt4698684,Tr_OzL7mupk,Ricky teases Hec after finding out that he can't read.\ntt4698684,8AXEzcuMQp4,Ricky runs into Kahu and realizes he and his uncle are famous.\ntt4698684,WyBvHGU-djg,Ricky and Hec are cornered by social worker Paula and a full police force.\ntt4698684,qTANCNgUW2Q,Ricky and Hec are on a high speed getaway from Paula across the New Zealand bush.\ntt4698684,ie6rKW_Giqc,Ricky and Hec ask for Psycho Sam's help in escaping the police.\ntt3917210,5UOJUZhe85M,The Suskinds discover that Disney animated movies help Owen communicate with them.\ntt3917210,fpOQzt9NtX4,Ron Suskind describes the first conversation he had with Owen using a Disney character.\ntt3917210,BNgJCuwM7CQ,Owen moves into his own apartment for the first time away from his parents.\ntt3917210,xchco5BLMQU,Owen deals with the sadness after his girlfriend breaks up with him.\ntt3917210,7oOKwZlj4VE,Owen loves his girlfriend Emily.\ntt3917210,9WKilpdUoWQ,Owen describes why he loves the Disney sidekicks.\ntt3917210,9UslcBJkmyc,Ron and Cornelia Suskind describe how it felt when their 3-year-old son was diagnosed with autism.\ntt3917210,0vI1R3VEREQ,Owen meets his hero Gilbert Gottfried at a Disney Club script reading of Aladdin.\ntt3917210,Mf0pWnkN_vc,Owen gives a speech in France about his life with autism.\ntt3917210,wZj44nizNJ0,\"Despite his break-up, Owen moves forward with cheer and determination.\"\ntt2398241,ccH057kbWTg,\"The Smurfs gather to lay Smurfette to rest after she had turned back into clay, giving her life to save them.\"\ntt2398241,WG_LG1CfsCE,\"After Smurfette gets captured by Gargamel and gives up her evidence of new Smurfs, Hefty leads his friends on a rescue mission.\"\ntt2398241,-U9v7Nz6hOs,\"Smurfette, Brainy, Clumsy and Hefty all go surfing through the trees but end up getting noticed by Gargamel.\"\ntt4160708,xmzkZ12GMAs,Rocky escapes The Blind Man only to be cornered by his dog.\ntt4160708,pZRDwBXv7T0,Rocky and Alex are chased through the basement in the dark by The Blind Man.\ntt4160708,uUEpwPiiGco,Rocky is finally able to fight back against The Blind Man using his own security system.\ntt4160708,54x4n4FlV4U,Rocky discovers what The Blind Man was doing in his basement.\ntt4160708,PB-KpT4zhWo,Three thieves are caught mid-burglary by the homeowner - a blind man with skills they hadn't seen coming.\ntt4160708,gsG8sEK2md8,Rocky and Alex stumble across a secret hidden in The Blind Man's basement.\ntt4160708,Vfi1V_SL9H8,Alex fights for his life as The Blind Man hunts him down.\ntt4160708,yk73thpx_B8,Rocky and Alex look for a way to escape the grasp The Blind Man.\ntt4160708,QO0gZrQw9KU,The Blind Man makes a forceful exchange with Rocky after his original captive is killed.\ntt4160708,8le-4mOgJco,Rocky and Alex attempt to help a kidnapped girl escape The Blind Man.\ntt2398241,pmqBmTWq420,Gargamel discovers the Smurfy Grove and goes about capturing everybody except for Smurfette.\ntt2398241,VGhUlUHKv7s,\"After a brave rescue, Smurfette Brainy, Clumsy and Hefty all must escape Gargamel and his Smurf hungry pets.\"\ntt2398241,9IYFHAnqOKM,Smurfette and her friends discover the lost tribe of Smurfs and find they are all female.\ntt2398241,FjT4_Bi-F0I,Papa Smurf explains the story of Smurfette and her lack of place in the village.\ntt2398241,2rFXR3_DeMU,The citizens of Smurfy Grove welcome Smurfette with open arms.\ntt2398241,dcCsAQTY9lQ,Smurf Village and Smurfy Grove both celebrate the return of Smurfette and their newfound friendship.\ntt2398241,9MhRoo23Wak,\"With all the Smurfs captured and being drained of magic by Gargamel, Smurfette arrives just in time with a plan.\"\ntt0079714,Qft-ZvHFfmE,\"When Mike travels through the portal and sees the other world, he figures out what’s going on.\"\ntt0079714,H_xWhF2sSb0,\"Mike visits a fortuneteller, who offers some interesting advice when Michael inquires about the Tall Man.\"\ntt0079714,QjEfREkwJe0,\"When Mike catches a monster, he and Jody attempt to kill it in the garbage disposal.\"\ntt0079714,zpSLlRt7KGE,Mike and Jody draw the Tall Man into a trap and bury him alive.\ntt0079714,NONRLC7wAlM,\"Mike encounters the mysterious Tall Man, who makes the act of enjoying a cool cool breeze from the back of an ice-cream truck irrefutably creepy.\"\ntt0079714,9d30_Y2bF64,\"The Caretaker catches Mike, but gets drilled to death by the silver death orb before Mike makes an escape from The Tall Man\"\ntt0079714,y04Q-2-ut0I,\"Our heroes Reggie and Jody rock out on Jody’s front porch, because they are hot as love.\"\ntt0079714,bm3QkHapg3Q,\"After waking up, positive that everything was just a dream, Mike gets pulled through his bedroom mirror by The Tall Man's minions.\"\ntt0079714,E3lprGIkEic,\"Before Mike can get away, the Tall Man's minions attack the car and throw him out the back window onto the street.\"\ntt0079714,Pj5ds2Q_tJg,\"Mike and Jody are chased by a driverless hearse, but Jody stops it with a shotgun blast to the engine.\"\ntt0079714,07KUTJpbNAQ,Jody squares off with an evil demon dwarf while investigating the morgue.\ntt0101625,xgkspBFxLi4,Inspector Bonnard identifies the “who really dunnit” in the Madame Van Dougan murder case.\ntt0101625,fCNsIYsWjXo,Phoebe sees a lost dog ad and finds Julian Peters with the missing Dachshund.\ntt0101625,3WfRT1c7Tz0,\"Neil Schwary and Marilyn Schwary try to dispose of the evidence, “the suitcase,” at the train station but it keeps coming back.\"\ntt0101625,EYKOpaD_s1U,\"Marilyn Schwary shows up to the casino in her designer gown to surprise Neil Schwary. Instead, she gets hit on by a swindler and rejected by Neil because she’s jinxing him.\"\ntt0101625,wn-e7FlYRJU,Neil Schwary and Marilyn Schwary are taken into custody and try to explain the dead body in their suitcase.\ntt0101625,I_TkNxwnJiY,Julian Peters gets held up by the police and attempts to lie to save his life.\ntt0101625,fxBoqr7OicA,Phoebe tries to convince the police that she is the owner of the dachshund and her fake pet name for him proves unsuccessful.\ntt0101625,zmdsY7PIJDg,Inspector Bonnard questions Augie Morosco and his ties to the others involved in the investigation.\ntt0101625,6ZgWwouKUXg,Augie Morosco introduces himself to Neil and Marilyn and offers his 2 cents on the perils of gambling.\ntt0101625,VCvOWhT1TiA,\"Augie is convinced by Neil to continue gambling, but loses his wife in the process.\"\ntt0101625,cGd2BBjzb0Y,Neil Schwary exchanges all of his savings for markers at the casino because he feels embarrassed about his lack of wealth.\ntt0406375,E2WZXK79_d0,The Astronaut helps Walter and Danny get rid of the Zorgons.\ntt0406375,WM3TedgbwIc,Walter and Danny accidentally put their sister Lisa into the game.\ntt0406375,Ufv54teYXAw,Walter and Danny get a lot more than they asked for once they start playing the game.\ntt0406375,cPfMxQLlirI,Walter and Danny are cornered by Zorgons and the Robot they previously thought was dead.\ntt0406375,UinILaRACDA,Walter makes a wish on a shooting star.\ntt0406375,_dEEXgs7T1k,Danny sneaks aboard the Zorgon ship to steal back Zathura.\ntt0406375,L5Jg3OVjPoo,\"Walter catches Danny cheating, endangering the entire house.\"\ntt0406375,9hMrzEWpZM0,Walter and Danny unwillingly rescue The Astronaut.\ntt0079073,FQwv6AGpdus,Prof. Van Helsing and Jonathan Harker find Dracula and Lucy resting in the cargo hold of a ship.\ntt0079073,CtDBcCXiE3M,\"When Prof. Van Helsing and Jonathan Harker go to Dracula's castle to kill him, they find they've underestimated his power.\"\ntt0079073,cXm_h4Zdwpc,Count Dracula seduces Lucy Seward when she visits his castle.\ntt0079073,grdxSWSHJaY,\"After discovering that Mina's grave is empty, Prof. Van Helsing and Dr. Jack Seward go into the mines looking for her.\"\ntt0079073,w8mbmSijd4o,Count Dracula of Transylvania arrives at the Seward household and is quickly taken by Mina Van Helsing and Lucy Seward.\ntt0079073,NyamI2ALbIA,Count Dracula comes to Lucy Seward's bedroom to make love to her and have her drink his blood.\ntt0079073,15WevUMiJI8,Mina Van Helsing is visited by Dracula in the dead of night.\ntt0079073,7rJZx_l_h1w,Prof. Van Helsing confronts Count Dracula after finding out his daughter was turned to a vampire.\ntt0079073,0NXkZZqCGjs,\"On a stormy night, a ship named the Demeter hastily tries to throw one of its passengers overboard, one named Count Dracula.\"\ntt0079073,uPS3iKFXKR4,Jonathan Harker visits a confined Lucy unaware that she's become a vampire.\ntt2345759,bx50ueZJgns,\"Dr. Jekyll turns into Eddie Hyde, just as the mummy is trying to escape the facility.\"\ntt2345759,KsmXx3hB968,\"The mummy's undead minions attack Nick, causing him to crash the ambulance.\"\ntt2345759,RyZ-saoiIzY,The mummy escapes and wreaks destruction upon London.\ntt2345759,25_58Uww0bc,\"Nick meets Dr. Henry Jekyll who leads Prodigium, a group looking to contain and study evil.\"\ntt2345759,j8nLPMys3b8,Nick sacrifices himself to gain power over life and death.\ntt2345759,UJ_zLBr1NxE,\"Strange events on the transport plane cause it to crash, with Nick on it.\"\ntt2345759,XTCEl_MFfHA,The mummy commands the dead under London to arise and fight for her.\ntt2345759,AV3CrPe-1q0,Nick and Jenny are attacked by the mummy and her minions underwater.\ntt2345759,7dtQiqaxf_o,Nick comes face to face with Ahmanet and tries to battle her and her minions.\ntt2345759,1Ltz-vQPqgo,Nick miraculously survives the plane crash and wakes up in the morgue.\ntt2639254,Qch6oK4qX2k,Sabine finally unveils the fountain she has created for King Louis XIV.\ntt2639254,J5KvaQzBDoc,\"André and his wife, Madame Le Notre, discuss their deterioriating marriage.\"\ntt2639254,xd9K2o_ZDdU,Sabine agonizes over the tragic death of her husband and daughter.\ntt2639254,CpAVT7Y3vpM,\"Sabine mistakes King Louis XIV for a lowly gardener, which is exactly what he needs in a time of despair.\"\ntt2639254,_1fHeesAez0,Sabine presents a rose to King Louis XIV to convince him to allow progress to continue on the garden she is designing.\ntt2639254,MdfwpCH1Ksk,Sabine speaks with the women at court about the death's that have afflicted their families.\ntt2639254,hdnrorjl0WM,Sabine interviews with André Le Notre for a chance to build a garden for King Louis XIV.\ntt2639254,TPDKmRQddq0,\"After a devious plot by Madame Le Notre, Sabine desperately tries to save her garden from being ruined by a flood.\"\ntt2639254,Me3eSvA2K9k,André comes to Sabine in the middle of the night to discuss her plans for the gardens at Versailles.\ntt2639254,ZKfVrsrm_ac,\"Sabine is introduced to His Highness Philippe, Duc d'Orleans and makes a lasting impression.\"\ntt0024184,yZ773W4UICY,The Invisible Man keeps his promise to Kemp and kills him at ten o'clock.\ntt0024184,KXMOURHEMpY,The Invisibile Man removes his disguise and shows the villagers that he is invisible.\ntt0024184,bD8jQGwyuBU,The Invisible Man gets fed up with the villagers and decides to go on a spooky spree to show his power.\ntt0024184,vsQak7aKH30,\"Flora tries to talk some sense into Griffin, but his madness, and the oncoming police assault pull them apart.\"\ntt0024184,rW1_EfZ2pWU,\"Griffin explains to Kemp how he became The Invisible Man, and makes him his new visible partner.\"\ntt0024184,hvuQCnADQRM,The Invisible Man goes on a rampage of manipulation and murder to throw the country into chaos.\ntt0024184,r7aXjBDUk8w,The police officers trap The Invisible Man inside a barn on a snowy night.\ntt0024184,ZmKECCbMc88,\"After being betrayed by Kemp, The Invisible Man eludes the police surrounding the house.\"\ntt0024184,9D5WsQNIAcE,\"As death approaches, The Invisible Man slowly becomes visible again.\"\ntt0024184,zZcYZmsSGs0,\"While retrieving his books at the inn, The Invisible Man kills a police inspector who believes the whole thing to be a giant hoax.\"\ntt0034398,I-93Ijkhy4I,\"While everyone is hunting for the Wolf Man, Gwen runs into the fog looking for Larry.\"\ntt0034398,GYexCnV6cLY,Larry Talbot tries to convince his skeptical father that he's a werewolf.\ntt0034398,8CouO6czPic,\"The Wolf Man finds himself caught in a bear trap, but the gypsy named Maleva finds him before the hunters.\"\ntt0034398,EqNTVkdsTL0,Larry Talbot runs into Gwen as the gypsy camp packs up from fear of werewolf.\ntt0034398,VAnkBQ7eWyc,Larry Talbot turns into a werewolf and attacks a gravedigger.\ntt0034398,R1hh6MVyQYg,Larry Talbot spots a beautiful girl getting ready in a window and decides to pay her a visit.\ntt0034398,4mMrCXPCZAA,Larry Talbot comes across a gypsy named Maleva who explains that he was bitten by a werewolf.\ntt0034398,F1nejgJdusQ,\"When Larry Talbot takes Gwen to a gypsy fortune teller, her friend is attacked by a wolf.\"\ntt0034398,uqS2-v7iZr8,Sir John Talbot attacks and kills the Wolf Man only to discover it's his son.\ntt0034398,KFwzRnTqgDU,\"After realizing he's a werewolf, Larry Talbot visits Gwen with a dark confession.\"\ntt0355702,T_pKvfMT5ck,The Z-Boys pioneer a new form of skateboarding - in pools.\ntt0355702,8RuMflmyF9k,\"Jay and Stacy compete at the skateboarding competition, but Tony is knocked out by a competitor.\"\ntt0355702,ByRXX8KHS5o,Skip runs into commitment problems with his Zephyr team and employees.\ntt0355702,XwFR9NZfhUI,Skip Engblom introduces the boys to urethane wheels which allow them to take skateboarding to the next level.\ntt0355702,jR_kxdUm1bc,\"Stacy and Tony experience major success, while Jay skates solely for love of the sport.\"\ntt0355702,Y8eSWYGZXe0,The Z-Boys finally get to skate Sid's pool.\ntt0355702,NfDBhc__ntM,The Z-Boys disagree about bailing on Skip's team and taking other offers.\ntt0355702,8e5fzbsfGCI,\"Skip tries to convince Stacy to stay with him, but realizes all the boys have passed him by.\"\ntt0355702,XQEr5FlhFDc,Skip and Jay reconcile in the ashes of the Pacific Ocean Park where they used to surf.\ntt0355702,3ghKgAcPBC8,Jay breaks the news to Stacy that he's not on the skateboard team.\ntt1374989,Zxlo0xmD51Y,Elizabeth and her sisters see right through a trap set by a zombie.\ntt1374989,iRdSH-u1wWI,Elizabeth rides in and saves Darcy from the zombie Wickham.\ntt1374989,aYSdnLgl-FQ,Elizabeth is confronted by angry Lady Catherine and her henchman.\ntt1374989,NlPC4ag5S54,Elizabeth and Jane save Bingley and Darcy from zombies after the battle.\ntt1374989,abXL2HrEjyE,Jane is attacked by a zombie on her way through the country.\ntt1374989,xs8jGY2dnCg,Darcy proposes unflatteringly and Elizabeth resists most forcefully.\ntt1374989,BKYpzJIAkeo,Darcy apologizes to Elizabeth and declares his love for her.\ntt1374989,BSQeVY2fdL8,The Bennett sisters show off their zombie fighting skills during an attack.\ntt1374989,uFTd09NNJzo,\"When the bridge is blown up, Elizabeth confesses her heart to Darcy, who she believes to be dead.\"\ntt1374989,ZCTqZhZRYl0,Darcy asks Elizabeth for her hand in marriage and she accepts.\ntt2513074,AvDUQXknug8,Billy and Faison meet one last time before he makes his decision to go back to Iraq with Bravo.\ntt2513074,5wErjt1ukFE,Dime and Sgt. Shroom punish Billy after he crashes a humvee.\ntt2513074,JIRijCir934,Bravo Squad engages hostiles in an abandoned Iraqi village.\ntt2513074,0-Whu5Hlbz8,Sgt. Shroom offers his squad assurance and emotion before a big firefight.\ntt2513074,5JCbdlUra28,Billy teases his sister after deciding he will go back to Iraq against her wishes.\ntt2513074,1vhyMvNS3Ek,Bravo Squad runs into trouble onstage after performing with Destiny's Child at a halftime show.\ntt2513074,MhS1b56Koxc,Billy Lynn talks war and sports with a few football players.\ntt2513074,KNwhBAOLCXQ,Billy remembers his brotherhood with Breem and Bravo Squad.\ntt2513074,giajSDY8kCs,Billy accidentally catches the eye of a cheerleader and the two connect backstage.\ntt2513074,kwvSRZG285g,Billy falls in love during a press conference in Dallas.\ntt3717252,B46nugc-4c4,Lena explains to Selene the ancient and spiritual rituals that the Nordic Coven practices.\ntt3717252,SwarL21fqj0,David and Thomas risk their lives getting a weak Selene out of the fortress of vampires.\ntt3717252,kqFgnN10khg,\"While training Death Dealers, Selene is challenged to a sparring match by Varga which ends in a brutal betrayal.\"\ntt3717252,rM5Bg89j9qo,Selene finally defeats Marius and ends the battle with a quick but brutal move.\ntt3717252,DSO1F6sM63s,Selene is on the run from vampires and werewolves alike.\ntt3717252,6vAYIYN2Iac,Selene confronts lycan leader Marius as David gets into a sword fight with super-powered Semira.\ntt3717252,j0IXQIUh3jQ,\"Marius leads the heavily armed lycans in a siege on the vampires Eastern Coven's castle, where David leads a defense.\"\ntt3717252,y9NhqnuoSAs,Lycans attack the Nordic Coven where Selene and David are hiding.\ntt3717252,dQNrOoc3NTA,Lena of the Nordic Coven gives Selene a touching funeral with David's help as Semira only grows more powerful with Selene's blood.\ntt3717252,Sqnrzd0HCRY,\"As the battle between lycans and vampires gets more vicious, Selene returns, back from the dead and more deadly than ever.\"\ntt1355644,aJZL2uoPRZg,Jim gets to know lovely Aurora while feeling guilty for waking her up.\ntt1355644,xQyVBxABGxw,Jim asks Arthur for some bartender wisdom to cheer him up.\ntt1355644,qeaiVveZWD8,Aurora almost dies when the gravity on the ship fails while she is swimming.\ntt1355644,0LArIo7OUJ8,Aurora launches into space to save Jim who is floating free.\ntt1355644,BH-EprDz8wI,Jim shows Aurora his view of the galaxy.\ntt1355644,21aXGNHDBWQ,Aurora learns that Jim was the reason she was taken out of hibernation.\ntt1355644,BJWR0io_SuE,\"Jim meets Aurora, the passenger that he awakened out of hibernation.\"\ntt1355644,FCJSJ2xtky8,Jim tries to apologize to Aurora for what he did.\ntt1355644,CiqtsKGMblU,Jim sacrifices his safety to help cool the reactor on the ship.\ntt1355644,6-IGOKWYCDc,Aurora chooses to stay awake with Jim for the rest of their lives.\ntt3170902,GoQhe_ntnR4,\"Theeb and Hussein take Edward to his destination, but discover the remnants of a deadly battle instead.\"\ntt3170902,Y0TF3T90a8U,Theeb and his brother are attacked at night by the raiders and he falls into the well.\ntt3170902,IE_d_MBVR6s,Theeb panics after The Stranger reveals himself to be alive.\ntt3170902,MfKGLmjlyLo,Theeb considers his revenge against The Stranger after discovering the entire journey was simply about money.\ntt3170902,25UjaIMN-rY,Theeb is given a lesson in fear and survival by The Stranger.\ntt3170902,0LwM6-xXVQU,Theeb and Hussein defend themselves against The Stranger and his men.\ntt3170902,lFet5R_g-vY,Theeb and Hussein get caught in the cross hairs as the men coming after Edward attack their convoy.\ntt3170902,oNtGqOsseNQ,The Stranger enlists Theeb's help in cleaning his leg wound.\ntt5294966,64cRTXIxwws,Ryôta and Kyôko come to a resolution about Ryôta's place in their son's life.\ntt5294966,FeETSw95wp8,Ryôta talks to his sister about their money troubles while waiting for his ex-wife to pick up their son.\ntt5294966,P1bTMEsYPug,Ryôta takes his son out for a day of bonding.\ntt5294966,a7lxoNJJYEc,\"After hearing Kyôko discuss the divorce, Yoshiko realizes her son is just like her shiftless husband.\"\ntt5294966,1A08em6Y-kk,Ryôta and Kyôko discuss the fallout from their divorce while waiting out the typhoon.\ntt5294966,PSpIMEVCsV0,Yoshiko gives her son Ryôta a bit of advice.\ntt5294966,gfmtB17vowo,Ryôta is chastised by his boss after blackmailing a high school student for money.\ntt5294966,stqgd2mbvlo,\"While spying on his ex-wife, Ryôta sneaks into the bathroom to get information from his son.\"\ntt4882174,9xbk-7HBIOw,\"After witnessing the murder, the children in the apartment building deal with the fallout of the crime scene.\"\ntt4882174,15wjOeT6Qo4,The children of the complex search for the key to their salvation while a murder takes place outside.\ntt4882174,Qj7OIg9Vc-g,The neighbors go about their lives as Kitty Genovese comes home.\ntt4882174,ocXYjytHb40,Sam watches Kitty as she is attacked and does nothing to help.\ntt4882174,UiHAMypGBPo,The children try to get help for Kitty as she is being assaulted but run into trouble from their parents.\ntt4882174,7WkMxJKKITM,The Smith family erupts into an argument after Troy tries to go outside and save a woman being murdered.\ntt4882174,UjOJ-AMtAzY,Bob Cunningham tries to overcome his feelings of apathy toward his wife and family.\ntt4882174,Cf_0ggNhHMY,\"As the violence of the murder ramps up, the children in the complex search for a way out.\"\ntt3142366,SrqVUFbk_sE,Ryder has a disturbing shooting lesson with his uncle Keith.\ntt3142366,2g96QnNekOc,Ryder chases after his little cousin Molly when a disturbing incident occurs.\ntt3142366,vFPRSImZev4,Ryder is forced into playing with his little cousin Molly by his Uncle Keith.\ntt3142366,yJTucB8fH04,Ryder sings for his cousin Molly and Uncle Keith.\ntt3142366,Qt6F9WCle9k,Keith confronts Cindy about their past and exposes the truth about what happened with Molly and Ryder in the process.\ntt3142366,LBLIa7bqcfY,\"Cindy defends her son, Ryder, after he is accused of abuse by her brother Keith.\"\ntt3142366,7MWts8-_LUo,\"After his daughter presents several signs of abuse, Keith goes after the accused- his nephew Ryder.\"\ntt0084191,eKxv7whkFMM,\"Jansen watches the most popular show on TV, where Little Rita captures the world record for non-stop laughing.\"\ntt0084191,Na3loD5Xpew,Jansen finds a man who may be the mysterious Krsymopompas who writes against the Combine.\ntt0084191,ykcCGhbl1H4,Jansen and Anton are accosted by a crazy comic book fan on the road.\ntt0084191,0lCR_c5Su1M,\"After being captured by some anti-establishment operatives, Jansen is saved by his partner MK1 Anton.\"\ntt0084191,zOHL9JZPELk,\"Jansen investigates the death of a woman who worked for the Combine, but they are more interested in their TV ratings.\"\ntt0084191,OstLbMEQM4Q,\"After failing to save those in the explosion, Jansen tries to find comfort in the words of Neil Armstrong and Richard Nixon.\"\ntt0084191,w9-ylaUijdc,\"Jansen meets with his police chief, but after giving him a warning, the old man dies mysteriously.\"\ntt0084191,6WX8Ct4xMvE,Jansen questions an eccentric former star of the Combine for clues to the bomb threat.\ntt1808339,crZlpaRXKFE,Jane accepts Tom's proposal - for two more books.\ntt1808339,bplKA4fZ8dI,\"Tom insults Willie, who punches him out.\"\ntt1808339,CsXhHyDeJO0,\"Jane tries to reconnect with her estranged father, but they get in an argument.\"\ntt1808339,C77hQJ-zDeA,Jane is furious when Tom changes her book title without permission.\ntt1808339,VY50Mu29LxE,Jane admits that her writer's block comes from not wanting to leave Tom.\ntt1808339,TprgpfkdiRc,Tom and Jane are angry when Willie gives her book adaptation a happy ending.\ntt1808339,f6Oo9vLtKtA,Jane finally finds a publisher for her first novel.\ntt1808339,kpufOE3FIXA,\"As Tom pressures Jane to finish her book, she starts to have conversations with her main character, Darsie.\"\ntt3407428,dBif8nb20_g,Jean opens up to her son about her troubled life.\ntt3407428,g_TTG6vhg_4,\"When his mother refuses to go into a rehab center, John lets out all his anger and frustration over having to take care of her.\"\ntt3407428,8M0uWmbBrCc,\"Jean has a meltdown after discovering her son, John, threw out all her alcohol.\"\ntt3407428,dLxHFwfWIcQ,\"After finding his alcoholic mother unconscious with vomit on her pillow, John rushes her to the hospital.\"\ntt3407428,wnMPRSiIiUI,\"After John checks his mother into rehab, Jim explains to him that alcoholism is a disease.\"\ntt3407428,k62E1AtOYnM,\"Before his best friend goes on a long trip, John surprises him with a meeting with the son he's never been allowed to meet.\"\ntt3407428,TqivtOAy2No,John visits her mother just to dance with her and remind her she isn't alone.\ntt3407428,EAKyvP2Rnqc,Jean tells John her true feelings on her youngest son with Down syndrome.\ntt4972582,LK5QIZgbfZQ,Casey Cooke and her friends are kidnapped by Dennis while getting a ride home from the mall.\ntt4972582,I8-FxxgRACE,Casey comes face to face with The Beast.\ntt4972582,My8kfz_Ddqg,\"The Horde retreats after nearly being defeated, but someone is now aware of his powers.\"\ntt4972582,QAiVcQifKfE,Casey and her friends meet Hedwig.\ntt4972582,I-6XHJFUBDI,Casey Cooke meets Kevin after being cornered by the Beast.\ntt4972582,FnFMS11g4fM,Hedwig shows Casey his dance moves.\ntt4972582,Uc--n6RoIgw,\"While Hedwig is distracted, Marcia attempts to escape the basement where the girls are being held captive.\"\ntt4972582,VPeXTe_6uOc,Claire finds a way out of the basement and makes her escape.\ntt4972582,C83hfoyHHHk,Casey Cooke is chased through the basement by The Beast.\ntt4972582,H6ImGh1Xolc,Casey Cooke tries to trick Hedwig into showing her a way out.\ntt4361050,2DgFlZwrD-Q,Doris subtly hints at her plans for Mikey.\ntt4361050,cn35LhT9zBg,Alice tries to convince the spirit inside Doris to release her family.\ntt4361050,LSTU_JJcJxQ,\"Doris shows her mother, Alice and sister Lina she can contact her dead father.\"\ntt4361050,-OUuZojE3aM,Lina saves her mother but the spirit is not finished with her.\ntt4361050,tFEKMdUMjEk,\"After being institutionalized following her family's deaths, Lina's connection to the house never wanes.\"\ntt4361050,rC9MhZGgJy4,Father Tom tries to tell Alice and Lina that Doris has been influenced by a malevolent spirit.\ntt4361050,DpQHj1R8kXk,Ouija: Origin of Evil: Please Help My Family: Alice Lina Father Tom\ntt4361050,lwruhQqFttU,Alice and Lina are chased by a possessed Father Tom.\ntt4361050,EiYxgC78ScI,Lina tries to save Alice by trapping the spirits inside her little sister Doris.\ntt4361050,8hWbptEarkA,Lina feels the effects of Doris's seance.\ntt1753383,U-Sqe0DN_E8,Buddy plays matchmaker again for his human Ethan and his long lost love Hannah.\ntt1753383,tg4jLJ6OiDY,Bailey grows up and gets familiar with his human Ethan.\ntt1753383,cOXVnmVPdtQ,Tino tries to get used to family life.\ntt1753383,BhHv3Yxcuro,Buddy tries to convince Ethan that he has come back to him decades after his past life.\ntt1753383,Z4ScRG9SDSI,Tino falls in love at the park just as his human does the same.\ntt1753383,BCGzM3s9-1o,Buddy finds himself in an oddly familiar place.\ntt1753383,f-3Bldu8BJ4,\"After Ethan goes to college, Bailey loses his passion for life.\"\ntt1753383,ALw553euzsc,Ellie makes a sacrifice to protect her human Carlos.\ntt1753383,nfFsHF8guzM,Bailey accidentally pushes Ethan to talk to a girl.\ntt1753383,vhhiJqQBMMY,Ethan tries to get Bailey to poop out his dad's collectible coin before his dad finds out.\ntt4649416,1xhIWaxWINs,Rachel invites Lonnie's mistress to Christmas dinner and things hit the fan when his wife Cheryl finds out.\ntt4649416,vLgTWXjMlWI,Rachel and Cheryl nearly burn down the house trying to make Christmas dinner.\ntt4649416,u_n1SEwWmYc,Lonnie tries to hook up the Christmas lights and nearly burns down the house.\ntt4649416,3B40Rhnt4PA,The Meyers take a minute between cooking to have some fun.\ntt4649416,wXQ1EhVW2xQ,Rachel and Cheryl make amends after a family scare.\ntt4649416,318L0jBVIKM,Malachi makes up for ditching Rachel at prom after years apart.\ntt4649416,CHs36bNm7xk,The Meyers fail in trying to have a Christmas dinner free of any drama.\ntt4649416,SzVC7ErC8RY,The Meyers have a big argument on the first night in the same house together.\ntt4649416,u7yQ7qs6Zew,Jasmine accidentally spills on her relationship with Lonnie to Rachel.\ntt4649416,7URRIBRCm8E,Rachel finds herself trapped in the window after being locked out of the house.\ntt2034800,BG3bNlh0qiU,William and Commander Lin fly into the city on a balloon in hopes of saving the city from the creatures.\ntt2034800,S7iDxRJpDZU,Cadet Peng Yong sacrifices himself to give William and Commander Lin time to execute their plan.\ntt2034800,V6B3elF2pYU,Commander Lin Mae asks William to try her flying crane technique off the Wall.\ntt2034800,DefILRrX77k,William and Tovar watch in shock and awe as alien creatures attack the Great Wall and the Nameless Order fights back.\ntt2034800,4m15WAC5khw,William is given a test to measure his skill with the bow.\ntt2034800,JWbqI-m3A3w,\"When William fails with his arrow, Commander Lin uses her crane technique to attack the queen.\"\ntt2034800,6D64t1trSRs,General Shao and Commander Lin learn that the creatures are getting smarter.\ntt2034800,z23vdob1grU,William and Tovar risk their lives on the ground in order to capture a sedated beast.\ntt2034800,ahCg__rBh1Q,Commander Lin uses massive blades in the Wall to kill the beasts and harpoons to sedate them.\ntt2034800,CLWCgMVf6U0,William and Tovar work together to kill the beast atop the wall.\ntt4550098,Wurqpe5tNjA,\"After letting his wife's killer escape, Tony breaks down.\"\ntt4550098,5PsKwqiRjEM,Tony loses it after Ray taunts him during interrogation.\ntt4550098,geoi6Sxyg7g,Tony finds and confronts Ray in the same trailer Ray murdered his wife and daughter.\ntt4550098,vrhgkmAzWvo,Susan tells Edward that she can't be the perfect woman that he deserves.\ntt4550098,iAlU6xt7Y_s,\"After years without seeing each other, Susan bumps into her old neighbor Edward.\"\ntt4550098,z-4DtLFGzG0,Ray kidnaps Laura Hastings and India Hastings.\ntt4550098,l-GbvgBXi18,Det. Andes brings in a suspect for Tony to identify.\ntt4550098,5sMFxEL3zhw,Det. Andes tells Tony about his terminal cancer as the two formulate a plan to get justice for the murder of Tony's family.\ntt4550098,a6--cEjo3bY,Det. Andes brings Tony the men who killed his wife and daughter.\ntt4550098,FHeC_tenzrw,Tony Hastings is pushed off the road by Ray Marcus with his wife and daughter in the car.\ntt3631112,CEO9YAsxMfI,Detective Riley tries to get to the bottom of Rachel's strange behavior.\ntt3631112,SW-1sk_U8vU,\"Rachel is interrogated by Detective Riley, which leads to some uncomfortable revelations.\"\ntt3631112,X1ByBEw-WxM,\"Rachel tries to convince Anna that her husband is more than an adulterer, he is a murderer.\"\ntt3631112,yYQtZCaPFaM,\"One day while drunk, Rachel goes into her old house and takes Anna's baby.\"\ntt3631112,B2zzhcU9f9U,\"Rachel finally gets Tom's true colors to come out, but it may be too late.\"\ntt3631112,ahCOQjOPTZw,Rachel and Anna kill Tom in self-defense.\ntt3631112,qJznSue3tEs,Megan tells Dr. Abdic about the restlessness she feels in her life.\ntt3631112,yHw5A9BAZ98,\"A drunk Rachel describes what she would like to do to Anna, the woman who broke up her marriage.\"\ntt3631112,lKqBsgfSSU8,\"Rachel goes to therapy with Megan's therapist, Dr. Abdic.\"\ntt3631112,IegMpeJM1QU,Rachel returns home to find an angry Scott waiting for her.\ntt4630562,5rGPKIgdV6A,Hobbs and Shaw take on prisoners and guards in a violent prison escape.\ntt4630562,5d1P50L28LU,The team is attacked by heavily armed enemies in a high-speed chase over the ice.\ntt4630562,ox1SVCutwv4,Tej uses a wrecking ball to get rid of the bad guys chasing the team.\ntt4630562,6ZygVYbMrfc,\"Dom saves the team from a missile attack, but then Hobbs has to find a solution for the torpedoes.\"\ntt4630562,AoB_mdZxNlY,Cipher and her hackers take control of New York City cars to stop the Russian Minister of Defense.\ntt4630562,G76ThtqLvWk,Dom's uses harpoons to try and stop him from escaping with the nuclear football.\ntt4630562,wHfXZ9jcX3A,\"The team is chased by Cipher in a nuclear submarine, who sends a heat sinking missile to take out Dom.\"\ntt4630562,Z9kPRWAjSNo,\"Dom races Raldo through the streets of Havana, with a little help from Letty.\"\ntt4630562,Tr3_HOXg4Ug,Shaw takes out Cipher's henchmen while trying to protect Dom's baby.\ntt4630562,4FkUmPvbDQs,\"Dom discovers that he is a father, but Cipher holds his baby and Elena prisoner.\"\ntt3263408,v4tdwXAnFnU,Sofia waits for Kofi to call her after they had cute meeting at a bookstore.\ntt3263408,xIeyPrdc2Yo,A rather drunk Bille and Alex share some flirtatious tension as they take a break from the party.\ntt3263408,tkNKZ8e4aPc,\"After discovering that he's sleeping with an employee of his wife, Kofi tries to leave a confused and upset Sofia.\"\ntt3263408,Yaj2tnjamhM,\"After a girl's night out full of drinking, Billie almost gets what she wants from Alex.\"\ntt3263408,V6W8AZMUipE,\"In the midst of marriage problems, Kofi goes on a date with Sofia, one of his brother's patients.\"\ntt3263408,l0CbM-jK_eI,\"Billie by chance catches her husband, Kofi, having a lovers fight with Sofia, one of her employees.\"\ntt3263408,VonhME1FiMk,\"After coming home to find out his wife stood him up to have a party, Kofi and Billie have an intense argument while everyone listens.\"\ntt3263408,-Q6oYNUhNes,The sexual tension builds between Billie and Alex over dinner.\ntt2650978,2ZyxEFqlA1Y,Greider comes face to face with the evil town father Brenner and makes a fateful decision.\ntt2650978,wAzEOzfIX_0,\"Greider is outnumbered, but succeeds in taking out more of the Brenner brothers.\"\ntt2650978,DjypYuuAvDY,Hans Brenner and his brothers terrorize the bride and groom at their wedding and Luzi is abducted for Old Brenner's primae noctis.\ntt2650978,aZGpjXdKQXw,\"While hunting, Rudolf Brenner steps into a dangerous trap set by Greider.\"\ntt2650978,3a_nj9e_5bs,Greider takes revenge on the greedy innkeepers that betrayed his mother years ago.\ntt2650978,way2bfS3z1M,Greider has to fight a huge blacksmith that is loyal to Brenner.\ntt2650978,wDfgx1Cj97Y,\"The local priest remembers taking part in the dark story of Greider's mother, just before Greider sends him into eternity.\"\ntt2650978,oymR3xfYh4c,Greider rescues Luzi as the Brenners try to take her on her wedding day.\ntt5182856,mfP8p7raf0s,Toshio and Akié take Takashi and Hotaru to find Yasaka and exact revenge.\ntt5182856,tpmqajLJQz0,Yasaka attempts to take his affair with Akié to the next level.\ntt8071196,Pzk9hsEacmQ,Martha shows up Jo's big show and hears her own music in his DJ set.\ntt8071196,Eduv1gpvg6w,Jo's grandfather Bruno tells the story of his job during the war.\ntt8071196,hN-1U-g15NU,Martha tells Jo the story of her time during the war.\ntt8071196,RbU9NjiFLV0,Jo teaches Martha how to make a musical loop.\ntt8071196,6C3HDhgTv8Y,\"Martha confronts Jo's mother, Elfriede about Bruno's dishonesty.\"\ntt8071196,4Mzzy3KQNoI,Jo and his neighbor Martha connect over house music.\ntt8071196,-FDEcmWJ2GU,Bruno is compelled by Martha to tell the darker side of his story.\ntt8071196,r_SuoUET-ok,Martha discusses the consequences of World War II with Jo.\ntt5182856,J73K7gabt-U,Toshio finds Akié holding Hotaru over a bridge.\ntt5182856,PXEJAEDVUkM,Yasaka and Akié continue their sordid affair.\ntt5182856,zN8bZ1JjWWI,\"After being denied by Akié, Yasaka takes out his aggression on an unsuspecting victim.\"\ntt5182856,os6khU56n2g,Toshio politely pressures Yasaka into keeping his secret.\ntt5182856,QD1AjTF83ds,Toshio confesses his crimes to Akié.\ntt5182856,vh2wmVvFUZI,Akie discovers Takashi's lineage.\ntt5974624,bI1MOyt8dXE,\"Tabei meets Zandui, the man who has been following him for days with plans to kill Tabei and avenge his father's murder.\"\ntt5974624,EML4kWiax44,Tabei meets the brothers who have been chasing him for years.\ntt5974624,nfteV9Dkml8,\"Guori almost kills another innocent man as he attempts to find Tabei, but his brother stops him.\"\ntt5974624,XC3h9PPpQtI,Chung wonders what makes certain men hurt the women they love.\ntt5974624,_0No4OkGHt4,Tabei's victory is short-lived as Gouri takes revenge.\ntt5974624,B6OtAXBRTSI,Tabei stumbles across a theater troupe performing for an old man.\ntt5974624,mCO14xw1nJo,Tabei discovers a map to the Sacred Land on his back.\ntt5974624,BGHB4Eyjqt4,Tabei finds enlightenment.\ntt0099938,bnLhMGzgfSM,Kimble confronts an abusive father with some punishment of his own.\ntt0099938,0noY-XrAJRg,Kimble and O’Hara save Dominic from his psychotic father and grandmother.\ntt0099938,m1JgMM8b9_w,Detective Kimble complains to O’Hara about his terrible kindergarten class.\ntt0099938,t_FRWUPcR7Y,\"Kimble tries to get the kids to play a game, but they end up playing him.\"\ntt0099938,YSrOLez2GbE,\"Kimble tries to instill discipline on the class by making them his “deputy trainees.\"\"\"\ntt0099938,q9FYBjSc3cU,John Kimble tracks down a witness at a party to help him identify his perp.\ntt0099938,k96h1dYQrj0,Kimble is introduced to his kindergarten class by Miss Schlowski.\ntt0099938,IxoCv_JpQVs,\"On the plane, Det. Kimble is debriefed by O’Hara while being annoyed by children.\"\ntt0099938,-yPwW5V4mhI,Kimble learns more about the kids in his class when they tell him about their fathers.\ntt0099938,IMQADg1Dp9g,\"When Kimble returns to his class, he finds the kids running wild and loses his temper.\"\ntt0112384,kn8k_ox5OXs,The Apollo 13 crew prepares for launch while Kranz receives a new vest from his wife.\ntt0112384,lMtWWls4oas,\"Flight controllers clear Apollo 13 for launch, and the vessel lifts off.\"\ntt0112384,f6F6MzMT2g8,\"Complying with mission control, the astronauts jury-rig a device to purge their module of CO2.\"\ntt0112384,ry55--J4_VQ,to make a square cartridge compatible with a round one.\ntt0112384,C3J1AO9z0tA,\"When Swigert stirs the oxygen tanks, something goes wrong; shipmates Lovell and Haise scramble to help.\"\ntt0112384,zZTH3HdE8Sg,The astronauts prepare for re-entry while mission control awaits the outcome.\ntt0112384,s_7PfocHTmc,\"Mission control, the astronauts’ families and the TV audience await a response from the earthbound module.\"\ntt0112384,XLMDSjCzEx8,Kranz and his team toss out the flight plan to focus on the astronauts’ safe return.\ntt0112384,Tid44iy6Rjs,Aaron insists the module conserve its power; Kranz is determined not to lose an American in space.\ntt0112384,7RJnMME0XAw,\"Jim Lovell’s son asks him about a fatal Apollo accident, while Marilyn listens at the door.\"\ntt0112384,UNYBtjHAuSA,The Apollo 13 crew is relieved when their CO2 level begins to drop.\ntt0046912,Igs1WM2pA54,Tony blackmails Lesgate into agreeing to murder his wife.\ntt0046912,LWIAWDjHhx4,\"Tony tells Lesgate how he discovered his wife was having an affair, and what he did about it.\"\ntt0046912,8HiCEPL6oa8,\"Tony calls his own flat in order to lure his wife, Margot, out of bed and over to the curtains, where a hired killer, Lesgate, is lurking, waiting for his chance to murder her.\"\ntt0046912,jPRiyRmsLBo,Tony informs Lesgate of the details of his plan to murder his own wife.\ntt0046912,9qorxa6iMm4,\"After his wife kills an attempted murderer in self defense, Tony manipulates the evidence to make it look like she committed premeditated murder.\"\ntt0046912,tUiVEKK8rWM,\"Mark tries to convince Inspector Hubbard that Tony hired the dead man to murder his own wife, but Tony talks his way out of it.\"\ntt0046912,DaWi5EoJVGA,Inspector Hubbard confronts Mark and Margot about their affair before accusing her of premeditated murder.\ntt0046912,Oh0635HLx5s,Inspector Hubbard asks Margot to walk him through exactly what happened the night she was attacked.\ntt0046912,JY4UoItJ_lA,\"Dial M for Murder: Caught by the Wrong Key: Inspector Hubbard sets a trap for Tony : if he realizes he swapped his wife’s key for a fake, they can prove he’s the murderer.\"\ntt0046912,9MSGSOjdViQ,Margot is convicted in a nightmarish sequence.\ntt0091763,3KdgZgQRDU0,\"After Chris terrorizes a dim-witted villager, Bunny goes a step further and bashes the man’s head in.\"\ntt0091763,tImxhYu2PG8,\"In a rare moment of quiet, Chris and Elias have a frank discussion about their thoughts on Barnes and the war.\"\ntt0091763,r_3ofu2x8qM,\"In the jungle with no witnesses, Barnes shoots Elias and then blames it on the Viet Cong.\"\ntt0091763,tlLSqeVA_no,\"When Barnes threatens to shoot a little girl, Elias punches him and a brawl ensues.\"\ntt0091763,cCwn-ROhwyo,\"The morning after a battle, Chris finds the wounded Barnes lying among the bodies and shoots him.\"\ntt0091763,8cGUULb2K-0,\"Chris comes across some of his fellow soldiers raping a young girl and stops them, protecting the girl.\"\ntt0091763,QEv3zzKyiFQ,Chris and the other soldiers watch helplessly from the helicopter as the wounded Elias is gunned down by the Viet Cong.\ntt0091763,S0IfbNVCoCE,\"When he finds Chris trying to make sense of things, King shares his thoughts on life and on surviving the war.\"\ntt0091763,0bw8UM1eLFo,\"With morale lagging after Elias’ death, Barnes solidifies his authority by giving a monologue about military order.\"\ntt0091763,PvqQnJ7Fvz4,\"Chris narrates a letter to his grandmother describing his new, hellish life as a soldier in Vietnam.\"\ntt0095031,nKDUDF3cgRA,Miss Trumble meets Ruprecht for the first time.\ntt0095031,14nilke-mtQ,Lawrence whips Freddy’s legs until he cries in an effort to out him as a fraud in front of Janet.\ntt0095031,BYmHra1d_Nw,Freddy tells Janet that his disability is a result of emotional trauma after his fiancee cheated on him.\ntt0095031,r2RzBizjKT0,Freddy meets Janet for the first time when he asks her to place a bet for him at the Roulette table with his last chip.\ntt0095031,08NzJRNAFGc,Freddy shares with Lawrence his love of taking money from women since men are the weaker sex.\ntt0095031,xxulNn8UDtY,\"Freddy pretends to attempt suicide by rolling his wheelchair down a hillside, grabbing the attention of Janet.\"\ntt0095031,NePF08sMSDA,Freddy gets caught by Miss Knudsen with another woman on the beach and is sent to jail for stealing her money.\ntt0095031,yMiJp1nYlNA,Janet convinces Freddy to rise from his wheelchair and walk across the room to her.\ntt0095031,nkuKrymtuCg,\"When Lawrence announces his new engagement, Freddy, as Ruprecht, breaks things in anger.\"\ntt0095031,SKDX-qJaJ08,\"Freddy pretends to be Ruprecht, a challenged boy, and acts out at the dinner table with Lawrence and his new fiancee.\"\ntt0095031,xof2LkhAFGU,Lawrence and Freddy are stunned when Janet returns with a group of property investors.\ntt0095031,EOyAHaO7lwA,Freddy cons a woman on the train for a free meal while Lawrence watches.\ntt5052448,3wqXNKYn-fQ,Rod calls Rose to investigate his friend's disappearance.\ntt5052448,OT61p6s77_U,Chris tries to escape the Armitage house.\ntt5052448,n9hjsuaj448,Chris takes vengeance on the Armitage family.\ntt5052448,y1OhC9h3flY,Chris tries to connect with Georgina and is met with a strange reaction.\ntt5052448,85O_vS9vSCA,Chris wakes up just as Jeremy is about to take him into surgery.\ntt5052448,T31h3L_egm8,\"Chris is introduced to the neighborhood by his girlfriend, Rose.\"\ntt5052448,KJhlJ8p8v7A,Rod tries to convince the police that his friend has been kidnapped.\ntt5052448,kBwVWrBk_uo,Chris is hypnotized by his girlfriend's mother.\ntt5052448,uG_KHjd_PSc,Chris tries getting evidence of the strange things happening at the Armitage house using his cell phone.\ntt5052448,sLLp4bO6dDI,Chris faces off against Rose in order to escape.\ntt4465564,4TsgjtL0Qx4,\"Ana comes home to find a former submissive of Christian's, Leila, already there.\"\ntt4465564,gT7MQhe8gRE,Christian pushes Ana's buttons on a public elevator.\ntt4465564,X4jdgckXC9I,Ana gives Christian an answer to his proposal.\ntt4465564,UVXRswx8I8g,Christian and Ana play a risky game of seduction in the middle of a public auction.\ntt4465564,CoQM9K_r3kY,Christian re-negotiates the terms of his relationship with Ana in order to win her back.\ntt4465564,b-w1bY8qhnc,Christian comes back to Ana after having survived a helicopter crash.\ntt4465564,97qWmPkODZA,Ana is cornered and harassed by her boss Jack.\ntt4465564,rDnazOBaF1U,Christian begs Ana not to leave him.\ntt4465564,wEPZVYQqdMY,Ana wagers access to his bondage room if she can beat Christian at pool.\ntt4465564,0IiCOhajpS8,Christian proposes to Ana.\ntt0395169,RsJmRjseSzo,\"Paul saves his family as well as a select few other refugees through a UN release, but stays behind to help the others.\"\ntt0395169,Ak8uiLVkpy4,Paul delivers devastating news to the people at the hotel and gives them advice on how they can all fight the Hutu together.\ntt0395169,d46cDtFv_Rw,\"When Tatiana asks about the well-being of her brother and his wife, Pat doesn’t have comforting news.\"\ntt0395169,wZTaXoogvDQ,\"Paul gives the soldiers an old guest list in order to save lives, and is almost punished.\"\ntt0395169,btfIH4Q2BQA,\"In a last ditch effort, Paul calls the owner of the hotel, Mr. Tillens, for help.\"\ntt0395169,bY-jTccddQo,The situation becomes dire when the Hutu deliver the helmet of one of Oliver’s men to the hotel gate.\ntt0395169,ty_jbbvZDkQ,David is impressed when Jack delivers shocking footage of the massacre on his news camera.\ntt0395169,1Kk_oah-wCM,\"Tatiana and Paul save her niece and nephew, as well as the other orphans, from a refugee camp.\"\ntt0395169,FGLxQHJ5NEs,\"Paul promises the General to tell the U.S. that he is not a war criminal, as long as he helps him return to the hotel.\"\ntt0395169,5tz8013avVU,\"Help arrives for most of the non-African guests at the hotel, but no protection is offered to the rest.\"\ntt0395169,vKcEalTIwfQ,Paul is relieved when he finds his missing son Roger safe and unharmed.\ntt0395169,psW7sLoNutA,\"Paul is shocked when Jack says he thinks people will not intervene, even if they see footage of the genocide.\"\ntt0395169,TffPDHIwQtc,Paul and Gregoire have trouble driving in the fog and stumble upon a street full of massacred bodies.\ntt0881320,9OMdSRrUdy8,\"Victoria, a new scuba diver, has trouble making it through the narrowest part of the underwater cave.\"\ntt0881320,s2QlioAboes,Frank asks his son for one final favor.\ntt0881320,TGqv7BxCgYg,Carl Hurley shows Josh and Victoria how to descend into the cave in style.\ntt0881320,gkqqhFre2RE,Josh is upset that his father let Judes die.\ntt0881320,N5fCeYm3-rQ,\"Suffering from \"\"the bends\"\", George hides himself in the cave so that he doesn't have to slow the team down.\"\ntt0881320,OF_frDHo_nw,\"As the cavers try to exit the flooding cave, a huge rock breaks loose and seals them in.\"\ntt0881320,ei4m-fQ0bak,Josh uses his rock climbing skills to traverse a slippery chasm and help the team make it across.\ntt0881320,qZk2O6OlYJo,\"Frank tries to save Judes' life when her gear malfunctions, but it doesn't work.\"\ntt0881320,cKUwdiog-n8,\"When her hair gets caught in the climbing gear, Victoria makes a risky decision.\"\ntt0881320,Ujm2mTIaGC0,\"Losing sanity, Carl attacks Josh and his father.\"\ntt0095593,uQpHx3lBGms,Tommy and Tony visit a fast food drive thru and end up getting a failed assassination attempt instead.\ntt0095593,JYLVFSmlNFs,\"When Tony has Angela and Mike at gunpoint, Connie arrives to shoot up the hotel suite.\"\ntt0095593,BXNuNJhLWyw,Angela is moved when MIke opens up to her before they go to sleep.\ntt0095593,MpaMbLDTxyY,Angela loses her patience with Frank when Joey pulls his revolver out of the drawer.\ntt0095593,0wTKzzRtGqY,Angela learns that Mike is an FBI agent when she gets dragged in for questioning.\ntt0095593,CUzNygPSRZM,\"At Frank's funeral, Tony makes a move on Frank's grieving widow, Angela.\"\ntt0095593,XF33SnFIDAQ,\"A Second Chance Mike gets a haircut from Angela, and a second chance.\"\ntt0095593,4us4K3KLRM0,\"When Angela catches Mr. Chicken Lickin’ peeping in on her dressing room, she throws a milkshake in his face.\"\ntt0095593,bPH152eXEfU,Angela pays a visit to Tony but he begins to question her true intentions.\ntt0095593,FiVYtNf5Hos,Tony wakes up from a nightmare in prison in which Connie shoots him in his very special place.\ntt0095593,ovPXL1WPTMA,\"Frank finds Karen dead in the bath tub, and is then shot and killed by Tony.\"\ntt0891527,1CKEXvHN9es,Senator Irving paints Janine a hypothetical picture of what would happen were the U.S. to pull out of Afghanistan.\ntt0891527,q2EU-k9I5yg,The ANX Editor is frustrated when Janine has doubts about reporting the information she’s collected.\ntt0891527,wQc-GpTtnR0,Senator Irving points fingers at Janine and her news organization for their hypocrisy and responsibility in the Iraq war.\ntt0891527,q_u6njqBaB8,Rodriguez and Finch shock their classmates and Professor Malley during their presentation.\ntt0891527,MvRfyxGjA90,Todd explains to Professor Malley why he thinks political science is dead.\ntt0891527,Aks95ziAQXU,Malley tells Rodriguez and Finch about being drafted and the state of the current war.\ntt0891527,btk4Wp0RssY,Malley gives Todd some advice on being an adult and making tough decisions.\ntt0891527,E2wr_tRqNZQ,Falco updates his troops on the situation in Iraq and Afghanistan.\ntt0891527,DzQjdpw73ZY,Senator Irving and Janine debate the Iraq War.\ntt0891527,C1PilkENI-k,Janine explains the changes in her job as a news journalist over the years to Senator Irving.\ntt0891527,2dB26bOiT4E,\"When the platoon comes under enemy fire in the helicopter, Rodriguez and Finch are left stranded in the desert.\"\ntt0891527,8i7z8cEA4IM,Rodriguez and Finch make a last stand behind enemy lines.\ntt0106452,lMmTZ7oTDRI,Marti and Tim run into their friend Jenn while trying to act like pod people.\ntt0106452,P_Iz-WhpmXY,Major Collins asks Steve if chemicals in the water could explain strange behavior around the base.\ntt0106452,jF0RYgX6Hgo,conform or die.\ntt0106452,h8wzJimC5Zc,Marti and Tim realize they can’t run forever.\ntt0106452,uSCNsJDEf1M,Major Collins tells Steve that the whole world has gone mad.\ntt0106452,NUmE-c4ym40,Marti is cornered in a bathroom with a chilling warning.\ntt0106452,Lk2gIdLgwz4,Carol tells her husband Steve that there’s nowhere left to run.\ntt0106452,qqZPej42OkE,Andy realizes he’s not quite like the other students.\ntt0181739,jEveVtZmPu0,Osmosis Jones fights Thrax in a Matrix-style battle for Frank's life.\ntt0181739,FnPOuK9RHH0,\"the deadly virus, Thrax.\"\ntt0181739,5c1qYWHkPEc,\"With Thrax alive and wreaking havoc in the body, Osmosis Jones must convince Drix to help him save Frank.\"\ntt0181739,MucDLDFYNDE,Mayor Phlegmming answers reporters’ questions and watches a campaign ad for his do-gooder political opponent Tom Colonic.\ntt0181739,NlREC9TagHY,Osmosis Jones goes undercover inside Thrax's evil meeting.\ntt0181739,mGAaR9KKszs,Osmosis Jones and Drix play good cop / bad cop with a flu vaccination.\ntt0181739,0_0U4bhe6ag,Thrax recruits some germ heavies by removing their gangster employer.\ntt0181739,Rn0Qk4aHYfs,\"When Thrax blows the dam holding back Frank’s snot, Osmosis Jones and Drix are caught in the flood.\"\ntt0181739,CU7-qLo7GPo,\"Osmosis Jones, a white blood cell, is tired of mouth patrol and longs to be elsewhere in the body.\"\ntt0119592,A0FwoprE1cQ,\"In the middle of a tense hostage situation, news reporter Brackett interviews Sam, the man with the gun, on live TV.\"\ntt0119592,j_1k-SzcOrs,\"After Sam kills himself in an explosion, Brackett tells the press that they are all responsible for his death by the way they handled the situation.\"\ntt0119592,89FuExOuBbI,A few SWAT team officers on the roof attempt to kill Sam while he tells the children a story.\ntt0119592,Wm_7niZcI1s,Brackett convinces Sam to use the media to his advantage before giving himself up.\ntt0119592,CeE4xdFmuVs,\"Brackett gets into an argument with Kevin Hollander, a rival new reporter, when he finds out the media is about to change its opinion on the hostage situation.\"\ntt0119592,Y9HqtZTcTJk,The police let Jenny attempt to get her husband to surrender.\ntt0119592,NvKYxRmWYEs,Sam continues to confess on live TV all his troubles and regrets after taking a group of children hostage in a museum.\ntt0119592,GbOXTIymvqc,\"Sam Baily, a disgruntled museum security guard, confronts his boss, Mrs. Banks, after being fired. A television reporter named Brackett witnesses all of this from the restroom.\"\ntt0119592,RehVwEopIQ4,\"After taking hostages, Sam shoots another museum guard live on TV while Brackett reports on it secretly from the museum's restroom.\"\ntt0119592,o-kmndqHfF0,Brackett gives advice to Sam about how to handle the police when they call in to negotiate with him.\ntt0104107,Jou60MhXBcw,Fitz hustles some frat boys at pool while Caine visits a boxing match to set up the long con.\ntt0104107,gtngV41jpcw,\"When Caine gets smart with the Warden, he nearly gets his head shot off.\"\ntt0104107,b1MxW8nf_lU,\"After an extravagant entrance, fan-favorite Sonny gets knocked out by Honey’s first punch.\"\ntt0104107,Q_GqOe9HFRY,\"Caine goes to check up on Wolf’s dogs and runs into his little sister, Emily.\"\ntt0104107,_kGt7Vv2Pyw,Gillon gives his fighters their marching orders on what they each have to do to destroy Honey in the ring.\ntt0104107,lMiVewLfZKI,\"After Honey takes a serious beating in the ring, Caine warns that he will stop the fight.\"\ntt0104107,P20hrE8pmoI,\"Caine tilts the odds in his favor by dosing Sam’s water with laxatives, giving him uncontrollable gas in the ring.\"\ntt0104107,9di5MvVZb1k,Honey trains for the big fight.\ntt0104107,0ePC0mh4rCY,Hambone has to knock out Honey in order to save his brother's life.\ntt0104107,WlvCTpjwaXE,Paulo reminds Gabriel Caine that it’s in his best interest to win the bet.\ntt0104107,iwxe2sIgQL0,\"Over cards in the prison yard, Fitz and Caine discuss their intentions on Diggstown.\"\ntt0104107,6l0tsxNujWA,\"After a punishing round, Caine tries to motivate Honey with a less-than-inspiring speech.\"\ntt0041090,hjuvr5uGA4s,Adam appears with a gun and threatens to shoot Amanda and Kip.\ntt0031867,n7l2RLvI7Ss,\"After coming back from the war, Eddie and his friend visit the woman who wrote him letters while he was away.\"\ntt0031867,q8woScnBklo,Eddie shoots his way out of the gangster's home and dies in the arms of the woman who loved him.\ntt0031867,lKh7qSp6zIc,\"In the middle of a battle, Eddie, George and Lloyd talk about their plans once the war is over.\"\ntt0031867,tNuPwipxx94,Eddie and George get to know each other again while Eddie's gang raids George's boat.\ntt0031867,QuZ_ak2qxeE,\"After hitting rock bottom, Eddie visits his old friend George, who is now a big crime boss.\"\ntt0031867,FhXn_kxlWno,\"Eddie, George and Lloyd meet during WWI.\"\ntt0031867,D143VuAxr-k,\"During a robbery, George stops a guard who he recognizes from the war while Eddie gets the trucks ready to leave.\"\ntt0031867,2NR-tebGw3U,Eddie leads a raid on a bootlegger's boat and finds his old war buddy George is the captain.\ntt0041090,JxbvOwAB-xI,\"Adam and Amanda question the accused, Doris Attinger, on the witness stand.\"\ntt0041090,VR0NIF6PbCo,Adam and Amanda butt heads while simply selecting jurors for the trial.\ntt0041090,yAmTu-R5MQM,Amanda and Adam Bonner debate a recent criminal case and how the courts treat men and women differently.\ntt0041090,POu3JnhEmT4,Adam lets the shenanigans in court affect his relationship with Amanda and leaves her.\ntt0041090,8RGjds-aK00,\"Amanda is distraught over losing her husband, but her neighbor Kip is only concerned with seducing her.\"\ntt0041090,6oqDO7aHVFo,Adam gives Amanda a slap on the rear which she does not appreciate.\ntt0041090,hdQOL2aFufE,Amanda makes her final argument for equality which includes some gender-bending imagination.\ntt0041090,Hl9OzCY9fVE,Adam and Amanda reconcile their marriage by agreeing to appreciate their differences.\ntt0041090,P27sTXSGrhQ,Amanda rants so much about the case that Adam can't get a word in.\ntt0094894,i-2kXcQgs_w,Hodges reprimands Danny when he has finally had enough of his disorderly conduct.\ntt0094894,003kLKX8n3E,Hodges and Danny let the gang members go after busting them for drugs in an alleyway.\ntt0094894,00I2Ofraf4A,Hodges dies in Danny’s arms when he is fatally wounded.\ntt0094894,vhfk-aOAgIE,The Crips do a drive-by shooting on a Mexican gang’s party.\ntt0094894,f4wmj-Nq9xA,T-Bone holds court in jail with Frog.\ntt0094894,VxKyoOxyrdU,Rocket and his cohorts in crime go for a ride.\ntt0094894,LJQAKDbq0hI,Hodges humors Danny who tries to flirt with a local coffee shop waitress.\ntt0094894,DkGLIu6lnT4,McGavin and Hodges spot and pursue Clarence 'High Top’ Brown through the swarming streets of L.A.\ntt0044685,t80UDdbV3Mk,Andersen sings the children a song about the King’s New Clothes.\ntt0094894,jn_D02Tvr4k,Oso makes a deal with Bailey and gives him the names of his accomplices.\ntt0094894,zYTsJkuEPWQ,\"T-Bone is arrested, dancing half-naked with a stuffed rabbit in a shop.\"\ntt0044685,ZDbWeYRT7wo,\"Hans Christian Andersen entertains the Girl Outside the Jail Window with his hand puppet, Thumbelina.\"\ntt0044685,0RDDbfd_K74,Andersen’s work is published in the Copenhagen newspaper.\ntt0044685,-Ok6Y77DeNA,Andersen comforts an unhappy child by singing him the story of the ugly duckling.\ntt0044685,n_lSwXF8wfw,Hans Christian Andersen promises to fix the ballerina’s shoes.\ntt0044685,Kx56Aefjn7s,\"Hans Christian Andersen is welcomed home, where he continues to tell his stories.\"\ntt0044685,Z7QbvD-gd0s,Doro performs the ballet version of the Little Mermaid.\ntt0044685,UsBN2NyjX94,Andersen explains to Peter that he worries too much.\ntt0044685,S3phStzHz34,The Schoolmaster threatens to leave if Andersen doesn’t. The crowd tries to convince him Andersen’s stories are not bad for the children.\ntt0044685,M1TkG_zlh6E,Andersen confesses his true feelings for Doro.\ntt0077838,FPtvpjBEEqo,\"Neil Young joins The Band on stage for a take on the song \"\"Helpless\"\" with Joni Mitchell in the shadows lending background vocals.\"\ntt0077838,Z2eTW8qZBtk,\"The Band, joined by the Staple Singers, perform their classic song, \"\"The Weight\"\".\"\ntt0077838,-zNnJiwo_5Y,\"Bob Dylan reunites with The Hawks for a run-through of the song \"\"Baby, Let Me Follow You Down\"\".\"\ntt0077838,6dDbnwQlCek,\"Levon Helm leads The Band through a passionate take of the Civil War-inspired song, \"\"The Night They Drove Old Dixie Down\"\".\"\ntt0077838,QzgJIF00Xdw,\"Van Morrison sings and prances around the stage performing the song \"\"Caravan\"\".\"\ntt0077838,JsdUzN20Sow,\"The Band open up their Thanksgiving concert with the staple, \"\"Up on Cripple Creek\"\", with Levon Helm on lead vocals.\"\ntt0077838,ki3zzZ-GsGI,\"On Thanksgiving, 1976, The Band close out their career by coming back on stage for one final song, \"\"Don't Do It.\"\"\"\ntt0098309,O3-W1ng-UWI,Mary weeps as she fights with Bob over bad publicity.\ntt0098309,mTYe5PvlRno,The Fishers and the Patchetts sit down for a fancy family dinner.\ntt0098309,9f1adgpyRjM,Ruth drops the kids off at Mary’s house to live with Bob after blowing up the house.\ntt0098309,VbBi8ZIWbUc,Bob is horribly insolent to Ruth as he packs his bag to leave her and the kids.\ntt0098309,J_wbvP9hEFQ,\"When the family rodent is found dead in the casserole, Ruth and Bob both have a meltdown.\"\ntt0098309,AEYh9Sh6kk8,Mary finds out that Bob has been cheating on him and decides to take her life back.\ntt0098309,rGtJbW9sRbo,Mary’s publisher Paula is dumbfounded when Mary’s latest novel includes “banal” details of her current life.\ntt0098309,UPhZaK9jxYs,Bob cheats on his wife with Mary when she seduces him over to her house for a late night drink.\ntt0098309,xqtbz-pVp2g,Ruth sets up her ex-husband with her own femme fatale mole.\ntt0098309,W5-oHwzdWos,\"When Ruth switches Bob’s judge, things don’t go as planned.\"\ntt0098309,Z9zrMe8Gn1E,Ruth takes vengeance on her husband by destroying his biggest asset.\ntt0101371,N6bOUves6hI,Dreyfoos is confronted by Dr. Sturgess on his hypocrisy.\ntt0101371,X8qBorenkn8,Dr. Dreyfoos is running out of options when his men start to turn against him and Luther recites his two demands.\ntt0101371,2NkV6POGLOc,Sam shares some of his old photographs and possessions with Dr. Morgan.\ntt0101371,BuN4WOVbk7s,NO SURRENDER.\ntt0101371,rlXKgVlILbM,Dr. Morgan is concerned with the “turfing” process in the hospital and worried about his patient Sam.\ntt0101371,Qgx38Vxw7Bc,Sam begs Dr. Morgan to pull the plug and let him go.\ntt0101371,81YXRcpQSpE,\"Dr. Dreyfoos lays down the law to his hospital staff and introduces some new, tougher procedures.\"\ntt0101371,Lurs1FzrSio,Dr. Bobrick takes down a freaked patient as Dr. Sturgess distracts him with some advice.\ntt0101371,ItDFQOAqEuA,\"When a war veteran learns that the government is not going to pay for his medical treatment, the ex-soldier drives a truck through the hospital.\"\ntt0101371,0GGOfY9uE1Y,Felix asks Dr. Sturgess why he is performing open heart surgery on a patient only authorized for prostate surgery.\ntt0101371,WNUJIR9y-N4,Luther lets Pat Travis know about Article 99.\ntt0301470,8rlAQ3q4RDk,Minxie has a nightmare with Darry and the Creeper.\ntt0301470,soynQCpGMz8,\"After the Creeper damages half of his face and crashes onto the roof of the bus, he uses the decapitated head of a victim to regenerate.\"\ntt0301470,lPB6exj8Kgo,\"The Creeper abducts a boy, Billy, on his first feasting day.\"\ntt0301470,fEA9BJfaaYA,The Creeper literally creeps the team out by taunting them and making sexual innuendos.\ntt0301470,nhvRzLcCk40,Jack Taggart Sr. and his son arrive with a large harpoon gun to capture the Creeper.\ntt0301470,E6AQQLVI68g,\"After the Creeper’s injuries reduce him to a stagger, it attempts to kill Double D, only to be interrupted by Taggart Sr..\"\ntt0301470,EVvEtTyJYCo,The Creeper breaks into the school bus only to get his eye gouged out.\ntt0301470,isct-XNu38E,The team packs back into the bus as their chaperones get abducted one by one.\ntt0301470,5RGxUKhhRWA,\"Twenty five years later, youngsters seek out the attraction known as “A Bat Out of Hell”, where Jack Taggar offers a peek at the Creeper for five bucks.\"\ntt0061452,6Tz9krF1K68,\"Jimmy entertains his hostage, The Detainer, by playing the piano and failing on the mechanical bull.\"\ntt0061452,j2MbvFYy_8Y,\"Sir James discovers that Jimmy is head of Smersh, and has a few extra tricks up his sleeves as well.\"\ntt0061452,jVH_NN7phnA,\"Dr. Noah shows The Detainer the clones in his lab, then she slips him a mickey.\"\ntt0061452,BGlWalxUId0,\"Evelyn meets Miss Goodthighs and as they start to become intimate, they both slip a drug into each other’s drinks.\"\ntt0061452,OqgFY6ZhOfQ,\"Le Chiffre unleashes mind games on Evelyn, in a psychedelic sequence with special effects.\"\ntt0061452,SDq_ZTxHLh4,\"After Evelyn and Vesper are forced to leave the hotel, Vesper is kidnapped by two men.\"\ntt0061452,mOicvmEloyY,\"A cocky Le Chiffre plays a high-stakes game of Bacarat with Evelyn, but is stunned when he loses.\"\ntt0061452,IrTJjUQ_xGQ,Q shows Evelyn some of the newest high tech gadgets he has developed in the lab.\ntt0061452,5U72xvlbn-k,Jimmy narrowly escapes a firing squad only to find himself on the other side of the wall in front of another.\ntt0061452,9ukjNhwdbGY,Sir James avoids the drugged drinks at a wild Scottish party that ends with a room full of passed out women and bagpipe players.\ntt0051201,LiAiWknkwcc,\"After the trial, Christine stabs Leonard when he plans to go away with his younger girlfriend Diana.\"\ntt0051201,XlEkeUg2z8I,\"After the trial, Christine reveals to Wilfrid that he was duped into her master plan.\"\ntt0051201,kOfY6wIKT40,Leonard meets Christine face-to-face in the aftermath of her show.\ntt0051201,MLaMV6zQND4,Wilfrid cross-examines Miss McKenzie on the witness stand and discredits her prior testimony.\ntt0051201,V9JniMBfW18,\"Christine Vole, in disguise, sells her notes to the defense.\"\ntt0051201,gDOSJkcKPbo,Wilfrid exposes Christine to the court as a serial liar.\ntt0051201,MrWZWfsif3E,Wilfrid sneaks a forbidden cigar while Mayhew solicits Leonard’s case.\ntt0051201,Saz3f-zPYeI,\"Christine Vole sings a sailor song in the nightclub, but the soldiers take things a little too far.\"\ntt0051201,T-ELiRFK_v0,Carter and Miss Plimsoll show Wilfrid the new way to go up the stairs.\ntt0051201,0zImze5PCFg,Miss Plimsoll prepares an ornery Wilfrid for bed and confiscates his smuggled cigars.\ntt0051201,YCiimJ7d2Cs,Sir Wilfrid drives home from the hospital with his nurse Miss Plimsoll.\ntt0100232,DII9AQZoUTo,\"When Dane is wounded, Curran suddenly finds himself vulnerable.\"\ntt0100232,a7gZgEpgKiY,\"Defying instructions, Hawkins touches off a firefight that fatally wounds Graham.\"\ntt0100232,oyZblWujofQ,Hawkins crosses a hot battlefield to save Curran.\ntt0100232,vUzF61mtilA,\"The SEALs steer their car through the streets of Beirut, an armored car on their tail.\"\ntt0100232,iRIIcZuSiBo,Hawkins refuses to lose his car to a tow truck.\ntt0100232,V8M4lPWWr3o,\"When the SEAL team is summoned, Graham must leave his bride at the altar.\"\ntt0100232,tRRQX1SXcMM,\"The SEALs stage a sneak attack on Shaheed’s boat; below the water, Hawkins and Shaheed fight to the death.\"\ntt0100232,WThmGeHf4hA,\"Bummed by Graham’s impending marriage, Hawkins decides to bail.\"\ntt0100232,J96X6ei7LRE,Dane saves his fellow Navy Seals using his sharpshooting skills.\ntt0100232,tF6XBuvWdPs,The SEALs are debriefed following their rescue mission.\ntt0100232,Irf50_-vVtI,\"The SEAL team parachutes from a plane; Graham’s chute fails to deploy, creating a brief crisis.\"\ntt0090056,gcGvs4dw9CE,Emmett and Austin fail their first real test when they find themselves surrounded by katana-wielding ninjas.\ntt0090056,DV_eqkGxAa4,Colonel Rhumbus pushes Emmett and Austin to the brink of their physical abilities with a grueling training regimen.\ntt0090056,e0xPCas2tHQ,Emmett and Austin disguise themselves as aliens so they can ambush the Russian rocket team.\ntt0090056,hoe24aSvLtw,\"Pretending to be doctors, Emmett and Austin are introduced to a bevy of actual doctors in a very long and awkward greeting.\"\ntt0090056,d7Aot4Wr-Yo,Emmett blatantly cheats on his Foreign Service Board exam.\ntt0090056,T5rzOU-4Bkc,\"After being manipulated into launching an ICBM by the US military, Emmett and Austin decide that it's best to get some good lovin' while they still can.\"\ntt0090056,7Rx90r--Xss,Austin leads a one man attack to save Emmett from the Russians.\ntt0090056,1iOnKJA2H7I,Austin and Emmett try to fake their way as surgeons during an appendectomy operation.\ntt0113228,fB8_lNQJ-JM,Max discovers Maria is a fisherman when he runs into her on the lake.\ntt0113228,x5z9VZO--G4,Jacob realizes how lonely and depressed his dad is.\ntt0113228,bFfnDQ3bDfA,Max meets Maria Ragetti and they feud over her intentions to turn his favorite bait shop into a restaurant.\ntt0113228,pJImKCcPIsU,\"Max Goldman tries to charm Maria on their first date, but his nerves get in the way.\"\ntt0113228,lfKcANi5Zrk,\"Max Goldman learns that Maria has been married 5 times, but he convinces her to give him another chance.\"\ntt0113228,cMPXArN7f9k,Max and Maria go out looking for worms and find some romance.\ntt0113228,8R8mxS2E_UQ,\"Grandpa Gustafson hits on Mama Ragetti, while John and Max come up with a strategy to thwart Maria’s plans of opening a restaurant.\"\ntt0089530,Pk-vHw-mstI,Max sacrifices himself and drives straight into the oncoming caravan in order to provide enough runway for Jedediah the Pilot and the Little Ones to take off.\ntt0089530,c_u4oXd_Lfo,\"In an all-out chase, Max fights off Aunty Entity and her men in order to save The Master.\"\ntt0089530,fWx9V0xoYsI,\"The Collector explains to Max how they make energy for Barter Town from pigs, while Aunty Entity introduces the duo of Master Blaster.\"\ntt0089530,GbQy-0SzshA,Max fights The Blaster to the death within the bars of Thunderdome.\ntt0089530,Ov2ErYiFemg,Max stumbles upon the hideout of Jedediah the Pilot and convinces him to let them use his plane.\ntt0089530,ywcKkb5buJI,Max negotiates with The Collector and trades his life for entrance into Barter Town.\ntt0089530,9yDL0AKUCKo,\"As the masses of Barter Town assemble at Thunder Dome, Dr. Dealgood acts as the master of ceremonies introducing The Blaster and the challenger Max.\"\ntt0089530,YLjwEodCmT4,\"When Max tries to leave Thunderdome, Aunt Entity declares that the law was broken, and a penalty must be faced.\"\ntt0089530,kJ-UZ4DvYBg,\"Master Blaster sets an embargo on energy until Aunt Entity makes a public statement declaring \"\"Master Blaster runs Barter Town.\"\"\"\ntt0116253,ZJF_1LQbKiM,Grant makes a crash landing at a private airport.\ntt0116253,iewhzdra0DU,Grant reveals to Hassan that there is no longer any way to detonate the bomb.\ntt0116253,Xaj3Ohn7YrE,Grant is discovered by a flight attendant while descending the 747’s elevator shaft.\ntt0116253,NsRhhZPAGLI,Nagi Hassan murders his second in command.\ntt0116253,LtFw6_YJiFs,The commandos board Oceanic Flight 343 through a modified stealth bomber designed to bridge two planes in flight.\ntt0116253,n3YqrYcnfpE,Cabin pressure is lost when a terrorist shoots out a window.\ntt0116253,RY_D9rFoWLo,Grant takes the Sleeper by surprise as the commandos retake the plane.\ntt0116253,0EQXnRlIbXs,Grant persuades Jean to help retake the plane.\ntt0116253,NJQz-0F61yA,Cahill and 'Cappy’ discover the bomb is a decoy.\ntt0116253,bBHFfXCAPLc,The commando team communicates with American jet fighters using Morse Code on the tail lights.\ntt0053125,h5nhyFFSweU,Roger Thornhill and Eve Kendall flirt on the train.\ntt0053125,GRrLWGMz5XY,Roger Thornhill and Eve get to know each other a little better in her bedroom.\ntt0053125,7bCca1RYtao,Roger Thornhill and Eve fight for their lives atop Mount Rushmore.\ntt0053125,aU9RYKxkRJk,Roger Thornhill and Eve have a romantic reunion in the woods.\ntt0053125,nPeH0w6ZXZM,Roger Thornhill proposes to Eve while they scale Mount Rushmore.\ntt0053125,L7YVcnBbeeI,\"After a fake skirmish, Eve Kendall shoots Roger Thornhill with blanks.\"\ntt0053125,sIY7BQkbIT8,\"Stranded in the middle of nowhere, Roger Thornhill runs to survive an attacking crop duster.\"\ntt0053125,A7gKFleV_JU,Roger Thornhill is accused of Lester Townsend’s murder while visiting the UN.\ntt0053125,XBz2wuGU9Cs,A jealous Roger Thornhill confronts Eve and Mr. Vandamm at an art auction.\ntt0053125,YEv7cVW8hBA,Roger Thornhill heckles the auctioneer to keep Mr. Vandamm and his men from capturing him.\ntt0093713,7qNZYicSJPk,Pelle stumbles upon a pregnant Anna hiding in the chicken coup.\ntt0093713,wIuKvNAGsH4,Lassefar meets with Madam Olsen.\ntt0093713,sPbOZXWbYNI,Niels attempts to redeem his actions by rescuing sailors stranded in the frozen sea.\ntt0093713,ObCiRECeCdM,Lassefar and Pelle watch as Erik leads a revolt against the foreman.\ntt0093713,tK4GDziddRU,Lassefar gets a chance at revenge against the boy who humiliated Pelle.\ntt0093713,_P97eUT7NH8,Niels's bad decision has serious consequence for Anna and her baby.\ntt0093713,z-p4LnzhnvE,Pelle proves himself to his bullies by daring to jump into freezing water.\ntt0093713,G2EcYJ6Zjrk,Pelle is pursued by a group of bullies.\ntt1391116,pQX-KEXTwmM,Albrecht reads Sarah's suicide note.\ntt1391116,FAhcPXtCykY,Tommy trains George on the potential impact of war.\ntt1391116,DTNDgoCP5TA,Albrecht is told the story of a doctor before the war by Sebald.\ntt1391116,6K-d8DN3wDA,\"Albrecht attempts to bond with Sarah, one of the wives in the town they've taken quarter.\"\ntt1391116,SNHn_jgFxIA,George eliminates the sole possession of a woman he believes is collaborating with the Nazis occupying Wales.\ntt1391116,lXS7GWgCBWM,Maggie is given grave news about her husband from a friend.\ntt1391116,T2SlDOf410Q,Albrecht trie to convince Sarah to leave Wales with him.\ntt1391116,jKPc2IbQQOQ,Tommy believes he has come to a Welsh village unaware it has been quartered by a Nazi platoon.\ntt2586118,bmIP1NM8GwU,Dave realizes he has been set up by his brother.\ntt2586118,p4lBFrh79OI,\"When a dog threatens to expose the murder, Kenny takes matters into his own hands.\"\ntt2586118,twPxMYSEJ-8,Tensions arise when Dave and Kenneth attend a family dinner.\ntt2586118,QLXSp9erPv0,Dave confronts Kenny after nearly being killed by Kenny's assassin.\ntt2586118,gCF11he-_iU,Dave and Kenny discuss what to do with Khalid's body.\ntt2586118,PywpJSG1dTM,\"After being saved by his brother Kenny, Dave makes a grisly discovery after trying to call the soon-to-be mother of his child.\"\ntt2586118,u_nHHDkfBWQ,\"Dave tells Kenny that he is not like him, but Kenny pleads with him not to spill the truth.\"\ntt2586118,LyhRCLswT6A,Stef tells Dave why he no longer sleeps with women.\ntt3700392,-HjYVQXvxVk,\"After taking Klara off the property, Fräulein Rottenmeier gives Heidi a bit of discipline.\"\ntt3700392,EfHvcHYz-tY,Fräulein Rottenmeier attempts to clean Heidi of her country ways.\ntt3700392,lwH4vtb9GA0,\"Heidi, inspired by her favorite book, begins to excel at reading.\"\ntt3700392,xM4-RnBk-9Y,Aunt Dete tries to convince Heidi Anna Schinz and Grandpa that Heidi is better off living in the city.\ntt3700392,mKLjOr5M5zg,\"Heidi decides to leave the mansion, much to the chagrin of her best friend Klara.\"\ntt3700392,FH6ODEaH5hI,Klara surprises Heidi Anna Schinz by chasing a butterfly.\ntt3700392,KXXwH7C3UjE,Heidi shows Klara how to do things in the Swiss countryside.\ntt3700392,Kkg6cnUZ2vU,Heidi Anna Schinz finds her country upbringing doesn't fit well with Fräulein Rottenmeier's lessons.\ntt0277027,ONRzdzRMVsQ,\"Lucy lies to get back with her dad, even though Sam would rather she tell the truth.\"\ntt0277027,i7QDt-z8ZjY,\"After Rita makes a witness cry in court, Sam offers to buy her lunch.\"\ntt0277027,oBURpv30IkA,Sam's friends help him pick out some great shoes for Lucy.\ntt0277027,MqIJKnUkGLY,\"During his trial, Sam quotes from the movie \"\"Kramer vs. Kramer\"\", but it backfires on him.\"\ntt0277027,lRlgx_GFwyI,Rita encourages Sam to fight to get his daughter back and admits that her life is full of pain and suffering as well.\ntt0277027,81XTZOlNHEU,Sam visits his daughter at Child Services and she asserts that he will always be her daddy.\ntt0277027,1SkWbujEeLM,\"Sam learns that Lucy is afraid to surpass her father, but he encourages her to do her best.\"\ntt0277027,dAlYuokC9R0,\"Lucy asks her father many questions, including why he is different.\"\ntt0277027,9fUtcVIlocI,Sam works at Starbucks and barely makes it to his daughter's birth.\ntt0106701,KQDbtR9Z-zo,Switchblade Sam cases the neighborhood and even steals an apple from an adorable little boy\ntt0106701,Tiz3eN3KJRQ,Dennis tries to get Switchblade Sam to eat the beans so he can get the handcuff key.\ntt0106701,eL62rDiuqDE,Dennis ruins Mr. Wilson's gathering to watch a rare plant bloom for the first time in forty years.\ntt0106701,zUhsEXaj_oY,\"Dennis teaches Switchblade Sam how to tie him up better, but Sam ends up tied up.\"\ntt0106701,fmRWWrBqiJE,Dennis helps Mr. Wilson take an aspirin with his slingshot.\ntt0106701,PkCxda_9xRc,Dennis becomes Switchblade Sam's hostage - which is bad news for Sam.\ntt0106701,uE8yYJmpxeI,Dennis replaces Mr. Wilson's mouthwash with toilet cleaner.\ntt0106701,JX2gQZj3-NI,Dennis pranks his babysitter while Mr. Wilson tries to get revenge on Dennis.\ntt0106701,dkjBBdHZNUs,Dennis and Margaret argue over the merits of men and women.\ntt0101635,8CZcZ_b-Cmg,Bill and Grey drop off Curly Sue at her first day of school.\ntt0101635,FT1C1QdiMhw,Curly Sue loudly eats pizza in front of a disgusted Grey.\ntt0101635,oRe8EuewinY,\"Upon learning that Walker called the police on Bill and Curly Sue, Grey thinks that it is time to end their relationship.\"\ntt0101635,CL3IXUZKbto,\"Bill, Grey and Curly Sue start a new life together.\"\ntt0101635,nS-0lfCTcrk,\"Grey goes shopping for Curly Sue and Bill, but Curly Sue is not too thrilled on how she looks.\"\ntt0101635,Qfv31xWBgGI,\"While eating dinner, Curly Sue teases Bill about his attraction to Grey.\"\ntt0101635,BGmXnidRtoA,Grey confronts Bill about his intentions with Curly Sue and asks about her family.\ntt0101635,n4pUbyGBD18,\"Bill Dancer and Curly Sue practice and execute their \"\"getting hit by a car\"\" scam on Grey Ellison.\"\ntt0094027,eU4-wIieuWU,\"Mr. Escalante accuses Educational Testing Service investigators, Dr. Ramirez and Dr. Pearson, of singling out his students because of their race.\"\ntt0094027,PI35KfPB7nM,Dr. Ramirez and Dr. Pearson investigate Mr. Escalante’s class for suspicion of cheating on the AP calculus test when they discover a similarity between their errors.\ntt0094027,mbKiHp_ljJY,\"In order to catch his students up to calculus level, Mr. Escalante must teach them over the summer in a non-air-conditioned locker room.\"\ntt0094027,LauRAuoFO0U,The presence of the school principal doesn’t stop Mr. Escalante from using an unorthodox word problem to teach algebra.\ntt0094027,A2yqIm58ULo,\"Mr. Escalante asserts to his peers that students are capable of more than what is expected of them, that all they need is “ganas,” or desire.\"\ntt0094027,vEj9ZwIzk44,Mr. Escalante meets the troublemakers of the class.\ntt0094027,obnODOdLD7k,Mr. Escalante singles out resident tough guy Angel while teaching the class the concept of negative and positive numbers.\ntt0094027,T8KFieVkVkU,\"Mr. Escalante makes the kids sign a contract that they will commit to studying calculus, but Angel arrives late.\"\ntt0094027,a81pNygdAXw,\"Mr. Escalante’s intention to catch his students up to Calculus level grates upon department head Raquel, who doesn’t believe it is possible.\"\ntt0120094,HIBYaeYQF0k,Abraham rants to Selena and Abie about how difficult it is to satisfy being both Mexican and American.\ntt0120094,fFE8_U07a5I,Selena communicates to Chris her dreams for their future.\ntt0120094,YR4qgOi7VQ0,Abraham counsels young Selena to be true to her Mexican roots.\ntt0120094,FYnYxm5Awfg,Selena and Chris attempt to tell Abraham that they have eloped.\ntt0120094,aB0ABzNHvAE,Selena has a heartfelt talk with Chris where he declares his love for her.\ntt0120094,_CuZqXrhEZI,\"Selena visits Chris after her father forbade them to see each other, and the two decide to get married.\"\ntt0120094,f86_fLGHu6M,Abraham steps in the way of Selena and Chris’s relationship.\ntt0120094,Kkl4-30oHVU,\"Selena uses her feminine wiles to capture the attention of two cholos driving by, who are more than happy to assist with the stalled bus.\"\ntt0120094,a66f39DMwtY,Selena's life ends tragically and the world loses a star.\ntt0817230,zkWthOfGYgM,Estelle and Edgar listen to their granddaughter Grace complain about her ruined romantic moment.\ntt0817230,hbDdiPNS3ck,Willy and Felicia tell how they met.\ntt0817230,qVzY2wmo8C4,Julia poses as a waitress to make her adulterous boyfriend Harrison very uncomfortable at dinner.\ntt0817230,BR-kA4Jnn8M,Felicia shows off her dance moves and her love for Willy.\ntt0817230,STl0s9g_FwA,Estelle finds Edgar at a film screening and asks for his forgiveness.\ntt0817230,cmgeSY8YdO4,\"Kara, depressed over Valentine's Day, meets the charming Kelvin Moore.\"\ntt0817230,WZNe0TD1E-I,Felicia shows Julia her Valentine's Day gift.\ntt0817230,PBVW7az0PkM,Holden flirts with Kate on the plane.\ntt0817230,__f2KtcXAxI,Felicia gives Willy his Valentine's Day gift.\ntt0065446,tDlL6QWvKNk,\"Cable Hogue buys a claim in the desert where he has discovered water, but he doesn't have much money for it.\"\ntt0065446,-KVNfZo-cfc,\"As Cable lies dying, he asks Joshua to give him his funeral sermon.\"\ntt0065446,xcfYbwSXFVw,Cable Hogue meets the Reverend Joshua Duncan Slone at his watering hole and forces him to pay the fee for a drink.\ntt0065446,QyvbqZqQ0xI,Cable Hogue impresses the bank president who decides to give him a loan to develop his property.\ntt0065446,Mcf2hNBzwqg,Cable gets his revenge on the men who left him to die in the desert.\ntt0065446,yxlXYm5Uo08,\"Cable meets a lovely woman named Hildy, but he can only concentrate on her cleavage.\"\ntt0065446,yaoCvjqu_co,Cable decides to spend part of his bank loan on the beautiful Hildy.\ntt0090856,ajm_632U-Ac,The Club Paradise guests spend some time gambling at a casino.\ntt0090856,RFAiq0Qr6uQ,\"Jack meets the local islanders, including Governor Anthony Cloyden Hayes.\"\ntt0090856,YihADAPOCWU,Barry and Barry take a scary ride to score some quality marijuana.\ntt0090856,nS1ePEA5XeQ,Barry and Barry get some encouragement from Jack Moniker while Linda goes parasailing.\ntt0090856,8DrF70mcr38,Jack enjoys some time in jail.\ntt0090856,yat2WR8Ishk,\"Jack scuba dives over to a yacht to spy on the construction plans, but he uses a helium tank rather than an oxygen tank.\"\ntt0090856,530g3-fuGGU,Governor Hayes and Jack help avert a civil war on the island.\ntt0090856,2heRUn56wrg,\"Jack finds a new chef for the resort, but has to figure out a solution for his enormous hair.\"\ntt0094921,4qseBKnxIpQ,Isabelle realizes how much Sam likes her and is disappointed in herself for wanting to set him up with her friend.\ntt0094921,76pNjmVp58w,Bubbie tells Sam how she found the right man for her.\ntt0094921,B3thiUpvzKo,Isabelle rebels against being set up by the matchmaker.\ntt0094921,40JQrUnvKUw,\"Sam gives Isabelle a new hat which she loves. The problem is, she doesn't love him.\"\ntt0094921,oQIubudKQQE,Isabelle's date gets very awkward when she introduces Sam to her friend Marilyn.\ntt0094921,pWt-GnERki0,Isabelle's grandmother sets her up with a matchmaker specializing in nice Jewish boys.\ntt0094921,MP414NY4kfA,Isabelle hurts Sam's feelings again when her grandmother invites him over.\ntt0094921,HAal8jdk5gk,\"Isabelle realizes that Sam is not only a nice guy, but the right match for her. Bubbie feigns amnesia, but is happy Isabelle came to her senses.\"\ntt0094921,Kxyzb8LbVKQ,\"Isabelle is disappointed to be matched with Sam Posner, a pickle salesman.\"\ntt0085333,5rOdGpkURD8,\"While on a date at the drive-in, Leigh confesses to Arine that she hates his car, an opinion Christine doesn't care for.\"\ntt0085333,IurXrQqZufM,Dennis attempts to take out Christine and stop a possessed Arnie from running down Leigh.\ntt0118661,056HlHORCIU,\"While driving, John Steed and Emma Peel are attacked by a swarm of robotic bugs.\"\ntt0118661,Tx1mcALQCFg,\"Emma Peel attempts to shut down the weather machine, but is attacked by Bailey.\"\ntt0118661,Iqiyy26sW-Q,John Steed and Emma Peel barely escape a swarm of weaponized bugs only to run into a tommy gun packing older woman.\ntt0118661,msqRzlYXXQE,A drugged Emma Peel stumbles around a mansion only to find herself trapped in a series of rooms and stairs that have no logic.\ntt0118661,w_5OidjXy5o,John Steed confronts Sir August de Wynter as the mad man's weather machine destroys London.\ntt0118661,IjGKv209gAE,Secret agent John Steed goes through a training course.\ntt0118661,W1c-QSe7uU0,Sir August de Wynter holds a meeting with all those involved in his evil weather controling project.\ntt0118661,oXpKBkMq_OM,Agent John Steed stumbles across a group of henchmen.\ntt0118661,jCh_3SFr7M4,John Steed and Emma Peel get to know each other over a playful sword fight.\ntt0118661,HGL0CEjSHog,\"While exploring a hedge maze, Emma Peel falls into a trap and John Steed finally meets Sir August de Wynter.\"\ntt0085333,xrO8AQ4CrKk,\"Christine hunts down Moochie, who can't escape no matter how far he runs.\"\ntt0085333,zNSDAaeIh7U,\"Christine, out for revenge, chases down and kills Buddy, Richie and Don in a roar of fire, metal and speed.\"\ntt0085333,oezKQEF0deY,Arnie realizes the true power of Christine as the automobile supernaturally fixes itself.\ntt0085333,gt6_2qd75F8,Dennis and Leigh put an end to Christine with some help from a bulldozer.\ntt0085333,A8BfSnbFxj4,Darnell investigates Christine after the car comes into the garage smoking like a chimney.\ntt0085333,4koPfEQVo44,\"In 1957 Detroit, a red-and-white Plymouth Fury seems to be cursed with death before it even comes off the assembly line.\"\ntt0085333,HYqSugRiG5Y,Dennis tries to confront Arnie about how much he's changed.\ntt0085333,gjjJePytKig,Buddy and his gang sneak into Darnell's and destroy Christine.\ntt2318092,AOVHdyazjWM,David and Jade fall in love.\ntt2318092,oVLfIoIujHE,Hugh tries to intervene when he sees David about to break his restraining order and approach Jade.\ntt2318092,M8yhM7zXdSI,\"When Mace gets insulted by a rude driver, David gets payback and takes Jade along for the ride.\"\ntt2318092,1J1osn73VYs,\"After Jade overhears David and her father talking, she slips out of the house to kiss David.\"\ntt2318092,wxV84RoUr_U,David takes Jade on a surprise trip to see her brother get married.\ntt2318092,XlJpElakwP4,David and Jade have their first dance at her graduation party.\ntt2318092,bpNxVXA5dcQ,Jade loses her virginity to David.\ntt2318092,3bHDHRxatZg,Hugh must let go of his son's death in order to save David from the fire.\ntt2318092,_GAA_LvDQMQ,Jade gets in a car accident after she goes to confront David and finds him with Jenny.\ntt2318092,RHVyIHN6qOE,Jade and David try to cope with being apart while Jade's at college.\ntt1582465,VBHqNEADzfY,\"When David discovers that Dr. Konrad intends to steal his duck-sighting, Peter causes a diversion.\"\ntt1582465,rzC1mABvnao,\"Dr. Konrad offers his advice on life, death, and birdwatching to David.\"\ntt1582465,x3Uw69aKF-Y,\"David explains the different types of birders to Ellen and then meets some \"\"extreme hobbyists\"\".\"\ntt1582465,B1OK0eWfDB8,\"At an after school meeting, David tries to convince Timmy and Peter to track down the rare bird he sighted.\"\ntt1582465,-48m6UiKt_0,David and his friends visit Dr. Lawrence Konrad to ask advice about how to track the rare bird they believe they saw.\ntt1582465,NvUnzCHEfoo,\"Ellen explains to Timmy that he is being used by a pretty girl, causing an argument which leads to Peter having an asthma attack.\"\ntt1582465,KwZmZ6mybdo,\"David and his friends finally discover the duck they have been searching for, only to get a shocking surprise.\"\ntt1582465,cFl_xXXCo3s,\"In the middle of the night on a camping trip, David and Ellen discuss their family troubles.\"\ntt1582465,lQdx2baN7Co,\"David and his friends freak out when an actual girl comes over, but they soon find that she's only interested in the camera lens they stole from school.\"\ntt1582465,5KgptmAR3KM,David gets emotional when he finds that the duck he's been searching for has been shot out of the sky.\ntt0035015,jDD8IQgUPEU,\"Young George Minafer, the town terror, beats a boy and his father.\"\ntt0234829,326RvY72nmE,Ryan and Tenley reconcile after she mows his lawn.\ntt0234829,wt0klpk3tBA,Ryan loses his composure in the game and loses the game.\ntt0234829,vOJ1HPBID5A,Ryan is hurt when he realizes that Tenley and her family are in a different social class.\ntt0234829,cE5l32W6Oxc,Domo is seduced by his house mother.\ntt0234829,V4UM9BrSqos,\"Tenley Parrish tries to flirt with Ryan, but keeps embarrassing herself.\"\ntt0234829,JzVCSXWeNnA,Ryan and Tenley are very emotional upon saying goodbye.\ntt0234829,a7XZaIy4a9k,Tenley gives Ryan some heartfelt advice.\ntt0234829,-Svsz19yyPM,\"When Dede steals Ryan's underwear, he borrows her thong, but it leads to an embarrassing moment.\"\ntt0234829,xz3nif1TPDk,Ryan leaves his no-hitter game to chase Tenley down and not let her leave.\ntt0234829,ChD8PRF0hBg,\"Ryan encourages Tenley to follow her dreams, but some of their drunken friends burn down the press box.\"\ntt0096486,3jWrsTACVn4,\"On a date with Marie, Einstein puts the Theory of Relativity together.\"\ntt0096486,IkVavN1lo9E,Einstein returns home to a proud mother and father.\ntt0096486,9YgorDRKoEo,\"Einstein absorbs too much atomic energy, but he saves the scientists.\"\ntt0096486,x9mLSJS0n3Q,\"Einstein gets a new job and discovers the key to the universe, but his parents are most impressed that he's met a girl.\"\ntt0096486,uhkfz535fR8,\"At the Science Academy Awards, Einstein invents Rock 'n Roll to diffuse the power of an atomic bomb.\"\ntt0096486,PXaE-weoKCo,Einstein has dinner with other inmates at the asylum.\ntt0096486,yQVdwJcerjw,Einstein meets the lovely Marie Curie and the pompous Preston Preston on the train.\ntt0096486,Ra7oqFqj9uU,Einstein figures out how to add bubbles into beer.\ntt0056218,JSX5qtBpL2g,Mrs. Iselin tells Raymond that his Communist girlfriend is not acceptable.\ntt0056218,p3ZnaRMhD_A,The obsessed Mrs. Iselin gives her son the final instructions on how to assassinate the Presidential nominee.\ntt0057193,w_92-vVfgrw,\"Culpepper is chased onto a rickety fire escape that breaks, causing the suitcase to open and spill the money down on the crowd.\"\ntt0057193,FxvvnlcqLz0,A wild car chase through the city commences with two taxis hot on the heels of Culpepper and the money.\ntt0057193,Hln19l9RtWg,Hawthorne talks bosoms with Finch while Culpeper refuses to help free the Crumps from the basement.\ntt0057193,CY5X8DD0ams,A montage of all the characters in the race facing various dangers and delays.\ntt0057193,1fp6lBNB7aw,\"When Hawthorne wrecks the car, a fight breaks out between him and Finch.\"\ntt0057193,j-7pVks8avo,\"When attempted negotiations break down, everyone runs to their cars and the race for the money is on.\"\ntt0057193,Tt-GdLwV4dA,\"The rescuing fire ladder breaks under pressure and begins throwing the treasure seekers off, one by one, with comic results.\"\ntt0057193,vZqr-1GJIAk,\"The injured men lie in the hospital, lamenting their futures. Mrs. Marcus slips and falls and the men burst into loud laughter.\"\ntt0057193,oiYBUM-EE-w,\"Sylvester tries to convince Finch & Hawthorne to pull over during a car chase, resulting in a wreck.\"\ntt0056218,U1GUJMTmoMY,Marco and his men are brainwashed to believe they are attending a meeting of the ladies’ garden club.\ntt0056218,TzNPYPp_v78,Raymond gets a phone call telling him to “play a little solitaire” and is “activated” when he sees the Red Queen.\ntt0056218,D7tCnGstwcs,Rose picks up Marco from the police station and tells him that she’s left her fiance.\ntt0056218,sTcofHd5IlE,\"When Marco goes to see Raymond, he is surprised when Chunjin opens the door and the two fight.\"\ntt0056218,wH-i4ImreXs,Marco has a nightmare of “the gardening club” where Raymond strangles Ed whil...\ntt0056218,MZXC37sbqUM,Marco meets Rose on the train ride to New York.\ntt0056218,GI67NK5cmxk,Raymond visits Senator Jordan at his house and kills both him and Jocie.\ntt0056218,UwfFWXUEyfQ,\"Raymond carries out an assassination, but not the one that was planned.\"\ntt0056218,b8Dv782UIb4,Melvin dreams of the gardening club where Raymond kills Bobby.\ntt0056218,EnfAVLatlmY,Marco breaks Raymond’s trance by showing him a whole deck of red queens.\ntt0035015,3EeGyS1BOGk,Fanny has a nervous breakdown when George points out the impossibility of moving into a nice house.\ntt0035015,YauDSh8CfwI,George says a painful goodbye to Lucy.\ntt0035015,Ys_zYL7K3KQ,Major Amberson succumbs to dementia as the family fortune dwindles away.\ntt0035015,3pEtiCv07Yc,George meets Lucy and makes a fool out of himself while courting her.\ntt0035015,vA1fVHBWuBU,George insults Eugene and his invention over dinner.\ntt0035015,corlGzKJqAc,\"As time passes, fashions change, technology advances, and culture evolves in an upper-class Indianapolis neighborhood.\"\ntt0035015,dUbNFv_h6Kc,Romance ensues as George and Lucy tease Eugene about his horseless carriage.\ntt0035015,dudDh8KZiTE,Fanny manipulates George into keeping his mother away from Eugene.\ntt0035015,BrWwVhnztcg,George finally receives his comeuppance as he moves out of the Amberson mansion into a changing world.\ntt1488555,RZdQIbRXNCU,Dave teaches Mitch how to be responsible.\ntt1488555,6p-S9nS21Wc,\"Mitch tries to feed Dave's twins, but finds parenthood very challenging.\"\ntt1488555,KaqzKhM9-nU,Mitch asks his brother Dave to respect him for once in his life and go out with Sabrina.\ntt1488555,f0sDG0nnftw,Jamie is shocked when her supposed husband teaches their daughter to solve her problems with violence.\ntt1488555,4G6VXPkfDvo,Sabrina offers to do something wild and crazy with Dave.\ntt1488555,cgoMJXAmLdc,Mitch is turned off by Jamie after he watches her experience diarrhea.\ntt1488555,Q0IQ3GHGXdM,Mitch ruins Dave's company merger by being himself.\ntt1488555,-2KGPYEFnsU,Jamie breaks down and shares her disappointment with men with the babysitter.\ntt1488555,lCcWPDXqKi0,Sabrina tells Dave that there are too many rules in society and that people should do what they want.\ntt1488555,1eSURYocFiM,Dave and Mitch try to explain to Jamie that they switched bodies.\ntt0423977,vr2jJkcTcxk,Charlie learns about Whitney’s dating life and sets up a date involving Murphey.\ntt0423977,Vmo12BffgQc,Marilyn interrupts Charlie and Susan right before a first kiss.\ntt0423977,RNJ7CL89IFM,Susan asks Charlie some personal questions and rewards him for being honest.\ntt0423977,gTt8yvw4MJE,Charlie Bartlett is kicked out of private school for making fake i.d.'s.\ntt0423977,JCGqUJddlS4,Charlie and his mom sing a song at the piano.\ntt0423977,CvoAG6pgdC4,Charlie performs a monologue from the play “Misadventures of a Teenage Renegade.”\ntt0423977,VlfBJLU-8us,Charlie dishes out advice to Susan in his bathroom office before they have their first kiss.\ntt0423977,vAYzTJIog1U,Charlie announces the status of his virginity in front of an entire high school party.\ntt0423977,-arTRBtT9d4,\"With entrepreneurial spirit, Charlie and Murphey sell DVDs of the greatest after-school fights.\"\ntt0423977,QHU65AAx6uk,Charlie goes on a bender after being prescribed ritalin.\ntt0245046,jNIMe9C25BY,Charlotte asks her new love what he would think if she went to France too.\ntt0245046,q_xuviCDyCk,\"On her first mission in France, Charlotte's contact is arrested right in front of her.\"\ntt0245046,v7tTCb-WU-A,\"Julien tries to convince Charlotte to leave, but she has to stay to help the boys, even if it means her own death.\"\ntt0245046,g2GlXX8nFHg,Charlotte returns to France and to Julien after the war.\ntt0245046,6rbUAMnadso,Charlotte helps the Resistance fighters blow up a train carrying German munitions.\ntt0245046,NTvvUL9OgLU,Charlotte gives the two Jewish boys a letter from their parents that she wrote to give them a measure of comfort on their way to the concentration camp.\ntt0245046,z4NqFwQCHQg,\"Charlotte is reunited with her former love, but she realizes that the war has changed her.\"\ntt0245046,Jf_AooayjPw,\"After his entire team is massacred, Julien accuses Charlotte of betraying them to the Nazis.\"\ntt0245046,XKlt7H8_De0,Renech forces Julien to choose to give his father or the two orphaned boys to the Nazis to fulfill the Jewish quota.\ntt0245046,v6Tkyyi43OU,Charlotte creates a distraction so she and Julien can escape their Nazi captor.\ntt0100486,ssZ1pf2Zuas,Alan Dershowitz debates Sarah over strategy in defense law.\ntt0100486,FrxenZhf78I,Alan Dershowitz meets with Claus von Bülow about the possibility of representing him in court.\ntt0100486,1fN7M_u4xt0,David Marriott is offended when Alan Dershowitz rejects him as a witness.\ntt0100486,B13fDbQ75Sk,Alan Dershowitz introduces new evidence in an appeals courtroom by citing precedence from the presiding judge.\ntt0100486,a7Y0CTo21uQ,Sunny von Bülow argues with Claus von Bülow on the night before she falls into her second coma.\ntt0100486,N5PNlMUcaPE,Alan Dershowitz argues with his law student Minnie about the idea of defending guilty people.\ntt0100486,DCW8XHP8ap4,Alan Dershowitz meets with Claus von Bülow to discuss the facts about his wife's illness.\ntt0100486,15bAAD-awjk,Alan Dershowitz informs Claus von Bülow of their legal victory.\ntt0100486,Y5L_REhifRg,\"Sunny von Bülow describes her two comas and the suspicions her children had about her second husband, Claus von Bülow.\"\ntt0100486,m7gCydjomXE,Claus von Bülow describes his usual morning routine on the day he found his wife Sunny von Bülow passed out on the bathroom floor.\ntt0093660,5H7YGAM9Na0,The Judge announces his decision on whether or not Claudia is mentally competent to stand trial.\ntt0093660,CDwnIJ5ohu4,Claudia makes one last plea to every person in the courtroom that she is more sane and responsible than they all think.\ntt0093660,L0PPveTZVsw,\"While questioning Claudia's stepfather, Levinsky realizes the cause of Claudia's troubles.\"\ntt0093660,d1ZUnCbVoZQ,Claudia is questioned by Levinsky to see if she is mentally competent enough to stand trial.\ntt0093660,l7X3t5SOcFY,\"Public defender Aaron Levinsky meets with his new client, the very difficult Claudia Draper.\"\ntt0093660,AOv5WvKX57s,Prosecutor Francis MacMillan tries to get Claudia to admit she made a living as a call girl.\ntt0093660,0_UCPY-mSZU,Public defender Aaron Levinsky wins over the trust of Claudia Draper.\ntt0093660,oMt4F9ELo3U,\"After killing a man in self-defense, Claudia Draper finds that her parents have hired a lawyer to declare her mentally incompetent.\"\ntt0093660,Bo-2-sJi7Uk,\"While on the stand, Claudia is asked by MacMillan if she trusts anybody in the courtroom.\"\ntt0120458,ppfnHlRju7Y,\"The surviving crew, led by Steve and Kit, barricade themselves in the communications room.\"\ntt0120458,MeHr3ZYy_g8,\"Steve, Kit and the rest of the crew run into Squeaky who they thought was dead.\"\ntt0120458,UISLDo5JtiI,Richie and Woods discover a room on the ship full of robotic technology.\ntt0120458,Olt04UetqMA,\"While a Russian space station is communicating with a research ship, a mysterious mass of blue energy strikes the station.\"\ntt0120458,gAbn72Nu_MM,Kit Foster fixes Hiko's injured leg while Steve and Captain Everton look around the sick bay.\ntt0120458,PKnfWnfvSGM,Kit and Steve discover the escape plan that Richie had made.\ntt0120458,13UIqhovLmI,\"Kit, Steve and Nadia are attacked by Captain Everton who is now a mutilated mix of body and machine parts.\"\ntt0120458,usImFOQQEIg,\"While Squeaky holds his station in the engine room, he notices that something is pulling the cables into a pipe.\"\ntt0120458,jcjMYkD-e80,\"Kit, Steve and Nadia are attacked by one of the killer robots while they flood the ship with fuel.\"\ntt0120458,k_tU5DWlyeo,\"After Richie and Steve bring in a dead cyborg, Kit asks Nadia to explain what it is.\"\ntt1564585,qV6EOCw8Zu8,\"The only survivors left, Jarrod and Elaine try to escape the invasion but Jarrod is injured and there is nowhere to run.\"\ntt0097500,MxMpRqQQ6o4,Phil attempts to romance Nina and she exposes a dangerous instinct.\ntt0097500,t8vRwv9kRjg,Phil falls to Nina's seductive charms.\ntt0097500,aSwi8mzc1gA,Phil dresses up as a priest so he can visit Nina in jail.\ntt0097500,7ZTCXQOU5oM,\"At a clown celebration, Phil fights to defend Nina and her family from Communist agents that are trying to capture them.\"\ntt0097500,xXLQhqwMT3A,\"After making love to Nina, Phil is lovestruck, but then he almost dies in an explosion.\"\ntt0097500,jc2T3qbPJNI,\"Nina drives Phil to the hospital, but she is a terrible driver.\"\ntt0097500,8MSvuqf--9o,\"Phil describes what it's like to love Nina, but she accidentally shoots him in the rear with an arrow.\"\ntt0097500,RcZo8hHZqkY,Phil explains why his wife left him and finds himself powerfully attracted to Nina.\ntt0097500,vXXDqjLe4Ls,\"Phil fears that Nina is a murderer so is reluctant to let her cut his hair, but then he enjoys it.\"\ntt0097500,ZBqZpBkiLiI,\"Phil opens up to his family about his doubts, but no one pays any attention to him.\"\ntt0120787,H7zXX6EqGbI,\"Emily suspects her husband tried to kill her, but he offers another explanation where he comes out as a loving husband.\"\ntt0120787,G7_Mq3-ivsM,Emily tricks Steven into revealing the truth - that he did plan to kill her.\ntt0120787,m2tk7RatWsk,\"David tries to flee with the money, but Steven has other plans for him.\"\ntt0120787,xeLH_cCCgr0,David blackmails Steven for the money even though the murder didn't go as planned.\ntt0120787,TMeiAg1kXKs,Steven feeds his suspicious wife a string of lies to throw her off his trail.\ntt0120787,ja00D_L5tm8,Steven is observed very closely by the chief detective on the case as the identity of the killer is revealed.\ntt0120787,5cbim7n9ARs,Steven walks David through the plan he's made for the perfect murder of his wife.\ntt0120787,jy9IGBTGVRQ,Steven reveals that he knows David is having an affair with his wife and then asks him to kill her.\ntt0120787,JanwLiyFPAU,David Shaw and Emily Taylor get caught flirting by her husband  who knows they are having an affair.\ntt0113870,hQm4WGUJtQo,\"Henri can't believe that in the three years that he suffered in solitary confinement, Stamphill didn't see a single baseball game.\"\ntt0113870,F9ScROJxATc,Rookie attorney Stamphill decides to take on the institution of Alcatraz for changing his client into a murderer.\ntt0113870,NZ-u1BXI0YQ,Stamphill questions the warden and blames Henri's murder on him.\ntt0113870,hR8yyXbTjNg,\"When Henri decides to change his plea to Guilty, Stamphill forces him to tell the frustrated judge himself.\"\ntt0113870,aTc9vNCS8vo,\"Henri doesn't want to think about his trial, but Stamphill learns that the prison only let him out of solitary confinement for 30 minutes a year.\"\ntt0113870,JZzbTqTLiqU,\"After being found not guilty of first degree murder, Henri returns to Alcatraz to serve his remaining time for involuntary manslaughter.\"\ntt0113870,9zdo9xIvR9M,Assistant Warden Glenn applies his ruthless brand of discipline to Henri Young after a failed escape from Alcatraz.\ntt0113870,YwUShaY_lew,Stamphill reveals to the court that Henri would rather receive the death sentence than go back to Alcatraz.\ntt0113870,ANAUjvgYxjQ,Stamphill questions Glenn who is responsible for leaving Henri in solitary confinement for three years.\ntt0113870,XiXa1C9FECU,Henkin threatens Stamphill about taking on Alcatraz and its warden.\ntt0444682,p_jspptikh8,\"Ben, Doug and Katherine talk faith when suddenly their food gets covered by flies and maggots.\"\ntt0444682,GfhCds4VHbo,\"Katherine and Loren are surrounded by Doug and the townspeople, who try to convince her to kill the child.\"\ntt0444682,BVrhwsgCuFU,\"Katherine meets Mrs. McConnell, who seems to want her daughter dead as much as everyone else.\"\ntt0444682,57MtQQ5sm24,\"Katherine, Doug and Ben watch in horror as thousands of locusts appear to protect Loren McConnell from townspeople.\"\ntt0444682,NWUxk3JPaqU,\"When Doug, Ben and Katherine arrive at a farm where the cattle have gotten sick, they are attacked by a bull.\"\ntt1139668,Tt2oL1sVVhM,Arthur Wyndham and Rabbi Sendak attempt to perform an exorcism on Casey Beldon.\ntt1139668,ioQQ3gbY0vY,\"While throwing up in the empty bathroom of a club, Casey hears a child whispering from the stall next to her.\"\ntt1139668,gq5WIcSz2ko,\"Sofi is attacked by the evil spirit, who has taken over the body of an elderly man.\"\ntt1139668,RsSltFwkLPE,Casey discovers Matty strangely showing his infant sibling its reflection.\ntt1139668,n9uVWlO0GAs,Casey Beldon falls asleep only to wake up on the ceiling looking at her own body.\ntt1139668,jaM0sgoi0vw,Casey Beldon is jogging one morning when she has visons of a ghost child that becomes a dog wearing a mask.\ntt1139668,tKei1kTWmKU,\"Romy is attacked by a child who is possessed by the dybbuk. Mark and Casey arrive to stop it, but it's too late.\"\ntt1139668,yoYPBCFehng,Rabbi Sendak finds a dog with its head twisted upside down in his synagogue.\ntt1139668,7UnKOlleCCw,Casey discovers Matty strangely showing his infant sibling its reflection.\ntt1139668,d5gSQLPcya0,Casey and Rabbi Sendak defeat the dybbuk after it possesses Mark.\ntt0444682,kZQ87E53U_A,\"While investigating a river turned red, Katherine is startled by a little girl named Loren and gets a strange vision.\"\ntt0444682,SSY6_T2oAow,\"While doing tests on a river that has turned red, Ben witnesses frogs seemingly falling from the sky.\"\ntt1190080,oYet52yPgu0,\"As Los Angeles crumbles beneath them, Jackson and his family try to escape the city by plane.\"\ntt1190080,S1Kbym7WYzs,\"As the Yellowstone Caldera erupts, Jackson and his daughter Lilly race to get back to the airplane.\"\ntt1564585,mvgRi4K58U8,\"Terry, Jarrod and their girlfriends take two cars and try to escape from the building and head for the water.\"\ntt1564585,EqW_b9Ec75w,\"After the army starts arriving to fight off the aliens, Jarrod and Elaine go to the rooftop to flag down a helicopter.\"\ntt1564585,Qrj9qKZCuCw,Jarrod and Elaine attempt to fight off an alien on the rooftop while Oliver attempts to kill off the gigantic alien beast.\ntt1564585,C0gEMF9Tx7o,\"Jarrod and the grils run into another alien in the parking garage. Oliver arrivals and kills the thing with his car, but it comes back to live sucking out the brain of Colin.\"\ntt1564585,Ynfvc7uaDMo,\"After escaping from an alien in the parking garage, Jarrod, Oliver and three girls run outside and directly into the giant building sized beast that killed Terry.\"\ntt1564585,jW9JF2lCjqg,\"After being captured by the aliens, Elaine is put with other pregnant women, while Jarrod's brain is put into an alien body.\"\ntt1564585,UczxnDAsQjs,The group watches as the Air Force launches an attack against the aliens.\ntt1564585,TiQrmXZ_SZU,\"One early morning in Los Angeles, blue lights descend from the sky and immobilize anybody who looks at them.\"\ntt1564585,ppJ38u-KyYM,Jarrod and Terry go to the roof to investigate the blue lights.\ntt1385826,J440ql0zXuE,David and Elise fall deeper in love as The Adjustment Bureau works desperately to destroy their relationship.\ntt1385826,7oczRhQvSlE,\"Elise freaks out as they jump from location to location, but she ultimately chooses to be with David.\"\ntt1385826,lyvAjZw6O_Q,\"Thompson tells David that if he stays with Elise, it will ruin his career potential.\"\ntt1385826,Fz2HMTuqy98,David takes Elise away from her wedding and shows her the world of The Adjustment Bureau.\ntt1385826,KblaujDjQ4g,Richardson explains what The Adjustment Bureau does to help humanity.\ntt1385826,p1e3NC3IIF8,\"David runs into Elise on the bus and their intense flirtation continues. Meanwhile, Harry tries to stop them from falling in love.\"\ntt1385826,sd2pBde6gkw,David meets the alluring Elise in the bathroom and easily falls in love with her.\ntt1385826,QiCNpDYavbg,David and Elise's love is so powerful that they force the chairman to rewrite the plan.\ntt1385826,FMDgoOi_HLk,David runs into Elise again after three years and convinces her that he didn't mean to abandon her.\ntt1385826,p6oIR31ZgyA,Thompson continues to dissuade David from choosing Elise at her dance recital.\ntt2910814,Bxh85MB9FOE,Jonah uses his bionic arms to save Nic and Haley.\ntt2910814,zU19JLG88tA,\"Jonah fights his way inside an office to make contact with the outside world, but is instead caught in a massive explosion.\"\ntt2910814,ehxd3S2foDg,Jonah explains to Nic that they are trapped in Area 51 with little hope of escape.\ntt2910814,tIj1luuOfO4,Nic runs to catch up with a truck that has kidnapped Haley.\ntt2910814,hAVDAEaxv_8,\"Frustrated and confused, Nic breaks Haley and himself out of the facility.\"\ntt2910814,KUMhlMS-z2I,Nic discovers the true power of his bionic legs and breaks through the barriers created by Damon.\ntt2910814,mBdFXXV9hwY,Nic discovers that his legs have been replaced with bionic parts.\ntt2910814,PXmtu0Kd0ms,\"After regaining consciousness, Nic is interrogated by Dr. Wallace Damon about the contact he made with an Extraterrestrial Biological Entity.\"\ntt2910814,BKkw8FslzOI,\"Nic, Jonah and Haley find themselves in extraordinary circumstances while investigating an abandoned house.\"\ntt2910814,NPYyV_mq97M,Damon forces Nic to perform a series of mental tests.\ntt1190080,B-Wf5QOHPxw,Jackson and his family are trapped inside the belly of the Ark when Adrian tells them of an impending crash caused by their stowing away on the ship.\ntt1190080,1id63E3KgH0,Jackson races to find a map to the arc and get back to his family while Yellowstone explodes.\ntt1190080,CmMeT8MW1LA,A major Tsunami sweeps the coast of the Atlantic destroying the White House.\ntt1190080,_TmztVM7Z4s,President Wilson stays behind in Washington as major earthquakes destroy the world's major cities.\ntt1190080,sIDHrcDf-N0,Curtis and the survivors search for a safe landing spot in the middle of the Himalayas.\ntt1190080,YnnxVknsLk0,Kate and Gordon discuss their relationship while a disaster looms.\ntt1190080,qgRXFJqB-9Q,\"Jackson Curtis and his family, led by Tibetan monk Tenzin, sneak their way into one of the arks designated to safely navigate the apocalypse.\"\ntt1190080,NclH5qEfL5c,Jackson picks his family up in his limo while a massive earthquake starts destroying Los Angeles.\ntt2024469,nkVUb4kdhig,The hijackers explain their plans to Bill.\ntt2024469,8QNDAaCu9dI,\"When a bomb detonates, Kyle must land the plane safely.\"\ntt2024469,10TW3rcKMtA,\"While Bill fights the hijacker, Rice has to get the plane to 8,000 feet.\"\ntt2024469,uUA0a8U7PdY,Bill enlists help for his new plan.\ntt2024469,osFbJZfBOyA,Bill confronts Jen about his suspicions.\ntt2024469,-PzL4MTu3to,Bill announces his intentions to all of the passengers.\ntt2024469,zT4OxEg_-cY,Bill tries to prevent a death before time runs out.\ntt2024469,Ltjiyd-THC0,Bill discovers Jack has betrayed him.\ntt2024469,mDViU8OSRkA,Jen and Nancy help Bill identify who has been sending the anonymous texts Bill's receiving.\ntt2024469,JjqnoH4D3mo,Federal Air Marshal Bill receives a threat.\ntt0365907,ehv1cHqfQ-U,\"While TJ tries to find the location of the kidnapper's house, he catches a glimpse of a fatal betrayal.\"\ntt0365907,6f1VnWuk4C8,Matt gives Kenny the choice to get his revenge.\ntt0365907,XQ0Tlb8z3ow,Ray and Albert break into Yuri's house to kidnap his daughter.\ntt0365907,5ZT2Mc8TEIY,Matt makes the exchange with Ray to save the little girl.\ntt0365907,gvaa1ZpqoUc,Matt tries to convince Ray to meet face to face to make the exchange.\ntt0365907,S52bKF-hXu4,Kenny tells Matt the story of his wife's kidnapping.\ntt0365907,slegOy-GQMc,Matt reveals the truth about the shootout to TJ.\ntt0365907,Sk0iV1R72OM,Matt searches the basement to find Albert and get his revenge.\ntt0365907,Q780MiOrLwg,Matt teaches TJ the responsibilities of carrying a gun.\ntt0365907,eFzzQuYRw34,Matt's morning routine is interrupted by local criminals looking for revenge.\ntt1216491,h9WDm1k4Hz4,\"Ian confronts his father, Gary about the mistakes he made in Cleveland.\"\ntt1216491,rtYKhaQStZE,Gary interviews Norwin Meneses to dig up more information about the ties between Nicaraguan drug traffickers and the CIA.\ntt1216491,Q2-4x2KuRqE,\"When Gary calls the police due to an intruder in his yard, they help themselves to the evidence he has compiled against the CIA and American government.\"\ntt1216491,jjDuR4d7Iik,Gary is forced to defend the reliability of his exposé to his coworkers.\ntt1216491,od6IxUWPMcs,Gary Webb further investigates American involvement in Nicaraguan drug trade by speaking to federal prosector Fred Weil.\ntt1216491,uLhrOeavvOY,Gary discovers that his motorcycle has been stolen.\ntt1216491,HYzSQZdBWVQ,\"Gary Webb gains critical information from former drug dealer \"\"Freeway\"\" Rick Ross about an alleged government conspiracy.\"\ntt1216491,NRBLTtDkQXU,Anna warns Gary and Susan that the media has uncovered several details about their private lives.\ntt1216491,hQUBid6LIPU,Gary addresses the crowd about the corruption of the media during his award acceptance speech.\ntt1216491,Mfcqb8DD400,\"Through interrogation of Danilo Blandon, Gary discovers that the CIA has been collaborating with drug traffickers.\"\ntt0054135,dwzoyEaHxSM,Sam asks Beatrice Ocean what happened to her and Danny's marriage.\ntt0054135,PkLpd8Eaah0,The team cuts the power to the Las Vegas casinos and robs their vaults right after midnight on New Year's Eve.\ntt0054135,U-7MSowBlG8,\"After Danny reunites with Sam, the two pull a prank on their old friend Spyros.\"\ntt0054135,ZtHl67Oeb5I,Red Skelton is thrown out of the casino while Danny watches.\ntt0054135,IXwwGEJkx8Y,Duke threatens to contact the police if Danny and Sam don’t give him fifty percent of the money they stole.\ntt0054135,lV2XAU1JzuI,Josh is ecstatic when he successfully transports the money past a fleet of cop cars.\ntt0054135,14Et05Okf8w,Danny tries to win Beatrice back by telling her he’s about to become a rich man.\ntt0054135,npvFfvyT8Pc,Vince talks to Josh Howard about the big heist.\ntt0054135,klt86blKwaA,Sam distracts a drunk girl so that Tony can carry out his part in the heist.\ntt0054135,1D4VF4WqJSE,\"When Adele accuses Danny of seeing his ex-wife, Danny makes it very clear that he does not owe anything to Adele.\"\ntt2349144,_eHwoQ4VQ1o,\"Curtis leaves his money to his mother, while Gerry bets his last one hundred dollars on at the roulette table.\"\ntt2349144,pzG1ckuBqpg,Gerry and Curtis lose all their money on one final bet at the racetrack.\ntt2349144,E0i4dabbAcI,Gerry's luck turns when he loses everything on the final card of the game.\ntt2349144,wZcRiRs1x-8,Curtis finds Gerry on a huge winning streak at the casino.\ntt2349144,JbuGOroCWaI,Curtis buys Gerry a proper bourbon after beating him in a hand of poker.\ntt2349144,ePlb7b2nQm4,Gerry and Curtis decide to bet everything on a roll of the dice.\ntt2349144,VU3Tu4K4MOo,\"After Vanessa shares her magic trick, Gerry plays her a song on the piano.\"\ntt2349144,gxhMfM0QlwM,\"Gerry tells Curtis his plan to gamble down the Mississippi River, and then asks to be staked in the big poker tournament in New Orleans.\"\ntt2349144,iTQ4b0d3HxM,Curtis and Simone talk middle America trivia and then discuss their relationship.\ntt2349144,ovxjAnlr7qg,Curtis and Gerry meet up with Simone before playing a tournament on a riverboat casino.\ntt2349144,Tn44a8_14LU,Gerry reveals to Curtis that he lost everything they have back in Memphis.\ntt0264935,2l_mfcc2I8E,\"After months of talking about it, Richard and Justin kill a woman.\"\ntt0264935,NCUOJMkDAyI,Justin and Richard briefly discuss freedom and crime in class.\ntt0264935,vlg5VPKbGQg,Richard considers confessing as Detective Kennedy tells him that Justin already is.\ntt0264935,0IQgjMYWVGc,Detective Kennedy explains to Richard how he thinks the murder was committed.\ntt0264935,yzera03y4_0,After running from the police Justin goes to Lisa and tells her what he did.\ntt2377322,jXKc-0nVIkQ,Ralph helps Mendoza through the first stage of Santino's exorcism.\ntt2377322,_zHhry-Ot0Y,Santino is successfully exorcised.\ntt2377322,L9x5p-s4zKs,Mendoza absolves Ralph from his most regrettable sin.\ntt2377322,Mgc3y6p-Bys,\"When Jane's corpse falls on Ralph's car, it doesn't take long for him to discover that Santino is at his house.\"\ntt2377322,iVsfWht3zmo,Santino mutilates himself during Mendoza's exorcism.\ntt2377322,onO71_aItKA,Ralph gets bitten during an interview with a possessed inmate named Jane.\ntt2377322,X67GWsa_NNM,Ralph calms Mendoza down when Santino starts to get to him.\ntt2377322,HPir9pU9shw,Christina wakes up to scary noises and a strange man in her house.\ntt2377322,DooTtUcpKM4,\"While watching military footage from a suspect's camera, Ralph discovers the words written on a wall match the ones he's been seeing at crime scenes.\"\ntt2377322,-Lrndfrc9yU,\"While Ralph discovers a message painted on the wall in a suspect's home, across town his daughter Christina is awakened by scratching noises in the night.\"\ntt0102915,hRg2HEpwD5A,\"Although exhausted and wounded, Kenner finally faces off against Yakuza boss Yoshida in a sword fight to the death.\"\ntt0102915,b7AjNXAF-7Y,Sgt. Kenner fights his way into crime lord Yoshida's home to stop Minako Okeya from commiting suicide.\ntt0102915,fmMPmWO6b4E,Johnny Murata faces off against Yoshida's right hand man as Kenner takes care of the rest of the henchmen.\ntt0367652,BRBSfKmp3vs,Deuce finds Heinz dead and brings him back to T.J.'s float crib.\ntt0367652,w71pHLUz2i0,Gasper attacks Deuce after he foils the killer's plan.\ntt0102915,beearAU0yn0,Kenner and Johnny crash a meeting between the Yakuza and local crime lords at a brewery housing a drug operation.\ntt0367652,fB_fwuJOx7I,Deuce finds the killer's outfit in Eva's closet.\ntt0367652,XcDzb6AeAI0,\"Deuce and T.J. sneak into the Man Whore Society to find the killer, but T.J.'s farting gets them discovered instead.\"\ntt0367652,xM1MNPKYl5g,Deuce becomes a gigolo again in order to root out the murderer.\ntt0367652,b0KSEziycmw,Deuce and T.J. try to convince the European Gigolo Union to help them find the serial killer.\ntt0367652,hZPz4w3jLXI,Deuce disrupts a porn film set when he believes that Eva is the star.\ntt0367652,2_BwhA8M9-w,Deuce gets high for the first time and starts to hallucinate.\ntt0367652,_qh-4JFLd-s,A rude Frenchman disrupts Eva and Deuce's day at the aquarium.\ntt0367652,-kHMOXNsE2k,Deuce finds T.J. hiding out after being accused of murder.\ntt0102915,VnLaIBz4VMg,\"After escaping from being tortured, Kenner and Johnny enter a scrapyard and get captured by the Yakuza yet again\"\ntt0102915,ZIHWAugnBWI,\"Sgt. Kenner and his new partner, Johnny Murata, show off their skills to each other while entering a night club full of criminals.\"\ntt0102915,YGwPTU-SvbI,\"Police officer Kenner meets his new partner, Johnny Murata, while fighting the Yakuza in a Little Tokyo resturant.\"\ntt0102915,e3RDBiiOJaY,Sgt. Kenner attempts to break up an illegal fighting match only to get caught up in a shoot out between Japanese gangsters.\ntt0374536,vjmHq57MZso,Isabel gets jealous when Jack's wife visits the set.\ntt0374536,NHg_SEfj38M,Isabel tries to tell Jack that she is a witch.\ntt0374536,Q49KVa7jotI,Jack rushes to find Isabel before she leaves.\ntt0374536,T5p0IaOt3tQ,\"Jack is visited by his favorite character, Uncle Arthur.\"\ntt0374536,HUKu_iqYDOA,Jack asks Isabel to audition for the role of Samantha after he sees her do the famous nose twitch.\ntt0374536,Jx-I8OfW0GI,Jack convinces Isabel to come back to the show.\ntt0374536,kZg0_oypRpU,Isabel gets revenge on Jack in the middle of filming an episode.\ntt0374536,fYNZsz9o3Sg,Isabel goes off on Jack after he throws a tantrum on set.\ntt0374536,KOBGjFHXnqY,\"Isabel's father, Nigel, tries to persuade her not to give up being a witch.\"\ntt0374536,D_FRoxgOUNA,Jack falls in love with Isabel and takes her on a date after being hexed.\ntt0095925,b2hhdMiOTOE,\"When Tracy shoots Ed, Pumpkinhead ignites in flames.\"\ntt0095925,gxacglqQMqE,\"After Steve goes missing, the remaining men head out to find him, leaving the girls behind.\"\ntt0095925,hwb1MK66new,\"As Joel fights Pumpkinhead, the creature drags Kim away and drops her from a tree.\"\ntt0095925,abTZPgqiEto,Ed Harley has an old hill woman use her powers to summon Pumpkinhead\ntt0095925,_oEolYMce4c,\"While Steve has a heart to heart with Maggie, Pumpkinhead interrupts and kills him.\"\ntt0095925,cfB1QaweRKU,\"When Joel shoots Pumpkinhead in the head with a rifle, Pumpkinhead takes the rifle and stabs Joel in the chest.\"\ntt0095925,ALYPTuyCxqI,Joel accidentally lands his bike right on young Billy after a big jump.\ntt0095925,YZ5Y_GhXMKw,Jimmy Joe is taunted by his kin who begin chanting the “Pumpkinhead” song.\ntt0095925,ek0jTQAdN8Y,Pumpkinhead attacks a ruined church while Bunt is attempting to help Tracy and Chris.\ntt0095925,fvNfhUZ-5z8,\"Clayton begs Tom to let him in his house and protect him from Pumpkinhead, but Tom refuses.\"\ntt2788710,IsG-jJcrlr0,Dave tells the CIA that they are going about this assassination thing all wrong.\ntt2788710,OyziGbUQBIc,Dave and Aaron deal with the fallout following the announcement of their interview with Kim Jong Un.\ntt2788710,fnpUxSXWy6I,Dave and Aaron are approached and propositioned by Agent Lacey.\ntt2788710,dN1RMOrtK7A,\"Aaron is sent on a mission to retrieve a package from the CIA, but meets a hungry tiger.\"\ntt2788710,EFtdTsawXK0,The CIA convinces Aaron to secure the package in his butt.\ntt2788710,B8dPQzwGcZI,Dave enjoys hanging out with Kim Jong Un.\ntt2788710,pb8pWn_yyF4,Dave and Aaron enjoy an evening with Kim Jong Un until one of his officers dies from their poison.\ntt2788710,eWP8JMcy3O0,Aaron is about to have sex with Sook when Dave comes in.\ntt2788710,Yo3rEGWrlws,\"While Dave's interview with Kim Jong Un goes wrong, Aaron has a bloody fight in the control room.\"\ntt2788710,74PUHyVj4BQ,\"Dave gets Kim Jong Un to poop on camera, proving that he is not a god.\"\ntt2170299,ssK4Uc8SXnU,Guy and Jenny bang out their frustrations with each other.\ntt2170299,0PtKzdvq7bc,Guy and Chaitanya intentionally misspell their words in order to make the other win.\ntt2170299,kg2o35acq4c,Guy gives Chaitanya some important life tips.\ntt2170299,3tMHSQGSUzc,A fed up mother is ejected from the spelling bee when she tries to get Guy removed from the competition.\ntt2170299,kzVO5JrnEJ8,Guy gets inside the head of Braden Aftergood before he goes up to compete in the spelling bee.\ntt2170299,GzL4f-4uQVM,Chaitanya introduces himself to Guy on the plane ride to The Golden Quill.\ntt2170299,s2Tpk6RnkaA,Guy has some harsh words for a mother who tries to confront him about his participation in the spelling bee.\ntt2170299,TSAdyzdX4eA,Guy sabotages Joyce's chances of winning the spelling bee by convincing her that she has become an adult.\ntt2170299,SWKDbfvyZMU,Guy tricks Chaitanya into winning the spelling bee.\ntt2170299,nifcKdVjpbw,\"When Guy discovers that Chaitanya has been pretending to be his friend so that he can win the spelling bee, he gets revenge by burning Chaitanya's study guide.\"\ntt0243655,pEJHzQIMH5k,Andy gives Beth a hard time while Aaron tries to console Gail.\ntt0243655,YygwTWUI8vc,\"Coop gives a stirring pep talk to the baseball team, but they feel that it's pretty trite.\"\ntt0243655,iYf3nqYQXDI,Gene helps Coop get over the pain of being dumped with a killer training montage.\ntt0243655,B9oxe-Dvvj0,\"Henry explains to the kids what \"\"Associate Professor\"\" really means.\"\ntt0243655,VSdIYNSkQL8,\"Andy and Lindsay make out, unaware of the kid drowning next to them. Beth tries to flirt with Henry, the astrophysicist.\"\ntt0243655,D-9zx3m6lLU,\"Victor desperately tries to get back to Abby, but he crashes the van.\"\ntt0243655,E1e4f8YdkLg,Neil and Beth try to find Victor in order to save the kids about to die on the river.\ntt0243655,lYtc2lvkpTw,Beth takes the gang to town where they have a drug filled time.\ntt0243655,UyOxOyfX4uM,Gene has a conversation with a talking can of vegetables about being true to himself.\ntt0243655,glJzhylsfoc,Gene is finally honest and reveals to the whole camp that he likes to hump the fridge.\ntt0448157,SZ3oe7dJdMc,\"In order to save Mary, Hancock fights to escape the hospital and leave Los Angeles.\"\ntt0118750,yr-gQl9CKIU,Lysterine is very unimpressed after meeting Bunz.\ntt0118750,Tt7qQmpLA2U,\"Bunz encourages Rushon to dance provocatively, but it backfires on him.\"\ntt0118750,dTVEd7WtyAw,A game of footsie gets out of control when Bunz and Lysterine mistake each other for the dog.\ntt0118750,adatkf9XY44,Bunz and Rushon witness a robbery at a gas station.\ntt0118750,gIaqrkn0ymo,\"When the admitting nurse refuses to help Rushon, Bunz pretends to be a nurse and helps him out.\"\ntt0118750,gDSrAm2CKdU,When Rushon and Bunz go out to get plastic wrap they get advice from Judge Peabody on how to behave with morals.\ntt0118750,wSpvR9B8QXw,Bunz discovers how kinky Lysterine is and Rushon finally has sex with Nikki.\ntt0118750,YG0VNVGxyYs,Lysterine gives Nikki advice on men.\ntt0118750,mlkWgiyQ-8g,Bunz and Lysterine end up bonding over Chinese insults.\ntt0118750,I2v7jlIBL1A,The girls think it's funny when Bunz and Rushon misunderstand the purpose of a dental dam.\ntt0110657,yRlyvNmVWK0,The monks join Julie for a dance session.\ntt0110657,lkoWhWGcVR4,Mr. Miyagi continues to train Julie.\ntt0110657,hprw4GtCu1w,Mr. Miyagi gives Julie a birthday show.\ntt0110657,7D_6z1EnSik,Mr. Miyagi and Julie run into a group of thugs at a gas station.\ntt0110657,czJL-TPz-5M,Mr. Miyagi surprises Julie with a prom dress and teaches her how to dance.\ntt0110657,LlK6pn4qyrc,Mr. Miyagi and Julie have a fundamental misunderstanding.\ntt0110657,zIKq7DqdZa4,Mr. Miyagi teaches  a lesson.\ntt0110657,yGYPTb9T3MU,Julie is taught the value of life by the monks after nearly killing an insect.\ntt0110657,xc2Ctw8pGrc,Julie is forced into a match against Ned after the latter jumps her boyfriend.\ntt0110657,06DLNzLaTlE,Mr. Miyagi watches Julie grow into a strong student.\ntt0120686,JLvkvjU_iyY,Anna uses Isabel's advice to get back at Brad.\ntt0120686,mExTnHwAcYY,Jackie says goodbye to her daughter because she is dying of cancer.\ntt0120686,fQy1yr_K_L4,Isabel tells Jackie about her fear of taking her place as mother when she passes away.\ntt0120686,RmxqK1np7rY,Luke proposes to Isabel.\ntt0120686,dH3dqXHH0yU,Jackie is furious when Isabel loses Ben and they find him at a police station.\ntt0120686,Ghexrw8bpc8,Jackie tells her kids she has cancer and Anna does not take it well.\ntt0120686,iuPDl6n2vO0,Isabel gives Anna advice on how to get back at her ex-boyfriend.\ntt0120686,ns3j2exbdbU,Jackie tells Isabel that she has cancer.\ntt0120686,gj_BH6Suku0,Luke and Jackie talk with the school counselor about Anna's behavior in school.\ntt0120686,Gx1K7ynF1JM,\"Jackie has some fun singing and dancing to \"\"Ain't No Mountain High Enough\"\" with her kids.\"\ntt0105121,9j3y-J8IzYo,Fool and Leroy find more than they bargained for after breaking into their landlord's house.\ntt0105121,1kPvrYaCi4c,\"After discovering the truth about her parents, Alice attempts to stop the abuse from Woman once and for all.\"\ntt0105121,MQ2PrvpAT-k,Fool and Roach escape to Alice's room.\ntt0105121,EYdIrPSIgio,Fool and Leroy find themselves trapped inside the house as insidious forces chase after them.\ntt0105121,KnXZP5yMlgw,Fool is captured by Man and fed to the people under the stairs.\ntt0105121,IBTpVVTZJ5c,Fool and Leroy are chased by Man.\ntt0105121,UkamBJTqN8c,Fool is chased by Roach after going into the basement.\ntt0105121,mRIaK9Vf0Ns,Fool and Roach are chased through the walls.\ntt0105121,JOzVMqp3vMc,Fool and Alice are cornered by Man and his dog.\ntt0105121,cY8yXitzluU,Fool fights back against Man.\ntt2403021,iqZB7SIbeL4,Justine finally escapes the cannibal tribe.\ntt2403021,GwM5LleRnAI,\"As the tribe tortures Daniel and Justine, another native arrives with evidence of invaders.\"\ntt2403021,13YnorzVWTE,Amy loses control of her bowels.\ntt2403021,VXDHzJ1LYRs,\"When she realizes she is eating a part of her friend, Amy decides to end her own life.\"\ntt2403021,fJqWAvvKS1A,\"Jonah tries to convince Justine that their activism had an impact. Then, their plane crashes and everyone is injured.\"\ntt2403021,t1SbH-c0m_0,\"The activists chain themselves to the trees to stop the deforestation of the Amazon, but Justine's life is threatened.\"\ntt2403021,b5I9yFdAMzg,\"Kara is killed by an arrow, and the rest of the activists are captured by natives.\"\ntt0102492,TVViHShXqC4,Vada and Thomas J. share an innocent kiss.\ntt0102492,woLbaFLoJI8,Vada becomes overwhelmed at the funeral of her best friend and runs away to see Mr. Bixler.\ntt0102492,c4w-IE-Hsqc,Vada gets teased by the local girls for hanging out with Thomas J..\ntt0102492,iJKQl3uGg0I,Vada joins Mr. Bixler's poetry class.\ntt0102492,IE9S8CehYco,Shelly gives Vada a makeover.\ntt0102492,ukzIFp4Kj90,Shelly gives Vada a motherly talk about becoming a woman.\ntt0102492,kP5GKIrGoeQ,Vada's father tells Vada about her mother.\ntt0102492,fV-wb1gZOyo,Vada's father tells his daughter some tragic news.\ntt0102492,2vbGcYm8u1o,Vada reads her poem to her poetry classmates.\ntt0102492,6e4xlcfKHxY,Vada visits the doctor again and Thomas J. finds a beehive.\ntt0164912,xJb5tOlE1Fs,Stuart returns to the Little house to find only Snowbell home.\ntt0164912,VCLL9aD-VKw,George begins to warm up to Stuart when they play together in George's playroom.\ntt0164912,KdOgihoZjZY,Snowbell protects Stuart from the gang of hungry cats.\ntt0164912,K9z6npGGZAM,Snowbell's friend Monty comes over for a meal and meets Stuart.\ntt0164912,-MNpOKICOx8,Mrs. Little accidentally throws Stuart into the washer machine.\ntt0164912,YEdNAX9h_vI,Mrs. Little accidently throws Stuart into the washer machine.\ntt0164912,sPHeq8OM-dU,Camille and Reggie Stout reveal the truth to Stuart.\ntt0164912,P-KZ7N30lFY,Smokey and his gang find a lost Stuart in the park.\ntt0164912,OO4LqRUxinE,Stuart decides to pilot George's boat in the race after he accidently breaks the remote control.\ntt0164912,ICRVd--TY-U,Snowbell chooses not to give Stuart over to Smokey and his gang.\ntt0243585,N45Gbn2AtWk,Snowbell refuses to go home and Stuart comforts Margalo when she sees a flock of birds heading south.\ntt0243585,SVSzVDnvkHw,Stuart volunteers to go down the sink when his Mom's ring goes missing.\ntt0243585,nJ1hrmVHUJg,Stuart plays his first game of soccer.\ntt0243585,t9vWi2ItxMc,Stuart bandages Margalo's wing after they are chased by a falcon.\ntt0243585,Zd27SaRdxiE,Margalo says goodbye to Stuart and the Little family.\ntt0243585,yYCVu5ZSki0,George covers for Stuart while he searches for Margalo.\ntt0243585,3cdlwCCzujo,Margalo says goodbye to Stuart and the Little family.\ntt0243585,opWPxmr2h2s,Stuart introduces Margalo to the family.\ntt0243585,ilCjx9gigWI,Snowbell goes searching for Stuart and finds Margalo.\ntt0243585,CfRKGG52TPY,Stuart accidently turns on the airplane when trying to fix it.\ntt0439815,b58Zg_TRqn0,\"After realizing that something is very wrong with her husband Grant, Starla Grant calls the police.\"\ntt0439815,ZQ6XwJOrBiE,Alien Grant starts to get a desire for Starla as she takes a shower.\ntt0439815,PfBi1PAfWcI,\"While the entire town is at the local bar celebrating, alien infected Grant pays a visit to lonely Brenda.\"\ntt0439815,bOqZC-DXvk4,Bill and Kylie attempt to rescue Starla and destroy her mutated alien husband Grant.\ntt0439815,LWCK6VFF6n4,\"Bill Pardy leads a stakeout, which includes Starla, to finally catch the very mutated Grant.\"\ntt0439815,71kAAVlpENY,\"Bill Pardy, Starla Grant and other officers discover a barn where they find Brenda, a missing woman, huge and full of alien slugs.\"\ntt0439815,YqRnYf2cyI0,\"One night while taking a relaxing bath, teenager Kylie Strutemyer is attacked by an alien slug.\"\ntt0439815,9CD23yDPEF4,Bill Pardy sneaks into the police station to get a grenade but is attacked by a zombie deer. Kylie saves him.\ntt0439815,UAa5Lw5lseQ,Bill Pardy saves Kylie from her infected family and then picks up Jack MacReady and Starla Grant.\ntt0439815,x0rCYl4e1Lw,\"While making out in the woods, Grant and Brenda come across an alien parasite.\"\ntt3322364,MBSxl8y36zg,Dr. Omalu is frustrated about America's reaction to his medical findings and Prema encourages him to continue speaking out.\ntt3322364,_zPImuBvnOA,Dr. Wecht is indicted by the FBI and Dr. Omalu refuses to play government games.\ntt3322364,zFDNg1Swx0s,Dr. Omalu and Prema lose their child and decide to leave town.\ntt3322364,ab4MM9cHidM,Dr. Bailes tells Dr. Omalu that the NFL will not allow him to speak.\ntt3322364,S60NRfBYTl4,Dr. Bailes tries to explain why he put injured players back on the field to Dr. Omalu and Dr. Wecht.\ntt3322364,ryyEEyKD9EU,Dr. Wecht informs Dr. Omalu that the NFL is out to discredit him.\ntt3322364,NXTrMtrTjlI,Dr. Bailes warns Dr. Omalu what he's up against.\ntt3322364,RY1FQGd1Bb4,Dr. Omalu explains to Dr. DeKosky how Mike Webster died after a series of concussions sustained while playing football.\ntt3322364,Mdp4T_G0Xsc,Dr. Omalu speaks about CTE and the dangers of playing football at a NFLPA conference.\ntt3322364,59wvo9e2XQY,Dr. Omalu gets a meeting with Dr. Joseph Maroon a top neurosurgeon with ties and interest in the NFL.\ntt0448157,H5pj6ZuBgeE,Mary reveals half the truth about who they are and how long they've been alive to Hancock.\ntt0448157,tqmbgqyc1bc,Hancock is desperate to discover the truth about who he is but Mary refuses to tell him.\ntt0448157,yt1pZiuyKJE,Hancock attempts to diffuse the situation with Red.\ntt0448157,tG1crFI87ro,Hancock  saves Ray from an oncoming train.\ntt0448157,p1dzglJEqac,Hancock nearly kills a one night stand with an unexpected superpower.\ntt0448157,dgM9V3lEZvE,Hancock visits Ray to get help with his public image.\ntt0448157,qEH9lnYIndY,Ray watches as Hancock completes his first act as a reformed superhero.\ntt0448157,E-MOzwWySaQ,Hancock fights crime with a fresh hangover.\ntt0448157,HKcDfO71N1E,Hancock finds himself in jail surrounded by men he put in there himself.\ntt1232200,IC21keB1yaM,Donny is seduced by his teacher.\ntt1232200,YdowX3H-hGo,Todd's buddies take him to a spa for his bachelor's party and Donny can't handle it.\ntt1232200,4XKZFS7EoCU,\"Todd learns that his \"\"Uncle Vanny\"\" is actually the Vanilla Ice.\"\ntt1232200,ykBG9mW1yC4,Todd shows his dad how the back tattoo he got as a kid looks now.\ntt1232200,cfB9siDjpLk,Donny teaches Todd how to ride a bike.\ntt1232200,G64ubBUMVek,\"Todd meets his fiance's military brother, Chad.\"\ntt1232200,ptOc-HdvEW0,Todd confronts Donny about his terrible parenting while he was growing up.\ntt1232200,fZNHk9DKvtM,Todd angers Father McNally and causes a fight.\ntt1232200,0GCwhGQEZ90,Jamie shares a secret with Todd which derails the whole wedding.\ntt1232200,AkaPD_qTmok,Grandma seduces Donny while Todd makes a series of mistakes with his fiance's dress.\ntt1564367,ZFMSluy-4gE,\"Danny spends some quality time with his fake kids, Kiki Dee and Bart.\"\ntt1564367,4WdyyPhh4-k,Palmer invites Danny and his family to go swimming in a nearby waterfall.\ntt1564367,lMA48vIxajE,Danny convinces Maggie and Michael to pretend to be his kids.\ntt1564367,V6WWK1gvpjc,Danny asks his assistant Katherine to be his fake hot first wife.\ntt1564367,VXlMfWObFCA,Danny is challenged to express what he loves about Katherine.\ntt1564367,nJwGWiuonws,Danny sees a patient who is looking to fix a botched plastic surgery job.\ntt1564367,Xz-BR8gyPhg,\"Danny meets the beautiful Palmer, but she flips out when she sees his wedding ring.\"\ntt1564367,Wmo60ltq-TA,Danny confesses his feelings to Katherine.\ntt1564367,qfq5VozCshY,Palmer proposes to Danny just as he realizes that he wants Katherine more.\ntt1564367,dgdEr-mXQT4,Dolph explains to Palmer what he does for a living.\ntt0960144,_1rqGyHtE4Q,The Zohan reigns over the beach.\ntt0960144,JAXij_5Rr0U,Pushups - Zohan impresses Dalia with his pushup skills and gets an assistant job at her salon.\ntt0960144,utYsQTUae5w,Zohan rescues Michael from a maniac driver.\ntt0960144,Yg1qC5VGoLw,Zohan searches for employment at a hair salon.\ntt0960144,NdGB1rnPcR0,Zohan shows his customers a little extra love and helps revive Dalia's business.\ntt0960144,Sb8ufI6z0zM,\"Zohan takes down bad guys and confronts his arch-enemy, The Phantom with ease.\"\ntt0960144,8DkbFJ3uz54,Zohan is recognized by a cab driver with a grudge.\ntt0960144,5OfAMHeIr7k,Zohan chases after Phantom and they fight to the death.\ntt0960144,hl1z_vp3kXg,\"Zohan, incensed after hearing of Phantom's success, decides to get a hair salon position at any cost.\"\ntt0960144,Or4t1d_h0Y0,Salim gets in touch with Phantom to get him to come to America and get rid of Zohan.\ntt0371246,ZT0-DtdC93w,A drunk John comes home to find Flor practicing her English.\ntt0371246,6GpeTJqqtG4,Deborah takes Flor's daughter shopping without asking asking for permission.\ntt0371246,VW_Bmy2Cm2c,Deborah tells John that she's been seeing another man.\ntt0371246,pCFld9GCy_Q,Flor finds out that John gave Cristina money for collecting sea glass from the beach.\ntt0371246,208MQEPGWLA,\"Upset with her mother for removing her from her private school, Cristina yells at her mother in public.\"\ntt0371246,oeF5tq_zeqU,Flor and John have the conversation of their lives.\ntt0371246,nO7qxQsQK44,Deborah yells at John for not following her parenting style.\ntt0371246,-Ww_Bo5ghiw,Flor complains to John about the private school that his wife enrolled Flor's daughter in.\ntt0371246,CyAW5eAhhPo,John invites Flor to his restaurant to cook for her.\ntt0371246,6La5YCYlMZY,Evelyn advises Deborah on what to say to her husband.\ntt0389860,912ib1YghJ4,Morty shows Michael the powers of his universal remote.\ntt0389860,yywlulXZ0ls,Michael wakes up to discover that he has traveled another 10 years in the future and is now morbidly obese.\ntt0389860,VmZ1ni2IDdo,\"Michael comes home with gifts for the kids to celebrate his promotion. Then, he travels back in time to his first kiss with Donna.\"\ntt0389860,pDj1GM3RRWs,Michael travels back to the last time he saw his father before he passed away.\ntt0389860,hjhBzRH-plo,Michael uses his remote to keep himself entertained during Ammer's sexual harassment speech.\ntt0389860,9O-NfAWrkDM,\"As Michael passes away, he shares what he has learned from skipping through his life.\"\ntt0389860,CKIh_vKo7Fg,Michael returns to his home to find that his children are now teenagers and Donna is remarried.\ntt0389860,dVFDYCPO19A,\"When Ammer tells Michael he hasn't been promoted yet, he uses his remote control to pause time and get revenge.\"\ntt0389860,9LvgzVmAFxo,\"Michael uses the remote to skip through traffic, check out some boobs, and change his skin color.\"\ntt0389860,wUVJf2CkNNw,\"Michael uses his remote to skip a fight with Donna. Then, he makes the make up sex go by in a flash.\"\ntt0106379,ZIdKsGWToLo,Lucinnius tells Hector that he must commit suicide by tomorrow morning.\ntt0106379,1QC88NQZM-8,Hector lets the invaders know that they are taking his family.\ntt0106379,bWo3nlFcH5k,Lucinnius explains to Hector why he has to die beside him.\ntt0106379,32Fz-BBjVXs,\"Hector apologizes to Ursula, and lets her know he is leaving with the others.\"\ntt0106379,g3WSsm57iVM,Hector tells Beatrice that it is time for him to go home to his own family.\ntt0106379,hf1wQVWs0DA,Two deserters beg Hector to make sure they are not eaten once they die.\ntt0106379,WIZlfA5kV7Q,Hector investigates a claim that a tenant fell through the floor.\ntt0106379,HKRXTzENFa4,Hector explains to his children why he has been out of their lives the last few years.\ntt0106379,ZfyjpKP8zDk,\"Hector spends time with his family, and it may be the best moment of his life.\"\ntt0088707,Qk1y1yVQkJQ,The final day of the race begins with David tied for first with Muzzin.\ntt0088707,SccBZYmyjxE,\"Struggling to catch up to David, Marcus suffers an aneurysm. Sarah and Becky race to save him before he falls to his death.\"\ntt0088707,ngSM_wxh0lE,David races to the finish with Muzzin while his family cheers on.\ntt0088707,eZc3GMgzwyk,\"David takes a hard crash, but Marcus, Sarah and Becky cheer him on.\"\ntt0088707,DGpJ1ndBxOA,David and Marcus embark on one of the most grueling bike races in the world.\ntt0088707,DEmZWy1aDuo,\"David picks up Becky at McDonald's. Meanwhile, Marcus and Sarah have a much darker conversation in the van.\"\ntt0088707,TBHjt3AyALw,\"Sarah and Becky have a run-in with Jerome and Muzzin, who is a jerk.\"\ntt0088707,V15AidhVCSw,\"Marcus visits his mother for an awkward dinner, but learns some distressing things about his brother, David.\"\ntt0088707,evJPzjgv-2s,\"David takes on the gym's hardest endurance test while Dr. Conrad, his girlfriend Sarah and his brother Marcus cheer him on.\"\ntt0088680,Hp93d2bsfQc,\"Mistaken for art by Neil and Pepe, Paul gets a ride back to work.\"\ntt0088680,A-rs-kWL5-s,\"Paul deals with an obstinate bouncer, but getting into Club Berlin only makes matters worse.\"\ntt0088680,MsKaN_QrVT8,Paul can't even make a phone call without Gail messing it up.\ntt0088680,ZPMDA9N1itk,\"Paul tries his best to get away from Julie, who presents him with a gift.\"\ntt0088680,djTKMhvuXGM,Paul takes a peek at Marcy and leaves her body for the police.\ntt0088680,6iGsAYTmnLg,Paul grows impatient with Marcy when she shares some pot of dubious origin.\ntt0088680,zt4ek_5zQgY,Paul gives a relaxing massage to a sculptress named Kiki.\ntt0088680,-iK4M_EFvjc,Marcy tells Paul about her husband's strange sexual quirk.\ntt0088680,yEKOx9OHEz8,Paul starts to daydream while new co-worker Lloyd drones on and on about his publishing ambitions.\ntt0274309,ktt64clTkj4,Tony flirts with Miss United Kingdom as he tells her about his Factory Records.\ntt0274309,YH_vICd0WQ0,Tony is annoyed when he finds out that the new club manager's name is Tony.\ntt0274309,fwkzz6A_Qv4,Tony gives a speech about how he doesn't sell out after an offer is made to buy the company.\ntt0274309,3a6TxHEyLdo,\"Tony's sanity is questioned when he buys a table for the office that costs 30,000.\"\ntt0274309,UoMiVPjDb10,\"Tony does a televised report and goes hang gliding, causing multiple injuries to his body along the way.\"\ntt0274309,_B6AZdgQbeU,God dispenses some professional wisdom and compliments to Tony.\ntt0274309,SK4l-e7UvRs,Tony speaks to the people in the Hacienda and encourages them to loot on their way out.\ntt0274309,dfrJhivMJJY,\"Tony tours the space for his new nightclub, but Martin severs their relationship.\"\ntt0274309,SYffGozxMbU,Paul and Shaun feed poison to pigeons and watch them fall dead from the sky.\ntt0274309,NQgAVrZRz3o,Tony begs his wife Lindsay not to leave him.\ntt0274309,90j6V8EjSuI,The irascible Martin Hannett records the Joy Division album.\ntt0274309,ghZ6ntXQp3E,Tony disparages jazz and jazz musicians.\ntt0101701,mbBhikLj86Y,\"Janet reappears in a beautiful dress, only to tumble down the stairs as Jack watches.\"\ntt0101701,GusR6qF81kc,\"Back in the real world, Jack reunites with Louise when he recognizes her strange lunch order.\"\ntt0101701,vD6FkjOtIIs,Jack is surprised to discover that Robert Wagner has been cast in the role of Jack Gates.\ntt0101701,_x3KSXMXzwM,Jack realizes that writing while drunk can lead to awkward and embarrassing moments in the soap opera world.\ntt0101701,XKNZy6gahyc,Jack blindfolds himself behind the wheel and forces Rachel to give him directions.\ntt0101701,pfOJfhbqJhY,\"Jack writes himself into the role of hero to save Rachel on a wild horse ride, but he needs a little saving himself from Janet.\"\ntt0101701,VPXd9ANX3Bw,Jack jumps through a window and saves Janet from some thugs.\ntt0101701,E8x4G2WceJA,Jack tries to convince Janet that they're living inside a soap opera.\ntt0101701,_g-f7cZGqJ0,\"When the cable repairman criticizes the quality of a soap opera, Jack admits to writing it.\"\ntt0101701,VXx_DVHO0go,\"Nervous for her audition, Louise has an awkward run-in with Jack and a fellow actress.\"\ntt0101701,ARgghWSmq7Q,\"Jack wakes up to find himself not only a character in his own soap opera, but also a patient to an actor who believes he's a doctor.\"\ntt0101701,nKuJ6UvlGek,\"After filming a scene for \"\"Beyond Our Dreams,\"\" Dennis and Laura discuss acting technique.\"\ntt0100258,7AB4ab4LtFo,Barbara goes back to the farm after rejoining with other survivors.\ntt0100258,o5CBItcNkFs,Ben clears the porch and front yard of zombies.\ntt0100258,hH1TgDvC7sY,Barbara and Ben face off against Harry after he refuses to kill his daughter turned zombie.\ntt0100258,bLX_zt_MhW0,\"Ben, wounded and trapped in the basement, has a final smoke.\"\ntt0100258,ETxIJN_avuM,Ben assists Judy and Tom in their attempt to get to the gas pump to fill the truck.\ntt0100258,aPUaHUwJJk8,\"After everything starts to go to hell, Helen retreats to the basement only to find her daughter has become a zombie.\"\ntt0100258,QvdszN3x7M4,Ben helps Barbara get rid of the zombies inside the farm.\ntt0100258,NZ2qhFm6LO8,Barbara and Johnnie go to visit their mother's grave and make a grisly discovery.\ntt0100258,MrhV0mA-bWg,Barbara proves to the other survivors in denial that their attackers are in fact zombies.\ntt0100258,z1RLdJwkFZA,Barbara holds off oncoming zombies as the other survivors search a body for keys.\ntt1282140,-uPSVWxV6d8,After Marianne thinks she got through to Olive she quickly wants to become best friends.\ntt1282140,VBLIuICtHuo,\"In order to get the school to turn into her live webcast, Olive performs, \"\"Knock On Wood,\"\" at the pep rally.\"\ntt1282140,KKD0B8uROMI,Olive signs off on her webcast and ride's off into the sunset with Todd.\ntt1282140,32I5RODje3o,Olive has a serious conversation with her mom after revealing to Mr. Griffith the truth about his wife's infidelity.\ntt1282140,EXwr6U_YypE,Olive is approached by Evan to fake another sexual encounter to increase his popularity.\ntt1282140,h9GHe5K0kOI,Marianne asks her religious group to both pray for Olive and simultaneously get her kicked out of school.\ntt1282140,ylvh800i85I,\"Instead of admitting to skipping Riannon's camping trip for no reason, Olive lies and says she spent the weekend losing her virginity.\"\ntt1282140,wJZP20y0R2Q,Olive decides to embrace her role as the school's harlot by dressing provocatively and wearing a scarlet letter A.\ntt1282140,XFKhIBH23-Q,Brandon asks Olive to pretend to sleep with him so that his classmates will stop bullying him.\ntt1282140,S04wIhoGYQY,Olive and Brandon pretend to have sex at a party with all their classmates listening.\ntt0852713,R0HGeVmyI5I,Shelley makes an impassioned speech for the survival of the Zeta House.\ntt0852713,io-hA6pxffU,Shelley tries to have a Zeta house car wash to garner some male attention.\ntt0852713,jEKFfdQEbcg,Shelley goes on a date with Oliver to disastrous results.\ntt0852713,vBLcmGPbryg,Natalie awkwardly flirts with her crush Colby.\ntt0852713,QUI-9FAwA8w,Natalie gets a welcomed visit from Colby while the Zetas hope to recruit more pledges.\ntt0852713,OJyRbpjlrmA,Shelley tries to impress with her intelligence while on their second date with Oliver.\ntt0852713,61cBscxr69E,Shelley and the Zetas completely remake themselves and their house.\ntt0852713,wySz6ysIDhs,Shelley meets the Zeta house and shows off her disarming trick for remembering names.\ntt0852713,sL6gDhH7FpE,Shelley visits the Zetas to become their house mother and meets Natalie.\ntt0852713,YgnhijYmavY,Shelley runs into trouble after being kicked out of the Playboy Mansion.\ntt0879870,Vb6cuUI7B3E,\"Liz writes an email to her ex-boyfriend, David.\"\ntt0879870,jsyzJJFZzsg,Liz tells Felipe her word.\ntt0879870,MGGGksL1ziM,Felipe confesses his love for Liz and tries to see if she feels the same.\ntt0879870,GbCytLu1-3k,Liz and Sofi eat pizza in Naples.\ntt0879870,uA1Kloz4Ics,Liz takes Felipe to get his palm read by Ketut.\ntt0879870,fJV0KtMZ7x8,\"After being almost hit by a truck, Liz goes to see a healer named Wayan.\"\ntt0879870,mxz_RfabdUo,Felipe takes care of a hungover Liz.\ntt0879870,kRuKg_khl8Q,\"After some hestitation from his failed marriage, Felipe falls in love with Liz.\"\ntt0879870,8Ojsvc_KsDY,Richard gives Liz advice on letting go.\ntt0879870,bvITByUy5fA,\"Following her divorce, Liz decides to travel the world in order to find herself.\"\ntt1114740,F8Y0hCMWyFg,Paul fails his Police Academy test and washes away the pain with pie and peanut butter.\ntt1114740,EpcWBu5f2uY,Paul tries to save the hostages and fails twice.\ntt1114740,MeyU68qSBMI,Paul traps one of the criminals in a tanning bed and documents the code written on his arm.\ntt1114740,BvcBo3De8Hc,\"Commander Kent turns out to be working with Veck, but Brooks steps in and saves the day.\"\ntt1114740,Yb4Lrplxq_A,\"Paul tries to leap from a moving minivan to save the hostages, but fails.\"\ntt1114740,7EcK-LuhzAA,Paul accidentally eats a hot pepper during a nacho eating contest and washes it down with alcohol. He proceeds to get drunk and make a fool of himself.\ntt1114740,JjbIo_301ZA,Paul takes out Veck's henchmen one by one in the Rainforest Cafe.\ntt1114740,CfaPUQMa1gc,\"While hiding from the bad guys, Paul falls out of a ventilation shaft and knocks out Vixen.\"\ntt1114740,ptAdtShJa_0,Paul observes the criminals at the bank and reports back to Brooks.\ntt1114740,gmSeaKdO9IQ,\"After Paul's hypoglycemia kicks in, he must eat a sucker off the floor in order to bounce back and follow through with his plan to defeat Veck.\"\ntt0117008,Ey-zuaZV8pM,\"Matilda Wormwood, a genius from an early age, learns to take care of herself without her parents help.\"\ntt0117008,mwMmZ8dtWNM,Matilda convinces her parents to let Miss Honey adopt her and the two live happily ever after.\ntt0117008,fqnhqkXclUk,Matilda finally gets rid of Ms. Trunchbull.\ntt0117008,rDTZ6A5zsYc,Matilda discovers the secret to controlling her powers.\ntt0117008,q289a8P8Ht8,\"After sneaking into Trunchbull's mansion, Matilda and Miss Honey are surprised by Trunchbull's return.\"\ntt0117008,alE17GLFoQE,Matilda gives Trunchbull a taste of her own medicine.\ntt0117008,ntirWguFrfM,Matilda arrives for her first day of school and witnesses the terror of Trunchbull firsthand.\ntt0117008,EOQeU_6vbeg,Matilda watches as Trunchbull publically humiliates Bruce Bogtrotter in front of the entire school by forcing him to eat an entire gigantic chocolate cake.\ntt0117008,WoN5cCs0l2M,Matilda discovers that her father is a criminal and decides to teach him a lesson when they go to a fancy resturant to eat.\ntt0117008,IeCZqVq7_pY,Matilda gets a bit of revenge on Ms. Trunchbull during an aggressive visit to the classroom.\ntt0099204,sfWe6CUZUtc,Larry makes Joey call his mom.\ntt0099204,oyqIjdFcJVg,\"Joey tries to calm Larry down, and then takes a quick sales call.\"\ntt0099204,j2ZsEQ4Fr4c,\"When Lila sneaks into the dealership, the group glimpses the extent of Joey's philandering.\"\ntt0099204,ri8WqeTAUDE,\"During a quiet moment, Joey and Larry discuss love, marriage and unemployment.\"\ntt0099204,MnLvPe6VSTM,Joey helps Larry communicate with the police.\ntt0099204,sdvrA5qnZo4,\"Holding the crowd at gunpoint, Larry roots out his wife's lover: Joey.\"\ntt0099204,VVlECM2KyYg,Joey handles an assortment of would-be car buyers.\ntt0099204,yfg9cb_9NWQ,\"Negotiating with the NYPD, Joey calls a time-out to determine Larry's demands.\"\ntt0099204,XLAGTl0Nnws,\"At Joey's urging, Larry frees his female hostages.\"\ntt0099204,4ri_ybNiTPU,\"Things get awkward for Joey when his mistress, Joy, brings her husband car-shopping.\"\ntt0099204,8gvuU-U64d0,Joey attempts to sell a widow a new car at her husband's graveside.\ntt0099204,VQjjlqVjiII,\"Crashing his bike through the window, Larry assaults his wife and her coworkers with an AK-47.\"\ntt0097757,z_a4zak_zk0,Charlotte runs outside the house when she sees her mom kissing Joe.\ntt0097757,27moTiftkCc,Mrs. Flax teases Charlotte on how she drives.\ntt0097757,DTdDzcr-7UM,\"Charlotte goes to the doctor because she thinks she's pregnant, but the doctor explains to her that she is still a virgin.\"\ntt0097757,blQ8Wi0VAn0,Mrs. Flax expresses her anger towards Charlotte for running away.\ntt0097757,7OIn2KFDWjM,Mrs. Flax and the girls dance in the kitchen listening to a Jimmy Soul song.\ntt0097757,tV7wQ19UBqg,Charlotte stands up to her mom and says that she doesn't want to move.\ntt0097757,kpYZ4G1AQ0c,Charlotte talks herself through a nerve-wracking fishing trip with Joe.\ntt0097757,rGAjkzbV8zw,\"Charlotte is horrified when her mom speaks to two nuns in a shoe store, and wishes she could talk to them too.\"\ntt0097757,_sZ4U5aOee0,Charlotte feels as though she has sinned after her and Joe kiss.\ntt0097757,kswPGoPPdwE,Charlotte holds back her excitement when Joe tells her he used to live in her house and in her bedroom.\ntt0097757,3XZ9vtsDiuM,Charlotte secretly watches Joe from behind a tree and prays to God that she won't fall in love with him.\ntt0097757,FSlLXYohrJg,Charlotte is on edge as she makes sandwiches for her day with Joe and tries to ignore some advice from her mother.\ntt0409182,Vnp8CkPERus,Dylan tethers a fire hose across the lobby so that Robert and Jennifer can slide to safety.\ntt0409182,Fk69RQS7D8Y,Dylan tries to send a nitrogen tank through the window in order to destroy the propeller.\ntt0409182,qcYPASs4jMQ,Robert sacrifices himself to save the other survivors.\ntt0409182,njnCT6sD1Bk,Lucky Larry uses a lever to free Christian from under a girder.\ntt0409182,i3VNgECX8Ko,The survivors wait for one tank to fill with water so that the next chamber will open up.\ntt0409182,2HMLj2siVxY,Elena gets caught as she attempts to swim through the flooded chamber.\ntt0409182,oZ28XpWmN00,Conor saves the day when the survivors must find a passage through a flooding vent system.\ntt0409182,9VsHtn_RSHY,The luxury cruise ship Poseidon capsizes when struck by a giant tidal wave.\ntt0409182,-TqNDG7L__A,Lucky Larry insists on going first and ends up paying the price.\ntt0409182,b74611maYgQ,Dylan tells Richard to sacrifice Valentin in order to climb through the elevator shaft.\ntt0089175,kndeWhsNlJs,Charley has a final face-off with Jerry to save Amy's life.\ntt0089175,VNLN5xyxwAY,A transformed Evil Ed chases Peter Vincent.\ntt0089175,PvoBUI7uz-w,Charley and Peter Vincent begin their final standoff against Jerry.\ntt0089175,CxrQd6Sn5PA,Charley and Peter Vincent are stalked by Billy.\ntt0089175,vfc3TGvcjEY,Charley gives chase after Amy is kidnapped by Jerry.\ntt0089175,MBqT-UEySlI,Evil Ed is chased down an alley by Jerry and given a choice.\ntt0089175,68igl3sbzFI,Amy is seduced after waking up inside Jerry's bedroom.\ntt0089175,dshJG5PEOqY,Charley brings Peter Vincent to visit Jerry to test the possibility of Jerry being a real vampire.\ntt0089175,w98xbfLGWro,Amy and Evil Ed find out what Charley's been preparing for battle.\ntt0089175,gnWkYf8Peo8,Jerry visits Charley in his bedroom and during a fight has his true form revealed.\ntt2241351,UnllAPMRnKE,Kyle forces Lee to take responsibility for making a terrible stock recommendation.\ntt2241351,pUmu0VJuwOA,Lee Gates is interrupted mid-broadcast by a gun toting Kyle.\ntt2241351,OpwYfz6uFaQ,Lee tries to buy time by getting Kyle to talk about his personal problems.\ntt2241351,_pzN5x6Pepw,Lee and Kyle confront corrupt banker Walt Camby.\ntt2241351,L06qVvXrJus,Lee and Patty settle in after the hostage situation ends.\ntt2241351,IVRy-Jac660,Lee realizes that a police sniper is going to shoot him instead of Kyle.\ntt2241351,Bf6I7N-DC7g,Lee Gates is taken hostage by Kyle while hosting a live taping of his show.\ntt2241351,kt1aHAlXi4g,\"When Patty tries to get an earpiece to Lee to communicate with him, her producer Ron is shot.\"\ntt2241351,EjAwbjng__4,Kyle gets a call from his wife Molly during hostage negotiations.\ntt2241351,58DPO_8Bd88,Diane discusses the banking algorithm at the center of the hostage situation with programmer Won Joon.\ntt0172493,F58XJgGx3DY,\"Susanna and Lisa sing \"\"Downtown\"\" to cheer up Polly.\"\ntt0172493,6VhCGQODB5U,Lisa reads Susanna's diary to anger the other girls and push Susanna over the edge.\ntt0172493,DTexn9N2HMI,Susanna is tortured by Lisa to the point of breaking.\ntt0172493,Tq9zhCo-PTQ,Susanna searches for Daisy after an emotionally disturbing night.\ntt0172493,pvNA2JkMfSI,Susanna gets a personal sit down with Dr. Sonia Wick.\ntt0172493,GdrUYcOTUvY,Susanna watches as Lisa emotionally tortures Daisy.\ntt0172493,WnAVeKAUxPY,\"Susanna tries to trade medication with Daisy, but is interrupted by Lisa.\"\ntt0172493,S3Po0Tld8Po,The girls from the ward have a day out and go to an ice cream shop.\ntt0172493,Gnpxe9kO_V8,\"Susanna is placed into a mental institution and meets the fiery, frantic Lisa.\"\ntt0172493,GEAh4nF90iw,Susanna discusses her condition during a family therapy session.\ntt0112818,DubYVqV92OQ,\"Sister Helen tries to help Matt realize that by refusing to take responsibility for the murders, he's making himself out to be a victim.\"\ntt0112818,_9qsxe5kHdo,Matthew's family comes to see him for the last time before his execution.\ntt0112818,pz6wAzZlnhE,Matthew says his last words and apologizes to the families of the deceased. He and Sister Helen share a final sentiment.\ntt0112818,UQmQ7d-wXQE,Sister Helen watches as the lethal injection process takes the life of Matthew.\ntt0112818,tG2qsoC_-hs,The Percy's are infuriated when Sister Helen visits them and says that she is going to be Poncelet's spiritual advisor.\ntt0112818,ryqyAX_lA7w,Matthew's recalls the murder and rape of his victims during his last moments on the gurney.\ntt0112818,qaAz6YklimY,\"Sister Helen gets pulled over for speeding, but is only given a warning when the officer discovers she's a nun.\"\ntt0112818,qAfsU2gI408,\"As Sister Helen Prejean goes to meet convict Matthew Poncelet, she remembers the powerful warnings she was given.\"\ntt0112818,vUbnqySPN8E,Sister Helen shares Matthew's final steps and comforts him before his death.\ntt0112818,exCuIisMWl0,Sister Helen sings a hymn for Matthew as time quickly runs out.\ntt0112818,6wyRTKGY2Tw,Matthew makes an emotional confession to Sister Helen about the murders and the rape he was convicted of.\ntt0310793,DC2QaWmat7A,Charlton Heston walks out of an interview after Michael Moore asks him about his decision to travel with the NRA to cities after a tragedy.\ntt0310793,rczP7CJB4Hs,\"Michael Moore questions Charlton Heston about America's high murder rate, which Heston blames on the country's long history of violence.\"\ntt0310793,oeQ4HWhPEdA,\"Marilyn Manson responds to Moore regarding his feelings about being blamed for youth's violent behavior, and discusses his feelings on the President.\"\ntt0310793,vJZe9sHz10M,A K-Mart spokesperson announces their decision to stop the sale of handgun ammunition in their stores nationwide.\ntt0310793,jY2PzzjO3zo,\"Michael Moore opens up a new bank account, and in return, receives a free gun.\"\ntt0310793,0C4yBk6syOE,James Nichols talks to Michael Moore about gun control and shows Moore the loaded gun he keeps under his pillow.\ntt0310793,yEyQgxLmGmI,James Nichols talks to Michael Moore about the people's duty to overthrow a tyrannical government.\ntt0310793,djr5QNJG73k,Michael Moore interviews a Michigan officer about a case where a hunter was accidentally shot by the gun that he placed around his dog's neck.\ntt0310793,b4vpGhO2LwA,\"Michael Moore talks to members of the Michigan Militia, creators of the Militia Babes 2002 calendar.\"\ntt0310793,58BDrZH7SX8,This animated sequence presents a view of American history not found in any textbook.\ntt0310793,0_-45EGFtA4,\"Matt Stone, co-creator of South Park, talks about his experience of going to high school in Littleton, Colorado.\"\ntt0022913,NkmUIQL4spM,Madame Tetrallini defends the circus performers to Jean the Caretaker.\ntt0022913,hqqlSTB5CfU,Hans relents and alows Frieda to visit him in his mansion.\ntt0022913,CrlVTZFPnzA,\"The Freaks turn on Hercules and Cleopatra, attacking them during a storm.\"\ntt0022913,knJ438gN25k,Hans catches Cleopatra putting poison in his medicine.\ntt0022913,39Bnk6VU53Y,\"When the Freaks accept Cleopatra as one of their own, she rejects the invitation and sends them away.\"\ntt0022913,SF5EacV4NI0,\"Koo Koo the Bird Girl dances on the table at Hans and Cleopatra's wedding reception, but Cleopatra is secretly poisoning Hans.\"\ntt0022913,NTswp_20tsA,The Living Torso lights a cigarette using only his mouth.\ntt0022913,-DXU2ZHuiTs,\"Daisy and Violet Hilton, conjoined twins, demonstrate their ability to experience each other's physical sensations.\"\ntt0022913,RUUhcK3Pt14,\"Josephine Joseph, a half-woman half-man, gives an alluring look to Hercules.\"\ntt1535109,yEeyJzItKAg,\"Captain Phillips jumps out of the lifeboat and makes a swim for it, but Muse jumps in after him and drags him back.\"\ntt1535109,ng95gpwSjZU,Muse is arrested and Captain Phillips has his injuries examined.\ntt1535109,9z8uqVHf39M,\"When the Maersk Alabama crew makes the trade and lets Muse go, the pirates kidnap Captain Phillips and escape in a lifeboat.\"\ntt1535109,bPiv1wP8q7g,\"Najee threatens Captain Phillips and the pirates start to argue, but it's cut short when a rescue ship sounds its alarm.\"\ntt1535109,KgmFWHZXmiY,\"When the Navy sends some officers to check on Captain Phillips in the lifeboat, Najee gets nervous and shoots his gun right near the Captain's head.\"\ntt1535109,XM3MRt89zy4,The Maersk Alabama crew captures Muse and forces him to make a deal with the pirates.\ntt1535109,j21idqW08wU,Captain Phillips delegates duties to his crew after the pirates board the Maersk Alabama.\ntt1535109,kSmAfIP9CoQ,The crew tries to defend the ship while the pirates try to find an entry point around the hoses where they can board.\ntt1535109,tf_RRItKJm0,\"When pirates approach, Captain Phillips tricks them into thinking help is on the way.\"\ntt1535109,KHsn2smp4N4,\"Muse takes command of the ship, demanding that Captain Phillips produce the crew.\"\ntt4178092,XuGD4tGeLFc,\"Simon confronts Robyn about abusing prescription pills, which leads to an explosive argument.\"\ntt4178092,mmCjPdu2TC4,\"When Simon tells Gordo to leave him alone, Gordo locks them in behind his gate.\"\ntt4178092,8gfk5E2iwdU,Robyn discovers that their fish are dead and dog is missing. Simon discovers that Gordo does not live in the house where they had previously visited him.\ntt4178092,R4ZGoNehEp4,\"After taking a drink, Rebecca fears there is someone in the house. As she searches, she passes out.\"\ntt4178092,WzUMVMrEGnE,\"When Gordo refuses to accept an apology, Simon loses his temper and attacks him.\"\ntt4178092,EtKt8Q32_Rk,Robyn learns that her husband used to be a bully.\ntt4178092,3vjTjf7m3Bs,\"On the day he becomes a father, Simon loses his job and Robyn asks for a divorce.\"\ntt4178092,FnT4pAV1Cg4,\"Gordo taunts Simon, leading him to believe he molested Robyn and giving him doubt that his newborn child is his own.\"\ntt4178092,5T4sIC7SB_4,\"While Gordo visits Robyn in the hospital, Simon receives his final gift.\"\ntt4178092,TmnPP66kwwg,Simon is attacked by the man he sabotaged to get his promotion.\ntt2717822,Htp6crkePuw,\"Hathaway and his team break in to Kassar's hideout, only to discover that it's a trap.\"\ntt2717822,b3lOpSXhT0c,\"After discovering that they're being watched, Hathaway and Lien are attacked in a Korean restaurant.\"\ntt2717822,7HWfwLBqSQ4,Hathaway deceives a member of the NSA in order to hack into Black Widow.\ntt2717822,qB311wvyggM,Hathaway stalks the hacker and Kassar through a crowd to take them down once and for all.\ntt2717822,lCqHKRjIMu8,Hathaway gets his vengeance on the hacker who killed his friends.\ntt2717822,tru0WMH7yic,Hathaway leads a team into an extremely hot chamber to steal sensitive information.\ntt2717822,ngRthItc3Yc,\"After a deadly shootout, Hathaway and Lien are forced to flee, leaving no time to grieve their losses.\"\ntt2717822,gPAI19a84KU,\"After an argument in the car with his sister Lien, Dawai falls victim to an attack by Kassar and his men.\"\ntt2717822,Lr04AEabtnY,Hathaway drops a truck off the roof in order to cause a diversion and steal sensitive information.\ntt2717822,fPEGcx4MFHI,Lien uses her feminine charm and cunning to help Hathaway hack the bank account of a powerful terrorist.\ntt0155267,JcRuXU7cvmo,\"Just as Catherine starts to cry on the plane, Thomas reveals that he is there with her.\"\ntt0155267,C3rDWENRI7c,\"Just when the detectives think they've got him, Thomas makes things interesting when he employs a bowler hat.\"\ntt0155267,MODlCaeiT0M,Thomas and his look-a-likes continue to allude the detectives in pursuit.\ntt0155267,yCrq5v5cg1A,Things heat up on the dance floor for both the investigation and the relationship between Thomas and Catherine.\ntt0155267,2zSE8r8jU_U,\"To show her distrust of Thomas Crown, Catherine burns a supposedly priceless painting.\"\ntt0155267,gp8OWUqg4r4,Detective Michael McCann is less than enthused to have Catherine Banning on the art theft case.\ntt0155267,ecmDPqCP8ms,Thomas and Catherine get to know each other over dinner and Thomas realizes he's met his match.\ntt0155267,kJKWjeMtEDM,Thomas steals a Monet from the museum and leaves undetected.\ntt0155267,GUDrinKzSus,Thomas and Catherine meet each other for the first time and she is straightforward about her objectives.\ntt0063688,KAE8h2rqA6g,\"Crown is a no-show at the cemetery pickup, but sends along a message for Vicki.\"\ntt0063688,z21tJkx07J8,\"Crown and Vicki's flirty chess match gives way to \"\"something else.\"\"\"\ntt0063688,k5bN73OnGmo,Crown and Vicki begin a game of chess.\ntt0063688,aWIcfkvKj9Q,Crown tells Vicki he intends to rob more banks.\ntt0063688,a6XtVMtUZI8,Vicki puts Crown in a room with getaway driver Erwin ; Crown keeps his cool.\ntt0063688,688uSEwvYnQ,\"Reviewing photos of possible suspects, Vicki is drawn to Crown.\"\ntt0063688,bzSIHZcXwvQ,\"Crown encounters Vicki, who promptly announces she's investigating him.\"\ntt0063688,6XRJuEv5Ya4,\"The insurance company flies in a top specialist, Vicki, to investigate the heist.\"\ntt0063688,fwkB6wAxNVM,\"On Crown's signal, the robbers converge for the heist.\"\ntt0063688,ut_z2-96X0o,Erwin is hired by a silhouetted Crown to drive a getaway car.\ntt0063688,Fw19beLDqn8,\"Following the successful heist, Crown erupts in a fit of laughter.\"\ntt0114134,jHl4T9F9Vjw,\"Nagiko returns home to find that Jerome has accidentally overdosed, and in her grief, she writes her next book on his dead body.\"\ntt1596345,2oDVJbZxmtk,Even Spassky is dazzled by Bobby's unprecedented chess techniques that win him the 1972 World Chess Championship.\ntt1596345,_aj999HtbtE,Bobby uses a new technique to beat Spassky in the third game of the 1972 World Chess Championship.\ntt1596345,ZqCnbtz5IgI,\"Father Lombardy is frustrated with Bobby's attitude. Bobby panics at the airport and runs away, failing to appear at the opening ceremonies of the World Chess Championship.\"\ntt1596345,GlVzp0Ldv4k,\"In the first game of the 1972 World Chess Championship, Bobby gets distracted by several things and loses to Spassky.\"\ntt1596345,tQQ2Cp7xQho,\"Spassky refuses to win by forfeit, so he decides that he will play Bobby wherever he wants.\"\ntt1596345,FBhqtV3pVe4,\"Bobby forfeits his second game against Spassky, refusing to play again until his demands are met.\"\ntt1596345,dluHLk1Hm64,Bobby freaks out with extreme paranoia when Paul mentions he had coffee with his sister Joan and Father Lombardy calms him down.\ntt1596345,ntVZPACMOYA,Bobby waits until the last second to play his anxious Russian opponent and after he wins he decides not to play again until all of his conditions are met.\ntt1596345,PgotX7s-2YY,Paul tries to convince Father Lombardy to be Bobby's second and Bobby shows Lombardy how he could have won a match he lost.\ntt1596345,Ma_h1r7VTME,Young Bobby is determined to win after he loses a game of Chess to Carmine.\ntt4183692,-7Qoxub52B0,Coach Gerelds stands up for the school after a tense racial conflict.\ntt4183692,M89zKEGFuME,\"Tony scores a huge touchdown, upsetting the other team to win the game.\"\ntt4183692,UUD5-dcDdBw,Hank uses the story of David & Goliath to motivate Tony and the team to win the game.\ntt4183692,6VUothtoSeM,\"Tony refuses to take a picture with the racist governor. Then, a man throws a brick through his window and burns his jersey in the front lawn.\"\ntt4183692,x26Mst06IoY,\"When Tony gets emotional after losing, he finds inspiration from Coach Gerelds and the Lord.\"\ntt4183692,ws5scfTVUA0,Tony inspires Coach Gerelds to pick up his hat and become a coach again.\ntt4183692,Al3TIVxEPm4,Tony inspires the crowd when he scores a game-changing touchdown.\ntt4183692,H0Bzz3gzvk8,Paul gives Tony some words of encouragement.\ntt4183692,jSStdc_wWV8,Hank leads the crowd in prayer before the big game.\ntt4183692,L6ayQbTmoxg,Hank preaches the word to the football teams and their fans before the big game.\ntt0112887,OTjYvVfWORo,\"As Jordan and Amy have sex, Xavier joins in and makes it a threesome.\"\ntt0112887,TShV3gWFAIY,\"Jordan catches Xavier and Amy having sex, and instead of stopping them, he masturbates to their lovemaking.\"\ntt0112887,CyetT8hwwtk,\"After Brandi mistakes Amy for a former lesbian lover, a fight breaks out at the Tinfoil Bar.\"\ntt0112887,Mq3CFDYCWfA,\"Xavier introduces Amy to his tatoo of Jesus, and then seduces her.\"\ntt0112887,-vNo9qyUHho,\"A drunk and confused Carnoburger Cashier threatens Jordan over the whereabouts of his long lost love, \"\"Sunshine\"\", aka Amy.\"\ntt0112887,5oEUU8YjUkg,\"Jordan and Amy talk about the meaning of love, but are suddenly interrupted by a street fight.\"\ntt0112887,V0qYlLqMPNI,Absolute mayhem breaks loose when Xavier tries to save Amy and Jordan from an angry store clerk.\ntt0112887,x9GGBivRItA,\"Xavier flirts with Jordan, but infuriates Amy with his rudeness.\"\ntt0112887,AMHSm2gTUmA,A routine ordering of fast food turns hostile when the Carnoburger Cashier mistakes Amy for a former lover.\ntt0114134,TlxOj02Wodk,\"Jerome offers to be a messenger for Nagiko, personally delivering her manuscript to the publisher.\"\ntt0114134,aENEFwxcrBs,\"Nagiko sends her final book to the publisher, and confronted with his crimes, he chooses to end his life.\"\ntt0114134,2thZKjnQnK4,A jealous Jerome begs to see Nagiko.\ntt0114134,p-0nV3vGvTQ,\"When Nagiko is disappointed with his writing, Jerome challenges her to write on his skin.\"\ntt0114134,45MzBLAUUpk,Nagiko and Jerome engage in the body writing ritual that has been her obsession since childhood.\ntt0114134,t_GWHV52Tds,Nagiko lashes out at Jerome's mother when she suggests that he only liked her because she's fashionable.\ntt0114134,MFUZGrdKqtM,Nagiko meets Jerome at a cafe and asks him to write on her skin.\ntt0114134,uMWI1q_J3mk,Nagiko leaves her husband when he reads her diary and forbids her from wiriting in English.\ntt0114134,foPz4rJfgSQ,Nagiko recalls her first encounter with her future husband at the age of six.\ntt0114134,ATOpJHEjvlI,Nagiko's father marks his daughter as God once marked His creation.\ntt0070460,271ymG6B7aw,The film crew has a frustrating time controlling a cat.\ntt3569230,VvSlUEWVleo,Reggie is sad when his wife commits suicide.\ntt3569230,oYQWryzBuhs,Ron doesn't trust his business partners and Reggie tries to convince him it'd be crazy to kill people on their team.\ntt3569230,R7qVgpQEVBM,In a fit of Reggie stabs Jack to death.\ntt3569230,WXUGWaYOnUs,Reggie is furious with Ron for ruining their club while he was away.\ntt3569230,Qy6dBc-9HRQ,Ron kills Cornell in front of several witnesses and Reggie has to clean up his mess.\ntt3569230,84WvFryk-1E,Reggie starts a fight with Ron and feels guilty when he sees the damage they did.\ntt3569230,AxUh8zdgPeM,Reggie climbs up a building to propose to Frances at her window.\ntt3569230,y-gs5U3OMMM,\"The Krays agree to a partnership with Angelo, representing the American Mafia.\"\ntt3569230,xNwPw7mQnpo,\"When the prison guards beat Reggie to prove a point, Reggie cuffs one to his jail cell and beats him back.\"\ntt3569230,j1eQNUaOfZ4,Ron and Reggie severely beat some gangsters fighting on behalf of the Torture Gang.\ntt3077214,OYpO9k6l8Bk,\"Thousands of people gather to mourn the loss of Emily Wilding Davison, a suffragette who will inspire a change in women's rights in the UK.\"\ntt3077214,0KZ6EPv2Gio,\"Maud reads a book Emily gave her, and Edith reveals the only good news Emily's loss brings.\"\ntt3077214,uov-TD5osLM,Maud is subjected to force-feeding after going on a hunger strike for five days.\ntt3077214,syM_HVHMynw,Steed scolds Maud for her violent acts and Maud defends the suffragettes.\ntt3077214,9i9S12dwwKM,Emily is run over by the King's horse after trying to attach a flag to it as an act of political activism.\ntt3077214,cazTXFYZ9gw,Maud discovers that Sonny has given George up for adoption.\ntt3077214,tTlhLBjQdPc,Maud burns Taylor with an iron and Steed tries to convince her to give him information about the suffragettes.\ntt3077214,hsK4vleN-fE,Maud and other suffragettes are arrested after an accidental riot forms out of political outrage.\ntt3077214,ecRAEoKp51M,Maud gives her testimony to the court in regards to the upcoming vote on women's rights.\ntt3077214,buqRQWuVcw0,Mrs. Pankhurst gives the suffragettes hope with her inspirational speech.\ntt0318374,zKATih1nvVo,Shelly takes Larry to the bathroom to teach him a lesson.\ntt0318374,wRN8Q_Lts7k,Bernie and Natalie are about to be shot by a corrupt cop when a drunk driver saves the day.\ntt0318374,-2KG4lLGEl0,Shelly uses a colorful analogy to defend old-time Las Vegas against the family-friendly changes being suggested by Larry.\ntt0318374,RZKKrQ8y_Uw,Natalie seduces Bernie as his luck turns around in a big way.\ntt0318374,djh21tkgGJ4,Shelly tries to convince Bernie to stay in Las Vegas and work in his casino.\ntt0318374,AoKtg7t1Y0M,Natalie tells Bernie her dark secret about giving up her son for adoption.\ntt0318374,vkXY0EqahbY,\"Wanting to improve business, the condescending Larry recommends some new tactics to old-school casino boss Shelly.\"\ntt0318374,W4kci76gyn0,Buddy shoots up and tells Shelly about the way that lions age in the wild.\ntt0318374,uWY60oFlfxs,\"Bernie reunites with his estranged son, Mikey, in a Las Vegas diner.\"\ntt0318374,s33dP0ETrCo,\"Shelly describes the Shangri-La of \"\"Lost Horizon\"\" and laments the changes coming to Las Vegas and his casino.\"\ntt0318374,5Ii0_2kAYlU,Bernie tries to save Mikey from getting beaten by Shelly for cheating at the casino.\ntt0318374,lzo2hgdDUDw,Bernie bets a large sum on his game of craps as Shelly watches nervously.\ntt0108026,PW3WxPo74c8,Matthew gets stabbed by Little Leroy as he is trying to escape from the homeless shelter.\ntt0108026,QwkW-Rbo3kE,Matthew meets Spits and Tamsen when he and Jerry take shelter at their apartment for the night.\ntt0108026,Joh9cLv0bp4,\"After seeking out Matthew's grave, Jerry delivers an emotional goodbye.\"\ntt0108026,S1_AkfEVPpI,\"Jerry fights back when the cops try taking him to the homeless shelter, but Matthew doesn't get away so easily.\"\ntt0108026,iJGazi2EdrQ,Jerry christens Matthew the 'saint of the homeless' after Matthew relieves Spits' pain with only the power of his touch.\ntt0108026,9ZEUnzRzvGg,Jerry tries to bring Matthew back to reality when he experiences one of his schizophrenic episodes.\ntt0108026,S1sbKYDgyWA,Jerry puts up a fight with Little Leroy when he catches him threatening Matthew.\ntt0108026,NQtL20JoP3Q,\"Matthew struggles to get the hang of his new job, but Jerry helps show him the ropes.\"\ntt0108026,SuEt5n-k0e8,\"When Little Leroy threatens to hurt Matthew, Jerry steps in and declares that Matthew is his son.\"\ntt0108026,ezOyoEG6GW8,\"When Matthew tells Jerry about his schizophrenic episodes, Jerry argues that all of the great saints heard voices.\"\ntt0070460,jSnvLrw4YR0,Julie convinces heartbroken Alphonse to stay and finish the film.\ntt0070460,tlI--ATerwo,Severine and the Ferrand share their thoughts on filmmaking.\ntt0070460,zFxkzMB3qCE,Dr. Nelson and Alexandre discuss the vulnerability of actors.\ntt0070460,p4HqnBtsz1I,The film crew is given bad news about the death of Alexandre and how the production may be shut down.\ntt0070460,nBsxbjTIJxs,The director Ferrand answers many questions from his film crew and explains the definition of a true director.\ntt0070460,Dj9G_kEq5W8,The director Ferrand has one mission: he must complete his film the best he can.\ntt0070460,uFNIrs3jtEQ,The director Ferrand gets frustrated when Severine can't remember which door to open.\ntt0070460,kYFrx0jdcoY,The director Ferrand gets the take he wants from a car stunt.\ntt0070460,W6KRJEKYY7k,The film crew shoots a complicated take in a town square.\ntt1285016,JFeaWHDQzQA,Marylin advises Mark to settle his court case.\ntt1285016,y3NLNK72mzI,Eduardo and his lawyers recount the story of how he was betrayed by Mark.\ntt1285016,Dwiczhta4e0,\"Mark shares exciting news about the business with Eduardo, all while he has a crazy fight with Christy.\"\ntt1285016,TGqOd_3mrr4,\"Mark and Eduardo take advantage of their new-found fame. Then, Mark decides to expand Thefacebook after a chilly encounter with Erica.\"\ntt1285016,k5fJmkv02is,\"Mark and Eduardo meet with the notorious founder of Napster, Sean Parker.\"\ntt1285016,6-_tIPShuwQ,\"Mark and Eduardo argue about a cease and desist letter Mark received from the Winklevoss twins. Then, Mark and the twins argue over the rights to Facebook.\"\ntt1285016,VlSkPA60ujQ,\"Mark acts like an arrogant jerk to his girlfriend, Erica, causing him to get dumped.\"\ntt1285016,rX6oUNKUbI8,\"The Winklevoss twins meet with the Harvard president, Larry Summers, to discuss Mark's theft of Facebook.\"\ntt1285016,6KHyMISpE18,Sean gives Mark business advice while partying at a night club.\ntt1285016,-Koj9hvcBMk,Mark asks for recognition from the Harvard board instead of hostility for breaking security measures.\ntt1568346,9jL7oaQAPMI,Lisbeth helps tend to Mikael's wounds after he gets shot at.\ntt1568346,i2xyQnF1kro,Mikael recruits Lisbeth in his hunt for a woman killer.\ntt1568346,5enqrVvjxg0,Lisbeth saves Mikael from getting killed by Martin.\ntt1568346,63Lf9kwyWd4,Martin leads Mikael on an ominous tour of his house ending in a room full of poisonous gas.\ntt1568346,gTakZ13l8xY,Martin explains the art of his crimes to a restrained Mikael.\ntt1568346,vP7uKAQLwXc,\"Lisbeth chases Martin on her motorcycle. She intends to kill him after his car flips, but then it catches on fire and she doesn't have to.\"\ntt1568346,YvNjJgJM728,Lisbeth tells Mikael why she's a ward of the state.\ntt1568346,mCSno4xODKY,Lisbeth deceives bankers into transferring Wennerstrm's money into her own accounts.\ntt1568346,DSaBwTpdfkQ,Lisbeth finds Mikael with Erika and decides against giving him her gift.\ntt1568346,iddBzE3syI4,\"Lisbeth visits Nils to get money, but Nils has more sinister intentions.\"\ntt3850214,bwoxnQ4eLR4,William argues with Malcolm and his friends about using the 'N' word.\ntt3850214,P2eknXZ8aLk,Malcolm writes his Harvard application essay.\ntt3850214,TktPJgdwMtQ,Malcolm seeks help from a criminal who asks him to punch him in the face.\ntt3850214,ytHR10ZesTY,\"The gang is introduced to their drug dealer, William.\"\ntt3850214,w-juhvM7yug,\"Malcolm and his friends tease Jaleel about his less than impressive rap. Then, they record a song in his studio.\"\ntt3850214,MnMwbnAWawE,\"While on drugs, Lily pees in broad daylight. Meanwhile, Jaleel causes a gang fight, causing a scene with Malcolm at the center.\"\ntt3850214,EHUO2DqnD-o,Malcolm and his friends run away from a drug lord who is tracing their iPhone.\ntt3850214,_4Od7V2mVG8,\"Dom and his fellow gangsters argue politics. Then, they are shot up by a rival gang.\"\ntt3850214,rLNN6Kef3Yk,Malcolm and his friends deal with life as a geek in a tough neighborhood.\ntt3850214,8BplQQtTt_A,Malcolm blackmails Mr. Jacoby for admission into Harvard.\ntt2473602,7doKgPFilPg,James Brown opens for the Rolling Stones.\ntt2473602,7DP-JKwZrA0,James Brown and the Famous Flames travel to Vietnam to sing for the troops.\ntt2473602,IfecgEak80I,James Brown meets Bobby Byrd after a prison fight.\ntt2473602,pKsa_9TFG48,Young James Brown fights other young boys in a boxing tournament.\ntt2473602,p_wCMFyHeUE,\"James Brown performs \"\"Night Train\"\" at the Apollo Theater.\"\ntt2473602,YYo5jJy61T8,Ben Bart and James Brown unveil the new band name to the group.\ntt2473602,_PSEaTZSZEE,James Brown convinces Ben Bart to consider new business practices.\ntt2473602,2rSnCcaMDdg,James Brown plays a show in Boston just after news of Dr. Martin Luther King Jr.'s death.\ntt2473602,4At_9_s2lDY,James Brown and Bobby Byrd sing Soul Power.\ntt2473602,9OlXAy0L0yI,The band confronts James Brown about their working conditions.\ntt0811080,5X_ZiFC5RMg,Royalton Industries' lead driver Cannonball Taylor cheats the race by using a spear hook to sabotage Speed Racer.\ntt0811080,qIs2PMXvAmQ,Speed Racer gets sharply aggressive on the racetrack while battling his competitors.\ntt0811080,YiCzTGRqCQ4,\"In the middle of the night, a ninja attacks the Racer Brothers.\"\ntt0811080,O-QaGllHqN0,Speed uses the lessons he learned from his brother to succeed on the racetrack.\ntt0811080,gC672314kEU,Trixie reminisces about her first interaction with Speed.\ntt0811080,YYsdcBacV2U,\"While racing to beat his brother's track record, Speed remembers his final days.\"\ntt0811080,gZ-QU3KT1PE,Racer X rescues Taejo Rogokahn from Cruncher Block and his goons.\ntt0243133,sR0wCC271s4,Ed Crane shares his thoughts about being a barber.\ntt0243133,GC9MkHzTnRg,Big Dave reveals to Ed that he knows he took his money and things turn violent.\ntt0243133,Zti44ptZTrc,\"Big Dave Brewster makes a startling confession to Ed, who sent him a blackmail note.\"\ntt0243133,KsimmeikE7w,Ed meets the lawyer who will help him get his wife out of jail.\ntt0243133,BjsuTimPBAM,\"Ed admits to killing Big Dave, but Freddy Riedenschneider takes it as a desperate lie to save his wife.\"\ntt0243133,gM8trQSURdg,Ed persuades Birdy to pursue her music career.\ntt0243133,f2Hz2k2PcfI,\"Using the Uncertainty Principle, Freddy Riedenschneider puts together his defense against Big Dave to save Doris.\"\ntt0243133,XtduKM28ohU,Birdy Abundas thanks Ed for his interest in her music career in such a way that he crashes the car.\ntt0243133,ZLjp7ahdbWc,Ed thinks about his past life as he prepares for his execution.\ntt0243133,hOB4Qm1IiOY,\"After Doris kills herself, Ed haunts his ruined life like a ghost.\"\ntt0119080,xPwAEt1Ajmk,Lenny threatens to kill Louis if he ever speaks to his wife again.\ntt0119080,IN0Nrftr8a0,Eve finds a letter that Louis wrote to explain his reasons for hitting Cisely.\ntt0119080,XzUFmbuyrCc,Eve visits Elzora for help ridding her family of an evil presence.\ntt0119080,DYt__vjvf9s,\"Sick of being stuck inside the house all day, Eve talks back to Roz and steps out of line.\"\ntt0119080,B0vxLqX3oAQ,Mozelle recalls the deadly showdown that occurred between Hosea and Maynard.\ntt0119080,10f-q34JJZs,Eve asks Mozelle about using voodoo to commit murder.\ntt0119080,WUVa_vf09dg,Mozelle mourns the death of her third husband and laments her inability to predict her own future.\ntt0119080,kIPK3l5gd9g,Elzora upsets Mozelle when she reads her fortune and predicts more death.\ntt0119080,O60YQRhi0s0,Eve wakes to find Louis making love to Matty.\ntt0119080,6LBW-X4DnSU,Louis sends Eve out to play when Stevie requests some unorthodox medicine.\ntt0119080,DbUDOZoHYkU,Louis tries to reassure Eve after she catches him with another woman.\ntt0065112,MF_RlYTOmco,\"Boris Kusenov exposes the identity of a spy and the code word, \"\"Topaz\"\".\"\ntt0065112,Nz4zu_fSHYY,\"Rico discovers that Dubois has stolen private information. Before he can catch him, however, he stealthily passes the camera on to Andre.\"\ntt0065112,5SkzHjQrCXk,Nicole lets on that she knows about Andre's mistress.\ntt0065112,tS36ZnWoR70,\"After discovering he is a spy, Rico threatens Andre and kicks him out of Cuba. Then, Juanita defends him.\"\ntt0065112,HLw1Og_JXK8,\"Andre gives his mistress, Juanita, the tools she will need to help him spy on the Cubans. Then, they share a moment of passion.\"\ntt0065112,dkAv65bo8a8,Rico is forced to kill Juanita after discovering that she has betrayed him.\ntt0065112,FQoR9fu-CIE,Francois digs up valuable information from Jarre.\ntt0065112,jVu_cuFHZnc,\"Andre tells his fellow agents about Topaz, the spy ring he discovered.\"\ntt0065112,7A6HQOrRDiw,\"Francois reveals his drawing of the traitor, who Nicole recognizes due to a dirty secret.\"\ntt0065112,8yACSHANED0,\"When their phone line gets disconnected, Andre and Michle rush to find Francois, only to discover the dead body of Jarre.\"\ntt0100519,ACcJF4BpXXU,Claudius announces the death of Rosencrantz and Guildenstern after their hanging.\ntt0100519,tdADTzvJtSY,Rosencrantz wonders if it would be preferable to be alive or dead once inside a coffin.\ntt0100519,zJ3hgBFfQy0,Rosencrantz tries to remember the very first moment in which he became aware of his own mortality.\ntt0100519,C_TfdNAXOwE,Rosencrantz infuriates Guildenstern with a seemingly endless series of correct guesses in a coin toss.\ntt0100519,g3FFfmWvyAk,Guildenstern pretends to be Hamlet so that Rosencrantz can practice questioning him about his affliction.\ntt0100519,exFv7Srgwpk,Guildenstern thinks he has killed the Player until it is revealed that he has faked his own death.\ntt0100519,fxVsGcxK1nc,Rosencrantz gets a surprising wake-up call when pirates attack the ship.\ntt0100519,7wniAznxp08,The Player describes the meaning of a proper ending.\ntt0100519,BLgX2oB_qn4,The Player leads the theater troop in the performance of a play.\ntt0100519,pf0erXl4pwQ,\"Rosencrantz and Guildenstern debate the direction of the wind, and weather in general.\"\ntt0100519,u3xIs0aajN4,\"Rosencrantz and Guildenstern play a strict, yet confusing, game of \"\"questions.\"\"\"\ntt0186508,5lCObNv4T5M,Emotions run high as Ibrahim Ferrer and Omara Portuondo reunite to sing a duet.\ntt0186508,yTq_QU464Aw,\"Cigar smoking singer Francisco Repilado describes his childhood and affinity for smoking, then plays a duet with producer Ry Cooder.\"\ntt0186508,K8PDbQK7Jro,Rubn Gonzlez plays piano for a suit clad audience in New York and a group of adolescent gymnasts in Cuba.\ntt0186508,qzjPtczHQkU,Barbarito Torres rips a guitar solo behind his back.\ntt0186508,tdfhiqOFtjk,\"As he listens to his record on an airplane, Ry Cooder recalls how he re-united the band.\"\ntt0186508,qodNg2Xr7mA,Eliades Ochoa and Puntillita explore New York City.\ntt0186508,e7uz82t68To,\"As the band play \"\"Chan Chan\"\" in New York City, the music and culture of Cuba fuse in a grand finale.\"\ntt0205271,FJZR935H0hw,Dr. T races over to Bree's apartment to ask her to run away with him.\ntt1632708,LEq4-b61Hoo,Dylan finds Jamie on her rooftop and the two argue about their relationship.\ntt1632708,-SkeK7t74oo,\"While trying to convince Dylan to take a job and move to New York, Jamie shows him her favorite spot in the city and a flash mob in Times Square.\"\ntt1632708,7fduMinwJZ8,\"Before ever meeting, Dylan and Jamie are dumped by their significant others.\"\ntt1632708,q8nzGlXDvO8,\"Despite agreeing to just be friends, Dylan and Jamie fall for each other and share a night of true passion.\"\ntt1632708,kzf7hr9O00k,Jamie rushes to meet Dylan at the airport.\ntt1632708,8Pd2fpoD0Xg,Dylan and Jamie agree to have sex with none of the complications.\ntt1632708,Y9b8tw9TR2k,Dylan stages a flash mob in Grand Central Station to profess his love for Jamie and get his best friend back.\ntt1632708,PI6Q87pjO0o,Dylan and Jamie watch a cheesy romantic comedy together in Jamie's apartment.\ntt1632708,PX5QjCErMgU,\"Jamie's mother, Lorna, walks in on Dylan and Jamie in the middle of a hookup.\"\ntt1632708,qqSS99m2dQ0,\"Dylan and Jamie agree to stop having sex and start seeing other people. Then, they both try to catch a date in Central Park.\"\ntt0205271,wJeeueogQQ4,Carolyn takes Dr. T's compliment as a sexual invitation while giving him a massage at the end of a long work day.\ntt0205271,LEQ9ISPbfyM,\"At her wedding, Dee Dee leaves the groom at the altar and runs away with Marilyn.\"\ntt0205271,p9d7IXlAVUo,A distraught and heartbroken Dr. T drives straight into a Texas tornado.\ntt0205271,SRlJ2SMwwYg,\"Dr. T checks on a new patient, Marilyn, who happens to be his daughter's lesbian lover.\"\ntt0205271,Z-DbvvyH6Q4,\"Dr. Harper discusses the Hestia Complex with Dr. T and how it applies to his wife, Kate.\"\ntt0205271,K1ubjdkdmkc,Connie talks to her father Dr. T about how he can't let Dee Dee get married because she's a closeted lesbian.\ntt0205271,JZ5bvcWLEW4,\"Dee Dee gets very excited once Marilyn arrives at her bridal shower, while Connie can't help but be jealous.\"\ntt0205271,QWPntJVp6cM,\"Dee Dee tells Marilyn the tale of the lady of the lake, igniting past feelings they had for one another.\"\ntt0101698,Gae_um_eNZU,Daniel becomes self-conscious when his prosecuting attorney Lena walks in while on a date with Julia.\ntt0101698,wdS1l__SWms,\"Risking his life to be with the woman he loves, Daniel breaks free of the train and chases after Julia, as Bob Diamond and Lena Foster watch the brave act.\"\ntt0101698,wfq7O3AgXdE,Daniel and Julia joke about how they died during their mini-golf date.\ntt0101698,N8QzCj1RdpU,Daniel goes out for a sushi dinner and encounters some very energetic chefs.\ntt0210358,baNc64S4DHY,June reads braille and gives some advice to Carol on dating her dad.\ntt0210358,QeWifFsvr8o,Christine tells her sick girlfriend Lilly the story of how they met.\ntt0210358,kZcr7bw6k_k,\"Jay and his mom talk about their new neighbor, among other things.\"\ntt0210358,f8-6UgJ6dSo,A mother-son chat takes a surprising turn for Rose when she learns that Jay is sexually active.\ntt0210358,_DtsWj_e2vI,Kathy helps her sister apply makeup before a date.\ntt0210358,aL_6-dQCzwg,Rose is embarrassed when she's caught spying on her new neighbor Albert.\ntt0210358,YpDpOphD1zo,Rebecca shares a smoke and some conversation with a bum in a bank's parking lot.\ntt0210358,NKjZRRw3-Fs,\"While Rebecca and Walter talk about the previous night, Nancy, a bum, interferes in their conversation.\"\ntt0210358,_5uHK-fVMcY,Christine reads Dr. Keener's tarot cards.\ntt0210358,U9t_bzEKBnA,Rebecca follows Walter to a bar to get a drink with him.\ntt0091934,bJ63bxSclsU,Mr. Wasey tricks Mei Gan into holding his belt just as it's timed to explode.\ntt0091934,4_mFP5qAVqM,Miss Tatlock gets drunk and falls into a pile of ducks when she feels shame for blackmailing Mr. Wasey.\ntt0091934,keTP_H6jqZk,Miss Tatlock and Mr. Wasey work together to escape from the crates in which they've been locked.\ntt0091934,2_ix6kre_tA,Miss Tatlock seduces Mr. Wasey to keep him obligated to help her.\ntt0091934,g0RJFzg31xY,Mr. Wasey and Miss Tatlock prepare to part ways on the eve of his return to America.\ntt0091934,5QEWc2zmxGE,Mr. Wasey meets with noted concubine China Doll in an attempt to learn more about Faraday's opium.\ntt0091934,8wx1XlXs4Ss,\"Mr. Wasey and Miss Tatlock negotiate with Ho Chong, who betrays them with a dirty trick.\"\ntt0091934,P3YJLGWoPL0,\"Caught trying to flee Shanghai, Faraday makes a run for it when his secret belt is confiscated.\"\ntt0091934,xW2pDmzhD4o,Mr. Wasey and Miss Tatlock flee from an angry mob via rickshaw through the back alleys of Shanghai.\ntt0091934,wbWWF1RwQU4,Mr. Burns and Miss Tatlock recruit Mr. Wasey to help them with their mission.\ntt0091934,Vk1Ca1ruQKA,Miss Tatlock catches Mr. Wasey using the money she gave him for food on rice wine.\ntt1307068,WL4kf1SZAE8,\"When Penny gets pulled over by a cop, she pleads for some mercy.\"\ntt1307068,AtgkgRgn8Y0,\"Dodge tells Penny what he plans to do with his last days, but she reveals some bad news.\"\ntt1307068,xAf9G9cqQbw,Penny and Dodge spend their last night together and declare their love.\ntt1307068,f6-8wpMn_8I,\"Dodge reconciles with his father, Frank, who he hasn't seen in 25 years.\"\ntt1307068,PMLfJk1X64I,Penny and Dodge get to know each other until the staff at Friendsy's gets a little too friendly.\ntt1307068,YFnErcVxB-Q,Penny and Dodge have dinner at a restaurant where everyone is your friend.\ntt1307068,1yi8Mc-5kLc,Dodge and Penny hitchhike with a man who has ordered a hit man to kill him.\ntt1307068,Ot5G0Nh6EyY,Dodge's friend Roache explains how the last days have become the best of times for losers like them.\ntt1307068,EHqjx0MHej0,Warren and Diane argue over what Dodge should do in his last days.\ntt1307068,eT4bhNABlYM,Dodge goes to work on one of the last days of life and finds that everyone has lost interest.\ntt0091777,2kV2EVWNqXQ,\"When it comes to the evacuation during the tear gas training, Cadet Zed takes a unique approach.\"\ntt0091777,wI1LRBDvSFs,\"Lt. Proctor, naked as a jail bird, accidentaly stumbles into the gay club The Blue Oyster.\"\ntt0091777,N6jkWHo8D_s,\"Cadet Nogata takes some advice from the \"\"Love Doctor\"\" a.k.a. Sgt. Jones in his approach to hitting on Lt. Callahan.\"\ntt0091777,srLwGlDe598,Sgt. Tackleberry and Sweetchuck help an old lady get her quarter back and then investigate a bank robbery.\ntt0091777,--ifbq2xY6I,Capt. Proctor is the victim of a practical joke from a hooker.\ntt0091777,1e_9GirqmoI,\"Hightower, Hooks, and Jones are just some of the former cadets welcoming the new cadets to Police Academy.\"\ntt0091777,qo1cSaFhPiQ,\"Sgt. Jones supervises a driving test, while Cadet Zed hotwires a car.\"\ntt0091777,cil6HFXlccw,\"Zed, riding a motorcycle, taunts Sweetchuck who's riding a scooter on the way to the academy\"\ntt0091777,7g5k1qwVLjw,Sweetchuck has difficulty getting some sleep with his roommate Zed.\ntt0089822,REwimg6y1Cg,\"Mahoney has trouble breaking up a bar fight, but luckily, he has Officer Hightower.\"\ntt0089822,WqWefwlmFmI,Mahoney responds to a robbery in progress as does every other officer with a jittery trigger finger.\ntt0089822,kPNy_yGvpKI,Zed and the gang go grocery shopping for free.\ntt0089822,u7IXETT9OEQ,Mahoney appeals to Pete Lassard for another chance after his team causes some major property damage.\ntt0089822,TUMru_xqvMU,Tackleberry visits the family of Kirkland and sees their strange way of showing affection for each other.\ntt0089822,WFUAl0Nly7Y,Tackleberry and his new partner Kirkland compare guns.\ntt0089822,3EIqxstBVCs,Larvell Jones has some fun with an annoying couple eating a meal.\ntt0089822,hH0av1iDYVI,Larvell Jones channels Bruce Lee when two hoodlums mess with his green grocer.\ntt0089822,akSjCFfKAMo,Tackleberry and Kirkland confess their love for each other.\ntt0102395,3i7EvW15Lyk,Jason rescues Jessie from the evil clutches of Count Spretzle.\ntt0102395,LWvcLI0lcFQ,Montrose impersonates a military officer to spring Jason out of jail.\ntt0102395,OwfT8yTBPYs,\"Riding on an electric toy car, Jessie and Jason narrowly avoid the soldiers and security.\"\ntt0102395,HRJ1g7i0Ob8,\"Hollywood Montrose meets his new assistant, Jason.\"\ntt0102395,_525BmUkPmI,\"Jason prepares breakfast for Jessie, but is stunned when he finds out that she has reverted back to mannequin form.\"\ntt0102395,4JtubCgodCE,Count Spretzle sends his goons after Hollywood Montrose and Jason.\ntt0102395,oToIYlwJY9I,Jason takes Jessie out on the dance floor where she shows him some moves.\ntt0102395,UxjYMYu0F8o,Montrose puts on the necklace and turns into a mannequin.\ntt0102395,q1SFvQhjK5I,Jason shows Jessie the restaurants and shops of South Street.\ntt0093493,J5K0XKyL3i8,Switcher meets the store's security team led by Captain Felix Maxwell.\ntt0093493,DGQkgqsHQns,Switcher and Emmy get married where they first met.\ntt0093493,p6HbXVaNFfc,Switcher and Emmy take advantage of an empty department store and some good tunes.\ntt0093493,vW7-H-GGYwk,Hollywood handles the cops while Switcher rescues Emmy.\ntt0093493,qA_zzk2c7G8,Switcher needs some career counseling after being fired from numerous jobs.\ntt0093493,Ug6yhGuDcUQ,Felix attacks Switcher after catching him rolling around with Emmy.\ntt0093493,z7gYF5LF-ec,Switcher freaks out when his creation comes to life in the form of a real woman.\ntt0093493,dIy6QpVNPuo,Felix and Richards engage in a reckless car chase.\ntt0093493,TeeNLFHot1Q,Switcher and Emmy run into Roxie.\ntt0093493,YvT0GTWPw0M,The bumbling duo of Felix and Richards kidnap Emmy.\ntt0093493,0RM_Ehtb5C4,\"After her rescue, Emmy realizes she's become a real woman.\"\ntt0093493,ORV1uYzvZzo,Justice is served when the cops apprehend B.J. and his cronies.\ntt0102395,wBM9Aa_HG8g,Jessie transforms from a mannequin to a girl for the first time in one thousand years.\ntt0097758,QQFxcGwtEBY,\"Eric is consoled by his parents when a \"\"monster\"\" scares him before hiding under his bed.\"\ntt0097758,MQ1YkJX4SJM,Maurice and Brian pay a special late night visit to Ronnie.\ntt0097758,wzYPC7FOJtc,Maurice shows Brian the ropes of life south of his bedroom.\ntt0097758,dHSjJmNISjs,Brian's parent's sit him and his little brother down to tell them they are going through a trial separation.\ntt0097758,_5HRlIFjZiw,Maurice accompanies his new human friend Brian to the monster world underneath Brian's bed.\ntt0097758,AbU-6GsTbyE,Brian traps Maurice with a light display.\ntt0097758,raGaJdEHjEI,\"As they say goodbye, Brian tells Maurice that he's his best friend and Maurice gives him his jacket.\"\ntt0097758,IWZLSjyJPsU,Brian has a rough first introduction to Maurice and discovers that sunlight hurts him.\ntt0097758,75AdYZPT3nE,Todd tells Eric a scary story. Brian decides to scare them by tapping on the wall.\ntt0097758,AgCF4dXv2JE,Brian gets in a fight with a bully at his new school. The principal thinks Brian is the troublemaker.\ntt0097758,KVWBllfyysk,Brian's plans back fire and he and his friends get captured by Boy and his minions.\ntt0084745,KrBI7YdIPYk,Swamp Thing battles the Arcane Monster to defend a wounded Alice.\ntt0084745,osE84bZ1jNc,\"Swamp Thing loses an arm, but crushes Ferret's head.\"\ntt0084745,71Nmq8VOKnY,\"After drinking the formula, Dr. Arcane transforms into a mutated monster. Meanwhile, Swamp Thing regenerates his missing arm by using the power of super photosynthesis.\"\ntt0084745,1GfDQpfUaHQ,\"After rescuing Alice from the bad guys, Swamp Thing shares a rare moment of tenderness with her.\"\ntt0084745,sISJ7r3kERg,Dr. Arcane secretly doses Bruno at a dinner party who transforms into a troll-like creature.\ntt0084745,bWQ1ekGzhwU,\"Swamp Thing takes on boats, grenades, and gunfire.\"\ntt0084745,q42thgSKkpo,Swamp Thing saves a drowning Alice from Arcane's henchmen.\ntt0084745,Cony281khiE,Swamp Thing foils the bad guys by using his brute strength to protect Alice.\ntt0084745,zLkNUykewic,Dr. Holland accidentally spills chemicals on himself leading to self-immolation.\ntt0084745,cio6rIbCs-I,Dr. Arcane reveals his true identity by pulling off a mask of Ritter.\ntt0263488,T5cFTmim4Rw,The Creeper stalks Darry and Trish from behind a one-way mirror before attacking them.\ntt0263488,VBTrQhEwFqA,Trish tries to negotiate with the Creeper who takes Darry anyway.\ntt0263488,kJnH45GslL0,Darry confronts Jezelle about her dreams and predictions.\ntt0263488,vFD6BbYg0-0,The Creeper ambushes the police station and puts a hole clean through the chest of a police officer.\ntt0263488,BXXY48jjLtw,\"Trish tries to runs over the Creeper, but the creature displays incredible agility as it dodges every one of her attempts with ease.\"\ntt0263488,5ZUgU9CsjDc,Darry and Trish are surprised by the Creeper's disguise.\ntt0263488,P5kDAUzl-T4,Darry and Trish watch in horror as the Creeper eats the tongue out of a decapitated head.\ntt0263488,nI6agjxMa2s,\"Darry and Trish meet the Creeper again, this time, getting run off the road.\"\ntt0263488,oWSIUe5wYvc,Darry finds the wrapped up body of a mutilated boy who's still alive.\ntt0263488,6QYw68kf4sI,Darry and Trish are nearly run off the road by an aggressive truck driver.\ntt0263488,AZfCHDSJc8c,\"Darry's curiosity gets the better of him, leading him to accidentally slide down the pipe.\"\ntt0097737,6loInvUSYEM,Dr. Thompson discovers a genetic altering virus on Sixpack's neck.\ntt0097737,5vFi7gu-g-w,Beck and his crew encounter bureaucratic resistance from Martin as they beg for a way off of the mining facility.\ntt0097737,RPW4sx3UYjU,\"Fearing that the an unknown contagion has spread to crew, Dr. Thompson performs a skin examination to determine who is infected.\"\ntt0097737,3lex4AAgAfs,Dr. Thompson saves Cobb from an attack by the creature.\ntt0097737,wa1uJbTy6XE,\"Just as they are about to be saved, Beck throws an explosive in the monster's mouth and blows it to smithereens.\"\ntt0097737,8IJEqeoPPs8,\"During a fiery battle, Willie and Justin manage to make their escape, while Steven gets into his suit.\"\ntt0097737,NP2fSxIpvis,\"Justin freezes, then runs for help, when DeJesus is attacked by the monster in the kitchen.\"\ntt0097737,KMI-Sxq9Npg,Dr. Thompson and Beck talk about the serious consequences involved with mutation experiments.\ntt0097737,zeSe5X9ALXg,Willie and the rest of the crew panic when the monster rips through Cobb's hand.\ntt0097737,ZP73cUcxidQ,\"Just as the crew are about to flush the bodies of Sixpack and Bowman, something starts to wiggle around in the body bag.\"\ntt0097737,w9I7PBSMBZw,The crew is ecstatic when they stumble upon the Leviathan ship underwater.\ntt0144814,jqpkvCebSmU,\"A year after the traumatizing party, Jesse, now in college, has a dream about Rachel.\"\ntt0144814,Jmls6360U9Q,An abandoned Rachel develops early signs of telepathy.\ntt0144814,E_14d8dHpns,Rachel wrecks telepathic havoc on partygoers.\ntt0144814,7SojZ1TuMsk,\"Overcome with rage, Rachel confronts the last of the survivors.\"\ntt0144814,xTKfpU41hbY,Jesse confronts Rachel and expresses his love as the pool house burns around them.\ntt0144814,Rt3u4bU6EMU,Sue attempts to open Rachel up to her powers in order for her to gain self-control.\ntt0144814,UK0wGi3JHrY,Coach Walsh makes Mark drop his trousers in front of the team.\ntt0144814,qWiGcXSaKUc,\"Sue recounts the events of a night over twenty years ago with Rachel's half sister, Carrie.\"\ntt0144814,ATU0Znam5Pw,Sue tries to console Rachel about her friend committing suicide.\ntt0144814,crIlIvBYMoc,Lisa jumps off of the high school roof.\ntt2334879,nm86_ZWeUzk,Cale takes on Stenz while Walker attempts to initiate a missle launch while holding Emily hostage.\ntt2334879,UF2c01_glHU,\"Walker threatens to kill Emily if President Sawyer doesn't do what he says, while Cale gets a little violent help from Donnie.\"\ntt2334879,aucs5KRFzhE,Helicopters are shot from the sky by terrorists on the roof of the White House while Cale tries to stop them.\ntt2334879,c4ibjfBu1IY,Tyler hacks the missile codes and sends one to crash Air Force One and kill the Vice President.\ntt2334879,PZBy1m-MmlQ,Everyone watches as Cale fights Stenz on the roof of the White House.\ntt2334879,vqxbLAcIgiw,\"When Walker and Stenz corner President Sawyer, he reveals that he has a grenade.\"\ntt2334879,WCaRP0aT9CU,President Sawyer shoots a rocket at a gate on the White House lawn so Cale can get them away from the terrorists.\ntt2334879,bp_GxHYCq90,\"Cale protects President Sawyer by hoping in the presidential limo, Ground Force One.\"\ntt2334879,JV2dQauaWCU,Cale gets surprised by some mercenaries and President Sawyer realizes he needs to step up.\ntt2334879,_Mr6MQB8vRg,\"While looking for his daughter, Cale saves President Sawyer from his rogue secret service agent Walker.\"\ntt1599348,snTvACYp8NA,\"Matt Weston and Tobin Frost go to a new safe house in the country. Weston is attacked by the housekeeper, Keller.\"\ntt1599348,g9d1TR6Lb9g,Matt Weston tracks down Tobin Frost and helps him escape from the group of mercenaries who have been hunting him.\ntt1599348,KyfXb39rGT0,Tobin Frost attacks corrupt CIA agent David Barlow and his team of mercenaries.\ntt1599348,XJsuAUwGz0M,\"Thinking they've escape the team of hired guns that want to kill them, Matt Weston and Tobin Frost are blindside by more mercs.\"\ntt1599348,Cn_nTq97C7Y,\"Matt Weston, after escaping police, chases after Tobin Frost outside a stadium.\"\ntt1599348,mr3L2D4yv-0,Mercenaries attack the safe house where top criminal Tobin Frost is being held. Agent Daniel Kiefer leads the defense while Matt Weston freezes in shock and doesn't know what to do.\ntt1599348,mlpkQuvDJbs,\"Ex-CIA agent turned criminal, Tobin Frost, is attacked by a team of mercenaries after he aquires important files from another agent.\"\ntt1599348,5asGTRoIqCw,\"After escaping from a group of mercenaries, agent Matt Weston is attacked by criminal Tobin Frost who has broken out of the trunk.\"\ntt1599348,NkhIROsY7Pg,\"After escaping the safe house with Tobin Frost, Matt Weston finds himself being chased by multiple mercenaries who are intent on killing him.\"\ntt1599348,qCYYMqHyPKk,\"After mercenaries raid the safe house and kill everybody, only Matt Weston is left guarding Tobin Frost.\"\ntt2140379,BQ8vGslccwQ,Damian reveals to Madeline that he's living in her husband's body.\ntt2140379,nwQtd7csTKo,Damian finds the house of the man who's body he's inhabiting.\ntt2140379,LFVi_krq2PM,\"Martin betrays Damien, who in turn reveals that Martin's son Tony is someone else's son.\"\ntt2140379,ohZ_J5yHSkc,Albright realizes Anton's shedding procedure didn't take and Damian is still in control of the body.\ntt2140379,M4LzhjtD3YQ,Mark wakes up confused in his own body and a video from Damian explains how he's back.\ntt2140379,8gIZMane5sI,Damian tries to lead the henchmen away from Madeline and Anna.\ntt2140379,nJIecTXKUrc,Damian experiences hallucinations while adjusting to his new body.\ntt2140379,EeQ_0rq-z1M,\"Damian is taken into a lab for his shedding procedure, and he emerges as a young man.\"\ntt2140379,_wAX37x54hk,Damian saves Madeline from Anton and the other henchmen trying to kill them.\ntt2140379,_iMsHacXWd4,\"After Madeline saves Damian, the second Anton reveals himself as a product of another round of shedding.\"\ntt0434409,jz6VC23rVTE,\"Evey discovers a note written by Valerie, a former prisoner of Larkhill, that gives her comfort and hope.\"\ntt0434409,Z4RCK8LAFM0,V saves Evey from being raped and the two introduce themselves.\ntt0434409,a7KgMV3DXw0,\"V, Creedy and his men have a final showdown with V ultimately ending up victorious.\"\ntt0434409,0IyuK069I-w,V breaks into BTN and speaks to the entire population about the problem with politics in London.\ntt0434409,6qxQ2l1DC6Y,Evey finds out that her captor was actually V and her prison was fake.\ntt0434409,_VEDJMixt3c,V shows Evey the train that will be carrying the explosives to Parliament and gives her the power to carry on as she desires.\ntt0434409,QO0K8wfZrHc,\"After V cleverly takes over the newsroom at the BTN, the police can't determine who is a real hostage.\"\ntt0434409,3wXG_J4cPpg,V visits Lewis at his home and kills him.\ntt0114576,swEgflM5Ol4,\"While escaping from terrorists, Darren steals a goalie uniform and ends up being in the hockey game.\"\ntt0114576,lQr3va8emXg,Darren McCord forces his way into the owner's box from above and rescues his daughter and the vice president.\ntt0114576,Ho0k513yN6E,Joshua Foss prepares to blow up the stadium while Darren kills the rest of the terrorists.\ntt0114576,2NNTVLRN-Ms,\"After rescuing his daughter, Darren McCord stops Joshua Foss from escaping in a helicopter by shooting the pilot from below.\"\ntt0114576,WksivsiSF_o,\"Darren McCord realizes that Hallmark, the Secret Service agent who has been helping him, is working for the terrorists.\"\ntt0114576,qFprLPWDd-Y,\"While searching for his missing daughter, Darren McCord comes across a terrorist dressed as the mascot Iceburgh.\"\ntt0114576,5M4VIDlRYjQ,\"After finding out there are terrorists in the stadium, Darren McCord calls 911 only to get connected with Secret Service Agent Matthew Hallmark.\"\ntt0114576,oRRupV-lwbU,Terrorist Joshua Foss explains the situation to his hostages.\ntt0114576,3tvpgXQ4y4Q,Darren McCord takes a moment to make an improvised weapon for himself before taking out another terrorist and disarming a bomb.\ntt0114576,Se38Z08pYS0,\"After surviving a big fight with a woman who kidnapped his daughter, Darren asks a secuity guard for help only to discover that the guard is a terrorist as well.\"\ntt0101698,mdHpbI8Y7Oo,\"Daniel witnesses previous mistakes committed by himself during his time on Earth - some are \"\"fear-based, others just stupid.\"\"\"\ntt0101698,V26hcTgoDLY,\"At a comedy club named The Bomb Shelter, Daniel meets Julia.\"\ntt0101698,ZsqkTaYITKQ,\"When Julia asks Daniel to spend the night, Daniel makes a decision that goes against his instinct and heart.\"\ntt0101698,x1FhrhoudSE,Daniel meets his lawyer Bob Diamond who describes the process of Judgment City.\ntt1648179,sILyPxN_1Dc,Bella fixes Scott's dislocated shoulder with a special move.\ntt1648179,4LvvutsvgrE,Scott is mortified when his opponent chooses his same entry music and Marty suggests a Neil Diamond tune for his entrance.\ntt1648179,xdnibOE5L40,\"Even though Niko has concerns, Scott meets with Joe Rogan to discuss the possibilities of a real UFC fight.\"\ntt1648179,yKv7A92MoBY,Scott is put to the test by a potential new trainer.\ntt1648179,FAAKfmF5Jl4,Scott and Bella fight on their first date.\ntt1648179,JfEde8D6XE8,Scott and Niko train for their respective upcoming tests.\ntt1648179,NSTXoI3j4ko,\"Scott wins his first semi-professional fight, but can't seem to hold in all his excitement.\"\ntt1648179,BTeAQ_QLObc,Scott prepares to train with his student and former MMA fighter Niko.\ntt1648179,euJyO4E3FzE,Scott prepares for his first fight in an amateur MMA ring.\ntt1648179,EvUbi66AGKI,Inclement weather threatens Scott's second fight.\ntt1204975,NuTbNeev0sk,\"Sam gets a chance to cheat on his wife, but he doesn't go through with it.\"\ntt1204975,gPjQr9sSrmQ,Paddy fights Billy for Diana and ends up learning the truth about his deceased wife.\ntt1204975,mAhhCpdnVkI,The bachelor party is in full swing when Paddy punches a punk for messing with his friends.\ntt1204975,mJ7S9aUZgZA,Archie finally gets to dance and Lonnie turns 50 Cent away from the party.\ntt1204975,VhdCpMoShM4,The casino manager offers Archie and friends the penthouse and an assistant for the weekend.\ntt1204975,mmSNq3ELTDE,\"Lonnie gets Dean to apologize and offer his assistance to the guys, who are pretending to be mafia gangsters.\"\ntt1204975,rDpyBEorPeY,The guys grab a drink with Diana after they hear her perform.\ntt1204975,7vx5baLs0NE,\"A small peek into the elderly lives of Sam, Archie and Paddy.\"\ntt1204975,RCp2lpFkeeE,Billy tells his friends he's getting married and they insist on throwing him a bachelor party in Vegas.\ntt1204975,kK6P8gN99eo,Sam helps Archie escape from his overprotective son.\ntt1655460,aazXc06Oycs,\"George is ready to have sex with Eva, but his nerves ruin the moment.\"\ntt1655460,GZxal1kvCfY,George and Linda say goodbye to the Elysium commune and get some good advice from Carvin.\ntt1655460,DaDZptGm6nI,Linda and George join the truth circle and learn some things about themselves.\ntt1655460,hIHC635Q9dc,Linda uses her assets to protest the construction crew and becomes a local celebrity.\ntt1655460,pbv02n_zKvo,\"Eva offers to have sex with George, but he doesn't want to ruin his relationship with Linda.\"\ntt1655460,Kei4Jlhhz-Q,Linda trips out really bad on Ayahuasca.\ntt1655460,PAw7vAf6HMg,George and Linda learn how to yell away their fears and tensions.\ntt1655460,3k7E9zkTPLA,George finally breaks after being mistreated by his brother.\ntt1655460,cTQRH6MPV3A,\"George and Linda get a new room at the commune, with no door.\"\ntt1655460,MAi6B_AFhH8,Seth shows off his flair with the guitar and then sings a song for Linda.\ntt3164256,ZF_2tUzPnvw,Richie tries to convince Tariq and his tribe to let Salima perform on Afghan Star.\ntt3164256,yw2hoxOuiaw,Richie tries to comfort Ronnie when she has a nervous breakdown on the flight to Afghanistan.\ntt3164256,N13exKaQgXo,Salima advises Richie about the void he feels in his life.\ntt3164256,XftKutOVjQs,\"Richie, Jake, and Nick make a break for it when they are shot at in the streets of Kabul.\"\ntt3164256,TA4zkT8ov_Y,\"While on a mission with Brian, Richie gets caught in an explosion.\"\ntt3164256,8FJZS4bwRrk,Richie discovers Salima hiding out in his trunk and she convinces him to take her to perform.\ntt3164256,hNiDZEwkT84,Richie falls for the mysterious prostitute Merci.\ntt3164256,SlwofvltpRw,Merci convinces Richie to fight for Salima.\ntt3164256,NWdhUnTq3gg,Salima becomes the first woman to perform on Afghan Star.\ntt3164256,Hhs2RLxDgok,\"Richie tries to negotiate a deal to let Salima perform for him, and winds up shot. Then, Salima sings \"\"Peace Train\"\".\"\ntt0114852,xG6__eK9jIE,\"Police and the National Guard arrive to kill the children, but only end up killing each other.\"\ntt0114852,CyhOZgd8ahs,\"Mara and two others make Dr. Susan Verner kill herself, while the rest of the children deal with an angry mob outside.\"\ntt0114852,6Kfqy-8C3o0,Alan distracts Mara and the other children from finding out that he has a bomb with him.\ntt0114852,WOBy9Q8Gf9I,Reverend George tries to kill Mara while she talks about emotion with David McGowan.\ntt0114852,F-HZzW_NS88,\"At 10 o'clock one day, everybody in the town of Midwich suddenly falls unconscious.\"\ntt0114852,PlkvQ0NbjUs,\"After finding out that they killed another man, Alan asks Mara and the children why they can't just live in peace.\"\ntt0114852,e4Dlc6yqJuA,Ben Blum attempts to take his daughter away from the alien children.\ntt0114852,NVXDwL6XG_c,\"While waiting for her friend Jill McGowan to arrive, Barbara Chaffee notices that the eyes of her young daughter are glowing.\"\ntt0114852,vaCI48KHW1k,\"Now grown a bit, the Midwich children arrive for their eye exams.\"\ntt0114852,tD3vc9KZ9lQ,\"After drinking a bit, the school janitor confronts the evil Midwich children.\"\ntt1284575,ujgbo-_khSM,Amy accuses Elizabeth of embezzling car wash money while Wally tries to go to the bathroom.\ntt1284575,jdd1py-ilwc,\"Amy is arrested for her possession of drugs at school, but Elizabeth knows the drugs are actually hers.\"\ntt1284575,jmC2y7EsXqk,Elizabeth is frustrated with her students' lack of progress.\ntt1284575,SCR9s8egrmo,Amy gets frustrated when Wally refuses to use her inside information against Elizabeth.\ntt1284575,QsCBiq5cET4,Elizabeth poisons an apple so that Amy gets a rash and has to stay home from the class trip.\ntt1284575,uzMEc37DGZA,Mark ends his engagement to Elizabeth with the help of his mother.\ntt1284575,fbkfr-S420o,Elizabeth shifts gears in her classroom and makes her students learn whether they like it or not.\ntt1284575,XPsDyk5bJdE,\"When Elizabeth ends up alone on Christmas, she gets taken in for Christmas dinner by Garrett's family.\"\ntt1284575,9HRIGCog9UQ,Elizabeth uses her sexuality to get money at the school car wash.\ntt1284575,Pk-zBUDgesM,Elizabeth is frustrated when Amy gets between her and Scott.\ntt1092026,2G5KN2wt048,\"Agents, nerds and angry fathers converge at Tara's farm for an explosive showdown.\"\ntt1092026,b9pr0K7SuYk,The friends finally meet The Big Guy who fights them for Paul.\ntt1092026,Hwczxp7h7Gg,Paul gets Ruth and the others high on strong weed.\ntt1092026,2vJOE2qvIEM,Ruth gets some pointers on how to curse from Paul.\ntt1092026,P8ZCZJpluDA,Paul cheers up Clive while Graeme deals with a newly unleashed Ruth.\ntt1092026,lsmWjQdGHMI,Paul gets identified in a comic book shop.\ntt1092026,mz6dgt11n-E,\"Graeme and Ruth try to kiss, but it turns awkward.\"\ntt1092026,9JTGNwLdSDA,Clive freaks out when he wakes and finds an alien in the RV. Then they hit a Secret Service road block.\ntt1092026,VrXUYjVCX2o,Paul brings a dead bird back to life.\ntt1092026,dtgOzzBMl2o,Clive and Graeme get to know Ruth Buggs and her religious beliefs.\ntt0102303,pS-KE1LXpXU,\"Vance discovers Goddard's plans for the downtown slum district, and the two begin negotiations to buy each other out.\"\ntt0102303,tvxjJd08MMc,Goddard and Molly share a romantic dance and try to make love.\ntt0102303,-YiImyOVCj4,Molly tells how she became homeless and crazy.\ntt0102303,kpFSJhQ_30c,Goddard and Vance battle using giant machinery.\ntt0102303,apasYYh6nEA,Goddard and a man who thinks he's J. Paul Getty come to blows over who is richer.\ntt0102303,vndiMloYcYU,\"Goddard is taken to the hospital, where the clueless doctor over-medicates him.\"\ntt0102303,4E55_uKSR40,Goddard is betrayed by his lawyers and attempts to collect some of his prized possessions.\ntt0102303,k6u3YvvvgjQ,Vance offers Goddard's attorneys a lot of money to betray their client.\ntt0102303,pYaJ7p8RrzM,\"Goddard, now on the street, begs the church for shelter but is denied.\"\ntt0102303,BEsaqfzc6wQ,Goddard gets frustrated when his attempt to copy a dancing street performer falls flat.\ntt0102303,2VgamrBe_vM,\"Goddard explains his visionary project, Bolt Center.\"\ntt0076489,nxmaYsZjnXo,\"In order to get the court to believe in Him, God performs a miracle.\"\ntt0076489,rzIs51GUVgg,Jerry confronts Reverend Willie Williams in front of his congregation.\ntt0076489,puXiyRw_L6g,God answers when John asks Him to make it rain.\ntt0076489,6x0i-FfeA44,God appears to Jerry one last time.\ntt0076489,jPgV4d4ZmZo,A group of theologians present Jerry with a set of questions to ask God.\ntt0076489,onesjJyXdFQ,Mr. Summers threatens to demote Jerry if he doesn't stop speaking to the press about God.\ntt0076489,IBdgRBvFwlM,Jerry explains to God why he wasn't able to get God's message out in the newspaper.\ntt0076489,kheP3iy8-6E,\"While driving back to work, God speaks to Jerry through his car radio.\"\ntt0076489,VVvKuI8oK3c,God manifests himself into an old man in front of Jerry.\ntt0076489,zd6ZUTrW5b4,Jerry sits down for an interview with God.\ntt0069495,yk5d161ytXE,Howard and Judy hightail it through the streest of San Francisco with a whole lot of cars in hot pursuit.\ntt0069495,oUo_8mKGHvY,\"After a messy incident regarding Howard's hotel room and his relationship with Eunice, Howard decides that he wants nothing more to do with Judy.\"\ntt0069495,piTAjb8dd2Y,An argument between Howard and Eunice quickly escalates when a fire breaks out.\ntt0069495,PhkGK4ga-Gs,\"When Howard meets his stalker, she refuses to let him out of her sight.\"\ntt0069495,gU886wmXhQo,Judy tests Howard's patience when she claims to be his fiance in front of Mr. Larrabee.\ntt0069495,dR0_tMYKwXE,\"Before Howard boards his flight empty-handed, Judy uses her wits to win back Mr. Larrabee's grant.\"\ntt0069495,XYc1XujRb1w,Judy makes a move to seduce Howard.\ntt0069495,kbVtjc-ygTM,\"When Eunice threatens to walk in on Howard and a towel-clad Judy, Howard sees no other option than to jump.\"\ntt0069495,PoIuiCAepLU,Howard denies knowing a manic and neurotic Eunice for fear that he will lose the grant from Mr. Larrabee.\ntt0069495,m-ETkZmPNiM,Howard discovers Judy in the seat behind him and finally confesses his love to her.\ntt2719848,hTzUYt__ogY,\"After facing the horrors on the mountain, Beck comes home to his wife, Peach.\"\ntt2719848,34K-mcoEFuk,Jan calls Rob as he withers away on the mountain.\ntt2719848,fAdsL7AXW6A,\"In the midst of a heavy ice storm, the team fights to rescue those left behind.\"\ntt2719848,MmBx8AMHTxE,A helicopter finally arrives to take Beck to safety.\ntt2719848,eA-V5wUcWos,A massive ice storm strikes the already exhausted climbers.\ntt2719848,XO4HxR3dPsI,Krakauer asks the climbers what motivated them to tackle Everest.\ntt2719848,Q54GdrlgRoQ,\"With frozen hands, Beck falls while traversing a ladder across a deep chasm.\"\ntt2719848,pXrMAjB8ka0,\"Despite being incredibly weak, Doug pushes onward and reaches the peak of Everest.\"\ntt2719848,j0iplsU1qa4,\"Without oxygen, Rob struggles to get Doug down from the summit.\"\ntt2719848,wmXFSQdF3PM,The climbers achieve their goal and reach the summit of Mt. Everest.\ntt1121096,YZrVYAXYyws,\"Master Gregory departs, leaving Tom with some final words of sage advice.\"\ntt1121096,uPFxRUeRfu8,Mother Malkin unleashes her mystical assassins upon the unsuspecting village.\ntt1121096,HSjPTdKWcLA,\"While Alice, Tom and Master Gregory fight off the assassins, Mother Malkin and Bony Lizzie battle to the death at the height of the blood moon.\"\ntt1121096,rW59kLTHdBE,\"Gregory, Tom, and Alice face Mother Malkin and her assassins during the height of the blood moon.\"\ntt1121096,Qzf3SFbaODw,Gregory and Tom are forced to flee from a Boggart attack.\ntt1121096,xPwq9go3HDc,Things get heated between Tom and Alice as they discuss their destiny together as a failed spook and half-witch.\ntt1121096,lLItY-Oyvt0,Master Gregory fights Mother Malkin's top shapeshifting assassin Urag.\ntt1121096,XCJxGxYDjQE,Tom is awakened by a mysterious noise and becomes embroiled in a battle with an enchanted suit of armor.\ntt1121096,RJEoUwZdwfk,Master Gregory loses his apprentice to the clutches of the evil witch Mother Malkin.\ntt1121096,ah_Egywb780,Tom discovers Alice swimming in the moonlight and they share a magically romantic encounter.\ntt0386140,KW1fyTqH0oE,\"After taking care of Armand, the De la Vegas escape a train explosion and California is granted statehood.\"\ntt0386140,g_O0J66490k,Zorro and his horse come to his family's rescue on a moving train.\ntt0386140,Yg53M7TYpuo,Joaquin and his horse help his parents divert the runaway train from crashing into innocent people.\ntt0386140,QtQpMjuyHnM,Zorro takes on Armand while Elena fends off his henchman.\ntt0386140,DJWKWwfURtI,Zorro and Elena fight off bad guys side-by-side.\ntt0386140,uZpvHkGMn5k,Zorro stops McGivens from stealing the box of votes and fends off his henchmen in a sword fight atop the bridge.\ntt0386140,ZlzhOaHLFBM,\"After stopping an explosive from detonating, Zorro is caught and unmasked by Armand.\"\ntt0386140,Z6SklaeTne8,\"Zorro saves Blanca and her baby from McGivens, but is unable to save her husband Guillermo.\"\ntt0386140,m31MSgGEIAk,Zorro and Elena bump into each other while sneaking around Armand's mansion.\ntt0386140,Z2-9fWRAwMo,Elena helps Zorro lose a dangerous game of polo against Armand.\ntt0091530,NTUNJ7f0tHU,Cardinal Altamirano angers the Guarani chief when he tells him that his people must leave the Jesuit mission.\ntt0091530,P13rZWwIXmM,Father Gabriel plays his oboe in the jungle while he is stalked by the Guarani tribe.\ntt0091530,I0E-0kTdg-k,\"Rodrigo asks Father Gabriel for his blessing during the battle, but he refuses because he can't live in a world without love.\"\ntt0091530,vVbXluPyrTA,\"Father Gabriel argues for the spirituality of the natives in front of Cardinal Altamirano and the Spanish Governor, but Rodrigo embarasses him by losing his temper.\"\ntt0091530,EqRYx6Zgphw,\"When Rodrigo decides to renounce his priestly vows and fight with the Guarani, Father Gabriel chastizes him.\"\ntt0091530,Pk_-jIncT5I,Father Gabriel challenges Rodrigo Mendoza to make penance for his sins and find a way to move on.\ntt0091530,CYt5p4a8YzE,Rodrigo learns to love the Guarani people and commits to serve them by becoming a Jesuit priest.\ntt0091530,mnXN-mRFoPI,\"On his way to Father Gabriel's mission, Rodrigo hauls his armor and sword through the jungle as penance for his many sins.\"\ntt0091530,CYTRQAy2o4E,\"Rodrigo makes it to the top of the waterfall with his burden, but then faces the judgment of the Guarani tribe which he previously enslaved.\"\ntt0191636,3HMU2k7i59M,\"Pauline urges Neel to take the boat and flee, but he does not want to cause problems for her and her husband.\"\ntt0191636,FNKYIVZOjqs,\"The Government tries to find an executioner, but Pauline works to protect Neel.\"\ntt0191636,tZ2yXL_RLEc,The Captain pleads with the Governor to reconsider their predicament based on the rebellions in Paris.\ntt0191636,VRN37FGgEic,The authorities manipulate a recently arrived man into performing the execution.\ntt0191636,nPGxeiD4mgM,Neel surprises Pauline when he volunteers to bring in the ship that is carrying the guillotine to execute him.\ntt0191636,SuoDkikuZjo,\"Pauline tries to help Neel escape, but her husband cautions her about going too far.\"\ntt0191636,_9lOz8mySPk,Pauline tells Neel why she believes in him.\ntt0191636,6PumiBR18C4,\"While moving a house, Neel becomes a hero for saving a woman.\"\ntt0191636,cY3aFhbBzoc,The Governor questions Jean about his wife spending time with the prisoner.\ntt0191636,5gQ3nWBmAak,\"The Captain attends a get together with the upper crust, but is insulted by their accusations about his wife.\"\ntt3062096,9EOazpvA7-U,Langdon confronts Sienna and tries to stop her from causing an explosion that could rupture and release a killer virus.\ntt3062096,Z2-qppnyM3s,Langdon helps Elizabeth in stopping one last follower from releasing the virus.\ntt3062096,GzMBisWrn_M,\"Langdon is saved from Christoph by Harry Sims, who reveals much of what has happened to Langdon was faked.\"\ntt3062096,7LxG9WBUbf8,The truth behind Sienna's allegiance to Zobrist is revealed.\ntt3062096,2ycw0UUyCm0,\"Langdon wakes up in an Italian hospital with no memory, horrible visions and an assassin gunning for him.\"\ntt3062096,9oiFkoROlu0,Langdon and Sienna realize something may be off about Agent Bruder thanks to Langdon's returning memory.\ntt3062096,8UscACJkVxY,Langdon and Sienna are interrupted by Christoph right after they discover a new clue behind a bust of Dante Alighieri.\ntt3062096,cRZ7bc3nqwA,Clues lead Langdon and Sienna to a painting that sparks Langdon's memory of the past few days.\ntt3062096,f-EjBwpuVFI,\"When Langdon and Sienna discover the death mask of Dante Alighieri is missing, they soon find out the thief is the last person they'd expect.\"\ntt3062096,WrZN5ouSodc,Langdon and Sienna are chased by Vayentha through the rafters of the musuem.\ntt2752772,5LX01_nSeZU,Clint abuses his son and beats and threatens the Ex-Deputy when he shows up to warn them that they're in danger.\ntt2752772,Ld8KOUtkHHY,Milo shows Dylan his murder film and Dylan is disturbed.\ntt2752772,G8_iVf44j-s,\"Zach fails to make his murder film, so Bughuul takes his life.\"\ntt2752772,kJEvR6GEb7U,\"Zach tries to make his murder film, but the Ex-Deputy interrupts him and makes a run for it with Courtney and Dylan.\"\ntt2752772,eoffuyXUhLs,\"When Dylan refuses to watch another film, his brother Zach is more than willing to accept the challenge.\"\ntt2752772,o2wFqjb9AU0,Dr. Stomberg explains to the Ex-Deputy his findings regarding the innocence-corrupting demon called Bughuul.\ntt2752772,yDxNlPIFWHM,Peter shows Dylan his murder film and Zach gets jealous of all the attention Dylan's getting.\ntt2752772,p39lIRTEPY4,\"The Ex-Deputy investigates the scene of a recent murder and, after being scared by a ghost, finds the symbol he's looking for.\"\ntt2752772,bqwS3qz3GhE,The ghosts try to convince Dylan that watching all of the films will make his nightmares disappear.\ntt2752772,Eh_0E0UdJcc,The Ex-Deputy feels something watching him while he researches mass murders in the area.\ntt3713166,qyZXW5Md1HM,Laura gets her revenge against Blaire for recording the drunken video.\ntt3713166,okdTt3VfJ6s,Laura's ghost confronts Blaire and Mitch over who posted the video of her drunken night.\ntt3713166,qzQdwPNUcME,Both Adam and Blaire receive a note that changes the game.\ntt3713166,SwCNp21CKes,\"While the group continues to play Never Have I Ever, Billie posts an explicit video of Adam and Blaire.\"\ntt3713166,5Q52XfZ9no0,Blaire connects to Chatroulette to find someone to call the police and save Jess.\ntt3713166,wN1iAzPTBbM,Adam sends Blaire and Mitch over the edge when it's his turn to play the game.\ntt3713166,fQWMKUF7dvA,Blaire tries to share an intimate moment with Mitch.\ntt3713166,gNCkFkii-tA,Ken sends the group a trojan destroyer to remove Billie from their computers.\ntt3713166,eYrt5n8DA2M,Things get crazy after Billie's webcam is found in Ken's room.\ntt3713166,198uP07pieE,\"When strange photos and messages begin to pop up online, the group realizes they're being hacked by an unknown user on Laura's old account.\"\ntt2870612,WLq3zSm5SkQ,Scarlett convinces the guys to take a literal leap of faith in order to escape the Catacombs.\ntt2870612,duEErwP8eds,Scarlett says goodbye to her father and uses the magic of the stone to heal George.\ntt2870612,m1p-vJzqPKw,Scarlett makes a terrifying sprint to return the false Philosopher's Stone and save George from dying.\ntt2870612,6IM3wUpXVfA,Papillon faces a demon from his past.\ntt2870612,ekqjBZdbYJU,\"While the rest of the group explores the next leg of their journey, Benji encounters something frightening.\"\ntt2870612,W3cldIDgcoE,\"The group finally finds La Taupe, but he's a much more dangerous version of himself.\"\ntt2870612,UtyiyBw401w,Inexplicable things happen when George finds a piano from his past and Scarlett gets a familiar phone call in the depths of the Catacombs.\ntt2870612,AwR1RawiBU0,\"The group discovers the Philosopher's Stone. When Souxie gets hurt, they use its magical powers to heal her.\"\ntt2870612,tFBSGc3v7BI,Scarlett and George try to decipher the hidden message on Flamel's tombstone.\ntt2870612,bqvMCDQ3HEU,\"Scarlett finds The Rose Key, a clue to the Philosopher's Stone her father had been looking for before he died.\"\ntt2239832,_mPOfQw2fmY,Michael confronts his mother for being mean to Candace and she finally admits that Candace is the perfect woman for him.\ntt2239832,C5UD270jxfs,Zeke begs Mya to forgive his past freakiness and marry him.\ntt2239832,vagva7xKyE8,Loretta is unimpressed when she catches Cedric dancing in his underwear.\ntt2239832,RmkFsYUz4cs,Michael and Candace finally get married under the fireworks in Vegas.\ntt2239832,7T5KMMZfc_U,The ladies distract Loretta with Uncle Eddie.\ntt2239832,iKS_327EF84,Michael freaks out when he sees Candace getting a lap dance and a fight breaks out in the strip club.\ntt2239832,Y15QXiFUV8U,\"Everyone tries calling someone to help bail the gang out of jail and when Cedric calls Gail, he's surprised to hear Drake pick up the phone.\"\ntt2239832,mqYkD0nMs04,\"Kristen puts pressure on Jeremy to impregnate her and when he's not up to it, she tries Game of Thrones roleplay.\"\ntt2239832,7oi0cS5tNRg,Cedric tries to establish his dominance over the criminals while Candace panics with her ladies in their jail cell.\ntt2239832,8VhgYX8xRuw,\"The girls perform their rendition of \"\"Poison\"\" while the guys gamble.\"\ntt1621045,hM6KNsz7_mk,The guys put their book knowledge to the test and their ladies are impressed.\ntt1621045,AHV1LepZ2KM,Michael shows up to Candace's family reunion and professes his love for her.\ntt1621045,ZWszIB0z50k,Lauren apologizes to Dominic on the opening night of his food truck.\ntt1621045,qv4BPYX4B8U,Jeremy proposes to Kristen.\ntt1621045,7qi8llEviYY,Dominic impresses Lauren with a rooftop dinner surprise.\ntt1621045,r_ckU9PkTbM,Cedric begs Gail to let him come home.\ntt1621045,pLlcwabi5AQ,\"Cedric tries to enjoy his divorce party, but the guys are still having troubles with their dating lives.\"\ntt1621045,wOSP7YOuOH4,Cedric explains the type of modern manhood.\ntt1621045,3A97Vc1eExE,The guys take their ladies on dates and the evening starts out rough for some of them.\ntt1621045,cmlELkvVPeQ,The guys give Dominic sketchy dating advice and the girls talk about how their dates went.\ntt1195478,AtcaQ4_DBOs,Tom can't perform sexually after Violet confesses that she kissed Winton.\ntt1195478,Gfc_7pOTR28,\"When Tom tries babysitting, Violet gets shot in the leg with a crossbow bolt.\"\ntt1195478,UYYIYehBS_s,Violet allows Tom to pick a custom wedding from a number of choices.\ntt1195478,VWMSjhr1BZE,Tom and his buddies really enjoy planning the wedding while Violet pursues academia.\ntt1195478,pzE6SVUHAYE,Violet and Suzie have an argument using Elmo and Cookie Monster impressions.\ntt1195478,-LCqZeb1de0,Violet proposes to Tom and reveals that she has a surprise for him.\ntt1195478,njq3H2iy2X0,\"Tom meets Violet's academic friends, but feels completely out of place.\"\ntt1195478,uU_ftZ6EfX8,Violet and Tom go to Alex and Suzie's wedding.\ntt1195478,2HwVVwlGHU0,\"After living too long in Michigan, Tom has lost his fire, but found a new passion in hunting.\"\ntt1195478,rYHCZi-tmTE,Violet and Tom are embarrassed by the toasts at their engagement dinner.\ntt1135503,gx-03rUq-1Q,\"After meeting Irma and learning about the business of publishing a book, Julia arrives home and learns that someone wants to publish her book.\"\ntt1135503,isFVKJA4E-k,Julie celebrates her 30th birthday with friends and Eric gets her a pearl necklace like Julia Child's.\ntt1135503,aSwH4lpuKE8,Paul admires Julia while she cooks.\ntt1135503,zXF0zcwPGuI,Julie pays homage to Julia and Julia gets her first copy of her published book.\ntt1135503,ApANYuSl7A0,\"Julie gets the worst news about her idol, while Julia also deals with hate for what she's doing.\"\ntt1135503,ptcDoIfzLtI,Julia tells her pen pal about finding her calling as a cook.\ntt1135503,zPuVP5U-xag,Paul professes his love for Julia over Valentine's Day dinner with friends.\ntt1135503,AsR-WnELodI,\"After requesting a professional cooking class, Julia is eager to prove that she's the best.\"\ntt1135503,czOgJJqehv0,\"While blogging about her experience with cooking, Julie remarks about her love of butter.\"\ntt1135503,TSQ770iqDgY,\"Julia thinks of ways to occupy her time, but struggles to find something that she truly likes to do.\"\ntt0457939,svAY8Rg8HFY,\"While they try to figure out their plans for the future, Graham reveals to Amanda that he loves her.\"\ntt0457939,LKeegFM5SdU,Amanda tries to occupy her time on holiday by singing and dancing.\ntt0457939,coDyfoCUaSk,\"On her way out of town, Amanda realizes she wants to stay with Graham and he happily agrees.\"\ntt0457939,5OGX-e6WT88,Miles plays Arthur's theme song for Iris.\ntt0457939,eZHlWaIYjNE,Miles is depressed about ending his relationship and Iris relates completely.\ntt0457939,J7_oE1uN1pU,Iris finally puts to rest her complicated relationship with Jasper.\ntt0457939,iraWz0XdffE,Iris accidentally talks to the wrong person during a confusing three-way phone call.\ntt0457939,GKNkucKoryE,Amanda breaks up with Ethan.\ntt0457939,1O9BbPEZRBs,Amanda gets to know Graham's children a bit.\ntt0457939,fY1s5Sn-GDE,Arthur gives Iris some good advice over dinner.\ntt2404435,vn8YIDxEGrw,Chisolm and Bogue stand off as the battle comes to an end.\ntt2404435,o-cA_1F05bU,Farraday sees that Billy is as skilled with a knife as he is with a gun.\ntt2404435,7uYoJwMuN_8,\"Goodnight returns to the fight, but reveals that Bogue is about to unleash a Gatling gun to defeat the Seven.\"\ntt2404435,AwtSK1gLBBk,Jack and Red Harvest face the fearsome Comanche Denali during the battle.\ntt2404435,2X8O8PN7GOQ,The Seven face off against Bogue's army.\ntt2404435,9_T2VQgL2XY,Farraday makes a sacrifice in order to save the surviving town's people.\ntt2404435,D6MN7T-tnDw,The Seven shoot it out in order to rid the town of Bogue's men.\ntt2404435,bZhBhpm6m_A,Farraday challenges Goodnight Robicheaux to show why he's a legend.\ntt2404435,vNPCXKmF9LI,Farraday attempts to con his way out of certain death.\ntt2404435,zadI5ngwLsM,Chisolm searches for his bounty in a saloon.\ntt0090927,1rP402h6Euo,McCoy blocks Abdul's caravan with his motorcycle and its missiles.\ntt0172156,XR7br4b3gsg,\"Syd and the boys force an explosion and kill Tapia, all while standing on a live minefield outside Guantanamo.\"\ntt0099399,LfL2xCfIMIU,McCoy shows off his Ph.D in ass-kicking at the expense of Cota's deadliest assassin.\ntt0099399,pJIGy4zHo6E,\"When Cota tries to bribe McCoy into letting him go, he gets more than he bargained for.\"\ntt0099399,ByPtVBI4_MI,Cota's incessant taunting at McCoy falls on deaf ears after he plummets to his death.\ntt0099399,d2uvpiz5up0,\"Cornered by General Olmedo's attack helicopter, McCoy is saved when a friendly chopper blows it out of the sky.\"\ntt0090927,BxB1Mpj8NiM,McCoy and the Americans infiltrate the terrorist school and shoot it up.\ntt0090927,Pf2LbcDDW5E,McCoy destroys Abdul with a missile from his motorcycle.\ntt0172156,TYA75RnDMGI,Mike and Marcus engage in a bloody shootout with members of the KKK.\ntt0172156,AIQHqvG9Ql8,Mike and Marcus engage in a shootout with a Haitian gang.\ntt0172156,v9Cq9nThaNs,\"When Mike and Marcus pursue a van from the morgue, bodies start falling out on the road.\"\ntt0172156,LoRpJTD3HFY,Mike and Marcus get caught in an intense firefight before pursuing a criminal on a train.\ntt0172156,F2AbEJnPRYM,Mike and Marcus talk about some personal issues while on camera in a video store.\ntt0172156,nEf2ML7wkBE,\"Mike and Marcus threaten Reggie, a teenager who has come to take Marcus's daughter on a date.\"\ntt0172156,XMPTy7Iaw9s,Mike and Marcus desperately race through Cuba to reach American soil and gain protection from Tapia's violent pursuit.\ntt0172156,edHmOaS0lRU,Mike and Marcus use guns and explosives to infiltrate Tapia's mansion and rescue Syd from being held hostage.\ntt0172156,cibZY1GwVQg,\"After Marcus accidentally ingests ecstacy, he and Mike present evidence to Captain Howard.\"\ntt0099399,jeYdR_r0iGo,\"When a Delta Force chopper lays siege to Cota's compound, McCoy uses the ensuing chaos to escape a deadly gas chamber.\"\ntt0099399,YZGetnQQU48,\"Cota executes a suspected traitor, demonstrating just how far he will go to maintain power.\"\ntt0099399,IMPHXKW9ntw,\"After the villainous Cota murders a young woman, McCoy drop-kicks him into submission.\"\ntt0099399,nqK7Kk3ZKvY,\"As Delta Force sabotages the complex, Col. McCoy rescues the hostages.\"\ntt0099399,lkT9aqC6Tqw,\"Lead by Col. McCoy, Delta Force goes to work in efficient fashion.\"\ntt0099399,cqHKducp4MY,Col. McCoy schools a bunch of would-be Delta Force operatives in how it's done.\ntt0099399,_O9lT22rCj8,McCoy manhandles a trio of skinheads when they make a ruckus at a restaurant.\ntt0090927,PJTb9EdYZDg,McCoy single-handedly clears the runway of terrorists so that the plane can take off.\ntt0090927,cSWMU_rISfw,Mccoy jumps his motorcycle into Abdul's safe house and beats the hell out of him.\ntt0090927,XssDZqS6WzE,Abdul and his terrorist partner hijack the airplane.\ntt0090927,TwnfJ8d9NqY,The Colonel and his men move in stealth and take back the plane from the terrorists.\ntt0090927,2yWYCKoqKmE,McCoy and Delta One ambush the terrorists when they arrive on the scene.\ntt0090927,hp3n_sA4Sqo,Delta Force retrieves the hostages while the Colonel and McCoy plan their next move.\ntt0090927,1ugiiAH40_w,Father O'Malley gives himself over to the terrorists when Abdul calls Jewish passengers to the front of the plane.\ntt0090927,udwKI7oFT6Y,Abdul and the terrorists shoot a hostage when the Colonel disrupts a covert strike led by McCoy.\ntt0090927,WFAu7jYslik,McCoy finds a terrorist hiding underneath a bed and kills him.\ntt0093164,5-Xw_z9dODw,\"While inching closer and closer to his fate, a terrified Danny DeMarco ends his own life rather than face the wrath of Mex.\"\ntt0093164,eNZnCwkHaDM,\"Mex admits his weakness to Cyrus Kinnick, that he is an addict, an addict for gambling.\"\ntt0093164,auMBMds7lQo,\"When Danny DeMarco and his henchmen surprise Mex, Cyrus Kinnick throws himself into the line of the bullets.\"\ntt0093164,h4QvAd6nC10,\"Mex takes on Danny DeMarco and his henchmen, electrocuting one and setting ablaze another.\"\ntt0093164,Gokp5Aq-Yuw,\"To exact revenge, Holly threatens to pull a 'Lorena Bobbitt' on Danny DeMarco.\"\ntt0093164,9xS3XqTSRr4,\"Mex's hot streak at the blackjack table ends when he bets it all, and goes bust.\"\ntt0093164,zMbx4rZOMig,\"Danny DeMarco and his henchmen think they have the upper hand on Mex, but then Mex demonstrates who's number one.\"\ntt0093164,KXa2pXA7v6I,\"At a blackjack table, Mex presses his luck, and succeeds, when he pulls out a '21,' after hitting on '19.'\"\ntt0093164,R0jAHXVoZ4E,\"At the bar, Mex is insistent on dancing with D.D. in front of her putz boyfriend Osgood.\"\ntt0093164,W3u0prIyDTs,\"Mex tries to intimidate Osgood in front of his date D.D.. But the roles become reversed as Mex is no longer the tough guy he once was, instead he's become a soft, washed-up drunk.\"\ntt0162346,A83gS4JJXXE,Seymour attacks Josh after an informative conversation with Rebecca reveals Enid's feelings.\ntt0162346,abgTPYfdbOE,A sad Seymour is honored when Enid shows him the rest of her book and says that he is her hero.\ntt0162346,6nfXJd8nV9E,Seymour completes a therapy session with his psychiatrist and gets picked up by his doting mom.\ntt0162346,_XSFVQhMC5k,Enid tries to find out Seymour's taste in women.\ntt0162346,rQWpTKfljVg,\"Enid's sarcastic shtick doesn't go over well with her boss at the movie theater, and gets her fired on the first day on the job.\"\ntt0162346,xHDeLp0sWBc,Enid gets Seymour to buy her a dominatrix cat mask which she wears to visit Rebecca at work.\ntt0162346,QoWIRCVeXBc,\"Enid gets upstaged in art class when Margaret shares her \"\"political\"\" drawing, praised by the teacher.\"\ntt0162346,HLlaSoozZbM,Enid and Rebecca harrass Josh for a ride at work while Doug whips out the nunchucks.\ntt0162346,Cd1Q6LsOR8o,\"Mrs. Allsworth shares her creepy film with her new art students, including a disinterested Enid.\"\ntt0162346,8lsl4cNrpzI,\"Enid and Rebecca scoff at their graduation speaker, and Enid finds out that summer school is in her future.\"\ntt0162346,Ub88RPZnHQM,Enid meets Seymour at a garage sale and learns about his taste in music.\ntt0130018,cIscGgQD4uE,\"Karla forces Julie to sing I Will Survive for the group, though the lyrics are more frightening than she remembers.\"\ntt0130018,D8NMSoCRPV8,Julie prepares for bed knowing the nightmare is finally over... or is it?\ntt0130018,LgKIQbxZZgY,\"Julie and Ray have a final face off against the Fisherman and his son, Will.\"\ntt0130018,TYJ-1E4hKAU,\"Julie, Karla and Nancy end up on the run after the vengeful fisherman kills Tyrell.\"\ntt0130018,pkqyDC9YnfM,Karla wakes to find herself trapped in the room with the killer.\ntt0130018,5VSg6c8TKNc,Julie discovers a horrible truth about Will as the fisherman takes care of Nancy and Karla.\ntt0130018,CShHiYrQPGM,Julie gets trapped in a tanning bed as her friends discover the entire resort has been murdered.\ntt0130018,h3g5B5JhFcY,Ben Willis attacks a dockworker in the middle of the night.\ntt0130018,Jd0XiJie7Lo,\"While preparing for a relaxing night of getting high, Titus gets a suprise visit from the hooded killer.\"\ntt0130018,f9Wq05WVXiQ,\"During a late night drive, Ray and Dave come across what appears to be an accident.\"\ntt0424136,2DdCmT_j5nE,Jeff escapes from a noose set by Hayley and comes to a realization about his true nature.\ntt0424136,sidgUs-5R64,Jeff breaks free and realizes that Hayley has faked his castration.\ntt0424136,58pw6PJAqZg,Hayley proceeds to operate on Jeff as he begs for her to stop.\ntt0424136,jJnJFGaJwV8,Jeff tries to manipulate Hayley into letting him go.\ntt0424136,GVGyBNIfPL4,\"Hayley scolds Jeff, who attempts to defend his actions.\"\ntt0424136,aIKVAAfZZeM,\"After Jeff Kohlver grabs a gun, Hayley asphyxiates him until he passes out.\"\ntt0424136,ZkZvK6v-L7s,Jeff attempts to dissuade Hayley from castrating him.\ntt0424136,RgaUubM7yyY,\"Hayley suggests that Jeff photograph her, and as Hayley poses, Jeff feels disoriented and passes out.\"\ntt0424136,KGPW4PnJtoY,Hayley and Jeff drink screwdrivers and discuss his career as a photographer.\ntt0424136,SjbUk89pY7Y,Hayley and Jeff meet for the first time at a cafe.\ntt0424136,ab927ug4_xY,Hayley explains to Jeff that she's been tracking him in an attempt to expose him as a criminal.\ntt0118564,bwnrdj6zZfQ,\"Glen finally shows some fatherly pride in Wade, but it's far too late to salvage their relationship.\"\ntt0118564,PIeiRgfL9e8,Margie tries to stand up to Glen while Wade extracts his own tooth with a pair of pliers.\ntt0118564,UcEl21V2btA,Jack takes out his hunting rifle after Wade forces him off the road.\ntt0118564,B7yi-MaUZaQ,Wade begins to spiral out of control when he gets fired by Gordon.\ntt0118564,lg0P7zox2V8,Wade and Rolfe have a difference of opinion about their father's effect on their lives.\ntt0118564,h72ZN-oKzTU,Wade talks to Margie about marriage despite his history of divorce and an impending custody fight.\ntt0118564,mc082fyyMQw,Glen lashes out at his adult children as they to prepare to leave for his wife's funeral.\ntt0118564,OaGLdGjlV7Y,Wade loses his temper when he gets into an argument with his ex-wife Lillian.\ntt0118564,iIP23U3q5FU,Wade interrogates Jack about the suspicious circumstances surrounding a deadly hunting accident.\ntt0118564,RZieTQla0dM,Wade tries to reassure Jill when she misses out on trick-or-treating on Halloween.\ntt0118564,AAE6HOrW3rk,Wade recalls a brutal memory of a drunken Glen forcing him to stack a frozen cord of wood on Christmas.\ntt1872181,V_dtlMkvp2Q,\"As he is studied by an evil scientist, Electro learns his true strength.\"\ntt1872181,mNUnCTKwS8Q,\"After Peter and Gwen share a kiss in a maintenance closet, they devise a plan to break her out of OsCorps labs.\"\ntt1872181,VflasoWmuoA,Spider-Man leaves a love message for Gwen and vows to never leave her.\ntt1872181,j0cqqCpIZHE,Peter discovers a message from his deceased father in a secret laboratory.\ntt1872181,U-R21NaE91o,Harry breaks Electro out of OsCorps and the two agree to work together to defeat Spider-Man.\ntt1872181,SD0eJL4D6q0,Harry forces Menken to give him a serum which transforms him into Green Goblin.\ntt1872181,msoyjm3gCBM,Spider-Man works with Gwen to defeat Electro once and for all.\ntt1872181,g1jO4_HQQX4,\"Harry captures Gwen, leading to a battle with Spider-Man.\"\ntt1872181,JOw4LqyJKyg,Spider-Man squares off against a supercharged Electro.\ntt1872181,Xi3P8vUveVQ,\"When Gwen falls during a battle at the clock tower, Spider-Man is unable to save her.\"\ntt0990407,Xdzv5V4MVus,Britt poorly attempts to drive the Black Beauty as Kato takes out the heavily armed vehicle chasing them.\ntt0990407,1x3IKujLO-E,\"With Chudnofsky and an army of bad guys behind them, Kato and Britt drive the Black Beauty straight into The Daily Sentinel and park right on the printing press.\"\ntt0990407,yvzmLB30MwM,\"Chudnofsky buries Britt and Kato alive, but when they escape they prove to be much more difficult to kill than originally planned.\"\ntt0990407,MdI5DrJ6V3k,Kato shoots a hole through the restaurant wall so he and Britt can escape Chudnofsky's henchmen.\ntt0990407,6wXeUrZ6p5E,Britt and Kato fight each other.\ntt0990407,3xtKas3-ctQ,Kato shows up ready to work for Chudnofsky as D.A. Scanlon threatens Britt.\ntt0990407,Wa3l6Q7e5aA,After much preparation Kato reveals The Black Beatuy to Britt and the two set off on their first night as vigilantes.\ntt0990407,Zbi-MbMsnIM,Britt and Kato pick their first fight as superheroes.\ntt0990407,lR8KTwcC8fc,Britt accidentally shoots himself with the hornet gun and passes out for 11 days.\ntt0990407,re_liKgRGew,Kato tells Britt his story and shows him the awesome car he built.\ntt0164052,6Gd4JbJxaf4,Sebastian attacks Linda in the elevator shaft and she tricks him into falling.\ntt0164052,2rPDGz_0qvw,Linda and Matt climb up the elevator shaft to escape the impending explosive destruction of the lab.\ntt0164052,aDq_JsN2Y6c,Linda confronts Sebastian over his attitude towards the team only to discover that his mind is on things far from recovery.\ntt0164052,ucYwV7EWIRU,Linda lights Sebastian on fire before he can escape.\ntt0164052,GCSbGFMWzC4,Linda comes up with a way to get out of the freezer while Sebastian makes bombs in the lab.\ntt0164052,JwAVnG8iemw,Linda and the team are successful in bringing back a gorilla from invisibility.\ntt0164052,CxQ4aL5IXZw,Sebastian is jealous when he sees Linda making out with Matt.\ntt0164052,CYgNbOsiKtk,Sebastian is successfully turned invisible.\ntt0164052,f7l5I6ZPt_Y,An invisible Sebastian hits on Linda while she's working in the lab.\ntt0164052,fVoHEZb6imE,Sebastian attacks his sexy neighbor and Linda fears the worst when she finds the mask and not the man.\ntt0101846,adjuOPzkpw4,Lt. Silak is terrified when he realizes that the helicopter pilot is Rollie's clown.\ntt0101846,n44APWaJZ58,\"Liz begs Leo not to come towards her, but when he does, she shoots him in the stomach.\"\ntt0101846,KbRMCmnLU8o,Rollie knocks a henchmen out with a cue ball device on a billiard table.\ntt0101846,a_9dO9k2TPQ,Rollie sets an explosion of beans that goes off on the killer.\ntt0101846,tGg3h7NtiXs,Rollie vacuum seals the killer like he's packaged meat.\ntt0101846,cSSYFjtc4SY,Rollie uses the clown's motion suit to attack the killer.\ntt0101846,of7H9H_aPxg,Rollie distracts the killer by lighting some corn kernels on fire.\ntt0101846,Dd0f82f8ymk,\"Leo saves Rollie, takes him for a ride, then finally scares him after so many years.\"\ntt0101846,AtWL0iQxE7U,\"After Rollie sees Mike on a security camera, he runs out to chase down the killer.\"\ntt0101846,mhCiFB07I2w,\"When the FX guys attack Fingers, it fights back and sends an explosion their way.\"\ntt0089118,GwdgbTQ5cgU,\"Rollie and Andy evade the police, using the tricks of their trade to give them the edge.\"\ntt0089118,_KzpueROmto,\"When Rollie's girlfriend is killed by an assassin, he goes ballistic and bludgeons the killer to death.\"\ntt0089118,rqdEaDM2PWM,Rollie uses his special effects expertise to play games with Mason's men.\ntt0089118,hE5rsmIsYPA,\"Rollie slips out of the mortuary, but soon encounters McCarthy.\"\ntt0089118,MWxa84PirUc,\"Rebuffing an offer to join him, Rollie sends Mason into a trap.\"\ntt0089118,RV0EbFEZpT8,\"Demanding answers, Rollie takes Lipton on a violent ride.\"\ntt0089118,MrtT-vOpAfc,\"After staging a public hit on a mob informant, Rollie is double-crossed by federal agents.\"\ntt0089118,Z8JHamH3gW4,\"A restaurant massacre is revealed to be a movie scene, engineered by effects wizard Rollie.\"\ntt0089118,o-_ochO9CFQ,\"After handing in his shield and gun, McCarthy furtively steals them back.\"\ntt3721936,UvojHP56dnQ,Krystal gives Star a dose of reality.\ntt3721936,iHkMTqikRg4,Jake melts down after finding out Star may have left with another man.\ntt3721936,lGTsRcHaMic,Star and Jake take their relationship to the next level.\ntt3721936,2fbk5E4JTkI,Star is stranded in the middle of an oil field with her friends.\ntt3721936,jV76HSEeAPQ,\"As Star nurses her broken heart, the crew sings \"\"American Honey\"\" on the way to their next destination.\"\ntt3721936,uqn1bgQX1lg,Star and Shia LeBeouf continue their trek through Kansas City suburbs looking to sell magazine subscriptions.\ntt3721936,ynG2qpTbFP0,Jake rescues Star from a group of men she went home with in Kansas.\ntt3721936,4tVEuWxns6g,Star shadows Jake during a disturbing sell.\ntt3721936,WInIV1tcI28,Star meets a wild group of kids led by Jake.\ntt3721936,4GYKaKvJ4Ng,Star takes her siblings to their mother.\ntt0401420,Jb2egULZePg,Finn shows Maya and Bryce his father's anthropological film on the Ishkanani.\ntt0492044,H9bQdTtfGCU,The ghost of Jonah reveals his fate to Matt Campbell and Reverend Popescu.\ntt0098994,lensYsrpsVY,\"After Collie takes care of the diabetic child they've kidnapped, things become heated between him and Fay.\"\ntt0098994,aRMHp-wDvnE,Uncle Bud admits to Collie that he's in over his head.\ntt0098994,dWWjjk3Ody8,Collie tries to convince Fay that he's brighter than he looks.\ntt0098994,XqtGRpyXGXg,\"Collie, disguised as a chauffeur, kidnaps Charlie from an unsuspecting nanny.\"\ntt0098994,wdlhhgAT1EU,\"Uncle Bud convinces Collie to continue with their original plan, as Collie's violent past as a professional boxer is revealed.\"\ntt0098994,HDPj29dAC-g,\"Collie returns to Fay, against his better judgment.\"\ntt0098994,OQjvys5lLk4,\"Eager to spend time with Fay, Collie rushes back to the house only to find it empty.\"\ntt0098994,Br0BUZWEDQg,Collie and Fay wait in the car for Uncle Bud to return with the ransom money.\ntt0098994,bsbgDqKys5g,\"While having a drink, Collie has his first encounter with Fay and runs afoul of a bartender.\"\ntt0098994,IltqQORdPjY,Collie opens up to Fay about his history of faking mental illness to avoid responsibility.\ntt0098994,dBbxzOOGUqA,\"Collie takes initiative by starting the kidnapping plan without permission from Uncle Bud, only to discover that he's made a big mistake.\"\ntt0401420,-CSIqCS1WIk,Maya walks in on Finn in bed with Jilly.\ntt0401420,PxKcm6wWUJ0,Finn starts a fight with Maya after she climbs in his window.\ntt0401420,2BofOahaB0w,Liz confronts Finn about his wild behavior and puts him to work.\ntt0401420,6xmaoTphmLY,Finn joins Ogden in a hot air balloon race.\ntt0401420,jqzTeVVmTvc,Maya invites Finn to undress and close his eyes as she covers his body in paint.\ntt0401420,-XggDv2QdHg,Ogden explains to Finn why the rumors that he is sleeping with Liz are untrue.\ntt0401420,1IyD0DjLrrc,Ogden entertains the crowd at a birthday party for Maya.\ntt0401420,V5P-1Vedt5E,\"After Maya catches Finn in a bear trap, she takes him to meet her comatose father in the hospital and they kiss.\"\ntt0401420,rcA0MBnPPM8,Finn watches an anthropological documentary directed by his long-lost father.\ntt0401420,gm-sqEK2InM,Jilly is disappointed when Finn is more interested in Ogden than in making out with her.\ntt1457765,QlYSFCvUGoI,Lisa explains what happened to the Station Master to Heidi.\ntt1457765,dkDGK_eFw5c,The Station Master comes for Joyce.\ntt1457765,_liUxE_lefE,Lisa races to save Heidi from the Station Master's lair.\ntt1457765,rb_iLvMVihA,\"Heidi makes a shocking discovery in the woods and later that night, Lisa gets a visit of her own.\"\ntt1457765,UJ12I9sHqK8,Joyce presents a series of old photographs for Heidi with startling results.\ntt1457765,3tbDLfgTAuI,\"Joyce follows a presence into the woods, but the terror might be much closer to home.\"\ntt1457765,8dcA5NLO_GQ,\"Lisa isn't sure what she's experiencing, but she's starting to suspect it might have something to do with Heidi's \"\"invisible friend,\"\" Mr. Gordy.\"\ntt1457765,LKVJLiiBlOs,Lisa Wyrick has a bone-chilling confrontation with the Station Master with her family's lives hanging in the balance.\ntt1457765,I7pOcssa5uE,The haunting over the family worsens when Lisa's dead mom and then Mr. Gordy make an appearance.\ntt1457765,KgbASFn2Pv8,\"Heidi sees things by the broken-down RV, but her mother, Lisa, sees even more horrifying things.\"\ntt0492044,GMnwXB4A1iI,Reverend Popescu leaves a chilling message for Wendy at the worst possible time.\ntt0492044,6hfzPfOrftY,\"With her son Matt trapped in a burning house, Sara Campbell makes a desperate attempt to rescue him.\"\ntt0492044,4VaSyU3yfMw,Matt Campbell has trouble distinguishing his visions from reality when he investigates the old mortuary in the basement.\ntt0492044,5Vo99FUjbrc,\"An ominous power lights up a darkened house, scaring Sara Campbell and her family.\"\ntt0492044,hK62U-Gm_hI,\"On the first night in the new house, Matt Campbell investigates a strange noise from the basement.\"\ntt0492044,MgYmK3cDFq8,\"With the help of Reverend Popescu, Matt Campbell has visions of a seance that wrought ghostly ectoplasm out of a young boy.\"\ntt0492044,hfCRzaZuY6s,Reverend Popescu attempts to remove the ashes of the vengeful spirit from the house - but not without a fight.\ntt0492044,AjAJNPCQ1Fs,Matt Campbell suspects something weird is happening when dinner plates pull of a magic trick of their own.\ntt0492044,OYsV5RbHvA4,Matt Campbell has a vivid nightmare about the horrible events that occurred within the house's mortuary.\ntt0492044,EwsHFGh6fkE,Both Sara Campbell and Wendy find that sleeping in a haunted house can be difficult.\ntt3470600,lzJV7k-LiC4,Buster Moon helps Meena overcome her stage fright.\ntt3470600,UK-vT8iapA8,Mike returns to sing in the show while Johnny reconnects with his father.\ntt3470600,engSFG20kaA,\"Ash sings her original song \"\"Set It All Free\"\" for her final performance despite interruptions from Judith.\"\ntt3470600,Z2xooz6844k,Rosita and Gunter shake it off for their final performance.\ntt3470600,ETC85CgzTHM,\"Johnny sings \"\"I'm Still Standing\"\" for his final performance while his father watches from prison.\"\ntt3470600,bCOc7VCSox4,\"After his theater collapses, Buster Moon tries to start over by opening a car wash with the help of Miss Crawly and Eddie.\"\ntt3470600,cUT0WQ9cTrg,Buster Moon invites Nana to a private screening of the show in hopes of convincing her to become a sponsor.\ntt3470600,WDAlAqy9WUM,Buster Moon arrives to work to find a long line of animals waiting to audition for the show.\ntt3470600,ukl9qBvRXfc,Eddie shows Buster the error on the flyer.\ntt3470600,10khF4-1rbU,Buster Moon holds auditions in his theater for the singing competition.\ntt4302938,15gPYqGlkwc,\"Dropping the sword and armor, Kubo grabs his shamisen and along with the villagers shows the Moon King that love and memories are the greatest magic.\"\ntt4302938,q_VK4zsJWNw,\"Kubo confront his grandfather, The Moon King, who transforms into a giant beast.\"\ntt4302938,Awr5m5-ocv8,\"Monkey, revealed to be Kubo's mother, tells Kubo and Beetle the story of how her and Hazno met.\"\ntt4302938,hKTAeQKaKu0,\"After falling into a trap left by the remaining Sister, Monkey and Beetle give their lives fighting her off to save their son Kubo.\"\ntt4302938,Kdr51Y91SQE,\"Kubo, Monkey and Beetle must battle a giant skeleton to get ahold of the legendary \"\"Sword Unbreakable\"\".\"\ntt4302938,zjdesHuied8,\"Monkey has a fierce battle with one of the Sisters while Kubo and Beetle attempt to get the \"\"Breastplate Impenetrable\"\" away from the Garden of Eyes.\"\ntt4302938,7Q6ywfDSm_0,\"When Kubo accidently stays out after sundown, the Moon King's daughters find and attack him.\"\ntt4302938,dpKQxs7ashU,Kubo and Monkey meet a samurai Beetle who has memory problems.\ntt4302938,LfL_KOOZvLw,\"Kubo, using his shamisen to magically manipulate origami, tells the tale of the samurai warrior Hanzo and his quest to defeat the Moon King.\"\ntt4302938,Qrl_BpahMRs,\"During the long journey, Kubo starts to play around with his magic, much to the annoyance of Monkey.\"\ntt0479500,yg42xdVf9mM,Nancy Drew helps save the life of a girl at her birthday party but performing a tracheotomy.\ntt0479500,XqwQlCAM3P0,Nancy Drew gets caught by Mr. Biedermeyer and his henchmen.\ntt0479500,rzCeSHk3aVY,\"While getting a ride home from the hospital with her father and his business partner Dashiel Biedermeyer, Nancy realizes Mr. Biedermeyer is the man who has been chasing her.\"\ntt0479500,Ece-FTMuKFU,\"Corky, a young boy from her new school, arrives at Nancy's house to apoolgize for taking part in a prank the day before.\"\ntt0479500,PdzjDn5zVXo,Nancy Drew finds a bomb in her car and then attempts to chase down the suspect who put it there.\ntt0479500,DjNVqYjp3E4,Nancy Drew and her friend Corky are almost killed by a car attempting to run them over.\ntt0479500,dXNmLJXEgQU,It's just an average day for Nancy Drew as she solves a crime and catches two criminals.\ntt1219342,mHRbCgVCbIA,Soren and his friends meet the wise Echidna.\ntt1219342,PSWgZzUr_Yw,\"After falling from their tree, Soren and Kludd are attacked by a Tasmanian devil and then kidnapped by two evil owls.\"\ntt1219342,PD4Gq5GPcN8,Kludd proves his exceptional flying ability to the evil queen Nyra.\ntt1219342,raDWhK7iSqU,\"With help from Grimble, Soren and Gylfie escape the clutches of the Pure Ones.\"\ntt1219342,q9Wip3v8h40,\"When a murder of crows captures Mrs. P, Soren stages a daring rescue.\"\ntt1219342,0YOmyGX2kmQ,\"After escaping the Pure Ones, Soren and Gylfie realize they are truly flying for the first time.\"\ntt1219342,Xjp16xSdsp0,\"When Digger falls from the sky during an ice storm, he is rescued by the Guardians, who lead Soren and the others back to the Great Tree.\"\ntt1219342,3NpYTks1mDI,The Guardians take to the sky to do battle with the Pure Ones.\ntt1219342,n94um7eDILg,\"After betraying his brother Soren, Kludd falls to a fiery death.\"\ntt1219342,hRfF8Kes77E,Soren courageously defeats the evil Metal Beak.\ntt0183790,51reM6wq2XU,Jocelyn visits a wounded William after he proves his love to her.\ntt0183790,95N85bGdzw4,William's friends protect him when he is sent to the stocks for impersonating a nobleman.\ntt0183790,PVEIr4MGaT8,William faces Adhemar in the last round of the jousting tournament.\ntt0183790,Nj61hQhTwW0,William learns that Adhemar has discovered his true identity and his friends encourage him to run.\ntt0183790,1WwlHv69kik,William learns that his father John Thatcher is still alive.\ntt0183790,eAC2kNiKuEg,\"After winning a joust tournament in his master's place, William convinces Roland and Wat to help him compete in other tournaments.\"\ntt0183790,yygNdTxoHus,Adhemar tries to embarrass William by having him show off a dance from his country.\ntt0183790,MBNiDwytFow,William enlists his friends to help him get ready for the tournament's banquet.\ntt0183790,mXz39lQAEmY,William writes a letter to Jocelyn with the help of his friends.\ntt0183790,yLFZcXeZymY,William follows Jocelyn in order to learn her name.\ntt0047795,gO6qemCFhEU,Freddie and Peter hide from the police by posing as a snake charmer and a beggar.\ntt0047795,2m-I23sWzEI,Freddie gets a date with a forward French showgirl.\ntt0047795,fcFKVVHQn7o,Freddie and Peter find the medallion that everyone else is searching for.\ntt0047795,kOe-yLCbA4E,Madame Rontru and her men try to steal the medallion from Freddie.\ntt0047795,-utei4CzIzc,Freddie and Peter try to pawn the cursed medallion.\ntt0047795,Yg6sZ2htZfc,Freddie and Peter try to slip the medallion of death to each other during dinner.\ntt0047795,CECosJ9_6MI,Freddie and Peter argue over picking a pick or a shovel.\ntt0047795,4WibEcqn1c8,\"Peter dresses up as a mummy, but then they have to deal with two other mummies that show up.\"\ntt0047795,i_rch_cy7dM,\"Freddie and Peter meet the mummy, who grabs Freddie.\"\ntt0047795,GRADFiFVLJQ,\"At the opening of their mummy themed nightclub, Freddie charms a companion of his own.\"\ntt4263482,b6vOp7_rI6Q,Thomasin tries to scare her little sister into silence.\ntt4263482,iBptyagVaEQ,\"With little to stay home for, Thomasin makes a pact with Black Phillip.\"\ntt4263482,LxAebgxJHyg,\"William is violently attacked by the family goat, Black Phillip.\"\ntt4263482,ALhR_LDm5Is,Thomasin is accosted and threatened by her mother.\ntt4263482,YjJ2tMg4tTA,The family prays over Caleb as the witch's spell overtakes him.\ntt4263482,oS_Iap5D9jQ,An evil madness takes over Katherine while her children find something fightening is locked in with them.\ntt4263482,AE4RhPMAtp0,\"William and Caleb return home from hunting to find the children playing with an escaped Black Phillip, a family goat.\"\ntt4263482,atQYOl5KL-o,Caleb stumbles upon the lair of the Young Witch while searching for his sibling.\ntt4263482,u7DV5coBXSA,Thomasin plays a game with her youngest sibling.\ntt4263482,aSajnx9QK-0,\"The family watches as Caleb convulses on his sick bed, causing the children to confess that their older sister is a witch.\"\ntt0288477,cMmi5sRe8wc,\"Epps prepares to sink the ghost ship when she is confronted by Jack, who she now knows is an evil spirit.\"\ntt0288477,n3D3JTzaiwA,\"As Greer and Santos prepare their boat, the Arctic Warrior, for heading back to land, a ghost child warns Epps to stop them.\"\ntt0288477,RdTIzSuw-nI,Captain Sean Murphy attacks Epps due to an unseen force making him think that it's the ghost of Santos looking for revenge.\ntt0288477,hqhm_-sWbFg,Epps explores a meat locker only to find Dodge and Munder playing a prank on her.\ntt0288477,saTBYjmhcok,After the Arctic Warrior collides with the abandoned ocean liner Antonia Graza Captain Murphy explains the mysterious history surrounding the missing cruise ship.\ntt0288477,13wgcygv86Q,\"While exploring the decaying ship, Munder falls through the floor only to be caught by Epps who catches him and a glimpse of a little girl.\"\ntt0288477,V5hfxgrLuoU,Epps and Jack continue to explore the abandoned ship only to open the wrong door.\ntt0288477,yNhbLL3Xvcw,Epps and Jack discover a box of rats and gold.\ntt0093091,7Fj5JAYfWVc,The carnival folk rescue two innocent teenagers from the evil ghoulies.\ntt0093091,bd0IiiCDDGI,Patty looks for her lost kitten in Satan's Den and is ambushed by ghoulies.\ntt0093091,PwgxGA6pLhc,Larry and Uncle Ned unknowingly acquire ghoulie stowaways while stopped for gas.\ntt0093091,vzzuOkCkHlQ,Young couples acquire mysterious injuries in Satan's Den.\ntt0093091,N-ZFty2-G7I,A young man searches for his friends in Satan's Den and is captured and tortured by ghoulies.\ntt0093091,T2ph28ghuEU,\"Nigel, with Larry, recites a magical spell from a book and conjures a giant ghoulie from the ground.\"\ntt0093091,D4HGK-_5TkY,The Ghoulies succeed in killing a deranged Uncle Ned.\ntt0093091,H_sYBmKxmvs,Bozo taunts carnival patrons and finds a Ghoulie in his dunk tank who eats his arm.\ntt0093091,Y4SSkX4sRMQ,Hardin meets his demise while sitting on a toilet.\ntt0093091,H1TQv3qA7PI,Larry makes an explosive appetizer and feeds it to the Giant Ghoulie.\ntt0472458,ZG60oroE7AI,Kate loses a lot of blood and collapses on the street.\ntt0472458,6bxX5ZV1qn0,\"Feeling rejuvenated, Mrs. Li gets intimate with her injured husband.\"\ntt0472458,gLWaU-LKIwQ,Mr. Li visits Aunt Mei for a forbidden taste.\ntt0472458,T535zq4Kpt8,Mr. Li presents Mrs. Li with a check to compensate for his frequent absence.\ntt0472458,n03zeBpWC0M,\"When Mrs. Li panics at her fishy smell, Aunt Mei reassures her that the smell means the cure is working properly.\"\ntt0472458,8QPhWhQ6zS8,Mrs. Li quickly leaves the table when guests question the fish smell that coincides with her arrival.\ntt0472458,qC7HofT0v4g,Mrs. Li convinces her husband's mistress to abort her child.\ntt0472458,9-_TcYrv2YU,\"Mrs. Li asks Aunt Mei for more potent dumplings, but she's disturbed by the main ingredient.\"\ntt0472458,pjKnwaYJi6Y,Aunt Mei shows Mrs. Li the rare ingredient in her latest concoction.\ntt0472458,OwDRBPO9eKw,Aunt Mei visits an old friend at the hospital to obtain her secret ingredient.\ntt0472458,LYBdGadPNz8,A pregnant teenager comes to Aunt Mei for help.\ntt1700841,1Jk8IZYcxmQ,Firewater and the non-perishables reveal to Frank the dark secret that humans eat food.\ntt1700841,g7bQ7ynurn8,\"After breaking up with Brenda, Frank has a dream of her in the arms of strange vegetables.\"\ntt1700841,SWl87YF_hHQ,Frank tries to stop Brenda from being taken out of the store while the foods drug the humans with bath salts.\ntt1700841,VcnAtRLJS84,Kareem Abdul Lavash and Sammy Bagel Jr. argue over the idea of coexisting in the same aisle.\ntt1700841,vmynulColPI,Barry returns to the store with incredible news and a severed head.\ntt1700841,DI5t1Bxfy90,The foods fight all-out war against the humans in the store.\ntt1700841,4pSAjI9lOGY,Frank reveals to the entire store that humans are eating food in the Great Beyond.\ntt1700841,YKZRedzkeU8,\"A druggie trips balls on some bath salts, causing him to be able to see and talk with the food.\"\ntt1700841,iqZmwwUvgVU,Barry learns the terrible truth that humans slaughter and kill food.\ntt1700841,MvIqR1cMbv0,All the foods in the supermarket sing about their human gods and their destiny in the Great Beyond.\ntt0119109,bxxHPYFtbE4,Dale and Jack overreact when they hear of Scott's bad choices.\ntt0119109,q_y6O1yflZI,Dale poses as a German record producer in order to get information on the Scott's whereabouts from the band Sugar Ray.\ntt0119109,44BkOqV2jDc,Dale practices the many ways of greeting his newfound son Scott.\ntt0119109,H79X1JQ_S30,\"Dale and Jack give their \"\"son\"\" a shower, which sounds really bad to Jack's wife.\"\ntt0119109,HQCava8QqK8,Dale freaks out while driving over a bridge with Jack.\ntt0119109,XNUers0BuD4,Carrie finally catches up to Dale and Jack.\ntt0119109,qHA5R-Q1Od8,Dale and Jack have a heart to heart with their son Scott.\ntt0101745,1I2xNdoQXM4,Hank accuses Dr. Stone of stealing his girl.\ntt0101745,hQIL99lP484,Dr. Stone delivers a baby as his car gets hit by a truck.\ntt0101745,Qc3voNxG1NM,Dr. Stone receives an unusual form of payment from his first patient.\ntt0101745,SUfo49TsWOQ,Dr. Stone visits Lou at home to ask her out to dinner.\ntt0101745,1eN1O1j3LcY,Dr. Stone interviews with Doctor Halberstrom at his fancy Los Angeles clinic.\ntt0101745,CpIgfRGUpU0,Dr. Stone is urged by the locals to stay in town instead of leaving for Los Angeles.\ntt0101745,I0jOVXcnjdg,Dr. Stone destroys a fence with his convertible in a small rural town.\ntt0101745,xMjEmE1YLSU,\"When Dr. Stone misdiagnoses a child's stomach problem, Dr. Hogue intervenes with an old-fashioned cure.\"\ntt0101745,vp7r-h8OLm0,Lou encourages Dr. Stone to urinate around the woods to foil the local deer hunters.\ntt0101745,jmuC1ebmYQg,Dr. Stone helps the townspeople with their ailments.\ntt0099077,Tv5BC6yJ61o,Dr. Sayer reflects on what he learned as his patients' conditions worsen.\ntt0099077,XtL5tGpGIN8,Leonard visits Paula one last time.\ntt0099077,q-nQtR-WbIs,The patients express their concern to Dr. Sayer about Leonard's worsening condition.\ntt0099077,fZflzybv5T0,Dr. Sayer tries to convince Dr. Kaufman for more money to put all the patients on the new drug.\ntt0099077,2yZlrJWBLac,Leonard begins to show signs of getting worse.\ntt0099077,vKhAdR1G9io,Leonard asks Dr. Kaufman and the board for permission to take a walk.\ntt0099077,OxKXKwijH_g,Leonard calls Dr. Sayer late at night after talking with Paula.\ntt0099077,Hj52vD7KGxs,Dr. Sayer discovers that Lucy can catch an object even though she is catatonic.\ntt0099077,kS_QskTI8WI,\"After giving Leonard a large dose of L-Dopa, Dr. Sayer awakens to find Leonard gone.\"\ntt0099077,fNjMYPeG8IU,\"After getting the funding to put all the patients on the new drug, Dr. Sayer finds the patients have awakened.\"\ntt0097236,VEsvArkVtYQ,\"Joel holds Dumas at gun-point, while Bobby tries to talk him down with an inspired speech.\"\ntt0097236,JIvq1ObEOrs,\"Bobby shows off his impressive dance moves to Lainie, and then asks her out on a date.\"\ntt0097236,_cZ-D5Q-26M,Bobby gets a serious beat down by Dumas and his cronies.\ntt0097236,415kITLNgvg,A drunken Joel gets into a fight with Lainie in front of everyone at the dance.\ntt0097236,qlyJNTOwkAI,Two sets of lives transform when Keller and Lainie collide with Coleman and Gena.\ntt0097236,oOBu3uqpW1A,Coleman meets up with Bobby in a dream to discuss where his wife is and how the two can switch back.\ntt0097236,_WE7Il9dZCE,\"Trapped within Bobby's body, Coleman goes to see Ike, his best friend, to try and tell him about the results of the experiment.\"\ntt0097236,7LoHCPOvmuo,Coleman and Bobby realize that they are stuck in one another's body.\ntt0097236,mHgXG0tmomg,\"Bobby, now occupied by Coleman's persona, meets his parents again for the first time, as well as his best buddy, Dinger.\"\ntt4382872,D3fVS2I9ZVM,Harry stops Ken from stealing the Condor.\ntt4382872,X0d8qyjQ20M,\"Harry destroys the Condor, mourns his father's death and carries on his life with Victoria.\"\ntt4382872,SJdUJZ7odoU,\"Leonard confronts Ivan about killing his wife, and he gives Harry the chance to get his revenge.\"\ntt4382872,UBnufwe-p_c,Kris drives as fast as she can while she and Harry chase Victoria.\ntt4382872,n1GlWng3oOQ,Leonard tells Harry about his CIA revenge plan.\ntt4382872,aDZSH05DM_c,\"Leonard gives Ivan the Condor, but first Ivan wants a demonstration of its power.\"\ntt4382872,E67jk75CRWM,\"Leonard is not able to save his wife from his adversaries, but Ken arrives just in time to save Harry.\"\ntt4382872,ArGWpUHkEmc,Harry fights off a CIA assassin while Victoria fights off Drake.\ntt4382872,o3ya6zEv3eM,Harry escapes from the CIA agents charged with keeping him home and Sitterson tries to understand how.\ntt4382872,0mjSZpCpsdc,\"Harry gets into trouble looking for information at a biker bar, but Victoria arrives just in time to help him out.\"\ntt2923316,xMoCoTO3d-Y,James tries to buy more time for his brother and Ray shoots down a helicopter.\ntt2923316,oEddtexPCso,Ray and his crew break into the bank's vault.\ntt2923316,QmEz0udgJsA,James knocks out a paramedic to conceal his identity and Emily discovers that James was in on the robbery.\ntt2923316,2OrlbOFhcUs,Frankie stages James to look like his hostage. The cops shoot Frankie and James goes free.\ntt2923316,wytpJXfw86w,James refuses to escape without Frankie.\ntt2923316,MMxE41xM9ic,\"When Spoonie steals the getaway car, the thieves panic and Frankie shoots a police officer.\"\ntt2923316,kPXFWplmSyA,Frankie comes home to visit his brother James after ten years in prison.\ntt2923316,NufzJ2YVJB4,Frankie asks James to trust his business partners because they saved him from sexual abuse in prison.\ntt2923316,wkoHQdbhfOc,\"Frankie tries to explain that he's trying to look out for James' best interest, like he has done since they were young.\"\ntt2923316,sRUb0GR0ZiE,James gets dragged into a crime he didn't want to be a part of when his brother's business partners murder someone and James has to drive the getaway car.\ntt4195278,iAzMFB3QaBk,Tell and Ray get to know each other as they wait for their blackmail victim.\ntt4195278,5gtFQegr2xA,Ashton and Morton try to convince Tell that he is dying so they can discover where he hid the money.\ntt4195278,ToF0U78xIyA,Tell and Ray attempt to use a gun to open a safe.\ntt4195278,tXF23iSwW3I,Tell deceives the police and his fellow robbers and makes off with the money himself.\ntt4195278,9u6xaK00otk,Beverly gives Tell the truth about William's parents.\ntt4195278,oOWl14GlJx4,\"Tell tricks Morton and Ashton into believing he's got the money, but it's really just a gun.\"\ntt4195278,h5KBS20Ke6U,Ray stabs Tell with what he believes is bleach.\ntt4195278,ye38FmLnLBo,\"When the cops show up at their house, Beverly shoots Tell, but he makes off with the money.\"\ntt4195278,pzZ9UdUTRNA,\"When Tell and Ray try to blackmail Huffman, it goes terribly awry.\"\ntt4195278,8OS1xorvbAs,Ashton and Morton kill Ray as they chase down Tell's stolen money.\ntt3503840,poU8QxFJjbo,John kills The Boss and Chi finishes off Colt.\ntt3503840,2uZV27BttLM,\"John and Chi do clean up work for their bosses, and erase the Afahani from the equation.\"\ntt3503840,1BS3mo_yHvY,John returns the video camera to The Boss and a fight breaks out.\ntt3503840,G77UaCXuoOs,John saves Chi and gets his revenge on Van Horn.\ntt3503840,HYog4UvM1zI,\"John and Nadia retrieve the video camera, but they are too late to save Chi from being kidnapped.\"\ntt3503840,gUKbFeHjYX8,John breaks into the mansion to save Chi while Nadia gets her revenge on Diana.\ntt3503840,hM1OunX-QBg,\"After fleeing from her captors, Nadia begs John for help.\"\ntt3503840,gxsDfmzU-Lo,John detonates a bomb and heads for Club One so Nadia can find the video camera she hid.\ntt3503840,k2-SBnbz7pE,Chi interrogates some lackeys for more information about The Boss and his interest in Nadia.\ntt3503840,MkNhAG2CUso,Nadia tells her story and John vows to avenge her sister's death.\ntt3598222,yMe-7hW4evU,Ulrika sneaks on the getaway plane and fights Clay and her team to the death while Mei-Lin uses her pilot skills to wreck Raven.\ntt3598222,WK_rWzm86RI,\"After recovering Elise, the team fights a dangerous car chase battle in order to make it to the getaway plane.\"\ntt3598222,VlCkdkzOwFk,\"Clay must fight many foes on her way back to Ulrika's compound, where Mei-Lin and Kat are being tortured.\"\ntt3598222,vpTj6-4d5qA,Clay releases the girls from their cells and Kat arms them with weapons. Grigori's latest abuse victim gets to exact her revenge.\ntt3598222,acVDpeSHw44,Clay and her team use their special skills to liberate Elise from her jail cell.\ntt3598222,ZFGBlZw2kIM,Raven betrays her team for a better deal and Elise falls back into Ulrika's hands.\ntt3598222,VHF31ybakiM,The President of America's daughter is kidnapped.\ntt3598222,fbnpdWhOwIs,Mona gives the prisoners the lowdown on their mission to rescue the President's daughter.\ntt3598222,SEtuhB8LEZU,When a checkpoint guard sexually harrasses Kat the fight is on and the ladies leave no survivors.\ntt3598222,HuUhj-abydY,\"The ladies use stolen missiles to force Ulrika's hand in a partnership deal, gaining them entry into the compound.\"\ntt3106120,djTx7slpfHI,\"Seth, unable to escape, faces Jacob Goodnight head-on.\"\ntt3106120,gmnU4tK8GOo,\"Amy and Seth try to outsmart Jacob Goodnight, but he's got a deadly strategy.\"\ntt3106120,OS0rZQtDsoc,\"Amy tries to save Tamara from Jacob Goodnight, which doesn't go too well.\"\ntt3106120,sfCQQLSwz3s,Amy and Seth venture into the basement to save Will from Jacob Goodnight.\ntt3106120,N-v-x6qmtcc,\"Jacob Goodnight corners Kayla in the bathroom, triggering some harrowing flashbacks with his mother.\"\ntt3106120,g9hEJv2uZLM,\"The group runs from Jacob Goodnight, but one of them isn't so lucky.\"\ntt3106120,kBTPEpA8BzU,Seth has an unfortunate encounter with Jacob Goodnight.\ntt3106120,ymShdFJoqiw,\"Tamara tells Carter about Jacob Goodnight, which is particularly exciting for her.\"\ntt3106120,YRdXmtGnwCI,Jacob Goodnight stalks Holden while Amy and company discover Carter.\ntt3106120,29D9SkdtVBU,\"Tamara and Carter have sex in the morgue, unaware that Jacob Goodnight isn't as dead as they thought.\"\ntt1043791,KY-bRBsLLtA,\"Webb decides to stay in the water a little longer with the skinny dipping Ketsy, which bothers Larri more than she could've possibly imagined.\"\ntt1043791,HBPQtYCDKrk,\"Larri goes head to head with Ketsy, the forest spirit.\"\ntt1043791,-wqnmuzG51c,\"Convinced she's seen Webb, Larri runs off to save him, unaware that the danger is much closer to home.\"\ntt1043791,Fecoe2kJdD0,\"The group makes their way through the forest, running into something that chills them to their very core.\"\ntt1043791,LRHNkBU6YWw,\"Beware the dreaded maiden of the forest, for she shall turn you into a tree.\"\ntt1043791,RxEkm4dDAL4,Ketsy's skinny dipping gets everybody excited.\ntt1043791,-KW0wz1xBfw,\"Stalked by a dark force, Rob makes a harrowing run back to his tent.\"\ntt1043791,kTUnQubJMoc,\"When Webb hits a fawn, he's left with no choice but to put it out of its misery.\"\ntt1043791,lcIuJs1vHrg,\"While Webb and Larri get close, Milk and Jess attempt to do the same.\"\ntt1043791,UiQdZRBhBAE,\"Milk makes the mistake of disturbing a beehive, creating a sticky situation.\"\ntt0279688,1YrP2ICd6ro,\"Edward taps into Joe's mind, connecting his consciousness with that of the demonic Amducious.\"\ntt0279688,SdFZEeR8a2s,\"Edward visits Joe's shack, only to discover the true nature of the horror afflicting his patient.\"\ntt0279688,_eyLdmCxtPo,Uncle Irving disapproves of Edward's uses for Ardelia.\ntt0279688,BWR9aK0vAAY,\"Edward drills into Joe's brain to achieve connection to the eternal glory of Amducious, who waits in the land of the dreaming.\"\ntt0279688,2UK1aSp3bUY,Edward uses his electric neurology machine to make Ardelia experience unimaginable pleasure.\ntt0279688,nWd-gLPa5fs,\"Dr. Wardlow performs an examination of the listless murderer, Joe Slaader, which hints at something far darker.\"\ntt0279688,4UOnDFoEPUQ,Edward prepares for the coming of Amducious with Ardelia.\ntt0279688,ti39GhRZkrw,\"Edward forces Dr. Wardlow to his knees in preparation for the coming of his unholy master, Amducious.\"\ntt0279688,1dLZuGiJRXA,\"A caretaker at the asylum is given disturbing protocols for handling Edward, committed after summoning a Lovecraftian horror.\"\ntt0279688,Tp9iK2u30qQ,\"Edward uses the tumor in Joe's back, to open to rift to his dark lord waiting beyond the land of sleep.\"\ntt2396701,-Nj1XUtmKDo,Ray goes ballistic when the ghosts cause his instruments to break.\ntt2396701,sG_cgDlDyEg,Keith follows the spirit of a little girl and gets attacked.\ntt2396701,iaxDwgBzVFk,The house wants Penny and it will kill her and Jake to get what it wants.\ntt2396701,eYt5GYOLjNI,\"Bethany mourns the loss of Penny, who finds out she is dead and imprisoned in the house forever.\"\ntt2396701,j4W7FAGrpiQ,Vanessa is convinced that all hope is lost and she needs to commit suicide.\ntt2396701,EnAegC2mT8I,Keith does his best to protect the group from a ghost called Yankee Jim.\ntt2396701,LiZ_h3tUmMs,\"Two police officers arrive at the Whaley house and only one survives. Meanwhile, Vanessa's injury is getting worse.\"\ntt2396701,m2yxUTpM3IQ,Vanessa gets possessed by a spirit in the house and Craig is killed.\ntt2396701,eret8dNSTqo,The ill tourist returns to the Whaley House and a spirit persuades her to take her own life.\ntt2396701,pRlsbwGqx8g,Keith hears what the ghosts have to say - that everyone is in danger and Penny must come with them to the other side.\ntt2240312,9GBxXdJBSPU,McBride inhales the ghosts of Warden Wilkes and Van Claus and they battle within him until he explodes.\ntt2240312,bvEJjjYbgtk,\"There are only three survivors left, but after Johnny stabs out Natasha's eye, it appears the spirit of Van Claus still exists.\"\ntt2240312,1UtDbLZsJ4Q,Jerry digs out Heath's eyes with egg beaters.\ntt2240312,ZsDOHhqqLCQ,\"McBride discovers that Jerry is possessed by the spirit and when she gets away, he enlists Johnny's help to take her down.\"\ntt2240312,jzxMo2UKUKM,\"After switching bodies, the spirits of Warden Wilkes and Van Claus finally break free and battle as ghosts.\"\ntt2240312,a6cUudbbHl0,McBride tells the story of how the spirit of Van Claus is able to possess people one night per year.\ntt2240312,vmOBZjVBCUo,Kyle is possessed by an evil spirit when he brutally murders a park ranger.\ntt2240312,QPaP-XRQeM8,Van Claus kills one last time and stabs out his own eye before his execution.\ntt2240312,15XqLhQ0_Oo,Kyle is possessed by an evil spirit when he stabs a park ranger.\ntt2240312,a2ZdXUZt3iw,\"After being dared to sit in the electric chair, Tony gets stuck in it and a mysterious storm kicks up until he is freed.\"\ntt1658801,yquyze0QbPk,Laurel and Stacie make their love official and get a domestic partnership.\ntt1658801,mdgbtrpVBm8,Dane meets Stacie for the first time and discovers that Laurel is a lesbian.\ntt1658801,YjbYhnnEDRo,\"After Laurel and Stacie are almost robbed on their date, Laurel suggests they go back to her place.\"\ntt1658801,PQbyl1vsn1o,Laurel opens up about her past struggles with her homosexuality in order to draw a confession out of Christy.\ntt1658801,rqKaJ4Yp_oU,Stacie competes against Jake's best mechanic to prove she can change a tire faster.\ntt1658801,QDroSLQiSRI,\"After a pair of jerks taunt Stacie while she is at work, she get the horrible news that Laurel's state has worsened.\"\ntt1658801,Hgee-O7ZAnY,Steven speaks out against the freeholders and literally begs for them to reverse their decision on Laurel's pension.\ntt1658801,NrhBIkWlIfA,\"After a hard-fought battle, the board votes to approve Laurel's motion to pass her pension to Stacie.\"\ntt1658801,1rJ_NvTBOmc,Steven lays out his plan to fight for Stacie and Laurel's pension.\ntt1658801,0Cufl5Gao98,\"Dane addresses the board about Laurel's situation, but the request is denied.\"\ntt1489889,PqOlbM-zmuI,Calvin discovers the true identity of the Black Badger.\ntt1489889,VPOd_Y2qFJk,Bob is named the Homecoming King at his high school reunion.\ntt1489889,M3Jts1DPcWk,Calvin sees an opportunity to retrieve the codes in the middle of a shootout.\ntt1489889,BbyMGiPjDOw,Bob and Calvin's plane runs out of fuel.\ntt1489889,YjfLp0bll5U,Calvin helps Bob escape from being tortured by the CIA.\ntt1489889,ssxqmxjrx2c,\"Calvin meets his wife, Maggie, for marriage counseling.\"\ntt1489889,3SsvC_2wKI0,\"Bob and Calvin get help from Bob's high school bully, Trevor.\"\ntt1658801,yVRmafc7cqQ,The board of freeholders vote on whether or not to allow Laurel to assign her pension to her partner Stacie.\ntt1489889,MNQQS7QR9Vo,Bob fights off CIA agents at Calvin's workplace.\ntt1489889,bdJPnMKhsnY,Calvin and Bob meet up to get drinks.\ntt1489889,M4YOZHoDSyg,Bob has a plan to escape from the CIA agents tracking him.\ntt2113075,DxdOJYRdABY,Mister does an impersonation of his mother and Pete reveals what his mother did to him.\ntt2702724,NOACyJ1CYfo,\"In order to keep the business contract, Michelle and Renault fight each other with swords.\"\ntt2702724,hAbVFxYi_q0,Michelle butts heads with one of the mothers at the Dandelion's meeting.\ntt2702724,aHQQs4D3krU,Michelle and Renault kiss and make up after a dangerous rooftop battle.\ntt2702724,xRw3fodr6jY,\"After rejecting Michelle's Plan A, Plan B goes into full effect when Mike distracts Kenny.\"\ntt2702724,mG_G5waoSeo,Michelle teaches the girls about business and then a fight breaks out between the two troops.\ntt2702724,odvIh7iwK2E,Michelle helps Claire get ready for her date by adjusting her breasts.\ntt2702724,Eb9WH9OiKn8,Michelle apologizes for selling the business.\ntt2702724,ZLmRWzBjbtU,\"Claire is having trouble with her new roommate Michelle, who has a little trouble understanding personal space.\"\ntt2702724,i1igdJh44yU,Michelle kicks off her business conference with some singing and dancing and T-Pain.\ntt2245003,sm5Zgj8kjD8,Milly shares one last moment with Jess before she dies.\ntt2702724,YRruOzr9_w0,Michelle gets some help applying her teeth whitener and Claire asks for a raise.\ntt2245003,EuZM3sfjqno,\"Miranda sneaks Milly out of the hospice so she can make it to Jess' delivery. Meanwhile, Jago tries to patch into the birth from his oil rig.\"\ntt2245003,opyh8AAgisI,Milly lets down her guard and Ace makes her feel good about her body.\ntt2245003,jzhXtCHYrAM,Milly and Jess catch up over the news that Milly is dying.\ntt2245003,qR9MgJkOFJ0,Milly asks Jess a few final favors and then she gives away her best pair of shoes.\ntt2245003,dZmGh0bXqqw,Jess goes along with Milly on her spontaneous quest to see the moors from Wuthering Heights.\ntt2245003,fuwfQJrMgLI,\"When Kit throws a surprise birthday party for Milly, she freaks out on her party guests and argues with Kit before she leaves.\"\ntt2245003,pKHAhc31MOI,Jess confronts Milly about her selfishness and tells her that she's pregnant.\ntt2245003,HLTpxttylTM,Milly tells Jess and her family about her cancer diagnosis.\ntt2245003,DLb9vR3Zu3g,Milly mourns her double mastectomy at a bar and Jess helps her get home safely.\ntt1767372,iJ_DrM05hp4,Isabella wraps up her success story with Judy.\ntt1767372,DcpIpj7RbxQ,Jane interrupts the rehearsal with information about Isabella that causes everyone in the room to argue.\ntt1767372,m9aEg5dlFOI,\"Delta confronts Arnold about his cheating and finds Isabella in his room. When Seth appears, he and Arnold argue about Delta.\"\ntt1767372,91nX46JsnlU,Delta discovers that Arnold has been cheating on her and she storms out of the store in clothes she hasn't yet bought.\ntt1767372,uBP8cPLPWrQ,\"Seth tries to hide his hooker before Delta arrives, but she gets discovered and Delta rejects Seth once again.\"\ntt1767372,7-H5Yu3_Py8,\"Still hurt after finding out about her husband's affair, Delta tries to hurt him back by taking a scene with Seth a little too far.\"\ntt1767372,KTxT13DzNsc,Isabella is the source of a lot of stress for three men on dates in the same restaurant and private detective Fleet is there to witness the whole fiasco.\ntt1767372,TknTP23YYFI,\"Isabella is surprised when she sees that her client Arnold is the director at her audition, and Arnold gets nervous when his lover acts out a scene with his wife.\"\ntt1767372,Cu5F2Z9mKmo,Jane is distracted when she gives Isabella a quick and thoughtless therapy session.\ntt1767372,bkhUe1txLoc,Isabella recalls her inspirational night with Arnold.\ntt2113075,TmFKGDfxH_4,\"The day of the audition comes, but obstacles stand in the way for Mister.\"\ntt2113075,8z4QVBaCAJM,\"While at the group home with Pete, Mister's mom returns after a long absence.\"\ntt2113075,djpX32_UUvc,Mister confronts Kris and asks if he's seen his mom around the neighborhood.\ntt2113075,ZYB22miPyjY,Mister and Alice talk about the future and share a special moment.\ntt2113075,zpccIJubm5g,Mister provides the entertainment for Pete and does a Will Smith impersonation for him.\ntt2113075,mZmMhrrh5vs,\"Mister tries to push his mother in a postivie direction, but it only leads to another fight.\"\ntt2113075,WIQhvHsTDU8,While Mister and Pete take a ride with Alice they unexpectedly see Pete's mom on the corner.\ntt2113075,piJUrPp2U2Q,Mister takes responsiblity for Pete and tells him that they're staying together.\ntt2113075,pduwe6sUsu4,\"Mister tries to tell his mom about Curtis and his son, but she's distracted by a man at the bar.\"\ntt2113075,ZNo6GHJYrFc,Mister and Pete hide while the Police enter the apartment.\ntt4019560,LW8M-U3Q8ug,Black tells Rocky to confess to Cullen's murder so the police stop bothering him.\ntt4019560,yB1w-AypA_s,\"Black hears the police will stop investigating him, but he still wants to tie up loose ends by killing Rocky.\"\ntt4019560,--ABd2SeIGE,Isabel's husband Jose strangely is killed in action on the same day his dog dies.\ntt4019560,3nVP-DM1egA,\"Isabel believes she is the instrument of immaculate conception, but her deceased husband's family is upset about her pregnancy.\"\ntt4019560,lOJnFwgpcMQ,Isabel remembers the truth about what happened that night in the subway station. She was raped by Cullen before she stabbed him.\ntt4019560,sMjmQzP9D6o,\"Isabel kills her father after hallucinating the abuse of a little girl named Elisa, who is actually herself as a child.\"\ntt4019560,UJQvNi4m4LM,\"After a sexual encounter with Scott, Janine confesses that her deceased husband raped Rocky.\"\ntt4019560,TZdCMfr0Um8,Isabel gets very worried about Elisa's home situation when she drops her off with her father.\ntt4019560,nlJqcYb65o0,Isabel witnesses a man floating over the subway tracks.\ntt4019560,ZW-xfRn8vFY,Isabel tries to understand her overwhelming visions.\ntt1274586,LagXmjL6EeM,\"Banir sends someone to shoot Evan, who retaliates by killing Banir.\"\ntt1274586,IAb5uq3GzZI,Evan is commemorated after he dies in a car accident.\ntt1274586,-wSqiksvdD8,Evan has a breakdown and decides not to kill Banir.\ntt1274586,DCThJoIT-bY,\"After 22 years, Evan finally confronts Banir about the past.\"\ntt1274586,WdzNa6wmtpw,\"When Aasim catches sight of them, Evan and Milton must improvise to keep their plans from falling apart.\"\ntt1274586,roLboEc4M-w,Evan and Milton prepare for their meeting with Banir.\ntt1274586,tOcnYAE2i4Q,Evan finds out he has an aggressive disease that's affecting his memory.\ntt1274586,yLtC-gH6ktw,Evan is lost in the park when Milton finds him and tells him the latest news about their mission.\ntt1274586,rA69NDoXRhI,Milton demands Evan's complete honesty if he's going to jeopardize his job to work with him.\ntt1274586,9VY3OKScxP4,Evan's behavior gets out of control and he's forced to resign from his position at the CIA.\ntt2381991,1PkqpkQQmwg,Sara and the Huntsman share an emotionally charged moment of passion in the forest.\ntt2381991,1m8Ac21hxO4,\"When Freya is betrayed by her lover, her heart grows cold and she gains magical ice powers.\"\ntt2381991,QM8StMC7V6Y,\"Sara and the Huntsman fight for each other, but are overcome by Freya's icy powers.\"\ntt2381991,32iBCneCYcI,\"When Sara and the Huntsman are attacked by goblins in the trees, Sara uses her superior shooting ability to burn them all.\"\ntt2381991,izP8mDH8XOc,The Huntsman and his crew fight a hideous goblin and steal the mirror.\ntt2381991,AxhQq_-31FY,\"When the Huntsman is attacked by a group of Freya's men, Sara arrives at the last second to save him.\"\ntt2381991,2BaBf4EEO10,The Huntsman breaks the mirror and defeats the evil Queen Ravenna.\ntt2381991,aPdLYN69cfE,\"Upon learning that Queen Ravenna killed her daughter, Freya starts a battle with her sister.\"\ntt2381991,TZ9xan53wuA,\"When the Huntsman tries to kill Freya, Queen Ravenna convinces her to sentence him to death.\"\ntt2381991,XWAuh7S1zjk,Freya orders Sara to kill the Huntsman.\ntt1353997,FU0HEv8SNrs,Arkadi awakens to find that Katya has fallen under Kirill's spell and given him the pendant.\ntt1353997,zATNPZTinmM,Arkadi and Kirill battle their magical dragons while Katya fights off the guards.\ntt1353997,DflN8U5mO00,Anson obeys his master Kirill and tricks Arkadi into handing over his pendant.\ntt1353997,98O6geBet-w,\"Arkadi spends countless hours loosening his chains until the moment is right to escape and, after fighting his way out and releasing all the prisoners, he's awarded a jewel for his diligence.\"\ntt1353997,SormU7hbgk0,Arkadi steals his pendant back from Anson and Maxim gives Arkadi his last bit of wisdom before he dies.\ntt1353997,wXzgVOU3Yrs,Arkadi must avoid a tempting sexual encounter in order to prove he is worthy of obtaining a virtue stone.\ntt1353997,tMQjzrxE2Kc,\"To prove he is worthy of obtaining the stone of virtue at the bottom of the pond, Arkadi must avoid his temptations and quit smoking weed.\"\ntt1353997,UjjSZfAe8sE,\"In the midst of a dragon attack, Grandfather hastily reveals to Arkadi his destiny before he dies.\"\ntt1353997,MwdekXx-4ls,Katya saves Arkadi from some thieves and leads him straight to Maxim.\ntt1353997,ORQ7CGUilMs,King Agmar sacrifices himself instead of revealing that Arkadi is the keeper.\ntt1999141,6lv7o-rzkWM,\"Aerona is attacked by a gargoyle in the forest. Then, after the others arrive, Gerald rises from the dead.\"\ntt1999141,ZvytnyM6lRY,\"When the evil dragon threatens to kill them all, John the Brave transforms into a gargoyle to take it down.\"\ntt1999141,aiN0_53Rwjg,\"When the mountain villagers try to stop the knights from reaching the evil sorcerer, they engage in an epic battle.\"\ntt1999141,DkpNYjgUlhw,\"The knights continue to fight the mountain villagers. Then, Eldred the Strong creates an explosive to drive the dragons out of their cave.\"\ntt1999141,ukZg66d96_Q,\"Maldwyn arrives as a gargoyle to hold off the dragon, allowing the knights enough time to flee the cave.\"\ntt1999141,zksgFqKxbVY,\"When they awaken the evil dragon, the knights desperately try to escape. Aerona climbs over a chasm to rescue Neem before the dragon kills them all.\"\ntt1999141,P1R_JOEIMS4,The first knight transforms into a beastly gargoyle and begins attacking.\ntt1999141,-O7sJe9k8w0,\"When the knights raid a pirate ship, they discover that Neem has placed a terrible curse on them. Then, they are attacked by a gargoyle.\"\ntt1999141,kjMmwtxIRbg,\"In the midst of a battle, Maldwyn agrees to stay back to hold off the enemy. Then, he transforms into a gargoyle.\"\ntt1999141,ZN_59UzKu-8,\"When Maldwyn begins to change into a gargoyle, Sigmund wants to kill him, engaging the group in a deadly battle.\"\ntt0985025,1DGrM6qhZHY,The group encounters a woman who signals dark things to come.\ntt0985025,bdJcCwoJ4KQ,\"Ben, his daughter Sarah and a few others board an elevator only for the supernatural to intervene.\"\ntt0985025,rKUEBIPe5F8,Ben prepares to fight off the forces of darkness only for Sarah to step in.\ntt0985025,hMbcMlAVxeg,Emily deals with a horrific creature in true nurse fashion.\ntt0985025,TlyHBaAJVbk,\"Making their escape from the hospital, the group is beset upon by zombies.\"\ntt0985025,L_0imHGhC3o,\"When Jon nearly gets himself killed and insults Sarah, Ben sets him straight, but none of that gets them out of harm's way.\"\ntt0985025,eTepvIyKhIo,\"Ben and Emily race to escape from the hospital, but when a ghost attacks, Sarah, of all people, might be their way out.\"\ntt0985025,Vl3IiVDwgpY,Rick sacrifices himself to save the group from an unstoppable menace.\ntt0985025,rGnXd_krGA0,\"When Ben's attacked by a monster, help comes from the most unexpected source.\"\ntt0985025,68av2-Ti-GU,\"Jon attempts to sacrifice Sarah to the forces of darkness haunting the group, only to discover what a terrible idea it is.\"\ntt0985025,CTpAikAZ2aA,\"Jon tries to escape the hospital, but it won't be that easy.\"\ntt0985025,mVUQ88T2S6E,The group runs afoul a shrieking ghost.\ntt3307726,GoDxjaW2if0,\"After Dr. Zimmer gets attacked, he studies a piece of the monster and determines it's nonterrestrial.\"\ntt3307726,-fqOpmu8014,\"Oliver's crew has trouble navigating The Prometheus through monster-infested waters, but Lt. Plummer's idea sets them free.\"\ntt3307726,5yGE_RpI45U,\"While Admiral Hansen and her team battle the monster topside, Oliver and his team discover an underwater junkyard.\"\ntt3307726,_06GrnWiGqI,Oliver kills the alien spaceship and he and Warren make it out of the wreckage alive.\ntt3307726,-Bxv4jtiR-U,\"Admiral Hansen orders Oliver to destroy the spaceship after it destroys a ship of 20,000 and a beach full of people.\"\ntt3307726,yRec3myBtsM,The President learns about Mya's alien civilization theory and the team fights their way through the monsters guarding their exit.\ntt3307726,B1uEaZ1xSaI,A spaceship emerges from beneath the ocean and destroys a ship. The President makes a plan to use nuclear weapons against the monster.\ntt3307726,81mLKFXLNSs,Oliver and his team find the President and attempt to move him out of hostile territory.\ntt3307726,hotQs5eawqM,The President of the USA escapes a plane crash in a life pod.\ntt3307726,9v9MVT2X0_M,All hands are on deck when a strange monster unexpectedly attacks Admiral Hansen's ship.\ntt3677466,pMFzy56i7RA,\"Wheeler, Gordon, and Southard try to escape alien captivity and warn Earth of an impending attack.\"\ntt3677466,JPA1TtBEIbc,An alien shoots Lindsay and General Magowan destroys the alien asteroid.\ntt3677466,_g79FGuo2GE,Major Blake and his team are off to a rocky start with the natives when they arrive on the alien planet.\ntt3677466,J66HeAFlMV0,Wheeler leaves a message for the humans on Earth just before he's killed by an alien.\ntt3677466,1reD-PYDpvk,\"The aliens reveal the imminent destruction of Earth, but Chris refuses to go down without a fight.\"\ntt3677466,QAJTgMZpigM,\"Just before reuniting, Wheeler loses his daughter to an alien attack.\"\ntt3677466,26nqXIUqVhE,Wheeler and his crew come through the wormhole and try to figure out where they landed.\ntt3677466,otsIUxrcoXQ,\"While Earth is attacked, Wheeler and his crew fight and follow aliens through a wormhole in space.\"\ntt3677466,DUU7WFTBgBM,\"Wheeler and his team alert base to the hundreds of enemy aircraft that are deployed. Meanwhile, the enemy attacks and evaporates a civilian on Earth.\"\ntt3677466,M9p2ix0s-D0,Wheeler and his team get captured by the aliens.\ntt2493486,cP63R4QwDFI,Raiden and his men begin their attack on Geza Mott's fortress.\ntt2493486,TEvVc1vsO2U,\"Raiden and the fallen knights storm Geza Mott's fortress, losing some men on the way.\"\ntt2493486,LE0TUN0Po7I,Raiden sees his wife one final time before he faces his sentence for killing Geza Mott.\ntt2493486,BdZN3EJVjo8,\"After a hard fought battle, Raiden finishes off Geza Mott.\"\ntt2493486,bN1E4vf9FlM,Raiden and Ito square off in a deadly sword fight.\ntt2493486,qY7EPDCU5hc,Lt. Cortez briefs the knights on how to gain entry to Geza Mott's fortress.\ntt2493486,afBwkWnwlD0,\"In an unexpected confession of his crimes, Bartok denounces Geza Mott.\"\ntt2493486,FcqJ2a3Dazs,\"Without family or heir, Bartok bestows his sword and land upon Raiden.\"\ntt2493486,94J4AzRTLE8,\"After Bartok defies the Emperor at his trial, Raiden is forced to kill him with his own hands.\"\ntt2493486,jJvvT_Sb0jo,\"When Geza Mott threatens and beats him, Bartok breaks the law and draws his blade.\"\ntt2552498,tIy7sQGKtJA,Serena commands her beasts to descend upon earth with her.\ntt2552498,IMr_irerhRE,\"When Jack is pursued by Serena's giant beasts, he climbs into Newald's flying castle to escape.\"\ntt2552498,6DmSVYtMoyQ,Jack uses his giant robot to defeat the beasts.\ntt2552498,1J-U8tLUlsg,\"After Jack saves a woman from the vines of the beanstalk, he is swept high into the sky.\"\ntt2552498,kKUsYDTykUQ,Jess attempts to use his motorcycle to distract the beasts and draw them towards the weather balloons.\ntt2552498,Sd4y4XC-qvw,Newald tricks Serena into believing he is dead so that he may destroy her amulet.\ntt2552498,MZIPOu6WeGg,\"When the military cannot quell Serena's beasts, Agent Hinton makes arrangements for a deal.\"\ntt2552498,FTGtcjSMjy0,\"Serena arrives from the sky above and asks the military for their allegiance. When they do not oblige, she uses the powers of the beanstalk to send the General soaring.\"\ntt2552498,E-NXKcnsDJ8,\"As the battle rages below, Newald's flying castle runs out of coal, causing it to plummet and crash on top of a giant beast.\"\ntt2552498,7EmNSHq1mh0,Newald's flying castle begins plummeting straight downward.\ntt4145350,uHd2oehKwuA,\"Kikimora the witch stalks Hansel through a thick fog. With Gretel's help, Hansel finds a moment to strike off the witch's head.\"\ntt4145350,_a9IqPr1kdg,\"Hansel and the witch Morai face off, leaving a tasty snack for Gretel.\"\ntt4145350,8QDZKTF75Zs,\"During a shootout with the witches in the cemetery, Gretel is kidnapped.\"\ntt4145350,DUiEMltmojE,\"Circa the witch seduces Hansel and tries to get him to kill himself. At the last moment, Gretel breaks the spell and Hansel stabs Circa through the eye.\"\ntt4145350,heoNF-PyZ8Y,Hansel interrogates a witch disguised as a cheerleader to discover where she is hiding a group of missing girls.\ntt4145350,_j0onVyO18I,\"In order to save herself and prove her loyalty to the witches, Gretel serves a pie made of human meat and agrees to kill Hansel.\"\ntt4145350,1m_aN2-vauc,\"When Willy turns out to be an evil witch, Gretel finds herself in over her head.\"\ntt4145350,Tt7LWRxtRcE,Gretel resurrects Lilith and murders Cthonia.\ntt4145350,Mw8bNmfoC48,Hansel and Gretel come to blows in one final showdown.\ntt4145350,9xp2F5kPbRQ,\"In order to prove her loyalty and gain power, Gretel rips the head off of her Grandmother.\"\ntt1428538,oY1tp2HG06w,\"When Lilith discovers that Gretel will not follow in her footsteps, she threatens to kill the siblings. Left with nowhere to turn, Gretel stabs her in the eye with a cross.\"\ntt1428538,-whQdRI7wUQ,\"Hansel and Gretel's parents search Lilith's house for clues to their whereabouts, only to be brutally murdered.\"\ntt1428538,TXAJapM6E-U,\"When Gretel discovers that Hansel is being held captive, Lilith begins to play with her head.\"\ntt1428538,31sP1-4GgsA,\"As John stalks them through the forest, Hansel and Gretel catch him in a trap.\"\ntt1428538,e6B-T4KYIFQ,\"When Jane is tied up and beaten, Hansel and Gretel devise a plan to rescue her and kill her captor.\"\ntt1428538,c7-u-fyUSkM,\"When Jane is killed, Hansel and Gretel go on the offensive and follow the only escape -- through the oven.\"\ntt1428538,ovFDrgui4a0,\"After breathing in the witch's poisonous gas, Gretel hallucinates that she is trapped in a room with a demonic Lilith.\"\ntt1428538,9_LX8b0kmiI,\"When Gretel refuses to eat human meat, Lilith forces it in her mouth.\"\ntt1428538,ipb0Bfg_FTs,Hansel and Gretel trap Lilith in her own oven and burn her alive.\ntt1428538,JyQczb2eCf8,\"Under the influence of the witch's gas, Jane has a hallucination that she is trapped in a room of taut wire with her disappointed father.\"\ntt1509767,Ot5T_oe47Xs,The Three Musketeers go undercover to break into the North Korean base.\ntt1509767,SCeW4Y-XPfo,D'Artangan faces off against General Lewis in a long awaited sword fight to the death!\ntt1509767,CShX9zc_Zgg,\"To stop the assassination of the president and the outbreak of World War III, the Musketeers battle the Cardinal and his henchmen.\"\ntt1509767,-wHSMnaUzWY,Just when the Musketeers think they've made an easy escape they run into their nemesis the Cardinal.\ntt1509767,5Wpy4Luh_uY,D'Artangan and Aramis square off to see who's the toughest chick.\ntt1509767,-GRPXrEaqn4,\"On the way to resuce the President, the Musketeers are attacked by the Cardinals drones.\"\ntt1509767,bhEMe--tKlY,General Lewis orders Dr. Kim to get the location of the Musketeers by any means necessary.\ntt1509767,MzvFEBBZuwA,D'Artangan searches for answers on the Cardinal at Athos's residence.\ntt1509767,sL0fO-3JquE,\"Before Planchet can explain to D'Artangan how to stop a global war, the pair is attacked by the Carinal's henchmen.\"\ntt1509767,PdKfp8IWgGI,The Musketeers taken on the whole North Korean army while escaping from the base.\ntt1572491,1O9Sgq0FK4c,\"Javier, who plays the sad clown, meets his counterpart, the funny clown, played by Sergio.\"\ntt1572491,WQwgtpaIVkE,\"When captured by Coronel Salcedo, Javier is forced to act like a hunting dog.\"\ntt1572491,uMx7RJLn08w,Sergio tells a distasteful joke at dinner and Javier doesn't get it.\ntt1572491,Em-hPjFyY-w,\"In the Valley of the Fallen, Javier declares his love to Natalia.\"\ntt1572491,tNnxJK7L3N0,\"Mourning the loss of Natalia, Javier goes to the movie theater and sees Raphael singing \"\"The Ballad of the Sad Trumpet\"\".\"\ntt1572491,-cPDC0me1iM,Javier and Sergio have a final confrontation over Natalia.\ntt1572491,SHIG5bfYTs0,\"Javier loses control at a diner when he hears \"\"The Ballad of the Sad Trumpet\"\" by Raphael.\"\ntt1572491,I9XmewMPVdo,\"While captive, Javier has a vision of Natalia as the Virgin Mary who tells him to become the Angel of Death\"\ntt1572491,iyVCFSW_W1w,\"Javier goes back to save Natalia, but Sergio comes and has a different idea.\"\ntt1572491,0djt409Dqps,\"While hospitalized, Javier has a vision of his father, sneaks out of the hospital and exacts revenge on his attacker Sergio.\"\ntt1031280,TEtlsYtj5-s,\"After getting a flat tire, the group discovers that they ran over a strange splintered dog corpse and Dennis Farell gets pricked with one of the splinters.\"\ntt1031280,Mki2fo1Ou-s,Seth and Polly fend off the severed hand of the creature.\ntt1031280,TvQmXzgtOeQ,\"The creature makes it inside the gas station, and Dennis Farell volunteers to stay behind and fight it off.\"\ntt1031280,r0MABEixxRM,Dennis Farell decides to sacrifice his own life so that Polly Watt and Seth Belzer can escape.\ntt1031280,eQ449GDHSA8,\"The infection begins spreading through Dennis Farell's arm, so he's forced to cut it off.\"\ntt1031280,8QcReRkM8wQ,Seth Belzer attempts to get ahold of the police officer's radio so that they can call for help.\ntt1031280,Xc2OmGesDgo,Seth Belzer and Polly Watt are taken hostage by Dennis Farell and Lacey Belisle.\ntt1031280,oe59hoX10vU,\"Lacey Belisle discovers a mutilated and moving corpse in the bathroom, and it comes after her and the rest of the group.\"\ntt1031280,1GHCAqKWA58,\"Seth Belzer, Dennis Farell, and Polly Watt, discover that the creature attacking them is manipulated by an infested organism that feeds on the nutrients found in blood.\"\ntt1031280,m3UDahZjiK4,\"Sheriff Terri Frankel arrives at the gas station to help Polly Watt and Seth Belzer, but she is overpowered by the creature.\"\ntt2872810,9T60vF2EZNg,\"Daphne arrives at the house, but disaster strikes when she can't get in the front door.\"\ntt2872810,Gr18osLHHsE,The Killer vents his existential confusion on three punk Halloween pranksters.\ntt2872810,GV_pMBUT-24,Kaylie gives her would-be Killer a deadly surprise.\ntt2872810,Bg17-zWqpkU,Kaylie seduces her would-be Killer.\ntt2872810,M4YhJdAsgdU,The Killer tells Kaylie his origin story.\ntt2872810,5YbynyAXAL8,Kaylie pushes the Killer's buttons in hopes that he'll start pushing hers.\ntt2872810,EeNJbbrT8e8,\"The maniac prepares to live out his Hollywood slasher fantasy, only for Kaylie to reveal her darkest secret.\"\ntt2872810,uj0x3TbEE7g,\"Pinned down by the killer, Kaylie grabs anything and everything that isn't nailed down to hit him with.\"\ntt2872810,FzlxL1f-E54,Kaylie receives an uncomfortable visit from Mr. Smiles on Mischief Night.\ntt2872810,2nJCpOeT9x4,\"Stalked by a killer, Kaylie attempts to force his hand by taking a night swim.\"\ntt1982735,PSDHvN95YgA,Cammi has a catfight to the death with Taylor while the Spider watches.\ntt1982735,jHw_p75_LfU,\"The Spider attacks Taylor, but she's got a surprise of her own.\"\ntt1982735,PKG3eCpwYBM,\"Trevor makes a deadly mistake with Cody, and Madison has a second encounter with the Spider.\"\ntt1982735,J3J92iSdERQ,Trevor finds Cody in a tight spot with a TV.\ntt1982735,dACX3WiPVU4,Cammi desperately attempts to evade the Spider as his massacre continues.\ntt1982735,g1R5DmGvMCY,Spider gets the best of Derrick while Taylor's otherwise occupied.\ntt1982735,mz4JJWjy-Uk,\"Creepy amusement park or no, Taylor's getting her freak on.\"\ntt1982735,IzFSwZqBjFM,\"Cammi gets a bad vibe about the abandoned Muerto Ride Land, however, that doesn't stop Taylor from kicking the gate down.\"\ntt1982735,0-vcQg70AX0,\"Searching for Madison, Adam runs afoul of The Spider.\"\ntt1982735,SWrq6xYYIbs,Cammi and Dylan stumble upon a darker horror in the haunted house.\ntt0286306,_41AKvC_uGk,\"Pfc. Charlie Shakespeare tries to comfort Pvt. Colin Chevasse, but finds that he's already too far gone.\"\ntt0286306,03jGqiF-0Gg,\"Pfc. Charlie Shakespeare fails to save Cpl. Doc Fairweather from Bradford, but the worst is yet to come.\"\ntt0286306,uXG9v1_X8jc,\"Pvt. Thomas Quinn resists Sgt. David Tate's discipline, but is powerless against sentient barbed wire.\"\ntt0286306,S-M0BOzttdg,\"Capt. Bramwell Jennings attempts to discipline Pvt. Thomas Quinn, which goes very badly for him.\"\ntt0286306,UmRkYrYgnN4,\"Cpl. Doc Fairweather races to save Pvt. Willie McNess from no man's land, but comes face to face with horror.\"\ntt0286306,ev-4cz3hlr0,\"Pvt. Thomas Quinn goes off the deep end, crucifying German POW Friedrich and challenging death itself.\"\ntt0286306,AJQd_pt3-pk,\"Sounds of phantom warfare drive the soldiers to madness, particularly Capt. Bramwell Jennings.\"\ntt0286306,X4JETt9w9Zw,Pvt. Willie McNess is assaulted by phantom shrieks and the presence of death itself in the trenches.\ntt0286306,6rDCHgWk7dI,Pvt. Barry Starinski's self-love gets interrupted by some disturbing sounds.\ntt0286306,dCyrhdW9e8M,\"British forces storm the German lines in WWI, suffering horrible losses.\"\ntt0286306,LmK0bMGzHpU,\"Pvt. Jack Hawkstone explores the trench, only to run into the Mudman.\"\ntt0443435,xgA6VKUVRWY,\"Emily attempts to rescue Bobby, only to discover that he's further gone than she expected.\"\ntt0443435,qnD5qOyIonw,Dr. Benway performs open-brain surgery on Emily.\ntt0443435,RMaNfwSn-pw,\"A group of friends mourn after a horrific car crash, only for a twist of fate to change their lives forever.\"\ntt0443435,7LraDj4Pjgk,Dr. Benway gives Emily more of a physical than she really needs.\ntt0443435,fcAhSCTiJm4,\"While Dmitriy suffers through a live autopsy, Scott endures a bad trip.\"\ntt0443435,LrsnIyCjvB8,\"Bobby pulls a massive shard of glass out of his stomach, throwing everyone into a panic.\"\ntt0443435,IWmzBLX4j8s,Dr. Benway surprises Dmitriy in the operating room.\ntt0443435,pLra48c-SuA,Emily has an eerie encounter with Gretchen.\ntt3384904,KAT5h_fimTM,\"The volcano begins to erupt, raining molten rock on Mykaela and the other tourists.\"\ntt3384904,NhtvtnrHon8,Jeff and his fellow soldiers infiltrate an Italian military base so they can steal a helicopter and rescue his family.\ntt3384904,IT236O8f-J8,\"Carlo shows up at the last moment to rescue Jeff and the others, bu their helicopter escape does not go smoothly as they fly through falling molten rock.\"\ntt3384904,-v_2hFPseDg,\"Jeff uses a bomb to rescue Mykaela and the group. Then, Herricane's helicopter is struck by volcanic debris and he must jump out to survive.\"\ntt3384904,yWu4GUFpwWo,\"When a mudslide strikes out of nowhere, the group is forced inside the nearest building. However, one of them doesn't make it and is swallowed by the sludge.\"\ntt3384904,uB-53DTWD3k,\"Molten rock begins to rise, killing Alita and leaving the group with nowhere to go but back to the roof.\"\ntt3384904,boGgXcQIe-8,\"The volcano creates a major heat surge, causing those without cover to explode. Mykaela and the rest of the group burn up as they hide inside the ruins.\"\ntt3384904,DzqzlpAo9s4,\"When the temple they are hiding out in begins to collapse, the group is forced to flee. Paul catches on fire during the mayhem and is crushed by falling rocks.\"\ntt3384904,k3KR3Wz29FY,Jeff evades Carlo in a high speed helicopter chase.\ntt3384904,a_DO8nd7FeA,\"When the group starts suffocating from the volcano's natural gas, they rush to escape. Mykaela uses her knowledge of science to help everybody breathe again.\"\ntt2300975,ZBvJyUTIU0k,Jessie is pushed into the river by her mother's ghost and resurfaces as...something else.\ntt2300975,vnL8uiqp6_k,\"Jessie discovers a troubling truth about herself from the specter of her mother, Kate.\"\ntt2300975,4V4jhMSJRW8,Jessie and Preston find all manner of spooky paraphernalia in the bayou.\ntt2300975,WfAp-jZV5Bo,Jessie finds herself haunted by her demon after watching VHS tapes about her mother Kate.\ntt2300975,eDPbu2vNrWk,\"Jessie and Preston pack up to leave, only to be attacked by the ghost.\"\ntt2300975,4QYYeDp44H8,Jessie and Preston exhume a corpse from the swamp.\ntt2300975,v3bWb5qZMu8,\"Jessie has a rough time in the bath, which Leon seems to know something about.\"\ntt2300975,nudL_t9u78o,Jessie has a pretty traumatic nightmare.\ntt2300975,Ewpzngfnvcc,\"Jessie watches, paralyzed, as Leon burns her mother's tape and, quite unintentionally, himself.\"\ntt2300975,6Tax5ajZYsY,\"Jessie finds a VHS tape with her mother, Kate giving her daughter a Tarot reading.\"\ntt1331307,YDkE97uXjRo,Quaid flashes back to a childhood encounter with an axe-murderer.\ntt1331307,6w5n1TfIFjk,\"Quaid concludes his study on the nature of dread, leaving one final test for Cheryl.\"\ntt1331307,83Lfw7BxsQE,\"Quaid tells Abby how sexy she is, and then he shows her.\"\ntt1331307,WGxfP216OFI,\"Abby participates in Stephen's fear study, but wants much more.\"\ntt1331307,ZPjREKxiNsQ,Quaid relives his horrific past.\ntt1331307,yuQipNK_BiQ,Cheryl tells the harrowing tale of how she became a vegetarian.\ntt1331307,nVvMBs0TFWA,\"Quaid tortures Cheryl a vegetarian, by forcing her to eat rancid meat.\"\ntt1331307,iLFMRsi07_I,\"Stephen stalks Quaid, little guessing that there's another one of his 'experiments' waiting in the wings.\"\ntt1331307,fRhJPuDCXRk,\"Stephen, Cheryl, and Quaid hear more than they want to during their fear study's interviews.\"\ntt1331307,xR6jSh2HrAA,Quaid tests Joshua's fear of deafness.\ntt1331307,WxIgfDZXS4k,\"Unable to handle her congenital defect, Abby takes a bleach bath.\"\ntt0492486,SBIKhBgxq6M,\"After realizing she killed all her friends, Tara kills the paramedic who is trying to take care of her.\"\ntt0492486,99kt5BrTa4Y,\"While on a drive in the woods with her friends, Tara hits an animal with the van.\"\ntt0492486,VIxumCmygzw,\"Tara, Holly and Lisa look for their friend Bluto.\"\ntt0492486,E7AA7Qv9LkM,Jake gets attacked while Tara steps away to look for the killer.\ntt0492486,c2v3ZXKLzh8,Lisa gets lost exploring the river and is killed by a figure in the water.\ntt0492486,X2aVRBuYsNI,Bluto comes across a talking cow while tripping on shrooms.\ntt0492486,jS-7DpkGT_E,\"After watching Troy get attacked, Jake jumps out the window to escape the killer.\"\ntt0492486,uwkMYWXtFu0,\"After being found by the police and put in an ambulance, Tara realizes that she was the murderer the whole time.\"\ntt0492486,9RpdDbHL550,Tara spots a scary figure in the woods that seems to be after her and her friends.\ntt0492486,nry9GG4Z0CY,Bluto is killed while tripping on shrooms.\ntt0073260,SV6R0ym_s1M,\"Frost wakes up to find that even though the submarine has left, his wife has stayed behind to be with him.\"\ntt0073260,Bmd8v7RypQk,Everyone pitches in to help get the submarine in working order.\ntt0073260,m0FsyBlZtkk,Frost is left behind fighting a dinosaur when the submarine takes off.\ntt0073260,KngGYZgu02o,\"After the first plan fails, Cole sacrifices his life to kill the dinosaur.\"\ntt0073260,aPDfc08u_s8,\"After the group is taken hostage, Captain Burroughs comes up with a plan that requires oil and teamwork.\"\ntt0073260,qFvJloqBYTQ,Captain Burroughs tests out his theory for making gasoline.\ntt0073260,bwH_nxsCKp8,\"The group meets Conrad, who leads the group to a raft and the realization that they are in the Bermuda Triangle.\"\ntt0073260,rdCzBg9Xw8A,Captain Burroughs and Cole attract a dinosaur while out searching for food and water.\ntt0073260,CRPf4U_MRVw,Jude creates a distraction so he and Conrad can steal the boat.\ntt0073260,aPcCjI--Cz4,\"After a terrible storm, Captain Burroughs and his passengers find themselves in a strange place.\"\ntt2175927,TXLZrVcUcq4,Juarez returns from battle with some serious injuries and some troubling news. Dr. Bilman finds a clue about their alien attackers hidden inside his body.\ntt2175927,GVzyzXZuzOU,\"As the aliens continue their siege on the warship, Captain Winston calls for reinforcements and the Air Force arrives.\"\ntt2175927,r2C-3xQskdg,\"A Navy Seal team goes deeper into an alien ship. When they start taking pictures, the aliens grow angry and attack.\"\ntt2175927,KlvWPWFYvo0,\"More aliens attack the battleship, causing explosive destruction. When Lt. Bradley is pinned under a piece of shrapnel, Captain Winston comes to her rescue.\"\ntt2175927,9qwsfjnC0kM,\"Captain Winston mounts his attack on the alien army, blasting them with the power of the USS Iowa.\"\ntt2175927,HCtR23MGwn0,\"As Captain Winston and military personnel examine an alien body, it comes back to life, attacking and killing two officers before Winston puts it down.\"\ntt2175927,-QdBG7PfFeE,\"The aliens bring out their biggest ship for one final attack, but it is no match for the mighty USS Iowa.\"\ntt2175927,up79gU3V8sk,\"A team of Navy Seals infiltrate what they believe to be a North Korean warship, only to discover that it is inhabited by aliens.\"\ntt2175927,gsVcJ5gGsE0,A team of Navy Seals infiltrates the aliens invisible battleship.\ntt2175927,Oe4jP8WV9lQ,\"The South Korean Army falls under attack from a mysterious source, causing many soldiers to lose their lives.\"\ntt3614530,pkwGEagSVT0,\"Jem and the girls perform \"\"I'm Still Here\"\" and we see videos from inspired fans.\"\ntt3614530,6AWMlRhBN5U,The girls leave when they find out that Jem signed a solo contract.\ntt3614530,SV_eLd8wm70,Rio fires his mother and takes over Starlight.\ntt3614530,ybRy055wBsw,\"Jem sings \"\"The Way I Was\"\" at her first solo concert.\"\ntt3614530,hKuh_h2nzN8,\"When the lights go out at the Open Air Club, Jem keeps the show going with cell phone flashlights and pure enthusiasm.\"\ntt3614530,9I-FCJRX2Cc,Jem watches Synergy's holographic video message from her dad.\ntt3614530,2oFuSvs-WU0,Jem is disappointed with her music video and her sister encourages her to keep going.\ntt3614530,_t1yxHW97xE,\"Jem and the girls sing \"\"We Got Heart\"\" and Rio joins in.\"\ntt3614530,qEb51O12XFw,Jem and her crew hit the red carpet for the first time.\ntt3614530,BwWzZtG_6fA,Synergy the Robot leads the girls to a clue at the Santa Monica pier.\ntt2005374,PF2hIgWupGU,\"Cindy gets a scare when she encounters Robert at the strip club, but he's not thrilled to see her either.\"\ntt2005374,izLhF-Oodrg,\"Jack asks Cindy about her family, but she expects him to open up about his dark past if they are going to be friends.\"\ntt2005374,FLjWVccRPOA,\"While Jack tries to track her down, Cindy escapes to her pimp, Clate, but he has other plans for her.\"\ntt2005374,3oqt6V9aJIM,Jack and Von Clasen interrogate Robert at the police station while Haugsven tries to turn up a shred of evidence on him.\ntt2005374,vZHS1nXJaGU,\"Debbie Peters tries to escape Robert Hansen, but she's in his hunting grounds.\"\ntt2005374,kcniTaNYikg,Robert Hansen tortures Debbie Peters when he gets an unexpected visit from his neighbor.\ntt2005374,pPCq9SIyHqE,\"Jack and Von Clasen race to save Cindy before she's taken to the killer by Carl, a brutal hitman.\"\ntt2005374,y87LPJHRfOI,Cindy Paulson recounts her terrifying tale to Jack Halcombe.\ntt2005374,8ILiVgno0_0,\"Cindy Paulson pole dances for cash, but runs afoul of her old pimp Clate Johnson.\"\ntt2005374,F6E2ojebPlA,\"Desperate to nail a confession from Robert, Jack and Cindy try one last gambit.\"\ntt0382943,ybFMkEvDx60,\"Ronnie, Ricky and Jenny discover Alan badly beaten as Sheriff Jerry then reveals himself to be Angela Baker.\"\ntt0382943,dDX_fyIlXXg,Bella finds that someone has made a few deadly modifications to her bunk bed.\ntt0382943,JVo7oslbnjA,Karen wakes up in the rec hall with a noose around her neck.\ntt0382943,yK9Y-rD7XGY,T.C. is killed by a wooden spear that comes through the floor of his cabin.\ntt0382943,GLBlIYIlND4,Camp counselor Randy gets tied to a tree with a wire noose around his penis while his girlfriend Linda tries to go for help.\ntt0382943,3oFSNCmEZyE,\"After being set up to look crazy, Alan chases down two frightened girls to explain himself only to end up getting publicly humiliated.\"\ntt0382943,QlZ28Do9WmY,Frank is knocked out and wakes up with his head in a birdcage with some rats.\ntt0382943,4o1O6Pt7zr8,\"Alan, a troubled kid, gets into a fight with Mickey the cook after being denied ice cream.\"\ntt0382943,5DaiI6epRCU,\"Mickey, the camp cook, is killed by having his head put in the deep fryer.\"\ntt0382943,0tVy79pRaBs,Michael chases down his stepbrother Alan who has run into the woods after being yelled at by the camp owner.\ntt0382943,1asspYdV3as,\"Late one night while getting high, the local camp stoner Weed is tied up and killed.\"\ntt1757742,PXokYGWGASA,Dr. Helzer asks Alan about his dead wife.\ntt1757742,8lnd2BulFkU,\"While Dr. Helzer interviews Alan, they get an interruption of the paranormal kind.\"\ntt1757742,0vuS4vo4c94,Dr. Helzer tells Paul to keep filming as Alan attempts to save his daughter from a poltergeist.\ntt1757742,xV0HfZSFsiE,\"When Dr. Helzer invites a psychic to contact the ghost, Caitlin ends up getting possessed.\"\ntt1757742,T4ZusOrLSoY,\"Everybody leaves the apartment, but the haunting may not be over yet.\"\ntt1757742,JkW-iBe_WyQ,\"Dr. Helzer, Paul and Alan notice that the ghost appears to be in Caitlin's bedroom.\"\ntt1757742,UZVhwFUQwcs,Alan answers the phone and the doorbell only to find that repeatedly nobody is there.\ntt1757742,6OYZi5KUFzg,Dr. Helzer and his crew quickly experience paranormal activity after begining to set up in Alan White's apartment.\ntt1757742,PPl4KzH-bGc,\"Dr. Helzer, Paul and Ellen set up a device that uses a flashing light and a camera to catch a glimpse of ghosts.\"\ntt1757742,o33ZCLXEHIU,Paul and Dr. Helzer show Alan some recent findings.\ntt2474438,ijaNlufpcMs,Attila performs the ritual of the staff and bestows the power of immortal life upon Nomad and his sons.\ntt2474438,Jzr8lXSNRA8,\"When Vito is unable to rescue his soldiers, Fleetwood and Meat secretly kill them.\"\ntt2474438,GJwsVhQHggU,\"Nomad stalks the soldiers through the forest, killing off most of them one by one.\"\ntt2474438,mCfKPXX19Gw,\"Nomad awakens and goes on a rampage, killing Dr. Bukingham and every soldier in his path.\"\ntt2474438,f8P51JbIp9g,\"While Attila and Nomad face off in a final showdown, Vito and McVie try to escape before an explosive can detonate.\"\ntt2474438,C-uCzmnXn-g,\"In an effort to become immortal, The General drinks blood from the Staff of Moses and transforms into Attila the Hun.\"\ntt2474438,z542q4dYk-0,\"When Nomad catches up with the group, Burnett hangs back to face him head on in an intense fist fight.\"\ntt2474438,7S3biRDwbAc,\"The General uses the Staff of Moses to reincarnate lost soldiers and fight off Nomad. However, it does not go as planned, and one soldier's head is lit ablaze.\"\ntt2474438,U714emx9EJQ,Nomad breaks in to the police station and kills officers Tazbury and Sharp.\ntt2474438,rbYJb_i2czc,\"Nomad throws a spear in the air, stabbing Bulldog through the chest. With his dying breath, he uses a grenade to blow up the monster.\"\ntt1366365,nW92suQFQ5c,After the car crash Will is trapped and Carrack has the upper hand.\ntt1366365,BefYI15la84,Will fights to reclaim the briefcase from Carrack and Gorman.\ntt1366365,8gLOoFW3ke0,Will and Lucia play a game of cat and mouse against Carrack through the streets of Madrid.\ntt1366365,BxIcBWi4ETk,Will and Lucia look for a way to escape down from the rooftops.\ntt1366365,k_pB_zV6kVw,\"While held captive, Will is offered a deal to save his family.\"\ntt1366365,sVZLKLWFDYs,Will discusses his father with Lucia and learns something surprising.\ntt1366365,FAnP3FAu5sU,\"Will goes to Caldera's office looking for help, but is met by an unexpected guest.\"\ntt1366365,4Gs6pBwn5w8,\"Unsure of where to turn, Will begrudgingly talks to Carrack.\"\ntt1366365,SqQmfQfAzzg,Martin asks Carrack if she had anything to do with his family's kidnapping.\ntt1366365,p0vZhGqM_Rs,Martin saves Will and reveals the truth about his job.\ntt2395199,BK5ad9GV4NQ,Xander and Henry have their final confrontation on the lake.\ntt2395199,7j5VT6oDcVw,Henry and Xander fight in the treetops.\ntt2395199,Gy9Wan4jskg,\"Henry has a confronation with Xander's men in the woods, and just when all hope seems lost; he gets a little help.\"\ntt2395199,jmwfCk8MBhk,\"Despite being shot, Sanderson refuses to help Xander find Henry and Clay.\"\ntt2395199,P8RUrH3UmPY,\"Henry, Clay and Sanderson engage in a shootout with Xander and his crew.\"\ntt2395199,-a4N0JuAW8A,\"Clay saves Kayla from Xander's men, but she is not who she seems.\"\ntt2395199,BSaGnAC8boM,Henry and Clay realize that they have to learn to work together to get out of this alive.\ntt2395199,OZJUtFROusE,\"Right before killing Henry, he and Clay are seen by Xander and his crew.\"\ntt2395199,96CVkRhfoKU,\"Henry welcomes in a stranger named Clay, but Clay has an agenda.\"\ntt2395199,bJbTcRnSFAA,\"Xander, disguised as a mounty, takes out an American police station.\"\ntt1219671,E1k9eRHXFX8,\"When Hartford seeminlgy kills Anna, he and Quatermain come to blows in the middle of an earthquake.\"\ntt2012665,2_W3saVv0qw,\"Angel punishes Tommy for his escape attempt, forcing him to reveal his darkest secrets.\"\ntt2012665,BLejeXcxLdg,Angel tortures Tommy to get to the truth about why he is being haunted by his mother.\ntt2012665,2Dlgg0Yqsd0,\"Angel holds Tommy and his family captive, hoping that Tommy will finally confess his dark truth.\"\ntt2012665,kgs8NvXfI9c,Tommy's psychobabble breaks down in the face of Angel's psychopathy.\ntt2012665,W09CmZtBFRQ,Angel kidnaps Maggie and tries to hide it from his daughter Francesca.\ntt2012665,IoRpcIVgtUc,\"Angel offers Tommy, Maggie, and Ben a way out.\"\ntt2012665,p6AK2S2N6hA,\"When Tommy discovers Ben looking for his money, he discovers just how deeply his brother's in trouble.\"\ntt2012665,dY9zZS6BNkU,Tommy takes Angel to his mother's grave to help him mourn.\ntt2012665,F1ZPE23KT_4,\"Tommy drops Angel as a patient, but that doesn't go as well as he'd hoped.\"\ntt2012665,2cgMKpAGSQw,\"Tommy takes Angel as a new patient, but complications soon arise.\"\ntt3036676,gwEoo0r_8EY,Juan flashes back to the night of the murder while the jury reaches a verdict.\ntt3036676,BjPUO_4HJeo,Jaxon cross-examines a key witness in the Torres case.\ntt3036676,G_Rd3TcODj4,Jaxon confronts Vincent Delacruz and is forced to make a horrible choice.\ntt3036676,4OEhuma-rrY,\"Losing his court case, Jaxon attempts to withdraw, which Vincent Delacruz doesn't believe is an option.\"\ntt3036676,0ekAvNp_F9c,\"Amanda reveals her secrets to Jaxon, but not before Tattoo finishes off his colleague.\"\ntt3036676,osLhRtHZ4Gw,Jaxon spies on Tattoo's sex slave ring while Vincent Delacruz works on his colleague.\ntt3036676,6oUzjN26DoM,\"Jaxon cross-examines the victim, proving his client's innocence.\"\ntt3036676,rlaRlCFXUqk,Vincent Delacruz waives the conflict of interest clause and more to force Jaxon to take his case.\ntt3036676,TTOlRTmEdoY,\"Jaxon is an ace defense attorney, but not everyone is as happy about the outcome of the trial.\"\ntt3036676,RdG9KwpjxA0,Tattoo explains to two girls their new life as sex slaves.\ntt1219671,QUtc_tjyrsI,Hartford makes a deal to sell Anna to the tribal chief.\ntt1219671,7taghufoJY4,Quatermain and his group are taken by natives.\ntt1219671,ZdNa-FoYEo8,\"When Anna insults Quatermain, the two get in a tense argument and staring match.\"\ntt1219671,AW8Vxng7dDY,Quatermain and his group must escape the temple before it collapses from an earthquake.\ntt1219671,dh6yBmJDLpQ,\"Despite being shot in the head, Anna is revived.\"\ntt1219671,1gjaw2BNg7U,\"A swarm of bugs attacks Quatermain and the group out of nowhere. Then, Anna hurts her ankle.\"\ntt1219671,1rowOWuYacM,Quatermain and Hartford engage in a shootout over the map to the treasure.\ntt1219671,Xf2ZsLFeD24,\"Hartford's men stage an ambush, leaving Anna trapped in the bathtub during a shootout.\"\ntt1219671,fZ99iSkvkec,A young jungle native gets his head plucked off for leading Quatermain and his group to his tribal village.\ntt1014763,A_n2FjVMiVY,Leo and Raisa are attacked by thugs at the order of Vasili.\ntt1014763,1q-FL1Wd0EE,\"After her name shows up on his desk, Leo is forced to ask his wife if she is indeed a spy.\"\ntt1014763,eJPXQfvokV8,Leo and Raisa fight for their lives against Vasili.\ntt1014763,5DWrrqP_HNk,Leo tracks the serial killer into the woods.\ntt1014763,v7QfNBfZT3w,Leo reveals to General Nesterov that there has been a man killing children in Russia.\ntt1014763,rTlfnymyrrQ,Leo and Raisa are taken from their homes and brought to the ministry to await punishment.\ntt1014763,i7Jg_6-fYF8,Leo goes ballistic when he sees Vasili murder the parents of two innocent children.\ntt1014763,8zMlPNdRRLY,General Nesterov and his officers discover another victim in the Volsk forest.\ntt1014763,68CXG6t1mxU,\"To keep in line with Soviet doctrine, Leo must report to Alexi and his wife that their son was not murdered, despite evidence to the contrary.\"\ntt1014763,hCN8UAdH55A,Leo helps lead his fellow soldiers to victory in the Battle of Berlin.\ntt2304953,FJStfF_7w9k,\"Mitch and Jimmy investigate Clinton's assets, but he might just be two steps ahead of them.\"\ntt2304953,RgM_mn4oP04,\"Mitch races to save Jimmy, but that's all a part of Clinton's sick plan.\"\ntt2304953,NawsWUndVQQ,Mitch receives a chilling call from Clinton that forces him to take drastic measures.\ntt2304953,8fBQzlJdubE,\"Clinton threatens Mitch and his family, leading Mitch to pick up his own investigation.\"\ntt2304953,ELAfnYfUaAI,Clinton threatens to kill Mitch and his wife Rachel for threatening to stop his vigilante attacks on paroled criminals.\ntt2304953,xk9PtV1-Dl4,\"Trying to evade the police, Mitch makes the mistake of a lifetime.\"\ntt2304953,hFZGh14H_J4,\"Discovering similarities between a recent murder and his latest case, Mitch begins to suspect that there might be a serial killer on the loose.\"\ntt2304953,3hcHRAFPBVY,\"After interviewing Clinton, Mitch confers with his associates as to whether they have enough to convict a man he knows is innocent.\"\ntt2304953,x17F1j6spHw,\"Mitch looks into the suspect he knows to be innocent, but Detective Kanon thinks he might be a serial killer.\"\ntt2304953,BtvvvXRUks8,\"Attorney Terry Roberts arrives in court with the anonymous caller's secret identity, which sets Mitch on edge.\"\ntt1730294,e1oUspIUHEw,Isaac and Yoni are reunited with their families.\ntt1730294,_J6ipSZnD2c,\"While picking up drugs for Levi, Vince takes matters into his own hands and kills Red Parker.\"\ntt1730294,ZoYZl8-VEGU,\"Hector captures Yoni, forcing Isaac to get involved and save his cousin.\"\ntt1730294,Hv3mUXCo46M,\"After realizing that his family is in danger, Isaac goes after Micky\"\ntt1730294,FY8vuvzZHl4,\"Isaac helps Levi and Vince pull off a robbery, but has a change of conscience at the end.\"\ntt1730294,wmKfHN7NxeA,Levi and Vince have a business proposition for Isaac.\ntt1730294,DEeqxarMzg0,\"When Levi finds out that Red is dead, he threatens Vince to get information out of him.\"\ntt1730294,Ny0jtHcjrbg,Isaac meets the beautiful Aline when she has some car trouble.\ntt1730294,G_5pbKwl4hE,\"Isaac and Yoni have a date night but they run into their customer, Micky, who happens to be a drug dealer.\"\ntt1730294,G1OstoTh_Bo,\"After Isaac threatens Micky, he realizes that he and his family are in danger.\"\ntt0269743,bgoBjzXp3ww,Janitor prepares his meal - fresh dog.\ntt0269743,wqQYEQ-fsLA,Yun-ju confesses to Hyeon-nam that he stole the dog.\ntt0269743,jF6mqjUiljk,Hyeon-nam runs from the homeless man on the roof and returns the dog to Yun-ju.\ntt0269743,_wU_3DGbYS8,Hyeon-nam saves the dog from being cooked.\ntt0269743,MBDyD5A2mQk,Hyeon-nam chases Yun-ju after she sees him throwing the dog off the roof.\ntt0269743,X-lp4KfK9Qk,Hyeon-nam and Jang-Mi see Yun-ju throw the dog off the roof.\ntt0269743,TYiEofdhOgQ,Eun-Sil Bae and Yun-ju argue over the distance to the store.\ntt0269743,bHoe-hfh9WE,\"Janitor tells the story of \"\"Boiler Kim\"\", a man who was accidentally killed and was buried between walls in the boiler room.\"\ntt0269743,9Wy6ekMz_Yk,Yun-ju finally kidnaps the right dog from Granny.\ntt0269743,08zyIFMP-LE,Yun-ju realizes that he kidnapped and killed the wrong dog.\ntt0269743,Zp6CvBIvqZo,\"Constantly annoyed by the barking dog in his building, Yun-ju takes matters into his own hands.\"\ntt3202890,UCac6K5YWns,Steven tries to save Shannon before Benjamin can kill her.\ntt3202890,vgEq476aHxk,Steven and his family are chased by Benjamin through the Puerto Rican countryside.\ntt3202890,jA83iWbczFc,\"Just when the family thinks they are safe, Benjamin comes back to get his revenge.\"\ntt3202890,K2LCoTSVORY,Benjamin confronts Angie about his cut of the profits.\ntt3202890,jKIG_-544gY,\"As the car hangs off the cliff, Steven races against time to save Shannon and Nina.\"\ntt3202890,wx-HWqbwssg,\"Benjamin demands more money from Steven, and threatens Shannon's life in the process.\"\ntt3202890,ODeWs0Eu8n0,Steven and Shannon go searching for Nina after they discover she's gone missing.\ntt3202890,FmYGC2QdXd4,The detective informs Shannon that she and her husband have been scammed in a process called reclaiming.\ntt3202890,f1mbRj3ejAk,Steven and Shannon are kidnapped by Benjamin and his associates.\ntt3202890,3yVGaKmJrUY,Steven runs into Benjamin and his friends at the bar.\ntt0928375,Exw1_k7Hj6o,\"While the Bog Body is distracted, David takes the moment to set the monster on fire.\"\ntt0928375,zjQSWtB7Kp4,\"Mr. Hunter uses Hannah to bait the Bog Body, and everyone loses their heads.\"\ntt0928375,TgzbVMwrr7s,Deano confesses to Mr. Hunter a tragic story of secrets and death.\ntt0928375,DHk_bI_wMcY,Deano attempts to dislodge his car with disastrous consequences.\ntt0928375,ybDsC1DzIPk,\"Mr. Hunter rescues Val from a mudhole, where an undying evil lays in wait.\"\ntt0928375,gm0I_zdgs8o,The Bog Body learns the dangers of hard liquor.\ntt0928375,F8vcszMAya4,The dinner conversation takes a dark turn to dead bodies and a heated debate about preserving the past.\ntt0928375,g1lpI9wZtiI,The Bog Body discovers the wild world of mooning and cars.\ntt0928375,X-VYaCvJwxY,Reilly strips and takes a shower but gets a nasty surprise.\ntt0928375,BB3VbfL6Xyg,The Bog Body runs into some hilarious troubles in the convenience store.\ntt0928375,xDe-990DWEw,\"The Bog Body reforms on the edge of the swamp, taking a landscaper with him.\"\ntt2108605,07mbIgWikmQ,\"Stephon, Davee, Shy make a terrifying discovery in a clearing.\"\ntt2108605,GrJGkWkkHZo,\"Trying to find their way out of the forest, Stephon, Davee, and Shy suddenly find themselves running for their lives.\"\ntt2108605,e4EL5s__uC0,\"Things go from bad to worse when Stephon, Davee, and Shy investigate the noises they hear in the night.\"\ntt2108605,s6QIbe248NI,\"Stephon, Davee, and Shy, lost in the woods at night, encounter a violent redneck with a rifle.\"\ntt2108605,xEnYDuZSSy4,\"Stephon, Davee, and Shy bumble in the woods with Travis.\"\ntt2108605,Rpr0n3A3_BU,Stephon gets to meet Bigfoot the hard way.\ntt2108605,w8mpECLURqk,Stephon rides out to meet a potentially dangerous hillbilly who claims that his dog was ripped in half by Bigfoot.\ntt2108605,BF6tMv04X9M,Travis tells his horrifying Bigfoot story to the interviewers.\ntt2108605,J_hkf20P6FM,\"An creepy introduction to Siskiyou County, California, home of the most Bigfoot sightings in the world.\"\ntt2108605,1RsuQNxE43A,Stephon interviews the folks of Siskiyou County about whether they think Bigfoot is out there in the woods.\ntt1876261,or6rCLpiS10,\"When a construction worker throws a cigarette in the forest, Bigfoot gets angry and goes on a rampage, killing everything in his path.\"\ntt1876261,Q2gFrTuZhFM,\"When Bigfoot takes out a group of their hunting friends, Al and Harley attack back with explosives.\"\ntt1876261,ms_ERfOYnqI,Bigfoot chases down and kills Sheriff Walt.\ntt1876261,DoVnHRhvtKI,\"The National Guard mistakes Al as a threat and shoots him dead. Then, a curious Bigfoot picks up Priya and breaks her back.\"\ntt1876261,_2vMtzWb6q0,\"Harley and Simon attempt to subdue BIgfoot and end his attack, but he proves to be too strong.\"\ntt1876261,Mh51HEise7Q,\"Harley and Simon try to capture or kill Bigfoot. The National Guard shoots the monster with a tank, lighting him on fire and forcing him back into the forest.\"\ntt1876261,_6RI-8Ia4do,\"A team of rafters attempt to take a video of Bigfoot, but he destroys them all.\"\ntt1876261,961QhyKlg34,\"Bigfoot attacks during an Alice Cooper concert, terrorizing and killing everything in his way.\"\ntt1876261,ROlSjAgE93Q,Sueanne cannot contain her excitement when she discovers one of Bigfoot's prints. He soon arrives to squash her like a bug.\ntt1876261,ZSQBKh64SJA,\"Harley and Simon fight over Bigfoot at the top of Mt. Rushmore. As their lives hang in the balance, the National Gaurd shoots them down, killing all three.\"\ntt2457138,AYy3qj5Y84I,A platoon of soldiers is devoured by a pack of rabid werewolves during a full frontal assault.\ntt2457138,DvMB2pgYRMM,\"In order to stop the spread of the Lupine virus, the President orders a bomb to be dropped on New York City. Despite being caught in the explosion, Hoffman and Ellen survive with the true cure.\"\ntt2457138,b3IInexeGWE,\"A werewolf attacks Hoffman's plane, causing an abrupt crash landing.\"\ntt2457138,KKDCqTCoLQ4,\"When they are attacked, Donna shoots a grenade into the mouth of a werewolf, causing it to explode.\"\ntt2457138,su9foi8t6NI,\"Donna goes on a rampage after being revived, but Hoffman is able to calm the beast inside her.\"\ntt2457138,iDTYtgkzpZo,\"When Captain Falcons finds Donna, she transforms into a werewolf and runs away.\"\ntt2457138,gm5nPntwGQA,\"After Hoffman kills Captain Falcons with a grenade, General Monning is attacked by a werewolf.\"\ntt2457138,OTAO1MRbmNY,\"Captain Falcons sends a werewolf after Hoffman, forcing him to kill or be killed.\"\ntt2457138,_6IlaKlrXbs,\"After Hammond kills one of his men, General Monning uses him to test his idea for a new military weapon.\"\ntt2457138,cRc7p5HzKIQ,Donna's virus transforms her into a werewolf and spreads throughout JFK Airport.\ntt1956620,8ITOvb7Des0,\"Howard blackmails Jay for $25,000.\"\ntt1956620,AHjOZLikqoM,Jay jumps off a balcony to prevent his sex tape from playing at Clive's school event and Howard gives the hard drive back so he can hang out with Clive.\ntt1956620,aRPInpAD3_o,Robby and Tess show up at Hank's door asking for used iPads while Jay runs from the dog.\ntt1956620,R1GZ5ajb_xc,Annie and Hank bond over a few lines of cocaine and Jay struggles to escape the attack dog.\ntt1956620,IvgFrEk1JqA,\"While Jay runs from the house attack dog, Annie gets to know her boss a little.\"\ntt1956620,R2DhcfXooy8,Annie and Jay show up at Hank's house and pretend to be out collecting charity so Jay can search the house for the iPad.\ntt1956620,JyAbZxxgLw8,\"Annie and Jay are happy and relaxed while hosting a party, but panic sets in for Jay when he realizes their sex tape is on the iPads he gave away.\"\ntt1956620,Xc3bqi1G5xk,Annie freaks out when she learns that Jay accidentally shared their sex tape with several other devices.\ntt1956620,LszhBmIWjeE,Annie and Jay visit their friends to see if they've seen the video.\ntt1956620,lxlwKE2-3fg,Annie and Jay have trouble getting started with their sexy date night.\ntt2166934,wC4MzUvxVa0,\"After their awkward kiss, Mike leaves Clarissa a bumbling voicemail.\"\ntt2166934,cwOh20xN82E,Mike shares what he has learned and performs a song for his friends.\ntt2166934,r1NUy3Rq8n4,Mike gets into a fight with a guy at the club. Marty and Paul step in to help.\ntt2166934,4YuwbC-9aDI,Marty trying to connect with his wife Lianne crashes her ladies' day.\ntt2166934,HVlrXQ3qWqo,\"Mike tries to show Marty and Paul how to be spontaneous, but it doesn't go over well.\"\ntt2166934,NqmZSSpvghU,Mike and Clarissa try to teach Paul and Marty how to cuddle.\ntt2166934,Yfqg-PxRCD8,\"Mike tries to teach Marty and Paul the 3 L's: look, listen and learn.\"\ntt2166934,lUglQukweZY,Mike plays hockey with his friends Marty and Paul while giving the whole team relationship advice.\ntt2166934,zjdTL3Z77G8,\"Mike takes Marty and Paul out to the club, but they are a little out of place.\"\ntt2166934,iKscMa0XRXo,\"Feeling guilty, Mike tries to help Marty and Paul by giving them marriage advice.\"\ntt2166934,dfofju459FA,Mike gives Marty and Paul emotional movies to watch with their wives so that they can connect with them.\ntt3203890,S98AgHKyX8o,Alejandro takes Rachel out for a night on the town with his mariachi band.\ntt3203890,Yn_W5-xgf28,\"After sleeping together, Rachel discovers that Alejandro had been lying and manipulating her.\"\ntt3203890,hY0SFHtFq9w,\"Alejandro, realizing he loves her, rushes to the airport to stop Rachel from going to London.\"\ntt3203890,H0-STiAQTqQ,\"Rachel makes a sacrifice to get Alejandro's possessions back, but he's still keeping a major secret from her.\"\ntt3203890,1WlF1nxQKgw,\"Worried about her father, Alejandro, and his financial woes, Maria offers an adorable solution.\"\ntt3203890,p7CweK_hS90,Rachel begins to hint her feelings for Alejandro.\ntt3203890,hV6I03_cIks,\"Alejandro warms Rachel's heart when he plays a song he wrong for his daughter, Maria.\"\ntt3203890,3BIyw7X0j74,\"Rachel meets Margarito, who opens her eyes to various parts of her life.\"\ntt3203890,7LmO5fAuT8U,\"Finding Rachel sleeping at a bus stop, Alejandro attempts to get her home, but it may not be that easy.\"\ntt3203890,OSeQk_f4hSY,\"Recognizing Rachel from the U.S. Embassy, Alejandro sings his heart out to impress her, but she seems more interested in partying.\"\ntt3203890,nSCUWDt53fw,\"Alejandro attempts to obtain a visa to the U.S. through Rachel, but she's a brick wall.\"\ntt3203890,tbMeRyWgdW4,\"When Rachel can't find her laptop, Alejandro cooks up a scheme to convince her to give him a visa.\"\ntt2378281,H3jNVPIi5YQ,\"When Maggie's biological mother, Julie, tries to take her away from Valentin, her father, they make a fateful decision.\"\ntt2378281,0_s8rbNokS4,\"Julie's fallen in love with Maggie. So much so, that she'd like to introduce her to her life-partner, Renee.\"\ntt2378281,KarwL_yYLcY,\"Valentin attempts to get information from movie director Frank, but disaster strikes when baby Maggie gets fascinated by the pool several stories down.\"\ntt2378281,5Ka1bqIBXH0,\"Frank and Maggie help Valentin prepare for his stuntman work, but that might not be enough.\"\ntt2378281,naPW3XAHz0g,\"For the first time in her entire life, Maggie meets her mother, Julie.\"\ntt2378281,pjHBTYOeSxE,\"Maggie reads a whimsical letter from her \"\"mother.\"\"\"\ntt2378281,Yz6pNUcMwzo,\"Valentin \"\"bonds\"\" with baby Maggie on the way to the U.S. border. Lupe, a truck driver, offers his services.\"\ntt2378281,qfKQJyqMnvw,\"Maggie finally gets her perfect day with Valentin and her mother, Julie.\"\ntt2378281,hKH27VchVb4,\"Julie, a one-night stand, arrives at Valentin's door with a surprise: he's a father.\"\ntt2378281,1NnwUUf3RMg,\"Johnny tries to teach his son Valentin how to conquer his fears, but Valentin never outgrew his fear of commitment.\"\ntt1278449,nLpJ76VuXsA,\"After fleeing the city, the anarchists are forced to make a living the only way they know how.\"\ntt1278449,6eV48Ir-RYc,\"Atop the city power lines, the anarchists decide to comply with Amadeus and play his music.\"\ntt1278449,9_GelFK6rdw,The anarchists play Amadeus's music and the whole city experiences the piece.\ntt1278449,tpnUv93AAp4,\"Fed up with all the music he's been forced to listen to, Amadeus demands silence.\"\ntt1278449,Y2NT0jeoBXk,\"For their third movement, the anarchists use construction equipment at an opera house.\"\ntt1278449,fkQHKvo7ZAw,The anarchists use a patient and an operating room to perform their first movement.\ntt1278449,_pe3ht3F0A4,Amadeus realizes who exactly has been commiting the unusal crimes.\ntt1278449,blGRLfNok3E,The drummers have a competition to see who is the best.\ntt1278449,qS1MeoM8iA0,The anarchists play thier second movement at a bank.\ntt1278449,2iMVLR9jP1E,\"While a police officer turns down the music, anarchists make some of their own.\"\ntt2382396,fDSyuyOtPRU,Joe arrives on the scene to rescue Dorothy and punish Willie-Russell.\ntt2382396,m3CMdoMIX2k,Joe comes across Gary's unappreciative father.\ntt2382396,XIhDPwuwQdc,A bruised Gary goes to Joe's looking to get revenge on his father.\ntt2382396,Q-X3-JDIQLM,Wade talks to a homeless man by the river before attacking him.\ntt2382396,3Ks6tKs541g,Joe talks to Connie about survival and the struggle of everyday life.\ntt2382396,ZJ1UwZPZN6A,Gary gets into confrontation with a strange man on the bridge.\ntt2382396,QRWluPmgyow,\"Joe and his men are joined by Gary, who asks for a job.\"\ntt2382396,n6mWh_43Azs,\"While Joe heads to the store, he's attacked by an enemy.\"\ntt2382396,uJDmoisR-28,Gary is forthright with his father about his disappointment in him.\ntt2382396,6ya4pGA6zPk,Gary learns a little lesson about break dancing from his father before they head to town.\ntt0107302,RybQmyBoWEQ,Early taunts Brian to shoot and kill a wounded police officer.\ntt0107302,egB-SG97EcI,\"Early has a brief conversation with Walter, a convenient store clerk, just before he kills him.\"\ntt0107302,_pin0H9Udho,\"Having survived the road trip to California, Carrie has good news that an art gallery wants to showcase her photos.\"\ntt0107302,1c5xWXSWSgo,Brian returns for Carrie and attacks Early with a shovel.\ntt0107302,J329mOtIQ_Q,Carrie and Brian investigate a slaughterhouse/torture room for their book on serial killers.\ntt0107302,YWJMmQUGP00,Early and Brian share their opinions on the Black Dahlia Killer.\ntt0107302,OqzgxMFTQfU,Early teaches Brian how to shoot a gun.\ntt0107302,UxHXWhEq5lo,Early mugs and kills a guy in a bathroom while Adele tells Carrie that Early beats her.\ntt0107302,yFSvuz5aHy8,Adele says that Early has accrued several lifetimes of bad luck by breaking mirrors and Carrie defines karma.\ntt0107302,x_BYzj4jQEM,\"Separated by education level and upbringing, the two couples share an awkward first meeting.\"\ntt3093522,4cyZctbdFik,Iachimo convinces Posthumus that he has slept with Imogen.\ntt3093522,mmdPZs0Nvvg,\"Imogen awakes in a ditch to find that she is not dead as she had hoped, and that she has been buried alongside Cloten's headless body.\"\ntt3093522,s6n8HGwboO4,\"Posthumus discovers that Imogen is still alive, but that is not the only thing to be revealed ti tg Cymbeline.\"\ntt3093522,TAK8DeL_w00,Iachimo makes a wager with Posthumus that he can corrupt the chastity of Imogen.\ntt3093522,kZCgrTDVRbI,\"Iachimo attempts to deceive Imogen into believing Posthumus has been unfaithful, in order to make his own advances.\"\ntt3093522,GYh7IHTeLus,\"Iachimo admits his deception, leading Posthumus to accept blame for Imogen's death.\"\ntt3093522,99IsS-uXJzQ,Cymbeline tortures Pisanio to try to discover where Imogen has disappeared to.\ntt3093522,GylxYHpdxVQ,\"An encounter on a mountain road leads Guiderius to behead Cloten. Meanwhile, Imogen's state worsens and she decides to take Pisanio's poison.\"\ntt3093522,5QFZ_Kh7vP0,Iachimo takes compromising photos of Imogen in order to win a bet and prove he has slept with her.\ntt3093522,g_wEMoy_wi0,\"Though he has been ordered to kill her due to suspicions of adultery, Pisanio helps Imogen forge a plan to run away and disguise herself as a man.\"\ntt1396523,uzeSNmjxyNg,Sonny watches in horror as Chen executes Steven.\ntt1396523,FmEHRr23Hro,\"Steven freaks out in a Chinese restaurant, making a big mistake.\"\ntt1396523,Sq7RMukT_sY,Paul comes to the barbershop with a unique proposition.\ntt1396523,U4fnEAu1--0,\"Tina is forced to identity killers in court, which angers many of the Green Dragons.\"\ntt1396523,nGx3WY944DU,\"The Green Dragons attack a family who killed one of their own, and things get even more violent than expected.\"\ntt1396523,wyifbBO6sAY,Sonny romances Tina while Steven makes a major play.\ntt1396523,sk0mjld_eow,Sonny and Chen help Steven get revenge on the White Tigers.\ntt1396523,Ubb88WMrdmo,\"Sonny tries to put the moves on Tina, but things take a dive for the worse.\"\ntt1396523,4wv_1umbZ-w,Steven asserts himself to his mother and brother Sonny as a member of the Green Dragons.\ntt1396523,kHQq6ri9MDI,The Green Dragons send Steven on a hit against their enemies.\ntt1663207,vJ6XJtlqqZo,Mickey tells the gang of her impending divorce with Frank and together they hatch a new plan.\ntt1663207,n6H7zga2Ks0,Mickey and Frank talk about their upcoming divorce.\ntt1663207,SOR9UOc-alI,Mickey confronts Frank about the kidnapping.\ntt1663207,CFOC-_DYKXk,Mickey and Louis discuss the details of the kidnapping.\ntt1663207,MGRJhDyY9ls,Mickey decides to take action when she realizes someone is looking at her through a peep hole.\ntt1663207,rZs0ZkhzpsI,Louis tells Mickey all the things her husband has kept secret.\ntt1663207,THuOIvlbIjM,Richard tries to force himself on Mickey before she leaves.\ntt1663207,WeSHSxMfC0A,Ordell and Louis run into a little trouble while trying to kidnap Mickey.\ntt1663207,07GcBnddoMU,\"While trying to kidnap Mickey, Ordell and Louis have an unexpected guest.\"\ntt1663207,RIInmRkYOXc,Louis and Ordell call Frank and demand a ransom for his wife.\ntt1663207,cMFosgxgPAs,Ordell helps Louis get payback on a two-bit thug who robbed him.\ntt1972571,u5hpQ0KeRgY,Annabel manipulates Issa into donating his father's money to Dr. Abdullah so Gnther can track where it goes.\ntt1972571,J6osFXTp7WQ,\"After being betrayed, Gnther leaves the scene utterly defeated.\"\ntt1972571,B0nhCPv8VB8,Gnther chases after Issa Karpov and Annabel Richter.\ntt1972571,kqBMHRX-c-4,Gnther gives a report on his progress.\ntt1972571,oG-MKxVWwi4,Gnther threatens Tommy Brue into helping him find out Karpov's true intentions.\ntt1972571,vZ3nHOtlQiU,\"Gnther's operation goes according to plan, but the other agencies get in the way.\"\ntt1972571,M9FAInQwCm0,\"After capturing Annabel Richter, Gnther Bachmann questions her about her involvement with Issa Karpov.\"\ntt1972571,ilXtCX0-CkE,\"Annabel Richter, an immigration lawyer, questions Issa Karpov on the authenticity of his situation.\"\ntt1972571,XvOKgNVwLes,Gnther and Martha discuss what Bachmann's plan is with Karpov and Abdullah.\ntt1972571,AoPqvTGZv6g,\"Martha and Gnther talk about what they know of Dr. Abdullah, a potential terrorist.\"\ntt1754656,vOfFVhSiwiA,Paul faces off with Omar for the life of his daughter.\ntt1754656,6nZJPF_VgIQ,\"Paul confronts Omar, who has Beth captive, but first he's got to deal with Mark.\"\ntt1754656,Hj12WETYG0U,Paul and Sam are powerless to protect Beth from Mark\ntt1754656,yLJ5hUWH0yE,Paul races to save himself and Angela from assassins on the highway.\ntt1754656,pizMaFdtY-s,\"Paul confronts The Pharmacy, who won't let Beth go.\"\ntt1754656,IfNo8NJyy8U,\"Paul flashbacks to a tragic moment with his family, but Angela has other plans for him.\"\ntt1754656,s_cz5JFWpzE,\"Omar and Mark pay a visit to an agitator and devise a plan for dealing with a mysterious assassin known as \"\"The Prince.\"\"\"\ntt1754656,AUPdPriOg6I,Paul stops by the gun store to pick up a few things that used to belong to him.\ntt1754656,Z4G5St8apOQ,\"While Paul looks for his daughter, Angela puts the moves on him.\"\ntt1754656,GLeGjBbLSJI,\"When Paul can't get the information he needs to find his daughter, he gets it the hard way.\"\ntt1614989,Vh4rJorGhHQ,Roger sets up Clas at Ove's cabin.\ntt1614989,xHTAYPp_gzs,Diana tells Roger how sorry she is for cheating on him.\ntt1614989,C3ajmVuQPk8,Roger tells Diana what's truly made him affraid.\ntt1614989,7-juqE5ASnc,\"On his way to work, Roger finds Ove's body inside his car.\"\ntt1614989,iiYX4JT6C_w,\"While Roger is detained in a police car, Clas finds him and sends the car over a cliff.\"\ntt1614989,7UQFQ-FyV98,Roger interogates Lotte about her involvement with Cas.\ntt1614989,Xr3vKjP1PUg,Roger is forced to hide in the outhouse once he realizes Clas has found his location.\ntt1614989,8-S0Drs1N9Q,Roger attempts to take care of a poisoned Ove.\ntt1614989,dFuy0W8-Wj4,\"While stealing a work of art in Clas's home, Roger learns that his wife may be cheating on him.\"\ntt0479162,RMdS3Hi-rMA,\"After appearing on the news, Les is picked up by Jonas and Ted Exiler, two representatives from the drug company.\"\ntt0479162,DE6io8Y3FQQ,\"After being severly beat up and realizing that the drugs are making him go crazy, Les goes to Maggie for help.\"\ntt0479162,R8UDjs0FAdI,\"Les brings his friends Joey and Everett to meet Dr. Dobson, the man who gave him the experimental drugs.\"\ntt0479162,OrHgSvrG8Z4,\"After Les makes Ted and Jonas \"\"disappear\"\", the now-invisible pair beat him up.\"\ntt0479162,nBGdf1uWu5A,Les is confronted again by the drug company representatives Ted and Jonas.\ntt0479162,hHRWVczf8d8,\"Believing he has super powers, Les offers to help the local police.\"\ntt0479162,Vq5QdeqLYOw,\"After going crazy while on an experimental drug, Les confronts Dr. Dobson over his refusal to help.\"\ntt0479162,wdwd_fCVhFM,Les visits Dr. Dobson after getting strange side effects from a new experimental drug.\ntt0479162,MUvtyyo1vdc,\"Les is chased by Ted Exiler, a man he thinks is trying to take his powers away.\"\ntt0479162,8tnIy3PuDiY,Les uses his new powers to stop a man from robbing a grocery store.\ntt1056026,44zsdC87LJs,Captain Nemo loses the battle and the Nautilus explodes.\ntt1056026,XhWl0YaZKfY,Lt. Arronax and his team rescue the USS Scotia and LCDR Conciel reveals stolen blueprints\ntt1056026,EPFnZSvRq6s,The Aquanaut 3 survives Captain Nemo's robot squid attack and Lt. Arronax tries to find LCDR Conciel.\ntt1056026,L7rGRnu-2UE,Captain Nemo does his best to convince Lt. Arronax and his crew to give over the oxygenator and help build an underwater utopia.\ntt1056026,mRXz6hTAW88,\"While the Nautilus crew fights an underwater battle, Captain Nemo reveals his plans for creating a new civilization and wiping out the old one.\"\ntt1056026,t8_p_4sqv4k,\"When Lt. Arronax refuses to help Captain Nemo with the oxygenator, LCDR Conciel offers to save his life and go in his place.\"\ntt1056026,7Tx0kjtoAks,The team tries to figure out where they are and how they got there when Captain Nemo introduces himself and his ship.\ntt1056026,1LwSe_JnByw,Lt. Arronax is called upon to recover the missing USS Scotia.\ntt1056026,6rNaFgA6YlY,The crew is attacked by a sea monster and must negotiate with Captain Nemo in order to receive help.\ntt1056026,dfALZ10xUyA,\"LCDR Conciel and her team lose power, and oxygen, on their submarine.\"\ntt1136683,vdwWjsJLaJQ,Erik leads the dinosaur to the tunnel and Frank sends it back through time with the rainbow device.\ntt1136683,gtmmKXgSUwo,\"Erik and his team try to lead the dinosaur to the tunnel, but it doesn't work.\"\ntt1136683,nDrjVVyUjZo,\"After embarking on the dangerous journey home, Jones gets swooped up by a pterodactyl and Erik protects the remaining soldiers from another attack.\"\ntt1136683,fN0w62AurJA,\"After locating the dinosaur, Ruth and her fellow soldiers come up with a plan to trap it.\"\ntt1136683,B1uklxoaP24,\"The soldiers return from the past successfully, but a dinosaur accidentally makes its way through the wormhole with them.\"\ntt1136683,aViOusNEtoU,Frank insists that he stay behind to close the wormhole after everyone else goes through it.\ntt1136683,6GEll0BI7ko,\"Lt. Peet and his troop face the many perils of the prehistoric jungle, including water dinosaurs and poisonous flowers.\"\ntt1136683,0I8xeAEpb8E,CPO Lopes orders his troops to leave him behind to die and everyone else makes a narrow escape into a cave just out of reach of the dinosaur.\ntt1136683,sSLdFuRVlmc,Everyone scatters as dinosaurs pick off the troop one by one. CPO Lopes is severely wounded when three strangers come to his defense.\ntt1136683,wWpNqaKrq8o,Frank joins the soldiers through the wormhole to conduct a search and rescue mission millions of years in the past.\ntt1617661,3SVCkLf0NiM,\"Kalique tries to convince Jupiter to claim her title at any cost, but Caine doesn't trust her.\"\ntt1617661,FE42Xc_laYU,Jupiter meets Balem.\ntt1617661,FeaVbBKg8tw,Jupiter refuses to abdicate her rights to Earth and Caine comes to save her from Balem.\ntt1617661,IQuxKuLkByg,Jupiter and Caine kiss and then fly off together.\ntt1617661,8SvHSEy3xCs,Jupiter discovers too late that her operation is being conducted by aliens and Caine rescues her.\ntt1617661,I2s3FG8KpKc,Caine survives Titus throwing him into outer space.\ntt1617661,BZTDkSXwBD4,Balem tries to kill Jupiter like he killed his mother. Then Caine saves Jupiter from falling.\ntt2223990,kKBsDfBDmG0,\"Coach Penn sends Sonny a message by burning the draft analysis. Sonny's mom, Barb, calls Sonny to tell him about Vontae Mack's tweet.\"\ntt1617661,LDmKhGcB0Xs,\"Alien groups come to kidnap Jupiter and when Razo's team succeeds, Caine manages to hitch a ride on their spaceship.\"\ntt1617661,LdRoFo6JuNs,Caine stops Jupiter from marrying Titus.\ntt1617661,L589GA-KKq4,Caine saves Jupiter from the aliens chasing her.\ntt2223990,M1hXX6aq1wA,Sonny and Ali celebrate after a huge Draft Day for the Browns.\ntt2223990,qjqJtri_EG4,Sonny surprises Tom Michaels by telling him that he has the sixth pick instead of the Jaguars.\ntt2223990,4kRRDuR7OBM,Sonny Weaver Jr. convinces Jeff Carson of the Jaguars to give them the sixth pick.\ntt2223990,S989EXPoZKs,Sonny and his team go over the footage from the Ohio vs. Wisconsin game and compare players Bo Callahan and Vontae Mack.\ntt2223990,QT1Tl6npLic,Sonny negotiates Tom Michaels for his first round picks back.\ntt2223990,COSkA00zJlo,Brian argues with Sonny regarding the possible draft of Bo Callahan.\ntt2223990,8CcVO0mQ1go,The Cleveland Browns have the first pick of the 2014 NFL Draft and Sonny makes a surprise choice.\ntt2223990,lnfpTgAQ0Ys,Barb comes to the field to pay her respects to her late husband. Ali asks Sonny why he hated his father.\ntt2223990,3UbNdsZot98,\"Sonny tells his coaching staff about the trade with the Seahawks, but Coach Vince is not too thrilled.\"\ntt1621046,mKrFcdRLGQI,\"After a five year strike, Cesar and the growers finally reach an agreement.\"\ntt1621046,8_oVkRFKukY,Cesar Chavez tells his brother why he is doing the fast.\ntt1621046,iMaL4la2Q78,Cesar goes to Great Britian to gather support for the cause.\ntt1621046,2cg4S8JO_hQ,\"After Nixon becomes president, brutality against the cause increases.\"\ntt1621046,tNheq6EGWuU,\"Due to the success of the boycott, the growers start to consider negotiating with the strikers.\"\ntt1621046,isY1TQ26Gnc,\"When the Senate conducted hearings in Delano, Senator Robert Kennedy gets involved and shows his support.\"\ntt1621046,w01G5wVBQKs,\"Due to the outbreak of violence, Cesar Chavez starts a fast that will only stop when everyone in the movement makes a pledge of nonviolence.\"\ntt1621046,JnlOLl7Ew8I,When things get violent Cesar makes his stance towards violence very clear.\ntt1621046,APxaNrWnSq0,Dolores convinces Cesar to take the next step - to start boycotting.\ntt1621046,2MFlcONJD-A,Helen Chavez offers herself to be arrested to support the cause.\ntt1621046,YACsFmbB9Ok,\"While striking, Cesar Chavez and the strikers get sprayed with pesticide.\"\ntt1621046,NbSduHWUQDc,\"When Cesar Chavez creates a credit union, the local law enforcement get involved.\"\ntt2103264,wzkoiXWdFzw,General Douglas MacArthur speaks with the Emperor about the future of Japan.\ntt2103264,y-m4KWfeyvs,General Fellers presents his report to General MacArthur.\ntt2103264,bmYXbieirM4,General Fellers and General MacArthur finally meet the Emperor.\ntt2103264,t8VC4GBHwds,General Kajima tells General Fellers what complete devotion means to the Japanese people.\ntt2103264,jBt5rfpIjws,General Fellers tries to figure out the mystery of Japan's power hierarchy.\ntt2103264,VP5nSFxqyxo,General Fellers asks General MacArthur for a new way to interview Teizaburo Sekiya.\ntt2103264,aKidFnGJDYA,General Fellers remembers an old discussion he had with General Kajima while dealing with the stress of his responsibility.\ntt2103264,FkjBXGnq8Jk,General MacArthur tells General Fellers that they have ten days to investigate the emperor's role in the war.\ntt2103264,x_Gr6RT8Aho,General Fellers recalls the bombing of Toyko and ponders the fate of Japan.\ntt2103264,5S8moDSqK0U,\"General Fellers tells his men that they have a new mission, to investigate the emperor for war crimes.\"\ntt2103264,Kzw5aWCSZs8,General Fellers and Konoe discuss the emperor's role in the war.\ntt1811307,x5ajdqqytyA,Daniel and Matthew face some complications in their budding romance.\ntt1811307,bNiztacMAJ0,\"All Daniel has to do is \"\"confess\"\" to his father, Admiral Lynch, that he was forced into homosexuality and that it was an isolated incident, but that's not how he feels.\"\ntt1811307,zElzcOQWLLo,John and Special Agent Jones interrogate Daniel and William over alleged homosexuality.\ntt1811307,w5mtX7FnO3M,Daniel and Matthew give into their feelings for each other.\ntt1811307,2EojVDDg3xM,\"At his lover's funeral, Daniel comes out to his compatriots, only to be left alone in his grief.\"\ntt1811307,e1FWoMLjAU0,\"Daniel and Matthew's relationship hits snags, stemming from each other and from a military investigation.\"\ntt1811307,jsUGvhq2MLM,Alcohol reveals Daniel and Matthew's feelings for each other at William's birthday party.\ntt1811307,4V9xYmVeNL4,Daniel and Matthew begin their flirtation.\ntt1811307,lP-A8UaVbLE,\"Daniel makes the mistake of letting Charlie fly after a night of wreckless abandon, and the aircraft carrier pays the price.\"\ntt1811307,xkjfSZtHBXc,\"On shoreleave, Daniel and Matthew have a fateful encouter in the club, and in their hotel room.\"\ntt2106476,Ll-Ff-PIPOQ,Lucas is disappointed when his girlfriend has doubts about his innocence.\ntt2106476,8o1QfQXKstU,Lucas takes his son on his first hunt and learns that the damage to his reputation will never leave him completely.\ntt2106476,lhzE7_0RSow,\"At work one day, Lucas is accused of inappropriate sexual conduct with a child.\"\ntt2106476,vWNDTaQG9jE,\"Lucas tries to get an explanation from his boss for the abuse accusation, but he is encouraged to leave the kindergarten.\"\ntt2106476,wdLfTMSAErQ,\"Klara admits to her mother that Lucas didn't do anything wrong, but her mother believes she is in denial.\"\ntt2106476,lh8UIXq5ELc,\"Lucas tries to work things out with his best friend Theo, but Theo believes his daughter is telling the truth.\"\ntt2106476,ByN3jkG-PzQ,Lucas is beaten severely when he tries to shop at the store that told him to stay away.\ntt2106476,i7Y0sXYRwhg,\"Marcus comes to Theo's house to have a talk with Klara, but he is thrown out.\"\ntt2106476,JEbShXn2-Vs,Lucas has a rock thrown through his window and then discovers that his dog has been killed.\ntt2106476,iUuWyMhkd9A,Lucas hits rock bottom when he attends church on Christmas and sees Klara sing with the other kindergarten kids.\ntt1713476,UbQlBLCvOk0,Alex gets violently sick while Stephanie can only watch helplessly as they wait for help to arrive.\ntt1713476,7InJqZBrCuw,Dr. Abrams starts receiving multiple patients with an unknown infection.\ntt1713476,zIWGx1aneus,The police get a call about a woman covered in blood.\ntt1713476,v1ef0grzZWM,Stephanie wanders around the dead town while an officer of the CDC is advised to keep the whole incident quiet.\ntt1713476,w2z6YPTKVsA,Dr. Abrams makes a tape showing the hospital full of corpses and explains what he believes happened to the town\ntt1713476,O4fYclm_0As,The Mayor and a police officer go in search of two other officers who failed to make any contact after investigating a shooting.\ntt1713476,XztayplmOsE,\"After encountering a dead body, Donna and her cameraman come across another.\"\ntt1713476,aELUig9qu3w,People start to get sick during a townwide 4th of July celebration.\ntt1713476,OdJlNbw8ru4,A police officer goes in search of his partner after hearing gunshot from inside a house.\ntt1713476,i3VHMIy8wHI,A teenage couple finds only horror when they go for a swim.\ntt1134854,L1hEpMsgttE,\"Amidst an all-out zombie assault, the O'Flynns and the Muldoons stop fighting and attempt to destroy their mutual, undead enemy.\"\ntt1134854,VJgFWMPoK1M,The Muldoon clan does its best to deal with the local zombie population.\ntt1134854,m_udTXudsnM,Francisco asks Tomboy to shoot him before he can turn into a dead head.\ntt1134854,eiKrNt30jS4,Sgt. Crocket's group and the O'Flynn clan battle against the forces of the undead as they try and escape the dock.\ntt1134854,772oaU4DFTI,\"After stumbling on to how the Mulroon clan is dealing with the zombie infestation, a firefight breaks out between families.\"\ntt1134854,sfqjgFBIBFQ,\"A Fisherman pulls up a big catch, but the situation soon gets away from him.\"\ntt1134854,d82uV320Fzw,Francisco gets creative with his zombie disposal.\ntt1134854,JqwzeAkRcJA,\"Matthew and his wife Sally try to defend their home from the O'Flynn clan, who are intent on exterminating all zombie life on their small island.\"\ntt1134854,Bl6M9MfRbcU,Sgt. Crocket and his fellow national guardsmen stumble onto an armored vehicle and a group of 'good ol' boys' with way too much time on their hands.\ntt1075746,gmJtNjLjsNQ,Renchard detonates the bombs and he and Brianna escape.\ntt1075746,I30x5dMvcA8,\"Renchard thinks Brianna left him to fight off a horde of zombies alone, but she comes back to save him.\"\ntt1134854,h6usdPpiqho,Sgt Crocket lays down the law after a fellow serviceman endangers the lives of his fellow men.\ntt1075746,j-TPDJFWErg,\"In order to save Brianna, Renchard must fight Vincent in a battle to the death.\"\ntt1075746,wmbN_BXQaho,\"After planning an escape for Brianna and fighting off zombies, Renchard and the guys set off on their trip.\"\ntt1075746,Mge3npvF4R0,Brianna saves Renchard when his gun gets taken by a zombie.\ntt1075746,IORWBsyIivo,Vincent meets up with the group and reveals that his true intentions are to ensure this new zombie society stays as it is.\ntt1075746,4aKmbFnV-mI,Renchard makes contact with someone for the first time in a long time and he doesn't take it very well.\ntt1075746,1AhrD2-cvrw,Renchard is approached by two unsavory men that coerce him into helping them locate and retrieve Brianna.\ntt1075746,CGwzaIS-tLk,\"When his alarms go off, Renchard checks his property for zombies.\"\ntt1075746,KxcKAGtHl3A,Renchard has a nightmare about what happened to his wife and son.\ntt3233418,218nJYQ3oMI,The boys get off to a rocky start in the robotics competition.\ntt3233418,DKqFCG3UTEs,Oscar convinces Dr. Cameron to join the Underwater Robotics Competition.\ntt3233418,ynC2_22yuGA,\"After Oscar's mother warns him not to come home, Dr. Cameron offers some words of encouragement at the beach.\"\ntt3233418,UyKyxHFIT3A,Dr. Cameron tries to inform Lorenzo's father that his son has been arrested.\ntt3233418,6ldKc6yXTyg,Dr. Cameron and the boys try to maintain their meager budget while shopping for all the parts they need to build their robot.\ntt3233418,S3-atF715Mg,\"Lorenzo must track down his brother Ramiro, who plans to rob a convenience store.\"\ntt3233418,xLZDij_-ZRw,Dr. Cameron makes it a teachable moment when his students tell him to ask out Gwen.\ntt3233418,DHYCHYsyqTc,\"As the robotics competition continues, things turn around for the boys of Carl Hayden.\"\ntt3233418,RHmp-rhCrLo,The team from Carl Hayden Community High School finds out that they are the first prize winners of the US Underwater Robotics Championship.\ntt3233418,HgQDAW28DsA,Gwen confronts Dr. Cameron about dropping out of the robotics competition.\ntt2725962,By05PXEvGWA,Gordie gives Lottie some wise advice right before he dies.\ntt2725962,QMmxxD7h5-Y,Doug and Gavin say a few words to commemorate their father.\ntt2725962,IPPeDiU4Vdo,Lottie interrupts the adults' bickering with some wisdom from granddad while Mickey tries to explain things to the press.\ntt2725962,Fr1A3ok_kfw,Lottie and her siblings say goodbye to their grandfather with a funeral ceremony fit for a viking.\ntt2725962,hAU8AQ6xlw8,The kids explain their viking funeral to the adults and panic ensues.\ntt2725962,u1Pgftn5H94,\"While the adults prepare for a party Gordie never wanted, Lottie and the kids decide to give him the funeral he always dreamed of.\"\ntt2725962,GvDcscZXfl8,The kids antagonize uncle Gavin and the family sits through Kenneth's performance.\ntt2725962,4I9-0dipqo0,Gordie tells stories and plays with the kids at the beach.\ntt2725962,5xnSzPHjw10,Abi and Doug try to keep their composure as they pack their lively kids into the car for a vacation to Scotland.\ntt2725962,ItMY_4RobkM,The family plays soccer and spends quality time together.\ntt1531911,213l0Kv26uQ,The Tharks force John Carter to eat a bug that allows them to communicate.\ntt1531911,nPRUkMAdukE,The Tharks force John Carter to show off his incredible enhanced jumping skills.\ntt1531911,-E0UUIoS5xU,John Carter and Sarka face off in a high-flying sword fight.\ntt1531911,ncErLtJBlHw,\"John Carter attempts to rescue Sarka from a gang of drug smugglers, but is instead betrayed and seemingly killed.\"\ntt1531911,SOa5HP_FHoQ,John Carter is reunited with Sarka and is inspired to hurl a rock to kill the evil leader of the Tharks.\ntt1531911,_jF3JZMHL30,\"John Carter and Sarka reach a final showdown, which is abruptly ended by an attack from a giant alien bug.\"\ntt1531911,P2NiGznbIcI,John Carter and Tars Tarkas are forced to fight each other.\ntt1531911,ez6GguY40SQ,John Carter and Tars Tarkas shoot up a swarm of giant flying bugs to protect the Princess.\ntt1531911,a1DuE8E4DpM,John Carter and Tars Tarkas take out a hoard of giant spider monsters.\ntt1531911,1Dd5HFJn88E,\"As John Carter watches on, Tars Tarkas and the Tharks attack an airship carrying the princess.\"\ntt2756412,q30Pl1M6_DE,Capt. Crowe rescues Lt. Baum and Lea and they all escape the planet together.\ntt2756412,kL8e9CEgm6A,Lt. Baum saves TIM from a dragon monster while Capt. Crowe tries to secure a way off the planet.\ntt2756412,bBjLUZgx4WA,\"TIM reveals that the planet they landed on is indeed Earth...325,000 years in the future.\"\ntt2756412,V300Gtn8NVs,There are casualties on both sides when the natives and the survivors from the Albert Einstein fight together to defeat the chameleons.\ntt2756412,xME4tintsqs,\"When another air strike approaches, Lt. Baum sends the group into the river to hide from the chameleons.\"\ntt2756412,Hsg_ZUoSlCs,Lt. Baum spares TIM's life and allows Lea to come with them back to Earth.\ntt2756412,WIBrEMlCGSM,A horde of monsters leads the group to a native named Lea.\ntt2756412,l081UdHizvg,The group seeks help from Lea's hostile biological family and they reluctantly agree.\ntt2756412,J38c6k11K3U,Capt. Crowe and Lt. Baum have crash-landed on a strange planet and must fight off mysterious new creatures.\ntt2756412,M0iif-dNJus,\"Capt. Crowe decides to launch the ship and put everyone into cryofreeze, but Lt. Baum insists on finishing his mission on Earth.\"\ntt0391024,jra4awMyUr0,Hassan Ibrahim explains how Americans are perceived among Iraqi civilians.\ntt0391024,yYUtAKXuicA,Samir Khader explains that history is written by the victors.\ntt0391024,toiIOy7q4xg,An Iraqi woman questions the conscience of George W. Bush.\ntt0391024,mo2-63epZAM,Josh Rushing explains how gruesome images of war affect him.\ntt0391024,s_h-ZXgEtNo,\"Samir Khader talks about the loss of Tarek Ayyoud, an al Jazeera correspondent.\"\ntt0391024,5yGKubkHrio,Deputy Director of Operations Vincent Brooks reveals the most-wanted Iraqi playing cards to the press.\ntt0391024,QoT8ZUDDmKs,\"America wins, though Iraqis does not share that sentiment.\"\ntt0391024,FsIaDwn2EtQ,Josh Rushing describe his experiences with Al Jazeera.\ntt0391024,oS3Bld83J_o,Samir Khader expresses his views regarding American media.\ntt0391024,gc19hOdR99c,Hassan Ibrahim explains the media bias in the United States.\ntt2017020,lEykI65QtSQ,The Smurfs plan Smurfette's birthday party.\ntt2017020,xbhm9F1ST6I,\"Gargamel returns home to his mischievous experiments, Hackus and Vexy.\"\ntt2017020,fQ09ePfYLpU,Narrator Smurf recounts the controversial story of how Smurfette was created by the evil wizard Gargamel.\ntt2017020,a8EeFNXk1TE,Victor saves the Smurfs from falling and turns back into a human.\ntt2017020,6Xn4tr2grtc,Smurfette and the Naughties have a high-flying stork race through Paris.\ntt2017020,KEwC94CY-Go,\"Hackus causes a scene in a candy shop, forcing Smurfette to be naughty in order to help him.\"\ntt2017020,WJOMiXmwfYE,The Smurfs travel home to their village and celebrate Smurfette's birthday with their family.\ntt2017020,WEfMDGtX3K0,Patrick and Victor destroy Gargamel's machine and save the Smurfs from his evil clutches.\ntt2017020,hn3XR4o8M4c,Smurfette reluctantly gives Gargamel the formula to turn Vexy and Hackus into Smurfs.\ntt2017020,pdmo-_KXg0Y,Smurfette reunites with the Winslow family and sends Gargamel sailing away.\ntt0472181,K2hcF1oOHb8,The Smurfs prepare for the annual Blue Moon Festival in Smurf Village.\ntt0472181,CVxgFZixwlg,\"When Gargamel attacks Smurf Village, Papa and the other Smurfs escape through a mysterious blue portal.\"\ntt0472181,5Ugqj1RATYE,Gargamel uses his magic to make Odile's mother much more attractive.\ntt0472181,WsffSfKc-mw,\"Patrick and Grace discover the friendly, yet mischievous, Smurfs inside their apartment.\"\ntt0472181,fLswSc81mw8,Clumsy makes a mess in the bathroom.\ntt0472181,GJ0-xGnrjBU,\"With help from Patrick and Grace, the Smurfs use the toys in a toy store to outsmart Gargamel.\"\ntt0472181,IvGwIRIYlBo,\"Gargamel reveals his evil plan to Papa. Meanwhile, Patrick and the Smurfs prepare for a fight as Brainy turns the moon blue.\"\ntt0472181,WSYe57h6YUE,\"The Smurfs discover their history and how to invoke the power of the blue moon. Then, Gargamel captures Papa while the others make a quick getaway.\"\ntt0472181,x7qvOFN1QZg,Clumsy saves the day and helps the Smurfs take down Gargamel.\ntt0472181,HMUbL4Vgb2E,The smurfs team up and begin their attack on Gargamel.\ntt1130088,xNzE5UoQmZw,Edward listens to a recording of Clarence when he learns that Clarence has passed away.\ntt1130088,-Dny2rWieIA,Edward dances around a grave in an attempt to summon a spirit.\ntt1130088,bugH1m4LteI,Clarence teaches Edward a few magic tricks on the rooftop.\ntt1130088,noAefY8KRoQ,Edward takes Clarence to the grave of his late ex-wife.\ntt1130088,kjo_zi4cLJo,Edward plays a recording in front of his parents of his dad flirting with another woman.\ntt1130088,Zagt2ld1pwE,Clarence has an emotional breakdown in front of Edward when he realizes his life is in shambles.\ntt1130088,9gEtABdjiiI,An accident occurs when Clarence performs his old magic show.\ntt1130088,VpBuUC1P2jo,Clarence wrecks his truck when he takes his eyes off of the road.\ntt1130088,S88bgODlrbk,Edward and Clarence attempt to summon a spirit in the basement.\ntt1130088,7SBBMiyv0kY,Edward visits Clarence in the hospital after his attempted suicide.\ntt2094064,g3vxfUb7Sr4,\"Despite their initial protests, Benedick and Beatrice realize that they do love each other.\"\ntt2094064,6AWo-9MFBug,\"Beatrice amd Benedick proclaim their love to each other, but she asks him for a difficult favor.\"\ntt2094064,U6PrB5bbWRM,Benedick and Beatrice continue their battle of wits.\ntt2094064,KJI1SIvGZEY,Claudio publicly exposes Hero at their wedding.\ntt2094064,z4cGnSZQni4,\"While interrogating Conrade and Borachio, Dogberry gets called an unpleasant name.\"\ntt2094064,KlC81iup2Jo,Benedick proclaims his love for Beatrice.\ntt2094064,8ZkCvzJqCUY,\"Don Pedro, Leonato and Claudio trick Benedick into believing that Beatrice loves him.\"\ntt2094064,C919Gt7Yd2g,Dogberry give the night watch their charge.\ntt2094064,yzTbstnZYro,Leonato throws a masquerade party.\ntt2094064,jH1hWH-WvLg,Benedick proudly proclaims to his friends that he will never marry.\ntt2081255,4D1OVjTF1E4,The Queen orders her soliders to kill all of the elves and bring her Snow White.\ntt2081255,VMteZw9UU-U,Prince Alexander escapes from prison with a band of prisoners to join the tiny army of elves in the war against the Queen.\ntt2081255,eiuVC_cdyIA,\"A magical beast stops Beasley before he's able to kill Snow White, so he cuts out the heart of a fallen comrade and presents that to the Queen instead.\"\ntt2081255,GuMg7x6_8No,Prince Alexander saves Snow White from the magical beasts in the forest.\ntt2081255,cRgXwpwVe4U,\"Snow White and the elves seek out Isabella's knowledge of the Queen's plans, but instead the disguised Queen uses magic to put Snow White into a deep sleep.\"\ntt2081255,agzK8ig7rR0,Prince Alexander gets captured by the Queen's guards before he can gather an army against her.\ntt2081255,wvknCnZ8HJ0,Snow White awakens from a deadly slumber when Prince Alexander arrives just in time to break the spell.\ntt2081255,EJOewEP6tKQ,\"Prince Alexander finally makes it to the battle, but he doesn't fight long before he's run through by a sword.\"\ntt2081255,vMs9qHAQaZE,\"The Queen coerces Prince Alexander into marriage, but before the wedding ceremony is finished, Snow White intervenes.\"\ntt2081255,SH-HSmrjmBw,The elves use their magic to heal Prince Alexander and they all live happily ever after.\ntt1833888,c1K32XLhn1M,\"After Michael tries to cheer up his son, he gets consoled by his mother.\"\ntt1833888,IrU4ze3VfD8,Michael finds himself in a church where Nick sings Amazing Grace.\ntt1833888,p9kL3O1TuMQ,David tells his father that he thinks he's responsible for this grandfather's death.\ntt1833888,_q1BSBGTR2M,Michael and Nick discuss the house over a glass of lemonade.\ntt1833888,jWP3sgGz2F8,\"Michael tells his son, David, why his uncle isn't around for Christmas.\"\ntt1833888,JOXYV6UN3S0,Michael and Nick discuss the importance of memories and family.\ntt1833888,8knM2DiWkUk,Michael is told that his father and son have been in a car accident.\ntt1833888,uPcTCWfQbzQ,The Walker family meets their new neighbors who give them an unexpected gift.\ntt1833888,pgDUFZ9TfPc,Michael has a change of heart and decides to embrace the Christmas spirit.\ntt1833888,kC1Q45BQbY4,Michael and David decide to embrace Christmas and turn on the their lights.\ntt1815862,6Nb7rSggCns,Kitai stares his fears in the face when he learns there is an Ursa onboard his ship.\ntt1815862,1Zwl6vfqjNQ,Despite his warnings Cypher and the rest of the ship are thrust into an asteroid storm.\ntt1815862,SV8jbzudYJ8,Cypher tells Kitai the story of how he overcame fear and defeated an Ursa.\ntt1815862,dDGMTl1Ya78,\"Cypher, Kitai, and the crew suffer a disastrous crash.\"\ntt1815862,t-lIuwPGT9w,Kitai is attacked by a swarm of angry baboons.\ntt1815862,eMgfTq1Z2n8,\"When Kitai is bitten by an infectious parasite, Cypher talks him through the process of curing himself.\"\ntt1815862,4KICpbB5YQY,\"Kitai confronts Cypher about the loss of his sister. Then, he jumps over the edge of a cliff in an effort to prove himself.\"\ntt1815862,0vcXvLUt1E4,\"Kitai uses the focus he learned from his father, Cypher, to defeat the Ursa and send out the beacon.\"\ntt1815862,Hxc048RM18U,\"When Kitai wakes up in a bird's nest, he defends the baby chicks from some vicious jungle cats.\"\ntt1815862,8M1kdeDluRE,Kitai is tracked and attacked by an angry Ursa.\ntt0490181,FllAsMCrdJE,Duval and Severian fight off mutants in an attempt to give Mitch time to destroy the ancient machine.\ntt0490181,XfeN42X2UHk,Hunter explains his philosophy.\ntt0490181,PS2CC6WdNMk,\"In the middle of a war, Rooker, Mitch and other soldiers are attacked by mutants.\"\ntt0490181,9QHYm5IVhHI,Hunter is transformed by The Machine.\ntt0490181,VCDY6MTuU6Y,Hunter and Rooker contemplate the effects of the war.\ntt0490181,SNXqtm-WAh0,\"Samuel, Duval and the others attempt to save Steiner.\"\ntt0490181,-05NPfkubKo,Juba makes a heroic last stand against the mutants.\ntt0490181,JrPRGahKOoI,Mitch makes more room on a space ship.\ntt0490181,Vfos_yqayxw,\"Mitch, Brother Samuel and the others prepare for a crash landing after their ship is attacked.\"\ntt0490181,z3t0ltbfMJ8,\"Mitch, Duval and the others analyze a captured mutant.\"\ntt1865393,XFHh8V9eIaU,The Hellbound Saints kick some demon ass.\ntt1865393,gSpHZ8Kuh4o,\"Father Lawrence has a showdown with Surtr, who's possessing Father Angus.\"\ntt1865393,ufhTl0M3rn4,Things heat up when Clint shuts down the Hellbound Saints.\ntt1865393,Y8ML1TO5-JY,\"Just when the Hellbound Saints thought it couldn't get any worse, Father Angus drops an atom bomb on them.\"\ntt1865393,ehyYdjaZnoA,The Norse demon Surtr might be more than Elizabeth and Macon can handle.\ntt1865393,lxl55rsNihE,\"With demons running amok and the bishop excommunicating them, the priests turn to the only solace they have left: beer. Father Angus, however, has different ideas.\"\ntt1865393,Z4nVqjAr_n8,Macon and Elizabeth run into some trouble during a routine exorcism.\ntt1865393,ABrBbozUYaI,\"Father Angus isn't too pleased when he learns that Father Lawrence hasn't been sinning enough to remain morally compromised. Clint, however, is livid at the prospect of more sin.\"\ntt1865393,8oZJuop-N_g,The priests get high while Clint tries to clean up the Hellbound Saints.\ntt1865393,3YGQ4oen7gM,Father Angus and Father Lawrence tackle a demonically possessed Rabbi.\ntt1183733,wMAAK7i1ib0,\"George awakes to find he is still alive, and is trapped inside the body of an alien.\"\ntt1183733,QjJO-cEmxWg,\"Hoping to find his son, George gets himself vaporized by an alien one more time.\"\ntt1183733,p8zwrVyJHxw,\"With no hope left, George gets himself vaporized by the aliens while Pete watches on in horror.\"\ntt1183733,bp4HJ3JRxag,\"George finally finds Alex inside the body of an alien. Then, he injects the alien's brain with his infected blood.\"\ntt1183733,CKtSDzT-SOo,\"George and Alex find Major Kramer, who helps them escape the planet.\"\ntt1183733,mkSxYpK4ALw,The military fights their way through a massive hoard of aliens and asteroids to breach the atmosphere of Mars.\ntt1183733,4Q0eWJZIev0,The military fights their way through thousands of alien ships.\ntt1183733,SBW3d6oYdkU,George and the other victims search for a way out of the body of an alien.\ntt1183733,S5fwxvrutg8,The military prepares their siege on the alien attackers.\ntt1183733,q5ZwRphkFuc,\"George begins to lose all hope after his son Alex is vaporized by the aliens. At the last moment, he remembers that there may still be a chance for Alex's survival.\"\ntt0407304,Jq0iZ5okXgU,Pastor Victor and George discuss their differences in opinion over the meanings of faith and religion.\ntt0407304,IwOoajZyRZU,\"Pastor Victor tries to console a desperate mother who has lost her entire family, but he is unable to bring her to the light.\"\ntt0407304,8Chr00fm6AM,\"When all hope looks lost, the aliens die and George is reunited with his family.\"\ntt0407304,jk1IJ5ggyQs,\"George gets some disconcerting news from a young mother. Then, the aliens blow up a bridge and send the civilians scattering.\"\ntt0407304,sG41m7hVl9E,\"When Lt. Samuelson threatens George, Sgt. Kerry tries to stick up for him, which earns him a bullet through the head.\"\ntt0407304,kzh2pWa1lzk,\"The aliens continue their brutal attack on earth, killing and vaporizing tons of innocent civilians.\"\ntt0407304,0Ij2veeSsE4,\"After Pastor Victor denounces his faith, he is attacked by an alien and his face is melted off.\"\ntt0407304,MkiewChfW9k,\"The aliens release a noxious gas that kills all in its path, forcing George and Pastor Victor to get to higher ground.\"\ntt0407304,90EupUjxPIM,George and his brother Matt share a tear filled goodbye.\ntt0407304,edjnSDwMFXQ,\"George fails to help a young woman rescue her boyfriend. The aliens begin their destructive attack, killing all those in their path.\"\ntt1321870,5dlDHt93ng8,O'Mara issues a warrant for Cohen's arrest and he and the other officers storm Cohen's hotel. A shootout ensues.\ntt1321870,2onL0hkBVJc,\"Cohen tries to make his escape from the hotel, but O'Mara is determined to stop him.\"\ntt1321870,FOeyhFQK19c,O'Mara takes on Cohen in a violent fistfight before arresting him for murder.\ntt1321870,01Im5dacdqE,Cohen orchestrates the murders of several cops.\ntt1321870,OjmXuqNMrDY,Jerry tries to stop O'Mara from walking into a trap step up by Cohen's men.\ntt1321870,qG0W2UhUKRc,\"While the guys prepare their next heist, Jerry sends a message to Cohen's thugs and helps Grace get out of town safely.\"\ntt1321870,Rdl0ApAeczQ,\"After a life-threatening car chase, O'Mara violently informs Cohen's henchmen that they are retired.\"\ntt1321870,q5_LSGwd19k,Jerry and Keeler sneak into Mickey's house to plant a bug.\ntt1321870,z3H-ozBnwQ4,\"Jerry is distraught when Cohen's men accidentally shoot Pete, but Jack saves him from making a big mistake out of revenge.\"\ntt1321870,mEmmWa3xK8k,\"O'Mara and his squad attempt a robbery at Cohen's casino, but the police end up chasing them away and arresting O'Mara and Harris.\"\ntt1595656,gyRxos8xOyM,Neil falls in love with a woman who tragically lost her daughter.\ntt1595656,wMa7Xd9GuUo,Neil invites Marina and her daughter to come and live with him in Oklahoma.\ntt1595656,R_qiBsGsQfI,\"Father Quintana struggles to feel God's love, even as he ministers to others in need.\"\ntt1595656,O-Odu2P8X1M,Father Quintana prays that God will reveal himself so he doesn't have to pretend to feel.\ntt1595656,9isn7V7c2gg,\"As Father Quintana prays to find God's love, Neil observes his charity and begs for Marina's forgiveness.\"\ntt1595656,0K-qOSq4vz0,\"Marina and Neil experience the \"\"wonder\"\" of Mont St. Michel abbey in France as well as the budding of new love.\"\ntt1595656,mt6D8QQ-nIY,Anna advises Marina to leave her husband Neil and be free.\ntt1595656,D97vMpPHzDg,\"Father Quintana gives a sermon on love, but Marina can feel her love for Neil dying.\"\ntt1595656,MviysUwcItA,\"Even though their relationship has ended, Neil and Marina are grateful for the portion of love that they have found.\"\ntt1595656,Qw9ltquDJRs,\"Neil learns that his wife has slept with another man, which hurts him deeply.\"\ntt1667889,RuZhnKanGQ4,Jimmy tries to nail a big move to win the surfing competition.\ntt1667889,h0aovIIojck,JB leaves town and says his goodbyes.\ntt1667889,-bYLI4I8vkI,\"Jimmy lands on the front page of the local newspaper, bringing big business to the surf shop.\"\ntt1667889,54CMOjYbovs,Andy tries to enter the big surfing competition.\ntt1667889,ZQfZtwole3U,Gus commits suicide and the group mourns his death.\ntt1667889,gjODxXACjnc,Jimmy tries to catch the big wave.\ntt1667889,M2AUEpmLf68,The boys discover that Gus has been importing heroin into the factory.\ntt1667889,LLeKCWFnlW0,Andy and the gang test out a couple of new boards they made.\ntt1667889,2bdQKmp6hc0,\"With the help of their friends, the Kelly family sets up a shop for their surfing business.\"\ntt1667889,TU_iltXEntg,Bikers show up to JB's party and instigate a fight.\ntt1667889,Tyo-f87JA38,JB and Jimmy discuss what living the dream truly means.\ntt0097322,x7yAcIuyOb4,\"After a rough start, Susie Diamond enlivens the Baker Boys' lounge act.\"\ntt0097322,gQNFCRom7c0,\"Susie sings a show-stopping \"\"Makin' Whoopee,\"\" backed by Jack's accompaniment.\"\ntt0097322,BX-hxkRsaT4,\"Jack trashes the set of a demeaning telethon, with Frank doing damage control.\"\ntt0097322,_4DRXSdPuCo,A long-brewing argument between Frank and Jack gets physical.\ntt0097322,QyeYgwO4ADg,The Bakers pour a wine they've saved for decades and play an old song.\ntt0097322,mbTKo5Ylypw,The Baker Boys have a falling-out after the show involving a kiwi and a pineapple.\ntt0097322,oZlQMLXqw0g,\"Frank insists his spray-on hair isn't paint, though Jack remains skeptical.\"\ntt0097322,dyXlsD7Gx0Y,Jack relaxes Susie with a back massage.\ntt0097322,7hacgmRbdMM,\"Susie and Frank argue the merits of \"\"Feelings\"\" and other creative choices as Jack stays mum.\"\ntt0097322,pxSjP6JkAis,The Bakers allow one final audition: the brash Susie Diamond.\ntt0097322,Hxtm9DG4k4o,\"The Baker Boys screen potential singers for their act, but each is awful in her own way.\"\ntt1389096,BtL6iIh95ag,The old gang gets into a car chase with the police.\ntt1389096,MD9AvOexMWY,Val and Doc have their last hurrah.\ntt1389096,MI0ZlakXWFM,Doc and Val help Sylvia get her revenge on the men who through her in the trunk.\ntt1389096,aCqeaDIGLD4,Val dances with a beautiful young woman.\ntt1389096,4QCMLXFfJyY,The gang helps Hirsch get something he's always wanted.\ntt1389096,UUSLRRjc57o,Val gives a eulogy for Hirsch.\ntt1389096,vVaBlzQzmjQ,Doc calls Alex to tell her how much he cares about her.\ntt1389096,xKrzCRKABjY,The gang gets ready for action.\ntt1389096,fuyK26nKaPw,\"Doc, Val, and Hirsch find a naked woman in their trunk.\"\ntt1389096,6FtMdJEg2ak,Doc asks Claphands when he needs to deliver the package.\ntt1389096,ziue9g2nXZ0,Doc takes Val to the hospital and they meet Hirsch's daughter.\ntt1389096,ca3ejioEyiE,Val tells Doc how much he appreciates him.\ntt2094018,eMru-ZnAzUk,\"While Hurricane Katrina rages outside, Nolan learns some devastating news.\"\ntt2094018,h1wWMu4nyRE,Nolan finds his wife's body in the hospital and makes a shocking confession.\ntt2094018,FYUDzpVRYio,\"In a race against time, Nolan attempts to radio for help\"\ntt2094018,3rlz8tdE5Mg,\"Nolan hallucinates about his wife Abigail, who gives him the strength he needs to persevere.\"\ntt2094018,yjQqsPi138w,\"Hurricane Katrina has died down, but Nolan has to deal with a lack of power at the hospital to keep his baby alive.\"\ntt2094018,ekakyXFzHwM,\"Power goes out in the hospital and, with the staff evacuating, Nolan's daughter's life rests in the hands of a single generator.\"\ntt2094018,ADy7gUvipWw,Nolan tells his daughter the story of his proposal to Abigail.\ntt2094018,RWm6781MWb8,\"Dr. Edmonds introduces Nolan to his baby daughter, but she needs a ventilator and Hurricane Katrina's not helping things.\"\ntt2094018,TR6tZ5CKRVg,Nolan and his daughter's lives are on the line when violent druggies break into the hospital to plunder prescription drugs.\ntt2094018,rVQAt6GkMgk,\"Battered, exhausted, and despairing, Nolan struggles to save the life of his baby daughter before it's too late.\"\ntt1747958,RZvJ5MoPjGs,Chris hurries to get to his brother Frank before Scarfo can get his revenge.\ntt1747958,p6SMuW5b91o,\"Leon tells his son, Frank, how much he appreciates him.\"\ntt1747958,iKQIxiobVGM,Frank and his partner follow the criminals and the armored truck to the scene of a robbery.\ntt1747958,NOe3intBN0w,Chris and Monica set up a new business venture.\ntt1747958,jQVO3AWAgHU,\"While enjoying a night on the town, Chris has a run in with Scarfo.\"\ntt1747958,0H3xMXZWU78,Chris asks Natalie for her hand in marriage.\ntt1747958,p0Iwafu7J4Q,Frank chases a criminal after a robbery goes bad.\ntt1747958,bCAXuyqUJzs,Frank kicks Chris out of the apartment which leads to a fight between the brothers.\ntt1747958,ylzTTNLGlD4,\"After a heated argument, passion gets the best of Frank and Vanessa.\"\ntt1747958,IFVWE5XHflo,Chris takes a job from Mr. Ruby that pulls him back into the criminal underworld.\ntt1551621,I6JIv4ht8OU,\"Deu fights the Gang Leader's lieutenant's, but the biggest challenge is yet to come.\"\ntt1551621,4qdHRWWX2gM,The Gang Leader attacks Deu and Sanim at their most vulnerable and with no chance of escape.\ntt1551621,BcRrXppXfEU,Deu fights to the death with the Jaguar Gang Leader.\ntt1551621,lBIi9tKMz2g,Deu faces her toughest challenge yet: an initiation fight with Bull.\ntt1551621,0EXwWYHzUNM,\"Deu learns the dark secret of Meyraiyuth from Bull, and tries to make up for lost time with Sanim.\"\ntt1551621,Fb3LibJlRdM,\"Having failed her previous test in combat with him, Deu confronts Bull for her place in the team.\"\ntt1551621,mClqKZl0KEs,\"Using her newfound mastery of drunk-fighting, Deu fights to rescue several captive women from a hip-hop gang.\"\ntt1551621,5K-YqPyi3BA,Sanim races to save Deu from a psychotic gang of martial arts stilt-fighters.\ntt1551621,XRKrwa_--2U,\"Confronted by an enemy gang, Pig-Shit, Dog-Shit, and Sanim kick into high gear, as does Deu.\"\ntt1551621,cSOwRJe9hSs,Deu plays hardball with Dog-Shit and Pig-Shit until they agree to teach her Meyraiyuth - drunken fighting.\ntt1846444,iv8bdd2-Y0w,\"A crazed thief named Gary steals a van from Bill and the family. However, when he tries to drive it across frozen ice, the ice breaks and he sinks.\"\ntt1846444,vk3s_WgZl1M,\"The ice storm tears through the city, literally freezing civilians solid. Then, Bill wants to help some victims at the side of the road, but they are crushed by falling ice.\"\ntt1846444,7x43p4KHLLI,\"When a chain of volcanos erupts in Ireland, it takes Divya's life and causes a massive glacier to move towards North America.\"\ntt1846444,oHAtHxDF6DQ,\"Bill flies an airplane through the thick of the storm, deftly dodging falling ice and the military.\"\ntt1846444,trKur9bR2aE,\"As Bill and his family try to escape, the military bombs the glacier, causing massive hunks of ice to fall on the city below.\"\ntt1846444,hxwuvmJyM8s,Bill uses supplies he finds in abandoned cars to create a makeshift bomb and blow his way through a pileup.\ntt1846444,RbI_bPsWnmQ,\"When their airplane runs out of fuel, Bill is forced to make a crash landing through the icy storm.\"\ntt1846444,W8tB9ZTiPpw,\"When the military bombs the glacier, it does not go as planned. Hunks of ice fly through the sky, destroying Colonel Sinor's helicopter.\"\ntt1846444,U-FFwUkA2QU,The Hart family races across the frozen Hudson River to find refuge from the ice storm inside the Statue of Liberty.\ntt1846444,EpzearSkgOM,\"Unable to see through the thick snow, Bill crashes the car, flipping it entirely upside down.\"\ntt1535108,zFIHYJAp2rc,Max undergoes surgery to receive his exoskeleton.\ntt1535108,60V3JFUPvIE,Max is subject to a lethal dose of radiation and is told he will die in 5 days time.\ntt1535108,1kNZdy-IxNQ,\"Kruger arrives with a violent intent and even more violent weaponry, taking on Julio and Max.\"\ntt1535108,_BjawJWZIxo,Max and Kruger go head to head on a cat walk with nothing but their exoskeletons and some blades.\ntt1535108,3uUUeNqdMMU,\"Max uses a grenade to blow off Kruger's face and take control of the spacecraft, leading to a crash landing on Elysium.\"\ntt1535108,f4gmgTebHog,\"Thanks to Max's sacrifice, the people of Earth become citizens of Elysium.\"\ntt1535108,OzliqFzK36E,Max fights a pair of armed security droids to keep Carlyle from flying to Elysium.\ntt1535108,6j-vjtJ7PRI,\"When Frey is taken away, Max breaks out of a laboratory to go after her. Meanwhile, Kruger's face is reconstructed after a brutal explosion.\"\ntt1535108,c_6SIVs_M5Q,\"While being closely pursued by Kruger, Max rushes through the space station to complete his mission and save Matilda's life.\"\ntt1535108,2cJGGVlQ8X8,Max sacrifices himself to help the forgotten people of Earth become citizens of Elysium.\ntt1764183,VMLlpJdCYG0,\"With Robert's fraud and criminal activies threatening to destroy the family, his wife, Ellen, proposes a new solution.\"\ntt1764183,VIlnM_wcw0w,Robert finalizes the deal to sell his company to Mayfield over lunch.\ntt1764183,a5AnZBVyCCw,Ellen Miller shares her suspicions about her husband with her daughter and encourages her to do what is right for her.\ntt1764183,1psPf8n2AKo,\"Robert tries to cover his bases with Jimmy, but the situation's even worse than he expected.\"\ntt1764183,Og1Ptc7w7GI,\"Robert explains to Brooke, his daughter and \"\"business partner,\"\" why he had to commit fraud.\"\ntt1764183,zJ08DhVEAiI,\"Robert struggles to maintain a relationship with Jeffrey Greenberg, who's invested 412 million dollars into his business.\"\ntt1764183,gkStl7MVRnU,\"Robert covers the best he can when questioned by Det. Bryer, but his story has a lot of cracks.\"\ntt1764183,vyVGOQCHbTA,\"Robert Miller tries to make up with his mistress by escaping from the city, but disaster strikes.\"\ntt1764183,aBMH3MEYNIg,\"Injured from a car crash he shouldn't have been in, Robert calls Jimmy, a personal friendto drive him home. Meanwhile, Det. Bryer and Det. Mills investigate the scene of the accident.\"\ntt1764183,OOfMTt2XfWU,Syd Felder advises Robert Miller on a hypothetical person who hypothetically committed involuntary manslaughter.\ntt1770734,W6Y6riI56Dg,\"In the end, Colette chooses to leave, but not with Mac.\"\ntt1770734,Yb9EnN_gvu0,Colette agrees to become an informant if Mac will support her.\ntt1770734,1dcHIATBkS0,Colette has to war her handler when she realizes that she will be part of the assassination attempt.\ntt1770734,tjpRBPJGPjY,MI5 agent Mac pressures Colette McVeigh to turn informant on her own brothers who are IRA members.\ntt1770734,cvvBpQoiZpg,\"Colette is forced to tag along on an assassination, but MI5 is there and kills the gunman.\"\ntt1770734,cPBHxDtI3Ok,\"Colette fears that she is in too deep and that she will end up dead, but Mac assures her that he will protect her.\"\ntt1770734,fF8O4drwH-I,\"After the IRA operation goes wrong, Colette is questioned by an enforcer known for his cruelty.\"\ntt1770734,Ntn3ksJwDpk,Young Colette witnesses the death of her little brother as a result of the Northern Ireland Conflict.\ntt1770734,-rMac-9Z66w,\"Colette attends Brendan's funeral, where the IRA and her brothers show their rebellious spirit.\"\ntt1770734,2U2zhXAXdhQ,\"Colette McVeigh attempts to bomb the subway, but is captured by MI5 agents.\"\ntt0079592,wbwXHxqxDwc,\"As Sherlock Holmes tries to get information about the murders from Mary Kelly, the two are attacked from a cloaked man.\"\ntt0079592,_RWkRZDPnao,Sherlock Holmes reveals to Prime Minister Lord Salisbury the tragic story of Annie Crook.\ntt0079592,NvvU_4PsiKo,Sherlock Holmes finds the killers behind the Jack the Ripper murders.\ntt0079592,VAaeEoQq6jY,Sherlock Holmes and Dr. Watson investigate the scene of Jack the Ripper's latest victim.\ntt0079592,6EfYYxmfABk,Sherlock Holmes and Dr. Watson confront Sir Charles about freemasonry's involvement with the Jack the Ripper murders.\ntt0079592,yq571gv49HQ,Sherlock Holmes trails William Slade to the wharf where they come to blows.\ntt0079592,86sXLVakflE,Sherlock Holmes reveals that Inspector Foxborough has been the informant behind the secret messages.\ntt0079592,raM63LAHuwo,An anonymous stranger gives Sherlock Holmes and Dr. Watson information on the Jack the Ripper murders.\ntt0079592,cEezHIqQrEw,Sherlock Holmes and Dr. Watson watch as a rowdy crowd boos the Prince at the theater.\ntt0079592,h1aJoWg4vGo,\"While Sherlock Holmes tries to figure out more information about a mysterious woman, Dr. Watson is distracted by his last pea.\"\ntt0079592,t5zrRGTShZA,Sherlock Holmes tries to help Annie Crook get out of the insane asylum.\ntt1325753,TXRHf6Hzg0g,\"With Thor bargaining with Bruce Banner, Sif and the Enchantress make their last stand against the Hulk.\"\ntt1325753,kYlPBN4yMe0,\"Trapped in Hela's realm with Loki, Thor teams up with him to stop the Hulk.\"\ntt1325753,d3HAOZbAj1Q,\"Thor confronts the Hulk, only to learn that he's being possessed by his brother Loki.\"\ntt1325753,5vY-zNTuq8E,\"Loki loses control of the Hulk, which makes things go even worse for Thor.\"\ntt1325753,ieVPPV5S0Ps,Loki and Enchantress separate Bruce Banner from the Hulk to fulfill their nefarious plan to slay Thor.\ntt1132130,DU1C6QrVmuU,The prophecy that Frank discovers comes true when Sarah shows up with Wakanna.\ntt1132130,fLFf012Auvc,\"When the west coast gets hit with intense weather, everyone panics and Susan gets her mom out of town. Along the way, Susan feels compelled to go to the pyramid.\"\ntt1132130,Eur_GSTH4oA,\"As Wakanna cradles her newborn baby, Sarah realizes that the end of this cycle on Earth means the start of a new one.\"\ntt1132130,WKoY2kS1UNo,A chunk of hail crashes through the windshield and kills Alex.\ntt1132130,S5EWvpoWIBk,\"Lloyd gives Susan a ride to the pyramid, and Trish dies before she can make it inside.\"\ntt1132130,fXElquKFrMo,Jim agrees to fly Lloyd through the storm to Mexico so Lloyd can find his daughter.\ntt1132130,eBx_WJQ25Ec,\"Sarah is convinced they need to bring Wakanna to the pyramid, which is exactly where Frank is headed with an injured Trish.\"\ntt1132130,hG2yx-PTxys,\"Susan doesn't share her mother's religious beliefs, but she does start to wonder about the significance of the pyramid she's been seeing in her mind for years.\"\ntt1132130,Ei9RooSCn14,Lloyd and Susan are confused when their Christian loved ones go missing.\ntt1132130,A6b9rDbdOzI,Wakanna gives birth just as the world ends.\ntt1386703,hgGi1ODlBBo,Lori chases after Quaid and Melina with an intent to kill.\ntt1386703,qLoufJLKN6Q,\"Harry tries to convince Quaid that he is still in Rekall and is hallucinating his entire reality, leading to a standoff with Melina.\"\ntt1386703,dzzijuZof1w,Quaid and Melina use guns to protect themselves and travel around The Fall as they float in zero gravity.\ntt1386703,ibAU8weiUOI,\"When Quaid goes to Rekall to download the memories of a secret agent, he learns he actually has true memories of being a spy and engages in a shootout with Federal Police.\"\ntt1386703,d_A4tfEukp4,\"After admitting that she is not really Quaid's wife, Lori chases him through the city and tries to kill him.\"\ntt1386703,Bf6FD5UbSns,\"After being picked up by Melina, Quaid struggles to understand his reality in the midst of being chased by police.\"\ntt1386703,RgubwsCVg1o,\"Quaid learns that Lori is not actually his wife of seven years, and is instead a special agent assigned to deceive him.\"\ntt1386703,dw95Qsj59NA,\"Quaid squares off against Cohaagen in a fight, allowing himself enough time to detonate his bomb.\"\ntt1386703,_92v2IFT7WE,Quaid and Melina fight Lori onboard a series of high-tech elevators.\ntt1386703,68SlAT125f8,Quaid kills Cohaagen just before he and Melina destroy The Fall with a devastating explosion.\ntt0450336,wfAfwKUkfHU,Wirth revives Liese's bird using the power of the occult.\ntt0450336,5V-C6ziFKMA,Wirth reveals to Victor that he let him escape as it was part of his master plan.\ntt0450336,H4d8EcquSUM,Evan wakes from a nightmare to find his long lost brother Victor standing in front of him.\ntt0450336,o-6E3Hd2OW0,Wirth possesses Otto and Karl Wollner and uses them to attack Evan and Victor.\ntt0450336,BbbXgjwlOpI,Evan distracts Wirth while Victor goes to collect the sacred bones.\ntt0450336,A6oAEu3DbKk,Evan and Victor fight off a possessed horse sent to attack the farmhouse by Wirth.\ntt0450336,Tc7e-4kbDto,Victor makes his way into the Wollner house while Evan hangs back to provide support.\ntt0450336,nBZ39gX_FlU,Victor accidently releases an unstoppable force of evil.\ntt0450336,xuhl1rceZdE,\"After poisoning Wirth with the blood of his elders, Evan and Victor slay him before he can regain his strength.\"\ntt0450336,8wY9r2cpbxQ,Evan finds out that the Wollners have been the same age since the 1940s.\ntt0450336,padXZANlFwE,Wirth uses his dog to keep Victor busy while he completes the next step towards his evolution.\ntt0450336,D8Cra7i2kGc,Evan and Liese set up a trap to stop Wirth's ever growing strength.\ntt0457572,K3dG3JrXAJc,\"Thank you Zomcon! For winning the zombie wars, and building a company for tomorrow, that gives us a safer future today!\"\ntt0457572,CfsveeSvZNw,Mr. Theopolis helps Timmy fix Fido's damaged collar.\ntt0457572,dK2oGZK490w,Helen brings Timmy and Fido a cool drink while they wash the car.\ntt0457572,6_yYxTkdIk8,The bullies try to frame Fido for attempting to murder Timmy.\ntt0457572,V2RKM83CQ_A,Helen and Fido try to arrive in time to save Timmy from the bully zombies.\ntt0457572,Y9OrRbeB-rU,\"The Robinsons host a cookout, and Cindy brings her new zombie to the party.\"\ntt0457572,ERlyrvQbqP8,Helen has a big surprise for her husband Bill.\ntt0457572,dEqrnOk8P1Q,Mr. Bottoms comes to the classroom to answer questions about zombies.\ntt0457572,EDq1QNZ_JJo,\"Timmy has a nasty run-in with bullies in the park, but a new friend is there to save him.\"\ntt0457572,5dE-JjnKznQ,Mrs. Henderson accidently shuts off Fido's collar which leads to disasterous results.\ntt0457572,jpTj6qTyIwY,The Robinsons come together to save Timmy from Mr. Bottoms\ntt0780607,qKT2-0WUbGY,\"While Lewis is outside attempting to break the door down, Ben manages to get Clark to remember where Mya was headed.\"\ntt0780607,a1ewWPS5ULg,Ben comes across a bound and violent Lewis while looking for Mya.\ntt0780607,8I1qHr1kjF8,Mya and Rod leave the apartment building and attempt to drive to safety.\ntt0780607,tbu7lOVTric,\"Amid the violent chaos, Lewis, Clark and Anna take time to appreciate what they have done.\"\ntt0780607,XQO-ftv4ePQ,Clark vists his neighbor Anna who has just killed her husband.\ntt0780607,81ZejwnzklY,Ben uses Lewis's own paranoia against him.\ntt1694508,4A-T8umqRYE,Ahab fashions himself a new leg after Moby Dick takes his a second time and the beach battle begins.\ntt0780607,eTGHFj1kdsI,Lewis suspects his wife Mya of cheating on him when she comes home late.\ntt0780607,hca09uawN_8,Mya prepares to take a shower while her husband Lewis suddenly starts to get very aggrassive towards his friends.\ntt0780607,Epzv2FLSjhk,Mya encounters Rod who explains that everybody has gone crazy and started killing each other.\ntt0780607,fthLa-kq3WI,\"Anna, Clark and Lewis are on edge when someone knocks on the door.\"\ntt1694508,-V7_zk4wpQs,Ahab aggressively pursues his white whale and Boomer's plane goes down trying to take out Moby Dick.\ntt1694508,zpCCg4DtXCU,Ahab blows up the wrong marine animal and a helicopter chasing down Ahab ends up in the belly of Moby Dick.\ntt1694508,bc4_fCULOKk,\"Ahab warns his superiors about a mysterious sound, but by the time they see it's a giant whale, it's too late.\"\ntt1694508,jdYgR4Vqwuw,Ahab gives a speech meant to encourage his crew to find Moby Dick and destroy him once and for all.\ntt1694508,s1-5EZM82lM,\"Ahab puts the crew at risk by pushing the boundaries of what the submarine can do, all in pursuit of Moby Dick.\"\ntt1694508,GGVL7N6Wz8I,\"Boomer intends to stop Ahab, but after he hears the story behind the mad pursuit of Moby Dick, Boomer decides to let him go.\"\ntt1694508,XkYj78aDy2I,\"Ahab and his crew try to corner Moby Dick, but their first attack fails.\"\ntt1694508,_txmRGsX5ss,Ahab shoots Moby Dick and drowns.\ntt1694508,XjYQd3hE6xI,Starbuck shoots torpedoes that miss Moby Dick and end up blowing up the island instead.\ntt0942903,teoyewW1bUY,Maj. Gen. Landry makes it clear that he does not fear the Ori Prior's threat.\ntt0942903,N9EnEuH0Tgo,\"After the crew finds the Ark and Teal'c falls in a battle with the Ori, the Odyssey must escape without beaming up the rest of their team.\"\ntt0942903,OSkFsRL177o,Daniel opens the ark and reveals the truth to the Doci and all the Priors and Morgan le Fay destroys Adria.\ntt0942903,1CXkATQLZGk,\"Lt. Col. Mitchell blows up the Marrick monster, but the robot skeleton lives again until Lt. Col. Carter saves the day.\"\ntt0942903,ImO-q-hTdAc,Daniel gets some advice from Morgan Le Fay and Teal'c appears to help get Daniel out of jail.\ntt0942903,eRITzdlHJXA,Vala learns about the evil plans her daughter Adria has in store for humanity.\ntt0942903,2b-ip6hZYgE,\"While Lt. Col. Carter tries to find a way to control the replicators, Lt. Col. Mitchell tracks them to the queen -- a replicator monster with a Marrick body.\"\ntt0942903,RU2IP_oUqyc,Lt. Col. Mitchell fights off a small herd of replicators while his team on the ground finds the ark.\ntt0942903,y2_oXPF2b3Y,\"After discovering the ark is a fake, the team kills a Prior.\"\ntt0942903,huxXgcGvTPk,Daniel has a vision that may lead him to the ark and Marrick unleashes a replicator on the ship.\ntt0929629,grpGRWYL6mQ,The extraction process is finally complete as planned and the last of the system lords is dead.\ntt0929629,pPcxCk8YBVs,Lt. Col. Mitchell enlists the help of the Captain of the Achilles to kill Ba'al and his men in 1939.\ntt0929629,GeLDjQIIkdI,\"While Lt. Col. Carter tries to figure out how to use Ba'al's time machine, the crew has to fight off Quetesh's henchmen.\"\ntt0929629,UCCkKfTVEy4,The Goa'uld attack as SG-1 is rerouted to Russia.\ntt0929629,kFbDy90VZQY,Quetesh kills Ba'al and takes over leadership of the ship and crew.\ntt0929629,AkjImI2Qpew,\"Ba'al demonstrates power over the system lords, impressing Quetesh.\"\ntt0929629,Wv07oUFHGRQ,Landry tells the soldiers who they are in this timeline and that they will not be allowed to change back the altered timeline.\ntt0929629,f4LEgmt0roE,\"Daniel, Lt. Col. Carter and Lt. Col. Mitchell try to explain the Stargate program, which apparently doesn't exist in this timeline.\"\ntt0929629,ry9yNbMVeMQ,\"In the past, the Captain of the Achilles throws the bomb off the side of the ship and in the future, Lt. Col. Carter and her crew escape through the Stargate and into an alternate timeline.\"\ntt0929629,s1QgQny2o5E,\"Ba'al travels back in time to a ship in 1939 Earth, meanwhile in present day a Ba'al clone kills Jack and people and objects start disappearing.\"\ntt0115985,9ltpGvaDfBM,\"Ferris knocks the stuffing out of Joe, who finally accepts the staff of his destiny, but he might not know how to use it.\"\ntt0115985,I5RKRQcsDKU,\"Joe thrusts his mighty staff into Ferris, which excites Laura.\"\ntt0115985,VV26lYf6VyM,\"A.T. shows up to save Joe from Ferris, kicking off a crazy, trans-dimensional fight scene.\"\ntt0115985,prAOME_9oP8,A.T. holds the fort to prevent Rebo from getting his hands on the staff.\ntt0115985,CDQw1Ez9yOs,\"Joe, A.T., and Laura continue their mission when suddenly their elevator starts to fall apart.\"\ntt0115985,1C84oQva04A,\"Joe's gets shoved off a skyscraper, only to have a hallucinogenic vision of evil and of his destiny.\"\ntt0115985,wpxS1xSxUDY,Negotiations break down between A.T. and Ferris in a big way.\ntt0115985,h0i2KfT2SB0,Laura and A.T. teach Joe the dangers of dimension-hopping.\ntt0115985,CdppQAIYPzY,\"Ferris attacks Joe, A.T. and Laura with magically animated suits of armor.\"\ntt0115985,KccpJ0xD-7E,Joe wakes up to find Laura on top of him.\ntt0480669,P4KHpL7ZHlA,\"El Joven reveals just how deep the time-traveling rabbit hole goes with Hector 1, Hector 2 and Hector 3.\"\ntt0480669,g1axUa-NsEE,\"Hctor sets events in motion that will restore order to the timeline, but nobody will ever be the same.\"\ntt0480669,Kxyzb-o56QQ,\"Hctor returns to El Joven to fix the mistake he made, but the scientist is less than thoroughly cooperative.\"\ntt0480669,AqAm2IAg5Fw,\"Hctor breaks into his house to see Clara, only to make an unthinkable mistake.\"\ntt0480669,9Q2UjqahNSw,\"Hctor preserves time continuity, but at a shocking cost.\"\ntt0480669,m8KBXUCttEw,\"Hctor accosts the girl in the woods to keep continuity in the timeline, and for no other reason.\"\ntt0480669,WQXNChLdnvI,\"Hctor gets into a car wreck and, bandaging himself, makes a horrifying discovery.\"\ntt0480669,wVC_xkrm6kU,El Joven explains to Hctor how he and his past self can exist simultaneously.\ntt0480669,d5n-bZf3eVE,\"Hctor wakes up dazed and confused in El Joven's laboratory, but discovers a shocking truth.\"\ntt0480669,YZ8k016_bvc,\"Investigating an incapacitated girl in the woods, Hctor's attacked by a maniac wrapped in bloodstained bandages.\"\ntt1479847,1tryt4ddnWw,\"When Kelvin learns that Dr. Ye is the masked assassin, he fights her to the death.\"\ntt1479847,-Kv4O5dyrzM,Kelvin and his family reunite after the supernova event.\ntt1479847,KmuxPl7RkK4,Kelvin makes a sacrifice in order to save Earth from the supernova.\ntt1479847,5N86yJbOjYM,The President addresses the nation while Kelvin and his fellow astronauts embark on their journey to the International Space Station.\ntt1479847,C-NaBwskUp8,Laura and Tina attempt to outrun a tornado.\ntt1479847,-4Qk4eACpXI,Kelvin is working in the lab when he gets attacked by an assassin.\ntt1479847,nf1DA90KAIY,Kelvin advises his family to get to safe place and alludes to the fact that he might not live through the project.\ntt1479847,U87C_o3_qOo,Kelvin loses contact with Laura when she's involved in an intense earthquake.\ntt1479847,N-dpQITO2fo,Assassins question Kelvin about his involvement with the nuclear weapons he's been taking to the International Space Station.\ntt1479847,4q5rmjaO9Cw,Kelvin explains the impending supernova threat and argues with his international colleagues about how to solve the problem.\ntt1758830,kAFxKPtwYuU,Debbie touches Desi's breasts to make sure they are real.\ntt1758830,jjpQORCD0ZU,\"Debbie tries to changer her family's lifestyle, but her daughter Sadie makes it hard.\"\ntt1758830,GH-oJGZKmq8,\"Jason and Ronnie try to seduce Desi, while Debbie has an awkward conversation with her family.\"\ntt1758830,-mlfefNP8cw,Pete and Debbie enjoy a weekend away from the kids.\ntt1758830,c4X58OjlVPo,Jodi admits that she has a drug problem.\ntt1758830,MIZSWO65BXQ,Larry accuses Debbie of anti-Semitism while Pete tells off her father.\ntt1758830,rrMvGHoW7aw,Debbie and Pete tell their children some of the new changes their family will be making.\ntt1758830,mFH_r2w28rM,\"Pete and Debbie attempt to fight politely using their therapy skills, but the honesty really stings.\"\ntt1758830,6CBfg5X9Z3Y,\"Catherine confronts Pete about his wife's behavior, but things get worse when he touches her.\"\ntt1758830,cT1iUwGGUAg,Debbie and Barb have a conversation with Jason about sex and the lack thereof.\ntt1931435,84UF11bJDFY,Missy O'Connor and Alejandro Griffin seek a blessing from Father Monaghan.\ntt1931435,6UNDrO9PrzE,Alejandro Griffin finds out the truth about his mother's past.\ntt1931435,TjMQwe-R_5Y,Lyla Griffin tells Don Griffin how she does not want to be like him.\ntt1931435,O_CorWKpGvU,\"At the wedding, Don Griffin proposes to Bebe McBride and they get married on the spot.\"\ntt1931435,CbPAADCg6ns,\"Running away from everyone, Missy O'Connor and Alejandro Griffin elope on the dock.\"\ntt1931435,6iOxj7Lgn4I,\"Right before the wedding, Ellie Griffin's past mistake is revealed.\"\ntt1931435,3FeBwyb5g0U,\"Trying to convince her to sleep with him, Jared Griffin does a series of romantic things for Nuria.\"\ntt1931435,MJ9QAW4LUEY,Don Griffin and Lyla Griffin share a father/daughter moment in his studio.\ntt1931435,x2jLrsMN6YY,\"Madonna wants Don, Ellie and Alejandro to go to confession with Father Monaghan.\"\ntt1931435,vhv17audEAo,\"The Griffins and the O'Connors have a lovely dinner outside, until the rain comes.\"\ntt1931435,NFgP1bVZCy4,\"Ellie comes back to her old house only to catch her ex husband, Don, and her old best friend, Bebe, having some fun.\"\ntt1931435,cVGZCFgH-Dg,\"Because of Alejandro's biological mother, Don and Ellie have to pretend to be married.\"\ntt1878942,ANXSdv-KaCQ,\"After ruining things with Matty, Michael makes up with him the only way he knows how.\"\ntt1878942,gSZ82TOHWc0,Michael and Matty reconnect and share their much-abused pot brownie.\ntt1878942,XIPjMKd3-1U,\"Marcus takes go-carting very, very seriously.\"\ntt1878942,ZyHoPZAsm60,\"Having ruined everything, Michael consults Greg and Jared for a way to win his friend back.\"\ntt1878942,PbC7alhpFBE,\"Michael researches \"\"gay dudes\"\" only for his father, Terry, to walk in unexpectedly.\"\ntt1878942,VvfIdmaKwfQ,Matty and Greg bond over amateur Mexican wrestling.\ntt1878942,XBCML9xJI8I,Michael takes Matty to another gay club where they get crazy with Jared.\ntt1878942,YDeGYXbeQV8,A date with Em takes a nosedive for Michael when he discovers who Matty's been seeing.\ntt1878942,HwaqZA54GTk,\"Michael attempts to get Matty laid at the gay bar, but Jared might be more than they can handle.\"\ntt1878942,HOY92xiGY2M,\"Matty reveals his secret to Michael, who doesn't quite understand.\"\ntt1839654,M3DlQK8xFBQ,Monte manages to get Finnegan to make up her first story.\ntt1839654,mbl4cWCn6z4,Monte opens up to Finnegan and tells her the story of finding and losing his one true love.\ntt1839654,h36L-NdLDhI,\"Henry sets up his bitter writer of an uncle, Monte Wildhorn, in a cabin for the summer.\"\ntt1839654,PzUxcPh1zPI,Monte takes out a gun and scares off an angry Clown at Flora's birthday party.\ntt1839654,kVQN0ZDzIqU,Monte is introduced to a famous actor named Luke Ford that is interested in buying the rights to his western books.\ntt1839654,BxvRz4RftFY,Mrs. O'Neil asks Monte a personal question after getting to know him over dinner.\ntt1839654,eaFX0rKv2Fc,Monte by Al Kaiser.\ntt1839654,2haHRRfKLJ0,Finnegan gets her first lesson on imagination from Monte.\ntt1839654,x2EI9M1XFOA,Finnegan visits Monte and asks him to teach her about stories.\ntt1839654,VqYLWPoXeuc,Monte has a discussion with the dog that is now in his care.\ntt0057187,VXkEBRtERnA,\"Nestor and Irma have a healthy baby girl while Moustache encounters a \"\"real\"\" Lord X.\"\ntt0057187,rxno2wz0eKc,\"Under the impression that a rival prostitute has gotten fresh with Nestor, Irma attacks the woman.\"\ntt0057187,JvG1hHsOFUA,\"To Moustache's bewilderment, Nestor plots the murder of a romantic rival his own creation, Lord X.\"\ntt0057187,Bi8Spey13uY,Nestor suddenly comes to life in his fight with Irma's pimp.\ntt0057187,kbGvnI1qIz8,Nestor has a rush of panic when Irma suggests he meet his doppelganger Mr. X.\ntt0057187,iMPV0eFLxbQ,\"While Irma dances, Nestor frets with Moustache over his costly romance.\"\ntt0057187,k01VcZkKDME,\"Irma spends an evening with the eccentric Lord X, Nestor in disguise.\"\ntt0057187,VXPxIwL1e5g,\"In order for Irma to be monogamous with him and still have the satisfaction of being a working girl, Nestor transforms into a wealthy Englishman who can be become her only client.\"\ntt0057187,ZQ0JJpvMq-g,\"En route to the police station, Nestor fends off a van full of wanton women, including Irma.\"\ntt0057187,ZH81ElJu-Jw,\"After being fired from the police force, Nestor is advised by Moustache to try out pimping.\"\ntt0057187,lLbWBsRVUAU,Moustache educates Nestor about illicit love on the Rue Casanova.\ntt0094678,tXrxBy-CDPc,\"Arthur tells Linda that he has lost his fortune, but she still loves him.\"\ntt0094678,dAoRRTPPIys,Arthur confronts Mr. Johnson with evidence of his fraud and Susan realizes she doesn't want to marry him after all.\ntt0094678,84gYIl6Zjks,Arthur and Linda rent a crappy apartment with I.O.L. in every room.\ntt0094678,kD0zHgK3BJ8,Hobson gives Arthur the inspiration to change his life.\ntt0094678,SqSZ5RSaT8k,Mr. Johnson manipulates Arthur to divorce his wife and marry his daughter Susan.\ntt0094678,vw44oj_STSw,Arthur and Linda meet with Ms. Canby to see if they can adopt a baby.\ntt0094678,UkIwAAKv_iA,Arthur tries to be thankful for his newfound poverty.\ntt0094678,an8Z9J29zWo,\"Arthur teases his new butler, who has no sense of humor.\"\ntt0369672,S-Io377-jmE,\"Drunken Bobby feels betrayed when Lawson reveals that he's thinking of moving in with his girlfriend, Georgianna.\"\ntt0369672,XYD3ysriZ3k,\"Lawson reveals that Bobby has a serious health issue, but Bobby fights going to the hospital.\"\ntt0369672,rcWb_qea8Eo,Bobby asks Pursy what she remembers of her dead mother and the answer surprises him.\ntt0369672,W2QDEiF7SGU,Bobby proposes a toast to Pursy.\ntt0369672,1DSkJxktHFY,\"Bobby, Lawson, and Pursy celebrate Christmas together as a makeshift family.\"\ntt0369672,0pPOxAQwRgQ,Pursy tells Bobby that he's her father.\ntt0369672,i_3ktf3XwNU,Bobby and Pursy argue over who does the most work in the household.\ntt0369672,i4l0vA9bzaw,Bobby tells Pursy and the guys about his youthful desires.\ntt0369672,z1e_c3E9ZR4,\"Pursy gets to know her annoying roommate, Bobby Long, and his love of literature.\"\ntt0369672,KuLvoPT5PQM,\"Pursy Will arrives at her deceased mother's home to find \"\"two alcoholic strangers,\"\" Bobby Long and Lawson Pines, still living there.\"\ntt0099797,sWCjRo30-Ls,\"Harry breaks into Dolly's house where Dolly is waiting for him, hardly the lamb to his wolf.\"\ntt0099797,st8QRZbJdPY,\"Dolly takes advantage of her husband's weak heart, tying him up and telling him the cold, hard truth before she screws him to death.\"\ntt0099797,7oqRCOYvOS4,\"Harry waits for Sutton at his cabin, where he proceeds to beat him to a pulp for blackmailing Gloria.\"\ntt0099797,SJ1_epc6q2E,\"Harry realizes by spending time with Gloria that she's not like the other women he's been with, she's \"\"a real lady.\"\"\"\ntt0099797,kd01w5eLVwo,Harry and Gloria take a dip in a gorge and have a picnic.\ntt0099797,rA6AZeHyw8Q,Harry quietly robs the local bank while the fire fighters and police are distracted by the burning building.\ntt0099797,RVu3EPJ4-jA,Dolly hides inside a car in a lot and waits for Madox.\ntt0099797,BANrqTBnEy4,Madox has regrets when he comes over to Dolly's house.\ntt0099797,3TzAJdCNpZw,Dolly and Madox share conversation and a kiss.\ntt1270262,lZltw3ubrGo,\"Mistaken for Uday, Latif Yahia is nearly assassinated. Luckily, Sarrab wants to make it up to him.\"\ntt1270262,Kusz_-SyLfE,\"Uday Hussein terrorizes the Schoolgirl he kidnapped and threatens his father's drunken friend, Kamel Hannah.\"\ntt1270262,Xa36SdTlCZE,\"Munem brings Latif Yahia to Saddam Hussein for inspection, an experience that leaves Saddam oddly reflective.\"\ntt1270262,lGVU-OuhTlw,\"Uday Hussein takes advantage of a war hero's bride, which brings Latif to the breaking point.\"\ntt1270262,P2qz2B9snxE,\"Latif Yahia attempts to assassinate his captor, Uday Hussein.\"\ntt1270262,-ZTTZtzzbmI,Latif Yahia learns the price of attempting to escape Uday Hussein.\ntt1270262,xxxnlkTZlCk,\"With his family's life at risk, Latif Yahia gives in to Uday Hussein's demand to be his body double.\"\ntt1270262,dDqhjzd8wXk,Latif Yahia undergoes extensive surgery and personality training to mirror Uday Hussein under Munem's supervision.\ntt1270262,E7CPLxlfKaw,Said Kammuneh teaches Latif Yahia the price of defying the Hussein family.\ntt1270262,QQe-fCLVBVU,\"Uday Hussein \"\"asks\"\" Latif Yahia to be his body double.\"\ntt1629705,FgIgeE7C6bU,\"Blackthorn crosses paths with his old nemesis, Mackinley, who's been living a quiet life in Bolivia.\"\ntt1629705,Ddj5oGNtezI,\"The posse catches up to Blackthorn and Eduardo, resulting in bloody violence.\"\ntt1629705,SAQN4EyLqZk,\"Blackthorn tells Eduardo about his past life as a bank robber, but what he values most is freedom and friendship.\"\ntt1629705,ffxg6IB27GM,Blackthorn is angered that Eduardo stole from the people and leaves him for the posse to find.\ntt1629705,MVZn5gTph6M,Blackthorn aka Butch Cassidy remembers what no one else ever knew - how the Sundance Kid died.\ntt1629705,fuXPZqYtnjo,Blackthorn remembers one time when he and Sundance were captured by Mackinley.\ntt1629705,_-GaobqA1LE,Blackthorn has to resolve some trust issues with Eduardo.\ntt1629705,h7i8GGtWf_E,\"Blackthorn and Eduardo get the money, but have to shoot their way out of the mine.\"\ntt1629705,XB2CUyVSAq0,Butch and Sundance are rescued by the lovely Miss Etta Place.\ntt1629705,gj2Y2uEcubE,Two members of the posse attack Blackthorn at his ranch and his beloved companion is killed.\ntt1386588,aDJgv1iARPg,Hoitz tells Gamble all the reasons he doesn't like him.\ntt1386588,XP0SZTwlmMk,Gamble and Hoitz use their inside voices during a fight at a funeral.\ntt1386588,74Od5-Fmf60,\"When Hoitz suggests they play \"\"good cop, bad cop\"\", Gamble misreads the situation and goes bananas on Ershon.\"\ntt1386588,g4FOpeshqA8,Gamble recounts the story of how he accidentally became a pimp in college.\ntt1386588,oeW9lZBY-VM,\"Gamble ridicules his wife Sheila, which gets him kicked out of the house.\"\ntt1386588,eq3vD93GgLs,\"When Gamble and Hoitz try to arrest Ershon, it goes wrong and leads to a massive shootout.\"\ntt1386588,MvkN3003iU4,Danson and Highsmith foolishly jump to their deaths during a criminal pursuit.\ntt1386588,xGeYzlEV5KY,Gamble and Sheila use Sheila's mother to talk dirty to each other.\ntt1386588,JdZHXwqDXB4,\"Gamble talks Beaman off a ledge, but unfortunately it's in the wrong direction.\"\ntt1386588,jBotZTDEcP8,Gamble and Hoitz save the day and take Ershon and Wesley into custody.\ntt1531663,A8nTO1XWlME,Nick says goodbye to Kenny.\ntt1531663,f_8dti9p0f0,Kenny confides in Nick and the two share a laugh.\ntt1531663,B0sO3FekHUU,Nick finds out about his wife's affair and confronts Frank.\ntt1531663,Ex-eX7zpZno,Nick and Kenny sell NIck's belongings at the yard sale.\ntt1531663,QGRAdMGb5tw,Nick asks Samantha what makes him any different than his neighbors.\ntt1531663,0i1ihIW8eCY,Nick stumbles upon his neighbors having some embarrassing sex.\ntt1531663,slDxIGhBuIE,Nick tells Samantha how he got into his current situation.\ntt1531663,mEv2dXzZTV0,Kenny and a patron barter over items in the yard.\ntt1531663,h9HV76Jl2WE,\"Nick meets a boy from the neighborhood, Kenny.\"\ntt1531663,4TBnG3RuU88,Nick and Kenny come to an agreement about Kenny's employment.\ntt1531663,Tanjysfo1SE,Nick returns home only to find his stuff thrown all over his lawn.\ntt0093693,a4OWkIrQUJw,Dean tricks Joanna into making them all dinner; the only problem being that she has no idea how.\ntt0093693,SM2LxRKqYR8,The sight of Grant triggers the return of Joanna's memory.\ntt0093693,dYafG2EuZjs,Joanna prances around in a thong bathing suit; Joanna and Dean get on each other's nerves.\ntt0093693,rKwnRWbuCx4,\"Dean and Annie jump overboard and swim to each other in the middle of the ocean, and Annie makes a big confession.\"\ntt0093693,YtWJKXNMmhI,\"Dean goes to the hospital to claim Joanna as his wife, \"\"Annie.\"\"\"\ntt0093693,jt2BPBAWiEQ,Dean tells Joanna off when she refuses to pay him for his construction services.\ntt0093693,j_z70ZaqWUE,\"Grant sees on the news that Annie is in the hospital with amnesia, but has second thoughts about claiming her as his wife when he is reminded of her difficult behavior.\"\ntt0093693,QPbUj6Ks8j4,Dean convinces Annie that she sleeps on the couch because of her bad back.\ntt0093693,NpzigSg-YkI,\"Dean throws a catatonic Annie into a bucket of cold water, but she still insists that she doesn't belong in this life.\"\ntt0093693,3S5E22b49-Q,Dean and the kids surprise Annie with a washing machine.\ntt0093693,12KcnPMV3OM,Billy lies to Annie in order to maintain the relationship between her and Dean.\ntt0093693,FBpzRIzISeY,Dean fools an unsatisfied Annie with doctored photos of their life together before the accident.\ntt0095684,_4juqo20ABE,Jeremy arrvies just in time to save Ralph from being killed by the vampire hunters.\ntt0095684,OosAKayGMj4,Jeremy is greeted by Mr. Blake and his wife Helen when he comes to pick up their daughter for a date.\ntt0095684,UBmxdy6C4JI,Jeremy tries to help Ralph score babes with his power of mind control.\ntt0095684,nToATRUkpMI,\"Jeremy wonders why he became a vampire, and Modoc informs him of the advantages of vampirism.\"\ntt0095684,ti3HSBmEoVU,Jeremy tries blood for the first time and embraces the vampire lifestyle.\ntt0095684,o1RMSG4bnrg,\"Jeremy tries to end things peacefully with the Professor, but is met with reluctance.\"\ntt0095684,NjfviAKKVj4,Jeremy reveals to Ralph that he got turned into a vampire.\ntt0095684,FkEU_g5u_1c,Jeremy recalls a dream he had about a mysterious girl at school.\ntt0095684,8jyiXMPl6EU,\"Jeremy is in the middle of having the night of his life with Nora, when they're interrupted by unexpected guests.\"\ntt0095684,qyXpj-yVjVg,\"While delivering groceries, Jeremy is seduced by a beautiful, but strange woman.\"\ntt0095684,L3aF2hwu8yE,The stranger that's been following Jeremy show's up in his bedroom to tell him he's become a vampire.\ntt1436432,rjLuhEOhj-I,Boomer sacrifices his life in order to stop the earthquake from spreading.\ntt1436432,h5WL8to9Gq8,\"In the aftermath of the earthquake, Amy and her family are finally reunited.\"\ntt1436432,ccJ95yYf3Ms,The tectonic weapon accidentally triggered a super volcano that starts rapidly burning everything in sight - starting with Wyoming.\ntt1436432,dYaOu80atDo,\"When an innocent family ends up in the line of fire, Amy and her team risk their lives to rescue them.\"\ntt1436432,w5WmCh-cRCA,\"While they race against the earthquake, Dan must detach the trailer from the semi truck to prevent it from exploding.\"\ntt1436432,uqA0WkLSyKI,\"Mark and Amy update each other on the status of the quake as the group flies to Boomer's mother's house in Lexington, Kentucky.\"\ntt1436432,h4XKQMfI3B0,Amy's plane tries to escape the crippling effects of the tectonic beam.\ntt1436432,OyUea4_exRU,General Banks offers Amy whatever she needs to help stop the earthquake.\ntt1436432,PIfFHypWnf4,Amy finds a survivor trapped underground and they both must run to escape an unexpected earthquake.\ntt1436432,ZJDgkjbsitw,Boomer is not ready for the surprise earthquake that occurs right after his routine demolition.\ntt1240982,NIMWmy-1l4Y,Fabious introduces Thadeous to a very creepy creature who reveals secrets to them.\ntt1240982,TFDiCTUAJuE,Fabious describes how much he loves Belladonna.\ntt1240982,FEiK98h1IDc,\"Thadeous, Fabious and Courtney attack Leezar and his witches to save Belladonna.\"\ntt1240982,XeasXb98akc,\"Thadeous threatens Isabel, but she is tougher than he thinks.\"\ntt1240982,NulXXh0cw4c,\"Leezar intrudes on Fabious' wedding and steals his bride, Belladonna.\"\ntt1240982,koWhZSL1Kwo,Thadeous obtains the Blade of Unicorn and chooses to save his friends.\ntt1240982,XuNDB-xL6uc,Leezar taunts Belladonna with his many powers.\ntt1240982,jiHXahhmzjw,Thadeous tries to seduce the lovely Isabel by the campfire.\ntt1240982,P2rpcVDPZEY,Fabious and Thadeous try to convince Isabel to travel with them.\ntt1240982,rxC2ZWU4IPo,\"Thadeous is supremely jealous of his brother, Prince Fabious.\"\ntt0087078,PdgSo4Ts7D4,\"Conan must fight Dagoth, the Dreaming God, who was brought to life by Queen Taramis.\"\ntt0087078,nqF0yFLjiXs,\"While trying to escape the temple where the Horn is kept, Akiro 'The Wizard' briefly battles another wizard.\"\ntt0087078,hEZcqWRB2iU,Conan rescues a powerful warrior named Zula at the request of Princess Jehnna.\ntt0087078,bLqJo78X3OI,Conan fights Bombaata while Zula and the others attempt to stop the sacrifice of Princess Jehnna.\ntt0087078,PLr1f84fj8U,Conan faces off against the wizard Toth-Amon.\ntt0087078,tEWLG9sG1VM,\"After Conan helps set Zula free, she requests to join his group.\"\ntt0087078,mUVup2pr_eM,\"While praying at an altar, Conan and his friend Malak are attacked.\"\ntt0087078,BDZK9B4Gu6g,\"Conan, Princess Jehnna and the others find themselves surrounded by the Guardians of the Horn.\"\ntt0087078,be9FJeol_aQ,Conan rescues Princess Jehnna who was kidnapped by a soldier when Conan's group was attacked.\ntt0087078,sLKnt2jBax4,Conan and his group stumble upon a tribe of cannibals about to eat his friend Akiro 'The Wizard'.\ntt1181791,BL312TpdPQQ,Ulric introduces Osmund to the rest of his group and explains their true mission.\ntt1181791,0dC7aMWCULU,Swire tells Langiva that he will renounce God so that he can live.\ntt1181791,Gn7MHo0ZZg8,\"Osmund, Ulric and the group come across a mob of villagers about to burn a suspected witch.\"\ntt1181791,Tg_Z2u4GShE,Dalywag refuses to renounce God and is chosen by Hob and Langiva to die first.\ntt1181791,rp07bmYWtog,\"As Langiva has Ulric prepared to be dismembered by horses, he has Osmund help reveal his dark secret.\"\ntt1181791,Bxne2K4K5GM,\"After being captured by the necromancer Langiva, Osmund, Ulric and the rest are given a choice.\"\ntt1181791,6fJ9PDZDS1M,\"Osmund hides in the cave as Ulric, Wolfstan and the rest fight off a gang of bandits.\"\ntt1181791,TfGXctZRcLg,Ulric vists Osmund after the boy finds out the girl he loved has died.\ntt1181791,ppaA4P4tr88,\"Wolfstan, Ulric and the rest of the group discover that Griff has been stricken with the plague.\"\ntt1181791,l3acfaQKSnk,Ulric leads the group into the village suspected of being run by a necromancer.\ntt1294699,6VeUp8hdqj0,Merlin uses magic to make dragons that will fight against Vendiger and his dragon army.\ntt1294699,BOKbcDdlAAc,Vendiger disguises himself as Merlin to get information from The Mage and a fight ensues.\ntt1294699,CnyvrkabX5U,Vendiger reveals that he is Merlin's brother in their fight to the death.\ntt1294699,dHaZflS9Qag,Uther leads the troops into battle against Vendiger and his dragons.\ntt1294699,T6ji12DwRQk,The Mage gives Merlin one final lesson before he dies.\ntt1294699,2CY78EjBHIY,\"When newborn baby Merlin is thought to be evil, The Mage steps in and keeps him alive.\"\ntt1294699,uV-0kDRYYbU,\"Merlin uses his magic to save the people from a dragon attack, but not before The Mage is taken out by a dragon's flame.\"\ntt1294699,cNuHBU3DIAk,Vendiger defies The Mage and Merlin gets painful visions of his true father.\ntt1294699,dbGKS4GQbv4,Merlin is healed by the magical Lady Nimue and learns that he is the son of a god.\ntt1294699,3WAg9OI2wn8,Vendiger proves he's worthy of joining an army when he demonstrates his control over dragons.\ntt0109835,klnVwzouc_k,Frank James turns himself in. Cole Younger shares where everyone ended up.\ntt0109835,wKPbi9oL5xU,Jesse James is shot in the back by Charlie and Bob Ford.\ntt0109835,4_p4EAmMa-M,\"Frank and Jesse go their separate ways. Meanwhile, Pinkerton makes a deal with Charlie and Bob Ford to bring in Frank and Jesse James.\"\ntt0109835,8oq28m4uqe8,The Gang robs the First National Bank of Northfield but they are ambushed by Pinkerton.\ntt0109835,oLJ7246t3-c,Jesse and Zee share a moment on a ferry before they are threatened by Detective Whitcher.\ntt0109835,Fdq_l2-C1wg,Jesse James goes after the Lone Rider to seek revenge.\ntt0109835,fi7cppyGPPw,The Cole Younger gang pulls their first bank robbery. Jesse James kills John Sheets.\ntt0109835,2AoKTalyiUA,\"After killing the railroad man, Jesse James and Frank James find themselves on the run again.\"\ntt0109835,ukOx2hZvXkE,The James-Younger Gang robs a train and meet Allan Pinkerton.\ntt0109835,refu69Hu5R0,\"Frank and Jesse James relax after a long day, but they cause a little trouble with Annie.\"\ntt0109835,Gbvml-bH5Uc,Lone Rider burns the James farm after they refuse to sell the land to the Rock Central Railroad.\ntt0433412,xqb_BP27cMo,\"Over some late night pizza, Ava and Henry get to know each other.\"\ntt1221208,Bcdz003oBg8,\"While having a night out, Frankie suddenly becomes someone else.\"\ntt0433412,8qWfNcUZoW8,Ava and Tanzie end up happy in their careers and in love.\ntt0433412,Ju6_z5Wx9iY,Ava and Tanzie fail miserably in their interview at an employment agency.\ntt0433412,lwB834Vz_tA,Ava and Tanzie argue with a hotel receptionist when their credit card is declined.\ntt0433412,wrRy2TR4WtM,Fabiella offers the Marchettas their every desire if they agree to a business deal.\ntt0433412,5i-LMWpJ_E0,\"Tanzie gives beauty tips in jail, while Henry helps Ava sort out the bail situation.\"\ntt0433412,bf0eKlTbGtI,Ava and Tanzie are ruined when a public scandal reveals one of their cosmetics causes permanent damage.\ntt0433412,ESv_Pi8qlE0,Ava and Tanzie quarrel just before bedtime.\ntt0433412,O4TI2Nx8RjQ,\"Ava and Tanzie meet Henry, a representative from a free legal clinic.\"\ntt0433412,LxKahh3H-3U,Tommy proposes selling the company that Ava and Tanzi Marchetta are about to inherit.\ntt0094321,Ai5tZ8_dQUU,\"When Nikki is pulled over by a cop, Louden has a heart attack and is rushed to the hospital.\"\ntt0114614,qItvl5cX4-A,\"After being captured, Tank Girl offers an \"\"oil change\"\" to the guards who watch over her.\"\ntt0114614,ZLhyjNnrb6s,Tank Girl goes head to head with with Kesslee\ntt0114614,jFQAy28o7Kc,\"T-Saint and the other Rippers morn for Deetee, after he sacrifices himself to attack the enemy stronghold.\"\ntt0114614,_XST7hft6k8,\"In celebration for their accomplished mission, Deetee recites a poem for the group.\"\ntt0114614,2MxnokvI6c0,Tank Girl is on guard duty but she fails to see the surprise attack coordinated by Water & Power.\ntt0114614,Zlqovh9U5v0,Rippers interrogate Tank Girl and Jet by gassing them to find out if they're spies.\ntt0114614,YtktNetGOKU,Tank Girl refuses Kesslee when he offers her a position in his company.\ntt0114614,Q3n3k6XRQ8s,Young Rebecca tricks Rat Face into thinking she has silver with the help of Tank Girl.\ntt0114614,Cj80JkVCCpg,Water & Power defends against a surprise attack from the Rippers.\ntt0114614,bIfMAhK7Boo,\"Kesslee has a toast with his military officers for a job well done, but he's not too pleased with Capt. Derouche.\"\ntt0094321,a46m8g3grB8,\"Nikki stops two car thieves with her animal husbandry skills, but Louden can't get rid of her fast enough.\"\ntt0094321,KUMoWS98jXM,Nikki threatens Raoul and Benny and gets them to stop following her.\ntt0094321,R6nZpcweYXw,Nikki appears at the wedding and accuses the bride's father of murder and embezzlement.\ntt0094321,1Dvx_8APGEo,Nikki and Louden ride off together in love.\ntt0094321,ebHQ50ZRvM4,Sparks fly between Nikki and Louden when they get a tour of Montgomery Bell's amorous indoor rain forest.\ntt0094321,6T_01swH-OY,A ravishing Nikki surprises Louden at Montgomery Bell's mansion.\ntt0094321,IH8u5eKHNhs,Nikki pretends to be Louden's fianc in front of the co-op board.\ntt0094321,xm2ztDqbbZE,\"Louden follows Nikki's lead to escape from some henchmen and the law, jumping from rooftop to rooftop.\"\ntt1221208,ieoN6CC-9ns,\"In her final session with Dr. Oz, Frankie opens up about her past.\"\ntt1221208,b2jnKIitsx8,\"Frankie comes back to the hospital, but she wants to be clear with Dr. Oz if they're going to continue treatment.\"\ntt1221208,6JIxbckE6MU,Dr. Oz goes looking for Frankie after she leaves the hospital.\ntt1221208,tcgo6nFJXmc,Frankie decides to continue her treatment with Dr. Oz.\ntt1221208,At_y4RGfW4g,\"Frankie struggles with her alternate identity, Alice, while putting on face cream. Dr. Oz tries to talk her through it.\"\ntt1221208,0W_kwmGYIS0,A song causes Frankie to lose control of herself.\ntt1221208,1Y11eIVNgQA,Dr. Oz tells Frankie about her schizophrenia.\ntt1221208,mBAPx0F4e4k,\"During one of their sessions, Dr. Oz meets Frankie's other personalities, a child genius and a southern white lady.\"\ntt1221208,JkC83ugjyNw,Dr. Oz sees some inconsistencies when going over Frankie's medical history.\ntt1221208,OppcXf2Vp6g,Dr. Oz tries to explain to Frankie what is happening to her.\ntt1221208,-45cXUSpOw8,Frankie meets Dr. Oz.\ntt0094321,txQcaXvbRB8,\"Louden Trott picks up Nikki Finn when she's released from prison, but it's him that gets taken on a wild ride.\"\ntt0399901,Xh8fDMTvNew,Todd reveals his feelings for Michelle.\ntt0399901,tvxi9MyoiGE,Michelle attends the church revival.\ntt0399901,VAb8s41LLCs,Michelle takes her anger out on Reggie.\ntt0399901,WOSAa_l3azw,Cassey questions Reggie about what happened to her daughter.\ntt0399901,9y7hXwrVgpY,Cassey asks Reggie for the the truth about his past.\ntt0399901,im_-maHhOew,Michelle interrupts Cassey in the prayer room.\ntt0399901,_EPtenKdrDc,Todd sits next to Michelle at the revival.\ntt0399901,-GThoBQbPjI,Young Michelle meets Reggie for the first time.\ntt0399901,ctDyR3Nosis,Young Michelle tells Cassey what Reggie did to her.\ntt0399901,OUztRf_TSHE,Cassey gives Reggie an ultimatum.\ntt0399901,VBahsJrr01E,Bishop Jakes visits Michelle in prison.\ntt0111301,sjZ5I8l32CI,\"Now a slave held in General M. Bison's private chambers, Chun-Li Zang recounts how her father was killed only for Bison to dismiss her pain in the most casual way.\"\ntt1155076,Pt6VzQ_0k_I,\"Dre faces Cheng for one last point on his bad leg, and wins.\"\ntt1155076,QhZbpE7mdoU,Dre and Meiying have a dance-off at the arcade during a fun day together.\ntt1155076,DVR6p7Iopec,Mr. Han and Dre train harder than ever in preperation for the big tournament.\ntt1155076,IvAjNuhubIM,Dre loses a point and wins two points in his fight against Cheng.\ntt1155076,G6f0w5BRasw,\"When Dre wants to quit, Mr. Han shows him how his jacket training has actually helped him learn some kung fu moves.\"\ntt1155076,5bWanpZTnSQ,\"After Mr. Han tells Dre about his family's car accident, Dre tries to help through training.\"\ntt1155076,0pRYoClF9w4,Meiying and Dre share a romantic moment at the Qixi Festival.\ntt1155076,5WT1QRZ2z6A,Master Li forces his student to break the rules and hurt Dre badly.\ntt1155076,E-wr7dD1n5w,Mr. Han takes on Cheng and his friends in order to stop them from beating up Dre.\ntt1155076,8INjmc-WWSY,\"Dre thinks kung fu training will be a breeze, but learns quickly that Mr. Han's methods are not what he expected.\"\ntt0111301,FoiZPbPUnlc,\"Colonel William F. Guile, Chun-Li, Lieutenant Cammy and the rest of the team all celebrate as they watch Bison's base fall to ruins.\"\ntt0111301,CWwcW-iuP6c,Ryu and Ken take on Sagat and his henchman Vega.\ntt0111301,FKeJtRtug4Q,\"During a raid on General M. Bison's headquarters, Colonel William F. Guile and Bison finally face off against each other.\"\ntt0111301,lPFulJcbm0c,Colonel William F. Guile finally defeats General M. Bison despite his advanced weaponry.\ntt0111301,8jIPR2QUl_k,Chun-Li attacks General M. Bison in his private chambers.\ntt0111301,CXOjc3b_FZ8,General M. Bison uses his defense systems against Colonel William F. Guile and his armored boat.\ntt0111301,hY6HUmWzaO8,Colonel William Guile is told that the invasion of Bison's base is cancelled and a ransom will be paid instead.\ntt0111301,rjc3Et5D-2w,\"Con men, Ryu Hoshi and Ken Masters, lead a prison break and seemingly kill Colonel William F. Guile in the process.\"\ntt0111301,LNPf_P9svHQ,\"Chun-Li Zang, Balrog and Honda infiltrate General M. Bison's base and blow up his weapons.\"\ntt1458175,pFXW-7VNngk,\"When John tells Laura they don't have enough time to get their son, she makes a drastic decision.\"\ntt1458175,NBY0l7A2uLA,\"John Brennan has some difficulty freeing Lara from police custody, and it only gets worse with Lt. Nabulsi hot on his trail.\"\ntt1458175,1zi4R4EklsI,\"John visits the despairing Laura in prison and tells her he believes in her innocence, no matter what she says.\"\ntt1458175,QIIE8CobvEU,\"John, Laura and Luke have escaped to Venezuela. Meanwhile, Detective Collero and Detective Quinn have an epiphany.\"\ntt1458175,QP3Pzr7UFE4,John runs into a snag when securing fake passports from Mouss.\ntt1458175,LbCGyHkR0ko,\"John tests his bump key, but runs into major trouble.\"\ntt1458175,SVQDD7TK-qA,\"Desperate for cash, John attempts to rob Alex, a drug lord, but it doesn't go like he planned.\"\ntt1458175,df2QdWqKC6Q,Damon teaches John Brennan how to break out of jail.\ntt1458175,X6keMEfkZok,\"When John brings Luke to visit his mother, in prison, she realizes the ever-increasing gulf growing between them.\"\ntt1458175,mCsu9hGvNEc,A normal morning becomes a nightmare when Lara gets arrested in front of her husband John and her son Luke.\ntt0460810,qjl77Gp88RM,The mentalist/hypnotist Buck Howard is very angry because Jay Leno bumped him from performing on The Tonight Show.\ntt0460810,xerkgvDm4Ig,\"After accomplishing a world record for mass-hypnotism, Buck Howard enjoys his new fame all over television.\"\ntt0460810,LRGzyb7-EeA,\"Buck Howard performs his biggest show in Las Vegas. During the finale when he performs a \"\"find the hidden money\"\" trick, he fails for the first time in his career to find the money.\"\ntt0460810,VeGtHpQzC6I,\"Troy has breakfast with his father to discuss Troy's career plans. Troy wants to be a writer, but his father wants him to do something more lucrative and practical.\"\ntt0460810,RPXI3xQ2aus,\"During his job as a road manager, Troy endures difficult moments with Buck Howard and his quirky behavior.\"\ntt0460810,aaaPoObIxrM,\"As part of the show's finale, Troy watches Buck Howard try to guess where money is hidden amongst the audience as part of a trick for his stage show.\"\ntt0460810,ueC2ZLsV5DI,\"Buck Howard achieves a world record for mass-hypnosis. Unfortunately, the press does not cover the event because they leave to cover a car accident elsewhere.\"\ntt0460810,dmfgNHfdn8U,\"Buck Howard performs a magic trick on the local news, but it fails, and he throws a temper tantrum from his embarassment.\"\ntt0460810,8_2tkIqD3Io,The once famous mentalist stage performer Buck Howard interviews Troy to be his road manager on his next tour of shows.\ntt0460810,pQZkA0jRiKo,\"Mr. Gable finds out that his son Troy is not attending law school, but is working as a roadie for a stage magician and hypnotist Buck Howard.\"\ntt0486358,rgd8TC1Q09g,Rachael talks about dead churches and why God isn't present in them.\ntt0486358,xXi-6s-qrQM,Levi explains how the Holy Spirit comes through him when he's preaching to a group of children.\ntt0486358,r8swYmKUGJ0,Levi explains to Becky Fischer about how he became a Christian.\ntt0486358,_Vyg1SVaZu4,Mike Papantonio speaks with Becky Fischer on his radio show about pushing Evangelical Christianity on children and the effect it has.\ntt0486358,F55uFHs0d-o,Tory explains why she enjoys Christian music as well as what she tries to represent when she dances.\ntt0486358,oP07gJASrGg,Levi's mother teaches him about global warming and Creationism based on Evangelical Christian beliefs.\ntt0486358,gSsaIqwGR1E,Mike Papantonio discusses why some children are not taught about global warming in school.\ntt0486358,YxQJTlFyebM,Rachael talks to a woman at the bowling alley about God and discusses her views of Christianity.\ntt0486358,cNMRDmf3000,\"Becky Fischer preaches to children about acting different at school versus when they are at church, calling them phonies and hypocrites, and telling them they need to be washed.\"\ntt0486358,NLfY3XAZ6c0,Mike Papantonio takes a caller on his radio show and discusses the new way religion is viewed with politics.\ntt0944835,PpxLYsi1Yk4,\"After she's arrested, Salt chokes Ted to death.\"\ntt0944835,BQl4CNHsgvc,Salt kills Orlov and destroys his training facility.\ntt0944835,ZMlGZcr95To,Salt stops Ted from launching nuclear missiles and is subsequently arrested.\ntt0944835,k7_V-3ApEiM,Orlov has Salt's husband killed in front of her to prove her loyalty.\ntt0944835,dry7kY2BMlk,\"While Salt tries to get to the President, the nuclear codes are activated and Ted reveals that he is a Russian spy.\"\ntt0944835,N_ooI6Wa0H0,Salt flashes back to her childhood and then escapes police custody.\ntt0944835,fC1zzL9DjdU,Orlov tells the CIA about an assassination plan involving a Russian spy named Salt.\ntt0944835,NY9q_Vfbi5Q,Salt shoots the Russian President before Peabody can stop her.\ntt0944835,wTGRsKLqkGM,\"Salt jumps from truck to truck on the freeway, steals a motorcycle and successfully evades the agents chasing her.\"\ntt0944835,sGLXpKnQfSs,Salt makes a missile and shoots it at the agents trying to prevent her escape.\ntt0113855,uuTeJ6tbyB4,Frustrated action star Johnny Cage is invited to Mortal Kombat.\ntt0113855,i_uA0oZ3xnI,Liu Kang is attacked by Reptile while in the Outworld.\ntt0113855,KsYil1zPabA,\"Lui Kang, Johnny Cage and Sonya Blade get into a fight with Shang Tsung's warriors only to be saved by Raiden.\"\ntt0113855,_AYtVmu9BkM,Sonya finally gets her revenge on Kano.\ntt0113855,qXKeIDlP-ys,Liu Kang accomplishes a flawless victory over Shang Tsung.\ntt0113855,YaUe_zBgQ9I,Sub-Zero challenges Liu Kang.\ntt0113855,q_v3jNjwHNQ,Johnny Cage and Scorpion engage in mortal kombat.\ntt0113855,mR0c0i1bCCM,\"Goro has a sudden fall in his fortunes, thanks to Johnny Cage.\"\ntt0113855,zuqEfWjAAEM,\"Liu Kang, Johnny Cage, Sonya Blade are welcomed to Mortal Kombat.\"\ntt0113855,xlAwSNbAY8E,\"Liu Kang, Johnny Cage and Sonya Blade meet Shang Tsung, Scorpion and Sub-Zero.\"\ntt0397044,gHluHS9kX5A,Zen continues to battle through No. 8's men until she catches up with No. 8 and throws him off the third story of a building to his death.\ntt0397044,5NuvfSWbggc,\"Zen's father, Masashi, makes it to the battle, but while he and Zen are fighting, No. 8 takes Zin hostage.\"\ntt0397044,tqTDKWhqvn4,Zen takes on No. 8's henchmen.\ntt0397044,CQ0Bt9PxosE,\"Zen takes on No. 8's son, a fighter with Tourettes syndrome.\"\ntt0397044,uKtbfkmIT-A,\"Zen fights through many of No. 8's crew, but he still takes Zin hostage.\"\ntt0397044,qPVePtS52Gc,Zen continues to use her fighting skills to collect old debts.\ntt0397044,8_4rJG5TmBg,Zen takes on a group of factory workers.\ntt0397044,N7CWWZi58bI,\"Zin goes to confront No. 8 to save Moom and try to reach a solution, bringing Zen with her.\"\ntt0397044,x_-G1IuNv-o,Zen uses her martial arts skills to collect old debts owed to her sick mother.\ntt0397044,pfPBf3mKwFc,Zen and Mang Moom create a street performance act that displays Zen's amazing reflexes.\ntt1462758,TDsPAXyCA9A,\"With little time left to live, Paul records a video for his last will and testament.\"\ntt1462758,3R7OdK-F91c,\"While Paul is on the phone with Brenner, the area where he's buried gets bombed.\"\ntt1462758,RIzrkbF1-SU,Paul gets a gruesome video of his coworker Pamela sent to his phone.\ntt1462758,9LqrBRqFxmk,\"As the coffin fills with sand, Brenner tells Paul help is on the way.\"\ntt1462758,HwZeiTzih4Y,\"As the coffin breaks, and slowly lets in sand, Paul comes to the realization that he is going to die.\"\ntt1462758,1_CfcecGCVA,\"Paul calls back a number on his phone looking for help, but the man who answers turns out to be his captor.\"\ntt1462758,bwj9ig-venA,Paul makes a ransom video to save the life of his colleague who has been kidnapped.\ntt1462758,dhNjb67EpIU,\"Paul has to deal with a surprise guest in the coffin, a snake.\"\ntt1462758,wIC34lZi_NU,Paul calls the nursing home to talk to his mom for one last time.\ntt1462758,RN-F41EZQK0,Paul gets a call from his captor and is ordered to make a ransom video.\ntt0478188,8tdYFT9BIuE,\"Just as Ed is about to be sacrificed by the natives, a giant ape attacks and spoils the cermony.\"\ntt0478188,FNX19RFNdGk,\"As the group looks for a way to re-establish communication with the mainland, Lt. Challenger must fight off a native before he can dismantle the warhead.\"\ntt0478188,DlkXnN0cENI,Ed uses the nuclear bomb to finish off the giant ape.\ntt0478188,GcgIg6HEB7E,Lt. Challenger shows Ed the only way to kill the giant ape.\ntt0478188,guEyoPzTkQw,John rushes back to the cave to save the group from a pack of killer scorpions.\ntt0478188,lHgEqIvG14k,The group is attacked by another creature of the lost world: a man eating vine.\ntt0478188,mjbU4wy8VwE,Sumerlee and Ed learn that Lt. Challenger was sent to disarm a nuclear warhead.\ntt0478188,t5nPC50ST0A,A plane crashes on a distant island where the survivors will have to deal with more than mother nature to survive.\ntt0478188,Jey2YsDSyoI,John organizes a party to find the plane's radio and search for any remaining survivors.\ntt0478188,QqmSUjxUg1M,The group finds out just how dangerous the lost world can be when they cross paths with a giant spider.\ntt0305357,EYHLDJuEUoc,\"While at a stakeout on the beach, Natalie meets the legendary Angel, Madison.\"\ntt0305357,t-t8eVDckH8,The Angels chase down a criminal in the midst of a motor bike race.\ntt0305357,bn_Df5UNy3s,The Angels do a striptease and use their powers of seduction to distract a thug and steal valuable information.\ntt0305357,XeGGNf_-nYM,The Angels investigate the history of the Thin Man at his old orphanage.\ntt0305357,jMvR4K4QICQ,The Angels take on O'Grady and his gang in a showdown for the precious rings.\ntt0305357,i6oNzS6kCR8,\"Right before Pete asks a very important question, Natalie gets trapped in a bundle of balloons and bursts into a dance routine.\"\ntt0305357,cjy-8dXBljk,Alex and the other Angels use a flame thrower to escape O'Grady's clutches.\ntt0305357,0ACTvENkyD8,The Angels defeat Madison and send her to hell.\ntt0305357,fUKoBAi7qCg,\"The Angels square off against Madison, O'Grady, and the Thin Man on an LA rooftop.\"\ntt0305357,vF-tPvPAqhQ,Madison shoots all three Angels and retrieves the rings.\ntt0338216,rpy7vhvX8jw,\"Huck asks his friend Jack, a con man behind fake 1-900 numbers, for a loan.\"\ntt0338216,9n23ISvkbFQ,\"Despite having the winning hand, Huck folds to his Dad, L.C. Cheever.\"\ntt0338216,4NGNbrLnvhA,Huck makes a bet with Ready Eddie that he can shoot a 78 for 18 holes in under three hours.\ntt0338216,6rGBqovePfY,\"At the World Series of Poker final table, Huck takes out Ralph Kaczynski\"\ntt0338216,DHnwNo7Z6Ts,\"Billie walks away from Huck after letting him know that she will never \"\"lie, cheat or steal\"\" for anyone.\"\ntt0338216,_r6i8Ae0cvo,\"Father and son, L.C. and Huck, play heads-up poker where the monetary stakes are considerably higher.\"\ntt0338216,Y0uLpcThaeU,\"Huck and Billie encounter Lester, a gambler who loves action so much he got breast implants to win a bet.\"\ntt0338216,sqZ6ZrVIemM,Huck teaches Billie how to play poker.\ntt0338216,DEcY6WXL6_Y,\"At the poker table, Huck Cheever bluffs out a Card Grabber Sharkey.\"\ntt0338216,vwbryjr2BKg,Old family rivalries emerge between Huck and his father L.C. as Huck risks his mother's ring.\ntt0104438,G9D_0pXaM68,Jack parachutes into Vegas to win Betsy back from Tommy.\ntt0104438,zjm_GqK-Kmo,Jack proposes to Betsy.\ntt0104438,BW1kpbOz5Eo,Jack is stunned to realize that he's onboard a plane with the Flying Elvises skydiving troupe.\ntt0104438,rx4sKoITt-Q,\"With Jack desperate to find his fiancee, Chief Orman shares a drink and a show tune.\"\ntt0104438,iz3ETniN1NI,Jack has trouble with the local tongue; Tommy deceives Betsy.\ntt0104438,m4SWkyqSFxM,Jack erupts at an irritating airline customer.\ntt0104438,FZlm1ledK-I,\"Jack puts everything on the line for a poker hand, but Tommy stuns him with a Queen-high straight flush.\"\ntt0104438,ElBy0fKa9Ic,\"When Betsy learns of Jack's bargain with Tommy, she melts down in the casino.\"\ntt0104438,9tli2kwH5mY,\"Parting ways for the weekend, Jack and Betsy trade heated accusations.\"\ntt0104438,T3zIklxWw44,Tommy makes Jack an indecent proposal: He'll wipe out Jack's poker debt in exchange for a weekend with Betsy.\ntt0104438,0CYdSfhwWVY,Jack's nutjob client believes his wife is sleeping with boxing champ Mike Tyson.\ntt0104438,IS-TH-YQbL8,\"As she slips away, Jack's mother expresses a dying wish: that her son will stay single forever.\"\ntt1235796,gpLzES4A7zY,\"Ondine explains that she is not a magical creature, just a very lost woman.\"\ntt1235796,ic7g820jOqI,Syracuse tells his priest that he is afraid that Ondine will bring something really good... or really bad.\ntt1235796,nzglM3ROd_8,\"Ondine teaches Annie how to be comfortable in the water, but then finds something that belongs to her.\"\ntt1235796,bp0aVPeUCrY,Ondine and Syracuse make love.\ntt0460740,6FxHQNSukfM,Ben is hired to work the night shift at Sainsbury's.\ntt1235796,dTQORe5M1tY,Syracuse is boarded by the fishery inspectors and they find Ondine hiding in the hull.\ntt1235796,H85jp6COWak,Syracuse takes Ondine fishing and once again experiences a huge haul.\ntt1235796,LFg8eGuhlak,Annie interrogates Ondine who she believes is a magical selkie from the ocean.\ntt1235796,u6YtIOaN264,Syracuse finds a beautiful woman in his fishing net.\ntt1235796,T4v_27FwSbc,Syracuse has good luck catching lobster when the mysterious woman called Ondine sings.\ntt1235796,d6N8yKrG2Ps,Syracuse confesses to his priest that he is in love with a woman from the sea.\ntt0460740,DBooQQKsDac,Ben experiences his first real break-up.\ntt0460740,czLSpZb6aWo,Ben has severe insomnia due to his breakup with Suzy.\ntt0460740,L6Z80A-avdA,Ben freezes time in his imagination and observes the people in the store.\ntt0460740,IJe-gy5sR6I,Ben shares what work is like on the night shift.\ntt0460740,AapjOgixmfQ,The guys at work meet a new employee who is a martial artist.\ntt0460740,5GZbCRzKoTQ,Ben and Sharon get to know one another and their dreams of the future.\ntt0460740,c5ZISrFKFP0,Young Ben misses his first kiss with Tanya.\ntt0460740,HHc1myygH_A,Ben draws Sharon endlessly and realizes that she loves him too.\ntt0460740,gS5vt3ZE-jI,Sharon comes to Ben's art show and realizes how much he loves her.\ntt0286716,zha1tYGnAC8,\"While Bruce Banner and his father, David Banner, are being held by the military, David reveals his inner monster.\"\ntt0286716,9j3KAnX0Nhk,Hulk appears to finally be defeated when General Ross attacks him with four well armed helicopters.\ntt0286716,qe8IY41zyCc,The Hulk comes face to face with some tanks the military has sent to stop him.\ntt0286716,NpoB6-TCGWw,The Hulk escapes from a high level military base despite the efforts of General Ross.\ntt0286716,uSZi8oPRUkE,\"While being experimented on by Talbot at a military base, Bruce transforms into the Hulk and starts destroying everything.\"\ntt0286716,5jv7TlhbjAQ,David Banner experiments on himself after seeing what his son became.\ntt0286716,uEMTQYe1ro0,The Hulk arrives at Betty's cabin to defend her from three mutant dogs that his father created.\ntt0286716,Hj9q4NlwcXo,\"While stressed and frustrated with everything going on in his life, Bruce Banner transforms into the Hulk for the first time and destroys his lab in a fit of rage.\"\ntt0286716,7ZUVMim8ebM,\"Due to an accident in the laboratory, Bruce Banner gets blasted by gamma radiation while Betty Ross watches from another room.\"\ntt0286716,YdcWFWm4n6g,\"Upon finding out that Betty is in trouble, Bruce Banner attempts to go save her but is blocked by Talbot.\"\ntt0352277,v2qDlGbaqSQ,\"Cole Porter sings his love to Linda, who is dying.\"\ntt0352277,q6j_0vS_NNM,Cole Porter listens to his song and misses Linda.\ntt0352277,NWvUNDAsYqE,Bobby Reed blackmails Linda by threatening to expose photos of Cole in a compromising position with a man.\ntt0352277,SUKdlcCiE60,Cole tries to explain his extra-marital affair.\ntt0352277,ECirl_sSf-M,Linda tells Cole that she lost the baby.\ntt0352277,mM5dRMY2u28,\"Cole Porter teaches Jack how to sing \"\"Night and Day\"\" with the passion behind its inspiration.\"\ntt0352277,aiJtAU0V_60,Cole and Linda talk about happiness and intimacy.\ntt0352277,UkH65BsZg_g,Cole Porter sings his love for Linda on a date in Paris.\ntt0352277,Oui5yj3OvxQ,Cole Porter rehearses and puts on one of his biggest hits.\ntt0077294,fQEGMNLTYPs,Brubaker and Caulfield are chased by the black helicopters through the desert.\ntt0077294,AZ0AsuZu4ds,\"Dr. Kelloway explains to the astronauts how big the conspiracy has gotten, and threatens their families if they refuse to comply.\"\ntt0077294,jPH8I5QWFUU,\"As the military agents attempt to capture Brubaker, Caulfield rushes to rescue him.\"\ntt0077294,S9EIFSWUoOc,Caulfield tries to hire the fiery Albain to search the surrounding area.\ntt0077294,35FF7e1-zCg,Caulfield tries to explain to his editor that he's on the verge of a big scoop.\ntt0077294,aVHgGXnna94,Charles and the other astronauts make their escape after realizing the world believes they are dead.\ntt0077294,ok6H1OFTmyA,Willis recounts an old joke while climbing up the rock face.\ntt0077294,d5Pc-tNsvT4,The astronauts are quickly taken off Capricorn One minutes before launch.\ntt0077294,Vx3I6XjqCho,\"As Caulfield is driving down the street, he loses control of his car when the breaks stop working and the car won't stop gaining speed.\"\ntt0077294,UDq-H6B36g8,Dr. Kelloway reveals the Mars landing studio to the astronauts and explains the cover-up.\ntt0077294,2LhsuPLvtFk,Brubaker and his fellow astronauts fake the Mars landing while the world watches on.\ntt0055031,o9dLO77OSao,Hans Rolfe & Col. Lawson argue. Col. Lawson objects to the line of questioning.\ntt0055031,TyS98_jQIA0,Judge Haywood prepares to give his verdict.\ntt0055031,jRSw_0zpNE8,Dr. Janning and Judge Haywood speak after the trial verdict.\ntt0055031,SfMSiaxLslA,Hans Rolfe claims Dr. Janning stayed in his position of power to prevent worse things from happening.\ntt0055031,ptJ8x9AERwA,E. Hahn & F. Hofstetter defend themselves claiming to have upheld the law as it was written.\ntt0055031,lbqDuUjm4aU,\"Hans Rolfe argues that anyone who ever supported, praised, or profited by Hitler is guilty, not only Germany alone.\"\ntt0055031,9_yf1HCH5CY,Dr. Wieck explains the changes made to the German judicial system.\ntt0055031,ALfuWSv9YVc,\"Dr. Janning explains how the German people did what they did, believing it was temporary.\"\ntt0055031,4HB9b-ttI3I,Judge Haywood is shown his lavish apartment by Captain Byers and tries to downplay formality from his subordinates.\ntt0055031,di3Xh95aXp8,The prosecution gives its opening statement about the atrocities of the accused.\ntt0055031,WfCufFRo-hU,German judges are in disbelief that they could have condemned so many to die. Pohl explains how the Nazis killed millions.\ntt0053946,TSCcj7mYuhc,Drummond examines a student and pursues a line of questioning to show that an individual's very right to think is being threatened.\ntt0053946,v757jrOBkng,\"When Hornbeck calls Drummond a hypocrite for believing in God, Drummond rips into him for believing in nothing.\"\ntt0053946,FRhbIIkLlFI,\"Brady gives his impassioned speech, but no one listens. As he finishes the speech, he drops dead.\"\ntt0053946,3l3rJxuxpDo,\"In the privacy of his home, Brady breaks down to Sarah.\"\ntt0053946,EsTniU7j_yw,\"Drummond debates Brady on man's power of reason, and therefore, his privilege to think.\"\ntt0053946,8YUnOHihAU0,\"When Drummond makes an impassioned plea to the court to stand up against fanaticism and ignorance, he is held in contempt of court.\"\ntt0053946,oqQGFh5yiWE,\"A guilty verdict is delivered and the sentence is $100. Brady wants to read his speech, but the court is adjourned.\"\ntt0053946,IYfuTlTiixA,\"Drummond belittles Brady with his own words, making him look prideful and foolish.\"\ntt0053946,FQLXXM-nktc,\"In a highly irregular move, Drummond calls Brady to the stand as a witness for the defense.\"\ntt0053946,nepc-GLWtfc,Drummond excuses a potential juror who makes no attempt to hide his personal bias.\ntt0053946,FYDEheLGrKw,\"Drummond arrives in Hillsboro and meets his old friend, Brady, who he will soon be fighting in court.\"\ntt0053946,vYtc_bS47oM,Cates is arrested in front of his class for teaching evolution.\ntt0061418,xjdKPS6-8XU,Bonnie reads a poem to Clyde that she wrote about the two of them and their crime spree.\ntt0061418,21b9Nr4VIcI,Clyde leads the now complete Barrow gang on a bank robbery.\ntt0061418,IL-_pNnEuk8,The Barrow Gang takes a young couple hostage and gets friendly with them.\ntt0061418,wjVPv5aO_no,The police ambush the Barrow Gang hideout and Blanche flips out.\ntt0061418,2GM0LKQ-ml0,Bonnie Parker and Clyde Barrow show compassion to a farmer who lost his property to the banks.\ntt0061418,Pb1N5TcA5to,Bonnie and Clyde rob a bank and C.W. Moss makes a stupid move and parks the getaway car while waiting for them.\ntt0061418,SLC0omm3N98,Bonnie and Clyde recruit C.W. Moss into the Barrow gang.\ntt0061418,FS3hFDdeX30,Bonnie Parker is having a restless afternoon until she catches Clyde Barrow trying to steal her Mama's car.\ntt0061418,9smHLhj75CU,\"Bonnie Parker pressures Clyde Barrow to prove his \"\"gumption\"\" by robbing a grocery store.\"\ntt0062765,h7NG9ZEfyKo,The real Ross jumps out of his airplane and Bullitt chases him around the tarmac.\ntt0062765,tRx8N7mJU9g,Bullitt barely makes it out alive during this dangerous high-speed car chase between his 1968 Ford Mustang GT and the 1968 Dodge Charger R/T being driven by the hitmen.\ntt0062765,t-5usV6m4J4,\"Ross defies his witness protection rules by letting in a bad guy and gets shot, along with Stanton, the officer protecting him.\"\ntt0062765,sWCQm58jJsk,Chalmers grills Bullitt about his apparent failure with the witness protection job.\ntt0062765,ik-n-L9UNTY,Bullitt chases someone who might be out to kill Ross.\ntt0062765,0xHe1zkABYo,Chalmers tries one last time to convince Bullitt that this situation could make their careers.\ntt0062765,Ovyfd29a1ik,Bullitt is forced to give up the whereabouts of the dead star witness.\ntt0062765,cWiljyh4NR4,Cathy wonders aloud how the violent nature of Bullitt's job will affect their relationship.\ntt0062765,no7XR7s8Z7o,\"Bullitt refuses to back down when the Charger trying to follow him takes it up a notch, leading to a chase through the streets of San Francisco.\"\ntt0062765,MmtvzIGaH1I,Bullitt has to shoot the real Ross as he flees the airport.\ntt0032599,GrCmVFX9tyQ,\"Earl appears at the press room and pulls a gun on Hildy, who disarms him and talks him down.\"\ntt0032599,x-_17t-v9dA,\"When the reprieve arrives, Walter and Hildy are exonerated.\"\ntt0032599,_4EkJkuiwIg,Mrs. Baldwin returns to accuse Walter and Hildy of harboring a fugitive.\ntt0233277,OPuOk309lSE,\"After being rejected by Lizzie, Stephen is heartbroken. Geradline manipulates him into stealing the key to the Secret Garden.\"\ntt0032599,9tHwS5Ymvag,Hildy calls Walter with the story of the prison break.\ntt0032599,WsaXEsBV6b4,Hildy calls Walter to tear up her interview and bid farewell to the newspaper game.\ntt0032599,rz2FxTVVJi4,Walter convinces Hildy to stay in town and finish the story.\ntt0032599,e5cg1EeFISo,Walter hires a poet just to keep him out of the press room.\ntt0032599,m8lzyaMZ-mA,Walter and Hildy reunite several months after their divorce.\ntt0233277,sbIfW_Pf9vk,\"While having a tea lesson in the Secret Garden, Lizzie is taunted by Robert.\"\ntt0032599,FN3SPnr9EZg,Hildy introduces Walter to her fiancee Bruce.\ntt0032599,Eom_iOkd0-I,Walter joins Hildy and Bruce for lunch.\ntt0032599,gA3wJRuClks,Hildy bribes her way into a jailhouse interview with convicted murderer Earl and convinces him to change his testimony.\ntt0032599,v8UDjwdqzKY,Hildy breaks the news to Walter that she's getting married tomorrow.\ntt0109279,V32SkmBB1KU,\"While at a fair, Joe recognizes his old friend Beauty.\"\ntt0109279,cBFrfA6TrB0,\"While working, Beauty sees Ginger, who is also a cab horse. Little does he know, it is the last time.\"\ntt0109279,iga0_T5B8dU,\"Lady Wexmire forces Beauty and Ginger to wear painful bearing reins. Until one day, Ginger has enough.\"\ntt0109279,SXVUCgoOcfs,Black Beauty and Ginger are caught in a stable fire. Thankfully Joe arrives to save the day.\ntt0109279,V-mlZvBRoOQ,\"After being sold to Jerry Barker, Beauty finds hope and kindness in the Barker family.\"\ntt0233277,VZM1S9VcjAM,Lady Mary meets Lizzie Buscana and tries to convince her to come to England.\ntt0109279,zeV1-Ito9HM,\"Joe leaves Beauty and Ginger at their new home, Earshall Park, with a tearful goodbye.\"\ntt0233277,gQ5KDSBMFRU,\"When Martha realizes that Lizzie can see the secret door, she gives the key to the Secret Garden to Lizzie.\"\ntt0109279,Km2lbJKGAqA,\"Due to Mistress Gordon's ailing health, the Gordons must move and say goodbye to Beauty and John.\"\ntt0109279,tkWWtYRbnq8,\"With the help of oats, Farmer Grey starts training a reluctant Black Beauty to be ridden.\"\ntt0109279,Go55LztXeQA,\"Black Beauty, Manly and Gordon run into trouble on a bridge coming home from town.\"\ntt0109279,q5RSKejDWo8,\"Beauty meets his new family, Squire and Mistress Gordon.\"\ntt0233277,xcc3vzgR9QQ,\"After Lady Mary leaves the key to the Secret Garden with Martha, Martha becomes quite distraught when she can't find the door.\"\ntt0233277,s3mwDA8sv8I,Lizzie helps Ms. Sowerby remember the fact that the Secret Garden in fact is a children's garden.\ntt0233277,DV5EHuaa23c,Robert makes fun of Lizzie and her affection for the Secret Garden.\ntt0233277,tD9DfbbK6OE,Lizzie lets all the other children play in the Secret Garden.\ntt0233277,w-6lVMklaKY,\"When coming back from the Secret Garden, Lizzie sees a fire in Robert's bedroom.\"\ntt0233277,QqQYNj15OfI,Lizzie finds out that Steven threw the key to the Secret Garden in the lake.\ntt0233277,rNP5uIQxAfY,Lizzie taunts Robert about sneaking into the Secret Garden. She also recieves a package from Lady Mary containing a clipping of her mother's roses.\ntt0233277,ulALOA2LeNw,Lizzie breaks into the Secret Garden at night only to see that it's dying.\ntt1895587,AH4E6mdxZDw,Phil Saviano is frustrated with Robby and the team for not covering the priest abuse epidemic enough in the newspaper.\ntt1895587,csRJ-T2LNI0,The priest story is a great success and the spotlight team gets tons of calls from victims coming forward about their abuse.\ntt1895587,4pUi3hbXF2c,Mike is furious when Robby decides to wait longer before pushing the story.\ntt1895587,5Abq-DZrjB0,Mike jumps through hoops to access public records on the Geoghan case and then reads the damning files to Robby.\ntt1895587,8ilbyubEDhM,Garabedian tells Mike about public confession documents that the church has hidden.\ntt1895587,ogW6YDmEb1M,\"Robby looks for answers at his old high school about alleged abuse claims, but Jack and Pete seem to want to keep things quiet.\"\ntt1895587,k60eGmxn7Rk,The team interviews Sipe and learns that there are probably 90 priests abusing children in Boston alone.\ntt1895587,CW2M1ZyYArk,\"When Matty and Sacha interview abuse victims, Sacha gets an oddly casual confession out of Father Paquin.\"\ntt1895587,f5RQrcIrlBA,Patrick and Joe relive painful memories of the abuse they received from priests.\ntt1895587,kGQbCYm2kx4,Mike interviews Patrick and Sacha interviews Joe about the abuse they received from priests.\ntt1024648,d9TdwetEIQ8,\"Iranian soldiers chase the airplane containing the six Americans, but the plane takes off and the Americans successfully escape.\"\ntt1024648,79WfcpXDbg4,\"At the last checkpoint at the airport, Iranian officials question the six Americans about Argo and ultimately let them go after confirming the film with Chambers.\"\ntt1024648,EqFFgltjVbg,The CIA rushes to approve Tony's flight reservations for the six Americans.\ntt1024648,BleQjp9zglY,\"Jack scrambles to get the Argo operation underway again after Tony informs him of his intent to proceed, against direct orders to the contrary.\"\ntt1024648,t2NytKIhd68,\"When the six Americans pose as Canadians at the bazaar, tensions run high amongst the Iranians. Meanwhile, the Canadian embassy maid Sahar is questioned.\"\ntt1024648,5A98txE5nno,The CIA grants Tony's proposal to proceed with Argo and Tony gets dropped off at the airport on his way to Iran.\ntt1024648,PiMWCFay_sE,Tony discovers the script for Argo and Lester works on convincing Max to give him the option for it.\ntt1024648,Td_5-DJdFQM,\"When Iranian protestors take Americans as hostages, six escape the embassy.\"\ntt1024648,8j4k-10bZC0,\"A riot occurs outside the United States embassy in Tehran and when the protestors break through the gate, the Americans inside are worried for their safety.\"\ntt0810819,5qKySTAWpiY,\"After a difficult and lonely night, Gerda begs Lili to bring back Einar.\"\ntt0810819,8Cyv7f65bbY,The doctor prepares Lili for her last surgery and Gerda wishes her luck.\ntt0810819,PXMASW5YQl8,\"Lili is finally a woman after her vaginoplasty, but dies due to complications from surgery.\"\ntt0810819,C-FH-TOuFpQ,Einar tells Gerda about his affair with Henrik.\ntt0810819,JyEYiaZW3Ok,\"Lili introduces herself to Hans, who was expecting to see Einar.\"\ntt0810819,TSclZRaacyA,\"Dr. Hexler tries to treat Einar, but comes to the conclusion that he is insane.\"\ntt0810819,ejD-W0F0hr8,Einar poses as a woman for Gerda's portrait.\ntt0810819,8p6L3Vl8ezA,Lili gets a nosebleed after kissing Henrik at a party and Gerda helps get her out.\ntt0810819,2hcGeToc17I,\"Gerda helps Einar prepare for a party, at which he will be posing as a woman.\"\ntt0810819,5Ackdv3pgmU,Lili is disturbed when she finds out that Henrik knows she is Einar.\ntt0048545,Uk1MJFwGMjI,\"Jim lures Plato out of the planetarium, but the police shoot him before they find out the gun isn't loaded.\"\ntt0048545,ntnqp7-SG7k,Judy apologizes to Jim for her behavior.\ntt0048545,1AlMY9fDHu0,Jim participates in the Chickie-Run against Buzz and Buzz loses.\ntt0048545,7014C_6ABAg,Jim confronts his mother about her excuses and demands that his Dad stand up for him.\ntt0048545,_RHrQlqoTTA,Jim is ashamed of his father and Judy doesn't understand why her father doesn't want her to kiss him anymore.\ntt0048545,vJv647j5Ig4,Jim and Buzz get into a knife fight at the planetarium.\ntt0048545,hoKvbJSMShA,\"Jim offers to give Judy a ride to school, but she declines and goes with her friends instead.\"\ntt0048545,_EpizUY_las,Jim confides in the police chief about his embarrassment for his father's passive behavior.\ntt0048545,UBOcWFBBB04,Jim is fed up with his parents' constant fighting.\ntt0048545,8JhRzlsZPas,Judy cries to the police chief about her cruel father and why she was wandering around at one o'clock in the morning.\ntt0049730,dc8glsGbIus,Ethan and the rangers engage in a shootout with Scar and his tribe.\ntt0049730,jTz_VNAGqog,Martin mistakenly buys a Native American wife.\ntt0049730,8Wgkpfa5HMw,Ethan and Martin discover the horrific aftermath of a Native American raid on the Edwards family.\ntt0049730,S6iFW-HoFwc,\"When Ethan shares the terrible news that he found Lucy's body, Brad rides into the desert and gets himself killed.\"\ntt0049730,KAByPJJecxQ,\"When Debbie comes to Martin in the desert, he must protect her from Ethan. Then, they are ambushed by Native Americans and Debbie is recaptured.\"\ntt0049730,99IRJoGX238,Martin and Charlie come to blows over their love for Laurie.\ntt0049730,rZpeepxXh7I,Ethan shoots out the eyes of a Native American corpse.\ntt0049730,5_j3NrcDiS4,\"After many years away, Ethan returns home to his family.\"\ntt0049730,KvfIsbhIQLA,\"Ethan carries Debbie home to the Jorgensen's ranch, but does not enter himself, choosing instead to wander back on the frontier.\"\ntt0049730,IC-u2-aQXS4,\"Martin, Ethan, and the other rangers rescue Debbie from her Native American captors.\"\ntt0475290,xKaCxkf1Ccs,\"Hobie keeps Carlotta entertained on their night out together, until they run into the Thacker sisters.\"\ntt0475290,S64LeYg3Tg4,\"After getting advice from his priest, Eddie decides to keep working in the movie business.\"\ntt0475290,G629a_3MkkI,Laurence tries to teach Hobie how to act in his scene.\ntt0475290,N9v6VJLZ8_I,\"Baird tries to give an outstanding performance, but messes up on a line.\"\ntt0475290,uSMxnpecSZM,Burt performs in a musical number about going out to sea with his sailor pals.\ntt0475290,mqhpZ30uNic,Burt catches a submarine back home and his Communist supporters offer their ransom money up for the communist cause.\ntt0475290,Rpt-fbpiTU8,\"Baird tells his communist story to Eddie, who slaps some sense into Baird and sets him straight.\"\ntt0475290,TtALqoM5hkY,\"At the filming of her water ballet, Eddie gives DeeAnna some PR advice on getting married before she has her baby.\"\ntt0475290,UbwxGgR-EAM,\"DeeAnna flirts with Joe, the professional helping her conceal her pregnancy.\"\ntt0475290,8YQZMbgpmIo,Baird learns about the communist agenda behind his kidnapping.\ntt3203606,IXSNWvdkkic,Trumbo meets John Wayne while handing out leaflets on American rights and their ideologies collide.\ntt3203606,bubK4ybEy-Y,Trumbo announces that he is Robert Rich and that the HUAC's blacklist has done nothing helpful.\ntt3203606,apJLTO5T430,\"Roy threatens Frank on behalf of the Motion Picture Alliance, but Frank just threatens him back.\"\ntt3203606,SUVN09kOsAo,Hedda reveals that Buddy named names in front of HUAC and that Trumbo was one of those names.\ntt3203606,5AstACoPo9w,Trumbo and Arlen testify before the House Un-American Activities Committee.\ntt3203606,0dGLAOaTgyw,Trumbo remembers the blacklist in his acceptance speech for a WGA award.\ntt3203606,COy16bTI_zE,\"When \"\"The Brave One\"\" wins an Academy Award, everyone starts asking if Trumbo owns the mysterious Robert Rich pseudonym.\"\ntt3203606,nTs76MbxqEM,\"Hedda encourages a boycott of the movie \"\"Spartacus\"\" after Kirk announces Trumbo is the writer, but people see the film anyway and it looks as if the blacklist is over.\"\ntt3203606,vwrWW26_JHY,Trumbo offers to write movies for the King brothers under a false name.\ntt3203606,ssS5S_E37G8,\"After Trumbo returns Eddie's money, Eddie tries to explain why he betrayed Trumbo and the others in front of the HUAC.\"\ntt0033467,Y4XiKFvQ1rM,\"Kane's political opponent, Gettys, tries to blackmail him out of the race for Governor.\"\ntt0033467,ttTyXqwsP0o,\"Kane speaks at a political rally, assured of his eminent victory, but unaware that his opponent has schemed to blackmail him into dropping out of the gubernatorial race.\"\ntt0033467,oqquLzHmH5k,\"A drunk Jedediah Leland confronts Kane on his self-centeredness, the day he loses the gubernatorial election because of his extramarital affair.\"\ntt0033467,FSj-BCOlGPY,\"Kane trashes his wife's room after she leaves him. During the destruction, he finds something that he lost long ago.\"\ntt0033467,z9OUZNicTGU,Kane stands up to Thatcher when he tries to tell him how to run the Inquirer.\ntt0033467,2LX27W51kB0,\"Kane's Mother signs over guardianship of her son to the bank, despite his Father's protests.\"\ntt0033467,BFSjHBVx-xk,\"On his deathbed, Kane utters his last words, \"\"Rosebud.\"\"\"\ntt0033467,3v-e25d34pY,\"Kane finds Jedediah Leland passed-out drunk at his type-writer, in the middle of his negative review of Kane's wife's operatic debut. Kane decides to finish the notice, just the way Leland started it.\"\ntt0033467,Rfl2M8B9WA8,\"The marriage of Kane and his wife, Emily evolves and grows cold over a series of breakfast conversations.\"\ntt0033467,fr93wwtiKQM,\"Before \"\"Rosebud\"\" is finally revealed, Thompson muses that discovering the truth behind \"\"Rosebud\"\" would not have explained anything about Kane.\"\ntt1790885,GfBsuOuUdoI,Terrorists in Pakistan shoot at Maya as she tries to leave her home.\ntt1790885,ijjYDSqZOyA,\"During a casual dinner at a hotel in Islamabad, Maya and Jessica are involved in a bomb attack.\"\ntt1790885,YXFkCH90yYQ,SEAL Team Six secures the target and takes down Osama Bin Laden.\ntt1790885,nq33k1fFyK0,\"While hanging around the military base with Justin and the rest of SEAL Team Six, Maya gets the call that the assassination raid is a go.\"\ntt1790885,NgLepPDh5tY,Maya gets confirmation that the target she has been chasing for so many years is finally dead.\ntt1790885,DsSvkC4X4Ko,Dan uses controversial techniques to try to gain intelligence information from Ammar.\ntt1790885,2ZO0CFb3eys,Maya confronts CIA supervisor Joseph Bradley.\ntt1790885,HdbL45I6VqM,Maya briefs SEAL Team Six on their operation.\ntt1790885,qiDGtIbWRVY,CIA Officer George voices his frustration with the intelligence team's failure.\ntt1790885,2rJqM-hodGQ,Maya's friend and colleague Jessica is killed in a bombing at the Camp Chapman military base.\ntt2456594,HrYK4U_a6y8,\"As the group gets closer to the home of the Rock Men, they come to find the trail is full of hazards and heartaches.\"\ntt2456594,Wla8a89Vm8I,Amthar leads his fellow humans in the battle against the Rock Men.\ntt2456594,n0Cg6MnUw20,Tak Tek comes to Varm's rescue when a giant spider attacks the party.\ntt2456594,IZ-VZCROw_4,\"Amthar is wounded when doing battle with the Rock Men's giant, poisonous, lizard.\"\ntt2456594,KCg0cDrNQvo,\"Just as Tak Teck is about to be sacrificed to the Rock Men's gods, Amthar arrives to save his friend.\"\ntt2456594,Bjcu7KBoaNg,\"While the family tries to escape from their ransacked village, Suta is abducted by the Rock Men.\"\ntt2456594,bCD25qkPSwQ,Varm makes the ultimate sacrifce while defending Omi from the dragons.\ntt2456594,Pt2wNC6SYnE,Tak Tek tries to reunite his family while his village is under attack from the Rock Men.\ntt2456594,YXzjSJDDRIc,Tak Tek helps save Amthar and his huntering party from an ancient rhino beast.\ntt2456594,l_ZRivM0lSY,\"While human reinforcements arrive to battle the Rock Men, Tak Tek searches for a way to save his wife.\"\ntt4438848,1ccMqOW6LMs,\"After Kappa Nu kicks him out, Teddy decides to switch sides and help the Radners fight their sorority neighbors.\"\ntt4438848,MQ1E_qYia9Q,\"Just as the sorority's about to split, Kelly helps encourage the girls to stay strong and fight for themselves. Then, Paula gets strong evidence that the baby is indeed coming.\"\ntt4438848,nCWBxPh4dGo,Mac is chased throughout the tailgate by Kappa Nu after stealing their weed.\ntt4438848,dZb8CGMC1zA,Teddy and Mac try to escape the garage after getting locked in by Shelby.\ntt4438848,h6iHbAju1cI,Mac and Kelly try to keep appearances perfect as they try to sell their house to another young couple.\ntt4438848,ItHtrNSJwDo,\"When Mac goes missing, Kelly goes to extremes to find him.\"\ntt4438848,uta8BACjLNk,\"Seemingly out of options, the girls turn to Teddy to help them create their sorority.\"\ntt4438848,pikAt8prREE,\"While the guys catch up over a poker game, Pete gets a surprise proposal from his boyfriend Darren.\"\ntt4438848,9C0B94fFZkQ,Kappa Nu decides to get revenge on Mac and Kelly after they call Shelby's parents.\ntt4438848,h5D7aOzmDec,\"In order to give Mac enough time to steal Kappa Nu's weed, Teddy does a dance to distract the girls.\"\ntt1971352,7lL9YOO31Ig,\"Sandra and Becky are questioned by Officer Daniels over the phone, but Becky maintains her innocence.\"\ntt1971352,Fu82oMZobYQ,Officer Daniels makes Sandra get a male employee to provide security until the police arrive.\ntt1971352,VZRUqjnEPSk,Officer Daniels orders Kevin to do a cavity search on the nude Becky.\ntt1971352,fyl1lmsVuQU,Officer Daniels tells Sandra's fiance Van that he must assist him in searching the nude Becky.\ntt1971352,GcVogDQ4VBY,Officer Daniels almost loses his phone connection when his card expires.\ntt1971352,0v4aJAsXjCA,\"When Harold refuses Officer Daniels' strange requests, Sandra realizes that she has been duped.\"\ntt1971352,22hhTrBAFRA,Sandra makes Becky strip off her clothes to find the stolen money.\ntt1971352,T-OmaEI2xrs,Sandra is interviewed by tv reporter about her actions during the ordeal.\ntt1971352,W2gWVhYRyXI,Officer Daniels orders Van to spank Becky for insubordination.\ntt1971352,AC2swLcXfwQ,Officer Daniels threatens Becky with jail if she doesn't agree to have Van inspect her nude body.\ntt0100935,w_e5kx3ONfs,Sailor meets the Good Witch and gets some sage advice.\ntt0100935,ZpmCdIS3TKc,\"Lula bets Sailor not to leave her, but he knows he has to go.\"\ntt0100935,n2YCseaZK0Q,Sailor and Lula have an off-putting meeting with Bobby Peru.\ntt0100935,kZz5k_xsG0Q,Bobby tricks Sailor by putting fake bullets in his gun in an attempt to kill him.\ntt0100935,KnPfaGzmt4M,Sailor and Marietta have it out in a bathroom stall when she tries to keep him away from Lula.\ntt0100935,v_lHiT6UVCE,Bobby terrorizes Lula but backs off at the last minute.\ntt0100935,aEfAFo99jEs,\"Unable to find the words to tell Sailor, Lula writes a confession on a piece of paper and gives it to him.\"\ntt0100935,alYZ8jQ5L3A,Marietta remembers being rejected by Sailor during a conversation with Johnnie.\ntt0100935,melCNhYmwII,\"Marietta forbids her daughter Lula from seeing Sailor, but Lula rebels and picks him up from jail.\"\ntt0100935,1y7cZSWu93k,Lula tells Sailor the frightening story of a man named Jingle Dell.\ntt0100935,FtPj029E3Qk,Marietta hires Santos to kill Sailor.\ntt0056193,PZeVTlloWxw,Lolita flirts with Humbert and invites him to play a game with her.\ntt0056193,3SKk58UngIk,Humbert becomes overwhelmingly infatuated by Lolita.\ntt0056193,lMXVWQCa_MY,\"After attempting to kill Charlotte, Humbert finds that Charlotte has found his diary.\"\ntt0056193,UfoHq1-vpss,Quilty poses as the school psychologist and convinces Humbert to allow Lolita to take part in the school play.\ntt0056193,4k1Vx0equfE,\"Although indifferent to his wife's death, Humbert is consoled by his neighbors.\"\ntt0056193,6zfXkQ5QkrE,Humbert shows his jealous side when he interrogates Lolita about her activities outside of the house.\ntt0056193,5ODDHpmqyWE,\"Humbert reads the note Charlotte left for him, professing her love for him.\"\ntt0056193,wIb3cRvQYw8,Quilty pretends to be a police officer and proceeds to have an awkward conversation with Humbert.\ntt0056193,lHqGIe8AZ1g,\"Charlotte gives a tour of her home to a possible tenant, Humbert, and introduces him to her daughter Lolita.\"\ntt0056193,VRXkf4--IXw,\"Humbert tries to kill Quilty, but Quilty insists on a round of ping pong.\"\ntt4530832,k6kWvjAJHh4,Dallas and his crew face off with Reaver and his crew.\ntt4530832,MHyA5fJ18HA,After testing Kevin the group learns that Thorne is infected - and Orsini infected him.\ntt4530832,ihJ8mtOVfmM,The camp discovers that Nakada has been endangering everyone by hiding her zombie boyfriend.\ntt4530832,PSjEQHBkcq4,\"Although Thorne tries to surrender, nearly everyone gets killed in a standoff between the infected and the uninfected.\"\ntt4530832,l0PUssYO5A8,Dirk dies in a zombie attack while thieves attempt to steal the group's car.\ntt4530832,2WgBKaFO7wk,Nakada makes Macon drink water to prove she's not a zombie.\ntt4530832,iCmT0IRM9Z0,Macon and Dirk come across an amnesiac in the desert and turn him over to their leader.\ntt4530832,uJw5rPEUblc,Nakada must kill her boyfriend Kevin when he gets bitten by a zombie.\ntt4530832,buDmlhm8mKE,Dallas talks about the virus and Thorne's potential immunity.\ntt4530832,3fotxrK_Spg,Orsini is chased down and captured by road warriors.\ntt1232829,5qWIaxikcbc,Schmidt and Jenko must shoot through the One-Percenters to rescue Molly and catch the bad guys.\ntt1232829,92WjYrR0PEA,Schmidt has to take desperate measures when his cover is almost blown by Phyllis.\ntt1232829,ZE5ddEN5Nbk,Schmidt and Jenko struggle to adapt to the changes of high school on their first day.\ntt1232829,UuuzF8Pyh0s,Schmidt and Jenko chase down Mr. Walters and the One-Percenters.\ntt1232829,k7oRzwLIgbo,Schmidt is forced to confront his anxieties when he has Mr. Walters in his sights.\ntt1232829,7OsEWB35fPE,\"After forgetting to read the perp his Miranda rights, Schmidt and Jenko are reassigned to a revived undercover police program.\"\ntt1232829,iwZN1N7Denc,\"After being forced to ingest HFS, Schmidt and Jenko try to help each other remove the drug from their systems.\"\ntt1232829,nC2HOMOxdkY,Schmidt and Jenko chase after the One Percenters after finding drugs in their bag.\ntt1232829,C2JaJ_FLYiM,Schmidt and Jenko report to 21 Jump Street where they meet their new Captain and learn of their upcoming duties.\ntt1232829,5AQC5oeDhDg,HFS starts to kick in as the guys are stopped by Mr. Walters on their way back to class.\ntt3534282,LRc6Awco5aU,Don tricks Carol and Boaz into believing they have discovered the Skull of Goliath.\ntt3534282,N_3_HB0AfdY,Boaz finds out that Don fabricated the discovery of the Skull of Goliath.\ntt3534282,G3TWgClyD9E,\"Boaz and Don are finally arrested for all of their deception. Before he is taken in, Don professes his love to Carol.\"\ntt3534282,0GYwcr3RD_k,Pastor Fontaine preaches to his congregation about the evils of breakfast cereal.\ntt3534282,vTTzWRdAN4M,\"Don uses ridiculous tactics to try to locate the Skull of Goliath, and ends up hitting Carol in a very sensitive spot.\"\ntt3534282,-7mzQx0ebqk,\"When Don unveils the fake Skull of Goliath to the press, Boaz convinces him to lie even further.\"\ntt3534282,0tq44zxA0Ao,\"Boaz attempts to seduce Carol on a date, but things go wrong when she mentions that she has a son.\"\ntt3534282,ThdpcnGKsVY,Don and Boaz trick Poon-Yen into believing he has found the Holy Grail.\ntt3534282,r8uOQupi1iQ,\"Don and Boaz continue to deceive Poon-Yen by making him believe they are being shot at. Then, one of them takes a bullet for real.\"\ntt3534282,lRpBlNgu8j4,\"Don and Tony unveil their discovery to the congregation of the church, a statue they claim is Lot's wife.\"\ntt3457734,LpDRf3h6OHw,Harper and Allie get kicked out of a car when the driver learns who Harper's father is.\ntt3457734,egrmjjy2Pgo,Allie informs Ebb that she will not be returning his bicycle.\ntt3457734,Zle2EnAj0Ms,Harper confesses their kitten abandonment to the police and writes a check to the stranger driving the car.\ntt3457734,QCsjm6QI4WM,\"Allie asks to borrow a car from her friend Marin, but it turns out Marin's car is vandalized.\"\ntt3457734,088CLxgnr8w,Allie breaks down when Harper gets on her last nerve.\ntt3457734,OliOEVSIsmY,Allie accidentally hits a baby stroller with her bike while riding through a Brooklyn neighborhood.\ntt3457734,xqmqskVELNs,Harper and Allie sit through a bad performance their friends put on.\ntt3457734,bGXeYGkiQDo,Harper talks to Benji while Allie chats about her future with Benji's sassy friends.\ntt3457734,_4otc_6WtmQ,Allie endures a very awkward conversation when she borrows a bike from her neighbor Ebb.\ntt3457734,dy3yjv2YLh0,Harper and Allie watch someone steal their bike.\ntt1783732,dbnWDDp4s1c,Dave takes some of the soy sauce drug as a detective arrives at the house.\ntt1783732,wC2iSGzmdKI,\"Dave, John and their dog defeat the evil organic computer called Korrok.\"\ntt1783732,9PLm3XZsotA,\"Dave, John and Amy are forced to get violent when the rest of their group gets possessed.\"\ntt1783732,yIG_egCmhTw,Dave questions his friend John who is under the influence of a new drug.\ntt1783732,59rdzSTXs5c,Arnie admits he doesn't believe Dave's story.\ntt1783732,oIyXMnHWjIE,John and Dave meet a sentient organic computer known as Korrok that wants to rule their dimension.\ntt1783732,qNOk4yyxE38,\"As David kills a zombie, he tells the viewer a riddle.\"\ntt1783732,r8I0oejVPJI,While helping out a mysterious girl Dave and John realize things are not what they seem.\ntt1783732,abBd7mEUNwA,Dave gets a call from his dead friend while being held at a police station.\ntt1783732,6PPNd2HqmoA,Dave is attacked by a strange man named Roger North.\ntt4094724,Q85twbu-Vvk,Leo Barnes and Senator Charlie Roan run into a group of murder crazed tourists as they flee to safety.\ntt4094724,WFdOIU2jKpo,Leo and the group rescue Senator Charlie from the clutches of the New Founding Fathers.\ntt4094724,1HfZYZ2sDwE,Leo Barnes and Dante Bishop face off against Danzinger.\ntt4094724,x39ZG34sn28,\"As the Senator frees imprisoned victims, Harmon James arrives armed and angry, but after a long night Joe isn't about to let harm come to the hopeful politician.\"\ntt4094724,cRuYB2gXpM8,\"After being betrayed by other security officers, Leo attempts to get Senator Roan out of the house and away from assassins.\"\ntt4094724,aUAVPdrvwoA,Senator Charlie is forced to watch as The New Founding Fathers offer a sacrifice for the Purge.\ntt4094724,6GhSM3Gu9VU,\"Joe, Marcos, Leo and the Senator are holed up in Joe's store as psychotic schoolgirls outside try to break in.\"\ntt4094724,l8MFxT9ILKY,Leo and the group find themselves trapped between a violent gang and an assassination squad.\ntt4094724,V25QF11MwDU,Joe and Marcos are terrorized by a group of murderous schoolgirls.\ntt4094724,Kw6gubNxWQ4,Laney drives a triage vehicle through the Purge.\ntt3079016,rAdvJOAGEmc,Devon and Quinn share a romantic evening in Paris.\ntt3079016,2ZTrUc824oI,\"Kelsey follows Quinn to a date. Back at Leah's apartment, he makes a jerk out of himself.\"\ntt3079016,zaHU1FW_RZk,\"Quinn and Jameson spend a day at the Dutch Village doing \"\"guy stuff\"\".\"\ntt3079016,-QT_Af7RLjU,Quinn and Kelsey have a disappointing and strange sexual encounter.\ntt3079016,0mmSi-63Y9U,Quinn has very bad timing when he tries to break up with Devon.\ntt3079016,Ch1DsDy-osI,Quinn learns he has a unique problem with his eyes.\ntt3079016,8QzFJA3QM7E,Quinn meets Devon's host family in France and professes his love for her.\ntt3079016,n_ci8BbMilc,Everything goes wrong when Quinn tries to impress Devon.\ntt3079016,xLLOmh2nxWQ,Quinn completely blows his proposal to Devon.\ntt3079016,N0gOaE92ogg,\"After botching his proposal, Quinn begs Devon for another chance.\"\ntt1440732,2BQoPPpt_9o,Virginie informs Georges that her husband and Laroche are taking Morocco.\ntt1440732,IMTJSKr7yJA,Georges makes it his mission to seduce Virginie Rousset.\ntt1440732,ltcp0jylvgQ,Georges takes Suzanne away for the night to ensure consent for their marriage.\ntt1440732,Ft-7riREEaA,Tensions rise in Georges and Rousset while they play a game of poker.\ntt1440732,hJ6_nbGdWT0,Georges explains to Clotilde why he has to marry Suzanne.\ntt1440732,5-2eKvFCqw8,Georges tells Clotilde that he is marrying Madeleine.\ntt1440732,DuYmyHWZqwE,Georges and Clotilde share sweet moments in bed.\ntt1440732,QRwiLuz2olI,\"While Georges and Madeleine think of new ways to gain prominence, passion takes over.\"\ntt1440732,ddVQoF2TvNQ,\"After her husband's death, Georges asks Madeleine for her hand in marriage.\"\ntt1440732,7ktZEjwyFhQ,\"Georges and Clotilde meet to start an affair, but soon realize they need a place more discreet.\"\ntt3746298,4Cw7JHJuTt8,Mason takes on dozens of prisoners in the riot.\ntt3746298,lPrJqB8ljAE,\"During the riot, Mason takes care of Victor and has a message for the warden.\"\ntt3746298,57eIYneEz7E,\"With the riot taking place all around them, Mason and Abbott come to blows.\"\ntt3746298,_-4Xy6CjAbw,\"Mason faces off against Victor's right hand man, Drexel.\"\ntt3746298,CE8VRLW8Zw4,Mason watches as his partner and friend is jumped by Victor's men.\ntt3746298,uB6JMgU50J0,Mason sets a plan in motion to get revenge for his wife's murder.\ntt3746298,-QZzReak2Ck,Mason takes out the last of his old attackers in brutal fashion.\ntt3746298,BbHxQ77anjQ,Mason gets his revenge on the men that attacked him.\ntt3746298,7XaThsXXj_M,Abbott breaks into the Danvers' house to get his revenge.\ntt3746298,Ss5HAL8j7p8,Mason tracks down notorious criminal Victor Abbott.\ntt1791528,UDhWyFDDrUg,\"Roy intends to arrest Kelly and Evan, but decides to offer Kelly a chance to bring down Vice.\"\ntt1791528,6xCIhFtDtx0,\"Kelly learns more about her origin from her creator, Evan.\"\ntt1791528,TmTq2M6xgEs,Kelly's plan to kill Julian fails and Roy works on his side of the deal.\ntt1791528,xkzlZGohQ_4,Chaos ensues when Roy's device allows all A.I. to become self-aware.\ntt1791528,ih9NffWqWgM,Kelly escapes and Chris reports back to Julian for further instruction.\ntt1791528,YejzV_nWN1M,\"Roy goes to the church to interview Evan about Kelly, but it turns out the Vice henchmen had the same idea.\"\ntt1791528,kaJbWpMZdwM,Kelly escapes when Reiner begins a painful experiment on her brain.\ntt1791528,I5ohJ4BBHzo,Kelly experiences unprecedented A.I. flashbacks and Julian brings her in for a software fix.\ntt1791528,3Iy44xwjtQA,Detective Roy meets with Julian to question him about the attack on Vice.\ntt1791528,57u_LsqMoys,\"After two Artificials get taken down, Vice creator Julian sends in the sweeper team to clean up the mess and get them back in the field.\"\ntt2869728,iP7_QcV9Q9s,\"James gives a heartfelt toast at Ben and Angela's wedding. Then, Ben falls off a speedboat as they drive away.\"\ntt2869728,LyGXFcfRyAQ,Ben chases AJ through a series of crazy obstacles.\ntt2869728,YRCIuvKg4tc,AJ uses a shootout at Ben's bachelor party as a distraction to make a quick escape.\ntt2869728,ra42YS4NRlY,AJ tricks Ben into eating old nachos from the trash.\ntt2869728,3XD34HIx-00,Ben uses ringtones to draw information about AJ out of Tasha.\ntt2869728,-yyoLJuNIJU,Ben imagines he's in a video game to handle a real life car chase.\ntt2869728,7ezYV1mOdh0,Ben uses a forklift to cause an explosion and trap Pope in the shipping yard.\ntt2869728,ENC7ueK93Ow,\"While trying to gain information about Pope, Ben is attacked by an alligator.\"\ntt2869728,WmFiW2CSiO4,Ben pretends to be a Nigerian prince in order to infiltrate Pope's party.\ntt2869728,SLL5ziDWc6k,James uses Ben and his bulletproof vest as a shield and takes down Pope.\ntt3760922,-vBO8PStfEg,The family catches Ian and Toula having sex in their car.\ntt3760922,mSsrdFBpuqU,Gus accidentally tries to set Paris up on a date with a child.\ntt3760922,PI82pNmQodk,The family attempts to teach Gus how to use a computer.\ntt3760922,P1EIIQ0tZUE,\"As he is taken away to the hospital, Gus proposes to Maria.\"\ntt3760922,fR8fl1fJftU,The family struggles to get Gus out of the bathtub.\ntt3760922,gFDIKfe91mg,\"Paris gathers the courage to ask Bennett to the prom. Then, she shares a tough decision with her parents.\"\ntt3760922,UkF508FI9ws,\"Toula agrees to give Paris space before she leaves for the prom, and gives her blessing for Paris to go to NYU.\"\ntt3760922,oxml1eY8urE,The family convinces Maria to continue with her wedding to Gus.\ntt3760922,vlwrxfIiDBs,Gus and Maria get remarried while Toula and Ian secretly do the same. Paris shares her first kiss at the prom.\ntt3760922,0LQZpUHbjDM,Gus and Maria begin their wedding. Toula and Ian decide to get married again.\ntt1334537,Npdj1jv8JKo,Ben and Andrew chicken out at the big moment.\ntt1334537,9h6w198Yg_Q,\"Ben and Andrew psych themselves up to kiss, and then gradually admit their disappointment.\"\ntt1334537,9vn3DZZHC4s,Andrew freaks out when Lily and Monica pull out the sex toys during a potential three-way.\ntt1334537,xD1OPkq6-Vg,Andrew and Ben reconnect and discuss the ways their lives have diverged.\ntt1334537,MR8hXM7_6EQ,Ben is relieved when Anna admits that she's too tired to have sex.\ntt1334537,Ctux2wyz_W8,Ben and Andrew decide to establish their heterosexuality on camera before getting down and dirty.\ntt1334537,heqpyT4kudQ,Ben and Andrew try to recover from a night of heavy drinking.\ntt1334537,xax--zcAdss,Ben welcomes his old friend Andrew into his home for a visit.\ntt1334537,zkX8cKUFOvk,Andrew accidentally reveals to Anna that he's planning to make a porno with Ben.\ntt1334537,oIymf1Bgmqg,Andrew and Ben refuse to back down from their drunken decision to make a porno movie together.\ntt1334537,liDkvm3hMtw,Andrew and Ben dare each other to make a pornographic film together for the HUMP film festival.\ntt1334537,3_2F9m4Rvw4,Ben tells Andrew about a secret crush he had when he first moved to Seattle.\ntt0083739,0_7vIOvdKqY,\"Jonathan admits to falling in love with Ellen, who wants to visit Jonathan at college.\"\ntt0083739,3J0d3ZwHy-Y,Skip forgives Jonathan after a brawl that leads from the woods to their dorm room.\ntt0083739,u3oi4L5tWQg,Jonathan gets punched in the face by Skip when questioning him about why he didn't turn him in.\ntt0083739,eFrS6uCoMsw,Ellen seduces Jonathan in a glass elevator.\ntt0083739,SrNNEi50cl4,Jonathan gets even with Skip after lunch.\ntt0083739,UeV6eAtHp0M,Ellen takes Jonathan to the roof for some intimate conversation.\ntt0083739,nM0h6QXTpHQ,Jonathan learns that the woman he's seeing is actually Skip's mother when invited over for dinner.\ntt0083739,SzlHzRvw-MI,Skip tells off Balaban when brought into his office and questioned about stolen SAT tests.\ntt0083739,Y6jBV4wDoO4,\"Skip pulls a huge prank on Jonathan, a new student on his first day of school.\"\ntt0083739,k8bJrJ7_LKI,\"When Jonathan is banished from the all-girls school, Skip buys him a bus ticket to Chicago.\"\ntt0083739,IywRc7bHziQ,Skip surprises Jonathan only to find out that he is engaged in a love affair with his mother Ellen.\ntt0071517,sp0O70Q5FAQ,Foxy exacts her revenge on Steve by removing something very important to him.\ntt0071517,odNZhZSydNc,Foxy pays back the rednecks who imprisoned and sexually assaulted her.\ntt0071517,tlJM0tgXu5Q,One of Foxy's friends shows how he cleans the streets of drug pushers.\ntt0071517,GCc99Gh-IEM,Foxy whips out a gun she has concealed in her hair and shoots up the room in her quest for revenge.\ntt0071517,rMczYrlPwaw,Foxy seeks help in getting justice for her boyfriend's death.\ntt0071517,JWXgBi3HDac,Foxy wants to join the mile high club with Hays even though he has to concentrate on flying the plane.\ntt0071517,1UXl3LGnRR4,\"Foxy and Claudia show off their \"\"black belt in bar stools\"\" during a fight at a lesbian bar.\"\ntt0071517,yBd_y4V7vtc,Foxy interrogates her druggie brother Link about the men who killed her lover.\ntt0071517,Qf_EPkVA31c,Foxy and Claudia speak dirty to Judge Fenton before humiliating him.\ntt0071517,cTR9Hnxfk7A,\"Link complains that his ambitions for life exceed his means, as he tries to get on Foxy's good side.\"\ntt0071517,AxBkurGlhHg,Foxy rescues her brother Link and shakes an unwanted passenger from the car.\ntt3960412,WRlIDIu2qpg,\"The Style Boyz reunite at the Poppy Music Awards and blow the crowd away with their new song, \"\"Incredible Thoughts.\"\"\"\ntt3960412,DAPrbiJaej4,\"When everyone starts to betray him, Conner tests his crew to see who's a true friend.\"\ntt3960412,W95X207kQxU,\"Conner4Real brings two of his biggest hits to the stage with \"\"Finest Girl \"\" and \"\"Mona Lisa.\"\"\"\ntt3960412,1EcAcWe08NU,Conner botches his newest magic trick and ends up naked in front of ten thousand screaming fans.\ntt3960412,QC0kTcAlf64,Owen gets a new helmet and Hunter is brought in to give the tour a little more pop.\ntt3960412,pLooDtjrhv8,The most romantic wedding proposal of all time goes downhill fast when wolves get loose.\ntt3960412,t1Wk3H5Xur0,\"Conner reads some \"\"mixed\"\" reviews about his new album, and then reflects on his breakout moment on \"\"Turn Up the Beef.\"\"\"\ntt3960412,xGAAMQLb4ZE,Conner4Real sings to promote equal rights around the world.\ntt3960412,KzUKcXxbU4U,\"Conner4Real performs his hit song, \"\"I'm So Humble,\"\" with Adam Levine's hologram.\"\ntt3960412,Tht98G49dos,Three childhood best friends take over the rap game and the music industry forever.\ntt0366551,_ZLAt3zwEpQ,Harold and Kumar get inspiration to go to White Castle from a crazy Burger Shack employee.\ntt0366551,cN2VCBTYgHI,\"Harold and Kumar get trapped in the bathroom with a pair of sexy women who play a game of \"\"battles***s\"\".\"\ntt0366551,Y4-vFWxvdjs,\"Harold and Kumar are mistaken for doctors by a male nurse, leading Kumar to save a man's life.\"\ntt0366551,HNajZgCe5Pg,\"A creepy guy shares a bush with Kumar. Then, he and Harold are attacked by a rabid raccoon.\"\ntt0366551,Zk5K-Z2enGA,Harold and Kumar are picked up at the side of the road by a disgusting man named Freakshow.\ntt0366551,VMhwOytHUsU,\"Freakshow's wife, Liane, begs Harold and Kumar to have sex with her.\"\ntt0366551,zPWwORb6PW8,\"Harold and Kumar pick up a drugged out, horny Neil Patrick Harris at the side of the road.\"\ntt0366551,aVUhnzQmx_A,Things go horribly wrong when Harold gets a ticket for jaywalking.\ntt0366551,fzRvMylDVi8,Harold and Kumar finally make it to White Castle.\ntt0366551,SNwh7RP56S8,\"Harold and Kumar make friends with a cheetah, which they take for a ride through the forest.\"\ntt0910936,Uj6eiUsNwvU,\"Saul sets out to rescue Dale by stealing a police car, but the pair are quickly pursued by Officer Brazier in a high-speed chase.\"\ntt0910936,AnGVJ8Gv8aU,\"After Ken detonates a bomb, Dale saves Saul from burning in the fire.\"\ntt0910936,o6FUdj0_fGY,\"Red, Dale and Saul reminisce about their adventures at a restaurant.\"\ntt0910936,vOoyaqLrZnE,Matheson kills Budlofsky and gets run over by Red just as he's about to kill Saul. Then Carol shoots Red as he's basking in his victorious moment.\ntt0910936,18Qa__JYKdc,Angie's parents are not amused when Dale tries to get them to run from the bad guys.\ntt0910936,aDvjCbdyEHw,Dale finds Red dying in his bathroom and asks him to help save Saul.\ntt0910936,HKJOcRnkRQ4,Red gets shot after giving information to both Dale and Ted's henchmen.\ntt0910936,4DD8QRsms1s,A fight breaks out when Red reveals that he's giving Ted's people information about Dale and Saul.\ntt0910936,eI1dAmDZrZE,Saul introduces Dale to the trifecta of joint smoking.\ntt0910936,uX7CAoxBNOU,\"Private Miller tests out marijuana for the military and when he demonstrates defiant behavior, General Bratt deems it illegal.\"\ntt4196776,5sNY4Rn7bYI,The Asset pursues Bourne and Nicky through the streets of Athens with help from the CIA.\ntt4196776,fbR1gtlY7FM,Jason Bourne chases The Asset through the streets of Las Vegas.\ntt4196776,AnJm-acXQCo,The Asset shoots Nicky as she and Bourne are making their escape.\ntt4196776,5c3tOFFEcU4,Jason Bourne faces off with The Asset in a final confrontation.\ntt4196776,NzJH4towI_A,Jason Bourne interrogates a lead with the CIA while The Asset is in hot pursuit.\ntt4196776,yvtb9A9ai9Q,Jason Bourne tries to stop an assassination attempt by Dewey and The Asset.\ntt4196776,FWznyZ9Znuw,Jason Bourne confronts Director Dewey in Las Vegas.\ntt4196776,zb5RJyrk4gc,Jason Bourne and Nicky attempt to evade police in Greece after being spotted by the CIA.\ntt4196776,Wnocz8UrhQw,Jason Bourne and Nicky attempt to escape the CIA in Greece while a riot rages around them.\ntt4196776,yunEcgw8va0,Jason Bourne only needs one round when he fights in an underground boxing ring.\ntt0149261,HsRwyJw5o7k,\"Susan makes a fatal mistake trying to distract the last shark, as Carter and Preacher aim to blow up the sharp-toothed killer with a car battery and explosively charged harpoon.\"\ntt0149261,nA1lAszNSoI,\"Returning to her quarters to get her research, Susan is attacked by one of the killer sharks she created, but thankfully, due to some quick thinking, a quicker undressing and an electric cable, she solves the problem.\"\ntt0149261,q6ObhNBURyY,\"With shark-infested water below and fire above, Carter, Susan, Scoggs and Janice start to feel the jaws of death coming down on them.\"\ntt0149261,BS8I9H07wKw,\"As their options get worse and the group starts to argue, Russell steps up, takes lead and and gives the team a motivating speech on unity... right before getting eaten by the largest shark.\"\ntt0149261,gfXns_cU8I8,Preacher finds himself trapped in an oven with a killer shark just on the otherside of the glass.\ntt0149261,-v8l6cCrf0w,\"Preacher attempts to escape the water filled kitchen along with his pet parrot, but the sharks have other ideas.\"\ntt0149261,m2aC-nkV1Zg,\"Susan and Jim test the brain fluid from the biggest shark with the rest of the team, but unfortunately while celebrating, Jim gets a little too close to the beast.\"\ntt0149261,rvqm61CcOLo,\"Shortly after the topside part of the facility explodes, one of the sharks uses Jim's gurney-tied body as a battering ram to break the laboratory's window.\"\ntt0149261,i31XFSORRfc,\"Susan, Russell and the others watch as Carter attempts to capture one of the sharks, who seem to have gotten smarter.\"\ntt0149261,5lPGiKG9VI8,Four teens out having a late night on the ocean encounter a party crasher with very sharp teeth.\ntt0107362,dfWdmxCHwfc,Ripper lures Jack to the roof of the premiere and throws Danny off before getting electrocuted.\ntt0107362,9Eont_yEGZs,Jack Slater stars in a violent version of Shakespeare's Hamlet in Danny's daydream.\ntt0107362,Br9zd0KkFTU,Benedict shoots Jack and then Danny distracts Benedict long enough for Jack to kill him.\ntt0107362,gzPiBOc_Nfs,Jack drops the corpse bomb into a tar pit and the detonation is supressed.\ntt0107362,Jo1OjI4Yfv8,Benedict kills Vivaldi and uses the magic ticket to escape into Danny's world.\ntt0107362,hwTf9WurF4U,Jack must get a corpse rigged with a bomb away from the funeral before the bomb detonates.\ntt0107362,IXmWL4J2wwI,\"Through the magic of his ticket, Danny is brought into the world of his favorite film with his favorite character Jack.\"\ntt0107362,5kQCpsPnnew,\"When Benedict threatens Danny and Whitney, Jack shows up to defeat him and his henchmen.\"\ntt0107362,u_z2ttNkL24,\"While Jack humors Danny with his drug dealer theory, the two meet Benedict.\"\ntt0107362,3yjYPrkMGdk,Jack defeats the bad guys in a game of chicken and Danny figures out that he's actually in the movie.\ntt1290471,fiP6h4VL-wE,A crazed man forces Myron and Sky to hand over their car.\ntt1290471,nhDX2exjhGU,\"Per authorization from the government, the military bombs and destroys a small island in an effort to eradicate the aliens. Sky grows weak as she feels the pain of those who died.\"\ntt1290471,EMbzESGsxoY,\"After Sky and the Man return to their home planet, Myron reflects on all they taught him.\"\ntt1290471,-u0yhzYlhFA,\"When Myron refuses to stand down, he is shot dead. When all hope looks lost, the Man uses his powers to revive him and Sky.\"\ntt1290471,83Ax_EIMDVk,\"As the Earth begins to crumble, Myron and Prewitt rescue Sky and attempt to get her home safely.\"\ntt1290471,KMr9bWPy7u8,\"When Myron shows Sky the power of humanity, she uses her abilities to show him visions of her home planet.\"\ntt1290471,ZdmU6mM0Gog,\"After being shown the true value of life, Sky revives a dead mother and reunites her with her husband and infant.\"\ntt1290471,y3L-a3R9OQE,\"When Myron and Sky are pursued by the military, Myron is forced to shoot his way out to rescue her.\"\ntt1290471,LZD-86lIgYg,\"When the military tries to torture Sky, she uses her abilities to attack them and keep them at bay. Myron tries to rescue her and is relieved of duty.\"\ntt1290471,rnkIsbFHoB4,The aliens' giant robots cut Earth's power. Myron rescues Sky from Prewitt and the government.\ntt2191701,xhgWGU6cQ00,\"Lenny comes face to face with Tommy Cavanaugh, the bully that tormented his childhood.\"\ntt2191701,fq5JFon-LOs,The janitor gets everyone in yoga class to warm up for him and then all the ladies melt over the beautiful yoga instructor Kyle.\ntt2191701,os7KKfG3QE0,Cavanaugh does Lenny a favor and backs down so he can make a good impression on his kids.\ntt2191701,xkMijsfMZBU,\"Everyone has fun at Lenny's party and when the music cuts out, the crowd discovers Charlotte is a talented singer.\"\ntt2191701,1jK2Y8vAM1A,Officers Fluzoo and Dante help the guys get to the ballet recital on time.\ntt2191701,af1gSplQfPU,\"After Lenny accidentally lets Higgins slip away in a giant tire, Officer Fluzoo stops it with his body.\"\ntt2191701,JU_Vqys3Kp4,\"Everyone attends the children's ballet recital, but the only person the guys are looking at is the dance teacher.\"\ntt2191701,x2K8I28zejw,Lenny takes over driving the school bus for Nick and intervenes when his son gets bullied.\ntt2191701,JaMejPOFVCc,The guys tease their childhood rivals at Kmart and McKenzie chokes Malcolm for his comments about their kids dating.\ntt2191701,KPOx5tioLeY,Lenny uses Becky's stuffed animal to lure a wild deer out of their house.\ntt1375670,JjfbxBMmXTI,The guys face off with their rivals in a game of basketball while their wives and kids cheer for them.\ntt1375670,PhRyzmcEOVA,\"After a successful night with their women, Lenny and Lamonsoff mess with Higgins in his sleep.\"\ntt1375670,GHZSYBkKec4,The sexy water park man is not as sexy up close and Hilliard defends the honor of his daughters by pushing a rude attendant down the water slide.\ntt1375670,gNbqn47rt3M,Sally shows off her body to entice a sexy water park patron and Lamonsoff gets his son to drink milk out of a carton.\ntt1375670,SOwJJPZKIys,The guys talk about relationships and Hilliard loses a game of Arrow Roulette.\ntt1375670,wZl5uWOpepU,\"After a dangerous game of arrow roulette, Hilliard snaps at Gloria.\"\ntt1375670,wKiW5OYjels,The guys stare creepily at Hilliard's daughter until Gloria comes in to help fix the car.\ntt1375670,rezZBgaJGoM,Lamonsoff hits a tree and falls when he tries demonstrating a rope swing by the lake for the kids.\ntt1375670,--QCZKgJt6o,The guys make fun of Hilliard for singing Ave Maria at the funeral and everyone's a little uncomfortable when Bean drinks his mother's milk.\ntt1375670,hQmDmh3qA6s,\"Lenny, Eric and Kurt get the bad news about their coach's death.\"\ntt3499424,QggV4W5BTkM,\"Overcome by a potion given to him by Nikos, Hercules begins attacking and killing his friends.\"\ntt3499424,uTIfsQ15LPM,\"Nikos overthrows and kills King Demetrius, causing Queen Evenya to kill herself rather than live under his rule.\"\ntt3499424,S0wF9tshsyk,\"In an effort to force Theodora to love him, Nikos orders her to watch the murder of a woman and child.\"\ntt3499424,I8_tVvzJ1xg,\"When Arius and his men are captured and sentenced to death, Hercules appears to rescue them.\"\ntt3499424,qtRfpAJHi3U,\"When they are ambushed in the desert, Hercules, Arius and Horace annihilate a group of soldiers.\"\ntt3499424,e9nVeZ8UE5M,\"Just before he kills Horace, Arius defeats Hercules and forces him to dispel the potion that has turned him evil.\"\ntt3499424,GY0btkKshOo,\"As the battle rages on, Arius confronts Nikos and is defeated.\"\ntt3499424,GJVYWd_3tzU,\"As Nikos reaches the brink of victory, Hercules crushes his skull and defeats him once and for all.\"\ntt3499424,oq0Aj9JsmMQ,\"As Arius makes his way to Nikos' bedchamber, Hercules defeats and murders Cyrus.\"\ntt3499424,07I2_etOYhM,\"When Arius does not show his face, Nikos takes the life on an innocent man.\"\ntt1663662,9Pn6NgaX8I0,\"Raleigh and his brother Yancy suit up and step into their giant fighting robot, the \"\"Gipsy Danger\"\".\"\ntt1663662,yzwheD19-PQ,\"While attempting to harvest a Kaiju brain, Newton and Hannibal Chau come face to face with a baby Kaiju.\"\ntt1663662,R5a3sZiNuu4,\"After Striker Eureka is critically damaged during the final attack on the Breach, Pentecost realizes there is only one way to clear the path for Gipsy Danger... detonate the Jaeger.\"\ntt1663662,BiuCpXg_jgU,\"Gipsy Danger finds itself in trouble when it's taken to space by the wing-revealing Kaiju named Otachi, but thankfully they have a very sharp secret weapon.\"\ntt1663662,-7Sow81yi24,\"As the Shatterdome prepares for one final mission to save Earth from the Kaiju, Marshal Stacker Pentecost reveals that he will pilot a Jaeger and gives the team a speech.\"\ntt1663662,AYQjmj7cSM0,Gipsy Danger tracks down the quick and acid spitting Kaiju named Otachi and do their best to beat it to a pulp.\ntt1663662,oDcNKpBgd_0,\"Being the last Jaeger standing, Gipsy Danger takes on Leatherback.\"\ntt1663662,Uy-L94Tio9w,\"Crimson Typhoon, Cherno Alpha, and Striker Eureka are all sent out to defend Hong Kong against two powerful Kaiju code-named Otachi and Leatherback.\"\ntt1663662,s4esaE679Wg,\"Raleigh and his brother Yancy, piloting the jaeger \"\"Gipsy Danger\"\", defend the Alaskian coastline from a Kaiju named Knifehead with heavy sacrifice.\"\ntt1663662,E7i4pNsqnls,\"While sparring with other pilots to discover who he is drift compatible with, Raleigh discovers that the best option is Pentecost's adopted daughter, Mako Mori.\"\ntt7069210,JhMWopjJiI8,Carolyn is tormented by the spirit of a little girl in the house.\ntt7069210,wHqQzF4JXdE,Ed and Lorraine investigate a case about a torturous doll named Annabelle.\ntt7069210,16op1FeUX1A,Brad is attacked by a ghost as Cindy is led away and disappears.\ntt7069210,rRuulhJ2ARQ,Lorraine discovers a ghost that had formerly been tormented by the demon who possesses the Perron house.\ntt7069210,nLMkSN2F2xs,\"Ed and Lorraine's daughter, Judy, is attacked by the demon after it takes control of the doll Annabelle\"\ntt7069210,zS41k2xmQUI,\"Lorraine discovers the nature of the demon right as it attacks Nancy, dragging her by her hair.\"\ntt7069210,OcS7veELZ0c,Ed begins the exorcism on Carolyn and the demon begins to reveal itself.\ntt7069210,lPYFkRoFM-A,\"The group arrives just in time to stop Carolyn from killing her daughter, and begins the fight against the demon inside her.\"\ntt7069210,Yke_Lkmm5Bc,\"As Ed attempts to exorcise the demon out of Carolyn, she rises in the air and tries to kill everyone.\"\ntt7069210,V4rzoRzqmyc,Ed and Lorraine help Carolyn expel the demon inside her.\ntt3276924,kzxSZ5zCfXs,SWAT finally makes their move against Vaughn and Cox while the bus is still in motion.\ntt3276924,kbb1MUQmusU,The Pope shares with Vaughn a little life wisdom and smokes one last cigarette before he dies.\ntt3276924,hjyWtmbAyco,Vaughn reveals his true plan to The Pope and Dog as they prepare to light him on fire.\ntt3276924,FxcIBbXalVg,Vaughn is determined to save his daughter and Bernie knows how to make it happen.\ntt3276924,DJZqFXSHyvc,\"After the bus crashes, Cox threatens to kill a hostage on live TV, but Marconi won't back off.\"\ntt3276924,d_hNjBBdcyU,\"After Detective Marconi kills Dante, he reveals to Vaughn that he works for The Pope.\"\ntt3276924,5Y7gOcsg0Xk,Vaughn trades hostages for gasoline and Kris meets Cox.\ntt3276924,CScFydObPJA,Vaughn diffuses a violent situation and contacts the police to strike a deal that involves bringing Kris on the case.\ntt3276924,zSw2bGgrIQQ,Vaughn convinces Officer Kris to clear the road block so they can get the bus of hostages on the freeway.\ntt3276924,tpsGUGc8Ri8,\"When Vaughn, Cox, and their crew attempt to steal money from The Swan Casino, not everything goes according to plan.\"\ntt2547172,LwSsrFFa2Wc,Larry successfully completes an urban landing on a freeway in Los Angeles.\ntt2547172,QN8ln3Hx1mc,Larry returns Donnie home and pledges his love to April.\ntt2547172,Bwpvq4JhqY4,Larry reads an excerpt from his book and has an almost-touching moment with his father.\ntt2547172,D-gTnaF9LVA,\"Larry is tasked with emergency landing the plane, but first he must deactivate Sally.\"\ntt2547172,0o9Fm3hnpYQ,Larry tells Nathan the story of how he met April.\ntt2547172,AgNH9Ktkrqk,Larry is no match for the new robotic flight attendant Sally.\ntt2547172,qYCEXS6Ws_c,Larry teaches Nathan how to be an all-star flight attendant.\ntt2547172,O4TmwflckcU,Larry reluctantly accepts his invitation to compete against Sally in a flight attendant competition.\ntt2547172,jvBp6TqoHWw,Larry proposes his book idea and the publishing executive is absolutely uninterested.\ntt2547172,_LzgxVd1wF8,Larry's sex tape accidentally plays for all the passengers while he tells Nathan a story about his father leaving.\ntt3393070,PM8-Hmfy6OU,\"Hammond, Andi and Helen decide to do all they can to save Helen's body, including jumping a car right through the hospital window.\"\ntt3393070,5UnmqCr95HI,Hammond and Andi have to fight through the gang of One-Eye to make it to the rooftop for extraction.\ntt3393070,Hl1iN3hP-60,\"Confronted by the corrupt cops behind all their troubles, Andi, Helen and Hammond realize a shocking mechanical truth.\"\ntt3393070,XndQbcPIsI8,\"Hammond, Andi and Helen find themselves under attack by the first of many gangs that want revenge.\"\ntt3393070,muMv1K99l64,\"When the criminal Dexts gets the drop on Officer Hammond, they both discover there is a new metallic sheriff in town.\"\ntt3393070,6xYx1k3O8X8,\"While attempting to gather some information, Hammond finds his new android partner plays frustratingly by the book.\"\ntt3393070,qIAWFde0FO0,A Granny with a handgun is just the first of many fully loaded problems for a team of officers attempting to capture a drug lord.\ntt3393070,AoWXSOx502Q,Tragedy strikes when Hammond and Reynolds chase down a criminal in the ruins of Beverly Hills.\ntt3393070,lJjxm4xTVKk,\"After going deep into dangerous territory, Hammond and Andi realize they should leave, as long as that is still an option.\"\ntt3393070,XLqh2vpx6BI,Hammond and Andi have different views on how to handle being surronded by armed and angry thugs.\ntt2709768,lYCq6x3AHYw,Max and Duke wait for Katie to get home.\ntt2709768,JvclIUy-JlA,\"Max thanks Gidget for saving his life, after getting a ride back home.\"\ntt2709768,HPGSDBjsSWI,Max tries to save Duke from the falling truck.\ntt2709768,rLZ5aVNxV84,Pops leads Gidget to Snowball's hidden lair.\ntt2709768,v5nIRiA5W-E,Gidget comes to rescue Max after he gets trapped by the Flushed Pets gang.\ntt2709768,Gl5GVViqvjo,Max and Duke enjoy their personal Heaven - a sausage factory.\ntt2709768,GAozArqKtGQ,Pops leads the pets through New York City as they look for Max.\ntt2709768,RbsNzYdNM5I,Max and Duke are rescued by Snowball.\ntt2709768,HR2-PHuh3W8,\"Max's owner, Katie, brings home a new dog.\"\ntt2709768,6_u456zQtkY,The pets get into trouble when their owners leave for the day.\ntt0400717,j8cGENcePl0,Boog and Elliot have fun and make a mess inside a mini-mart.\ntt0400717,-u1uwI5qJ74,The crowd panics when it appears as though Boog is killing Elliot backstage.\ntt0400717,a2qE4hG9XCk,Shaw chases Boog and Elliot down rushing rapids.\ntt0400717,QvfcWxGZv9M,Elliot fails to teach Boog how to live in the wild.\ntt0400717,gJvoeKHjuvE,Boog is tormented by McSquizzy and the Furry Tail Clan.\ntt0400717,zgrvS0PJDrA,Elliot teaches Boog how to go to the bathroom in the wilderness.\ntt0400717,V-9fQTUix6I,\"Boog and Elliot lead the charge against the hunters, leading to a massive explosion.\"\ntt0400717,uCsRqsNpF60,Shaw hunts Boog as he hides inside his cabin.\ntt0400717,oGV14YsOvWo,Boog and Elliot defeat Shaw and save the forest animals.\ntt0400717,agrpQQWiX48,Boog chooses to stay behind in the forest with Elliot and says goodbye to Beth.\ntt0423294,5m9Bf48pWc0,The filmmakers interview Cody and he shares his story about the history of surfing and the legendary Big Z.\ntt0423294,BWT3i-fgw0s,Cody agrees to his first surfing competition and loses to Tank.\ntt0423294,G2ngOQwMMek,\"When Cody steps on a sea urchin, Big Z pees on his foot to stop the poison from spreading.\"\ntt0423294,e96_1NxL9no,\"Big Z gives Cody a training lesson and the two, along with Lani, finally go surfing together.\"\ntt0423294,YHirkSmJcEU,Cody and Lani share a day of fun and go boarding inside a volcano.\ntt0423294,HGrPKwsAvqE,Chicken Joe is kidnapped by natives and cooked in what he believes is a hot tub.\ntt0423294,VD8UttNfU60,Big Z tries to help Cody build his surfboard.\ntt0423294,uhBhYnRrOg4,Cody proves everyone wrong when he enters the surf competition and rides an amazing wave.\ntt0423294,8fzGR29bKjY,\"During the final wave of the surfing competition, Tank knocks Cody into the rocks.\"\ntt0423294,kn5Sc8o9YTM,\"After being gone for many years, Big Z returns home to his friends and fans.\"\ntt0787470,1mLEN1SN9Eo,Jimmy uses his beautiful singing voice to captivate Thad and steal the football.\ntt0787470,bSm3d9ftiJA,Caleb gives his team a motivational speech and Dick tries to pump up his team with verbal abuse.\ntt0787470,gFocZQa78ho,\"The Panthers win the football game, Caleb gets the girl, and Grant reveals he's been lying about his disability.\"\ntt0787470,kr2k20G3hCc,\"Caleb takes Meredith on a romantic roller skating date, but Homeless Bob and his terrifying friends cut the date short.\"\ntt0787470,OXUmjMKCR_c,Dick reveals his new strategies to win at intramural football and then he ruins Caleb's relationships with both of his women.\ntt0787470,aKtrjeCFCAg,Grant describes his training methods through montage.\ntt0787470,95fAKnIgqmM,Vicky proposes to Caleb at her birthday party and he accidentally says yes.\ntt0787470,hkEXnpQ_c5I,Grant gets paralyzed from the waist down in a game of flag football.\ntt0787470,bqwH3cQUlNA,\"Caleb is too afraid to complete the Triple Z play, so he runs the ball in himself.\"\ntt0787470,bDcFILIfHU4,\"Caleb tries to get the old team back together for intramural flag football, but Grant resists.\"\ntt1276419,sX8SScsA8TM,\"Caroline's son, Frederik, is taken from her as she is arrested.\"\ntt1276419,bsoa3DBmelk,\"Away from the crowded ballroom, Struensee and Caroline give in to the passion flowing between them.\"\ntt1276419,twdd-yhC2vw,Caroline gives birth to a baby girl.\ntt1276419,mkIwuziqr0k,At dinner Christian VII has an outburst over the paternity of his daughter.\ntt1276419,19h6CYFMUBU,Struensee interviews to be the king's personal physician and meets Christian VII for the first time.\ntt1276419,20Q3Qa51MUs,Struensee and Caroline share an intimate moment on the dance floor.\ntt1276419,2BbpnPOIKIM,Struensee is executed in front of the Danish people.\ntt1276419,tBVoGbg2ocA,\"Fed up with those in charge, Christian VII dissolves the council, and saves Struensee.\"\ntt1276419,vtu0TbT35UY,Struensee performs a smallpox inoculation on Prince Frederick.\ntt1276419,aWUJI1UPuHs,Struensee and Caroline discuss the potential of freedom for Denmark and all mankind.\ntt1276419,1EJYZ1IlTF8,\"Shortly into her marriage, Caroline realizes how terrible her life with Christian will be.\"\ntt0803096,PX3By_Y0jTA,\"King Llane leads the human army against The Horde in an attempt to free their people, while Khadgar and Lothar confront Medivh.\"\ntt0803096,Ax83IEcbUwU,Lothar and his Gryphon arrive at the battle too late and discover the body of the king.\ntt0803096,S0ymo6QHMc0,\"Realizing that the battle is lost, King Llane Wrynn tells Garona that she has to kill him and not let Blackhand have the honor of doing so.\"\ntt0803096,4sOjksh8vX8,Khadgar and Lothar confront the demon-possessed Medivh and his clay Golem.\ntt0803096,nD6DMtXc3mY,\"Durotan challenges Gul'dan to Mak'gora, a battle for the position of leadership over the entire force of Orcs, while Khadgar confronts the possessed Medivh.\"\ntt0803096,lfObLA5H4Rg,\"After Medivh casts a lightning barrier spell, splitting the battlefield, Lothar realizes Callan, his son, is trapped on the other side with the evil orcs.\"\ntt0803096,yuQW4F1siis,\"King Llane Wrynn, Lothar and Garona secretly meet with Durotan to discuss a truce between humans and orcs.\"\ntt0803096,ECDKjStq8Eg,The secret meeting between Durotan's Frostwolf Clan and the humans from Stormwind is interrupted by a large and angry force of evil orcs led by Blackhand.\ntt0803096,xI4s1uyYIX4,\"Lothar and his men go chasing after the Orcs and their Worgs, while Khadgar has a run in with the half-orc slave, Garona.\"\ntt0803096,m0DbfOnOBQo,\"Lothar, Medivh and Khadgar lead a scouting party investigaiting traces of fel magic when suddently they are brutally attacked by a group of Orcs.\"\ntt1133985,KKsVK5R9q80,\"Green Lantern activates the power within his ring and speaks the oath of the Green Lantern Corps. Meanwhile, Hammond inspects the alien corpse of Abin Sur.\"\ntt1133985,vUrgn1Vm86I,Sinestro trains Hal on the influence of fear.\ntt1133985,Z0FKMJQR9RU,Green Lantern discovers a dying Abin Sur and receives the ring.\ntt1133985,lP8EYYjPEmc,Hal's mask does little to stop Carol from recognizing him.\ntt1133985,EpCLoqVPwqw,\"After being ambushed outside a bar, Green Lantern learns the true power of the ring.\"\ntt1133985,9KkV_swvE2Q,Kilowog teaches Green Lantern how to use the power of the ring.\ntt1133985,_I_F4a-oUyA,\"When Hammond tries to crash his father's helicopter, Green Lantern builds a race track to save the day.\"\ntt1133985,h0qniQTX3r8,\"Green Lantern and Hammond battle it out in the lab. Then, Hammond kills his own father.\"\ntt1133985,QnX-Xgbi37I,Green Lantern uses the power of the sun to defeat the evil monster Parallax.\ntt1133985,nQeov6j0bsQ,Green Lantern squares off against the evil beast Parallax.\ntt3672840,e3BZn-XJ4mU,\"Huo An leads his fellow warriors to freedom and mounts an attack. Meanwhile, Tiberius faces off against Yin Po in a deadly sword battle.\"\ntt3672840,mRwKWTGCd7Y,\"Believing he is to meet reinforcements, Lucius is ambushed and captured in front of Publius.\"\ntt3672840,nwt-V8xfwkQ,\"Huo An and his fellow warriors try to fight their way out of the city, which leads his wife's death.\"\ntt3672840,SwjKQrYpe-g,\"Huo An tries to protect the Silk Road and prevent conflict among the trading nations, but is instead drawn into battle by Cold Moon.\"\ntt3672840,p9XIPtizl3s,Huo An and Lucius square off in a sword battle in the middle of the desert.\ntt3672840,Pve6cemkiDg,\"When several nations show up to protect the Silk Road, Tiberius's army proves to be quite strong, killing many top warriors.\"\ntt3672840,KaLpXs1SDWo,\"Huo An and his fellow soldiers fight back against Tiberius' army, using stones and spears to craft a massive battering ram.\"\ntt3672840,1xXjjahIwr8,\"When he discovers Lucius tortured and without any eyes, Huo An decides to kill his friend before he is burned alive.\"\ntt3672840,1mqubJrf6KA,\"Huo An loses ground against his adversary, the strong-willed Tiberius.\"\ntt3672840,taL06OVt4kQ,\"Just as he is about to be executed, Huo An regains his strength and murders Tiberius.\"\ntt1758570,Ga9WsLD5LV4,\"When aliens invade the city of Los Angeles, they reprogram the military's weapons and use them against the pilots trying to take them down.\"\ntt1758570,pmuDcYB17E0,\"Despite strong threats from Commander Wakes, Arnstead can't muster up the courage to make his plane take off, which gives the aliens just enough time to attack.\"\ntt1758570,jTnDuMlebNU,\"When Solano and Tyler are captured by a massive alien beast, she convinces him to throw her a grenade, sacrificing herself and bringing down the monster for good.\"\ntt1758570,PENNRVb6OBM,\"When Tyler and his company get their backs pinned to the wall by an alien attacker, Captain Smaith drops in to rescue them with her katana.\"\ntt1758570,TSxB1wKzjhE,\"When Arnstead loses control of his mind to a mysterious light source, Solano is left on her own to handle an alien attacker.\"\ntt1758570,B9pucpn_NOE,\"When all hope looks lost, Tyler uses the power of his mind to engage the shields on the spaceship and rescue himself and Captain Smaith.\"\ntt1758570,KbOr1buhh-Y,Tyler and Captain Smaith take down an enemy spaceship with a rocket launcher as they barrel through the ruins of Los Angeles in a tank.\ntt1758570,aYTP2-S8fxk,Tyler must use the power of his mind to pilot an alien spaceship and defeat an incoming invasion.\ntt1758570,gOw5myC1PBI,\"When asked to communicate with the alien they are holding captive, Rodgers lets out a horrendous squeal and reveals that he is actually a robot.\"\ntt1758570,iypUHnZ-9TM,\"When a robot emerges from Rodgers' severed head, it attacks the soldiers and puts a hole in Newman's chest.\"\ntt2216240,ZuCKjnYIRYQ,\"As the pirates prepare to leave, one of them notices Mikkel's ring.\"\ntt2216240,CzugC2PxerE,Peter finally reaches a deal with the pirates.\ntt2216240,L-5U2tIfxAg,\"The pirates let Mikkel call his wife, but it turns out to be just another negotiation tactic.\"\ntt2216240,jvh9Kw3NbMs,Peter goes against the advice of everybody around him and gets emotional when talking to the pirates.\ntt2216240,m83iX-zbiGU,\"The ship's cook is chosen by the pirates to negotiate with Peter, the CEO of the shipping company.\"\ntt2216240,iI5M8zwvki0,\"After the pirates let them out to get some fresh air, Mikkel and another sailor decide to fish for a bit.\"\ntt2216240,0y-Y83y4kKo,Mikkel informs the negotiator that the crew needs food.\ntt2216240,GrWc2UKDo-s,Peter meets with the families of the men who are being held by pirates.\ntt2216240,YOlt7yp_QIs,Connor Julian advises Peter on how to go about negotiating with pirates.\ntt2216240,ZhAeutRIUzI,Peter and Connor continue to negotiate with the pirates.\ntt2310332,tJPokP3FVl8,\"Azog kills Fili, leading Bilbo and the other dwarves into a frenzied battle.\"\ntt2310332,CBbH4CVp1S0,\"Azog and his orc army begin to overpower the alliance of elves, dwarves, and humans.\"\ntt2310332,v5llnbqhLZM,Bard pierces Smaug's heart and defeats him once and for all.\ntt2310332,tb9kVTItw3I,\"Bard protects his children and the village of Dale, using a wagon to defeat a massive, hideous orc.\"\ntt2310332,qPkKjKAyJ8I,Galadriel revives Gandalf and fends off the Necromancer with the help of Saruman and Elrond.\ntt2310332,WYi4Bp1hmC0,Thorin rallies his troops and heads into battle.\ntt2310332,tnwarNcu3fc,\"Kili is killed by a vicious orc named Bolg, leading Tauriel into the thick of battle.\"\ntt2310332,3kNqc5Hrh0M,\"Legolas fights Bolg and goes on an orc killing spree, while Thorin begins his final battle with Azog.\"\ntt2310332,uHuDwL4XEUE,Bilbo shares Thorin's final moments with him.\ntt2310332,tuXSqMrfVW8,\"Thorin finally defeats the evil orc, Azog.\"\ntt1170358,UC6sKTqfgg8,\"After escaping the giant spiders, the dwarves are captured by the Mirkwood elves led by Legolas.\"\ntt1170358,-QfKnft9uWY,\"Bilbo uses the ring and his sword to defeat the spiders in Mirkwood, coming up with a name for his blade in the process.\"\ntt1170358,AutuCkT54KI,Bilbo helps the dwarves escape elven captivity by hiding them in barrels.\ntt1170358,khK3EggW2DY,\"While rushing down a river inside barrels, Bilbo and the dwarves fight a swarm of angry orcs.\"\ntt1170358,SeYgMYijdz4,Gandalf is overpowered by the darkness of the Necromancer and sees the Eye of Sauron.\ntt1170358,n59mG9_X35Q,\"When Smaug begins to attack, Bilbo uses the ring to hide.\"\ntt1170358,KLkD0H3K5Zk,Legolas protects the village of Laketown and faces off against Bolg and the orcs.\ntt1170358,Rf82VHBcoYY,\"When orcs attack Bard's family, Legolas and Tauriel arrive just in time to save them.\"\ntt1170358,aBxlJkcHDSM,\"Thorin attempts to take down Smaug once and for all, but fails and unleashes him upon the citizens of Laketown.\"\ntt1170358,v9pZdy4lZ7U,Thorin and the dwarves trick Smaug into igniting a massive furnace.\ntt0903624,pxQNKJWZ-t0,Radagast tries to distract the orcs while Gandalf leads the dwarfs and Bilbo to safety.\ntt0903624,YV-vi9NuyTw,Radagast warns Gandalf about the evil that has taken over Dol Guldur.\ntt0903624,RcC6K2k6cwk,Gandalf leads the dwarves out of the goblins' cave.\ntt0903624,IQWtTLEslg8,\"Just as all hope looks lost, Bilbo rescues Thorin and Gandalf's eagles arrive to save the day.\"\ntt0903624,TeSzBaedb2Y,Bilbo gets captured by a group of dim-witted trolls.\ntt0903624,gW7ozVNSL8k,Gollum realizes that Bilbo has stolen his precious ring.\ntt0903624,qHisKG66fLI,Balin recounts the story of Thorin's valor on the battlefield against the evil orc Azog.\ntt0903624,s8cVCsIcGAE,Bilbo tells the story of the arrival of Smaug and how the dragon drives dwarves out of their mountain and takes it as his own.\ntt0903624,UFFWH8N9SLk,Thorin pledges to win back his homeland.\ntt0903624,e0HzBST_794,The dwarves create a mess and tease Bilbo with a playful song.\ntt1507566,KQlR_8YkRKg,\"Daniel and Kelly reunite, while Mr. White steals the painting.\"\ntt1507566,ZYaLloEakCg,Daniel tells Mr. White where the painting is.\ntt1507566,5hocAgn07-U,Mr. White has a new project for Daniel.\ntt1507566,2QKuy-mlQfI,Mr. White vists Murphy at his art gallery in order to get his payment.\ntt1507566,wJzWgX63LRs,Agent Tom Kozinski asks Dr. Kelly Monaghan for her help in his investigation of Daniel.\ntt1507566,Aaj_WEYZJN0,Daniel explains he and Tay sold their forgeries.\ntt1507566,XuLHSjIXpJk,\"Daniel, under the guise of Signor Renoir, tries to sell his forgeries to Tay but he can see they are fakes.\"\ntt1507566,pa1ZFxgQmUY,Mr. White tells Daniel that he works for him now.\ntt1507566,DNpBEvHATIs,Daniel explains how forgery has been around as long as art.\ntt1507566,XhwgtlCns34,Daniel describes how he first got into art.\ntt1507566,BFaqEfhGj4Y,\"Daniel tries to sell his paintings to Mrs. Needham, but she is not convinced to buy.\"\ntt0988045,0NUDP-gxGyM,Holmes shows up at Irene's hotel in an attempt to convince her to leave London.\ntt0988045,ZXyLYqWUffA,Watson and Mary hear what Holmes has discovered after they find him hanging from his bedroom ceiling.\ntt0988045,iA_KZwlnrcI,Sherlock Holmes is attacked by Lord Blackwood in the final showdown.\ntt0988045,eBVqcDJbl5A,\"After Sherlock saves Irene, Watson trips a wire that sends the whole dock bursting into flame.\"\ntt0988045,1DTrvZ3wxy0,\"Holmes, Watson and Irene try to disarm Lord Blackwood's weapon.\"\ntt0988045,N_c0y8BcKBU,Holmes discovers a shocking weapon while fighting Blackwood's henchmen.\ntt0988045,wdVtcHMYAM4,\"Sherlock follows Irene Adler through the underbelly of London, disguising himself along the way.\"\ntt0988045,l6TGERgrXmA,Mary meets Holmes and makes the mistake of asking him to tell her what he can conclude about who she is.\ntt0988045,u-z5139CW1I,Holmes predicts the pattern that his boxing match will take in his mind.\ntt0988045,dVzFy-4c-AY,Holmes and Watson catch Lord Blackwood and get him arrested for kidnap and attempted murder.\ntt1261046,DlJKjlgWFu0,\"The Reaper threatens Dr. Shank, giving him two weeks to complete his task. When he discovers there is a spy in their midst, The Reaper sends the Metal Machine Man after him.\"\ntt1261046,NS8z60XHJdk,\"When Violent J discovers he has been stabbed through the leg, Shaggy 2 Dope is forced to leave him behind.\"\ntt1261046,YC0tFqipqpI,Violent J and Shaggy 2 Dope attack the Reaper and end up caught in an explosion created by Homeland Security.\ntt1261046,YM4Of8J6gLE,\"Things heat up between Fred and Double Dee, but when Queen B is assaulted by the Metal Machine Man they take him down once and for all.\"\ntt1261046,WZrXR5HAEVw,\"Violent J, Shaggy 2 Dope and the rest of the racers take on the Metal Machine Man.\"\ntt1261046,RjyCXfloRJk,\"The Governor explains the rules of the Death Race to the racers, but when Danny steps out of line he blows his head up.\"\ntt1261046,rl6soHoCV8k,The racers begin their slaughter as the death race gets underway.\ntt1261046,-08xWZTUbNI,\"Violent J and Shaggy 2 Dope try to take down the Governor and the Reaper, but instead get their heads blown up.\"\ntt1261046,o0HHjpIa8fw,\"Queen B and Fred come to blows, each killing the other as Double Dee watches on.\"\ntt1261046,K3VNZOc_Wo4,Violent J and Shaggy 2 Dope take on some criminals who attack them in the street before discovering that Homeland Security has been blown up.\ntt1656186,GjhHy-kMAw8,\"Will strains to save Alison from a sinking cab, but Vincent's got other plans.\"\ntt1656186,Rsd5rA1MJSw,\"Vengeful at being shot in the leg and not getting his ten million dollars, Vincent kidnaps Alison, offering Will an ultimatum.\"\ntt1656186,Y9H1jFdPzD8,\"While Vincent deals with a meddlesome police officer, Alison makes a run for it.\"\ntt1656186,gLzsj4U96oM,\"Desperate to save his daughter, Will lashes out against the police detaining him.\"\ntt1656186,gv0zKrCQscA,\"With his daughter's life in the balance, Will chases down the killer's taxi cab, but he might've made a massive mistake.\"\ntt1656186,JNkxfdR9dXk,Will uses the many resources at his disposal to get what he needs from the FBI.\ntt1656186,Y3NbUilKutU,Vincent loses his patience with an unwelcome passenger while Alison works to escape from the trunk of his car.\ntt1656186,SplRDi4FOfs,Will races to save Alison while Vincent lays out his demands.\ntt1656186,QS-7heS_70c,\"Will, ten million dollars in hand, leads the police on a high-speed chase.\"\ntt1656186,aBxruaQibgE,\"Will and Vincent break into a bank while the Agent Tim Harland closes in, but he might not be smart enough to catch these two.\"\ntt1656186,oYuI54XUXkg,\"Will prevents Vincent from shooting a witness, and makes an escape, but his actions will have far-reaching consequences.\"\ntt2097307,GKAPU5e7miY,\"Mike buys time for his son to escape, and confronts Luke.\"\ntt2097307,kbS0Wkxr49I,Daniel and Mark rescue Emily from the bad guys.\ntt2097307,glrsnwHe_ng,\"Whiel Mark and Daniel argue, the bad guys capture Emily.\"\ntt2097307,9glAGvMjZiw,The police chase Daniel throughout the high school.\ntt2097307,1X2YeXs8FE4,\"While their home is invaded, Mike buys time so that Daniel can escape.\"\ntt2097307,Tctmuish8xI,Daniel and Emily have a unique first date.\ntt2097307,MhCI7MtnO3w,\"When a rescue attempt goes wrong, Daniel must decide between exposing who he truly is and saving his friends.\"\ntt2097307,2oLedbPVWzY,Daniel and Emily share a romantic moment after a date.\ntt2097307,tfiIjZGirC8,\"After breaking in to the pawn shop, Daniel does some sightseeing across the city.\"\ntt2097307,Q93k0-I6RC4,Mark and his friends show Daniel what they do for fun.\ntt2097307,_ODUt36beOo,Daniel evades the police throughout the rooftops of Detroit.\ntt1951265,zYZIHnjnGSQ,Top figures in Formula One discuss how much safer the sport has become in recent years.\ntt1951265,YKYtIhbcyuo,The men of Formula 1 discuss Senna and the accident that took his life.\ntt1951265,bCZVLjurkyY,One of the biggest rivalries in Formula 1 history pitted James Hunt against Niki Lauda.\ntt1951265,phwcul7F-Ro,Formula 1 drivers talk about Niki Lauda's fiery crash.\ntt1951265,O_rneC4S2G0,The Formula 1 drivers discuss Francois Cervet's death and the effect it had on them.\ntt1951265,-ryd97UQcrI,The drivers reflect on Roger Williamson's gruesome death and the danger involved in Formula 1 at the time.\ntt1951265,IyFhDTUhX80,\"Instead of being fierce rivals, Formual 1 drivers shared a bond that made them a family.\"\ntt1951265,U3ua5aIvPNg,\"One of the first major deaths of a Formula 1 was that of Jim Clark, at Hockenheim race track in 1968.\"\ntt1951265,kUMB4-8MTio,A first person view of Ayrton Senna driving in the Monaco Grand Prix.\ntt1951265,zdHVp6JC0mQ,\"Martin Brundle gets into a terrible Formula 1 accident, but walks away without a scratch.\"\ntt1951265,wQFjbrojx4I,\"Formula 1 icons talk about the first great driver of their sport, Juan Manuel Fangio.\"\ntt0844471,uuWIaDATbnE,Flint brings joy to the town as he makes it rain food every day.\ntt0844471,iGVsptoMsKE,\"To his surprise, Flint's machine begins to work and hamburgers fall from the sky.\"\ntt0844471,xAkmG6uqBd4,\"When Flint makes it snow ice cream, everyone goes out to play.\"\ntt0844471,pHrp2OM19t4,Flint struggles to shut down his machine and prevent a spaghetti tornado from destroying the town.\ntt0844471,8xZ0jOhAHMk,Flint and the others take to the skies to fight off the attacking food.\ntt0844471,HlyzLOPYuKc,Brent finds his place and fights off a swarm of attacking rotisserie chickens.\ntt0844471,FKW1h53hSxs,\"When the dam breaks, Earl saves the town from total devastation.\"\ntt0844471,z-fCbA2aAyg,\"Sam admits she has feelings for Flint. Then, she and Brent rush to make an escape while Steve fights off a pack of angry gummi bears.\"\ntt0844471,MwcXLL103vE,Flint uses one of his inventions to shut down the machine once and for all.\ntt0844471,1Qd2hicvxBc,Dad finally manages to tell Flint how he feels about him.\ntt1766094,HyY-bOuj9SY,\"Molly is captured by Armon, but she's not giving up without a fight.\"\ntt1766094,OBErTpjVCQQ,\"While investigating at Professor Talloway's house, Molly is attacked, but uncovers the key to the investigation.\"\ntt1766094,qV0h46fpZeA,Molly confronts the FBI and rallies her sorority sisters.\ntt1766094,5Qfba1tSw4k,\"At the sorority party Molly has to deal with Nicholas and Cotton's cheating boyfriend, all while trying to tail Alex.\"\ntt1766094,zYeRo6OtrYU,Molly and Nicholas get to know each other better as they walk around the block.\ntt1766094,tDzuDRGP0z8,Molly gets a surprise wake up in the middle of the night.\ntt1766094,0E1TIcc29vw,\"Molly makes plans for a date with Nicholas, awkwardly.\"\ntt1766094,PkqrMMqSNaA,Molly unpacks her belongings and meets her roommate Becky.\ntt1766094,v7r2OuigZoQ,While walking through the campus Molly meets a handsome young man with a motorcycle.\ntt1766094,itIt0nSWDGI,Molly gets a warm welcome entering the KKZ sorority house.\ntt1766094,4cH4xyezQv8,Molly gets caught snapping photos of the state senator and his lovers.\ntt2024506,i9OLZ8rhtlk,Katherine and William learn that Scott has actually been battling a brain tumor and that he is now in a coma.\ntt2024506,zEGnL7wKzXE,\"After visiting Scott, Katherine realizes that she should try to connect with her husband William.\"\ntt2024506,60QyvomMug0,\"The Henderson family has a strained lunch together, but realize that at the end of the day they are family.\"\ntt2024506,GZACBCZQFt8,Charles gives his presentation on the Aztecs in front of the whole school.\ntt2024506,ZLIY6uk1pxI,Katherine scolds Scott after he throws a party at her house without her permission.\ntt2024506,AcOMZUiVuJM,Scott and Katherine reminisce about their past relationship while smoking a joint.\ntt2024506,qK-5zQpICPw,Scott gives Charles some advice about talking in front of a crowd.\ntt2024506,MFbZe0ZJn04,Scott visits Charles at school to make amends.\ntt2024506,P785O3-r7A8,\"When Scott misses dinner, Katherine confronts him.\"\ntt2024506,sOmJgmCvISY,\"Scott surprises the Hendersons, by coming to visit after eight years.\"\ntt2024506,5N8eh_84W4w,Katherine confronts Scott and asks him why he is even there.\ntt1374992,rCLzT9M7rCE,Adam and Eden try to evade being captured by the border guards.\ntt1374992,WefEB2u3fwI,Eden is reunited with Adam and she surprises him with amazing news.\ntt1374992,MsHusoTYzTA,Adam and Eden reunite at the edge of their worlds.\ntt1374992,aBFi3S-t9R8,Adam and Eden travel to the edge of their worlds to meet one another.\ntt1374992,fS4vBoC4Di0,\"Just as Adam and Eden are reunited, border guards arrive to take Adam.\"\ntt1374992,nXqveIQdCvE,Adam's shoes start to burn after staying in Up too long.\ntt1374992,kgYskjeMVOA,Pablo confronts Adam about the thought process behind his plan.\ntt1374992,mj04qm_DEp8,\"While enjoying a wonderful day in the woods, Eden and Adam are discovered and must escape.\"\ntt1374992,kv9QW8UYCDE,Adam gets into an argument with Albert about working for TransWorld.\ntt1374992,xfdye3eXF8s,Aunt Becky makes her incredible flying pancakes for a young Adam.\ntt0770828,FGL4-sXko9w,Superman tries to save Metropolis from Zod's wrath.\ntt0770828,5h9E5SmLCVM,Jor-El tries to retrieve the Codex before General Zod.\ntt0770828,kjtPUnPa0LQ,Colonel Hardy sacrifices himself to destroy the World Engine and Superman saves Lois.\ntt0770828,lpod4qQzO7Q,Superman and Zod fight to the death.\ntt0770828,A6PpUgfZcRU,The humans' effort to intercede in the fight between Superman and the Kryptonians proves to be futile.\ntt0770828,sQA199D8U2g,Superman learns how to control his power and fly.\ntt0770828,BIdtUDoR5A0,Superman battles a couple of Zod's Kryptonian soldiers in Smallville.\ntt0770828,U2SdWVntd-o,Zod kills Jor-El out of anger when Lara launches their baby off Krypton with the Codex.\ntt0770828,yodVQ5QAc88,\"To keep Clark's powers hidden, Jonathan refuses his help when a tornado is about to engulf him.\"\ntt0770828,S9U3ajjpH5A,Superman destroys Ludlow's truck after resisting the urge to fight him in the bar.\ntt0067992,fpK36FZmTFY,Willy Wonka venomously explains to Grandpa Joe why Charlie will not receive the lifetime supply of chocolate.\ntt1646987,Tkjw0XB9Xuc,Perseus rises to the challenge when a fire-breathing Chimera attacks his village.\ntt1646987,BKgd8Q3X0AA,\"Zeus fails to convince Hades to rebuild Tartarus's walls to contain Kronos. He's then attacked by his brother, and betrayed by his son, Ares.\"\ntt1646987,-IV-ZZwXUkw,Perseus and his fellow warriors battle a clan of angry Cyclops.\ntt1646987,CsukLjjPv-U,\"When Ares begins an attack, Hephaestus sacrifices himself so that Perseus and the others can enter the labyrinth.\"\ntt1646987,EQqdhMcUSAw,Andromeda and Agenor lead the charge into battle against Kronos and the Makahi.\ntt1646987,xihdBpPICZY,\"Zeus, Perseus, and Hades use their power and might to defeat the volcanic monster Kronos.\"\ntt1646987,CgmI90T4Efk,\"Ares and Perseus come to blows in a devastating battle, while Andromeda tries to lead her army against the Makhai.\"\ntt1646987,jNPBfvcLIMs,Perseus struggles to free Zeus as Kronos awakens.\ntt1646987,Q6jbNsSNxf4,\"Perseus defeats the vicious Minotaur, allowing him to escape the labyrinth.\"\ntt1646987,qmJiZfD6n9M,\"When Ares nearly attacks Helius, Perseus rises to protect his son and defeats the god once and for all.\"\ntt2383068,CjqKicoWqZ0,Caroline poisons her brother Patrick as the whole commune commits suicide.\ntt2383068,uYBCAaCGGcc,Jake looks through the dying commune for his friend Sam only to find a frantic Caroline instead.\ntt2383068,AYxHnjsJOik,Jake finds Sam tied to a chair with Father blaming them for everything.\ntt2383068,nIsM8bP-GHQ,Father convinces his followers to commit mass suicide by poison.\ntt2383068,byrLv_402BU,Jake and Sam start to get suspicious of the commune when they can't find their friend.\ntt2383068,m5dfATd_ZY8,\"Jake, Sam and Patrick meet up with Caroline who shows them around the commune.\"\ntt2383068,56F_nTxTQj8,\"Father, the leader of the commune, turns the interview around on Sam.\"\ntt2383068,mGJ-2YWYrgE,\"Jake, Sam and Patrick have some difficulty making their way to the commune.\"\ntt2383068,OGG3HuI6HcY,\"As Jake, Sam and Patrick prepare to leave they notice a bunch of commotion in the middle of the commune.\"\ntt2383068,2pFBwbyyNac,\"Sam interviews Father, the highly praised leader of the commune.\"\ntt0105698,vf2EeAvsHAU,\"Brian gets skewered by a Universal Soldier and Ellison puts him out of his misery, much to the dismay of the other soldiers.\"\ntt0105698,KJ7Fv2QvzpI,\"After a close encounter with a Universal Soldier and Kate's booby trap experience, Major Clifton sets the course for the next leg of their journey.\"\ntt0105698,h6jcrXOs088,\"Tensions are running high as the soldiers argue and the scientists voice their frustrations. It appears things might be looking up, though, when Lt. Clarke gets a call from their rescuers.\"\ntt0105698,0Cpa6Zn7ffA,Kate finds a way to destroy the nearly indestructible robot.\ntt0105698,66f94DU8ab4,\"Kate and Joe think their work is done, but Kate must destroy a Universal Soldier after it kills Joe.\"\ntt0105698,MOA_WeKu76o,Lt. Clarke blames Dr. DeMicco and makes him explain the Universal Soldier project just before another attack forces the troops to scatter.\ntt0105698,3JF7tS3pxmc,\"The guys are no match for the Universal Soldier, but Ellison manages to escape after fighting him one-on-one.\"\ntt0105698,m8A9XOElA2o,Kate learns that Anne has been testing them the entire time.\ntt0105698,yQYUTyaODfE,Lt. Ash kills himself after he's mortally wounded by a Universal Soldier.\ntt0105698,xPYQOuxYES0,Lt. Clarke and Lt. Ash make it to the armory and Kate fights the Universal Soldier.\ntt0067992,4EF1zYFHbus,Augustus Gloop's craving for chocolate gets him stuck in a tight spot.\ntt0067992,Oa6OoTVXG6E,Grandpa Joe hops out of bed upon hearing the news that Charlie has found the golden ticket.\ntt0067992,HcpDdWIaAuE,Bill shares his candy with the children and teaches them the wonder of Willy Wonka.\ntt0067992,8Yqw_f26SvM,An impetuous Violet ignores Willy Wonka's warnings and tries a piece of his experimental chewing gum.\ntt0067992,LIYNk4ARUR8,Willy Wonka sings a tune as he welcomes the five lucky kids and their parents into his chocolate factory.\ntt0067992,5wAlQf4WdiE,Veruca breaks into song to let everyone know about her insatiable desires.\ntt0067992,pvS3j8VtanM,Mrs. Teevee gets an unexpected surprise when her son Mike becomes the first human to be transported via WonkaVision.\ntt0067992,XB401RfGMlM,Willy Wonka guides the group into a dark tunnel full of strange kaleidoscopic imagery.\ntt0067992,1Fxq_n8e1qA,Charlie finds the last golden ticket after buying a Wonka Bar at Bill's Candy Shop.\ntt0024216,p03u3v6GF-Y,\"While Kong is distracted fighting another dinosaur, Jack makes his move to save Ann.\"\ntt0024216,1vNv-pE8I_c,\"While the crew flees through the jungle, they are attacked by the monster known as Kong.\"\ntt0024216,0JVZ0bE8hpk,\"While searching for Ann, the crew is attacked in the swamp by a Brontosaurus.\"\ntt0024216,DujyJ1EDft8,\"After breaking free from captivity, Kong climbs the New York City hotel in search of Ann.\"\ntt0024216,8qkahQVFzMI,King Kong climbs New Yorks' Empire State Building with hostage Ann Darrow and a battle ensues.\ntt0024216,zct1tPK1Zk0,Panic and chaos ensue after Kong breaks free of his chains to wreak havoc throughout New York City.\ntt0024216,MMNICLfHE3M,King Kong falls to his death after an aerial attack.\ntt0024216,m2cUbp6Vkfs,Denham captures Kong after the giant gorilla goes on a rampage through the island.\ntt0024216,yvD3X3RcK3Y,Kong protects Ann Darrow from an attacking Tyrannosaurus Rex.\ntt1709143,XvZhDq1NRhk,\"Vincent searches for Lane, who has decided to commit suicide after discovering that she is infected.\"\ntt0024216,rnaCi4rBfqw,Ann is sacrificed by the island's natives to be Kong's new bride.\ntt1709143,N1HQEIaRZxk,Vincent discovers an infected Irwin on the rescue ship.\ntt1709143,93Kzx7azL6c,Vincent sees the rescue crew land on Mars and all the zombie-like monsters waiting for them.\ntt1709143,eyvwHF7NIGc,The air is sucked out of the base at the same time one of the zombie-like monsters breaks in and attacks Kim and Irwin.\ntt1709143,7lQT4xGTpIA,\"When their rover gets low on power, Irwin volunteers to investigate a nearby second one, leaving Vincent and Lane to wait for him.\"\ntt1709143,blWwfkSF89o,\"Vincent, Lane and the others try to help the Captain after he was attacked by one of the zombie-like monsters.\"\ntt1709143,GLOcJyFEXIw,Vincent investigates the cause behind the power failure at the second base.\ntt1709143,EbMddMJU97g,Kim fends off the zombie-like monsters while Charles and the rest of the crew arrive at the base unaware of the danger.\ntt1709143,19j24of8C_w,Kim and Richard prepare for the arrival of two crewmembers they previously thought were dead.\ntt1709143,SEQuHP-wL5Y,Scientist Marko Petrovic and crewmember Richard Harrington investigate a discovery after lying to the rest of the crew about it.\ntt1578882,kJ-wkP8Xm40,\"When Curtie Church confronts Boss Katha about Mae, he finds out that Mae has actually been dead thirty years.\"\ntt1578882,7HZj_fM4yTg,\"With the help of Mae, Curtie Church decides to stay in Bangkok to help the girls.\"\ntt1578882,2as1htsiNxY,\"Curtie Church successfully kills Advisor Bhun in the woods, only to realize that it was a dream.\"\ntt1578882,pjJU7RkSrr8,Boss Katha tortures Jimmy to get information out of him.\ntt1578882,qerH8bjHVnI,Curtie Church visits a brothel to confront his employer Rajahdon.\ntt1578882,tp_TZ--JHEA,Curtie Church talks to Boss Katha over the phone and coerces Jimmy into giving him a new gun.\ntt1578882,RLsGDXjTW2w,Curtie Church goes to the Chang Cao Gang building and tries to take everyone out.\ntt1578882,f6kcBGKxGtE,Curtie Church runs after Jimmy to ask for a favor.\ntt1578882,F-q3C6jSZYQ,\"Jimmy shows Curtie Church his gun collection, which features guns used in movies.\"\ntt1578882,3nDCPEcEuPs,Jimmy shows Curtie Church his exclusive gun collection.\ntt2279339,AGY5gNpoPfI,\"Eleanor and her parents argue about their relationship and her \"\"engagement\"\" to Joe.\"\ntt2279339,DECt9uTxaLE,Eleanor and Joe flirt while making up the story of how they fell in love.\ntt2279339,9dmlcGZta9E,Sam and Charlotte argue about their past and the state of their marriage.\ntt2279339,RAsK38Vdep4,\"When Sam and Charlotte pick up a hitchhiking teenager at the side of the road, it causes them to reminisce about their past and the beginning of their relationship.\"\ntt2279339,SELFeneZL04,Joe envisions the beautifully romantic moment he wishes he could share with Eleanor.\ntt2279339,jPfje0jZeMo,\"Charlie shares his first kiss with Lauren, only to be tormented by a bully at the mall.\"\ntt2279339,LAk5KEGLzmc,Emma tries to help Percy process his past and his sexuality by pretending to be his mother.\ntt2279339,KwWHPqidGuA,The Coopers finally realize all of the happiness they have in their lives and share a heartfelt moment dancing together in the hospital cafeteria.\ntt2279339,zzORtbUYE4c,\"Eleanor realizes she has feelings for Joe and chases after him through the hospital. Then, they share a kiss and a romantic Christmas moment.\"\ntt2279339,uRjbDsGz2tc,Bucky follows Ruby into the kitchen at her diner to express his feelings for her and tell her how great she truly is.\ntt2279339,z7fOP7aW1P4,\"Sam shares an emotional toast with his family. Then, Joe begins to say grace, but is interrupted by a special gift from Rags.\"\ntt5323662,ZMplRnotp8M,\"Jerry kidnaps Dr. Warren and takes her to a remote field, where he forces her to give him the therapy he needs.\"\ntt5323662,Gk_2euKF9MY,\"Jerry passes on and succumbs to the voices in his head, who perform a cheery song and dance number.\"\ntt5323662,xllpnvAmnHE,\"Jerry talks to his cat, dog, and Fiona's severed head to determine if he is truly a serial killer.\"\ntt5323662,bJSDrRcwwKQ,Jerry recalls his involvement in the gruesome death of his mother.\ntt5323662,SaaTUj7m8e4,\"After Jerry kills Alison, all the voices in his head offer an opinion.\"\ntt5323662,ml_zSw6yWOE,Jerry tries to get Lisa to calm down after she discovers that he murdered Fiona.\ntt5323662,Ax-iwIoIxjY,\"When the police arrive at his apartment, Jerry escapes through the vents, causing a gas leak and explosion.\"\ntt5323662,pYmo3PXF_T4,\"After he hits a deer with his car, Fiona runs away from Jerry, causing him to lose control.\"\ntt5323662,UY0nYr-dXEI,\"After a meeting with his pyschiatrist, Dr. Warren, Jerry participates in an office conga line and talks to his pets about the woman he has fallen for.\"\ntt5323662,H5I1DyJ3w1g,\"Jerry cleans up the mess he made from killing Fiona, but her severed head begins speaking to him.\"\ntt0800320,o4ARk91_ptU,\"Sent by Hades, Calibos attacks the soldiers and tries to kill Perseus.\"\ntt0800320,38AYeNGjqg0,Zeus orders Hades to unleash his monster on the world.\ntt0800320,jdp_wn_UrcE,\"After Calibos stabs Io, Perseus uses his Olympian sword to seek vengeance.\"\ntt0800320,GrIJLWISdlQ,Perseus defeats the Kraken just as it is about to devour Andromeda.\ntt0800320,MUEhAUpa7iA,Perseus banishes Hades back to the underworld and rescues Andromeda.\ntt0800320,Bx9JRDKjrwA,\"Perseus, Io, and the Argos soldiers visit a group of witches to find the answer to killing the Kraken.\"\ntt0800320,GWxf8Hb-Xis,\"Hades comes to Argos and threatens to release the Kraken on its people unless they sacrifice their princess, Andromeda.\"\ntt0800320,FY00zwMZsqM,Perseus defeats Medusa and takes her head.\ntt0800320,2OXtHJgLJr0,Perseus watches helplessly as his family is murdered by Hades.\ntt0800320,K57aIbpF_Co,Perseus and the Argos soldiers fight off giant scorpions.\ntt0120912,kRNhyHiBUXs,J is forced to take Frank into the field with him as his new partner.\ntt0120912,lr7pyggTmmY,J visits K at the post office and re-introduces him to alien lifeforms.\ntt0120912,W_EYrVGI7LQ,J saves the passengers of a New York subway from a massive attacking alien.\ntt0120912,F4QzrKakPmU,Jeebs uses his deneuralyzer machine on K to bring his memory back.\ntt0120912,nwrLvq5W58o,J fights a gang of aliens looking for K.\ntt0120912,A9sd10CHAP8,K and J visit a tiny civilization inside a locker.\ntt0120912,5NY_8ulSutc,J goes toe to toe with the alien Jarra to rescue K from Serleena's clutches.\ntt0120912,KNdmBWoCfAc,K switches the car to hyper speed during a chase with Serleena.\ntt0120912,ZdhqVdIsBSE,K and J go to battle against Serleena and Jarra.\ntt0120912,PhLfIqO2SLI,\"When they are attacked by a giant tentacled alien, Laura is forced to leave J behind to save the planet.\"\ntt1392190,Mk_C5QH2Eb8,Max and Furiosa face War Boys using harpoons to stop the War Rig and poles to snatch the wives back.\ntt1392190,QJX3XvkTJQk,Max convinces Furiosa to do the unthinkable - go back and take over the Citadel.\ntt1392190,q38QzB5dw0A,\"In the midst of battle, Furiosa faces off against Immortan Joe.\"\ntt1392190,y1gkMNjkFiQ,Furiosa and Max try to survive the onslaught from Immortan Joe's forces.\ntt1392190,AWvRcWDr5y8,The Bullet Farmer ceaselessly attacks Max and the women at night so Max takes matters into his own hands.\ntt1392190,KS_KStIPiwU,\"Immortan Joe tries to take back his wives from Furiosa, but tragedy ensues.\"\ntt1392190,ZnIkMhuNmjo,Furiosa and Max try to survive an attack from a motorcycle gang.\ntt1392190,Vcgn4EY5_S8,Max meets Furiosa and the five wives in the desert and tries to get them to cut off his chains.\ntt1392190,W28kNzz50pw,Max tries to escape while Nux tries to stop the War Rig inside a sandstorm.\ntt1392190,k4Lpr1sqKbQ,\"Furiosa fends off an attack on her War Rig, with a little help from Nux and Slit.\"\ntt1985949,l7FkN4ooYvA,Red meets his bizarre new anger management classmates.\ntt1985949,BGEFW4kc5EQ,Red loses his temper and ruins a child's hatchday.\ntt1985949,lF3IIOXn5qU,The pigs introduce the birds to the slingshot by sending Red flying through the air.\ntt1985949,FUWdPWW4csI,Leonard arrives from Piggy Island to make friends with the birds.\ntt1985949,LCljgWh4L8Y,Red and the guys head out to find the legendary Mighty Eagle.\ntt1985949,Boona4-qLSE,\"Chuck and Bomb play in the Lake of Wisdom, only to learn that Mighty Eagle uses it as his personal toilet.\"\ntt1985949,KKfz8C48EJk,Red and the birds fight Leonard and the pigs to save the eggs from being eaten.\ntt1985949,Jj-mAiTMvX8,Red and the guys try to sing Mighty Eagle's terrible theme song.\ntt1985949,dmqo-EuR8Cw,Red uses a slingshot to fly and smash the pig's castle.\ntt1985949,T5CoWL_wdC4,Red uses dynamite to defeat Leonard and save the eggs.\ntt2379713,y_eZw262fhM,Bond tries to survive an attack by Hinx on the train to Oberhauser's base.\ntt2379713,iM0hP-LZIvI,Bond tries to rescue Madeleline before the bomb detonates.\ntt2379713,bOP-THNe4m8,Madeleine takes the time to help Bond escape from Blofeld's compound.\ntt2379713,Ih-zPWi9INA,Oberhauser explains his past relationship with Bond and reveals his new identity.\ntt2379713,wOuk6V3Dj5A,\"After stealing a plane, Bond aims to rescue Madeleine from the dangerous Mr. Hinx.\"\ntt2379713,A7HmqwyZ3oA,Bond is pursued by Hinx throughout the streets of Rome.\ntt2379713,g9S5GndUhko,Bond tries to finish off Marco Sciarra while surviving a bumpy flight.\ntt2379713,9eosfNwMpMs,Bond infiltrate the Spectre meeting in Rome.\ntt2379713,kEnK0ZdMThc,Bond takes out a city block while trying to take out Marco Sciarra.\ntt2379713,J-OLwCyAtBc,Bond saves Lucia from her exectioners and then seduces her to get more information on the Pale King.\ntt1409024,zUL_yawY6Ks,\"J, having just returned from the past, makes sure the universe is back in order and thanks K for all he's done.\"\ntt1409024,bCLTAaa3qMM,\"With help from his girlfriend, Boris the Animal breaks out of space prison.\"\ntt1409024,JLH_smT7Qog,J and K reprimand Mr. Wu for using illegal alien food at his Chinese restaurant.\ntt1409024,M3FtlKHZXhs,\"K makes a less than moving speech at Zed's funeral. Then, O makes a speech in an interesting alien language.\"\ntt1409024,WIr_dCgNAjM,J and K fight off a gang of aliens in a Chinese restaurant.\ntt1409024,Y-cCAY2hGPs,\"Boris the Animal meets a pair of hippies at Coney Island. Then, J is racially profiled by a pair of cops.\"\ntt1409024,nSO22k4XGUo,J and K draw information out of an alien by bowling with his head.\ntt1409024,gDPJG9FP3iM,Jay learns the truth about his father and his past.\ntt1409024,a3Xm0KpUYj4,J and K pursue Boris the Animal on a pair of high-tech motorcycles.\ntt1409024,Xd5ESRqpz3E,\"J uses time travel to predict Boris the Animal's fighting tactics and defeat him. Then, K shoots off the other Boris's arm, ending the battle.\"\ntt0120685,xP7yIQladb0,\"Nick and the others get trapped in a tunnel by Godzilla. Then, the beast catches their cab in his snapping jaws.\"\ntt0120685,jB9WGpVrYBs,Animal nearly misses being completely squashed by Godzilla's giant foot.\ntt0120685,VV97_cn54bQ,Godzilla emerges from the river to reign destruction upon New York City.\ntt0120685,f_LDdElm9fc,\"The military uses all their firepower on Godzilla, to no avail.\"\ntt0120685,xiwtX0NC0uA,\"The military tries to take Godzilla down with a pair of missiles, but instead destroys the Chrysler Building.\"\ntt0120685,_Z_n2Ray64o,\"The military takes their battle with Godzilla underwater, attacking with submarines and torpedoes.\"\ntt0120685,4IsISIQpKTc,\"The military uses all their weapons and might, but they are unable to take out Godzilla.\"\ntt0120685,DnGpfWa6FAQ,Nick and the others are attacked by a swarm of newly hatched Godzilla babies.\ntt0120685,GKuPSf9P3tw,The military is left with no choice but to annihilate Madison Square Garden to kill Godzilla's babies. Nick and the others make it out just in time.\ntt0120685,_JcFaIDdphE,\"Godzilla gets caught on the Brooklyn Bridge, leading to his defeat.\"\ntt1985966,3PBo1ef-18Y,Flint and the gang discover an island of living food animals.\ntt1985966,kJlqNXhZE_I,Flint and Sam find a mischievous living strawberry and name it Barry.\ntt1985966,YjewWZ3JWiE,Flint and Sam recruit their friends for a new mission in Swallow Falls.\ntt1985966,o-OKsTWIVxk,Flint and Chester V use their inventive underwear to get the hard drive they need and avoid getting electrocuted.\ntt1985966,V3Tlo0EutEQ,Flint and his friends are attacked by a rampaging cheeseburger spider monster.\ntt1985966,ZawJ9EBOLVk,Flint and the gang are attacked by a giant taco monster.\ntt1985966,Ew8AJsPAyLg,Flint and Dad work together to build a fishing boat.\ntt1985966,xswJpwb7Afs,\"Sam discovers that the foodimals are nice, not mean. Then, she and the gang are frozen by Chester V's Safety Sentinels.\"\ntt1985966,8osP7KRacWk,\"Flint and the gang bring the machine back to life and create a happy world for the foodimals. Then, Flint goes fishing with Dad.\"\ntt1985966,DHWbxxpKb04,Flint and the gang use friendship and science to defeat Chester V.\ntt6343314,jv6-p4kphmc,Rocky and Adonis climb to the top of the stairs at the Philadelphia Museum of Art.\ntt6343314,4WgLRH-FpWQ,Adonis and 'Pretty' Ricky Conlan fight in the final round of the championship bout.\ntt6343314,rvOq4hFIRJg,\"After getting knocked down, Adonis gets a second wind and sets out to prove himself.\"\ntt6343314,W4efgyM82kE,Rocky gives a last minute speech to Adonis and then the Creed team makes their entrance into the stadium.\ntt6343314,esFVrrZCvwA,Adonis brings the city with him on his run to Rocky.\ntt6343314,wnwsSOrmEKI,Adonis finds out about Rocky's cancer diagnosis.\ntt6343314,YYPpg3_Y4XY,Adonis takes on Leo 'The Lion' Sporino in his first professional fight.\ntt6343314,UQ15FRltlsY,Adonis and Bianca get to know each other over some cheesesteaks.\ntt6343314,jyNtMzHeJ6I,Rocky starts to train Adonis by using his old school approach.\ntt6343314,Fjr_CQHJiCo,\"Adonis asks Rocky to become his trainer, and reveals himself as the son of Apollo Creed.\"\ntt6343314,W-cZK60yWbY,\"Adonis sets out to prove himself to \"\"Little Duke\"\" and the rest of gym.\"\ntt0097647,3Sz7dbX2kTY,Daniel shows Mr. Miyagi the location he has chosen for Miyagi's new bonsai store.\ntt0097647,C58_gjlogWY,\"Daniel and Jessica get trapped at the bottom of a steep cliff by Mike. Then, Mike does the unthinkable and breaks the bonsai tree.\"\ntt0097647,ymbKDavsVaU,\"Daniel and Jessica climb down a dangerous cliffside to retrieve Mr. Miyagi's bonsai tree. Then, Mike steals their ropes and traps them in a cavern below.\"\ntt0097647,xCWkAXGz8W8,\"Mike attacks Daniel during a date with Jessica, but Mr. Miyagi arrives to save the day.\"\ntt0097647,MPhIzvgB31Y,\"When Mr. Silver bribes a young punk to pick a fight with Daniel, Daniel loses his cool and punches him in the face.\"\ntt0097647,e2dAiCB6igE,\"When Mr. Silver teaches Daniel to channel his rage into his fighting, Daniel loses it and destroys the training dummy.\"\ntt0097647,TcndF9QpYAU,\"When Daniel grows upset with his own behavior, Mr. Miyagi uses a bonsai tree to teach him about his inner strength.\"\ntt0097647,SPMpDCxhKGU,\"When Mr. Silver and Mike attack Daniel, Mr. Miyagi arrives to put them in their place.\"\ntt0097647,7GrURVFAC2I,Daniel takes a beating as his competition with Mike gets underway.\ntt0097647,_S6GYF1B8Yk,\"With inspiration from Mr. Miyagi, Daniel overcomes his fears and defeats Mike in the karate competition.\"\ntt0091326,U2HWD9dymUk,Kumiko performs a traditional Japanese tea ceremony for Daniel.\ntt0091326,7KF4iJzBVWM,\"After Daniel's legendary karate fight, Mr. Miyagi teaches Kreese a lesson.\"\ntt0091326,XemAlj9_qKE,Mr. Miyagi teaches Daniel a technique to help him focus.\ntt0091326,gmElew2NIS8,\"When Chozen attacks Kumiko at the Obon Festival, Daniel agrees to fight him to the death.\"\ntt0091326,TSPaaPqteCU,Daniel helps Mr. Miyagi deal with the death of his father.\ntt0091326,iKRpMjVJKZc,Chozen bets Daniel that he can't karate chop through six blocks of ice. Mr. Miyagi takes the wager and Daniel proves himself.\ntt0091326,-JNyHnAi8zk,\"During a torrential downpour, Daniel rescues a little girl trapped at the top of a tower.\"\ntt0091326,DPmHrgbe3xo,Daniel and Mr. Miyagi venture into the thick of a dangerous storm to rescue Sato from being crushed.\ntt0091326,K7I9ERiBZrc,\"When Chozen attacks Daniel with a spear and destroys his training dojo, Mr. Miyagi uses his superior karate skills to teach them a lesson.\"\ntt0091326,nKISdYhQcvw,Daniel defeats Chozen in a life or death karate showdown.\ntt1234721,UFuxiZFwDPs,Dr. Norton shows RoboCop the true state of his body after his accident.\ntt1234721,GlCN1EPAoHI,\"When RoboCop wakes up, he begins to panic at the sight of his new form.\"\ntt1234721,ti9jg0JOK2I,RoboCop aces a high-level training simulation.\ntt1234721,gvuZShYhzX8,Dr. Norton succeeds at stripping RoboCop of his emotions just moments before his unveiling.\ntt1234721,_emU23tTUAw,RoboCop begins to short circuit when his emotions conflict with his programming.\ntt1234721,QLTlJDjPfHI,\"In a laboratory simulation, RoboCop dismantles an entire drug operation.\"\ntt1234721,TxvqZhVwrSY,\"Despite his robotic nature, RoboCop apprehends Sellars in the name of protecting his family.\"\ntt1234721,GtSNSaW9IRI,RoboCop breaks his way through heavy forces in an effort to rescue his family.\ntt1234721,sTbJQwezQZY,RoboCop confronts his police force for betraying him and working with Vallon.\ntt1234721,qyvR5lglbTE,RoboCop infiltrates Vallon's hideout.\ntt1217613,7jz_uA1dv9w,Nantz and the other officers are attacked by the aliens for the first time.\ntt1217613,m49ub45c8AI,Lenihan is ambushed by an alien hiding in a swimming pool.\ntt1217613,rd8JDPjEoE0,\"Nantz bravely fights his way through alien fire to destroy a spacecraft, only to learn it was an unmanned drone.\"\ntt1217613,JYVhLnjKKC8,\"During an intense shootout with the aliens, Rincon is shot and Nantz is forced to leave Martinez behind.\"\ntt1217613,Q0okgIEkRJM,Nantz and his fellow officers save a bus full of civilians while taking heavy fire from the aliens.\ntt1217613,TjY8crETM6s,The military uses their tanks' brute force to run right through the aliens.\ntt1217613,t6nqp5MdMp0,The military hits the aliens with a devestating blow.\ntt1217613,yrfpRh2SqIw,Nantz and his fellow officers take down the aliens.\ntt1217613,xSNkZYKC_c0,\"As Nantz and the other officers attempt to travel secretly through the sewers, they are discovered by the aliens and engage in a firefight.\"\ntt1217613,06Its9LhIHQ,Nantz and the military continue their explosive battle with the aliens.\ntt2637294,X5HvuYGCyzQ,\"At an extravagant party, Lou gets shot in a sensitive area.\"\ntt2637294,ttOuvmYYeps,\"Lou, Nick, and Jacob are interviewed for a TV special about their success.\"\ntt2637294,LGnwTTGzjpk,\"The guys meet Adam Jr.'s fiance, Jill.\"\ntt2637294,62z8SYqpuZ4,Lou picks a fight with a highly advanced smart car.\ntt2637294,GN1LhsTj5CQ,A studio audience votes to make Nick have sex with Lou.\ntt2637294,UzTveNwweRM,Adam Jr. takes a crazy drug at a party and has an epic hallucination.\ntt2637294,lKqS8lnlJsc,\"Lou does some drugs at a party while Nick sees his music video for the \"\"Webber Strut\"\".\"\ntt2637294,rnTrWINYDsM,\"Just before they have sex on TV, Lou uses a lifeline and replaces himself with Adam Jr..\"\ntt2637294,_KC5AJdRgBs,Lou and Nick get sprayed in the face by a strange medicine inside Adam Jr's testicles.\ntt2637294,gYdm3PIHyaM,\"Adam Jr. attempts to kill Lou, but is unable to do it. Then, he meets Jill, his future wife.\"\ntt2967224,9AtlQm1jVpM,\"When Riva learns that her husband is dead, Cooper fails to control the situation.\"\ntt2967224,wXer1Hj8hR4,\"Despite the fact that he is a fugitive, Cooper falls for Randy.\"\ntt2967224,NpSkrZRlGbk,\"When Cooper falls under the influence of some \"\"baking powder\"\", she and Riva go shopping for disguises.\"\ntt2967224,BiukHSW8Az4,Cooper rescues Riva from a shootout at her mansion.\ntt2967224,tdvj1iOOUE0,Cooper picks up Riva after 3 months in jail.\ntt2967224,VnAmEovifpU,\"Cooper and Riva use their feminine charm to distract a redneck, causing him to shoot off his own finger.\"\ntt2967224,UUzW7NqutUg,Cooper and Riva escape the police.\ntt2967224,Fy988XyqFhM,\"While being chased, Cooper commandeers a bus full of seniors.\"\ntt2967224,lwhQK2kDfBM,\"When Riva turns on Cooper, the two get in a cat fight over Cooper's gun.\"\ntt2967224,xpFArzEh9Dk,Cooper helps Riva take down the man who killed her brother.\ntt1355630,giGWC-o1mvw,\"Just when life goes by like any normal day, Mia and her family get into a horrible accident, and suddenly everything has turned into chaos.\"\ntt1355630,2aqgKA3uUwM,\"Mia discovers that her little brother, Teddy, did not survive the car accident.\"\ntt1355630,hhRIhD6BvMo,Mia discovers her passion for the cello.\ntt1355630,oUpzcxwFI6o,Adam sneaks into Mia's bedroom and the two share secrets about their family.\ntt1355630,TajTfrf2yXs,Mia and Adam share a special moment together on Halloween.\ntt1355630,-PFdr0SiAEw,Mia auditions for the Juilliard School of Music.\ntt1355630,9OhXJOQioeU,Mia and Adam argue about the future of their relationship.\ntt1355630,ZNnk9L2LSZI,Gramps tells Mia that it's ok if she wants to pass on.\ntt1355630,EBnn_Y29Pks,Adam plays Mia a song he wrote for her and she chooses to wake up.\ntt1355630,IYVg4o3KVPo,Mia shows off her prowess on the cello at a family bonfire.\ntt0089853,sNrOsj0xDPs,\"Cecilia is heartbroken when she realizes Gil left without her, so she finds solace in a new film.\"\ntt0089853,vR1WPNzcXHE,Cecilia chooses Gil and Tom returns to the screen for good.\ntt0089853,nfzJCrxKVMU,\"Tom heads back into the movie, but changes the story when he brings Cecilia back with him.\"\ntt0089853,vZlWLj1-eC4,\"Gil starts to fall for Cecilia, who is enchanted, but confused about her feelings.\"\ntt0089853,bryVfEK0U4k,\"Emma and the ladies try to convince Tom to accept a free sex session, but his heart belongs to Cecilia.\"\ntt0089853,QanZzw7zh7M,Tom defends Cecilia in a fight against Monk.\ntt0089853,_T6r7w_m504,\"Gil's worried that Tom is out in the world messing up his life, so he's thrilled to meet superfan Cecilia to learn what his character's been up to.\"\ntt0089853,pLC_hRDO7Hk,\"Tom notices Cecilia watching his film over and over again. Curious, he steps off the screen and leaves the theater with her.\"\ntt0089853,cyEqzALZmeA,\"Tom learns that his money is useless in the real world, cars need keys to run, and lovemaking doesn't include a fade-out.\"\ntt0089853,75ovyrTzuYY,The actors panic and don't know what to do when Tom walks off screen.\ntt3850590,yXyrZImvR7c,\"Just as the Engel family think they've won the fight, Elves arrive and kidnap Aunt Dorothy and the baby.\"\ntt3850590,ElvTXO2A3Uw,The Christmas holiday is upon us and all the joy and care that comes with it.\ntt3850590,sl1Jjq82XUA,\"Tom, Sarah and Linda find a child eating Jack-in-the-Box in the attic while Howard battles homicidal gingerbread men.\"\ntt3850590,UVGzuUm3uzs,\"After Max wakes up to find everyone alive and things back to normal, he starts to think it was all just a horrifying dream...\"\ntt3850590,U0xf89hs1Mc,Howard fights off gingerbread men in the kitchen while Linda goes on a rampage against all the evil toys in the attic.\ntt3850590,mFkxrTfAkq8,One by one Max's family is taken from him by Krampus's minions until he's the last one.\ntt3850590,oUXPpeE2pv4,\"When the family decides to escape house, Omi stays behind to face Krampus.\"\ntt3850590,M8s2txilG08,Omi tells the story of how she came to lose her family to Krampus.\ntt3850590,oA-dHypOn9M,Howie Jr. gets lured up the chimney by an evil gingerbread man and Sarah and the others try to save him.\ntt3850590,aPQcQ4IhHNE,On a dark and snow covered street Beth is stalked by a large and mysterious monster.\ntt0119282,huI39DZ4b44,\"The warriors bow down to Hercules as their hero, regardless of his status as a God.\"\ntt0119282,Xiki4aOO4tw,Tydeus sacrifices himself to help Hercules win the war.\ntt0119282,hSvJRk5OH_o,Amphiaraus apparently isn't yet meant to die and Rhesus fails to kill Hercules.\ntt0119282,Lrr_z_4VLdU,Hercules completes his final labor and saves Ergenia from execution.\ntt0119282,tFeew6TgM8w,Hercules kills King Eurystheus.\ntt0119282,5EeD0NiVALs,Hercules gives his troops an inspirational speech before he leads them into battle against Rhesus.\ntt0119282,xNu0qNfOoGY,Hercules and his men claim victory in their first battle against Rhesus.\ntt0119282,oc8Hm_t5BRo,Hercules and his men fall into a trap set by bewitched warriors.\ntt0119282,5ACVz6Cmo3M,Hercules has nightmares and Amphiaraus gives him advice.\ntt0119282,K4fpErUdp3k,Iolaus tells his tormentors the legend of Hercules.\ntt0296572,SUMtjCypolU,Riddick reunites with an old friend who believes Riddick could be from an extinct race that could stop a new threat to the universe.\ntt0296572,RARFpfBt66M,\"After hiding out on a frozen planet for five years, Riddick is finally tracked down by a bounty hunter named Toombs.\"\ntt0296572,ilG8mzbHNNI,\"After invading the planet, the Lord Marshal of the Necromongers forces the citizens to bow to him. Left standing in the crowd, Riddick is only there to get revenge for the death of his friend Imam.\"\ntt0296572,h9Rb7mT3juI,The prison guards release Hellhounds into the prison to devour anyone who doesn't make it to safety in time. Riddick manages to tame one of them.\ntt0296572,RmqqNrg2cKg,\"Riddick walks in on a few prisoners attempting to rape Kyra. He warns them to stop, but they don't seem to believe a man armed only with a teacup.\"\ntt0296572,otk_S_5inBM,\"On the planet Crematoria, Riddick is dropped into a triple-max underground prison, while Toombs argues to be paid more money for dropping him off.\"\ntt0296572,5kGTDvVTAOw,\"Riddick, Kyra and fellow prisoners fight off Necromongers and prison guards in an attempt to steal a spaceship and get off the planet.\"\ntt0296572,yX5TsLuIEy8,Riddick kills the Lord Marshal before Vaako gets a chance and gains control over the entire Necromonger army.\ntt0296572,98I5LTPcRnw,\"While Riddick, Kyra and other prisoners attempt to escape from Crematoria, the deadly heat from the Sun catches up to them.\"\ntt0296572,39HR8ZjQnYA,\"Riddick confronts the Lord Marshal, leader of the Necromonger army, after finding out he converted the last remaining person Riddick cared about, Kyra.\"\ntt0259324,TeDEtT7YjYY,\"Ghost Rider battles Blackheart, who is now powered up with a thousand souls.\"\ntt3628584,-oPHsR72Lfo,Some barbers in the shop have a problem with One-Stop and his multipurpose business practices.\ntt3628584,p_ixTZLD7k0,The ladies in the shop criticize the men for the way they treat women and the men explain how it is to be a man.\ntt3628584,T6BDCLnWSes,Raja talks race and politics with the rest of the shop.\ntt3628584,e5SbxMFk6Vo,Even with mixed emotions in the shop it looks like the ceasefire might actually be working.\ntt3628584,cW23WpOvC6A,Everyone gets excited and starts dancing when they hear a shout-out to the barbershop on the radio.\ntt0259324,1iCqTxtsqvw,Johnny Blaze discovers that Mephistopheles wasn't going to let a little thing like a parent stand in the way of their contract.\ntt3628584,b-2p52a82UM,\"Terri misunderstands what she sees between Rashad and Draya, but Rashad reveals he does have problems with their marriage.\"\ntt3628584,zbkojhq6Ryw,Calvin calls off the ceasefire and talks about leaving the South Side after he hears about their young friend dying.\ntt3628584,KGW0LbnEraM,A discussion about the ethics of adultery emerges after Bree confronts Draya about her love life.\ntt3628584,NR-BaVehxrA,Calvin wants to put the ceasefire back on and Anthony Davis gets a haircut at the shop.\ntt3628584,EonKIlrj7t0,Jalen apologizes to his dad and Calvin expresses his love for Chicago.\ntt0259324,tyyPSnHcthg,\"Johnny Blaze uses all his stuntman tricks to stop a van Roxanne, his childhood sweetheart, is riding in.\"\ntt0259324,10X4Th3YE30,Johnny Blaze performs a dangerous record breaking motorcycle stunt by jumping over a football field full of helicopters.\ntt0259324,Rj5XdwnuQ80,Johnny Blaze painfully transforms into Ghost Rider for the first time and destroys the fallen angel Gressil.\ntt0259324,riDe28hGBuo,\"After being arrested for murders he didn't commit, Johnny Blaze realizes that a criminal filled jail cell is the perfect place for the Devil's bounty hunter.\"\ntt0259324,-fvfHqNEmGU,\"Ghost Rider interrupts a mugging and tries out The Penance Stare, the ability to make the mugger feel the pain of all his victims.\"\ntt0259324,OsgEdYjoqUI,\"Carter Slade, the previous Ghost Rider, fires up and leads Johnny Blaze to San Venganza.\"\ntt0259324,a4QlQy31HIk,\"While escaping from police, Ghost Rider ends up battling Abigor, a fallen angel with air powers.\"\ntt0259324,EnBWc20FGuc,Ghost Rider arrives with the contract so that Blackheart will let Roxanne go.\ntt0948470,V0UBmkWw5Oo,Peter decides to break a promise and then flies over the streets of New York as Spider-Man.\ntt0948470,BXx51SR_3Sk,Peter uses his new abilities to humiliate Flash in a game of basketball.\ntt0948470,psB3Ta-5XWY,Peter awkwardly makes plans with Gwen and then tests his new powers with his skateboard.\ntt0948470,4331uXY0nxA,Peter reveals his true identity to Gwen and the two share a kiss.\ntt0948470,4_23t4NzAMk,\"Spider-Man reprimands a car thief, but receives no thanks from the NYPD.\"\ntt0948470,hvACHvnVCbw,\"When The Lizard attacks a bridge, Spider-Man saves a child from falling to his death.\"\ntt0948470,ltmHZiXkb9c,Spider-Man sets a trap for The Lizard in the sewer.\ntt0948470,EauDkPyyz8I,The Lizard attacks Peter's high school.\ntt0948470,7pD2vZ28a3E,Captain Stacy learns Spider-Man's true identity.\ntt0948470,4uc2qplSyss,Spider-Man battles The Lizard to try and stop him before he releases his toxin above New York.\ntt0413300,rDGRAHBojWE,Peter Parker enjoys his newfound confidence and exhibits a new spring in his step.\ntt0413300,N_O0XDnM2AM,\"Harry, dressed as New Goblin, attacks Peter in an act of vengeance for the death of his father.\"\ntt0413300,WE4iNhRivzc,Spider-Man attacks Sandman in the New York subway system.\ntt0413300,5A9D-XVmK10,\"When a loose crane smashes through the window of a New York skyscraper, Spider-Man swings into action to save Gwen Stacy from being crushed.\"\ntt0413300,OJNBsuHFdM4,\"When Harry taunts Peter about his relationship with Mary Jane, the two engage in a violent fist fight, which ends with explosive consequences.\"\ntt0413300,iX23r272kqg,\"While under the influence of the symbiotes, Peter performs a jazzy dance routine to impress Mary Jane.\"\ntt0413300,GVt3XFTYp-0,Venom and Sandman work together to overpower Spider-Man.\ntt0413300,m8LWjDS3IkQ,\"Despite warnings from Spider-Man, Venom succumbs to the power of the symbiote suit, leading to his death as well as Harry's.\"\ntt0413300,IPdtCQV4Dz8,\"When Peter rips the symbiote suit off, it attaches itself to Eddie and turns him into Venom.\"\ntt0413300,dwh6SShhnVI,Harry arrives in the nick of time to help Spider-Man take on Sandman and Venom.\ntt1872181,DgUvg4sBGcs,Spider-Man rushes to deliver a pizza across town.\ntt1872181,5wUezm-K0Bw,\"While swinging around New York, Peter's powers begin to fail him.\"\ntt1872181,q292IDwEWZ0,\"When Doc Ock throws Aunt May off a ledge and threatens to kill her, Spider-Man swings into action to save her.\"\ntt1872181,R4CiWP08yes,\"Doc Ock wreaks havoc and robs a bank, leading to a showdown with Spider-Man.\"\ntt1872181,m8Jm9_iR6cg,\"Peter tells Mary Jane that he doesn't love her. Then, Doc Ock destroys their coffee shop and kidnaps MJ.\"\ntt1872181,yRhRZB-nqOU,Spider-Man uses all his strength to stop a speeding train full of passengers from going off the rails.\ntt1872181,HStPxrLfM9k,Spider-Man and Doc Ock go toe to toe on top of a New York subway train.\ntt1872181,0TvKsVxgbF4,\"When Doc Ock kidnaps Spider-Man and brings him to Harry, Harry learns his true identity.\"\ntt1872181,QbwYDkPwfUM,Spider-Man saves Mary Jane and defeats Doc Ock.\ntt1872181,aGAInDBQOoE,\"Mary Jane leaves her wedding to tell Peter that she needs to be with him, even if he is Spider-Man.\"\ntt1038686,xcqbp1ysN1M,Archangel Michael is confronted by two LAPD officers after raiding a large cache of automatic weapons.\ntt1038686,0SDvqDdbhSc,Michael returns to save Jeep from Gabriel and to show Gabriel the mercy that God really needed to see.\ntt1038686,Mp6aKCE3jSc,Michael and Gabriel have an Archangel fight to the death.\ntt1038686,Z0l0sXacQ9Y,The angels use a little boy to trick Kyle and Audrey into coming out from the diner and into the open.\ntt1038686,onNv1u-qdZY,Michael shoots Sandra when she threatens to sacrifice the baby but its too late because the Archangel Gabriel has arrived.\ntt1038686,LFT504CjJFA,A vicious possesed child gets into the diner as Charlie goes into labor.\ntt1038686,P5Q7apxWucc,The Ice Cream Man arrives at the diner and Michael shoots it dead.\ntt1038686,4kNNwEV5XJI,Percy is killed after saving Sandra from her husband's exploding sores.\ntt1038686,tWEBbYoDaU8,A kind elderly woman named Gladys surprises everyone at the diner when she violenty bites Howard in the neck and crawls up the wall.\ntt1038686,wFg1qWPryvI,Michael arrives at the diner with weapons and a warning.\ntt0091167,5LE2vO_aQgU,\"While Hannah and Holly quarrel over Holly's future, Lee is wracked with guilt from having lan affair with Hannah's husband.\"\ntt0091167,REXJhZBFD1w,With their troubles seemingly behind them the family settles into their third Thanksgiving.\ntt0091167,j6qjibwpEzM,After a failed suicide attempt the Marx Brothers help Mickey realize life isn't so bad after all.\ntt0091167,WVed9LPelUw,Elliot makes his move on Lee.\ntt0091167,wU7TupjcCbo,Mickey struggles to find enjoyment in rock music on his date with Holly.\ntt0091167,9VLcxXz-0w4,In order to find out his meaning in life Mickey converts to Catholicism.\ntt0091167,8KJkEQx2lKI,Mickey tries to deal with the chaos of running a TV show.\ntt0091167,rLtmIBRWQVQ,\"Mickey, a hypochondriac, goes to the doctor complaining of hearing loss.\"\ntt0091167,MPqg9uMHTDQ,\"Mickey and Hannah asks Mickey's old partner, Norman to be their sperm donor.\"\ntt0091167,JauxWp4eWnM,\"Eliot swoons over his wife's sister, Lee.\"\ntt0091167,QYHTRRmkung,\"Elliot buys Lee a book of poetry by E. E. Cummings, and reveals his infatuation with her through a poem.\"\ntt0079522,7mwZYGcbQCo,Isaac writes the beginning of his book about New York City.\ntt0079522,sZU26D42s2M,\"Isaac pays an unpleasant visit to his ex-wife, Jill.\"\ntt0079522,GE64zY42bUA,Isaac and Mary spend an evening getting to know each other along the riverside.\ntt0079522,CZO8Dh7dXvM,Isaac and Mary's relationship continues to develop.\ntt0079522,jf9d3cwVWBY,Isaac shares a conversation with a group of quirky writers at an equal rights benefit.\ntt0079522,P2oF9-9UpbQ,Isaac and Mary share an intellectual conversation at the planetarium.\ntt0079522,KQbGttprUMA,Isaac tries to convince Tracy not to go to London.\ntt0079522,2dD7upKpLks,Isaac confronts Yale about his relationship with Mary.\ntt0079522,FLCvFcaZW3Q,Isaac breaks up with Tracy.\ntt0079522,63fCYTWuVoA,Mary admits to Isaac that she's still in love with Yale.\ntt0316654,kb4jEHmH_kU,\"Despite his deep feelings for Mary Jane, Peter is forced to break her heart to keep her safe.\"\ntt0316654,hHKUBg_c9no,Spider-Man and Green Goblin go toe to toe in one final showdown\ntt0075686,MEBibAHnEK4,Alvy and Annie attempt to do cocaine at their friends' insistence.\ntt0075686,iLBL-XeNrRI,Alvy and Annie find cooking live lobster is more difficult than they were prepared for.\ntt0075686,vTSmbMm7MDg,\"While stuck in line at the movies, Alvy grows frustrated listening to the intellectual opinions of the man behind him.\"\ntt0075686,5h5zurZsIQY,Alvy explains to the audience his view on life and relationships.\ntt0075686,Qp3NWzLzaek,Duane Hall confesses a dark secret to Alvy before driving him home.\ntt0075686,lXy9Lp8bu98,Alvy gets a terrifying ride from his awkward new love interest Annie.\ntt0075686,JduADWt0XMI,\"Alvy awkwardly gets to know Annie on her apartment balcony, as their true thoughts are revealed by subtitles.\"\ntt0075686,p32OEIazBew,\"Annie sings \"\"Seems Like Old Times\"\".\"\ntt0075686,1eTXG8FReno,Alvy kills a spider for Annie and criticizes the changes she's made in her life.\ntt0075686,kIUgcwJeN5A,\"Alvy doesn't understand his breakup with Annie, so he asks passersby for their opinions on love.\"\ntt0075686,1VIBA_mPdPA,Alvy remembers his childhood and surmises where his fellow classmates ended up as adults.\ntt0075686,WYY9Epog0rs,Alvy has Easter dinner with Annie's family.\ntt0316654,jM7Eou4bV-Q,\"Peter uses his new abilities to win a fight against the school bully, Flash Thompson.\"\ntt0316654,zlwaUJzGqns,Peter discovers his new web-slinging abilities.\ntt0316654,UDSfJaVC0KY,Spider-Man uses his powers to compete in a cage match against the wrestler Bone Saw.\ntt0316654,9LglzW3HFyg,Peter discovers that Uncle Ben has been murdered by the thief he let get away.\ntt0316654,TvoWGxM8TU8,Spider-Man defeats the Green Goblin.\ntt0316654,K_a1_SO8hu0,\"When Green Goblin attacks a festival in Times Square, Spider-Man swings into action.\"\ntt0316654,aBpwrORhKWU,Spider-Man saves Mary Jane from a gang of thugs and receives a romantic reward in the rain.\ntt0316654,Xt0Fv0W-CSo,Green Goblin makes Spider-Man choose between saving Mary Jane or a cable car full of children.\ntt1289401,FJ7rx8LeTgg,The Ghostbusters battle a giant incarnation of their logo that is wreaking destruction on New York.\ntt1289401,jYpYTpKuT_k,\"The Ghostbusters battle an army of ghosts, using Holtzman's custom made weapons.\"\ntt1289401,RRLisRc0j1c,The Ghostbusters capture their first ghost at a rock concert.\ntt1289401,YW6VrETYUfU,\"Abby gets possessed by an evil ghost, but Patty has something to say about that.\"\ntt1289401,LMViEmB4_Fk,The Ghostbusters hunt a ghost backstage at a rock concert.\ntt1289401,aGcvpWAhP6I,Erin falls head over heels for the hunky applicant for the receptionist job.\ntt1289401,3mw9rXZv4tY,The Ghostbusters get their first job and roll out with their new costumes and vehicle.\ntt1289401,Gl4bRwYs1tI,The Ghostbusters battle a scary apparition in the subway.\ntt1289401,HfKAC6eOlXg,Erin tags along as Abby and Holtzman investigate a haunted mansion and has an unpleasant encounter.\ntt1289401,zoSzqHlvN6s,\"Patty joins the Ghostbusters and provides them a car, while Holtzman tests out her new ghost fighting equipment.\"\ntt3530002,svytEWJK6Qk,\"While hallucinating and talking to an inanimate nativity scene, Isaac runs into his wife Betsy.\"\ntt3530002,kptIt3LwGWc,\"Isaac attends church on too many drugs, causing him to throw up in the middle of the service.\"\ntt3530002,3IiKTJztqFY,The guys reconcile their friendship and Mr. Green ascends to the heavens.\ntt3530002,oQjMZTetuEg,Chris and the guys chase after the Grinch who stole his weed.\ntt3530002,IgrJkJ8NYrw,\"When Isaac's drugs react poorly, he begins to panic.\"\ntt3530002,VLXwMhs4ODU,\"While tripping out on drugs, Isaac meets with Mr. Green and gets some strange advice.\"\ntt3530002,w4-b-D0iByQ,Mr. Green freaks Chris out while selling him marijuana.\ntt3530002,b-_C0lWgga0,\"The guys perform Kanye West's \"\"Runaway\"\" on a toy piano mat.\"\ntt3530002,NHDA6rk-bek,\"Ethan catches up with his ex, Diana. Then, Isaac accidentally gives Sarah a drink with his blood in it.\"\ntt3530002,wwDCSzZx37I,\"Chris flirts with a fan. Then, Isaac panics about becoming a father and leaves himself a message about the baby.\"\ntt1430607,t_wR8zbM5VI,\"All of the Santas come to deliver Gwen's gift, but Arthur is chosen to be the one that puts it under the tree.\"\ntt1430607,YpnqA-vr53Q,Arthur tries to catch the sleigh while Grandsanta and Bryony try to wait patiently in the boat.\ntt1430607,mqpQgFfidcA,\"The government goes after the sleigh, so Grandsanta sacrifices her to their missiles, allowing Arthur to escape with the last Christmas gift.\"\ntt1430607,IRRYuq7qYk4,Arthur and Grandsanta escape from a pack of lions chasing them in Africa.\ntt1430607,v-OKZSh7tQ4,\"Grandsanta gets a bit turned around using his old map to navigate the sleigh, and ends up losing a reindeer in the process.\"\ntt1430607,vF3sZj6ge18,Steve gets help communicating with Arthur while he and Grandsanta face lions in Africa.\ntt1430607,QpqCLenOeAM,\"The North Pole bustles with busy elves ensuring a smooth Christmas. Steve runs a tight ship, but his brother Arthur makes a big mess in Mission Control.\"\ntt1430607,Hi_NmfSbE3g,Steve walks the elves through saving Santa from being seen by a child.\ntt1430607,AxpzOZT_C0o,Grandsanta brings out the old sleigh so Arthur can deliver the last present on time.\ntt1430607,oLUmNV0tmMo,\"The elves help Santa deliver presents in a speedy, stealthy manner.\"\ntt1430626,bVKJscj58DI,The pirates celebrate ham nite and discuss the best part of being a pirate.\ntt1430626,KLIB40d6Pz8,\"When The Pirate Captain tries to steal gold from Charles Darwin, he is upset to learn that he has none.\"\ntt1430626,8HO4C01n00c,The pirates use a bathtub to stop a mysterious figure from stealing Polly.\ntt1430626,M1uBjOpTa6Y,Charles Darwin attempts to steal Polly from The Pirate Captain.\ntt1430626,7SClmJTqKo0,\"The Pirate Captain blows his cover and reveals that he's a pirate, not a scientist, leading to a near execution.\"\ntt1430626,Eva9_scd290,The Pirate Captain reveals Polly the dodo to a group of esteemed scientists in London.\ntt1430626,ajb31pJMQmw,The Pirate Captain and Queen Victoria face off in a sword fight for Polly's life.\ntt1430626,ip1igmoPSD8,The Pirate Captain lives a lonely life after all his friends abandon him.\ntt1430626,g3svdzmBtic,The Pirate Captain saves Polly from Queen Victoria's evil clutches and becomes the world's most renowned pirate.\ntt1430626,TZ2ryw04fx4,Black Bellamy reveals that The PIrate Captain has been pardoned by the Queen and is ineligible for the Pirate of the Year award.\ntt2510894,awkGgPALfho,Mavis and the family have fun at the werewolves' birthday party.\ntt2510894,ft9XnHcLYiI,Jonathan tries to teach Dracula how to use social media to promote the hotel.\ntt2510894,8fGU90-I_H4,\"Wayne gets distracted by a frisbee and fails to kill a deer. Then, Mavis discovers the wonders of the mini-mart.\"\ntt2510894,7y9stFHCvEY,Murray throws out his back while trying to summon a sandstorm.\ntt2510894,NNouwnR8QQw,\"Dracula tries to teach Dennis how to fly, but instead throws him to a near death.\"\ntt2510894,RkINjKcnVuY,Dracula is disappointed to learn that the camp he went to as a child has been child proofed.\ntt2510894,n1lQR-GjWYw,Dracula and the family fight a group of angry bat monsters.\ntt2510894,D4_CGzg3fmQ,Dracula and the family celebrate Dennis's birthday.\ntt2510894,oOp7Q_xw94I,Dracula and Vlad argue about monsters and humans.\ntt2510894,Cf5dlMw2d7s,Dennis finally grows his fangs and protects Winnie from the monster Bela.\ntt0837562,gpkncObsNqY,Dracula welcomes his guests and friends to his hotel made exclusively for monsters.\ntt0837562,Axru07JeBig,\"Dracula raises his little girl, Mavis.\"\ntt0837562,uBPs4AHD52Y,\"Mavis is eager to visit the outside world, but Dracula struggles to let her go.\"\ntt0837562,vHBKdIq9RGs,\"Johnny poses as \"\"Johnnystein\"\" to hide his human identity from the monsters, and in the process, accidently becomes the life of the party.\"\ntt0837562,tj3Trywp_zk,Dracula reveals the true story of his wife to Johnny.\ntt0837562,2JMmof1eg1s,\"Much to Dracula's dismay, Johhny accidently starts an amazing pool party.\"\ntt0837562,zjiAUjrvTrw,A kiss between Mavis and Johnny at the birthday party draws Dracula's ire.\ntt0837562,El0_VgXqgXU,\"On the way to catch up with Johnny, Dracula and the monsters pass through a monster festival where they find out humans have come to accept and love them.\"\ntt0837562,_AgBIeTHzTM,\"Mavis, Johnny, and Dracula sing about the zing that comes with true love.\"\ntt0837562,JtuMPxXQ2l4,Dracula and his friends try to catch up with Johnny before he can fly back to America.\ntt1051904,XRx0KtjPoX0,R.L. Stine saves the kids from the Abominable Snowman by pulling him back into the book.\ntt1051904,v3H9-sHDZSA,Zach accidentally opens a Goosebumps book and the Abominable Snowman comes out of it and attacks the kids.\ntt1051904,JIqfgLLZhAk,R.L. Stine and the kids fight off violent gnomes and then decide to flee when they realize the gnomes are indestructible.\ntt1051904,AtJ5phl1iVE,Slappy lights his book on fire and tells R.L. Stine about his plan to unleash all of the book characters.\ntt1051904,HmwZxnQbox8,R.L. Stine and the kids work together to escape from a werewolf stalking the grocery store.\ntt1051904,wk-P07PoFAk,R.L. Stine has trouble driving when the Invisible Boy and a giant praying mantis attack his car.\ntt1051904,c0-3FQ-_SAg,\"When Slappy sends in the whole troop of book characters to attack the high school, Champ saves Taylor from a werewolf attack.\"\ntt1051904,me9Vweatkto,\"Zach must say goodbye to Hannah after she opens the book and all of the monsters are sucked back in, including her.\"\ntt1051904,gEC1WbYzZYk,Slappy releases The Blob That Ate Everyone on R.L. Stine and Zach must finish writing the book.\ntt1051904,QxNZJZrkdM0,\"Slappy orders the book characters to chase down R.L. Stine's bus, but they end up triggering an explosion on a decoy bus instead.\"\ntt1288558,i7hF7BAKV_I,A now possesed and one armed Natalie attcks David and Eric with a nail gun.\ntt1288558,ykeqEK7m5oI,\"Mia, one handed and armed with a chainsaw, confronts the demon hoping to end the weekend of terror once and for all.\"\ntt1288558,mk2OptcsXuo,\"As the sky starts to rain blood, a demon rises from the ground and chases Mia, who frantically tries to protect herself\"\ntt1288558,s6lrBldtwVk,\"After having crashed her car, Mia gets entangled in evil tree branches and is brutally violated and possessed by a Demonic girl.\"\ntt1288558,5PikP1s15F0,A possessed Mia shoots at her brother and vomits all over Olivia before Eric traps her in the basement.\ntt1288558,XAuxvhZzUhE,Harold must kill his daughter to destroy the demon inside her.\ntt1288558,FHXzsBsOVjY,A possessed and mutilated Mia molests Natalie.\ntt1288558,t4pLZtTuryE,Eric is stabbed after discovering a possessed Olivia carving into her face.\ntt1288558,8k9h0yE0XIg,\"David discovers Mia, now possessed by a demon, taking an extremely hot shower, burning her skin.\"\ntt1288558,IMOAEKRuaeI,\"When Natalie feels the demon's possession take over, she tries to stop it by cutting off her arm.\"\ntt4052882,pVfx0OQcmBk,\"As the tide covers up her rock, Nancy is forced to swim through jellyfish to make it to the buoy.\"\ntt4052882,ydFjplhKYng,Nancy uses her jewelry to close the open wound in her leg.\ntt4052882,DzpGeXWsQKY,\"Nancy makes one final, desperate attempt to kill the shark.\"\ntt4052882,ohoPpyAG0zA,\"Nancy fights the shark using a flare gun, but the shark is unstoppable.\"\ntt4052882,W9DAFX_ieak,Nancy tries to retrieve the surfer's GoPro camera in 30 seconds before the shark has time to return.\ntt4052882,1UqGimF2hkI,\"As the tide closes in, Nancy makes a final recording to say goodbye to her family.\"\ntt4052882,GwyuRxkac2Q,Nancy is knocked off her surfboard and then bitten by a massive shark.\ntt4052882,ru_PLKD7w4c,\"Nancy tries to warn two surfers about the shark, but they don't listen to her.\"\ntt4052882,vT4HrbzMVgI,\"As the whale carcass is consumed by the shark, Nancy makes a dangerous swim to an exposed rock.\"\ntt4052882,w8IS7igzQxw,Nancy begs a man on the beach for help and then tries to protect him from the shark.\ntt1496025,zdTmdoeLgAc,\"Selene tries to make it to the port in time for her and Michael to escape, but law enforcement catches up with them.\"\ntt1496025,6OizpcahOZA,\"Selene wakes up in a laboratory and escapes, killing everyone standing in her way.\"\ntt1496025,ujcglOdwI1E,\"While searching for Michael, Selene discovers a vampire and a mysterious child in a tunnel filled with lycans.\"\ntt1496025,A5fwu8OlNG0,\"Lycans attack the van and Selene, David and Eve fight them off.\"\ntt1496025,4HSdmiu24xQ,Dr. Lane makes his way to the garage to escape with his patient and Selene fights lycans on her way to stop them.\ntt1496025,M5F8dw_FfPc,The vampires are surprised when lycans attack instead of humans.\ntt1496025,ow0vNLhDNzI,Quint drops an elevator on Selene and Detective Sebastian tries to stop Dr. Lane from driving away with Eve.\ntt1496025,tWuBw5082gI,\"While Selene fights Quint, David helps Eve kill Dr. Lane.\"\ntt1496025,ZtQD3EqQAC0,\"Selene punches a grenade into Quint's stomach, which heals up instantly and explodes inside him.\"\ntt1496025,o0wTt_xDlpk,Selene is knocked out by a giant lycan and then wakes up to learn that Thomas has given her child over to the lycans.\ntt0834001,_-JtvyLvSlo,Lucian breaks the rules and transforms into a lycan in order to save Sonja.\ntt0834001,19u6S4Fqnss,\"After losing Sonja, Lucian angrily transforms into a lycan and runs to the wall to try and escape.\"\ntt0834001,VDGKUOjQ-Zs,Viktor orders 30 lashings for Lucian to punish him for his betrayal.\ntt0834001,2tWRTtI7huk,Lucian encourages his fellow lycan prisoners to defy authority and be more than animals.\ntt0834001,4frYhsIGjJU,\"After thwarting their escape, Viktor is disgusted when he learns that Sonja is pregnant with Lucian's baby.\"\ntt0834001,51Kfo8X3V18,\"As a punishment for their betrayal, Lucian is whipped and made to watch Sonja burn to death.\"\ntt0834001,emW6TopzEe0,The lycans rush the castle to defend Lucian.\ntt0834001,bmeh1eFkyHg,\"While the lycans fight the vampires, Lucian fights and defeats Viktor.\"\ntt0834001,Xq_9TDk-hj0,Lucian defies Viktor and escapes with a few other lycans.\ntt0834001,xZXOBmW-7Jk,Lucian begins his escape by killing Kosta and freeing the other lycans from their cells.\ntt0401855,tqqSIT1D0vU,\"Marcus joins his brother William in the fight against Selene and Michael, but the brothers lose.\"\ntt0401855,L9pxOwibtWQ,Michael rises from the dead to help Selene fight William.\ntt0401855,DNAwkyyq3kM,Selene takes on William alone.\ntt0401855,Pw8FO7eRAoY,Selene discovers that William has been set free and Marcus tries to stop her from interfering.\ntt0401855,StS0_Y5Dh4Q,Marcus takes the pendant from Michael and drinks Selene's blood for her memories.\ntt0401855,EegnTsyPDF4,Marcus stabs his father and steals William's key.\ntt0401855,9PllxjcicFo,Michael and Selene fight off lycan and vampire slaves to get to Tanis.\ntt0401855,LCD5BDaqANw,\"Marcus chases Selene and Michael through the woods and on the road, in search of Michael's pendant.\"\ntt0401855,KwIg2QMWVOU,\"When the vampires capture William, Viktor orders that he be imprisoned for all time.\"\ntt0401855,R0p6s2L8yk4,\"Michael tries to save the humans from his transformation, but when they hunt him down, Selene protects him.\"\ntt0271263,FQjvyy8gOS0,All the jerks in the banquet hall recall the times they were mean to Whitey.\ntt0271263,esHXIrYgSzo,Whitey is finally recognized by all of his peers for his contributions to the community.\ntt0271263,mA1FWjriD60,Whitey and Eleanore explain the rules of the house to Davey.\ntt0271263,t-dJ4I7rGp8,Whitey doesn't get the Dukesberry All-Star Patch and his friends are very disappointed.\ntt0271263,Q-MVoUlU-OY,Eleanore is nervous when Whitey shows up with their house guest Davey.\ntt0271263,s3PbszHh8vE,Davey and Jennifer reminisce about their childhood together and then Whitey offers to help Davey when his trailer catches on fire.\ntt0271263,bGQ9QznPQ_M,Davey gets in trouble with Jennifer after he and Benjamin win the game and act like jerks.\ntt0271263,f7vRR8-n_Rc,\"Davey escapes from the police singing a song about his hatred of everything, including himself.\"\ntt0271263,fVVoh_Xh0xo,\"Davey makes a bet that he can beat a couple of tough guys at basketball and when Whitey gets taken out, Benjamin takes his place as Davey's partner.\"\ntt0271263,ehNNyfvhcto,\"When Whitey tries to teach Davey how to be a referee, Davey does a terrible job and makes everyone upset.\"\ntt0385880,31ZCtppXSoU,Both the officers and the kids locked in the police car are consumed by the house.\ntt0385880,xLD9iygFMgA,\"The kids work together to throw the dynamite at the heart of the house, destroying it completely.\"\ntt0385880,M_HMbS9bEhM,\"When Nebbercracker tries to demolish the house with dynamite, the house grabs him and Chowder swoops in on a bulldozer to save him.\"\ntt0385880,41FRwoAJkpw,\"When DJ suggest that Nebbercracker let Constance go, the house angrily uproots itself and chases the children.\"\ntt0385880,ycyXqWAMzZ8,Nebbercracker retells the story of how Constance became the spirit of the house after her death.\ntt0385880,jBxnTnikZEo,\"When the kids get swallowed by the house, Jenny pulls the uvula and the house throws them up.\"\ntt0385880,JXxF-_0u_qU,\"Just as the kids are about to send in their vacuum cleaner dummy, Officers Landers and Lister show up and ruin their plan.\"\ntt0385880,ATDt5EBims4,Chowder and DJ save Jenny from getting eaten by the haunted house.\ntt0385880,TE4ZWi6xkZo,\"When DJ tries to get Chowder's ball back, Nebbercracker faints in the middle of chasing him away.\"\ntt0385880,4VX7ZvbbLrE,\"Chowder tries to prove DJ wrong about the haunted house, but ends up running for his life.\"\ntt0119345,vdED1lRQ-N8,Julie is terrified when she gets a familiar note on her bathroom mirror.\ntt0119345,IE1ZeXC4vtg,Julie finds Max's corpse in her trunk and then panics when it disappears.\ntt0119345,TGoICPqXjAY,Ben is about to kill Julie when his hook hand gets stuck in a rope and chopped off. Then the rest of his body is thrown overboard.\ntt0119345,OgaJLKX1sUo,Helen disrupts the pageant when she sees Barry get attacked by the killer in the balcony.\ntt0119345,UDcu3Pg8LiI,Ray accidentally hits a pedestrian when Barry drunkenly distracts him in the car.\ntt0119345,xGCLACE7SUI,\"The group decides to dump the body into the sea, but before they can carry out their plan, their classmate, Max stumbles upon the scene.\"\ntt0119345,g3a9qZnTzJQ,Officer Caporizo and Helen fall into the killer's trap when they are diverted by the roadblock.\ntt0119345,tdMF1i45oks,\"The corpse turns out to be alive, but they dump him in the water anyway. Barry jumps in to retrieve Helen's crown and then makes everyone swear to remain silent regarding the whole event.\"\ntt0119345,gLLgGSdfy3I,\"Helen fights off the killer long enough to escape the store, but he catches up with her just before she makes it to the parade.\"\ntt0119345,TAZ3_IuoGew,\"After showering in the locker room, Barry discovers a photo left by a mystery man who ends up chasing him down in his own car and threatening him with a hook.\"\ntt0115963,dx07n7Eov0o,Nancy tries to force Sarah to commit suicide and then Sarah does a spell that scares the other girls.\ntt0115963,IXXv4DMkBpM,Sarah does a spell turning her eyes brown and her hair blonde.\ntt0115963,sHFXRjwKOG8,Sarah defeats Nancy with her magic.\ntt0115963,8EUTXbhTFg8,Sarah scares Nancy with visions of bugs and snakes taking over her body.\ntt0115963,HUJtn_Bwm-w,Nancy tricks Chris into thinking she's Sarah and then uses magic to push him out the window.\ntt0115963,yuochlbdRmQ,Nancy makes Sarah see snakes and other things that she fears.\ntt0115963,arf7Bi4CCmU,Nancy walks on water and considers all of the beached sharks as gifts from their god Manon.\ntt0115963,kZMKLwtkLrI,Nancy's spell works when Ray dies suddenly and leaves her and her mother money from a life insurance policy.\ntt0115963,6FVwlgBDCo0,\"The girls do a spell, each asking for something they want more than anything else.\"\ntt0115963,GBTN4LA7pTs,The girls play a game and Rochelle ends up floating in mid-air.\ntt0808151,LxxFi7igv2A,Langdon and Vittoria discover a secret message in the Diagramma Veritatis.\ntt0808151,99dOPdlLIw0,Landgon and Vittoria make an important discovery at the Roman Pantheon.\ntt0808151,Ur1StpqHA1M,\"As Langdon looks for clues in Saint Peter's Square, a child discovers a mutilated priest.\"\ntt0808151,B98YODkeEqY,\"With his oxygen quickly depleting, Langdon struggles to free himself from being trapped in the Vatican Archives.\"\ntt0808151,41AhzyLUBFM,Langdon fails to save Cardinal Guidera from being burned alive.\ntt0808151,Pw0CzPQdaE4,Langdon saves Cardinal Baggia from drowning.\ntt0808151,I_v5km4eDik,The Camerlengo bravely flies the antimatter explosive in the air to prevent it from detonating in St. Peter's Square.\ntt0808151,wQ5uso-R6aY,Langdon discovers that the Camerlengo was the man behind the plot to murder the Pope.\ntt0808151,9F9KKPakio4,\"When the Camerlengo learns his plot to become Pope has been uncovered, he burns himself in the name of God.\"\ntt0808151,xzW255065XQ,\"Langdon receives the \"\"Diagramma Veritatis\"\" and the church ordains a new Pope.\"\ntt0373051,OY5yOdITL-8,Harnet rescues Emily from being stuck and then struggles to bring oxygen levels back to normal.\ntt0373051,kp2u8LURkgQ,Kristen and her team must run across a bridge suspended over molten lava.\ntt0373051,H2cgoxJHSPs,Harnet and Emily finally break through to the center of the Earth.\ntt0373051,LYsdYDbW_Iw,Case and Jansen get in a fight in the girls' locker room.\ntt0373051,V0dVNpmzCyg,Harnet and Emily brace for impact as they breach the center of the Earth.\ntt0373051,zMzCxBRDhlA,The team rushes to escape a spider and reach the teleportation beacon. Case is forced to leave Jansen for dead.\ntt0373051,O2hN7307Nio,\"Intending to go to Germany, the soldiers teleport away. Afterwards, Harnet is unable to find their location.\"\ntt0373051,av5eE5HTVzs,Emily and Harnet are attacked by giant magma-dwelling slugs.\ntt0373051,3O13oeNWWfU,\"A dinosaur attacks the soldiers, forcing them on the run.\"\ntt0373051,sQcgpyPhaIA,\"Kristen, Case and Gretchen are attacked by giant spiders.\"\ntt2130142,4tEfbGzxI-E,Paige and Lucas take down Hitler once and for all.\ntt2236182,l3zxPrDoN74,\"Marshall gets his arm amputated after a zombie bite, Dr. Arnold discovers his vaccine works, and the whole group escapes on a helicopter.\"\ntt2236182,61LA1soyYkg,The group discovers that Dr. Arnold is so far unsuccessful in perfecting a vaccine for the zombie plague.\ntt2236182,GMXgGPnbnow,Lynn delivers Pauline's baby too late and it turns into a zombie.\ntt2236182,jhvqJs7apdo,\"As the group fights off the zombies, Marshall leads the charge in electrocuting the horde.\"\ntt2236182,jDnp-EKD-Qw,\"Ashley loses all hope for survival in a zombie society, so she commits suicide.\"\ntt2236182,Q9NJiwYZt4Q,The survivors at Alcatraz instate a lockdown when the island gets overrun by zombies.\ntt2236182,phTSTiwPBUk,\"Dr. Halpern cuts off skin from his own arm to feed his starving zombie daughter, but she turns against him.\"\ntt2236182,zxO4SgwCONk,Kyle must kill his newly zombified father figure Caspian.\ntt2236182,HtC2c6DQvSE,\"The survivors escape the zombie-infested Alcatraz on a raft, only to be attacked by zombies in the water.\"\ntt2236182,7jrjZ5DIEzU,\"Lynn and the group fight zombies on the Golden Gate Bridge, but Jud doesn't make it through.\"\ntt2978716,cbBTkI-JxVg,Patrick gives Tracie a weapon and tells her to do whatever is needed to survive in a zombie filled world.\ntt2978716,7RAzClJ4XLk,Patrick and Birdy battle the zombies until sunrise.\ntt2978716,ek_w1fGGUT0,Birdy hides the kids in a coffin to keep them safe until sunrise.\ntt2978716,S8HUYXl6grQ,Joseph and his wife contemplate killing their recently zombified son when suddenly the bloody-thirsty corpse takes the choice away from them.\ntt2978716,HJwSvsEaai8,Tracie and Birdy come across Nathan and his mother in the deadlist place to be when zombies rise.\ntt2978716,R-Rc1lQMjQc,Tracie must kill her zombified boyfriend in order to prevent him from killing others.\ntt2978716,MiQsEACG7_w,Joseph faces off with his zombie nanny after she decides to smother Nathan with flesh-eating love.\ntt2978716,DFgmFM-w0Rk,Patrick and his family find themselves trapped in a greenhouse surrounded by very hungry reanimated corpses.\ntt2978716,kRZxEorotnY,\"While a violent danger spreads outside, Birdy and her mother find they have a visitor at the door.\"\ntt2978716,6EM223j0wls,Birdy has to kill her mother when she turns into a zombie.\ntt2130142,9V8IRFmXcQI,\"When Silje goes after Lucas in an Arctic cavern, they discover a lost continent at the center of the Earth.\"\ntt2130142,B9aW-CumBFg,Paige discovers that Mark's flesh has been removed and that they are prisoners in a Nazi laboratory.\ntt2130142,VwB6p1A-FwA,Lucas squares off against the decaying Dr. Mengele.\ntt2130142,VtGNNvJF5Qk,\"Hitler pursues Lucas and Paige. Silje sacrifices herself, causing an explosion on board the Nazi UFO.\"\ntt2130142,d7vy5NkiJJE,Dr. Mengele explains how he has stayed alive and reveals that Dr. Reistad is a Nazi. Dr. Blechman is vaporized for being Jewish.\ntt2130142,tn24Ca1sslc,Hitler addresses his followers before slicing the head off Rahul as he tries to escape.\ntt2130142,oKTtRDYwIG4,\"After learning she is pregnant, Dr. Reistad and Dr. Mengele take stem cells from Silje's unborn child in order to bring Hitler back to life.\"\ntt2130142,8jWoq1fTwJ8,The Nazi scientist Dr. Mengele slices and rips off Mark's face.\ntt2130142,9dDKx-vREdQ,\"Using the stem cell they extracted from Silje, Dr. Reistad and Dr. Mengele resurrect Adolf Hitler as a giant robot.\"\ntt2740710,RF2gzBNsZQ4,Jim saves Tracey after a hard hit and Red flies the monster into outer space to blow it up with a nuclear bomb.\ntt2740710,lBs_nLdio1M,Tracey and Jim keep the monster busy while Red jams the nuclear missile.\ntt2621126,ndZVwNuTYa4,\"Mindless Behavior performs \"\"Mrs. Right\"\" on their last day on tour. Walter discusses the impact the group has on young teenagers.\"\ntt2740710,glNH68Iaa3E,\"Even with their melee weapons the team has a very tough time fighting the monster, so Geise orders a nuclear strike.\"\ntt2740710,krBjSShSxu0,The team struggles to fight a giant monster destroying Manhattan when a new problem presents itself - damage to the robot suits causes pain in the pilots.\ntt2740710,F8lEfmjN9C0,Margaret teaches the team how to use the new biogenetic enhancements in their robot suits.\ntt2740710,pDCzYY0bjbc,\"Geise argues with Hadley about the use of nuclear weapons, Red escapes with the help of his friends and a jet takes out the monster.\"\ntt2740710,eCXv9LnSKeA,Red reveals Project Armada to the public and fights a giant monster with little success.\ntt2740710,YAhyJTSt_9o,\"Tracey, Red and Jim prepare to test out experimental robot suits for an oil rig rescue mission.\"\ntt2740710,04BZh6E-Nck,\"When a monster hatches and wreaks havoc on the city, Red tries unsuccessfully to get out of the brig and join the fight.\"\ntt2740710,AVpd8G_48FM,Red wrestles the monster into a position where Spitfire can swoop in and destroy it.\ntt4296026,EwWuQOBBcFA,\"During their search for the missing piece of the magic mirror, a group of Rumpelstiltskin's enchanted thralls comes after Snow and the princesses.\"\ntt4296026,EN7SYqdbsm4,\"When Snow refuses to make a deal with Rumpelstiltskin, he sends them both flying through the magic mirror.\"\ntt4296026,sS1L9wZXFic,Red uses acrobatics and cunning to escape the clutches of Iron John.\ntt4296026,tUr2KIu-nvE,Snow makes a sacrifice to take down Rumpelstiltskin.\ntt4296026,SnKEQA88PXg,\"As the fighting continues, Rapunzel convinces Iron John to help close the portal. Meanwhile, Rumpelstiltskin captures Snow.\"\ntt4296026,VPXC2aQZyEs,\"Cinderella explains to Red what it means to be an avenger. Then, Iron John arrives and all hell breaks loose.\"\ntt4296026,taAwMJ4hsdk,\"With help from Cinderella, Red rescues Sleeping Beauty and kills The Wolf.\"\ntt4296026,V8oMGhl8FFg,\"The princesses square off against Red, Iron John and the rest of their foes as they try to infiltrate City Hall.\"\ntt4296026,6Z5bmj561YM,Red and the princesses showdown with The Wolf over a piece of the magic mirror.\ntt4296026,7a-OSvw0tjg,\"As they search for Red, a SWAT team descends on Snow and the princesses.\"\ntt2518926,kAyPdsYr2K0,A massive dinosaur attacks and destroys the News Team's helicopter.\ntt2518926,JaEv5uq8sJs,\"At their unveiling, the dinosaurs break free from their cages and begin attacking the civilians.\"\ntt2518926,3pjwMG4hrFw,\"Jade and Gabe are forced to flee into the streets, where a gigantic dinosaur fight soon breaks out.\"\ntt2518926,RQZFCcsvtew,\"When a dinosaur stalks Jade and traps her, Gabe arrives and chops its head off with an axe.\"\ntt2518926,ioKNba1RRys,\"When they are trapped inside a store, Gabe and Jade protect themselves by beating some dinosaurs senseless.\"\ntt2518926,VwSWeeg9RSg,\"Doug's attempt to reincarnate a dinosaur is successful, but things go awry when he refuses to open the doors for his technicians to get to safety.\"\ntt2518926,LtGQwP3jiUk,\"When Jade falls as she tries to jump to rescue, she is swooped up by a Pteranodon. Gabe pursues her in a helicopter.\"\ntt2518926,Jch6T39j20E,\"Gabe and Jade drive as fast as they can away from an angry dinosaur. When they run out of gas, Leo sacrifices himself for their protection.\"\ntt2518926,gvBe38KoiVc,The police showdown with deadly dinosaurs as they break out of the Natural History Museum.\ntt2518926,qoftQY-P85o,\"When a Pteranodon captures Jade and attacks his helicopter, Gabe takes it down once and for all.\"\ntt1020558,BS82G9f2Xaw,Quintus Dias faces off against Etain while his comrades take care of her men.\ntt1020558,8kAtef-L6do,Quintus Dias realizes the Roman Governor has betrayed him when he is attacked by guards.\ntt1020558,fG1_01gDUoc,\"Quintus Dias, Bothos and Brick make a final stand against the Picts.\"\ntt1020558,YrIvuBpSGio,Etain and the Picts catch up to Quintus Dias and his group.\ntt1020558,38Zst1IDgIs,Macros and Thax run from a pack of wolves.\ntt1020558,0M0dGWXQt6Y,Quintus Dias and Brick launch a night raid on a Pict camp.\ntt1020558,CRbtvxbu6fg,The Picts force Roman General Virilus to fight against Etain.\ntt1020558,LpP3_e3ioiQ,\"The Ninth Legion, led by General Virilus, falls into a trap set by the Picts and are massacred.\"\ntt1020558,B4jUZUgKhFQ,Quintus Dias leads Bothos and a few others on a mission to rescue General Virilus from the Picts.\ntt1020558,XS7Tpc7yY8Y,General Virilus and some soldiers rescue Quintus Dias from a group of Picts.\ntt1020558,toe0MwxNN1o,The Picts attack a Roman fort that is run by Quintus Dias.\ntt0108149,AMOb_w6Jfug,\"Paul impresses Flan and Ouisa by noticing their double-sided Kandinsky, and by telling stories about their children at Harvard.\"\ntt0108149,EUB6R41g7cA,Ouisa tells her daughter Tess about the theory that everyone on the planet is separated by only six people.\ntt0108149,wkyZ8pJD0Uo,Paul talks his way into the home of Flan and Ouisa by claiming to have been mugged.\ntt0108149,7rGY9Tw2hSw,\"Ouisa and Flan invite Paul to stay the night, and after some convincing, he accepts.\"\ntt0108149,QnMDpNk1DFY,\"Flan and Ouisa ask their kids for help, but Woody is hung up on his pink shirt.\"\ntt0108149,9e06PDg1pgs,Paul explains his thesis about 'The Catcher in the Rye' and its strange connection to famous assassinations.\ntt0108149,DUJHFbmzhtQ,Paul tells the story of Sidney Poitier's legacy in a rehearsed speech of memorized facts and anecdotes.\ntt0108149,m5Qi_YVxd5M,Ouisa practices tough love with Paul over the phone and convinces him to turn himself into the police.\ntt0108149,Rq-hSPn_Elc,Ouisa has an epiphany about her marriage and her life and walks out on Flan.\ntt0108149,HXtYMxtMlhI,Rick tells Elizabeth about his night with Paul and the daring adventures they shared with each other.\ntt0108149,PnZpYoBuiGw,Paul finds a clever way to convince Trent to give him the names and stories of families in his address book.\ntt0108149,QzzcHhFa66Q,\"Flan recounts his dream about his passion for art, student geniuses, and the pain of losing a painting.\"\ntt1623745,KtHucDG9t9k,\"Lily pressures Alison into making out with Louis, but she can't change how she feels.\"\ntt1623745,XXcdcrn7usw,Lily pays the price for trying to scam the wrong man.\ntt1623745,AtZDj7gset0,Things go bad for Lily and the gang when she tries to scam a psycho.\ntt1623745,s0bZ80iuZdQ,Alison has a falling out with Alison.\ntt1623745,XVyVUZrzGrE,Lily leads a pedophile into a deadly trap.\ntt1623745,pQ7F6S4FrdY,\"Alison calls her Uncle Hogan, scared and homesick.\"\ntt1623745,sfObDKSfaZA,\"When Lily cusses out a passerby, she and Alison begin to see how deep the rabbit hole goes.\"\ntt1623745,2ul7iwAUMN8,\"After Lily steals a bag of chips, Alison tries to undo the damage, but things go horribly wrong.\"\ntt1623745,KtDkR9YdBS0,\"Romance blooms between Lily and Jesse, but Alison doesn't entirely approve.\"\ntt1623745,H5ocMbhjb-M,Lily is resistant to her therapy sessions with Dr. Heron.\ntt1623745,fi3K18p1Pww,\"Lily and Alison are two friends on the desolate Salton Sea, one full of life, one teetering on the edge.\"\ntt1692084,NUI_ZNu-GXM,James and Officer Fogerty ask Monica a few questions.\ntt1692084,QGq7H8ku2cI,Fitz lays out his love for Monica while Barry tries to beat him up.\ntt1692084,DhW1_LX5xZg,\"Arnie scores points with his song, but not so much with his son.\"\ntt1692084,M6aTyZE_Zss,The Doctor assures Fitz and Jimmy that he's seen thousands of naked boys.\ntt1692084,AtDwOreXh-k,Fitz gets cussed out by a rude hooker.\ntt1692084,Q1ITCuUHAnY,\"Monica begs Tommy to use his car, but he's extremely unhelpful.\"\ntt1692084,Tn1YK5UEr_c,Fitz borrows Richie's van while Jimmy gets some misguided advice from Sheila.\ntt1692084,38tBs7AinQA,\"Monica goes to Barry for help, but he's interested in more.\"\ntt1692084,lAebdantAPM,Fitz sells weed to a Hollywood producer who's kind of a jerk.\ntt1692084,LHEPabAiiTo,\"Fitz races to clear his house of weed when the cops arrest one of his clients, and Jimmy has bad luck with his father.\"\ntt1692084,XLJwlFShttg,\"Officer Fogerty tries to help James, but just winds up freaking him out.\"\ntt1692084,dH5RKJLZ7HQ,\"Tommy has many deep, complex, and disturbing feelings about vaginas.\"\ntt1634121,bzoIipqEbXE,John saves Mia from the ghost of his father.\ntt1634121,JHlNsy6rMUI,Ghostly tentacles assault Mia in her bedroom.\ntt1634121,DeoXtC4c5Ck,John investigates noises in Mia's closet and comes face to not-face with Hollow Face.\ntt1634121,ABAYY_S63CE,\"John discovers, to his horror, that Hollow Face has returned for his daughter.\"\ntt1634121,69yTsxMTNnQ,\"Father Antonio tries to help Juan with what Luisa believes is an overactive imagination -until she starts \"\"seeing\"\" Hollow Face too.\"\ntt1634121,h1vDFFr7nNs,\"Father Antonio visits Juan, hoping to assuage his fears, but he might not be prepared for the depths of Juan's horror.\"\ntt1634121,i7eR-SzImZQ,Mia and John have some eerie experiences with Hollow Face.\ntt1634121,6dySVi75n7M,Juan and Luisa are yet again assaulted by ghosts.\ntt1634121,QfNYdXHjGV0,\"When Juan's haunting continues, Luisa consults Father Antonio.\"\ntt1634121,KtZQO636AQw,\"Mia finds the story of Hollow Face in a tree, and recites it to her petrified class.\"\ntt1634121,EY18WYrcYHw,\"Juan tries to save his mother from a Ghost, but he may not be able to save himself.\"\ntt1634121,VhTqGpjZzfk,\"Drawn out into the storm by the meows of his cat, Juan comes face to face with terror.\"\ntt0988849,U6CQhcLjjfY,\"Sean, Marcus, Josh and the others decide what to do after a girl is accidently killed on their yacht.\"\ntt0988849,mwVsJoafaP0,\"Josh and Tammi, the last two alive, decide to escape the yacht, but both are still suspicious of each other's plans.\"\ntt0988849,GnAKqKB8ryc,Kim comes upon Tammi on the floor with Sean above her holding the shotgun and misinterprets the situation.\ntt0988849,m6-AzGII9Ts,\"When Tammi goes to rescue Sean from the engine room, Josh attempts to get the shotgun away from Kim.\"\ntt0988849,sCSUnot0u30,\"Out of frustration of not finding the video tape that proves he killed someone, Josh tortures his wounded friend Bluey for answers.\"\ntt0988849,wojHQib2wn4,Kim and Tammi attempt to break out of the room they are locked in and escape the boat.\ntt0988849,tcH0KwS_YEA,\"To get them back on the yacht, Marcus threatens Kim and Tammi with a shotgun.\"\ntt0988849,yLj0FvavCe0,Marcus and Sean attempt to throw Lisa's body overboard while Kim grabs a knife and tries to stop them.\ntt0988849,sHhFAITCEPs,After disposing of Lisa's body the group has a very tense dinner where Bluey just can't stop antagonizing Kim and Tammi.\ntt0988849,u0aPph3nUwQ,\"After a girl is accidently killed during sex, Sean and Marcus explain to her friends what they plan to do about it.\"\ntt2621126,oX5iDM-DnQ4,\"While in Michael Jackson's old neighborhood, Mindless Behavior performs \"\"My Girl\"\" for the locals.\"\ntt2621126,dlwR6MhC2Hc,The moms come and surprise Mindless Behavior on stage.\ntt2621126,08UMKwdtWk8,\"After their show, Walter takes them to Michael Jackson's childhood home.\"\ntt2621126,FxwaraxX89Y,\"Mindless Behavoir performs \"\"#1 Girl\"\".\"\ntt2621126,-D3PMCmZot0,\"Mindless Behavoir talk about how grateful they are. And Princeton talks about meeing Anaya, a little girl who was was almost knocked over during one of thier shows.\"\ntt2621126,ouN3vJJmPgw,\"Walter asks them if they want to be famous or successful. And due to their hard work, they acheive both.\"\ntt2621126,b_5M03JfdQo,\"Prodigy's father, Prodigy and Walter talk about how Prodigy got into Mindless Behavior.\"\ntt2621126,iab2tzXfWsU,Ray Ray shares his how he got into Mindless Behavior.\ntt2621126,LPEVs0FV7Os,Princeton describes how he got into Mindless Behavior and his audition experience.\ntt2621126,y-PhkF8e4rc,Roc Royal's family reminices about his childhood and how he got into Mindless Behavoir.\ntt1016268,1_uvjP9QZcE,The retirement accounts belonging to tens of thousands of people evaporate in the wake of Enron's demise.\ntt1016268,eYR0zgfAcQk,\"The employees of Enron are told about the bankruptsy and are given 30 minutes to vacate the building after years of perceived, unrivaled success.\"\ntt1016268,_08wo4Rxayk,Pressure mounts as Enron's financial instability becomes more and more apparent.\ntt1016268,puGracMskK8,Enron's lurid relationship with major U.S. financial institutions is revealed.\ntt1016268,9ejzBYus8qE,Enron traders celebrating California wildfires that spike the price of energy in their favor is aptly compared to the findings of the infamous Milgram experiment.\ntt1016268,sHAoAwDUkBo,Enron's ability to lie diversifies as rapidly as the company itself.\ntt1016268,gaZOIAJJ6Kk,Journalists working for Forbes magazine begin to sense something fishy about Enron's financial stability.\ntt1016268,IUu1T75RjTo,Enron's political ties provide cover for illegality that ended up putting tens of thousands of employees and pensioners into the poor house.\ntt1016268,vBasqtPRco0,The philosophy of those in charge of Enron's illegal practices are deconstructed.\ntt1016268,jm7zMNBEgmA,Cliff Baxter's suicide as a result of the Enron fiasco is discussed.\ntt3064298,EFlCixq_HEM,Jack makes a grand romantic gesture that wins Nancy's heart.\ntt3064298,kZgaz49f5aE,\"Sean offers to help Jack find Nancy, but he lies and finds Nancy for himself instead.\"\ntt3064298,Vjc0wdQtl64,Jack searches for Nancy while she suffers through spending time with her stalker Sean.\ntt3064298,gsYcnpq1HBc,Nancy and Jack argue about relationships while dancing.\ntt3064298,1Gnmq6nB1ws,Nancy helps Jack start to get over his divorce.\ntt3064298,mwrMEQnMRCQ,Nancy tries to prove a point and races Jack to the bar.\ntt3064298,Ux6L0eRqDGY,Jack catches Nancy in the bathroom with Sean and she confesses her true identity.\ntt3064298,XKrIeZTVBQ4,Nancy agrees to kiss Sean in order to keep her identity a secret from Jack.\ntt3064298,RDrZm6eEY6E,Nancy meets Jessica on a train and ends up getting dating advice.\ntt3064298,0bRr_MER6Vg,Nancy tries her best to keep up with Jack on the blind date she shouldn't be on.\ntt2051894,zTh8P8BTQVE,Cory address the congregation about his new direction in life.\ntt2051894,RCzgkvkbVI4,Cory tells Emma that he wants to be more involved with the family.\ntt2051894,Z1MsMWSkKWE,Tyler asks Cory if he really is his father.\ntt2051894,2rq0nLbL5fg,Cory tells Emma that he wants to be more involved with Tyler's life.\ntt2051894,D6SVqGVTlFU,Cory has an idea that could win the team the baseball game.\ntt2051894,utHcPvSz6AM,Cory gives Tyler some words of encouragement for the baseball game.\ntt2051894,u5gSeZQbbq8,The baseball team discovers Cory and Emma's high school yearbook.\ntt2051894,Yz0YrG0oJQU,Cory has his photo-op with the press to help repair his image.\ntt2051894,cUy-J4YGxcE,\"After an initial reluctance, new details help Cory embrace coaching.\"\ntt2051894,UIdm6BTefb8,Helene reveals that Cory will be coaching his brother's baseball team.\ntt2051894,BIW6tF1dE50,Helene reveals to Cory the repercussions of his actions.\ntt2051894,PuI5bs7mZG8,Cory blows up after an umpire calls him out for missing third base.\ntt4034228,n1X2w0tinkg,Vanessa gets lost in the moment as she dances with Roland.\ntt4034228,SWYmSp9wxUM,Roland explains the adultery situation to Lea and comforts his guilt-ridden wife.\ntt4034228,JkeXMSrRsYI,Roland beats up the neighbor when he finds him touching his wife and Vanessa admits her reason for wanting to break the neighbor couple up - she's barren and jealous of them.\ntt4034228,EcDcNDlil_A,Roland watches Vanessa play cards with Franois and confronts Vanessa about what kind of game she's playing.\ntt4034228,YCIt5jn2XPk,Lea talks to Roland about his writing and her marriage.\ntt4034228,U-42oAzybn4,Roland and Vanessa get a little bit closer and talk about their new fetish.\ntt4034228,77326fqWeR4,\"Roland comes home drunk and tries to make love to Vanessa, who pushes him off.\"\ntt4034228,zWtQ2tYVagg,Roland finds Lea playing cards with Vanessa and fears that Vanessa is trying to push them together.\ntt4034228,ySwvsZ3KWhc,Vanessa wakes up Roland in the middle of the night to interrogate him about his feelings towards the girl next door.\ntt4034228,6MDRk-oDzAE,Roland discovers Vanessa looking through the peephole in their room and then looks on at their neighbors having sex.\ntt2345112,NgQmrSNWY0U,They watch Abraham Zapruder's film for the first time.\ntt2345112,m_adoXQ7GT4,Robert Oswald asks a police detective what he and his family should do.\ntt2345112,q4FzgqjlrVY,Zapruder talks to Dick Stolley from LIFE magazine about selling his film.\ntt2345112,RYgoemOYknw,Agent Hosty is confronted by his supervisor because he missed the opportunity to arrest Lee Harvey Oswald two weeks before he assassinated the President.\ntt2345112,ARSK76A2xts,\"While Robert Oswald buries his brother, Agent Hosty destroys evidence regarding Lee Harvey.\"\ntt2345112,WvJZlC93jVM,Robert Oswald goes to talk to his brother Lee.\ntt2345112,IUBx1ZoP6PA,Robert Oswald confronts his mother Marguerite about his brother Lee.\ntt2345112,IR7xuySx1v0,The funeral of Lee Oswald is juxtaposed with footage from the funeral of President Kennedy.\ntt2345112,KGPl7ahFDEc,Dr. Earl Rose puts up a fight when Secret Agent Roy Kellerman wants to take the body of the President.\ntt2345112,g5wB0DNvM8M,The Secret Service find Abraham Zapruder and ask him for his film.\ntt2345112,ddrQKAMzUGI,\"After JFK comes into Parkand Hospital, it is up to medical resident Jim to treat the President.\"\ntt2345112,aRAHfPrf7C8,\"At one o'clock in the afternoon, the President is pronounced dead.\"\ntt0038109,-fnJhOLKjv0,\"Constance uses her wits to escape Dr. Murchison, who has threatened to shoot her.\"\ntt0097239,3V2gt6bAYxM,\"Daisy becomes convinced that Hoke is stealing when a can of salmon goes missing, and insists that Boolie take some action.\"\ntt0097239,HJK28cWPvH4,\"Daisy and Hoke argue about Daisy's wealth, and Hoke proposes that they maintain a strictly business relationship.\"\ntt0097239,SQNzOyXHbYY,Hoke speaks up for himself when Daisy refuses to let him pull over for a bathroom break.\ntt0097239,9bjpF066edk,\"Hoke visits Daisy at the nursing home, and the two share a sentimental moment together.\"\ntt0097239,NuEXMD5przE,\"When Daisy realizes that Hoke can't read, she offers him some basic pointers to help him learn.\"\ntt0097239,omFpUjAzM9M,\"When Hoke tries calming Daisy down after she suffers a delusional episode, Daisy confesses that Hoke is her best friend.\"\ntt0097239,HqquGvHwicg,\"After Daisy hears news that her temple was bombed, Hoke shares a memory of a lynching to try to empathize with her.\"\ntt0097239,zp-g3uxoQeE,Hoke quickly learns how overbearing Miss Daisy can be when she criticizes his driving and instructs him to go fifteen miles below the speed limit.\ntt0097239,p4z5ZU-dHr8,Miss Daisy denies Hoke's offer to drive her to the grocery store.\ntt3168230,GMk7xOOzK4E,\"After telling Mrs. Munro Ann's story, Holmes reveals that he's leaving the house to her and Roger.\"\ntt3168230,SD86_k19Rx8,Holmes reveals to Mrs. Munro that the bees were not the ones who attacked Roger.\ntt3168230,1fM9KjHmVNw,Holmes discovers Roger's lifeless body covered in sting sores.\ntt3168230,BGyHgJ9DunE,\"Although he understood all the facts of the case, Holmes was still unable to fully comprehend the depth of Ann's anguish.\"\ntt3168230,mvYdMO5ZfYM,Holmes reveals his understanding of Ann's plans.\ntt3168230,_zjqM0Hmk2A,Roger learns of his mother's decision to move through Holmes's deductions.\ntt3168230,QHYatXsRFEI,\"While trying to regain his lost memories, Holmes falls and loses consciousness.\"\ntt3168230,hiREoiox0Tw,Holmes follows Ann to the park and uses his knowlege about her to read her palms.\ntt3168230,PGTXynHmp_o,Holmes gives Roger his first lesson in beekeeping.\ntt3168230,Q91iEtSRiwU,Mr. Kelmont tells Holmes the emotional story of his wife Ann.\ntt3168230,aNQL0s6v8nI,Roger get his first lesson in detective work from Mr. Holmes.\ntt3168230,_aePd1mFn7M,Dr. Barrie confronts Holmes about his deteriorating memory.\ntt0038109,YCAW0hzka8I,Constance pleads with Dr. Brulov to help her save John from the authorities even if he has committed murder.\ntt0038109,KTFG9YDV_8o,\"While skiing, Constance helps John make a psychological breakthrough.\"\ntt0038109,tEptrqj1R50,Constance realizes that Dr. Edwardes is not who he seems.\ntt0038109,E8MitqqUuBI,\"Constance visits Dr. Edwardes late at night, but realizes she has deeper motives to talk to him.\"\ntt0038109,4wPqQUl2y5A,Constance goes out to the country with Dr. Edwardes and finds herself attracted to him.\ntt0032976,OTX8quF1g4I,\"Maxim promises not to lose his temper at the inquest, and laments the loss of innocence in the Second Mrs. de Winter.\"\ntt0038109,gnqyCM42fOU,Dr. Edwardes recounts his dream to Constance. This scene was famously designed by surrealist painter Salvador Dali.\ntt0038109,p8lLNtyeSz4,Contstance tells Murchison her theory about the murder and puts herself in real danger.\ntt0038109,s2gjCGRLfKM,\"Constance unravels John's psychological problem, but fate steps in to break up their new romance.\"\ntt0038109,8ZLUn8xHbiM,Constance remains with John even after the truth comes out because she loves him.\ntt0032976,N-2stIHQ12U,Maxim returns to Manderley to find that Mrs. Danvers has set the place on fire.\ntt0032976,t2ydTbUJ__8,\"The Second Mrs. de Winter meets her new sister-in-law Beatrice, who warns her about Mrs. Danvers and her bitter jealousy.\"\ntt0032976,whEcud8GBTo,\"Although Maxim tells his new wife to relax, she is unnerved by Mrs. Danvers.\"\ntt0032976,JZGQiDSJRWw,\"The Second Mrs. de Winter confronts Mrs. Danvers about her behavior, and Mrs. Danvers encourages her to commit suicide.\"\ntt0032976,BTUIaeLGBPk,Jack threatens Maxim with the letter that Rebecca sent to him on the day she died.\ntt0032976,S2NZ6XCtqMQ,Maxim confesses to the Second Mrs. de Winter that he faked the details of Rebecca's death.\ntt0032976,dGVvqcGBn_E,\"Mrs. Danvers corners the Second Mrs. de Winter, and questions her about the afterlife.\"\ntt0032976,izbOPZezYiQ,Mrs. Danvers shows the Second Mrs. de Winter Rebecca's dressing room and wardrobe.\ntt0032976,7SaFvv-XoIM,\"Faced with the imminent departure of his new companion, Maxim proposes to her.\"\ntt0032976,ijkNii0A80I,Maxim tells his young companion why he's been inviting her on so many day trips.\ntt0032976,7IsskjJnGN0,The Second Mrs. de Winter recalls her days at the now ruined country estate Manderley.\ntt1876547,UppZwnbIvZI,\"Henry and Cassie shoot up a group of zombies with a turret, allowing them to finally reunite with the rest of their group.\"\ntt1876547,kfYzoHzwZZY,\"After being separated from their group, Cassie and Henry are attacked by a monstrous zombie. Luckily, Henry finds a chainsaw and fights him off.\"\ntt1876547,GCQrTxMgMiM,\"Henry and Cassie use a grenade to quell a zombie attack, causing a distraction and allowing the others a chance to escape from the van they have been trapped inside.\"\ntt1876547,2k2hQ4dI5Zs,\"Myrah distracts a group of zombies by shooting one with a bow and arrow. When Julien tries to use a Porta Potty, a zombie attacks, forcing the group to run and hide in an abandoned van.\"\ntt1876547,sSMoOPktKsQ,\"When a zombie tiger attacks the group, Henry takes it down with his giant hammer.\"\ntt1876547,fOdzgxEe1u0,\"After they are ambushed by a hoard of zombies, Mack loses sight of Henry and Cassie and is forced to leave them behind.\"\ntt1876547,AUxAITobkNA,\"Julien begins to turn into a zombie while the group is trapped inside a van, forcing the others to kill him or be killed.\"\ntt1876547,uwEFn60u9SE,\"A hoard of zombies attacks the group as they search through a high school, devouring Billy in the process. Ramona takes down a zombie that has stalked her into the bathroom.\"\ntt1876547,son5FnMtr_8,\"When a hoard of zombies attacks, killing Kevin, Henry and his crew show up to save the day.\"\ntt1876547,pxWCOG2v42c,\"When the group is attacked by zombies while raiding a store, Julien uses an air horn to distract the hoard and make an escape.\"\ntt3567288,y2DC74NT5G8,\"Becca jumps out of a closet and scares Tyler. Then, Becca panics when she finds Nana acting strangely and laughing at a blank wall.\"\ntt3567288,dLVgEWrfdSg,Tyler raps about the horrors he experienced at Nana and Pop-Pop's house.\ntt3567288,sQPrjgzEcAc,Mom tells Becca the story of when she left her parents.\ntt3567288,zJ4owMQIKuQ,Tyler interviews Becca about some very sensitive subjects.\ntt3567288,OzWA6M7VnGg,\"While Tyler and Becca play hide and seek under the house, Nana goes crazy and chases them.\"\ntt3567288,L2GbnErVDqk,\"Nana asks Becca to crawl inside the oven. Then, she freaks out when Becca asks her about her past.\"\ntt3567288,o3s4QiK4MSM,\"Becca discovers a hanging corpse in the front yard. Then, Pop-Pop and Nana go crazy during family game night.\"\ntt3567288,0B1NRC3WYEs,Nana goes on a crazy rampage in the middle of the night and tries to break in to Becca's bedroom with a knife.\ntt3567288,W_0WRTR2vSc,\"Pop-Pop shoves his dirty diaper in Tyler's face. Then, when Nana attacks, Becca is forced to kill her.\"\ntt3567288,y6u4QEi3n2g,Tyler and Becca make a shocking discovery about Nana and Pop-Pop.\ntt1623288,I5xqeX3lAgk,Mr. Prenderghast appears to Norman during a bathroom break to inform him that he must be the one to break the witch's curse.\ntt1623288,PczVuk7L0MU,\"When Norman fails to break the witch's curse, he and Alvin are attacked by zombies.\"\ntt1623288,LxOEBk9PqQQ,Norman and his friends try to convince the angry townspeople that the zombies aren't actually dangerous.\ntt1623288,o6NxwI5Sbbw,Norman tries to open Aggie's eyes to the evil she is causing.\ntt1623288,SVUcZ0sAf9c,\"In the midst of a zombie attack on their car, Norman calls Salma for advice.\"\ntt1623288,wZUKOxIXZ8c,Norman helps Neil communicate with his dead dog.\ntt1623288,WCO594skLRA,\"While searching for her younger brother, Courtney, Mitch and Neil literally run into a zombie.\"\ntt1623288,wehE7YLFmGI,\"After Norman calms the vengence of Aggie's ghost, he reveals that he understands and relates to her.\"\ntt1623288,QbMcPeuQsfE,\"Norman has a more interesting walk to school than most kids, although once he gets there, things get less fun.\"\ntt1623288,oK0u0F_Y2EU,Courtney asks Mitch on a date as Norman and the rest of the town deal with the aftermath of the witch's curse.\ntt0063350,JBc-gNIjGuc,\"Ben awakes to find that a posse has arrived, but when he approaches the window with a rifle, they shoot him right between the eyes.\"\ntt0063350,komxaWgJ8O4,\"Ben shoots the untrustworthy Harry, who stumbles into the basement with his flesh-eating daughter Karen.\"\ntt0063350,n5HtgUGCM30,\"When Harry fails to open the door, Ben gives him a beatdown, and the zombies outside feast on human flesh.\"\ntt0063350,ViIuvUSF3YU,\"Tom accidentally spills gasoline on the torch, and his attempt to drive away from the pump results in a deadly explosion.\"\ntt0063350,d8Gg9rPHKNU,\"Ben gets grabbed as he walks by a window, so he and Tom defend themselves with a rifle and a knife.\"\ntt0063350,727NnSLXsxc,Harry creates a distraction with molotov cocktails as Ben and the others make a run for the truck.\ntt0063350,ct7Ox_OKe-s,\"Ben leaves the house to take care of some zombies in the yard, unaware that another has entered the house with Barbra.\"\ntt0063350,p8L6CtsqDE4,Ben and Barbra come to blows over whether or not they should leave the house to look for her brother.\ntt0063350,_d68kyNY0jI,\"Johnny mocks Barbra for being afraid in the cemetery, when suddenly they're attacked.\"\ntt0063350,SWxdW9jlHqM,\"Barbra searches inside an abandoned house, and the undead continue to approach until Ben arrives.\"\ntt1204977,Ia7el1fEff8,Laine and Sarah reflect on the loss of their friends.\ntt1204977,m3262E3sfb8,Laine and Sarah try to vanquish Doris.\ntt1204977,-zxyN9-P9_c,Laine confronts Paulina about misleading her.\ntt1204977,CDiosBMzR_c,Laine and her friends try to sever their connection with the spirits.\ntt1204977,4932enSiFRA,Isabelle gets possessed by a spirit.\ntt1204977,KVGVHjX_bkg,Laine discovers Debbie's flashdrive.\ntt1204977,VVAlND4mt5s,Friends discover a dangerous spirit while trying to contact Debbie in the spirit world.\ntt1204977,gEdTciZtW4o,Debbie's friends attempt to communicate with her spirit.\ntt1204977,XY2mzqw0vR0,Isabelle has a frightening experience and calls Pete for support.\ntt1204977,KSfYdl24m7s,Debbie feels a presence in her empty house.\ntt0298388,WxIIpvpAEEM,Jonah tries to avoid going to Nineveh by sailing to Tarshish with the Pirates Who Don't Do Anything.\ntt0298388,7umeeSjxQl0,\"Twippo performs \"\"Jonah Was a Prophet\"\" for the gang.\"\ntt0298388,Tw99DKA5tss,Jonah tells the Ninevites the message from the Lord and they repent.\ntt0298388,WGy01KGFK7I,Jonah and the Pirates Who Don't Do Anything are captured by the Ninevites and are condemned to the Slap of No Return.\ntt0298388,lot6apnbKk4,Pirate Pa tries to determine who God is angry at in a scientific manner - by playing Go Fish.\ntt0298388,Jr4HhX_kbf4,\"While he is in the belly of the whale, angels from God come down to tell Jonah that God is a God of second chances.\"\ntt0298388,emnU7uOpYtk,\"When God asks Jonah to go to Nineveh, Jonah refuses.\"\ntt0298388,AY1ze9t3lus,Jonah meets the talkative and friendly caterpillar Khalil.\ntt0298388,BgkEy5fF1rM,Jonah shares his message from the Lord with the townspeople.\ntt0298388,iAMImEbSpDk,The gang is stuck at a seafood restaraunt and they try to make the best of it.\ntt0298388,ivZaXeAv5X4,Bob the Tomato loses control of the car when the steering wheel falls off.\ntt0339291,WrfxIymvEhQ,\"Violet, Klaus, and Sunny finally receive the lost letter from their parents.\"\ntt0339291,tsIYleoAQpY,\"Violet, Klaus, and Sunny get stuck in the house during a hurricane.\"\ntt0339291,nh8mjiSlAws,\"The Baudelaire children arrive at the home of their paranoid, grammar-crazed Aunt Josephine.\"\ntt0339291,mIvQRRVbt9E,Klaus and Violet decode the clues in a note left by Aunt Josephine.\ntt0339291,6zqeWbDCXMM,\"Lemony Snicket introduces Violet, Klaus and Sunny Baudelaire, each with their own talents and interests.\"\ntt0112642,WMWI2FTLbhg,Casper tells Kat how he died and stayed around to console his father.\ntt0112642,01ClRWyf9I4,Kat's deceased mother temporarily grants Casper his wish to become alive and then visits her husband to impart some wisdom.\ntt0112642,uA7BbE1cF2U,\"After Carrigan crosses over, Casper decides to use the machine on Dr. Harvey instead of himself.\"\ntt0112642,DXH2BXpwCAo,Casper and Kat talk about their childhood memories.\ntt0112642,5IPCNRlCYP8,The guys play a prank on Dr. Harvey during their therapy session.\ntt0112642,odUsOcEqT4g,While Kat introduces herself to the class Casper plays a prank.\ntt0112642,rxCuYueuyxM,Casper gets in trouble when he tries to serve a nice breakfast to his new friends.\ntt0112642,UEEIFRxwHSM,Casper accidentally scares his new house guests.\ntt0112642,vZKaVV0ZyFs,Dr. Harvey has a rough first encounter with his feisty new paranormal patients.\ntt0112642,o94LScznlmY,Carrigan tries to rid her newly acquired mansion of the ghosts haunting it.\ntt0134847,YLjkzy7nhc8,\"When escape from the dangerous world is finally within reach, Fry decides they can't leave without Riddick, who is trapped and injured by the monsters.\"\ntt0134847,PlSt57BseA8,\"As Riddick prepares to leave the survivors behind, Fry shows up and tries to get him to reconsider.\"\ntt0134847,wyuPoWs79fo,\"When Johns decides they should sacrifice Fry, Riddick has a different idea of who should die.\"\ntt0134847,TjGfTL6l-HM,\"As they lose sources of light, the creatures get fiercer and Riddick decides to show one of them what a real monster looks like.\"\ntt0134847,luuYRrPaEpM,\"As the world slowly falls into darkness, Riddick, Fry and the rest notice flying monsters pouring out into the sky.\"\ntt0134847,Eum-rR934sQ,Riddick uses his nightvision to lead the surviving group through the dark alien world that is just waiting for anyone of them to step out of the light.\ntt0134847,2ZGmI0V_Hgo,\"The group discusses what possibly happened to the settlers, while Ali discovers the truth first hand.\"\ntt0134847,1c7FYxTa2mQ,\"After his recapture, Fry decides to talk to the famous killer himself, Riddick,\"\ntt0134847,G1BREAJI3E0,\"Upon realizing their are deadly monsters on the planet, Johns approaches Riddick with a deal.\"\ntt0134847,KAZVdaHzWNc,\"Left alone, Riddick uses his talent of dislocating both his arms to escape his current captured state.\"\ntt0905372,tz-XJMspLOA,\"As Kate and Carter make their way back to base, Kate realizes that Carter is not human.\"\ntt0905372,FFGm__skOH4,Kate and Carter track what's left of the Thing back to it's spaceship.\ntt0905372,DZwobit-Zy4,Kate and Dr. Sander do an autopsy of the alien with the body of Henrik still inside it.\ntt0905372,A8GRnS_49gs,\"Carter is attacked by the Thing, but Kate arrives in time and burns it.\"\ntt0905372,4TgJgyypajE,\"Kate, Carter and the rest scramble to escape the rec room when Edvard starts to transforms into a monster.\"\ntt0905372,6-PJPTcT-o4,Kate and Carter try to hunt down the Thing.\ntt0905372,3PRuMx1gqdM,Kate comes up with a way to determine who is human and who might not be.\ntt0905372,ZMURdEkb_3Y,\"While Kate and Juliette look for the keys to the vehicles, Juliette starts to transform.\"\ntt0905372,KL5rXhSkP34,\"After Kate finds tons of blood in the shower, she tries to flag down Carter's helicopter as he leaves.\"\ntt0905372,o7zebTh4tHo,Lars disappears and everybody suspects Carter and Derek since they were not with the group.\ntt1440129,w0BK_hLT-Wo,\"Alex Hopper commands the USS Missouri, a decommisioned ship run by old vets and uses it to defeat the alien mothership.\"\ntt1440129,ZQsCM4wE_es,\"The battleship, John Paul Jones, is destroyed by two alien shredder drones.\"\ntt1440129,1KBy8-7nc1M,\"Without their radar, Lieutenant Alex Hopper and Captain Yugi Nagata use NOAA's tsunami warning buoys to search and destory two alien ships.\"\ntt1440129,yWuZtDeeZmc,\"Realizing that the aliens can't stand sunlight, Lieutenant Alex Hopper decides to use the sunrise as a way to defeat that last alien ship.\"\ntt1440129,dGz9C2xMADc,\"An alien soldier manages to infiltrate the ship but Lieutenant Alex Hopper, Raikes and Beast fight back.\"\ntt1440129,7yjowqaIUnU,\"After having their radar disabled, Captain Nagata and Lieutenant Alex Hopper creatively use tsunami warning buoys to track enemy ships on a grid.\"\ntt1440129,3a7e-npyunY,Alex Hopper and Nagata inspect the body of an alien that was fished out of the water.\ntt1440129,JCVLrJfjsIo,The alien ships fire off shredder drones that destroy the military base and roads in Hawaii.\ntt1440129,y7T5Ea-WGII,Alex Hopper gets back to his damaged ship and takes command. Out of anger he decides to attack the aliens.\ntt1440129,YUaq56T5qSo,\"Alex Hopper, Raikes and Beast watch as aliens destroy two of their fellow Navy ships, including the one that is commanded by Alex's brother Commander Stone.\"\ntt0023245,j40IcG_BZuc,\"As Imhotep nearly sacrifices Anck-es-en-Amon, she prays to the god Isis to save her.\"\ntt0023245,MnZJSCtPQtY,Helen fights against her impulse to go to Imhotep and her caregivers decide to let her go so they can follow her.\ntt0023245,ikWTYTomQI4,\"Imhotep recalls his sacrfices for Anck-es-en-Amon, when the Pharaoh orders Imhotep to be buried alive in an unmarked grave.\"\ntt0023245,cEJhVm0TJUQ,Helen returns home from a trip she can barely remember and Frank vows to protect her.\ntt0023245,pvZXE-e5Yo4,\"Imhotep brings forth the spirit of Anck-es-en-Amon within Helen, burns her ancient corpse and asks her to die once more so their spirits can be together.\"\ntt0023245,N2A4tcaMl9c,Imhotep reveals to Helen his memories of Anck-es-en-Amon's death and his attempt to bring her back.\ntt0023245,TnkyKOn81nA,Dr. Muller and Sir Joseph discover that Ardeth Bey is Imhotep and then Imhotep uses his powers to kill Sir Joseph when he tries to burn his scroll.\ntt0023245,3ce2e-d1ZEc,Imhotep visits Sir Joseph and recognizes Helen.\ntt0023245,f187FGFi1AM,\"Imhotep calls for his beloved Anck-es-en-Amon, and an entranced Helen responds.\"\ntt0023245,VAp8WVZm3cc,Imhotep comes to life after Ralph opens a scroll with a curse.\ntt0085636,yOWS9e_r5OI,\"Daniel plays the magic hour commercial early and uses Silver Shamrock buttons to destroy the control room and activate the monolith, killing Cochran.\"\ntt0085636,VX3u1HUl2Zw,\"Daniel discovers Ellie has been replaced by a Silver Shamrock android when she suddenly attacks him again and again, even after losing multiple limbs.\"\ntt0085636,goKRpR4XNg8,Daniel desperatly pleads with TV stations to take the Silver Shamrock commercial off the air before it kills all the children watching it.\ntt0085636,vsfjzfGZVyQ,Cochran explains to a tied up Daniel the pagan plan behind Silver Shamrock masks.\ntt0085636,u2D0kDFKaxE,Cochran uses the Kupfer family as a live demonstration of the true sacrifical power of the Silver Shamrock masks when the TV commercial is played.\ntt0085636,b_tZKOxNR7o,\"After discovering strange mechanical parts among car wreckage, Teddy attempts to call the Sheriff only to be stopped by a Silver Shamrock henchman.\"\ntt0085636,mQpZdtspStY,Daniel discovers the Silver Shamrock henchmen are actually androids built by Cochran.\ntt0085636,4bB-IJBlZms,\"While Ellie and Daniel have sex in a neighboring room, Marge accidentally triggers a Silver Shamrock button, firing a laser that disfigures and kills her.\"\ntt0085636,dUFtkBtGIgg,Harry is violently killed by a mysterious man who then walks outside and lights himself on fire.\ntt0085636,O2RUT5J7T4E,Starker warns Daniel about Cochran and is beheaded by henchmen shortly after.\ntt0082495,zlVbQsf7vpk,\"After Jimmy and Jill start to wonder where everyone in the hospital has gone, Jimmy discovers the body of Mrs. Alves and knocks himself out after slipping on her blood.\"\ntt0082495,AI752yUQd1o,\"Hospital security guard, Mr. Garrett, investigates a break in at the storeroom.\"\ntt0082495,COZxvXx4bSg,\"Laurie finally fights back after Loomis is stabbed and shoots Michael Myers in the face, giving Loomis enough time to kill Michael with fire.\"\ntt0082495,e4-STTC0pNc,\"When Laurie goes catatonic, Janet goes to find a doctor but runs into Michael Myers instead.\"\ntt0082495,FyuQ13ZZNIQ,\"Upon hearing the news that there were murders just down the street, Alice Martin finds herself becoming one of the victims.\"\ntt0082495,Ht3gFCqpFkE,Michael Myers survives multiple bullets from Loomis only to kill the Marshall and continue stalking Laurie.\ntt0082495,PP8BpNVk8JM,\"When Jimmy falls unconscious after a head wound, Laurie tries to get Loomis' attention for help.\"\ntt0082495,OuacLAbhxqc,Loomis and Sheriff Brackett think they spot Michael walking towards a group of kids.\ntt0082495,QaSr6mpkTII,Michael kills Nurse Franco and chases after Laurie.\ntt0082495,h0w6WywbohM,\"Waiting for her boyfriend to come back from turning down the hot therapy tub, Karen instead gets a much more violent visitor.\"\ntt0116365,lCyS2Gxxzfg,Frank finds himself stuck between the creepy Dammers and the crazy Patricia.\ntt0116365,alh8b1lYuRU,Frank cons Lucy and Ray as he investigates their house for poltergeists.\ntt0116365,Y91jebCjFBE,Frank fights Death and soon finds out who is behind the evil apparition.\ntt0116365,qz0rKdYiqDQ,Lucy tries to escape Patricia and her evil boyfriend Johnny Bartlett.\ntt0116365,E81RLAQyhCA,\"Still out of his body, Frank tries to rescue Lucy from Death.\"\ntt0116365,YZPkrplfycM,\"Death tries to take Lucy, but Frank and his frighteners help her escape.\"\ntt0116365,1xFsHF8ZF2Y,\"Frank tries to save Magda from Death, but he only delays the inevitable.\"\ntt0116365,yYF0oK8oXSk,Frank sees Death take a victim in the bathroom.\ntt0116365,CQvEBaLYHJE,\"Frank meets Sgt. Hiles, a militant ghost, at the cemetery.\"\ntt0116365,mdsLJ_ciPHI,\"Frank's frighteners, Stuart and Cyrus, complain about his treatment of them.\"\ntt0780653,hRBRb2eiK4I,\"Lawrence, as the wolfman, chases down Gwen.\"\ntt0780653,Y5pRDzBxZtY,\"Lawrence Talbot confronts his father, Sir John Talbot.\"\ntt0780653,4i3CEXiGKgU,\"During a full moon, Dr. Hoenneger presents Lawrence to his fellow doctors to prove that he is not a werewolf.\"\ntt0780653,ba9YG9xCC7A,\"After being arrested, Lawrence Talbot is sent to the same asylum he was committed to when he was a child.\"\ntt0780653,vEd2sU65NQI,\"Inspector Abberline chases down Lawrence, who has transformed into a werewolf and is causing chaos throughout London.\"\ntt0780653,wJZHc5SJ9eE,\"Lawrence Talbot, now fully transformed into a werewolf, slaughters a group of hunters who had set out a trap for him.\"\ntt0780653,-lX6P0PFKy4,Sir John Talbot locks himself in a room as his son Lawrence starts to transform into a werewolf.\ntt0780653,YiE8wDRFfvM,\"A group of men arrive with intent to arrest Lawrence, suspecting him to be a werewolf, but Sir John Talbot scares them off.\"\ntt0780653,tbdHhLOzT-Y,\"While Lawrence Talbot visits the gypsies during a full moon, a werewolf suddenly attacks.\"\ntt0780653,BktKAiQQ_tw,\"After a werewolf attacks the gypsy camp, Lawrence grabs a gun and follows it into the fog.\"\ntt0103956,gG1XmKlqhIU,\"During the local military school's war games, Chucky causes chaos after putting live ammunition in the team's rifles.\"\ntt0103956,8w4UZGP7OGo,\"In the middle of a carnival's haunted house, Chucky begins the ritual to possess Tyler's body. Andy arrives just in time to shoot Chucky through the chest and toss him into a large fan.\"\ntt0103956,i4M2tehIejI,\"Chucky is discovered by Sgt. Botnick, the school's barber. Chucky kills him after the Sergent decides to cut the doll's hair.\"\ntt0103956,nFRuYV4QrnE,Tyler finally realizes that Chucky is not a toy you want to play with.\ntt0103956,7OpujffVbUQ,\"Chucky chases Tyler into a haunted house ride at a nearby carnival. Right as he captures Tyler, he gets half his face cut off by an automated scythe.\"\ntt0099253,ttU5gs0lj38,\"Andy and Kyle believe they have finally destroyed Chucky, only to find him still alive. Kyle ends Chucky's life by putting an air hose in his mouth.\"\ntt0103956,SwPPG_B3ArY,\"While unpacking and starting his new life at military school, Andy gets a visit from an old friend.\"\ntt0103956,azot-mIuW3Y,Colonel Cochrane is startled by Chucky and dies of a heart attack before Chucky can kill him.\ntt0099253,zjFMyK_bRso,\"While Chucky chases Andy and Kyle throughout the factory, he comes across a lone repair man.\"\ntt0103956,tQl5ypxi69U,Chucky kills a Garbage Man after being thrown away.\ntt0103956,pwL0PcIHtxQ,\"Returning in a new body after eight years, Chucky kills the CEO of the company that makes Good Guy Dolls.\"\ntt0103956,ic9PvDGkzf8,\"Tyler opens a package that was supposed to go to Andy. Inside he finds Chucky, who at first is rather angry until he realizes that he has a new child he can possess.\"\ntt0099253,41VUCQfnnco,\"With Kyle as his hostage, Chucky arrives at the Foster Center. He gets Andy alone in a room after killing Grace, the woman who runs the center.\"\ntt0099253,PM5TJ6vZ9YM,Kyle and Andy are trapped in the Good Guy Doll factory with Chucky.\ntt0099253,pDnPZ0Ccdus,\"Chucky takes Andy to the Good Guy factory and attempts a voodoo ritual to transfer his soul to the boy. Kyle arrives and saves Andy, just as Chucky realizes it's too late and he is forever stuck in the doll.\"\ntt0099253,TuafKNbgTCA,\"Holding Kyle hostage, Chucky tells her to drive to the Foster Center to get Andy. She decides to crash the car instead.\"\ntt0099253,PHFG3ZC0fZI,Kyle finds Joanne dead and is attacked by Chucky.\ntt0099253,Qe5hop7o4ZI,\"Andy takes matters into his own hands and hunts down Chucky in the basement. Chucky kills Phil, his foster father, and everyone assumes it was Andy.\"\ntt0099253,UvFclgKfUQA,\"Miss Kettlewell returns to detention expecting to find Andy, but gets Chucky instead.\"\ntt2230358,OvbvCOM89Ew,Nica fights Chucky for her life.\ntt0099253,3AfqCkqJVt0,\"Chucky hijacks the car of Mattson, a Good-Guy Doll executive.\"\ntt2230358,AuGJ_SZEXFI,Tiffany steals Chucky from the police and sends him to the next victim.\ntt2230358,WnBzLtUAnIg,Chucky tells Nica his origin story.\ntt2230358,BzMaqlt74NY,Ian tries to prove Nica is guilty by looking through footage from the nanny cam he hid in Chucky.\ntt2230358,WVDrmwtooj4,Ian suspects Nica is a killer.\ntt2230358,AP_hr5nmo9M,Nica runs away from Chucky and finds Ian to tell him she can't find Alice.\ntt2230358,f505OHOUHoU,\"Barb looks for Alice in the attic, but instead she finds Chucky's true self.\"\ntt0387575,iFEr1xsuksI,\"Despite promising to never kill again, Tiffany can't help but kill Redman after realizing he just used actress Jennifer Tilly for sex.\"\ntt0387575,7RsohcD0tS8,\"Tiffany and Glen try to put their souls into Jennifer Tilly and her children, but Chucky crashes the party and the family comes to a bloody end.\"\ntt2230358,_7pkwL7yY5g,Barb tucks Alice in for bed.\ntt2230358,71FkH7FwfFg,Father Frank is involved in a severe car accident.\ntt0387575,WSADpIlmqQ8,Jennifer Tilly wakes up to find herself with a full pregnant belly. She tries to call her friend Joan but Chucky and Tiffany interrupt.\ntt2230358,rdEbjNy5BNs,Alice meets Chucky.\ntt0387575,lN4oFlIKm7A,Chucky takes Glen with him on a mission to kill a paparazzo who took their picture.\ntt0387575,5lBfYlWmDC8,\"Glen tracks down his parents, Chucky and Tiffany, who are now animatronic dolls in a movie.\"\ntt0387575,ARKPBJdE_QU,Chucky and Tiffany find out that Glen is missing some rather important anatomy.\ntt0387575,NtQdJIeh2ho,\"While having a boys night out, Chucky gets cut off by Britney Spears. He responds by running her off the road.\"\ntt0387575,I8yAmR1UymM,\"While putting Glen to bed, Chucky and Tiffany are asked why they kill.\"\ntt0144120,sggwHnudtH0,\"After Tiffany betrays Chucky, Jade takes the opportunity to shoot him through the chest and leave him in the grave of his original body.\"\ntt0144120,37yJV-YPBJY,\"Chucky and Tiffany reveal themselves to Jesse, Jade and their friend David.\"\ntt0144120,Snt_FLn3dwM,\"While being held hostage, Jesse and Jade manipulate Chucky and Tiffany into fighting with each other.\"\ntt0387575,YPQJOKn0I0s,\"After being given as a gift to a little girl, Glen wakes up in the middle of the night and gives in to his murderous instinct.\"\ntt0144120,cqD8XBONBHY,\"While Tiffany is watching TV and taking a bath, Chucky escapes from the pen she put him in and electrocutes her to death with the TV. To get further revenge, he casts a spell to put her soul in a doll.\"\ntt0144120,p4yCboEAjLk,\"A police officer searches Jesse's van for drugs. Chucky and Tiffany decide he is too close to interrupting their plans, so they blow him up.\"\ntt0144120,lniVpfK5SW8,\"A police officer is bribed to bring the remains of Chucky to an abandoned warehouse. Once there, he is killed by Tiffany, Chucky's former girlfriend.\"\ntt0144120,nID1enI2xW8,\"After Chucky and Tiffany manipulate her neighbor, Jesse, into transporting them, they find corrupt police officer Warren Kincaid attempting to ruin their plan.\"\ntt1850457,W_CvL_fMIm4,Jane forces Maura to ask the good-looking neighbor James to the party.\ntt1850457,Uw1WGruy_KI,Maura struggles to say Hae Won's name.\ntt1850457,IyN025OadaE,Jane and Maura try on sexy dresses for their upcoming party.\ntt1850457,GyhrH5E6B6g,Jane and Brinda argue about their past rivalry in high school.\ntt1850457,-3RMOO6mHr4,\"As the party starts to fade, Jane makes a speech and cranks things up.\"\ntt1850457,GJsTqU9Ujxo,Jane and Maura perform their favorite dance from high school.\ntt1850457,jx757TP9spg,\"During a sexual encounter, James falls and gets a music box stuck inside his butt.\"\ntt1850457,AqMWvk5DMcU,\"When their entire house is destroyed, Jane and Maura get in an epic cat fight.\"\ntt1850457,_XAKjc2gIfo,Jane and Maura buy drugs from a very prepared drug dealer.\ntt1850457,KhtepI51wuo,Jane and Maura compare their vastly different diary entries from high school.\ntt3321300,tv_xMisf9oc,\"Will chases what he believes to be a terrorist through an airport, only to discover Harry waiting for him with an explanation for his disappearance.\"\ntt3321300,nVKSBDddFxM,\"Harry gives Will his father's wedding ring, and explains why he felt the need to decommission him from MI-5.\"\ntt3321300,W2roZO0kTUs,\"When terrorists mount an attack on MI-5, Harry is left with no choice but to let Qasim go free, leading to the death of a CIA operative.\"\ntt3321300,YkYqKiASqJM,\"When Qasim threatens to take down all of MI-5, Will breaks free and takes him out once and for all.\"\ntt3321300,nNKsj8rQGHc,\"Harry reveals that he knows Maltby was the real MI-5 traitor, and that he has used a deadly poison against her.\"\ntt3321300,EGqPXMAThig,\"Left with nowhere to turn, Harry reveals that he gave Qasim the location of MI-5 headquarters. Then, the agents are attacked and killed by the terrorist.\"\ntt3321300,XtFr2BdLrv0,\"Will and Harry fail to trick Qasim into believing they have his wife, leading Hannah to be shot by a sniper.\"\ntt3321300,XS2yOMGv5to,\"When Will and Harry discover that June tricked them and killed Vass, they hold her at gunpoint to draw out more information.\"\ntt3321300,dStxLpnwvWs,\"When Will and June investigate Vass' apartment for clues of corruption, it leads to a standoff and the end for one of the agents.\"\ntt3321300,plcl4YShR5Q,\"When Harry tries to strike a deal, Qasim uses Erin's life as a bargaining chip.\"\ntt0091778,309Cnimrm5A,Diane feels the story of Kane and the followers of his cult.\ntt0091778,Atyyr6d7-u8,\"Coping with the trauma, Steve's drinking leads to a nasty \"\"bug\"\".\"\ntt0091778,7WjOFzTTiHY,Diane is terrified when a possessed Steve attacks her.\ntt0091778,sjWdByLxTuI,\"The family journeys into the dark, creepy cave which is the resting place of Kane's people.\"\ntt0091778,Yp2w2XxXKD4,Carol Anne returns safely to her family after they nearly lose her in a battle with Kane.\ntt0091778,UtSE9OXHIgw,\"As the Freelings try to escape the house in their car, they are terrorized by a floating, vicious chainsaw.\"\ntt0091778,FSB26l-iDEw,Diane frantically searches the house for the children and gets spooked when she's attacked by a closet full of skeletons.\ntt0091778,ZMQCyJ2lhu8,\"After Steve throws up a giant alien-like creature, he and Diane chase after it as it heads towards the children.\"\ntt0091778,ayOLECuygTQ,Robbie's mouth full of metal turns evil as his braces come alive and start to attack his body.\ntt0091778,zqTxw0eiZaE,Steve gets a creepy visit from the man named Kane who predicts death for Steve and his family in their home.\ntt0091778,8l-HZqArmXU,\"When Carol Anne gets separated from her family, she has a frightening encounter with Kane for the first time.\"\ntt0091778,ofWdRHOZpV4,Diane wakes up in a panic from a terrible nightmare about zombies attacking her and burying her underground.\ntt0092076,U5fkvkaFqt4,\"Armed with three chainsaws, Lefty goes to town on the \"\"Saw Family\"\".\"\ntt0092076,CqHyrmbiD1E,The psychotic family line up their dinner for grandpa.\ntt0092076,9RrN7k_5fl4,\"Stretch meets Chop-Top, a burnt out hippie Nam vet cannibal and brother to Leatherface.\"\ntt0092076,AebCDidbqI8,Stretch tries to escape from Leatherface by seducing him.\ntt0092076,QPmSOAIRsj4,\"The Cook gets a standing ovation for his award winning chili, made with the best \"\"beef\"\".\"\ntt0092076,tkDK_YLfTO0,Leatherface can't kill Stretch because he might be in love. His family messes things up as she pleads for her life.\ntt0092076,-yEE_toKFxc,Lieutenant Lefty storms the home of the evil cannibals and they face off.\ntt0092076,QjrvHsFzbvI,\"Leatherface is given the choice \"\"sex or the saw\"\", but before he answers, Chop-Top \"\"bones\"\" Stretch.\"\ntt0092076,WfQ8qbtS63s,\"Lieutenant Enright visit the Chainsaw Store and finds some suitable weapons. Then he \"\"test drives\"\" them on a tree.\"\ntt0092076,Rv1MSTB7QeA,\"Chop-Top recovers from Leatherface's accidental chainsaw blow, which was deflected by the plate in Chop-Top's head.\"\ntt0092076,cIG0COsZmjg,Chop-Top creeps out Stretch while she's alone in the radio station before getting slashed by Leatherface.\ntt1659216,FXhW_IAJ_Yg,Jason and Rachel run for their lives as the Spider Queen attacks.\ntt1659216,vAJ_RdlVzgw,Col. Jenkins finds that his marines are woefully underprepared for the onslaught of spiders.\ntt1659216,2N4Tq6Zpx3g,Jason and Rachel run for their lives as the spiders escape into Manhattan.\ntt1659216,4kQr8dkriIg,\"Trapped in a warehouse by mutant spiders, Jason gets behind the wheel of a forklift and stabs, impales, and crushes his way to glory.\"\ntt1659216,vnJE2OLp55w,Dr. Darnoff explains the potential of the Queen Spider's power and military applications while Col. Jenkins hints at a deeper game.\ntt1659216,gbr7Qazpy2E,\"Rachel gets carjacked, and worse than taking her purse, the carjackers also take the mutant spider eggs.\"\ntt1659216,ivlV5kanNFE,\"Nothing in New York can stand up to the wrath of the Spider Queen, not even the military.\"\ntt1659216,ihOU-LC0ue8,Dr. Darnoff explains to Col. Jenkins how to care for the Spider Queen's eggs if they intend for her to become a military super weapon.\ntt1659216,yB_0DHi3Z4k,Jason tracks his dead worker's attack to an abandoned subway where awaits a much deeper terror.\ntt1659216,frxxz1Nx3x0,Jason makes one last desperate escape against the Spider Queen.\ntt1659216,xb4rFYLKzHA,\"Jason defends his family by fighting the Spider Queen head-on, but he may be grossly out of his league.\"\ntt1659216,A8WBlVOcSs8,\"Emily manages to escape to a toy store, but with the spiders closing in, it may take all of her wits to survive.\"\ntt0860462,mRRLEgHhu3U,\"In his ultimate showdown, Mercury Man fights a losing battle against his arch-enemy's sidekick, Areena, who now has ice powers.\"\ntt0860462,7cJS4h5_KJ0,\"Nikolai sets a trap for Mercury Man, but he was born ready.\"\ntt0860462,xzwBLuOLjzA,\"Nikolai informs Mercury Man that he \"\"will be lose because of the electricty,\"\" but Mercury Man doesn't go down so easily.\"\ntt0860462,4009LQ96f4E,\"Mercury Man cleans up crime around the city, surprising everyone as he goes.\"\ntt0860462,XdPLA-egIeQ,Mercury Man saves a crowd from psychically-controlled elephants.\ntt0860462,Mu4AuoaIuHg,\"Mercury Man vanquishes a handful of criminals, while Osama vanquishes a mountain.\"\ntt0860462,olg8NTkDXrI,\"Chan trains to hone his fiery powers, but Osama and Areena are doing some training of their own.\"\ntt0860462,LZcSMyk5Obo,Areena pays Chan and Grace a most unwelcome visit.\ntt0860462,t-DJLPtSaHw,\"Osama begins his wave of anti-American terror, which happens to impact an American playa.\"\ntt0860462,00Tazm9Z6XU,Everything you ever wanted to know about Sacred Amulets but were afraid to ask.\ntt0860462,eX7t2x1F5wA,\"Inheriting fire powers, Chan has a mystical experience with Guardian Purima, a sacred guru of fire.\"\ntt3453772,6uRycxZgotc,Lt. Rudy sacrifices himself to save the world from an asteroid.\ntt3453772,HLJHW3slPW0,The team is on a mission to deposit the nuclear warheads in a volcano when Metal steps on a land mine and blows himself in half.\ntt3453772,j6SBSViczK4,\"While Marissa launches her sub, their submarine gets hit by torpedoes and Captain Rogers dies.\"\ntt3453772,6R_37O7HwMI,\"After surviving a tidal wave made by the Hong Kong impact, the team sets off the bombs in the trench to try shift the Earth off its axis.\"\ntt3453772,Jfk2QR-qyZk,\"A piece of asteroid hits and destroys Hong Kong, but the impact isn't strong enough to move the Earth out of the way of the giant asteroid.\"\ntt3453772,SWnqUVFoQ9w,\"As General Masterson and international delegates work to destroy the asteroid, they accidently break off a piece and send it hurtling towards China.\"\ntt3453772,KTes0O7QBR8,Lt. Rudy and his crew save the nuclear weapons from a nearby volcanic eruption.\ntt3453772,CyXxBjk4UaQ,\"Just after a major storm, Major Sera picks up General Masterson for an emergency mission.\"\ntt3453772,5_C7GNWPinI,General Masterson debriefs Marissa and Chase on the impending asteroid disaster.\ntt3453772,ubD8vf5WvnE,Evan explains to General Masterson that the only way to avoid the asteroid is to move the Earth.\ntt0068762,aDrR7riBeLA,\"Jeremiah Johnson has his first meal with his new wife and \"\"son.\"\"\"\ntt0068762,bLbLsjRVm9Y,\"Jeremiah Johnson encounters Bear Claw again, this time as equals, true mountain men.\"\ntt0068762,ux9JHznPT8E,\"Jeremiah Johnson must marry Swan, the daughter of a Native American chief, or risk being murdered for insulting the tribe's honor.\"\ntt0068762,7NMQnDrBp60,\"Jeremiah Johnson meets a fur-trapper, Bear Claw, who asks him if he can skin a grizzly bear.\"\ntt0068762,qJ_EsjyYevs,\"In true pioneer spirit, Jeremiah Johnson builds a log cabin alongside his new wife and son.\"\ntt0068762,WrGf03jRHSE,Jeremiah Johnson is attacked twice by Crow warriors.\ntt0068762,pYhlVR9GzjA,Jeremiah Johnson meets Del Gue who was buried in sand by Native American warriors.\ntt0452694,Lt7yltFpVyE,\"After Henry has a vasectomy, Clare sleeps with a younger version of him and gets pregnant.\"\ntt0452694,k10DDJ4L2lc,Clare is overwhelmed at meeting Henry for the first time in years.\ntt0452694,6WArrD9VPJE,Henry proposes to Clare so he doesn't have to be alone anymore.\ntt0452694,OlPauBNIDAQ,Henry meets his mother on the subway and tells her about the girl he's in love with.\ntt0452694,L8cLSkIAgJ4,Henry introduces Clare to some of the benefits of time traveling.\ntt0452694,uV-u-N8RkKs,Henry and Clare realize that this is the last night he will be alive.\ntt0452694,5D4D0Hby47o,Henry and Clare have their first kiss after he travels back in time after having a vasectomy.\ntt0452694,iRd63BXG6nE,Henry meets his daughter Alba for the first time when she is nine years old.\ntt0452694,BdC4os4SOH0,\"After his death, a younger Henry returns and tells Alba how he met Clare.\"\ntt2554274,FvJp6IklZUA,\"Alan reveals the dark truth about the Sharpe siblings, which leads to disastrous consequences.\"\ntt2554274,UkDKxprXy_0,\"After learning the evils that Lady Sharpe has done, Edith escapes.\"\ntt2554274,toctHJpW6no,\"As Alan discovers a secret about Thomas, Thomas and Edith share a passionate evening.\"\ntt2554274,bZ7ZsN1FXuI,\"When Edith discovers a clue about Crimson Peak, a ghost crawls up from the floor and attacks her.\"\ntt2554274,hJErQ3vUD24,\"When Edith wakes up coughing blood, she sees a ghost who warns her about Thomas.\"\ntt2554274,e434wHYilA0,Edith discovers evidence that Thomas killed all his past wives.\ntt2554274,5xx4Ha3kGtg,\"When Edith discovers Thomas having sex with his sister, Lucille pushes her over the balcony.\"\ntt2554274,rkPT_6JWenQ,\"Lucille discovers that Thomas has true feelings for Edith and, unable to live with the grief, stabs him in the face.\"\ntt2554274,6mtG2DSbR3g,Edith sees the ghost of Thomas and leaves Crimson Peak.\ntt2554274,Kcf2d8epCXY,\"With help from Thomas' ghost, Edith defeats a murderous Lucille.\"\ntt2581244,vV3RTL40nmw,Zach takes Beth on a hike and says his final goodbyes to her.\ntt2581244,9b32VkOh2nQ,Kyle arrives at the Slocum's and tells Zach that he must kill Beth before she eats him.\ntt2581244,XHJI9tya2cM,Zach arrives at the Slocum's to find Beth eating Geenie's fingers to curb her growing appetite for human flesh.\ntt2581244,aIau-DQHI3Y,Maury tries to convince Zach to calm down an increasingly aggressive Beth.\ntt2581244,EegoLE6n-Gk,\"Zach arrives home to find his dead grandpa resurrected, and his family in turmoil.\"\ntt2581244,cJ4mSB-0OA0,Beth gets a little aggravated after she finds out about Zach's friend Erica.\ntt2581244,Kpomd1Lwn6Y,\"Zach reveals to Beth the truth about her accident and her \"\"resurrection.\"\"\"\ntt2581244,X9A5UFJ1iZk,Beth gets a little too aggressive after listening to smooth jazz music.\ntt2581244,PWfgDuO0vmI,Zach goes to the Slocum house looking for the truth about Beth's return.\ntt2581244,6bDF7ZQgkZA,\"Zach tries to take Beth out for a romantic night at the beach, but things go crazy after he starts to play a song for her.\"\ntt4685096,SXOm6AEArjo,\"After all the work he has done to ruin everyone's day, the mutated shark decides he deserves a hand and he picks Stanley to give it to him.\"\ntt4685096,K04WrySpUH8,\"As Maggie leads the group to safety, the mutated shark comes across something as deadly as him, the machete wielding Max Burns.\"\ntt4685096,nBlkMaEmWeI,\"Maggie and her friends meet Max, the man who definitely, no doubt about it, killed the 3-headed shark.\"\ntt4685096,rpE_9A4LXWs,\"As the rest of his friends attempt to escape the sinking party boat, Ryan finds his inner action hero and decides to take on the shark with an ax.\"\ntt4685096,gIQWTB6lNlw,\"When people on the boat aren't falling into the water fast enough, the mutated shark decides to speed up the process.\"\ntt4685096,Od9Z1C8dboY,\"When the 3-headed shark finds a party cruise, the young partiers go from having fun to being food.\"\ntt4685096,Jz0Ueh_tkFg,Dr. Thomas decides to distract the shark so that the others can make it to the boat.\ntt4685096,3Rayb1Y5SmA,\"When the research base is under attack from the mutated shark, no one is safe, not even in the bathroom.\"\ntt4685096,mY-6iHAZZoo,\"While visiting a marine life research center, Maggie, Greg and the rest of the group get a much more gruesome experience than they expected from the tour.\"\ntt4685096,wT2zu8zPXHQ,\"It's the worst day ever for a group of young, sexy and drunk college students when a mutated shark interrupts their time at the beach.\"\ntt2043757,XGg85Qv_gK4,\"When Jeff and Mike inspect a severed limb they see in the water, the 2-headed shark pulls them in the water and kills them.\"\ntt2043757,8yXl1yKbBiU,\"During a boat race between Kate and Cole, the 2-headed shark attacks. When Ryan falls out of the boat, he is attacked and eaten.\"\ntt2043757,VPzrMnBW_JY,\"A 2-headed shark attacks the boat, causing it to take on water.\"\ntt2043757,B7rcsBCaMI4,\"As Kate tries to mend their escape boat, the shark attacks land, forcing some to run before tearing others to shreds.\"\ntt2043757,xaYlkjfpdG0,\"Cole jumps ship to get away from the pursuing shark, leaving the others for dead.\"\ntt2043757,cl1Yl57gCW4,Kate uses the only remaining boat as a bomb to finish off the 2-headed shark.\ntt2043757,qq3C3psItOo,\"When they get trapped inside a flooded church, the rest of the students are eaten alive, providing an opportunity for Kate, Kirsten, and Paul to escape.\"\ntt2043757,bQ9vlCKo04g,Kate faces her fears and fights the shark head on. Kirsten draws the sharks attention and is devoured.\ntt2043757,s8BQXJxRw10,\"Just when they think they are safe, Kristen and Dana are devoured. Then, left with nowhere to run, Professor Babish and Anne share a kiss before being eaten as well.\"\ntt2043757,qFbklFTJlCs,\"Cole steals the boat, leaving the other students stranded on the island. However, when it does not go as planned, he is forced into a raft and then devoured by the shark.\"\ntt1491044,5MB15iYADy0,Kuklinski reveals the only regret he has is hurting his family.\ntt1491044,o36MJbiMMH8,Kuklinski and Pronge reconsider their partnership.\ntt1491044,gQ1o6y8iYXs,Roy pays Richie a visit during Richie's daughter's birthday.\ntt1491044,9FuvuHFUeoE,Kuklinski confronts Leo on what he is owed.\ntt1491044,qr6vDBiESB4,\"When Richie and his family get in a car accident, Richie loses control.\"\ntt1491044,LKXQQmMdiws,Pronge and Kuklinski are given a new job.\ntt1491044,RJ2waor6V0g,\"After Demeo closes the porn lab, he gives Kuklinski a new line of work -- if he is up for the job.\"\ntt1491044,5HbKxlvyiLk,Richie and Deb get into a fight because she thinks he does not care anymore.\ntt1491044,8APhdryZ6m4,Kuklinski goes to Pronge with a business proposition.\ntt1491044,4LY3sXlBbk4,\"Kuklinski is ordered to kill Marty, but he asks to pray first.\"\ntt1491044,oX3g90bTn1g,Richard Kuklinski starts to lead a double life of crime and being a family man.\ntt1341341,mkEMQ9OK088,Zoe explains that she has grown up and can't be with Sam anymore.\ntt1341341,80xURylcWpI,Marshall explodes at Sam for using him and leaves.\ntt1341341,lLxVEs_X_9k,Teddy gives the heartbroken Sam some friendly advice.\ntt1341341,QtSzDCV1CHI,\"Sam tells Marshall that he needs his help because he's at war with Whit, but Marshall feels betrayed by him.\"\ntt1341341,nqIhzUUH6Ts,\"Sam spends all night talking at Zoe's door about marrying him, but she only catches the end of his speech.\"\ntt1341341,FCv0BgoGj0g,Sam keeps trying to win Zoe back and they sleep together.\ntt1341341,vI48ZXLGoBk,Sam enjoys breakfast with the colorful characters at the estate.\ntt1341341,SRoBDfwS2xU,Sam kisses Zoe the day before her wedding and declares his love for her.\ntt1341341,KOAAIBdD3bM,Teddy makes a drunken toast at the wedding dinner and then Whit makes a very narcissistic one.\ntt1341341,9dSVd8ISfl8,\"Sam crashes Zoe's wedding weekend, making her very nervous.\"\ntt0093223,6mJk2i7Lfjs,\"Margaret shoots Mike, and as he continues to degrade her, she shoots him until he dies.\"\ntt0093223,gPv4C6gIdOo,Margaret puts the heat on Mike as soon as he realizes she knows the truth.\ntt0093223,sp2FvfOi928,Margaret secretly listens in as Mike and the other men talk about the con they pulled on her and the money they made.\ntt0093223,WSBO1fuXCCE,\"Margaret tries to escape the hotel room past the cop, but he doesn't budge and the resulting struggle results in his death.\"\ntt0093223,PW-I6rrNzyM,\"When Mike realizes the briefcase full of mob money is gone, Margaret offers to give him the missing $80,000.\"\ntt0093223,5FHPI2NlOm8,Mike tells Margaret what he wants during an intimate moment together on an evening stroll.\ntt0093223,rC9LfNF_CW8,\"Margaret convinces Mike to let her in on the sting, and in the process, they stumble upon a briefcase full of bills.\"\ntt0093223,N27gumJNHP0,Mike shows Margaret a con at Western Union when he manipulates a marine.\ntt0093223,GLmTfdkWZp4,Margaret calls out the con men and doesn't buy their gag during a crooked game of cards.\ntt0093223,FTJcaJziQ1I,\"When Margaret's instinct on a poker player proves wrong, Mike loses the hand, but she offers up the $6,000.\"\ntt0093223,ftNK4JPSoto,\"Mike teaches Margaret about \"\"tells\"\" and enlists her help during a poker game.\"\ntt2292182,yUrcH6c-FX4,Reagan gets her own revenge on Tiburon.\ntt2292182,VScQtueKnXM,\"In their final battle with the great white shark, Cal sacrifices himself for Reagan, who ultimately wins Tiburon's game.\"\ntt2292182,UdRma1qSMGo,\"Elena tries to kill Reagan, but Reagan outwits her.\"\ntt2292182,SVYv9SJAr2M,\"In order to get a boat, Frankie leads the group in an attack on the shark.\"\ntt2292182,Y9_k4iGJMco,\"When Holt steps on a bomb in a minefield, Cal helps him while the rest of the group escapes.\"\ntt2292182,olj-IIjnxLY,\"Francine tries to help Cal by distracting the shark, but she doesn't make it.\"\ntt2292182,f-mlUVx01MA,\"Layla sacrifices herself for the good of the group, setting off an explosion in the mouth of the shark.\"\ntt2292182,9uRPfjWwOL0,\"The group battles their next shark, the hammerhead.\"\ntt2292182,6Dg8xn6Rdwo,Tiburon teaches his hostages a lesson by pushing Roger into a pool of shark pups when he questions authority.\ntt2292182,HycJFYsUxaU,Tiburon forces his hostage to play a game that ends in a fatal shark attack.\ntt1927093,yZWEB9JWLHM,\"Fred, with the help of Bertha and Talia, trick Kevin and his friends into thinking that he is actually a vampire, not Mr. Devlin.\"\ntt1927093,vkX9jHBsmwM,\"In a dream, Fred and his imaginary Dad fight Mr. Devlin and Kevin in an all out WWE boxing match.\"\ntt1927093,4pHgq_uwXjs,Fred envisions himself taking out Mr. Devlin publicly at the piano recital.\ntt1927093,BoGZH9krgjE,\"While trying to gather objects to expose Mr. Devlin, Fred runs into Derf and a little bit of trouble.\"\ntt1927093,vMwfVOf1-vM,Fred's Dad helps Fred make a plan to expose Devlin.\ntt1927093,w6USFL0JYAU,Fred believes Mr. Devlin is probably a vampire.\ntt1927093,-78FgmNwyD4,Fred finds out that Talia is actually Kevin's sister.\ntt1927093,7MJd-RSHTqs,\"Fred's Mom tells Fred that he has to go to a party at his archnemesis' house. Fortunately, he gets a pep talk from his imaginary dad.\"\ntt1927093,JegIRfX4LJQ,\"Fred is asked by his new music teacher Mr. Devlin to play his piano piece in front of the class, but Fred duels his archnemsis Kevin in his imagination.\"\ntt1927093,hEH49mSRWGw,\"After seeing Talia disappear suddenly, Fred thinks that she is a ghost.\"\ntt2236160,RmSIKuobH10,Robin is possessed when she kills Nia and jumps off a cliff.\ntt2236160,PbndU1PQlPk,Robin enters the church and asks Ethan for forgiveness.\ntt2236160,jS7XOEttewM,Robin and Nia find an article about the forest that explains the symptoms they've been experiencing.\ntt2236160,NmsLAaKjKEE,Chris and Amelia are killed by a possessed Nia in the haunted church.\ntt2236160,9hXnvqJ7uxQ,Robin tells Nia the story of Ethan's suicide in the forest.\ntt2236160,no5XxM0OY4o,Nia and Robin are approached by a mysterious force in the middle of the haunted forest.\ntt2236160,vIrRt0vaySY,Robin panics when she finds Nia passed out and the rest of her friends missing.\ntt2236160,Xe8LJ4g7Dpg,Chris discovers Robin and Nia passed out and decides to call for help.\ntt2236160,rXyyr3kSB3s,Ben gets lost looking for his friends in a game of Nightlight.\ntt2236160,oKCF_TzQ6Pk,Chris proves that some unknown thing in the forest controls lights.\ntt2490326,--vFXH3mH3A,Wade lights the Cootie Kids on fire and saves the day.\ntt2490326,uvAd-GbYBVw,\"In Danville, the group discovers that the virus spread into a pandemic and Doug finds an infected nugget to create an antidote.\"\ntt2490326,G6EzUGdelYg,Clint kills Patriot to save everyone in the car.\ntt2490326,SQ9JOrG0mUM,The teachers battle the Cootie Kids and Wade sacrifices himself so the others can get away.\ntt2490326,x6jUAU8hoBk,Wade prepares the team to battle the Cootie Kids.\ntt2490326,_oFhIKlIBr0,\"Wade kills a Cootie Kid, Doug examines the corpse and Rick learns that this zombie issue is real and it's widespread.\"\ntt2490326,ZMZxDJb5V8o,Clint is chosen to go through the air duct to get the keys and Lucy decides to go with him.\ntt2490326,jR3JlEXdBIo,\"Vice Principal Simms gets killed when he tries to stop the children from eating a teacher, but Wade gets away safely when he makes a run for it.\"\ntt2490326,y5cSt5uqt3E,\"The teachers pick up Calvin, who is not infected, and hide from the other kids.\"\ntt2490326,c7AescgZzEg,On Clint's first day as a substitute teacher at his old elementary school he meets his fellow coworkers.\ntt0093300,i-VM7_DJlkQ,\"Ellen and Carla notice a shark in the water, where Carla's daughter Thea is playing.\"\ntt0093300,wrkeOayCv6E,\"While Michael blasts the shark with electical impulses that drive it mad, Ellen heads straight for the beast.\"\ntt0093300,5kgYUoeOPj4,\"Michael, Jake and Hoagie use a plane to search for Michael's mother, Elllen.\"\ntt0093300,UbrDTO9asW4,\"While Michael is underwater doing research, the shark appears and chases him through a sunken ship.\"\ntt0093300,Fl9Cexw3ACk,\"When Michael, Jake and their crew are attacked by a great white, Michael's mother, Ellen, seems to be able to sense the attack.\"\ntt0093300,sf2eXsM6Kik,\"Jake along with Michael and his crew, attempt to put a tracking device on the shark.\"\ntt0093300,8CCr6_Xqt1k,Hoagie fixes the boat as Jake makes them wait for the shark to reappear so he can place an explosive in its mouth.\ntt0093300,MG_ZMkTJ1dA,\"Sean Brody, a police deputy, attempts to clear a log from a buoy only to get attacked by a large great white shark.\"\ntt0085750,QQsH99EAwoE,Mike and Kay are attacked by the shark while they attempt to repair the underwater tunnel that has trapped a bunch of visitors.\ntt0085750,bLi52djkRTs,\"After a corpse appears in the park's water Mike and Kay inspect it and realize not only is it body of a missing worker, but it was killed by a bigger shark then the one they captured.\"\ntt0085750,a4Td_W5dc1w,\"After a huge killer shark gets inside the marine park, visitors in the new underwater tunnel section are advised to calmly exit.\"\ntt0085750,_CWSn-Zdi5w,\"While attempting to trap the shark in the filtration pipe, FitzRoyce gets eaten whole.\"\ntt0085750,arsAllZIa1Y,The shark smashes into the control room and eats one of the technicians while Mike and Kay try to swim away.\ntt0085750,Gw8uD1xHhBc,A SeaWorld mechanic is attacked and killed by a shark.\ntt0085750,IMzMccLiMIc,The shark starts to cause mass chaos by attacking any and everything in the water at the marine park.\ntt0085750,lRAsSTNZD8g,\"Mike, Kay, and Philip along with other SeaWorld employees attempt to capture the great white shark that made its way into their water.\"\ntt0085750,Cdgq2SQcKcQ,Mike and Kay are attacked by a great white only to be rescued by Kay's trained dolphins.\ntt0077766,ciL0tWi56tM,\"A helicopter arrives to help tow the teenagers to the shore, but right as they rig up a rope line, the helicopter is attacked by the shark and dragged underwater.\"\ntt0077766,pfVP6HBoflg,Brody gets the killer shark to bite an underwater power cable and electrocute itself.\ntt0077766,qy_ZclSCUwA,The shark attacks a group of teenagers who are all sailing together in seperate boats.\ntt0077766,rqWz0oKJQ5E,\"While underwater, a diver has a close encounter with a great white, only to get hurt by rushing to the surface too fast.\"\ntt0077766,a6CsW4dCk_8,Teenagers Eddie and Tina encounter the shark while out sailing.\ntt0077766,N92pfxjHXkg,Police Chief Martin Brody finds a burned corpse in the water.\ntt0077766,cVPTibn-ewI,\"During a popular day at the beach, Body spots a large underwater shadow, he believes it's a shark and orders everyone out of the water.\"\ntt0077766,yr923CbtKsU,A female water skier and her friend are killed when they are attacked by a large great white shark.\ntt0077766,D3PcFuLPhG4,\"After getting a blurred photo of a shark, Brody tries to convince the town council that they have a real problem on their hands.\"\ntt2080374,2fweZsmH4Tw,Woz demands that Steve acknowledge the importance of the Apple II team during the presentation of the iMac.\ntt2080374,1To7zCTHAv4,\"After Lisa reveals that she read the Time Magazine piece about her paternity, Steve tells her the truth about the Lisa computer.\"\ntt2080374,JhNznuSZ1n8,Joanna demands Steve fix his relationship with his daughter.\ntt2080374,moeAot5_Q_U,Steve's dramatic exit from Apple leads to a heated confrontation with Scully moments before the NeXt presentation.\ntt2080374,ya0uliWzUTI,\"Facing an ethical dilemma over the voice demo, Steve explains to Joanna the importance of the Macintosh saying, \"\"Hello.\"\"\"\ntt2080374,mLKA_BX6xKo,Steve threatens Andy with humiliation if he can't find a solution for the voice demo.\ntt2080374,AeZQ4Oi1wu8,Woz confronts Steve over their changing relationship and the impending failure of the NeXT Computer.\ntt2080374,C6MgTAuqpXc,Steve explains to Lisa the meaning of coincidence.\ntt2080374,XS-R1raNESI,An irritated Steve demands solutions after the Macintosh's voice demo fails.\ntt2080374,-b-EFcA7ing,Joanna tries to quell Steve's high expectations for the Mac.\ntt0061747,DHL2KTvQ_eQ,Cooper agrees to continue serving as Marshal for Judge Fenton.\ntt0061747,1yMhC0o3y_0,Bliss cuts Cooper down from a tree and brings him back to life.\ntt0061747,BocJIlRPVvU,Duffy addresses the crowd at his hanging about the evils of alcohol.\ntt0061747,8-0dpreHXFM,Miller tries to convince Cooper to let him go.\ntt0061747,zDQueu9EF6M,Miller attacks Cooper in an attempt to break free.\ntt0061747,2QRFeV4rPZE,Cooper questions Judge Fenton about his decision to hang some innocent men.\ntt0061747,rqS6CaouXwE,\"While the town watches the hanging, Cooper is ambushed by three men.\"\ntt0061747,-pEKUJ9MADs,Bliss shoots The Prophet when he makes a run for it.\ntt0061747,ZgbGOBeeaD8,Judge Fenton offers the job of marshal to Cooper.\ntt0061747,frIi1u8PAlc,Rachel tells Cooper about the men who raped her.\ntt0061747,eB46dRO0YZ8,Cooper tracks Reno down in a bar and kills him.\ntt0061747,vl5LaKMkhYw,Cooper gets hung by a posse despite proclaiming his innocence.\ntt0468492,uk2ovL8llCw,Park Gang-Du attempts to save his daughter from the monster.\ntt0468492,djquKsYMo74,Park Hyun-seo tries to escape from the monster using a rope made from the clothes of its victims.\ntt0468492,jQTtJ71PkKE,Hyun-seo prepares her escape from the sewer just as the monster returns.\ntt0468492,ZGha6pmwigQ,\"As Park Gang-Du races to save his daughter, the government uses Agent Yellow to incapacitate the monster.\"\ntt0468492,_GksGDm__8U,Park Gang-Du takes a hostage and threatens to inject her with the virus.\ntt0468492,fXGEXg5q5HM,Park Gang-Du watches as his father makes a last stand against the monster.\ntt0468492,SN9LQ05sQEU,The Park family finally kills the monster with a flaming arrow.\ntt0468492,4V7dPXjZJC0,Park Gang-Du and his family cry over the death of his daughter.\ntt0468492,LkkVEYz6y20,Park Gang-Du helps his family escape from the hospital.\ntt0468492,j4mo1ywVR_M,A doctor asks his assistant to pour toxins down the drain.\ntt0468492,lGcW9Egfm2M,Park Gang-Du tries to fight back when a strange amphibious creature runs amok.\ntt0079261,r1fp_NVGr6Q,\"Soldiers sing, \"\"The Flesh Failures,\"\" as they are marched onboard the transport plane to deploy.\"\ntt0079261,kzueHOeJk40,The cast sings about the difference between black boys and white boys.\ntt0079261,UTKrefMHcJQ,\"The cast sings \"\"Let the Sunshine In\"\" both in celebration and in protest, as they march on Washington.\"\ntt0079261,q1D9i-d1m4Y,\"Hippies in the park sing and dance, \"\"Ain't Got No,\"\" about all the stuff they don't have, including all the bad stuff.\"\ntt0079261,DOrvXyOMjhQ,\"Claude laments, \"\"Where Do I Go,\"\" as he walks down the crowded Manhattan streets.\"\ntt0079261,LepvQqFvoWc,Claude is welcomed by the hippies with a song about him.\ntt0079261,t3XewsVnx9E,\"Sheila sings \"\"Good Morning Starshine\"\" while she drives with the others in a convertible.\"\ntt0079261,BTZArvbmG_o,\"Claude walks through the park watching the hippies dance and sing \"\"Aquarius.\"\"\"\ntt0079261,U45CzgrLE9s,\"When Hud leaves his fiancee and son, Hud's Fiancee sings, \"\"Easy to Be Hard.\"\"\"\ntt0079261,5P2p_4ftJjE,\"Hippies perform the song \"\"Hair\"\" in the park and in a prison.\"\ntt0988045,73F6wZrDxao,\"After Watson stops Anesidora from blowing up Buckingham Palace, Holmes kills his brother in order to save Watson.\"\ntt0988045,6QEYgLKNZd0,Thorpe sends his robot off to blow up Buckingham Palace and he offers Watson a chance to work together.\ntt0988045,fI5qOb-otrs,Holmes saves Watson and they both set out to stop Thorpe.\ntt0988045,cKJ6Jyo_9to,Thorpe explains his plan to get revenge on Lestrade and Holmes is shot when he tries to intervene.\ntt0988045,SxMetYMwzUU,Holmes and Watson sneak into a mansion and discover Holmes' brother is the villain they've been hunting.\ntt0988045,RqNXT7abtQQ,Grolton is attacked by a dinosaur and thrown from an exploding building while Holmes and Watson wait for him outside.\ntt0988045,AjXsoJGi1fo,\"Holmes and Watson come across a terrifying, unidentified beast, giving Watson a reason to believe the newspaper stories are true.\"\ntt0988045,07k4FaH9dTc,Anesidora seeks out Watson to secure medications for her uncle.\ntt0988045,crX0CMJ_aIQ,\"John tries to buy a prostitute, but gets a surprising interaction with a dinosaur instead.\"\ntt0988045,SiOImcd9L2c,Holmes quickly solves the mystery of Watson's autopsy in the interest of saving time.\ntt1094162,x94XSdW6eEE,\"Lee, Hilary, and Tammy survive and The Hunter reveals himself to be human.\"\ntt1094162,ZfKsbOpsea4,Half of the group is killed by The Hunter and Lee kills The Alien.\ntt1094162,8YaSWlYa9u4,\"The Hunter uses invisibility and super strength to fight off the group, and The Alien ends up killing Styles and Valentine.\"\ntt1094162,aCx3jrZJjPM,Figgus jokes around on the spaceship while Freckles tries to come up with a survival plan.\ntt1094162,btug5ZMTWuk,The group discovers that Valentine is alive and Tammy's mother is dead.\ntt1094162,xiXiMxTbu5k,Garrison is lost in the tunnel and leaves one last message for his wife before he's killed by The Alien.\ntt1094162,_8dcjZCqilE,The group seeks help from a hostile old friend named Valentine.\ntt1094162,VaQo1PTIzXs,Valentine takes on The Hunter alone while the others escape.\ntt1094162,c_lWrv5E18A,\"The group tries to hide in the tunnels, but Javier gets eaten by The Alien.\"\ntt1094162,1OXNsIjuAnk,Joel is killed by The Alien and Lee joins Tammy on her search for her mother.\ntt1586261,lq2V4EnoY68,\"When Samantha goes missing, Thomas finds her disoriented in the attic.\"\ntt1586261,rFBErC8napg,\"Dr. Lauren tells Samantha and Thomas about the origins of \"\"maron\"\" and the ghost's obsession with Samantha.\"\ntt1586261,DLUx3hDY2wI,Ellen attempts suicide while possessed by the ghost.\ntt1586261,0KtJi_MLKqY,Ellen tells Thomas about how the ghost followed them to their hotel room and attacked Samantha in her bed.\ntt1586261,6CO4uEdr8p4,Something sets off the traps that Thomas set for the ghost.\ntt1586261,5BBhXUaqDZQ,\"After odd noises wake up everyone in the house, Thomas and his family find mysterious footprints on the ceiling that lead to a ghost encounter.\"\ntt1586261,wQlyX4xKYeU,Thomas follows footprints on his ceiling to their place of origin - his father's ashes.\ntt1586261,_ZpONi1-f24,\"Thomas is alone in an empty house when a familiar voice leads him to a piece of paper labeled \"\"maron\"\".\"\ntt1586261,u34dzFKx4Rg,A ghostly presence moves things around while the house residents sleep.\ntt1586261,P8Cv5p0cgG0,Ellen is completely unaware of what she's doing when she becomes possessed by a ghost.\ntt2195548,itk5hcD2sFs,Alvin and Lance let their inhibitions go and have a good time together.\ntt2195548,u5qpNA4ZIFA,Lance admits that he is also dealing with a very serious dilemma.\ntt2195548,n8r0JS4Z9tI,Lance tries to cheer up the heartbroken Alvin.\ntt2195548,S7yCsHLwg30,Alvin injures himself and admits that he feels like he wants to die sometimes.\ntt2195548,tSYhESdFisA,Lance goes on strike because he doesn't like how Alvin is treating him.\ntt2195548,xWZtwOffj1o,Alvin is very upset when he realizes that Lance read the letter where he got dumped.\ntt2195548,ACr98cpjXnE,Lance recounts how he lost his chances for sex on his trip to town.\ntt2195548,6Knf2lu45Yw,Alvin meets a woman who is still devastated by the loss of her home in the fire.\ntt2195548,5ZxVaJcxkMo,\"Alvin tells Lance why he prefers being alone, but Lance is very horny.\"\ntt2195548,YVmZ5gRR_zc,The guys meet an old dump truck driver on the road who shares a stiff drink with them.\ntt1536410,Z9QsVa8r5Fk,\"Anna and Sam stop Tearjerk Jack, but at a high cost.\"\ntt1536410,8skrIns6h6I,\"Anna's inability to recognize faces proves disasterous with Sam, and even worse with Tearjerk Jack.\"\ntt1536410,KuebMqpuoEg,Dr. Langenkamp guides Anna through hyponotic meditation to find the killer's identity.\ntt1536410,uvUaNcx7mlg,Anna connects with Sam.\ntt1536410,LFB_SKdGuLk,\"Anna's therapy to recognize faces improves, but it's still not enough to help her identify Tearjerk Jack.\"\ntt1536410,eAvVsXliFxo,\"Anna Marchant tells Francine and Nina about how she's learning to recognize people, though her husband is still a challenge.\"\ntt1536410,rXDhJmUGdiM,Anna breaks down when she's unable to even remember what she looks like.\ntt1536410,Td6UanhjhVs,\"Convinced she's being stalked by Tearjerk Jack, Anna races to escape from the subway train.\"\ntt1536410,OFcprqLHg-M,\"Sam tries to get Anna to reveal information about the killer, but her condition makes that impossible.\"\ntt1536410,9pcfdiFrBEQ,\"Anna visits Dr. Langenkamp, who gives her some deeper, albeit troubling, insight into her condition.\"\ntt1536410,s1pDel1G9Eg,\"Anna discovers, to her horror, that she can no longer differentiate between faces.\"\ntt1536410,kePIiYeH2Ko,Anna Marchant's night becomes a nightmare when she takes the wrong way home.\ntt1524575,TaYnzfexuFg,Cardinal Bruun pushes the demon inside Angela to a volatile point.\ntt1524575,ybq8gINMdBs,\"Vicar Imani shows Father Lozano the Vatican archives, and the news of the Antichrist's work on Earth while Father Lozano has been recovering.\"\ntt1524575,eIAiu9_4JDs,Angela is revealed to be the antichrist and her first murder will be Cardinal Bruun.\ntt1524575,LiI1LdPRcQM,Cardinal Bruun tests Angela to see if there's a demon inside her.\ntt1524575,dpg077fR9Mc,Angela commands her cohabitants to do insane and violent things until Father Lozano finally stops her.\ntt1524575,jAwlK8vL8OQ,Cardinal Bruun prepares for the exorcism.\ntt1524575,OIFEMSfu4pk,\"After questioning Angela, Det. Simmons stabs his own eyes out.\"\ntt1524575,yCUaXGVdi_k,Angela makes Dr. Richards uncomfortable in her therapy session.\ntt1524575,ooiimi7zkoE,\"Father Lozano prays over Angela as they take her off life support, only for her to come back to life.\"\ntt1524575,IwA5uSA5ZBI,Something overcomes Angela and causes her to create a car accident that leaves her in a coma.\ntt3605418,iQoNLmqqMQA,The girls leave Evan buried in the ground watching a disturbing sex video of himself posted on Facebook.\ntt3605418,zCttJu0ZFpw,\"The girls blackmail Evan into having sex with Bell, and when he escapes, Genesis stabs his surgery scar until he passes out.\"\ntt3605418,52sXSYdNPsg,\"Evan tries to escape while playing hide and seek, but he doesn't make it.\"\ntt3605418,2Qx3hHEoqMs,The girls tell Evan that his punishment is death and Evan freaks out.\ntt3605418,7TY3DFSCrOc,The girls force Evan to play their own made-up game designed for pedophiles.\ntt3605418,FvUs8613_TM,\"While Evan is tied to the bed, Bell punishes him for things her own father actually did to her.\"\ntt3605418,VvGhOtoy5iE,Evan tries to bargain his way out of a statutory rape situation and Vivian catches him with Genesis.\ntt3605418,l-aUy9_L22o,Genesis and Bell disobey when Evan asks them to leave.\ntt3605418,Le-bfbn43WE,Genesis and Bell come to Evan's door asking for help.\ntt3605418,hK2Em4D7fhU,\"Bell tries to seduce Evan, but they are interrupted when the Uber car arrives.\"\ntt2473682,koWVPnRRGlA,Hector escapes the demonic Jesse through a strange portal that takes him into the house of Katie and Micah in 2006.\ntt2473682,zvdLSI3-j-A,\"Marisol and Hector explore the witch's house, but things go from bad to worse.\"\ntt2473682,Y4fkp_IINqo,Jesse's grandmother attempts to exorcise the evil spirit that has taken him over.\ntt2473682,v7kRQXWpSdE,\"Jesse gets trapped in Anna's basement and comes face to face with evil, including a young Katie and Kristi.\"\ntt2473682,C42zpLSVjCY,A possessed Oscar appears to Jesse and warns him about the mark on his arm.\ntt2473682,gw4Sj4hJy4s,Jesse's lover discovers a hidden trapdoor in Anna's apartment while waiting for Jesse.\ntt2473682,OhncteZCJWE,Jesse sees something in his eye and fears that he is possessed by something evil.\ntt2473682,4nEsHsxsjew,Jesse is astonished to discover that he can defy physical laws.\ntt2473682,63KhwUcX8dE,\"When Jesse is jumped by two gang members, he exhibits super strength.\"\ntt2473682,9Fu4muqAsBM,Jesse realizes that his childhood toy may be possessed.\ntt2109184,CLfY0oLo7o0,Alex wanders through Katie's house trying to save her father from the witches.\ntt2109184,Gko7aal3o7U,\"Alex finds Ben's body in the closet, along with something else.\"\ntt2109184,rXpCjDg0RT0,\"While Katie tries to convince Wyatt to come out of the closet, Alex is being slowly killed by the evil presence.\"\ntt2109184,qBdgJs4tf60,\"Wyatt has a conversation with an evil spirit in the middle of the night, while another presence creeps up behind him.\"\ntt2109184,CtARWCZGiag,A possessed Katie takes out the unlucky Ben.\ntt2109184,b56RExAdg7s,Alex investigates the opening garage door and is trapped by an evil presence.\ntt2109184,OW1bbk4wVqo,Alex sees Robbie awake at night conversing with a strange presence.\ntt2109184,CYXBxG1COzQ,Wyatt sneaks out of bed in the middle of the night and levitates his sister with evil powers.\ntt2109184,WOcSwhJCnr8,Wyatt receives an unwanted visitor as he takes a bubble bath.\ntt2109184,W1U_sJhDIXI,Alex investigates a strange trail of toys into Wyatt's room and then is almost crushed by a falling chandelier.\ntt2205697,sfh3DVzcGAI,When Rusty sees Glen push Kate he punches him in the face.\ntt2205697,lTyNEv7TXmk,\"After three years of waiting, Erica comes to the home for Thanksgiving dinner.\"\ntt2205697,_s2FEVQePMg,Lou shares the tragic news of his mother's passing with Sam.\ntt2205697,pfk_iBQzECI,Lou and Sam share their first kiss.\ntt2205697,iekeU-w3im0,Tricia helps Bill choose a profile picture for his dating site profile.\ntt2205697,Ipf6Zg3UFTk,Sam opens up about her parent's divorce to Lou.\ntt2205697,SCp3HsyGqeo,\"Erica runs into her ex-husband, Bill, while Christmas shopping.\"\ntt2205697,SAMMLF75HmM,Lou tries to woo Sam at a bar by taking her jacket.\ntt2205697,LP22LQEq-tY,\"While getting coffee with Lou, Sam realize that they may have a connection which scares her.\"\ntt2205697,Xq_a8AYpKYA,Sam meets Lou at a bar and they both have different intentions.\ntt2205697,yF0HUzSCd84,\"Erica confronts her ex husband Bill about her non-existent relationship with her daughter, Sam.\"\ntt2205697,6ljUgAVSu0M,\"Samantha gives her brother, Rusty some sisterly advice.\"\ntt2708254,H8nX1mhYFk8,Tahime and J. Thomas Gaines match each other in the final round of the tournament.\ntt2708254,6MtwwUfJ8IE,Eugene and Searcy try to give Tahime some insider tips regarding his upcoming tournament.\ntt2708254,V2M1t7HAj1A,Eugene and Tahime go on air in a radio show to talk about their past tournament.\ntt2708254,cx2YdJwQaeU,Eugene confides in his daughter his doubts about the Chess Club.\ntt2708254,BDYgCu8m5dQ,\"Clifton, Tahime and Peanut go out for a drop off and things go awry.\"\ntt2708254,5LXDBdoZfy4,\"When Tahime wants to kill his mother's boyfriend, Eugene advises him to think about the consquences by using his own life as an example.\"\ntt2708254,3bcNygIQfMU,Eugene buys a run down house to become a home for the Chess Club.\ntt2708254,OqnFSU27fuE,\"Upon learning that Eugene is an ex-convict, Ms. King has to fire him and cancel Chess Club.\"\ntt2708254,m4qQ9IIo23c,Eugene teaches his students the basics of Chess.\ntt2708254,N7urptsSqNY,Eugene challenges Peanut to a game of cards.\ntt2708254,f4D3R4tJNMo,Clifton stands up to Eugene in detention.\ntt2226519,keymL9b6W4g,Hayley and Enzo's twisted relationship comes to a bone-chilling conclusion.\ntt2226519,JDnjiQCk2JQ,\"Carter confronts Hayley about her infidelity, becoming increasingly violent.\"\ntt2226519,sdc-LNkYA78,\"Annie and Enzo love the new music video, but Hayley is haunted by it.\"\ntt2226519,TFGYMpZUv4Q,\"Enzo shows Hayley some of his early films, and introduces her to heavy bondage.\"\ntt2226519,D_1bty7dttk,\"Enzo plays Hayley a mix of her voice distorted and ambient, and one thing leads to another.\"\ntt2226519,q1V_8cCX5Vg,Tensions rise in Hayley's house over a present from an obsessive fan who may be closer than anyone thinks.\ntt2226519,Ern5-LGeU50,\"Hayley returns home to her loving husband Carter, but he may not be the subject of her fantasies.\"\ntt2226519,gx4ZNttML0M,\"Facing writer's block, Hayley turns to Enzo to help her in a particularly decadent way.\"\ntt2226519,hh7_pDbACts,Enzo ravishes Hayley in the forest.\ntt2226519,yYhuz0q21_4,Enzo helps Hayley work off some stress.\ntt2226519,EFhZ72P48bc,Hayley runs into a stalker fan who doesn't think much of her new look.\ntt0781008,AFJ_QnfENd4,Stifler accidentally ruins Elyse's band routine by slipping ipecac in their drinks.\ntt0781008,zSd5uTUpuAY,\"Matt and Elyse finally kiss, but the moment ends prematurely.\"\ntt0781008,gijYgnVD9vo,Elyse rips Stifler for being such a douchebag.\ntt0781008,rWe5nzPq1JA,Brandon makes Stifler drink spit.\ntt0781008,nlH_5ejw7Gs,\"Stifler plays his triangle during his duel, but then brings out the big guns.\"\ntt0781008,oSc-5smBhRQ,Stifler learns to play the triangle and then challenges Brandon to a band camp duel.\ntt0781008,imcPspMbcL0,Matt Stifler plays a horrible prank on the band nerds during a performance.\ntt1602472,rlXTyrGsiHQ,Mingus considers breaking up with Marion.\ntt1602472,OjGiHy7VIhI,\"Marion attempts to get her soul contract back from Vincent Gallo, who bought it at her art show.\"\ntt1602472,MDsC2TNfF3g,Marion comes home after a rough night only to find Mingus waiting up for her.\ntt1602472,FrH_IKiZTOc,Marion listens to Mingus's radio show.\ntt1602472,8tfmRZV1vnI,\"When Ron, a caring neighbor, stops by the apartment, Mingus finds out that Marion has been telling people she has a brain tumor.\"\ntt1602472,TPdR8MCjRGQ,Mingus runs into a friend while out to eat with Marion and her family.\ntt1602472,19moJ8AP49o,\"When a neighbor threatens to get her evicted, Marion decides to lie to keep that from happening.\"\ntt1602472,ZrCtTXl-84I,\"When Mingus and Marion attempt to have sex, her sister comes home with a friend and the two get it on in the bathroom.\"\ntt1602472,0GsFiFVwfBE,Mingus and Marion have a very interesting dinner with her family.\ntt1602472,_ilh4ZR3aUo,Mingus meets Marion's family.\ntt1350512,QA34Dlela4Y,\"A TR-4 breaks in to a government science facility, killing all in his way.\"\ntt1350512,u1CmSdzgYiY,\"A TR-4 completely destroys a van with nothing but a pole. Then, a group of the robots go on a murderous rampage.\"\ntt1350512,5cxSYatteJ0,\"When the TR-4s begin attacking Earth, a team of soldiers takes on the fight in space.\"\ntt1350512,NK_Gt07WU5o,\"TR-4 units begin going rogue, killing everybody aboard the spacecraft.\"\ntt1350512,BcfTPLZTAog,\"When all the TR-4s shut down, they begin feeding power to an even bigger robot. When it kills everyone but Chloe and the Sheriff, Chloe is forced to make a difficult decision.\"\ntt1350512,L1bqqCJlCpg,\"As they are chased by a TR-4, Kurt flies the spacecraft into the atmosphere. Then, Chloe shoots down a pack of attacking ships.\"\ntt1350512,d-Sk3AvyR24,\"Chloe hotwires a van and rescues the Sheriff and his group, but not before a TR-4 kills one of their own.\"\ntt1350512,2QB-g-9tuEk,\"When a TR-4 starts annihilating Bronson on the back of a truck, Pallas throws herself at the robot to knock him off the vehicle.\"\ntt1350512,ZeMzb1DXoFM,\"When Kurt tries to get his spacecraft in the air, a TR-4 catches them and brings the ship crashing back to Earth.\"\ntt1350512,ztEcn3h90g0,A TR-4 stalks the Sheriff and a group of panicking civilians.\ntt1640571,gFsyI1eps-U,\"After James rescues Amy, she tries to revive Hayden.\"\ntt1640571,_41uCWOabEU,Hayden and Amy must avoid being electrocuted to get off the ship alive.\ntt1640571,rgFfioIzPgs,Hayden sets Amy up with what she needs to survive while James prepares to rescue her.\ntt1640571,vssoBfErh5w,\"James loses communication with the Titanic II when it explodes. Meanwhile, the helicopter refueling doesn't go as planned when a giant wave takes out the refueling plane.\"\ntt1640571,gvAl9GR1kDs,\"Upon trying to escape, Amy's friend Kelly gets stuck in a heavy door and dies.\"\ntt1640571,Y9ajaBIbzYI,\"When the Titanic II is hit by an iceberg, the passengers go ballistic and the crew tries to get things under control.\"\ntt1640571,_jkSWElBWf0,\"A larger part of the glacier breaks, sending a massive wave and iceberg towards the Titanic II.\"\ntt1640571,Q1XwIK9Ykvs,The owner of Titanic II argues with James over the reliability of the ship in the impending natural disaster.\ntt1640571,OAMxHdzk0EU,\"When the glacier collapses under their feet, Kim and James make a narrow escape with the help of the helicopter pilot.\"\ntt1640571,C1QL0e4B7N8,Kim meets James and explains the severe consequences of the glacier collapse.\ntt1640548,auMWOnofBSI,Dave talks to his lawyers Bill and Joan.\ntt1640548,_6iwpd8yeQc,\"Officer Brown records a confession for Kyle, but it is not the confession Kyle wants.\"\ntt1640548,ayplsqakP80,\"Officer Brown gets in a car accident and brutally beats the man who hits his car, thus causing the media to lash out against him.\"\ntt1640548,P94nUxbIgs0,Dave tells his daughters Helen and Margaret that all the rumors they are hearing about him are true.\ntt1640548,1kAMrmDG-68,\"Dave Brown tells homeless man, General Terry, to call lawyer, Linda Fentress and sue the LAPD.\"\ntt1640548,hK9v_6lK_lw,Investigator Kyle Timkins talks to Officer Dave about what happened the night of the shooting.\ntt1640548,Y0SFyVdPfO8,Cop Brown investigated after a suspicious shooting.\ntt1640548,aGActTYN93E,Dave confronts Linda regarding her true identity.\ntt1640548,Yd_u2G_ucCU,Cop Dave Brown talks to Assistant District Attorney Joan Confrey about his options after the beating scandal.\ntt1640548,CHz--mmu5RA,Dave meets up with an old friend Hartshorn to talk about the response to the beating.\ntt1640548,RPS05ujl9FM,Dave meets Sarah at a bar and she asks him about his moniker.\ntt0480271,nW-iQzgmyeI,\"When Taj is put on the spot to recite some English poetry, he uses lyrics from various rock 'n roll songs to make up his own poem.\"\ntt0480271,WrCCnZaSlKE,Taj's father admits that the stories about his youth were lies.\ntt0480271,0gAMfKzCJsc,Taj encourages his students to throw their old textbooks out of the classroom window.\ntt0480271,snRRa2Z3DFo,\"As Taj and Charlotte share a tender moment, he is shot in the crotch by a barrage of paint balls.\"\ntt0480271,HcadJjFOhcg,Taj's membership at the Fox & Hounds house is cruelly rejected by Pip.\ntt0480271,jKa9O33GXLI,Taj defeats Pip in a frenzied sword fight.\ntt0480271,WPrJDDvstbM,Taj and Pip's fencing competition turns into a real sword fight.\ntt0480271,kRwFOUeh-Ro,\"After Pip insults Taj and his students, Taj retorts with some childish name-calling.\"\ntt0480271,4GUliPk7fK0,Taj inspires his students with a new residence hall and a new attitude.\ntt0480271,0WOnDEx4QLc,Charlotte shows Taj a trick or two during their fencing challenge.\ntt0480271,AiZf4-eJQUA,\"Taj meets Seamus, Gethin, and Simon for the first time.\"\ntt0974959,loVYzYPJBTE,Beta House and the Geek House go head to head in a beer chugging competition.\ntt0480271,fw5N8DF4js8,Taj meets the well-endowed Sadie and tries to cheer up the students under his charge.\ntt0974959,fk0O_cdBbMg,Beta House beats Geek House in a Russian roulette game loaded with horse semen.\ntt0974959,7AkMzkl0r4E,Bobby chases after a greased pig against a parkour runner from Geek House.\ntt0974959,3wsMRsZ2Q3I,The frats send their champions to fight in a lightsaber duel at the pool.\ntt0974959,muVopS3Yn7s,\"Dwight advises Erik to enjoy the women on campus, but it's not as easy as it seems.\"\ntt0974959,XcE9IUjMtOE,\"The boys meet with their attorney, Mr. Levenstein, in jail and he gives them valuable advice.\"\ntt0974959,qtKtxLmxl24,Dwight shows Erik around the frat house and he likes what he sees.\ntt0974959,7yVV04Hi1Ms,Dwight describes the rival fraternity run by total geeks.\ntt1748179,QDurduePMWE,\"Tom Buckley has one last confrontation with Simon Silver, revealing true psychic powers.\"\ntt1748179,Q9-NzGEY90w,\"While Sally Owen and Ben investigate Simon Silver's potential psychic fraud, Tom Buckley deals with the consequences of getting too close to the truth.\"\ntt1748179,6S__xAKQcF4,Dr. Shackleton records his psychic experiments on Simon Silver\ntt1748179,PkLE7uHqRt4,\"As Tom Buckley's investigation of Simon Silver continues, his mental state continues to deteriorate.\"\ntt1748179,Oe_sEQkEIZw,\"Tom Buckley questions Leonard Palladino about Simon Silver, but he doesn't get too far.\"\ntt1748179,6bNyU9A9LlM,\"Tom Buckley attempts to expose Simon Silver as a fraud in the middle of a faith healing, but Silver might not be as much as fraud as expected.\"\ntt1748179,i3u7nvpgDTM,Margaret Matheson and her team race to expose fraudulent faith healer Leonard Palladino before he can do more damage.\ntt1748179,CcLJWUzDSbA,\"Paul Shackleton thinks he's stumbled onto a psychic breakthrough, but Margaret Matheson thinks not.\"\ntt1748179,aRr8QkQ9Qrw,Tom Buckley reveals the dangers of psychic fraud to Sally Owen.\ntt1748179,bfn9-AjAJCU,Margaret Matheson reveals her own personal struggle with the unknown.\ntt1748179,dpIyHx-GsbA,Margaret Matheson lectures about fraud psychics and responds to Sally Owen's challenges of outright disbelief.\ntt0970866,0t1TFwXKL2E,Jack and Greg get into a fist fight at the birthday party.\ntt0970866,SqY9GVVUo4w,Jack and Kevin meet Andi Garcia and Greg finally snaps.\ntt0970866,lyuqs9s8134,Things get really awkward when Greg's introduces his wife to the lovely Andi Garcia.\ntt0970866,7478n46dKCg,Andi Garcia seduces Greg.\ntt0970866,6SoBKiO5mlY,Henry doesn't do so well at his evaluation for the Early Human School.\ntt0970866,Hx3l8vu5L6Q,\"Greg confronts the workers at his house, but ends up getting Jack buried in dirt.\"\ntt0970866,_Y8RUTZ6CKc,Greg gives Jack an adrenaline shot to counteract the erection he got using the new drug Sustengo.\ntt0970866,BgvJlZKbqlw,Jack grills Greg on what it takes to be the head of the family.\ntt0970866,o6V1Ov1GCuQ,\"Kevin Rawley, Pam's ex-lover, continues to make Greg feel uncomfortable.\"\ntt0970866,7nZ0VyXfpec,\"Greg does his best to be the head of the family, but ends up slicing his finger at dinner.\"\ntt0068897,j2SPawJewxA,The Marshal and the Magnificent Seven wage a bloody battle against de Toro and his men.\ntt0068897,qVS1E2L7DYg,The Marshal and the Magnificent Seven kill De Toro and save the town.\ntt0068897,tTFOv5oFe3E,\"The Marshal instructs his posse to choose a woman to help load, feed and care for them during battle.\"\ntt0068897,ucBnN5N2fn8,The Marshal offers full pardons to prisoners who are willing to fight in his posse.\ntt0068897,Wk9-oZ9OGjw,\"The seven assault De Toro's hacienda in broad daylight, but Pepe takes his time blowing up the Gatling gun.\"\ntt0068897,W9vPRj-c6VQ,The Marshal comes up with an idea to help the women De Toro wants to abduct.\ntt0068897,nB95pK8TgYw,\"Despite their sincere protests, the Marshal shoots Hank and Bob when they wake up.\"\ntt0068897,3ynO7Oaj2oY,\"Shelly and his friends rob a bank, shoot the Marshal and kidnap Arilla.\"\ntt0068897,z-KB47AFQAY,The Marshal has a gunfight at the mission and finds a shocking discovery.\ntt0068897,KbZQdFPxeXE,\"The Marshal shows no sympathy towards Shelly, his latest 18-year-old prisoner.\"\ntt0068897,vkFKHF9Fs_s,The Marshal decides to set Shelly free at the last moment.\ntt0068897,q_y1Qe8dyCw,The Marshal guns down two outlaws and saves Jim's life.\ntt0805564,1MVR4GmqfHg,Lars kisses Bianca before carrying her into the lake to die.\ntt0805564,0j9yDnytwPU,The whole town comes out to celebrate Bianca's life as Lars comes to terms with her death.\ntt0805564,wSdltnqDWV0,Karin finally snaps at Lars when he becomes jealous of Bianca's social engagements.\ntt0805564,qfwei0pOLVs,Dagmar gets Lars to open up about his discomfort with touching other people.\ntt0805564,ZfcfpjiFZAQ,\"After Kurt upsets Margo by hanging her stuffed bear, Lars revives the bear and cheers her up.\"\ntt0805564,IMuAOVTXtLM,\"As Lars grieves and lets the past go, he finds comfort and a new beginning with Margo.\"\ntt0805564,DKp509HHG0w,\"When Bianca is rushed to the hospital after Lars finds her unconscious, Dagmar has some unsettling news about her condition.\"\ntt0805564,Pu1vplwgGAY,Lars asks Gus how he first knew he was a man.\ntt0805564,gHWnmlpmub4,\"Lars brings his mannequin girlfriend Bianca to dinner, but Gus and Karin struggle to accept it.\"\ntt0805564,Ej_fgugvtRg,\"Lars takes Bianca to the doctor who advises regular treatments for her, and Lars eventually accepts it.\"\ntt0805564,MB5zQ9X-2tY,\"Karin encourages Gus and Lars to talk after dinner, and Gus reluctantly invites Lars to move in.\"\ntt0805564,2W9aISYBJXY,\"Gus and Karin are speechless when Lars brings his \"\"girlfriend\"\" over for dinner.\"\ntt0091983,nIuuhtJM_Dw,\"At a gas station, while keeping his eye on Audrey and Ray, Charlie gets a whole new wardrobe with the help of the gas station attendant Nelson.\"\ntt0091983,D0Rs2n8eCPQ,\"When Charlie panics, Audrey re-assures him that she has his missing wallet, and that they should make the most of their last night together.\"\ntt0091983,FKPNubrWp0A,Audrey takes Charlie to visit her mama and introduces him as her husband.\ntt0091983,4nSkJZ3i2-g,Charlie delivers a final blow to Ray after a messy fight in the bathroom.\ntt0091983,ueNjp9QfQFM,Audrey convinces Charlie to spend the Christmas club money on a motel room so they can make love.\ntt0091983,vtyIGp8uv8w,Audrey and Charlie get back together on the streets of New York City.\ntt0091983,23Xxotom7bI,Charlie gets uncomfortable when Ray asks how Audrey is in bed.\ntt0091983,PsAtoPJeiys,When Audrey's car is confiscated by the police she goes to a used car dealership and buys another one.\ntt0091983,LHTaiCLZO3s,\"Audrey catches Charlie trying to skip out on his restaurant bill, then offers to give him a ride.\"\ntt0091983,_mzI1HQ0cYE,Audrey distracts a liquor store owner and steals all the cash from the register.\ntt0102744,b7wurDomuVs,Quigley bids farewell to Cora as he heads off for Marston's ranch.\ntt0102744,r9mcNXIJFbY,Marston reveals to Quigley why he recruited him.\ntt0102744,0sUHxfXKUas,Cora meets up Quigley before they leave for America.\ntt0102744,NtxR-xgJWwo,\"Just before Quigley is to be shot by the Queen's men, the natives arrive and save his life.\"\ntt0102744,pGxyOeypYFs,\"Quigley guns down three men during a duel, including Marston, with the help of a nearby native.\"\ntt0102744,K0xwTAJROW4,Quigley is far from intimidated when Marston challenges him to a duel.\ntt0102744,7UvSGe2Md6g,Cora protects the native baby from the attacking dingos.\ntt0102744,j95Tk1SLXOA,Quigley and Cora get a cultural experience when they eat some of the native's food.\ntt0102744,7Lj3LydT1uk,Quigley meets Cora for the first time when he fights off some bullies that are harassing her.\ntt0102744,TTXjgOan_KI,Quigley pulls out his gun in front of a skeptical crowd and showcases his skills.\ntt0102744,-cFW3A13o8s,\"Cora and Quigley spend a day together with the natives, sharing traditions and learning new ones.\"\ntt0098577,QGNI11LEG54,\"A one-night stand for Peter seems quite the success, until Rachel takes a bite into his neck.\"\ntt0098577,s0eHgfzlrF8,\"Rachel overwhelms Peter both sexually and by sucking his blood, all the while making him profess his love to her.\"\ntt0098577,0isiQvOb874,Peter berates his secretary Alva for failing to find a contract.\ntt0098577,V5Np7vmtIYc,\"Peter, in a state of delusion, imagines his confession of vampire acts to Dr. Glaser.\"\ntt0098577,W1W5JF4lRIQ,Peter with fake vampire teeth tries to make an appointment with Dr. Glaser.\ntt0098577,n2ZkOcq4vWU,Peter eats a cockroach during his morning routine.\ntt0098577,xB1tKdhnGaE,Peter informs Alva that she has the worst job because she's the lowest on the totem pole.\ntt0098577,fOONIlhXFh4,Peter lectures Dr. Glaser on the simplicity of filing documents then proceeds to recite the alphabet.\ntt0098577,gbXZzvvp2uc,Peter goes off the deep end in berating Alva for her work productivity.\ntt0098577,ShCW6mr_rsM,Peter tries to explain being turned on by a bat to Dr. Glaser.\ntt0098577,Q1-jHyQHGl8,Peter explains to Dr. Glaser that he was turned on more by a bat than his date.\ntt0095082,X7ME7WkPyC8,\"The new Commissioner of baseball bans the \"\"Black Sox\"\" from the game forever.\"\ntt0095082,cMxPAkZgoy0,\"At a minor league game, Buck tells some New Jersey fans that he saw Joe Jackson play.\"\ntt0095082,hOnolgR_8tc,Buck talks to some kids about the glory of baseball and the politics behind it.\ntt0095082,BKtBN0KHq5A,\"The White Sox players are found \"\"not guilty\"\" on all charges.\"\ntt0095082,J2ugazPv__M,Buck gets upset in court when he isn't allowed to take the stand in his defense.\ntt0095082,hFjIRET64r4,\"Buck talks to some kids on the street about his game, then shows them a few tricks.\"\ntt0095082,oEUB2LSsbe8,\"Eddie, Hap, and Shoeless Joe experience different emotions in the aftermath of the scandal.\"\ntt0095082,v3bQ1GiWhJk,The White Sox win Game 3 with excellent pitching from Dickie Kerr who is not in on the scam.\ntt0095082,-_Bdf9C0SAU,Swede convinces a reluctant Shoeless Joe to join in on fixing the game.\ntt0095082,0fBA7VUZEgY,\"When Commie refuses to give Eddie the bonus he deserves, Eddie considers another option.\"\ntt0095082,LlJx0tWUuGY,\"While some fans and fellow players support Shoeless Joe, many more still heckle him as he plays.\"\ntt0095082,S9ryLG-cAHo,The White Sox players get shafted once again by their penny-pinching manager.\ntt0089504,4E_jCd4LZL8,David hits rock bottom when he accepts a job as a crossing guard.\ntt0089504,pVssi5x6rxI,\"Having just been fired, David tries to convince Linda to quit and live out their dream.\"\ntt0089504,ULLpy_WyJds,\"Desperate for money, David visits a small town employment agency looking for a high-paying job.\"\ntt0089504,cZumS81KSw8,David wakes up to find that Linda has been gambling all night long.\ntt0089504,rFy2252ierA,David and Linda plan out the first day of their new life on the road.\ntt0089504,7moP2oVrQ7Q,David learns the proper amount to bribe a front desk clerk.\ntt0089504,pf2q0HemaFs,David attempts to get his money back from the Desert Inn Casino Manager.\ntt0089504,xdMilnKGJdA,David goes a little too far in explaining the nest egg to Linda.\ntt0089504,rXwdnHnLvms,David unloads on his boss after learning he's not getting a promotion.\ntt0089504,MnIzvH5GvOA,\"Still angry at Linda for blowing all their money, David loses his temper at the Hoover Dam.\"\ntt0106387,uPQlrPGbD6k,\"Benny is upset when he finds out that Joon lost a poker bet to his friend, Mike, which means he'll have to take Mike's cousin, Sam, off his hands for a while.\"\ntt0106387,pQ68ImO9dBU,Benny visits Joon in the mental hospital and tries to make amends by offering her a way to move forward and out of their co-dependent relationship.\ntt0106387,8YMGQMcNu2s,\"Sam performs a hat trick in front of an audience in the park, and after some reluctance, Benny gets into it.\"\ntt0106387,UnM6dPbV9Ng,Joon has a moment of clarity when she sees Sam swing by her window.\ntt0106387,w0X84fml-Bc,Sam helps Benny sneak into Joon's room by diverting the attention of the hospital staff.\ntt0106387,olTfms7kJIk,Benny and Joon watch in awe as Sam performs in the park.\ntt0106387,QUP62JKYg2I,Sam and Joon almost kiss during a fingerpainting session.\ntt0106387,74c-fV_AjAQ,Joon spots Sam on the side of the road during a drive with Benny.\ntt0106387,F6mWKtfNVA0,\"While the gang watches \"\"Prom Queen Mutilator\"\" together, Sam recites every word.\"\ntt0106387,tkj3klWMn5E,Sam causes a ruckus in the diner and charms the waitress Ruthie when he recognizes her from a horror film.\ntt0106387,0QoGNA_9zqQ,Benny looks on curiously as Sam prepares grilled cheese sandwiches with an iron.\ntt0106387,uJlhwWFAAxI,Joon dons some snorkeling gear while she makes a smoothie and prepares to meet the day.\ntt1368116,vQ-bN0fv4Uw,Yuda faces off against Ratger and Luc at the shipyard.\ntt1368116,fp4Rib-6cm0,Yuda defends himself against the attacks of Ratger and Luc who arm themselves with crowbars.\ntt1368116,UUnnQwVC0rk,\"Ratger gains the upper hand against Yuda, and forces him to listen to the cries of the captured women.\"\ntt1368116,xB-h2YkIP0Q,Yuda is forced to fight Eric in an elevator.\ntt1368116,dZtW9n3C2gg,Yuda faces off against Ratger's henchmen at the shipyard.\ntt1368116,KYeZm7yCOaE,Yuda fights off Johni's men while trying to escape.\ntt1368116,EYpR4aksH3g,Yuda saves Adit from Johni's men who try to take him.\ntt1368116,DHww3Tdh26o,\"On a mission to find Astri, Yuda fights Johni's men in a go-go club\"\ntt1368116,GjJzcjwVF8s,Yuda tries to rescue Astri from Johni and his gang.\ntt1368116,AbkZAbJqcIA,Yuda intervines when Johni threatens Astri.\ntt1368116,Qrg2m5OnJT0,Yuda gets his wallet stolen by a little neighborhood thief.\ntt0997147,I5tF_zv73vk,\"Masaru tries and fails to negotiate his contract, only to have to combat the formidable Evil Stare Monster.\"\ntt0997147,yuvBcB1oLI8,Masaru's Grandfather can become a 60 foot warrior and he's got serious dementia.\ntt0997147,F2CVL2cAV80,\"Masaru Daisato goes through the ritual of becoming Dai-Nihonjin, but nobody's heart is in it anymore.\"\ntt0997147,-ZDt52_mxS8,\"Dai-Nihonjin confronts the Strangling Monster, who only seems to want to reproduce.\"\ntt0997147,YYsc7jslsc0,\"Dai-Nihonjin has his hands full with the Leaping Monster, but not as much as he needs to; he has to keep his his sponsor's logo visible.\"\ntt0997147,2GGLMLNbZpE,\"Dai-Nihnojin comforts the Child Monster, at least until it tries to suckle him.\"\ntt0997147,dWhKh27tEHQ,The Super Family gives the Evil Red Menace the wedgie of his lifetime.\ntt0997147,2-i06SAeWs8,Dai-Nihonjin runs into a problem when he runs into an obstinate Female Stink Monster and an over-excited Male Stink Monster.\ntt0997147,kbLP4mKMTYg,\"Dai-Nihonjin meets the Super Justice Family, who aren't exactly typical heroes.\"\ntt0997147,L92EFtI5VxA,\"Dai-Nihonjin fights the Evil Red Menace, or, to be more precise, gets pummeled by it.\"\ntt1634122,4x1rlz-IYUk,Johnny English has an explosive showdown with Simon Ambrose.\ntt1634122,MC_Wv7-i2Es,Johnny English tries to find Pamela while stuck in a body bag.\ntt1634122,cA9k-dz7Bqw,A wounded Johnny English steals a souped-up wheelchair and gives MI7 a wild chase.\ntt1634122,cU2j_kP6U0w,Johnny English has to battle himself to resist Ambrose's mind control.\ntt1634122,SQrD5lkN18o,Johnny English attends a meeting with the Prime Minister where he has issues with his chair.\ntt1634122,cighZsv-N2E,Johnny English flies a helicopter badly in order to get Karlenko to a hospital.\ntt1634122,KZt-mGmTpZI,\"Johnny English attacks an old lady he thinks is an assassin, but it turns out to be his boss's mother.\"\ntt1634122,aj71pJABFFU,Johnny English shows off his impressive hand to hand combat skills.\ntt1634122,W_WSGHIPSrM,\"Johnny English chases after a much younger and physically fit man, but he is more experienced.\"\ntt1634122,ZAF804tkZ8o,Johnny English tests out the new gadgets in Patch Quartermain's lab.\ntt1959490,_pzghUqM1QQ,Ila reminds Noah that God chose him for a reason and he has not failed him.\ntt1959490,CRXtW09cufc,\"Noah attempts to kill Ila's newborn girls, but cannot at the last minute.\"\ntt1959490,gSHomdp3o2U,Noah and the Watchers try to stop Tubal-cain's army from taking the ark.\ntt1959490,o2sjOBiBXSc,Noah explains how the violence of men broke the world and thus the need for utter destruction.\ntt1959490,PWf0rLp7sUY,Noah watches as the fountains of the deep explode and cover the face of the earth.\ntt1959490,B_FpV0CZjxY,Noah tells his family how the world was created and how man came to be.\ntt1959490,8pUjbhH7A7M,Methuselah heals Ila's infertility.\ntt1959490,jm7xE-OyJUY,\"Noah reveals to Tubal-cain that he is building an ark, but only to save the innocents - the animals.\"\ntt1959490,r2e-9oBXk0o,\"While visiting his grandfather Methusaleh, Noah learns more about his mission to save Creation.\"\ntt1959490,LbkjkJzREd4,The Watcher tells Noah's family how his kind were punished by the Creator for trying to help mankind.\ntt1156300,_W1RJXCb0xo,\"George comes home to find Audrey in bed with Dr. Flesch. Problem is, they're both dead.\"\ntt1156300,JHpXWiJJbL0,\"George can barely keep up with Audrey's manic sex drive, but that's not the only mania seizing her.\"\ntt1156300,H_GApJWNWiw,George will do anything for his wife -even commit murder.\ntt1156300,QVNrihP8ME8,\"In Jeff Monahan's segment \"\"On Sabbath Hill,\"\" Alison haunts Dr. Carson, revealing one last terrifying surprise.\"\ntt1156300,i5JmxPGoM7U,\"George's wife, Audrey goes into heat after an experimental chemical cures her disease, but there may be a hidden cost.\"\ntt1156300,2kLkwWVB9Wg,\"In Jeff Monahan's segment \"\"On Sabbath Hill,\"\"Alison pays Dr. Carson a visit in class. The problem is, she's already dead.\"\ntt1156300,q3kcQHhvOWA,\"In Jeff Monahan's segment \"\"On Sabbath Hill,\"\" Dr. Carson returns to class after the holiday, but Alison, his jilted lover, is waiting for him.\"\ntt1156300,xsHeAaSmoe8,\"In Jeff Monahan's segment \"\"On Sabbath Hill,\"\" Alison comes to Dr. Carson's class with a surprise for everybody.\"\ntt1156300,n1r4aOeOxgo,\"In Matt Walsh's segment \"\"The Gorge,\"\" after 17 days trapped underground, rats are starting to look pretty tasty, along with the other spelunkers.\"\ntt1156300,gd9ZzDgPVFo,\"In Matt Walsh's segment \"\"The Gorge,\"\" death visits the spelunkers in the second day trapped underground.\"\ntt1156300,aMOraCoYToI,\"In Matt Walsh's segment \"\"The Gorge,\"\" the surviving spelunker has a traumatic flashback to her cannibalism.\"\ntt1156300,f4OPBNbNWnw,\"In Matt Walsh's segment \"\"The Gorge,\"\" the starving spelunkers carve off a slice of their friend for food.\"\ntt1334526,W2z88979aKM,\"In Tom Savini's segment \"\"Housecall,\"\" Mrs. Norman discovers Dr. Marsten dealing with her son, Jimmy.\"\ntt1334526,exo_QZ07_BU,\"In Tom Savini's segment \"\"Housecall,\"\" Mrs. Norman relates the hearsay of her son's wicked deeds to Dr. Marsten.\"\ntt1334526,i_qYwD16FXc,\"In Michael Fischa's segment \"\"Wet,\"\" Swan finds Jack after his night with the Mermaid, but he's not out of danger yet.\"\ntt1334526,u-ywf1_Aqy8,\"In Michael Fischa's segment \"\"Wet,\"\" Jack gets a visit from the Mermaid, but it might not be all he was expecting.\"\ntt1334526,OU4AuLhWTv8,\"In Jeff Monahan's segment \"\"Valley of the Shadows,\"\" Paul meets a grisly fate deep in the jungle.\"\ntt1334526,6COCjzLI5kU,\"Swan murmurs tales of horror at sea, all at the hands of Mermaids.\"\ntt1334526,g2h4ycVI7AQ,\"In Jeff Monahan's segment \"\"Valley of the Shadows,\"\" Angela and her band of explorers stumble upon a massacre, all seeming to revolve around a forbidden fruit.\"\ntt1334526,k2ih0cR-fEI,\"In Michael Fischa's segment \"\"Wet,\"\" Swan gives Jack some creepy advice about a dessicated hand he found by the sea.\"\ntt1334526,5Nw5r8_YCFw,\"In Jeff Monahan's segment \"\"Valley of Shadows,\"\" Angela's expedition comes to a horrific end.\"\ntt1334526,3aJHkdlvdHM,\"In Jeff Monahan's segment \"\"Valley of Shadows,\"\" Disaster strikes Angela's expedition.\"\ntt1653690,kaPdOgl1s7k,The fight between Tien and Bhuti continues.\ntt1618442,OEf-Lee0YnE,\"The Witch Queen kills the 37th Dolan for being human, as Kaulder finds the strength to defeat her.\"\ntt1618442,8aegfjXaTmY,Kaulder faces the Witch Queen in battle and learns that the 37th Dolan is loyal to the Queen.\ntt1618442,C-c8T2hNNoo,Chloe wakes up in her apartment to find that she is under magical attack from unseen forces.\ntt1618442,2Nd_TsVQwgA,\"When Chloe goes with Kaulder into his memories, he learns that the Axe and Cross has been lying to him about the Witch Queen.\"\ntt1618442,x4oAO_kDHTY,Kaulder loses his immortality when the Witch Queen takes it back from him.\ntt1618442,ZTi7bZGkJk4,\"Kaulder and the 37th Dolan try to stop the Sentinel, while Chloe goes inside Ellic's mind to stop his dark chanting.\"\ntt1618442,0NHFYpXhiiY,\"Danique tricks Kaulder into taking some bad memory potion, but with Chloe's help, he's able to get out alive.\"\ntt1618442,zt-zQ_EzPsY,\"With her final breath, the Witch Queen curses Kaulder with immortality.\"\ntt1618442,6qAar5htD0g,Belial yanks Kaulder out of his memory spell before he can learn what he needs to know.\ntt1618442,e-6fZ7wiPQk,Kaulder fights a witch he suspects of killing the 36th Dolan.\ntt1705773,dlxT9ot5Bi8,Nero saves the day when it takes control of the Mecha and blows up the Mega Shark.\ntt1705773,k9mzgW758k8,Dr. MacNeil warns Admiral Engleberg that the Mega Shark will be much more aggressive while it pursues a mate.\ntt1705773,ayLJJZh7RRo,Rosie gets stuck trying to escape the Mecha and Jack sets off to save her.\ntt1705773,UeKhKcL5efg,Rosie tries to stop Mecha Shark from the inside while Jack leads Mecha out to sea.\ntt1705773,l94WdhJc8ZM,Nero frees Mecha Shark from the rubble while the Mega Shark sinks a Navy ship.\ntt1705773,swcFDa5jYfw,\"Jack saves Stacy from Mecha Shark after it initiates amphibious mode and cannot be controlled, even by Nero.\"\ntt1705773,8tnQxuIPgXQ,\"Nero navigates Mecha Shark on its own when Rosie is incapacitated, but Mega Shark knocks it offline.\"\ntt1705773,Jj6S3vtJPaA,\"Rosie manages to stop Mega Shark from attacking an airplane, but when she launches a torpedo, he smacks it away and takes out a naval ship.\"\ntt1705773,-jFiu3zG8dc,\"Rosie launches a torpedo at Mega Shark and he smacks it back, destroying the USS Virginia.\"\ntt1705773,qgcQxJuBfY4,\"The mega shark breaks free from his icy asylum, and knocks it's ride to Egypt into the Great Sphinx.\"\ntt0843873,dcB5igj1k6w,\"When Chico and his thugs threaten Alma, Brujo uses smoke, slime, and magic to take them down.\"\ntt0843873,Qwi6MbaOBME,\"As punishment for taking advantage of Crystal, Barat threatens Hoover, forcing him to remove his shirt before shooting him in the face.\"\ntt0843873,iCTkYP-7by0,\"During a showdown, Brujo stabs Chico and pushes him off the train.\"\ntt0843873,L2ozJHHf1ec,\"The conductor of the train, Frank, attempts to call for help while the passengers are being attacked, but is instead eaten by a snake.\"\ntt0843873,qE_SJYfhUc0,\"The snakes and serpents run rampant throughout the train, bringing terror and death upon the passengers.\"\ntt0843873,T1jK-kQgdeo,\"When Brujo discovers that the snakes have gotten loose, he begins gathering them up and searching for Alma. Meanwhile, the little girl Lani is completely devoured.\"\ntt0843873,Df3535-5wE8,Alma swallows the snakes that have come out of her and transforms into a giant python.\ntt0843873,nvnag6ta7LA,Alma and Brujo desperately plead for help to get treatment for the curse that has been plaguing her.\ntt0843873,DxVqAcNKMNk,\"The giant snake attacks and swallows the runaway train, forcing the passengers to jump off in order to escape.\"\ntt0843873,CdAJ9-36cAM,\"Thinking he has scored some pot, Julio gives Juan a box filled with snakes, which then crawl inside of their arms.\"\ntt1350498,dGIyVafU14c,Seiji and Emma sneak away to a supply closet where they share a romantic moment.\ntt1350498,wh9ZsEMo0-o,The Giant Octopus destroys an oil rig off the coast of Japan.\ntt1350498,Z2yt_J6z2FQ,\"Per Baxter's order, a pilot flies in to attack the Giant Octopus, but is knocked from the sky like a bug.\"\ntt1350498,HkNa8r5E770,\"The US Navy believes they have defeated the Megalodon, but it returns with force and destroys their ship.\"\ntt1350498,3ycDiqPVBqo,Emma and the submarine crew come to blows just as the Megalodon and Giant Octopus begin their deadly battle.\ntt1350498,dLc8QqtMhYQ,\"Emma and the submarine crew face off against the Megalodon. Then, the Giant Octopus destroys an entire US Naval fleet.\"\ntt1350498,Ma5iacR9d74,Emma leads a submarine attack on the Megalodon.\ntt1350498,KNol4Te8mCs,\"The Megalodon and Giant Octopus finally engage in an epic battle, with Emma and her crew caught right in the middle.\"\ntt1350498,ViWgPQKgQYU,The Megalodon attacks and destroys the Golden Gate Bridge.\ntt1350498,KsU5oT6FhE8,A giant shark jumps from the ocean and swallows an airplane.\ntt1653690,qB26s5dx_sQ,Tien defeats most of the guards only for Lord Bhuti to take matters into his own hands.\ntt1653690,p76b_u00SSU,Lord Rajasena discovers just how dangerous Bhuti Sangkha really is.\ntt1653690,jsLRdkCMvxI,\"Held captive and chained, Tien finds himself in a difficult situation where he must defend himself against the lord's guards.\"\ntt1653690,r6AmK5ecvRE,Tien faces off against all of the Lord's guards.\ntt1653690,_ZiRPpAgOlY,\"After discovering that the village has been destroyed, Tien is attacked and must defend himself.\"\ntt1653690,SpaZXamzgwA,Pim recognizes Tien from a previous encounter and does her best to protect his wounded body from assassins.\ntt1653690,UNvtKMt78aY,Lord Jom Rajasena's power is threatened when he comes face to face with Bhuti Sangkha.\ntt1653690,iHDhfU-N87E,Mhen leads the guards to Tien and accidentally helps him defeat the attackers.\ntt1653690,PTwqLCxIMiU,Tien and Bhuti face each other in a one-on-one battle.\ntt1582248,IwQVcVqDUqE,\"Paul goes to see Mike, who is broken by the case.\"\ntt1582248,bjUMh2wObW8,\"With Paul and Jeffrey still mourning Mike's death, an unexpected reprieve comes in the form of Mark Lanier.\"\ntt1582248,iIcbE_xFIuw,Mike's addictions catch up with him when Senator O'Reilly deliberates taking the case.\ntt1582248,SKMgjxAgidE,\"Mike Weiss visits Vicky in the hospital, who, despite her battle with AIDS, lifts his spirits.\"\ntt1582248,K_0hl7Yc0fI,\"Falling into despair, Mike Weiss calls Nicole Morris, a \"\"sex therapist.\"\"\"\ntt1582248,qKrNYYuf7Z4,Mike and Paul dine with Nathaniel Price who tells them just how bad their situation is.\ntt1582248,SNCyMweQ_8c,\"Mike investigates the medical suppliers purchasing organization, only to attract some unwelcome attention.\"\ntt1582248,4_3PUB38zJU,\"Just about everybody likes Mike Weiss with the notable exception of his wife, Jaime.\"\ntt1582248,w_V5UPmEH_s,\"Mike and Paul visit Jeffrey Dancort about his safety needles, only to discover a disturbing conspiracy.\"\ntt1582248,Rb3em4rmYxs,Mike Weiss does cocaine while practicing for an upcoming trial with some local miscreants.\ntt2231253,_iw7PLtjjow,Cyrus asks Nick to teach him how to be brave.\ntt2231253,o1DgvimHOvw,\"Holly gets retribution for her beating, and gives DeMarco a chance to save the envy of all mankind.\"\ntt2231253,kmr68ZevIrM,Nick has to defend himself when DeMarco accuses him of murder.\ntt2231253,nBRTe09eseE,Nick goes off on a rampage when DeMarco tells his men to kill Cyrus.\ntt2231253,EJCaAADpCuQ,Nick fends off DeMarco's henchmen in a casino brawl.\ntt2231253,2tWroNJp2zI,A new client asks Nick his qualifications to be a chaperone.\ntt2231253,KINtZPTjGOM,Lady Luck is on Nick's side when he hits a big winning streak at the casino.\ntt2231253,rxme5eLoK5E,Nick puts over a half million dollars on the line in one final bet.\ntt2231253,iB8eR7GugQY,Nick shows a new side of himself when DeMarco pushes him to the brink.\ntt2231253,MBY84LUh7s4,Nick helps Osgood impress the beautiful DD.\ntt0044081,P_VgDHPDtK8,\"As Blanche is taken away to a mental institution, her sister Stella decides to leave her abusive husband Stanley.\"\ntt0044081,vLxUYa47OXE,Stanley lashes out at Blanche after she refers to him as swine.\ntt0044081,Napj_I8kdHY,Stanley erupts in a fit of rage after Stella tells him to clear the table.\ntt0044081,BfniNOclXKs,Blanche begs her sister Stella not to get dragged down by her abusive husband.\ntt0044081,kYA9hvcLekg,Stanley screams for Stella to come back to him after he abused her in a fight.\ntt0044081,9UMiW3dzW8g,Stanley yells at Stella about the loss of her family's estate.\ntt0044081,Sp_ZkjTIRiI,Mitch treats Blanche roughly after finding out about her questionable past.\ntt0044081,V6TrgQxf3lk,\"Blanche encounters her sister's brutish husband, Stanley, for the first time.\"\ntt2870708,VWX9yxvtjxo,Aidan teaches his children about cursing.\ntt2870708,I_Ld8Rtl-Gc,\"Aidan confronts the man whose been harassing his wife at work, which plunges him into a fantasy and forces him to confront the impending death of his father.\"\ntt2870708,j_a_zvQOrIE,\"Gabe passes away, surrounded by his family.\"\ntt2870708,YkYypI0-OAY,Grace tries to convince Noah to come see his father in his final moments.\ntt2870708,BaSUY4geCtE,Sarah goes to the hospital to offer Gabe some advice she believes he's forgotten.\ntt2870708,xXjPITaIjPA,Aidan and Sarah discover that their daughter Grace has shaved her head.\ntt2870708,Dh6M4SEdLdU,Aidan takes his family to visit his dying father in the hospital.\ntt2870708,ivzvZlKaKAs,Aidan gets frustrated with his brother Noah after finding out he does not plan to visit their dying father.\ntt2870708,V0Y4f1UoH9o,\"Aidan recalls his mother's bedtime advice, and takes Grace shopping for an amazing new wig.\"\ntt2870708,u_4L7Dx1rIg,Aidan finds out that he doesn't fit the description for the role he was hoping to audition for.\ntt1666801,Rz0JV0WUjPo,Wesley chooses Bianca over being homecoming king.\ntt1666801,4YFz0PJernc,Bianca tells Wesley how she feels and confronts Madison about her bullying.\ntt1666801,NVCvHb1UK_g,Bianca can't focus on her date with Toby because she's constantly thinking about Wesley.\ntt1666801,FK7N96w_3FU,\"Wesley advises Bianca on what to wear, but she has a hard time taking it seriously.\"\ntt1666801,lKwghMLo0AY,Wesley goes over the game plan for Bianca's upcoming date.\ntt1666801,MIpPd7IhPNA,Madison releases a very unflattering video of Bianca that goes viral.\ntt1666801,eXVVSJUhDmo,Bianca confronts Casey and Jess about being their DUFF.\ntt1666801,-o-C21COWIQ,Wesley tells Bianca she's a DUFF.\ntt1666801,sHt3TElCugg,\"Bianca may not be the most popular at Malloy High School, but her friends are.\"\ntt1666801,qwUgyrgP9H4,Mr. Arthur assigns Bianca a piece on homecoming for the school newspaper.\ntt3045616,CGHuALdM57s,\"After securing the painting they have been searching for, Mortdecai and Johanna share a romantic bath.\"\ntt3045616,zUvgi8Rxl9Q,\"When men threaten to cut off Jock's finger, Mortdecai comes to his rescue.\"\ntt3045616,70zF5FTAfAE,Mortdecai showcases his questionable fencing skills in a showdown with Emil over a stolen painting.\ntt3045616,TqVLkE4Lr8U,\"As Mortdecai and his friends chase Emil, Jock finds himself very sick from eating shellfish.\"\ntt3045616,Br3e2gRhBZw,\"When paying a visit to Krampf, Mortdecai is introduced to his flirtatious daughter, Georgina, and discovers the lost painting hidden in his car.\"\ntt3045616,1H_5SNtiMIs,Mortdecai must find a way out of a sticky situation when he is threatened by Romanov.\ntt3045616,Uk4tuWVB-ho,Mortdecai and Jock escape from the Russians on a motorcycle.\ntt3045616,8lRysx2QaZg,\"Mortdecai tries to seduce his wife Johanna, but she is too disgusted by his mustache.\"\ntt3045616,kAd-K7nteyI,Mortdecai and Jock try to fight Emil out of their moving vehicle.\ntt3045616,6yuDWX2prJg,\"When he is ambushed, Mortdecai accidentally shoots Jock, which reminds him of similar blunders from the past.\"\ntt1674784,GECuST_cjC8,Avery has to convince the security operator to call off the police dispatch.\ntt1674784,NBhmNRq0uU8,Kyle burns the shed so that Jonah does not get the money he saved for his family.\ntt1674784,YCIO_JbmcZ0,\"When Elias finds out that the diamond necklace is fake, he tells Kyle the real reason why they are there.\"\ntt1674784,uZhJYIZthNg,Kyle finally opens the safe only to find that it is empty.\ntt1674784,k4sAUqI-y8A,\"Through a series of flashbacks, it is shown that Sarah and Jonah have a history.\"\ntt1674784,aGk88ZwiLRs,Kyle loses it after seeing his wife Sarah at gunpoint.\ntt1674784,EyqjJVgnJMo,Kyle tries to figure out what the robbers are going to do with the stolen diamonds.\ntt1674784,CKQiEEWqW-0,The robbers assert their dominance over the Millers.\ntt1674784,UUPZ8Bzq1wA,\"\"\"Police\"\" break into the Miller residence and Sarah tries to escape, but they take Kyle hostage.\"\ntt1674784,oe6nOL82mmU,\"Avery tries to convince her parents, Sarah and Kyle, to let her go to a party.\"\ntt1778304,c7RyGNzyGB4,Toby attacks Katie to make Kristi do his bidding.\ntt1778304,t3dmXdp2O0Q,Dennis discovers something horribly wrong in Grandma Lois' house.\ntt1778304,uzIEsj6Me9g,Dennis and Kristi try to escape Grandma Lois' house.\ntt1778304,qYEceRHS8jM,Julie refuses to leave her house until Toby forces her hand.\ntt1778304,42tGOQelinA,\"Randy agrees to play Bloody Mary with Kristi, unprepared for the supernatural ramifications.\"\ntt1778304,76gNp5rkFX0,\"Lisa watches the kids for Dennis and Julie, not realizing that she's being watched too.\"\ntt1778304,6_ZBUhBx3w8,\"Dennis doesn't believe that Toby is real, but Kristi does.\"\ntt1778304,BqcHbcPo7zk,\"The building supernatural powers in Julie & Dennis' house causes a lamp to explode, scaring the hell out of them.\"\ntt1778304,Li8ROpFUD4E,\"When Dennis hears phantom bumps, he and Randy investigate their horrific origins.\"\ntt1778304,j2aGGNQW_7M,\"Dennis and Julie get intimate, but they may not be alone.\"\ntt1536044,ISt_AN1f0Xw,A possessed Katie breaks into the family home and kills Daniel and Kristi.\ntt1536044,hTF5JMKgI1I,Daniel tries to resuce his son and exorcise the demon from his wife.\ntt1536044,yjrwCXMRh24,Daniel tries to use the blessed cross on Kristi to remove the demon from her soul.\ntt1536044,7PfDjA-3RP4,\"When Kristi tries to check on the baby, the demon assults her and drags her to the basement.\"\ntt1536044,NerShU5K9Ac,\"The family's dog tries to fend of the demon, but gets attacked for its efforts.\"\ntt1536044,IqJSc4WySE8,The demon makes its presence known to Kristi as she sits in the kitchen.\ntt1536044,TCK-ODyUwoM,The demon starts to get aggressive and locks Ali outside of the house.\ntt1536044,L4kxEO7Okhc,The demon pulls Hunter out of bed and tricks him into opening the basement door.\ntt1536044,PBBZHnc8Jxk,While the family is asleep the demon starts a fire in the kitchen.\ntt1536044,YCleI91Af3s,Mysterious things start to happen when Kristi comes to calm Hunter down in the middle of the night.\ntt1748122,qnyoHZa5rrQ,Sam makes a special connection with Suzy at the play.\ntt1748122,HhP2rEHWxCI,\"Social Services comes to the island looking for the runaway boy, but is met by sheer incompetence.\"\ntt1748122,g2py3Bx0Nr8,\"Sam and Suzy find Scout leader Ben to \"\"marry\"\" them, but he needs them to take it seriously.\"\ntt1748122,z5xRXKOAu-Q,\"The Khaki Scouts find Sam in the woods, but he won't come quietly.\"\ntt1748122,BlC3yzpzATY,Sam and Suzy discuss their futures and have their first kiss.\ntt1748122,i6XlRCrUvxU,Sam and Suzy enjoy the freedom of their tiny inlet and make homemade earrings.\ntt1748122,sorSQzGGdv0,Sam and Suzy exchange a series of letters as pen pals.\ntt1748122,3l4Uuh_byns,Sam and Suzy meet up in a field and run away into the woods. Sam shows off his scouting skills.\ntt1748122,5bBti58el_g,\"Suzy shows her books to Sam, but is upset when he laughs at her depression.\"\ntt1748122,JQoNhRN9CiI,\"Scout Master Ward inspects the troops, but finds one rebellious Scout missing.\"\ntt0072067,nKBE3U4mwuY,Firat tries to get Hadji to confess to murder while being pursued by the FBI.\ntt0072067,KbaqSn9LDiM,Becker sits down with Acar and Firat and speaks a little Kurdish with them.\ntt0072067,oHB3yg1vFAQ,The Turkish officers raid the terrorist hideout.\ntt0072067,N1Jg10AGbGk,Hadji explains to the terrorist the true words of Allah.\ntt0072067,I_oKf3IEGmQ,Hadji tells Marcus not to worry because he does not fear death.\ntt0072067,XfKq2_EzkE4,Hadji discusses Islam and terrorism with Acar and Firat.\ntt0072067,ha40ifVCakk,Hadji questions the Turkish police officers and offers them a deal.\ntt0072067,JfFRCGgpkSg,Becker and the FBI agents arrest Hadji at his home.\ntt0072067,wTqPJaupccs,The Turkish officers start their operation to capture the terrorist leader.\ntt0072067,H_CVt8o2GAc,Firat confronts Hadji about being a murderer.\ntt0072067,HfiKoIVr3T0,Hadji explains to Firat what really happened in 1973.\ntt0089017,K9Z6ZZIZPFw,Roberta is disappointed when Gary insults her 'Jimi Hendrix' jacket.\ntt0089017,3TAoWo3kBkw,Roberta follows Susan into a thrift store and purchases the jacket that Susan just sold.\ntt0089017,OWRqJA31H_E,Dez watches Roberta assist in a magic act and then become attacked by an audience member.\ntt0089017,lnQRXfjI664,Roberta visits Dez in the projection booth of the theater to re-introduce herself proper.\ntt0089017,wEzZX_MFu4w,Roberta's two worlds finally collide when Dez and Gary meet for the first time.\ntt0089017,ZwlQdSE1LdM,\"Gary nervously watches Susan take a tour around his house, and offers some advice about Roberta.\"\ntt0089017,5mbqW5rZaCI,Dez confesses to Jim that he was the man who jumped him in the dark... and he also slept with Susan.\ntt0089017,xyiG9P_Vc7A,\"At a dance club, Gary meets Susan for the first time, hoping that she has information about his wife's whereabouts.\"\ntt0089017,8HI62qvNWPU,Crystal storms out of her job after she's fired and Susan takes her to see a movie.\ntt0089017,wt0_m5mUsbo,Gary worries about Roberta and ravages the kitchen for food while Leslie lectures him about orgasms.\ntt0089017,rtsis0lgx7k,Roberta kisses Dez after asking him about Jim.\ntt0089017,XZXg3WkUGPw,\"Roberta reads the personal ads, where she lives vicariously through two strangers named Jim and Susan.\"\ntt0810817,PC_O4NLvktE,\"After breaking into the De Korta Residence to steal Da Vinci's sketches, Archer finds himself betrayed by his choice of partner.\"\ntt0810817,wRCiwDkYtVo,\"Coven tries to cash in on Michael's treasure discovery, but a freak oil accident foils his plans.\"\ntt0810817,gVIdf-kZJXk,Michael and Giulia discover a key inside the artifact and they use it to open a secret door.\ntt0810817,CbM6muvlHOw,Michael and Giulia try to outrun a helicopter full of Coven's henchmen.\ntt0810817,gsXRITF5hcI,Michael and Giulia discover Da Vinci's treasure.\ntt0810817,VOgIyusLSOA,Michael and Giulia examine photos of Christ's shroud with Da Vinci's optics to determine the location of their next clue.\ntt0810817,iMigt5aPvPQ,\"While Michael has a dangerous encounter with Coven, Giulia finds and steals the glasses they need.\"\ntt0810817,aKNOSJT3vCo,Michael and Giulia steal a bus and try to outrun Coven's thugs.\ntt0810817,LDDFccHEa3s,Samantha and her crew catch Michael and Giulia in an alley and steal Christ's shroud.\ntt0810817,l4Ws4ou6UO0,Coven chases down his ex-associate Michael and steals the Da Vinci artifacts he just stole from someone else.\ntt0061811,S5x3QGlo22M,Gillespie and Virgil bond while drinking.\ntt0061811,cXfD-Ai_QuA,\"When Virgil decides to leave town as soon as possible, Gillespie does what he can to keep him on the case without rubbing his ego.\"\ntt0061811,Kc2EYuV33Ns,\"When Gillespie locks up Virgil, Virgil uses the time with Harvey to decipher if the man is in fact innocent.\"\ntt0061811,2UrB8TI5El4,\"When Endicott slaps Tibbs for implicating him as a suspect in the murder, Tibbs slaps him right back.\"\ntt0061811,cmBN-X701Gg,A call from Virgil's Captain leads Gillespie to ask him to look at a recent case.\ntt0061811,LoLBuoPL7nI,Tibbs says goodbye to Gillespie at the train station.\ntt0061811,RisSaXLB5ok,Gillespie defends Tibbs while Tibbs examines the corpse of Philip Colbert.\ntt0061811,i6n8VyqaCQ4,Tibbs defends himself against a racist Gillespie while Mrs. Colbert grieves her late husband.\ntt0061811,iI8w5AQJcN8,Tibbs explains his circumstance to Jess when he gets dropped off by Gillespie.\ntt0061811,g-g4vCbZsDM,Gillespie is furious when he finds that a police officer Tibbs  was wrongfully brought in as a suspect in a crime.\ntt0785035,nAK7Uyg_Y7Y,Tien is left with no choice but to fight his mentor Chernung to the death.\ntt0785035,1S3Vom2V2lY,\"Tien fights Lord Jom Rajasena's men, but even he might be enough to fight the Crow Ghost.\"\ntt0785035,vL5LepmOUQk,Tien fights for his life against a crocodile while Chernung and his men watch.\ntt0785035,k92e50obPsQ,Tien undergoes a strenuous martial arts test.\ntt0785035,o02NQhYm4lU,\"Tien uses his mastery of agility, strength, and presence to calm stampeding elephants.\"\ntt0785035,6kxFTk_Yoq0,\"Tien begins his test of the mind, which forces him to make a deadly decision.\"\ntt0785035,PEOiWoM2q6Y,Tien takes down wave after wave of slavers with his epic drunken boxing skills.\ntt0785035,sWd44kgjkeE,\"Tien returns to his village, only to face his father's killer -and a wave of other assassins.\"\ntt0785035,4QOA-TyD42o,Tien ambushes slave traders attempting to make off with a sacred statue.\ntt0785035,1u7U16N_yJg,Tien attacks Rajesena during his coronation ritual.\ntt0081455,4hAjAP6kPg4,\"Ambushed by Revok's assassins, Vale uses his scanner powers to neutralize the threat.\"\ntt0047472,goAo5dC8P1s,The brothers and their girls sing about the beauties of spring.\ntt0047472,QbzJtP75NqM,The Pontipee boys compete with the local fellas for the gals at the town dance.\ntt0047472,smwBZ-3HAPY,The fathers of the girls consent to them wedding the Pontipee boys when they all claim Milly's baby is their own.\ntt0047472,6_gHh5IEgi0,\"Back on the ranch, the Pontipee boys are sure lonesome without the town girls to keep them company.\"\ntt0047472,SqaM88u082Y,\"The Pontipee boys try to control themselves to impress the women at the barn raising, but there is only so much they can take from the men in the town.\"\ntt0047472,846by3LOKlA,Adam tells his brothers the legend of the Sabine women in Roman times and how it might apply to them.\ntt0047472,G87BCljOeuA,Milly teaches the Pontipee brothers how to woo a woman in the gentlemanly way.\ntt0047472,khfeRoRCp7c,\"Milly shares with her new husband, Adam, her feelings about love.\"\ntt0047472,z7OEKs7hAEk,Adam sings about the type of women he is looking to marry.\ntt0047472,dvJqm3PFKLk,Adam tells everyone that his currently in the market for a wife.\ntt0274166,8VItLIW2D4g,\"Johnny English plays a DVD of his \"\"evidence\"\", but it is actually a recording of himself lip syncing to an Abba song.\"\ntt0274166,Ab3QDSj2ws0,\"At the coronation ceremony, Johnny English pulls down the pants of the Archbishop of Canterbury to prove that he is a fraud.\"\ntt0274166,mVdTVvgW4EM,\"Johnny English is attacked in a garage, but succeeds in capturing his assistant, Bough.\"\ntt0274166,_FurW3BTcjw,\"Johnny English uses muscle relaxant and truth serum on the bad guys, but gets them mixed up.\"\ntt0274166,n3Y6B_UKam0,\"Johnny English meets Lorna at a sushi restaurant, but gets caught in the conveyor belt.\"\ntt0274166,7ELmyf41TnQ,Johnny English rides an Aston Martin on a tow truck to chase the thieves.\ntt0274166,WZxFIAFTfEU,Johnny English describes the imaginary assailant for an artist.\ntt0274166,93TnnyxGBqI,Johnny English interrupts what he thinks is a fake funeral.\ntt0274166,U6CGGUJKymk,Johnny English fights with an imaginary assailant.\ntt0274166,2uyy1EOBBm4,\"Johnny English goes to meet Pegasus, but accidentally incapacitates the secretary.\"\ntt0085382,h_JeXTLSCQk,Donna tries to revive a dehydrated Tad after escaping from Cujo.\ntt0085382,sVg5_6gjzlg,\"Joe goes to pick up Gary, and finds that he's been killed by Cujo.\"\ntt0085382,5CS1t_QtZOU,\"Donna tries to escape from her car to get into the house, but Cujo stops her.\"\ntt0085382,T37ezlBVMME,Donna and Tad panic when Cujo attacks the car.\ntt0085382,WyKHdjh7_2E,\"Donna and Tad go to get the car fixed, and a rabid Cujo tries to attack them.\"\ntt0085382,qNnfnI8ai6o,\"Vic takes his family to get the car fixed by a mechanic, Joe Camber, and they meet Cujo.\"\ntt0085382,VN-AkfFZwfI,Brett goes into the fog to look for Cujo.\ntt0085382,awPDaFp70yI,\"Cujo chases a rabbit, and gets bitten by a bat with rabies.\"\ntt0086525,uGrrtkaWoU8,Randy tries to cross paths with Julie every opportunity he can.\ntt0086525,h0qWin97VyI,Julie breaks it off with Randy. He realizes it is because her friends disapprove of him.\ntt0086525,FcEchaH6EJk,\"Randy and Julie fall in love, 80's style.\"\ntt0086525,s59yqpV0ICo,Julie and the girls discuss the events of the party during Driver's Ed. The girls don't approve of Julie's interest in Randy.\ntt0086525,bKkJKMjnYf4,Julie comes home the morning after the party to her hippie parents.\ntt0086525,s9FoorJGkrA,Randy appears in the bathroom and convinces Julie to ditch the party for a night with him.\ntt0086525,xZ_GOyfnTTs,Randy fights Tommy at the dance and escapes with his Queen.\ntt0086525,TuOYe44bL0U,Randy comes to see Julie at her parent's health food restaurant.\ntt0086525,3ExJ909lWds,\"The girls have, like, a totally tubular slumber party.\"\ntt0086525,L-xNqfIXuaM,\"Julie sees Randy for the first time at the beach. Randy learns of the party in the Valley, but doesn't want to go.\"\ntt0086525,SKoj1Its8vo,\"Randy is angry that Julie's boyfriend interfered with his plans at the party, so they head back.\"\ntt0086525,uhH9ewIEbnU,Julie tells off Tommy at the mall before Suzi's party.\ntt0081455,M8T58oBOsAU,Kim tells Vale that she was scanned by an unborn child.\ntt0081455,uTINsxfQwUw,Revok uses his scanner ability to kill his captors with the power of his mind.\ntt0081455,Cy6I9ydBSWc,\"Revok and Vale battle to the death, the Scanner way.\"\ntt0081455,7lAIabgWtbI,\"Kim uses her formidable scanner powers to thwart Revok's assassins, thereby allowing Vale to escape.\"\ntt0081455,F9puQXwExbY,Dr. Ruth shows Vale classified documentary footage of Revok to better prepare Vale for the unstable threat he will face in the future.\ntt0081455,yKNauUKkW9Q,Keller uses a computer to try and shut down Vale.\ntt0081455,yWGL8RTONpM,\"Dr. Ruth oversees an experiment where Vale takes control of a man's heart rate, the consequences of which become rapidly threatening.\"\ntt0081455,qnp1jfLhtck,\"At a Scanner demonstration, Revok volunteers himself and blows up the head of another Scanner.\"\ntt0081455,XFosHLSA03w,\"Keller murders Dr. Ruth, abruptly severing the psychic connection between he and Vale.\"\ntt1480295,NvKOhmZA9bU,\"With Emil right where he wants him, Benjamin prepares him a very special drink.\"\ntt1480295,yp1luet0nkU,The blood feud between Benjamin and Emil comes to an end on a lonely bluff.\ntt1480295,wC-N_KnYNLw,\"Benjamin, shot through the calf, flees from Emil, whose agenda goes deeper than simple assassination.\"\ntt1480295,W3s4HSqODSE,Emil forces Benjamin to drive a bolt through his calf before hanging him from it to torture and interrogate him.\ntt1480295,dJcvUGXOMMw,\"Emil gets the upper hand with a flare gun, but Benjamin manages to grab a shotgun.\"\ntt1480295,zdKxziIlC-c,\"Surviving Emil's first attack, Benjamin dresses his wounds and prepares for a hunt of his own.\"\ntt1480295,YOuQ9V-tzps,The gloves are off when Emil threatens Benjamin's family.\ntt1480295,0XZlgVrxKfg,\"Emil and Benjamin compare their hunting equipment, each hinting something without saying it.\"\ntt1480295,g5iR3s9FA_g,\"With his jeep on the fritz, Benjamin makes a fateful acquaintance in Emil, his would-be assassin.\"\ntt1480295,2xH234D7lao,Benjamin's reluctance to shoot a buck prompts a startling revelation from Emil.\ntt1480295,HSQl1nhi3N0,\"With Emil incapacitated, Benjamin finally gives him what he wants.\"\ntt1376460,X3Ujc0YaltE,\"When a woman won't stop talking on her cell phone while driving, the phone turns into a robot and shoots a laser through her head.\"\ntt1376460,TdffyS619Qw,A pacemaker turns into a robot and bursts out of someone's chest.\ntt1376460,i4zxmn6_aRA,\"Clay is pierced by a laser through the chest and head, killing him instantly.\"\ntt1376460,ML1hxH1yQb8,\"The Transmorphers return and begin attacking, forcing Jake and Madi on the run.\"\ntt1376460,e3BQROKhvgo,\"When all hope looks lost, Hadley saves the day by sacrificing himself and crashing his helicopter into a Transmorpher.\"\ntt1376460,Hk-_1SD1pic,\"The Transmorphers begin their siege on the military base, killing all those in their path.\"\ntt1376460,B1Y4s89sBpY,\"As they fight the Transmorphers, Madi uses herself as a distraction, leading Jake to believe she's been killed.\"\ntt1376460,204zPTniPrU,\"Hadley pursues an unmanned SUV, which turns out to be a Transmorpher.\"\ntt1376460,5CfzQ1956jw,Jake and Madi reunite and Jake explains the aftermath of the fallout.\ntt1376460,hTdBkXMvY6o,Jake and the group devise a plan to take down the Transmorphers once and for all.\ntt0960835,FPgDrHxAntE,Mitchell and his team enter the lead transmorpher to hack the mainframe.\ntt0960835,phOJkEJled8,Karina alerts General Van Ryberg that there's an air strike as the team takes the fight to the air.\ntt0960835,YGmK5uMOgZ0,Mitchell sacrifices himself to stop the giant transmorpher from destroying the humans.\ntt0960835,3YWCnhDDMac,\"The battle continues as Itchy, Nadir and others start putting a real dent in the robotic army.\"\ntt0960835,FIjtDcICyIE,A fight breaks out between soldiers after an argument over loyalty and respect before Lux pulls rank and steps in.\ntt0960835,wxRSLer7VIg,Mitchell and his team have some success in their first battle with the robots.\ntt0960835,3TN3wohDAXg,Mitchell learns that he is a robot and he volunteers his life for the upcoming mission.\ntt0960835,60d2lmx8LQM,Mitchell is highly dissatisfied after he tests his new team and enlists Itchy to find more volunteers.\ntt0960835,BW3ZFYQQXb8,\"Earth finally made contact with aliens from another planet, but five years later they responded with a much less peacful message.\"\ntt0960835,FVTtA6m68rg,Blackthorn and his crew fall into a fatal enemy trap and General Van Ryberg chooses to let them die instead of exposing the position of the rebels HQ.\ntt0089907,NJzij2bw0f4,\"When Frank and Freddy wake up after the toxic spill in the company warehouse, they discover that their medical research has come back to life.\"\ntt0089907,yhjD1CmE9gs,\"Freddy turns into a zombie and attacks Tina, but the gang stops it with a face full of acid.\"\ntt0089907,2NhF6zphSx8,\"A zombie breaks through the wall, killing a punk before Ernie manages to capture it for questioning.\"\ntt0089907,KkV42m5wVTk,\"The punks comes to Tina's rescue, but while saving her, one gets eaten by the zombie.\"\ntt0089907,d6zX6-Rf4JY,\"Tina comes looking for Freddy, but finds a zombie instead.\"\ntt0089907,K7bA4PB0zdk,Burt shows Ernie that what's moving in those trash bags aren't weasels after failing to convince him that they are.\ntt0089907,I9npL6x8oFQ,Frank shows Freddy the frozen zombies and accidentally breaks open a container.\ntt0089907,D_xUviDPUOE,\"When a blow to the head doesn't kill the first zombie, Burt saws off its head, only to have the headless body attack them.\"\ntt0089907,8mZEPgvvd4I,\"Frank tells Freddy the real story behind \"\"The Night of the Living Dead\"\" and the chemical responsible: 245-Trioxin.\"\ntt0089907,Hdh3npiRip4,\"Frank shows Freddy around the warehouse, including the freezer with the fresh cadavers.\"\ntt1605630,ajRRS6NzMBU,The guys apologize to Stifler and he tells off his prick boss.\ntt1605630,U97UagTDW_0,Jim asks his dad for advice on sex after marriage.\ntt1605630,38jPEmoNjAw,\"Heather goes after Oz's new girlfriend, Mia.\"\ntt1605630,qnVGIFPFry8,Oz watches some embarassing video from a dance competition he was on.\ntt1605630,5Xbdu0wnun4,Jim tries to give his dad some dating advice.\ntt1605630,nQLSbuSZzE8,Jim and Stifler try to hide from Kara's dad.\ntt1605630,a469ezsg86A,\"To get revenge on some guys who splashed them, Stifler takes a dump in their cooler and trashes their jet skis.\"\ntt1605630,ZvG2Q_KNCOA,\"Oz is very happy to run into Heather on the beach, until Stifler ruins the moment.\"\ntt1605630,JQLBuA1JCfg,Jim drives a drunk Kara home and she comes on to him.\ntt1605630,utS5IxGpAPI,Stifler catches the guys having a reunion drink without him.\ntt0068833,_dVAPmlzo7g,\"Mari and Phyllis think they are going to buy grass, but Junior and his pals have different plans for them.\"\ntt0068833,8_mRYeBdwcc,The gang tortures and kills Phyllis while Mari calls out to her from the woods.\ntt0068833,p4TZcBFacUg,John Richard Towers) & Estelle kill those who murdered their daughter.\ntt0068833,4UgTUqi3Xxk,\"Phyllis is humiliated and frightened as she is forced to first pee in her pants, and then take off them off in front of the group.\"\ntt0068833,fTMY9OkzTBA,The gang catches up with Phyllis in a cemetery and surround her with weapons as she tries to escape from the woods.\ntt0068833,NJtOmLkUSKs,\"Fred's moment of pleasure with Estelle turns very, very ugly when she castrates him with her teeth.\"\ntt0068833,ZAhwNITS1WQ,\"The group tortures a hysterical Mari by capturing her in the woods, slicing into her chest, and showing her Phyllis's chopped hand.\"\ntt0068833,8rN5CaA7OUI,\"When Junior pulls a gun on Krug, Krug convinces him to kill himself instead.\"\ntt1649444,QaxQWGA3wys,\"After a bizarre encounter in the tunnels, Natalie makes a tearful confession to Clara.\"\ntt1649444,JaTnlFHOkZ8,\"The last survivors of the zombie wedding massacre, Koldo and Clara have their wedding kiss while they still can.\"\ntt1649444,LydYnbMzIGA,Koldo and Clara experience a true test of love when she is bitten by a zombie.\ntt1649444,ucqBb8FMJ74,\"Koldo won't let a zombie, not even his uncle, come between him and his bride.\"\ntt1649444,MB-oElVuFoc,Father Cura demonstrates the power of prayer over a pack of demonically possessed zombies.\ntt1649444,h0lUVSpj310,\"When Koldo's attacked by a zombie, \"\"Royalties\"\" shows off his survival skills.\"\ntt1649444,Or3JIDwWgH4,Uncle Victor gets Koldo and Clara's wedding reception going with a zombie attack.\ntt1649444,Nds71RtsnxY,\"With zombies hot on their trail, Koldo races to free Clara from a tunnel.\"\ntt1649444,p9Iw3217IRs,Disgruntled Bride Clara takes a chainsaw to the zombies that are messing with her wedding day.\ntt1649444,n5wiHK9V_ss,Koldo discovers how deep the zombie outbreak goes.\ntt1655441,Jxs8p22Pq_Y,Adaline finally tells Ellis the truth.\ntt1655441,ZQ146HsyzE8,Adaline discovers that she's finally starting to age.\ntt1655441,kTKIACVqDzQ,William confronts Adaline about her condition and begs her to stay.\ntt1655441,d5nAgnojNgk,William notices a scar on Adaline's hand - a scar he remembers from their time together in the sixties.\ntt1655441,4Em53e2p7HQ,The Jones' play Trivial Pursuit and Adaline learns that William named his comet after her.\ntt1655441,k8VqG4ftlK0,William remembers how he met Adaline.\ntt1655441,ivGfI_8TE9I,\"On their first date, Adaline decides to temporarily give in to her desires and let Ellis in.\"\ntt1655441,zkR_E8jw6qE,\"Ellis introduces Adaline to his family. As it turns out, Adaline and William knew each other in the past.\"\ntt1655441,Q59V4qwZI14,\"When Adaline begins to get noticed for the disparity in her age and looks, she moves away to study more about her condition.\"\ntt1655441,CmssRVrBMxU,Ellis pursues Adaline despite her many attempts to end the conversation.\ntt1245112,7Ce8fa-b_m0,\"Ori, Tito, and Mire have a novel approach to demon zombie disposal.\"\ntt1245112,cwkEbwJR0aM,\"Father Owen attempts to communicate with demonically possesed Jennifer, which doesn't go as well as he'd help.\"\ntt1245112,t9_VbtJdDSQ,Larra has the worst minute and thirty-eight seconds of his entire life.\ntt1245112,sS8ECvGKWT4,\"Larra goes into the ventilation shafts to retrieve a vial of demon blood, but he's not alone.\"\ntt1245112,_lJxUhMK4ZE,\"Facing an onslaught of zombies, things go pretty badly for the GEO squad.\"\ntt1245112,epbmsvL_da8,\"The GEO Squad is horrified, discovering the religious experiments performed in the apartment, but Father Owen worries about bigger problems.\"\ntt1245112,ZG5aSjd3ejo,Martos investigates the apartment's lower levels despite Dr. Owen's warnings.\ntt1245112,MATnKRvs8K8,The GEO squad learns the truth about Father Owen and that they might be dealing with demons.\ntt1245112,QYtcftNU7Gs,\"Dr. Owen, Rosso, and Angela attempt to track down Tristana, a demonically-possessed girl.\"\ntt1245112,yLJU7uywTXc,\"Angela, possessed by the demon, dispatches Rosso and reveals the scope of her powers to the hapless Dr. Owen.\"\ntt0816711,cP4Q_O_ZKWA,Gerry leads his wife and daughters to safety through a zombie-filled building in New Jersey.\ntt0816711,4rGu9dMtQWA,Gerry and company make their way through a research lab to find a virus that could deter zombie attacks.\ntt0816711,YqjCnk31_Ss,\"Gerry runs for his life from countless zombies, but makes a game-changing discovery in the process.\"\ntt0816711,uU0DNCV22dU,Gerry realizes too late that singing is attracting the zombies - and that they can climb.\ntt0816711,GDhe2vbzjwU,A poorly timed cell phone ring utterly destroys a stealth mission against the zombie horde.\ntt0816711,BLIuci6IBIg,Gerry watches in horror as a commuter becomes a zombie in a mere 12 seconds after being bitten.\ntt0816711,YdhnqI-beNo,Getting stuck in traffic gets even worse for Gerry's family with a violent zombie outbreak.\ntt0816711,mvbLx0pbohk,\"Trapped on a plane with zombies, Gerry and Segen take desperate measures to survive.\"\ntt0816711,PAkRrp46SBE,\"After injecting himself with a virus, Gerry tests whether or not it's a zombie deterrent.\"\ntt0816711,0mwkZUkwEHw,Gerry narrates how the world has changed since the zombie outbreak.\ntt1925518,bFrORNp20Js,\"After finding out that there are bombs attached to his elephant, Kham and Ping-ping fend off LC and No. 2.\"\ntt1925518,MMcWHkb8Ank,Kham takes on some henchmen as the temple starts to burn around him.\ntt1925518,TVPDfLM9zIw,LC decides to take matters into his own hands and attacks Kham.\ntt1925518,EgkBHCLS0cA,Kham and Ping-ping are attacked by No. 2 and some henchmen.\ntt1925518,l2zPMIA3SYk,Kham and Ping-ping go up against No. 2 after he kills Ping-ping's sister.\ntt1925518,6hxZUTUMkf8,Kham and No. 2 face off on an underground railway.\ntt1925518,X4b1jFHAC98,Kham runs into a very large moped gang that seems intent on catching him.\ntt1925518,Acmav3U4xOE,No. 2 and some henchmen find Kham at the same time the revenge seeking sisters Ping-ping and Sue-sue do.\ntt1925518,suz-NZ9GZ80,Kham attempts to escape from a large gang that is chasing him through the city.\ntt1925518,iWrr0qhRNaA,Kham is attacked by a gang of moped riding punks.\ntt1925518,t0hEHI9fcsU,The gangster LC organizes a fight between No. 20 and another fighter.\ntt1932767,2ZMYorajMhk,\"While Susanna is recording a new track, Lincoln spends time with Maisie.\"\ntt1932767,9qmOMFvxI2I,\"After Margo is forced to pick Maisie up at school, a stranger arrives to pick her up on behalf of her mother.\"\ntt1932767,SIgiRJmMz1A,Susanna and Beale argue bitterly over the custody of Maisie.\ntt1932767,OkiJH2Y4z08,Maisie gets to know Lincoln better and shares him with her classmates.\ntt1932767,dbu7AfaXHvE,Maisie and Lincoln share a fun day at the High Line.\ntt1932767,2f2hB_pRG24,While at breakfast Beale tells Maisie that he's moving back to England.\ntt1932767,IcawiMd_kkM,\"While picking up Maisie, Beale meets Susanna's new husband, Lincoln.\"\ntt1932767,lhY7RZxINlY,Lincoln and Maisie find an emotional Margo at her apartment.\ntt1932767,J-AftfYVSI8,\"While on the way to the store, Susanna appears and takes Maise back.\"\ntt1932767,aQobE1tPeGw,Lincoln returns to join Margo and Maisie at the beach.\ntt1932767,rLh0UcN75A4,\"Susanna comes to take Maisie away, but is met with reluctance.\"\ntt1932767,vSCT2CffKDI,Lincoln comes to pick up Maisie while she's sick.\ntt3316948,lYEy4it6m3Y,Mike finds the perfect moment to propose to Phoebe.\ntt3316948,Z1Cv11vpjhQ,\"While Phoebe tries to escape from Yates, Mike learns more about Laugher.\"\ntt3316948,Kz6J6Y2DpL0,Mike fights his way through aisles of Tough Guy operatives to rescue Phoebe.\ntt3316948,AJWkS8Ja9YA,Mike uses a creative approach to wipe out his newest threat.\ntt3316948,LODjoHqYzyw,Laugher tries to finish off Mike for good.\ntt3316948,z-glL87s5lg,Mike searches for answers from Phoebe after he nearly dies from the chemical gas.\ntt3316948,u-M2Zb_B7BY,Mike and Phoebe try to escape from Rose's basement before more Tough Guy operatives can find them.\ntt3316948,1lYlFbsVOjI,Two Tough Guy operatives come to kill Mike and Phoebe at the police station.\ntt3316948,Cgow0KNc4Hc,Rose discovers that Mike might be involved with the super disease that has put the town on lockdown.\ntt3316948,OzVZMadRoSQ,Mike surprises himself when he's able to fight off two attackers.\ntt0029947,xAmgUnwxCUc,\"Baby, the leopard, shows up at the police station, revealing to David and the rest that Susan is out hunting for a different dangerous leopard.\"\ntt0029947,5h8EbDuS0so,Dr. David Huxley and Susan Vance learn about mating cries from Major Applegate.\ntt0029947,0JoIRmQW2es,\"Susan Vance apologizes to Dr. David Huxley, but ends up bringing down his precious dinosaur.\"\ntt0029947,aAkF2Du59Qw,Susan and David try to get George the dog to find the dinosaur bone.\ntt0029947,9P-MtbTe3O4,David doesn't know how to handle Susan.\ntt0029947,yPzAML0fs2o,Constable Slocum tries to get the truth out of David and Susan\ntt0029947,EQDbDIz1Y0E,Susan keeps David around by sending his clothes to the cleaners.\ntt0029947,CiWjwS4lqLY,\"David asks the butcher for 30 pounds of uncut sirloin steak, while Susan is nearly arrested by Constable Slocum.\"\ntt0029947,BVrZAIo3wX4,\"First, Susan rips David's jacket. Then David rips Susan's dress and they try to avoid embarrassment.\"\ntt0993846,6K7Xjdfc0bA,\"Jordan tries desperately to get Donnie off his tapped phone, but they are both high on quaaludes.\"\ntt0993846,DuGfgv_eDEo,\"Jordan needs to get home quick, but has a hell of a time just getting to his car because he took a huge dose of quaaludes.\"\ntt0993846,5mMnqYaXDk4,Jordan inspires his troops to work as hard as possible to be rich because being poor really sucks.\ntt0993846,rasqcYuX80A,Jordan argues with his wife about his cheating and other issues.\ntt0993846,2foDdTT3cG8,Jordan shows his new company how to use his script to close a sale.\ntt0993846,l8kCCIoP1jg,Mark Hanna teaches Jordan how to stay relaxed in the high pressure world of Wall Street.\ntt0993846,86TpCwZ4FvY,Naomi tells Jordan that because of his mistakes she's not going to sleep with him for a very long time.\ntt0993846,xbBD7VIJ4cc,Mark Hanna teaches Jordan how to make money on Wall Street.\ntt0993846,TxHITqC5rxE,Donnie Azoff asks Jordan what he does for a living and decides to quit his job right there and work for Jordan.\ntt0993846,I13gMF50oqE,\"Donnie explains to Jordan that he married his first cousin, but it's not really as bad as everyone thinks.\"\ntt3397884,VF_-AB2-Ux4,Matt gives Kate an explanation for what is really going on with Alejandro and the drug traffickers they are pursuing.\ntt3397884,h-UqMU-MIig,Alejando and Matt use questionable tactics to pull information out of Guillermo.\ntt3397884,Jig6r9FAwAY,Alejandro and Matt interrogate Ted about his involvement with the Mexican drug trade.\ntt3397884,u-pvs7gVNHo,\"As Kate inspects a crime scene, an explosive is detonated, killing some of her fellow agents and leaving her shaken.\"\ntt3397884,aa2agiADM04,\"When Kate, Alejandro and their fellow agents spot a waiting ambush by criminals at the border, things quickly get out of hand.\"\ntt3397884,GYPwh07eWok,\"When Kate takes Ted back to her place for a hopefully good time, she discovers a heart-stopping secret about him.\"\ntt3397884,RwuhnfKnTYY,\"Kate and Reggie take part in an FBI raid to discover missing hostages. When their enemy returns fire, they make a horrifying discovery.\"\ntt3397884,qcGEIq1AEGM,\"When Kate discovers Alejandro breaking the law for his own personal agenda, she tries to stop him.\"\ntt3397884,4RKjRiO1FPU,Alejandro uses Silvio as a pawn to get at Manuel Diaz.\ntt3397884,aDJJBMXiwiI,Alejandro threatens Kate and forces her to sign a document stating everything they did was by the books.\ntt3397884,vv84nq5_ZY4,\"Alejandro finally gets his revenge on Fausto, the man who killed his wife and daughter.\"\ntt1592281,X9YOhb0FiIM,Margot is disappointed when Lou rebuffs her while he is cooking chicken.\ntt1592281,UKvQEHlkqJU,Daniel asks Margot what she is going to do with him and later shows him an artwork he made of her.\ntt1592281,zeTYlUcrfRY,Margot and Geraldine have a great time exercising until Margot pees in the pool.\ntt1592281,Q1Yz3J6OGQQ,\"Margot realizes that, because of her choices, she can never be Lou's partner again.\"\ntt1592281,t3aYQKl1qbc,Lou reacts badly when he realizes that Margot is leaving him.\ntt1592281,D6AzQTg_bPA,\"Geraldine falls off the sobriety wagon, but reminds Margot that she has made just as bad of a mistake with her life.\"\ntt1592281,vioUisPavvA,\"Geraldine celebrates with her friends, but Lou invites Daniel over as well.\"\ntt1592281,xxmnK05iITY,Daniel meets Margot's husband and takes them on a rickshaw ride on their anniversary.\ntt1592281,HhBAeTBIj0U,\"Margot and Lou go to dinner on their anniversary, but have a hard time having a normal conversation.\"\ntt1592281,jMHH-fH6oBc,Daniel tells Margot what he would do to her sexually if he had the chance.\ntt1592281,1SnNjUe_vuQ,Daniel catches Margot staring at him and asks her what she is afraid of.\ntt0787474,gaLJooLoKjE,Eggs is raised by the Boxtrolls in their undergound home.\ntt0787474,ENsr9cH6irs,Winnie fails to teach Eggs how to be a proper gentleman.\ntt0787474,MJNG_rYJPV0,Eggs and the Boxtrolls attempt to dismantle Mr. Snatcher's machine to take him down once and for all.\ntt0787474,hggAh6GibqQ,\"When Mr. Snatcher and his henchmen come looking for them, the Boxtrolls flee to their underground cave.\"\ntt0787474,cudA9HUl6AA,\"Winnie tries to tell her father Lord Portley-Rind about the Boxtrolls she saw, but he is too busy discussing cheese.\"\ntt0787474,L1DsFsUlgwM,The boxtroll exterminators chase Eggs and his friends through the village and capture Fish.\ntt0787474,wNhse5NZgR8,\"Dressed up as Madame Frou Frou, Mr. Snatcher performs a song and dance routine to tell the story of the Boxtrolls.\"\ntt0787474,7iM1XM9SvdQ,Eggs chases after Winnie in order to find information about his missing friends.\ntt0787474,vicOpIdpQVM,\"Despite a sincere warning from Eggs, Mr. Snatcher eats the fanciest cheese in the world, which leads to explosive consequences.\"\ntt0787474,Vz2OwX1XETQ,\"In an effort to be sophisticated, Mr. Snatcher and his henchmen sit down for a fancy cheese tasting.\"\ntt4547120,dlEoKlncQsQ,\"In an effort to avoid being detained by the military, Nick and Molly head underground into the prohibition tunnels, but they soon find themselves trapped below.\"\ntt4547120,Lbq1U6X78Io,\"A major earthquake hits as Molly works on her science project, destroying her house and killing her father.\"\ntt4547120,0mT5xT39Zvs,\"When Molly and Nick are forced to drive over a closed bridge, it begins to collapse and they attempt to rescue a woman and her son.\"\ntt4547120,u-LCigQRPdk,\"Trapped in a collapsed tunnel, Molly and Nick begin to run out of air. At the last moment, Molly discovers a way out and leads Nick through an explosive escape.\"\ntt4547120,UxIpYfsTkew,\"When another earthquake hits, Molly and Nick escape by the skin of their teeth. Meanwhile, Ali and the hotel guests get stuck in an elevator just as Mr. Lowenstein has a heart attack.\"\ntt4547120,sJOA_CvMqvg,\"Just as all hope looks lost, Hank arrives in his helicopter to rescue Molly and the kids.\"\ntt4547120,7ZbYv65cJ1M,\"A desperate mother holds Nick at gunpoint, threatening to shoot him if he does not give up his car.\"\ntt4547120,_9xxKArFYfo,\"In an effort to make everyone evacuate before an earthquake, Molly fakes that Nick has a gun in his backpack. When no one believes her, Nick must rescue the barista.\"\ntt4547120,oaSLgsnsrBk,\"As they rush to the roof to meet a helicopter, Nick and Ali fall out a window. Then, Molly and the kids must fight their way through smoke and fire.\"\ntt4547120,CMFFeWPy-NM,\"When Nick hits a baby hippo with his car, its angry mother goes on a rampage.\"\ntt0290747,lOR8JBFySr8,\"Sheriff Williams, Teri and Rene confront the Man-Thing, trying to set its restless soul to peace.\"\ntt0290747,rITjAbXej3o,\"Sheriff Williams questions a pair of rednecks, but they're less than thoroughly hospitable.\"\ntt0290747,hfOL-PefOz4,Frederic Schist meets an extremely ironic end at the claws and tentacles of the Man-Thing.\ntt0290747,z_3ODalPzT4,\"Sheriff Williams has a bad night in the swamp, but not as bad as a worker at the Schist oil refinery.\"\ntt0290747,LDWuu8GZnkM,Sheriff Williams and Deputy Fraser meditate on fear as they plunge into the swamp while Wayne and Rodney come face to face with it.\ntt0290747,X-t_25jG36E,\"Rodney finds his brother Wayne deep in the swamp, along with something much worse.\"\ntt0290747,598QZf6lkKw,\"While the town prepares for war over the Man-Thing killings, Pete Horn enters the swamp to boost its power.\"\ntt0290747,P94WndY58eg,Sheriff Williams learns from Pete Horn about the origins of the Man-Thing.\ntt0290747,hmYIR6v-oVE,\"Sheriff Williams learns from Rene part of the Man-Thing's origin, escaping just in time to witness the creature attack Deputy Fraser.\"\ntt0290747,QImoaNjTtng,\"Frederic Schist and Jake Schist head into the swamp to kill Rene and Ted Sallis, not knowing that one of them is laying in wait.\"\ntt0290747,hAQ2xTr4U64,Deputy Fraser gives new Sheriff Williams a sense of how bad his new job is going to be.\ntt1529572,UoM7CdIs2b0,\"When Annie finds outs that Charlie had other girls, she finally accepts the truth of her situation.\"\ntt1529572,NQ1-De19txE,Will tells Annie how much he admires her confidence and how much he loves her.\ntt1529572,7yhDJzI-hjg,Will and Gail talk about some of his issues.\ntt1529572,vk9wMNmKk6Q,Will and Annie get in argument over her feelings for Charlie.\ntt1529572,jsTtWLXjHZM,Annie goes to her first therapy session with Gail.\ntt1529572,iCfplC1mMoI,Will and Lynn find out that Annie has been raped and they go to the hospital to pick her up. The FBI also get invovled.\ntt1529572,txbmUDJcF6k,\"With the urging of FBI, Annie Agent Doug Tate tries to contact Charlie again.\"\ntt1529572,_azX1Pr0vkA,\"Annie meets Charlie, and he is not who he seemed to be.\"\ntt1529572,YHTyGMYFsU0,Charlie convinces Annie to go with him to a motel.\ntt1529572,BTbo7NyijNA,Charlie tells Annie the first lie about his age.\ntt0096787,HhEyYbmTh_Y,Charlie says an emotional goodbye to Anne-Marie when the Angel calls him home to Heaven.\ntt0096787,9YFfoCKHAQQ,\"Charlie and Itchy use Anne-Marie to win bets, so that they can make enough money to build their own casino.\"\ntt0096787,pHB8Z35H29k,\"Itchy searches the Mardi Gras parade to warn Charlie about Carface's plan to kill him, but he arrives too late.\"\ntt0096787,oX3PL_u2LbQ,Anne-Marie overhears Charlie telling Itchy that he doesn't care about her.\ntt0096787,whCKn6cV-0k,\"Charlie rescues an orphan named Anne-Marie, who has the ability to speak to animals.\"\ntt0096787,y_3OE_uIS8I,Charlie sacrifices himself in order to rescue Anne-Marie from a fiery disaster.\ntt0096787,27U6dyYE9rA,\"Ken Page comes close to eating Charlie Barkin, but stops when he realizes that he has an excellent singing voice.\"\ntt0096787,wufYHJkbl7k,\"Charlie tricks the Whippet Angel, and winds back his own clock in order to get back to earth.\"\ntt0096787,1PLIzuZNuJI,Anne-Marie daydreams about the thought of finding her parents.\ntt0096787,qe5s8UTNw4c,\"Charlie Barkin finds himself in heaven, and realizes that he's been murdered.\"\ntt0096787,5KaMqmlEcJQ,Charlie B. Barkin and Itchy return to their old digs after Itchy rescues Charlie from the pound.\ntt0238546,gS6ibQuZIS8,Maharet and Lestat defeat and kill Akasha.\ntt0238546,6yXY1OKtYPY,Lestat turns on Akasha and gives the other vampires a chance to attack her.\ntt0238546,Ze4qFn-a-2E,Lestat is instructed to kill Jesse Reeves.\ntt0238546,FuJsy0k28tk,\"Queen Akasha and her new king, Lestat, confront the Ancient Vampires who don't agree with her plans.\"\ntt0238546,kdDH7Ynw5Lc,\"While Lestat and Marius fight off other vampires during a concert, Akasha, the first vampire, arrives to help.\"\ntt0238546,xW0Babu_t8U,\"Lestat de Lioncourt is kidnapped by a man named Marius de Romanus, who reveals himself to be a vampire.\"\ntt0238546,BWMFLJwEVyQ,\"Jesse Reeves is attacked by vampires after entering their club, but is saved by Lestat.\"\ntt0238546,kr5skPIftSY,Lestat shows Jesse what it's really like to be a vampire.\ntt1453403,SlYRjU2KBfk,William Vincent goes on a collection for Victor that doesn't go as well as anyone expected.\ntt1453403,g7kdpW2hZOI,\"Victor performs his duty with William Vincent, leaving Ann to her fate.\"\ntt1453403,sIPWv4xB9-0,William Vincent's money-collecting job gets dark when he realizes what he's delivering to Juliette and Cindy.\ntt1453403,Tolt_g4y_tI,Victor comes to William Vincent with a business proposition and dark hints about his employer.\ntt1453403,Q1B3sGDIxtg,William Vincent has an oddly existential first encounter with Ann.\ntt1453403,v9AtWaaaShE,William Vincent and Ann bond over a kimono.\ntt1453403,MlACEw_4JXY,\"Victor introduces William Vincent to his boss, who has a unique way of dealing with him.\"\ntt1453403,Tf3r8Bty06I,William Vincent gets caught pickpocketing with far-reaching consequences.\ntt1453403,R8JhC8HArkQ,William Vincent broods over dinner while the Gangster sleeps with Ann.\ntt1453403,Sei2JdiJ5Ic,\"Ann reads her letter from William Vincent, detailing his \"\"death\"\" and \"\"rebirth.\"\"\"\ntt1825157,plEvMJ44Exs,\"Simon goes out with Hannah, who admits that she was being stalked by the man who committed suicide. Simon is equally smitten with her.\"\ntt1825157,AFCv59zRbGo,James advises Simon on women.\ntt1825157,EdC7U0ZRALs,\"Simon and James go to dinner, where Simon is impressed by James' confidence.\"\ntt1825157,11qpNfXStVI,\"Simon meets the new employee, James, who looks exactly like him.\"\ntt1825157,CKMpPpuKLFI,\"James helps Simon get a relationship with Hannah, but she actually likes Simon better.\"\ntt1825157,IEA7PR8i5Gc,\"Simon pretends to be James on a date with Hannah, but things don't get going until James takes over.\"\ntt1825157,GM8DRazH4ck,Simon has an awkward conversation with Hannah and then gets his project stolen by James.\ntt1825157,vjMRE5A5tVc,Simon confronts his double at work.\ntt1825157,ogEjqyO09yg,\"Simon tries to get Hannah to break up with James, but James still has the upper hand.\"\ntt1825157,HrIyLLIHrDA,Simon jumps from his building in order to kill his double and be free.\ntt0453451,bXS1LMaU7TM,Bean finally reaches the beach and everyone bursts into song.\ntt0453451,ueAsO0Gq8vI,Bean makes a romantic connection with the lovely Sabine.\ntt0453451,BgjJ00HhyCQ,Bean hijacks Carson Clay's movie premiere with his own videotaped masterpiece.\ntt0453451,cA-laLpcLIw,Bean tries to keep himself awake while driving to Cannes.\ntt0453451,55d4Hx_kaGc,\"Bean and Sabine hurry to the premiere of Carson Clay's new movie, but have to pass a police roadblock.\"\ntt0453451,t5eRT32QWdg,\"Bean tries to steal a scooter on the road, but it doesn't work.\"\ntt0453451,wUEYIhP_9ag,Bean lip syncs to various types of music while trying to earn money.\ntt0453451,eH7EyPs_Va8,Bean chases after a truck on a bicycle.\ntt0453451,P-3iw8l0lB8,\"After making a father miss the train, Bean has to find a way to comfort the son left alone.\"\ntt0453451,MCJcxb_RtII,\"Bean tries oysters and lobster for the first time at a French restaurant, but doesn't like it.\"\ntt1270792,FjKQ2_lTY_c,The Crossroads-Hawthorne choir performs together at the state finals competition.\ntt1270792,gzyR9eQJMvQ,\"The Church of the Gospel Youth Choir wins the competition and bequeaths their award to the true winners, the Crossroads-Hawthorne choir, and Hawthorne gets enough money to keep its doors open.\"\ntt1270792,2MYB0Gp7RLs,\"The Church of the Gospel Youth Choir performs \"\"Praise\"\" during the state finals competition.\"\ntt1270792,W6aifznLeXE,Mrs. Howell tells the church choir that Hawthorne must shut down due to lack of funds.\ntt1270792,yq7rSvWzhNQ,Zachary convinces the two choir groups to play nice and work together.\ntt1270792,SfN8z2mHAmw,Zachary encourages the choir students in his new school to express their individuality with their music.\ntt1270792,BzeKxlcKil4,Savannah and Miles argue over who is in charge.\ntt1270792,ujhnKE7fscw,Zachary has just learned that his father will be on deployment for another six months and he sings a song about feeling overwhelmed.\ntt1270792,THe7-5-D-gM,\"Zachary tells Aundrea that he has to move, which means he won't be competing on her team for the choir state competition.\"\ntt1270792,Jhho1OqCSiY,\"The Hawthorne Community Church choir performs \"\"This Little Light of Mine\"\" in the district choir competition.\"\ntt1853739,FxzaTk1VwGs,Crispian reveals Erin's part in his master plan.\ntt1853739,HNxe49fa2p4,Things heat up between Crispian and Drake at the dinner table.\ntt1853739,QrbBBAXBPE4,Erin's grisly confrontation with Felix and Zee !\ntt1853739,wtnRz9SIZAY,Felix gives several hard truths to his brother Drake.\ntt1853739,hphPtQjqfQQ,\"Erin overhears a chilling conversation between Felix, Zee, Fox Mask, and Lamb Mask.\"\ntt1853739,gjUN_o1mtW4,Felix and Zee startle Paul while he's clearing rooms and an important discovery is made.\ntt1853739,gQjGFMTbNxU,\"Kelly runs to the neighbor's house for help, not knowing what's waiting for her.\"\ntt1853739,pR5to9mS2cg,\"Aubrey grieves in bed while Erin attempts to fortify the house, but intruders are lurking everywhere.\"\ntt1853739,rUW2mfL---k,\"Aimee's the fastest runner in the family, but even she might not be able to outrun death.\"\ntt1853739,rqwx9NRpmHc,Tariq's nasty demise at dinner puts the entire family in danger.\ntt2039345,yc8UHdsuy68,\"Tom Selznick begins his concert performance, but soon discovers a threatening message on his sheet music.\"\ntt2039345,UYpqBY5DTUI,\"During the concert, the killer explains the rules to Tom through an earpiece.\"\ntt2039345,xjCbC99HMdo,\"Tom texts a message to Wayne while performing, but Wayne meets the killer.\"\ntt2039345,VMO06PHDR9E,Tom makes a call to Wayne in the middle of his performance to save his wife's life.\ntt2039345,C1_BoN9f1hw,\"Tom tries to save his wife, but comes face to face with the killer himself.\"\ntt2039345,nvRcQGBL7Cw,\"Ashley goes looking for Wayne, but she finds more than she wanted.\"\ntt2039345,pgae5kDwHT0,The killer forces Tom to play the piece that he is most afraid of playing.\ntt2039345,W4Zj0uwpIwo,Tom and the killer face off in the rigging above the stage.\ntt2235108,yygkcTQjw7s,Lionel crashes the racist party and Samantha hangs Coco with her weapon of choice.\ntt2235108,9cwWiC6Gs80,Lionel gapes in horror at the frathouse party while Coco exploits the nightmare she unleashed.\ntt2235108,W2EZOorGpI0,\"Lionel takes Samantha's guided tip test, while the Dean and the President have an unfortunate conversation about race.\"\ntt2235108,ObyANYT5y_c,\"Samantha shuts down Gabe on race rhetoric, but she loves him anyway.\"\ntt2235108,QZ9b-TPTC_U,Gabe speaks from his heart about Samantha's conflict between her black and white heritage while Reggie bangs on her door.\ntt2235108,tpkTStVMv_Q,\"Coco seduces Troy, which exposes both of their inner demons.\"\ntt2235108,qRahFLj59bc,\"Samantha explains the concept of Ooftas, Nose-Jobs and 100s, with Troy, Coco, and Reggie standing in for each, respectively.\"\ntt2235108,yShrBo6NiI8,Samantha and Coco each make inflammatory videos to spark emotions on campus.\ntt2235108,tKjyNywkBEQ,Samantha and Troy go head to head for the student head of the Afro-centric Armstrong Parker House.\ntt2235108,cypqB_GKzjA,\"Kurt picks a fight with Samantha, and isn't prepared for what comes next.\"\ntt0084649,85PCzIbeQGU,Mrs. Brisby uses the power of the necklace to save her home and family from sinking into the mud.\ntt0084649,1OV3T6GWhIg,Nicodemus explains hows the rats of NIMH gained their intelligence and gives Jonathan's necklace to Mrs. Brisby.\ntt0084649,umIBbT6uwZI,\"When Jenner tries to steal Mrs. Brisby's necklace, Justin comes to her defense.\"\ntt0084649,UlddepR-iRg,Mrs. Brisby finally meets Nicodemus and learns the truth about her husband's death.\ntt0084649,GfH27NmFVSw,\"Mrs. Brisby and Jeremy narrowly escape a run-in with the farmer's cat, Dragon.\"\ntt0084649,SI_DOVqlJA4,Mrs. Brisby's search for Nicodemus is thwarted by a rat guard.\ntt0084649,Mr7Ned_vQgU,\"When the plow threatens their homes, Mrs. Brisby and Auntie Shrew take action.\"\ntt0084649,Dd0PTNGBFUM,Mrs. Brisby goes to the Great Owl to plead for wisdom and help in saving her son's life.\ntt0084649,eqv02JDVQ1o,Mrs. Brisby seeks a remedy for her son's illness from Mr. Ages.\ntt1302067,mGq0iyW-f7A,\"After capturing a rare turtle that could save the park, Ranger Jones stalls the mayor's Chief of Staff so that Yogi Bear and Boo Boo can fly close enough to get it.\"\ntt1302067,riXp9rJ90Xw,Yogi Bear and Boo Boo attempt to steal a picnic basket.\ntt1302067,c5zKpr5gmgk,\"Boo Boo tracks down Yogi, who is failing at being a normal bear.\"\ntt1302067,8R9KLz7qDIY,Ranger Smith confronts Yogi Bear and Boo Boo after they ruined the festival to save the park from being closed.\ntt1302067,e9cysHm38Kg,Yogi Bear and Boo Boo find Ranger Smith at his new job and convince him to help save Jellystone Park.\ntt1302067,iwAciIQDE4A,Ranger Smith catches Yogi Bear and Boo Boo in the middle of stealing a picnic basket.\ntt1302067,NLDt8Iyh5f4,\"Ranger Smith, Rachel, Yogi Bear and Boo Boo escape from the mayor's guards by going down the river and into some rapids.\"\ntt1302067,oqEm8mihoA4,Yogi Bear shows Boo Boo his new glider which is specifically for stealing picnic baskets.\ntt1302067,H37dm_eRkLU,\"Ranger Smith introduces Yogi Bear and Boo Boo to documentary filmmaker, Rachel Johnson, who wishes to film them.\"\ntt1302067,DvX8DbtVspE,\"After making a promise to avoid people for a few days, Yogi Bear has Boo Boo handcuff him to a tree.\"\ntt0379786,AUBx-geW0Tg,River fights the Reavers while The Operative learns the truth about them.\ntt0379786,tBMAuUeeqdE,\"Mal beats The Operative, but shows him the truth instead of killing him.\"\ntt0379786,2PQw2qw3BDw,Mal explains what keeps him and his ship going through all adversity.\ntt0379786,kgu59EAXbic,\"After watching her brother and friends fall back before the Reavers, River takes matters into her own hands.\"\ntt0379786,BnnCQlp2msk,\"Wash successfully saves Serenity, but at the cost of his own life.\"\ntt0379786,X_VSJfHiNPA,Wash (Alan Tudyk tries to safely pilot Serenity through an intense space battle.\ntt0379786,WERocs57QaE,\"Mal meets The Operative, but Inara helps him escape.\"\ntt0379786,mXLSLzeu-mM,River threatens Mal and his ship.\ntt0379786,hXCaF68sDPU,River sees a strange video which makes her attack everyone in the bar.\ntt0379786,AC9SF7TOyHQ,The Operative kills Dr. Mathias for leaking classified information to River.\ntt1705773,YnsmoUntOzI,\"The military takes a full frontal assault against a Megalodon attack, but it is not enough. McCormick discovers that his fiance Corrine has been killed.\"\ntt1705773,H6FYQzuVMfA,\"The Megalodon swallows an entire submarine, causing it to go nuclear.\"\ntt1705773,jtHIEO1Zdfk,The military attacks the Megalodon and the Crocosaurus as they ravage their way through Miami.\ntt1705773,8s4TDbX1B_s,Putnam and McCormick race across the beach to get to a raft and stop the destruction being caused by the beasts and the military.\ntt1705773,WD2I5Jpe9bk,\"When the Megalodon attacks their ship, Putnam and Jean jump overboard, allowing the Crocosaurus a chance to escape.\"\ntt1705773,KapEcfMelL4,\"When a Crocosaurus destroys their helicopter, Hutchinson is knocked unconscious. McCormick loses control and believes she is his dead fiance.\"\ntt1705773,DMhcIrShxec,\"As they investigate the Crocosaurus, Legatt becomes a quick snack and Dr. Putnam barely makes it out alive.\"\ntt1705773,n0MW9qK_xlY,\"In an attempt to force the Crocosaurus back into the ocean, McCormick devises a plan to execute an arc flash and electrocute it.\"\ntt1705773,MLFzROHNLmM,\"In one final showdown, McCormick and Putnam lure the Megalodon and Crocosaurus to a volcano, which they use as an explosive to defeat them.\"\ntt1705773,yBM4SCBZ7qM,\"The military attempts to trap the Megalodon and Crocosaurus in a dam, but they are too powerful. The beasts engage in an epic battle, completely destroying the country of Panama.\"\ntt0087365,Tsk9gCcchg8,Jane turns down Esker's marriage proposal and Tarzan makes things worse by protecting a friend.\ntt0087365,_AmKz3iZ1K8,D'Arnot teaches Tarzan how to speak English and shave with a razor.\ntt0087365,MCN-beeZSKk,Tarzan returns to his Grandfather's estate in Scotland.\ntt0087365,zOiq-2Jpy-U,Tarzan sneaks into Jane's room and romances her.\ntt0087365,NiVB-n5b0hE,Tarzan returns to the jungle to live out his days in his true home.\ntt0087365,JgPlgAnASbY,D'Arnot teaches Tarzan his real name and that he has a family far away.\ntt0087365,EkE_bNKYqCM,\"Tarzan shows off his lack of manners and then his perfect mimicry at dinner with his grandfather, the Earl of Greystoke.\"\ntt3181822,TPgdAesH76E,\"As Noah rushes back home to stop her, Claire makes an alarming discovery about what he has been hiding in his basement.\"\ntt3181822,wvVrDGmqHjI,\"When the school bully won't leave Kevin alone, Noah comes to his rescue in an extreme way, leaving Vice Principal Vicky helpless to stop it.\"\ntt3181822,BvXUga4d3Zc,\"Noah's plan to build a happy life with Claire goes terribly awry, leading to his violent demise.\"\ntt3181822,y9ZcKltnEx8,Claire desperately tries to clean up photographs of herself having sex that have been plastered all over her classroom.\ntt3181822,V5DgQr_g6SY,Claire awakes with instant regrets after a passionate night with Noah.\ntt3181822,3QyEUXjHzOc,\"Noah seduces high school teacher Claire, and the two spend a passionate night together under the covers.\"\ntt3181822,lIVO6oEk4Hk,Noah threatens Claire after he feels the deal they made with each other has been broken.\ntt3181822,uaLxw2PDnmk,\"Lured by Noah, Claire heads to Vicky's house, only to discover that she has been mutilated.\"\ntt3181822,kKC8076NZOY,\"Noah provokes Kevin about his parents' relationship, causing him to almost die from an asthma attack.\"\ntt3181822,asNSRS-UbHM,Noah causes a scene in the school bathroom to lure Claire into his arms.\ntt4566574,yKloyDDxo7g,Dane announces to the world his plans to use Kolossus and Mega Shark to create a new world order focused on environmental cleanliness.\ntt4566574,b0VU3j1hp70,Spencer and Agent King find and interview Dr. Abramov hoping to discover a way to stop Kolossus forever.\ntt4566574,xDC6IlQdTLs,Kolossus and Mega Shark battle to the death!\ntt4566574,mcp6KbG_5rg,Agent King and the others distract Mega Shark with a Kolossus fight so they can search an underwater lab for what they need to destroy Kolossus.\ntt4566574,rpWuKoDm_9o,\"Mega Shark turns Dr. Bullock's against him, tossing the whale's explosive-filled corpse aboard the ship upon detonation.\"\ntt4566574,npWeWCC06fU,\"When Dane loses control of Kolossus and Mega Shark, Kolossus kills Dane and destroys his ship.\"\ntt4566574,T2jMiMTHY80,Dr. Gray leads Mega Shark to an inlet and with the help of Lt. Parker and Agent King they are able to trap Mega Shark and save Dr. Gray.\ntt4566574,G_v8xjmxtLY,\"Agent King grabs the remote they need to control Kolossus, but celebrations turn sour when Dane reveals he is a traitor.\"\ntt4566574,LxnWduj4P-g,Agent King's plane gets caught in the crossfire when Dane and his team seek out the Mega Shark just as Admiral Jackson and his crew try to kill it.\ntt4566574,53vQBW_4hzw,CIA Agent King's mission goes awry when Benedict turns out to be a traitor and Kolossus escapes and roams free.\ntt0975645,0_hajel24IE,\"At the premiere of Psycho, Hitchcock watches from behind closed doors and dances to the dulcet tones of fright.\"\ntt0975645,2AHF50fxTNw,\"Hitchcock and Alma meet with Janet, which sparks enmity between Alma and Hitchcock.\"\ntt0975645,3iZ1TVOskhA,\"Hitchcock works with his wife, Alma on the final edit of Psycho.\"\ntt0086856,OwQCAyUyuSs,Buckaroo and John Parker fly an 8th dimensional spaceship and defeat Lizardo.\ntt0086856,8jK3RW6rSCM,Buckaroo and his team tests a rocket propelled Ford in attempt to break past Mach 1 and into another dimension.\ntt0086856,g95ZXrh2oK4,The commendable Buckaroo reaches out to a suicidal Peggy or Penny in the middle of his band's set.\ntt0086856,ah6TYuJ1iQg,\"Having saved the planet yet again, Buckaroo and the crew check out in style, awaiting their inevitable next adventure.\"\ntt0086856,2H2c3F_rzqw,\"Buckaroo and the gang meet up with Sydney, an old colleague of Buck's from his medical school days.\"\ntt0086856,1w_JdfgygYY,\"On the phone with Buckaroo, Dr. Lizardo demands a working overthruster in exchange for sparing Penny.\"\ntt0086856,f6hhVIV_LPs,\"Before launching an attack, the president reviews the necessary paperwork.\"\ntt0086856,VQSA2-NbbL8,Two duck hunters discover a massive space pod.\ntt0086856,GjA92f_iCHQ,\"When his experiment goes awry, Dr. Lizardo is possessed by reptilian aliens.\"\ntt0086856,mh7fUlkkX68,\"Buckaroo and his team receive a clear ultimatum: Stop Lord Whorfin, or watch the earth be destroyed.\"\ntt0086856,1egkqpDOn2A,Buckaroo warns the president of the Red Lectroid threat.\ntt1951266,QyOM1rQ7iT8,\"When Johanna visits Katniss in the hospital, she taunts and mocks her about her role in the rebellion.\"\ntt1951266,cZKYcRqPh-o,Katniss and President Snow discuss how they were deceived by President Coin.\ntt1951266,-CXBIAH4Kgo,\"When Katniss is held hostage by a refugee, she speaks out against President Snow, causing her to be shot.\"\ntt1951266,SBq1FLgZJug,\"When Katniss blames herself for the deaths of all her friends, Peeta explains what their deaths truly meant.\"\ntt1951266,ZGM5Y16SSb8,\"Years after the war, Katniss relaxes in a field with Peeta and their children. She explains to her baby how she managed to survive after all she went through.\"\ntt1951266,xCQ3ZdnptUM,Katniss makes a shocking decision at President Snow's execution.\ntt1951266,tvj61hwINaE,\"When Finnick is overcome by the Mutts, Katniss is forced to let him go. Then, she and the other victors race through a series of deadly traps.\"\ntt1951266,H6bQXth1CEs,\"The Capital plays a horrible trick and drops a load of bombs on a group of innocent children, leading Katniss to lose the one person she holds most dear.\"\ntt1951266,y03_LmnDaTY,Katniss and the other victors are ambushed a swarm of hideous creatures called Mutts.\ntt1951266,OF22NIhPKgE,\"When Leeg 2 accidentally activates a booby trap, a flood of horrible black ooze rushes after the victors, killing some and forcing them on the run.\"\ntt2908446,uEV9jxF2tOo,\"Peter betrays his friends and exposes them to Eric, forcing them on the run and causing chaos at the Amity compound.\"\ntt2908446,wyMDViXXXXU,\"When a fight breaks out with the Factionless onboard a train, Tris is nearly killed, only to be rescued by Four at the last second.\"\ntt2908446,ns9WcZlqv_I,\"Under the influence of a truth serum from Candor, Tris admits her hand in the deaths of her parents and Will.\"\ntt2908446,ADXqDq5zCTg,\"Thanks to help from Peter, Four and Tris are reunited.\"\ntt2908446,ST7mR3xLdys,\"In an effort to get to Tris, Jeanine uses mind control devices to force her friends to walk over a ledge to their death.\"\ntt2908446,n-5bVE4K2Ls,Four comforts Tris and they share a romantic moment.\ntt2908446,2RYNIbNVFhg,\"Tris undergoes a rigorous simulation designed to test her for dauntlessness, in which she is tricked into believing her mother is in grave peril.\"\ntt2908446,hqJxDiGXTWc,\"After passing all five personality tests, Tris finally opens the box and reveals the hopeful message inside.\"\ntt2908446,irhRobBI3BE,\"During a simulation, Tris is tormented by Jeanine, causing her to lose her temper and fail the Amity test.\"\ntt2908446,KQa_SiTfU34,\"Tris takes on her biggest demon, herself, so she may pass the Amity test and open the message in the box.\"\ntt2872750,w-A750XbFAo,Shaun and his friends dress like humans in order to evade aggressive animal control officer Trumper.\ntt2872750,7tUYeqOLuYU,\"In order to check on The Farmer, Bitzer disguises himself as a doctor and sneaks his way into the hospital.\"\ntt2872750,TPiRiwKEz28,\"Bitzer tries to catch the farmer's runaway trailer, but it's moving too quickly and headed straight for the busy city.\"\ntt2872750,2SiwZWhmbS0,\"Regardless of Trumper's dangerous pursuit, The Farmer is finally returned home with the help of his animal friends.\"\ntt2872750,ulLxPcOmDmU,Shaun and his friends trick their farmer into sleeping so they can have a day off watching movies in the farmhouse.\ntt0470752,v3JlEi3CbGI,Nathan tells Caleb about his project.\ntt0470752,0Gq5R5ffrtE,\"Ava finds freedom, leaving Caleb trapped inside the compound.\"\ntt0470752,jGAsihLnYqM,Ava warns Caleb about Nathan.\ntt0470752,mAtmopQxu0o,Caleb meets Ava for the first time.\ntt0470752,lOgPGO4JnaA,Caleb and Ava talk about the power cuts.\ntt0470752,8cQVspzP0Ms,Ava shows Caleb how she would like to look on their date.\ntt0470752,b7C69HqnV8s,Nathan avoids Caleb's question about Ava by dancing with Kyoko.\ntt0470752,Kbsi0KOunj8,Nathan reveals his true plan for Caleb.\ntt0470752,LxXrccK4S3I,Ava and Kyoko get revenge on their creator.\ntt0470752,ruOXWHbyfjo,\"Nathan shows Caleb his laboratory, and explains how he created Ava.\"\ntt2872750,oAheN_ARn1U,The Farmer defeats Trumper after finally getting his memory back.\ntt2872750,74BF0nnqO5o,\"Trumper discovers Shaun and his friends inside their trojan horse, disrupting their rescue mission.\"\ntt2872750,WazcuKEk2to,Shaun and his friends sing a song to help the baby get to sleep and the Farmer hears it and recognizes the tune.\ntt2872750,dKPw9-jpA3Y,\"Shaun meets his fellow prisoners in the animal shelter, including a disappointed Bitzer.\"\ntt2872750,bzGDMtX1IU0,Chaos ensues when Shaun is revealed and ultimately captured by Trumper.\ntt1356864,hW_NzisexqU,Joaquin Phoenix muses about the fraudulent life he's been living and desires to be more truly himself.\ntt1356864,4GCBqzsWF_M,Joaquin Phoenix performs his new hip-hop song and then gets into a fight with a heckler.\ntt1356864,oLQ5NOAIAw0,\"Joaquin Phoenix meets with Ben Stiller about a part in his new movie, but he has no interest in acting anymore.\"\ntt1356864,MvFkGlAqYYc,Joaquin Phoenix joins other celebrities at rehearsal for a performance that will honor the late Paul Newman.\ntt1356864,XzSBAvxA5GE,Edward James Olmos drops by to give Joaquin Phoenix some cryptic advice about drops of water and evaporation.\ntt1356864,2v0aoYD6OOM,\"Looking for a fun night, Joaquin Phoenix calls an escort service.\"\ntt1356864,5Q1f6Oij1NQ,Joaquin Phoenix meets up with Sean 'P. Diddy' Combs to discuss the actor-turned-rapper's music.\ntt1356864,H177TSRFiTo,\"After one of his first live performances in Venice, CA, Joaquin Phoenix reflects upon the unexpected reaction of the audience.\"\ntt1356864,-xCS0zZPAoA,\"After his bizarre appearance on the Late Show With David Letterman, Joaquin Phoenix breaks down and begins to regret his career change.\"\ntt1356864,mCbY7cAv7r8,\"After being verbally attacked by Joaquin Phoenix, Anton wants revenge and shows Joaquin a \"\"bit\"\" of his own.\"\ntt1356864,9Dd423YO56c,Joaquin Phoenix notices the changes that have occurred in his life and shares a fun moment with his friend Larry McHale.\ntt1356864,n-omBTsCIDE,Joaquin Phoenix meets with Sean 'P. Diddy' Combs to discuss the reality of his latest career move.\ntt1116184,TyXD96iAjuM,Johnny Knoxville pushes the plunger on an explosive pinata.\ntt1116184,Y4HSQKUAPKM,Steve-O answers the age-old question of what happens when you bungie jump in a port-a-potty.\ntt1116184,33NlZaZVCgw,Wee Man gets into a little fight at the bar.\ntt1116184,pIyrp5Aj7LY,\"Will the Farter pays the Jackass crew a visit to show his many, many talents.\"\ntt1116184,09m9ltjwuJU,Steve-O and Dave England have a not-so-great time with a beehive tetherball.\ntt1116184,lEFx1qmW4ts,Ryan Dunn reenacts the iconic Maxell cassette tape commercial from the 80s.\ntt1116184,t4M3hbVh3U4,Johnny Knoxville and his friends go hunting for some human ducks.\ntt1116184,nXjnagPujjE,Steve-O and Ryan Dunn attempt to calm a territorial ram with music.\ntt1116184,rMS4ESFlfDk,\"Johnny Knoxville pranks his friends with a giant, swinging hand.\"\ntt1116184,293PMWaznLM,Welcome to Jackass 3D. We hope you survive your experience.\ntt2626350,XX2EpE8SLK4,\"During their final performance, Sean and Andie share a passionate kiss.\"\ntt2626350,uJnIaD7gDlQ,LNMTRIX and The Mob go head to head in an elmination round.\ntt2626350,ma7zprvD7UA,\"LMNTRIX, The Mob and The Grim Knights compete in the first round of the dance competition, The Vortex.\"\ntt2626350,-WrDbBvPN00,\"While walking around, Sean and Andie find an old school carnival ride.\"\ntt2626350,NXH48hZ6798,\"The crew performs \"\"High Voltage\"\" as their audition video to The Vortex dance competition.\"\ntt2626350,bX-o8WaWp2Q,Moose introduces Sean to Andie.\ntt2626350,mn6Wmceebfc,\"Chad wants to join the crew, but they don't think he has the proper moves. He surprises them all.\"\ntt2626350,AZtman1rdUw,Jasper taunts Sean into a dance off in the club.\ntt2626350,J8JhG2j8E_w,LMNTRIX performs their final routine for the last round of the competition.\ntt2626350,RUox4o5J5x4,Alexa announces The Grim Knights in the final round against LMNTRIX.\ntt0107983,h5RMM02YE3U,\"Jack hallucinates first Mona, and then Natalie, walking into his diner.\"\ntt0107983,mZzkE03B64o,Jack gets some vengeance on Mona by killing her in the courthouse atrium.\ntt0107983,kYA44FTePNQ,Jack falls for Mona's seduction one last time.\ntt0107983,CZRn7cU3UsU,Jack shoots Mona on the docks after she tries to strangle him.\ntt0107983,utFeHmJ1iUw,Mona attacks Jack in the car by wrapping her legs around his neck.\ntt0107983,GiykTnvV8Mo,Mona has a risky proposition for Jack.\ntt0107983,OE5CnBYFkZA,Falcone takes one of Jack's toes.\ntt0107983,EvWX1drAfhg,Don Falcone gives Jack a philosophical lesson in pacifism before threatening him.\ntt0107983,z7_AwjQz_AY,Jack recounts a terrible dream set in an amusement park with Natalie and Mona.\ntt0107983,t_BSGcc9XkY,Natalie points a gun at Jack in a dinner game.\ntt0107983,W1GrNDtRkgE,Mona seduces Jack in the motel room before federal agents arrive.\ntt0107983,PLPb1pB0vJg,Jack meets Mona for the first time and takes her to the safe house.\ntt1229340,P4JGOWnX9VU,The fierce battle of the news teams commences while Walter's recital takes place across town.\ntt1229340,-zAp8NOpVKU,Jack Lime and his news teams prepare to do battle against Ron Burgundy when other news join the rumble.\ntt1229340,ZLJX6CEkgto,Ron makes an ass of himself with racial and sexual comments at dinner with Linda's family.\ntt1229340,65N3OBBrImc,\"Ron has a run-in with the god of news anchors, Jack Lime.\"\ntt1229340,ZdkOLsRkjBU,\"Brick defends his newfound love, Chani to her insulting boss.\"\ntt1229340,VHz5xaHrCCU,\"Brick meets the attractive and quirky Chani, his potential soulmate.\"\ntt1229340,GKNv1vjCnQI,Brick freaks out when he can't see his legs during the weather report.\ntt1229340,MMigS6B4t3Q,Mack Tannen has a creepy exchange with Veronica and then fires Ron for his many failures as an anchorman.\ntt1229340,lwkdeQQiCms,\"Ron meets Linda Jackson his new boss, but he can't get over her skin color.\"\ntt1229340,IfY49zx7RU0,The news team reminisces about old times until they realize that no one is driving the RV.\ntt1229238,PhbkMQ89QPM,Ethan and his team go to great lengths to stop the nuclear missle from blowing up San Francisco.\ntt1229238,zh5VtQ-x4QI,Ethan tries to recover the briefcase before Hendricks and so he can stop a nuclear missle.\ntt1229238,Bi75jrN5yDk,\"As Jane gets the code from Nath, Brandt tries to escape the server room.\"\ntt1229238,J4me49IF70k,Ethan chases Wistrom though a sandstorm in Dubai to recover the nuclear codes.\ntt1229238,2nZBPdh9_Jc,\"While Ethan tries to catch Wistrom, Jane deals with Moreau.\"\ntt1229238,Ep85AkCkk-U,Ethan finds the quickest way to get back down to the the hotel room.\ntt1229238,cYGVkLGyGqE,Ethan tries to escape the Kremlin before he can be captured.\ntt1229238,wr4rZEPQ09Y,Ethan climbs the Burj Khalifa Tower to break into the server room.\ntt1229238,p-5nqrOtaug,Benji helps Ethan escape the Russian prison.\ntt1229238,7DkV8WE7DFA,Ethan and Benji deceive a Kremlin guard to sneak into the archive room.\ntt1583421,HcuptmqW_kA,Lady Jaye and General Colton rescue the President.\ntt1583421,P0A0LnjsGSA,Roadblock must go through Firefly to stop the Zeus missles from demolishing the Earth.\ntt1583421,LgMEyrPhq3k,\"Storm Shadow, Snake Eyes and the rest of the Joes try to stop Cobra Commander from launching all of the Zeus missles.\"\ntt1583421,zDdHlO3v8Kg,\"Just as Roadblock is about to take out the imposter President, he's attacked by Firefly.\"\ntt1583421,zVzeXqLbqug,Snake Eyes and Jinx try to keep Storm Shadow's body away from the Cobra ninjas.\ntt1583421,22bHxTTLcdc,Zartan and Cobra Commander show the power of Project Zeus by destroying London.\ntt1583421,82wvQMuzbow,Duke and the rest of the G.I. Joes are slaughtered by a miltary air strike.\ntt1583421,ZMROlNs8iWw,Snake Eyes and Storm Shadow face off at the Cobra temple in the Himalayas.\ntt1583421,Nr6NPOkDbpU,Storm Shadow frees Cobra Commander from the maximum-sercurity prison.\ntt1583421,nn1qvGiHvLc,Duke leads his team of G.I. Joes through the warehouse to secure the nuclear missle.\ntt0493430,3gLU99wxUyA,Johnny Knoxville dresses up with an old man with a set of very low-dangling balls.\ntt0493430,zaYgv8likRs,\"Ehren McGhehey thought he was pranking Jay Chandrasekhar posing as a cab driver, little realizing that he's the butt of the joke.\"\ntt0493430,UwPJMQwo2xw,How to spice up your teeter-totter experience: add a bull.\ntt0493430,Mb1kLqoiDuA,Here's an example of why never to stand in front of riot control devices.\ntt0493430,8MoQTjNnlmA,Johnny Knoxville and Bam Margera surprise their friends with a swam of bees.\ntt0493430,FPnF0-VdHNk,Bam Margera gets a painful present from his good buddy Ryan Dunn.\ntt0493430,4nSA_B8pC_s,Johnny Knoxville and the crew wishes the audience a fond fairwell.\ntt0493430,7wSQMwlqy0s,The Jackass crew takes part in a running of the bulls.\ntt2333784,ooXE33T2Dls,Barney tries to make it onto the helicopter before the building collapses.\ntt2333784,4VKym1WU9go,Barney faces off against Stonebanks in a showdown that has been long since overdue.\ntt2333784,bDAdgXd7Znk,\"With Stonebanks's reinforcements coming in, the Expendables make their way to the roof.\"\ntt2333784,2hqwpvVHly4,Drummer brings some much needed support to the Expendables.\ntt2333784,u54-0h7QZN8,\"Christmas takes on big Krug, while the rest of the Expendables fight Stonebanks's army.\"\ntt2333784,IpW3LbAEypo,Stonebanks tells Barney's new recruits the origin of the Expendables.\ntt2333784,6kk46qE9oWk,Barney and his new recruits capture Stonebanks at the art museum.\ntt2333784,QhVvJyCaQS0,Barney's old group of Expendables get into an altercation with the new crew.\ntt2333784,E-g_up1kWt0,Barney and Bonaparte get tricked by the rambunctious Galgo.\ntt2333784,9b1Ii-U2lao,The Expendables flee the docks to retreat from Stonebanks and his henchmen.\ntt2333784,kuAwUNzVX2I,\"Barney and the Expendables run into an old nemesis, Stonebanks.\"\ntt2333784,2CxV_NKhsgY,\"The Expendables break Doc out of captivity, but not before Doc gets his revenge.\"\ntt0286788,MPu6DXTG2ps,Daphne dances with Armistead but it is Ian on stage who makes her swoon.\ntt0286788,wVAL10Zb9Q4,Daphne shares a few words with Clarissa after being told to leave.\ntt0286788,DQaHIFC9034,\"Late at night in the kitchen, Daphne and Henry bond over chocolate cereal.\"\ntt0286788,y6i9UH65q2g,\"Henry Dashwood learns that he has a teenage daughter, from America.\"\ntt0286788,0D5EL4HLd3g,Daphne gives Armistead a dunk in the river.k\ntt0286788,KprKHSAAn7U,Henry Dashwood informs the press that he is bowing out of the political race.\ntt0286788,vVPtQKHiWwM,Daphne asks Ian to help teach her to become a proper lady.\ntt0286788,8-9wlwVvR1M,Henry meets Ian before he takes Daphne out on his motorcycle.\ntt0286788,2YbvpD3WQnk,Daphne argues with her mom Libby about deciding to go find her Dad in Britain.\ntt0120800,Tw_kFAuhkbI,Kayley sings about her father and her dreams for the future.\ntt0120800,1V53lOLjgiw,Ruber sings about his evil plan to take over Arthur's kingdom.\ntt0120800,f57Vat6YZUI,Garrett sings about why he lives as a hermit in the woods.\ntt0120800,CEvHsuyVfRo,Garrett and Kayley meet a friendly two-headed dragon and then are chased by very mean dragons.\ntt0120800,RR5kEQ9LgvU,Garrett and Kayley sing about their love for each other.\ntt0120800,_lpIHzRR1xY,Kayley and Garrett try to retrieve Excalibur from the giant ogre.\ntt0120800,GUWxHgIn91w,Kayley and Garrett work together to defeat Ruber.\ntt0120800,UfHqN7KPZ5s,\"Garrett, Devon and Cornwall join Kayley in the fight against Ruber and his minions.\"\ntt1571249,Hda6MwCdwI8,\"Maggie attempts to drown herself, but Milo comes to save her just in time.\"\ntt1571249,V7gceiThJ6U,Milo goes over to Rich's house to get some answers about their past relationship.\ntt1571249,RKt17dM8eFk,Maggie tells Lance about her affairs and then confronts Milo for leading Lance to the truth.\ntt1571249,QEQp25xImoA,Maggie confronts Milo about resuming a relationship that he had with his English teacher in high school.\ntt1571249,yP9sbfNwtv0,Milo and Maggie go out for Halloween.\ntt1571249,0npouzhhZTo,\"Milo lip synchs \"\"Nothing's Gonna Stop Us Now\"\" by Starship to cheer Maggie up.\"\ntt1571249,UZnEqDr9PKE,Maggie tells Milo about being on birth control and her affairs.\ntt1571249,5X_mnh-S0pU,Maggie and Milo have some fun while she cleans his teeth.\ntt1571249,TNVwN7IfVAw,Maggie invites her depressed brother Milo to live with her in New York.\ntt1571249,Sl1G9Jxc9hI,Maggie gets angry at Judy for being an absentee mother.\ntt3899796,lntqgt5jbjg,\"When Claudia shows Billy how to take on a Sharknado, the two share a romantic moment\"\ntt3899796,VV55v_IKVJI,\"When their spaceship is unable to take off, Fin and his family call for back up from Nova.\"\ntt3899796,lh3WF7shhlM,\"As Fin fights off a hoard of space sharks with a laser chainsaw, April goes into labor and is then devoured.\"\ntt3899796,J6i7WPT1cFk,April emerges from the inside of a shark to present Fin with his newborn son.\ntt3899796,9Ipb0xcxdqk,\"When a mysterious masked hero rescues him from the strong winds of a Sharknado, Fin discovers that it is Nova.\"\ntt3899796,hSe-_6hmDgI,\"A storm of sharks bring bloody terror to Universal Theme Park as April, Nova, Fin and Claudia all try to surive.\"\ntt3899796,eKrrYByQTQI,\"Sharks bite off all of Lucas' limbs, leaving him with nothing but his chin to detonate a bomb and clear the way for Fin and Nova.\"\ntt3899796,mvFQciz5wRc,Fin and Nova save the day as sharks rain from the sky upon a Nascar race.\ntt3899796,zu9vz_Krzb0,Fin and the President take on a hoard of sharks that are descending upon the White House.\ntt3899796,wBFzZM9YqEo,\"As Fin and April search for their daughter, Fin gets trapped on a rollercoaster full of sharks.\"\ntt1680138,BBXUqYlAK6o,\"As Nikki and Terry continue their fight in the water, alligators and snakes terrorize the party, causing all out mayhem.\"\ntt1680138,nftQNmMRqG8,Tom and Zeke attempt to blow up a python with some dynamite.\ntt1680138,Z6rYB0AOMjA,RJ and Ray discover a huge batch of python eggs.\ntt1680138,_UhMIImQ-Bo,Justin and Billy come across much bigger game than they expected while hunting.\ntt1680138,ejRc7XEbAQI,Justin is completely consumed by a swarm of snakes before Terry is able to rescue him.\ntt1680138,m6U7qRsCp6M,\"Giant snakes and gators run rampant, causing destruction throughout the city.\"\ntt1680138,-zEXV5oiWgc,\"When Terry discovers that Nikki has crashed her party, they get in a food-filled cat fight.\"\ntt1680138,3I44VJIIzKM,\"When Nikki is cornered by a massive alligator, Terry uses her car as a bomb to defeat it and rescue her.\"\ntt1680138,eG4B_DIenu8,\"After celebrating that she has survived falling from a helicopter, Nikki is devoured by a gigantic snake.\"\ntt1680138,dP9mVoZ-cmQ,\"Diego arrives for a daring rescue, but the mutated gators won't let Terry and Nikki escape that easily.\"\ntt3063516,0DnThxPfhJE,Irving gets the help of two unsuspecting movers to help him put his wife's corpse in his trunk.\ntt3063516,smUy5NzszX0,\"Desperate to find some satisfaction, Irving gets himself stuck inside a soda machine.\"\ntt3063516,DoqPEhVHdBM,Billy does a special dance for his final performance of the beauty pageant.\ntt3063516,bQXJoR6tLao,\"After Irving reluctantly agrees to take Billy to his father, a fight with his daughter leads to his wife's body falling out of the casket.\"\ntt3063516,1fVPS7eLbME,Grandpa has an accident while at breakfast with Billy.\ntt3063516,FqYJIUS39Ck,Irving gets more than he bargained for when he tries to sell his wife's old bed.\ntt3063516,IV0hoLATbJY,Irving tries to ship little Billy to his father in North Carolina.\ntt3063516,TaJeShUtQjc,Irving gives all the ladies at the strip club a show of his own.\ntt3063516,IbkWZDej_v8,Billy and Grandpa have a bunch of fun on their last day together.\ntt3063516,vQSkLuEOdMM,\"Grandpa tries to fix a coin operated ride for Billy, but instead gets sent through the store window.\"\ntt1450321,qgbSfZMR99w,Bruce tries to get a closeted detective to out himself with some bathroom graffiti.\ntt1450321,aPkfoqjZXog,Bruce misses his wife and so calls his friend's wife Bunty for some intense phone sex.\ntt1450321,BH3ApQHJslA,Running into the wife whose husband died makes Bruce descend into painful memories and drug-induced hallucinations.\ntt1450321,e37vIq1VL0I,Amanda tells Bruce what she really thinks of him.\ntt1450321,z6FcMyuo0R4,Bruce comes face to face with a killer who is not afraid of wasting a cop.\ntt1450321,d5CmbbyeDco,Bruce uses his power to gain sexual favors and threaten people for information.\ntt1450321,jQPKeltJ-Vk,\"Bruce is disappointed when Amanda takes over his investigation, but is surprised by a visit from the woman who he tried to help.\"\ntt1450321,IMYTK5IyZ9E,Bladesey watches a video where Bruce says goodbye.\ntt1450321,LrIJa8zJs_0,\"Bruce hallucinates of Dr. Rossi, who accuses him of killing his younger brother.\"\ntt1450321,RsSl85y9JN4,Bruce harasses a flower shop worker until she gives him information on a murder suspect.\ntt1587807,iRLGo522K5A,\"Fitch tries to charge the battery to his phone by sucking on it so that he can call in military assistance, all the while being chased by Ayudante and his soldiers.\"\ntt1587807,YK7cNXMRifo,\"Fitch tricks a giant piranha into eating a helicopter manned by Diaz, killing him and allowing an opportunity to eliminate the angry fish once and for all.\"\ntt1587807,gCnWKrvrCNw,A vicious school of piranhas attack Fitch as he scuba dives and follows him onto land as he tries to escape.\ntt1587807,xiVeUn1rF3E,\"An angry school of piranhas spontaneously attacks a group of party-goers and politicians, eating them alive and disintegrating their boat.\"\ntt1587807,bJXBNZ7FU40,Fitch rescues an injured woman by bicycle kicking a swarm of attacking piranhas.\ntt1587807,XSTakNMoF2s,\"Fitch steals one of Diaz's helicopters in an effort to defeat him, leading to an explosive battle in the air.\"\ntt1587807,iUi2XKRnJD0,Monroe and Fitch watch helplessly as a school of angry piranhas devour an entire warship.\ntt1587807,fn1dNeTNduk,\"When an enemy soldier falls into the river and is attacked by piranhas, Higgins tries desperately to rescue him, but Gordon knows it is too late.\"\ntt1587807,pShuaMA2rY4,\"As Fitch, Sarah and the scientists try to escape, massive piranhas begin throwing themselves out of the water and causing explosions.\"\ntt1587807,YjF4rd3J58U,\"Grady orders a submarine attack on a school of ravaging piranhas, but even an explosive missile is not enough to take them down.\"\ntt0110989,VazRhsh6uys,\"Richie Rich tries to play baseball with Tony, Omar, Pee Wee, and Gloria Pazinski at the sandlot.\"\ntt0110989,kFFuJQRlm38,\"Richie Rich tells Lawrence Van Dough that, until his parents are found, he will run the company himself.\"\ntt0110989,-ZlL0LLfjKY,Richie Rich attends a posh business school where they learn the ins and outs of making money.\ntt0110989,ROzcf7QoDjU,\"Cadbury gets into a fight with a prisoner, but escapes through the window.\"\ntt0110989,bhYOGuozHd4,Ferguson forces Richie and his friends into a cage which will scramble their molecules if Professor Keenbean can't find a way to stop him.\ntt0110989,uQlKjRScXww,\"Regina Rich shows Richard Rich the new family portrait, Mount Richmore, while Richie Rich tries to tell his dad about his recent baseball game.\"\ntt0110989,myOTp1wr3Bg,Professor Keenbean shows Richie Rich the newest inventions he's working on in the lab.\ntt2637276,yb5FDpFLc1M,\"Ted begs to drive the car, but then crashes into a barn.\"\ntt2637276,8YDVV75itA0,\"Sam throws a cookie in a rude guy's butt crack, but then learns that he is blind.\"\ntt2637276,P0JUY_IEZts,Sam tries to get help from a powerful lawyer while Ted and John fight over a beer.\ntt2637276,f0wEV9jySXg,Sam shows to the court that Ted has a soul and is capable of love.\ntt2637276,us_GLuu2SAc,\"John, Ted and Sam prepare for Ted's trial in an 80's inspired montage.\"\ntt2637276,z6ViDZpVoYc,A paranoid Liam Neeson asks Ted if Trix cereal is exclusively for kids.\ntt2637276,ER6BpmtBLkk,Ted and John have a mishap in the storage room of the sperm bank.\ntt2637276,jot1h4tgY6M,Ted and John sing the Law & Order theme song and then Ted discovers a rather disturbing porn stash.\ntt2637276,83xaGtnlvR0,John and Ted infiltrate quarterback Tom Brady's bedroom to steal some of his sperm.\ntt2637276,3TWv-3cC9NM,\"Ted meets his pot-loving new lawyer, Sam L. Jackson.\"\ntt0104040,LMGAxyUnURI,\"After a night of celebrating, a very inebriated Kate makes an awkward pass at Doug.\"\ntt0104040,Equ4D2mZDHc,\"With the pressure of the Olympics mounting and her friends and family at each others' throats, Kate confesses to her past failures.\"\ntt0104040,XcMH5ntEWGQ,\"With the competition at the Olympics at an all-time high, Coach Pamchenko convinces Doug and Kate to practice an intense and possibly illegal figure skating move.\"\ntt0104040,m946LkLieG8,\"A hungover Kate stumbles upon Doug during a \"\"morning after\"\" moment with their female competitor.\"\ntt0104040,TrRogqsarno,\"After Kate sees Doug with another woman, she goes into a fit about her missing \"\"lucky\"\" earring. Her fianc soon realizes that her antagonism has nothing to do with the earring and everything to do with Doug.\"\ntt0104040,YmbXanCiB-U,\"Kate agrees to perform the controversial \"\"Pamchenko move\"\" in-competition because she loves Doug.\"\ntt0104040,Zm0f0oFUxVA,\"During their first practice together, Doug learns the hard way what a \"\"Toe Pick\"\" is from Kate, but he gets his revenge.\"\ntt0104040,PwSihgp_iTE,It's a match made in hell when Kate meets a potential new partner in Doug for the first time.\ntt0104040,hl31RQCC_Bc,Kate panics when she discovers Doug's pre-competiton jitters as he vomits moments before they go on.\ntt0104040,5sr-kuYhYGU,Sparks fly between Kate and Doug as the New Year rings in with a bang.\ntt2109248,dOzGnmkbahw,\"Optimus, Hound and Bumblebee attack KSI headquarters.\"\ntt2109248,Y9isIphHz2w,Optimus Prime reunites with all the remaining Autobots.\ntt2109248,9C_429woeJ0,\"While Optimus battles Lockdown, Cade is confronted by Attinger.\"\ntt2109248,qzZegCkbJAw,\"Optimus releases the Dinobots, and asks them to join him in the fight against the Decepticons.\"\ntt2109248,WHu2355LLQc,Cade and his family teams up with the Autobots to fight Lockdown.\ntt2109248,8koQ3N3w7aw,Optimus and the Dinobots arrive just in time to save the remaining Autobots.\ntt2109248,yDd3xayehVg,Cade and his family try to escape from Savoy and Lockdown.\ntt2109248,cxRYIDsZzuE,Optimus finds himself outnumbered when Lockdown joins the fight.\ntt2109248,4rzrz48Fa_o,Savoy goes to extreme lengths to get Optimus's location from Cade.\ntt2109248,Vcxvmi26Kfw,Cade fights Savoy in a Hong Kong apartment complex.\ntt1399103,FYm6LTv7PKk,Optimus has a final battle with Megatron and Sentinel Prime.\ntt1399103,RonS_bJ7mcU,Sentinel Prime makes a daring escape from Cybertron on the Ark.\ntt1399103,5qzsQMiYINo,Sam watches in horror as the Decepticons execute their autobot prisoners.\ntt1399103,RzngZOLn-bk,Lennox and Epps set up a brilliant attack against Shockwave's team of Decepticons.\ntt1399103,mLk_txo4sYc,Three Decepticons attempt to assassinate Sam and his Autobot escort.\ntt1399103,oUleBi3j0o8,\"Hunted by Shockwave in a collapsing skyscraper, Sam and company desperately fight for survival.\"\ntt1399103,0vtLA9LFkSs,Sam uses all the tools at his disposal when Starscream attacks.\ntt1399103,btwtChuzeaA,\"While Optimus battles Sentinel Prime for betraying the autobots, Sam confronts Dylan.\"\ntt1399103,a_UjNi8M_bw,\"Faced with overwhelming Decepticon forces, Optimus flies in to kick some butt.\"\ntt1399103,CDbpKJDcbQ8,Lennox investigates a Chernobyl refinery when Shockwave attacks.\ntt1055369,Oneax2fARKs,\"Scalpel aka \"\"The Doctor\"\" gets to work on Sam to learn his secrets.\"\ntt1055369,svXObgE9fXc,A joint task force of U.S. Marines and Autobots take down Decepticons.\ntt1055369,j8Sb4-hMhCg,Optimus lays down his life to save Sam from Megatron's forces.\ntt1055369,2V_LmUEtPMs,\"Alice seduces Sam, but there's more to her than meets the eye.\"\ntt1055369,YejpJgtQtuU,\"When Sam discovers a shard of the Allspark in his room, he triggers the menace of the appliancebots.\"\ntt1055369,fjAnmRjjY3E,Major Lennox tries to keep Sam and Mikaela alive as they cross the battlefield.\ntt1055369,C73kXYUTC14,\"With Ramage and Ravage holding Sam's parents hostage, Bumblebee leaps into action.\"\ntt1055369,UzPRCUNCoIA,The hapless Mudflap and Skids protect the even more hapless Leo and Simmons from Devastator.\ntt1055369,0pbdha7w0V0,Ravage infiltrates a NEST military base containing a shard of the Allspark.\ntt1055369,cneoNgk9dhM,\"Using Jetfire's Upgrades, Optimus faces off against The Fallen, Megatron, and their Decepticons.\"\ntt1792794,rWLEdpLkmrc,\"Odin and Loki square off in an intense sword battle, which leads to devestating consequences for Baldir.\"\ntt1792794,yjuTLT5OWko,\"When Thor takes a beating from Loki, Jarnsaxa arrives to offer an unexpected rescue.\"\ntt1792794,kBI3jfVTQ04,\"As Loki ravages their city in his search for the hammer, Thor and Baldir take on an attack from his beastly demons.\"\ntt1792794,nM1xpUM4uUs,Thor engages in an epic sword battle with the Guardian of the Tree of Life.\ntt1792794,gpEiNwKpq1U,Loki uses his powers of deception to disorient Thor.\ntt1792794,CNYtVjUf5uc,Thor and Loki face off in one final battle.\ntt1792794,38mMNp3gyYs,Loki and Thor square off in a battle for the hammer.\ntt1792794,N2EC0gAi2lk,\"Loki and Thor battle over the hammer as Jarnsaxa takes on some angry lindworms. As they try to escape, Jarnsaxa stabs Loki through the face.\"\ntt1792794,dEqZRPnfSqo,\"Loki destroys the Tree of Life, bringing destruction upon the Earth.\"\ntt1792794,QiVqI3oxdtw,\"Thor tries to bring his father back from the dead. Instead, Loki appears and Jarnsaxa shoots him in the face.\"\ntt0113243,H9Anw9hFNQE,\"Dade reveals to his friends that he is \"\"Zero Cool\"\", the child hacker who had caused the biggest stock market crash in US history.\"\ntt2246549,dgXARu_D5d8,\"On the run, Lincoln finds shelter for his men in an unlikely location.\"\ntt2246549,ZLbDKSo2QLA,President Lincoln leads the fight to wipe the nation clean of the undead.\ntt2246549,DOeYRNcSjWM,Stonewall Jackson sacrifices himself to kill off the zombies for good.\ntt2246549,gu_ckpTcrBI,\"After being infected by Mary, President Lincoln decides to send an anonymous message to John Wilkes Booth in order to prevent another zombie outbreak.\"\ntt2246549,r_Bdli4c8TA,\"With most of the party slaughtered by the zombies, the survivors flee to the fort to escape the hoard.\"\ntt2246549,Hc6cJ6xmfM0,\"While fighting off the zombies, Mary is splashed with their contaminated blood.\"\ntt2246549,pF67F-hlVaA,\"As the zombies' numbers increase, the group struggles to move forward with thier mission.\"\ntt2246549,UczoOVtUsDA,\"After Major McGrill is lost, President Lincoln concludes that it is his duty to rid the union of the zombies.\"\ntt2246549,sNi3hwriXyE,President Lincoln leads his men on an assault to reclaim the fort from the zombies and the Confederate survivors.\ntt2246549,TCIgI-AObzk,\"With the town overrun by zombies, President Lincoln and his party fight their way back to the fort.\"\ntt0337579,hdrvg0jmL8s,Calvin stands up for the values of his community.\ntt0337579,iY5fvk3H2Js,Calvin is angry to learn a franchise barber shop is opening across the street.\ntt0337579,EqEDcrYPp3U,Terri realizes she misjudged RIcky.\ntt0337579,EKLCchi0iCI,Things get tense when Jimmy goes to Terri's barber chair.\ntt0337579,85PpxPJ52us,\"In an effort to compete with Nappy Cutz, Calvin sets new standards for his employees.\"\ntt0337579,wBIVUUflNb4,Gina and Eddie engage in a verbal smack down.\ntt0337579,L-y9V-gpj9U,Eddie gives some unsolicited advice to a disgusted train passenger.\ntt0337579,FInHKeP2UoU,Alderman Brown's publicity stunt at the barbershop ends in a brawl.\ntt0337579,9MDbaBqAqMg,Calvin and his employees let curiosity get the best of them.\ntt0337579,lRQXQXsXIm8,A customer is scolded by a scorned lover.\ntt0337579,CoFFpId2-Ak,An argument between Terri and Ricky turns to passion.\ntt0113243,h_Awe6CI91k,Ramon is arrested for using a hot disc and hacks a phone in jail to warn Kate.\ntt0113243,pxiwqleE9Do,Dade meets Kate on his first day of school and becomes the victim of her practical joke.\ntt0113243,r38fEGep2yU,Emmanuel makes his worldwide television broadcast debut and vindicates his friends by presenting new criminal evidence.\ntt0113243,2son-vLime4,Dade hacks into the school sprinkler system and gets revenge on Kate for the pool prank.\ntt0113243,SFEc7iy6zmI,Dade wins the bet and Kate is forced to wear a dress on a date.\ntt0113243,eL2DjnXT4wQ,\"Gill and the feds finally catch up with \"\"Mr. Babbage\"\".\"\ntt0113243,5y_SbnPx_cE,Dade gets arrested and yells a coded message to Emmanuel before he is taken away.\ntt0113243,GIKfEAF2Yhw,\"Dade and his friends beat Plague, retrieve the garbage file, and kill the Gibson.\"\ntt0113243,Bmz67ErIRa4,Dade and his friends attempt to hack the Gibson supercomputer while Plague and his team try to stop them.\ntt0113243,0T0QWPRBau4,\"Dade, Kate, Emmanuel, and Nikon prepare the course for their upcoming hack.\"\ntt0113243,bcAACOrgVKE,Dade and his hacker friends crack the code to discover that the Da Vinci virus is actually a worm.\ntt0113243,peBuMWtkw8s,\"A young Dade is caught, tried, and sentenced for the malicious hacker crimes of 1,507 crashed systems.\"\ntt0388500,y6mlssn2bl0,Gina has an awkward moment when she is found fondling Joe's spear.\ntt0388500,xCLCNJpKLx8,Lynn and Joanne get into an argument when Joanne tries to make a move on James.\ntt0388500,07YuuA_2O9w,\"Fed up with Jorge's attitude and management style, Gina quits.\"\ntt0388500,AwXJIHFo84c,Gina and James step in to defend Darnelle when they witness her boyfriend mistreating her.\ntt0388500,0CQi2Bb7WE8,Gina is encouraged to offer waxing in her beauty shop by some while others say their man likes things natural.\ntt0388500,zs5bqvL5Wh4,Gina confronts Jorge in his salon and presents him with some incriminating evidence.\ntt0388500,hSwy6UI-djc,The Beauty Shop is back in business when Gina keeps the support of her staff and gets some clients in the front door.\ntt0388500,iNa97wFdFyE,\"Ms. Josephine preaches to the beauty shop, and they all join in.\"\ntt0388500,Jp9IN_iver4,DJ Helen gives advice over the radio about how to get rid of a man.\ntt0388500,PHj4OVnU6EY,\"Mrs. Towner comes to the beauty shop expecting the former owner, but is treated by Lynn instead.\"\ntt0388500,jnoCeqeNM3g,Gina encounters hostility from her new employees when she introduces herself.\ntt0388500,3FOUAKr22K4,\"Gina introduces Lynn  a white girl to the beauty shop staff, but she isn't given a very warm welcome.\"\ntt0097576,q0vvYHuA10U,Indiana and his father fight off two German fighters with no weapons of their own.\ntt0097576,mG1vn39lP3M,Indiana fights off several henchmen and tries to get the truth of his father's whereabouts.\ntt0097576,AwH6-Yh7_SM,Young Indiana fights his way through a circus train while he tries to evade a group of grave robbers.\ntt0097576,hl8e9i6YiA8,Indiana's and his father's plan of escape goes up in smoke.\ntt0097576,Np4OojYGixI,Henry believes Indiana dies when the tank goes over the cliff.\ntt0097576,o4lq3SOB8sw,\"While in Berlin recovering his father's diary, Indiana comes face to face with Adolf Hitler.\"\ntt0097576,U6tzqlxOr2U,Indiana tries to rescue his father from General Vogel and the Nazis.\ntt0097576,ilV5Qt01eyc,Indiana and his father fend off Nazi motorcyclists while escaping Germany.\ntt0097576,s0vNsH81YeA,\"Even in disguise, Indiana takes his job as a ticket checker very seriously.\"\ntt0097576,VA7J0KkanzM,Walter Donovan drinks out of what he believes to be the Holy Grail.\ntt0367882,PT3Wpc71ebk,Mutt and Col. Spalko fight between two moving cars for the crystal skull.\ntt0367882,VbdaoAYveUA,Mutt swings to the rescue as Spalko tries to run Indiana off al cliff.\ntt0367882,ohnkD-gjNVQ,\"After returning the skull, Col. Spalko meets an alien fate.\"\ntt0367882,K1R4hHq8yr4,The group is attacked by really big flesh eating ants.\ntt0367882,fcfYrTFbM94,Col. Spalko tries to manipulate Indiana Jones into helping them so she uses Marion Ravenwood as leverage.\ntt0367882,iGIooJXEu9E,\"After geting stuck in a sand pit, Marion thinks it is the best time to tell Indiana that Mutt is Henry Jones III, his son.\"\ntt0367882,sR_xG8DNCSI,Indiana and Mutt try to elude the KGB by driving through a college campus.\ntt0367882,PHHgumL4rUI,\"Surrounded by Irina Spalko and Russian agents, Indiana finds a way to escape.\"\ntt0367882,jn4Vhkmb4Lw,\"Indiana finds himself in a town full of mannequeins waiting to be decimated by an atomic bomb. Thankfully, he is a little resourceful.\"\ntt0367882,npaJix_AarM,A captured Indiana is forced by Col. Spalko to gaze into the crystal skull in order to gain its knowledge.\ntt0071360,EyexoSJ1tsg,Harry records a seemingly innocuous conversation between Mark and Ann.\ntt0071360,dWhFW021gwM,\"Harry makes a late night visit to Amy, who questions his suspicious nature.\"\ntt0071360,7ocMJfJATEw,Harry refuses to take payment from Martin without seeing the director personally.\ntt0071360,vROih4weKoM,Harry makes a startling discovery when he isolates one audio track of the recording.\ntt0071360,KRfJqmecqUQ,Bernie demonstrates his telephone interceptor to an unimpressed Harry at a convention of surveillance experts.\ntt0071360,SH4vCrz5Pb4,Harry dreams of an encounter with Ann where he opens up about his anxieties from childhood.\ntt0071360,GcPyVMO8bcA,Harry kicks everyone out after Bernie records his intimate conversation with Meredith.\ntt0071360,YGOmoGwJbTk,Harry collects his payment from the Director but has concerns about his intentions.\ntt0071360,btXmzToD3W4,Harry completely dismantles his apartment in a desperate attempt to locate a recording device.\ntt0071360,zbN6F4tfbgo,Harry checks a hotel room for evidence and finds the toilet clogged with blood.\ntt0077745,wTP_SdjD5ms,\"When Matthew is approached by Nancy, he points to her and screams - he has become one of them.\"\ntt0071360,nkmg10eebk4,Harry grows impatient with Stan when he questions the purpose of their assignment.\ntt0077745,es83ejXi5wg,\"Matthew and Elizabeth are injected with a sedative by Kibner, but they fight back and escape.\"\ntt0077745,LIhdfU4RIdo,\"After sabotaging the pod plant, Matthew manages to escape and hide.\"\ntt0077745,vdyYR85RNkk,\"Matthew and Elizabeth try to take a cab to the airport, but are identified by the Taxi Driver as \"\"Type H.\"\"\"\ntt0077745,ktEW65QQFgQ,Matthew and Elizabeth are nearly caught when Elizabeth screams at the sight of the dog-man hybrid.\ntt0077745,eT5XhG7qLcU,Matthew destroys the pod doubles and then leads the gang away from the pursuing horde.\ntt0077745,3Iambpg_8w4,\"As Elizabeth tries to convince her superiors to study the mysterious flower, Matthew is given the runaround by the authorities in his attempt to warn the public of a hidden menace.\"\ntt0077745,8mYlqWefu-8,Matthew and the rest of the gang are nearly taken over by the pod people before Nancy wakes them up.\ntt0077745,0BXa52qz-kU,\"Matthew brings the police to Howell's place to show them the pod body, but it has disappeared.\"\ntt0077745,q4VIMzhfeYc,Jack calls Matthew over to show him what he's found - a pod body.\ntt0077745,z_G7CS4mJqc,\"When the pod body opens its eyes, frightening Nancy, she wakes up Jack to show him.\"\ntt0077745,w2XWa1XuKSI,Matthew and Elizabeth are accosted by Dr. Bennell who tries to warn them before he is killed.\ntt1137470,1CJuzTFRGhE,Pam opposes Howard's bill primarily on his sexual escapades with lobbyists.\ntt1137470,3izQonrYukE,A bump on the head triggers a powerful lust in Alice for Howard.\ntt1137470,DmDtPzG5aU0,\"Struggling with her chronic head injury, Alice stands up for her beliefs.\"\ntt1137470,EuUUunxYat8,\"Distressed at the prospect of a health care reform bill, Senator Bramen chokes on his cookies.\"\ntt1137470,cK2a6BzrUO0,\"Threatened by Marsha's viral campaign, Pam comes up with a smear campaign of her own.\"\ntt1137470,KcPIEP0GpSo,Scott tries to talk Howard out of... whatever the hell he's doing.\ntt1137470,OLgi3eAwNGE,Alice co-opts a funeral to push a piece of legislation.\ntt1137470,BtEfmxkeEcY,\"Although she really wants health care reform, Alice argues passionately for a military moon base.\"\ntt1137470,8pEobIigs5Y,Alice is without hope until she sees a political commerical by Howard.\ntt1137470,-pCVsB4Dghk,Howard and Alice get to know each other as much as possible before getting it on.\ntt1137470,iOhZLY0cDV8,Keyshawn reveals what his girlfriend thinks of him... and the stories he's been telling her.\ntt2023587,YKFQfaDL9gQ,\"Mama comes for Victoria and Lilly, but Annabel will not let them go.\"\ntt2023587,yGGZUbqbTWg,Mama appears in the house and takes out her anger on Annabel.\ntt2023587,dUoKiRrGu4c,\"Annabel sees what she thinks is Lilly, but Lilly is actually downstairs.\"\ntt2023587,yayNXxs76vE,\"Dr. Dreyfuss questions Victoria, but gets spooked away.\"\ntt2023587,o3w6MouV4NE,Dr. Dreyfuss goes to the cabin in the woods at night to communicate with Mama.\ntt2023587,qWOQp-rJ0Vc,Annabel feels certain that she saw someone in the house and Lucas is knocked down the stairs.\ntt2023587,gFES6-SLD_s,Annabel senses the ghost of Mama in the house.\ntt2023587,yxiNPHXAH0s,\"Two men find the abandoned girls in the cabin, but they have become creepy and feral.\"\ntt2023587,Eo87byVKgfo,\"Jeffrey tries to kill his family in a cabin in the woods, but he is dragged away by an evil spirit.\"\ntt2023587,Frwrlztd8C4,The ghost of Mama plays with Lilly while Annabel is in the house.\ntt1440161,Bdc_wuMUpP8,Marley walks into an advertising meeting and knocks it out of the ballpark.\ntt1440161,1-70_Trz7M8,\"Marley meets God, who grants her three wishes.\"\ntt1440161,1Wm5NiRIKB4,\"While at the hospital, Marley flirts with her doctor.\"\ntt1440161,bHGyGED8qCc,\"Marley's funeral goes off with a bang, leaving her to revel in the afterlife with God.\"\ntt1440161,1-pgYgfRbZE,\"Marley meditates on her short time left, but has time to enjoy some music and flirt with Dr. Goldstein.\"\ntt1440161,NJe9WplQKN4,Marley breaks the news of her cancer to her friends much more cheerfully than her doctor did to her.\ntt1440161,b-7IuyhoAxg,\"Vinnie, a male prostitute, pays Marley a visit, but things get a little deeper than the innuendos.\"\ntt1440161,MoHQNC_-45U,\"Marley bonds with Vinnie, and joins him in pranking a neighbor.\"\ntt1440161,8MVN6SVnO_o,Marley's third wish comes true with Dr. Goldstein.\ntt1440161,7FK6P0sTBrs,Marley's wish to fly comes true.\ntt1403981,sO6DX9YCIPw,\"After a night of clubbing, Tyler and Aidan get into a brawl and end up arrested.\"\ntt1403981,zbZmKqU90pE,\"Tyler befriends Ally, the daughter of the police officer who arrested him.\"\ntt1403981,cQigrDa8S60,Ally explains her rationale to Tyler as to why she has her dessert first.\ntt1403981,71cKzwJPI5g,\"After having dinner, Tyler and Ally have a playful water fight.\"\ntt1403981,6Cf1MeHEZn0,\"After spending the night at Tyler's place, things turns violent when Ally gets into an arguement with her father, Neil.\"\ntt1403981,nxnkxubWt5A,Tyler and Ally open up to each other and share their traumatic pasts.\ntt1403981,k39MKOaoDhc,\"Tyler is lost in the September 11th attacks, but his parting words resonate with his friends and family.\"\ntt1403981,PJQgGszBO9s,\"Tyler storms into Charles's office and makes a huge scene, ridiculing his father for not showing up to his sister's art show.\"\ntt1403981,vxloU1qqM_w,Caroline has a bonding experience with Ally.\ntt1403981,NOVhlDQthwM,Tyler confesses to Ally that he originally befriended her to get back at her father.\ntt1403981,0pfqzjPMnoE,\"After his sister Caroline endures ridicule at school, Tyler flips his lid, trashes the classroom, and ends up in jail.\"\ntt1699755,xbHSfACHWQE,\"After finding out the truth, Grace finds Wade and proposes.\"\ntt1699755,DkVjSKOdczM,\"While on a trip to the market, Wade begins to notice certain things about her family.\"\ntt1699755,DOqHpCInxQ4,\"After Wade leaves, Grace confronts Virgil about Wade's accusation and slowly everyone's secret is revealed.\"\ntt1699755,WOG22C6GDMA,\"Virgil challenges Wade to stay in the sweat teepee, while Gloria tries to have sex with Chris.\"\ntt1699755,SUQaxkWkB0s,\"In order to not go to bed angry, Grace dresses up as a naughty school girl for Wade.\"\ntt1699755,px2rxAmJNHU,\"After accidentally tripping on shrooms, Wade thinks that Virgil is insulting him and then threatens him with a harpoon.\"\ntt1699755,hE7Nc_la-l0,Grace Peeples tells her boyfriend Wade that she is going away for the weekend to visit her family and Wade is not too pleased.\ntt1699755,eiKSmbxn4UY,Wade and Chris pretend to be thugs to confront Simon and then they give him so friendly advice.\ntt1699755,DUMW--Zlrcs,Wade Walker finds Gloria's old headpiece and he is transported to the 70's in spirit.\ntt1699755,OKR7b6NL6IU,\"Wade tries to surprise Grace by coming up to visit her, but things go awry.\"\ntt1699755,_9rqQ-bOcLc,\"While seeking out Virgil Peeples to talk to him about proposing to Grace, Wade finds out that he is part of a nudist community\"\ntt2024432,wwxjFuoLYzQ,Sandy tries to stop the Skiptracer who has kidnapped Diana.\ntt1649419,UV5zCTfvurQ,Maria dreams of the tsunami while going through surgery.\ntt1649419,J-7LezqtuMY,The villagers help Maria and drive her and Lucas to safety.\ntt1649419,LalslCf2kLQ,Henry calls his family back home to tell them what happened.\ntt1649419,tagDBoX24S0,Maria sees her family before being taken off for surgery.\ntt1649419,vEFoOcev00s,An aid worker tries to help Lucas.\ntt1649419,l0RkrxY9mH8,An old woman explains to Thomas the beauty of the stars.\ntt1649419,4d-EYIZAqXc,\"The tsunami bursts through the resort, taking Maria's family with it.\"\ntt1649419,FnahBy4Od9Q,Maria and Lucas find each other in the chaos.\ntt1649419,LfSLyM9XiCw,The family leaves Thailand and realizes they are finally safe.\ntt1649419,T5-LhZ2YpGc,The boys and their father are reunited after a long search for one another.\ntt2024432,azkJMOVoNys,\"Diana tells Sandy her true life story, but doesn't know her real name.\"\ntt2024432,gEq_wldXBww,\"Sandy and family visit Diana in prison to congratulate her on her progress, but she is still a bad girl.\"\ntt2024432,FOWZ7B1QenY,\"Sandy's boss asks him to cut him a bonus check, even though no one else in the company is getting a bonus.\"\ntt2024432,1shru4620TE,Sandy tries to arrest Diana at her home and a throwdown fight occurs.\ntt2024432,YXt8RmeU_AA,Sandy tries to convince Diana to come with him to Denver and explain the misunderstanding to his boss.\ntt2024432,8pi1bm3890U,Sandy meets his identity thief in a highway accident.\ntt2024432,s8hKbzuOAQY,\"Diana picks up a cowboy in a bar, to Sandy's disappointment.\"\ntt2024432,mszPMVP_qcw,Sandy is amazed by the lies that Diana tells a waitress at a diner.\ntt2024432,fjodt2JnWT8,Diana annoys Sandy by singing to every song on the radio.\ntt3062074,Hu-xJbVwgPM,\"After a final showdown with the Sharknado, Fin proposes to April with the ring he removed from her severed arm.\"\ntt3062074,GA_4dJb-nQg,\"The New York subway system floods, causing a deadly shark attack that costs Bryan his life.\"\ntt3062074,S8aigz2j7-o,\"After an inspiration speech to the people of New York, FIn, April, and Skye start taking down the Sharknado.\"\ntt3062074,Jipo-s5DGj8,\"When a shark jumps on their boat, Ellen pulls out her self-defense weapon, but it is too late for Chrissie.\"\ntt3062074,xHgLwzZ2_8s,Skye sacrifices herself in order to create an explosion and destroy the Sharknado.\ntt3062074,-BNqJHOxNp0,\"As the citizens of New York fight back against the sharks falling from the sky, Fin hacks and slashes his way through the center of the Sharknado.\"\ntt3062074,1iwBRoAb_Cg,\"Flaming sharks start falling from the sky, trapping Fin and his friends inside a rapidly flooding building.\"\ntt3062074,sRFINj9g1iI,\"The head of the Statue of Liberty becomes dislodged, crushing an innocent business man and rolling after Ellen, Mora, and Polly.\"\ntt3062074,C_0W1Q51_z8,\"When a sharknado interrupts their flight, Fin attempts to make a safe landing while April loses her hand to a shark.\"\ntt3062074,FmPwgLX9fAQ,\"When Fin and April's plane flies into the eye of a sharknado, the passengers begin to panic.\"\ntt2724064,SQzC9SO66pc,\"A swarm of sharks begin terrorizing Fin and the other beachgoers, forcing them to run for their lives.\"\ntt2724064,naCL7BZb4Lw,Fin uses his car as a bomb to stop the final Sharknado.\ntt2724064,LhbPVQUZV0A,\"While Fin saves a retirement community from falling sharks, Nova is taken down by an angry shark in the sky.\"\ntt2724064,OtBnQ30-Iio,\"As Matt and Nova continue to neutralize the tornados, angry sharks start falling from the sky.\"\ntt2724064,udcb-kQs-GU,\"An angry storm washes sharks on land and causes the Santa Monica Ferris Wheel to break, bringing death and destruction upon Fin and his friends.\"\ntt2724064,0slaW0ARW1Q,Matt and Nova use bombs to successfully quell the first Sharknado.\ntt2724064,uYDdBUasjxM,\"Everybody panics when a shark bites through the roof of their car, leaving Fin and Nova to save the day.\"\ntt2724064,nsR0Z8f6QAM,\"After Colin is devoured, Fin and Nova take on a relentlessly attacking shark.\"\ntt2724064,0eBDwVSU56s,\"After diving head first into the mouth of a shark, Fin saws his way out, rescuing Nova in the process.\"\ntt2724064,qlX5rnpp0iA,FIn rescues Robbie the Bus Driver right as the storm gets worse.\ntt1772925,En3JBEKvxr4,Jiro explains that in order to be great one has to fall in love with their work and dedicate their life to their craft.\ntt1772925,eF9nKXO2Zdg,Jiro perfects the traditional Japanese three course traditional meal.\ntt1772925,ovD51p3YDFk,Jiro explains how he trained his sons harder than his other apprentices so that they can keep up the quality after he's gone.\ntt1772925,m1HazoM2hOY,\"Tuna vendor, Fujita, explains his methods of buying tuna.\"\ntt1772925,XYwGKDK87DI,Working in Jiro's kitchen is like working in an orchestra.\ntt1772925,tWHVvdPw2t4,\"Although there is a long history, Jiro dedicated his life to the creation of new sushi dishes.\"\ntt1772925,0x0muJjYzp4,Jiro and Yoshikazu describe the taste of umami and the balance of sushi and rice.\ntt1772925,1LoKbaf2vrU,Jiro's apprentice describes his experience making egg sushi and winning Jiro's approval.\ntt1772925,f9qQfURhph4,Jiro and Yoshikazu explains the different types of tuna.\ntt1772925,tyUJnwrI-FU,\"Yamamoto expresses how Jiro's son, Yoshikazu, will have a difficult time filling his father's shoes.\"\ntt1772925,8nOx6uj46XQ,Food writer Yamamoto explains the five attributes of a great chef and how Jiro has them all.\ntt0094074,v53yiG9-_xs,Superman addresses the world about how to have peace and then takes care of Lex Luthor and Lenny.\ntt0094074,9jxlrFSiLCk,\"Nuclear Man succeeds in scratching Superman with radioactive nails, which weakens Superman.\"\ntt0094074,uQLeZO2Z1YQ,Superman fights Nuclear Man on the moon.\ntt0094074,0ezPVizHpY0,Nuclear Man asks Superman to take him to Lacy or he will hurt people.\ntt0094074,lMilbGNSGtI,Superman is interviewed by Lois Lane while Lacy tries to keep track of Clark Kent.\ntt0094074,f5mcMmE3RL8,Superman battles Nuclear Man who flies around the world causing havoc.\ntt0094074,-jiQdqoe1cU,Clark works out with Lacy and pretends to have a hard time.\ntt0094074,P-3Aca5nRn0,Superman takes his beloved Lois on a romantic flight and then kisses her.\ntt0094074,zWQIwJsqXrI,Superman addresses the United Nations about nuclear arms and then rids the world of them.\ntt0094074,2KLf6pNcizk,\"Lex Luthor meets his newest creation for destroying Superman, Nuclear Man.\"\ntt0086393,O9zWwhJYQNc,\"Clark Kent defeats the corrupted Superman, and is reborn as the one true Superman, standing again for truth, justice, and the American way.\"\ntt0086393,fQ5sMUzf2bo,\"Corrupted by kryptonite, a drunk and angry Superman engages in an existential battle against his squeaky clean alter ego, Clark Kent, for control of his soul.\"\ntt0086393,1UpUjmKJaso,\"Superman freezes a lake and drops a massive ice shard over a raging factory inferno, creating a rainshower that extinguishes the flames and saves the day.\"\ntt0086393,5gf0f8WioTM,Superman swoops in to save Ricky at the last second from a harvester combine.\ntt0086393,rpZI9it2rJM,Gus recounts a series of events where Superman and his do-goodery have ended up foiling Ross's nefarious plans.\ntt0086393,xrggI-ISIQc,\"Disguised as a three-star general, Gus gives \"\"thanks\"\" to Superman by offering him a shard of Kryptonite.\"\ntt0086393,Ig5uMkprqEk,\"Lorelei uses her feminine wiles to seduce a corrupted Superman into disabling an oil tanker on behalf of her boss, Ross Webster.\"\ntt0086393,05GysooKs0g,\"With his fancy new supercomputer, Ross and his cronies use the machine's built-in defenses to attack Superman with rockets and missiles.\"\ntt0086393,Dye66uJlLRc,Superman destroys the supercomputer by using a volatile chemical to melt its circuitry.\ntt0758752,pesYeCruSyI,Jamie and Maggie conflict over his Parkinson's Disease.\ntt0758752,LZDir3e680o,Jamie bears his soul to Maggie.\ntt0086393,p1aWpCsLn40,\"Superman flies Gus back towards Metropolis, as the two spend some quality hang out time together.\"\ntt0758752,ShwCEMe6wFs,Jamie finds a VHS tape of Maggie professing her love to him.\ntt1263670,5vZ-SYX-4oY,\"Tommy plays \"\"The Weary Kind\"\" to an excited crowd while Blake watches from backstage.\"\ntt1263670,Z1sTQ3g7V-U,\"Jean worries about Bad Blake's poor health, but he thinks he's perfectly fine.\"\ntt1263670,RX4-U2r4lS0,Tommy joins his idol Bad Blake on stage to share in one of their famous songs.\ntt0162222,HLi_w5rCH1I,Chuck watches in horror as his plane goes down.\ntt0162222,zaQa4ttIyNo,Chuck wakes up at sea to realize that Wilson is gone.\ntt0162222,PKLVAeI7MU8,\"After Chuck reveals his suicide attempt on the island, he talks about the profound sense of hope his failure gave him.\"\ntt0162222,5zXWLbr1LyY,\"After much trial and tribulation, Chuck makes fire and is elated.\"\ntt0162222,mgh0nSkIy04,\"Chuck gets into an argument with Wilson over the escape plan, and makes a devastating mistake.\"\ntt0087469,U8x2PcmL4pg,\"When there are no parachutes in their falling plane, Indiana makes due with a raft.\"\ntt0087469,8YzEce7XN_E,Indiana gets into trouble in Shanghai over a diamond.\ntt0087469,KjdjDz8jhN4,\"Indiana, Short Round, and Willie watch in horror as Mola Ram sacrifices a Thuggee to Kali.\"\ntt0087469,wAZ6dSIMivk,\"While Indiana discusses the Thuggee cult, Willie and Short Round have a surprising dinner.\"\ntt0087469,WQXqhk-8h7o,\"Indiana and Short Round find themselves in a deadly trap, and worse, Willie is the only one who can save them.\"\ntt0087469,7YYge4b8MBk,\"With Indiana battling the brute force of the Chief Guard and the voodoo of Zalim Singh, Short Round steps in to help.\"\ntt0087469,nPGxSotEa-c,\"Indiana drops the bridge on Mola Ram, but he's not out of danger yet.\"\ntt0087469,5rkWzIzJiiA,Indiana fights Mola Ram for possession of the three sacred Sivalinga stones.\ntt0087469,DFa_oIuRDQ8,\"Mola Ram floods the mine in an attempt to kill Indiana, Short Round, and Willie.\"\ntt0087469,hVGl1d8hRBI,Indiana fights for Willie and Short Round's lives in a death-defying mine cart chase.\ntt0082971,lH7EYLWHT4Q,Belloq and the Nazis seal Marion in the Well of Souls with Indiana.\ntt0082971,FRP0MBNoieY,\"Indiana and Dr. Brody bristle at the bureaucratic fools who don't know what to do with the Ark of the Covenent. Luckily, Marion knows what to do with Indy.\"\ntt0082971,JGB0ZvO8J5k,Indiana tries to fight off the Nazis and get away with the Ark of the Covenant.\ntt0082971,YcR9k8o4I0w,\"When Belloq and the Nazis open the Ark of the Covenant, the fearsome power of God is unleashed.\"\ntt0082971,CjCmtqPIRp4,Indiana chases the truck holding the ark and attempts to take it back from the Nazis.\ntt0082971,SFzxuEm9MyM,Indiana makes a romantic connection with Marion as she soothes his wounds.\ntt0082971,vdnA-ESWcPs,\"When Indiana and Marion are attacked by assassins in the Cairo market, they use all the weapons at hand to defend themselves.\"\ntt0082971,jW1CeAVPhVg,Indiana has a brutal hand to hand fight with a Nazi mechanic while trying to escape the dig site.\ntt0082971,c6XHLe94SJA,\"Indiana Jones steals a golden idol from an ancient temple, but then has to outrun deadly booby traps.\"\ntt0082971,854Zlz5-vXQ,Indiana tries to save Marion from the evil Major Toht who is after her father's artifact.\ntt1305583,opt5yQqMIdc,\"When the Ramirez family plans to slaughter a goat for a traditional meal, things go very, very badly.\"\ntt1305583,Tggs6HJxghE,\"It's hate at first sight for Miguel and Brad, but little do they know that they'll be seeing much more of each other soon.\"\ntt1305583,lt3h5Ez9t4g,The Boyds and the Ramirezes plan around their families' idiosyncrasies at the wedding reception.\ntt0814255,mLl9jkYywZY,\"Annabeth beats the hell out of Percy, but she doesn't know about his greatest power.\"\ntt0814255,wAE_PelhISM,\"Grover, Sally and Percy attempt to escape from a charging minotaur.\"\ntt0814255,HPjZKKV37do,\"Percy, Annabeth and Grover confront Medusa in her lair.\"\ntt0814255,9hoSF_oY8Jw,Percy makes the mistake of decapitating a Hydra.\ntt0814255,tJBeQ9Ewo3o,Percy and his friends find themselves trapped with Hades and Persephone.\ntt0949731,GltdSC_5Zzw,\"Elliot realizes that the plants are killing people, so everyone runs for their lives through the field.\"\ntt0949731,m9PEvezB8Nc,\"When Private Auster begins murdering his charges, Elliot struggles to discern why.\"\ntt0949731,uLtUl4pDmOs,\"Elliot manages to make Jess laugh, but his success is very short-lived.\"\ntt0949731,_WovFZ_MDW0,Elliot makes a disturbing discovery about Mrs. Jones.\ntt0949731,5y4ZUMVTGcI,Elliot tells a plant that he comes in peace.\ntt0416212,NUdXYkBhHkQ,August teaches Lily the etiquette of beekeeping.\ntt0416212,0OKdy3Hpzp8,August recounts the inspirational tale of how the apiary chose the label for their honey.\ntt0416212,5mL4wT8DEuU,\"Lily accompanies Rosaleen to register to vote, but the regressive forces of the South meet them along the way.\"\ntt0311429,_WWIiTlGyYQ,The League of Extraordinary Gentlemen displays its considerable ability in fighting off the Fantom's men.\ntt0311429,_N1L7UsUeuo,\"Mina, a vampire, battles Dorian, an immortal, to the death.\"\ntt0311429,gCFBkXA374Y,Tom fights for his life against an invisble man.\ntt0311429,Z1RHhhCqpqs,\"Quartermain, Dorian, Tom, and Mina evade Fantom's snipers.\"\ntt0311429,l1SZ4ccagFQ,\"While Quartermain fights Moriarty, Mr. Hyde and Captain Nemo deal with a Hyde-Behemoth.\"\ntt0056197,Go6CJ0JVOUc,The British land on Sword Beach with Private Flanagan at the front and Captain Maud\ntt0056197,ZFuV5x1drXU,U.S. Army Rangers scale the 100-foot cliff of Pointe du Hoc in hopes of seizing the German artilliary pieces fortified on top.\ntt0056197,elwNOiCaRIs,\"When his parachute catches on a church, Private Steele watches in horror as the rest of his paratrooper squad gets slaughtered by Nazis.\"\ntt2553908,Jq19-ZzDlc4,The Mexican Army faces off against the French Army for the first time at the Battle of Acultzingo Summit.\ntt2553908,I6uZjdjkRVg,The Count of Lorencez starts his takeover of Mexico by blowing up a munitions supply.\ntt2553908,LurparxqlNI,\"While Juan and Citlali make their escape, Artemio is captured by the French.\"\ntt2553908,u0c_2Mk4rJA,President Juarez prepares his people for war against the French.\ntt2553908,ctU1dN0Js1M,The Battle of Puebla starts as the Mexican and French armies clash against one another.\ntt2553908,N2IfyUBU9_M,\"While the soldiers wait for battle, a woman sings a beautiful melody.\"\ntt2553908,t75KclV8x0U,The Mexican Army surprises the French and gains the upper hand.\ntt2553908,9sSXNopytKQ,Before the Battle of Puebla General Ignacio Zaragoza gives a speech to rally his troops.\ntt2553908,UCgvftiw0t0,The Mexican Army gathers itself to fight off the French soldiers.\ntt2553908,tX6-gQGKm40,\"After being overwhelmed by the Mexican forces, the French army is forced to retreat.\"\ntt0848537,ETchiCkaaYE,Nod protects MK from a bloodthirsty mouse.\ntt0848537,sT7nVSNlpTE,Nod protects MK from a bloodthirsty mouse.\ntt0848537,Jz7ZWKumqfQ,Ronin defends Queen Tara from an onslaught of Boggans.\ntt1389137,x03pWg-naqg,\"When a bear escapes from his zoo, Benjamin heads out to track it down.\"\ntt1389137,WFGyCzl7_zE,\"The zookeepers need to yell Star the Tiger off a rock, but the yelling reveals that someone else may need more help.\"\ntt1389137,aaaIdkgVahY,\"On the day of their zoo's opening, Benjamin gets close with Kelly in the supply long.\"\ntt1033575,yTNjsgJ1wwc,\"Julie visits Elizabeth, but she's not there to mourn.\"\ntt1033575,5ke6m-Y8DHE,Matt cusses out his comatose wife Elizabeth.\ntt1033575,EjWWHD7bN3A,Brian reveals how he met Matt's wife.\ntt1033575,6n99ZpSgKg4,\"Matt confronts Kai and Mark about his wife's infidelity, demanding her lover's identity.\"\ntt1279935,nna-IuI5SDk,\"Phil and Claire aren't great at stripping, but it's good enough for Crenshaw.\"\ntt1033575,dXqs6yH3KF8,Alexandra reveals why she had a major falling out with her mother.\ntt1279935,tDW4X-r1dQI,\"After accidently attaching their Audi to a taxi cab during an escape, Phil and Claire find themselves chased by corrupt cops and the entire police force.\"\ntt1279935,5TSXq6wBPVM,\"When Collins and Armstrong arrive locked and loaded, Phil and Claire attempt to escape in an Audi, though find they are new to the car chase game.\"\ntt1279935,8s2lUiTRbpU,\"Taste's insecurities come out during an argument with Whippit, while Phil and Claire watch, not sure what to do.\"\ntt1279935,QYLjbRd1_DE,\"Phil is a little uncomfortable with Claire's former client, Holbrooke.\"\ntt1033643,8Dw3DomVuwI,\"Given an opportunity to sabotage Joy, Jack chooses another option.\"\ntt1033643,GjZ2eEcUTrE,\"When Jack tries to trick Joy out of going to their court-approved marriage counseling, it leads to a crazy chase across New York City.\"\ntt1033643,TmdzJyoeQls,\"Jack and Joy visit their marriage counselor, Dr. Twitchell.\"\ntt0429493,xMJFie7JfbY,B.A. fires the opening shot that sets off a mission to steal counterfeit money plates.\ntt0429493,rTBkVOYzVZA,\"Trapped in a parachuting tank, the A-Team finds a unique way to save themselves.\"\ntt0429493,IhdEKY1b0tk,\"While stuck in a mental hospital, Murdock prepares for his team to pay him a visit.\"\ntt0429493,6FqUyxVD4qc,Murdock's crazy helicopter piloting saves the team from a barrage of missles.\ntt0429493,_ia3xfBh5Pc,Hannibal and B.A. save Face from General Tuco\ntt2345613,iKzLZIbUM8o,The Leprechaun's hunt of Sophie comes to a head.\ntt2345613,zkRC3GX5BEQ,\"Sophie hits the road, but the Leprechaun hitches a ride.\"\ntt2345613,JTgbdnNC5ZE,\"Sophie finds herself trapped between Sean and his father Hamish, but the Leprechaun isn't far behind.\"\ntt2345613,x22ZX9dGaKk,\"The group prepares a trap for the Leprechaun, but he's more wily than any of them could've guessed.\"\ntt2345613,6VdHec3IAn8,\"The group makes a run for it with the Leprechaun in hot pursuit, but not everyone is so lucky.\"\ntt2345613,d3GeSiD2HIs,The group awakens to find themselves bound and left for death at the hands of the Leprechaun.\ntt2345613,SVZubVb2L8U,Sophie and Ben flee from the Leprechaun.\ntt2345613,s1s6SqHLUQA,\"The Americans flee from the Leprechaun, but David's injury really slows them down.\"\ntt2345613,OOgShYNNtn4,\"Jeni is awakened by noises and discovers, to her horror, more than she bargained for.\"\ntt2345613,WajS0jEmEG0,The Americans make the horrifying discovery that they're locked in with the Leprechaun.\ntt1194173,4oJlFH_1q3Q,\"After stealing a motorcycle, Aaron Cross and Marta try to escape a deadly operative intent on killing them.\"\ntt1194173,mBUdGRqiIR4,Aaron Cross and Marta find themselve pursed by the local authories and by a special operative sent to kill them\ntt1194173,8QYlXDYOhM0,Special operative LARX #3 continues to chase a wounded Aaron Cross and Marta.\ntt1194173,RvClpuFmfm0,A drone attacks Operative #3's cabin right as Aaron Cross leaves it.\ntt1194173,EBSjabRNztY,\"After bluffing their way into a chem factory to get what they need, Marta and Aaron Cross find that they've been discovered.\"\ntt1194173,eWirsPiHnA0,Dr. Donald Foite goes on a killing spree in a bio-genetics lab where Dr. Marta Shearing works.\ntt1194173,ThbFbz_0qhc,\"Four operatives posing as federal agents attempt to kill Marta and make it look like a suicide, but thankfully Aaron Cross intervenes.\"\ntt1194173,CrYqMX-T7G8,\"While on a training exercise in Alaska, Aaron Cross tries to have a conversation with a fellow operative.\"\ntt1408101,Oozc5zchP98,Spock goes after Khan with a vengeance.\ntt1408101,AQkLWa6J3dM,\"With the ship in free fall, Khan attempts to crash the USS Vengeance into Starfleet Headquarters.\"\ntt1408101,JFwhPbsr5RU,\"While Spock asks Spock Prime about Khan, Kirk starts to get his own ideas.\"\ntt1408101,OvdQYzRHlO0,Khan reveals his true identity and origins.\ntt1408101,tYf5ENc39dQ,\"After Kirk sacrifices himself for the Enterprise, Spock arrives just in time to say goodbye.\"\ntt1408101,qcVr2eztQEk,Krik and Khan fly through a debris field attempting to board the USS Vengence.\ntt1408101,w6zGX2qpxzU,Kirk turns to his crew to find answers about the torpedos on his ship.\ntt1408101,TwQ1KE0CRrI,\"While in a shootout with the Klingons, Khan saves Kirk, Spock and Uhura.\"\ntt1408101,XDI3snWDWuo,Kirk violates the Prime Directive to save Spock's life.\ntt1408101,41T9HTzQ92w,\"When a mysterious stranger attacks Starfleet Command, Kirk must take control to save his comrades.\"\ntt0083550,iQ-P3eRhpKI,\"Father Adamsky recites the rite of exorcism to Sonny, who is under the possession of an evil entity from within the house.\"\ntt0083550,PSvMn5gSLWs,\"When the possession firms its grip on Sonny, he unloads on his family in a harrowing act that became the haunting tale of the house.\"\ntt0083550,ZSrz2g2kmb4,\"The Montelli's suspect a trespasser on their first night in the new house, but when supernatural forces intervene, the family turns on each other.\"\ntt0083550,pQOcRJKuXd0,Patricia confronts her brother Sonny the day after he rapes her.\ntt0083550,J9aEPBqeLr8,\"When Father Adamsky is asked to bless the Amityville house, things don't go as expected.\"\ntt0083550,DWyzPO2x67E,Dolores uncovers a previously undiscovered room in their house on moving day.\ntt0083550,lq13hsPI-yY,Demonic disturbances emerge when Father Adamsky comes to the Montelli residence.\ntt0083550,r7ApEmhlxro,\"An entity in the Montelli residence in Amityville takes possession of their eldest son, Sonny.\"\ntt2293640,iJHyw2pjpWA,The Minions finally find a boss despicable enough to complete them.\ntt2293640,ax3ZNv5jqQY,Kevin must make a tough choice to defeat Scarlett Overkill and save his friends.\ntt2293640,h-Ss_FvzZcs,\"On the quest to get the crown, the Minions kidnap the Queen, and drive her throughout London.\"\ntt2293640,1TGWdRK-Ykk,Kevin accidently turns himself into the ultimate weapon just in time to save Stuart and Bob.\ntt2293640,7booh4V0jaA,\"While the rest of the Minions make their way to London, Bob is crowned as the new King of England.\"\ntt2293640,zGdF6OXr6t0,\"One the way to Orlando, Kevin, Stuart, and Bob learn that the family who acts evil together, stays together.\"\ntt2293640,EB74RP-oZqE,The Minions get a surprising amount of entertainment out of the Overkills' torture devices.\ntt2293640,-1U0LH6dPfw,The Minions find themselves in an epic struggle to become Scarlet Overkill's henchmen.\ntt2293640,m0XrO4YJyeI,\"Kevin, Stuart, and Bob must find a way to sneak into the Tower of London and steal the Queen's crown.\"\ntt2293640,Ei5IEWld1xw,\"Throughout time, the Minions have had many different bosses that they have tried to support.\"\ntt2911666,L5SM0HY5-vw,John and Viggo square off in one final fight.\ntt2911666,77X1yGjjHvQ,John Wick enters the bath house to try and get his revenge and kill Iosef.\ntt2911666,XURWRujGTNk,With the help of his souped-up muscle car John takes out Viggo's remaining henchmen.\ntt2911666,yu3iX6zxbm0,John fights through dozens of Russian henchmen while pursuing Iosef through the club.\ntt2911666,NYo4WkYNLn4,John fights his way to Viggo to find out Iosef's location.\ntt2911666,tM47HMT8GGE,John methodically takes out henchmen to get his revenge on Iosef.\ntt2911666,Y0LuDSiX63M,John contends with a sniper out his window and Ms. Perkins who is trying to claim the bounty placed on his head.\ntt2911666,51t2_o_H_Rw,Viggo unleashes a fury inside John before ordering his death.\ntt2911666,4S8_1PIolnY,John deals with the rest of the henchmen sent to kill him.\ntt2911666,CdHKXmEn4l8,Iosef and his henchmen break into John's house.\ntt2235779,TU00uzqJGKw,Jane discovers Professor Coupland's duplicity and lashes out with all her demonic power.\ntt2235779,tpzp6-BkkIU,\"While Brian researches the cult associated with Jane's fixation, Kristina's bath gets hotter than she'd like.\"\ntt2235779,DDClFYXZmtM,\"Brian is disturbed to find Jane covered in bloody symbols, but he is powerfully attracted to her.\"\ntt2235779,kymk0SPNe7c,\"Professor Coupland atempts a seance with Jane, with disastrous results.\"\ntt2235779,vSa0UepuyTo,\"Jane, under demonic possession, attempts to seduce Brian, but is there more to it than that?\"\ntt2235779,9xEXh16KupI,\"While Kristina and Harry have sex, Jane seduces Brian.\"\ntt2235779,oE_FGufcMpI,\"Brian rushes to save Jane, but something evil remains.\"\ntt2235779,7xMhKadE7gU,\"Professor Coupland begins to make progress with Jane, but that doesn't entirely sit well with Brian.\"\ntt2235779,atNVzztHoUc,\"Professor Coupland moves Jane to a new facility, but is unable to get \"\"Evey\"\" to speak to him.\"\ntt2235779,Q1ACWidWmjo,\"Brian meets Jane, who scares and intrigues him.\"\ntt1807944,bfgRDarWFnk,Darl says his last words to his family before getting taken away by the officers.\ntt1807944,CsOFvj63I2c,Anse reveals that in order to get a new team of horses he had to sell Jewel's horse.\ntt1807944,918j6y6IMY8,The Bundren brothers face dangerous conditions while attempting to ford the river.\ntt1807944,5azSB3B9dgU,Addie talks about sin and salvation in her life.\ntt1807944,Ew9wk3EGlJc,The Bundren family finds out that Darl burned down Gillespie's barn.\ntt1807944,-zD7CZtUNbA,The Bundren family deals with Addie's death.\ntt1807944,MiBcK87oWBU,Everyone watches while Jewel runs into the barn to save his mother's coffin from burning.\ntt1807944,ISeGBx2JvGs,\"After Darl decides to leave, Anse talks with his neighbor Vernon about burying Addie.\"\ntt1807944,MH7EgG6Y5kc,Jewel argues with Anse about leaving for work while Addie Bundren is sick.\ntt1807944,H08d5DSdT6U,The doctor reveals to Cash that his foot has to be amputated.\ntt1932718,KNh81oYmq7A,Dede takes Neil to a free dance.\ntt1932718,qI-CTJnYdBs,Phoebe finds out about Adam's sex addiction.\ntt1932718,0dbyPr97N48,\"When Dede's ex-boyfriend comes back into town, Neil tries to talk her out of having sex with him.\"\ntt1932718,lKU5GNOEj3Q,\"When Phoebe finds Adam on the phone at 2 in the morning, she thinks he is hiding something.\"\ntt1932718,mryo27tUcJE,\"While Phoebe tries to arouse Adam, Adam tells her that he needs to take it slowly.\"\ntt1932718,Yxa48jQBfLc,Neil gets to know Dede at her salon.\ntt1935179,QNCuoEO3jFY,Mud rescues Ellis and takes him to the hospital.\ntt1932718,WFhKV35sbCE,\"At the meeting, Dede tells the group why she is there.\"\ntt1932718,PZrRQrPE-Y0,Adam and Phoebe get intimate at Adam's apartment.\ntt1932718,g7pwgA-oyYY,Adam meets the lovely Phoebe at a bug-eating party.\ntt1932718,JhTVkpj8g_o,The group celebrates their sobriety as they start a new life.\ntt1935179,Ht6uQH8qIf0,Ellis and Neckbone learn more about the stranger named Mud.\ntt1932718,Z4zy9tTPl2c,\"After visiting Neil's apartment, Dede gets rid of all his porn.\"\ntt1932718,4dVIxwhMYL8,Mike and Katie rush to the hospital to see their son Danny who was hit by a car.\ntt1935179,gNT4N5W81Hc,\"Mud admits to the boys that he killed a man, and tells them about his plan for escape.\"\ntt1935179,YlF1gLpUZp8,An emotional Ellis confronts Mud.\ntt1935179,zz0w0KDwhWg,Ellis and Neckbone discover a boat stuck in a tree.\ntt1935179,xMuWufwEZiA,Carver attacks and threatens Juniper ; Ellis tries to intercede.\ntt1935179,wyzpqpXHcSE,A stranger tries to make a deal with Ellis and Neckbone.\ntt1935179,7FGCTdYcdIM,Ellis and Mud talk about love by the campfire.\ntt1935179,yKhHoh_H350,Tom takes Mud to the mouth of the river.\ntt1935179,1hag3avWVXs,Ellis and Neckbone find out someone has been in their boat.\ntt2051879,KsmXgmhjUic,\"The crew attempts to launch away from Europa, but they are forced to crash land on the moon again.\"\ntt2051879,ZmOUutOuqn8,\"Katya investigates a light in the distance, but the discovery is more than she can handle.\"\ntt1935179,6lRIgVCdLP4,Bounty hunters attempt to kill Mud.\ntt2051879,OnExOgppDJc,\"Rosa and Andrei fix the communications equipment, just in time to capture evidence of alien life on Europa.\"\ntt1935179,CWBwJk1f-gs,Mud visits Juniper and says goodbye.\ntt2051879,3uzjEETq9oM,Katya discovers a one-celled biological organism under the ice - evidence of alien life on Europa.\ntt2051879,583Eukgz0QQ,\"The crew escapes the orbit of the giant Jupiter and lands successfully on the icy moon, Europa.\"\ntt2051879,ctsrpWvUQB4,A spacewalk goes horribly wrong when Andrei rips a hole in his spacesuit and James is sprayed with a toxic substance.\ntt2051879,Iwye0A9pCVk,\"James saves Andrei's life, but pays the ultimate price.\"\ntt2051879,TzpamJ6GsFw,\"After a quake rattles the ship, Andrei sees a light moving outside.\"\ntt2051879,S6Ze8IndlBo,The crew experiences strange sounds and lights when they send a remote controlled camera under Europa's ice.\ntt2051879,ZAtw0w5b_1o,Dr. Unger honors the memory of the astronauts that were lost and praises their discovery of alien life.\ntt1155592,_o490P6zeZ4,Philippe's tightrope walk across the World Trade Towers draws to an end when the police threaten to bring him in with a helicopter.\ntt1155592,G_r06v8SswA,The team realizes their first attempt at getting Philippe to tightrope across the World Trade Towers is too ambitious for the amount of preparation they have put in so far.\ntt1155592,q1QELI37duI,Philippe Petit performs on a tightrope at the top of the World Trade Towers.\ntt1155592,zU9rHffZVBE,Philippe takes his first step off of the World Trade Center and onto the wire.\ntt1155592,5Q8BbiDiI5c,Annie and Philippe begin their love affair.\ntt1155592,jJohoC479no,Jean-Louis and Philippe recall some of the obstacles that threatened to get in the way of them achieving their goal.\ntt1155592,HJCm9e0Q2Yc,Philippe shows his concentration while preparing to walk a tightrope across the top of the World Trade Towers.\ntt1155592,5kvHTPJfo7o,\"Philippe tightropes across the Sydney Harbour Bridge in Sydney, Australia.\"\ntt1398426,uBAd6Nfv3uE,\"Ice Cube and N.W.A refuse to give in to authority and play, \"\"F*** Tha Police.\"\"\"\ntt1155592,ZCMwz1K-Cso,Philippe states his belief on the way life should be lived.\ntt1155592,Io1xroeJoBM,Philippe Petit reveals how he got inspired to wirewalk across the World Trade Towers.\ntt1155592,euCE7LJZxvE,Philippe and Jean-Francois are arrested and taken in for a psychiatric evaluation.\ntt1398426,1WA_d9qBf4E,Eazy-E hits the booth to try his hand at rapping Boyz-N-The-Hood.\ntt1155592,6s_lBln0kzg,\"After walking a tightrope across the World Trade Towers, Philippe, Jean-Francois, Jean-Louis and Annie's lives go in separate directions.\"\ntt1398426,VBYiVoNwzQo,\"N.W.A is harassed by the police for, \"\"looking like gang members.\"\"\"\ntt1398426,dyCbGaYPSIY,\"N.W.A performs \"\"Dopeman\"\" for an audience full of music executives to try to earn a record deal.\"\ntt1398426,UStNNBG5K0Y,\"Ice Cube makes his own diss track to get back at N.W.A for insulting him on the record, \"\"100 Miles and Runnin'.\"\"\"\ntt1398426,LGmthB51XUc,\"Ice Cube's new song, \"\"F*** Tha Police,\"\" pushes N.W.A to a new level of success.\"\ntt2975578,dIv1kqivuZc,Carmelo Johns arrives to liberate the victims of the Purge.\ntt1398426,4KFtwqYA_kE,Dr. Dre brings Ice Cube up to the stage to help bring a new sound to an old club.\ntt1398426,YDh2u5hneLE,N.W.A shares an emotional moment after Dr. Dre reveals to the group that his brother was killed.\ntt1398426,PnjkPSAncPc,Things quickly go downhill for Eazy-E when he tries to make a drug deal.\ntt1398426,aY6ZwMZqaBk,\"The doctor informs Eazy-E that he is HIV positive, and only has months to live.\"\ntt2975578,0x6usdVsGbI,Sergeant goes to the home of the man who killed his son to exact his revenge.\ntt2975578,OlAEXT0Hg70,A group of wealthy Purgers begins hunting Sergeant and his group for sport.\ntt2975578,moH3FSt88FY,\"The wealthy Purgers call in reinforcements, bringing death upon Sergeant's group.\"\ntt2975578,edBNDiSwnlg,Sergeant rescues Carmen and Cali from being murdered at the hands of the Purgers.\ntt2975578,BOo2x6MlAtI,Shane gets himself caught in a trap laid by a group of Purgers.\ntt2975578,4a3OH0EcieY,Lorraine attempts to kill her husband after discovering he has been cheating on her with her sister Tanya.\ntt2975578,dsTyKFkGPuM,\"As they prepare for the evening, Purgers startle Shane and Liz.\"\ntt2975578,kYHCKF2WLA8,The annual Purge begins.\ntt2975578,7fkatAePOnI,Big Daddy teaches Sergeant the rules of the Purge.\ntt2093977,KxRDIx23Xmg,\"Bess shows up to see how Andie's doing, but gets a nasty surprise.\"\ntt2093977,IvwJ-KwPATw,\"Scott patches up Andie's leg, but she's got other things on her mind.\"\ntt2093977,YBrFMKQOqDc,Andie makes a demand of Scott.\ntt2093977,jla2i4bOfjg,\"While Scott swims laps, his stalker has fun with a topless photo of Jules from his phone.\"\ntt2093977,MzFCoTidaDI,\"Bess' obsession spirals toward violence, as does Nancy's daily run.\"\ntt2093977,19KoXOFVCCM,\"Everyone wants to get in Scott's pants. Unfortunately for Bess, her method lacks a little finesse.\"\ntt2093977,ietWI5HT_nA,\"Jules tries to sleep off her drink, but someone tries to snuff her out.\"\ntt2093977,sOxAN1jqfpQ,\"Scott kisses Jules, but doesn't realize he's being watched by someone who is not happy about it.\"\ntt2093977,gQ2HC6eotDg,\"Scott returns home, little suspecting that someone's lying in wait in his room.\"\ntt2093977,aLVjmX-ottU,\"Jules seduces Scott, but she's got something else on her mind.\"\ntt2093977,o3f8UMtGyoA,Childhood crushes can be more dangerous than they seem.\ntt1196948,ZV7UY6RYG6M,Charlie is held captive by Nigel and his men.\ntt1196948,O0Q3TOvvZNY,Charlie confronts Nigel about what he saw on the videotape.\ntt1196948,ElXKzY-3DoU,Gabi tells Charlie the story of her and Nigel.\ntt1196948,WoACzZ_FUzs,Charlie is chased by Darko's men throughout Bucharest.\ntt1196948,W_Aq6Mu-bQU,Nigel shows up to the theatre to see Gabi and meets Charlie in the process.\ntt1196948,F0tBvKtpT-I,Charlie and Gabi say goodbye after a wonderful night together.\ntt1196948,pLKhG9v_0fk,Charlie wakes up to a crisis: Karl has taken too many male enhancement pills.\ntt1196948,PbnhCazvuts,\"Charlie meets Gabi, the daughter of the man who died next to him on the airplane.\"\ntt1196948,rk0WkrT6L1k,Charlie's mom is taken off life support.\ntt1196948,0WwbRHBAg9w,\"After waking up, Charlie discovers that the man next to him has died.\"\ntt0044953,lZ4ouD3RVKU,Lina pleads with Howard to leave Ben's body behind and start a new life.\ntt0044953,RQlXH-KzlXg,\"Ben tries to kill Howard and Roy, but Lina stops him.\"\ntt0044953,GzsGxfcPyTI,Howard and Roy get into a fight at the river.\ntt0044953,TH0d-3NnNUM,The men have had it with Ben's shenanigans and threaten to bring him back more dead than alive.\ntt0044953,BKER7E61cvs,\"Howard practically proposes to Lina, but Ben uses the distraction as a chance to escape.\"\ntt0044953,qgv_7j1_CdA,Ben tries to knock Howard off his horse and over a cliff.\ntt0044953,7rVMT0xklto,Lina and Howard have strong feelings for each other.\ntt0044953,nQBrfPjwAfQ,Howard cries out in his delirium and Lina learns about his sad story.\ntt0044953,5p9BA72SfkY,Howard's group meets with some Blackfeet indians and Roy starts a shootout.\ntt0044953,OA1pcNFRhXY,\"Howard captures Ben Vandergroat, but is pressured into hiring Roy and Jesse to help bring him back.\"\ntt0120654,SFy70juGAHo,Mitch and Sam pay a group of homeless men to distract the security guards so they can sneak in to see Cole.\ntt0120654,ROy7gCg3hJE,\"The guys rally the homeless guys, the whores and Gary Coleman to take down the evil Cole.\"\ntt0120654,9z5YYwpysWs,Mitch ruins Cole's opera with his horny father and some skunks.\ntt0120654,Sczun-f_Uiw,Mitch gets violated in prison and he gives the attackers a piece of his mind.\ntt0120654,OG9EDE_bnws,\"The guys get revenge on some noisy neighbors, but the plan goes awry when a terrible shooting takes place in the mansion.\"\ntt0120654,Sqj803KC3T4,\"Even though Sam gets Mitch to admit that he likes Kathy, they still head off to destroy her grandma's building.\"\ntt0120654,nOkJXxd0cNg,The guys get revenge on an abusive bearded lady for a midget client.\ntt0120654,oD-1eCD7lkE,\"When Mitch and Sam get a job at the movie theater, their new boss starts out with a belittling speech.\"\ntt0120654,BlWpx55Mo5s,\"Mitch films a \"\"Dirty Work\"\" commercial by interrupting a spot at a car dealership, and Jimmy seeks revenge on a hooker.\"\ntt0120654,qWEaCJlKZXs,Mitch describes the pranks he and Sam used to pull as kids and how they learned to not take crap from anyone.\ntt0120654,F-gTRiA6Ncs,\"After getting fired and dumped by his girlfriend, Mitch also loses his shirt to a hairy dude.\"\ntt0120654,4tehW9FH9aw,\"During a brownie taste test, Sam feels no side effects, but Mitch has a face full of rash and hallucinates about Satan.\"\ntt0040872,E5KigabenVg,Bowie takes one last look at Keechie before he's gunned down by the authorities.\ntt1294970,J3Uq3-vH_I0,Henry Altmann lists the thing he hates while sitting in traffic.\ntt2458106,9kcwYNK9cp8,\"While searching for a long-buried cache of ninja weapons, Casey runs afoul a group of Goro's men. Or, rather, they run afoul him.\"\ntt1294970,wi1iG6DIFOA,\"Before dying, Henry spends time with his family.\"\ntt1294970,izRUBt3oeMw,Henry finally gets to see his son Tommy.\ntt1294970,tIZfD-LANtA,\"While trying to get to his son, Henry Altmann and Sharon Gill get pulled over by police officer.\"\ntt1294970,qZD-BA_Cxus,\"While riding in a cab, Henry and Sharon run into the angry cab driver, Ulugbek.\"\ntt1294970,sW1_A07itgQ,\"After Henry does not die from jumping off the Brooklyn Bridge, he has a new perspective of life.\"\ntt1294970,9fs03_cdppQ,Dr. Gill tries to stop Henry from jumping off the Brooklyn Bridge.\ntt1294970,jqvMzCLAE0g,\"Henry tries to buy a camcorder from Ruben, but he has a bit of a stutter.\"\ntt1294970,uZC4v8_fApA,\"Henry tries to leave his son, Tommy, a video before he dies.\"\ntt1294970,NP5PcpEDjS0,\"When Henry rushes home to have sex with his wife, Bette, he gets a little bit of a surprise.\"\ntt1294970,ewvkTkHfJqQ,\"While at meeting with some business partners, Henry Altmann asks his brother Aaron for advice.\"\ntt1294970,OrxsZHRGxRc,Dr. Sharon Gill tells Henry Altmann that he has a brain aneurism and he only has 90 minutes to live.\ntt2458106,0GBAUGvKy2A,\"While Goro's drug empire burns, Casey fights his lieutenant, Myat, to the death.\"\ntt2458106,6UY9MtqSMgs,\"Casey confronts Goro, the man who placed a hit on his wife.\"\ntt2458106,QvUl28vA8oM,\"Faced with his wife's true killer, Casey makes the ultimate decision.\"\ntt2458106,YcT_oPYKOw4,\"While Casey sleeps, his dream of Namiko's murder proves startlingly prophetic.\"\ntt2458106,2nrHffYUXqQ,\"Casey hopes to cool his jets at the bar, but winds up letting off some steam with some local thugs.\"\ntt2458106,gnfJ4wcpQsk,\"While sparring with Nakabara's students, Casey's grief boils over into rage.\"\ntt2458106,LX4AIei6zUw,\"Realizing that two thugs had a hand in his wife's death, Casey pays them a visit.\"\ntt2458106,ygNoJlu743w,Casey has a disagreement with a couple of thugs.\ntt2458106,VMkhYJEjv7I,\"Casey goes undercover while on the hunt for Goro, which leads to him having to fight a gang of drug dealers while high on meth.\"\ntt2458106,gMODOv68SGE,Goro deals with a crony who was skimming a little too much from off the top.\ntt0040872,iFKyzbCLQQA,Keechie breaks the news to Bowie that they're having a baby.\ntt0040872,4J0fchFqprw,Bowie waits in the getaway car as T-Dub and Chicamaw rob a bank.\ntt0040872,e8mmLcViaGI,Bowie and Keechie make an impulsive decision to get married by Hawkins on the cheap.\ntt0040872,tRwyOQw5zcw,Bowie and Keechie rent a cabin from the nosy Lambert and his son Alvin.\ntt0040872,--oCWVOBuvA,Keechie tries to convince Bowie to go straight and live a law-abiding life.\ntt0040872,f8a97iauRtw,Bowie gets a ride from Keechie and reunites with Chicamaw and T-Dub.\ntt0040872,f6m4J0AfEOo,\"Bowie, T-Dub and Chicamaw flee on foot when their car breaks down following their escape from prison.\"\ntt0040872,0REROw4SOGc,Bowie agrees to help T-Dub and Chicamaw rob a bank.\ntt0040872,CK3cE7N1pzU,Bowie reunites with T-Dub and Chicamaw as they prepare for a bank robbery.\ntt0082332,Xpy157qTtng,Frank and Mary Ann are attacked by a Ninja that shows no mercy.\ntt0082332,XWxNXRPHQIQ,\"After Cole wins the final fight against Hasegawa, he helps him die with honor by chopping off his head.\"\ntt0082332,cRoIsrSzapo,\"Mr. Parker takes Mary Ann hostage in hopes of protecting himself and his boss, Venarius, against the deadly white ninja, Cole.\"\ntt0082332,ZrKUk6S3XSc,Cole goes full on ninja and displays his many skills in the art of death while taking out Venarius's henchmen.\ntt0082332,Xm5eKjy5MTg,Cole does some serious fighting in order to save Frank and Pee Wee.\ntt0082332,FARHf9b8zyk,Cole and Frank take down a group of thugs.\ntt0082332,BXq-jB4MZdU,A Ninja performs a demonstration of his talents for Mr. Parker.\ntt0082332,eYx5m_iT-1U,\"When The Hook insults Cole and tries kicking him out of the bar, he shows him who's boss by fighting all of his men.\"\ntt0082332,G_1jQkCRF58,Mary Ann points a gun at Cole when he steps on her property.\ntt0082332,pKjMt3cBv6g,Cole protects Mary Ann by fighting off some bad guys.\ntt0082332,wu-RfHKCK7Y,Cole makes his way through a series of ninjas and obstacles.\ntt0082332,-IIHYIZSFbk,Cole reviews the Nine Levels of Power to Komori and receives his ninja certificate.\ntt0082332,4RsVOfPT_is,Cole tests his limits in the jungle fighting numerous other ninjas on land and in water.\ntt1809398,jOLLiuCk420,\"Louis and the prisoners are allowed to bathe in the Hokura River, where they get final confirmation that the war is over.\"\ntt1809398,a2_9fQ0U57w,Mac runs out of energy after being lost at sea for over 40 days.\ntt1809398,XrBTDbxOZE8,\"Weak, starved and exhausted, Louis lifts and carries a plank above his head, in defiance of Watanabe.\"\ntt1809398,I6f8bYDvpKY,Watanabe forces Louis to run a foot race.\ntt1809398,qhgkpZecrTY,The Japanese government allows Louis to announce that he is alive on international radio.\ntt1809398,7ru6HnpJJP4,Watanabe orders all the American POWs at his camp to punch Louis in the face.\ntt1809398,1l1qpOrjsi4,\"At the Olympics, Louis Zamperini is the first American across the finish line, setting a record in the process.\"\ntt1809398,gpgsfivrruk,\"At the most trying time, Louis asks God for help, and relief comes in the form of rain.\"\ntt1809398,xSvW3Gxd-h0,\"When what seems like rescue is revealed to be a Japanese attacker, Louis, Phil, and Mac are forced to hide in shark-infested waters.\"\ntt1809398,QU677HiXf6M,\"After their plane crashes over the ocean, Louis, Phil, and Mac board a raft and attempt to survive on the open sea.\"\ntt1470023,lQ2RStfZii0,Vicki and MacGruber defeat Cunth with a little distraction from Piper.\ntt1470023,KTugpKzfZJk,\"MacGruber shares intimate information with Piper, but then uses him as a human shield when they are attacked.\"\ntt1470023,nrqg6wxuqFo,MacGruber realizes that Vicki loves him.\ntt1470023,iJiQsEZXz_8,MacGruber has sexy sex with Vicki St. Elmo.\ntt1470023,0WoyXBXCqdg,MacGruber and Cunth exchange insults at the party.\ntt1470023,9FKgmafi1p8,\"Vicki poses as MacGruber in a coffee shop, but the operation goes south fast.\"\ntt1470023,jWHcIO4y8kk,MacGruber shares his plan and his feelings on guns with Piper and Vicki.\ntt1470023,ZHCd8doza2M,MacGruber begs Piper to join his team.\ntt1470023,0kgLLa9gnsU,\"MacGruber assembles the best team of operatives ever, but it ends in disaster.\"\ntt1470023,zFbHwupcqpQ,Col. Jim Faith finds MacGruber in a monastery and asks him to come back into the service.\ntt1139797,vapcFQlS6Qo,Oskar is surrounded by bullies at the local fitness center swimming pool but he is saved by the vampire Eli.\ntt1139797,bdJt1Mggjl4,Virginia suffers after being bit by the vampire and asks to be exposed to sunlight.\ntt1139797,BUrDm2GmJ5I,Oskar protects Eli from a neighbor who wants to find the truth.\ntt1139797,AcJq5nGwm4U,\"During an ice skating field trip, the children find a frozen corpse of a murder victim and Oskar smacks a bully with a stick.\"\ntt1139797,JLTtgzY_7-Y,Oskar asks Eli to come in without an invitation and she almost dies.\ntt1139797,6i0sEgnPLms,Eli drops from above onto her victim.\ntt1139797,lmqQPyNsXpU,Virginia visits a friend's house and is immediately attacked by ferocious cats.\ntt1139797,J9z4myiIVww,Eli visits the hospital to see her burned helper Hakan. He helps her one last time.\ntt1139797,w-_BMZo7mik,Oskar asks Eli if she will be his girlfriend.\ntt1139797,GYJ-Z5o9gUM,\"Oskar buys Eli a candy and declares his love for her, but things are... complicated.\"\ntt1139797,u31Fyx8g5ZY,Eli gets to know Oskar as they play with a Rubik's cube.\ntt1139797,hiO38yFF-Q8,Eli murders a man and drinks his blood to satiate her thirst.\ntt0378109,XFTJJtOtFtI,\"Jared kills Bates with an oxygen tank, and Sam is nearly killed until a shark kills her attacker.\"\ntt0378109,8hGqSM0OV9U,\"Jared and Sam kill one of Bates' men, and the battle for control over the ship continues.\"\ntt0378109,KpM_NyYKwkE,Bates finds half of his cocaine floating in the ocean and Jared jumps into the water to destroy the rest.\ntt0378109,PzL7MICU_OI,Jared and Sam fight a bloody fight to take control over Bates and the boat; Sam delivers a nice final blow.\ntt0378109,93njceSaOMM,\"Primo chases Jared and causes an accident, but then Jared decides to face him man-to-Land Rover.\"\ntt0378109,k-RHqxyYzMo,\"Jared escapes from Bates and his men, and finds a clever hiding spot under the bow of the boat.\"\ntt0378109,UeCpUca9VUs,The group starts to research the treasure and finds some very valuable clues.\ntt0378109,gHQV6AMclGA,\"During an evening at home, Sam talks with Jared about treasures and love and what money can buy.\"\ntt0378109,-qijwXk_bnk,\"When Jared does some underwater exploring, he finds a wrecked airplane and brings his friends down to check it out.\"\ntt0378109,x2CizSzk9s4,\"The group argues about whether to keep a brick of cocaine that they found, but Sam wins in the end when she throws it overboard.\"\ntt0378109,WquPun-ky2Y,\"When the group explores the plane crash wreckage down below, they find not one, not two, but a giant stash of cocaine-filled packages.\"\ntt2322441,_msjEt4-jZc,Christian is unable to control himself when left alone with Anastasia in the elevator.\ntt2322441,JWLd18_ViOM,Anastasia realizes she's not cut out for Christian's desires.\ntt2322441,HOrCBUADkMM,Anastasia considers the terms of the contract that Christian has asked her to agree to.\ntt2322441,VkJAnikGNCQ,Anastasia tries to understand what makes Christian the way he is.\ntt2322441,xJOME7D6-ow,Anastasia and Christian argue about the complicated nature of their relationship.\ntt2322441,SeiltyhdQGg,\"After a night of heavy drinking, Anastasia wakes up to find herself in Christian's hotel room.\"\ntt2322441,RMRJQL65AqA,Christian takes Anastasia on a ride to Seattle in his helicopter.\ntt2322441,IWjPXaM20kY,Christian lets Anastasia in on his deep dark secret.\ntt2322441,XFK5SV1-Pzg,\"While conducting an interview for the school paper, Anastasia is introduced to the mysterious Christian Grey.\"\ntt2322441,X8YOtEocd6I,Christian visits the hardware store where Anastasia works to pick up some intriguing supplies.\ntt0478304,ICPNrxD783c,\"With his life crumbling around him, Mr. O'Brien tries to reconcile with his son, Young Jack.\"\ntt0478304,1PoAz1WNBdM,\"Young Jack plays a mean prank on his brother R.L., and broods on why he'd do such a thing.\"\ntt0478304,wsIybRQaDE4,\"In a surreal vision, Jack reconnects with his mother, and makes peace with his younger self.\"\ntt0478304,D4TfTzW8GVg,\"When Mr. O'Brien asserts his authority at the dinner table, his children stand up for themselves, much to his chagrin.\"\ntt0478304,c4Wls5pZlxQ,\"Mr. and Mrs. O'Brien fall in love and have a baby, perpetuating the cycle of life.\"\ntt0822832,EOO8TwyVFYI,John says his final good-bye to Marley.\ntt0822832,w9sO9o8LNvQ,\"Despite the multitude of problems with raising Marley, John finds himself oddly attached to the dog.\"\ntt0822832,99-v2bOxnJU,John surprises Jennifer with a puppy for her birthday.\ntt0822832,2jgk4c5V3b4,John begins to realize that Marley might be a bit of handful.\ntt0822832,Pn7M9PpQEgo,John and Jennifer take Marley to dog school with disastrous consequences.\ntt1131734,LQnfBdZnLmI,Needy explains the curse placed on Jennifer to her boyfriend Chip.\ntt1131734,_uhtsUzb7fg,Needy arrives just in time to find the demonically possessed Jennifer attempting to get a taste of Chip.\ntt1131734,k1MdKI8kiXU,\"When Jennifer shows up in Needy's bed, the two get very close.\"\ntt1131734,EVIsqHrME68,Jennifer enjoys her new possessed body and tells Needy all about it.\ntt1131734,_NcD2k_QmgQ,Jennifer is sacrificed to Satan by an indie band.\ntt0432283,ELqdLvz60zA,The animals' meeting with the Wolf proves a borderline religious experience.\ntt0432283,Mp1_PuUoSaM,\"When Rat threatens Ash, Mr. Fox and Mrs. Fox come to his rescue.\"\ntt0432283,AEocciZMBjc,\"With Bean pinning Mr. Fox down with rifle-fire, Ash finally wins his father's pride.\"\ntt0432283,HNPyZsPH8TI,\"Coach Skip teaches Kristofferson the ins and outs of Whack-Bat, much to Ash's chagrin.\"\ntt0432283,iuKNXP9LcSg,Badger explains to Mr. Fox the precariousness of his realty decision.\ntt1698648,zI6U8UWPhWk,\"When The Bousche comes home, the family gets an unexpected visitor.\"\ntt1698648,1hyzWfYu6J0,Imogene runs into her ex boyfriend Peter and she finds out who her true friends really are.\ntt1698648,-28eBo0EDDg,Zelda apologizes to Imogene for lying in her own way.\ntt1698648,t7mMEDZkDlY,Lee takes Imogene out clubbing.\ntt1698648,bJwzDAtwJQU,Ralph tries out his Human Shell in the Big Apple.\ntt1698648,C0uo35iCk0A,\"After a night at the club, Imogene and Lee spend the night together only to be caught in the morning by Zelda.\"\ntt1698648,swnHnXKbQPM,Imogene goes to see Lee's show.\ntt1698648,hYwxyijuhOQ,Imogene tries to convince Lee to take her to New York City.\ntt1698648,zQX5VL1XU5c,\"Imogene runs into an old high school friend, 'T-Rex' Rinaldi after accidenally running into a Porsche.\"\ntt1698648,VUqea11tvH0,Imogene and Ralph find out that their mother Zelda lied about their father's death.\ntt1698648,UsonrKXJoas,Imogene asks her mother Zelda about what happened last night.\ntt1698648,fhgqKH6V34k,\"After attempting suicide, Imogene is forced to go home with her eccentric mother, Zelda.\"\ntt0109370,aJVHnyq7Nz8,A newscaster's report from the border is heavily censored by the U.S. Government.\ntt1659337,4MTf0k1vqTk,\"While the gang plays Truth or Dare, Charlie reveals his true feelings towards Sam and the truth about his relationship with Mary Elizabeth.\"\ntt1659337,OMSkavUrzHM,\"After his breakdown, Patrick and Sam visit Charlie and revisit an old spot.\"\ntt1659337,9rTcIUk9Aio,\"After Sam leaves, Charlie has a mental breakdown.\"\ntt1659337,Ix8ShPSjmtE,Patrick and Brad get in a fight and Charlie intervenes.\ntt1592873,4DAJ2QupBUc,Lola gets angry when she finds out her mom read her diary.\ntt1592873,5DEINY4WTVY,\"Lola's devastated when she discovers Kyle having sex with Ashley in the school bathroom, but there might be more to this than meets the eye.\"\ntt0109370,o6hrLFJq63E,Gus briefs Stu on everything Canada has done to hurt the United States.\ntt1592873,kO3MXkSKwZs,\"Kyle's band sets Lola's heart aflutter, sparking romance.\"\ntt0109370,pbfBzWJVbX4,America broadcasts anti-Canadian propaganda to inflame its citizens.\ntt0109370,uxXMshs5exs,The President worries about the national polls and wishes for another Cold War to bring back his popularity.\ntt1659337,XO3-PumyjoI,\"Patrick, Sam and Charlie dance to \"\"Come On Eileen\"\" by Dexys Midnight Runners.\"\ntt0109370,8Q-DUxHMLvg,Boomer and his friends raid Canada to commit heinous crimes.\ntt1592873,-X9XaNXkvCI,\"Lola tries to make Kyle jealous by making out with Jeremy, an old flame, but even she can't hide from her heart.\"\ntt1659337,b10LyOeq5Hs,Charlie says goodbye to Sam.\ntt0109370,IWpThrDfQEI,The team looks for Honey at a Canadian jail.\ntt1659337,tMaXLU_KG-k,Sam gives Charlie a birthday present.\ntt0109370,_nk2ZNKOxCY,The President considers starting a war for a boost in the polls.\ntt1592873,sXrZaiADkTU,\"Lola's party moves things forward with Kyle, but sets her back with her mom.\"\ntt1592873,1KPTpxxZJRs,\"Lola gains a lasting relationship with Kyle, Anne gains a lasting relationship with James, and Lola and Anne gain a lasting relationship with each other.\"\ntt1659337,0YDejqKggWA,Charlie and Sam kiss for the first time.\ntt1659337,axcECZzlPVI,Charlie joins in as Rocky in the gang's performance of The Rocky Horror Picture Show.\ntt1592873,yVAFP91HfBs,\"Lola realizes who Anne, her mother, has been sleeping with: Allen, Anna's ex-husband.\"\ntt0109370,SRMuzjyoMRg,The President and his staff try to convince the Russians to stage a little tension with the United States.\ntt1592873,z0bO_2sgBZA,\"In the heart of France, Lola sleeps with Kyle for the very first time while Lloyd gets acquainted with Lily.\"\ntt1659337,MmPU9OjE2X8,Patrick and Sam welcome Charlie to their friend group.\ntt1592873,Ve1oHq8JIwo,\"Young love is in the air for Lola, Kyle, and Emily, but will everything work out?\"\ntt1659337,kMalrBgdRvI,\"Charlie, Patrick and Sam drive through the tunnel.\"\ntt0109370,eCS7qPuOXQI,Boomer starts a brawl at a hockey game when he insults Canadian beer.\ntt0109370,eZXgYKx0aQI,Stu Smiley convinces the President of Canada's evils.\ntt1592873,iWII1mMM9HY,\"Lola gossips about Ashley, her \"\"enemy\"\" with her friends, leading to friction with Chad in gym class.\"\ntt1592873,U8VDmQw-FAo,Lola's first day of school is a bit of a downer.\ntt0109370,UdZi8K3PLs0,Kabral wonders why the black guy always has to die first in movies.\ntt0109370,jyO1ILQAGsU,A Canadian officer forces Bud to paint French graffiti on his truck to go along with the English graffiti.\ntt1735898,eRqgQiBel8I,Snow White confronts Queen Ravenna while the Huntsman and others fight off glass monsters.\ntt1735898,Ehaogw2TNOQ,\"Drunk and mourning, the Huntsman vists Snow White's body.\"\ntt1735898,LoDGQLw_iLM,As The Huntsman and the Dwarves travel through a Fairy Sanctuary with Snow White they realize that she is the one destined to defeat the queen.\ntt1735898,VHsRuDuQKo8,The Huntsman faces off against the Queen's brother Finn.\ntt1735898,104ZQtfYDso,\"At the edge of the Dark Forest, Snow White and The Huntsman run into a Troll.\"\ntt1735898,G0y14S8h4ic,Queen Ravenna reveals herself to Snow White after tricking her into eating a poisioned apple.\ntt1735898,d9YfIZP8qPE,Queen Ravenna keeps herself youthful and powerful as she deals with two captured criminals.\ntt1735898,FHDq1ehz_cg,\"After taking over the kingdom, Queen Ravenna brings in her magic mirror.\"\ntt1735898,kaWU7XlPxV4,King Magnus leads an attack against a dark and mysterious army that breaks like glass.\ntt1735898,VGA1SZwZC7A,\"The Huntsman finds Snow White, but is then betrayed by the Queen's men.\"\ntt1935896,GxA7BICC_zM,\"Jon Schnepp struggles to find a subject for W, leading to a short,\"\"W is for WTF!,\"\" that pretty much speaks for itself.\"\ntt1935896,keumDslluNk,\"Srdjan Spasojevic's expressionistic and experimental \"\"R is for Removed\"\" explores the gruesome and often sacrificial nature of filmmaking.\"\ntt1935896,iIUhwUKRg28,\"Lee Hardcastle's \"\"T is for Toilet\"\" is a pants-wetting take on the horrors of potty training.\"\ntt1935896,BNHVkYhC8Po,\"Kaare Andrews' \"\"V is for Vagitus \"\" portrays a horrifying dystopia where human reproduction is strictly controlled by the government.\"\ntt1935896,pv7lZRQDygc,\"A woman tries to outrace Death in Jake West's \"\"S is for Speed.\"\"\"\ntt1935896,0JRdzrh9in4,\"Noboru Iguchi's \"\"F is for Fart\"\" explores love and metaphysical relationships through lots and lots of farting.\"\ntt1935896,w2fpC1izWPA,\"In Marcel Sarmiento's \"\"D is for Dogfight\"\", a dog-fighting boxer confronts a dog that might be more than a match for him.\"\ntt1935896,zZSiCTrPiXU,\"In Thomas Malling's \"\"H is for Hydro-Electric Diffusion,\"\" A Bulldog Fighter Pilot gets more than he bargained for when he visits a Vixen's strip club.\"\ntt1935896,jBuygQyZbf4,\"Andres Morgenthaler's \"\"K is for Klutz\"\" deals with one devilish turd.\"\ntt1935896,2COP58ej7QA,\"In Nacho Vigalondo's \"\"A is for Apocalypse,\"\" A woman's rage for her husband boils over, but much later than she'd expected.\"\ntt0113161,O31rBYqYkuQ,Ray Bones threatens Harry and blows away Ronnie.\ntt0113161,bkeLkORd2y4,\"Chili is a producer on his movie directed by Penny Marshall, staring Martin and Harvey Keitel as Ray Bones.\"\ntt0113161,zSBXBMVa_Y0,Chili shows Bear that he is working for the wrong man.\ntt0113161,0H8EmzfVSbg,\"Chili challenges Martin to play a loan shark, then gives him some true-to-life direction.\"\ntt0113161,r1scNthC8NI,\"When Chili's lunch gets crashed by Bo and his stuntman heavy, Chili throws Bear down the stairs.\"\ntt0113161,mohoyRj_VpU,Chili shows Martin Weir his rental car.\ntt0113161,EP74OZdI5d8,\"After breaking into Karen's house, Chili works his way into her good graces by complimenting her B-movie work.\"\ntt0113161,h_htCIiCXfE,\"When Bo pays a fact-finding visit to Chili, their conversation turns to making movies until Chili blows him off.\"\ntt0113161,IsKNaQuuL1g,\"When some investors pay an angry visit to Harry, Chili sends a message of his own.\"\ntt0113161,HHSAml1BAR4,\"While trying to close the books on a dead man, Bones gets into a semantic argument with Chili about \"\"i.e.\"\" and \"\"e.g.\"\"\"\ntt0113161,VNUBj_27Z-A,Chili surprises Harry at his house to collect an outstanding debt.\ntt0113161,rh8OdlSXiDo,Chili goes to get his coat from coat check only to find that it's been taken by Ray Bones... so he pays Bones a visit.\ntt0408524,cjIv83h6Tcc,The Bears celebrate second place with non-alcohlic beer after Coach Bullock gives a condescending post-game speech.\ntt0408524,O87gR6xJ9Hw,Garo bats for the Bears on their last out of the championship game.\ntt0408524,7WzJb1l2wtg,The benches clear after Amanda takes a hard hit from a Yankee player.\ntt0408524,yan-Tdiyrig,A rivarly is sparked after Coach Buttermaker refuses to reciprocate Coach Bullock's apology.\ntt0408524,5aBVbBiojuM,Coach Buttermaker looks on as the Bears lose miserably to the Yankees in their first game of the season.\ntt0408524,XOUauBpPRNk,A new player arrives after Coach Buttermaker distributes athletic cups to his team.\ntt0408524,PwfZYNFfEfM,An intoxicated Coach Buttermaker throws batting practice while drinking some beers.\ntt0408524,h2Fbdx7N2Kw,Lupus gives Coach Buttermaker a scare while he drives the team to batting practice.\ntt0408524,fCuYlKKFAO8,Coach Buttermaker holds the first practice with his new team.\ntt1496422,9Fj1STjqFDU,\"Jack eludes Hillary and sees that he comes to justice, but at a heartwrenching cost.\"\ntt1496422,iso415ggxMg,\"Hillary, Charlotte's paramour, finally gets out of prison, but he's much more than she can handle.\"\ntt1496422,F5Hme0QUyXI,Jack races to Ward's aid after he's raped and tortured.\ntt1496422,2l1u5Q9AYjM,\"Jack James tries to stop Yardley Acheman from publishing an incriminating article, but gets more than he bargained for.\"\ntt1496422,PeFLEFUNxzc,\"Anita lets Jack have it after he used the \"\"n\"\" word, and he tries to make amends.\"\ntt1496422,pzrbB0XK9eI,\"Charlotte seduces Jack, which is an oddly metaphysical event for him.\"\ntt1496422,JyVZgdLjGOo,\"Charlotte meets her beau Hillary in prison, and the two get as acquainted as they possibly can.\"\ntt1496422,OtsMWS5Z2Oc,Charlotte has an unconventional remedy for Jack's jellyfish stings.\ntt1496422,QQCeQOAVWFw,\"Ward and Jack question Tyree van Wetter about his nephew Hillary, but he's even less approachable than he looks.\"\ntt1496422,J2vVweGS13Y,Charlotte cures Jack's depression by dancing with him in the rain.\ntt1496422,GiQJxD_bQCI,\"Jack daydreams about Charlotte's stunning attire, but reality might be better than fantasy.\"\ntt1496422,ucuU6zGryPE,\"Jack drives Charlotte to prison where she can be close to her paramour-by-correspondance, but she gets excited when she learns that Jack's got a dark side.\"\ntt0120184,3k9G5rq86PU,Beth locks Norman in the laboratory believing him to be manifesting bad things just like Harry did.\ntt0120184,xnV6hJs2Zu0,\"Norman, Harry, and Beth get trapped in a fear manifested illusion while trying to make it to the surface.\"\ntt0120184,l6cFM5Ubilw,\"Alice, a Navy technician, is attacked by an unusually large group of jellyfish while Captain Harold Barnes and Ted watch helplessly.\"\ntt0120184,evWlSySuiII,\"While coming back from the emergency sub, Norman has some trouble with his diving suit and then is attacked by a sea snake.\"\ntt0120184,iY2xD9VKDiE,A fire starts to destroy the Habitat after an attack from a giant squid. Ted and Harold are both killed in the chaos.\ntt0120184,jCXcE6DvgLw,Norman and Beth investigate a sound outside the station only to discover it is the corpse of the other technician.\ntt0120184,2GLDqvA6tKI,\"Harry, Norman, Ted and the others communicate with what they believe is an alien being that has taken over their computer.\"\ntt0120184,M5UXOwphsLk,\"While investigating what they thought was an alien craft, Norman, Harry, Beth and others come across a strange object.\"\ntt0120184,vrVDJcw40BU,\"A team made up of a psychologist, marine biologist, mathematician and an astrophysicist is asked to investigate a crashed spaceship.\"\ntt0120184,KOxmixap5yw,Harry explains his theories about the alien Sphere to Norman.\ntt0078227,qkVImymH0A0,\"Shake says \"\"I don't\"\" instead of \"\"I do\"\" and a riot in the church follows between the guests in attendance.\"\ntt0078227,NeTnaYH-08o,Billy Clyde Puckett runs into the end zone for the game winning touchdown.\ntt0078227,PSG5uNsnkks,Dreamer and Billy engage in a pre-game spiritual discussion.\ntt0078227,01OfrTMVeD8,Billy gets advice from Big Ed about the big game.\ntt0078227,0zROMB5cxBA,Billy gets a visit and a big announcement from Barbara and Shake while he's on the toilet.\ntt0078227,uF7ftHMCN1w,\"When T.J. holds a girl over the edge of a house, Billy sends Shake to help talk him down.\"\ntt0078227,746lMCHNZeU,Billy Clyde has a debate with Bud about the lives of athletes versus the lives of intellectuals.\ntt0078227,69bd2hhDLF0,\"The night before a big game Billy Clyde Puckett puts the move on a big beautiful woman, Earlene Emery at the bar.\"\ntt0078227,nFJvGENqc20,Shake pulls a few gags as he acts in a commercial for Mitchum deodorant.\ntt2450186,x63YlKqGZhI,\"A teen girl, her brother and their dog hide from aliens that abducted their friends.\"\ntt2450186,fyXyDW0pU7s,A sister and her boyfriend interrupt her younger brother's slumber party only to find out that some new guests have arrived.\ntt2450186,_7aTnDiBVEQ,The only surviving member of a news crew attempts to escape from a cult that has turned into zombies after releasing a demon.\ntt2450186,F_BH945RjPM,A Biker comes across a screaming woman while going for a ride in the park.\ntt2450186,ZmNGTR9Y7f0,A news crew gets caught up in the chaos of a cult commiting mass suicide.\ntt2450186,BhSNoxyn9ao,A news cameraman attempts to rescue a pregnant friend from a cult.\ntt2450186,9-NoQwwRDJY,A couple biking through the woods stops when they see a body on the ground.\ntt2450186,PDSgyYfLpdo,Zombies attack a little girl's birthday party in the park.\ntt2450186,lYZKtD3RwAw,\"After a news crew infiltrates a cult, things start to go very wrong.\"\ntt2450186,MUlVu0L0A0I,\"Herman's new ocular implant allows him to see ghosts, but they can also see him.\"\ntt2105044,Rdxv6jaQZKM,\"Tyler, Matt and two other friends attempt to rescue a girl from a cult that they've stumbled upon.\"\ntt2105044,60gXuCsTsPE,\"After rescuing a mysterious girl from a cult in a haunted house, Tyler, Matt and their friends run into problems trying to find a hospital.\"\ntt2105044,ilYccsPDTXM,Wendy thinks that she has finally killed the mysterious force that murdered her friends.\ntt2105044,Ge-zBQLa7FY,Emily attempts to contact the beings in her apartment while her boyfriend James watches through a video chat.\ntt2105044,HAW15MhSWuM,Wendy reveals to Joey that she brought him and his friends to the woods to lure out a mysterious killer.\ntt2105044,E7fcdG_azPE,\"While Sam and his wife Stephanie sleep, someone breaks into the motel room and stabs Sam in the neck.\"\ntt2105044,q2vaQZMf7LI,Emily tells her boyfriend James that her apartment is haunted while they video chat.\ntt2105044,6NbloMPJuRY,Emily calls up James late one night when she starts to hear nosies coming from her living room.\ntt2105044,DslpNlhAfLo,Spider and Samantha are attacked by a figure that shows up on video only as a tracking error.\ntt2105044,5ql5X72wS0I,Sam and Stephanie sleep while someone breaks into their motel room.\ntt0835418,n2GAcA_P9Tk,\"Tommy and his friends enlist the help of Ron Jon, who may be more volatile than they anticipated.\"\ntt0835418,TGAHQorruwA,\"Everything works out in the end, allowing Tommy and Audrey to bet on their baby in the first annual baby races.\"\ntt0835418,fpgKY0I3taA,\"And so began the great sperm bank caper, lead by the unhinged Ron Jon.\"\ntt0835418,SjfMBu6JQ-0,Audrey stuns Tommy with some big news.\ntt0835418,rvImiPkES20,Things get heated between Tommy and the Sperm Bank Receptionist.\ntt0835418,JupxjoCyrBE,\"Ron Jon tries to strategize, but Tommy and his friends make that difficult.\"\ntt0835418,A-zeWjOl0rE,\"Tommy attempts to get his sperm back from its surrogate family, Leslie Jenkins and Jefferey, who make a startling deal with him.\"\ntt0835418,X2zBKcPda98,Audrey makes the mistake of telling Karen and Mona about Tommy's troubles in the sack.\ntt0835418,6df7al2Ez0U,\"Dr. Hickery details Tommy's low sperm count with him and Audrey, and lays out a few troubling objects.\"\ntt0835418,O5TthS_9-9s,\"Tommy has a glorious fantasy about Audrey, but some Christians would rather have him bask in the glory of Jesus Christ.\"\ntt1155056,RKcDDLS3aqQ,\"When Sydney and Peter see Lou Ferrigno eating with Tevin, Sydney decides to confront them.\"\ntt1155056,HnKmwbVpRno,\"After a run-in with an irate jogger, Sydney teaches Peter how to yell.\"\ntt1155056,MvDNoWSnSsU,\"Peter admits to Zooey that he's been trying to make male friends, and that one of them kissed him.\"\ntt1155056,f_zpkjkB8ac,Peter and Zooey take Sydney and Hailey on a double date to play golf.\ntt1155056,kH6SUxCwXzs,\"As Peter tries on a tuxedo, Sydney encourages him to loosen up and enjoy himself.\"\ntt1155056,K6bTibRdNxE,Peter meets Sydney at Lou Ferrigno's open house.\ntt1155056,SV6dKGbbkIk,Peter overhears Zooey and her bridal party discussing his lack of male friends.\ntt1155056,GCM5SoA82w4,\"Peter builds up the nerve to call Sydney on the phone, and he ends up leaving an awkward, rambling message.\"\ntt1155056,sb8IU6c5obc,\"Peter takes Zooey to his parents' house for dinner, where his family confirms that Peter never had any close male friends.\"\ntt3152624,Y7gTgzqJD-w,\"With an awkwardly romantic gesture, Amy proves to Aaron that she's willing to do what it takes to be with him.\"\ntt3152624,4WCDgJSCQpc,LeBron asks Aaron about his relationship details when Aaron unexpectedly scores.\ntt3152624,-y6RPL5v1bU,Aaron gives Amy's dad Gordon stitches and Amy gets a little closer to accepting Aaron's request to date her.\ntt3152624,dQQd6s5gYhk,Amy doesn't understand her feelings for Aaron and is even more shocked when she finds out they're mutual.\ntt3152624,zie94YV7W4Y,LeBron encourages his friend Aaron to date using some slightly irrelevant examples.\ntt3152624,iHheroBxkuE,\"After Amy and Aaron have sex for the first time, Amy adjusts to sleeping in someone else's bed.\"\ntt3152624,ZDbhvMyusZ8,Amy and Steven have an awkward sexual encounter.\ntt3152624,JNRFWtS0LlM,Amy jokes around while Aaron tries to show her some physical therapy equipment.\ntt3152624,8wyhEmMY_yc,Amy interviews Aaron for the first time. It's rather awkward.\ntt3152624,OCvg2G2SEhU,Amy and Steven get into a disruptive argument in a movie theater.\ntt2872732,sUad0ZL-nBU,Lucy hits 100% cerebral capacity and vanishes into the spacetime continuum.\ntt2872732,7Dxxk1az9Uo,Lucy races to the hospital to get the drugs before Jang's men can escape.\ntt2872732,LWG3aFFhg8k,Lucy nearly reaches 100% cerebral capacity and travels through spacetime.\ntt2872732,vwObck9twes,Lucy explains to Professor Norman and his colleagues the truth about the universe.\ntt2872732,GXumhcRLN_E,Lucy begins to disintegrate after her body fails to process a taste of champagne.\ntt2872732,aIBT3l54BAg,Lucy uses her new telekinetic ablities to retrieve the case from Jang's henchmen.\ntt2872732,Dvi6n89JWUY,Lucy breaks into Jang's hotel and uses her telepathic abilities to find the locations of the other drug carriers.\ntt2872732,nELxnSK1SHk,Lucy looks to Professor Norman for advice on her ever growing wealth of knowledge.\ntt2872732,dTGuyNnJJFs,\"While the doctor removes the bag of CPH4 out of her abdomen, Lucy makes an emotional call to her mother.\"\ntt2872732,tsQS1b-fNSs,Armed with her new abilities Lucy kills her captors and escapes captivity.\ntt2004420,Vx357DNh0vw,Mac and Teddy duke it out throughout the frat house.\ntt2004420,03WbdaZCGAA,Mac and Kelly try to rid themselves of Delta Psi forever.\ntt2004420,vKMMeOLK9Y4,\"While Mac distracts Teddy with a dance off, Kelly manipulates Pete and Brooke into hoooking up.\"\ntt2004420,xrbaFa8zV_o,\"When Delta Psi's party gets too loud, Mac and Kelly call the cops to shut them down.\"\ntt2004420,J1wEoCLDl9Y,Teddy gets his revenge against Mac for trying to ruin Delta Psi.\ntt2004420,1uX_OAhcgb0,\"Delta Psi throws a Robert De Niro party, and Mac and Kelly deal with the aftermath.\"\ntt2004420,bLD14JwSiYs,Mac and Kelly relive their younger days and party with the Delta Psi bros.\ntt2004420,OMHAwJjp-YI,Teddy and Pete explain the Delta Psi's legacy to their frat brothers.\ntt2004420,89qTnQ_TK4c,Mac and Kelly introduce themselves to the fratty new neighbors.\ntt2004420,jfA6jr-y7_A,\"Struggling with the restrictions of parenthood, Mac and Kelly try to reclaim their younger days by taking their baby to a rave.\"\ntt2096672,uIEr1T_jZlQ,Harry reveals the prank he played on Lloyd.\ntt2096672,aWaZMXiimms,Lloyd and Harry play a prank on Ms. Sourpuss in order to get free drinks.\ntt2096672,ULCyXL8cTFU,\"Travis plays a mean prank on Lloyd and Harry, but they get their revenge.\"\ntt2096672,VUZBpBTqRJY,Lloyd convinces an elderly woman to give up her hearing aids.\ntt2096672,6v098-aMBj4,Lloyd fantasizes about making Penny his girlfriend.\ntt2096672,DdGYUf-E48g,Lloyd and Harry teach Travis a new car game.\ntt2096672,p6dUf7YRWao,Harry and Lloyd set off on a road trip to meet Harry's daughter.\ntt2096672,Qwyo6C87zdE,Harry visits his ill friend Lloyd who has been playing a prank on him for 20 years.\ntt2096672,EJFm05MPSDQ,Harry fantasizes about what kind of dad he would have been.\ntt2096672,1y20NC1_MGQ,Lloyd comes up with a plan to find Harry's kid.\ntt1596350,C5pZipJa09s,Foster interrupts Tuck's date with Lauren with explosive consequences.\ntt1596350,7d7J-rlXWvc,\"In the middle of a high speed shootout, Lauren realizes that she's smack in the middle of Foster and Tuck's partnership.\"\ntt1596350,_n3aOgYXQ6o,Foster and Tuck eavesdrop on Lauren's conversation with Trish about their romantic and sexual potential.\ntt1412386,VUv6vjIidho,Graham explains to Evelyn that he is gay and is in India in an attempt to reconnect with a lover from his youth.\ntt1412386,gIdOE4SoDfU,\"After professing his love to Sunaina, Sonny stands up to Mrs. Kapoor's refusal.\"\ntt1412386,EWQsR8em1BM,Evelyn teaches Sunaina and her coworkers how to successfully negotiate a telemarketing call.\ntt0356680,3lgcViU45Fs,Everyone's bitterness comes to a head when Meredith's insecurities come out at the same time as questions about her late night activies with Ben.\ntt0356680,MB5PMwcYLqg,\"Meredith makes the mother of all insults when talking about Thad's homosexuality, and inadvertantly his deafness.\"\ntt0356680,Mhev_TsgOBw,\"When Meredith creates a massive social faux pas, the family steps in to cover.\"\ntt2382009,lWERfZYWdA4,\"P learns the truth behind Joe's manipulation, but instead of being angry, she is in love with Joe.\"\ntt2382009,KY7hswfdxI4,Joe is excited to share with P what her father taught her about soul trees.\ntt2382009,Yauy9nMQU04,Joe goes to see a sadomasochist who finally accepts her into his twisted world.\ntt2382009,x2cNjm0VUmY,\"When Seligman objects to Joe using the word \"\"negro\"\", she argues that political correctness is another form of hypocrisy.\"\ntt2382009,b_2-97kqlzs,Jerme is jealous of the time Joe is spending with K and neglecting their family so he gives her an ultimatum.\ntt2382009,xQ6yM4Dxpbs,Joe admits that she had pity on a pedophile simply because he had repressed his sexual desire his entire life.\ntt2382009,zdbOXyz1gpg,\"Joe attends a sex addiction therapy group, but realizes that she is not ashamed of her lust.\"\ntt2382009,KRyazQjCRD8,Joe exceeds Jerme's challenge to place a spoon in her vagina.\ntt2382009,_RD0zpFbSmY,Jerme admits that he cannot satisfy Joe sexually and allows her to see other men.\ntt2382009,HLpC0bnO5_o,Seligman explains that he is asexual and has no sexual desire.\ntt1091191,2cRMH4HXfzg,Marcus recounts the lessons he learned from the battle with his brothers on the mountain.\ntt1091191,3bmDhfEtNh0,Military personnel fight their way through the village to bring Marcus home.\ntt1091191,f69ceThb6ec,\"Alone and exhausted, Marcus is rescued by a kindly Afghan, Gulab.\"\ntt1091191,Q_j14lseORE,Terrorists discover where Marcus is hiding and attempt to murder him.\ntt1091191,Hdmi1UbW4Yk,\"After their evac fails, Axe engages in a deadly firefight with the terrorists.\"\ntt1091191,8PzQmtwNeXM,Mikey fights his way to the peak to make the call for evacuation while Marcus and Axe back him up.\ntt1091191,6cxpiPSZHmE,\"Rescue copters arrive for Marcus and Axe, but they are forced to evacuate.\"\ntt1091191,QJwdXqGBEPQ,\"Marcus, Mikey, and the rest of the team discuss how best to handle the hostages they have taken.\"\ntt1091191,iNLZ1J_Gslg,Petty Officer Shane Patton recites his creed as he is initiated into his crew of Navy SEALs.\ntt1091191,c_k5BK-ONiE,\"Under heavy fire, Marcus and his brothers in arms are forced to fall back to the only space they have left, over a cliff.\"\ntt1937390,fJpdVdl29Mw,\"Joe has trouble balancing her life, but is happy to run into Jerme again.\"\ntt1937390,ficjws23Qjk,Joe says goodbye to her father who is dying in the hospital.\ntt1937390,sKHJuOqcvOg,\"Young Joe gets a new job and discovers that her boss is the man who took her virginity, Jerme.\"\ntt1937390,5C7dB-dOS_U,Mrs. H continues the emotional barrage of her husband and his mistress.\ntt1937390,FB1Go2JVVqc,\"Joe admits that she didn't care about ruining Mr. H's marriage, but she still felt lonely.\"\ntt1937390,0mE11Cy_xAo,Mrs. H finds her husband has left her for Joe and brings her children to say goodbye.\ntt1937390,Kcv1B1aZIvs,Young Joe and B form a club against traditional notions of romance and love.\ntt1937390,pxOZAWSn-dc,B challenges Young Joe to have sex with a married man.\ntt2349460,OJiN41xn8iY,Grace finds fulfillment being engaged to Quentin and performing again with her father.\ntt1937390,GexB78wQ6Qw,Joe is shocked that Seligman does not judge her morally for her sordid past.\ntt2349460,7kGm_xBgi1k,\"Grace returns to her family, singing a song of faith, love and apology.\"\ntt1937390,KsZ3SpIoNos,Young Joe and her friend B have a competition to see who can have the most sex on a train.\ntt2349460,8cAlXSNQeUY,\"Praying in her moment of deepest need, Grace finds the strength to play the hardest show of her life.\"\ntt2349460,H1rttoUCeUg,\"Grace turns to her friend, Quentin, who gives her the advice that she knew all along in her heart.\"\ntt2349460,GKsKm9KYbaU,\"Grace blows away her first concert, but isn't ready to face her father.\"\ntt2349460,C4UKfmu_m8I,\"Grace's first performance starts a little weak, but her voice and spirit soon kick into high gear.\"\ntt2349460,xpKYkGHWB7E,Grace learns some harrowing truths from her idol Renae Taylor and Jay Grayson.\ntt2349460,qB78U2aWihU,\"Realizing that Frank Mostin's record company might just want a cover of her father's- song, Grace records one without his knowledge.\"\ntt2349460,5rkVGXHv2Ow,\"When Grace disrespects her mother Michelle Trey, her father Johnny Trey gives an ultimatum.\"\ntt2349460,1YklLet-e8s,\"Frank Mostin gives Grace a warm welcome to Los Angeles, but not everyone is happy with the way she got there.\"\ntt1821694,9nvHAma_Lh0,Victoria and Han dispatch bad guys while Frank and Marvin try to disarm the bomb in their helicopter.\ntt1821694,M2_cj-txN9A,\"Frank, Marvin, Victoria, Han and Sarah get the last laugh on Dr. Bailey.\"\ntt1821694,uf-v_lzbcp0,Frank has a brutal fight with Han in a Moscow airport.\ntt1821694,RlPspkeaFrU,Marvin gives Frank relationship advice for Sarah before Han arrives to ruin everyone's day.\ntt1821694,2ZpWLuAc7LE,\"Han gets the drop on Frank, Marvin and Sarah in Moscow.\"\ntt1821694,9UNV2c-A4BU,Victoria has a smashing plan for breaking Dr. Edward Bailey out of an asylum for the criminally insane.\ntt1821694,rCCCJ2tXF7A,Sarah and Marvin compete with Frank and Katja to capture The Frog in a high speed chase through Paris.\ntt1821694,PurkHHO7Gcc,\"Jack Horton interrogates Frank Moses, threatening his wife.\"\ntt1821694,xP7ctkX_Nm8,\"Sarah isn't too thrilled to meet Katya, Frank Moses' old flame.\"\ntt1821694,M9F-ZtKswww,Sarah surprises everyone with her excellent interrogation skills.\ntt1879032,UrRDXFXZUhw,Lindsey and Ben stand back and watch the fight between God and Satan.\ntt1879032,EV3y3ehKePA,God scolds Ben and Lindsey for ruining his plan for humanity.\ntt1879032,mEiLmu1IF5E,Ben and Lindsey accidently shoot Jesus out of the sky.\ntt1879032,obeGwYOdAPc,Lindsey and Ben struggle to keep the Beast down for good.\ntt1879032,o3vv1SPEv1c,The Beast lets Lindsey know exactly how much he wants to touch her booty.\ntt1879032,drTH0CDFgx8,Lindsey and Ben try to get the help of their undead neighbor.\ntt1879032,dDH3nlKHRQ8,Ben is ashamed that his father completely supports the Anti-Christ because he is paying the bills.\ntt1879032,-i6m1i3JLaM,\"The Beast wonders, who really is a sexy beast?\"\ntt1879032,wDsYB_uRbaE,Lindsey is given an ultimatum by the Beast.\ntt1879032,G4OAR22W7Sc,Lindsey's mom gets sent back to Earth after being raptured. Then they experience a plague of annoying locusts.\ntt1879032,KVu2o2fTKlc,Lindsey and Ben try to warn Trevor about the fiery rocks falling from the sky.\ntt1879032,ddQniqjrVdo,One thing that wasn't predicted in the Book of Revelation: foul-mouthed Crows.\ntt1913166,hsxRROsF4D0,\"Abby Russell manages to escape the hospital, but she may not be able to escape the law.\"\ntt1913166,x8tbSHuoB9E,Danni and Steve race to stop Abby Russell's massacre.\ntt1913166,CBS7b7HPuCo,Dr. Morris learns the hard way why he should never blackmail Nurse Abby Russell.\ntt1913166,FrGGFHPDN3A,\"Danni confronts Abby Russell in the hospital, only for it to spiral out of control.\"\ntt1913166,Rl-Fx-2zzdQ,Danni learns young Abby's horrifying origin story\ntt1913166,faEbd7LEDOw,\"Abby Russell's harrassment of Danni deepens, but even she's not prepared for the new HR woman, Rachel Adams.\"\ntt1913166,r1mN6K60148,Danni is awoken in the middle of the night by a video chat from the psychotic Abby Russell and a very drunk Rachel.\ntt1913166,9qrDi2o-eEw,Abby Russell gets all of Larry Cook's engines going.\ntt1913166,i8BG2g9YJAo,Abby Russell makes sure Fred's night ends in a climax he'll never forget.\ntt1913166,eKCpwUXh_Qs,Abby Russell's sexual manipulation of Danni intensifies.\ntt1704573,25CbQ5zMNfU,Bernie tells his friend that jail isn't that bad.\ntt1704573,6ObWyt4Hfaw,\"Bernie tries to cover up Marjorie Nugent's death, but Lloyd Hornbuckle gets suspicious.\"\ntt1704573,3IklTegWKfw,\"After finding her body, Bernie confesses to Mrs. Nugent's murder.\"\ntt1704573,KQz3KBKMFg4,Bernie confronts Marjorie after she fires her black gardener.\ntt1704573,iSIDCcqERkI,Lloyd Hornbuckle and Sheriff Huckabee break into Marjorie Nugent's home and find a surprise in the meat freezer.\ntt1704573,GVmIqRcglvE,A townsperson of Carthage describes how Texas could actually be five different states.\ntt1704573,7H_6ZZLNsvc,Marjorie Nugent becomes increasingly dependent on Bernie and tension grows in their relationship.\ntt1704573,U1WzINCahpw,\"The townspeople of Carthage, including Prosecutor Danny Buck, speculate on the nature of Bernie and Mrs. Nugent's relationship.\"\ntt1704573,3GvvMpMUwQc,One day Bernie snaps and takes it out on Marjorie Nugent.\ntt1704573,oI2bCE3FNZk,\"Bernie meets Marjorie Nugent at her husband's funeral, but the townspeople really hate her.\"\ntt1704573,cr18oXaI02Q,Don Leggett reminisces on his first impressions of Bernie.\ntt1704573,n2dBpP0yhUs,Bernie Tiede gives a demonstration on how you properly cosmetize a corpse for viewing.\ntt1297919,zVBa2vcgozs,\"Brant pursues Weiss all over London, leading over rooftops, bridges, and into a trainyard.\"\ntt1297919,fbS0gOz76iw,\"Beaten to a pulp by the police, Weiss thinks he has Brant and Nash right where he wants them.\"\ntt1297919,t1-maJWU3ag,Radnor breaks into the killer's car and reports his findings to Dunlop.\ntt1297919,oQ39ssiQ-4A,Radnor pays the price for poking his nose in the business of the killer.\ntt1297919,52QPxxtu1-s,\"Weiss attacks Falls, but it ends badly for both of them.\"\ntt1297919,0Y_kftjPpUc,\"When Brant reports his fatigue and woes, Nash responds with his own surprising tale of darkness.\"\ntt1297919,Z1Zrfm1Ylro,\"When Brant encounters some thugs stealing a car, he introduces them to the Irish sport of Hurley.\"\ntt1297919,SoFgHbVPrSk,\"The killer, Weiss, follows Roberts home with chilling results.\"\ntt1297919,JTJKIuXBey0,\"News reporter Dunlop gets a disturbing phone call fom the shooter, and makes an even more disturbing decision.\"\ntt1297919,XN0tr43oqjI,\"When Radnor isn't forthcoming with information, Brant has means of loosening his lips.\"\ntt0087985,Xt2JzDaHiNM,\"When Matt is wounded in the attack on the station, Jed carries his brother's body past the enemy Captain who shows mercy.\"\ntt0087985,a1iQDKCkh6k,Andy's daring assault on a Russian tank gets him killed by a grenade.\ntt0087985,3xmFjLSU7MA,\"Two Soviet gunships make a surprise ambush on the Wolverines, fatally shooting Toni.\"\ntt0087985,p4JPMo4bMa4,Robert faces down two Russian gunships as he makes an heroic last stand.\ntt0087985,a1Bx9nyw35w,\"The Wolverines employ the art of guerilla warfare, ambushing the enemy and quickly disappearing before reinforcements arrive.\"\ntt0087985,0f2bU9SzCzs,\"Following an attack plan designed by Andy, the Wolverines ambush a prison camp, liberating the American prisoners and destroying the Russian's jets.\"\ntt0087985,S7GMNTJa5zQ,\"The Wolverines set a trap for three Russian soldiers, who are visiting a national forest.\"\ntt0087985,MVqK6wNkSxA,\"In the middle of history class, Russian paratroopers land and attack the school, killing Mr. Teasdale.\"\ntt0087985,W6qWnmb_22s,Jed and Matt visit their father Mr. Eckert in the concentration camp for the last time.\ntt0101764,tX3qqCP99Tw,\"Separated from one another and without the upper hand, Chad and Alex must fend for themselves as they fight Zhang and Griffith in one last confrontation.\"\ntt0101764,5ktmcS1L3-A,\"After infiltrating a Triad warehouse, Alex and Chad engage in an intense shootout with the gangsters, resulting in elevated levels of testosterone and a very high body count.\"\ntt0101764,uat-LZ3t7i4,Alex engages Kara in a brutal hand-to-hand fight.\ntt0101764,cCpDJlAnHsg,Chad and Alex take the fight to Zhang and the Triads as they smuggle bombs into the Klimax Klub and bring it to the ground.\ntt0101764,-WbsnXGKkIg,\"Drunk, jealous, and angry, Alex thinks that Danielle is having an affair with Chad and fights him over her.\"\ntt0101764,5CgpROI6ivM,Chad battles the strongman Moon in a man-to-man fight to the death.\ntt0101764,c2HZzrcEbZc,\"Tailed by the police while on the high seas, Alex and Frank throw cars into the ocean and blow them up, thereby giving them time to escape.\"\ntt0101764,wyRq2S8BTVM,\"Kara suspects that Danielle is hiding something, and confronts her in a very forward way.\"\ntt0101764,FwkbHnPwEYc,Chad flirts with a group of women as he teaches them the joys of stretching but the moment is interrupted when he's summoned to lead a karate class at the last second.\ntt0829150,fLWjUBClszw,Vlad fulfills the promise he made to his dying wife to keep their son safe.\ntt0829150,s1nXXro4Aio,The villagers learn what their prince has become and desire to kill him.\ntt0829150,-dMBMU9FCQU,Vlad and Mehmed fight to the death.\ntt0829150,I6KZlznXyiY,Mirena insists Vlad drinks her blood in order to stop the Turks.\ntt0829150,VIKvQVph07A,\"Armed with his new powers, Vlad fights the Turks on his own.\"\ntt0829150,RxhenI5eUDI,Vlad uses his bats as a weapon against the Turks.\ntt0829150,WNZNGn_nkOU,Vlad and his son reflect on Vlad's situation.\ntt0829150,dRz8OjNEtaI,Vlad has trouble controlling his impulse to drink human blood.\ntt0829150,Ge-ilEFgJ34,\"Ingeras introduces his father, Dracula.\"\ntt0829150,LeA8ojVy8Fc,Vlad seeks out a master vampire in order to get what he needs to defeat the Turks.\ntt1065073,iASBdbiKSHU,\"Olivia deals with the emotional burden of her youngest child, Mason, leaving for college.\"\ntt1065073,sh0UuxRgqgk,Mason and Nicole discuss life's precious moments as they gaze across the desert sunset.\ntt1065073,PMmvUWqeS80,Dad shares his wisdom after Mason's break-up with his high school sweetheart.\ntt1065073,_V0CWwyrJUw,Mason receives a Bible and a shotgun from his grandparents for his 15th birthday.\ntt1065073,B86JJELi5Tg,Dad sings a song he wrote about Mason and Samantha before he puts them to bed.\ntt1065073,PX-PzFNkU50,Mason and Sheena discuss the challenges of life as a high school student.\ntt1065073,Y5oZr-5C1eM,Mason's stepdad Bill spirals into a fit of rage at the dinner table.\ntt1065073,oDDexxBBWXQ,\"After he learns that she has a boyfriend, Dad gives Samantha and Mason \"\"the talk\"\".\"\ntt1065073,ePaK5-b1oec,Dad tries to get Samantha and Mason to talk to him like a real family.\ntt1065073,9diokRIKGT8,\"Mason's provoked by his sister, Samantha, and explores the world around him.\"\ntt2481480,BhWg1G0czSQ,Tommy and Rosie share a romantic moment in their car.\ntt2481480,Ua0oqZfJFN8,Big Al tells the members of his organization that solidarity is the only way to stay strong.\ntt2481480,iZqKmtk6Vlc,Cardozo tries to warn Tommy and Rosie of the impending danger.\ntt2481480,hZZG0M8zj_8,\"After failing to keep a low profile, Tommy and Rosie are found out.\"\ntt2481480,wb8HFGVE218,Tommy and Rosie call the mobsters to tell them they have the list.\ntt2481480,gHr0P3Px91c,Tommy and Rosie rob their second social club and get the attention of more than just the mobsters.\ntt2481480,XTLruQ3tl4U,\"After robbing the mobsters, Tommy and Rosie make their escape.\"\ntt2481480,avQ9Wvp5wZQ,Tommy robs an Italian social club filled with mobsters.\ntt2481480,ZwVuw2rvu4s,Tommy and Rosie agree that they're going to have to move to Plan B in order to make money.\ntt2481480,ev_UF24O-oM,Rosie gets Tommy a position at her new job.\ntt2274570,k-e5rthOQdQ,\"While trying to work out their problems, Duncan and Roger accidentally let out Milo and Ralph.\"\ntt2274570,fQmbxg6z5ic,\"After finding out that Sarah is pregnant, Milo goes after her and Duncan has to save her.\"\ntt2274570,nuNIO9LLqYY,Duncan leaves Sarah and starts living with Milo.\ntt2274570,KGk6xZWTgBQ,Sarah tells Duncan that she is pregnant and he does not take it well.\ntt2274570,NPS356u_u08,\"After finding out that he has a monster living in his intestines, Duncan goes to Highsmith for advice.\"\ntt2274570,WJpSAnt7s98,Duncan confronts Phil after being investigated by the FBI.\ntt2274570,4gYG7purQPk,Duncan bonds with Milo and lets him back home.\ntt2274570,uvyPBpxL8ZY,\"Thinking that it is stomach pains, Duncan gives birth to Milo, a monster who lives up his rear, and who exacts revenge on Ken's cubie, Allistair.\"\ntt2274570,JY9Iq3-iD7s,\"At the urging of his wife, Duncan goes to visit a therapist, Highsmith. It was not what he expected.\"\ntt2274570,7iLdxVgHWlM,\"After being moved departments, Phil shows Duncan his new office and his new \"\"cubie\"\", Allistair.\"\ntt2265398,_NQec_YluKU,Luke is surprised to learn that Jill kissed Chris and never told him about it.\ntt2265398,6Uz7wmX_6nY,\"Even though they can't be lovers, Kate and Luke find that they can still be close friends.\"\ntt2265398,mfqzWZW_kkM,\"While Kate and Luke have fun with each other at the cabin, their significant others find romance on a nature hike.\"\ntt2265398,OGXdRrvCW2E,Luke helps Kate pack up her apartment for a move and she longs for a deeper relationship with him.\ntt2265398,jJ9VFThsqtU,Kate and Luke are frustrated that they can't take the next step in their relationship because Luke has a girlfriend.\ntt2265398,NFdvt3FQRoQ,\"Kate spends the evening with Jill and Luke, who are happy in their relationship.\"\ntt2265398,WXVmCSMEpP0,Luke is jealous and disappointed when he learns that Kate slept with one of his co-workers.\ntt2265398,yef2bvCU2Tw,Jill broaches the topic of marriage with Luke.\ntt2265398,uO1YBHAbBSQ,Luke and Kate build their friendship late one night on the beach.\ntt2265398,_6G-jfNOkIc,Luke is suprised to learn that Kate has broken up with her boyfriend.\ntt1211956,fxJ9dLfp9k8,Breslin and Rottmayer try to evade Warden Hobbes and escape the ship.\ntt1211956,udTmoc-i1Q8,\"Before making his escape, Rottmayer decides to take out some bad guys.\"\ntt1211956,q0YOdmVSceU,\"After getting detained, Breslin tries to explain to Warden Hobbes that he doesn't belong there.\"\ntt0469021,hVyVNcP83Sw,\"When Alan finds out that it is either him or Pat to be fired, he makes the case for the executives to fire Pat.\"\ntt0469021,R1f88CiYzes,Alan realizes that the cops want him to enter the siege and communicate with Pat.\ntt1211956,AdjVK4hPaOo,\"While Hush and Abigail try to figure out the location of the Tomb, Breslin discovers the routine of his guards.\"\ntt1211956,AInSCWWY14Q,\"After getting dropped off on the beach, Breslin discovers Rottmayer has been keeping a secret from him the whole time.\"\ntt1211956,gjRCN-nrEl4,In order to get into the isolation area Breslin and Rottmayer stage a fight.\ntt1211956,61ZwsdoEI9U,\"With the help of Javed, Breslin and Rottmayer start phase one of their escape plan: the riot.\"\ntt1211956,b8wlb-8zFSQ,Breslin and Drake fight in the boiler room of the ship.\ntt1211956,Fi4ixdzoA7I,Rottmayer is brought in and interrogated by Warden Hobbes.\ntt1211956,7g4XFGQutFM,Breslin explains the three things that are required to break out of prison.\ntt1211956,ZizMOl5Xllw,Breslin meets Rottmayer after a run in with another inmate.\ntt0469021,vm29fXJWuOA,Alan tries to deal with the emotionally charged Pat and the ineffective cops in an armed standoff.\ntt0469021,myJttzKxu64,\"Alan tries to escape from the radio bus, but only succeeds in getting himself stuck in the septic system.\"\ntt0469021,gwFW3icyEZk,Alan finds that hosting a siege can be good for his career.\ntt0469021,LPRHiok3nzs,\"Alan has the opportunity to take the gun away from Pat, which results in a bloody shootout.\"\ntt0469021,FTjFM9edoD4,\"Alan tries to break back in to the radio station, but loses his pants in the process.\"\ntt0469021,3DsoxW8AUEE,Alan leads the hostages in writing a new zjingle for their captor's radio show.\ntt0469021,VMXUsPGKzfQ,\"Alan tries to manage the hostage crisis, but there is high stress on all sides.\"\ntt0469021,1X1shl06ZPo,Alan tries to figure out Pat's mental state during the hostage crisis.\ntt0114508,XAw8Qpr0NK0,Preston shoots Sil into the fire while Dan holds on for dear life.\ntt0114508,l97NtEMUx0M,Preston and Dr. Laura save Dan from being dragged into the fire by Sil.\ntt0114508,db50XeSEtv4,\"Sil wakes up next to a bound woman who watches, terrified, as Sil cuts off her thumb and grows another.\"\ntt0114508,MFvi1YVig8w,Xavier pushes Dan to use his ESP skills to find Sil.\ntt0114508,0cPT4zspVc0,Preston and Laura get stuck in a room about to burst into flames when the alien escapes.\ntt0114508,NAEDVsrKk5s,Sil kills another lover in the jacuzzi when she hears someone at the door.\ntt0114508,IerddGM-xO0,Xavier explains the history of Sil to the team and shows them the growing fetus.\ntt0114508,FEAfMv14l5Q,\"When Sil has second thoughts about being with a man, she kills him.\"\ntt0114508,79hXvDohqgI,\"A young girl wakes up in quarantine to the sight of a man, Xavier, apologizing as cyanide gas fills the room.\"\ntt0114508,CNuEPee1qOU,Sil eats a woman on a train and breaks free from her shell.\ntt0114508,9FyqTQ9ywnc,\"Stowed away on a train, Young Sil has strange nightmares, and wakes up to an equally horrifying reality.\"\ntt0089200,x2yXtHyhu-k,Wolfgang saves Jonathan and confronts Malcolm in a final magic duel.\ntt0089200,3T-wqo8lamY,Grizzel and the Ghoulies disguise themselves in a prank attack on Eddie.\ntt0089200,Z3yJF1FX9hY,Jonathan hosts a dinner party for his friends and the Ghoulies.\ntt0089200,0BQZb44R_IY,A zombified Malcolm Graves transforms into a temptress and seduces Dick with her giant tongue.\ntt0089200,_zFjP61xNb0,Robin awakens to an ambush of Ghoulies.\ntt0089200,5mAI-v1nfOw,Jonathan performs a sance and brings his father back from the dead.\ntt0089200,PnmtF6EqeXU,Mark and Donna try to retrieve a submerged bracelet and are attacked by Ghoulies.\ntt0089200,LCWzLnaJqBw,A flustered Rebecca tries to leave Jonathan but can't when she falls helpless to his new powers.\ntt0089200,r7J-Qx2InoU,Jonathan summons the Ghoulies and declares himself Master.\ntt0089200,Ho-Sv55Yh20,Jonathan summons Grizzel and Greedigut and puts their allegiance to a test.\ntt0089200,EdJRbvXr4zs,Malcolm attempts to sacrifice a baby in ritual but is thwarted off by a magical protection.\ntt1637725,i_qI6LOc54w,John gets his dream of meeting Flash Gordon.\ntt1637725,Rw-EoS3td0c,Ted is kidnapped by the creepiest father ever.\ntt1637725,GHOgErGvyTE,Ted and John have a brutal fight in a hotel room.\ntt1637725,AgZbPNlvHe0,Ted introduces John and Lori to his new girlfriend.\ntt1637725,04uN57jOg-Q,John tries to guess the white trash name of Ted's new girl.\ntt1637725,bc84pYZICbk,Ted flirts with a hot cashier at the supermarket.\ntt1637725,f5e73A39TF4,Ted is forced to move out of John's apartment and get a job.\ntt1637725,IqfczS-tx_4,\"Lori finds Ted partying with hookers, one of whom took a crap on their floor.\"\ntt1637725,foPh0pXXq-A,Ted joins John and Lori in bed when the thunder scares them.\ntt1637725,s9nYXJweTPU,Young John makes a wish for a best friend and his teddy bear comes to life.\ntt0780622,A_ry95V0zNw,Dawn just can't seem to escape the male creeps in her life. This time -- after hitching a ride -- an Old Man is in the mood for a little sexual horseplay.\ntt0780622,j2u3UksivgA,\"Dawn seduces her evil step-brother Brad so that her \"\"vagina dentata\"\" can bite off his private part.\"\ntt0780622,PIAzmZ3FFy0,\"In mid-coitus, Ryan unwisely admits to making a bet that he could lay Dawn. Dawn's \"\"vagina dentata\"\" settles the score.\"\ntt0780622,gusrRGgXCJg,\"Dawn accepts Ryan as the \"\"conquering hero\"\" to her vagina dentata when the two go to bed together.\"\ntt0780622,_ZIpnWucimQ,\"When Dawn goes for a check up with the OB/GYN, Dr. Godfrey gets a toothed surprise.\"\ntt0780622,E9paF0XzmtA,\"Ryan comforts a nerve-wracked Dawn with a hot bath, some pills, and some champagne.\"\ntt0780622,yTKHZcQlMP0,\"Tobey learns the hard way from Dawn, and her snatch teeth, that 'no' means 'no' when it comes to date rape.\"\ntt0780622,6vtpmEd3SNk,\"Dawn studies up on the mythology of \"\"vagina dentata\"\" also known as \"\"the toothed vagina.\"\"\"\ntt0780622,9WQnbIVJZjs,\"Dawn desires to touch herself in bed, but her vagina strikes back.\"\ntt0780622,ghtGcGtVtho,Dawn talks to a bunch of young students about sexual abstinence until marriage.\ntt0780622,1GvlSPJ37Hw,Brad feeds Melanie a dog biscuit after some sex play.\ntt0780622,FaWvQNVeDag,\"During sex education class, the students discover that the picture of the female reproductive organ is covered up in their text books.\"\ntt1213663,0oHT-rtiFZk,The mates prove to one another that they're still human and not replaced by robots.\ntt1213663,PJYZAww0pgI,\"Gary meets his own double, but has some choice words for The Network.\"\ntt1213663,l9LOKUiY0Dg,Gary and Andy have a brutal fight at The World's End and bitter truths are revealed.\ntt1213663,gRBOrpdfsiM,Gary helps Sam escape the robots and they break up forever.\ntt1213663,Fhhbua6ELxo,Andy Knight and his mates take on a whole bar full of robots.\ntt1213663,UOsM81pRVWo,\"Gary, Steven and Sam have a fierce battle with the creepy twins.\"\ntt1213663,tYs7uguB_JQ,The five friends are attacked by blue-blooded robots in the Gents bathroom.\ntt1213663,Gtt2ibEe1NY,Gary can't stop making a pass at Sam even after learning that the bar is full of creepy robots.\ntt1213663,dshmyllg2HE,\"The four friends arrive in Newton Haven and are met by Gary and the \"\"Beast\"\".\"\ntt1213663,-JERO2LQSKc,\"Gary King tries to convince Andy Knight to come back to Newton Haven with him, but Andy has some unresolved issues with him.\"\ntt2557490,J4ciEVJMzIE,Albert and Clinch meet for a final showdown to win the hand of Anna.\ntt2557490,w3sv1-F1JeI,Albert takes a potion supplied by a tribe of Native Americans in order to determine his destiny.\ntt2557490,FHL1AJ0wbck,Edward and Ruth make love for the first time.\ntt2557490,4diIC2MRjiA,Foy suffers from a stomach bug at the shootout with Albert.\ntt2557490,ARTwLLhQZHw,\"Foy dances and performs to \"\"If You've Only Got a Moustache\"\" at the town dance.\"\ntt2557490,DTZ1bgOIaAY,Albert discovers somebody doing some secret work in a shed.\ntt2557490,oTx_o5B0J1Q,Anna bets Foy that she can out shoot him for one whole dollar.\ntt2557490,k-m4QOtv-rQ,Edward tries to convince Albert to leave his house.\ntt2557490,vRXk74BCp-Q,Albert explains to Edward and Ruth all of the ways you can die in the West.\ntt2557490,wlwh5x9eHBM,Edward waits for his girlfriend Ruth to finish work at the whorehouse so they can go on a date.\ntt2318527,jrhB_dBxc-8,\"Vanessa finally gives birth, but nobody is prepared for the unspeakable horror of the Hell Baby.\"\ntt2318527,Ajc5z4sg-O4,Father Sebastian and Father Padrigo wait for papal authority to perform an exorcism in the usual ways: playing medicine ball and going to a strip club.\ntt2318527,GXnlDTh9sCU,Nobody reacts well to seeing police photos of Dr. Marshall's dead body.\ntt2318527,UAfx1pipLQg,Marjorie's weed-fueled seance goes from groovy to gruesome in a hurry.\ntt2318527,Ah5f0zWgfvQ,\"Father Sebastian relates the bittersweet tale of how he became a priest, and of, in particular, bullet-sucking nurses.\"\ntt2318527,mL-M04A1D0g,\"Father Sebastian and Father Padrigo are men on a mission, but they're also out for a good time.\"\ntt2318527,quaACkqyF3M,\"Jack attempts to take a nap, only for things to get exciting, then terrifying, then stressful.\"\ntt2318527,vUTQexv1mzM,\"What's the best way to relax after investigating a disemboweling? Pizza salad, of course!\"\ntt2318527,pbWOEIzQ_r4,\"Jack identifies the body of Mrs. Nussbaum, which goes even worse for him than expected.\"\ntt2318527,TPlxZPhOsQM,\"Vanessa and Jack move into their new home, and it might've been a good deal for a reason.\"\ntt2318527,Fr-ilDHT3gM,\"Jack and Vanessa meet Mr. Marshall, who is very happy to meet them. Very happy.\"\ntt2318527,cFjGykszgK0,Things get creepy in a hurry at Vanessa and Jack's new house.\ntt2017038,EBPZaYv0_AM,\"Just when all hope is lost, something catches the man's eye.\"\ntt2017038,ZCphcTQguUY,The man tries to get the attention of a ship by starting a fire on his raft.\ntt2017038,G4WgfNcZgo4,The man tries to get the attention of a passing cargo ship.\ntt2017038,5vecZ4JxUZU,The man finds a surprise when he thinks he has caught a fish.\ntt2017038,QOb4mg7oXO0,The man discovers that he has no fresh water left on his raft.\ntt2017038,9l_USfDRi2E,The man says goodbye to his boat as it sinks into the ocean.\ntt2017038,aq45c8eGVoA,The man flees his boat for the safety of the life raft.\ntt2017038,ElFzH0wPql4,\"While the man is inside the cabin, the violent storm overturns the boat.\"\ntt2017038,JA9ZcCBGQ-M,A huge wave knocks the man overboard and demolishes the boat.\ntt2017038,R4vRfIL-Cv4,The man is knocked overboard while weathering the storm.\ntt1247640,MUgLPMuwDfU,\"The gangs confront Gassman, but he takes the President hostage.\"\ntt1247640,FtykdGuzX-4,Leito and Damien infiltrate French Military Headquarters with the gangs from B13.\ntt1247640,AUBAs5rWsaY,\"The cops attempt to capture Leito, but he leads them on a wild chase from roof to roof.\"\ntt1247640,0OdOZTw1sAo,Tao takes on a group of soldiers.\ntt1247640,zqWR21AIFJA,Leito and Capt. Damien Tomaso escape from the Police precinct.\ntt1247640,UixHUUJXcSw,\"Damien takes care of his nemesis, Roland.\"\ntt1247640,TMVem9xHaHY,Capt. Damien Tomaso and Leito attempt to escape from the police station.\ntt1247640,S8XR0_wlYUA,Leito breaks Capt. Damien Tomaso out of prison.\ntt1247640,xk3clsiBnRE,Leito knocks out a police chief to get into the precinct.\ntt1247640,N1GwJt7fEGI,\"After the shooting in District 13 is televised, an enraged officer fires shots at a gang member from that area.\"\ntt1247640,2hZFC6Q8zk0,Capt. Damien Tomaso wards off henchmen with a two-hundred million dollar painting.\ntt1247640,Jmlx4p_9MfA,Capt. Damien Tomaso fights his way out of the club and ends up with a time-bomb on his hands.\ntt0120241,uCMat1QDt6k,\"Having learned that Elise was behind the whole kidnapping hoax, Charlie and Lono bring swift punishment to her and her lover, Max.\"\ntt0120241,ud421fnpmYs,\"Lono arrives to rescue Charlie, but Avery's fear and distrust get in the way.\"\ntt0120241,-G_I8dQHN5s,\"Under extreme duress, Avery finally comes clean about the whole plan, the revelation of which breaks the will of the group.\"\ntt0120241,QHuTlVI2zgQ,\"Charlie cajoles Max into revealing that he is a fraud and that in capturing Charlie, the gang has kidnapped and tortured the wrong man.\"\ntt0120241,gEhB7HuQk7M,\"Max tells Charlie Barret a story of how Brett lost some serious cash at poker game when an unscrupulous dealer, The Widowmaker, beat Brett's hand, sending Brett and the group into major debt.\"\ntt0120241,IBjOZQCPPXQ,Brett tries to break the spell that Charlie has cast over the others by telling Avery a story of how Charlie got rid of his neighbors by using attack dogs.\ntt0120241,J0SN6An2yCg,Lydia recounts the time when Charlie saved her from the glutches of Nick The Nose.\ntt0120241,NHiG4hmxkjQ,\"Over a game of poker, Charlie tries to size up each of his captors as a means to gain their sympathy, but Brett doesn't buy Charlie's ruse.\"\ntt0120241,grEV7MeCTsg,\"When Charlie Barret tells his captors that he has to urinate, the gang gets into an argument on the logistics of helping Charlie pee.\"\ntt0120241,GI8Vrbnwre4,\"Finding himself tied up and surrounded by four young hooligans, Charlie Barret tries to find out what's going on and why he has a mysterious blood stain on his shirt.\"\ntt0120241,guWGxRXZbis,\"Charlie Barret tries to convince Max to let him go by appealing to Max's memory of his girlfriend, Elise.\"\ntt0120241,UmpctrXzd1E,\"Intercutting between preparation and execution, the gang makes a bungled attempt to kidnap Charlie while ostensibly driving him to a dinner engagement.\"\ntt0377471,SCiMcDcoi3E,Elliot spares Chili and Edie when he learns he has an audition; Elliot turns on Raji.\ntt0377471,swo423cXQuE,Aspiring performer Elliot auditions for Chili and Edie.\ntt0377471,9k2nstrtUs0,\"When the Russians storm into Nick's office, their poorly-chosen words infuriate Sin.\"\ntt0377471,51euUliFZ-w,Chili literally dodges a bullet when Sin drops his grudge and agrees to produce Linda's album.\ntt0377471,HprI62nr3GI,\"Emboldened by FBI surveillance, Chili clobbers the Russians in their own pawnshop.\"\ntt0377471,2_pqFqYME68,\"When a fed-up Elliot comes after him, Raji talks fast.\"\ntt0377471,DcfEOMgI_5o,Chili rants to Tommy about the movie business and receiving an R rating from the ratings board.\ntt0377471,FwCOP-yKD5w,Chili strikes a deal with Sin to prolong his life.\ntt0377471,Jqa0bO9PSqI,\"Feeling disrespected, Raji beats Joe to death with an aluminum bat.\"\ntt0377471,6qqJOQltyTY,\"Chili steals Linda from Raji, leaving the manager flat-footed. Elliot shows off his acting chops by giving the \"\"look,\"\" a.k.a. raising his eyebrow.\"\ntt0377471,Yfof0ch3R7k,\"Sin thrashes a radio programmer with a spatula, upset at his records' airtime.\"\ntt1478338,KXldzNF7Y4Q,Annie tries to get Officer Rhodes' attention by breaking every traffic law she can.\ntt1478338,s9prJba2vkw,Megan slaps Annie around and lectures her about her pity party.\ntt1478338,ILqwaOR70mU,Annie Walker and Lillian have a huge fight at the bridal shower.\ntt1478338,sf9038zMVgo,Annie takes a sedative and acts completely drunk on the plane to Vegas.\ntt1478338,PP9l4LP0WPI,\"The bridal party gets food poisoning at the dress fitting, with awkward results.\"\ntt1478338,ba5F8G778C0,Annie gets into a verbal sparring match with a teenager shopping in the jewelry store.\ntt1478338,lyQ1m8xbJW0,\"Annie and Helen play doubles tennis, but it turns very mean-spirited.\"\ntt1478338,qWsC4YHbOlw,\"Annie gets pulled over for drunk driving, but she is just a bad driver. The cop does find her attractive though.\"\ntt1478338,7kihC0VFaQE,Annie meets Lillian's colorful friends at the engagement party.\ntt1478338,g2iWVWVSb6Q,\"Annie sleeps over at Ted's house, but the morning is quite awkward.\"\ntt1981677,vOTtCjGqXYo,The Bellas bring the house down with Beca's arrangement of popular songs.\ntt1981677,zRFatzj_5do,The Treblemakers perform at the finals and Benji finally gets his chance to shine.\ntt1981677,KfUxknvLpwY,The Bellas confess their secrets to one another.\ntt1981677,wlFo4ydbP7c,Beca helps the Bellas sing about sex at the Riff Off.\ntt1981677,cKpV6Wb81Ak,The Bellas revolt against Aubrey's controlling ways and turn to Beca for help.\ntt1981677,jki2_TXdG_Q,Beca leads the Bellas in a rehearsal where she remixes the songs.\ntt1981677,m5-bSlttk18,Chloe reveals that she has nodes on her vocal chords.\ntt1981677,eO1Jm4N4rlA,Beca has an awkward encounter with Chloe in the showers.\ntt1981677,Ixi9imJZ40M,Beca auditions for the Bellas with her own version of the Cup Song.\ntt1981677,sMWnN_9GiX0,Chloe and Aubrey try to recruit Fat Amy to join the Barden Bellas.\ntt2398249,4nEpmBhIy1w,Molly leaves Eggbert at the altar while Joel rushes to stop the wedding.\ntt2398249,MpiqRi2JW4M,Joel asks Molly to give him another chance.\ntt2398249,dUi0j-vedRE,\"Molly and Joel, in relationships with other people, attend the same parties for Thanksgiving, Christmas and New Year's. Molly's boyfriend Eggbert proposes to her and she accepts.\"\ntt2398249,cFvxjIsjwoc,\"Molly and Joel break up, but a recently dumped Tiffany is waiting at Joel's apartment looking for a little bit of sympathy.\"\ntt2398249,lHNgUHi-WPM,After their date Joel and Molly destroy the apartment while making out and then have a romantic montage.\ntt2398249,VkwwtlAGSwk,Joel and Molly go out on a date.\ntt2398249,sCG88QHentc,\"Joel and Molly go on on their coffee date, but have pretty complicated orders.\"\ntt2398249,Sqb85Gfj0Fw,Joel and Molly run into each other at bookstore and they end up going out for coffee.\ntt2398249,jVGX-_Iodwc,Joel and Molly set up their story.\ntt2398249,zLKCXUGISSQ,Joel and Molly run into each other en route to the Halloween party and it is hate at first sight.\ntt2398249,ZEwg4041Q9M,\"Before proposing to Tiffany, Joel runs it by his buddies Tommy, Teddy, Bob and Oliver.\"\ntt0351977,QjLYqCsggvg,Chris and Jay have a brutal grudge match in the drug lab in the mill.\ntt0351977,b60vt92AzKQ,\"Chris and Jay grapple in the woods, with control of the town at stake.\"\ntt0351977,82dHCGddOSU,Chris and Ray turn the tables on their attackers.\ntt0351977,tr97dNKSBao,Chris and his family come under simultaneous attack at home and at the sheriff's station.\ntt0351977,rqc2lyHj63A,A vengeful Chris hammers the security goons at the Wild Cherry.\ntt0351977,N_xWF7HBpJk,\"In the hospital, Chris's family has questions for sheriff Watkins, while Ray visits Chris.\"\ntt0351977,vSLOINP7w0s,\"When Chris stops Jay's car, the two rivals trade threats.\"\ntt0351977,613uBNehFWQ,\"At the craps table, Chris exposes the stickman's loaded dice; a brawl ensues.\"\ntt0351977,1y1cthozBuc,\"Pleading his own case, Chris delivers a speech to the jury.\"\ntt0351977,PJ8v0jwQGXc,Chris is carved up by casino security.\ntt0985694,fRs243dwWkw,Machete shows what he can do with a minigun and a motorcycle.\ntt0985694,yP5TAs29e0U,Machete leads his army against a mob of violent border patrolsmen.\ntt0985694,bR4b3meiMlw,Machete uses an assortment of medical equipment and human organs to escape an assassination attempt by Sniper.\ntt0985694,FJv4vY954UU,Padre defends his church from Osiris and his henchment\ntt1013743,oMWqB05lpRU,\"Roy and June race to save Simon, but run into a dangerous obstacle.\"\ntt1013743,xSVasSOEG28,Waking on an island paradise June begins to worry about how she wound up in a bikini.\ntt1013743,8wUtvaL4G9s,\"While June fools around with a gun, Roy discovers the next step on their journey as assassins close in.\"\ntt1022603,ARoB1nWPsxo,Tom and Summer play husband and wife at a home furnishing store.\ntt1022603,bBLKvPSgQ2A,\"After running into each other, Tom and Summer have one last conversation about true love.\"\ntt1022603,-fL94BTrFhs,\"Tom arrives at Summer's for a party, only to find that his expectations don't match reality.\"\ntt1022603,4rGia6hIWmk,Tom gets his card-writing inspiration from Summer.\ntt1022603,DomJHvbM7qE,Summer surprises Tom at the copy machines.\ntt0327850,j-dYZPMpoqI,\"Beck fights the last of Hatcher's men, while Travis goes after the stolen Gato.\"\ntt0327850,bq_WJS_HlPc,Beck takes control of the fight to save Travis from certain death.\ntt0327850,WJXF9gcUcNU,Beck tries to prove his innocence while defending himself against the whole rebel camp.\ntt0327850,W_Piq1uGGfs,Travis tiptoes his way through the booby trapped cave to try and recover El Gato do Diabo.\ntt0327850,VdYPqVZIB9M,\"Trapped in the jungle, Beck and Travis come face to face with a group of aggressive monkeys.\"\ntt0327850,25yR3OUlVbI,\"Just when Travis thinks he's escaped, Beck is there to re-capture him.\"\ntt0327850,jKyhNbLEKxY,Travis takes matters into his own hands to prevent Beck from taking him back to America.\ntt0327850,qoxMZtAmAiI,Hatcher tries to explain the concept of the tooth fairy to his Brazilian henchmen.\ntt0327850,23v-gPJiaZs,\"Before Beck can head back to America with Travis, Hatcher intervenes so he can find the missing artifact.\"\ntt0327850,DkMA0rGCU3s,Beck fights through a team of NFL players to collect his debt from Walker.\ntt0947798,8qyhhOM76Rg,\"Nina's obsessions drive her to the brink of insanity when she witnesses Lily seducing David, her dance partner.\"\ntt0947798,iOaD5cZNw0E,\"At the fitting, Nina begins to hallucinate strange visions and to make matters worse, she learns that Thomas has made Lily her understudy.\"\ntt0947798,dwD4JZsAuew,\"Nina auditions for the role, but Thomas can only see her as the perfect white swan, not the dangerous black swan.\"\ntt0947798,-XCvw6NPfVM,\"When Nina doesn't perform to his standards, Thomas shows her how to be properly seduced.\"\ntt1542344,6KqG8CYcMKk,\"Cracking under the stress of his entrapment, Aron mocks himself on an imaginary radio show.\"\ntt1542344,qDFzVZklg1Q,\"Aron hallucinates that he's in a flash flood, leading to his escape.\"\ntt0947798,Kd-81VRVQXw,\"In a dream sequence, Nina's dangerous obsessions of perfection manifest in the form of the demonic Black Swan.\"\ntt1538819,MgFF-JBCHUg,\"Aron falls, discovering to his horror that he is stuck.\"\ntt0451079,MoOwbXap6LM,\"With Kangaroo threatening to boil the speck, Horton pleads with Mayor to have all the citizens of Whoville to make as much noise as possible to prove their existence.\"\ntt0451079,8eC08uGwWiw,\"When Kangaroo tries to destroy the speck, Horton gives a rousing speech about ethics and humanity.\"\ntt0451079,vP8C80lIRt0,Horton daydreams about how amazingly he'll protect the speck.\ntt0451079,7FkWC2S0MfY,\"The Mayor gives as much time to this many children as possible, but none interests him more than his heir, Jojo.\"\ntt0451079,InIEECDCSYU,Horton demonstrates to the Mayor how small he really is.\ntt0098206,E_RNZFm1mls,\"Dalton is treated by Doc Clay, but refuses anesthesia.\"\ntt0098206,uCZStp0Z_xg,\"After Dalton pummels Brad into submission, the angry townsfolk finish the job.\"\ntt0098206,c0JxgKT4jZc,Dalton pins Tinker with a giant taxidermic polar bear.\ntt0098206,NGhqTwxz4eQ,\"When Jimmy attacks Dalton, Dalton fights back and rips out his throat.\"\ntt0098206,2KvZqLVSL9c,\"After finding Wade dead, Dalton retaliates against the killers by crashing a car through their compound.\"\ntt0098206,xuLi1MdUKQw,Dalton knocks Jimmy off his motorcycle and then proceeds to whoop his butt.\ntt0098206,jDMfIPRm7jY,Brad gets even with Stroudenmire by driving a monster truck over his lot of cars.\ntt0098206,7aW8QnLYxY4,\"Wade visits Dalton while he trains on a punching bag, as they share a moment of understanding.\"\ntt0098206,SeKVwumCmBE,\"When Dalton spots a guy with a blade hidden in his boot, he kicks him out of the club and then beats him to a pulp for being too stupid.\"\ntt0098206,6ZGvkZAP4lY,Wade shows up just in time to help Dalton win a fight.\ntt0098206,-QJsljIDKkk,\"Dalton states the rules of the bar and tells his crew to \"\"be nice\"\" to customers, even when they're rude.\"\ntt0050825,dGmuICb8a7Y,\"The hardened French troops are moved to tears when a young German woman sings a folk song entitled \"\"The Faithful Hussar.\"\"\"\ntt0050825,UHPq25mUJwk,Col. Dax is offended when Gen. Mireau and Gen. Broulard speak casually about the death of his men.\ntt0050825,VICyZk-XSLA,Col. Dax is surprised and angered when Gen. Broulard offers him Gen. Mireau's command.\ntt0050825,75UHGiJjNuw,\"The soldiers become nervous and lose hope that their lives will be spared, but Pvt. Ferol remains confident and optimistic.\"\ntt0050825,G2mYFXmFQPw,Col. Dax wonders why the men need to be executed and Gen. Broulard explains how he maintains discipline.\ntt0050825,0niEZsahtEo,Lt. Roget has a difficult time offering blindfolds to the prisoners just moments before their execution.\ntt0050825,VkUKAtzE0r0,\"With mortars exploding all around, Col. Dax leads his troops out of the trenches in an attempt to take the ant hill.\"\ntt0050825,UqLq7sMS2sU,Col. Dax agrees to take the Ant Hill on Gen. Mireau's order.\ntt0050825,AApQkNSViGg,Col. Dax begs the court to show mercy to his men and explains the inadequacies of the court for not allowing a fair trial.\ntt0050825,G7Mvs5Ic8us,Capt. Rousseau refuses to obey Gen. Mireau's order to shoot down his own men unless he receives the order in writing.\ntt0050825,PU4PQ3OJn58,General Mireau strolls through the trenches checking up on the soldiers and comes across a shell-shocked coward.\ntt0095690,YPZqfRINveI,Daisy endures the snobbery of Charles's parents during an elegant dinner at their home.\ntt0095690,FIyHh9pO464,The Mystic Pizza staff is elated as they watch a highly complimentary televised review of their restaurant by critic Hector Freshette.\ntt0095690,ikqDLmNc678,Daisy dumps fish garbage into Charlie's Porsche when she mistakes his sister for a mistress.\ntt0095690,HhFqWgJrtb0,Bill tells Jojo that he's fed up with their relationship because all she loves about him is his dick.\ntt0095690,8mmqyI9CVWI,\"Daisy judges her sister Kat's relationship with a married man, while Kat slanders Daisy's reputation.\"\ntt0095690,SAWm5lLfGZ0,\"When Bill tries to convince Jojo to marry him during a heated make out session, her parents catch them in the act.\"\ntt0095690,kQI3S3inEXg,\"In an empty house, Daisy leads Charles up to the master bedroom one piece of undressed clothing at a time.\"\ntt0095690,LSlXOh60wk0,\"When the Porsche gets a flat tire, Daisy and Charles use numerous tactics to hitch a ride.\"\ntt0095690,JwgvbLF28fE,\"Jojo describes her love of Bill's wrists, while Kat and Daisy discuss their opposite paths in life.\"\ntt0095690,FaLsWjMiIrI,\"After watching a Fireside Gourmet review on TV, Leona lectures the girls about the honor of tradition.\"\ntt0095690,WLqx522tlYU,\"During the wedding ceremony to Bill, Jojo faints on the alter in front of the entire church.\"\ntt0091217,TdT_PiRLsaI,\"With the game on the line, Coach Dale puts his trust in Jimmy, who sinks the final shot.\"\ntt0091217,Ao50y1xdfW8,\"In the locker room before the game, Coach Dale thanks his team for the journey, and the Preacher leads a pre-game prayer.\"\ntt0091217,_gEt3iNmLyw,\"With seconds left on the clock, Ollie sinks two underhand free throws and wins the game.\"\ntt0091217,iE9CEAzLPKg,\"When the team is overwhelmed by the massive gym, Coach Dale has them measure the court, reassuring them that it's just a gym.\"\ntt0091217,C2ILSuQOmEg,\"With the game on the line, Shooter pulls it together and runs the Picket Fence, winning the game.\"\ntt0091217,X-HeG5tFKUo,\"Feeling the Good Lord's strength in him, Strap plays some inspiring basketball.\"\ntt0091217,zFaEUnrsjL4,\"Jimmy crashes the Town Meeting with a bombshell: \"\"I play, Coach stays.\"\" The town re-votes and Coach Dale is reinstated.\"\ntt0091217,676TpKq_6Ok,\"When his star player Rade won't pass the ball, Coach Dale benches him, even if it means his team must play one man short.\"\ntt0091217,z1F9D6LVTkA,Coach Dale offers Shooter a job as his Assistant Coach on the condition that he sobers up.\ntt0091217,WUujUq9VHVs,Coach Dale meets his short-handed team and promptly loses two players.\ntt0091217,l1jCg_FmQmQ,\"After losing the game on principle, Coach Dale gives his team a locker room speech where he makes clear that his word is law.\"\ntt0091217,Do7U7AkA5jA,Coach Dale dismisses George at practice in front of the whole team.\ntt0106856,x1-axqBZdNk,Two golfers get rowdy when they see William 'D-Fens' Foster walking in the middle of their course.\ntt0106856,hlzm7-gvTRg,William 'D-Fens' Foster loses his cool at Whammy Burger when informed that they stopped serving breakfast at 11:30 am.\ntt0106856,9OhIdDNtSv0,William 'D-Fens' Foster gives the construction crew something to fix.\ntt0106856,0jSVwZ8w3C4,\"Nick, the Nazi Surplus Store Owner gets into an altercation with William 'D-Fens' Foster.\"\ntt0106856,yooamJf-T_8,William 'D-Fens' Foster shoots up a phone booth in a reaction to a rude bystander waiting in line.\ntt0106856,pZfva5xDNLU,\"After a failed drive-by shooting, William 'D-Fens' Foster takes the gang's weapons and walks away.\"\ntt0106856,1iWqn89nvJs,Gang members attempt to kill William 'D-Fens' Foster during a drive-by shooting.\ntt0106856,-UZY16_K3Pw,Mr. Lee stops by the police station to report the assault at his convenience store.\ntt0106856,hlKMLkrSrDo,William 'D-Fens' Foster is approached by two Mexican gang members who don't take kindly to strangers.\ntt0106856,Z4tC4qfv92Q,William 'D-Fens' Foster gets himself into an altercation at the local Korean convenient store.\ntt0048028,dy9fKXNAhA0,Cal tells Adam what he revealed to his brother.\ntt0048028,Ro_k0jgMvKU,Adam forgives Cal and finally asks for his help.\ntt0048028,VfOrY7CidTA,Cal tries to give Adam his birthday present but he rejects the gift.\ntt0048028,f2SskRLd4F4,\"Cal takes Aron to see Kate, the mother they thought was dead.\"\ntt0048028,I3hVaKO5olI,Aron tries to stop a fight among the townspeople but Cal only makes matters worse.\ntt0048028,gw_zwDaiuJs,Abra confides in Cal about her relationship with his brother.\ntt0048028,dG6C9JuB4YA,Kate tells Cal why she left his father.\ntt0048028,ud1tMFmSp2I,Roy instructs Adam on how to start an automobile.\ntt0048028,Z6_Ti4ntV7g,\"Cal tries to speak with his mother, Kate, but she responds with fear and anger.\"\ntt0048028,WpO_eNT9StE,Cal tries to talk to Adam and understand the truth about his mother and himself.\ntt0059113,2EKDKks9qtA,\"Dr. Yuri Zhivago and Lara get ready to escape with Komarovsky, but Zhivago stays behind.\"\ntt0059113,zvA-7VuKQCU,\"In his last minutes of life, Dr. Yuri Zhivago thinks he sees Lara on the street.\"\ntt0059113,P4kQvkvGi9M,Soldiers rebel against their generals as the Russian Revolution begins.\ntt0059113,4ipKK450XwM,\"After years of separation, Lara and Dr. Yuri Zhivago meet again, and Lara shows him her house.\"\ntt0059113,TrwIvCFIMZA,\"Lara laments to Zhivago how lovely it would have been for the two of them to have met at another time, under different circumstances.\"\ntt0059113,ozpct8zUA_U,Strenlikov interrogates Dr. Yuri Zhivago.\ntt0059113,rzs0681gdf0,Dr. Yuri Zhivago helps a woman jump onto the train.\ntt0059113,eYMbAHC6RxU,Dr. Yuri Zhivago's attraction to Lara grows towards the very end of their six months in seclusion.\ntt0059113,j-v6XtJFNQE,\"At a Christmas Party, Lara tries to assassinate Komarovsky.\"\ntt0059113,xvQLAg16ZD0,Dr. Yuri Zhivago watches Russain soldiers disrupt a peaceful protest.\ntt0250494,GQmt9W6Ky7U,\"Trying to help her friend move her romance forward, Elle teaches Paulette the \"\"bend and snap!\"\"\"\ntt0250494,GSu7BGbyJqc,\"While questioning her witness, Elle makes a startling discovery about a perm that saves her client.\"\ntt0250494,8rNVaY7Stt4,Elle and Paulette visit Paulette's ex-husband and Elle uses fake legalese to get custody of the dog.\ntt0250494,I6uGId-a758,\"When a key witness in the murder trial insults Elle's shoes, she discerns that he is gay and helps discredit him.\"\ntt0250494,HZtQl0lF3OE,Elle is awarded an internship with Callahan's firm along with Warner and Vivian.\ntt0250494,xs3_hNYAVRw,\"After Elle impresses Professor Callahan, he asks her to apply for his internship.\"\ntt0250494,gwY85_MC_AY,\"Conspiring with Vivian, Professor Stromwell asks Elle to leave class.\"\ntt0250494,EVmLV7swH2k,\"Elle decides that in order to win Warner back, she must go to Harvard Law School.\"\ntt0250494,rLcAQVgMTSY,\"Elle \"\"accidentally\"\" runs into Warner for the first time at Harvard and announces that she now goes there.\"\ntt0250494,IrDm-HzK2y8,\"To gain admittance into Harvard Law School, Elle puts together a video essay showing off her finest assets and qualities.\"\ntt0250494,yfy4and2vPg,\"Believing that Warner is about to propose marriage, Elle is shocked when he unexpectedly breaks up with her.\"\ntt0479143,5HksV7ZFuhM,\"The last round is a nail-biter as Rocky struggles against Dixon's speed and strength, but Rocky's memories and the support of the crowd drive him to finish the fight.\"\ntt0479143,TuTOzEYtgzQ,\"Rocky prepares for the fight with a series of rough and tough training methods, including the classic punching meat.\"\ntt0479143,yg6v5Ur4pcM,Rocky pushes through a grueling fight with reigning champion 'The Line'.\ntt0479143,QrmQqEg4isU,Rocky reproaches his son for not believing in himself.\ntt0479143,CkqAe9DL56w,\"A confident Rocky isn't phased when 'The Line', the reigning champ, tries to intimidate him.\"\ntt0479143,ENRq7P9lAtg,Dixon loses his cool during a press conference when there is speculation about his credibility as a fighter.\ntt0479143,ZR2txV7X8sE,\"In a televised ESPN simulation, 'The Line' gets nervous as he watches the simulated Rocky knock out his own character.\"\ntt0479143,XXk8J83A25A,Marie gives Rocky guidance concerning his opportunity to fight one last time.\ntt0479143,wTk1noW_8Lo,\"Rocky and Marie are harassed, but Rocky won't stand for them insulting her.\"\ntt0479143,Et_Bdct1T0U,Rocky stops by Paulie's factory and opens up to him about his intense feelings.\ntt0479143,6CxSbcM0vw4,Rocky gives a stirring speech about rights before the Pennsylvania Athletic Commission.\ntt0113321,SLn4BL4gP_w,\"Leo surprises Claudia on her flight, suggesting they share the two hour flight with no expectations.\"\ntt0113321,3iJMdVAsPpc,Leo seduces Claudia with an anecdote about freak occurrences around the world.\ntt0113321,vOaX_Naqxb8,Joanne has a fit when Tommy launches the turkey in her lap; the situation quickly escalates to an exchange of personal insults.\ntt0113321,XVYzO4IEKro,Claudia reassures her mother in the pantry.\ntt0113321,5AZ2yDKNEXM,Claudia and Leo bond over the frustrations of dealing with their family members.\ntt0113321,Cl-BpGO92Lo,\"Aunt Gladys announces that she's always been in love with her sister's husband, Henry.\"\ntt0113321,7rI4qKw_X5g,Claudia gets saved by Leo after having an embarrassing run-in with her old friend Ginny.\ntt0113321,RQV-8HxVB44,Claudia and her brother Tommy pick up their quirky Aunt Gladys for Thanksgiving dinner.\ntt0113321,JOD_65vh8GI,Tommy and Leo spy on Claudia while she talks to Russell.\ntt0113321,kIrQoHQzxnY,Tommy tries to annoy Walter and his family by jumping all over their car.\ntt0113321,Hrztxo5t4Ic,\"While flying home, Claudia makes a desperate phone call to her brother.\"\ntt0113321,032myLDgIqw,\"After losing federal funding, Peter has to fire his youngest employee, Claudia.\"\ntt0311648,pf1K2ACmGKY,\"While buying a new used suit, Bobby talks to Latrell about love and how it can transform a person.\"\ntt0311648,CE8HyH5ldEY,\"Wayne, an oddball neighbor of April's, crowds her in the kitchen.\"\ntt0311648,9RfC79nFT3U,Joy's funky music puts her in a sexual mood.\ntt0311648,SCcBom6117E,\"When April appeals to her neighbors for help, Evette is highly amused until she hears the whole story.\"\ntt0311648,n7mNY2F938Y,\"April receives some wisdom from a disturbing, cat-loving neighbor.\"\ntt0311648,-BuN5efFTXA,Joy gets a thrill from misleading her family with a mock-sincere speech.\ntt0311648,dxMTCKAWIJg,\"Joy readies herself for an unpleasant visit at April's, but Jim remains optimistic.\"\ntt0311648,-_HF-nKeabs,\"As April inspects Bobby's salt and pepper shakers, she's reminded of her mother and her childhood.\"\ntt0311648,RuPWLi5ifL0,\"When April refuses to get out of bed, Bobby throws her in the shower. Meanwhile, April's family prepares for their big trip.\"\ntt0311648,ya84jIkf3b4,\"April's family arrives in her low-income neighborhood for Thanksgiving, but are scared off when they meet her boyfriend Bobby.\"\ntt0311648,5s5GkWkrX5Q,\"Joy attempts to share memories of April with her husband and family, but they can't seem to get them straight.\"\ntt0311648,ot3mRlgseio,April tries to explain the meaning of Thanksgiving to her Chinese neighbors.\ntt1731141,kfJINAKOgEY,Ender has a new strategy that he believes will end the game for good.\ntt1731141,qwMUlFU1Db4,Colonel Graff and Mazer Rackham tell Ender the truth about the simulation.\ntt1731141,6RVyL8lNtj4,Ender leads his team against the Formics in the final battle simulation.\ntt1731141,DSmDEMdKauI,Ender leads his unit in increasingly complex battle simulations against the Formics.\ntt1731141,M6rf7s7NXnc,Ender learns the full story of how Mazer Rackham defeated the Formics on Earth.\ntt1731141,3E9TWmE3dfI,Ender disobeys his commander Bonzo's orders and helps Salamander Army to victory.\ntt1731141,2NPSwpdx6iQ,Ender leads his Dragon Army against two teams in the Battle Room and tries an unexpected tactic.\ntt1731141,79kT7fUtLD0,Ender gets into a fight with Bonzo and then deals with the aftermath.\ntt1731141,oDRFKZVZwcA,Ender plays a video game that is made to lose and shows ingenuity and a killer instinct.\ntt1731141,XPcqVHZo22M,\"After realizing that the Formics were communicating with him telepathically, Ender discovers the last survivor of the species and makes a promise.\"\ntt1670345,Qd4hB_s-GzA,\"Merritt McKinney, J. Daniel Atlas and Henley put on one last show to say goodbye.\"\ntt1670345,Is4mo3dbWvs,\"Agents Alma Dray, Fuller and Rhodes engage in a car chase with Jack which does not end well for Jack.\"\ntt1670345,Vx9EOI4RyBs,The Four Horsemen stage a bank robbery for the final trick of their show.\ntt1670345,8cLtNUD4Hcw,The Four Horsemen rob Arthur Tressler in front of their audience.\ntt1670345,kJzOYZNQv6M,\"Jack, Agent Fuller and Agent Rhoades get in a fight at the apartment.\"\ntt1670345,GSQpio_F0Vc,\"J. Daniel Atlas, Henley, Jack and Merritt realize they all have been summoned together.\"\ntt1670345,AQX2Q-V2Uh8,FBI Agent Dylan Rhodes and Interpol Agent Alma Dray interview Mentalist Merritt McKinney and J. Daniel Atlas\ntt1670345,2bpkd6hwH6U,Henly performs her first trick - to escape from a tank before she is eaten by pirahanas.\ntt1670345,h4u9pO-98ZM,\"The Four Horsemen are welcomed into the secret society of magicians known as \"\"The Eye\"\".\"\ntt1670345,aJ67Fz1Jf6E,J. Daniel Atlas explains how magic works and he performs his first trick.\ntt1670345,HraqSpgcdgM,Agent Dylan visits Thaddeus Bradley in jail.\ntt1418377,ib-1a-0LHh0,Adam goes to Naberius' headquarters to get back his father's journal from Terra.\ntt1572315,qNoGZiSKCaY,Heather Miller makes a series of eerie discoveries.\ntt1588173,fZNPbMu2Ge0,R shows up at Julie's house.\ntt1418377,W_hzD9mTSpc,\"While trying to search for Sarah, Adam runs into Gideon.\"\ntt1588173,x2lBq3c3AIY,Julie kisses R after he saved her life only to discover that he has become human.\ntt1588173,jpIVQIuoX1g,R and Julie meet up with M and a large group of changed zombies who are prepared to help the humans fight off the Boneys.\ntt1588173,rYVsdfE_Wh8,\"Julie and R attempt to tell her father, General Grigio, about how the zombies are changing.\"\ntt1588173,NdcXHqLPufg,R discovers Julie surrounded by a group of hungry zombies after she grew restless and attempted to go home.\ntt1588173,ZS5K9DzFIco,Julie attempts to escape from the saftey of R's airplane home despite his warnings.\ntt1588173,YAcZjKbm2tk,R reveals to Julie that he is the one who killed her boyfriend.\ntt1588173,4zT1vWidAJ0,R runs into M and other zombies who have started showing signs of life just like him.\ntt1588173,ZD5vHtlpl3Q,\"Julie is saved by a zombie named R after most of her group, including her boyfriend, is killed.\"\ntt1549920,RTnR82EswKE,Sheriff Owens chases Gabriel Cortez through a cornfield.\ntt1549920,bDm5fnJ1Hg0,Sheriff Owens makes his last stand on the bridge to Mexico.\ntt1549920,c2HEnbmtknM,Sheriff Owens and his deputies get into a firefight with the bad guys.\ntt1549920,FhnVceTIOTw,\"As Frank tries to help Sarah, an old lady teaches a bad guy a lesson on trespassing, protecting Sheriff Owens.\"\ntt1549920,_jru7QsVP2Q,Sheriff Owens gets into a shootout with Burrell.\ntt1549920,HxdxfEN2v9s,Sarah and Jerry Bailey are pinned down by the henchmen's gun fire.\ntt1549920,D9SLyzcYXw8,Sheriff Owens fights Gabriel Cortez on the bridge to Mexico.\ntt1549920,fYb0fQOH11g,Cortez's men destroy the roadblock set up by the police.\ntt1549920,ryRzxiWudaA,\"While in FBI custody, Gabriel Cortez escapes with the help of his henchmen.\"\ntt1549920,1Yh8ZXaDY00,A few members of the deputy's department practice shooting Lewis's new gun.\ntt1572315,VEc6d81jgQ0,Heather saves Leatherface from a grisly fate and he returns the favor by bringing Mayor Hartman to his.\ntt1572315,rGDHR_rveJc,\"Bound and helpless in a slaughterhouse, Heather has a harrowing encounter with Leatherface.\"\ntt1572315,02uIi7094E8,\"Heather Miller, Ryan, and Nikki make a desperate escape, but Leatherface is hot on their heels.\"\ntt1572315,I2qyEk67i4Y,Kenny makes the classic mistake of checking out the basement alone.\ntt1572315,v_wQqiFXgkY,\"Drayton Sawyer tries to protect Leatherface from a police posse led by Mayor Burt Hartman, and even Sheriff Hooper is powerless to stop him.\"\ntt1418377,6nTk0X-QW_0,Adam tries to run away from the demons who are hunting him and in turn he starts hunting them.\ntt1418377,cHRpQP_dp8Y,\"After accidentally causing the death of a human, Leonore has Gideon capture Adam.\"\ntt1418377,rbYJ1-y-sk8,\"Operating under the name Charles Wessex, Naberius has his scientists, Terra and Carl, try to bring a dead rat back to life.\"\ntt1418377,H9PhEc4cgVw,\"Naberius tries to have a demon possess Adam, but Adam has other plans.\"\ntt1572315,i7Bx0--TioI,\"Heather wakes up trapped in Leatherface's chop shop with Kenny, and things quickly go from bad to worse.\"\ntt1572315,Fm4WFtwxJ9g,\"Heather barely escapes Leatherface's attack on the van, only for him to pursue her into a carnival.\"\ntt1572315,0ROOrIJuhJw,Heather and Officer Marvin each make a shocking discovery.\ntt1572315,6F-zsgYCXwQ,\"Verna writes a letter to Heather about her inheritance: an estate, a history and her cousin, Leatherface.\"\ntt1418377,FX4J_vERu9I,Gideon leads the gargoyles against a horde of demons sent to attack Leonore's cathedral to capture Adam.\ntt1418377,eXGYvqetC18,\"While burying his creator Victor Frankenstein, Adam is captured by gargoyles.\"\ntt1418377,WJs5SraEnMM,\"Gideon makes a trade to save Leonore, his queen, as Adam watches from the shadows.\"\ntt1418377,K8IgSndDsjs,Adam and Helek fight to the death.\ntt1650043,hQD_fanPkns,\"Rodrick's band performs, but his mom is the real star.\"\ntt1650043,Z5nYySfvSi0,\"Rodrick picks a bad time to steal Greg's diary, and Greg picks a worse place to hide.\"\ntt1650043,2tVvgJbqH7U,\"Rowley's awkwardness threatens to stop the party, but his charm more than makes up for it.\"\ntt1650043,TKkrgiTpj1c,\"Greg unwittingly sits on a chocolate bar, making it look like he sat on something else.\"\ntt1650043,_kyTyYh6LZ0,\"When Rowley's magic act fails, Greg finds the x-factor: comedy.\"\ntt1408253,WhWW2IXg_-E,Ben discovers he's been shot in the leg.\ntt1408253,bb9m4vvEkHc,Ben and James find themselves in a shoot out with Omar and his crew.\ntt1408253,J0uhG-I0GZ4,Ben and James interrogate Jay to find out where the Serbian arms deal is going down.\ntt1408253,B3ECx3J3LTQ,Ben attempts to talk psychopath Crazy Cody out of a rampage in a supermarket.\ntt1408253,F2Bw4OLZHq8,James rescues Ben after he intimidates some Serbian troublemakers at the strip club.\ntt1408253,hnCQCX3AHzY,Ben tries to teach a lesson to a gang of loitering bikers.\ntt1408253,_NVC5g_Yngg,Ben practices his shooting at the range with James.\ntt1408253,35D2hJCrDVw,Ben enlightens young Ramon and convinces him to stay in school.\ntt1408253,A0R1F_FhwRg,James catches Ben and Angela in the act.\ntt1408253,BzEjGy7EPIc,Ben and Angela discuss the future of their relationship.\ntt2848292,lX4H0NmDMck,The Bellas perform at the World Championship competition.\ntt2848292,rSCm0viS2mM,Fat Amy serenades Bumper.\ntt2848292,pCQ0k_WvwvQ,Aubrey leads The Bellas in a series of trust exercises designed to help the girls get their harmony back.\ntt2848292,dLXri8sYr6Q,\"The Bellas share their dreams and sing \"\"Cups\"\" around the campfire.\"\ntt2848292,5EFY3vpKDII,\"The Bellas, the Treblemakers, the Tone Hangers, Das Sound Machine and the Green Bay Packers have a riff-off hosted by an acapella enthusiast.\"\ntt2848292,lssQ4w2V4XM,\"The Bellas watch the German collective, Das Sound Machine, perform at a car show.\"\ntt2848292,U7xQuGf5QHA,Fat Amy has a wardrobe malfunction during a Bellas performance for the Obamas.\ntt2848292,MCFqMGgv1YY,Beca mashes up Christmas songs with Snoop Dogg.\ntt2848292,C_BolURdHXo,Das Sound Machine and The Bellas trash-talk each other after the performance.\ntt2848292,2wdQcUUgce0,Emily tries out for the Bellas.\ntt0369610,sXHsY1eoIzA,Claire releases the T-Rex to help fight Indominus.\ntt0369610,oPS8-oRvVh4,Blue returns and joins the T-Rex in the fight against Indominus.\ntt0369610,0FkeGnobtfo,\"Owen regains leadership of the raptors, and together they attack the Indominus Rex.\"\ntt0369610,WqFEn5wQhBI,Beth and the boys try to outrun the pursuing raptors.\ntt0369610,d0x7-oo9NAk,Owen and the raptors hunt for the Indominus Rex.\ntt0369610,LBTE3aH5gpw,Madness ensues when the freed pterosaurs attack the park visitors.\ntt0369610,5ywvhn6Y4aE,\"While exploring in the gyrosphere, Zack and Gray are attacked by the Indominus Rex.\"\ntt0369610,zGzurjIEhNA,\"Led by the Indominus Rex, the raptors betray Owen, and attack the soldiers.\"\ntt0369610,OjxcWhQYMKw,The control team discovers that the Indominus Rex is still inside the cage with Owen and the other workers.\ntt0369610,Q3znhTOUqi8,Owen steps in to save a young handler after he falls into the raptors' cage.\ntt2820852,5KnFcsSIzbg,Dom remembers all the special times he's shared with his brother.\ntt2820852,2bWostOI7uo,\"Dom risks it all to save his family, and finish Jakande.\"\ntt2820852,bjqsWtO5Xjg,\"Just when the predator drone locks on to Letty and Ramsey, Hobbs arrives to save the day.\"\ntt2820852,pQeZSHyCe4Q,Dom and Shaw settle the score in an old fashioned street fight.\ntt2820852,Ff_G9EYI1xY,\"On his way to the roof, Brian is attacked by Tran and his henchmen.\"\ntt2820852,JVg5X7dUlLM,\"In order to escape with the God's Eye, Dom takes a huge leap of faith.\"\ntt2820852,UCYjKqnTM_U,\"Brian tries to escape the bus before it falls over the cliff, and Roman provides support to Dom.\"\ntt2820852,2uRRExAY-8g,The team's plan starts to head downhill once the prince's head of security finds Letty snooping around.\ntt2820852,0Wt72bHrHFo,\"As the team rescues Ramsey from the terrorists, Shaw shows up to get his revenge.\"\ntt2820852,1XqI8Lyp21A,Hobbs doesn't take too kindly to Shaw breaking into his office.\ntt2980516,Aap_UtTuzYs,Jane and Stephen reflect on their life together.\ntt2980516,KLp6N46er6Y,Stephen answers an audience question about beliefs.\ntt2980516,EK9aDAUBBhE,Stephen and Jane end their marriage.\ntt2980516,28MSXeKCm00,Stephen tries his speech synthesizer for the first time.\ntt2980516,_r-SkfDZphk,\"Stephen, Jane, and Jonathan discuss Stephen's new boundless universe theory.\"\ntt2980516,pU3klLr1CPA,\"After Stephen has his surgey, Jane teaches him how to communicate.\"\ntt2980516,q6XF66xysgQ,Jane makes a life-changing decision regarding Stephen's health.\ntt2980516,62tZR_Z_y08,Stephen learns that he has motor neuron disease.\ntt2980516,8kaJJGWYXxs,Stephen forms his thesis after hearing Penrose discuss his black hole theory.\ntt2980516,xG4b0-DSLrI,Cambridge professors approve Stephen's theory about a space/time singularity.\ntt0066995,vCo2uqlAi4s,\"Bond goes to Whyte's mansion, but instead finds two attractive and deadly ladies, Bambi and Thumper.\"\ntt0066995,i2MdefwrjCQ,James Bond tries to sabatoge Blofeld's plan but Tiffany inadverntly switches them back.\ntt0066995,FVqRqUIDG-A,Bond hijacks a moon buggy.\ntt0066995,UyzhnEqtWAc,Tiffany goes to Circus Circus to retrieve the missing diamonds.\ntt0086006,JGyNRQzR_Vg,Bond claims to have given up his old ways.\ntt0066995,qraA12BrzVo,\"While looking for Whyte, Bond runs not into one Blofeld, but two.\"\ntt0066995,X33UjqGVc18,James Bond is cremated after being knocked out by Mr. Kidd and Mr. Wint.\ntt0086006,m1AuOoDw25g,Bond escapes from a dungeon to rescue Domino from an eager group of North African slave buyers.\ntt0066995,wLPEeDsZwGs,\"While undercover as Peter Franks, Bond meets the alluring Tiffany Case, a diamond thief.\"\ntt0086006,JghXTjexZpE,Bond steals a kiss from Domino to provoke Largo.\ntt0086006,8RlDsORXN7c,Bond uses Q's newest motorcycle to pursue the evil Fatima Blush and evade henchmen.\ntt0086006,nuVfizTRHZs,Bond proves he is full of surprises when held hostage by Fatima Blush.\ntt0086006,wUT5CpgYXMM,Maximilian Largo challenges Bond to a high-stakes game of world domination.\ntt0086006,CCwUD5fwJwc,Bond is attacked by sharks after Fatima Blush places a homing beacon on his wetsuit.\ntt0086006,rF2GB1UYxtw,James Bond and Fatima Blush cannot withstand their attraction as they prepare for a deep sea diving expedition.\ntt0086006,qH3jaW3YJ9o,Q takes Bond down to his shop to show off a few of his newest gadgets.\ntt0086006,F5gztKbIoaY,James Bond is ambushed by Lippe in the weight room of a convalescent home.\ntt0062512,iKqEJ2xeATo,\"Bond uses one of his handy gadgets to attack Blofeld's men, and open the crater door.\"\ntt0062512,dp5dgNKh77M,Bond uses all of Little Nellie's tricks to take out the bad guys.\ntt0062512,0ay2sO6tWbE,\"Bond meets Ernst Stavro Blofeld, a new power in the world.\"\ntt0062512,-Cc7j0yr2BY,Bond gets his latest gadget from Q.\ntt0062512,VVLlZy4m23c,An assassin sneaks into Bond's bedroom hoping to poison him while he sleeps.\ntt0062512,GaGIb91Mi2w,Bond and Aki evade Osato's henchmen with unusual efficiency.\ntt0062512,f5wOz-3L1jQ,Bond fights off several dockside henchmen while gaining intel on the Ning-Po.\ntt0062512,IBqY6eBSQZw,Bond is betrayed by the beautiful Helga in mid-air.\ntt0062512,PtlmPi0DXws,Bond enjoys learning about Japanese culture.\ntt0062512,uIQL79UQG40,Bond wrestles with one of Osato's henchmen.\ntt0246460,yJlbyxOHrdI,\"Miranda Frost and Jinx have an epic sword fight, while Bond and Graves fight to the death.\"\ntt0246460,P3CF3QER_h4,Bond goes over a cliff while trying to outrun the power of Icarus. Thankfully he is very resourceful.\ntt0246460,oNGZFJUThHY,\"Just as Jinx is about to be killed by laser, Bond comes to her rescue.\"\ntt0246460,DvoPZUYUdEM,\"Bond confronts Graves after finding out his true identity and that of his betrayer, Miranda Frost.\"\ntt0246460,GhTOt1_Miag,\"Before Graves gives his presentation on The Icarus Project, Bond flirts with Miranda and Jinx.\"\ntt0246460,Y6SIARg-j5c,James Bond engages in an exhillirating hovercraft chase while on a mission in North Korea.\ntt0246460,fNxA27iQkGw,Bond and Graves fight the old fashioned way - with swords.\ntt0246460,lViscSQzK8Q,Q gives Bond his gadgets for his upcoming mission - including an invisible car.\ntt0246460,LzKWVeX9qQU,\"After breaking out of the hospital, a hairy Bond swims to Hong Kong and checks into the Yacht Club.\"\ntt0246460,-4kio7152q4,\"While on a mission in Cuba, Bond meets the sexy Jinx.\"\ntt0057076,4Vlw-NzSvoc,\"After hijacking Grant's getaway truck, Bond and Tatiana are spotted by an enemy helicopter.\"\ntt0057076,XlvqgnIkzZU,Grant holds Bond at gunpoint and explains how much of a fool the famous British spy has been.\ntt0057076,jbdRO4BSXSU,\"Bond, Kermin and Tatiana steal the Lektor from the Soviet consulate.\"\ntt0058150,VshyrsRdoF0,Bond wakes up on Goldfinger's personal plane being flown by the one and only Pussy Galore\ntt0058150,GvyKxUL0x0M,\"Thinking that the adventure is over, Bond is surprised to find that his inflight service will be provided by Goldfinger and a loaded gun.\"\ntt0058150,r449aYwQvE8,Bond finds himself chained to a bomb and locked inside the vault of Fort Knox with Oddjob and his deadly hats.\ntt0058150,5p8meeqGJbg,Bond breaks out of his prison in time to spy on Goldfinger explaining his master plan.\ntt0058150,fZPyHZo5oDE,\"Bond wakes up to find himself tied to a table in the direct path of a large industrial laser, while Goldfinger watches from the side.\"\ntt0058150,AAbtiIrTqCE,\"Frustrated with the outcome of his two encounters with Bond, Goldfinger has his henchman, Oddjob, show the spy what happens to people who meddle in his affairs.\"\ntt0058150,SpSnm6rxTqU,\"Bond notices Goldfinger cheating at cards, and decides to play with him a bit, along with his sexy accomplice Jill Masterson\"\ntt0057076,-SXbmeFCnTM,\"As Bond and Tatiana enjoy themselves in a Venice hotel, Rosa Klebb arrives disguised as a maid.\"\ntt0058150,USD2Y7wRNgk,\"After Bond and Jill Masterson get to know each other better, Bond finds himself knocked unconscious and finds Jill dead, covered in gold paint.\"\ntt0058150,hON2sYpnJoQ,Bond gets a little more than he bargained for when he visits Bonita for a good time.\ntt0057076,zyTVafoAylI,\"While escaping by boat, Bond and Tatiana find themselves being pursued by SPECTRE.\"\ntt0057076,cBiLSCP95Nk,\"When SPECTRE assassin Red Grant gets Bond at gunpoint, James uses his final moments to pay Grant for one last cigarette.\"\ntt0057076,jaA7_aOD2ig,Bond returns to his hotel to find Tatiana Romanova in his bed.\ntt0057076,xsL7T32XG3M,Bond and Kerim Bey are visiting a gypsy settlement when they are attacked by a truckload of Russian assassins.\ntt0057076,1XEn8W3UA3w,\"While visiting a gypsy settlement, Bond witnesses two woman, who are in love with the same man, fight over who gets to be the man's wife.\"\ntt0057076,MDJ7Du14G-4,M brings in Q to equip Bond with a very special briefcase.\ntt0830515,fAfd4y1IY-U,\"As Bond chases after Greene, Camille tries to get revenge against General Medrano.\"\ntt0830515,EANmB0vOPqo,\"Bond and Camille struggle to find a way out of the burning inferno, while Greene tries to escape into the desert.\"\ntt0830515,C6hIucqz4_A,\"While surveying the Bolivian land, Bond and Camille are attacked by Quantum's henchmen.\"\ntt0830515,i0yWgvRAqTU,\"Bond tracks down Mr. Slate, one of Mitchell's contacts, to Haiti where he searches for answers.\"\ntt0830515,_vHFGZXqIis,Bond heads to Russia to get revenge for an old friend.\ntt0830515,q8sWDRO5C4Q,Bond takes a forceful approach to rescuing Camille from General Medrano.\ntt0830515,lVdSRz3Jsjo,\"After gaining intel about Quantum, Bond tries to escape the opera with his life.\"\ntt0830515,y88S2uDB1ks,\"After betraying Mi6 and attacking M, Bond seeks to get revenge on Mitchell.\"\ntt0830515,P056r-oeODU,Bond discovers Mathis's lifeless body in the trunk of his car after being pulled over by the Bolivian police.\ntt0830515,7TG6R36bkgs,Bond and M find out just how little they know about the capabilities of Mr. White's organization.\ntt1074638,eTeBFTlR0VI,The end draws near for M as she finds herself in Silva's grasp and 007 out of the picture.\ntt0059800,9MdivySyCng,Bond joins and finishes the underwater battle with Largo and his men.\ntt0059800,COqQwiq4uA8,\"In their final confrontation on the boat, Largo is about to take out Bond but Domino comes to his rescue.\"\ntt0059800,zkTbNH79i9A,Largo and his henchmen engage in an underwater battle with US Navy Seals.\ntt0059800,SR6W8_yd3yM,\"Largo shows Bond his mansion, including his pool full of dangerous sharks.\"\ntt0059800,n6rv6RO9ZFY,Bond tells Domino about Largo's involvement in her brother's murder and she agrees to help him stop Largo's plan.\ntt0059800,JPDhxTbWjuc,Bond is forced to escape Largo's mansion through a swarm of flesh eating sharks.\ntt0059800,KzCVggIa4uE,\"While on a spinal traction machine, an attempt is made on Bond's life.\"\ntt0059800,aQsyA4n7GZI,'Q' comes to give Bond his gadgets.\ntt0059800,z39yOZpcji0,Blofeld holds a meeting with his SPECTRE operatives.\ntt0059800,4pUeurfZ5n8,\"After taking out a SPECTRE operative, James Bond escapes via jet pack.\"\ntt0381061,UfmbUwrXatE,\"In a suspenseful final round of poker, Bond wins with a straight flush.\"\ntt0064757,uO47LgAVYCc,\"Bond continues his nighttime ski escape, with only one functioning ski.\"\ntt0064757,MochwVdcaEk,Bond and Blofeld have their final confrontation on a luge track.\ntt0113189,C09knP1SAyA,\"As Grishenko attempts to figure out the password, Bond counts clicks on Q's exploding pen.\"\ntt0113189,DdktDH98D_g,Natalya watches in horror as Goldeneye vaporizes all she knows.\ntt1074638,roaWSb9xc8I,Bond falls into icy water and uses his ingenuity to avoid certain death.\ntt0113189,p0udEu1z-jg,Bond and Trevelyan pit their MI-6 training against each other in a no-holds barred battle of brutality.\ntt0113189,vAJAM1jm2xI,Bond pits his tank against an armored Soviet train to stop Trevelyan.\ntt0113189,wGmDAjRRNXs,Bond fights to the death with Trevelyan atop the Goldeneye satellite platform.\ntt0381061,YsQEo4ja5Z8,\"As the villa crumbles into the canal, Vesper locks herself in the elevator and drowns to death, despite Bond's efforts to save her.\"\ntt0113189,Of7LHW5cCBQ,Xenia Onatopp rappels down to squeeze the life out of Bond.\ntt0113189,JA4fL1qiQTU,\"Bond encounters his former partner, Alec Trevelyan, who has a bone to pick with MI-6.\"\ntt0113189,lCCeLue8owM,Bond sabotages a Soviet chemical weapons facility and makes a quick retreat.\ntt1074638,beAc5oqxBHw,\"Bond tries to rescue M, before Silva can get his revenge.\"\ntt0120347,seFIcguvgXk,Bond and Wai Lin make a daring retreat from Stamper.\ntt0090264,-qVNWgbzbS8,\"Bond investigates Zorin's oil rig, but gets caught in the water intake turbine.\"\ntt0090264,UBPOSCR4el4,\"Stacey holds Bond at gunpoint, but soon realizes that he's not her enemy.\"\ntt1074638,kG8GuXOjIPA,Silva has one more trick up his sleeve to evade Bond.\ntt1074638,m4a6jkZiOkM,Severine warns Bond about the dangers of her employer.\ntt0071807,H07vHL7APyU,Nick Nack tries to ruin a good night for Bond.\ntt0064757,oSo9Wu-jAyY,Bond proposes to Tracy.\ntt0071807,ZVQNsHBi9oA,Bond and Scaramanga face off in a duel to the death.\ntt0071807,D2HaKTqp4fQ,\"With J. W. Pepper's help, Bond tries to catch Scaramanga and rescue Goodnight.\"\ntt0071807,SlL11KaxU7w,Scaramanga shows Bond the power of solar energy.\ntt0071807,6B-QUGSCV6c,Scaramanga evades Bond with a new innovation.\ntt0064757,LKp3HoZGP2E,\"While Bond and Draco attack Piz Gloria, Tracy fights one of Blofeld's henchmen.\"\ntt0071807,IVhxiyqp4do,\"With Hai Fat's henchmen in hot pursuit, Bond takes matters into his own hands and splits.\"\ntt0071807,WCKRXHDI9Ro,Bond fights his way out of Hai Fat's dojo with the help of Hip and his nieces.\ntt0071807,f__qWwak6Zg,Bond and Scaramanga come face to face at the kickboxing fight.\ntt0071807,hpaXyCsOZUg,Andrea pays a visit to Bond's room while he's having Goodnight.\ntt0071807,b1KjK4fd3ZU,Bond finds Andrea in a very exposed position.\ntt0097742,HZEaFYQecn8,Bond has his final showdown with Franz.\ntt0097742,8KFPOKVSi7M,Bond evades the stinger missle with a resourceful strategy.\ntt0097742,RFTI9DnYSpY,Franz and Dario put Bond on a conveyor belt to death.\ntt0097742,ter7pAZF_nY,Bond sets up Krest to take the fall for the missing money.\ntt0097742,_CO3CMXf19A,Q surprises Bond with some new gadgets.\ntt0097742,dCCo8xDMsJE,\"Bond attempts to assassinate Franz, but he's stopped by a pair of ninjas.\"\ntt0097742,84k1F9o1g7k,Bond fights off henchmen in air and sea after he escapes the Wavekrest.\ntt0097742,GHZnuSLPSG4,Bond tries to find out more about Franz from his new card dealer.\ntt0097742,9F_FhwkKdSw,Bond does a little fishing for druglords before dropping into his friend's wedding.\ntt0097742,Zl9yu2xvv78,Franz gets his revenge on Felix by feeding him to the sharks.\ntt0064757,I_4ZduVVJrc,\"When Bond goes to meet Ruby, he is met with an unexpected surprise. Blofeld tells Bond his plan to take over the world.\"\ntt0064757,JzPOYDni_FQ,Bond tries to escape Blofeld's lair by skiing down the mountain.\ntt0143145,VDWYVgMxBss,\"While meeting at Zukovsky's caviar factory, Bond and company are attacked by Electra's sawing helicopters.\"\ntt0064757,ZhBCiQ49Iz8,Bond flirts with Tracy until he is attacked by bad guys.\ntt0064757,BG59rpilakA,\"While driving away from thier wedding, Bond and Tracy are attacked by Blofeld and Irma with tragic results.\"\ntt0064757,QBip3RFko4I,\"Bond, posing as Sir Hilary Bray, enjoys dinner with beautiful women.\"\ntt1074638,YpHAGZoV1ds,Silva forces Bond to test his marksmanship skills on Severine.\ntt1074638,-gZPZLSUZZ0,\"Bond comes face to face with the man behind the attacks, Silva.\"\ntt1074638,m5p1wM1ZHQ0,\"Before he can leave the casino, Bond has to evade more than just Severine's bodyguards.\"\ntt1074638,yV8-IGY64pE,Bond and Eve chase a mercenary throughout the streets of Istanbul to recover a stolen hard drive.\ntt1074638,9NG5mJgw6Yg,\"Eve finds an opportunity to take out the mercenary, but it comes at the risk of shooting Bond.\"\ntt0381061,UQRxN8qagG0,Bond and Vesper confess their feelings for each other.\ntt0381061,ifFEIzFztAo,Bond meets Vesper and instantly they can see through each other's facades.\ntt0381061,xAPOeXEUwnk,\"After finding his target, Bond blows up the Nambutu Embassy.\"\ntt0381061,38nBkookHsI,James Bond enjoys a swim at The Ocean Club in the Bahamas.\ntt0381061,J11TVWwQNvI,James Bond chases Mollaka through the streets of Madagascar.\ntt0381061,IsGdB6a1Evc,\"After being poisoned by Le Chiffre, James Bond goes into cardiac arrest. But Vesper Lynd comes to save him just in time.\"\ntt0381061,0quEnseH0zo,Bond goes to take out a double agent in his first mission as a 00.\ntt0381061,BI_Vx6y7xG8,James loses to Le Chiffre in a game of high stakes poker.\ntt0143145,3opX0w7T_qo,Elektra tightens her grasp on Bond and reveals her true intentions.\ntt0143145,Q1WdlXsvk3U,Bond and Christmas try to stop Renard before he can set off the nuclear reactor.\ntt0143145,7DmN0--tZcE,M and Elektra watch as Bond and Dr. Christmas try to defuse the nuclear bomb before it destroys the pipeline.\ntt0143145,HJV1Cqh8M5M,Bond tries to catch Renard before he can escape the silo with the bomb.\ntt0143145,XhT1nAzegiE,Bond fends off a team of assassins in paraglider-equiped snowmobiles.\ntt0143145,K7p93XsmJ0c,\"After escaping captivity, Bond gives Elektra one more chance to end the attack.\"\ntt0143145,m1Q_m9pvy2A,\"As Elektra gambles on her future, Bond plays the riskiest game of all.\"\ntt0143145,bQyfZXYp7Mg,Bond takes full advantage of his X-ray glasses while he makes his way through Zukovsky's casino.\ntt0143145,yk-b5jvZjLM,Bond uses the Q Boat to chase King's assassin throughout London.\ntt0120347,gappVpWfuCA,Bond investigates Elliot's newspaper printing company until Wai Lin blows his cover.\ntt0120347,RB_-9bINJCM,Bond and Paris rekindle their romance.\ntt0120347,5fAASR7YMDE,\"Bond and Wai Lin investigate a sunken ship, only to find themselves sinking as well.\"\ntt0120347,Ws4ETwvXFw0,Bond allows civilians to escape from a Russian base before a missile atomizes it.\ntt0120347,7PqjhsPYyy4,\"While Elliot announces his journalism magnate to the world, Bond gets accounted with his subordinates in the backroom.\"\ntt0120347,NweXJhbk9P0,\"Elliot corners Bond, but Bond's the one writing the obituary.\"\ntt0082398,X8J0iWSsYV0,Bond and Melina lead an assault on Kristatos' mountaintop monastery to keep a powerful device out of Soviet hands.\ntt0082398,5fg1GTRuYHg,Bond and Lisl are attacked on the beach.\ntt0082398,yuBFthJcBiA,Bond and Melina meet an armored assassin in the sunken ship.\ntt0082398,PPwud5IUnYs,Bond and Melina are tortured with a vicious keel-hauling.\ntt0082398,gSN6EodbL1c,Kriegler gets another shot at Bond on the ski slopes.\ntt0082398,4z9TimZytDI,\"Bibi gives Bond a little too much information at the ice rink, interesting some aggressive hockey players.\"\ntt0082398,T-KYqRfLg4U,Bond jokes around Q's lab again.\ntt0082398,YBgsfgkgtqk,Bond eludes Kriegler on the bobsled course.\ntt0082398,AH25lc44Og0,\"Bond is captured by Hector Gonzales, but a deadly assassin changes everything.\"\ntt0082398,SM-Y8FPMqzg,Blofeld traps Bond in a remote-controlled helicopter.\ntt0090264,RCzC3ZeMxws,\"Zorin details his evil plan for his clients, but not everyone is as on board as he'd like.\"\ntt0090264,tSZtoveaa0A,Bond battles with Zorin high over the Golden Gate Bridge.\ntt0090264,dezECMjxlCI,Bond chases May Day all over Paris.\ntt0090264,do6yVKI5M-o,\"While Bond and Tibbett investigate his laboratory, Zorin and May Day get hot and sweaty.\"\ntt0090264,yC4LZXraLBM,\"Bond dangles from Zorin's blimp, determined to put an end to his mad schemes.\"\ntt0090264,BbryMMaAUKo,Bond and May Day work together to stop Zorin's bomb.\ntt0090264,2j6I87SIfbM,\"Zorin makes a wager with Bond to survive his steeplechase course, but there's no way for Bond to win.\"\ntt0090264,f4-sMr967Jw,Bond escapes from Soviet soldiers and warms up with his submarine captain.\ntt0086034,PzuBG7VmIlk,Bond fights with Gobinda atop Khan's airplane.\ntt0086034,pHQsot2suvI,Bond impersonates a clown to infiltrate a circus and defuse a bomb.\ntt0086034,zBeW_hheeGo,Bond and Q aid Octopussy's sisterhood in a hot air balloon.\ntt0086034,_qVs22tSUnA,\"Attacked by General Orlov, Bond risks life and limb to stay with the bomb aboard the Octopussy Circus train.\"\ntt0086034,_v1FiZlF3bU,Bond survives against Gobinda and a knife-throwing assassin on a moving train.\ntt0086034,4gB-5OngLWQ,Bond desperately evades Khan's hunting party.\ntt0086034,jF5_WqbTmW8,Bond and Octopussy fight for their lives against a buzz saw yo-yo-wielding assassin.\ntt0086034,MK1fYMxkkTA,\"Gobinda chases Bond all over India, allowing for some creative uses of culture.\"\ntt0086034,M4oJLImqZds,\"Bond fools around in Q's laboratory, much to Q's chagrin.\"\ntt0070328,dLl5PQg_Hag,Bond and Solitaire are both captured by Kananga who intends to lower them into a shark tank.\ntt0086034,2xLWJOG7dO4,Bond eludes a heat seeker missile and lands with style.\ntt0070328,xQFsE2WoXL0,\"As Bond and Solitaire are getting some much needed down time on a train, Tee Hee and his metal arm decide to pay them a visit.\"\ntt0070328,KTQnnwDN3eU,Bond blows up Kananga's poppy fields as he rescues Solitaire from being sacrificed by Voodoo God of Death Baron Samedi.\ntt0070328,TBRqPFkAQCM,\"Bond battles Adam, one of Mr.Big's men, on the Louisiana bayou, while Sheriff J.W. Pepper races to confront the man tearing up his territory.\"\ntt0070328,vmyGlOoCbp0,Bond is taken to Kananga's crocodile farm that doubles as a drug lab.\ntt0070328,upQ-MXF_ZgI,\"After stealing a speedboat, Bond is pursued by Kananga's men throughout the Louisiana bayou, much to the frustration of local Sheriff Pepper.\"\ntt0070328,sojzO-UWObY,Bond and Solitaire steal a double-decker bus while attempting to escape from police controlled by Kananga.\ntt0070328,70kZeFs721U,\"When Bond and Solitaire are captured by Mr. Big's men and brought to the airport, Bond, unarmed, decides that a grounded airplane is just what he needs.\"\ntt0070328,IP7jsmECPbs,\"After sneaking into Solitaire's house, Bond uses a stacked deck of tarot cards to seduce her.\"\ntt0070328,3GlfIStWMSY,\"After arriving in San Monique and finding a room reserved by his \"\"wife\"\", Bond discovers a slithery killer in the bathroom.\"\ntt0076752,FvEi2U7IKRE,Bond and Anya get to know each other better in the escape pod after their successful mission.\ntt0076752,3vDe4jJvC_o,Bond throws Jaws into the shark tank by his teeth.\ntt0076752,cGN5hLGphX4,\"Stromburg attempts to kill Bond, but Bond gets the better of him.\"\ntt0076752,yFlxYvgV3VQ,Stromberg shares his plan to blow up Moscow and New York with Bond and Anya in order to create a new underwater world.\ntt0076752,sHqb1FwBP2Y,\"While traveling by train to Sardinia, Jaws attacks Anya but Bond comes to the rescue.\"\ntt0076752,DDQzRai6Uao,Agent XXX and Bond fight Jaws for the microfilm.\ntt0076752,CDeNNNPzUlg,\"After dealing with a double agent, Stromberg's lair gracefully rises out of the water.\"\ntt0076752,n1gQ-1zEljg,\"While looking for the stolen microfilm, James Bond encounters Jaws for the first time.\"\ntt0076752,nR532k8M35g,Bond skis his way out of danger.\ntt0076752,3JySRf9aTPA,\"Bond and Agent XXX, aboard the Lotus submarine, engage in an underwater battle with Stromberg's henchmen - ending with them driving onto a beach full of stunned bystanders.\"\ntt0093428,w0ijJ45l-kM,\"As Shah's forces take out their Soviet oppressors, Bond and Kara make a death-defying escape in a military cargo plane.\"\ntt0093428,l6qtq8aC2Cg,\"Eliminating Shah's threats, Bond and Kara have to resolve their own problems in the falling airplane.\"\ntt0093428,TD8G-aSlweI,Q provides Bond with a handful of nifty gadgets and Moneypenny reveals the identity of Bond's latest obsession.\ntt0093428,TDhk_Xhxc3c,\"Bond and Kara escape the Soviets with the aid of a Bond car, a sled, and a cello.\"\ntt0093428,ITdkeKIFqL8,Bond discovers that the British war games are a well-concealed assassination attempt.\ntt0093428,Qo1WkD59F_w,\"High above the ground, Bond has a final showdown with Necros.\"\ntt0093428,JvZ5nh7sIzU,Bond and Kara blaze through Soviet defenses in his souped-up Bond car.\ntt0093428,J7M8LuEC99k,Rosika has a unique distraction for getting Koskov out of the USSR.\ntt0093428,LAmOoIdTjsw,Bond takes out the assassins and sets his eyes on a new conquest: Linda.\ntt0093428,McIJxpY89Kk,\"Impersonating a milk man, Necros infiltrates a British safehouse to kidnap General Koskov.\"\ntt0055928,S5jj3vqPau8,Bond and Honey Ryder barely escape the destruction of Dr. No's base only to find that they have a lot of time to kill waiting to be rescued.\ntt0055928,0u0SEECyGlM,\"On his way to see Miss Taro, Bond gets a very aggressive driver on his tail.\"\ntt0055928,Mh2Tf40llqw,\"Disguised as one of Dr. No's henchmen, Bond sneaks into the villain's control center and overloads the nuclear reactor.\"\ntt0055928,Fyo66z0NtHY,\"After arriving at Crab Key, Bond comes across a gorgeous, white bikini wearing, local named Honey Ryder coming out of the ocean.\"\ntt0055928,iedK7wzunWo,\"Quarrel and Honey Ryder finally show James Bond the \"\"Dragon\"\" of Crab Key island.\"\ntt0055928,rsT1bLR2sfM,\"During dinner in the underground lair, Dr. No reveals to Bond that he is part of an evil organization known only as SPECTRE.\"\ntt0055928,zF-3wgcDRk4,Bond is awoken in the middle of the night by a deadly spider.\ntt0055928,nLXoZ69ce-I,James Bond introduces himself to Sylvia Trench over a game of Baccarat.\ntt0079574,xx4t4fBIY88,\"Hugo Drax explains his vision for a new master race, but Bond and Jaws are determined to stop him.\"\ntt0079574,S4p8_i1lcCc,Bond uses his new speedboat's defenses to escape Jaws and his henchmen on the Amazon river.\ntt0079574,FFGAP7FxZKQ,Bond discovers that Dr. Goodhead is in fact a CIA agent and they share an intimate evening.\ntt0079574,cUX2Mj4SN7o,Bond escapes assassination in Venice with a tricked-out gondola.\ntt0079574,lTiCL83_dR4,\"In Earth's orbit, Dr. Goodhead and Bond attempt to destroy Drax's globes to prevent the deaths of millions.\"\ntt0079574,v5N1Aukm4Bo,\"Drax's assassin Chang tries to kill Bond in the centrifuge chamber, but Q has prepared Bond with a special wristwatch.\"\ntt0079574,sXnYoBCJGwI,\"Bond, Jaws, and Dr. Goodhead work together to stop Drax while U.S. forces battle his men.\"\ntt0079574,2MdAw_f5pAU,\"Bond battles the giant assassin Jaws while on a tram, high above Rio de Janeiro.\"\ntt0079574,tdXshjACQx8,Bond enters MI6 headquarters in Brazil and witnesses Q's latest inventions.\ntt0079574,87MO-gtYFT8,\"James Bond makes an airborne love connection, but is soon ejected from the plane without a parachute.\"\ntt1436562,zTlfN8HuEJA,Nigel sings about his TV show past and his current villainy.\ntt1436562,Gt4t3ZZsAnQ,Pedro and Nico welcome Blu and Jewel to Rio.\ntt1436562,gGxrQOUaM_E,Blu's fear of flying causes some serious problems for him and Jewel.\ntt1436562,PZheNUuK8jg,\"A flock of tropical birds welcome you to Rio, Brazil.\"\ntt1436562,oz6wjc6xLFU,Blu and Jewel's first encounter isn't as romantic as anyone had planned.\ntt1318514,T_HWlDa9t6o,Caesar leads his apes through San Francisco to reach safe haven in the forest.\ntt1318514,mKDqrUqOe8Y,Buck the Gorilla sacrifices himself to take down Steven's helicopter.\ntt1318514,_kz6s5Yi5Ns,Caesar leads his attack on the humans barring his path to freedom.\ntt0477347,o2oR9qYeySU,\"Putting out the Neanderthal's fire, Larry runs into his nemesis: Dexter the monkey.\"\ntt0477347,WeBy3_xqYtM,\"During his first night at the museum, Larry is captured by the miniature Old West exhibit, led by the cowboy Jedediah.\"\ntt1318514,JDbwEQG2cqI,\"Dodge tries to put Caesar in his place, but he's in for a big surprise.\"\ntt1318514,wS9RtY8dVpo,Caesar reels in horror with the first death in the great ape revolution.\ntt0477347,f-DgdMpSo7c,Larry loses his keys and worse to the mischievous Dexter the monkey.\ntt0489099,ahP1JZwHSh8,David fights with Griffin all over the world.\ntt0477347,nAgSecmB9lM,\"After getting harassed by an Easter Island Head, Larry's night continues to go downhill when he encounters Attila the Hun.\"\ntt0477347,JRloSmzWBOg,Larry discovers that something's amiss in the museum -but at least there's a unique solution for taming the T-Rex.\ntt0489099,M2hhUTxFLWA,David and Griffin go joy-riding - and teleporting - in a Mercedes-Benz.\ntt0489099,aWyYZ3-8oAM,David gets caught in Roland's trap.\ntt0489099,gwTTsc0zMco,David confronts Griffin in the Colosseum only to get a nasty surprise.\ntt0489099,Fm7B7WzAA1M,David realizes what Roland wants the second it's too late.\ntt0455499,1u0rQ7J3oS4,\"Garfield and Prince's paths finally cross, but neither realizes it at first.\"\ntt0455499,97hoM2qv05s,Garfield and his animal cohorts carry out their plan against the villainous Lord Dargis.\ntt0455499,75PCq-Wcdhw,Garfield shows the animals how to make his favorite dish: lasagna.\ntt0455499,SswN494Jxr8,Garfield humbling accepts his duties as ruling prince.\ntt0303933,2-7Jdip2Pfw,\"At the Classic, A&T has a final face off against the Morris Brown Drumline.\"\ntt0455499,FTV4FUlcIwQ,\"Garfield and Odie sight-see around London, looking for their owners.\"\ntt0303933,JaGoM25tGVA,Devon battles it out with Sean for best drummer in the band.\ntt0303933,2fsMce1OvXY,\"Baited by the opposing drumline, Devon kicks it up a notch.\"\ntt0303933,yAhuaFMTSKM,\"Devon shows his stuff to Sean, but Sean's got experience and humility on his side.\"\ntt0303933,EQW38-aU5gI,Devon tries out for A&T's marching band to slightly hostile judges.\ntt0098621,0JnpUYMPEiw,Oliver falls in love with the beautiful and flexible Barbara on a trip to Nantucket.\ntt0120461,21Dc8a8X8qg,Mike and Amy attempt to rescue a homeless man from the approaching lava using a fire ladder.\ntt0120913,g9U0df6KJiA,Akima and Cale Tucker fight off the Drej until they are absorbed by one of the ships.\ntt0098621,fCuS78YHrOY,Oliver is astonished and disgusted when Barbara feeds him his own dog.\ntt0114885,oMpgPQbRt8U,Bernie ransacks John's closet and burns his clothes along with his car.\ntt0098621,LxMYNhlh0Tk,\"When Oliver catches Barbara, she pretends to pleasure him, but ends up biting him in a tender place.\"\ntt0114885,IaOlL5WMFI8,Robin confesses to Savannah that she once had an abortion.\ntt0114885,1FXO-XToURQ,Marvin convinces Gloria that she's worthy of love.\ntt0120902,4xVAvx5hTic,\"A Texas boy drops into a deep cave, where an inky plague infects him.\"\ntt0098621,4Iza5db5Zvk,Barbara really angers Oliver when she runs over and smashes his beloved car.\ntt0120913,1MWZ3mZ-tUM,Capt. Korso saves Cale after all the ships guns are taken out.\ntt0105812,ajBHZKoKYbU,Gloria gets very upset when Billy brings her a glass of water to quench her thirst and they discuss their issues.\ntt0120461,LkWeBzzBUXY,\"With Mike giving the order, the entire L.A. fire department combats the river of lava flowing down Wilshire Blvd.\"\ntt0473308,F2Zm-637bQQ,\"Jenna calls Dr. Pomatter on his strange behavior, but realizes that she is also intensely attracted to him.\"\ntt0105812,yDtGS3G3xtY,\"Billy bets all his money that he can dunk the basketball, but Sidney assures him that he can't because he's white.\"\ntt0120902,RfltPijijjA,\"Mulder revives Scully with CPR, and they flee the fierce alien hatchlings.\"\ntt0105812,fgJ2CaTfaxU,Billy beats Sidney in a basketball shooting competition.\ntt0120902,esJNnh-d2E0,Mulder's tender moment with Scully is cut short by a bee sting.\ntt0096463,SEWMcT6bIi8,Tess listens on as Jack desperately tries to leave while Katharine clings to him.\ntt0120913,JQO8MTlO69U,Young Cale and company escape Earth just in time before it is destroyed by the Drej.\ntt0084855,qjYP7J3oP9Q,Frank gives a moving statement to the jury about faith and justice.\ntt0096463,PE-3JxqiV7M,\"When Tess arrives at her new job she expects to be the secretary, until Alice shows her to her window office.\"\ntt0096463,JKD_ZN2VC3g,\"Tess meets Jack at a work function and they share a few shots of tequilas, but no personal information.\"\ntt0096463,JjgKkluHXJM,\"When Trask's questions reveal that Katharine had lied, he tells her in no uncertain terms that she will be fired.\"\ntt0105812,t7DgbPjFOfY,Sidney blows up at Billy for constantly trying to distract the opposing teams with insults.\ntt0096463,FTHoIehOkK0,\"After Bob makes an inappropriate pass at Tess, she finds a creative way to teach her boss a lesson.\"\ntt0105812,0XCqc9fIGJ0,Sidney and Billy get a knife pulled on them when they try to hustle some street ball players.\ntt0473308,n5ArS3Got4U,\"Upon seeing her beautiful new baby, Jenna gains the courage to divorce her abusive husband.\"\ntt0473308,8EcrxgHLhIg,\"Dr. Pomatter tries to apologize for his bad judgment, but ends up making out with Jenna.\"\ntt0114885,pUO9-h182d4,\"Savannah, Gloria, Robin and Bernie drink and complain about men.\"\ntt0120461,CD0k2oB61h0,The volcano erupts near a mall and thousands of civilians.\ntt0120461,R01bex9Ejvg,\"By deciding to save the train driver, Stan makes the ultimate heroic sacrifice.\"\ntt0120461,M49PmHt8PEc,Lava erupts from the tar pits and Mike and Kelly must make a daring leap to safety.\ntt0250797,8iI9iC2OgFY,Ed loses control of himself and beats Paul with his wife's snowglobe.\ntt0250797,RH2IK1jcLuY,Ed confesses the murder of Paul to Connie.\ntt0250797,j-V12tL78Mc,Connie learns that she is not the only woman in Paul's life.\ntt0120902,_QUAEFiNatE,Mulder is awestruck as a massive spaceship launches into the sky above him; Scully is barely conscious.\ntt0120902,orhrsjDwamY,\"In a giant dome tent, Mulder and Scully are set upon by a swarm of bees.\"\ntt0098621,S_PMSA9fgiI,Oliver humiliates Barbara at her dinner party by disgusting her clients and pissing on her main course.\ntt0084855,u-2jqTXKQyU,\"Frank confronts the judge about his unfair treatment, but refuses to give up.\"\ntt0084855,5lkqZP5rBvg,Frank shares his views on justice as he gets to know Laura at the bar.\ntt0084855,ME2S71b553U,Kevin Doneghy confronts Frank and blames him for destroying his life.\ntt0084855,Asm-9UXAOog,\"Frank decides that he cannot take the settlement money, but must fight for the victim's rights.\"\ntt0117979,_BeHUjskbZo,Brian and his dog reconcile with Abby.\ntt0117979,zlfMo6Qe2o8,\"As Brian recites a list of reasons he's smitten, Abby insists that beauty matters.\"\ntt0316732,zal_hU83ruo,Andy and Belle try to trade Lt. Robbins for the money while driving down the freeway.\ntt0117979,QjLwuMqSb7s,Abby and Brian engage in a candlelit phone-sex session.\ntt0316732,NMKgdzm1pWs,Lt. Robbins offers herself in exchange for the hostage and Vanessa enjoys frisking her body.\ntt0316732,OcoatqJqmX0,Belle tries to help Andy relax while driving by turning on some music.\ntt1753584,De2BarsD4jU,\"With Andrew raging out of control, Matt's forced to take him down.\"\ntt1753584,B5vXrSsvqqs,\"Matt tries to talk Andrew down from his psychic mental breakdown, but he's already too far gone.\"\ntt1753584,blWBATSOCtA,\"Desperate to find money for his ailing mother, Andrew turns to robbery, and things quickly get out of hand.\"\ntt1753584,-YV8tJhGojY,\"Andrew realizes that his powers make him stronger and better than those around him, including a bully at school.\"\ntt1753584,sBSibz9xdic,The gang tests their growing psychic powers in a department store.\ntt0988595,OI2JPJj1d6s,Jane makes a heartfelt confession to Kevin.\ntt0988595,0-HM2VCdrC0,\"After a disastrous engagement party, Kevin attempts to apologize and support Jane.\"\ntt0988595,ts4gt7f_rek,Jane's engagement party speech for Tess and George takes a dark time.\ntt0988595,eiLeBJUf1iE,Jane tries on all of her bridesmaid dresses for Kevin.\ntt0988595,r4K7eNzseCI,Kevin grills Jane on how to say no.\ntt0094291,oDD1tW59Mjg,Bud finally questions the ethics of Gordon Gekko's view of capitalism.\ntt0094291,NDV-ryLLkiU,\"Gekko speaks to the shareholders of Teldar Paper and declares that \"\"America has become a second-rate power.\"\"\"\ntt0094291,VVxYOQS6ggk,\"At the shareholder's meeting, Gekko announces that \"\"greed is good.\"\"\"\ntt0094291,sLAan2iZs_Y,\"As the sun rises over the beach, Gekko gives Bud his \"\"wake-up call.\"\"\"\ntt0094291,-TLCaDbBv_s,Gekko lays out his creed of business ethics and how to get ahead in business to Bud.\ntt0358273,dvloIUSHogs,\"John asks June to marry him one last time on stage, and she finally says yes.\"\ntt0358273,Tf7suGi96l0,\"John performs on stage, wasted, and collapses in the middle of a song.\"\ntt0358273,g-uc5_QEmuM,\"John performs \"\"Cocaine Blues\"\" and gets the prisoners revved up in Folsom Prison.\"\ntt0358273,y_fgX9MUfVM,\"June and John perform \"\"It Ain't Me, Babe.\"\"\"\ntt0293662,qAw0VczZGC8,\"Frank hijacks a small plane, skydives onto a truck in the escaping convoy, and quickly dispatches the truck driver.\"\ntt0293662,BeAtRdD4roE,Frank and Wall Street fight for control of a semi truck while driving it down the freeway.\ntt0293662,bjLdEjOL1s8,\"While fighting a group of thugs in a bus station garage, Frank covers himself with oil to give himself an advantage.\"\ntt0358273,4akqi6YYIJw,\"After John and June have a fight on tour and part ways, John records \"\"I Walk the Line.\"\"\"\ntt0293662,bCKgFFmf_iI,Frank leads the cops on a wild car chase through streets and sidewalks culminating in a jump off a bridge onto a passing truck.\ntt0117509,KJZLcsAmLbM,\"After seeing Romeo die, Juliet shoots herself to be with him again.\"\ntt0293662,56djkHojg2g,\"Frank bursts into Wall Street's lair and fights his henchman, two of whom attack him armed with axes.\"\ntt0117509,yClVlc_niac,\"Romeo declares his love for Juliet, but discovers that she is a Capulet.\"\ntt0117509,Oic7kJRg_F0,Romeo and Juliet exchange vows and find it hard to say goodnight.\ntt0117509,8JoOpx6VwHk,\"While crashing the Capulet party, Romeo is entranced by beautiful Juliet.\"\ntt0117509,xcSwBHs1uD4,Romeo drinks poison just as Juliet awakens.\ntt1323594,gAmo3FcaovM,\"Gru finally lives out his dream of stealing the moon, but the ticket to the girls' dance recital forces him to set his priorities straight.\"\ntt1323594,Z4DDrBjEBHE,Gru tries to get the girls to go to bed with a bedtime story.\ntt1323594,tLiM-49DJ7k,\"After the carnie cheats the girls out of winning a fluffy unicorn, Gru takes matters into his own hands.\"\ntt1323594,YgXPN03oxkc,\"The girls interfere with Gru's business meeting with fellow evil-doer, Mr. Perkins.\"\ntt1323594,xOYb0ZdJCQs,Gru and two minions steal Vector's shrink ray while avoiding the killer shark.\ntt1323594,8R1OS5jPh2s,\"Dr. Nefario shows Gru two new inventions, and the girls find out that Gru is not actually a dentist.\"\ntt1323594,YsMdkGG2b0k,\"Gru has planted \"\"Cookiebots\"\" in the boxes Vector ordered, unbeknownst to the girls.\"\ntt1323594,x8HjCP3LqHo,Gru gives the girls a tour of his child-unfriendly home and lays down some ground rules.\ntt1323594,428tr8ixT3Q,Vector shrinks Gru with the ray gun he just stole from him.\ntt1323594,ej6dxNrh3Dc,The girls report their cookie earnings to the cruel Miss Hattie.\ntt1323594,fdrR3NbPARs,Gru addresses the minions about his next big plan.\ntt0059742,pLm07s8fnzM,\"Maria and the children ride throughout Austria singing \"\"Do-Re-Mi.\"\"\"\ntt0059742,kxjwb5cXTI0,\"The Von Trapp children say goodnight at a party by singing \"\"So Long, Farewell.\"\"\"\ntt0059742,DGABqdbtQnA,\"Maria sings \"\"My Favorite Things\"\" to the children during a thunderstorm.\"\ntt0059742,AePRD1Ud3Lw,\"Maria sings out \"\"The Sound of Music\"\" to the mountains of Austria.\"\ntt0059742,pcj4boVT4fc,\"Liesl tries to convince her crush Rolfe that she's old enough for him with the song \"\"Sixteen Going on Seventeen.\"\"\"\ntt0048605,fIh6HDeXKGY,The girl enjoys the breeze from the subway and kisses Richard\ntt0048605,aqsJPtd8Cis,Richard gets his finger stuck in the champagne bottle.\ntt0048605,ofmssjTsGnE,The girl explains that she likes the shy guys.\ntt0048605,pCiwEO_6xS0,Richard has a dream of seducing his neighbor by playing Rachmaninoff's 2nd Piano Concerto.\ntt0048605,LxWJ4QT74hA,Richard's breath is taken away by his gorgeous new neighbor.\ntt0117887,8EdOdfCM1hM,\"When their song hits the airwaves, the band members converge to celebrate wildly.\"\ntt0117887,O10NcrfHaT0,Guy plants a smoldering kiss on Faye.\ntt0117887,FDektpHARj4,\"In the band's dressing room, a broken-hearted Faye breaks it off with Jimmy.\"\ntt0117887,7o40za1wAlI,\"When the band performs for the first time with Guy on drums, he plays at a faster tempo, which gets the crowd dancing along.\"\ntt0117887,fg-43OlaJtE,\"After the band fractures, Mr. White offers Guy a few parting observations.\"\ntt0427944,10fn13Q4wAA,Life goes on much the same as before after Nick stops working for Big Tobacco.\ntt0427944,RK-RPsc0czc,Heather's article revealing all of Nick's dirty little secrets is front page news.\ntt0427944,xuaHRN7UhRo,Nick explains to his son the moral flexibility required in his job as a lobbyist.\ntt0427944,xT7F0eKfctg,Nick has a stimulating meeting with Hollywood product placement guru Jeff Megall.\ntt0427944,yrxRCTUt6OY,Nick Naylor shows off his spin skills on Joan Lunden's talk show.\ntt0120169,aQHOzbF0qH0,Ahmad explains the significance of soul food.\ntt0120169,IayveLLh-HQ,\"Teri attacks Miles with a knife after she reveals that she knows he slept with her cousin, Faith.\"\ntt0120169,dj5zbxA4bEI,Ahmad explains the backstory of why his mom and Aunt Teri don't get along.\ntt0120169,ZHRWbydTGrI,Bird gets fed up when her husband dances with another woman on their wedding day.\ntt0120169,RRcYHJ1uTro,Ahmad reveals that he lied about the existence of a stash of money in order to get the family together.\ntt0119313,Jt0kFbvL7yg,Justin sweeps Birdee off her feet at a country hoedown.\ntt0119313,j3d3mrWBTpM,\"Birdee meets Justin, a flame from her past.\"\ntt0901476,gQwpd1247J8,Emma and Liv's scheming comes to an explosive end.\ntt0119313,7T9nzAu7orw,\"Birdee meets her best friend Connie on the Toni Post Show, and things go downhill from there.\"\ntt0901476,hk6Vxhx28bo,Emma wreaks havoc at Liv's bachelorette party.\ntt0901476,LVm_DbyklO0,\"Tired of waiting for Daniel to propose, Liv just straight-up asks him if it's ever going to happen.\"\ntt0901476,Q16cb-O1kTA,Emma and Liv sabotage each's pre-wedding beautifications.\ntt0901476,d87eHGVaoc8,Emma and Liv attempt to convince another bride-to-be to change her wedding date.\ntt0455824,x7RM1MOhSic,\"After Lady Sarah, Nullah and Drover reunite, an upset Fletcher arrives with a gun with the intent on killing Nullah.\"\ntt0455824,Vz56mS8Zz6A,Nullah and his mother Daisy evade deportation by hiding in a flooding water tower.\ntt0114887,hnsP1etZkr4,Paul watches Victoria participate in the traditional grape stomp and begins falling in love with her.\ntt0455824,gmedATt5viM,\"With the stampede flattening everything in sight, only Nullah stands between the cattle and a towering cliff.\"\ntt0455824,4Z5rOXxjRWI,The people of Australia watch helplessly as the Japanese bomb Mission Island and Darwin.\ntt0455824,1adrUPgj7QQ,\"Lady Sarah discovers that Australia's not as idyllic as it seems, but Drover just might change her mind.\"\ntt0114887,sYk8M_ZTNlY,\"The grapes in the vineyard frost over, so Paul and Victoria help Alberto and the rest of the workers defrost them.\"\ntt0114887,Gyxw8a2hTMg,\"Paul and Victoria become passionate, but the guilt of his marriage pulls him from her.\"\ntt0129387,4PcxtcrI9_U,\"Ted has fun going out with Mary and her brother, until he gets a fish hook in his cheek.\"\ntt0129387,fdOrjwuILCE,\"Leaving Mary's apartment in tears, Ted is surprised when Mary chooses him over Brett Favre.\"\ntt0129387,jX09Cesfxo8,Puffy the dog attacks Ted.\ntt0129387,Sj_A7OZz8TI,\"Ted gets his \"\"frank and beans\"\" caught in his zipper while picking up Mary for the prom.\"\ntt0129387,mbFx0CbaIlY,Ted is disgusted when Mary borrows some of his home-made hair gel.\ntt1216496,fohry-3J4dQ,The Ragman tells Mother he saw who killed the young girl.\ntt1216496,Du82ML6YGRE,Mother freaks while visiting Yoon Do-joon when he tells her he remembers her trying to kill him when he was a small child.\ntt1216496,jTNoDcmRc0g,Jin-tae interrogates the potential killers of the young girl.\ntt1216496,RCEgNkU7flA,Jin-tae gives Mother some advice on how to solve the murder her son didn't commit.\ntt1216496,7Za7WMgQqKY,Mother visits the wake of Moon Ah-jung.\ntt1216496,gi3gqlWetJU,Do-joon gets beaten up in jail and reminds his Mother of what she taught him.\ntt1216496,6a0at61sWkE,\"Do-Joon and Jin-tae hunt down the men driving the \"\"Bents\"\" who Hit Do-Joon and drove off.\"\ntt1216496,GhIDZhPP7d4,Do-joon is arrested for the murder of a young girl.\ntt1216496,YyWG5DAJc6s,Mother uses acupuncture to help her forget all the dark memories.\ntt1216496,TwgvEloIXVc,\"Do-Joon is hit by a car, so he hunts down the drivers with Jin-tae.\"\ntt0101889,zpdFj0w6Eg8,Jack scales the wall of the castle to obtain the Holy Grail for Parry.\ntt1216496,evCesc80vho,Mother freaks out when the Ragman tells her he witnessed her son murder the dead girl.\ntt0101889,BevEBQsAoPk,\"Anne asks Jack if he loves her, and when he says he doesn't know, she questions his reasons for staying with her.\"\ntt1216496,l3n95qTa5ko,Je-mun comes to Mother saying that they caught the kid who killed the young girl.\ntt0101889,0p9yD4E2hQw,Parry tells Lydia that he loves her and they share their first kiss.\ntt0101889,nPXMny-9Ntk,\"Jack and Anne take Parry and Lydia out on a double date, and discover that they're perfect for each other.\"\ntt0101889,NW5u4cCsNUY,\"Jack tries to reach through to Parry, who is terrified by a vision of the Red Knight.\"\ntt0101889,TyB1CcaiPbQ,Jack meets a disabled veteran with a unique perspective on his place in society.\ntt0101889,jrPvugl_NVA,\"Jack asks Anne about her religious beliefs, and Anne presents her theory about men, women, God and the Devil.\"\ntt0101889,aW4x-PAnrO8,Parry tells Jack that he is a knight on a special quest and that he needs Jack's help.\ntt1196141,ro74_tScvSA,\"Greg's embarrassment enrages Patty, which leads to an exciting presentation of \"\"The Wizard of Oz.\"\"\"\ntt1196141,wW0L86VZScs,\"At wrestling, Greg tricks his way into a higher weight class, only to confront his nemesis: Patty Farrell.\"\ntt1196141,Ky5Y99wb_00,Chirag saves Greg from a fate worse than death: the Cheese Touch.\ntt1196141,bAI6N5Uo7SQ,\"After Greg knocks his Wizard of Oz audition out of the park by singing \"\"Total Eclipse of the Heart\"\", but he's not wild about the role he's offered.\"\ntt1196141,YMwZaMNf3L4,\"When Roderick catches Greg and Rowley in his room, he pledges to murder Greg.\"\ntt1201607,_ihVsEYQP8E,Harry Potter and Lord Voldemort face off in the ultimate showdown.\ntt1201607,VmVWuswEBSk,Harry speaks with Dumbledore in a place that looks vaguely like King's Cross Station.\ntt1201607,lJ83ILGA8yI,Harry Potter gets a look inside Snape's memories that completely changes everything.\ntt1201607,uk04S-0HOXY,\"Hermione and Ron destroy Hufflepuff's cup with a basilisk fang, and makes a move that has been a long time coming.\"\ntt1201607,NVovWtkGbCc,\"Voldemort brutally murders Snape, but Harry is able to speak with Snape one last time before he dies.\"\ntt0952640,PsWbydM-u8w,\"Alvin, Simon, and Theodore perform \"\"Witch Doctor\"\" at their first concert.\"\ntt0952640,XrEpuPzxk9k,Dave discovers chipmunks raiding his kitchen.\ntt0952640,delffcg5VZU,Alvin and the Chipmunks tried to help Dave on his date with Claire.\ntt0952640,p0BpMFTYFpU,Dave makes a very musical discovery about the chipmunks.\ntt0952640,KWK3PRNjZdI,\"Alvin, Simon, and Theodore sing their classic Christmas song, \"\"The Chipmunk Song,\"\" for Dave.\"\ntt0111257,Z3m-Ht3_tFc,Jack and Annie barely escape the bus before it explodes into a plane.\ntt0111257,WlS2xnW-LY8,Jack and Annie survive a subway crash and kiss passionately.\ntt0111257,4qLgo75Lfhc,Jack finally succeeds in stopping Howard for good.\ntt0111257,dKJa-KQNjQU,Annie successfully jumps the bus over a gap in the freeway.\ntt0111257,1cNBL3OOMRY,Jack leaps from a car onto the moving bus.\ntt0247745,JNPW2wZ4D2s,\"The Captain warns the troopers about their shenanigans, but it doesn't do much good.\"\ntt0247745,U0s0czlJ4xA,Rabbit gets really turned on by a sexy German.\ntt0247745,1rlSjdnAKY4,\"Foster tries to fit the word \"\"Meow\"\" into a routine traffic stop.\"\ntt0247745,0zgTcrZ5030,Officer Farva runs into trouble with a smart-ass burger boy.\ntt0247745,xPHXfJZpSms,Thorny and Rabbit have a syrup chugging contest.\ntt1840309,uUuTz9Hjc34,Tris and Four try to stop Jeanine.\ntt1840309,_snQsFAwjxQ,Tris undergoes her final test in her fearscape.\ntt1840309,4_hEef258iI,Four and Tris run away and start a new life.\ntt1840309,7UhFzTWxzBo,Tris fights a programmed Four to remind him of who he is.\ntt1840309,zrc1us4sDcE,\"Tris is kidnapped, but Four saves her.\"\ntt1840309,u0fi902X3qo,Four and Tris share a moment and a kiss.\ntt1840309,5ttoICpH0Vc,Tris vists Jeanine Matthews at the Euridite Headquaters.\ntt1840309,kOBAOfh46Nk,\"Tris is initiated, Dauntless-style.\"\ntt1840309,wIqMqkMIjEE,\"While trying to get a good vantage point, Four and Tris climb a ferris wheel.\"\ntt1840309,5FQ7xVuqOJM,\"While training, Four give Tris some pointers.\"\ntt1840309,qU0Y6zo68t4,Tris enters Dauntless for the first time and meets Four.\ntt1840309,Ko0E8tEu7HU,Beatrice chooses Dauntless as her faction.\ntt1951266,VqTMLtDj83c,Katniss watches Peeta's broadcast where he tries to warn District 13 from an impending attack.\ntt1951266,lGFrkYzbfoU,\"Peeta is brought to District 13, but Katniss learns he has been programmed to kill her.\"\ntt1951266,MfHiFaZIc7Q,\"Katniss tries to stall President Snow while the rescue team searches for Peeta, but he is one step ahead of the rebels.\"\ntt1951266,LJhKwaZEEy4,Katniss sings with the mockingjays at the quarry and sends the districts a hopeful message.\ntt1951266,X236AeHt5RY,Katniss witnesses the massacre of innocent civilians and sends a strong message to the rebels and the Capitol.\ntt1951266,AbCowKGckKM,Gale recounts how the Capitol forces massacred District 12 and he is in no mood for Katniss' kiss.\ntt1951266,dLxtD4f_DA4,Katniss and Gale risk their lives to save the people from a bombing.\ntt1951266,lUQJN1xzKpc,\"Katniss visits the wounded in District 8 and brings them hope, but also puts them at risk.\"\ntt1951266,Op_fgLBxUQE,\"Katniss films a propaganda spot for Plutarch, but does not come across as believable.\"\ntt1951266,KrHaRP-Y588,Katniss presents her conditions for being the Mockingjay to President Alma Coin and Plutarch Heavensbee.\ntt0376994,tqtqEZqGg5A,\"Juggernaut bounds after Kitty, smashing a series of walls.\"\ntt0290334,wXWoyVboDpI,\"Jean holds back the floodwater to allow the X-Jet to depart, sacrificing herself.\"\ntt0290334,up5GI3Sp7Lo,Logan and Deathstrike engage in a fierce battle.\ntt0290334,19fWdIvK9mU,\"When Logan is wounded by the police, Pyro decides to retaliate.\"\ntt0290334,StnmzjqMKRo,Nightcrawler flips and fights his way into the Oval Office.\ntt0290334,QL__AjJr688,\"When Bobby reveals to his family that he is a mutant, his brother Ronny does not react well.\"\ntt0376994,8QMRQeYNd7M,\"Logan destroys Phoenix out of love for her alter ego, Jean.\"\ntt0376994,U-RYUQZFIhI,\"Beast injects Magneto with the mutant cure, rendering him frail.\"\ntt0376994,XeU6SJorcvw,\"Following a psychic struggle, Phoenix obliterates Professor Xavier.\"\ntt0376994,ITMren3I3WM,Magneto uproots the Golden Gate Bridge and points it toward Alcatraz.\ntt0120903,VagrTsi5vsw,Logan and the X-Men battle Sabretooth atop the Statue of Liberty.\ntt0120903,XIcTr-m-R9U,Magneto and his henchmen find their getaway hampered by Professor Xavier's thought control.\ntt0120903,MJ_32rbrHdk,The X-Men battle Magneto's minions: Toad and Mystique.\ntt0120903,YVjyXY_mcl4,Logan tangles with locals in a bar as Rogue looks on.\ntt0120903,sidn04cetvU,\"After toying with the metal-boned Logan, Magneto captures Rogue.\"\ntt0120179,x2vhOIjmS2s,Alex and Annie escape just before the oil tanker along with Geiger's plane combusts.\ntt0120179,38yH4yeJM2I,\"Desperate to rescue Annie, Alex hooks Geiger's seaplane with a fishing rod.\"\ntt0120179,gBxaGB65TB8,The cruise ship hurtles through a coastal town.\ntt0120179,9s84zV2VCgI,\"The cruise liner scrapes the side of the oil tanker, narrowly avoiding an explosive collision.\"\ntt0120179,DXA3GJb6V-M,Alex talks Annie through the dismantling of a grenade-rigged door.\ntt0256380,vG_FLK4K_T8,Mauricio makes a shocking admission that Hal must see to believe.\ntt0256380,2R1lEWNNsV0,Hal has a series of dates with Rosemary and is continually surprised by her.\ntt0256380,oARVdCyRT98,Hal tries to get to know Rosemary but experiences a series of awkward moments because he only sees the inner Rosemary.\ntt0256380,G3BQd2K3maI,Hal stalks beautiful Rosemary while she shops for underwear.\ntt0256380,K4j25DUQLgE,\"Mauricio can't believe the ugliness of the girls that Hal has taking to dancing with, but Jack is having a great time.\"\ntt0268380,tQJTJdTM0Wk,Diego turns against his pack and defends Manfred and the baby.\ntt0268380,mu-YLZpB6is,The herd dives down an ice cave when the baby goes for an impromptu slide.\ntt0268380,4RhqR2ZGkc0,\"The herd tries to get food for the Baby, but runs afoul of Dab and his pack of klutzy dodos.\"\ntt0268380,8dXF7y1QUxU,\"Manfred, Sid, and Diego have a lot to learn about child care.\"\ntt0268380,_LKe8V-h7h8,Scrat has trouble trying to bury his acorn.\ntt0133952,268ZUL4dnn8,Hub enforces Federal law over military law and General Devereaux.\ntt0133952,szNrOdjjhkw,Sharon finds herself face-to-face with the last terrorist cell.\ntt0244970,G_OMV0N_Ls4,\"On live t.v., Jane confesses to inventing Dr. Charles as a way of expressing her heartbreak towards the opposite sex. During her confession, she comes to the realization that she has fallen for Eddie.\"\ntt0244970,nM0u8GRt_hU,\"Late night in the kitchen, Jane performs a cheer from back in her cheerleading days for Eddie\"\ntt0120831,E6KKYD3eGlE,Vivian tells Rita about her shame in the family in the airport restroom.\ntt0244970,hFH6FoRzSpM,\"Jane and Ray have a torrid night of lovemaking. The next morning, they unexpectedly run into their co-worker Eddie on the street.\"\ntt0120831,5WGQCJmdEoM,Murray has a disagreement with his daughter concerning her clothes at a steak house.\ntt0120831,9D9RXt18Qq4,\"After hiding her physical development, Vivian is given a fitting for her first brassiere.\"\ntt0375063,aLDrW2AXClk,\"After trying to cheer up his pal, Jack's nose is broken by Stephanie.\"\ntt0375063,PPKdHP8zWuo,\"After receiving bad news on his book, Miles releases his anger at the winery.\"\ntt0375063,HEMqddRGVBY,Miles blows up at Jack on the golf course and they have an altercation with the golfers behind them.\ntt0375063,YSkZieDG5U4,\"Maya turns on Miles with her wine talk, but he blows the mood.\"\ntt0375063,QCS1Gnwbtp0,Miles waxes poetic on his favorite wine.\ntt0117628,yqdfje9b9WI,\"When Renee fails to seduce Francis with some new lingerie, Molly, Mickey and his dad debate whether or not Francis might be gay.\"\ntt0117628,IlLkXPTm6ig,\"Francis continues his affair with Heather and is upset to learn that she faked an orgasm with him but not with her other, older lover.\"\ntt0117628,E--mNnOvCm0,Renee threatens to use a vibrator when Francis is reluctant to have sex with her.\ntt0203119,VZrBzpfh6hM,\"Don fumes and swears at Gal and the others, then turns violent.\"\ntt0995740,sGCjNn2uJr4,Don refuses to extinguish his cigarette on the plane.\ntt0203119,rfeDWXk1jso,Don leans on Gal to join him in a heist.\ntt0133952,J4LB77duP_0,\"Despite Hub's attempt to negotiate, terrorists detonate a bomb on the bus.\"\ntt0073629,t4WP3bODmfo,Brad Majors sings of his love for Janet and proposes.\ntt0107977,G59JnM4JKNQ,\"Little John, Blinkin, and the Merry Men perform a rollicking song and dance of \"\"We're Men in Tights.\"\"\"\ntt0081609,ataOtn-F5s4,\"Pete protects the President, and when Sarah is taken hostage, Pete takes out the gunman.\"\ntt0443632,CqgTNaplJdg,\"After Pete secures the house and the other agent leaves, Pete and Sarah begin kissing passionately.\"\ntt5093452,dWQ3B8qTpes,\"Pete arranges to meet his informant at the mall, but an assassin foils the plan.\"\ntt0073629,wb1HDnYPPoo,A jealous Frank corners ex-delivery boy Eddie and kills him.\ntt0073629,-w0WPkB3XJ4,Brad and Janet watch as the Transylvanians sing and dance.\ntt0073629,ZCZDWZFtyWY,Dr. Frank N. Furter introduces himself and invites Brad and Janet to his lab.\ntt0073629,JKMpRikJeLI,Janet seduces Rocky Horror.\ntt0069113,aNOmTuwnGYg,\"Rev. Scott sacrifices body and soul by turning off a critical steam valve, before plunging into the fire down below.\"\ntt0069113,r_9PgiNuwDc,\"When Linda falls into the flames, Rogo has an emotional breakdown and blames Rev. Scott.\"\ntt0069113,3MKwR7JipEc,\"After the ballroom guests ignore Rev. Scott's warnings, an explosion goes off and they are hit with a massive flood.\"\ntt0069113,TxuEWb4b_gU,\"With the water rising rapidly, the group climbs up a set of stairs and follows Rev. Scott into a small air vent.\"\ntt0120772,Q49LEs_bhaU,\"Nina finally accepts what George wants, which is not her.\"\ntt0120772,quEBzmchcwc,George accepts Nina's offer to help raise the baby.\ntt0069113,6kKCbDw7lR4,\"The ship's Captain watches helplessly as a massive tidal wave crashes into the Poseideon, sending crew and passengers into total chaos.\"\ntt0120772,oKYBGq7pt3M,George and Nina become more comfortable with each other on the dance floor.\ntt0098258,dyqDd8esYdc,\"On the way to England, Lloyd helps Diane overcome her fear of flying.\"\ntt0098258,_Ib_lBGuoUQ,Diane appears at kickboxing practice to tell Lloyd that she really loves him.\ntt0098258,Pvuv2sn5fDQ,\"At dinner, Lloyd shares his career plans with Mr. Court and his friends.\"\ntt0098258,S5Y8tFQ01OY,Lloyd uses a meaningful song to call Diane back to him.\ntt0098258,UUZsR3rFjEU,Lloyd nervously tries to convince Diane Court to go out with him.\ntt0343818,AwLRD7iEEKI,Rodney and his friends defeat Ratchet and his evil mother.\ntt0107977,hr0hb0gc2eQ,\"In the middle of Robin and Marian's wedding, King Richard returns and restores order to the kingdom.\"\ntt0343818,IthAv1JkF-0,Rodney leads his motley crew of robots against the villainous Madame Gasket.\ntt0107977,tI4RvWvgulc,The Sheriff of Rottingham abducts Marian to the tower but her chastity belt thwarts his plans to deflower her.\ntt0343818,hM6ItEXb_Us,Fender introduces Rodney to transportation in Robo City.\ntt0107977,QNpPmiU7BBs,Robin and Ahchoo give inspirational speeches to the villagers to prepare them to enter battle.\ntt0093822,ouXz_ETh2eI,Gale and Evelle freak out when they realize the baby is missing.\ntt0107977,5xIU6_w6ohg,Robin arrives to find Ahchoo getting pummeled by a group of Rottingham's men and steps in to save him.\ntt0093822,CQ67ZyZtKjU,H.I. has a terrifying nightmare of the fury he has unleashed by stealing the baby.\ntt0093822,dWJuJlmcabY,H.I. is completely overwhelmed when Glen and Dot come over with their brood.\ntt0093822,Ypa0vpmCzdc,Ed is not happy when two escaped convicts show up at two in the morning.\ntt0093822,lixII1thTO4,H.I. commandeers an old man's truck as he tries to outrun the law.\ntt0100403,bHwiXFc9MOw,\"With nothing left to lose, Lieutenant Harrigan gives The Predator a taste of its own medicine.\"\ntt0100403,Dw5W0T5fV70,\"Dangling perilously from a high-rise ledge, Lieutenant Harrigan cuts his way out of a jam.\"\ntt0100403,kyGcsRDBJLM,The Predator shows off a deadly new toy at the expense of Peter Keyes.\ntt0063442,mDLS12_a-fk,Taylor understands that he's on Earth when he finds the wreckage of the Statue of Liberty.\ntt0100403,nzz_3bQHyiY,\"After taking down The Predator, Lieutenant Harrigan removes its armor and realizes that the alien is not going to win any beauty contests.\"\ntt0063442,DruCG3LJiiU,\"The apes round up the humans, killing some of them in the process.\"\ntt0063442,0_m8AmAm-XE,Taylor speaks to the apes for the first time.\ntt0100403,eiQD0Wk6Ekg,The Predator gets the jump literally on Keyes and his men.\ntt0063442,3BSdoHadj2w,\"Taylor attempts to communicate by writing in the sand, but his efforts are quickly thwarted.\"\ntt0063442,gzRy-pvwdL0,Taylor tries to speak in front of Zira and Dr. Zaius.\ntt3305316,9CjMbFa2Oj8,\"Kate interrupts the wedding Nick is videotaping and, while the congregations listens in, asks him out on a real date.\"\ntt0119896,Re5WOfcJg5A,Kate proclaims her love for Nick while she and Sam stumble into her bed.\ntt0183649,4uaPFQxS6pU,\"When pressure mounts, Stu decides to hang up the phone and surrender.\"\ntt0183649,6xaUD1jKFWg,The mysterious caller provokes Stu in order for him to reveal a secret to his wife.\ntt0183649,3lkG_MD7T9U,\"Losing control of the situation, Stu makes a personal confession to everyone nearby.\"\ntt0119896,yvC60Y-AqLc,Nick makes an impression on Kate when he charms her mom on the phone.\ntt0183649,JiI91igl180,\"Fed up with the sick joke, Stu prepares to hang up until he finds out just how serious the mysterious caller is.\"\ntt0183649,88YBTmbAaoY,Stu attempts to call 911 unnoticed by the caller.\ntt0066206,PehCORojjtw,General Patton commissions a weather prayer from the Third Army chaplain before engaging in the Battle of the Bulge.\ntt0265459,Jipg0KQ4id0,Sy messes with his former boss' head by giving him an envelope of pictures of Bill's daughter.\ntt0265459,OdU3vEh3qfs,Sy explains his troubled motivations to Detective Van Der Zee.\ntt0066206,YrtS2_TfbeY,\"While making his way through a military hospital, Patton encounters a shell-shocked soldier, slaps him in front of the other wounded men, and demands that the coward is placed back on the front lines of combat.\"\ntt0066206,dObTXYa-_n4,Patton and his men attack and annihilate Rommel's battalion of tanks and infantry during the Tunisia campaign in Africa.\ntt0066206,sv9XNFpRdhg,General George S. Patton Jr. gives a rousing and inspired speech to the troops in which he lays out his partriotic values and traditional American virtues.\ntt0265459,BRccUGaFz2s,Sy follows Nina to the mall and tries to get to know her better.\ntt0066206,XpEtHWMpiFc,\"As Patton and Sir Arthur discuss air supremacy, the headquarters are ironically attacked by German planes. During the attack, Patton is fed up and takes the matter into his own hands.\"\ntt0265459,bJNpX5bfXcw,Sy plants a photo in Nina's envelope that reveals that her husband is cheating on her.\ntt0265459,URquvu9F3jo,Sy fantasizes that he is a trusted friend of the Yorkins.\ntt0151738,hEY2L9sXjwU,Josie is relieved when Sam meets her on the baseball field and gives her the much-awaited kiss.\ntt0151738,Y4g859J_920,Josie shares a special moment with her teacher Sam during a ferris wheel ride.\ntt0151738,47IVX23yRyQ,\"When Josie arrives for her first day of high school, she has trouble with the security guard and a menopausal Spanish teacher.\"\ntt0151738,SippOkFBMAE,\"Josie gets stoned off of some pot brownies at a reggae club and dances her heart out in front of all of her new \"\"cool\"\" friends.\"\ntt0151738,WqYtAApeiDA,\"Josie is relieved, but emotional, when she finally reveals herself as an undercover reporter to her classmates at prom.\"\ntt0110638,c0P_u-zs5-I,Dr. Lovell attempts to penetrate the language barrier with Nell by demonstrating his relationship with music.\ntt0110638,X8slBBJG-x0,Nell learns a thing or two about sexuality while Dr. Olsen and Dr. Lovell discover a thing or two about each other.\ntt0110638,pytH_ezVouk,Nell speaks for herself in a court hearing concerning her well being. Dr. Lovell translates the words.\ntt0374900,b58fAt0MdgI,Napoleon and Pedro talk about girls and dating.\ntt0374900,NZJrGuC92U8,Napoleon complains that there's nothing to eat while Kip claims to be in training to be a cage fighter.\ntt0374900,xL-VX3WbA9U,Uncle Rico mourns for his lost football career and asks Kip about time travel.\ntt0374900,mJYE0HuKNfI,Napoleon's neighbor Lyle picks the worst possible time to put down his cow.\ntt0374900,pO09fucTEuk,\"Napoleon checks out Pedro's bike, but ends up hurting himself.\"\ntt0151804,_KinUMIS3Yc,The guys take their printer to a field and murder it.\ntt0151804,F7SNEdjftno,Joanna finally has enough of her boss' demands and quits.\ntt0151804,uiik3zS4y4I,\"Samir, Michael and Peter have a rough Monday at work.\"\ntt0151804,cgg9byUy-V4,Peter has a candid discussion about his typical work day with the Bobs.\ntt0151804,jsLUidiYm0w,Peter gets grilled by his bosses for not having the right cover sheet on his T.P.S. report.\ntt0093773,xEvb7B4O698,\"In its final moments, the predator detonates an explosive device which Dutch must run from to survive.\"\ntt0093773,80EaBRgGylo,The predator takes off its mask to reveal its true face to Dutch.\ntt0093773,TU7CDejp6Lw,Billy stays to fight the predator while Dutch tries to get to the chopper.\ntt0093773,mGLXbK2XWMY,\"Dutch, camouflaged in mud, goes one-on-one with the predator at night.\"\ntt0093773,wgzxSr6l9Y4,\"Blain gets shot, but Mac picks up the gatling gun and blows the forest to smithereens.\"\ntt0433416,-kFJKQvCrkY,\"At his mother's urging, Gogol meets Moushumi for a drink.\"\ntt0051878,bNdddrIe6dQ,\"Ben gets Clara to kiss him, but she calls him a barn-burner and runs off.\"\ntt0433416,Jgv93j5xcpQ,Ashoke tells Gogol the events that lead to Ashoke coming to America and giving Gogol his name.\ntt0433416,wsYNpHaKJIc,Ashima and Ashoke and their families meet to determine if the two will make a suitable match.\ntt0051878,qTa5iKsbAno,\"Will threatens to lock Ben up if any fires break out, and Ben asks for a decent job.\"\ntt0051878,7tK-k8UURYk,\"Ben encourages Clara to loosen up, but she shoots him down.\"\ntt0104691,sYVz2G-r01U,\"Uncas attempts to save Cora and Alice, but fierce Magua kills him.\"\ntt0104691,okGQj644_Ds,\"After Uncas' death, Alice decides that she will not go with Magua and jumps off the cliff.\"\ntt0104691,eRRG_PNOQmA,Chingachgook kills Magua and then realizes that he is the last of the Mohican tribe.\ntt0455590,JRU1SrdXEZc,\"After mending Idi's hand, Nicholas shoots a sick cow in order to put it out of its misery.\"\ntt0455590,UyzInzm8gW8,\"At Idi's order, Nicholas gets hooks jammed into his chest and is lifted in the air.\"\ntt0104691,k2edI8Gu6k8,Cora convinces Hawkeye to save himself. He vows to find her again and then jumps into the waterfall.\ntt0455590,F7_aagPOpUU,Idi gives a rousing speech in the village where Nicholas and Sarah are working.\ntt0203009,OeSwSYmipqo,Christian tries to woo Satine by singing love songs.\ntt0203009,a1REfTIc5po,\"Satine, the sparkling diamond, is lowered into the Moulin Rouge and presented to her adoring fans.\"\ntt0104691,q75FfwmyF4I,Hawkeye finds Cora and they share a passionate moment.\ntt0104952,3nGQLQF1b6I,Mona Lisa proves her automotive knowledge to the dismissive D.A..\ntt0104952,Dh0210A-VZo,Mona Lisa brings up the little issue of marriage at the worst possible moment for Vinny.\ntt0104952,K6qGwmXZtsE,\"The judge asks Vinny what he means by \"\"yute.\"\"\"\ntt0104952,Da7GSy-6mJY,Mona Lisa disagrees with Vinny's decision to go deer hunting with the D.A.\ntt0104952,2-FvDteymnM,\"Vinny comes to jail to help Stan, but Stan thinks he's there to have sex with him.\"\ntt0107614,AqNEZ_QgvI4,\"Mrs. Doubtfire engages in various activities like fending off a mugger, playing soccer, and gazing at chicks.\"\ntt0107614,7m8_QLnRBFo,\"While making tea for Mrs. Sellner, Daniel must disguise himself as Mrs. Doubtfire by sticking his face into the frosting of a cake.\"\ntt0107614,tGxxl7LOe_4,Mrs. Doubtfire cooks dinner for the first time and accidentally catches on fire.\ntt0203009,UVmSx9Vv5M8,Despite the Duke's interruption and failed attempt to kill Christian the show's finale is a great success.\ntt0107614,7hsAbjmNpKU,\"Daniel gets help from his brother, a makeup artist, to transform into a woman.\"\ntt0107614,6wC2DqFJ7UE,\"Daniel does various voice impersonations during a meeting with Mrs. Sellner, the social worker.\"\ntt0203009,F8dW1ddAC_4,Toulouse-Lautrec prevents a gunman from shooting Christian when he comes back to Satine.\ntt0039628,M2sjRRcONOc,Susan sees the house Santa promised. Fred wonders if he made the best decision.\ntt0203009,lgRkMyW_J5U,Christian proclaims his love for Satine with a song.\ntt0039628,jagJeaLXRRQ,Mr. Kringle's face glows when thousands of children's letters to Santa are presented in court and his case is dismissed.\ntt0039628,--uyzf7X_0c,\"Doris begs Mr. Kringle to tell her daughter that Santa doesn't exist, but he cannot tell a lie.\"\ntt0039628,OvE_mDtTj20,Santa speaks with Doris about the Christmas spirit and she notifies him about an upcoming company test.\ntt0039628,vJCHzRIOOL0,Mr. Kringle is unhappy when Mr. Shellhammer gives him a list of overstocked toys to push on undecided children.\ntt0183505,GyaIF1iTs-Y,Charlie gets into a messy fight with himself.\ntt0203019,gh2apPe9pSI,\"When a salvaged nuclear bomb snaps the line, Carl makes a life-changing decision.\"\ntt0203019,QhCISxbO7rg,Carl must take 12 steps in heavy diving gear to prove that he is capable of performing his job despite losing one of his legs.\ntt0203019,FixQE61iSDg,Racist Pappy orders Chief Sunday not to bring Carl back up from his diving test until he stops moving.\ntt0183505,lCUBQnsS9go,Charlie has an adverse reaction to his medication.\ntt0183505,YWRzPLzHJl0,\"After a mother takes advantage of Charlie, the evil Hank appears.\"\ntt0183505,2UYrsFeBZoI,\"After ditching their car, Hank comes up with a foolproof plan to get some money.\"\ntt0183505,JJeNvH2hmPM,Hank picks a fight with a little kid and insults the albino waiter.\ntt0066026,TRHN5vxnZrI,A last supper is thrown in honor of Walter 'Painless' Waldowski before he ingests the black 'suicide' pill.\ntt0066026,LXtVS8SFmJw,Frank gets taken off the military base in a straight jacket after losing his cool while being provoked by Hawkeye.\ntt0066026,45X0_m1KYQM,\"Following the show prank, Hot Lips complains about the antics of the MASH unit to Lt. Col. Blake.\"\ntt0066026,HpmdYRs4lEs,\"As a practical joke, Frank and Hot Lips' love-making session is broadcast throughout the military base.\"\ntt0066026,uYTl9G6HoW0,\"Hawkeye, Duke, and Trapper John play a prank on Hot Lips when she goes to shower.\"\ntt0100114,zHoZ2Ti6xco,Hatcher and Max pursue Screwface's henchmen through the busy city streets.\ntt0100114,OANpF6uHmBQ,Agent Hatcher and his partner pose as drug buyers until their cover is blown and carnage ensues.\ntt0100114,H0BUIYk2irQ,Hatcher uses his hand-to-hand expertise to neutralize Screwface's henchmen.\ntt0100114,ZObnyBWAZSI,Hatcher fights Screwface's twin brother in a fight to the death.\ntt0328107,Hur4Esxuurk,Creasy is badly wounded as he tries in vain to save Pita.\ntt0100114,oHOnldgbjy8,\"After an ambush by two bulldozers, Hatcher gets some face time with the elusive Screwface.\"\ntt0328107,dtOaXCoryQo,Creasy takes his war for justice to the streets of Mexico City.\ntt0328107,5JU326dvQ2g,Creasy threatens Fuentes with a bomb in a very uncomfortable place.\ntt0328107,crB4KD3p8HU,Creasy sees that Pita is alive at the exchange.\ntt0328107,izxkFm060yU,Fuentes spills his guts all over the freeway underpass.\ntt0337978,jsz79bztNJI,A F35 jet fighter attacks McClane's big rig with explosive results.\ntt0337978,2wXBmSecjDo,McClane and Rand duke it out on the ice-covered steel over deadly spinning fans.\ntt0337978,rdzVVp7e_0Y,\"Suspended by an SUV teetering over an elevator shaft, McClane fights with Mai.\"\ntt0449059,ECfvSmDe_-0,\"When the pageant official demands that Olive be removed from the stage, the family joins in on the dance instead.\"\ntt0337978,r1gBq45CkgI,Matt is highly impressed when McClane takes out a helicopter with a car.\ntt0337978,cHT2zdQT3Ps,Gabriel makes the mistake of his life by letting John McClane anywhere near a gun.\ntt0449059,7VbYokM9dY4,Frank and Dwayne have a heart-to-heart talk about the importance of suffering and doing what you love.\ntt0449059,akMZQpIbTm4,\"When Frank breaks some very difficult news to Dwayne, he starts to have a breakdown in the van, and the family pulls over.\"\ntt0449059,-QNxYSDdpig,\"At the dinner table, Frank explains to Olive the series of events that led him to attempt suicide.\"\ntt0449059,0jTSJ6NK6-4,Olive cannot contain her excitement when she hears that she has qualified for the finals of the Little Miss Sunshine competition.\ntt0240468,LxXjsQbCZR8,The Chosen One doesn't follow the advice to avoid the meadow and engages in battle against a cow.\ntt0240468,63IwUcBK_Rs,\"The Chosen One spars with Whoa, the one-breasted woman.\"\ntt0240468,941z56i7QJE,The Chosen One's powers grow as he fends off an endless stream of attackers.\ntt0240468,4bAPlP2HX7o,The Chosen One finds himself surrounded and gets help from some gopher-chucks.\ntt0240468,Dz6Pe77tpPg,Master Pain kills Master Tang with his claw.\ntt0264761,uy_2GCNyzgk,An intense discussion about personal happiness leads to a kiss between Helen and Jessica.\ntt0264761,E25WrYP_1tU,\"Martin accuses Helen of pretending to be gay, and Sebastian comes to her defense.\"\ntt0320661,zzgvxdPlUwA,Balian leads an inspired defense of Jerusalem that impresses the great Saladin.\ntt0320661,sBJ2jguXBes,\"Balian leads a brave charge against the enemy, but his force is soundly defeated.\"\ntt0264761,1nKBe0dzhvg,Helen and Jessica ask a couple of guys at the bar their thoughts on lesbian relationships.\ntt0320661,c8wj-v1Jdyc,\"After Guy de Lusignan becomes King, Balian is forced to defend himself from assassins.\"\ntt0320661,qG8YoqrNMEA,Balian pumps up his soldiers while the enemy army breaks down the wall of Jerusalem.\ntt0305711,HTjeSsgZVW4,\"Disaster ensues when Sarah tries to join the \"\"mile high club\"\" with Tom.\"\ntt0305711,TKBQuK1988w,A cockroach ruins Tom and Sarah's intimate moment.\ntt0320661,6p1EuLz9Fes,Balian takes his knight's oath from his dying father.\ntt0305711,gRLpvojaVBM,An aggressive Wendy is all over Tom until he declares that he is on his honeymoon.\ntt0091306,te-hhtqatQk,Terry brings espionage to her workplace when a henchman opens fire and her coworker Marty turns out to be a CIA agent.\ntt0091306,B6-nYQbUteA,\"Terry goes snooping in the computer room at the British consulate, only to get her dress caught in the shredder.\"\ntt0091306,4kC1v_wKF7M,\"Still under the influence of truth serum, Terry tells off her boss and pulls the toupee off his head.\"\ntt0091306,jKC6UsetwN4,\"Terry tries to convince a detective that she was thrown in the river and that a dead body is still floating there, while her coworker Marty tries to take her home.\"\ntt0091306,iyHNryKojDY,\"Terry tries to decipher the lyrics to \"\"Jumpin' Jack Flash\"\" in order to determine the code key for her mysterious new contact on her work computer.\"\ntt0359517,mgSDir-wcGk,\"After Destiny squirts Nate with ketchup, he asks Chrishelle to continue blessing the food, not knowing she would use black magic spells. Nate finds the chef cooking something nasty in the bathroom.\"\ntt0359517,mR4FXksKdKg,Dorothy leaves Nate naked in the hot tub and he has to talk his way back to the room.\ntt0359517,iv1eE7qxDXA,An unexpected guest slips under the sheets and interrupts Nate and Dorothy's sleep.\ntt0036613,gP_GbzDWoY0,\"Mortimer is surprised to find Jonathan and his associates including a corpse still in the house, and Jonathan threatens Mortimer with the reveal of one of the other corpses in the house.\"\ntt0036613,s8WzJJoKq_4,\"When Jonathan returns to his childhood home, his aunts are unable to recognize him because of the work of his plastic surgeon partner Dr. Einstein.\"\ntt0036613,tg2X2RZsGy4,\"As Mortimer describes to Dr. Einstein what saps the characters in plays can be, Jonathan prepares to tie up his sap of a brother.\"\ntt0036613,BGyfOMCRBn0,\"Trying to explain to Elaine why his family's history of insanity should stop them from being married, Mortimer falls in love with her again, and then back out.\"\ntt0036613,In_UKcRXzHs,\"When he discovers that he is not actually a Brewster, Mortimer's last doubts about marriage are erased, and he sweeps Elaine out the door and onto their honeymoon after she discovers the bodies in the basement.\"\ntt0036613,qj0L0g36IXU,\"With the police at the house and Mortimer tied, Jonathan tries to tell the police about the bodies buried in the Brewster basement.\"\ntt0036613,KPAnWhVV5dI,Mortimer slowly uncovers that it's his aunts Martha and Abby who have provided the dead body in the window seat.\ntt0036613,BDLvzvFFRu8,\"When Jonathan and Dr. Einstein prepare to bury Mr. Spenalzo's corpse, Aunt Abby and Aunt Martha object, and spill the beans on their own collection of stiffs.\"\ntt0036613,KWAQRU2PeeM,\"Elaine is trapped in the house with Jonathan and Dr. Einstein, who realize that she may have seen them unload a corpse from their car.\"\ntt0036613,LVflxqHuw2I,\"While Mortimer tries to get a connection to Happydale Sanitarium, his Aunts Abby and Martha prepare to dispatch another lonely soul with their arsenic-laced wine.\"\ntt0107034,RiaUv2MwZ3E,Henry pushes his mother Susan over the cliff's edge after she asks him if he killed his baby brother.\ntt0107034,o2J59hT1Vto,\"Henry introduces Mark to Mr. Highway, a homemade mannequin, which Henry drops from an overpass into oncoming traffic.\"\ntt0107034,xqsDUwDwdUM,Susan is forced to choose between saving her son Henry or nephew Mark from falling off a cliff.\ntt0107034,yKguB1M0JFU,Henry demonstrates his homemade crossbow for Mark by shooting a bolt at the neighborhood cat.\ntt0107034,a-h2glY0jyg,Henry tells Mark's therapist that Mark is the one that has been acting strangely.\ntt0454841,hVPSsxFKDLM,\"The mutant Ruby tackles Lizard, saving Doug and the baby.\"\ntt0454841,RFjVbXNMsNk,Doug finds a creative way to take care of the mutant Pluto.\ntt0454841,7SU4vD1T4oI,\"As Doug searches for his baby daughter, he meets a mutant with a large head and barely survives breakfast time.\"\ntt0454841,zFxq7CCpzss,\"Doug, Bobby and Ethel are horrified to find Bob set on fire.\"\ntt0454841,bz8JoC9BpV0,Lizard kills Lynn and shoots Ethel while Brenda watches.\ntt0054997,fRQsuCJ-g4I,Eddie stands up to Bert after beating Minnesota Fats and is banned from stepping into a big time pool hall.\ntt0054997,mUxLZWWRKUI,Eddie passionately describes the feeling of playing perfect pool to an enraptured Sarah.\ntt0054997,bpc3TKhS6MU,\"Eddie waits for an opening in the game against Minnesota Fats, then gets on a hot streak, winning gameafter game after game.\"\ntt0054997,F8QVrLcmRdA,\"After hours of billiards, Eddie declares that the pool game is not over until Minnesota Fats says the game is over. Bert calls Eddie a loser.\"\ntt0054997,I5XMnxp2S9Q,Eddie is impressed with Minnesota Fats's billiard play as they battle it out during a marathon session of pool.\ntt0120703,0PCcz5_8IEI,Stella surprises Winston at the airport and accepts his marriage proposal.\ntt0120703,qS2Np6zxXm0,\"When a bartender believes Stella to be Winston's mom, Winston surprises her by kissing Stella.\"\ntt0120703,T_SHaqh4NdQ,Stella loosens up on the dance floor and gets her groove on with Winston.\ntt0120703,ITicydPuKRI,\"Stella and Delilah walk through the resort, checking out the available men.\"\ntt0120703,NH_wHu33CMw,Winston's flirtation with Stella becomes rocky when they disclose their age.\ntt0465494,li2zByHeanQ,\"Agent 47 shoots down all the guards to capture \"\"Belicoff\"\", then defeats another hitman in hand-to-hand combat.\"\ntt0465494,cFVtyYzs48I,Agent 47 engages in a massive shootout against Udre Belicoff and his henchman.\ntt0465494,XQdE3ydNvCU,Agent 47 outduels three other hitmen who confront him in a subway car in a high-octane sword fight.\ntt0465494,6T_cb2U5lro,\"Agent 47 takes on the forces coming after him, then evades Whittier by leaping several stories into the hotel pool.\"\ntt0465494,OjIh7FHeH8c,\"Agent 47 describes \"\"The Organization\"\" of hitmen, and his skill is demonstrated by an assassination in Niger.\"\ntt0101410,P_8O-iDvlmA,\"Charlie returns as Madman Mundt, kills the detectives, and sets the hotel on fire.\"\ntt0101410,yeBM3nwwmlE,Lipnick denigrates Barton's screenplay and makes it clear that he owns Barton's ass.\ntt0101410,0CrSOPGvblI,\"Barton hears from Geisler that Lipnick has taken \"\"a interest\"\" in the wrestling picture, which is a bad thing.\"\ntt0101410,LiN26NHb4ao,\"Barton goes on a condescending rant about theater to his \"\"common man\"\" neighbor, Charlie.\"\ntt0101410,VN54kkl_nTI,Jack Lipnick puts Barton on a wrestling picture - with a few requirements.\ntt0356721,vO6EKe8gVXk,Albert and Brad have an altercation in the elevator and meet Shania Twain.\ntt0356721,9EilqfAIudI,Tommy and Albert try an illuminating new therapy involving hitting each other with a ball.\ntt0356721,fjqjWC3Ycr4,Albert confronts the existential detectives and Bernard explains about the connections between all things.\ntt0356721,w2eNQ75wdq8,Albert and Tommy insult Steven's adopted family at dinner.\ntt0356721,hSdrwqLUpD0,Bernard presents his theory of how everything is connected... With a blanket.\ntt0119381,2BNVMvzHvT4,Doug gets in trouble when he tries to sneak a peek under Eleanor's skirt.\ntt0388125,Yd1Bx8u7Om4,Maggie shares a special thought at Rose's wedding.\ntt0119381,KQt2qAPhUAI,\"After Pamela tells him she likes him, Doug kisses her.\"\ntt0388125,YP2dblWITA0,Maggie reads an inspiring poem to the blind professor.\ntt0119381,kgNMy-k2VnA,\"After giving Eleanor the silent treatment, Jacey kisses her passionately.\"\ntt0388125,6sMjSp6yOBY,Rose discovers Maggie living with their estranged grandmother in Florida.\ntt0455967,RsmcYTQsgIM,The girls get in a fight when they all realize they are dating the same guy.\ntt0455967,Lh7bN_qJz8U,Kate gets John caught in an embarrassing situation with Coach Williams.\ntt0455967,BHIg0d4KQMc,\"When John offers Kate a ride home, Beth is forced to give her a quick kissing lesson.\"\ntt0116705,188YJIcBUkQ,Howard destroys Ted's home while stealing a Turbo Man doll.\ntt0116705,jWyeugspkUA,Howard has to fight off a group of incensed Santas after he insults their pride.\ntt0116705,blbqbdPFfns,\"As Turbo Man, Howard defeats Dementor and saves Jamie.\"\ntt0116705,VsZ4L4HwUFs,Myron and Howard escape the cops by using a fake bomb that turns out to be real.\ntt0116705,YTcFsdIJ_Xo,\"At the toy store, Howard and Myron are mocked for their lateness in buying a Turbo Man doll.\"\ntt0119349,BKTyV8Msk8o,\"When Janey picks the keys of another man at the key party, an inebriated Ben tries to object.\"\ntt0119349,MeRtEy1FVAU,\"After sharing a drink, Wendy and Sandy get under the covers and disrobe, then talk innocently about sex and love.\"\ntt0119349,4uDUNAPdYb4,Wendy offers a prayer full of sarcasm when asked to say grace at the Hood family's Thanksgiving dinner.\ntt0298845,QtrJ6ojRtik,A hysterical Sarah asks Johnny to save her baby and he promises he will.\ntt0298845,S7rZsWVUAFI,\"With Christy's help, Johnny is finally able to let go of his grieving.\"\ntt0089370,c_TXof1C-OI,\"Amidst the burning rally for Omar, Ralph lends a hand to Jack in order to save Joan.\"\ntt0298845,ze-aAIzwD_E,\"After being confronted by Johnny, Mateo admits that he is dying.\"\ntt0089370,JAHLYTVcm5M,Jack gets more than he bargained for when he wrestles a giant in the Nubian village.\ntt0089370,dDQ0rUdj0KM,\"With Omar's men on their trail, Jack, Joan and their new friend make a daring escape.\"\ntt0089370,IFc2QKCnGEg,\"Cornered by Omar's men, fate shines a light for Jack, Joan and their mysterious friend when an bazooka explosion leads to a rock fall.\"\ntt0089370,w5PGP9-_x5E,Ralph surprises Jack after a six month stint in jail.\ntt0343818,EJ5ywAAmiU4,Sonny saves Susan while Spooner destroys the evil computer.\ntt0343818,L1UxZJ9owXY,Spooner is attacked by an army of robots on the road.\ntt0343818,iz3l5GLSWJk,The evil robot is surprised to learn that Spooner is part robot himself.\ntt0343818,rkaXuC5hrCE,\"While searching for clues at Dr. Lanning's house, a giant demolition robot almost kills Spooner\"\ntt0343818,Ouht1xip9NQ,\"In a roomful of robots, Spooner attempts to find the murderer.\"\ntt0116629,bhGfpwfae-k,Captain Hiller welcomes the downed alien to Earth.\ntt0116629,ZlawibQ_QKI,\"The President communicates with the alien, but is dismayed by its message to mankind.\"\ntt0116629,vjFG-4Ge668,\"The President barely escapes the White House as alien vessels open fire on Los Angeles, New York and Washington D.C.\"\ntt0116629,NyOTaHRBTXc,Russell Casse realizes that the only way to deliver his bomb to the alien ship is to sacrifice his own life.\ntt0116629,9t1IK_9apWs,The President of the United States gives a stirring speech to those going to fight the alien invasion.\ntt0449010,zsqpY4w2e1Q,Eragon faces Durza in battle in the air.\ntt0449010,M_bzbtdfaik,Eragon realizes that his baby dragon is a carnivore.\ntt0449010,shj7YP98Yxs,Eragon tries riding Saphira again and does better.\ntt0449010,51iAljD9Q7Q,Saphira tells Eragon why she chose him to be her rider.\ntt0449010,K0xpWKgNCk0,\"Eragon kills Durza, but Saphira is critically wounded.\"\ntt0104431,a2872XpfqKY,\"Harry and Marv try different methods of entering the house, both resulting in injury.\"\ntt0382077,sqhPvOlgzjo,\"Katherine has to kill \"\"Charlie\"\" to protect Emily.\"\ntt0382077,zbJwjn4p0cQ,Elizabeth finds Charlie hiding and he pushes her out the window.\ntt0382077,r-ddXOrPiZ0,\"When the Sheriff comes to investigate, he meets the evil Charlie.\"\ntt0107144,6zFeIaPbJwM,\"In this flashback, Topper and Ramada share romance and spaghetti.\"\ntt0107144,sAwwDhNJJO0,\"Topper, Michelle and their limo driver enjoy some alone time.\"\ntt0107144,9aqopEQr7wI,Topper puts up impressive body count numbers.\ntt0102059,zgYGbR8f1PA,\"The pilots make their landings at the aircraft carrier, with the guidance of Wash Out.\"\ntt0102059,ECiut2qgJck,\"During Dead Meat's emergency rescue, Wash Out gets dragged alongside the ambulance.\"\ntt0102059,3JkBKGttM_U,Dead Meat has a visit from his wife before take off and experiences a number of bad luck superstitions.\ntt0102059,dZwnXa6XHSI,Topper has a traumatizing first visit with his new therapist.\ntt0102059,5ogVT5mpg6c,Topper cooks a sensuous breakfast on top of Ramada's sizzling hot body.\ntt0120681,q437KEcmwmM,\"Inspector Abberline, kidnapped by the Freemasons, escapes when the horse carriage gets into a street accident.\"\ntt0120681,ryvvNrcMh-c,\"Inspector Abberline realizes that Sir William Gull is the murderer he's been looking for, a.k.a. Jack the Ripper.\"\ntt0120681,mphHRcrJfNE,\"Inspector Abberline \"\"chases the dragon\"\" one more time and has visions of Mary Kelly's murder by Jack the Ripper.\"\ntt0120681,o2xprwwIMXM,Inspector Abberline and Mary Kelly kiss passionately in the alleyway.\ntt0120681,fluJSCbNpDM,Inspector Abberline investigates a crime scene with another prostitute as the victim. He discovers grapes and places money on the victim's eyes to pay the ferryman.\ntt0377062,nhP_9bFQvjg,\"Frank pilots the Phoenix into the sky, escaping their pursuers.\"\ntt0377062,NEJtJu--hto,Frank confronts Elliott for murdering a nomad.\ntt0377062,_KCXk-BhTd8,The crew is concerned when they realize that Elliott designs toy airplanes.\ntt0377062,fWP17t95S2k,Frank saves Elliott's life during an electrical storm.\ntt0377062,QMJfw8aF90Y,\"After losing his propellor in a sandstorm, Frank crash lands the plane.\"\ntt0107144,BP6N_JrLUIM,Topper and Ramada's goodbye is interrupted by Dexter.\ntt0107144,TNkvLDF7JOY,Col. Walters and Michelle visit Topper at a Thai kickboxing match.\ntt0099785,mDUSjBiHYeY,\"Harry and Marv close in on Kevin, but Kevin gets help from an eight-legged friend.\"\ntt0099785,S7OWoc-j8qQ,Kevin keeps laying down the punishment on the would-be bandits.\ntt0099785,ddXUQu9RC4U,Kevin's booby traps work perfectly against the bungling home invaders.\ntt0099785,_qu4ZBCU6Fc,Kevin talks to himself in the mirror as he washes up and gets ready for his first day alone.\ntt0099785,tpfOhYRYv80,Kevin tricks Marv into thinking that a shooting has happened in his house with a movie clip.\ntt0104427,bI9CAfqY3hk,\"Bobby watches a young kid kill Jimmy Hoffa, who is waiting in a car at a roadside diner.\"\ntt0104427,JY6N-tEppkg,Hoffa leads the striking teamsters into a violent riot against RTA.\ntt0104427,zE2-th0lNbg,\"While Hoffa and D'Allesandro negotiate, Bobby kills a deer.\"\ntt0104427,9h9W4c2YLCg,Hoffa squares off against Senator Kennedy over a subpoena and charges of corruption within the teamster union.\ntt0104427,FVg9En9jYSo,\"When trying to set a building on fire, an accidental explosion leads to Billy Flynn catching on fire.\"\ntt0356634,hwpHOq3Xbks,\"Garfield tries to chase after Odie, but his unorthodox means of transportation sends him flying out a window. Fortunately, a lasagna truck breaks his fall.\"\ntt0356634,SgqfufV0AL0,Garfield has a tumultuous ride through the ventilation shaft of the Telegraph Tower.\ntt0356634,tUuzV9kwSBE,Odie impresses the crowd with a dance while Garfield is chased by dogs.\ntt0356634,6_5QkJsNCho,\"When Garfield falls victim to his own scheme, Odie saves him.\"\ntt0356634,Pojd3KNQq68,\"Garfield must make a show of catching his friend, Louis, for Jon.\"\ntt0067116,ZvvlFocf6LU,Doyle viciously interrogates and insults a drug suspect while dressed as Santa Claus.\ntt0067116,MYv8K_joa6A,Doyle and his partner Cloudy shake down a junk-house bar.\ntt0067116,JD-K9Exe8jw,\"After a cat-and-mouse chase, Charnier gives Doyle the slip on the subway.\"\ntt0067116,wYMJal35N0o,Doyle catches up to the elevated train and kills Nicoli.\ntt0067116,2TVyJ-51jzc,Doyle races through traffic to keep up with the elevated train.\ntt0104431,E3RQVcNUcTA,Kevin throws bricks at Harry and Marv on the street below.\ntt0104431,h_bUcNjmuSk,Kevin uses an old movie to intimidate Mr. Hector and the hotel staff.\ntt0104431,Dh1V8GyyNYE,\"Kevin runs up to the second floor, while Harry and Marv underestimate his booby traps.\"\ntt0104431,DTPq0mNS0-0,\"Marv tries to wash the paint off and gets electrocuted, while Harry tries to put out the fire on his head.\"\ntt0242423,ghDDdQxgXRw,Jesse and Chester meet Fabio on the street and try to one-up his studliness.\ntt0242423,G2Mbj06Ns2Y,\"While changing in a dry cleaners, Jesse and Chester discover that they both have brand new tattoos.\"\ntt0242423,uL2gxb-TcLM,\"Jesse and Chester crash a cult meeting and are forced to find the \"\"Continuum Transfunctioner.\"\"\"\ntt0242423,ADRGgyhX4YE,Jesse and Chester are entertained by Nelson's stoner dog.\ntt0242423,oqwzuiSy9y0,Jesse gets caught up in some Chinese food mind games at the drive thru.\ntt0099487,szLCkEBB6xs,The neighborhood women line up to have Edward cut their hair.\ntt0099487,G1DG6f_6nZ8,\"Kim tries to stop Jim when he attacks Edward, but Edward eventually fights back.\"\ntt0099487,d9PlKlirxT4,Kim tells her granddaughter the story of Edward Scissorhands and why she believes it snows every year.\ntt0099487,64IwbhFYuUM,\"Kim goes out to see the snow Edward created, but when he accidentally cuts her, Jim overreacts.\"\ntt0099487,pu523TrIMpg,Kim is hysterical when she finds Edward in her bed.\ntt0137523,eCKRI2wEw7I,The Narrator comes to the stunning realization that he and Tyler Durden are the same person.\ntt0137523,6pJC0FLA3Sk,The Narrator beats himself up to a bloody pulp in his boss's office.\ntt0137523,zvtUrjfnSnA,\"Tyler Durden gives The Narrator a chemical burn to teach him the lesson that \"\"it's only after we've lost everything, that we're free to do anything.\"\"\"\ntt0137523,CR5Jp_ag2M8,Tyler convinces The Narrator to hit him as hard as he can.\ntt0137523,dC1yHLp9bWA,\"Tyler Durden lays down the ground rules for Fight Club. First and foremost, you don't talk about Fight Club.\"\ntt0838221,faX23LNpQGg,Mother gets defensive when her sons confront her about leaving them and not making it to their dad's funeral.\ntt0838221,Wy6ANzdhy1s,A fight breaks out between the brothers after Francis sees Peter shaving with their deceased father's razor.\ntt0838221,mVybomocIw4,\"The Whitman brothers have a low moment together about their estranged mother, contemplate their spiritual journey, and decide to get high.\"\ntt0838221,1j8l24hHhgA,\"When the train gets lost, Francis reveals to his brothers the real purpose for their trip.\"\ntt0838221,Em4igIXJRgw,Jack lures Rita into the bathroom to share a cigarette and a make-out session.\ntt0357277,spbfax8dOTk,Elektra protects Mark and Abby from a team of ninja assassins.\ntt0357277,IYcgbsw7yc4,Elektra is brought to her knees by a mystical kiss from Typhoid.\ntt0357277,Y-zjMdsTYyw,Elektra and Kigiri battle through flying linens.\ntt0357277,mlcBwNHilHE,\"Elektra and Kigiri engage in a final, epic battle.\"\ntt0332047,ebj_l5icPPg,Lindsey delivers some shocking news to Ben.\ntt0332047,XqmCa8WjX5Q,Ben explains why he is such a huge Red Sox fan.\ntt0357277,A3WWrwBRH_w,Elektra disposes of DeMarco.\ntt0332047,6qIBzPrHoVk,Ben and Lindsey get to know each other on a first date.\ntt0332047,zPN9c-AIezE,Lindsey explains the state of her relationship with Ben.\ntt0332047,KpOUP8mC9fk,\"On a field trip with his students, Ben is impressed with Lindsey.\"\ntt0120631,J03lpGKZ0xc,Danielle helps Prince Henry see the bright side of his royal status.\ntt0120631,ZpkIPtYw01k,Danielle finds a creative way to protect Prince Henry from gypsies.\ntt0120631,TrxJeKnKaAk,The Baroness breaks Danielle's heart by telling her she never loved her.\ntt0120631,chBVj94zYDM,Danielle meets the prince at the river and gets to know him better.\ntt0120631,ZGFHY5JjTZQ,The prince proposes to Danielle and sweeps her off her feet.\ntt0364725,-4QqksHXUCc,The Average Joes meet the Purple Cobras in a heated final match.\ntt0364725,sT47KfDlwI8,A helpful instructional video on the history and rules of dodgeball.\ntt0364725,BXveaReACHs,White and Pete fight for Kate's attention.\ntt0364725,peUyLXrgYZ0,Patches O'Houlihan gives the Average Joes their first dodgeball lesson.\ntt0164114,E4e_QytNF4I,Chase spends a day tubing with the cool crowd and has a heart-to-heart with Dee Vine.\ntt0164114,s6DlYFmuJXw,\"At the Centennial Dance, Chase and Nicole share a slow dance to The Electrocutes version of \"\"Keep on Loving You.\"\"\"\ntt0364725,KqQ1UmDPvgA,The Globo Gym dodgeball team throws down a challenge to the Average Joes.\ntt0164114,SPiSR_YDfXc,\"If Chase is believably going to take Nicole to the dance, he needs a makeover. His new look fails to impress his friends or Dulcie.\"\ntt0164114,gRyEkrwnyaI,\"After the basketball game, Nicole and Chase go cruising on Broad Street.\"\ntt0164114,D6DPbztWi8U,\"In an act of desperation, Nicole asks Chase to take her to the Centennial school dance.\"\ntt0099423,P0Tt7VUMLs8,McClane succeeds in taking down the terrorists' plane.\ntt0099423,acnUb2KcgdU,McClane fights Major Grant on the wing of the escaping plane.\ntt0099423,jZiR9MHumCk,\"The terrorists try to kill McClane in the cockpit of the plane, but he makes a creative escape.\"\ntt0099423,3_zKy7ygsHY,\"McClane chases the terrorists on a snowmobile, but their superior firepower ends his ride.\"\ntt0099423,g-P53rME1xE,McClane saves Barnes and single-handedly takes care of the terrorists in the Annex Skywalk.\ntt0095016,I6wRZCV7naE,McClane gets Sgt. Al Powell's attention by throwing a dead body out the window and down onto his police cruiser.\ntt0095016,cnQEo4bazIo,McClane has one final showdown with Hans sending Hans out the window and to his death below.\ntt0095016,LVpnmOXvBR0,McClane has to escape the roof that's been rigged to blow and the feds that have mistaken him for a terrorist.\ntt0458352,2PjZAeiU7uM,Andy watches as the Runway Magazine office turns upside down when it is announced that Miranda is on her way.\ntt0095016,BSRrzrQtmto,Hans thinks he's dealing with just another American cowboy and McClane agrees with him.\ntt0095016,L0CL__Tvp-o,McClane sends Hans a Christmas greeting in the form of Tony's dead body in an elevator.\ntt0458352,b2f2Kqt_KcE,\"Andy interviews to be Miranda's assistant and despite everything going against her, makes an impression.\"\ntt0458352,-qdHE9-8spU,\"When Miranda tells Andy that she is like her, Andy walks away and happily tosses her mobile phone into a fountain.\"\ntt0043456,HQSGHbbDR_Q,\"Klaatu, the alien visitor, emerges from his flying saucer and greets the Earthlings.\"\ntt0458352,Ja2fgquYTCg,Miranda sets Andy straight when she laughs at their debate over two seemingly similar belts.\ntt0043456,K6iF5sINVns,\"After the military attacks Klaatu, the robot enforcer Gort descends from the spaceship and melts their weapons.\"\ntt0043456,ASsNtti1XZs,Klaatu gives a warning to the human race about aggression.\ntt0458352,HSPYgwP9R84,Emily is speechless when she sees Andy after a makeover with the help of Nigel.\ntt0043456,M9phuyRknPw,Klaatu leaves a final challenge and leaves Earth in his flying saucer.\ntt0043456,5NZXmq-E2tM,Helen goes to the robot Gort and utters the phrase to stop his destruction.\ntt0092115,sKNAfihSpnk,Harry Potter Sr. is starting to get the feeling that something weird is going on in the building.\ntt0092115,1e7FILJsiZA,The Troll transforms Peter into a magic pod that turns his apartment into a mystical forest.\ntt0092115,iGhEOyypT2A,The Troll spawns an elf creature from a pod.\ntt0092115,DfW_3qH9G5M,\"The Troll captures Wendy playing in the basement, while her brother Harry Potter Jr. looks for her.\"\ntt0092115,Loo5BhidY-4,\"As the fairy world merges with the apartment building, Harry Potter Jr. attempts to rescue his sister from a glass coffin.\"\ntt0092115,pMPJV8sYt7k,\"As Malcolm tells an ancient poetic tale to Wendy and her mother and father, the monsters growing in the building start to sing.\"\ntt0092115,34c473tq72E,\"William visits his girlfriend Jeanette, only to find her apartment has become a magical forest and her a happy nymph.\"\ntt0092115,Q6luiTx1pM8,\"When the Troll's monster goes after Wendy, he is left with no other choice but to destroy his own creation and end the merging of the two worlds.\"\ntt0092115,ZS7BASI6gpM,A young Eunice goes looking for the Troll in order to face him.\ntt0092115,nRLP98lG1YA,Wendy transforms into the Troll when Barry is unable to explain what death looks like.\ntt0116282,kPHbIyDTPHU,Police Chief Marge Gunderson investigates the murder of three people while dealing with morning sickness.\ntt0116282,R4lxBhDtvXQ,\"When pulled over by a policeman, Carl tries to handle it, but Gaear takes the matter into his own hands.\"\ntt0116282,RM2N1w6t1KM,\"Jerry asks his father-in-law for a $750,000 loan and is denied.\"\ntt0116282,bbpQmRxCYUU,\"After trying to strike up a conversation, Carl decides to give Gaear the silent treatment.\"\ntt0116282,MY5NspwaVgk,\"Gaear really wants pancakes, and the only way he convinces Carl to stop is if they finish them off with some sex.\"\ntt0116282,0hL-fpCsGR8,Marge tells Gaear that there's more to life than a little bit of money.\ntt0116282,WGxTMoDAI7M,\"Jerry practices his \"\"frantic\"\" phone call to Wade after finding his wife kidnapped, and his house a mess.\"\ntt0116282,TqNaJxRC9NM,Jerry is caught off guard when Marge questions him about possible vehicle thefts.\ntt0116282,0YzsWVUO-_o,Marge finds Gaear putting his partner in crime through a wood-chipper.\ntt0116282,MXcxWsdjYHA,Carl pays $4 for staying 5 minutes in airport parking and shares a few choice words with the parking attendant.\ntt0116282,8ltYYXhGCBo,Marge takes Officer Lou to task over sloppy police work.\ntt0116282,B2LLB9CGfLs,Jerry Lundegaard sells an irate customer undercoating on a new car.\ntt0286499,T3nGqPQJqlQ,\"As Pinky's wedding celebration goes on, Jess kicks the winning goal in the championship game on a penalty shot.\"\ntt0286499,MnUGqPzLojs,Jess excitedly informs Joe that her parents have allowed her to go to America.\ntt0286499,Dk5SrjFVQIM,\"Jules invites Jess to try out for the Harriers. At the tryout, Jess meets the coach, Joe.\"\ntt0286499,uopLUlluf-I,\"When Jess tells her family she wants to go to America to play soccer on a scholarship, her dad encourages her to live out her dreams.\"\ntt0286499,oZoXYuatXzI,\"While clubbing in Germany, Joe is obviously more interested in Jess, which hurts Jules.\"\ntt0319262,ZZyXtEMFfaw,\"As the eye of the storm approaches, Sam comes up with a plan to escape from the wolves and return to shelter.\"\ntt0319262,GmjAp2eRDH0,A massive tidal wave rises from the Atlantic and floods the streets and skyscrapers of New York City.\ntt0319262,dkErNkX2HKM,Dozens of tornadoes suddenly form in Los Angeles and destroy several Hollywood landmarks.\ntt0319262,L2PdSg-w5T8,\"After Sam emerges from underwater, Laura uses her body heat to warm him, while Jack plans a rescue.\"\ntt0319262,MKf_SL_owsY,Sam reveals his feelings for Laura while they are seeking shelter from the storm in the New York Public Library.\ntt0088944,Dus8r5l5cys,John and Bennett have a violent brawl until John impales Bennett with a pipe.\ntt0088944,HjNQLXXwYfw,John attacks Arius' compound with all of his firepower and resourcefulness.\ntt0088944,zB6pvQt0I8s,\"After wrecking Sully's car, John lets him go off a cliff.\"\ntt0088944,YcSXHU0zktM,\"When mall security converges on John, he takes care of them all and chases after Sully.\"\ntt0088944,hopRenk1oaQ,John kills his escort and finds a way off the airplane bound for Val Verde.\ntt0452598,M3u94uEBq9o,\"Tom goes kneeboarding to keep an eye on his daughter Sarah and her crush Eliot, but his age and inexperience in the water pays a price.\"\ntt0452598,FccBG82Ocds,\"When some raw meat is placed in the seat cushion intended for Jimmy, the Baker's dog runs rampant destroying the table setting and attacking Tom.\"\ntt0452598,djUYiJu6K48,The clam blake goes horribly wrong when a backpack full of fireworks accidentally ignites on the buffet table.\ntt0452598,5e7c30eNNy4,The Baker Family and the Murtaugh clan have competing camp out sing-a-longs from across the lake.\ntt0349205,5SrayNqew08,The kids crash Dylan's lame birthday party.\ntt0452598,LRD16Y5xR9Y,\"As the Baker's settle into their vacation house on the lake, they are greeted by an unexpected mouse nicknamed The Chisler.\"\ntt0349205,ZWLQiviq7SM,Tom lies and tells Kate that everything at home is totally fine.\ntt0349205,1ZVwo_elP7Y,Tom has trouble keeping up with his kids while his wife is out of town.\ntt0349205,I-OaeRbZtk8,The neighbors can't deal with the havoc at the Baker home.\ntt0349205,oIjgZ-i9v_k,Mark's frog wreaks havoc at the Baker's breakfast.\ntt0115857,4Y9X5wDG4Dw,\"As the reactor gets set to blow, Lyman kills Chen and threatens Eddie and Lily.\"\ntt0115857,P4BRIozjuKg,\"Eddie and Lily escape Yusef, but barely survive an explosion at the base.\"\ntt0115857,xCKGA9yDNgQ,\"After finding Dr. Barkley dead, Eddie tries to escape a massive explosion at the hydrogen lab.\"\ntt0118798,jZtlV8eroS8,L.D. explains how he helps young black kids by giving them drug jobs.\ntt0118798,Pwv4avomXYo,Bulworth forces a racist cop to apologize for bothering some black kids.\ntt0118798,Id0cqNWZ50Y,Bulworth raps his political beliefs at a Beverly Hills luncheon.\ntt0118798,XA62refAB2w,Bulworth throws out his prepared speech and tries brutal honesty for a change.\ntt0118798,f5umSa_YYX0,Nina shocks Bulworth with her knowledge of politics.\ntt0297037,bdft59iqlKQ,Dre calls in the radio station to profess his love to Sydney on-air.\ntt0297037,hnfpujruuv4,Sidney tries to take control of the situation after she and Dre sleep together.\ntt0297037,eLdQluY23UI,Francine tries to convince Syd to step forward and stop Dre from marrying Reese.\ntt0297037,fa4IKrf2YHI,\"Dre and Sidney hang out after catching his wife on a date with another man, and finally sleep together.\"\ntt0297037,___OJkS9RK0,\"Sidney comforts Dre when he is worried about \"\"selling out\"\" for his career, which leads to a kiss.\"\ntt0120620,ITu2LTUPniQ,Alice and Darlene learn the hard way that Thai courts judge character above crime.\ntt0120620,-3KCgSpt3hU,Alice falls before a Thai Judge and claims full responsibility for all drug smuggling charges.\ntt0120620,WkjEuV1fTrk,\"After being detained, Alice and Darlene experience a cultural shock in the Thai system.\"\ntt0092699,MTEXVT8P354,Jane checks Tom's interview tapes and sees that he faked his on-camera tears.\ntt0092699,A5xTu6AMxq4,The station tries to assist Aaron during a news segment when he starts to sweat uncontrollably.\ntt0092699,2zTqIJeCd3c,Jane impresses everyone at the station when she helps Tom pull off a successful news piece.\ntt0092699,ZTCtiADVAWs,Aaron confesses his love for Jane and tries to explain the truth about Tom.\ntt0092699,zPtKevwg7Ko,Jane and Aaron say a difficult goodbye.\ntt0078902,pWYPN21XIEU,Dave pulls out the race at the finish line and the Cutters celebrate their victory of the Little 500.\ntt0078902,VTZ0N7VTDtY,\"During a bicycle race, Dave is able to keep up with the vaunted Italian squad until they employ cheating tactics.\"\ntt0078902,6DQTWY9wTO8,Mike and Moocher find the guys who beat up Cyril. A fight ensues between the Cutters and the frat boys.\ntt0421729,a1GeB9y9zzo,Big Momma gets her groove on at the cheerleading competition.\ntt0421729,C3ZMp57PKEA,Big Momma struts her stuff on the beach.\ntt0421729,HZzHIl9mBsI,Big Momma crashes the Fuller's babysitter interviews.\ntt0421729,u2107BTcDbs,Big Momma goes to a spa and is overwhelmed by scantily-clad women.\ntt0421729,le6AAhqa_8U,Big Momma hot massage makes her literally melt.\ntt0208003,wZaCK0PDUMI,Malcolm saves the day when the bullets start flying.\ntt0208003,kGot2YelCpE,Big Momma brings her A-game to the basketball court.\ntt0208003,9W5MiCLa9DU,Big Momma is forced to deliver a baby.\ntt0208003,a9biNJwX3OA,Malcolm/Big Momma has an unexpected gentleman caller.\ntt0208003,noT3bA3Ibyk,Malcolm has to hide in the shower when Big Momma takes a dump in the bathroom.\ntt0065466,SwtSrzKWoK4,\"Ronnie goes on a manic killing spree, beheading Lance and stabbing Otto to death on the beach.\"\ntt0065466,hpDjzODXpBQ,\"During a live TV performance by The Carrie Nations, Harris attempts suicide by leaping from the rafters onto the stage.\"\ntt0065466,DvSmeQSDTco,\"When Emerson confronts Randy after catching him in bed with Pet, Randy runs him over.\"\ntt0065466,zh4yF8r5uJI,\"Harris is seduced by Ashley St. Ives in the back seat of a Rolls Royce, while Kelly has her own affair.\"\ntt0065466,Y10g9umKQcM,\"At Ronnie's insistence, The Kelly Affair performs \"\"Sweet Talking Candyman\"\" at one of his parties.\"\ntt0163978,pMx5aSV7qFg,\"Alone in the jungle, Richard eats a caterpillar and hallucinates that he joins Daffy in war against the island.\"\ntt0163978,-N2mhlvygq0,\"To the dismay of the other travelers, Sal shows her willingness to shoot Richard to keep their location secret.\"\ntt0163978,GpQTd7WhT-Q,Richard and Francoise swim amid glowing shrimp and kiss for the first time.\ntt0163978,Yc9vYLgQb4E,Richard tells the assembled community of his encounter with a shark earlier that day.\ntt0163978,oNmhgpAGlBs,Richard and Francoise sit on the beach flirting and taking photographs of the night sky.\ntt0280460,5KderLI5hEc,Hannah gives an inspiring graduation speech about being genuine.\ntt0280460,Om_HVqAXZYY,Lavinia and Suzette enjoy their photos of rock star penises.\ntt0280460,-Jzi-2lYWEw,Lavinia and Suzette argue over life changes while at the DMV.\ntt0280460,yGUwdRBZ4-8,Lavinia comforts Suzette and they bond high up on a billboard.\ntt0280460,f_sRtGI7Y0g,Lavinia's daughters receive some hard truth from Suzette.\ntt0042192,5tu_42LmfEw,Eve describes what she loves about working in theater.\ntt0042192,CBOzczGQh9w,Addison confronts Eve with the truth about herself.\ntt0042192,1orN1oGScbk,Eve resorts to blackmail to secure the role of Cora in Lloyd's new play.\ntt0042192,LPPJdOGshUM,Margo's bad feelings toward Eve become apparent; Addison introduces a young starlet.\ntt0042192,eWL0obbYYOE,Bill reassures Margo that he loves her despite her paranoia and tantrums.\ntt0168786,-5be_UPkLRw,\"While spending Thanksgiving with Dr. Davenport's family, Antwone shares a poem he wrote.\"\ntt0168786,ucQmXLgGIVA,Antwone blows off some steam in Dr. Davenport's waiting room.\ntt0168786,LW8CpOzdT5Q,\"After waiting more than 20 years, Antwone finally meets his estranged mother.\"\ntt0118583,14Mf_nTyWBc,The crew tries to escape an alien inside a shaft.\ntt0118583,L4_-rVenLVs,\"After connecting with the alien, Ripley and Annalee force it out into space.\"\ntt0118583,UsJjfS-i2zM,A new alien mutation investigates Ripley and finishes off Gediman.\ntt0118583,cv7_7dSbaOk,The team is pursued by aliens even when they try to escape underwater.\ntt0118583,LFN4NtioY8Q,\"The aliens get loose from their chamber, which spells the end for Dr. Gediman.\"\ntt0103644,L3vbfkRB6gQ,Ripley falls back into a pit of lava in order to make sure the alien race does not live.\ntt0103644,DZFydcYiOtQ,Dillon sacrifices himself as molten lead is poured down on the alien.\ntt0103644,DNuzmKc7mq4,\"The alien kills Clemens in a surprise attack, yet leaves Ripley alone.\"\ntt0103644,hmF_IO6Aiag,Ripley searches out the alien in the grimy basement.\ntt0103644,dCTd1XHbliU,Andrews protests Ripley's hysteria in the mess hall and is subsequently killed by the alien.\ntt0311113,GmvpP26J-40,\"Stephen confronts Captain Aubrey about his order to flog a disobedient man, but the Captain's order stands.\"\ntt0311113,Vy-simXeFBc,\"With the day won, Captain Aubrey gives his 2nd Lieutenant orders and then proceeds to play a musical duet with Stephen.\"\ntt0311113,Isx0GBj1fxU,Captain Aubrey and his men board the Acheron and brutal hand to hand combat commences between the two crews.\ntt0311113,G95g0vzTAKI,\"Captain Aubrey gives the order and his ship fires on the Acheron, destroying it's mast.\"\ntt0198021,b7NJkxnU7xI,Novalee encounters a friendly woman named Sister Husband who thinks she is someone else.\ntt0283026,ai1wUoboyNM,Madison gets caught in a trap set-up by Ben.\ntt0283026,apo0KrJVXMk,Ben makes a startling discovery in the pool when he finds Josh's dead body.\ntt0283026,d_FUI6kf1b8,Madison confronts Ben in the locker room.\ntt0283026,Jj0UuTkXIyA,What begins as an innocent swim lesson between Ben and Madison turns into something a little more serious.\ntt0283026,441D9uXF1ac,Ben opens the wrong email at the wrong time.\ntt0311113,5f0cBrCTeis,\"When he is shot in the stomach, Stephen must perform surgery on himself.\"\ntt0467406,1QvItdreFLk,Juno and Bleeker sing a song and share a kiss.\ntt0467406,jPF_mENo1Fw,Vanessa runs into Juno at the mall and feels her baby kick for the first time.\ntt0467406,B2CEGhwMjkQ,\"Juno confronts Bleeker at his locker about prom and the \"\"planet\"\" growing under her shirt.\"\ntt0467406,GOqTRPdrXgc,Juno tells her parents about her plans for adoption and the couple she is considering as the adoptive parents.\ntt0467406,NocIDIeLTqA,\"Juno takes multiple pregnancy tests at the local convenience store, but all signs point to pregnant.\"\ntt0166396,OwYH_j7c9gE,\"As Lizzy prepares to call the National Lottery office, fate intervenes, sending the phone booth she's in off a cliff.\"\ntt0166396,GQJMW4W_278,Jackie tries to delay the lottery claim inspector while Michael races to Ned's house so he can pose as Ned.\ntt0166396,S_yY1PaFEok,Jackie pretends to have the winning lottery numbers in order to get Annie to bring in his apple tart.\ntt0198021,31t8eDmC1BU,Novalee travels to Forney's college to tell him that she lied about not loving him.\ntt0198021,CJIECQdjuLU,\"Novalee visits Forney after his trip to Maine, and tells him she does not love him back.\"\ntt0198021,o0Y7v_EbE70,Novalee almost gets blown away when she looks for Sister in a tornado.\ntt0198021,i2isplJSa8E,\"After naming her daughter \"\"Americus,\"\" Novalee gives an interview for the local TV station and opens mail from people inspired by her story.\"\ntt0388482,4ybEyyoBxts,\"With Lola and Jack in tow, Frank leads a fleet of police cars on a wild chase.\"\ntt0139414,DTMVpuLIp18,Kelly sees Mrs. Bickerman feed an entire live cow to the giant crocodile in the lake.\ntt0139414,IRZrsNC5jpg,Hector finds himself face-to-face with the giant crocodile and yells to Sharon to help him escape via helicopter.\ntt0112864,RDnvXAkMnx8,McClane meets Zeus while wearing a highly offensive sign in the middle of Harlem.\ntt0112864,dNlMe4kU9TA,McClane escapes a flood in a tunnel.\ntt0112864,8RVVJmuoAQ4,McClane and Zeus manage to evade Connie by driving their cab through Central Park.\ntt0112864,crPJvv2Y3hk,McClane confidently takes out Simon in a fiery blaze.\ntt0112864,Q0yQbpoQ0hY,McClane notices some suspicious cops in the elevator and finds a clever way to grab his gun and kill them all.\ntt0139414,GMCKHfREAPA,\"Sheriff Keough spots a scuba diver flopping around in the lake and when he helps pull him out, something is missing.\"\ntt0139414,cONYIjOytm0,\"Just as the group is about to be attacked by a giant grizzly bear, the crocodile flies out of the lake and eats it.\"\ntt0139414,EsFrRaMQMPA,The group makes a fast break to the boat when they sense the crocodile is near.\ntt0388482,qr7oBpkkxIQ,\"Battling ax-wielding goons in a garage, Frank uses a length of pipe to knock them into a trash bin.\"\ntt0388482,Hpc8yqHTq-I,Frank finds many uses for a fire hose as he takes out his aggressors.\ntt0388482,-HPjEz0u-9Q,\"When a posse of thieves attempts to steal his car, Frank teaches them a lesson.\"\ntt0388482,RUpKMSWPjZw,\"Frank shields Jack from a gun-toting, lingerie-clad villainess.\"\ntt0333766,D2XKjKc8DKg,\"After leaving Sam in the airport, Largeman has a change of heart.\"\ntt0333766,GZQMDeQs0-k,Largeman reveals that he can't cryor swim.\ntt0333766,qSGfcCO_h4I,Sam shows Largeman what she does to feel original.\ntt0333766,cncKzAr-jis,\"Largeman takes Sam on a ride, but she doesn't like his friend Jesse.\"\ntt0094737,11Kv8mnxdCM,Susan comes on to Josh at the company party.\ntt0094737,3ERuhks3GNk,Josh has a few opinions about the company's new toy.\ntt0090728,dME9-07ZvJI,\"Jack, Wang and Egg Shan have an epic battle with Lo Pan and his minions.\"\ntt0456554,sZTpI9Q71rs,\"While getting high with Dante and a chimp, Alex finds out he has to get back to the office to save his Grandma.\"\ntt0456554,HgmE4x7yg3c,\"At a house party, Grace tells a revealing tale about Charlie Chaplin and Samantha shoots a double shot of tequila.\"\ntt0333766,agRBVqecl5Y,Largeman meets a horny dog and quirky Samantha at the Doctor's office.\ntt0456554,wdWM3tzzH08,Samantha gets introduced to the video game break room with J.P. as her escort.\ntt0456554,a2Th8JGsJuo,\"J.P. rides his robo-scooter through his office, re-fuels his body with lunch, and listens to a message from Samantha.\"\ntt0456554,DuKvU5jh2os,\"Alex gets caught masturbating to a Lara Croft action figure by his friend's mom, Mrs. K.\"\ntt0094737,gxeIvClLpKI,Susan is shocked by Josh's apartment.\ntt0094737,CF7-rz9nIn4,\"Josh and his boss play a huge electronic piano, to the delight of shoppers.\"\ntt0094737,9pX1hxYW3YY,Josh realizes that his wish to be big came true.\ntt0159273,d-RR_vV7qDU,The Serbs attempt to shoot down Chris and Stackhouse's jets because they've flown over a mass grave.\ntt0115759,gS56O-aHEMs,Deak detonates the first nuclear bomb in a mine shaft.\ntt0115759,De2qscGlWX4,Deak and Hale fight to the finish until the bomb launches into Deak and the train explodes.\ntt0115759,zW7btaVY-Lw,Hale fights Deak and his henchman aboard a moving train.\ntt0159273,pTvbSVyWP9I,Chris tricks and kills Sasha.\ntt0159273,5dL4tZZ-Jq8,\"The US task force, led by Admiral Reiga, rescues Chris with a daring helicopter maneuver.\"\ntt0064115,tNZKO_68_WI,Sundance tries to cover Butch during a shootout with the Bolivian authorities.\ntt0064115,w9KBOhPXhds,\"Harvey challenges Butch's authority in the gang, but Butch isn't ready to give it up.\"\ntt0064115,geOqbM03Hf0,\"Butch and Sundance make a plan to go to Australia, then go out shooting.\"\ntt0064115,8_JPDEHU1ok,Butch shows off his bike skills to Etta on a carefree morning.\ntt0064115,KyR7XB0VBPM,\"To escape their relentless pursuers, Butch and Sundance take a leap of faith.\"\ntt0090728,XBJSfGM5dGY,\"Jack goes in disguise to a Chinese brothel to rescue Miao Yin, but meets Lightning.\"\ntt0090728,fWcPwWR4C_w,\"While Jack and Wang are caught in a gang war, three sorcerers arrive.\"\ntt0090728,A65Jq6NKdeI,Jack uses quick reflexes to kill Lo Pan and Thunder blows his top.\ntt0090728,eMURCJgRJYM,Wang kills Rain while Jack rescues Gracie.\ntt0118617,m3s7ZwpFCsc,\"While learning how to dance, Anastasia and Dimitri share a tender moment.\"\ntt0159273,XFdEntyO6TY,\"As he works his way toward the extraction zone, Chris must maneuver his way through a minefield.\"\ntt0370263,Xh1TwRilcLo,A predator and an alien engage in a vicious fight.\ntt0118617,Qxju05tBuLM,Sophie shows Anastasia around Paris.\ntt0118617,lrGIfJdbUHY,\"Just as Rasputin is about to take his revenge on Anastasia, Dimitri comes to save the day.\"\ntt0118617,qA7XKmC5QbQ,\"While visiting the Royal Palace, Anastasia starts to remember her past.\"\ntt0159273,JaeHMEw9KAg,Admiral Reiga orders Chris to re-locate to a new extraction point in order to be rescued.\ntt0370263,crZXwRmMq2k,The team is trapped inside the temple when facehugger aliens attack.\ntt0370263,-64q4HpZyaY,Sebastian and Alexa witness how the predator marks himself with the blood of his prey.\ntt0370263,1sE-YwK6_PI,Alexa and the predator battle the gigantic alien queen.\ntt0370263,oh4GYHtq2hY,\"Alexa is honored with a spear from the Predators, but aboard the Predator ship, a new menace is born.\"\ntt0118617,XPwdUzG03SQ,Rasputin vows to kill Anastasia.\ntt0078748,3YTIMGmZUr4,\"While looking for the cat, Brett meets the alien.\"\ntt0463854,yLz4NXK6jkU,Doyle puts himself in harm's way to push start the car and allow Scarlet and the children to get away.\ntt0463854,iDrYp0LApwU,\"Flynn refuses to allow anyone other than Doyle onto his helicopter, the blades of which he turns on the infected.\"\ntt0463854,Xh2kwqss0dQ,Don abandons his wife Alice and runs for his life when a group of the infected overtake their cottage.\ntt0078748,AdBu6VAESeI,\"A baby alien bursts from Kane's chest, to the horror of the crew.\"\ntt0078748,gEqHJ1tomnk,\"When Ash tries to sever the alien off Kane, the blood that gushes out burns a hole in the ship.\"\ntt0078748,CRXyWtv-huc,\"Crawling through the vents, Dallas meets his untimely end.\"\ntt0078748,U-mmbStFrAA,Ripley blows the alien away and begins her journey back to civilization.\ntt0463854,xi7nytFOO2k,\"When Don kisses Alice, he becomes infected with the virus and kills her.\"\ntt0463854,v0i-Th0bvPw,Doyle and the other snipers are ordered to shoot everyone on the ground right as Andy finds himself in the middle of the crowd.\ntt0289043,S6bKFjxPbC4,Frank is infected by a single drop of blood and the military eliminates him before Jim can.\ntt0289043,j9h6JvfCOOs,Jim rescues Selena from a soldier.\ntt0289043,rDbMqG0EObM,The group manages to change their tire just as an infected horde arrives.\ntt0289043,j-a68r1d9iQ,\"When an attack leaves Mark infected, Selena has to take action.\"\ntt0289043,eCdRFMp8Xwo,\"Jim wanders the streets of London, baffled by its emptiness.\"\ntt0086998,ad65spfln8w,The Electro Rock crew beats Turbo and Ozone at the dance battle.\ntt0086998,s8jfw7FxNqA,\"While sweeping the street, Turbo starts breakdancing.\"\ntt0086998,Y15DS1LKh4g,Ozone takes Kelly back to Venice Beach to show her what dancing really means to him.\ntt0086998,x26YFcaLiNk,\"James is a little out of place at the dance, and Ozone nearly gets into a fight.\"\ntt0086998,wdB2lzxIfGg,\"When Kelly asks James to help get her crew into the contest, he's skeptical, but agrees to come and watch.\"\ntt0086998,8-q2CNPDfOU,Turbo and Ozone teach Kelly how to break dance.\ntt0086998,ZgIp4Y5NoZk,\"Ozone, Turbo and Kelly show Electro Rock their moves while a young Ice-T raps.\"\ntt0086998,bPNkEztLgeo,\"Turbo crashes Kelly's jazz dance class and starts a dance circle, until Franco kills the music.\"\ntt0086998,bt6-F11LZsQ,Adam introduces Kelly to Ozone and they dance at Venice Beach. Look for action star Jean-Claude Van Damme among the spectators.\ntt0086998,N2HtiOaOGx8,Turbo shows some neighborhood kids how to breakdance.\ntt0086998,cqiQmO5frrE,\"At the dance audition, Kelly, Ozone and Turbo win over the stuffy judges with their moves.\"\ntt0095159,6zquYbMbFNk,\"While searching Ken's apartment, Otto seduces Wanda by speaking Italian.\"\ntt0095159,MuWwCUXGzWE,\"Otto questions Ken about the location of the diamonds, gulping Ken's prized fish to motivate him.\"\ntt0095159,fSu5W0BtXG8,\"Archie hurriedly interrogates Ken, but can't get much out of him.\"\ntt0095159,02DzpeBF4es,Otto goes off on another tirade against the British and discovers a private letter from Archie.\ntt0095159,2j3adcbEwSM,\"Wanda corrects a few of Otto's \"\"intellectual\"\" misconceptions.\"\ntt0095159,YgJvgESR920,\"Avenging his departed fish, Ken plows over Otto with a slow-moving steamroller.\"\ntt0095159,PoaOwSPJPHw,\"When Wendy calls him stupid, Otto goes off on a tirade against the British.\"\ntt0095159,7WdGe1bDiuU,\"As Otto eavesdrops, Archie and Wanda make out and revel in his utter dumbness.\"\ntt0095159,lwfuUyTMpVY,Otto demands an apology from Archie while hanging him out the window by his feet.\ntt0095159,9Z3eCKZ69eM,Wanda uses her feminine wiles to soothe Ken's stutter.\ntt0095159,GfHOoFVUk9Y,Archie's seduction of Wanda ends abruptly when an unsuspecting family arrives.\ntt0103596,BBkzG9_vrZg,\"Though his brothers insist that he loves Emily, Rocky is adamant that the two are not an item.\"\ntt0103596,aHV7IUgaCy8,\"Grandpa faces his rival, Snyder, while the boys root him on.\"\ntt0103596,gRadASOF2m0,The boys show off their ninja skills during a surprise attack on Grandpa.\ntt0103596,OqGUDvVYqlM,The kidnapping is sabotaged when Fester's dudes succumb to the power of medicinal laxatives.\ntt0103596,xqcSo_Yb7OQ,Rocky and Colt play a game of basketball against the playground bullies.\ntt0103596,DMbglmaMzB8,The boys have no problem protecting themselves from Fester and the kidnappers.\ntt0103596,8Y_Vepe_rVA,Grandpa presents the boys with sacred masks to accompany their new ninja names.\ntt0103596,ReFW-5bgoCI,The boys' dad finally appreciates the value of Grandpa's teachings.\ntt0103596,ql5i_tg-wZY,Fester and his buddies take a casual approach to armed robbery.\ntt0103596,hcBF8zYH0s0,The boys' practice pays off when they face Snyder's colossal henchman.\ntt0075066,PruSWq_FycA,Clouseau's investigative prowess leads him to find the gymnasium.\ntt0075066,qxFHPIFGFmk,\"Clouseau tries out the parallel bars and drops in on some suspects, literally.\"\ntt0075066,vCuU2y6qR2s,Clouseau and Dreyfus take laughing gas and Clouseau extracts a tooth.\ntt0075066,yc-qretrU8Q,Clouseau is misunderstood by the Hotel Clerk and gets bitten by a dog.\ntt0075066,rKfOjJJ1ql4,Clouseau tries and fails to circumvent the castle's moat.\ntt0075066,e7Efjj3_uME,\"During his interrogation, Clouseau wrecks a piano, burns his hand and nearly shoots Superintendent Quinlan.\"\ntt0075066,Tu1RZaFnkKs,Cato ambushes Clouseau and the grand battle that ensues destroys much of the house.\ntt0075066,dApRtXZRw1Y,\"Clouseau's hot air balloon trick saves him from Dreyfus' bomb, but sends him flying over Paris into the river.\"\ntt0075066,9l07Tr1w4Ls,\"Impersonating a dentist, Clouseau makes a house call to Dreyfus and falls down the stairs.\"\ntt0075066,dTM13gYxkoQ,Clouseau is twice surprised by a beautiful woman in his bed and a dead man in his bathtub.\ntt0075066,5wS_6ok9u2c,\"Clouseau finds a \"\"cleu\"\" and then discovers the closet.\"\ntt0075066,Z4wZt4J3Q5k,\"Clouseau sabotages Dreyfus' master plan and zaps him with his own device, erasing him.\"\ntt0120841,13zrff9V3Tk,\"Dennis finally gets to rest from killing aliens, but something has survived\"\ntt0120841,SwGjsWSn8ak,Press discovers Eve mating with a huge alien.\ntt0120841,o7_kf3hUg30,\"Press, Dennis and Laura succeed in destroying the monster.\"\ntt0072081,oknpBL5cNOc,The Inspector and his bellhop accomplice attempt to escape Lady Litton's suite undetected.\ntt0072081,O-LGISfFS4Y,\"The Inspector shows up to arrest Lady and Sir Litton but is interrupted by two men looking to kill him, including Chief Inspector Dreyfus.\"\ntt0072081,G8EUObgUFvc,Inspector Clouseau gets stuck in a revolving door when he refuses to let the bellhop take his suitcase.\ntt0072081,tAbYODvO524,Cato attacks Inspector Clouseau in a Japanese restaurant.\ntt0072081,RcsaFXhuAwc,Inspector Clouseau attempts to infiltrate Sir Charles Litton's property by means of his swimming pool.\ntt0072081,ryuW22MWnOU,\"Cato, hiding in Clouseau's refrigerator, attacks the unassuming Inspector.\"\ntt0072081,K5eVu2qDISM,\"Clouseau, now an ordinary police officer, hassles a blind musician and his monkey while a bank heist happens in front of them.\"\ntt0072081,X_nUklmV_kM,Inspector Clouseau searches the suite of Sir Charles Litton only to get tangled up with a vacuum.\ntt0072081,m7aDde36EpM,\"The good Inspector explains the virtues of instinct while accepting a bomb at the front door, then relays the situation to Chief Inspector Dreyfus.\"\ntt0072081,BrXDDicE1VE,\"After failing to notice a bank heist in front of him, Officer Clouseau is suspended from duty by Chief Inspector Dreyfus.\"\ntt0111282,OeA9yeqG91A,\"O'Neil, Jackson and the rest of the team step through the Stargate and travel through a wormhole.\"\ntt0111282,_JuHsTbZKqA,Jackson tries to free Sha'uri while O'Neil kills a Horus guard.\ntt0111282,RWIS7olVbGE,The soldiers help the people overthrow the Horus guards while Jackson and O'Neil try to disarm the bomb.\ntt0111282,x-FLqiu9nTs,\"When the \"\"natives\"\" see Jackson's pendant, he and the others are mistaken for gods.\"\ntt0111282,3Ds0DRCNXN4,\"Jackson figures out the seventh symbol and the Stargate is activated, opening a wormhole.\"\ntt0111282,HCLQRZmD1EE,\"Giza, 1928: On an archeological dig headed by Professor Langford, the Stargate is discovered.\"\ntt0111282,r4vQbzdjQW8,Jack and his crew chase down Jackson who has been taken for a ride by an alien creature.\ntt0111282,tmZiGfLVs8w,Ra tells Jackson that he will destroy Earth.\ntt0111282,_q36_9BaH4g,O'Neil and Jackson infiltrate the pyramid in disguise and attack the Horus guards.\ntt0111282,7ALP_3eWKZg,\"Deciding to stay behind with Sha'uri, Jackson says goodbye to O'Neil and the soldiers before they return home.\"\ntt0111282,Z-hoEoga8no,\"When Jackson and O'Neil are taken to see Ra, O'Neil's secret intentions are revealed.\"\ntt0111282,xTebNVZEvT4,The soldiers are ambushed and quickly dispatched by the Horus guards.\ntt0120841,AgsxHmawNqU,The alien DNA creeps up to the unsuspecting astronauts and infects them.\ntt0120841,TiSGxWluH-g,\"Patrick's father apologizes for not listening to his son, but it is a little too late.\"\ntt0120841,9lCBRKyCsVg,Eve escapes from her detention facility using creativity and power.\ntt0120841,OaZa0tw3Fuw,Eve uses her psychic powers to help Press find Patrick.\ntt0120841,FcfsKx3pADI,Eve senses Patrick nearby and experiences intense sexual desire.\ntt0120841,VeghLYlAYxo,\"While performing an autopsy on Anne Sampas, Dr. Baker has an unpleasant surprise.\"\ntt0120841,vxTyxT5z0hs,\"Patrick kills himself, but the alien DNA has other plans for him.\"\ntt0120841,yOItNhVYC3I,Dr. Orinsky drops a flask of infected blood and is attacked by the alien.\ntt0120841,y03ITmppyMI,\"Anne Sampas makes love to her husband, but the alien DNA inside her erupts.\"\ntt0095444,I3LIwgA7Qpk,Dave and Mike rescue Debbie and run for their lives from the Killer Klowns.\ntt0095444,F5GWqOrzQ3g,Some harmless shadow puppetry at the bus stop turns harmful.\ntt0109831,A4iXXQr7tqw,\"After a one-night stand, Carrie plays a trick on Charles.\"\ntt0109831,mw3M1fIiegc,\"Standing in the rain, Charles asks Carrie to NOT marry him.\"\ntt0093409,uh677-ClXCY,Sgt. Murtaugh and Mr. Joshua have themselves a mexican standoff involving a grenade while Sgt. Riggs waits in the wings with a sniper rifle.\ntt0093409,-37Mhsak-XI,\"Missing his dead wife, Riggs contemplates suicide, but can't pull the trigger.\"\ntt0093409,cy2Xj8Pz2Tk,Sgt. Riggs and Sgt. Murtaugh are both tortured for information.\ntt0093409,3aSdLAndoJU,Riggs impresses Murtaugh at the shooting range.\ntt0093409,F12X8zh4aCE,Riggs goes mano-a-mano with Mr. Joshua.\ntt0093409,aKojFoPzQoQ,\"Riggs and Murtaugh try not to harm a drug dealer, but the situation ends badly.\"\ntt0093409,cBHvRuBtJqI,Murtaugh confronts Riggs about his suicidal tendencies.\ntt0093409,1v38MMDYEMw,Riggs handcuffs himself to a suicide jumper and then jumps!\ntt0093409,7dw45dGMGNY,Riggs busts some drug dealers at a Christmas tree lot.\ntt0093409,vcxEgyiu16Q,\"Sgt. Murtaugh meets Martin Riggs, his new partner, over a judo toss.\"\ntt0078872,bdYiJgwzumg,Alec finally mounts the black stallion and learns to ride him.\ntt0078872,01RWw-3AKaE,\"During the race, Alec remembers riding the stallion on the beach and the horse passes the competition.\"\ntt0078872,0O5CcvLk-uE,Alec takes the black stallion out for the first time and almost loses control.\ntt0078872,i6klSHVWbrk,\"Alec falls off the sinking ship, but is then saved by the black stallion.\"\ntt0078872,8TM2yB381fc,Alec watches as a group of men try to tame the wild stallion.\ntt0078872,amtxyPO7At8,The black stallion is entangled in ropes and Alec cuts him free.\ntt0078872,SDW2CT5neyM,Alec and the black stallion bond while they frolic along the beach.\ntt0078872,7GRQKoapDIU,\"Alec tries to reclaim his stallion, but can't do it without a fight first from Henry who spent all night bringing him in.\"\ntt0078872,Cty2dqTZSTY,Alec is saved from a poisonous snake by the black stallion.\ntt0078872,KnzWMPHQ7Nk,Chaos erupts as the boat is consumed with fire and begins to sink. Alec hears the cries of the stallion and goes to him.\ntt0078872,IZcMgDET-fY,Alec is in trouble when he's caught sneaking sugar cubes to the stallion.\ntt0095444,PC4wbTAa5SI,\"The Klowns take their evil parade through town, collecting bodies.\"\ntt0095444,KTHJmfCHWc4,A teenager watches a deadly puppet show put on by an alien Klown.\ntt0095444,plUXguATsTQ,\"After discovering a cotton candy cocoon facility, Mike and Debbie run for their lives from the Killer Klowns.\"\ntt0095444,dIw0nCJpAqE,Farmer Green has an unfortunate encounter one night when he runs into the alien Klowns.\ntt0095444,gLD9INIOo00,\"The group of friends discover something scarier than alien Klowns, a giant monster alien Klown.\"\ntt0095444,d9ykU9FkH-g,Debbie is trapped by Klowns of all shapes and sizes.\ntt0095444,M7Ot2vswJLE,A security guard meets the business end of a cream pie when he comes face to face with the Klowns.\ntt0095444,kLovCSv9-Ks,A Klown plays ventriloquist with Mooney's corpse. Dave finally defeats it by shooting its nose.\ntt0095444,hFoLv3bTLSc,A Klown strikes back at a bullying biker.\ntt0107616,PJ7W-dz1OvE,Benedick vows to remain a bachelor when Claudio expresses that he is in love.\ntt0107616,Dw_6CTZVb7c,\"Claudio publicly accuses Hero of unfaithfulness and impureness, despite her convincing otherwise.\"\ntt0107616,YkjS7wTVKB4,Benedick and Beatrice publicly exchange mutual barbs.\ntt0107616,_z3Pfq49wYA,\"Benedick professes his love for Beatrice, but she asks him for a difficult favor.\"\ntt0107616,zmaZsAPGd5U,Beatrice decides that she will love Benedick while he dances in a fountain nearby.\ntt0107616,J2gKEelDYpI,Don Pedro and Leonato trick Benedick into thinking Beatrice loves him.\ntt0107616,jOAHxkUMseY,\"Despite warnings about her temperament, and his own reservations, Benedick is joyful about Beatrice's love for him.\"\ntt0107616,_-D3PfhuF5o,Dogberry conducts an unusual examination.\ntt0107616,tXSER8y44do,Benedick reveals a lengthy list of attributes that his perfect woman would possess.\ntt0107616,4xcUJXRCRWI,Beatrice and Benedick are outed by their friends with love letters and make their love public.\ntt0107616,sdNtnZbJBRw,Dogberry instructs his men on the duties of the night watch.\ntt0100054,INE0g4kvXLc,\"The Hunters leave a gift for the \"\"monster.\"\"\"\ntt0100054,TabNBDP679U,Jack and his hunters raid Ralph's camp and steal the knife.\ntt0100054,wB-4zgJ2LLs,\"Roger and his team play an angry game of role play, and mock Piggy and Ralph.\"\ntt0100054,0B0YWUYWHS8,\"After their plane crashes into the ocean, the boys struggle to find the life raft.\"\ntt0100054,2aiVI2zBW3g,\"Simon is mistaken for the monster, and killed.\"\ntt0100054,rZsQJGk__DQ,Ralph starts a fire using Piggy's glasses.\ntt0100054,ipkF3xkP63M,Ralph leads the boys in a discussion about how they should set up camp.\ntt0100054,Y1vBIQiyh80,Ralph calls an assembly on general misconduct and Jack undermines his authority.\ntt0100054,0MHIzgCZcxc,\"When Ralph blames Jack for letting the fire go out, Jack declares that he's starting a new camp for hunters.\"\ntt0100054,TQCgzi4j3eM,\"Just as Piggy begins to gives a speech about working together, Roger kills him with a boulder.\"\ntt0100054,LIIz82ZUCQY,\"Ralph runs for his life as Jack and the others hunt him down, but is saved when he runs into a marine officer.\"\ntt0333780,0XesK2hB_Wk,Elle and Stanford discover that their dogs are gay.\ntt0333780,7ppcbkjmuk4,\"In a moment of disillusionment with Washington politics, Elle visits the Lincoln Memorial to look for inspiration.\"\ntt0333780,zXmrYueNCC8,Elle meets the office staff in Washington D.C. including Rep. Victoria Rudd.\ntt0333780,OViadirUIp8,Elle tries to smooth over an office argument by using a snap cup in which you dole out compliments to your fellow co-workers.\ntt0333780,_tBJcD9jxvE,\"Elle realizes that instead of fighting the fabric, she has to change it.\"\ntt0333780,uSO45koeLhk,Elle presents Bruiser's Bill to Chairman Stanford Marks and wins him over.\ntt0333780,uXsQ8IIi6YI,Elle and Bruiser find Bruiser's mom at a testing facility.\ntt0333780,P04IYEOIr38,Elle talks about the importance of speaking up and using your voice. Bruiser's Bill is passed.\ntt0333780,k8Do9tamQSM,Elle and Congresswoman Hauser bond when they find out they are both Delta Nu.\ntt0333780,uZ0YGah7MsE,Detective Finchley has found Bruiser's mom and gives Elle the file with all of her information.\ntt0333780,G4lzPC22k8A,Elle's friends surprise her for her birthday. They catch up about her fiance Emmett and work.\ntt0212985,tgg-Fay2zzs,Hannibal Lecter kills Inspector Pazzi.\ntt0212985,ih_V1Ns2UFg,\"Hannibal and Clarice escape the hungary boars, Mason Verger on the other hand, isn't so lucky.\"\ntt0212985,_Zfqh2OxGFg,Clarice meets with Mason Verger to talk about his involvement with Hannibal Lecter.\ntt0212985,Q-bDppEz23c,\"Mason tells Clarice about the time he had Hannibal over, cut off his own face, and fed it to the dog.\"\ntt0212985,-T0PH7Wv3eo,\"Hannibal engages Inspector Pazzi, then drugs him just after announcing that he plans to eat his wife.\"\ntt0212985,KEoQM4Q-FFY,Clarice thoughtfully studies a security camera video of Hannibal biting a nurse's face off.\ntt0212985,IhJbjhlRPSk,Clarice tracks Hannibal through a public place while on the phone with him.\ntt0212985,YWDTyG3z3VA,Hannibal cuts the top of Paul's head off and feeds him his own brains.\ntt0212985,PuCu1XUGntA,\"When Clarice handcuffs herself to Hannibal, he is forced to cut her.\"\ntt0212985,wwQev_zC0y0,\"When a curious little boy investigates Hannibal's food on an airplane, Hannibal gives him a taste of some brain.\"\ntt0085862,0P4h2-R9Rak,McQuade slaughters many men and rescues Kayo from captivity.\ntt0085862,7enE0xOxDQ8,Kayo watches McQuade practice with various guns.\ntt0085862,pIPr7nbUCAw,Kayo receives on-the-job training when McQuade decides to pay a local snitch a visit.\ntt0085862,Ki6bBFE0o88,McQuade struggles to be the lethal man he once was before his injuries.\ntt0085862,Ah8ALKwclVk,McQuade and his crew launch an assault on Rawley's headquarters in the desert.\ntt0085862,NTJXKGOgN-k,A quarrel erupts and McQuade shares a few short words with Rawley Wilkes.\ntt0085862,ZBRK8rVHVW0,McQuade has to save Snow's life after chasing him down on a deadly escapade.\ntt0085862,pfLTbzU0FXo,\"Buried and left for dead, McQuade cracks a beer over his head and escapes like a real man.\"\ntt0085862,FstG27JuaRg,\"Lola steps into the line of fire to save McQuade, but McQuade finishes Rawley with a grenade.\"\ntt0085862,hfNvGT9X-7Q,McQuade and Rawley face each other in hand-to-hand combat.\ntt0085862,JgqoFj8yVqg,\"McQuade shakes down Falcon, but comes up a little \"\"short.\"\"\"\ntt0085862,NSOB8nt1Uc8,Rawley avoids getting double-crossed when his precautionary measures get called into action.\ntt0092675,hKr4-rNmLFo,Frank and Chong Li square off In the final match of the Kumite. Frank has the upper hand until Chong throws quicklime into Frank's eyes.\ntt0092675,Z6vsW2RH8kA,Frank's training of mental and physical discipline to ignore pain continues with Tanaka as his mentor.\ntt0092675,bT6NizTtXug,\"During the final match, after being blinded with quicklime, Frank makes an incredible comeback to overcome his visual handicap to defeat Chong Li, and forces him to yell out \"\"matte.\"\"\"\ntt0092675,ijrCSknWjeI,\"During the Kumite, Frank takes on and defeats the Muay Thai kickboxer Paco while Janice cheers him on.\"\ntt0092675,wNibi-NWW4o,\"To prove he is part of the Tanaka clan, Frank performs the \"\"Dim Mak\"\" otherwise known as the 'death touch' in which he breaks a brick with his bare hand. His perfection of this move grants him an invitation into the Kumite tournament.\"\ntt0092675,fsUKVpvzMHk,Frank remembers back to meeting his master Tanaka and fighting off school bullies.\ntt0092675,hLbozjgBIE0,\"After Shingo's death, and despite some initial resistance, Tanaka agrees to train Frank as a member of the Tanaka clan.\"\ntt0092675,-yG7Wp5-8EI,Frank learns the way of martial arts from his mentor Tanaka during the course of a training montage.\ntt0092675,2kymD_HxRfA,Frank uses a quarter trick to settle a dispute with Hossein over the affection of Janice.\ntt0103074,_p0nSJeyRcw,\"A smitten Thelma asks Louise to give J.D. a ride, but she says no.\"\ntt0103074,SXbUNuTQJds,Thelma tells Louise that there is no going back for her.\ntt0103074,SwITnQv183g,Thelma fools around with J.D. and gets a lesson on robbery.\ntt0103074,EQOuGXTYAj8,\"Louise opens up a little when Hal Slocumb tries to convince to her that he's on their side, but Thelma cuts the conversation short.\"\ntt0103074,GeqKdTZugxs,Thelma makes a nerve-wracking call to Darryl and finally stands up to him.\ntt0103074,-dUYR2apxdA,\"Thelma and Louise hold hands and drive their car off the cliff, leaving their lives and the police behind in the dust.\"\ntt0103074,10r3vyu-zDM,Thelma talks about her husband with J.D. and Louise gets nervous when they see a cop.\ntt0103074,WnZWACO4OOc,Thelma finds out she has a knack for robbery when she and Louise politely rob a state trooper.\ntt0103074,0Dc0Oj08S7M,\"Louise asks Thelma to reevaluate their situation and reveals her plan to \"\"haul ass\"\" to Mexico.\"\ntt0103074,0JDyXQvCsOM,Thelma robs a store using what J.D. taught her in order to get her and Louise back on their feet.\ntt0103074,cAIHoTstrTg,Thelma and Louise make a truck driver very sorry for his lewd behavior by blowing up his truck.\ntt0032904,gXRw45jyIsE,Dexter tells Tracy the honest truth about what he doesn't like about her.\ntt0032904,htCHOTJBiSc,Tipsy Tracy and Mike get to know each other.\ntt0032904,I-RrVLbC-q4,Dexter and Tracy remember the ship they used to sail.\ntt0032904,NxSdB2L-Ffk,Tracy is frustrated that her fianc puts her on a pedestal.\ntt0032904,WCl3EnHnm_c,Mike declares his attraction to Tracy.\ntt0032904,sWKTV0ScR9k,Mike attempts to get Dexter to admit that he still loves Tracy.\ntt0032904,fpE3kI1HOWQ,\"Tracy breaks off her engagement, with a little help from Mike and Dexter.\"\ntt0032904,-Ot948zIr0s,Dexter tells Mr. Connor more than he wants to know about his ex-wife Tracy.\ntt0032904,cNW7dRdPPC8,\"George is appalled to find Mike emerging from the pool, with an inebriated Tracy in his arms.\"\ntt0032904,f-vA6GMMKgQ,\"Tracy goes through with the wedding, but to her former husband Dexter.\"\ntt0379725,6hiEMyCIoQ0,When Truman visits Perry and Dick before their execution he is overcome with emotion.\ntt0379725,WmOiz8rBlmw,Nelle tries to connect to a drunken Truman at the bar after a screening.\ntt0379725,hAiiaFAJ1mY,Perry recounts for Truman the emotions he felt during the violent murder of a Kansas family.\ntt0379725,oLPTh_DaPa8,Laura lends Truman her diary as research.\ntt0379725,H8ToqWfFevw,Nelle calls Truman's bluff when he secretly pays a porter to give him a compliment in front of her.\ntt0379725,m-OaVzrf_vc,Truman is frustrated and leaves when Perry still won't talk about the murder.\ntt0379725,zXroRe--2QM,Truman talks about his experience overseas with celebrities and his mother's death.\ntt0379725,AFMFZiFr458,Truman asks Perry for his notebooks so he can understand him better and inform the public.\ntt0379725,fFUR02kaGTQ,Truman talks with Nelle about his relationship with Perry.\ntt0379725,5AJvo1pc3sw,\"Perry is angry about the title of Truman's book, and they discuss their friendship.\"\ntt0379725,QDdroG4R9hE,Truman bribes the Warden with an envelope of cash so he can have unlimited access to Perry and Ricardo.\ntt0080745,aaGlVyyFOl0,Dale and Princess Aura engage in a pillow fight but soon learn that they need to work together.\ntt0080745,Y--MuIgwfQ4,Flash convinces Princess Aura to teach him to use the thought amplifier to contact Dale telepathically.\ntt0080745,ILLkD7hTxms,\"After landing on planet Mongo, Flash, Dale and Dr. Zarkov are captured by armed guards.\"\ntt0080745,qjFCVTpsIps,Flash uses his football moves to put up a fight as they prepare to take Dale away.\ntt0080745,x0Ev2qiY08M,Princess Aura is whipped by Kala for information regarding the whereabouts of Flash Gordon.\ntt0080745,80sCD2p0W1Q,Prince Barin challenges Flash to a deadly ritual involving a hollow stump with a poisonous creature inside.\ntt0080745,Y6B9nkrSuMI,Flash leads Vultan and the Hawkmen into battle against the war rocket Ajax.\ntt0080745,RxFBi3z1i3k,\"Ming gives Flash the option to rule over Earth as a slave colony, but when he refuses, Ming destroys Sky City.\"\ntt0080745,1Oq6vztcjgg,\"Flash is forced to fight Prince Barin to the death, but Flash decides to spare his life.\"\ntt0080745,UfeogSVgTsU,\"Flash crash lands the war rocket Ajax, interrupting the wedding ceremony of Ming and Dale.\"\ntt0116778,AClQyr2koxc,Ernie bowls three consecutive strikes to win the million-dollar tournament and Roy is left empty-handed.\ntt0098627,WvITkVaOpUs,Larry and Richard watch as party-goers are oblivious to the fact that Bernie is dead.\ntt0116778,Ta2vBD-qOwk,Ishmael freaks out when he wakes up after partying all night and discovers that he's desecrated his body with a tattoo.\ntt0050083,H-xjMjmrdl0,Juror #8 reprimands two disengaged jurors who are busy playing Tic Tac Toe.\ntt0098627,W0ThLQIEwxk,Richard tries to explain to Gwen that Bernie is dead and she is in a lot of danger.\ntt0098627,2kDPrNRTuQE,\"Larry and Richard try to drive a boat, but get into more trouble.\"\ntt0098627,I0jSE4K2jH8,Richard gets an unexpected visit from Bernie while making out with a girl on the beach.\ntt0098627,n3Ubm7iCzuA,Richard and Larry lose Bernie and get harassed by a little kid.\ntt0098627,jzzrFFivBKk,Larry and Richard are oblivious when Bernie falls out of the boat.\ntt0098627,c5aNkzn_8Bc,Larry and Richard are shocked when Tina returns satisfied after making love to Bernie.\ntt0098627,CkN1FvtBg2k,Richard tells Gwen that his half-naked dad is actually his butler.\ntt0098627,gUuOvBQoaHA,Larry is irritated when he and Richard realize that Bernie is dead.\ntt0098627,xd1f5GeUWpg,Larry and Richard panic as they try to sneak Bernie upstairs during a busy party.\ntt0116778,gPlxDB94t80,\"When Roy tries to ditch Claudia, they get into a no-holds-barred brawl.\"\ntt0116778,eRI0kASoaqI,\"Encouraged by Ernie, Roy hustles a bowling priest.\"\ntt0116778,20IyieiS-TE,Roy has nauseating sex with his landlady to settle his debt.\ntt0116778,E4sgImaJTlA,\"Living with the Amish, Roy finds out that milking cows can be brutal.\"\ntt0116778,mt5IvL1Uw7g,\"Roy comes face to face with his old nemesis, Ernie, who nearly baits Ishmael into a fight.\"\ntt0116778,P8zlYvk98gE,Roy's rubber hand lodges in the ball and goes hurtling down the lane.\ntt0116778,KTpzQ8vWHTo,Ishmael tries to convince Roy that he can figure some things out for himself.\ntt0116778,0R_0E-YNBrY,Roy sees Ernie groping single moms in a TV commercial for a charity.\ntt0116778,M7V-9UG5Pn0,Roy gives an honest answer to a TV interviewer.\ntt0116778,9j4v32pp0m4,\"Roy and Ishmael arrive at the big bowling tournament, but run into financial trouble.\"\ntt0245574,bnHKWNBCKQk,\"Tenoch is chatting with his cousin Jano about writing, when Julio deliberately spills wine.\"\ntt0245574,gYMmTK1rFvA,Tenoch and Julio try to convince Luisa to join them at the beach.\ntt0245574,WKDoWddM0vg,Luisa leaves the boys when she gets fed up with their immaturity.\ntt0245574,QXUXlzzOl44,The boys confess that they slept with each other's girlfriends and Julio admits that he had sex with Tenoch's mom.\ntt0245574,twPFRVuWNjo,\"Agreeing to get back in the car, Luisa lays out her manifesto to the boys.\"\ntt0245574,Zypt5adu71Q,Luisa dives into the blue waters having dispensed wisdom to the boys returning home.\ntt0245574,ZptjN0wzIdA,Luisa gives the boys some tips on how to be better lovers.\ntt0245574,CsZmsu_-53E,Tenoch and Julio return to the campground on the beach to find that wild pigs have rendered it uninhabitable.\ntt0245574,hHsWQA500NU,\"Tenoch, Julio and Luisa find the famed Heaven's Mouth beach with the help of a fisherman and his family.\"\ntt0245574,XcFFaRpPdzs,Tenoch's anger escalates on hearing the details of Julio sleeping with his girlfriend.\ntt0245574,jaIVHdFwqnQ,A drunk Jano informs Luisa that he's cheated on her.\ntt0245574,GAsqObV4ExM,Chuy gets excited as he plays soccer as a famous goalie.\ntt0070849,OFPi1vG6A90,\"Searching for a new apartment, Jeanne is surprised to find Paul sitting in the dark.\"\ntt0070849,fAenzYV3Cmc,Paul sweeps Jeanne off her feet and makes love to her against the wall.\ntt0070849,kTsFXQ2Y_dI,Paul convinces Jeanne that they should refrain from learning each other's names while they are having an affair.\ntt0070849,QY3RIezZPks,Paul and Jeanne invent names for each other using guttural animal sounds.\ntt0070849,DIt0_zQY00w,Paul reminisces about his childhood and struggles to recall any happy memories.\ntt0070849,h-r9Q-YItnk,Jeanne enters the apartment to find Paul making a strange request.\ntt0070849,-n4RtjEtFUE,Paul addresses his dead wife's body and contemplates the impossibility of truly knowing her.\ntt0070849,HTa0oe5Ntvw,\"When Jeanne finds a rat in the bed and panics, Paul pretends to eat it.\"\ntt0070849,891M2sACu0U,\"Paul tells Jeanne that he loves her, and she responds by shooting him.\"\ntt0070849,dQGlAzHgPw8,Paul and Jeanne get drunk and interrupt a tango competition.\ntt0050083,TXlHKTPfLVA,\"Juror #10 goes off on a racist rant, showing his true colors and turning off the rest of the jurors who turn their backs in disgust.\"\ntt0050083,5s8dYeDZPAE,Juror #11 explains to the others why he feels jury duty is their sworn responsibility.\ntt0050083,RGF6Qyvz2no,\"Juror #4 changes his vote when Juror #9 convinces him that one of the witnesses wore eyeglasses, and most likely did not wear them while she was in bed, during the time of the murder.\"\ntt0050083,46kWbFAMHoc,Nature versus Nurture is discussed before Juror #3 reveals his abusive relationship with his estranged son.\ntt0050083,EqDd06GW76o,\"When one juror changes his vote during the secret ballot, Juror #3 is hell-bent on finding out who it was.\"\ntt0050083,TUzp2XUhskY,\"Juror #8 debunks the \"\"one knife theory\"\" by revealing that he has one just like it.\"\ntt0050083,1fsFQ2gF4oE,Juror 8 does a re-enactment of the old man's story which leads to a showdown with Juror 3 and a dramatic revelation.\ntt0050083,0jxVnlRdelU,\"Faced with his own short-comings and failures as a father to his own son, Juror #3 finally breaks down and pronounces \"\"Not Guilty.\"\"\"\ntt0050083,U44_sEUJROI,\"Jurors #3, #5 and #11 debate how the Defendant might have used the switchblade by demonstrating on Juror #8.\"\ntt0424345,Ur3JKxaUvUc,\"When Dante and Emma make out in the restaurant, Randal can't help but comment on Emma's oversized sexual organ.\"\ntt0424345,fYKLuSKW4ao,Jay and Silent Bob philosophize and sell a nickel bag to some brand new customers.\ntt0424345,ZtrhzVGMWZc,Randal can't understand Elias's excitement over the news that Transformers is being made into a live action movie.\ntt0424345,H8zCwVOT1U4,\"Dante is horrified to learn that Randal has participated in ass to mouth play. Meanwhile, Becky privately informs Dante that in the heat of the moment she'll occasionally dabble in ass to mouth play.\"\ntt0424345,SX9tVVvLb2I,\"Dante and Randal get a visit from an old high school classmate, Lance Dowds.\"\ntt0424345,HKDxpkV14IA,\"Randal is shocked to learn the reason why Elias has remained a virgin. Specifically, a troll named Pillow Pants lives in the vagina of Elias's girlfriend.\"\ntt0424345,IYITxGniww4,\"Randal sparks off a debate over racial slurs when he uses the term \"\"porch monkey\"\" in front of a customer.\"\ntt0424345,RPl5MeXIM8E,Randal argues with Elias and a Hobbit Lover over the merits of Star Wars versus the Lord of the Rings\ntt0095560,KI-GzP94V8o,The alien family gets sucked into a NASA spaceship and taken away from their home planet.\ntt0095560,DDueSsFUqc4,\"During a malfunction in the laboratory, the alien family manages to escape.\"\ntt0095560,SXeVjXg9BFU,Mac saves Eric from drowning after a wheelchair malfunction.\ntt0095560,UB8wk3MOgVU,Mac escapes from the laboratory and causes a pileup on the highway.\ntt0095560,c_GNsQnPdi4,Mac tries to evade the neighborhood dogs by driving a mini truck.\ntt0095560,tPgRnFg8ZTU,Mac has a great time dancing at the McDonald's until the authorities come looking for him.\ntt0095560,xuVz2BPLRBY,Eric escapes with Mac on his lap while the police chase after him.\ntt0095560,PhKy0fGOJz0,Eric and Debbie capture the alien with some Coca Cola and a vacuum.\ntt0095560,DXdQoyWxHZs,Eric comes up with a creative way to hide the alien.\ntt0095560,g0yYxO89lQA,\"Eric tries to talk to the aliens, but when the police fire at them, a giant explosion erupts and Eric becomes the victim.\"\ntt0095560,lPE1uBdcB8Y,Mac's and Eric's families join forces to bring Eric back to life.\ntt0087803,XvGmOZ5T6_Y,\"During the morning's 'Two Minute Hate', Winston Smith notices the especially emphatic Julia.\"\ntt0097499,bvFHRNGYfuo,Henry V gives an inspirational speech to his men as they go forth into battle on St. Crispin's Day.\ntt0097499,rv7NsGCDVDs,Henry V travels through the camp in disguise and converses with men who speak critically of the king.\ntt0097499,mNVB-qi0qyY,Henry V responds with bridled rage to Dauphin's insult.\ntt0097499,F0uwp_eoMW4,Henry V answers Mountjoy's offer with bravery and defiance and wishes his men strength as they go into battle.\ntt0097499,eqC9wr776KM,Henry V is filled with rage upon seeing the young pages murdered.\ntt0097499,HS7OG9zcV-M,Chorus delivers the play's prologue.\ntt0097499,-nFHhXrXWzY,A joyous greeting between Falstaff and Henry V ends on a solemn note as the two part ways.\ntt0097499,vIwfwyjbP4g,Henry V reveals his knowledge of his subject's treachery.\ntt0097499,ynwah7YV2LY,\"Henry V makes a humble proposal to a nervous, yet joyous Katherine.\"\ntt0097499,urpXO9VLU0U,\"In dire times of battle, Henry V musters the strength to inspire his men once again to continue on.\"\ntt0087803,2BuU0LMgxl0,Winston and Julia have an intimate meeting in the forest.\ntt0087803,jmmawolzwCs,Julia shows Winston her hidden provisions.\ntt0087803,pX0LbjUM5Uo,Winston and Julia are caught for thought crimes.\ntt0087803,UmAVyowgDVE,\"O'Brien describes the vicious behavior of lab rats to Winston, who gets a cage-eyed view.\"\ntt0087803,RyR51MqOl5I,\"A despondent Parsons talks to his new cellmate Winston, and wonders what will become of him.\"\ntt0087803,cAKtpCo8fPE,O'Brien questions Winston under the duress of a torture device.\ntt0087803,c0wH6YDfCzg,Winston learns about war and control from Emmanuel Goldstein's book.\ntt0087803,v79foBIrar4,O'Brien explains Winston's mortality.\ntt0087803,PoLLgzdPkss,O'Brien explains the party rules to Winston.\ntt0087803,0A0VANPUG-g,\"O'Brien educates Winston about The Ministry of Love, a place he was brought to in order to become \"\"sane.\"\"\"\ntt0090142,i-9K5-x7_so,Scott goes through a wild metamorphosis in his bathroom.\ntt0090142,d4Ljj8W1hE8,Scott shows Stiles his alter ego.\ntt0090142,_6FnlEiyZ08,\"Scott, fearing he may soon change to his wolf form, abruptly leaves the classroom to find an empty bathroom.\"\ntt0090142,QBghpl5FZXk,\"When Scott arrives at the dance with Lisa, Mick confronts him over Pamela.\"\ntt0090142,LeVEbbheUck,Stiles shows Scott the new 'Wolfmobile' and the two decide to show it and the wolf off around town.\ntt0090142,YZ11hDE35QQ,\"Pamela and Scott chew up some scenery as they rehearse for the school play. Back in the dressing room, Pamela seduces Scott.\"\ntt0090142,kiEe33aAucU,The coach defends his team; Scott gets aggressive on the court.\ntt0090142,hWRJQvuhs9w,\"In a scrap for the ball, Scott turns wolf and pulls off an impressive slam dunk.\"\ntt0090142,Gt5xBpmHS5Q,\"When a liquor clerk insults him, Scott lets his inner wolf do the talking.\"\ntt0090142,fiqJGHbv3ys,\"When Scott cozies up to Pamela at the bowling alley, Mick confronts him.\"\ntt0040724,E-bYTMU6Dks,\"When Dunson decides to hang two deserters, Matt and the rest of the men rebel against him and take over the cattle drive.\"\ntt0040724,Wjc5NqqF-1o,\"Thomas warns Matt that he'll catch up, and when he does he'll kill him.\"\ntt0040724,XBPrLU4Zspo,Dunson claims the land from Diego by killing Fernandez.\ntt0040724,ww_lUn3jUoA,Young Matt meets Dunson and Groot after surviving an Indian attack.\ntt0040724,zBe5T01yBUI,Matt and Cherry try out each other's guns.\ntt0053291,I0EUKDhQ7vk,Joe poses as a millionaire to win over Sugar.\ntt0040724,BwnOv84Uaf4,\"Dunson and Matt finally face off and beat the hell out of each other, at least until Tess steps in with a gun.\"\ntt0040724,1_BNy6W4sRg,Matt and his men help a wagon train fight off an Indian attack.\ntt0040724,AabFChK-X1w,Groot enunciates his desire to ride the chuck wagon.\ntt0040724,enLijb7P9tg,Matt and Tess become romantic.\ntt0040724,aN0alpNLQak,\"Bunk, while stealing some sugar, accidently starts a stampede that Dunson and Matt rush to stop before lives and cattle are lost.\"\ntt0040724,7s91-5542Zg,\"After Bunk starts a stampede, Dunson aims to make an example out of him.\"\ntt0053291,FBi8SGpLTGI,Josephine is pleasantly surprised to learn that Sugar has a thing for saxophone players.\ntt0053291,1wP9Mu1NKXk,\"When Joe and Jerry hear about two openings in a female band, they do exactly what they need to do\"\ntt0053291,qdq07pa6sPA,\"Daphne is a little irritated when \"\"Junior\"\" shows up and steals Sugar Kane's attention.\"\ntt0053291,xq1QFVrNxfk,Daphne's party for two with Sugar is spoiled when all of the other girls join in the party fun.\ntt0053291,UgjzHp4TVtk,When Daphne and Josephine meet a drunk Sugar they realize being in a female band isn't so bad.\ntt0053291,h55rTtbCy7o,\"When Jerry gets pinched in the elevator he tells Joe that he wants to leave immediately, but Joe convinces him otherwise.\"\ntt0053291,8-n-ybKQ_X0,\"When Daphne is on top of the world about her recent engagement, Joe has to step in and remind her that she's a boy.\"\ntt0053291,spAkj5YYnIo,Sugar hops into bed with Daphne and Daphne does everything she can to remember she's a girl.\ntt0053291,yD3r8xx3iX8,\"\"\"Junior\"\" tricks Sugar into seducing him with a story about how he can't get excited by women anymore; meanwhile, \"\"Daphne\"\" keeps Osgood busy on the dance floor.\"\ntt0053291,-mHhr-aaLnI,\"The happy couples, Joe and Sugar and Jerry and Osgood, speed off together in Osgood's boat.\"\ntt0109831,TVjIzlCjKcQ,The wedding guests search for replacements during the ceremony when Charles forgets the rings.\ntt0109831,GSwNuK9xedg,\"After Charles gets Carrie to invite him into her room, she shows him how they kiss where she is from.\"\ntt0109831,eeXePDLKsmU,Charles listens in shock as Carrie lists her past lovers with descriptions of each.\ntt0109831,xn3J0iYO7sw,\"Unable to find the words himself, Matthew recites a poem by W.H. Auden to express his sorrow over the loss of his lover.\"\ntt0109831,XrZN8Sy-z6M,Best man Charles toasts Angus and Laura at the first wedding.\ntt0109831,ZYzQFudZ70k,Father Gerald ruins Lydia and Bernard's wedding vows.\ntt0109831,MBIIKCaK5PM,David objects during Charles' wedding and has him translate a shocking message to the group and the bride.\ntt0109831,tvy0nfXbStY,Charles is horrified while Henrietta cries about their past relationship and the way she wishes things would have gone.\ntt0109831,8Ut9pZyyS44,David meets Carrie for the first time and secretly talks about her while signing with Charles.\ntt0109831,Ogl0mA_15ys,Charles flubs his words while nervously trying to express his love for Carrie.\ntt0114814,3OLIgEua4PU,Verbal tells Kujan a story about the vicious Keyser Soze.\ntt0114814,BQpfa9RZbTk,\"When the puzzle finally becomes clear, Kujan realizes that Keyser Soze has slipped through his grasp.\"\ntt0114814,aU3KvhyJk-w,\"Kujan explains that Keaton was Keyser Soze, but Verbal doesn't buy it.\"\ntt0114814,Zh1yLx3srtQ,\"Keaton, McManus and Hockney attack the drug traffickers at the pier.\"\ntt0114814,GIa5OfDBSBE,\"Keaton can't pull the trigger when a guy won't give up the case, so Verbal has to do it for him.\"\ntt0114814,Dp5YwZCGpm0,\"Each of the \"\"usual suspects\"\" gives their unique take on the dialogue provided at the police lineup.\"\ntt0114814,keth0g3CMK4,\"Agent Kujan promises \"\"Verbal\"\" Kint that he will get what he wants out of him because he's smarter.\"\ntt0114814,eUL9XgE3G4k,The suspects get to know each other while stewing in jail.\ntt0114814,dxNL9-YlUk0,The suspects teach a hard lesson to the dirty cops in the NYPD.\ntt0114814,MneFTo1gRq0,Kobayashi surprises the suspects with his knowledge of their activities and a new offer.\ntt0101587,IqX6z6djbD4,Mitch tells his son's class to enjoy their childhood because it's all downhill from here.\ntt0101587,PunAKEccqyU,\"Curly tells Mitch that the secret to life is \"\"one thing.\"\" What that one thing is, is up to you to figure out.\"\ntt0101587,rClviS6MMvk,\"After Mitch gets stuck in the butt by a bull in Pamplona, he has to fly home with a giant bump on his rump.\"\ntt0101587,IA0v8pCN8cQ,\"Just when Mitch was getting to know Curly better, he passes away, leaving the group to give him an impromptu memorial.\"\ntt0101587,2PPNVF1tT6o,\"When T.R. and Jeff instigate a quarrel, Phil steps in and puts them in their place.\"\ntt0101587,1j4ITRCTJL4,The city slickers bond when they reminisce about the best and worst days of their lives.\ntt0101587,PCXI31d3vlE,\"Mitch gossips to his fellow ranchers about crazy old Curly who, of course, is right behind him.\"\ntt0101587,1PwmcgK9qno,\"Mitch, Phil and Ed arrive at the ranch and get acquainted with the other guests.\"\ntt0101587,-CKzCdneg04,\"When Nancy surprises Phil with news that she's pregnant, Phil and Arlene fight, ruining the party.\"\ntt0101587,7s3dzArIVok,\"When Mitch stands up to T.R., Curly rides up and sets things straight.\"\ntt0101587,2ATYV1LOIH4,Mitch stands up to Curly and the two end up playing a campfire song together.\ntt0100157,2KOuM_aZ1-A,\"Paul convinces Annie to delay her planned murder-suicide in order to \"\"give Misery back to the world.\"\"\"\ntt0299117,xNGdLsWV0_k,Roger tries to help his nephew Nick have sex for the first time.\ntt0299117,TxouT-qgqwU,Roger explains his theory on the evolution of sex and natural selection.\ntt0299117,VhCQj6D3JQY,\"Roger discusses attraction, body image, and sexuality with Sophie and Andrea.\"\ntt0299117,FgrVh865bX8,Roger motivates Nick to be confident at picking up girls.\ntt0299117,kFsoiAa-ulY,Roger visits Nick's high school to give some advice on talking to girls.\ntt0299117,QwrGZWHTbt0,Roger regales his colleagues with his theories on eventual male obsolescence.\ntt0299117,Egb6g_c7Nek,Roger provides his nephew Nick with tricks and methods to check out women's bodies.\ntt0299117,9GQZ2hl5oQY,Roger tells a woman at a bar how obvious and transparent her life choices are.\ntt0299117,BHQdl3iBhkE,Sophie tells Nick the story of losing her virginity.\ntt0299117,eUELANo1Fic,Roger gets uncomfortable when Sophie and Andrea turn the tables to analyze him.\ntt0299117,Y3nUE1cWM8o,Nick says goodbye to Sophie and Andrea as they head home for the night.\ntt0264616,_v5zFIqjEZg,Fenton tells Agent Doyle that the God's Hand Killer is his brother.\ntt0264616,dyaqk3LFlBM,\"Fenton's dad captures his first demon, Cynthia Harbridge.\"\ntt0264616,CVdZXuc265w,Adam has a vision of Agent Doyle's murderous past.\ntt0264616,UeC962qKMrI,Adam explains to Agent Doyle how he killed his brother Fenton.\ntt0264616,6O9GrKXP46o,Fenton's dad prepares the demon for his son to destroy.\ntt0264616,dFxzdwS4yE8,Fenton explains to Agent Doyle the promise he made to his brother.\ntt0264616,FhtwCGpDs-0,Fenton leads Sheriff Smalls to the cellar to show him his father's victim.\ntt0264616,TRDdgGdGfbE,\"Despite his reluctance, Fenton helps his father with the second demon.\"\ntt0264616,R1k_1p3mitg,Fenton's dad reveals to his sons that he had a vision sent from God.\ntt0264616,1x4SX6FUEUo,An angel of God comes to Fenton's dad in a vision and gives him the first list of demons.\ntt0100157,Br5umHOm3TM,\"Annie demands that Paul start his novel over, lest he cheat his readers.\"\ntt1046163,ZzBJxdyktNQ,\"Ami advises Alexis to have as many one-night stands as possible, in order to find her eventual Prince Charming.\"\ntt1046163,UG215AsHyBg,Dustin quickly makes a bad impression on his date.\ntt1046163,km7CMB9s8ok,\"Tank takes Dustin to a salon to get ready for his big date, but he comes out looking worse than before he went in.\"\ntt1046163,vj3mnCSJq7E,Dustin crashes the wedding reception while exposing who Tank really is to Alexis and the guests.\ntt1046163,GkTXRgNHzug,Tank declines Alexis's seductive offer to go up stairs with her.\ntt1046163,4WfCOqrgbSk,Tank unknowingly speaks to an angry Alexis on the phone during a customer training session at work.\ntt1046163,QvKGF4DN9RE,Professor Turner gives his son Tank some questionable relationship advice.\ntt1046163,1VGOy2dylYE,Dustin gets mistaken for a gay pal when he spends some time together with Alexis.\ntt1046163,LwXuIb6j_e8,\"Dustin apologizes to Tank and convinces him to go after Alexis, while Tank's father attempts to help.\"\ntt1046163,PxsbL4Q0Lmk,Tank commits a series of embarrassing wedding faux-pas.\ntt1046163,GOjeFlHlPwU,Dustin finds out that his best friend Tank is hooking up with Alexis.\ntt0100157,4-8adc39DV0,Paul sets fire to his book and grapples with Annie.\ntt0100157,fmZhcaq6QV8,\"Annie introduces Paul to her favorite beast in the whole world: her sow, Misery.\"\ntt0100157,tURhk-5mDpE,\"Annie performs a \"\"hobbling\"\" operation on Paul to prevent him from leaving his room again.\"\ntt0100157,oZ51e9IJjjQ,The rain makes Annie melancholy and she admits she's afraid of losing Paul.\ntt0100157,ZkPfZTLecL8,\"When Paul requests smudge-proof paper, Annie flips out.\"\ntt0100157,SeOMiErBnks,\"Paul rushes back to his room, desperate to return before Annie discovers he's gone.\"\ntt0100157,gKRyD4CSjto,Annie forces Paul to set his manuscript on fire.\ntt0100157,HrRSo3a1ZYU,\"After learning that Paul intends to \"\"kill\"\" a beloved character in his book, Annie explodes.\"\ntt0100157,SyQSH3XmQCE,Annie strongly objects to the swearing in Paul's latest book.\ntt0100157,mGGwDmCTha8,\"Paul regains consciousness in the care of a fawning woman, Annie Wilkes.\"\ntt0151568,CFQKJOXdXJw,Lely objects to the short length of the costumes designed by Wilhelm at the behest of Gilbert.\ntt0151568,-fQs640Ehfw,\"Gilbert reluctantly visits the dentist, who fancies himself a theater critic.\"\ntt0151568,unrqBYYTZI0,Gilbert receives a jolt of inspiration when the katana sword he recently purchased at a Japanese exhibit falls from the wall.\ntt0151568,GuX7TUIGvRM,Gilbert tries to convince D'Auban that his choreography is inaccurate by bringing real Japanese women to rehearsal for The Mikado.\ntt0151568,glkk39pJQQI,\"Gilbert and Sullivan visit their nervous actors on the opening night of The Mikado, including Grossmith, who struggles to conceal his morphine addiction.\"\ntt0151568,QFzkyceRlW8,Temple is visibly disappointed when Gilbert decides to cut his solo number in The Mikado.\ntt0151568,90KNvOsvEiY,Gilbert and Barker struggle to communicate through a rudimentary telephone.\ntt0151568,T6Lor5hg5nI,Jessie is disappointed to learn from Madame Leon that corsets will not be incorporated into the costumes for The Mikado.\ntt0151568,0mtMkMvdwBw,Gilbert bristles at a dismissive review of his opera Princess Ida.\ntt0151568,ljGqb2loshQ,\"Jessie, Leonora and Sybil perforrm an aria from The Mikado.\"\ntt0092654,Lt-Suz8LGEM,\"While Det. McSwain tries to seduce Anne, his brother Bobby gets shot.\"\ntt0092654,ESvZ51pBN14,Det. McSwain tries to win back Anne at a Cajun BBQ.\ntt0092654,MH6W76ILmEQ,Anne tells Det. McSwain she wants their relationship to be strictly professional.\ntt0092654,ZxhqyHBujFc,Det. McSwain's lax treatment of a local gangster fires up District Attorney Anne Osborne.\ntt0092654,xfnmRVym22U,Det. McSwain and Anne talk about a murder case which leads into a much more personal and physical discussion.\ntt0092654,eVPIMety0MA,Det. McSwain confronts Jack Kellom about corruption in the police force.\ntt0092654,kNrid4Vvxkk,Det. McSwain finds out his police department is corrupt.\ntt0092654,b7fFwDI39Co,Lamar Parmentel fights Anne Osborne to free Det. Remy McSwain.\ntt0092654,G_tk-vS61to,Det. McSwain fights corrupt police officers Det. DeSoto and Ed Dodge.\ntt0092654,EgXDPt3eW3Q,Anne leaves Det. McSwain after they have dinner together only to run into two robbers.\ntt1081935,5KeGGAzEkNE,Cicco bites to fight and to earn a living.\ntt1081935,VP-S-KGKn1k,Nino takes Aunt Ciccina to vote.\ntt1081935,3w-MGV1cC78,Nino attempts to snag a meal by taunting a man gorging himself.\ntt1081935,cZcI8QATy2k,Peppino purses Mannina even though she is promised to another man.\ntt1081935,6cseBu1zBC4,\"Peppino and Mannina dance together for the first time, despite parental concerns.\"\ntt1081935,QhGtm2E07w0,Peppino throws a stone and manages to hit all three boulders in front of him.\ntt1081935,ls8-S57SGSQ,Both timelines intertwine as Peppino is able to see into the past.\ntt1081935,1ccZkqYIluU,\"Peppino informs a \"\"dying\"\" Nino that his election looks more than probable.\"\ntt1081935,DcETqjNSB4U,Peppino steals from a safe amongst a mob of looters.\ntt1081935,q5VokxxNaHw,\"A group of kids steal fruit from a man they call \"\"The Cripple.\"\"\"\ntt1081935,qkIEwsirwBU,The unemployed protest in the streets while the Mayor looks on.\ntt1403177,fq-wBS0z4NQ,\"When Hesher realizes that T.J. has a crush on Nicole, he teases the boy by blatantly encouraging him to have sex with her.\"\ntt1403177,kGK73er3UdE,\"Nicole saves T.J. from getting beat up by Dustin, and then gives him a ride back home.\"\ntt1403177,BnPQSD0Pg4E,\"Hesher helps Nicole out of a jam, then tells her a sordid story about how he had sex with four women at once.\"\ntt1403177,DKQXxsio-Gs,Paul explodes at T.J. when his son challenges his authority.\ntt1403177,xSc5s5MKarM,\"Hesher suddenly throws T.J. and Nicole into the swimming pool of some random resident, and then proceeds to populate the pool with debris and flames.\"\ntt1403177,yyrC-l87Sdc,Hesher crashes the funeral and delivers a bizarre speech about how losing one's testicle relates to losing a loved one.\ntt1403177,BctOA1EbnPg,Hesher chastizes T.J. for not going on morning walks with his grandmother.\ntt1403177,1V-vD4bHKR4,\"When T.J. sees Hesher having sex with Nicole, he retaliates by bashing up Hesher's van.\"\ntt1403177,qYwrQOJ2eAE,Hesher takes T.J. with him as he burns Dustin's car.\ntt1277737,5CuKjYdDd50,\"Ali gets the first hit on Soraya, as the stoning begins.\"\ntt1277737,SVHcUk9WH_s,\"Soraya politely declines an invitation to dinner from her lonely employer, Hashem. Elsewhere, Ali tries to convince Ebrahim that Soraya is having an affair with Hashem, a lie which doesn't escape Zahra's ears.\"\ntt1277737,6mdAoQZkrjY,\"Prior to her execution by stoning, Soraya angrily chastizes the villagers, and even her own family, for turning against her on account of baseless gossip and lies.\"\ntt1277737,FKY8Wsd3fDM,\"Soraya tries to defend herself against false accusations of adultery, but in doing so, she learns that the burden of proof falls upon the woman.\"\ntt1277737,gr_2UA-6hIw,\"When Hashem declines to attack Soraya, she is stoned to death by an angry mob of villagers.\"\ntt1277737,Hc35xCKXOrs,\"Ali and the Mullah pressure Hashem into making up a lie about Soraya by threatening to implicate him with infidelity, an infraction that carries a high cost: stoning.\"\ntt1277737,A6Mwoov-lGc,Ali berates and beats Soraya in front of the children after she tries to stand up for herself.\ntt1277737,g1RVgC8Vw0A,\"Zahara rescues Soraya from a beating at the hands of her husband, Ali, who makes trumped-up claims that his wife has committed adultery.\"\ntt1213012,hONljrAJrH0,Humphrey and Kate howl a duet while riding the train.\ntt1213012,B1dK_oxzaX0,Humphrey tries to give his buddies a lesson in flirting.\ntt1213012,zuKBp_n_o14,The rain causes some trouble for Humphrey and Kate during their journey home.\ntt1213012,4otU-hfAOO0,The wolves celebrate a double wedding as Humphrey and Kate sing a duet.\ntt1213012,I8xuqClrB3Y,Humphrey and Kate try to escape from three angry bears.\ntt1213012,bGWyL-vJAn4,Garth shows off his talents in an attempt to impress Kate.\ntt1213012,IpW3QbVzNCI,Humphrey and his buddies take a sled ride that gets a little out of control.\ntt1213012,k6eXuHmQoiM,The wolves meet up for their nightly ritual at Howling Rock.\ntt1213012,z9P5NdzCcJo,Kate's hunt doesn't go as planned and the hunters become the hunted.\ntt1213012,4F9i0gj9KKc,Garth teaches Lilly how to hunt and admires her eyes.\ntt1213012,-qSADHn4nqw,Marcel is disappointed when his hole in one is ruined by a woodpecker.\ntt1213012,kk8MNQHBJkY,Winston and Tony plot to set up their children in marriage in order to unite the wolf packs.\ntt0164181,2oGfncb2usc,Tom sees a vision of how Samantha Kozac was killed.\ntt0164181,QqVgAIcPfXo,Tom begins seeing haunting visions of an unknown girl in his house.\ntt0164181,qeytg9JLx-o,Tom senses that the new babysitter is kidnapping his son Jake.\ntt0164181,jsGX_I6mFvc,\"Tom Witzky has a dream that Adam shoots himself, and when he wakes up, he realizes that his dream is actually occurring in real life.\"\ntt0245238,yZQYClpkJ1M,Pauline challenges Jake to a duel over the affections of Victoria.\ntt0245238,hgAlSQ4Ckz0,Pauline spikes the punch to get the party started.\ntt0164181,KaCyEft6EmA,Tom asks Lisa Weil to hypnotize him again so that he'll stop seeing violent visions.\ntt0245238,Z46LYLKuros,Mary has an adolescent sexual awakening when she spies Victoria with a guy.\ntt0245238,eN1XH8BQGqI,\"In the classroom, Pauline gives an impassioned plea to the nature and power of love which impresses her teacher.\"\ntt0164181,rWvqkw0_xFA,Harry Damon and Kurt Damon try to kill Tom and his wife.\ntt0164181,hfKhRRdMrVc,\"Lisa Weil hypnotizes Tom Witzky, and when he awakes he has no recollection of what happened.\"\ntt0164181,-HwMH2_-oKA,\"Tom Witzky digs through his basement floorboards, and accidentally discovers an opening in the wall where he finds Samantha Kozac's body.\"\ntt0367913,18ogMe0oYvg,Kyoko and Keisuke research the circumstances surrounding the haunted house.\ntt0367913,7Mbfa0caPBQ,\"After returning from the hospital, Kyoko comes home to find her mother asleep, or so she thinks.\"\ntt0367913,K7l3r0bdlms,A very pregnant Kyoko and her fiance Masashi find an uninvited guest in their car.\ntt0367913,NbT7rgb2QSU,\"Kyoko visits the Nerina house when suddenly, her unborn baby starts kicking. Hard.\"\ntt0367913,8uAUNIySn_4,Chiharu begins hallucinating while on a bus with Hiromi.\ntt0367913,L1Z7sGSUhaA,Megumi gets up close and personal with Kayako.\ntt0367913,D8e5MaEaWJw,\"Keisuke finds Kyoko, who's giving birth to something frightening.\"\ntt0367913,mFktba3DL8g,Tomoka comes home to find Noritaka hanging from hair - lots of hair.\ntt0873886,QTI8XMmOjE4,\"As agents Keenan and Brooks discuss their next course of action, a sudden shot fired from the church instantly escalates the situation.\"\ntt0873886,7okueIbuBDE,Pastor Cooper gives a scorching sermon on what's wrong with the world and how America has turned away from God.\ntt0873886,2_g-cXgaDhE,\"Pastor Cooper preaches to his congregation about the wrath of God, and then gives them a violent preview of what he believes is in store for the human race.\"\ntt0873886,yK78AHB5dSs,\"A shooting in the compound sets off a violent chain of events culminating with Pastor Cooper ordering the death of a deputy, and then threatening Sherif Wynan with blackmail.\"\ntt0873886,YmbeYlShWZc,Cheyenne begs Jarod to help get the children out of the house before the feds raid the compound.\ntt0873886,zOTlBEbI7eM,\"When loud trumpet blasts are suddenly heard throughout the valley, Pastor Cooper confronts Keenan and begs him to shoot.\"\ntt0873886,I1LFslpgsRw,\"Facing heavy resistance from the Cooper clan, Agent Keenan leads his men in a raid against the compound, when suddenly, a loud and sustained noise fills the air.\"\ntt0873886,x5m9etGofg8,\"Keenan argues with a colleague about how to best approach the domestic terrorist situation, while another ATF agent engages in a tense stand-off with Cheyenne.\"\ntt0090837,7O-kshviycI,\"The gang comes up with a way to distract and attack the Killbots, but things take a turn for the worst when Linda Stanton gets shot by a laser.\"\ntt0090837,GV3Rt3A7TAQ,Ferdy Meisel comes to the rescue of Alison Parks and takes out the Killbots laser.\ntt0090837,dqG51nM9k9g,\"A promotional film for the new robotic security invention \"\"Killbots\"\" is shown at an event revealing their addition to the local shopping mall.\"\ntt0090837,8myrr8HPt_I,\"While the boys are off setting up a trap, the girls get tracked down by a Killbot and Suzie Lynn gets burned alive.\"\ntt0090837,53uT454cHiU,\"After killing Leslie, the Killbots turn their attention to the rest of the teenagers and attack the furniture store.\"\ntt0090837,F9ZeSn27MMY,\"Rick Stanton, Greg Williams and Ferdy Meisel loot a sporting goods store for guns to use against the Killbots.\"\ntt0090837,AD3JQD0N_iA,Walter Paisley is quickly trying to clean up a spill in the middle of the mall when he has an unfortunate run in with a Killbot.\ntt0090837,m2lBtBvgiHQ,\"It has come down to just Alison Parks and the last Killbot in the mall, but thankfully she's got an explosive plan to take it out.\"\ntt0090837,oeGwe_Y07_k,Leslie Todd goes searching for her boyfriend only to find his corpse and the Killbot who killed him.\ntt0098141,hcIZa8FePZk,The Punisher infiltrates an abandoned amusement park to find the kidnapped children.\ntt0098141,SnjxkiSs1Dg,The Punisher teams up with Gianni Franco and assaults the Yakuza's dojo.\ntt0098141,Gqc-VRIHfuk,The Punisher shoots up a Yakuza-run casino.\ntt0098141,UemGzlKVwsk,Lady Tanaka neutralizes her Mafia rivals in one fell swoop.\ntt0098141,vR3yb8mNLYo,The Punisher and his friend Shake are tortured by Lady Tanaka and her goons.\ntt0098141,dFIuG_DTVOw,\"The Punisher dispatches mob boss Dino Moretti and his henchmen, one-by-one.\"\ntt0098141,q6HYlg_dJRI,The Punisher fights Lady Tanaka and her daughter in the final battle.\ntt0098141,e0lfNxwgszA,The Punisher drives a bus full of children so he can save them from the Yakuza chasing them in hot pursuit.\ntt0098141,xHd5cUGpJs4,The Punisher gets into a close-quarter combat situation with a pair of angry Yakuza henchmen.\ntt0098141,F-IumwPd6b4,The mysterious Ninjas attack The Punisher and leave him for dead.\ntt0173716,Qe5bvae8I2k,Cecil leads his group of underground cinema terrorists in a kidnapping of Hollywood superstar Honey Whitlock.\ntt0173716,mDnYsc5SIJk,\"Cecil introduces Honey Whitlock to each member of his team, an underground filmmaking terrorist group known as The Sprocket Holes.\"\ntt0245238,Cj71TWcfot4,Mary recalls the letter she wrote to her mother who has passed away.\ntt0245238,yJXZwWi2NdE,\"Mary, the new girl, is introduced to her roommates Victoria and Pauline.\"\ntt0245238,j3WOgT1A0XI,\"Victoria tells Pauline that they will never be together, but that she will love her forever.\"\ntt0173716,nwvUihSxHGs,\"Cecil leads his underground terrorist organization on a major raid of the Hollywood film, \"\"Gump Again\"\", resulting in a shootout between his group and the Teamsters on set.\"\ntt0245238,UFcmai6iKzA,Mary catches Victoria and Pauline making out.\ntt0245238,0SUcAyNL198,\"Jogging through the woods, Pauline comes across a regal eagle and Victoria is asked out by Jake.\"\ntt0173716,woboXYiH548,\"Forced to show her loyalty to the cause of Outlaw Cinema, Honey agrees to lead an attack on the Maryland Film Commission, believing Cecil when he tells her that her weapons are props and her bullets are blanks.\"\ntt0173716,ujJ8talVp90,\"After completing the last shot of their film, the surviving members of The Sprocket Holes unleash their pent-up sexual desires in front of a sea of adoring fans, as well as the Baltimore SWAT Team. In the ensuing fracas, Cecil self-immolates in a final act of defiance against mainstream Hollywood.\"\ntt0173716,ERvEZwe88JU,Cecil gets the final shot of his film when he convinces Honey to set her hair ablaze as a symbolic protest against the cinematic sludge of mainstream movies.\ntt0173716,FIlBqZ0fksM,\"Basking in the aftermath of their first successful outlaw cinema attack, the group enjoys their downtime, rapping about hardships of independent and underground filmmaking.\"\ntt0173716,YkBuZCr1O4U,\"Cecil leads his terrorist organization in their first \"\"outlaw cinema\"\" attack: a raid against a sleepy neighborhood multiplex.\"\ntt0173716,woBSpMcgW4g,\"When Honey is ordered to undress for her wardrobe fitting, the rest of the crew, entirely sex-starved, salivates at the chance to see sexy Hollywood flesh.\"\ntt0090713,b44FCgewbdc,Reno Hightower comes out of halftime sporting his famed white shoes as he mounts a comeback.\ntt0090713,184hH4AknlM,The guys need to get in shape for the big game and try out a new aerobic workout.\ntt0090713,GNCOjiBvwCo,Jack Dundee and Reno Hightower try to act classy and sophisticated on a double date with Gigi and Elly\ntt0090713,ILfjXR8rMgY,\"In the 2nd half, Reno Hightower sends Jack Dundee into the game for the final possession.\"\ntt0090713,nEcnNSQZpoE,Jack Dundee catches the winning touchdown pass thrown by Reno Hightower.\ntt0090713,CR462LcwVBU,Jack Dundee relives old high school football memories to Reno Hightower to get him to play in the reunion game.\ntt0090713,GHWClE2g3Ew,Elly uses all of her feminine charm to keep Jack from playing in the game.\ntt0090713,5wxD59EtYks,Jack and Reno Hightower share a slow dance with their significant others at their high school reunion dance.\ntt0090713,m-Wccy-Mijg,\"While on their double date, Jack and Reno try to listen to their women and watch the football game on TV at the same time.\"\ntt0100196,IhdqG2gOvvg,Richard Francis Burton and Dr. David Livingstone share their battle scars from and admiration for their time in Africa.\ntt0100196,hXiTQfzucK8,\"John Speke is humbled by his time in Africa but has trouble articulating it to the crowd. Then, at the request of the crowd, he leads everyone in the British anthem \"\"God Save the Queen.\"\"\"\ntt0100196,WVqv9kKOfvA,\"Under the cover of darkness, the camp is ambushed by bandits and in the chaos, Richard Francis Burton is injured and separated from John Hanning Speke.\"\ntt0100196,NbhfbT2aU0k,\"Richard Burton sees an runaway slave, Mabruki, being hunted by a pride of lions and goes to help him. But when a male lion ambushes Richard, John Hanning Speke saves the day with a sure shot from his rifle.\"\ntt0100196,X967_4L8pmc,\"The group encounters a local tribe during their travels and exchanges goods with them. To celebrate the success of the barter, the tribesmen spit in the faces of their partners, much to the chagrin of John Hanning Speke.\"\ntt0100196,YNaTu-8atDw,\"Richard Francis Burton begs for the life of Mabruki, as one of Ngola's courtiers seeks to execute the man he deems to be a runaway slave.\"\ntt0100196,snpoOWqCy3k,\"Burton and Speke must give a bounty of gifts to the king of the tribal region if they are to be granted further access. However, the gift that the king likes the most happens to be a lethal weapon.\"\ntt0100196,S7gyibsEUAI,\"John Speke returns to tell Richard Francis Burton about the discovery of the Nile's source. But Burton is despondent, scarred by the death of Mabruki and the iniquities of slavery.\"\ntt0107492,exsURQ8bUkg,Clive Walton gives Soupy Sales his motivation as Moses.\ntt0107492,hge2AkSJSIw,Clive Walton and Marvin Handleman see a variety of bizarre actors for the role of God.\ntt0107492,Nae0ywUHE-c,Clive Walton and Marvin Handleman show the studio brass a rough assembly of their movie.\ntt0107492,QdDQrp0xXWU,Opinions and reviews of the film are not kind.\ntt0107492,WSxjWLWu1WE,Clive and Marvin get some bad news after a big-budget scene doesn't go as planned.\ntt0107492,HwYyKEu2_Mg,Noah and Mrs. Noah share a little bit about themselves while the rest of the crew prepares to film the scene about Noah's Ark.\ntt0107492,1_GUmXl_dcg,Clive and Marvin realize they need more actors to act as Jesus' disciples.\ntt0107492,F5XztYH-X-o,Ray Mann talks about his role in the film as Jesus Christ.\ntt0107492,9Hcl6jzgFu4,Marvin resorts to product placement in an attempt to earn more money for the film.\ntt0107492,9lCOuDWaGHM,\"The film faces some setbacks, but Clive and Marvin find clever ways to deal with the obstacles.\"\ntt0107492,rZRX4JMxQMs,The actor playing Abel has a slight misunderstanding about his role in the film.\ntt0107492,8XREKqJr9mo,Clive kicks off the first day of filming with a prayer.\ntt0119576,1lBbY5sLWno,\"After a night of prolonged seduction, John Gray finally gets to have his way with Lea.\"\ntt0119576,0R3pEe2OW6M,\"John Gray sees a woman wearing a piece of attire that he once gave his former lover. The woman introduces herself as Lea, who happens to be a friend of Gray's lover.\"\ntt0119576,wbfsRXuNwDY,John Gray finds himself as the outsider when he visits an exclusive and very sensual party for the fashion elite.\ntt0119576,QU882zzREY0,\"At an auction for Elizabeth DeGraw's artwork, John Gray thinks he sees his former lover sitting in the audience.\"\ntt0119576,iMOquId9FGU,\"Lea enlists the help of her assistant, Claire, to give John Gray a night he won't forget.\"\ntt0119576,JtFkc9jD5KI,John Gray reveals a painful secret from his past to Lea.\ntt0119576,IOK6qpQ1vg0,Lea almost loses a major hand after luring John Gray -- and his money -- into an underground gambling game.\ntt0119576,qb37bdNexuI,\"John Gray sees Lea dancing seductively in a nightclub. But his gaze is broken when he sees Claire being accosted by a sexual predator, and thus, John steps into the fray to do something about it.\"\ntt0081398,8YGn0l9zfew,\"Jake destroys pretty boy Tony Janiro, winning by unanimous decision.\"\ntt0081398,JXq2nnnhqRw,Jake opens a nightclub and performs stand-up there to a full crowd.\ntt0081398,fdSW39wQL_8,\"After Jake knocks down Sugar Ray Robinson, he loses the fight to a unanimous decision favoring Sugar Ray.\"\ntt0081398,9yHJcx89XXk,\"Jake and his wife fight over the steak she is cooking him, amongst other things.\"\ntt0081398,9Eo8snaeDJs,\"Jake asks Joey to hit him in the face, teasing him until he finally complies.\"\ntt0081398,ybst6CAzXCo,Jake defeats the undefeated Sugar Ray Robinson.\ntt0081398,Z9mMBj-yFuE,Jake practices his Marlon Brando lines in his dressing room before going on to perform.\ntt0081398,lfrC_mA6o8o,\"When Vickie goes to have a drink with Salvy, Joey goes crazy and beats him badly.\"\ntt0081398,cNqstBuw5ZY,\"Jake hits rock bottom in jail, punching the walls and breaking down.\"\ntt0081398,Tx-kB1KKLJ0,\"Sugar Ray Robinson beats the hell out of Jake to win by TKO, but Jake never goes down.\"\ntt0081398,NOXp0ABEFC4,Jake accuses Vickie of cheating with Joey and then beats them both up.\ntt0081398,PVMnl4sBl8A,\"Jake knocks Reeves down, but loses his fight in a controversial decision that sends the crowd into a riot.\"\ntt0125879,qkfcZ4zdrfA,Izzy Maurer and Celia Burns share a quiet moment on the roof.\ntt0125879,vB-sBJ_DrGo,Izzy Maurer notices Lou Reed but it is Not Lou Reed.\ntt0125879,o2K5JzEAzcs,Pillow talk leads Celia Burns to question Izzy Maurer on if he's 'an ocean or a river?'\ntt0125879,LkCHcg-UOfM,Celia Burns and Izzy Maurer become entranced by the mystery inside the suitcase.\ntt0125879,kQLYkEvyReQ,Philip Kleinman relays a sticky situation to Izzy Maurer about a turd sitting on top of an airplane toilet.\ntt0125879,fLjZJgc1nvo,Izzy Maurer attends a dinner party with notable actress Catherine Moore.\ntt0125879,Ib1awvls274,\"After being shot, Izzy Maurer questions the meaning of life if he can't play music.\"\ntt0125879,TOSUY8Jmjzk,\"Dr. Van Horn introduces himself to a locked-up Izzy Maurer, but he's not there to release him.\"\ntt0125879,qN7dJ2r3zoc,\"Dr. Van Horn interrogates Izzy about his tastes, and breaks into a verse of the Gene Kelly song 'Singin' in the Rain.'\"\ntt0151582,P1o2faxmQYQ,Vann gives a ride to a junkie named Casper and then kills her at a rest stop.\ntt0151582,sGS5r7NK5ZA,\"Vann stalks and then poisons Gene, the town's star football player.\"\ntt0151582,exl6XfbWP0s,\"Vann is bothered by his conscience in the form of two imaginary federal agents, Blair and Graves.\"\ntt0151582,BShi3Dn0cRs,Vann goes to a nearby diner and decides to poison a man eating alone.\ntt0151582,2EWQ4s0Z5oI,\"While having a dinner date, Ferrin starts flirting by play wrestling with Vann. Caught up in the moment, the killer side of Vann comes out to play as well.\"\ntt0151582,ypEtxZjRJz0,\"Vann finally decides to leave town and move on, though as he drives away a cop starts to follow him.\"\ntt0151582,t8DHTGsC528,Vann imagines himself being interrogated by federal agents Blair and Graves.\ntt0151582,HKUXzME_3ew,\"While cleaning his bedroom Vann faints and is visited by the two imaginary federal agents, Blair and Graves, that serve as his conscience.\"\ntt0217355,PEU2sirKyiA,\"When Jasmine tries to get time off for the weekend, her boss Eddie loses his cool because he thinks she's being deceptive.\"\ntt0217355,OxKtn3THP58,\"Stormy reminisces about her past lover, Sully.\"\ntt0217355,QtWhkoqRKqw,Jo gets under Jasmine's skin in the dressing room of the Blue Iguana strip club.\ntt0217355,Z0myXa48shI,\"Angel puts on a performance on stage. Meanwhile in the dressing room, Jessie becomes acquainted with the other dancers.\"\ntt0217355,SRJsBidnCV4,\"After finding a used pregancy test in the bathroom, Angel thinks she's pregnant when she thinks that she may have accidentially \"\"dribbled\"\" on it.\"\ntt0217355,i7iLNcJKoE4,Jo explodes at a woman as they wait in the doctor's office.\ntt0217355,BZjSJ6AVd74,Jo goes ballistic on stage and is kicked out of the strip club.\ntt0217355,RHMKRQocaQ4,\"Playing dominatrix, Jo's session with her submissive client is interrupted when Jessie shows up drunk and sporting a black eye.\"\ntt0217355,flWMIVVknEs,Jasmine has doubts about continuing her still-nascent relationship with Dennis when the subject of her stripper lifestyle comes to the forefront.\ntt0218922,VdXfnWThrek,Julia tells Luis her true history and that her real name is Bonny Castle.\ntt0218922,f92X44rgum0,Luis and Julia meet on the beach and are immediately drawn to one another.\ntt0218922,JqoqnJ6VNgE,\"When Luis confronts Julia at gunpoint, she confesses everything and they reconcile.\"\ntt0218922,mvTjdnz3s_4,\"Defending Bonny and himself, Luis shoots her con partner Billy.\"\ntt0218922,0xWOfczSAe4,Luis confronts Bonny about how she can seem so callous in light of all that has happened.\ntt0218922,5Mx0JL_2YKQ,\"Luis admits that no matter what has happened, he still loves Bonny and to prove it, he drinks poison.\"\ntt0218922,uwHPOHdscwM,Luis and Bonny kill Billy and run before the police arrive.\ntt0218922,WwrlI3z89Pg,Luis and Bonny make a new life in Morocco.\ntt0218922,gKEaLU9m0Gc,Luis persuades a possible suitor to leave his wife alone.\ntt0218922,8iQfU3VUrOs,Billy threatens Bonny to leave Luis and come back to him.\ntt0218922,LcjR2Z2iI-E,\"Luis discusses his love and lust for Julia with his friend, Alan.\"\ntt0218922,DI_2i5BZcwI,Luis and Julia dance at their wedding party.\ntt0234354,0wngG1BlZNI,Actor Lance Phelps follows Detective Lunt around researching for his next movie role.\ntt0234354,xUMqM8hl6F8,Actor Lance Phelps encounters Frank Sangster as he escapes from the police station.\ntt0234354,_32En06MgeU,\"Crawling around a motel, Frank Sangster falls through the ceiling and spies a couple getting down & dirty.\"\ntt0234354,Fgl7tImKroU,\"Harlan taunts Jean, but in the end, he's the real idiot.\"\ntt0234354,-rmALJkEprY,Frank Sangster switches identity with his brother Harlan by pulling out his own teeth.\ntt0234354,GO4ExuqatyE,\"Harlan Sangster appears to be dead when his brother Frank discovers him on the kitchen floor, but it is only a goof.\"\ntt0234354,NiOPGDo5UJ4,Susan seduces Frank Sangster late-night in the dentist chair.\ntt0234354,k6YFnGzHfKk,\"Under suspicion for murder, Frank Sangster is forced to give a set of impressions of his teeth.\"\ntt0067093,D1TC1n9lhXU,Tevye dreams of fabulous wealth.\ntt0067093,F9E_PTTHvgI,Tevye introduces his village and its citizens.\ntt0067093,kDtabTufxao,The townsfolk of Anatevka celebrate their traditions in song.\ntt0067093,09oumdE0UFI,Tevye and Golde grow wistful at their daughter's wedding.\ntt0067093,RH3xL8H8tu4,Tevye and Golde offer a loving family prayer.\ntt0067093,ZhdlKgAakHw,Lazar Wolf and Tevye celebrate the upcoming wedding of their children with drink and dance.\ntt0067093,_oSK6l24buk,Tevye waffles on allowing his daughter to marry the poor tailor.\ntt0067093,jVGNdB6iEeA,Tevye's daughters yearn for a perfect romantic match.\ntt0067093,CvVeJJ-TnK4,Motel hails the miracle of winning Tzeitel's hand in marriage.\ntt0067093,kHRe9qdfLsw,\"As part of the wedding festivities, the men perform a traditional bottle dance.\"\ntt0226935,vbKfMbxFfJo,\"Bud and Greta express their mutual need for help, intimacy, and trust.\"\ntt0226935,wE4I9l7Sc_o,\"Audrey reunites with Val, an ex-lover at the Chelsea Hotel.\"\ntt0226935,jWUnIBHVLYQ,Frank and Grace share a silent moment of attraction with one another.\ntt0226935,KhAs8aaZNok,\"With a few drinks in his system, Bud opens up to Greta, as Skinny Bones sings a downbeat but heartfelt song about loss and jealousy.\"\ntt0226935,fUnQuA1z_CE,The artists in the Chelsea Hotel experience solitude and loneliness.\ntt0226935,Tz4liX-da7E,\"Audrey writes a poem for her lover, Val.\"\ntt0226935,4bb7URQIpcA,The voices of the hotel's residents resonate as they offer their parting thoughts and observations.\ntt0226935,VqlqOiOST78,\"Drunk and lonely, Bud tries to reach out to Grace.\"\ntt0250202,BdYd8q4jbqE,Tom and Eli get back together and celebrate with Jackie and Brett.\ntt0250202,qvo_HDqOKww,\"When Tom shuns Eli for getting too intimate, too fast, the burgeoning lovers have their first real quarrell.\"\ntt0250202,2OmHGM9zHqU,\"Tom reveals his ambivalent feelings about his date with Eli to Jackie, who instantly dissects his problem: fear of commitment.\"\ntt0250202,kui9LWtON_k,Eli and Tom bond after talking about their dysfunctional families.\ntt0250202,t5zLt-NZrtI,Eli gets into a passive-aggressive argument with Tom about Fuzzy Wuzzy the bear.\ntt0250202,63nDBr_Qavw,Eli tries to salvage the date with Tom when he notices the glint in Tom's eyes.\ntt0250202,r-xcvVWqny0,\"After a fight between his parents, Tom explodes at Eli, taking out his rage and frustration upon his lover.\"\ntt0250202,dxfqu-v68IM,Tom allows his self-loathing to remain an obstacle between himself and Eli.\ntt0250202,7CmJFYoSgII,\"Eli sees Tom with another man and leaves in despair. Meanwhile, after his one night stand, Tom realizes his mistake and tries to call Eli to apologize.\"\ntt0250202,9kJBc4o_3k8,Eli confesses his love to Tom as the two get back together.\ntt0250202,rNmmNleiY_4,\"Jackie uses her cutting wit to flirt with Brett, a salesman and designer, after she reveals that she wants to buy one of his pieces of furniture.\"\ntt0094812,MAXHXJ2WgrQ,Crash gets into a war of words with the umpire and gets thrown out of the game.\ntt0094812,LveQLUDjnaw,\"Annie says she doesn't want to seduce Nuke, but then does exactly that.\"\ntt0094812,pWRCxdh4PTM,\"Annie confronts Crash about his questionable advice to Nuke, but he turns the tables on her.\"\ntt0094812,SB_LjL0lUJ4,\"Crash gives Nuke tips on his post-game interviews, and advises him to \"\"never f*ck with a winning streak.\"\"\"\ntt0094812,PlwmOgcEry8,\"When Crash strikes out, Annie sends a note with advice on his swing. Crash delivers a surprisingly upfront reply.\"\ntt0094812,G-guv9Pd_RA,\"Crash advises Nuke to throw some more ground balls, and not try to strike everybody out.\"\ntt0094812,RjtmKIWa4tY,Manager Joe Riggins gives the players a piece of his mind about their losing record.\ntt0094812,85RZMIAL7vM,\"Nuke learns that it is not wise to shake off Crash's pitches after a home run ball bounces off the \"\"free steak\"\" bull.\"\ntt0094812,mn5crhTusSA,Crash lays down his beliefs to Annie after she explains her dating rules.\ntt0094812,EroyjPcw3sg,\"Riding on the bus, Crash tells his teammates about life in the major leagues, and gets into a fight with Nuke.\"\ntt0094812,diX4myfR6vU,\"When Nuke starts throwing wild, Crash holds a meeting on the mound to discuss roosters, curses, and wedding gifts.\"\ntt0094812,yL3JcykFL40,A conversation about past lives and reincarnation leads Crash and Annie to make love on the kitchen table.\ntt0372334,FPBY03u-5Zg,\"At the school dance, Tommy shows up to take Melissa's hand for a slow dance.\"\ntt0372334,BFeySGJ75WM,\"Tom Warshaw remembers his best friend from childhood, a mentally-challenged man named Pappass.\"\ntt0372334,GY0xXOTwWoA,Tommy befriends a Lady who is imprisoned in the House of D to get some relationship advice.\ntt0372334,ZSL_Z4FFmjo,Tommy and his fellow students laugh at their French teacher Madam Chatquipet.\ntt0372334,6z1TOMdI0i4,Pappass hits a home run when he plays street ball with some local kids.\ntt0372334,2QD3ND3XiL4,Melissa and Tommy hang out together with Pappass uncomfortably acting as a third wheel.\ntt0372334,QErELQ48OOk,\"Lady teaches Tommy how to slow dance as she belts out a few lines of the song \"\"Melissa.\"\"\"\ntt0372334,GJdCx-hCKsI,Tommy tries shaving for the first time.\ntt0363473,W7uOKhmp00g,\"Bobby Darin courts the hand of Sandra Dee to a montage of his classic hit song \"\"Beyond the Sea\"\".\"\ntt0363473,XeGQr6g1i9I,\"When Bobby learns the truth about his mother from his sister, Nina, the magnitude of the reveal hits him harder than he expected.\"\ntt0363473,Ie6YmUGcPYg,\"Bobby Darin performs his first big hit, \"\"Splish Splash\"\", to the delight of his fans and his family.\"\ntt0363473,lnN9r-mmKXw,Bobby Darin fulfills his dream of performing at the famous Copacabana nightclub in New York City.\ntt0363473,wFBlmb2beQI,\"Bobby Darin talks about the power of music, how it helped him surmount his illnesses as a child, and how his mother gave him the best advice of his life.\"\ntt0363473,ZXhrgVj--6Q,Bobby Darin seals the deal with Sandra Dee when he successfully goes in for the kiss.\ntt0363473,thyfYONK0Hs,\"When Sandra expresses frustration about not seeing Bobby because of his busy work schedule, Bobby tries to ease her tension by seducing her. That seduction, however, is interrupted by Bobby's busy schedule.\"\ntt0363473,ChcCflTm4-k,\"After being denied an Oscar at the Academy Awards, Bobby Darin unleashes his anger upon Sandra.\"\ntt0363473,xRFVqsmbLWY,\"Bobby Darin returns to Las Vegas and performs a rousing version of \"\"Simple Song of Freedom\"\", rousing the crowd to their feet.\"\ntt0363473,V0gKBcEoVdg,Bobby Darin performs a duet with a younger version of himself.\ntt0098635,cTVafG4_CaY,\"After meeting Sally again on a flight, Harry continues to pursue her even though they are both in a relationship.\"\ntt0098635,MQRZuEppgT0,\"At the Giants game, Harry tells Jess that his wife asked him for a divorce.\"\ntt0098635,lNEX0fbGePg,\"Trying to make a point to Harry, Sally fakes an orgasm in a crowded restaurant.\"\ntt0098635,iEV_pQIf3Og,\"After coming on to Sally, Harry explains why men and women can never be friends.\"\ntt0098635,y4Eo2_YMZtE,\"After Harry and Sally make love, they call their friends for advice.\"\ntt0098635,jDP0UCV21Ew,Harry and Sally try to overcome the consequences of sleeping together at Jess and Marie's wedding.\ntt0098635,iNvdewR9znk,\"Harry and Sally trade some brutally honest feedback about each other's lives, then apologize.\"\ntt0098635,0zuRe3QwPG8,\"Harry and Sally take a walk, sharing their recurring sex dreams.\"\ntt0098635,mp8chvACVBk,\"On their drive to Chicago, Sally and Harry soon discover they are about as different as two people can be.\"\ntt0098635,zGw4fC_Dxo4,Harry and Sally discover that they have nothing in common with their dates.\ntt0098635,ovkiChacfc8,Harry finds Sally on New Year's Eve and declares his love for her.\ntt0430919,zJNfkO5ujy0,Murray does his best to stall the wedding between Sarah and James. Olly Pickering finally makes it to the wedding and confesses his love to Sarah.\ntt0430919,4cSZVMEi710,Sarah finds some sexy underwear that isn't hers in the bedroom and confronts her fiance James.\ntt0430919,z2QvrmvECo8,Olly Pickering goes to a film test screening that Sarah is running.\ntt0430919,o-0PQaLy0lc,Olly Pickering does his best to mingle with rich and successful people at the engagement party for his friend James.\ntt0430919,G-fyxbtiDDo,Olly Pickering and Sarah Marie Barker have a discussion about what falling in love is while shopping for the wedding.\ntt0430919,zR7e8cPlhzQ,\"When Olly realizes that James has been unfaithful to Sarah, he threatens to stop the marriage.\"\ntt0430919,kWjZx3bSDHI,\"Becka convinces movie focus group expert Sarah to rate her own fiance, but the results are not promising.\"\ntt0430919,SxztUnejrvI,Olly is truly surprised when Murray throws him a fake birthday party to impress Sarah.\ntt0430919,sOPwbePhOXs,\"Olly is attracted to the lovely Sarah, until he realizes that she is James' fiance.\"\ntt0430919,J7zl9A6-xHY,Murray poses as a realtor to get into James and Sarah's apartment so he can plant evidence against James.\ntt0426615,aCaTMqs_Qsc,Dolly has Darrell drive her to lunch with her friends. Once there she finds that all her friends want to do is talk to Darrell.\ntt0426615,9lYe-ez83H8,\"Dolly convinces Darrell to take her to the club. After dancing pretty close together, another one of Dolly's bodyguards tries to interrupt the couple.\"\ntt0426615,BKR1-S8aRaQ,\"Darrell, Dolly and Frank are held captive by former bodyguard Jackie. Busta and Frankie Junior show up and help rescue them, though Darrell gets shot in the process.\"\ntt0426615,WYliK36fyCU,Darrell brings Dolly back to his apartment where they end up sleeping together. The little girl from the next apartment over finds them the next morning.\ntt0426615,vSBQt-6fDr8,\"Darrell brings Cherise, a girl he's been seeing, back to his apartment. Lexi, the daughter of his neighbor, interrupts their romance and has some fun getting rid of Cherise.\"\ntt0426615,UdYapy35qJ8,Darrell and Dolly go for a late night swim and talk about their love lives.\ntt0426615,BT5Z6_xe86k,\"While at a coming home party for his friend Dolly, Darrell spots hitmen aiming for her father, Frank.\"\ntt0426615,sFJmNKLW-2A,Darrell shows Dolly the building where he wants to build his dream record label. The two end up sharing a kiss.\ntt0090756,V_tlFZCiIHo,Dorothy discovers Jeffrey hiding in her closet and forces him to strip.\ntt0090756,b-QlCUByMcE,\"At the diner, Jeffrey recruits Sandy for his investigation.\"\ntt0090756,Is5sRHNIAwE,\"Jeffrey fools Frank into thinking he's in Dorothy's bedroom, while he hides in the closet with a gun.\"\ntt0090756,senNDipdmPo,\"Jeffrey spies on Frank and Dorothy and their \"\"blue velvet\"\" ritual.\"\ntt0090756,BeYx_CBH700,Jeffrey finds a human ear in a field and brings his discovery to Detective Williams.\ntt0090756,2iWKnf3C8ZY,\"Sandy gets cold feet, but Jeffrey goes into Dorothy's apartment, undeterred.\"\ntt0090756,36LnnBNcETk,\"When Jeffrey stands up for Dorothy by punching Frank, Frank drags him out of the car.\"\ntt0090756,z2G1Ht59cpM,\"Frank forces Jeffrey to go on a \"\"joy ride\"\" with him, Dorothy and his boys.\"\ntt0090756,ncnq2pu4PlE,\"Sandy tells Jeffrey of her dream of the robins, and how there will be trouble until they return.\"\ntt0090756,kuVLtcqiPrY,\"Sandy shares some details of the police case with Jeffrey, and he demonstrates the chicken walk.\"\ntt0090756,GacX6Le_uDM,Jeffrey poses as the pest control man to fool Dorothy and gain access to her apartment.\ntt0357507,54jjaJTov6s,\"Tim chases the Boogeyman through his closet network and keeps trying to save his victims, including childhood friend Kate Houghton.\"\ntt0357507,GPJNP0RvWHs,Tim makes a last stand against the Boogeyman and figures out a way to beat him.\ntt0357507,VNBzjYyGcd0,\"Young Tim sees the Boogeyman, but his father tells him that he doesn't exist. He's proved wrong.\"\ntt0357507,EhsfKBbm1f4,Tim walks through a closet and ends up in a motel room where his girlfriend Jessica appears as she is attacked by the Boogeyman.\ntt0357507,p4IUUBVAUJA,Tim seemingly receives a ghostly visit from his Mother.\ntt0357507,SauYDhRS8qQ,Tim finds a backpack full of missing person posters and realizes the Boogeyman has been stealing children for a long time.\ntt0357507,yth5JoZKnGQ,\"Tim gets trapped in a closet in his childhood home, and he might not be the only one in there.\"\ntt0357507,W98LPZXSzHE,\"While driving back to his childhood home, Tim hits a bird and almost crashes.\"\ntt0397401,w13Y3PHCqVQ,Frank gets Spider and Harkness together and reveals everything. Though it doesn't go quite as planned since everybody brings a gun.\ntt0397401,I8ltv_SROgc,\"While at home waiting for Frank to show up, Eddie gets kidnapped by Spider and his goons.\"\ntt0397401,OUfJ9E9zfjg,\"Eddie recognizes the corpse as a stripper he used to see, much to Frank's surprise.\"\ntt0397401,G6zOqkX6qTo,Frank and Eddie have a few problems when they dig up a rich woman's body to steal an expensive necklace.\ntt0397401,M_y-ZHpKCqs,Frank and Eddie bring the corpse of Crystal home and hide it in Frank's room. Eddie has an interesting dream while sharing a bed with the body.\ntt0397401,AbyNlvzydeA,\"Frank and Eddie are given a job to do by Spider, a local crime boss, that they don't pull off as well as they hoped.\"\ntt0397401,XhxddKZYvH4,Frank meets with the local crime boss named Spider.\ntt0397401,ytd6Q9IxEzk,\"While trying to blackmail Harkness, Frank and Eddie realize they need to send him proof that they have the dead girl's body.\"\ntt0086979,FAOoSmjHsog,Ray buries the still breathing Marty who tries to shoot him with an empty gun.\ntt0086979,Fk_NuqIXhtA,\"Marty offers Visser $10,000 to kill his wife.\"\ntt0086979,nLykrziXGyg,Visser gives an opening speech about human nature and how things are in Texas.\ntt0086979,p6XV7oYBMG4,\"Marty tries to rape Abby, but she retaliates by kicking him hard in the balls.\"\ntt0086979,1pJdFkkeu0U,\"Trying to hide the injured Marty from a oncoming truck driver, Ray stashes him in the back seat of his car.\"\ntt0086979,vVfLenSAj8s,Abby has a dream where Marty warns her that Ray will kill her as well.\ntt0086979,4mC5CUTwjno,\"Abby surprises Visser with a sudden stab to his hand, pinning him against the window sill.\"\ntt0086979,qLwEQ_18_V8,Marty warns Ray about the consequences of the affair that he's having with Marty's wife.\ntt0086979,RpbUeRN_rcQ,\"Abby mortally wounds Visser, who can only laugh maniacally as he dies.\"\ntt0086979,z2ZqFFFcXmg,Visser betrays Marty by shooting him and then absconding with the money.\ntt0086979,Cn6TkV9mxmY,Abby dodges Visser's sniper fire after he shoots and kills Ray from long range.\ntt0100507,vkj3RBOD3cA,Rocky remembers training with Mickey and the inspiration he gave him to survive in and out of the ring.\ntt0100507,KAEUeqJRxB8,\"Tired of being a \"\"robot\"\" and living in Rocky's shadow, Tommy challenges him to a fight.\"\ntt0100507,NjjDcdIAK60,Rocky passionately watches the television as Tommy wins the fight and takes the championship.\ntt0100507,0Tv6PQbWvJA,Adrian is frightened when she finds Rocky in a disoriented state after his punishing fight with Drago.\ntt0100507,hlx-FULnwJs,\"Rocky is nearly defeated by Tommy, but finds the strength inside to go one more round.\"\ntt0100507,I7nWj8Q_FgI,Rocky has a heartfelt moment with his son atop the museum steps.\ntt0100507,2XV-EU8JlNI,\"Rocky advises Tommy against selling out, but Tommy makes it clear that he wants a quick way to the top.\"\ntt0100507,8H9u7P1d87Y,\"When Duke provokes Rocky, Rocky punches him out.\"\ntt0100507,PUXHIqGfkXs,\"Rocky fights Tommy, and almost loses, but is inspired with the cheers from his family and fans.\"\ntt0100507,g7yAbv_u-FA,\"Adrian breaks down to Rocky and tells him that Tommy has no heart, and that he should look to his son instead.\"\ntt0100507,kpS1Pghejt8,\"Tommy tries to celebrate his victory, but gets attacked by the press and remains stuck in Rocky's shadow.\"\ntt0089927,wWrB-Gbjnik,\"Apollo boasts for the cameras, prompting insults from Drago's Russian handlers.\"\ntt0089927,fWa-h0maM1w,\"The Russians show off Drago's curious strength, denying accusations of doping.\"\ntt0089927,hHC_R7ATGuI,\"Ditching his Soviet chaperones, Rocky literally and figuratively scales a mountain.\"\ntt0089927,wICMOVrSal0,\"In his first round with Drago, Rocky gets clobbered.\"\ntt0089927,qZRbStnLn3c,\"Rocky lands a slashing punch, cutting Drago for the first time.\"\ntt0089927,3cTyY36ENxY,\"As Rocky and Drago continue their slugfest, the Russian crowd begins to root for Rocky.\"\ntt0089927,EiTYwecY41c,\"As Rocky watches in horror, Drago puts Apollo awayfor good.\"\ntt0089927,5rvk07eB9wk,\"Once Drago starts landing punches, Apollo is quickly overwhelmed.\"\ntt0089927,bbVqciFRioA,\"Rocky knocks out Drago, then wraps himself in the American flag.\"\ntt0089927,1AmiFfP9u5c,Drago lashes out at his handlers. Rocky and Drago trade jabs in their final round.\ntt0089927,wVP1wO_E4yk,Drago hones his physique with sophisticated gadgets while Rocky chops wood and pulls sleds.\ntt0089927,Uc6tQH8yHF8,\"After his win, Rocky gives an emotional speech that brings the Russians to their feet.\"\ntt0084602,ONit4ATZmhw,Mickey warns Rocky about Clubber.\ntt0084602,eNnr60_UZtg,Clubber heckles Rocky while he gives a press conference and challenges him to a fight.\ntt0084602,-edZKfoS2V4,Rocky says an emotional goodbye to Mickey just before he dies.\ntt0084602,jm73CCe1e4o,\"When Clubber crosses Rocky before the fight, Clubber gets aggressive and gives Mickey a heart attack.\"\ntt0084602,8DrsMeY29Kc,A passionate and determined Adrian gives Rocky an inspiring speech about being true to himself and having no fear.\ntt0084602,8KRzqPxR5zs,Apollo is tough on an exhausted Rocky during a training session before his fight against Clubber.\ntt0084602,CJKeL-ziA_A,\"During a pre-fight interview, a confident Clubber predicts pain for the fight against Rocky.\"\ntt0084602,rxGjeoSRNQU,An aggressive Clubber tries to intimidate a more subtle Rocky during their pre-fight introductions.\ntt0084602,kQ65F_pf868,\"During a brutal fight, Clubber knocks out Rocky and takes the championship title.\"\ntt0084602,_3GmO3aiBKY,The crowd goes wild when Rocky picks up Thunderlips and throws him out of the ring.\ntt0084602,lu2-RuTwlto,\"After a rough start, Rocky fights back and beats Clubber.\"\ntt0084602,4kVGdo53gwY,Rocky and Apollo watch press about the upcoming fight and Clubber badmouths them both.\ntt0084602,3ESS6HqOuoc,\"Rocky trains with Apollo, and after numerous attempts, finally outruns him.\"\ntt0079817,UCZNyjhoINE,\"During a snowy day at the zoo, Rocky makes a modest proposal to Adrian.\"\ntt0079817,B2g2yYkNegE,Rocky bombs an aftershave commercial.\ntt0079817,U1ngzzlFqgQ,\"Rocky wants to fight again, but Mickey tells him that he doesn't have it in him anymore.\"\ntt0079817,bchPm7InHcg,Rocky calmly speaks to the press about the upcoming fight while Creed fumes with anger and determination.\ntt0079817,eM3CovgD8Bo,Mickey trains Rocky by having him chase a chicken.\ntt0079817,ui3pnIeA_HM,Adrian wakes from her coma and Rocky meets his baby son for the first time.\ntt0079817,thhYv6-lz9A,\"After winning the championship yet again, Rocky gives an emotional speech to the public, and a loving message to his family.\"\ntt0079817,GEDL7dCxWvs,\"Determined to shed the humiliation brought on by his last fight with Rocky, Apollo instructs his team to do whatever it takes to get Rocky back in the ring.\"\ntt0079817,z_hfmThW4fs,\"Rocky himself struggles to get up after knocking out Apollo Creed, but makes it up and wins in the end.\"\ntt0079817,JBNOsPP2yhw,\"Rocky attracts a crowd of young fans on his morning run, leading him to his famous set of stairs.\"\ntt0079817,RGdgqkgcvCs,\"An apathetic Rocky gets yelled at by Mickey, but wakes up when someone tells him his wife is sick.\"\ntt0079817,4uRK1MPvUps,Mickey's pep talk empowers Rocky to start giving Apollo a real fight.\ntt0099348,THaIWPlHvLY,\"The natives fight back in a brutal attack, and Sergeant Bauer is killed.\"\ntt0099348,y1kqd_RgNac,Wind In His Hair steals Dunbar's horse and declares that he has no fear.\ntt0099348,uZRTLpXXlds,Dunbar tries to communicate with Wind In His Hair and Kicking Bird.\ntt0099348,cH_nhvO8stg,Dunbar receives a promise of friendship from Wind In His Hair.\ntt0099348,DvcLVg4rz-c,\"When Dunbar saves Smiles A Lot from a buffalo, he is offered the animal's heart in thanks.\"\ntt0099348,g6q_n-SZg-A,Dunbar refuses to cooperate with Lieutenant Elgin.\ntt0099348,Cr4KHgNuxcA,\"At Dunbar's request, Major Fambrough sends him on a knight's errand to the frontier.\"\ntt0099348,Cq_Fag11NRg,Timmons is dumbfounded when Dunbar orders him to set up their belongings in his deserted post.\ntt0099348,uNSSfdkcppw,Stands With A Fist panics when Dunbar tries to stop her from killing herself.\ntt0099348,PnffktauNZw,Dunbar joins the warriors in a thrilling buffalo hunt.\ntt0099348,oK_wtjlQcns,\"When Dunbar attempts suicide in front of the enemy, his life is miraculously spared and he gains leverage for his soldiers.\"\ntt0429573,npI-xPUygXY,\"Betsy Bell is again attacked by the ghost, though much more violently this time. The incident is also caught by her parents, John Bell and Lucy Bell, who now know the evil they are dealing with.\"\ntt0429573,UpsxCiyuxGM,The spirit hunts down the sleeping Betsy and proceeds to rape her.\ntt0429573,Pb3QUVXfKto,A young girl is chased through the woods by an unseen entity.\ntt0429573,W5_sieIOe88,The ghost attacks the carriage that is transporting Betsy Bell. Richard Powell and John Bell Jr. try to get her away from a spirit controlled wolf.\ntt0429573,yBsFjC1fVx8,Betsy comes across a young girl in the woods that wants to play.\ntt0429573,t9QcyYlB7Ac,The evil spirit decides to make itself known to the entire family of Betsy Bell.\ntt0429573,ET1bH9TqwCE,\"In the middle of the night, Betsy Bell is visited by a ghost.\"\ntt0429573,lrViTBpl8_A,\"Betsy Bell and a friend are both tormented by the ghost, who this time uses all its tricks to scare them.\"\ntt0433386,pRyH7gS__WI,Karen tries to escape from Kayako while in the hospital.\ntt0433386,On6-ADTS-g8,\"Trish, under the influence from Kayako and the dark energy around her, kills her husband, Bill.\"\ntt0433386,RUJeDvZRsps,\"After getting the news that her friend is missing, Vanessa is hunted down by Kayako and Toshio.\"\ntt0433386,78WFIwR9FrY,\"Miyuki checks into a hotel room with her boyfriend, but unknown to her, the ghost of Kayako has checked in with them.\"\ntt0433386,t31U3QAkClM,Eason develops some photographs he took of the Saeki house. Kayako emerges from one the photos and kills him. Aubrey awakes the next morning and finds his body.\ntt0433386,VbJgsN5PcyM,\"After Jake discovers his family and the neighbors are all dead, he confronts the hooded stranger from next door, who turns out to be Allison.\"\ntt0433386,5poOduTF5pM,Allison runs to the school counselor for help only to find that the counselor and her missing friends are waiting for her in a now ghostly form.\ntt0114436,_DWgvYbpexM,A sniffling Nomi is comforted by a tissue from her rival Cristal Connors.\ntt0114436,qoVuQxxeAl0,\"Al gives the new girl a rundown on lap dances, then questions Nomi about not showing up for work.\"\ntt0114436,XECoJa7AU-c,Nomi stops by Mr. Moss's office and gets secretly laughed at for her mispronunciation of a designer dress.\ntt0114436,i60a-KYSCno,\"Nomi gets a taste of Tony Moss when she lands an audition, but makes some adjustments before meeting him.\"\ntt0114436,3QWd5rCd-R8,Nomi learns a few things during dance rehearsal and is cleared to perform in the show that night.\ntt0114436,CHyJRCF3sEc,Nomi auditions to be Cristal's understudy in front of Zack which raises jealousies within the ranks.\ntt0114436,VvH6ZeCJNHA,\"Nomi spits in Zack's face when he pays her a nasty, backhanded compliment.\"\ntt0114436,UKaGbPJZicM,James shows up at Nomi's trailer and tells her that she's a dancer with too much natural talent to be stripping.\ntt0114436,-9T4jMND-4E,\"Cristal compliments Nomi over a glass of champagne, talks business, and then calls her a whore.\"\ntt0114436,BB_1LSxIC4o,\"When Nomi visits an injured Cristal in the hospital, they make peace, and then they make out.\"\ntt0114436,fIleQPfCec0,Nomi's excitement about her promotion is tarnished by her disapproving peers and a jealous Cristal.\ntt0114436,hEZKrsmIGyg,\"Nomi is excited to introduce her roommate to Andrew Carver, but disappointed when he makes a pass at her.\"\ntt0472160,ats6Rg3WPbM,Penelope and Johnny live happily ever after.\ntt0472160,cXjzLXjLBTo,Penelope forgives her mother and leaves home with her new nose.\ntt0472160,arJc5qABgO8,Penelope finally learns the secret to breaking her curse.\ntt0472160,rRWT4FRDq2U,Penelope passes out at the bar and finds herself the darling in the middle of a media frenzy.\ntt0472160,SxtPzI76s3E,Penelope sells her picture to Lemon.\ntt0472160,Tzmt5YLzDXQ,Penelope reveals herself to Max and mistakes his reaction for rejection.\ntt0472160,KBbowtlzD88,Penelope escapes while her parents are discussing her future.\ntt0472160,4g4fmiFvXmk,Penelope tests Max's willingness to stay and realizes they might share a genuine attraction for one another.\ntt0472160,eI4FXLtPBL0,\"Penelope reveals herself to a room full of suitors, but they all run away, all except for one.\"\ntt0472160,2-Y-e_9P8ko,\"One of Penelope's suitors, Edward Vanderman, escapes the mansion after seeing her snout and reports it to the police station.\"\ntt0472160,DMUnxdly1zI,Penelope's parents fake her death to protect her from the public.\ntt0472160,tTsOHmaiMq8,Penelope narrates her family lineage and how she came to be born.\ntt0804516,flOMk-bWIxQ,Thomas beats Jim Harper for making sexual advances against Angela.\ntt0804516,IaAhl7maKhk,Angela finds herself locked in a parking garage with an obsessed stalker.\ntt0804516,SpZfI5x9PyE,Angela tries to turn the tables on Thomas when the two come car to car in the parking garage.\ntt0804516,QcqrOIxjeOA,Thomas makes Angela watch as he teaches one of her co-workers a violent lesson.\ntt0804516,7q5lFxaC2f4,\"Angela makes an attempt to escape from her deranged captor, Thomas.\"\ntt0804516,C2s_9Cx4AG4,Angela ends her night with Thomas by handcuffing him to a car and setting him on fire.\ntt0804516,eKmMFRdNCEw,Thomas forces Angela to call her mother and explain why she won't be coming over for Christmas.\ntt0804516,ggC1uf1QTjw,\"Thomas dances to Elvis' \"\"Blue Christmas\"\", while Angela destroys the security cameras in the parking garage.\"\ntt0804516,VASm7dDXDcw,Thomas sets his Rottweiler loose on Angela.\ntt0804516,IFTljGCli5U,Thomas fills an elevator with water to flush Angela out of her hiding place.\ntt0079501,b8ZW-98Zn-w,\"While Max talks with the mechanic, Jessie and the baby go get ice cream not far from where Toecutter and his gang are hanging.\"\ntt0079501,oh2MX0EftaU,\"A toddler is nearly run over during a high speed police car chase with the Nightrider, while Charlie and Roop are forced \"\"out of the game, unable to continue pursuit.\"\"\"\ntt0079501,JfJVmzthD3Q,\"Max gets prepared for his ride, while Nightrider flies through with his lady.\"\ntt0079501,qUi5Lo9SHTY,Max checks out the Underground Mechanic's car the last of the V-8s and gets ready to take a ride.\ntt0079501,lkAYkfIqivc,Toecutter's gang chases down a young fearful couple.\ntt0079501,dHwJ6zB8B-4,Johnny Boy is forced to show his loyalty to Toecutter by burning Goose alive.\ntt0079501,KGoS1jrmgHg,Jessie gets run down with her baby by Toecutter's gang.\ntt0079501,K1YndrF8GiU,\"Toecutter intimidates the train station master instructing him to \"\"remember the Night Rider when looking at the night sky.\"\"\"\ntt0079501,uAHjDGPOQEQ,\"Max runs down a confident Nightrider, leaving him in tears, and ultimately, in flames.\"\ntt0079501,sE0hL32wswo,\"Max gets ambushed by Bubba and Toecutter, the very same gang members he is looking for.\"\ntt0079501,1UbSL3Bri4E,\"Johnny the Boy is given two options by Max : Burn to death in the explosion, or saw through his own ankle and escape.\"\ntt0079501,VUNpJBzAyXk,Toecutter gets hit and run over by a truck when Max maneuvers him in front of it.\ntt0097659,9M_shJ1_q68,Tong Po defeats Eric in a brutal kickboxing match.\ntt0097659,Zyl9lO3o9_0,\"Drunk as hell, Kurt is gently goaded into dancing at the bar by Xian Chow, when suddenly, he's attacked by Tong Po's henchmen.\"\ntt0097659,u9gzHfq9RsQ,\"As Tong Po gains the advantage over Kurt, Xian Chow leads a one-man assualt to save Eric from a slew of thugs.\"\ntt0097659,8IG_Y8BrorA,\"At a sleazy stripclub, Taylor dispenses some useful advice about life to Kurt, and agrees to help him get his revenge.\"\ntt0097659,xbhR3UYKLws,\"Tong Po pummels Kurt, and then taunts him by revealing that he had raped Mylee.\"\ntt0097659,dadFHEMhfxo,\"Prior to his fight against Tong Po, Kurt is given a \"\"recommendation\"\" to throw the fight, otherwise his brother will be killed.\"\ntt0097659,u4bLh7SN53U,Kurt gives in to his passion and finally kisses Mylee.\ntt0097659,WHFy_iSnR4M,\"With the crowd chanting \"\"Nok Su Kow\"\" -- \"\"White Warrior\"\" -- Kurt embraces the ancient ways of combat and proceeds to destroy Tong Po with unbridled ferocity.\"\ntt0097659,NBJhQqGxJBE,\"Under the tutelage of his mentor, Xian Chow, Kurt overcomes his fear of pain and begins to fulfill his destiny as a kickboxing badass.\"\ntt0097659,IicsG0Br1q4,\"Xian Chow takes Kurt to the ruins of an ancient warrior temple, now known as \"\"Stone City,\"\" to elevate Kurt's abilities to the next level.\"\ntt0498353,ZHS4xXmL87I,\"Beth, trapped in a house, discovers a hidden room with decapitated heads on display.\"\ntt0498353,5OZPyf-QseQ,\"Laying in a hospital bed, Paxton recalls surviving the hostel to an Italian detective. That is until the interrogation goes haywire. But luckily it's only a dream.\"\ntt0498353,PvwjtOewYu8,The bubblegum gang don't take too kindly to Lorna's offer of a Smint. The price: a loogey to the face.\ntt0498353,dcIVsX1-Aio,\"The Italian Cannibal prepares his meal like a surgeon. On the menu : leg, ligaments, and tendons.\"\ntt0498353,upGmHcSsGmc,\"Stuart 'accidentally' buzzsaws Whitney's pretty face while torturing her, which displeases him immensely.\"\ntt0498353,88qGMm1AoGQ,Whitney takes a bite out of the Make-Up Woman's nose.\ntt0498353,d90YEOlhtRk,\"Going down to the kitchen for some cereal and orange juice, Stephanie finds her boyfriend's head chopped off and the cat licking the stump.\"\ntt0498353,DDlHzP-SYFw,Rich men and women from around the globe bid on the opportunity to torture the flesh of three cute Americans. Todd wins the auction.\ntt0498353,Rs28rq81pGo,Beth takes her revenge on the deceitful Axelle by decapitation.\ntt0498353,-ip57avHn8E,The captive becomes the captor as Beth turns the tables on Stuart and jams a needle into his ear.\ntt0060196,kpjWox_c9Ig,Angel Eyes has a light conversation with a bedridden Baker before shooting him dead.\ntt0060196,p9shpHAh8uc,\"Blondie shoots three intruders that come into his room, but Tuco is waiting behind him with a loaded gun.\"\ntt0060196,nouLQZCXW4A,A mistake by Tuco forces him and Blondie to be captured by Union soldiers.\ntt0060196,rXs41JvueZY,Blondie leaves Tuco stranded in the middle of the desert with his hands tied and moves ahead on his own.\ntt0060196,E303pbjYRdo,\"Angel Eyes gets the name \"\"Bill Carson\"\" from Stevens, along with some dough, just before shooting and killing him.\"\ntt0060196,o36m-2TPwck,\"Tuco swings, terrified from a hangman's noose as Blondie points a gun at him then shoots, and sets him free.\"\ntt0060196,D7Ax5jr6mDM,\"After Blondie saves Tuco from hanging, they split the reward and Tuco delivers him a warning.\"\ntt0060196,thSPQDFYyiE,\"Tuco's crocodile tears don't fool a near-death Blondie into giving up the location of the $200,000.\"\ntt0060196,Xsa_dy0w84Y,Tuco shops for revolvers and steals all of the storekeeper's money while he's at it.\ntt0060196,_yMeXMRn9KU,\"While a choir sings outside, Tuco gets beaten to a bloody pulp by Angel Eyes.\"\ntt0060196,5PgAKzmWmuk,\"Blondie shoots Angel Eyes, knocking him into an open grave while Tuco fumbles with his gun.\"\ntt0060196,JrYtD7gSWsI,\"When a one-armed bounty hunter thinks he has a bubble-bathing Tuco right where he wants him, Tuco shoots and kills.\"\ntt3602442,PO8fJeJP8AU,The Leprechaun pays a visit to Postmaster P's blind mother.\ntt3602442,hEzyoeRuxYk,\"Mack Daddy and his partner let loose The Leprechaun, but thankfully Mack Daddy has a bunch of weapons hidden in his hair.\"\ntt3602442,Fz9Y72jbsxU,\"While looking for his stolen flute, The Leprechaun finds himself seduced into a bedroom.\"\ntt3602442,jhz2fVM1rMA,The Leprechaun tracks down Mack Daddy and then accepts an offer to try some weed.\ntt3602442,jMAy36cl6w8,Reverend Hamson gets a vist from a very sexy sinner who is under the spell of The Leprechaun.\ntt3602442,XzWlhLSitJ8,The Leprechaun busts out some rhymes while putting a bunch of girls in the audience under his spell.\ntt3602442,rU3GNIhA7fk,\"The Leprechaun brings back the wife of Jackie Dee, though she doesn't look quite the way she used to.\"\ntt3602442,Ol5eFltyhLE,\"Mack Daddy,The Leprechaun and Postmaster P. fight to kill each other.\"\ntt0116861,1hiv8o-SRZ0,The Leprechaun has some fun getting rid of Harold and taunting Dr. Mittenhand.\ntt0116861,1m3y_pIJ304,The Leprechaun gets sucked out into space.\ntt0116861,FKwYBGdhUpc,Delores confronts The Leprechaun with minor success.\ntt0116861,--aqjaJyZLk,Danny finds himself trapped in a room with The Leprechaun.\ntt0116861,XrnUNfRvAho,\"The soldiers and crew finally get to meet Dr. Mittenhand, the man with the power.\"\ntt0116861,NsjUpOTLrr0,The Leprechaun decides to pop up during an intimate session between Kowalski and Delores.\ntt0116861,epBGWHCrfr4,The Leprechaun attacks Mooch while inside the flesh-eating bacteria chamber.\ntt0116861,IHVBdcgvTaM,A squad of space soldiers come across The Leprechaun's cavern of treasure and engage him in a firefight.\ntt0116861,JtW17JUoeUs,Tina accidently causes The Leprechaun to grow gigantic.\ntt0058461,jM8cy3uB5N8,Joe kills a room of Rojo's gunmen and rescues Marisol and her family.\ntt0058461,2mbvrOmirQg,Joe uses his wits and resources to escape the Rojo complex.\ntt0058461,G-50M2Wex20,Rojo and his men beat the hell out of Joe and crush his shooting hand.\ntt0058461,ABUroSunjEY,\"Rojo gives Joe some shooting lessons with his Winchester, but Joe prefers his.45.\"\ntt0058461,vsPVyvwwVns,Joe and Silvanito witness Rojo's men double cross and massacre Mexican troops by the river.\ntt0058461,Sv_GcxkmW4Y,\"When some gunmen refuse to apologize to his mule, the Stranger shoots them all.\"\ntt0058461,CbB6CosDNV4,Joe practices his left-handed shooting and tests some makeshift armor.\ntt0058461,Y9nW4w5tHVM,\"Joe tricks Rojo into shooting at his armor, then kills all of his gunmen at once.\"\ntt0058461,jQPhLeyzkLY,Joe faces down Rojo and they test Rojo's statement that a rifle will always beat a pistol.\ntt0805570,wreBOqv-y3Y,\"After killing Mahogany, Leon is confronted by the sinister man who reveals the true -- and outlandish -- purpose behind the Subway Murders.\"\ntt0805570,R6oNHDPMOKQ,Leon fights Mahogany in a battle to the death.\ntt0805570,6GAilUIUtpw,Maya and her friend Jurgis search Mahogany's apartment for a missing camera which would provide clear-cut evidence for the subway murders.\ntt0805570,0IyGdSEdk3g,\"Compelled to learn more about the mysterious Mahogany, Leon quickly finds himself on the run when the butcher senses his presence.\"\ntt0805570,tOpPh1MQ9sM,Mahogany gets into brutal and bloody fight with Guardian Angel.\ntt0805570,KoDrm4b6SH8,\"Leon saves a woman from being attacked by some teenage gangbangers using the power of his still camera and his wits, but when she boards the subway, her life is in even greater danger.\"\ntt0805570,2oMW26rEZUk,Mahogany slaughters three yuppies on the subway train.\ntt0805570,ZIOGfLuHu3Y,Leon takes photos of Mahogany as the butcher engages in a grisly field dressing of his most recent victims.\ntt0113636,rETUKp1A-xo,\"The Leprechaun captures Tammy, while Scott, becoming more a leprechaun himself, uses his newfound powers to escape from the hospital.\"\ntt0113636,aQq3mHLZ-X0,The Leprechaun gets explosive revenge against Loretta for stealing his gold shilling.\ntt0113636,HTbSaYy2Bhk,\"The Leprechaun manipulates Mitch into getting in bed with a robotic woman, which then electrocutes Mitch into a most ignominous death.\"\ntt0113636,RFpNZ_n9rcI,\"The Leprechaun attacks Scott in his hotel room, thinking that Scott had stolen his missing gold shilling.\"\ntt0113636,xMOzBw0mrcc,\"The Leprechaun leaves Fazio in pieces, but then meets his maker when Scott melts the pot of gold.\"\ntt0113636,9iPH8MXkPEE,\"The Leprechaun murders Gupta over a missing gold shilling, which ends up in Scott's possession, who in turn makes a wish and ends up on a roulette winning streak.\"\ntt0113636,i-2EJ-HDYg8,The Leprechaun is awakened from his slumber and wreaks havoc against Gupta.\ntt0113636,e2Odq49gEbs,\"The Leprechaun arrives at the Las Vegas strip, taking in the sights and sounds, and leaving a pile of crap in his wake.\"\ntt0092086,N3qEvEGFdKE,\"When they get a telegram from the infamous El Guapo, the Three Amigos debate the definition of \"\"in-famous\"\" and then decide to steal their costumes.\"\ntt0092086,GPdEP_fFQhk,The Three Amigos see a plane and Ned makes a joke about it.\ntt0092086,iB89FIStq7Y,\"The Three Amigos sit around the campfire and sing \"\"Blue Shadows \"\" complete with animal accompaniment.\"\ntt0092086,e9vPvHO8Kp4,\"The Three Amigos find the Singing Bush and summon the Invisible Horseman, who Dusty accidentally kills.\"\ntt0092086,okiMnLyCMbA,\"When they are denied beer at the bar, the Three Amigos try tequila instead.\"\ntt0092086,T6wetejGqh0,\"Trying to break the ice in the Mexican bar, the Three Amigos perform \"\"My Little Buttercup.\"\"\"\ntt0092086,fw7p7tAdVuE,\"The Three Amigos make a grand entrance to the village and \"\"run off\"\" the bandits.\"\ntt0092086,pUWlaORsqw4,\"When a woman invites Dusty to kiss her on the veranda, he tells her that \"\"Lips will be fine.\"\"\"\ntt0092086,L08fJmbHcPo,\"Ned and Lucky run out of water in the desert, while Dusty has more than enough.\"\ntt0092086,P8ROhP_3-Qk,\"El Guapo and Jefe argue about the meaning of the word \"\"plethora\"\" until Jefe cleverly changes the subject to Carmen.\"\ntt0092086,1l7e9BD_gos,\"Dusty's disguise is discovered by El Guapo, punctuated by Ned falling from the sky.\"\ntt0092086,ZoZ_4nNNn9M,\"Lucky gives an inspiring speech to the villagers, urging them to stand up together and conquer El Guapo.\"\ntt0059578,18QXG4aUP60,\"Monco adds up the dead, then rides off to collect his bounty.\"\ntt0059578,GkkdbPYW5QU,\"Once Monco evens the odds, Mortimer kills El Indio.\"\ntt0059578,I2E8wW-YGBA,\"Challenged during a meal, Mortimer outdraws Wild.\"\ntt0059578,3ucBVz_IFGk,Monco and Mortimer shoot each other's hats.\ntt0059578,k7Awv1n438I,\"At the saloon, Mortimer seeks out Wild and provokes him.\"\ntt0059578,XsiXAckgh6I,\"Using an array of firearms, Mortimer guns down a fugitive.\"\ntt0059578,_GsQYT-btPA,\"Monco lays down a winning poker hand, then kills Red and his men.\"\ntt0059578,xpkA68e5HN4,\"El Indio duels with an enemy, using the chime of his watch as a cue to draw.\"\ntt0059578,p5Lzdntomy4,\"When Monco and Mortimer show off their uncanny marksmanship, their opponents scatter.\"\ntt0059578,d66vE__YWME,\"Just as El Indio's watch concludes its tune, Monco arrives to help Mortimer.\"\ntt0094012,FPZ4yah3ROU,Pizza the Hutt threatens to come after Lone Starr if he doesn't come up with the money.\ntt0094012,aeWbTffMq-A,Captain of the Guard finds out his men have mistakenly captured the gang's stunt doubles.\ntt0094012,nRGCZh5A8T4,\"Colonel Sandurz explains to Helmet \"\"everything that happens now is happening now\"\" thanks to new home video technology.\"\ntt0094012,B-NhD15ocwA,King Roland gives Dark Helmet the combination to the air shield when he threatens to reverse Princess Vespa's nose job.\ntt0094012,wHNB8IHfHdU,Dark Helmet realizes he is surrounded by assholes literally.\ntt0094012,NAWL8ejf2nM,Space Ball One goes to plaid when Helmet insists on taking the ship to Ludicrous Speed.\ntt0094012,rGvblGCD7qM,The Radar Technician demonstrates that the radar is jammed.\ntt0094012,fgRFQJCHcPw,Yogurt explains where the real money from the movie is made: merchandising!\ntt0094012,hD5eqBDPMDg,Dark Helmet and Colonel Sandurz supervise the troops combing the desert.\ntt0094012,eGoXyXiwOBg,Dak Helmet acts out his fantasy of winning over Princess Vespa using action figures of the movie's cast of characters.\ntt0094012,pPkWZdluoUg,Lone Starr meets Dark Helmet for the first time for the last time and they compare their schwartzes.\ntt0299981,DvS1BdiVC7o,Duncan MacLeod fights The Guardian and has to decide between taking the source or giving it up.\ntt0299981,Rb5mk6TfzoM,Joe Dawson fights against The Guardian and he loses.\ntt0299981,RZCFh9yDIOs,The Elder tells the group the origin of The Guardian.\ntt0299981,uOPuo29uzFk,Duncan MacLeod has flashbacks of his failed relationship with Anna Teshemka.\ntt0299981,ze-GArhI0iM,The Guardian and Duncan MacLeod face-off for the first time.\ntt0299981,mj-34Q3fCHs,Zai Jie fights The Guardian and loses.\ntt0299981,7j9gs7xZ-9M,Zai Jie tells the group that The Guardian of the Source has risen.\ntt0299981,RAFmFyb1siI,Duncan MacLeod saves a girl from two attackers and mistakes her for his lost love Anna.\ntt0299981,ZEliNNDLyUg,MacLeod and his allies take on a gang who are trying to light an innocent man on fire.\ntt0887912,njyllF8b_W4,Staff Sergeant William James shares various mementos of bomb parts that almost killed him\ntt0887912,rviQWy48B_w,\"Sergeant JT Sanborn and Staff Sergeant William James return fire against an insurgent sniper, and then have to wait it out in the hot desert.\"\ntt0887912,lA1bgUYjJ0I,\"With the clock ticking, Staff Sergeant William James attempts to disarm a bomb that has been strapped to a man's chest.\"\ntt0887912,LxmnOxCk3dM,Contractor and the rest of his private security team become under attack by an insurgent sniper.\ntt0887912,Bnmo8X2kwpk,Colonel Reed praises Staff Sergeant William James's heroism in the face of danger.\ntt0887912,nuNQY06FEOc,Staff Sergeant William James diffuses a car bomb while Sergeant JT Sanborn and Specialist Owen Eldridge provide cover.\ntt0887912,WiXoeYPz1LY,Staff Sergeant William James opens the trunk of a car to find it rigged with an enormous amount of explosives.\ntt0887912,IsgHQHIeiBk,\"After disarming one bomb, Staff Sergeant William James discovers that there are way more explosives in the area than he had originally anticipated.\"\ntt0887912,Jc_h1ufAXYs,Staff Sergeant William James is walking towards a bomb site when a mysterious man comes speeding in his direction.\ntt1023111,y5oIDeR0YjA,Ryan confronts Jake in the bathroom and demands that he participate in a fighting tournament.\ntt1023111,yPAPYhU_zsQ,Baja gives an injured Jake some extra motivation before his next fight.\ntt1023111,Ekl021fmWGc,Jake opens up to Roqua about his past while asking him to continue his training.\ntt1023111,QQq6L1Sw4Ck,An inconsiderate driver and his friends become victims of Jake's uncontrollable temper.\ntt1023111,-mjnbKL7fHQ,\"Roqua demonstrates the power of proper breathing to his new student, Jake.\"\ntt1023111,ghpYpbgtLIs,Ryan introduces Jake to mixed martial arts when the two square off in the middle of a party.\ntt1023111,F656vZAFGdM,Jake underestimates the shorter Miles when Roqua pairs them up to spar.\ntt1023111,9LiQ5MZKYUY,Jake faces off against Dak-Ho in the first round of the underground Beatdown tournament.\ntt1023111,aJ7NA4hNNc0,Baja asks Jake to show her some of his moves before they are interrupted by his little brother.\ntt1023111,M3byaFhO18Q,Jake and Ryan have their final showdown in the parking lot of a crowded nightclub.\ntt1023111,5OZbydb0FdY,Jake prepares for the Beat Down Tournament with intense workouts at Roqua's gym.\ntt0430912,KdkEzfozXss,Glass attacks Catherine after she taunts his lack of willpower in stopping her mass murder spree.\ntt0430912,bDT3nUjN2fs,\"As bodies mount, Detective Washburn pressures Glass to come clean with what he knows.\"\ntt0430912,dzw9h7GnERM,Detective Washburn talks to Glass about the murder victim.\ntt0430912,FGSmKV6K__o,\"Catherine recounts her experience in San Francisco with Nick Curran, as well as her sexual encounter from the night before.\"\ntt0430912,LTS4bKTgyik,Catherine visits Michael at the psychiatric asylum.\ntt0430912,cf_0FH_2934,\"Catherine delivers dirty talk to Michael during their session, leaving him utterly speechless.\"\ntt0430912,SfQAxD8v6Mc,Catherine meets with Glass for the first time and sizes him up.\ntt0430912,_ZrJXN_vrBs,Catherine starts flirting while being interrogated by police inspectors.\ntt0430912,PXEuRW2cOqE,\"Catherine is aroused by her passenger while driving a very fast car, causing them to drive off into the ocean.\"\ntt0430912,pWhT-4m-4ro,Catherine seduces Michael while discussing murder.\ntt0430912,B96DjgGIxv4,\"Glass stands trial for psychiatric testimony, offering his opinion on Catherine.\"\ntt0486321,xEOHMxA4C-E,The boys help the astronauts correct a computer malfunction by using an olive to fix a hot plug.\ntt0486321,wM-OyBwhuOk,The boys take off on the space shuttle to the moon as their mothers watch in horror.\ntt0486321,UuRb2YYEYfc,Nat convinces his friends to go to the moon with him.\ntt0486321,UhRriAA2Kf0,Grandpa talks to Nat about adventures.\ntt0486321,q2rT8XyVHhA,Nat saves Scooter from being left behind in space and Scooter vows to go on a diet after his near death experience.\ntt0486321,Pz1OFqEVi3c,The boys dance to The Blue Danube during their time in space.\ntt0486321,maWca5IRGt8,Grandpa tells Nat about the time he flew with Amelia Earhart.\ntt0486321,UuuyzaRWiA0,Grandpa fights Yegor and Nadia comes to the rescue with her big foot.\ntt0486321,qFiFKP6Jxoo,The boys are freed from the test tube and everyone celebrates the landing of the space pod on the moon.\ntt0486321,_E84Vp8Rnfo,Nat takes a ride in Neil Armstrong's suit and walks on the moon with him.\ntt0486321,GRjqtMFumZk,Buzz Aldrin makes an announcement at the close of the movie.\ntt1124048,HnyvaqsAcVQ,\"Possesed by evil, an old man tortures a girl he kidnapped. Just then the local townspeople show up to confront him.\"\ntt1124048,tLadr2v8AAA,\"Sophia confronts the only one of her friends left, Kathleen, who is still possesed by evil and looking to kill some more.\"\ntt1124048,WEJZDUTGV8s,\"Sophia and Rob are looking for their friends when they find a possessed Amber eating the remains of another friend. An evil, blood lust filled Kathleen joins the party soon after.\"\ntt1124048,rCmp3o84w6A,\"While on a guided tour, the girls get a harsh surprise when they find out their tour guides are actually there to rob them and leave them in the desert.\"\ntt1124048,5USau0NMAxU,\"Sophia, Rob and Jeremy discover that the tour guides driving them around are the ones involved with the disappearance of Sophia's friends.\"\ntt1053859,6mQAgXT_lVM,\"In the midst of a ritual to stop the curse, Lisa and Rose have a final controntation with the ghost of Kayako.\"\ntt1053859,RdU8F4C9oDw,\"After getting into a fight with Max, building manager Mr. Praski goes back to his car, but he is not alone.\"\ntt1053859,tab4Nxd8GlY,Dr. Sullivan investigates the halls of the asylum. The only thing she finds is that the ghosts that Jake spoke of have now become residents.\ntt1053859,YMA_1YDqjYc,Gretchen spends her night finishing a painting only for vengeful ghost Kayako to interrupt in the scariest of ways.\ntt1053859,IsG-tXSQRX4,\"Despite being locked in an asylum, the ghost that killed his family still manages to get to Jake.\"\ntt1053859,4dm-ZfP3fbs,\"After Lisa leaves Rose's room, Toshio appears.\"\ntt1053859,3jNEs5M1Sik,\"After getting possessed by the spirit of Takeo, Max goes after Naoko with a vengeance.\"\ntt1053859,7tg6TqW7u-A,\"A mother suggests her daughter take a bath, not knowing that the ghost Kayako plans to join her.\"\ntt1053859,Up1eNda6Rt0,Lisa and Andy are so into making out they don't notice they have stumbled into an apartment with a dark past.\ntt0093870,9cySKHPqIjw,\"On his first night patrol, RoboCop stops a robbery and prevents a rape.\"\ntt0465580,QjUkgodriIo,Henry tests Agent Mack's mental fortitude by manipulating him to put a gun in his mouth and pull the trigger.\ntt0465580,6OEA4J0sobo,Henry and Kira head back to the United States when Kira finds out that Henry was lying to her.\ntt0465580,KAOlo7Ijo5k,Nick sacrifices himself in an attempt to save Kira from Henry's mind tricks.\ntt0465580,NNfMLLVwiN0,Nick battles Agent Holden.\ntt0465580,bYUJuCsymVM,\"Henry, Victor, and Kira head to the top of a building to collect the suitcase, but are attacked by a Chinese gang.\"\ntt0465580,tjRYZON0o9w,Nick goes to see Wo Chiang to have his memory of the last two hours erased.\ntt0465580,nhm5xXXqzqE,A discussion at gunpoint between Nick and Henry Carver dissolves into a telekinetic shootout with Victor.\ntt0465580,fU-ICxohwSc,Kira Hudson convinces Agent Mack that he had a brother and Agent Holden murdered him.\ntt0465580,gpCFk7jK810,Cassie speaks with Teresa while she fixes Nick's injuries.\ntt0465580,Ki5TEx2nIHQ,Nick and Cassie run through a fish market to escape the Asian gang who are trying to kill them.\ntt0465580,0Ba6y1Y8JjU,Cassie believes she can see her own death through her drawings and Nick tries to comfort her.\ntt0093779,rMz7JBRbmNo,\"Westley tricks Vizzini and poisons him, allowing Westley and the Princess to escape together.\"\ntt0093779,rUczpTPATyU,\"Westley beats Montoya in a sword fight, but instead of killing him, he respectfully knocks him over the head.\"\ntt0093779,lISBP_fPg1s,\"Westley fights Fezzik, and narrowly defeats him, knocking him out with a strangle-hold.\"\ntt0093779,XeO3jMZphhs,\"Montoya, Westley, and Fezzik devise their plan to break into the castle and break up the wedding.\"\ntt0093779,3odMTPuzLwY,Montoya and Westley devise a plan to sneak into the castle and stop the Princess's unwanted wedding.\ntt0093779,niul8Hy-3wk,\"The Princess mistakes a masked Westley for a cad and pushes him down the hill, but then realizes that he is her lost love.\"\ntt0093779,d4ftmOI5NnI,Miracle Max gets yelled at by his wife Valerie while he tries to bring Westley back to life.\ntt0093779,XCHKYNFH9Lk,\"After kidnapping the Princess, Vizzini gets angry when his men are reluctant to kill her.\"\ntt0093779,wUJccK4lV74,Westley tricks Humperdinck into surrendering by telling a chilling tale of how he plans to dismember his body.\ntt0093779,JFo6iLDNzX0,Westley gets tortured in the dungeon by the Count.\ntt0093779,D9MS2y2YU_o,\"Westley chases Vizzini as they climb a rope up the Cliffs of Insanity, but Vizzini cuts the rope before Westley reaches the top.\"\ntt0093779,I73sP93-0xA,\"Inigo avenges his father by killing his murderer, Count Rugen.\"\ntt1232783,DyYuDAmUqRk,Mrs. Crenshaw hunts for the killer to protect her girls.\ntt1232783,0PIbNyzb5YM,\"The girls have a violent encounter with Garrett, who they believe is the killer.\"\ntt1232783,el6nzbxrsD0,Cassidy hears Maggie's cry for help and runs to find her in a room surrounded by fire.\ntt1232783,IThWCij8W0k,Kyle attacks Cassidy but Andy saves her. Jessica and Cassidy find out Andy is the killer.\ntt1232783,70gIBwjO49M,\"Jessica, Claire, and Ellie lower Cassidy into the well to see if Megan's body is still down there.\"\ntt1232783,shehrh353Oo,\"Ellie freaks out about Megan's accidental death. Jessica, Claire, and Cassidy discuss what to do next.\"\ntt1232783,ChPLYyubXiE,\"Chugs lays down on a couch and drinks some wine, waiting for Dr. Rosenberg when the Killer sneaks in.\"\ntt1232783,nCzYHB_8hXU,Garrett puts a tire iron through Megan's chest after a sorority prank goes on too long.\ntt1232783,ZoJqs349ahs,Jessica is insulted by Maggie and some truths are uncovered.\ntt1232783,TJmgMmjx2eU,Mickey is brutally killed at the party.\ntt1232783,yPg84oVPnE0,The girls tease each other and toast to their sorority.\ntt1232783,e72atw7hctA,The sorority sisters play a wicked prank on Garrett for cheating on Megan.\ntt2091473,qcdR-kyqqHs,Steve Butler and Sue Thomason start persuading land owners to let the natural gas company drill on their land.\ntt2091473,LX8mxeGuqi4,\"After finding out that Dustin Noble's entire activist campaign has been based on a lie, Steve Butler confronts him.\"\ntt2091473,6ZSsIZ40GAQ,\"Steve Butler has a conversation with Frank Yates, the man who was the first to stand against the company.\"\ntt2091473,uW7Pev3qG1k,Steve Butler is confronted by some farmers in the local bar.\ntt2091473,THPVDNnsVT4,\"Steve Butler tries to acquire a farmer's land, but finds that the entire town has figured out his game and won't be selling.\"\ntt2091473,aU6KHvuvxBw,\"Steve Butler confronts Dustin Noble, an activist who took a bribe but is still fighting the company.\"\ntt2091473,ih0GAi4HWwA,Steve Butler and Sue Thomason deal with an activist that has shown up in town to stop the natural gas company.\ntt2091473,vbbHaMTLrbg,\"During a town meeting about natural gas, Frank Yates, a science teacher, questions the saftey of fracking. Steve Butler does his best to argue, but it doesn't go well.\"\ntt2091473,LMQd7xw1Wf4,\"Steve Butler meets with a local offical, who wants to be bribed.\"\ntt2091473,5pLpIsdg50c,Steve Butler has a meeting with a few top people from the natural gas company he works for.\ntt0100502,TTUvtnPvN8k,RoboCop faces Cain head-on in a game of chicken.\ntt0100502,IoavfE6TCbw,Cain lures RoboCop into a trap where his men rip the cyborg apart. Literally.\ntt0100502,-9DrPi3ki0g,\"With RoboCop clinging to the hood, Cain rams his vehicle into walls and telephone poles.\"\ntt0100502,_m90Rm0RX-8,Dr. Faxx murders Cain and then has his brain surgically removed so she can use it as the central nervous system for RoboCop 2.\ntt0100502,moYXL6hX8vI,The dark and dystopian world of a future Detroit is illustrated through the latest episode of the news program Media Break.\ntt0100502,Yr1lgfqygio,\"RoboCop has been reprogrammed to dispense platitudes, manners, and lessons in not smoking.\"\ntt0100502,msaelEZ_eEs,RoboCop and RoboCop 2 battle it out at OCP headquarters.\ntt0100502,xrJkcV4DGZ4,\"RoboCop defeats a band of thieves, then questions the survivor about the hyper-addictive drug, Nuke.\"\ntt0100502,xRkZAfoaEw8,RoboCop rips the brain from RoboCop 2 and pummels it.\ntt0100502,7ke8XUZSYLw,\"RoboCop 2, wired with Cain's drug-addled mind, goes berserk and attacks everything.\"\ntt0100502,NJIjNs_s2NI,The Old Man is not impressed with the RoboCop 2 prototypes.\ntt1477855,UXK7kf1wmqI,Franklin D. Roosevelt and Daisy have a moment alone amid all the chaos in the house.\ntt1477855,UvJ8UDYipAg,\"After arriving at the president's mother's house, the King and Queen of England discuss the rooms they have to stay in.\"\ntt1477855,_5p4QdtkbC8,\"On their trip to visit to President, the King and Queen of England decide to make a stop so they are not too early.\"\ntt1477855,2I5V3zd1J8M,King George VI and his wife have an argument about what a king should do.\ntt1477855,i5ogNBaY2BY,\"During a big picnic, the time has come for King George VI to eat a hot dog, something everyone has been fretting over.\"\ntt1477855,N18AtSAxJ1I,Franklin D. Roosevelt and King George VI finally have a private and very frank moment.\ntt1477855,H4PpclIJZHA,Missy reveals the truth about Roosevelt's many women to Daisy.\ntt1477855,ioCaBQBjEBU,\"Franklin D. Roosevelt takes his cousin, Daisy, out on a drive and makes a pass at her.\"\ntt1477855,KuMy7-yMXO8,\"Daisy is invited to visit her cousin, the President of the United States, Franklin D. Roosevelt.\"\ntt1477855,1fxRMQLYRWs,Daisy confronts Roosevelt after finding out that she is only one of many women that he is having an affair with.\ntt1814621,jnN4PnoJ1vw,\"Portia finally tells Jeremiah, a student she has been helping get into Princeton, that she believes she is his biological mother.\"\ntt1814621,gawe9W5HYtQ,Portia visits her mother and finds out there are some things her mother has failed to mention recently.\ntt1814621,O6Obigg85oo,\"While doing a presentation on Princeton at a school, Portia gets into an argument with some outspoken students.\"\ntt1814621,kcONgsdSLq8,\"After helping a cow give birth, John and Portia meet in the showers.\"\ntt1814621,OVXpH5cKWf0,Portia and her mother go to a birthday party for John Halsey's adopted son.\ntt1814621,8jN4i-6ikWY,\"After dinner, John kisses Portia and the evening goes downhill from there.\"\ntt1814621,MHpGJ-jtGy4,\"Aftering having her heart broken, Portia decides to confront her mother about her life choices.\"\ntt1814621,f4vVtsfEMRI,\"Portia reads Jeremiah's touching college essay, but the moment is ruined by her ex.\"\ntt1814621,KFASQKT9JSs,\"When Portia gets home from the birthday party, she finds Nelson in her back seat and returns him to his father, John.\"\ntt1814621,Wi41GDMQxr0,\"While hosting a party for all their friends and colleagues, Mark breaks up with Portia.\"\ntt0082846,0eQBa4JQzDI,\"Norman asks Billy what a thirteen-year-old does for recreation in California, but doesn't like the answer.\"\ntt0082846,JHACE2LTz_s,Bill asks Norman if he can sleep with Chelsea while staying in his house.\ntt0082846,ocyplDqvhuo,Ethel comforts an angry and scared Norman.\ntt0082846,kHTAJHod8-g,Ethel gets angry when Chelsea speaks poorly of her father.\ntt0082846,irkGAhW7wlQ,Norman and Billy catch their first fish together.\ntt0082846,f20aUH5IG9s,Chelsea shares her frustration about her father while Ethel tries to put things in perspective.\ntt0082846,MIjkFrmSCYU,Chelsea tries to make peace with Norman.\ntt0082846,Jkk2ai88ED0,Ethel is relieved that Norman feels better.\ntt0082846,Vyrr1vSRYjs,\"Norman lets Billy drive the boat, but when Billy crashes into a rock, Norman gets thrown into the water.\"\ntt0082846,ARLZaZd3fAg,Ethel and Norman convince Billy to go fishing.\ntt1272878,_SVAzrGlEmc,\"Undercover agent, Bobby, goes to Stig's apartment, his former partner in crime, but finds that he has company.\"\ntt1272878,5wRnpjDfEz8,\"Bobby chases down Stig and after a tiring fight, they decide to be truthful with each other and realize they are on the same team.\"\ntt1272878,7Vhxv6URu5I,\"Criminals Bobby and Stig rob a bank, but they decide to take care of the police first.\"\ntt1272878,3lqYg7jpjfI,\"After robbing a bank, Stig follows orders to betray Bobby and escape with the money.\"\ntt1272878,m_KtsgEoK4Q,Quince and his men try to kill Stig.\ntt1272878,Um-Nj5FvfE4,Stig helps Bobby get out of his apartment when it is invaded by a hit squad looking to kill.\ntt1272878,EeYI0V2j12g,\"Bobby and Stig go after the man they think set them up. The only problem is, they don't want to work together.\"\ntt1272878,DcwhTBEcbBw,Bobby and Stig interrogate a prisoner at Deb's house when they are attacked by a hit squad led by Quince.\ntt1272878,BLFU01WKeBs,\"Bobby and Stig get their enemies together with the promise of the $43 million dollars that was stolen, but Bobby has a suprise in store for them.\"\ntt1272878,jbeyKcGqxyI,Bobby confronts Quince on a military base about the stolen money.\ntt1231587,vuJrsCBt0rQ,\"Working at a pet store which specializes in dog care, Nick finds a set of car keys up a pooch's butt.\"\ntt1231587,Xwmvrx1wq4s,Adam and Nick visit their old friend Lou in the hospital after his unsuccessful suicide attempt. Lou's eagerness to start the vacation weekend leads him to pull out his own catheter.\ntt1231587,nVRCznRsCgY,\"After losing a bet, Lou has to perform oral sex on Nick.\"\ntt1231587,ic7F0sCFcZ4,\"When Phil has his arm ripped off by a passing truck, Lou finds it hysterical.\"\ntt1231587,T3iSphEl9WI,\"The guys discover that they are inhabiting the bodies of their younger selves in the '80s, except for Jacob, who hadn't been born then.\"\ntt1231587,jVS8e7I6Co4,\"When waking up in the hot tub after a night of debauchery, Lou proceeds to projectile vomit all over a friendly squirrel.\"\ntt1231587,clP9p1ipHEw,Lou has sex with Kelly who is Adam's sister and Jacob's mom.\ntt1231587,CQuB7dB-elg,\"Despite crashing on the ski slopes, Adam, Nick, and especially Lou feel like their 19-year-old invincible selves.\"\ntt1231587,m9pdH02FxPY,\"Once the guys realize they have time traveled, they debate what they are going to do next.\"\ntt1231587,eSDTJ1sE29E,Lou scolds his friends for letting him down once again.\ntt1231587,qU93Cguv4W0,Adam opens up to April as they fall for each other.\ntt1231587,pqzMo6SfXX4,\"Adam convinces Lou that he can be the hero and face down his nemesis Blaine, but it doesn't quite go as planned.\"\ntt2083355,1BimnTWx1b8,\"Lance gets upset that Harper was secretly writing a biography of him and his wife, Mia, does her best to calm him down.\"\ntt2083355,ntsuIs20RW0,\"Lance, Harper and Candace rush to the hospital when Robin's water breaks, but they get stuck in traffic and Lance delivers the baby in the back of his SUV.\"\ntt2083355,KKOR6WC_fUg,The ladies watch the big football game at Mia's home while the guys go to the game.\ntt2083355,aPeZmPcpiu8,Lance finds out that Harper has been writing a biography on him and confronts him about it.\ntt2083355,Cqc48kDMG0Q,\"While heading to Lance's football practice, Quentin and Julian get into a fight in the backseat.\"\ntt2083355,J_L4nLBweuQ,Shelby insults Candy about her slutty past and a catfight breaks out.\ntt2083355,ESSsStp3pFU,\"Quentin, Julian, Lance and Harper entertain the girls by performing \"\"Can You Stand The Rain\"\" air band style.\"\ntt2083355,cG0ZIxenJY8,\"Julian shows his friend, Quentin, an internet video showing Julian's wife stripping at a college party.\"\ntt2083355,tXNMNMLQzwg,\"Harper meets Jordan's new boyfriend, a white guy.\"\ntt2083355,0U-kaLEaThU,Harper gives the eulogy for Mia and Lance finally breaks down as her casket is lowered.\ntt1103275,QR4x2_6qzXg,Leonard consoles Michelle after Ronald leaves.\ntt1103275,Lf93YLs4004,Leonard and Michelle plan to run away together after he professes his love for her.\ntt1103275,JcWawUzwoL0,Leonard and Sandra kiss as they look at his family photos.\ntt1103275,IvagCOQJuYg,Leonard shows Sandra his collection of photographs and opens up about his ex-fiancee.\ntt1103275,q1ogthNk040,Ruth gets emotional when she realizes that Leonard is leaving home for good.\ntt1103275,tdvq6Usjydg,\"Leonard tells Michelle that he loves her, but Michelle has a hard time hearing it.\"\ntt1103275,FOYr5wApG3k,Leonard invites his new neighbor Michelle into his apartment until her father calms down.\ntt1103275,V_qYvdPSRto,Michelle tells Leonard that she cannot go to San Francisco with him because she's getting back together with Ronald.\ntt1103275,8Fgz5cARQZo,Leonard gets upset when Michelle does not reciprocate his feelings for her.\ntt1103275,mqJxvhBThw0,Leonard comforts Michelle after she begins to panic about her relationship with a married man.\ntt0093870,fEpjHtkttYg,\"When RoboCop intervenes in a gas station robbery, he comes across one of the criminals that ended his old life.\"\ntt0093870,LMT8UN9bSiA,\"RoboCop roughs up Boddicker but cannot kill him, because that would violate one of his Prime Directives.\"\ntt0093870,2J8mkHUsiXY,RoboCop takes out Emil in a flood of toxic waste while Anne runs Boddicker off the road.\ntt0093870,I2JSXKFWqGI,Bob Morton's make-out session with a pair of sexy models is interrupted when Boddicker arrives.\ntt0093870,IvDNfFVpvZI,RoboCop blows away an entire factory full of criminals and gunmen.\ntt0093870,GLQiskRb02o,Dick unleashes ED 209 on the weakened RoboCop and the two battle it out through the halls of OCP.\ntt0093870,Ip7GGf2_b6Y,\"When Dick Jones takes the Old Man hostage, he's fired, thus negating \"\"Directive 4\"\" and clearing the way for RoboCop to take him out.\"\ntt0093870,UY89o4QFvQM,\"Buried under a pile of scrap metal, RoboCop fends off a final assault from Boddicker with a gruesome stab to the neck.\"\ntt0093870,5FcTzH6A4a4,Boddicker and his thugs torture Officer Murphy before blowing him away.\ntt0093870,TstteJ1eIZg,Dick's boardroom demonstration of the Enforcement Droid 209 goes awry when the droid opens fire on Kinney.\ntt1172994,aofM4j2teCw,Samantha breaks free during the satanic ritual.\ntt1172994,KNby2wixjzg,\"While sneaking around the house, Samantha gets a scare when the doorbell buzzes.\"\ntt1172994,tCFb_FossHk,Megan is creeped out by Mr. Ulman but Samantha wants to stay.\ntt1172994,-8CnljMrH3k,Samantha and Megan are welcomed into the house by Mr. Ulman.\ntt1172994,QimMZHQFaXk,\"Hearing noises from Mother's room, Samantha climbs the stairs to the attic, becoming dizzy and fainting.\"\ntt1172994,421eYc8zCtk,\"Samantha awakens to find herself about to be sacrificied in front of Mr. Ulman, Victor Ulman, Mrs. Ulman and a Demon.\"\ntt1172994,kS9NLX0pFVs,Mr. Ulman chases down a bloody Samantha in the cemetery as the moon ascends.\ntt1172994,lsOQqbPYVHY,Mrs. Ulman meets Samantha before the night begins.\ntt1172994,Aac0krsfzSQ,Samantha and Mr. Ulman try to come to an agreement on the babysitting position.\ntt1172994,PnbVXrBlmJ4,Samantha gets a weird phone call from Mr. Ulman in regards to the babysitter position.\ntt1612774,DMyBC0gLSgg,\"After witnessing his fellow tires being burned, the evil tire retaliates on humankind, leaving a litany of headless bodies in its wake.\"\ntt1612774,nAp6q0q84vc,\"Zach tries to convince Hughes and the police that the tire is alive. Naturally, no one believes him.\"\ntt1612774,OtXieOlT7SA,The evil tire stalks Sheila to her motel and watches her shower -- as does the audience watching from afar.\ntt1612774,vldYVG_5cZY,The evil tire follows the Truck Driver to the gas station and gives him a telekinetic splitting headache.\ntt1612774,WV12BpbBrro,Lieutenant Chad gives the audience a bizarre introduction to what they are about to witness.\ntt1612774,HEYktlQpnGE,Lieutenant Chad and Sheila try to trick the evil tire into its own destruction.\ntt1612774,rrzV0FvYypE,Lieutenant Chad continues his investigation of Martina's death by interrogating the inn's owner.\ntt1612774,ae6HngmeUq0,\"Lieutenant Chad attempts to convince his fellow police officers that the show they have put on is over, and that they exist in an absurdist world where reality does not matter.\"\ntt1612774,uB4qHneHB1E,\"The audience awakens to a new day and a new kill, as the evil tire sets its sights on an innocent little bunny.\"\ntt1612774,Ats9HUDVBxE,The tire becomes aware of its ability to destroy.\ntt1640459,ej_hfok3bEc,\"The Hobo goes on a shooting spree in Hope Town, killing criminals left and right.\"\ntt1640459,1k1r2zFnwQc,The Hobo addresses a group of newborn babies at the hospital with a dire warning.\ntt1640459,mp_oRA5-HLM,\"The Hobo takes Abby to the hospital to get her fixed, as The Plague gears up to hunt the Hobo down.\"\ntt1640459,LNqOTIBKycE,The Hobo sacrifices himself for a town that will never care about him.\ntt1640459,0vXx2vS4iC0,Abby tries to rally support for the hobos.\ntt1640459,cZZJMc6QPR4,The Hobo and Abby are attacked in Abby's apartment\ntt1640459,4WizLeIdckw,The Hobo stops some thugs from robbing a pawn shop.\ntt1640459,hRBkyOT8ZPk,\"The Hobo needs money to make money, so he takes up an offer to eat glass for cash.\"\ntt1640459,07rlBwvlBDk,The Hobo is welcomed to town by Slick and Ivan.\ntt1640459,cKe4qiOYFyM,The Drake teaches his brother Logan a lesson in front of the people of Hope Town.\ntt1640459,rtQQwsPJeBY,Abby tucks the Hobo in for bed while he warns her about the danger of bears.\ntt0074285,fxYkJbBKxZE,Carrie gets her period for the first time in the school's public shower and is taunted by the other girls.\ntt0074285,12wHDwNXBL0,Carrie is punished and beaten by her mom for getting her period.\ntt0074285,v-WZINgHnFQ,Billy slaughters a pig while Nancy and Kenny watch.\ntt0074285,ZpX0rril7QA,Carrie begs her disapproving mom Margaret to allow her to go to the Prom.\ntt0074285,IIBg9UQ_mMU,\"Carrie sets fire to her school's Prom, killing and terrifying her classmates.\"\ntt0074285,XgBvOoE5uG0,\"Carrie gets her revenge on Billy and Chris by blowing up their car, killing them both.\"\ntt0074285,I7XHygPKbYI,\"Carrie fights back when her mother attacks her, for the last time.\"\ntt0074285,YOhPdUMzXjY,\"Moment's after being embarrassed at Prom, Carrie uses her powers to begin terrorizing her classmates.\"\ntt0074285,DJcTG-VnLrI,\"After winning Prom Queen, Carrie is doused with a bucket of pig's blood.\"\ntt0074285,oDA4sUtM9B8,Carrie and Tommy are announced as Prom King and Queen.\ntt0074285,ImZ2LrvQcCY,Carrie gets ready for Prom while her mom Margaret tries to convince her not to go.\ntt0074285,I68rpTRe8CE,Carrie affirms that she is going to Prom while her mom disapproves of her powers which she believes are from Satan.\ntt1912398,8kssysjyPl0,Frank storms the American Superstarz TV studio and holds the entire stage hostage as he delivers his lecture to the nation.\ntt1912398,p1tcs_fTz8k,\"After wounding cable news TV blowhard Michael Fuller, Roxy does her best to finish the job.\"\ntt1912398,wKbZcaU-83E,A shady gun dealer tries to sell Frank a bunch of firearms.\ntt1912398,rjsre1tcGWU,Roxy makes an impassioned speech to Frank as to why Alice Cooper is all kinds of awesome.\ntt1912398,yaxDM67F72o,Frank and Roxy form a stronger bond as they target practice together.\ntt1912398,V2NGM0LYqss,\"Roxy seeks validation from Frank when she asks him if he is attracted to her, despite their vast age difference.\"\ntt1912398,1ZA2qfP3oPc,\"Roxy tries to convince Frank that if he kills himself, he'll end up killing the wrong person.\"\ntt1912398,yg0yDvEqfw4,Frank is inured by the epic vacuity of American TV shows.\ntt1912398,Ix8Gxp7XlDs,Frank hates his neighbors and wants to brutally murder them with a shotgun.\ntt1912398,viSCkcVXoR4,Frank rails against the inanity of modern American life.\ntt1172570,uSYD6YSaKgQ,\"Bronson makes his art teacher, Phil, into a living work of art against his will, while the prison guards wait helplessly outside.\"\ntt1172570,19qTZoeOEZg,\"After taking a lowly prison guard captive, Bronson threatens the Prison Governor that he will kill the hostage if his demands are not met.\"\ntt1172570,oEPNSzLHZ2w,\"Alison seduces Bronson by straddling him, wearing nothing but a loose-fitting sweatshirt and panties.\"\ntt1172570,e9LJG1JcXDE,Bronson concocts an escape from the asylum using his offbeat imagination.\ntt1172570,1l30kkPQfJM,\"Bronson takes his art teacher, Phil, hostage.\"\ntt1172570,7JOey0CIgMM,Bronson flourishes as an artist while in prison.\ntt1172570,1idxZC0VSxE,\"Bronson urinates on his opponent after winning a fight, and then tries to negotiate his pay as a fighter.\"\ntt1172570,AYWEjOf5pBM,Bronson talks about the various prisons where he's been incarcerated as an inmate.\ntt1172570,S_FAk6ykdvw,Bronson recounts his childhood and young adult endeavors in crime and violence.\ntt1172570,afifn22_IR0,\"When Alison tells Bronson that she is leaving him, he tries to win her back by getting her some jewelry.\"\ntt1175709,MLZ4KzVPlHM,A surprise pregnancy causes a rift between David and Katie.\ntt1175709,fWallK7KgrY,David tries to stop Katie from moving out after he assaults her at a party.\ntt1175709,XF-736UPy0k,\"Katie has an awkward moment at lunch with Lauren, and then meets with a divorce attorney.\"\ntt1175709,lOwjq5Cuo-w,\"David moves to Galveston, Texas and starts dressing as a woman, years after his wife's mysterious disappearance.\"\ntt1175709,WCDmhXz9Gsc,David is visibly uncomfortable as Katie celebrates her graduation and acceptance to medical school.\ntt1175709,sTWdAdhTfYw,Katie tries to talk to David about whether or not he wants kids.\ntt1175709,09-K2ec8lyc,Katie searches David's office for incriminating evidence she can use in a divorce.\ntt1175709,xV-Sj_rjJjE,David surprises Katie with their new apartment in the city.\ntt1175709,srJAamXGepU,Sanford encourages David to return to New York and join the family business.\ntt1175709,I7NtDM6eJq0,Katie and David enjoy a meal with the McCarthy family before David proposes to Katie.\ntt1175709,dw9seHSkfw8,Sanford does not approve of David and Katie moving in together.\ntt1175709,TLhaRe7Wvww,David meets Katie when he comes to fix a leaky sink in her apartment.\ntt0365485,nAZi4yusqlk,Julian recounts a bad experience while on a job in Manila.\ntt0365485,kpzlCDIwzEk,Danny and Bean are interrupted during some impromptu lovemaking when a tree falls on their house.\ntt0365485,V2j_JLlNU-I,Julian begs Danny to help him with one last assassination.\ntt0365485,RY_kXET2cyc,Julian surprises Danny and Bean by showing up at their house in the middle of the night.\ntt0365485,gbbnGtoH37o,Julian has a crisis of conscience while on assignment in Budapest.\ntt0365485,qCG-yxYUgJU,Julian frightens Danny by almost murdering an innocent man.\ntt0365485,Ks2OUiW2_QI,Julian explains to Danny how he would pull off a theoretical hit at the bullfight.\ntt0365485,aTJiK1i4iEQ,\"While at a bullfight, Julian tells a disbelieving Danny that he's a hitman.\"\ntt0365485,tyoB7bjdzgE,Julian gets suspicious when Danny tries to make small talk at the hotel bar.\ntt0365485,8pvAI1uDW9U,Julian tries to get rid of a boy and his mother while waiting for a target.\ntt0365485,OBuai_Vg6BQ,\"Julian is overcome with doubt while on his final job, despite Danny doing everything right to help him out.\"\ntt0365485,MeY7MlJJOdo,Julian turns some heads when he saunters toward the pool in just a Speedo and boots.\ntt0790736,EEF7cXH7BWo,Hayes sacrifices Julia to start the Staff of Jericho as Nick and Roy try to stop him.\ntt0790736,Bl6eouVUsCI,\"Nick and Roy question a suspect who picked up a suitcase full of gold, but before they have a chance to arrest him, the deado escapes.\"\ntt0790736,bNg1XX5ofhw,\"After being shot to death, Nick is given a new opportunity to serve.\"\ntt0790736,MhMqjcT7frc,\"Nick, Roy and other officers try to chase down Hayes but get caught up in a shoot-out with a bunch of deados.\"\ntt0790736,YXQ11lY6v7E,\"After Nick and Roy arrest Hayes and bring him to the station, they realize that it was all part of his plan to get the gold they had.\"\ntt0790736,czU3M9Ye268,\"Nick is introduced to Roy, a lawman from the 1800s and Nick's new partner at the R.I.P.D.\"\ntt0790736,fEocj1eLsmg,\"On Nick's first assignment to arrest a deado, Roy let's Nick take the lead. It doesn't go well.\"\ntt0790736,a_i-mCZH5bo,\"Roy finds a way to stop the Staff of Jericho just as Nick finally gets revenge on his ex-partner, Hayes.\"\ntt0790736,rZlzxsrv4ow,\"Detective Nick Walker and his partner Bobby Hayes lead a raid on a warehouse. During the chaos, Hayes betrays Nick and shoots him.\"\ntt0790736,5evtdZtPixQ,\"Nick and Roy rush to stop Hayes, who is assembling the Staff of Jericho. Some deados in cars try to keep them from reaching Hayes.\"\ntt0443536,6UKeesKIuZA,Nicky Flippers explains to everyone how Boingo is the real culprit.\ntt0443536,uiuioAkuDro,Red tracks down Boingo in his secret lair in an attempt to retrieve the recipes.\ntt0443536,zVw5a4OjcIE,\"In order to help him catch up with the bad guys, The Wolf gives Twitchy a cup of coffee.\"\ntt0443536,gGmzT-Km9-4,Granny competes in an extreme winter sports race and gets attacked by the opposing team.\ntt0443536,tzybulrxn3g,Twitchy and The Wolf find a shortcut around the mountain and then accidentally blow it up.\ntt0443536,WT1ae3uyKmI,\"Red falls out of the cable car and encounters The Wolf, who has many questions about Granny and her recipes.\"\ntt0443536,yclP414CLEM,Red pays a visit to Granny and gradually realizes that The Wolf is playing a trick on her.\ntt0443536,mmOGHo7MYK0,Red dreams of leaving the woods to explore the world beyond.\ntt0443536,HUIP208nZZs,\"When Red needs a quick way around the mountain, Japeth the Goat sings about the benefits of preparation.\"\ntt0443536,-rHnyOJuB0w,The Woodsman sings a song as he drives his schnitzel truck through the woods.\ntt0443536,V9hO8rmmaXc,\"Suddenly distrustful of Granny, Red takes a walk to clear her head.\"\ntt0443536,JG7S1-DC_KY,Boingo describes his evil plan with some help from a catchy song.\ntt0426459,HFWG8MMnr3Q,The monsters breach the defenses of the survivors. Bloodshed ensues.\ntt0426459,qv-kBgAcyUA,The survivors use teamwork to get Honey Pie out of the bar and to the escape vehicle.\ntt0426459,z2y29L0uG-U,\"The new heroine, Tuffy, tries to inspire the survivors to keep hope alive, but that moment is interrupted when the monsters make a grusome snack out of Boss Man.\"\ntt0426459,9sngqjpu920,A panicked Bozo accidentally shoots the Heroine during another monster attack.\ntt0426459,z_gsKwtCy4I,\"When Boss Man and Bozo learn that Harley Mom is still alive, they argue about whether they should sacrifice her to the monsters as per their plan.\"\ntt0426459,CkgFvisOr_o,Beer Guy has his eye ripped out by a monster when he peeks outside to look for help.\ntt0426459,FEEIJNnfoVI,\"The Heroine recalls her first encounter with the monsters. Later, Beer Guy loses his cool when he realizes his skin is melting.\"\ntt0426459,gt3ntYidpvs,\"After hanging the carcass of a dead monster outside of the bar, a group of larger monsters create a replacement batch in swift fashion.\"\ntt0426459,VtW2yWZHaO4,\"The creatures attack, killing Tuffy's son and puking some serious filith on Beer Guy.\"\ntt0426459,OF-1RqeBf7w,\"The bar and its patrons are hit with a monster attack when one of the smaller creatures breaches the defenses, bringing chaos and bloodshed.\"\ntt0462519,frFwwg5GJ4A,Sergeant Moorehead reads aloud a love letter supposedly written by Roger.\ntt0462519,8V18ashYdDM,Roger takes out his aggression on Dr. P on the tennis court when playing doubles with Amanda and Becky.\ntt0462519,gJGMeacAmec,\"Roger visits Lonnie, a cat loving hermit with major issues.\"\ntt0462519,A0mUARG3EzE,\"As the losers engage in paintball combat, Roger comes to the rescue of Diego, Eli, and Walsh from the perverse wrath of Lesher.\"\ntt0462519,VvcANYZCseI,Dr. P introduces himself to the class and makes sure everyone knows that this is not a Tony Robbins seminar.\ntt0462519,ZTo-aIIxihc,\"On the first day of class, Roger and the other losers get an earful from Dr. P.\"\ntt0462519,NnxqVjeZzZw,\"Roger tries his best to flirt with Amanda, but Becky does her best to make the elevator ride uncomfortable.\"\ntt0462519,FAaogkawcOk,\"While waiting for the arrival of Dr. P, the losers discuss what it means to receive a 'swirly' -- namely having your head dunked in a toilet and having it flushed.\"\ntt0462519,5BkF6NzmHTQ,Dr. P and a dressed up-in-drag Lesher demonstrate some lessons on how to reel in the ladies.\ntt0462519,2PdWkXbnArk,\"Despite the impending repercussions, when Roger and the other losers receive the 'initiate confrontation' page, they all successfully initiate a confrontation.\"\ntt0462519,fqDTy6JWcqE,\"As the losers celebrate at a bar, Dr. P pulls Roger aside and gives him a pep talk.\"\ntt0489237,ih2vstLiKps,Annie gives Mrs. X a piece of mind on the nanny cam.\ntt0489237,xsnWRnOdpS4,Harvard Hottie improvises on the date with Annie by grabbing pizza on the steps of a New York City museum.\ntt0489237,MSIKLnc1CSQ,Annie takes Grayer to the Museum of Natural History.\ntt0489237,Pr6lspmWBQs,The Harvard Hottie catches Annie with her pants down.\ntt0489237,rMlkN-7GRDw,\"Annie goes over the list of the nanny rules, and is surprised by Mrs. X while taking a bath.\"\ntt0489237,CpdolY2GNYI,\"When Grayer knocks over Annie in the park, she unexpectedly gets offered a job to be a nanny by Mrs. X.\"\ntt0489237,QznOO8Oo0Aw,Grayer chases after Annie as she drives away in a taxi after being fired.\ntt0489237,42YiyEjitsI,\"During a big time interview, when Annie is asked \"\"who is Annie Braddock,\"\" she realizes some soul searching is in order.\"\ntt0489237,9sAv5P29YIY,\"Harvard Hottie approaches Annie about a goodnight kiss, and things heat up from there.\"\ntt0489237,QkL9783wNOE,\"Grayer wishes upon a star, and Annie assures him that they will always be friends.\"\ntt0489237,hBXcQhkyRE4,Annie and Lynette run into Harvard Hottie and some of his obnoxious friends at a bar.\ntt1979320,v8pFeR0jO38,\"Niki Lauda wins the first two races, but James Hunt finally beats him in Spain. He gets disqualified, though, when it is discovered his car is too wide.\"\ntt1979320,3smxtEacf40,\"Niki Lauda, now with the Ferrari team, races James Hunt again, while their wives watch nervously.\"\ntt1979320,FDDEVXimR2I,Niki Lauda has his first race since the horrible crash that left him burned and scarred.\ntt1979320,o0lDxz0-Ukg,Niki Lauda has his first press conference since the accident and one reporter asks an inappropriate quesiton.\ntt1979320,iH0GlpUQYJY,\"At the German Grand Prix, a suspension arm in Niki Lauda's Ferrari breaks, sending the car flying into an embankment before it bursts into flames and is hit by other cars on the track.\"\ntt1979320,KrIUn0qTaCE,\"After heavy rain, Niki Lauda calls a meeting and suggests they cancel the race, but James Hunt disagrees and sways the room to his side.\"\ntt1979320,6f24cpQ_Q3k,\"James Hunt finds out that his wife, Suzy Miller, is involved with another man and wants a divorce.\"\ntt1979320,vXrH5Nk8r0U,James Hunt tells Niki Lauda that he only won the last race thanks to the car he was driving. Niki responds by telling James why he will never win.\ntt1979320,DdG74P7j6h8,Niki Lauda proves to Marlene Knaus that he is a race car driver when her car breaks down and they are picked up by two of his fans.\ntt1979320,EBu1PyU04FE,\"In a Formula Three race, James Hunt is almost beaten by a newcomer named Niki Lauda.\"\ntt0884328,BgfcwELYxUA,Norm gets attacked by massive tentacles that drag him into the mist.\ntt0884328,OH1mI4-LqHs,Mrs. Carmody incites the mob to kill Private Jessup as a human sacrifice to what she says is the abomination brought about by the wrath of God.\ntt0884328,858FWgtLMZU,Pterodactyl-like creatures and giant bugs invade the grocery store.\ntt0884328,AhaulXxlqCQ,\"The group encounters an enormous creature, hundreds of feet tall that dwarfs and bounces their SUV as it walks by.\"\ntt0884328,kjJUffVZtDs,\"A Biker volunteers to try to reach a truck in the parking lot, with a rope tied around his waist.\"\ntt0884328,GsbHL_lQy44,Ollie shoots Mrs. Carmody when she tries to have young Billy Drayton killed as a human sacrifice.\ntt0884328,EEPTRC2OP4w,\"While trying to retreive medical supplies from the nearby pharmacy, the group finds an infestation of monstrous spiders.\"\ntt0884328,fy9XNAkyfoc,David Drayton and the gang try to make it to his truck in the misty parking lot.\ntt0884328,CRnadHP5JOo,The mist descends upon the small seaside town as the residents hide out in the local grocery store.\ntt0427309,yIj06I32Gao,Tolson puts his students through their paces as they compete for a spot on the Wiley College debate team.\ntt0427309,k95b72QHu60,James informs Dr. Farmer that he has been chosen as an alternate for the debate team.\ntt0427309,xsrkNeInaiw,Henry tells James to prepare to take his place for the debate at Harvard.\ntt0427309,aVv3r2pUtFo,\"Henry, James and Samantha arrive in Boston and get a glimpse of the venue for their debate at Harvard.\"\ntt0427309,YmoTJu2iOfc,Samantha rises to the challenge when asked to debate whether or not blacks and whites should attend college together.\ntt0427309,XhrT25xehqs,Henry puts down his scripted remarks and speaks from the heart to win a debate for Wiley College.\ntt0427309,HEB1OaFSaRg,Tolson questions the debate team from a row boat as they recite their answers in unison.\ntt0427309,_yotZXdH09k,Dr. Farmer confronts Tolson about the rumors surrounding his Communist sympathies.\ntt0427309,z0MOAFFBXEM,Tolson and the debate team stumble upon a lynching on the back roads of Texas.\ntt0427309,fNNMKJ1f9JM,Tolson recites a poem from Langston Hughes and inspires his students with news of a revolution in Harlem.\ntt0427309,YaSPWpKQzKE,Henry challenges Tolson to tell the debate team about his father.\ntt0386032,iKn6FEEToy4,Michael Moore finds the one place in the United States that has universal healthcare: Guantanamo Bay.\ntt0386032,dLgbWZYjYfU,\"Patients who cannot pay their hospital fees are dumped by LA area hospitals in front of the Los Angeles Mission, discarded like garbage.\"\ntt0386032,ifPpI0fXMlw,\"Former British Parlimentarian Tony Benn articulates why democracy is a threat to those in power, and Michael Moore illustrates how those in power exploit democracy in the United States.\"\ntt0386032,PWjl2vignic,\"Michael Moore explores the Canadian healthcare system to see if it's as \"\"evil\"\" as it's made out to be by politicians in America.\"\ntt0386032,QtJwMKMz6-M,\"Michael Moore interviews Becky Malke, a health insurance salesperson, who breaksdown when she recalls the time she had to decline a family health insurance because of their pre-existing conditions.\"\ntt0386032,PA3kETvUXJg,White House tapes of Richard Nixon reveal the origins of managed care in the United States.\ntt0386032,2GSGR3yaFss,\"The insurance industry has had a long-running narrative about the alleged \"\"dangers\"\" of universal healthcare.\"\ntt0386032,irNr2fMIvTQ,Michael Moore takes a group of 9/11 first responders to Cuba to get the healthcare they cannot receive in the United States.\ntt0368794,iX5_-FORI1I,Jude answers questions from the journalistic establishment in England.\ntt0368794,7NjHdqTSahU,\"Arthur lays out his \"\"seven simple rules for a life in hiding.\"\"\"\ntt0368794,0H0br7XdsYY,Jude comes across Allen Ginsberg riding on a golf cart.\ntt0368794,F_NkBmFzs4s,\"In the early 1960s folk scene, Jack -- labeled the \"\"Troubadour of Conscience\"\" -- is fondly remembered by Alice Fabian.\"\ntt0368794,c4S5JKBUYHs,\"At the New England Jazz & Folk Festival, Jude stuns the folkie crowd by plugging in and going electric.\"\ntt0368794,3HtWFx3oHTo,\"Passing through the old, weird America of Riddle County, Billy comes upon a funeral, and the sounds of the song \"\"Goin' to Acapulco.\"\"\"\ntt0368794,pNo2v1jE8R4,\"Jack Rollins transforms into a born-again Christian in the form of Pastor John, and declares his faith to his congregation with the song,\"\"Pressing On.\"\"\"\ntt0368794,F2r8a3juyr0,\"While hitching a train to his next locale, Billy talks about the notion of \"\"freedom,\"\" as Bob Dylan blows his harmonica.\"\ntt0368794,j9JfUXYQY2s,\"In the autumn of 1964, Robbie and Claire fall for each other.\"\ntt0367959,jbXNiAQHn_A,\"Lady Murasaki trains Hannibal in the martial arts, and he puts his knowledge to the test when a butcher insults her at the market.\"\ntt0367959,WVE-c9ghcww,Hannibal corners Kolnas and threatens to kill his children if he does not reveal the location of Lady Murasaki.\ntt0367959,sKnZBUh-Lx4,\"Hannibal is nearly killed while seeking revenge on Grutas, but a well-placed time bomb enables him to escape.\"\ntt0367959,iMIWQRhrAmU,Hannibal traps Milko in a cadaver tank and lets him drown in the embalming fluid.\ntt0367959,5Ji_OS5Q17s,Hannibal incapacitates Milko with an injection after he breaks into his laboratory with a gun.\ntt0367959,Z8GFmshpZ0I,Hannibal tortures Dortlich for information on the whereabouts of the militiamen responsible for killing and eating his sister.\ntt0367959,uMp_5iP13r0,Lady Murasaki discovers the severed head of the butcher and decides to help Hannibal hide his involvement in the crime.\ntt0367959,N7FKW_RLs3c,Hannibal slaughters a butcher who refuses to apologize for making an anti-Japanese remark to his aunt.\ntt0367959,D-NH8NiKb54,Hannibal and MIscha watch as their lodge is destroyed and their parents killed during a battle between a Russian tank and a German bomber.\ntt0367959,rKfcW5cTU6o,Hannibal realizes that the starving Lithuanian militiamen are planning to eat him and his sister Mischa.\ntt1817273,FCMMjNlNSuc,\"After his son is arrested for drugs, Avery Cross goes to get him out of jail, only to find out that the kid he was hanging with and was getting the drugs from, is the son of the robber Cross shot and killed years ago.\"\ntt1817273,Uv4Wpz-N9Gc,\"After finding out how his father was shot and killed, Jason takes Avery Cross hostage into the woods.\"\ntt1817273,bHMka69DJZ4,\"After finding out about corruption in the police force, Avery Cross records a fellow officer asking him to remove cocaine from the evidence locker Cross supervises for use in a separate case. Cross uses the recording to turn in a bunch of fellow officers and get himself a position as an assistant district attorney.\"\ntt1817273,rry383W_mJU,\"After recovering enough from a shootout with a bank robber, office Avery Cross starts seeing a therapist where he admits to feeling remorse about shooting Luke. He especially feels this upon discovering the robber had a son, as Cross has an infant of his own.\"\ntt1817273,zS6OX5d-ZYM,\"Luke does one last robbery, but it doesn't go as planned. The police are on to him the second he leaves the bank and a chase ensues.\"\ntt1817273,qs0Fyp2bqsA,\"After a bank robbery goes wrong, Luke is pursed into the bedroom of a stranger's house by Officer Avery Cross.\"\ntt1817273,EF2WHYOjGhE,\"Luke buys a crib for his son and brings it to Romina's boyfriends house and starts building it. When Romina and Kofi arrive, they are not happy to see Luke. A fight breaks out and Luke hits Kofi with a wrench.\"\ntt1817273,tCLO2N6IqJc,\"Luke spends some time with his ex-lover, Romina, and his child, Jason.\"\ntt1817273,90vUFwUp6mw,\"Needing more money to support his new family, Luke and his friend Robin decide to rob a bank. Thanks to Robin's planning, it goes well.\"\ntt1817273,qc1k6uf-Mbg,\"Luke Glanton visits his ex-lover, Romina, after finding out that he has a child she never told him about.\"\ntt0373883,w9WoH1MlgvE,Michael Myers rudely interrupts Big Joe Grizzly during his bathroom break.\ntt0373883,20gzgK-Z5Yw,Michael Myers runs into a few bullies in the bathroom.\ntt0373883,YLID2odh-WA,Michael bashes in Steve's head with a baseball bat.\ntt0373883,lpgQU4piAYw,\"Michael Myers stalks and kills his first victim, Wesley Rhoades, who was bullying Michael at school earlier.\"\ntt0373883,BRHFpsNB1PI,\"Michael Myers brutally murders his mother's boyfriend, Ronnie White, on Halloween night.\"\ntt0373883,GnRb5AHOcuc,Michael Myers dons his infamous mask and murders his sister Judith.\ntt0373883,hwN_h9eiy_0,Dr. Samuel Loomis has a talk with Michael and evaluates his mental health.\ntt0373883,gJDosSrvlJ8,Michael sinks deeper into his dark abyss and murders Nurse Wynn in cold blood.\ntt0373883,5yCSPi05MyA,Michael Myers breaks into the Strode residence and murders Mason and Cynthia.\ntt0373883,ys16MvJ2XVU,Michael Myers stalks and kills Bob Simms.\ntt0848557,QfS7XUWUgL0,Jason tries to make a scary movie despite the limitations of shooting on a film school budget.\ntt0848557,dEgTjVHmjdc,Debra becomes disgusted with herself after she films Eliot killing a zombie.\ntt0848557,AUDCrt3eXyc,\"Debra returns home, only to find her family reanimated.\"\ntt0848557,Jb0_V7JCbbk,Jason refuses to join the others in the panic room and runs into a zombified Ridley.\ntt0848557,eurjNgZtg-g,A bottle of acid comes in handy when Tony is cornered in the warehouse by a zombie.\ntt0848557,boaKhP_0KwA,Samuel sacrifices himself with a farm implement for the greater good.\ntt0848557,q3CTxWUxHUg,\"Jason and his friends come across Samuel, a deaf Amish farmer with an old-fashioned method for killing zombies.\"\ntt0848557,3-16Bov2JfQ,Debra turns the tables on Jason by forcing him to answer questions on camera.\ntt0848557,-s0ov88pD0s,Debra gets creative when faced with a zombie surgeon and a zombie nurse.\ntt0848557,FuzefcAKLmY,Mary is forced to drive on through when a reanimated state trooper and several motorists appear in the road.\ntt0848557,iL1JlXnbnt0,Jason visits a panicked Debra in her abandoned dorm.\ntt0848557,elng_KRvuqY,\"Brody and Bree file a routine report on a murder/suicide for the local news, but the situation quickly turns from bad to worse.\"\ntt0421082,ani6MlnXj2g,\"Ian goes to work at the employment agency, wearing his emotions on his jacket.\"\ntt0421082,nBnICWrKboM,Ian confronts Tony Wilson and challenges him to book Joy Division on television.\ntt0421082,WbsZeLsYgGI,\"Joy Division performs \"\"Transmission\"\" during their first television appearance.\"\ntt0421082,Nus1mepMrDc,\"Inspired by the death of a fellow epileptic, Ian writes \"\"She's Lost Control.\"\"\"\ntt0421082,RP941IJJEx4,\"Ian records the vocals for \"\"Isolation\"\" but the bleak lyrical content seems to fall on mostly deaf ears.\"\ntt0421082,qFbjSxE1xzU,\"Ian suffers an epileptic seizure during a performance of \"\"Dead Souls.\"\"\"\ntt0421082,JDC1IK7TWZA,Ian describes his feelings of alienation in the face of the band's growing success.\ntt0421082,IK5-KZnzxwA,\"Joy Division performs \"\"Candidate\"\" from their album Unknown Pleasures as Annik watches from the crowd.\"\ntt0421082,IixTpVt9Enw,Annik interviews Joy Division and feels an immediate connection with Ian.\ntt0421082,s6WV534Sfss,\"Ian admits to Deborah that he's fallen out of love with her, and Joy Division records \"\"Love Will Tear Us Apart.\"\"\"\ntt0421082,yM7iQ_plcpA,\"With Ian unable to go on stage, Rob pays Alan from Crispy Ambulance to take his place, with disastrous results.\"\ntt0421082,0dsEkpDiwBQ,The members of Warsaw take the stage for their first live performance.\ntt0790636,nXmtkGrPEuU,Ron interrupts an FDA meeting for the public.\ntt0790636,1p8KG7IdzPM,\"After the club runs out of funds, Rayon sells her life insurance policy and gives the money to Ron.\"\ntt0790636,jKGudyrV0v4,\"After a heart attack, Ron is confronted by his doctor and the FDA, who have learned about the alternative medicines he's been using and selling.\"\ntt0790636,SqpBUHMR99M,\"While at the grocery store with Rayon, Ron runs into an old friend who disrespects Rayon.\"\ntt0790636,Vt-VF8GzQvU,Ron reluctantly goes into business with Rayon.\ntt0790636,SrbO1c8QBSg,Ron poses as a priest to smuggle unapproved drugs to the U.S. from Mexico.\ntt0790636,Aqo9z6lp4GY,\"During a hospital stay, Ron meets Rayon, an HIV positive drug addict.\"\ntt0790636,73b7dIqGdUg,\"After being diagnosed with AIDS, Ron goes to the local bar to find himself ostracized by his friends.\"\ntt0790636,WpZ4kY3AJWU,Ron visits Dr. Eve Saks and asks for the new drug AZT. She explains that all the drugs he wants aren't FDA approved.\ntt0790636,X32pSJrgF3Q,Electrician and rodeo cowboy Ron Woodroof is diagnosed with AIDS and given 30 days to live.\ntt0795493,e6E5v6jLGpM,Terry breaks the news to Ian that he wants to turn himself in.\ntt0795493,STKWsvhZSjc,Ian and Terry work up the nerve to kill Martin Burns in cold blood.\ntt0795493,haN_gCgewXQ,Ian and Terry panic when their target Martin Burns comes home and he's not alone.\ntt0795493,PXetdfRsmwk,Ian is overcome with jealousy when he sees another man leaving Angela's place early in the morning.\ntt0795493,EfT-5v5YIt4,\"After Ian and Terry beg him for money, Uncle Howard asks them to do the unthinkable by committing murder.\"\ntt0795493,YwqlCZ5mCdg,\"Terry admits to Ian that he lost 90,000 pounds in a card game.\"\ntt0795493,dlhTO_Pqq9s,Ian stops to help Angela with a little car trouble.\ntt0795493,qAZcl9BFd38,Ian and Terry try to negotiate a better price with a boat owner.\ntt0795493,AQUEnmFhk7s,Ian takes Angela out for a drink after she gets him a ticket to her play.\ntt0795493,-CyRDSP_b5U,Kate meets with Ian about Terry's deteriorating mental health.\ntt0450385,CR8tgmpmgIk,Mike makes a disturbing realization when he visits the post office and discovers he's really still in Room 1408.\ntt0450385,HuSM3bZf0R4,\"Mike smashes a painting in Room 1408, causing it to flood with water.\"\ntt0450385,RL6JZfQq_qI,\"As Room 1408 freezes over, Mike contacts Lily through his laptop and learns that the police have found the room to be empty.\"\ntt0450385,-IZLCY2_esQ,\"Mike attempts to escape via the air duct, but a reanimated corpse blocks his path.\"\ntt0450385,8BNvCu2iqmM,Mike climbs out on the window ledge and discovers that all the other windows on the hotel are gone.\ntt0450385,yeMemdNO_2Y,\"When Mike is unable to open the door, he looks to another building for help and sees only himself.\"\ntt0450385,dEHht_iK6qY,A faulty alarm clock causes Mike to panic and injure his hand on the window.\ntt0450385,xK_P_l75a7Y,Mike arrives in Room 1408 and is disappointed by its banal appearance.\ntt0450385,lM8xJqeAEGI,Olin makes one last ditch effort to stop Mike from staying in Room 1408.\ntt0450385,4MyVJn56UFY,Mike reveals his disbelief in the paranormal at a poorly-attended book signing.\ntt0450385,CaGEzKJKMTs,\"As a last resort, Mike sets fire to Room 1408 and watches as it burns.\"\ntt0450385,--b-8xt2PeE,Olin tries to prevent Mike from staying in Room 1408.\ntt1266029,9knEvoHQfEw,\"Paul McCartney introduces George to John, and he immediately joins the band.\"\ntt1266029,9FqZ2BMv_RU,\"John, Paul, and George perform the song \"\"In Spite of All the Danger\"\" at a recording session\"\ntt1266029,N5L2PXUdQg0,\"At his birthday party, John inquires into his father's whereabouts to his mom Julia.\"\ntt1266029,a1YFvMDu0M8,\"John debuts his new band, The Quarrymen, at an afternoon picnic. Paul McCartney happens to be in attendance.\"\ntt1266029,x_9lcdX85Pg,Paul McCartney impresses John during his audition to be in The Quarrymen.\ntt1266029,NTGOA6lPP5w,\"While practicing with Paul McCartney, John tries on a pair of glasses worn by Buddy Holly.\"\ntt1266029,N6CNJBPPVyk,Julia teaches John how to play the banjo.\ntt1266029,7Zx5tpFmv9M,\"John informs Mimi that he's off to Hamburg, Germany with his new band, later known as The Beatles.\"\ntt1266029,-34RUyP-DH8,\"Julia and John listen to the Screamin' Jay Hawkins version of \"\"I Put a Spell on You.\"\"\"\ntt1266029,G6tC5Mp9NVA,Julia and John spend a fun day together on the boardwalk.\ntt1007028,Gqbrt_dz_TQ,Zack has a moment of inspiration as he comes up with the idea to shoot the porn film in the coffee house.\ntt1007028,uq4bRVYBdts,Zack and Miri discover the special skills of Lester the Molester and Bubbles.\ntt1007028,Cg5dSosn_fk,Zack and Miri hold auditions for the porno.\ntt1007028,zZab0Lq7_vU,\"Delaney takes offense to Mr. Surya's request to work on \"\"Black Friday.\"\"\"\ntt1007028,QKq7tIL9aOQ,Zack and Miri announce the porn title of Star Whores to the cast & crew.\ntt1007028,4iNd-1IPrGI,\"When Delaney brings Zack by the house, Delaney's Wife acts quite surly and aggressive towards him in front of her house guest.\"\ntt1007028,0zfQoHORIFc,\"At the high school reunion, Miri hits on Bobby Long\"\ntt1007028,_IdlZCqJ8kk,\"Miri is twice embarassed at the high school reunion when she learns that Bobby Long is gay, and that she is very popular on the internet wearing granny panties.\"\ntt1007028,CpFUyd_7XIM,Zack meets actor Brandon at the reunion. Brandon acts in male gay porn in Hollywood.\ntt1007028,TPESLZ0sGak,Zack and Miri finally do it on the set of the porno film Swallow My Cockuccino.\ntt1007028,N-MWa0s5iFQ,Zack and Miri sign in to their ten-year reunion.\ntt0976051,6vjDZQtAKuc,Young Michael Berg reads to Hanna.\ntt0976051,NzbdfpYUxNM,Young Michael Berg reads excerpts of Homer's The Odyssey to Hanna.\ntt0976051,lVZNAyNWcgs,Young Michael Berg is stunned to discover that Hanna is on trial for participating in war crimes.\ntt0976051,t3XiTgsmyZc,\"Full of shame over her illiteracy, Hanna decides to take full accountability for the actions that happened during the death march.\"\ntt0976051,IjtqQ-ojgcU,Professor Rohl teaches the class the difference between morality and the law.\ntt0976051,RHasf1LEG3Y,\"Michael records books on tape for Hanna who is in prison, so he can continue to read to her.\"\ntt0976051,wrRkC8RYqMI,Young Michael Berg gets caught staring at Hanna as she gets ready for work.\ntt0976051,FmOvzaWdpXI,\"Hanna is interrogated by the judge over her accountability while working at the concentration camp, Auschwitz.\"\ntt0976051,1UOLqmhi3AE,Michael visits Hanna in prison for the first time in twenty years.\ntt0976051,ESkmmFHikgg,\"Michael visits Ilana Mather, a survivor of the concentration camps, to offer her the money that Hanna left in her will.\"\ntt0443559,GaNKOew-TLE,Blackbird grows impatient with Richie and his incessant talking.\ntt0443559,1nmWEA68h6U,Richie forces Carmen to undress and then forces a bullet into her mouth.\ntt0443559,I-wCCN3yowU,Richie torments Carmen by spraying her with buck lure.\ntt0443559,jxID8oHnCW0,Carmen returns home to find Richie and Blackbird waiting for her.\ntt0443559,xHCQd9zv3ak,\"In order to leave no witnesses, Richie shoots Donna as he and Blackbird prepare to leave town.\"\ntt0443559,oZnFQrIavwc,Richie tracks Wayne down in a convenience store and shoots the place up in an attempt to kill him.\ntt0443559,aTUTnjUBitc,Wayne and Carmen unwittingly witness a crime when Richie and Blackbird attempt to shake down a real estate agent.\ntt0443559,RKui0n6Z7cU,\"Richie pulls a gun on Blackbird in order to get a ride, unaware that his victim is a hitman.\"\ntt0443559,F1hMkfopHfc,Richie is driven mad with jealousy when Donna shows Blackbird her Elvis memorabilia.\ntt0443559,huCdZLvSyBI,Richie kills Lionel in cold blood after he and Blackbird get a lead on their witness.\ntt0443559,-HI25-gfvxE,\"Blackbird pays a deadly visit to Papa, who accepts his fate with dignity.\"\ntt0403702,F4dOAIo0rrM,Nick gets in a heap of trouble when Francois causes a fiery explosion in Berkeley.\ntt0403702,TAX4AOdqFD0,Nick gets into bed with Sheeni with a little assistance from his bad boy alter ego Francois.\ntt0403702,wCHqch4ILBU,Nick poses as a girl to get in to see Sheeni and profess his love for her.\ntt0403702,gBjC4SgMKDA,Nick misjudges the depth of a lake and bungles an attempt to fake his own death.\ntt0403702,xf3htc2iZ9Y,\"Nick makes a move on Sheeni, who shoots him down because Vijay and Taggarty are in the room.\"\ntt0403702,mEPcdSaEXEo,Nick creates a bad boy alter ego named Francois Dillinger in order to impress the love of his life.\ntt0403702,qmzYvuFtlM8,Nick can't hide his excitement when Sheeni asks him to apply suntan lotion to her exposed areas.\ntt0403702,h5Qri9_giqQ,\"Nick describes life with his mother Estelle, his father George, and his friend Lefty.\"\ntt0403702,MfBr9ylnuX0,Nick and Vijay concoct a story in order to get a ride from Mr. Ferguson.\ntt0403702,y9d6Tblt1kE,Nick catches Sheeni reading his journal when they go for a hike in the woods.\ntt0403702,TUw1XgBLILA,\"Nick and Vijay visit Sheeni at her new school, where Vijay practices his French with Taggarty.\"\ntt0403702,hAnmYHMCkRQ,\"Nick, Estelle and Jerry return home to find Jerry's car in the living room.\"\ntt2184339,_j_ufc9wHmY,The purgers break into the Sandin house and try to kill the family members.\ntt2184339,RyotYUKsVyw,Purgers try to break into the Sandin house and the family prepares to fight back.\ntt2184339,ZEfbID-2TlQ,Mary keeps her neighbors prisoner until the Purge is over.\ntt2184339,_qfIfbYkBUk,\"After James is wounded, the leader of the purgers comes forth to finish the job. Then the neighbors arrive with another surprise.\"\ntt2184339,l51fnzJxYUE,James defends his home from the purgers.\ntt2184339,Zo70vB9nubo,\"James finds the stranger holding a gun to his daughter, Zoey.\"\ntt2184339,QBMv724lzZI,\"While looking for the stranger in his house, James Sandin is requested at the front door by the leader of the purgers.\"\ntt2184339,e3mwmwPhr08,\"After their son let in a stranger during the Purge, James and his wife find a masked killer at their door asking the family to release the stranger or die.\"\ntt2184339,5tSi-wyuccs,\"When James goes to investigate the disarming of the security system, he is confronted by his daughter's boyfriend, who snuck inside the house and intends to kill him.\"\ntt2184339,vbUTbqwKtEE,The Sandin family prepares for the Purge and locks down their home.\ntt0898367,oHeh8nSghcE,\"The Man and Boy finally reach the coast and discover that it's as lifeless as the rest of the world. Later, the Boy becomes ill and the Man takes care of him.\"\ntt0898367,aDCXE4Np1OI,The Old Man and the Man discuss whether God can exist in a world so desolate and forsaken.\ntt0898367,OoSOmcTZ1ok,\"The Man remembers his last moment spent with his wife, before she went off to end her own life.\"\ntt0898367,BgUQldQC440,The Man shoots a Gang Member after the thug takes the Boy hostage.\ntt0898367,ByLhxX3WUxY,\"The Man hunts down the Thief, who had earlier robbed him, and takes all of the Thief's belongings at gunpoint.\"\ntt0898367,WEP25kPtQCQ,The Man narrates the hoplessness of existence as he and the Boy try to live in a dying world.\ntt0898367,qf2p-tkn7cE,The Man and the Boy discover captives hidden in a cellar and quickly realize that these prisoners are food for a roving band of cannibals.\ntt0898367,5EEMxJOxXr8,\"The Man and the Boy enjoy the simple pleasures of hot meal, a bath, and clean clothes.\"\ntt0898367,0yKd37DXIVQ,The Man and the Boy witness the slaying of an innocent woman and her child before enduring a sudden earthquake in the middle of the forest.\ntt1742650,heeS8J_KFt4,Kate apologizes to Richard for not being around more and for letting work dictate her life.\ntt1742650,ccyYHEuCHKE,Kate and Richard argue about the dedication to her work life at the expense of her family life.\ntt1742650,As70qOtE3Cg,Kate and Allison talk about how Jack signs his emails.\ntt1742650,fcnYQxHinu0,Clark gives Kate good news during a business meeting that her proposal was picked.\ntt1742650,DX3oTDhDOXE,\"Kate discusses juggling her home life with her professional life, all the while making sure to keep up the proper demeanor.\"\ntt1742650,jawZFND4Bfc,Kate finds out that her whole family has lice just as she walks into a business meeting with Jack Abelhammer.\ntt1742650,vfutImUbN7M,Momo reveals to Kate that she is pregnant.\ntt1742650,97wa5FUtuG4,Kate checks on her kids before lying in bed making a mental list of all the tasks she needs to get done.\ntt1742650,ue_EAEC12X0,Kate tries to make a store bought pie look homemade for the school bake sale.\ntt1742650,Xh-8LVuPArw,\"At the bake sale, Kate and Allison run into Wendy and Janine, who they refer to as 'The Momsters.'\"\ntt0497465,RlOcas4K61c,Juan Antonio invites complete strangers Vicky and Cristina to fly with him to Oviedo.\ntt0497465,E5aXYsk787U,\"After a day of sightseeing, Juan Antonio floats the idea of sleeping with Vicky and Cristina.\"\ntt0497465,Rd87CKvUHjU,Juan Antonio and Cristina finally consummate their desires.\ntt0497465,pTqtWm_DTKk,Maria Elena mocks Juan Antonio for falling for two American tourists.\ntt0497465,ga5qeKd7oxM,Juan Antonio and Cristina share an awkward breakfast with a disapproving Maria Elena.\ntt0497465,nOpwufXdkIk,Cristina is disturbed to find Maria Elena giving Juan Antonio a massage.\ntt0497465,BtTX4ExS5sk,Cristina and Maria Elena bond over their love for photography.\ntt0497465,gNSs_gF1T_Q,Cristina tells Juan Antonio and Maria Elena that their living arrangements are untenable.\ntt0497465,ElD6Vos6Jbk,Vicky has a close call when Maria Elena pulls a gun on her and Juan Antonio.\ntt0497465,bO7iMQGQjhY,Cristina recounts her experience of sleeping with Maria Elena.\ntt0497465,NnrweogniK0,\"After listening to some Spanish guitar, Vicky lets down her guard and lets Juan Antonio kiss her.\"\ntt0497465,ntNMz754DEg,\"Cristina stops by for a quick drink with Juan Antonio, but he correctly surmises she's there for something more.\"\ntt1483013,-QOahlrO8Yo,\"As the human survivors prepare to execute their plan, the base is attacked by three drones.\"\ntt1483013,--Jiv5iYqT8,Jack and Julia discover that the reprogrammed drone with the bomb is damaged. There is only one thing left to do.\ntt1483013,k2QekuUhgIM,\"After crashing in the radiation zone, Jack meets Tech 52, an exact copy of himself.\"\ntt1483013,Boq7rlWzVRI,\"After being captured by \"\"Scavs\"\", Jack meets Malcolm Beech who tells him that thay are not aliens, but human.\"\ntt1483013,lxKvt5Z9Bok,\"While attempting to repair a downed drone in the underground ruins of a building, Jack Harper is attacked by Scavs.\"\ntt1483013,vUuAbRVVZwA,\"At the ruins of the Empire State Building, Julia reveals that she was Jack's wife before the war.\"\ntt1483013,GHKtN9jPK1w,Jack enters the Tet and finds Beech while Julia awakens at Jack's lake house. The two men trigger the nuclear bomb and destroy the Tet.\ntt1483013,nDBs6ywP9ZE,\"Jack investigates the crash of what appears to be a spacecraft from before the war. He finds humans in pods, but before he can do anything, the drones show up and start killing the survivors.\"\ntt1483013,7mGr4Uc7ebA,\"A jealous Victoria refuses entry to Jack and Julia when they return to the Tower and informs Sally that she and Jack are no longer an \"\"effective team\"\".\"\ntt1483013,o1_U-Iem8fA,\"Jack and Julia try to flee in his ship but are pursed by drones, they defeat a few of them but still end up crashing in the radiation zone.\"\ntt0426592,kk14nhuvBIM,\"Rick Riker uses his new-found superpowers to save an old woman from a runaway semi-truck. Well, kinda.\"\ntt0426592,SyNzTdVQIno,Mad hijinks ensue when Rick Riker starts to manifest his superpowers at the school science fair.\ntt0426592,T2Qc-56h_J0,\"When Rick Riker accidentally sprays himself with animal pheremones, he finds himself sexually assaulted by a bevy of wild beasts.\"\ntt0426592,vMUONm4ihP0,\"Professor Charles Xavier takes Rick Riker to his school for superheroes and introduces him to other \"\"gifted\"\" people with their own unique superpowers.\"\ntt0426592,tw6zV9CtczA,Rick Riker reveals to his Uncle Albert that he has superpowers.\ntt0426592,95SKqMz1Wdg,\"Having become The Dragonfly, Rick Riker meets the Human Torch, who ends up rather surprised that he can light himself on fire.\"\ntt0426592,Xob7w4hR5Rw,\"Rick Riker, dressed as The Dragonfly, battles the supervillain The Hourglass, aka Lou Landers.\"\ntt0426592,MpFrgOc9KLU,\"Rick Riker finally gets a kiss from the lovely Jill Johnson, but only as The Dragonfly.\"\ntt0426592,gFb8e3uaeIg,\"Caught off-guard, Rick Riker does his best to hide from Lou Landers while simultaneously trying to hold in his piss.\"\ntt0426592,OhO7kPNJJn0,\"After Jill Johnson takes a bullet for Rick Riker, The Dragonfly confronts The Hourglass in the final showdown.\"\ntt0426592,R84dKkPAVpg,A tender moment between Jill and Rick is shattered when Aunt Lucille lets loose with gas from her ass.\ntt0362120,ZcD75L4QLrM,Cindy uses her limited knowledge of Japanese to communicate with a ghost boy.\ntt0362120,STrE338cTBk,Tom appears with Oprah to announce his all-consuming love for Cindy.\ntt0362120,fzRk8ovZ06s,\"Cindy, Brenda and Tom wake up inside the tripod, attached to some gruesome torture devices.\"\ntt0362120,iFm-KZgioX8,President Baxter Harris gives a speech at the United Nations and accidentally destroys everyone's clothes.\ntt0362120,L3VyRESBqek,\"Henry decides to let Cindy and Brenda stay in the village, provided that they never leave.\"\ntt0362120,1YmOfCZ3ZIM,President Baxter Harris receives word that the planet is under attack from aliens but fails to respond to the gravity of the situation.\ntt0362120,EzLXmzcs1Ho,Cindy recalls the tragic fight that ended her boxing career.\ntt0362120,vuR9pDhXPqk,Tom grabs the wrong pills during a suicide attempt and suffers a hard fall.\ntt0362120,HLnNY2KiQEQ,Shaq needs to make a free throw to save himself and Dr. Phil from a deadly trap.\ntt0362120,94cC4uVE_HI,Mahalik and CJ recall a fishing trip that turned surprisingly romantic.\ntt1077258,S58poUaNwiw,\"After Abby adds to his testicle collection, Lt. Muldoon decides to renegotiate his deal.\"\ntt1077258,A1p4HnyG3Rs,Dr. Dakota Block administers a series of shots to Joe to prepare him for amputation.\ntt1077258,rgVm_KasYQc,Tammy has some car trouble but soon realizes her problems have just begun.\ntt1077258,VuVAsd9jMjo,Wray creates a makeshift leg for Cherry when he finds her in the hospital.\ntt1077258,bMg6mfghJHw,Dr. Dakota Block makes the mistake of leaving her son Tony in the car with a loaded gun.\ntt1077258,6WGP7utz8uA,Wray and Cherry make sweet love despite the challenges of her new wooden appendage.\ntt1077258,ILbPhe1Wg9U,Rapist #1 compliments Cherry on her resemblance to Ava Gardner and threatens to alter her looks forever.\ntt1077258,z7Zevt3riNc,Lt. Muldoon explains how he killed Osama Bin Laden before he succumbs to the zombie plague.\ntt1077258,8fRq0mDBzi4,\"Wray watches with pride as Cherry fulfills her one-legged, zombie-slaying destiny.\"\ntt1077258,YC-2vmyKkV4,\"When Rapist #1 forces Cherry to dance, she gives him an eyeful.\"\ntt1077258,XYiiAHc3CXQ,\"Wray and Cherry team up to slaughter zombies, as Abby meets a violent end.\"\ntt1077258,TsyLQX9NH18,\"Sheriff Hague orders everyone to give their guns to Wray, as Deputy Tolo gets torn to pieces.\"\ntt1411250,_YfbSVO6nz4,\"At the Merc Station, a chained up Riddick flirts with Dahl while waiting for the storm to reach the station. Johns tries one more time to get Riddick to confess what happened to Johns' son.\"\ntt1411250,tuq5JMwWRSg,Riddick and Johns fight through mud demons to get back to the ship.\ntt1411250,dt38_iS6u64,\"Riddick, Johns and Diaz recover the power cells that Riddick had buried, but Diaz betrays them both.\"\ntt1411250,hV9ArqfKqw0,\"Johns decides to let Riddick loose, but is stopped by Santana. Riddick keeps his promise to kill Santana with his own blade in five seconds.\"\ntt1411250,jZYr6ALcDy4,\"When the storm finally reaches the merc station, large numbers of mud demons emerge from the ground and attack the station.\"\ntt1411250,cTOlg3u_fZk,\"Riddick gives Johns and Santana a deadline to take the deal he is offering, but the conversation turns out to be an ambush.\"\ntt1411250,mnEpL-H7pms,\"Both merc teams come back to base to find that Riddick has been there and left a note on the locker containing power cells to the ships. Santana and Johns are suspicous that the locker has been rigged, but it has to be opened.\"\ntt1411250,tjrB1BtTnB8,Santana and his merc crew are on a night watch when Riddick attacks.\ntt1411250,f15ob_n_tfM,\"To get to a passage to a better area, Riddick has to fight poisonous, scorpion-like mud demons.\"\ntt1411250,ifkFfWmEc_Q,Riddick arrives on a desolate planet where a group of Necromongers attempt to assassinate him.\ntt1028528,mILfbvj0xtk,Dov and Omar try to pick up the girls as Stuntman Mike offers a pretty Pam a ride home.\ntt1028528,F37WD6OCu7s,\"On the car ride over to Guero's, Jungle Julia, Shanna, and Arlene discuss hooking up.\"\ntt1028528,kWz4LQXH6bE,\"Stuntman Mike gives Pam a ride in his car. The catch is, the car is only death proof if you're sitting in the driver's seat.\"\ntt1028528,tNGuXckF_sc,\"As the girls rock out to Dave Dee, Dozy, Beaky, Mick & Tich on the radio, Stuntman Mike plays a fatal game of chicken plowing his death proof car straight into theirs.\"\ntt1028528,xvOaMA9l4Sg,\"Zoe plays the dangerously reckless game known as \"\"ship's mast,\"\" with Kim as the driver.\"\ntt1028528,Mq0xthZjW-s,\"With Zoe stuck on the roof playing \"\"ship's mast,\"\" Stuntman Mike in his \"\"death proof\"\" car rear-ends the Dodge Challenger, catapulting into action a high-speed adrenalized chase.\"\ntt1028528,ee6jqUkxkZs,\"While parked at a roadside conveinent store, Stuntman Mike takes the opportunity to unsuspectingly lick Abernathy's feet.\"\ntt1028528,QBps5R-4JrY,\"Jungle Julia texts back-and-forth with her elusive boy toy, and Warren sends over a round of Chartreuse shots for the table.\"\ntt1028528,aSZoCaL7HIo,\"Full-on revenge is taken on Stuntman Mike by Kim, Zoe, and Abernathy as they t-bone his \"\"death proof\"\" car and then beat him to a bloody pulp.\"\ntt1028528,TIP0eokPc5c,Arlene gives a lap dance to Stuntman Mike.\ntt0281322,NUOag7luIOE,George 'Iceman' Chambers challenges Monroe Hutchen in the cafeteria.\ntt0281322,mv3qeSxmp68,'Ratbag' makes the mistake of disrespecting 'Iceman'.\ntt0281322,_Nz64htsk9I,\"Darlene Early evaluates Monroe Hutchen in solitary confinement, who reveals a surprisingly sound worldview.\"\ntt0281322,MmIk10arVaI,\"'Iceman' turns down an \"\"offer\"\" from Saladin, which has dire consequences.\"\ntt0281322,7xSB_efH2N0,\"The prisoners riot over their hatred for 'Iceman', forcing Mercker and the other guards to intervene.\"\ntt0281322,5kopF-bCBC8,\"When the Warden threatens to cancel the boxing match, Mendy tells him a story of some significance.\"\ntt0281322,EqDntjV9GIY,The fight for glory between Monroe Hutchen and George 'Iceman' Chambers begins!\ntt0281322,01tx72R0gP8,\"Jim Lampley interviews George 'Iceman' Chambers, who isn't too worried about his prison sentence.\"\ntt0281322,z67zZuCIL-s,\"'Chuy' and Mendy try to talk Monroe into fighting 'Iceman,' but he's got some pretty strong demands.\"\ntt0281322,j85FRIQigrg,The final showdown between Monroe and Iceman.\ntt0281322,Z1N_U1c-fUo,Monroe lays the hurt on Vern Van Zant.\ntt0281322,fkC99C2w4-o,George 'Iceman' Chambers reflects on his last fight and on what landed him in prison.\ntt0118643,coWFeBI9XoQ,Gabriel breaks out of hell and finds himself back on Earth.\ntt0118643,nZWo6dP2zVw,\"The angel Gabriel, back from hell, tries to get information from a monk who has visons.\"\ntt0118643,KKiVFZcwx6g,Gabriel goes to a dry cleaning store with hopes of finding the name of the woman he's after. His lack of experience with computers makes this difficult.\ntt0118643,SxCUyc_brKA,The angel Gabriel asks a suicidal teen named Izzy to help him on his quest.\ntt0118643,KvAVAKE_pRQ,\"Gabriel and his helper, Izzy, chase down a human woman named Valerie that is pregnant with the child of an angel.\"\ntt0118643,QOWkXpnwlek,The angel Gabriel gets himself a gun and a radio and asks Izzy about them.\ntt0118643,aumRE2Eq88o,\"After the angel Gabriel finds Valerie Rosales, he finds himself surrounded by police with his helper Izzy hoping they will fire.\"\ntt0118643,EMpPWRLRQZY,\"Gabriel interrupts the meeting of two angels and kills one while the other, Danyael, gets away.\"\ntt0183678,ESmtdvc5zk4,\"While giving a sermon about how God doesn't care anymore, a preacher is shot and killed.\"\ntt0183678,WwzmDbzboQM,\"The evil angel Zophael tracks down and finds Danyael, the son of a human woman and an angel.\"\ntt0183678,a51EYR5AeNk,Gabriel stops the angel Zophael from killing Danyael.\ntt0183678,XL4aLIj7q9M,Evil angel Zophael fights the half-angel preacher Danyael.\ntt0183678,zMFxbMh7JYY,Evil angel Zophael takes a woman hostage because he needs her help.\ntt0183678,VRTb5eck250,Half-angel preacher Danyael finally confronts the evil angel Zophael who has been chasing him.\ntt0183678,Yk84fGy3q-8,Danyael finally meets the angel Pyriel who plans to overthrow God.\ntt0183678,zdSMdOcyfOU,Danyael fights the angel Pyriel and wins with the help of God.\ntt5711820,lOmeZW0N10k,\"Now a private detective, Juni solves crimes for the common kid.\"\ntt5711820,grn62a_8fZ4,Gurdy comes to visit Juni and they talk about family. Then the President of the United States reveals that his sister is missing.\ntt5711820,QWepLWTflW8,\"Juni finds out he has to save his sister, and the world, from the evil Toymaker.\"\ntt5711820,xGugDtX55CQ,Juni faces off against Demetra in the robot arena.\ntt5711820,eS47L5yU2k8,The Toymaker has a brainstorming session with three other versions of himself.\ntt5711820,UpiqcjnWZB8,Juni takes on the beta-testers in a Mega-race in order to proceed to Level 3.\ntt5711820,L4PPqiuDNK0,Juni fights Arnold in Level 3.\ntt5711820,aF_Ijr621tM,\"While making their way to Level 5, the group meets The Guy, who they hope will lead them to victory.\"\ntt5711820,Rj9fUYRr81A,Juni and the group find out Demetra has been deceiving them the whole time.\ntt5711820,mFoZz6PG72k,Grandfather confronts the Toymaker about his actions.\ntt5711820,oCHEAaCGj7k,The Cortez family comes together to salute strength in unity.\ntt0280778,-9UJGi_b2UI,Iris Murdoch gives a speech about the importance of education and concludes with a significant song.\ntt0280778,q-hS7nZ1Ok0,Iris describes her book to John and expounds on how there are more ways to communicate than with words.\ntt0280778,TIQP5uv3D3Q,Fear sets into Iris along with the early signs of Alzheimer's.\ntt0280778,H02B31zvSKQ,\"Alzheimer's sets in, leaving Iris worried and John beside himself.\"\ntt0280778,6NmCTA1AK54,\"Iris shares her novel with John, as well as her affections.\"\ntt0280778,usyxBVGLU74,\"John reads to Iris, making a breakthrough of sorts.\"\ntt0280778,q6nz3GR5Ano,\"John and Janet attempt to break through to Iris, but her pages and her words may already be long lost.\"\ntt0280778,Y-4pm9C-jeE,\"John wakes to Iris singing a familiar tune from happier, though nonetheless poignant, times.\"\ntt0280778,-QiOCO5-ZPA,\"Although Iris' Alzheimer's becomes unmanagable, her love for John will never change.\"\ntt0280778,VSnBrgm2PM4,Tempers flare over dinner and sexual tension with Maurice.\ntt0280778,9UZ8XOTp19c,\"Distraught after discovering that Iris was unfaithful, John hears a recitation of her past lovers followed by a most heartfelt admission.\"\ntt0229440,Vz6AlIZAe2s,Det. Joseph Thorne solves the puzzle box he found at a crime scene and ends up being seduced by two mutilated female Cenobites.\ntt0229440,nsyud-sEm-w,A stranger gives Det. Joseph Thorne an unmarked videotape.\ntt0229440,8O06gqOG3fE,Det. Joseph Thorne chases a suspect into the woods only to come across more Cenobites and a cowboy helping the serial killer he's after.\ntt0229440,ePhMSnfYanI,Det. Joseph Thorne goes to visit his father in the hospital but ends up being subjected to a disturbing hallucination.\ntt0229440,IYmiSXEQ7ys,\"Det. Joseph Thorne comes home to find his wife and child strung up and being frozen to death by psychiatrist and serial killer, Dr. Paul Gregory.\"\ntt0229440,7lbPHodrgC4,Det. Joseph Thorne somehow ends up back in time in his family home though things are not as cheery as they appear.\ntt0229440,lI8p0rzq2R4,\"Still going through a surreal nightmare that Pinhead created for him, Det. Joseph Thorne comes across undead versions of all his friends.\"\ntt0229440,2ad7SgwLNXo,Det. Joseph Thorne is shown the truth by Pinhead\ntt1650554,BHJ5KGh-Xnw,Kick-Ass and Hit-Girl gather all of their superhero friends and finally confront the supervillains.\ntt1650554,cBzuWSSTTs0,\"After Dave Lizewski is kidnapped, Mindy Macready finally becomes Hit-Girl again and rescues him.\"\ntt1650554,PrzgybNYBs8,\"While her boss is busy hurting a member of Justice Forever, Mother Russia takes on multiple cops that are coming to the rescue.\"\ntt1650554,OA-SQ7lCV2I,\"Chris D'Amico and his supervillain gang find the Justice Forever hideout and trash the place, but not before killing Colonel Stars and Stripes.\"\ntt1650554,rny3UdYPDn0,\"After getting humiliated by the popular girls at school, Mindy realizes she doesn't need to fit in and be like the rest of them. She also manages to get some revenge, thanks to a special weapon her father left her.\"\ntt1650554,w78NFd5q_0k,Colonel Stars and Stripes leads Kick-Ass and the rest of Justice Forever on a night raid of a poker game attended by criminals.\ntt1650554,H44YauhtGPU,\"On the suggestion of Brooke and her friends, Mindy tries out for the varsity dance team. Not knowing how to dance like the other girls, Mindy just pretends she is in the middle of a fight and ends up doing an amazing job.\"\ntt1650554,oAJYONuey_8,\"Kick-Ass joins a superhero team called Justice Forever. It's led by Colonel Stars and Stripes and includes Dr. Gravity, Battle Guy, Night Bitch and more.\"\ntt1650554,dd_IWBNSKY0,\"Mindy Macready is forced by her father to go to the house of Brooke, the local popular girl. After a rather awkward few moments, Brooke and her friends accept Mindy and decide to help turn her into one of them.\"\ntt1650554,b6X5bVMoCJc,Dave Lizewski asks Mindy Macready to join forces with him and be partners.\ntt0116514,8OWCY47wOAI,Phillip L'Merchant secretly watches a wealthy aristrocrat and his apprentice use a dead woman's body to summon a female demon named Angelique.\ntt0116514,oLLfx_GN73I,\"After taking over a space station that he designed, Paul Merchant uses a robot to unlock the puzzle box that holds Pinhead.\"\ntt0116514,hF4ErLUEW9E,Two security guards stumble upon Pinhead having a discussion with Angelique.\ntt0116514,uzcyJ9sN98c,\"Bobbi Merchant figures out the puzzle box while Pinhead and Angelique force John Merchant to use his larger, more advanced puzzle box invention.\"\ntt0116514,xN0R2xFmcYU,\"Two hundred years after summoning her and being together, Jacques manages to upset Angelique.\"\ntt0116514,S3HubCxt0hM,Rimmer and Dr. Paul Merchant attempt to escape the space station while also setting in motion a plan to get rid of Pinhead\ntt0116514,Y-szf9FRi8M,\"Toymaker Phillip L'Merchant attempts to steal back the puzzle box when he is confronted by the apprentice, Jacques, and the female demon Angelique.\"\ntt0116514,qzkFTptrfbw,The demon Angelique makes a man solve the puzzle box to bring forth Pinhead.\ntt0171359,6Wk1Sob8Quo,\"In the opening scene, Hamlet wonders how man works and how it can be capable of such atrocities.\"\ntt0171359,BZjqqKqaw60,\"Hamlet mourns the loss of his father, while blaming his mother for remarrying his uncle so quickly.\"\ntt0171359,n13FhFrtu_8,\"Before embarking on a trip to France, Polonius gives his son Laertes some fatherly advice.\"\ntt0171359,D_84bHFra4s,\"The ghost of Hamlet's father comes to Hamlet to tell him how he was murdered by his own brother, Claudius.\"\ntt0171359,1Up-oGfiosE,\"Hamlet ponders one of life's biggest questions, \"\"to be or not to be\"\".\"\ntt0171359,EzxET3KpvSM,Hamlet starts to open up to Ophelia only to find that she is wearing a wire.\ntt0171359,oBfLI1WWrAI,\"While viewing Hamlet's film \"\"The Mousetrap\"\", Claudius is overcome by guilt.\"\ntt0171359,pMrk3l8El24,Hamlet accidentally kills Polonius while he is confronting Gertrude.\ntt0171359,BOwOiWDD_SM,Claudius confronts Hamlet about the location of Polonius' body.\ntt0171359,0XjLzDVi03c,\"In the final scene, Hamlet kills Claudius and dies.\"\ntt0171359,kR8Xje2x0sA,Hamlet tries to write Ophelia a love poem.\ntt0312004,b854qv-Z-ZQ,\"Ellie and her brother, Jimmy, attempt to help Becky out of a car crash when they are attacked by a vicious beast.\"\ntt0312004,VH6D36VQ_uo,Ellie has a nightmare about her boyfriend Jake.\ntt0312004,wRM5Flw2nXY,Jenny finds that she is not alone in the parking garage.\ntt0312004,7AjmrbE-NTM,Jimmy's dog turns into a beast right as Bo shows up at the house.\ntt0312004,YG_z4RpxKWA,Joanie turns into a werewolf and searches the club for Ellie and Jimmy.\ntt0312004,8Qklz6BqVxU,\"Jimmy, Bo and Ellie are trapped in a Jake's new club with a werewolf.\"\ntt0312004,Mgf5jaQO9sQ,\"Jimmy and Ellie struggle to fight off Joanie, now in werewolf form, when the police arrive to help.\"\ntt0312004,wqMPRiWvJEs,Jimmy and Ellie find out the werewolf that has been causing everything is Ellie's friend Joanie.\ntt0312004,-QyAhZv-o_U,\"Jake, the original werewolf, attacks Ellie and her brother when they are in the middle of transforming.\"\ntt0091431,i_FoR7ZV2EU,\"While Alan is performing at one of his concerts, a group of men kidnap his girlfriend at a fashion show. They kill anyone who attempts to stop them.\"\ntt0091431,CatwTirgWZg,Asian Hawk and Alan agree to meet the kidnappers while being backed up by new partner May. Things go wrong very fast and soon they are in a fight and then a chase.\ntt0091431,lNla5rf4idU,\"When Asian Hawk is surrounded by an army of the evil monks he pulls out his last trick, a jacket fulled of dynamite.\"\ntt0091431,7WXKfXCiWW8,Asian Hawk and Alan are caught up in a life or death chase with the evil group that kidnapped Alan's girlfriend. Thanks to a high-tech car they defeated the last of their pursuers in a large scale explosion.\ntt0091431,sXPBgnBxTFM,Asian Hawk rescues Alan and helps him and Lorelei escape. Though Asian Hawk has some difficultly getting out of the room himself once all the monks unleash their own fighting skills.\ntt0091431,G5qPGKpTzXU,Asian Hawk interrupts a sacrificial ceremony and steals an artifact from the tribe.\ntt0091431,Vhc7iBAAawA,\"Just when he finds the armor of god, Asian Hawk is attacked by four dangerous female assassins.\"\ntt0091431,qVzfIUAzda4,\"All of the outtakes from the movie, including the stunt that almost killed Jackie Chan.\"\ntt1596343,gN1BjYlhKvc,The crew makes a million dollar bet on a race when they realize their next job is an everything or nothing deal.\ntt1596343,eFnw_27t9-o,\"Dom, Brian and Mia rob some DEA-seized sports cars from a moving train.\"\ntt1596343,S8Vu6A9LW20,\"Dom rescues Brian from the moving train, but they end up going over a huge cliff into the river below.\"\ntt1596343,k2PsfXZ3wyY,\"Hobbs tracks down Dom and they have a knock-down, drag-out fight.\"\ntt1596343,TIbZNmvyLBI,\"Hobbs threatens to arrest Dom and Brian, but they are not ready to go quietly.\"\ntt1596343,xEAsC8A1Ins,Dominic clears the bridge of his enemies using some the vault and some Nitro.\ntt1596343,vmm8P0V1W4g,\"Dom, Brian and Mia are chased over the rooftops of a Rio favela.\"\ntt1596343,9aldDI2WF7g,\"Hobbs and his entourage are attacked by Almeida's men in the street, but Dom and Brian help them fight back.\"\ntt1596343,6w0F9xVXn_E,\"To Han's surprise, Gisele uses her feminine tools to get Herrnan's fingerprints.\"\ntt1596343,OurCnuyC8zo,Brian and Dom steal the bank vault by dragging it through the streets of Rio Janeiro.\ntt0104409,8l7lDn2hUTw,Joey witnesses the powers of hell first-hand when a patient is destroyed by demonic forces.\ntt0104409,b_FQEg7ScU0,J.P. is frozen with fear after he sees his heretofore inanimate statue come to life and devour a young woman in grisly fashion.\ntt0104409,F0KcFyR2uAc,Pinhead manipulates Terri into freeing him by offering J.P. as a sacrifice.\ntt0104409,G21su-YdW5k,Captain Elliot Spencer reveals to Joey the origins of Pinhead.\ntt0104409,PPNHvoOU1kE,Pinhead wreaks hellbound havoc in The Boiler Room nightclub.\ntt0104409,HehUdDtSt1U,\"Joey confronts Pinhead in his lair, defying him when he demands that she hand over the Lament Configuration box, the source of his power.\"\ntt0104409,0W9jZQetuB0,\"Cornered by Pinhead and his Cenobite slaves, Joey masters the Lament Configuration box, sending the demons back to hell.\"\ntt0104409,kmigfm9ZONk,\"Pinhead makes a mockery of religion as destroys a church, taunting Joey and a priest.\"\ntt0104409,87YM78J6ebQ,Joey escapes the cavalcade of chaos as Pinhead uses his demonic powers in resurrecting the dead to hunt her down.\ntt0104409,88UgHHl7W7A,Captain Elliot Spencer fuses himself with Pinhead in order to destroy the demon from within and save Joey's life.\ntt0068935,YADVuSMFS2M,Tang Lung and Colt continue their fierce battle of the fists until there is only one man standing.\ntt0120604,85WDSyWnTZg,\"After killing Grendel, Beowulf has to face off against the beast's mother.\"\ntt0120604,sUxkumq9UJY,Beowulf interrupts the sacrifice of an innocent girl by a bunch of warriors.\ntt0120604,-PWyO04IJYQ,\"Roland, the castle's top soldier, puts other soldiers through combat practice as Beowulf watches.\"\ntt0120604,CCGpFb4lNgI,Beowulf finally confronts Grendel on his own terms.\ntt0120604,m8CkFFna7Ew,Will starts his job as head weapon master with the help of his uncle's friend Karl.\ntt0120604,BFaNTh5aqls,The weapons master runs into Grendel while walking around the castle late one night.\ntt0120604,0iwVPWstvGo,\"Beowulf hunts Grendel with the king, his daughter, and soldiers following close behind.\"\ntt0120604,tPkmKcc-LAM,Grendel's demon mother confronts King Hrothgar and his daughter Kyra.\ntt0122541,N6mFvYxmiM8,Gertrude reluctantly invites Mrs. Cheveley to a party at her house that evening. Lord Arthur Goring gets ready for the party as well.\ntt0122541,aAMVebfAZ7I,Mrs. Cheveley exposes Sir Robert Chiltern to Lady Chiltern.\ntt0122541,zD5BdMcO4yo,Lady Gertrude and Sir Robert reconcile as Lord Goring proclaims his love for Miss Mabel.\ntt0122541,ZxcUzbEJx98,Mrs. Cheveley attempts to blackmail Lord Robert in exchange for political support.\ntt0122541,w4RGgEi7T8E,Lord Goring playfully tells Miss Mabel that she should be in bed instead of out partying.\ntt0122541,-3upqhXz0nE,Mrs. Cheveley reminisces with Lord Goring about their past relationship.\ntt0122541,zpFlShhUcIo,Lady Chiltern tells Lord Goring to take Miss Mabel to an art gallery tonight.\ntt0122541,XadVTfPZ6yc,Lord Goring tries to convince Mrs. Cheveley to give him back the letter that will expose his friend's secret.\ntt0122541,EYh8GOoyv-M,Miss Mabel tells Lord Goring there is a difference between looking and seeing.\ntt0122541,rVjV3FNsMtk,Lady Gertrude admits to lying and Lord Goring and Miss Mabel get married.\ntt0122541,t78EgRBYIh0,\"Lord Goring proposes to Miss Mabel and instead of giving him an answer she tells him to wait by the \"\"usual palm tree\"\". Lord Caversham visits Sir Chiltern to share some news.\"\ntt0122541,HMUnEpn0n9U,Sir Chiltern reinstates his opposition of the canal scheme.\ntt0068935,1ZpqDhQJhFA,Tang Lung takes on some thugs who are harassing his friends in their restaurant.\ntt0068935,TEpJFWUw2ts,Tang Lung shows off some of his moves to friends who doubt his skils.\ntt0068935,O5TE0yg-mEA,Tang Lung walks into the restaurant and finds the place taken over by the mafia.\ntt0068935,HysSQiXYjdE,\"After having some of his thugs defeated, the boss of the mafia sends out the rest of his gang to defeat Tang Lung.\"\ntt0068935,dp_aLWPZY8I,Tang Lung leads his friends into the mafia headquarters where his girl is being held captive.\ntt0068935,sEycv_wZaIA,Tang Lung and friends are led into a trap where they must face off against two deadly opponents.\ntt0068935,0VJnFDz4VP0,\"Tang Lung faces off against the hired killer, Colt, who is just as deadly in the art of martial arts.\"\ntt1690953,5vvtNVnzxaA,\"When Gru is surrounded by an army of evil minions, his whole family arrives to help in the battle.\"\ntt1690953,CZZEp8EaO6g,\"A mutated minion attacks Gru's house and chases the girls around, but they are saved by Dr. Nefario and his antidote.\"\ntt1690953,JjSpGeBqJR8,\"Gru and his minions move into the new headquarters for their mission, but one of the minions falls hard in love for Lucy Wilde, his new partner.\"\ntt1690953,-kYzHmPDZwo,\"Gru dresses up as a Magical Fairy Princess at Agnes' birthday party, since the real one he ordered couldn't make it.\"\ntt0102370,93lz5IE7Z0c,Madonna gets pissy when Warren Beatty doesn't pick her up on time.\ntt0102370,scDWdIV7Fes,Madonna performs the smash hit song Vogue.\ntt0102370,toT3JGFEwmw,Madonna perfoms a sexually-charged version of the song Like a Virgin.\ntt0102370,ujJJyIKIAjg,Sandra Bernhard hangs out with her friend Madonna and the two discuss their love lives.\ntt0102370,KAVqLKDwSOo,Madonna is disappointed when she learns that her crush Antonio Banderas is married.\ntt0102370,t-JFogFsPHQ,\"Madonna performs her hit song, \"\"Express Yourself.\"\"\"\ntt0102370,s1Qz6N4-tEY,Warren Beatty hangs out post-show with his then girlfriend Madonna.\ntt0102370,cNKYmHmy9OQ,Madonna participates in a game of Truth or Dare.\ntt1690953,2tzvi3Xp6sw,Lucy spots Gru on a bad date and decides to help out a little.\ntt1690953,4H1Lc_JHF7I,\"Gru investigates a wig store, trying to track down the stolen chemical.\"\ntt1690953,UsKSjKrIEq8,Gru learns that Dr. Nefario has decided to leave him for new employment because he misses being evil.\ntt1690953,QCJ_a5AYVEY,Gru rushes to stop Margo's date with Antonio and learns that he is the son of a suspected supervillain.\ntt1690953,_uRGjnG3G3o,\"While tucking the girls into bed, Gru has a horrible flashback and talks to them about dating and boys.\"\ntt1690953,4lNoSUurdKc,\"Gru and Lucy break into Eduardo Perez' restaurant, suspecting him to be a supervillain, and run up against a security chicken.\"\ntt0110027,LpOc7D4G1TM,An archaeological dig in Japan has allowed Kane and his followers to escape the cave they had been trapped in for over four hundred years.\ntt0110027,ifl_AGVJee8,\"While Connor tries to escape from a hospital, he finds himself being stalked by the last of Kane's henchmen.\"\ntt0110027,LJq_hnR6CHc,Connor finally gets the upperhand and manages to kill Kane.\ntt0110027,_s5fgacYzjA,The evil immortal Kane rides into a japanese village looking for directions to Mount Niri.\ntt0110027,kMRM-0GvaQk,\"Kane and his men finally find master immortal, Nakano, despite Connor trying to stop them.\"\ntt0110027,Tsi-yH9juC8,Kane leads Connor MacLeod into a power station to begin their final battle.\ntt0110027,CglQW97hCe0,Kane follows Alex Johnson and she leads him straight to Connor who is training at a temple in the city.\ntt0110027,QxK_EsMjCQE,Connor MacLeod goes to pick up his son from the airport when Kane surprises him there.\ntt0133046,kCb1R69h92Q,\"Mrs. Tingle fires the crossbow at Leigh Ann but instead hits Trudie. Realizing the scope of her folly, Mrs. Tingle collapses, devastated.\"\ntt0133046,EKdQ1jASEmw,Leigh Ann is cornered by Mrs. Tingle and Jo Lynn.\ntt0133046,hq-vTEalnj0,Mrs. Tingle uses her cunning to manipulate Luke into revealing his feelings towards Leigh Ann.\ntt0133046,YczVaT_czPE,\"Mrs. Tingle snatches a copy of her final exam from Leigh Ann's backpack, reveling in the fact that Leigh Ann's personal integrity -- and her graduation status -- now hang in the balance.\"\ntt0133046,2Y41IMoi1TU,Mrs. Tingle tears a new one into her students as they showcase their history presentations.\ntt0133046,G1x0zmX-PEw,\"As Leigh Ann attempts to clear her name to Mrs. Tingle, Luke escalates things rapidly when he threatens to shoot Mrs. Tingle with a crossbow.\"\ntt0133046,prLok_8YD8w,\"Bored out of her mind guarding Mrs. Tingle, Jo Lynn conjures a virtuoso performance from \"\"The Exorcist\"\" to help pass the time.\"\ntt0133046,-it68CFJkNg,Leigh Ann and her friends arrange their blackmail tableux to make it look like Coach Wenchell and Mrs. Tingle are having an affair.\ntt0133046,P4fFh-wHWl0,\"Leigh Ann finally seduces Luke. Later, at Luke's urging, she changes her grade and that of her rival, in order to give herself the title of valedictorian.\"\ntt1905041,yHf9QshbQeE,Dom and Owen Shaw finally meet face to face.\ntt1905041,-DF-MgSuhQ0,\"After tracking down Letty at a street race competition, Dom challenges her to a race.\"\ntt1905041,4rwJ3BnGrl0,\"After being disrespected at a high-class car show, Tej buys all of the cars and has them delivered. Hobbs and Tej have a little fun getting revenge on the snobbish salesman.\"\ntt1905041,nxWj-7FF4CI,\"While chasing down members of Shaw's crew, Riley gets into a fight with Letty while Han and Roman take on Jah.\"\ntt1905041,uzHwlt3dmmo,Owen Shaw's team attacks a military convoy and commandeers a tank in the process. Dom's crew jumps into action to try and stop it.\ntt1905041,NGeFA2fWzX8,\"Dom, Brian and Roman try to stop a tank that's being driven by Owen Shaw, Letty and Jah.\"\ntt1905041,km3VtR6mqmg,\"Owen Shaw and his team make their escape on a plane with Mia Toretto as a hostage. Dom, Brian, Letty and the rest of their crew try to keep the plane from taking off and stop Shaw.\"\ntt1905041,iz2ro0h_TmQ,Dom and Hobbs chase after Owen Shaw. Dom pulls away when he spots Letty in another car. Shaw gets away and Letty shoots Dom the minute she sees him.\ntt1905041,Atb5LNPuxyU,\"As the plane starts to crash, thanks to Dom's crew pulling its wings down, Dom decides to make sure Shaw doesn't get away.\"\ntt1905041,Y92N7SFJ0Fo,\"International criminal, Owen Shaw, escapes from police and destroys his hideout in the process. All of it turns out to be a distraction for the police as Shaw's own crew is finishing a heist elsewhere. Hobbs and Dom's crew chase down Shaw and his team.\"\ntt0120915,2Pkky-Dncw8,\"Sheriff Bryce Hammond finally finds the heart of the creature, which has taken the shape of a boy the Sheriff accidently killed years before.\"\ntt0120915,JYp5uIodwEE,Dr. Timothy Flyte calls out the creature so that Sheriff Bryce Hammond and Jennifer Pailey can fire at it with their special weapon.\ntt0120915,H843vNJgIaQ,Sheriff Bryce Hammond has to go from one military trailer to another and get a special weapon to kill the evil enemy.\ntt0120915,_vNaSVn6qSk,Dr. Timothy Flyte leads a team of scientists into a church to search for clues.\ntt0120915,RKn6FWvaVBM,The army finally shows up in the empty town and has a team of scientists explore the buildings for clues.\ntt0120915,2pVPaPFm5iI,\"Sheriff Bryce Hammond, Deputy Stuart Wargle, Lisa Pailey and her sister Jennifer try to survive until daybreak.\"\ntt0120915,9I1aM1EQZ7o,Jennifer Pailey and Lisa Pailey face off against a monster version of Deputy Stuart Wargle.\ntt0144964,Z0iCcI1Owys,Jin Ke and the rest of his gang attack the Sanctuary and appear to lose.\ntt0144964,AmAklov1ewQ,Connor MacLeod and Duncan MacLeod have fun defending a carraige in 1712.\ntt0144964,U89NOSQdgqo,Duncan MacLeod is attacked by the gang of Jacob Kell. Duncan seems to be winning until Jin Ke shows up.\ntt0144964,-iuSE7NVc8c,\"Jacob Kell and Connor MacLeod finally confront each other, while Duncan and Kate MacLeod watch.\"\ntt0144964,DegHehO_nfc,Connor MacLeod forces Duncan MacLeod to engage in a sword fight.\ntt0144964,16hnbNPCFBo,Duncan MacLeod confronts Jacob Kell and they begin the ultimate fight between immortals.\ntt0144964,_tYTcz52ZB8,\"After a long battle, Duncan MacLeod finally kills Jacob Kell.\"\ntt0246544,PGU_sBj_q5g,D'Artagnan climbs up a tower that holds The Queen and Francesca Bonacieux in it.\ntt0246544,b5whTkIQ32c,\"D'Artagnan finally has his fight for revenge against the Man in Black, who killed his parents.\"\ntt0246544,5QGrgYkudfo,D'Artagnan and an army of Musketters attack the castle that holds the Queen.\ntt0246544,A1mYM5yA6oI,\"While escorting the Queen and his love, Francesca Bonacieux, D'Artagnan has to fend off a group of mercenaries.\"\ntt0246544,-e_vbnd9bV8,D'Artagnan and a few other Musketeers rescue the Queen and King after the palace is attacked by a mob of peasants and mercenaries.\ntt0246544,5eC6VCiJYq8,D'Artagnan along with two other Musketeers break their captured leader out of jail.\ntt0246544,0Ihq2_hNnX8,D'Artagnan stops into a bar for a quick bite to eat. He defends a small beggar child and gets into a sword fight with some local thugs.\ntt0193560,XG-c6CmPo4k,\"Randolph Douglas Scipio, Lincoln Rogers Dunnison, George Durham and the other Texas Rangers attack a small camp of bandits.\"\ntt0193560,nxvXYa6n0pY,Lincoln Rogers Dunnison goes to Leander McNelly and tries to join the Texas Rangers.\ntt0193560,VGGxaRYEfO4,Lincoln Rogers Dunnison arrives in a new town with his parents and brother the same time John King Fisher and his gang of bandits show up.\ntt0193560,qG-B9IzugQM,\"Lincoln Rogers Dunnison and George Durham come upon a group of men are preparing to go after the bandits, but Texas Ranger Leander McNelly puts a stop to it.\"\ntt0193560,rcjujixxfdY,Suh Suh Sam gets Lincoln Rogers Dunnison to set up a meeting between him and Leander McNelly.\ntt0193560,ALsbjcqNdRo,\"Leander, Lincoln Rogers Dunnison, Randolph Douglas Scipio, George Durham and the rest of the Texas Rangers ride into the main camp of outlaw John King Fisher.\"\ntt0193560,6rAcjVEXvSg,Lincoln Rogers Dunnison and George Durham argue over who gets the bath while also fighting over who Caroline Dukes likes more.\ntt0193560,8jkM1zBTJIA,Leander McNelly and Lincoln Rogers Dunnison lead the Texas Rangers on a final attack against John King Fisher and his gang.\ntt0193560,KYQELfxxAck,\"In the middle of the battle, Lincoln Rogers Dunnison finally gets his revenge on John King Fisher.\"\ntt0252299,NrLSAjP5Ibw,Ray Elwood asks Robyn out on a date fully aware that she is the Sergeant's daughter.\ntt0252299,jOf4crp-WVs,\"As retribution for taking his daughter out the night before, Sergeant Lee orders Ray Elwood and company to shoot up Elwood's car.\"\ntt0252299,UTEUIdcqSfo,Sergeant Lee shows there's a new authority on the base when he discovers all the expensive contraband in Ray Elwood's room.\ntt0252299,qlJ2951IShM,Colonel Berman makes a minor critique to the letter written by Ray for a fallen soldier.\ntt0252299,tXDoydLr3YQ,Ray Elwood experiences his recurring nightmare of falling.\ntt0252299,_Q9JnjhXRyA,Three stoned soldiers accidentally take a tank on a destructive and explosive joyride through Germany.\ntt0252299,pzeu5peH2n0,Ray Elwood and Robyn Lee pop some ecstasy at a German dance club.\ntt0252299,GBXYXp04Los,Robyn Lee tempts Ray Elwood to jump off the high dive by diving off of it first.\ntt0220506,AWmHgNv0xUc,\"Freddie and Sara fight Michael Myers, knocking him out of a second story window. But the victory is only temporary as they learn that Michael Myers still lives.\"\ntt0220506,T4Z1mnjLwiA,\"Dressed in a \"\"Michael Myers\"\" costume to scare the reality show contestants, Freddie runs into the real Michael Myers, but mistakes him for one of the other crewmembers in disguise.\"\ntt0220506,g-bxs_daoCI,Rudy tries to fend off Michael Myers to give Sara time to escape.\ntt0220506,I64nwvRliGY,Donna is stalked and impaled by Michael Myers.\ntt0220506,TEq446woKOo,Jen and Jim meet a grisly demise at the blade of Michael Myers.\ntt0220506,VxwsEqiptwo,\"Left for dead, Freddie returns to save Sara from certain death at the blade of Michael Myers.\"\ntt0220506,oL8QGyo50_M,\"Laurie Strode has Michael Myers dangling over the edge of a building, but before she can kill him, she must confirm that he really is Michael Myers and not some imposter.\"\ntt0220506,qJkMktF_QUE,Charley's death is recorded on camera while Nora is distracted by a fancy mocha and a phone call.\ntt0220506,bTrFBrULLmM,The gang goes into a panic when they hear a blood-curdling scream from the other room.\ntt0220506,v-8bLcH0iD4,\"Michael Myers begins his killing spree, sending Bill to meet his maker.\"\ntt0290212,MJBoXI6pVQ8,Arty talks to his actor about how to approach the role of Hitler.\ntt0290212,dZt3TeTClV8,Arty directs Hitler during play rehearsals.\ntt0290212,Jg7LxmHGNd4,Nicholas discovers a love letter that he believes was written by Francesca.\ntt0290212,Ha-aaENx0Fg,Catherine and Nicholas play a flirtatious back-and-forth game involving a love letter.\ntt0290212,Euld6YN5liw,Lee is a little taken aback by her sister Linda's birthday gift of a sex toy.\ntt0290212,bfzJMOBenVA,\"On set, director David Fincher directs Brad Pitt and Nicholas on the streets of Los Angeles.\"\ntt0290212,S5-Beq8JVsw,\"Gus tries to the convince Linda, a masseuse, for a happy ending.\"\ntt0290212,GWL0Cj7bAf4,Linda and Arty meet at the food court of the airport on their way to Tucson.\ntt0282209,bTx918Kpg30,\"While Regina is being held captive by her grandfather, her father is over taken by evil and goes after her brother and mother.\"\ntt0282209,BXLhK4ra6tQ,\"While visiting her grandfather, Albert Rua, Regina realizes that he is the one behind all of the evil things that have been happening to her family.\"\ntt0282209,M8gGpyKPAFQ,\"While Regina goes to her grandfather for help, the designer of the family house is stalked by the darkness.\"\ntt0282209,XGCcothBtRs,\"Regina and her little brother, Paul run into an evil version of their mother as their real mother is facing evil versions of them.\"\ntt0282209,mIpX6PnT9UY,Regina starts getting the feeling that she is being watched.\ntt0282209,ytCAMgdi9sw,\"Mark gets taken over by anger and rage while his son, Paul gets trapped in his room. Regina and her mother do their best to calm everything down.\"\ntt0282209,oLO_o48BejY,Regina comes home to find her mother trying to save her father who is choking on pills.\ntt0282209,Y3Y3HySArOU,\"Mark is driving his son, Paul, to school when Mark starts to have a panic attack and needs medical help.\"\ntt1139328,79tBbaqvbjM,Chaos erupts after former Prime Minister Adam Lang gets off his private jet and is assassinated.\ntt1139328,LmxUk-KxjoI,\"Things get tense after The Ghost shows Paul Emmett a picture linking him to the former PM, Adam Lang.\"\ntt1139328,yCIgtidXAnQ,The Ghost meets with Robert Rycart about the former Prime Minister's potential war crimes.\ntt1139328,g6Hf6Wbk6B4,The former prime minister Adam Lang is briefed on what the next steps are after a formal investigation of his possible war crimes is announced.\ntt1139328,zD_yR7ixRmo,The Ghost and former Prime Minister Adam Lang sit down to discuss the start of the PM's memoirs.\ntt1139328,HzLYedqOPIY,\"The Ghost meets Ruth Lang, the former Prime Minister's wife.\"\ntt1139328,jFEvKqbayIQ,The Ghost makes a compelling argument on why he's specifically suited to handle the biography of the former Prime Minister.\ntt1139328,-x8fqJDLsu8,\"The Ghost is tailed off the main land, onto a ferry, and has to make a daring escape.\"\ntt1139328,ax59TmvzCEg,The Ghost confronts Adam about his C.I.A. past.\ntt0427470,3GiWce_xXzA,\"Bone is about to kill Lewis, when Chris Pratt comes to the rescue of his friend.\"\ntt0427470,x2W8BqPt7mI,\"Chris turns the tables on Gary letting him know that he \"\"holds the power.\"\"\"\ntt0427470,xKffjQ-iU9E,Chris Pratt puts a plan of attack together to save his friend Lewis.\ntt0427470,n3BgbwW6PXc,Chris Pratt becomes smitten on site with the lovely Luvlee.\ntt0427470,1tclZvb40QA,Luvlee can't resist Chris's charm and Don Juan way with words of love.\ntt0427470,_nmYaR_ZllQ,\"Suspicious of Luvlee, Lewis questions her intentions of hanging around Chris Pratt.\"\ntt0427470,9AmyJhS8WWc,Deputy Ted's suspicion of something going on in the bank ends in tragedy.\ntt0052618,at0yN2HBrt8,\"Judah Ben-Hur goes to the Valley of Lepers to find his mother and sister, but he's not allowed to see them.\"\ntt0052618,frE9rXnaHpE,Judah Ben-Hur wins the race while Messala is left bleeding in the dust.\ntt0052618,k6TUgccyzNs,Pontius Pilate takes his seat in the arena as the chariot racers make one lap around the racetrack with uniform precision before they begin the race.\ntt0052618,AjmbgZ2wZvk,Quintus Arrius pushes the rowing men to the brink of exhaustion.\ntt0052618,lPr_GBMu4O4,Judah Ben-Hur and Commander Quintus Arrius meet… and they don't share the warmest of welcomes.\ntt0052618,ytTSb8302aI,Messala gives Judah Ben-Hur an ultimatum to chose a side in the struggle between Rome and the conquered people of Judea.\ntt0052618,5Bv5yv0n9Tc,Messala tries to convince Judah Ben-Hur to betray his people and speak out against rebellion so the Roman empire can take over.\ntt0052618,Fbt2UUthWg0,Ben-Hur gives water to Jesus on his way to his death.\ntt0052618,DPl05d5mi54,Messala gives Judah Ben-Hur his last words and reveals that his family is still alive.\ntt0052618,cDoyywKt1_0,\"In his time of need, Judah Ben-Hur, calls out to God to help him and his prayer is answered when a mysterious man offers him water to drink.\"\ntt0417741,Xsa1B-RyyXQ,Harry uses a devastating spell during a fight with Draco.\ntt0417741,KmdBHOUCDnM,Dumbledore rescues Harry when the inferi drag him underwater.\ntt0417741,lmlX39gM9-c,Snape keeps the promise of the Unbreakable Vow and kills Dumbledore when Draco can't.\ntt0417741,UwTKqqfS8FQ,Harry and Ginny share their first kiss in the Room of Requirement.\ntt0417741,8DbzvqOPUIk,Snape reveals to Harry that he is the Half-Blood Prince.\ntt0377818,bJuDofIoW34,Sheev helps Bo and Luke crack Boss Hogg's safe with explosives.\ntt0377818,meEN8tfT7b4,Bo and Luke meet some gangsters with their redneck flag and soot-stained faces.\ntt0377818,5HoL98HNOr8,Bo and Luke spend the night in jail and are further provoked by Boss Hogg.\ntt0377818,sAtsZPmjExo,Daisy helps Bo and Luke escape from the cops.\ntt0377818,6R__cRZAVCA,Bo and Luke have a large disagreement while trying to escape from the police.\ntt0377818,8Kfr7BvVmlU,Daisy seduces Enos to find out where Boss Hogg is hiding.\ntt0377818,pGZtlbYLpck,\"Bo races in the road rally, while Luke and Uncle Jesse clear the road of policemen.\"\ntt0377818,BvjorMEnuUI,Bo wins the road rally and then tries to make it to the courthouse for the strip mining vote.\ntt0377818,EIzFKMtPjH0,Bo and Luke meet Katie and her hot Australian roommate.\ntt0377818,RbMtPUPVZ_s,Bo and Luke pose as Japanese scientists to find out what kind of substance Boss Hogg wants to mine on their land.\ntt0348836,1w4rZE1A-fc,Chloe Sava welcomes Miranda Grey.\ntt0348836,9O0D63xWNLE,Miranda Grey has a flashback of the murder.\ntt0348836,reKMIuxFqzY,Miranda Grey is haunted by a ghost.\ntt0348836,-RuK7XKbefY,Miranda Grey receives questioning from Sheriff Ryan.\ntt0348836,_3w-4zC9FHU,Miranda Grey has a flashback of the murder of Dr. Douglas Grey.\ntt0348836,92YrRetDlCg,Miranda Grey is haunted during her escape from the hospital.\ntt0348836,uYWlWG9d4LE,Sheriff Ryan meets his demise at the hands of Miranda Grey.\ntt0348836,TAZulrjrEDo,Miranda Grey calls Pete Graham from prison.\ntt0348836,CTVWHGj92Xo,Pete Graham examines Miranda Grey.\ntt0348836,m99cHo5NBZ8,Miranda Grey is attacked by a ghost in the shower.\ntt0112462,wW0WRqnLYMw,\"Dr. Edward Nygma uses his boss, Fred Stickley, as a human guinea pig to test out his new experiment: a machine that makes him smarter.\"\ntt0112462,pGhBFh0cXRU,Batman and Robin team-up and prepare for the final battle against Riddler and Two-Face.\ntt0112462,Zc3wIAs3coU,Bruce Wayne meets Dr. Edward Nygma during a routine inspection of the technology division at Wayne Enterprises.\ntt0112462,2FxpNCvBV_s,Batman answers the call of the Bat-Signal only to find out that it was used by Dr. Chase Meridian in order to seduce him.\ntt0112462,YGQZwZadSfI,\"After stealing the Batmobile, Dick Grayson picks a fight with some local thugs only to get rescued by Batman, whom he blames for the death of his family.\"\ntt0112462,SMuET3l5cbc,\"After being saved by Robin, Bruce Wayne lashes out at him for risking his life. Later, Batman pays a nighttime visit to Dr. Chase Meridian.\"\ntt0112462,E5vZWrsaYWU,\"Batman saves both Robin and Chase, thus foiling The Riddler and his twisted scheme.\"\ntt0112462,CY2ruk5Vkq8,\"Bruce Wayne suits up as Batman and tells his butler, Alfred, that he'll be getting fast food tonight.\"\ntt0112462,11tbL8l5Av8,Bruce Wayne tells Dr. Chase Meridian the events that happened to him after his parent's death and the dark figure that became his destiny.\ntt0112462,wG5Lt-pineg,\"Riddler has a great time destroying the Batcave and the Batmobile, while Bruce Wayne and Chase right off Two-Face's henchmen.\"\ntt1120985,GqECd_A7qhY,Dean obsesses over his chance encounter with Cindy.\ntt0120891,LDC0ii3Rwww,Jim West teaches Gordon what a breast feels like.\ntt0120891,zV3AZFuaJVQ,Loveless makes a grand entrance to his party.\ntt0120891,yQ0FgE-WKi8,Jim West runs into General McGrath's men while making out with Belle in a water tower.\ntt0120891,EPJGFrntGfU,Jim West fights Loveless' henchmen on the mechanical spider.\ntt0120891,HvIGrLYKRh8,Jim West and Gordon run through a corn maze to avoid getting beheaded.\ntt0120891,gmbInMp4ioU,Jim West and Gordon get stuck together when their magnets switch polarity.\ntt0120891,SrJEWL6QHzo,Jim West and Gordon are very distracted when Rita Escobar spends the night on the train.\ntt0120891,_ItWcGtaJro,Jim West uses one of Gordon disguises to rescue him and others from Loveless.\ntt0120891,Uc21Z4ffSns,\"When Miss East tries to get Jim West shot, he goes on a shooting spree.\"\ntt0120891,NHRtlXDOqOU,Jim and Artemus discover Spider Canyon and the mechanical beast that lives within.\ntt0289879,zgQsfeosMf0,\"At age 13, Evan comforts Kayleigh about her father's abuse, but her brother Tommy is supremely jealous.\"\ntt0289879,cNiuEFffzf4,Evan visits Kayleigh to ask her about some memories from their childhood.\ntt0289879,Jf8OtaR_9MM,\"Evan wonders if Kayleigh still loves him, even though in this reality she is with Lenny and he is crippled.\"\ntt0289879,EkptyQec_LM,Evan and Andrea go to a psychic named Madame Helga to have their futures read as a joke.\ntt0289879,1TqRcAl_928,Evan meets Kayleigh in an alternate reality where she is a drug addicted prostitute.\ntt0289879,ixYWkDAPPzA,\"Evan performs the last act he can to save the people he loves, strangling himself with his umbilical cord at the moment of his birth.\"\ntt0289879,2L2dyDpd7LA,Young Evan stands up to Mr. Miller when he orders him and Kayleigh to take off their clothing.\ntt0289879,LimvO4zrETM,Tommy follows Evan and Kayleigh across campus before attacking them.\ntt0289879,1zWf02vGl3M,\"Evan saves the mother and her baby, but ends up in an alternate reality where he is crippled and Kayleigh is now with Lenny.\"\ntt0289879,z-3ETV74ygs,\"Evan visits Lenny in an asylum. He is determined to fix everyone's lives for the better, but his father warns him that it is impossible.\"\ntt0329101,2gzMbWXWIA4,Freddy instills fear in everyone and uses Mark to pass on a message to the others.\ntt0329101,bAjGVN4f6wM,Lori Campbell pulls Freddy out of her dream where he squares off with Jason in the real world.\ntt0329101,WRF2fIzwT6k,Freddy Krueger and Jason Voorhees viciously battle it out at the lake.\ntt0329101,7SZs2Qr0zvE,Jason viciously murders Trey while Gibb is taking a shower.\ntt0329101,NQhm9xmVHdU,Jason Voorhees and Freddy Krueger continue to battle it out.\ntt0329101,at6F59Zfqlw,Lori brings the fight between Freddy Krueger and Jason Voorhees to an epic conclusion. Or does she?\ntt0329101,0NRYcIcHfV4,Jason Voorhees crashes a rave and unleashes his mayhem.\ntt0329101,Qa_hiWmXFUA,A tranquilized Jason comes face-to-face with Freddy Krueger in the nightmare world.\ntt0329101,FlaH13fnXk0,\"Blake has a terrifying nightmare, only to wake up to see his decapitated father sitting next to him.\"\ntt0329101,t-Ojbv20L80,\"As the group looks for the Hypnocil, Freddy takes control of Bill and orders him to dump all of the pills down the drain.\"\ntt0251160,ORQgPS4lxmg,John Q. holds the hospital hostage to save the life of his son.\ntt0251160,edgiUq5ymRE,John Q. talks with his dying son as a sniper moves in behind him.\ntt0251160,AYS6V3rDT6c,John Q. negotiates with Lt. Grimes for the life of his son.\ntt0251160,oceYG6ogT_E,The hospital hostages debate the nature of healthcare.\ntt0251160,IGVwlBTTqYM,Dr. Turner explains Mitch's heart condition.\ntt0251160,6sQWxbE2RAk,John Q. says goodbye to his family after being sentenced to prison.\ntt0251160,dIu418Y0TGY,Mikey collapses on the baseball field.\ntt0251160,QxcCdLaKhd8,\"As John Q. prepares to kill himself for his son, Denise receives news that a matching heart is available.\"\ntt0251160,LjiRvVUmets,John Q. informs his son that a new heart is available for him and says his last words of advice.\ntt0251160,1WnfdpZYp_s,John Q. offers to sacrifice himself for his son.\ntt0331632,ulGMlIZNr6M,Shaggy and Scooby Doo run into the cotton candy glob while trying to escape other monsters.\ntt0331632,9rj02jWyo94,The gang searches Wickles' mansion for clues when they are attacked by the Black Knight Ghost.\ntt0331632,bLsnl_fdBoI,\"Fred and Daphne defeat two ghosts while Shaggy, Scooby and Velma run into monsters of their own.\"\ntt0331632,yz8GjHOA2xo,\"After the gang confronts the Evil Masked Figure, they all get captured by the Tar Monster. Scooby manages to find a way to defeat all the monsters.\"\ntt0331632,kHk2-mOOYQg,Velma hides when Patrick shows up at Mystery Inc.\ntt0331632,Md12rwlpeFU,Shaggy and Scooby Doo talk about how they do nothing but mess things up for the gang.\ntt0331632,0oxx_2M6Ctw,The gang goes to investigate Old Man Wickles' house but end up in a trap.\ntt0331632,ylvCOlF5RLI,Shaggy and Scooby Doo stumble upon a lab full of potions.\ntt0331632,vZyIBlDO-E8,\"At the opening of the Mystery Inc. exhibit, one of the monsters comes to life as an Evil Masked Figure threatens the gang.\"\ntt0331632,uen_1bL_TXc,\"Fred and Daphne hold off the Black Knight Ghost and the 10,000 Volt Ghost so the rest of the gang can sneak inside.\"\ntt0267913,_qjEm2ll0qc,The gang fights back against Scrappy Rex and the island goons.\ntt0267913,xby81m1GtH8,A possessed Fred chases after Shaggy and Scooby Doo.\ntt0267913,WC60ALoX_Nk,\"Pamela Anderson crashes into the toy factory in the Mystery Machine, followed by a mob of reporters and fans.\"\ntt0267913,u455yxBv35A,The gang has a run-in with the Luna Ghost.\ntt0267913,Pf4RjsdJE0I,Velma figures out how to destroy the creatures that are possessing everybody while Daphne and Fred accidently switch bodies when their original souls come back.\ntt0267913,JC2TvxRIR4Y,\"Mondavarious is unmasked, and revealed to be a robot controlled by Scrappy Doo\"\ntt0267913,mEzXLJL48nA,The gang runs into some trouble while snooping around the castle on Spooky Island.\ntt0267913,Ia8LqyDsdbo,Velma reminisces about the old times in a flashback sequence where Scrappy-Doo is introduced.\ntt0267913,iEattbpjGG4,\"While enjoying their day at the beach, Shaggy and Scooby-Doo are invited to Spooky Island to solve a mystery.\"\ntt0267913,FgYr00Scelc,Scooby Doo and Shaggy have a burping/farting contest.\ntt0186566,Jr9tBcUO68M,Frank and Hawk realize that the only solution for getting the nuclear missiles away from Earth is to have Hawk fly them to outer space.\ntt0186566,uu4tB54Uw5I,Hawk Hawkins makes the ultimate sacrifice when he volunteers to fly the Russian nukes out of Earth's orbit.\ntt0186566,-Pf1f0pZdnQ,Frank Corvin takes a moment to let the majesty of space soak in.\ntt0186566,LruyfJJT7qY,Hawk Hawkins shows Frank Corvin and the younger astronauts how it's done during a shuttle landing simulation.\ntt0186566,BLbh7T1mPZ4,Ethan Glance defies Frank's orders and accidentally activates the satellite carrying 6 nuclear missiles.\ntt0186566,xpXxwJNaZDY,\"To Frank Corvin and Hawk Hawkins, a high-G training centrifuge is just another place for a grudge match.\"\ntt0186566,zQTDoxrgBeU,Hawk Hawkins gives a birthday boy the ride of his life. Jon Hamm appears as a young pilot.\ntt0186566,rKHW39mShF4,\"With the onboard computer malfunctioning, Frank Corvin, Jerry O'Neill, and Tank Sullivan are forced to land the shuttle manually.\"\ntt0186566,Dh__Anjhn6M,\"If they are going to become astronauts, Frank Corvin, Hawk Hawkins, Jerry O'Neill, and Tank Sullivan first have to pass their eye exam.\"\ntt0186566,xIMi15Erjvo,\"After crashing another test plane, young Frank, Hawk, Jerry, and Tank get to meet their successor.\"\ntt0244244,FDwpGLz3Mr8,Gabriel Shear pays a visit to Senator James Reisman.\ntt0244244,qkHSTpTqlug,Stanley Jobson meets the sexy Ginger Knowles.\ntt0244244,mYS3zyHIxqA,The police pursue Gabriel Shear in a bus that is being lifted by helicopter.\ntt0244244,QAMDKK5sfd0,Gabriel and Stanley argue over the ethics of what Gabriel is doing while on a bus filled with hostages.\ntt0244244,L8Ig4HbgA0c,\"Stanley offers Gabriel a new deal, but Gabriel threatens Ginger Knowles to make him cooperate.\"\ntt0244244,k6_TBuGcwzA,Stanley Jobson discovers Ginger's secret.\ntt0244244,WjDLin6Egyw,Gabriel Shear discusses the problem with Hollywood films.\ntt0100944,Rtf8uPmgq0A,\"The Grand High Witch tricks Bruno into eating a \"\"special\"\" candy bar. Very special.\"\ntt0100944,TrjLNpfDTi0,\"The Grand High Witch orders her fellow witches to remove their wigs, and makes an example of an unruly witch.\"\ntt0100944,P-GgTCUYjhw,The Grand High Witch captures Luke and turns him into a mouse.\ntt0100944,QsuIp03FENc,Luke successfully poisons the entire coven of visiting witches with their own transformation potion.\ntt0244244,VsLUFKIRr1s,Gabriel Shear and Stanley Jobson are pursued through Los Angeles until Gabriel breaks out the big guns.\ntt0244244,hiHZWeeoEUg,Gabriel Shear has strapped his hostages with C4 and stainless steal ball bearings.\ntt0244244,mWqGJ613M5Y,Gabriel Shear gives Stanley Jobson the ultimate hacking test with his life in the balance.\ntt0105695,pbzjsBcOuB8,\"When Little Bill comes to Greeley's to disarm the town's new arrivals, William Munny is too sick to fight him off.\"\ntt0105695,7_uvEuNwUj4,William Munny takes his revenge on Little Bill and the town of Big Whiskey.\ntt0105695,PmFEdtB8eNw,\"Little Bill tortures a captured Ned in order to get him to talk, and Ned's story starts to fall apart.\"\ntt0105695,GnWalWAmryk,\"William Munny and Ned reminisce about their younger days, and William regrets the bad he's done.\"\ntt0105695,HdcT33sKbn8,\"When W.W. Beauchamp swears by one of the accounts of English Bob in his book, Little Bill walks him through what really happened that night.\"\ntt0105695,X5Vb_FUuRDE,\"With the cowboys pinned down, Ned finds he no longer has the stomach for killing, and William Munny has to finish the job.\"\ntt0105695,4x_MfkJvgbU,William Munny and the 'Schofield Kid' are ready to leave with the money when they're informed of Ned's death at the hands of Little Bill.\ntt0105695,cAYVS8aRQ1U,\"Waiting outside of town for their money, the \"\"Schofield Kid\"\" and William Munny discuss the act of killing.\"\ntt0105695,Mjkt4UgcTmg,Will Munny takes his revenge on Little Bill for killing his best friend.\ntt0105695,rsyw13yrRoo,Little Bill disarms English Bob and W.W. Beauchamp and proceeds to send a message.\ntt0089791,xO7O6zwFZ1k,\"Pee-wee sits down for his morning breakfast, which he tops off with Mr. T cereal.\"\ntt0089791,xfeLsPRl3so,Francis tries to convince Pee-wee to sell his prized bicycle.\ntt0089791,urnRVr1P2bc,Pee-wee gets carried away when performing tricks on his bicycle.\ntt0089791,XC3yGH4nETQ,Pee-wee shows his feminine side in order to help a fugitive elude the police.\ntt0089791,lPMSGTfK4Aw,Pee-wee hitches a ride with a disturbed truck driver known as Large Marge.\ntt0089791,cJOqz6CPxLY,Pee-wee watches his big screen debut with friends at a drive-in theater.\ntt0089791,7eTl05KHwFI,Dottie tries to score a date with Pee-wee when he comes in to pick up a part for his bike.\ntt0089791,0PdeHy_87OM,Pee-wee arrives at the Alamo with hopes of finding his stolen bicycle in the basement.\ntt0089791,QoJrjjy0WeU,Pee-wee conducts an excruciatingly long meeting with his friends regarding the theft of his beloved bicycle.\ntt0089791,gwjAFSu_VKM,Pee-wee accuses his rich nemesis Francis of stealing his bicycle.\ntt0195945,D0Gxk6zCSFQ,Day-Day introduces Craig to Mrs. Ho-Kym.\ntt0195945,z_Bx500h-DQ,Joker is interrupted while counting his money.\ntt0195945,yVlOitZ19Wc,A customer comes into Pinky's to complain about a CD that he bought earlier.\ntt0195945,3wft012b2tk,Day-Day talks to Craig about his problems with his baby mama.\ntt0195945,5Mb6xTtmtuA,\"Craig Jones introduces himself to Karla, and ends up getting chased by the dog.\"\ntt0195945,kQrU0KRsCNo,Craig gets high with his Aunt Suga and Uncle.\ntt0195945,sL1b7ZnItoI,Craig sneaks into Joker's house to talk with Karla.\ntt0195945,gVseixK20cM,Debo and Tyrone devise a plan and sneak into Mr. Jones' truck.\ntt0195945,Aok-54MlYFk,\"Uncle Elroy introduces Craig to Suga, while D'wana keys Day-Day's car.\"\ntt0195945,KU8y7u-xqHg,Pinky mistakenly takes Craig for a robber.\ntt0066999,yr-HmSz421c,Harry comes face to face with the killer and almost dies himself.\ntt0066999,IKFthgUbCdY,Inspector Harry Callahan clashes with the Mayor about how to handle the Scorpio Killer.\ntt0066999,RitnM9n0jTY,\"Harry is assigned a new partner, Inspector Chico Gonzalez.\"\ntt0066999,38mE6ba3qj8,\"After shooting down their getaway car, Inspector Callahan confronts one of the bank robbers who is reaching for a gun.\"\ntt0066999,0wAtjDAyv4M,The Scorpio Killer hires a thug to beat him up and then frames Harry for it\ntt0066999,8WQG1IHkv4k,Chico and Harry have a shootout with the Scorpio Killer on the rooftop.\ntt0066999,buNwwAximcE,Harry catches the Scorpio Killer on a football field and interrogates him.\ntt0066999,dKC2CPS9AFI,Inspector Callahan employs some reverse psychology to get a man threatening to jump off of the ledge.\ntt0066999,kh62SjGdI0s,The District Attorney takes Harry to task for ignoring the suspect's rights and not getting a search warrant.\ntt0066999,Ky7rHZmk9Yw,Harry Callahan catches up to Scorpio Killer in the final showdown.\ntt0327056,zm2fF6nj6W8,\"Annabeth Markum supports her husband, Jimmy.\"\ntt0100944,in5f7RMtnoU,Helga shows Bruno's parents what the witches have done to him.\ntt0327056,gTgm44dkSCY,Jimmy confesses the depth of his loss for his daughter to Dave.\ntt0327056,13_ffd4CiG4,Dave Boyle tells his wife about his abduction when he was a boy and how it has affected him ever since.\ntt0327056,-yvnWPZy1FQ,Brendan Harris confronts his brother Silent Ray Harris about the murder.\ntt0327056,RYlKhpi--QQ,\"Jimmy Markum breaks into the scene of the crime as Sean Devine discovers the body of his daughter, Katie Markum.\"\ntt0327056,rbFIs5-Rn_Y,Whitey Powers and Sean Devine have some questions for Dave Boyle.\ntt0327056,pkylHxUSxLM,\"Dave Boyle comes home covered in blood, to his wife Celeste's surprise.\"\ntt0327056,W_URoElm3Ts,\"After his daughter's murder, Jimmy Markum wonders about small choices that can have big consequences.\"\ntt0327056,s9k-uO50300,\"After apprehending the killers, Sean questions Jimmy about the whereabouts of their friend Dave Boyle.\"\ntt0327056,IGlBlA7Vr0M,\"Jimmy confronts Dave about killing his daughter, but Dave admits to killing a child molester.\"\ntt0770752,TYC_FD2YXro,Tess confronts Finn about his debts with Big Bunny.\ntt0770752,ygU2QenlIvU,Finn tries to negotiate with Bigg Bunny about his cut of the treasure.\ntt0480249,aK1r7tBWnro,Robert and Anna realize that the infected have followed them home. Robert uses his last line of defense in hopes that it will be enough to save their lives.\ntt0480249,LEDYzJazfw0,Robert sees a strange sight while driving through the deserted city.\ntt0480249,ueR0lJzIxWo,\"After his dog saved him life during an attack by the infected, Robert has to do the unthinkable.\"\ntt0480249,lO8EJQzkYxg,\"Out of grief and anger, Robert lures the infected to the pier with the intent to destroy them, even if it means destroying himself.\"\ntt0480249,er6wSXJC57U,Sam risks her life to save an injured Robert when a pack of infected dogs attack.\ntt0480249,MbbKc8GJtFA,\"Once he knows their whereabouts, Robert sets out to capture an infected.\"\ntt0480249,sWEvLBzMpYE,Robert follows his dog Sam into an abandoned warehouse where they stumble upon a group of the infected.\ntt0480249,kPSk30qzgFs,Robert realizes that the infected still have a shred of humanity and that he is the one who has been the monster for taking and experimenting on them.\ntt0480249,-YykCz0f3Vk,\"Anna, and Ethan take refuge in the laboratory when the infected attack.\"\ntt0480249,BHZKSYLAecQ,\"While driving through the city, Robert and his dog Sam spot some deer and chase them through the deserted city.\"\ntt0366548,b1jqSRnqLMw,\"The \"\"aliens\"\" arrive, and Mumble leads the other penguins in a dance routine in an attempt to communicate with them.\"\ntt0366548,ymA7OFZ9lF0,\"Mumble and the amigos cause an avalanche, which dislodges a strange contraption from the ice.\"\ntt0366548,qVNAGVSKEBQ,Mumble fights to get a fish for Gloria in an attempt to show his affection for her.\ntt0366548,xGj_wbPl-6w,Mumble finally finds a way to communicate with the zoo patrons.\ntt0366548,PFbxA5HjwyQ,\"Mumble takes a leap of faith to follow the \"\"aliens\"\" into the unknown world and save his family.\"\ntt0366548,NkaJFlr5Fhk,Noah the Elder forces Mumble to leave the group because he believes that he's responsible for the famine.\ntt0366548,-0f67QE-HP8,Mumble narrowly escapes being eaten by a hungry leopard seal.\ntt0100944,x1H6pD3vNwQ,The Grand High Witch finds a devious way to get Luke to come out of his hiding spot.\ntt0066434,nkQAhpLBok8,\"Imprisoned in the White Void, THX is tortured by the Chrome Robots for his alleged crimes.\"\ntt0066434,ik_WAfUpVKQ,THX has a hard time focusing as an accident occurs in another test chamber.\ntt0066434,U0YkPnwoYyE,THX visits a Unichapel and makes a confession to a computerized religious entity known as OMM 0910.\ntt0066434,4bY-bFqj97k,THX climbs to his freedom.\ntt0066434,J5nmxHjPuvY,THX flees in an autojet as two police bikes engage him in hot pursuit.\ntt0066434,Ysdz8bIuyWY,A Control Officer orders a mind lock on THX when he violates protocol.\ntt0066434,0MUWDGcRCOQ,\"SRT helps THX and Sen escape the white void, only to lead them into a massive sea of people.\"\ntt0066434,a-SnsqKFHLY,\"THX and his roommate LUH go about their routine workday, afflicted with something that they can't quite comprehend.\"\ntt0066434,XmGKlWjQHic,THX endures a torture of the bungling variety as a pair of disembodied prison monitors play around with THX's motor functions.\ntt0066434,DfSToqJxCSI,\"THX is subjected to a battery of medical tests, with the end result indicating that some of his organs are suitable for harvesting.\"\ntt0366548,WTMcikRZcBk,\"Mumble, the amigos, and Lovelace are attacked by two hungry killer whales.\"\ntt0366548,kMkxtj-mu14,\"Gloria comes to join Mumble and the amigos on their journey, but he pushes her away in an effort to keep her safe.\"\ntt0366548,q-H62GgHjeg,\"Miss Viola teaches her students the importance of their heartsongs, but Mumble has trouble discovering his.\"\ntt0100944,ngeORuhnajc,\"A witch detects the presence of Luke in the meeting room, and the chase is on.\"\ntt0100944,jTHFCMuIrzQ,A Woman in Black attempts to lure Luke out of his treehouse with a disappearing snake.\ntt0100944,2AeJ2VHssPI,\"Helga tells her grandson Luke about witches, and how to spot them.\"\ntt0100944,ZEshWoP9if0,Mr. Stringer chastises Luke Eveshim and his grandmother Helga for bringing mice to his hotel.\ntt0100133,tCtZfBVS1Tg,Danny recites a poem for his fellow crew members.\ntt0100133,GNdpxi9F1AA,Val is finally able to let the bombs drop when he gets a clear shot at the city below.\ntt0100133,Q3LcGb0DGM8,The crew attempts to land the Memphis Belle with malfunctioning landing gear and only one working engine.\ntt0084917,rj7e6WvyClY,Jenny Fields purchases a prostitute for Garp.\ntt0084917,xVT46mh22iw,Roberta Muldoon tells Garp about her desire to have kids. Garp attacks the reckless plumber who speeds through his neighborhood each day.\ntt0084917,hRoE2HRnpkk,\"Jenny Fields tells Dean Bodger how she conceived her son, Garp.\"\ntt0084917,bUWnZAFfxYc,\"Garp discovers that Helen Holm has been sleeping with her student Michael Milton, and in his rush to get home, he crashes into Michael's parked car.\"\ntt0084917,GTqz4duPdYQ,\"Garp and Helen find a new home to buy, and then a plane crashes into it.\"\ntt0084917,p7bpv3zs8Dk,Roberta and Garp play with the kids.\ntt0084917,ypw7AA7tf-4,Garp imagines flying and fighting villains with his father.\ntt0084917,hdhW0bChQwg,\"Garp and Roberta Muldoon attend Jenny's all female memorial service, where Garp is spotted and attacked for being a man.\"\ntt0084917,YUSxYNj_kM0,\"Garp coaches wrestling practice, when suddenly, Pooh comes in and shoots him.\"\ntt0084917,XlZUBUSKbFk,\"Garp meets transsexual Roberta Muldoon, who is the most sane person in his mother's circle.\"\ntt0037913,aKnvOP-1U00,Mildred recognizes what a bad influence Monte is on Veda and asks him to stay away from her.\ntt0037913,gI1_6ob3hio,\"Mildred gives her daughter Veda a brand new car for her birthday, but she responds with a sense of entitlement.\"\ntt0037913,ozf32hrXGiY,Veda embarrasses and berates her Mildred for being a waitress.\ntt0037913,kjzRZCxQ1EE,Veda tries to convince Mildred to marry Wally for his money.\ntt0037913,JSmcnUcLVHA,\"After Mildred and Bert get into an argument, they decide to separate and Mildred kicks him out of the house.\"\ntt0037913,-ASYRiRflDM,Wally makes a move on Mildred once he knows that Bert is out of the picture.\ntt0037913,Il1NzkQ3rYs,Monte and Mildred spend a romantic day together and confess their feelings for each other.\ntt0037913,x4CEkYJNir0,\"After Mildred discovers Veda's scheme, she starts to see her daughter in a new light.\"\ntt0037913,70NH2okaBY4,\"After returning from a vacation in Mexico, Mildred catches up with Ida and admits that she wants to reconcile with her disrespectful daughter.\"\ntt0037913,GPuCrJujOkk,\"Mildred is shocked to find that Veda and Monte had been involved in an affair. Then, in the heat of an argument, Veda shoots Monte with Mildred's gun.\"\ntt0100133,YER_g7jph94,\"While manning the plane, the boys discuss their post-war plans.\"\ntt0100133,RmhSgZ106Wg,Col. Harriman shows Lt.Col. Derringer letters written by the families of the deceased.\ntt0100133,6MrxdKGZaWI,Dennis and Luke receive a scare when a bag of tomato soup explodes in the cockpit.\ntt0100133,djIvmaYI9LQ,\"Luke shoots down an enemy plane and watches in horror as it crashes into their fellow plane, Mother & Country.\"\ntt0100133,ypvzo6iiM7M,The Memphis Belle is attacked by a fleet of German planes.\ntt0100133,59Ntwoot4_s,\"After the plane leading the fleet goes down, the Memphis Belle takes over.\"\ntt0100133,85CcD6t5cx4,\"When an engine catches fire, Dennis and Luke have to think of a way to put it out quickly.\"\ntt0036098,jVsXMF9sbVQ,\"Exhausted after swimming across the river, Lassie is saved by Dan'l and Dally Fadden's kind hospitality.\"\ntt0036098,P6PLrI4R4x4,Lassie is almost home when she encounters a couple of determined dog catchers.\ntt0036098,voYRf2GVXbc,Lassie escapes her new home just in time to meet Joe after school.\ntt0036098,2H7XknY3PMA,\"After being taken to Scotland against her will, Lassie manages to escape her new owners with a little help from Priscilla.\"\ntt0036098,NBRHljOdrh0,Tootsie and Lassie risk their lives to save Rowlie when two bandits attack from the woods.\ntt0036098,P7JKRDjM_Vk,Rowlie and his dog Tootsie put on an entertaining show with help from Lassie.\ntt0036098,VRxRsbDfLaw,\"After her first escape, Lassie is returned to the kennel, but she resorts to jumping the fence.\"\ntt0036098,BV1Nyf_u1AA,\"Like every morning, Lassie wakes Joe up and escorts him to school.\"\ntt0036098,O2VkpNsOM4o,\"After a long journey home full of perils, Lassie is finally reunited with Joe.\"\ntt0036098,TvSS_-BohSc,Lassie is mistaken as a danger when she passes through a herd of sheep on her way home.\ntt0770752,gX57uKMrxp4,\"After their divorce, Finn tells Tess that he found the treasure, but that their boat is gone.\"\ntt0770752,VY4Bo_Mcws4,Tess and Finn attempt to fly Bigg Bunny's plane.\ntt0770752,IMF8PvqFN-c,Tess runs into Finn on Nigel's yacht the night after they get divorced.\ntt0770752,hHibPPRQB40,\"Tess and Finn realize that the treasure is buried in the cemetery, which sparks their excitement for each other.\"\ntt0770752,0vlBQqEc5YA,Finn makes up with Tess before he tries to land the plane.\ntt0770752,XUwybDr5HlQ,Bigg Bunny and his henchmen chase Finn and Tess through the woods.\ntt0770752,LCsNRcdlAkw,Gemma tries to distract Moe's crew while Finn breaks up his grid.\ntt0770752,h8E3sSTc11E,Finn gets thrown off a boat and left for dead by Cordell and Curtis.\ntt0239395,vAd0QlUaIBY,Mr. Tinkles explains to his minions his plan to rule the world.\ntt0239395,XQUKOgrir0A,\"Mr. Tinkles sends the dogs an evil message, forcing Butch to turn to Dog Headquarters for support.\"\ntt0239395,gknobwKAStE,The ninjas didn't finish the job so Mr. Tinkles must send in the Russian.\ntt0239395,nC-it_V8df0,Lou the Beagle battles a pair of ninja cats.\ntt0239395,45RmWBZsU1Y,Mr. Tinkles visits his owner's factory to fire all the workers as the next step in his plan.\ntt0239395,DBa4fJc9rE0,Mr. Tinkles reveals himself and his plan to spread a mass dog allergy to the world.\ntt0239395,aIZsVuaUWB4,\"Buddy chases a cat down the street, but ends up getting catnapped.\"\ntt0239395,MuFfh15AMLU,Butch and Lou are attacked by a Russian assassin trying to destroy the canine allergy formula.\ntt0239395,AQa015gBmro,Mr. Tinkles talks to the maid so she freaks out and will not let anything stop his evil.\ntt0239395,aeF3Q6eTU5k,The Russian Blue breaks in to steal the formula from Mr. Brody and the dogs try to stop him.\ntt0103776,UcaPMGGla4o,The Penguin collapses to his death and his penguin friends carry him to his watery grave.\ntt0103776,eIo_S0aHyfI,Catwoman and The Penguin carry out their plan to frame Batman as a wanton murderer.\ntt0103776,wNWy3YmM3Kw,Max Shreck introduces Oswald Cobblepot to his campaign team for mayor.\ntt0103776,aokJADOVMC0,\"While The Penguin speaks to the press and warms the hearts of Gotham's residents, Catwoman kicks some tail and announces herself to the world.\"\ntt0103776,UqStvc107-M,Max Shreck pushes Selina Kyle out the window because she knows sensitive information about his diabolical plans.\ntt0103776,A08XpT2q4Xc,\"After her feline resurrection, Selina Kyle destroys the possessions of her former meek persona and becomes Catwoman.\"\ntt0103776,c4ux2NclHoE,\"Batman chases down The Penguin and uses his \"\"babies\"\" — actual penguins — against him.\"\ntt0103776,kWrOmEtXk0k,Catwoman blows up a department store.\ntt0103776,2aN2OU0pk-Q,Batman tries to dissuade Catwoman from getting revenge against Max Shreck.\ntt0103776,R66c0UiUCZ8,The Penguin presents his plan to kidnap the firstborn sons of Gotham City and toss them into the sewers.\ntt0443649,lYxVM8oNxRM,\"Guards discover D'Leh's camp, but Tic'Tic valiantly defends them with his spear.\"\ntt0443649,c-NDI-HvYd4,\"During the battle at the pyramid, D'Leh tries to save Evolet from her captor.\"\ntt0443649,mVzdHEhC8YI,\"On the massive pyramid, D'Leh starts a mammoth stampede and slave revolt against the wicked masters.\"\ntt0443649,4NKk7BYl0Rk,D'Leh helps a trapped sabretooth tiger escape a pit and hopes that he will not be eaten.\ntt0443649,DoKxkx0bYRk,D'Leh and his tribe take on a herd of wooly mammoths. The hunt master Tic'Tic takes the lead in herding them into their trap.\ntt0443649,k3yUlJtCkJg,\"D'Leh, Evolet and Baku are chased by hungry prehistoric birds.\"\ntt0443649,EzqRc-RLJfU,The Pyramid God is not pleased with the slaves' progress on his construction and teaches them a lesson.\ntt0443649,wJJDM675Ypw,\"With a bit of good fortune, D'Leh brings down a mammoth and claims the white spear and Evolet as his reward.\"\ntt0443649,SRlmBs7EwMk,D'Leh faces down the Pyramid God and proves that he is no deity.\ntt0443649,zGrIGZifpwg,D'Leh convinces the warriors to fight as one to bring down their godlike enemy.\ntt0448011,RDdc0-JD8Dk,John Koestler returns to his estranged father's home and embraces his family before the end of the world.\ntt0448011,mb63Ds-XWQE,\"John Koestler is refused entry on the alien ship, but allows his son to leave with the The Strangers.\"\ntt0448011,1YrG1iLwEWk,\"While John Koestler argues with Diana, Caleb and Abby are kidnapped by the Strangers.\"\ntt0448011,iojZt-Ht4Nc,John Koestler confesses to Phil Beckman that the world is going to end and there is nothing he can do about it.\ntt0448011,kq-GLDVKqMU,\"While their parents are inside looking for clues, Caleb Koestler and Abby get a visit from The Strangers.\"\ntt0448011,yw7tuJeWXlA,John Koestler explains to Diana why he must protect the ones closest to him.\ntt0448011,E6gWFTv3xE8,John Koestler happens to be at the location of the next predicted disaster -- a cataclysmic plane crash.\ntt0448011,_pWW7Xmat6o,\"John Koestler notices the numbers on the page have a specific set of sequences, which refer to the times of fatal disasters over the last 50 years.\"\ntt1136608,LS4oNHk0tlk,\"The women in Guido's life are introduced including Mamma, Carla, Stephanie, Luisa, and Claudia.\"\ntt1136608,R-chvFgDLnM,\"Guido sings \"\"Guido's Song\"\" as a reaction to the hounding questions of the journalists.\"\ntt1136608,ymZFsUBiKJA,Guido Contini talks about the nature of filmmaking at a press conference.\ntt1136608,W1KhvPZmTgc,\"Liliane La Fleur sings about the Folies Bergères, a Parisian theater with showgirls.\"\ntt1136608,it_WqpOBfWI,\"Luisa comes to the realization that she's just another woman to her husband Guido, and lets him know it.\"\ntt1136608,KNO5Mhxm8G4,\"Claudia sings about how Guido fails to love her, despite her love for him.\"\ntt1136608,bmmxeZEnsL0,Stephanie lavishes praise on Guido for both his style and his movies.\ntt1136608,nfC8sEnM_5A,\"Saraghina, a prostitute, teaches Guido the art of love and sexuality.\"\ntt1136608,3_dOw0UilDY,Carla seduces Guido over the phone.\ntt1097013,w8txE148NNI,Chita and Jesus mistake Eric for their intended target.\ntt1097013,oIEtwZK04wM,Guch and Brody argue about who messed up the bank heist the most.\ntt1097013,fO8-yVmcQCo,\"During a stand-off, Guch fires the first shot which leads to all hell breaking loose.\"\ntt1097013,I2gqWarrj-Q,\"When Bodega realizes that his shipment has gone missing, he orders Jesus to track it down... or else!\"\ntt1097013,xdQyp5ewyew,Ms. Jackson gives Leo another chance to prove he's a good worker or else she will fire him.\ntt1097013,cWMP0aAueQY,Guch and Brody discover a cache of cocaine.\ntt1097013,l1OgTkhFJn8,Guch and Brody negotiate a drug deal with Shavoo.\ntt1097013,1-rmOabireo,\"Bodega catches Jesus and Chita off-guard, and puts the couple in a compromising position.\"\ntt1097013,qAdNnZqKGiQ,Jesus and Bodega interrogate Leo as to the whereabouts of the missing cocaine box.\ntt0448011,EzocwDE3VK4,\"Determined to stop another disaster from happening, John Koestler chases down a suspected terrorist, only to realize he's wrong.\"\ntt0448011,wrO6W6vTjV0,Caleb Koestler is awakend by a mysterious stranger and sees a terrifying vision.\ntt0464154,FPDAxknJFW8,\"Jake rescues Kelly and shares an intimate moment with her, while Novak tows them to a minimum safe distance.\"\ntt0464154,XUxsLiSEi9w,\"When their boat crashes into the rocks, Derrick looses one of his girlfriends... as well as something far more personal.\"\ntt0464154,71GRwoL1tdA,\"The panic and the bloodshed are kicked up a notch, as spring breakers take matters into their own hands to escape the piranha onslaught.\"\ntt0464154,ITN9541Gd8Y,The piranhas attack the spring breakers in a massive feeding frenzy.\ntt0464154,AFBqbhNngJo,\"Mr. Goodman is stunned by the presence of a prehistoric pirahna, and warns of the difficulty of destroying the species.\"\ntt0464154,LUe27-RMDX4,A freak beer bottle accident sets off a feeding frenzy of piranhas for poor old Matt.\ntt0464154,FHSwbggymEU,\"When divers from the USGS accidentally disrupt the piranha's underwater breeding ground, they become a tasty meal.\"\ntt0464154,ifDBVFHT1DU,\"Jake allows himself to get caught up in the spring break debauchery until Kelly, the girl he has eyes on, catches him in the act.\"\ntt0464154,4vOQu8rERuo,Kelly and Jake get talked into doing body shots while being filmed for a Girls Gone Wild-like TV show.\ntt0892318,tUZYyuHIbJw,\"While spending the day with Juliet's secretaries, Sophie makes an exciting discovery.\"\ntt1655420,Qp4Vo2bMgJk,Colin watches as Marilyn sings in the bathtub.\ntt1655420,tANIXMqv77U,Colin professes his love to Marilyn and gets her to promise to return to set and finish the movie.\ntt1655420,nfoIqJWYqX4,Marilyn convinces Colin to shed his inhibitions and take a dip in the lake.\ntt1655420,cErG8_neSa4,Marilyn invites Colin over to get his perspective on how the film is proceeding.\ntt1655420,zx0PxIdo_pw,Sir Laurence Olivier grows increasingly frustrated with Marilyn and her reliance on Paula Strasberg.\ntt1655420,aJY0vUsHL9Y,\"When Sir Laurence Olivier grows frustrated with Marilyn, Dame Sybil Thorndike offers to practice their lines together.\"\ntt1655420,mD7NPkG9kwg,Marilyn struggles with her lines as Sir Laurence Olivier tries to keep the table read moving along.\ntt1655420,MoJqPqmjxUM,Marilyn arrives in England to work on a movie with Sir Laurence Olivier.\ntt1655420,Lf1ORGBLKtc,Vivien Leigh stops by the set and watches Marilyn's dailies with great jealousy.\ntt1655420,MRTCRVf4ppc,\"Colin visits Marilyn in her dressing room, and she questions his allegiance to Olivier.\"\ntt1655420,NwZlSjkXWnk,Marilyn demonstrates to Colin how easy it can be for her to turn on the sex appeal.\ntt1655420,cGgPJKE_jSs,Colin watches Marilyn perform a number in There's No Business Like Show Business.\ntt1637706,M-_XQTwadHg,Natalie and Miranda try to get Liz to see that she's let herself go.\ntt1637706,tc4zPfUtP8A,Ned stupidly tells his parole officer that he just got high.\ntt1637706,euffalJGKn4,\"When Ned goes to grab the car keys, he discovers Dylan and Tatiana 'interviewing' in the buff.\"\ntt1637706,H63L0VBnCDA,\"Ned unwisely sells marijuana to Officer Washburn, and is immediately arrested.\"\ntt1637706,4oJk7-aMiNY,A game of charades goes dark when Ned unleashes a wave of anger following the continual mocking and teasing from his sisters.\ntt1637706,LdHfwFIuXtw,\"Operation Free Willie goes off track when Ned accidentally reveals to Cindy that her girlfriend is having an affair, and is pregnant.\"\ntt1637706,7kikXTi4fFs,Natalie and Ned express their feelings in the steam tent.\ntt1637706,58C7ep68GMw,Ned accidentally reveals secrets concerning Jeremy and Miranda's feelings for one another.\ntt1637706,GgtGlyKIMh8,\"Cindy helps boost Ned's confidence by having him recite the phrase, \"\"I'm the man.\"\"\"\ntt1637706,VQnDBor2tWg,Ned and Jeremy eye potential women in a coffee shop.\ntt1262416,JEcfknHqMyc,The Ghostface Killer puts Kirby through an intense horror movie pop quiz in order to save Charlie.\ntt1262416,p5n3koQZVDY,\"The Ghostface Killer breaks one of the \"\"rules\"\" of new pop culture cinema when he kills Robbie Mercer, who claims to be gay, and therefore, exempt from attack.\"\ntt1262416,UG7lwsjxwz0,Deputies Hoss and Perkins discuss the fate of cops in movies.\ntt1262416,Urj46blH8vo,Gale Weathers is attacked by the Ghostface Killer and it's up to Dewey to save her.\ntt1262416,BdOG2-Gn044,\"Sidney is the special guest of the high school's Cinema Club, and it's here where she and Gale Weathers learn about the new rules of horror movies for the 21st Century.\"\ntt1262416,QhZ86T_nh3Y,Rebecca is stalked and hunted by the Ghostface Killer in a creepy parking garage.\ntt1262416,GTRAmbo04JA,\"Ghostface taunts Kirby, daring her to open her closet door.\"\ntt1262416,4gehr6BLqRU,Ghostface claims another victim in young Jenny Randall.\ntt1262416,XRxL8KW7dbo,A series of movies-within-movies and murders-within-murders for your viewing enjoyment.\ntt1655442,mbj-OpDla5A,\"As George drinks himself into deeper depths of self-loathing, he has a hallucination where he sees the characters from his failed movie taunting him.\"\ntt1655442,EC20KdIDiEY,\"George and Peppy give the dance performance of their lives -- and in synchronized sound, too.\"\ntt1655442,tSWhP2gwhms,\"With George trapped in the fire, his dog Jack, saves the day by alerting a Police Officer.\"\ntt1655442,HAqKJv1ndXo,\"With his career in rapid decline, a despondent George burns his old silent films, which have now become a painful symbol of his obsolence in the era of sound.\"\ntt1655442,_58I2YrkKdk,\"George finds himself trapped in world full of sound, but his own voice remains mute and powerless.\"\ntt1655442,TC_3tiLJC8E,George gives Peppy something special to make her stand out from all the other actresses.\ntt1655442,Vsx0zX06F_c,\"As George and Peppy work together, their attraction towards one another grows stronger.\"\ntt1655442,qWlS0TrvHXE,\"George is mesermized by a pair of sexy, dancing legs and is stunned when he realizes that those legs belong to Peppy.\"\ntt1655442,gUjOiNR6HWo,Peppy struts her stuff at an audition and wins a part.\ntt1655442,7_WoelQbZyM,George finds himself as the object of affection for young Peppy when she spontaneously kisses him in front of the cameras.\ntt1270761,eCyr2_QTNVc,\"Kim and Sally fight off the creatures while Alex recovers and realizes whats going on. They all win the fight, but at a heavy cost.\"\ntt1270761,v_R9dxNFKWY,\"Convinced that their are creatures in the house, Alex and Kim decide to pack up and take Sally far away from there. But the creatures are onto their plan and decide to take out the parents first.\"\ntt1270761,4Zb-n9MXbPE,\"Alex and his girlfriend Kim throw a dinner party at their new home. During the party his daughter, Sally notices one of the creatures and chases it into the library. The creatures lock her in and attack her as she tries to get photographic proof of them.\"\ntt1270761,iReLGcSZtwI,\"In the middle of taking a bath, the lights turn off in the bathroom. Sally gets out to go turn them back on, only to find herself surrounded by the creatures armed with sharp objects.\"\ntt1270761,IKrh9Q6RU8M,\"Sally tries to make friends with the creatures in the cellar but is inturupted by Mr. Harris, a workman who knows the history of the house. Mr. Harris plans to close the grate that keeps the creatures in but they escape and show their displeasure at this plan.\"\ntt1270761,yrUXPvP3Gk0,Sally is awoken in the middle of the night by the creatures scurring around her room. She grabs her flashlight and tries to find them with a terrifying result.\ntt1270761,HSJRevnIGww,Sally notices some odd things going on in her bedroom as she gets ready for bed.\ntt1504320,sRPTqsO_SoM,King George VI engages in some last-minute speech preparation with help from Lionel.\ntt1504320,ToDDs9twuno,The Queen tries to comfort King George VI as he becomes overwhelmed with his new responsibilities.\ntt1504320,l65KNW2ZGV8,Elizabeth pays a visit to Lionel in order to secure his services to help her husband's speech impediment.\ntt1504320,_gwHTYw2ThM,Prince Albert confronts his brother about his relationship with an American divorcee.\ntt1504320,KIqqvICYqUg,\"Lionel tells Prince Albert that he would make a good king, and in return is accused of uttering treasonous thoughts.\"\ntt1504320,nVpfljH55TQ,Lionel points out that Prince Albert doesn't stutter when he curses.\ntt1504320,ZcjvH_shI5I,Prince Albert comes over for a night cap and tells Lionel about his childhood trauma.\ntt1504320,SQj4HtDOjkg,Lionel teaches Prince Albert the simple mechanics of speech therapy to master his stammer.\ntt1504320,yjMXMAKF-Rg,\"On his first visit with Lionel, Prince Albert is taken aback by his unconventional methods.\"\ntt1504320,8djvfSfVPO4,\"Lionel convinces King George VI that he has what it takes to be a leader, independent of the shadow of his father and brother.\"\ntt1504320,Tp84-New5aA,\"Myrtle, comes home early to find King George VI and The Queen visiting her husband Lionel.\"\ntt1504320,f7131IkiSCg,\"King George VI confronts Lionel about his lack of credentials, and comes to realize the depth of his own potential.\"\ntt0361748,6m5KyzSNu3s,\"The night of the Nation's Pride premier, Shosanna tidies up all the little details to exact revenge, and dons her war paint.\"\ntt0361748,uIBDomdpK7Y,\"At the basement tavern, Major Hellstrom plays a card game with Lt. Archie Hicox and Bridget von Hammersmark where you guess the real or fictional character. He is the character King Kong.\"\ntt0361748,a3uqv0eP7Tg,\"When Sgt. Werner Rachtman refuses to disclose information to the Basterds, he is introduced to Sgt. Donny Donowitz a.k.a. The Bear Jew.\"\ntt0361748,O5s3Oj2cPgc,Col. Hans Landa divulges his intentions of letting the Basterds kill Hitler in exchange for immunity from a potential war crimes trial.\ntt0361748,BN4GI97RoSw,Lt. Aldo Raine and two other Basterds try to pass for Italian members of the film industry at the premier of a Nazi propaganda film.\ntt0361748,qLGjjHXyiOQ,\"Shosanna and the Basterds wreak havoc at the Nazi film premier of Nation's Pride, killing Hitler and blowing up the theater.\"\ntt0361748,7LFtoz9sERo,Lt. Archie Hicox blows his cover by using the wrong fingers when he orders three glases of scotch. A chaotic bloodbath ensues.\ntt0361748,QfSjs_6MZOQ,Col. Hans Landa explains to the French dairy farmer how he is successful at finding Jews in hiding.\ntt0361748,eOcimzsviFA,Lt. Aldo Raine gives a rousing speech outlining the parameters of the Basterds' mission.\ntt1311067,6cwTpQj9E4U,Laurie and Mya return home to find Annie the victim of a brutal attack.\ntt1311067,MOEy-Da4ra8,Harley makes out with Wolfie in his van until Michael Myers interrupts them.\ntt1311067,LqDoPnJn9vg,Loomis makes a talk show apperance while Michael Myers goes trick or treating.\ntt1311067,0vklrunpo7c,Howard has a run in with Michael Myers behind a strip club.\ntt1311067,BPWhOdRSQ6U,Laurie hallucinates about killing Annie.\ntt1311067,DYOqsNNCOLQ,Michael Myers is reborn after taking a beating from Sherman and Floyd.\ntt1311067,zgXQFwcTJsY,Loomis holds a book signing in Haddonfield one year after Michael Myers terrorized the town.\ntt1311067,ctdY2KcX-lM,\"Laurie runs away from Michael Myers, but Nurse Daniels is not so lucky.\"\ntt1311067,kzGR27NzXKA,Michael Myers is placed inside an ambulance as Laurie is taken to the ER.\ntt1311067,ujwZug46-tc,Scott and Hooks hit a cow as they transport the corpse of Michael Myers.\ntt1311067,WTaUYNnX91g,\"Laurie waits for Buddy to return, but their reunion is short-lived when Michael Myers appears with an axe.\"\ntt0489049,06OkoPlUGm4,The Head of Security at Skywalker Ranch forces the gang to prove their fandom by answering a series of questions.\ntt0489049,jj0765rFtxQ,Windows faces off against a THX security guard in the Lucasfilm archive room.\ntt0489049,EcRdEs_Vxtk,Eric and Linus obtain classified information on Skywalker Ranch from none other than William Shatner.\ntt0489049,R4cgP1_M8ts,\"Zoe bails the boys out of prison, but only after they have a word with Judge Reinhold.\"\ntt0489049,buVMAoBMl34,\"With the cops in pursuit, Hutch makes the jump to hyperspace.\"\ntt0489049,IfNhqLwtuA0,Harry Knowles challenges the fanboys with a pop quiz of Star Wars trivia.\ntt0489049,X0FxwPfYz0Q,The Chief serves the fanboys some peyote-laced guacamole.\ntt0489049,Os49ky9Aiqg,Admiral Seasholtz and his fellow Star Trek fans attempt to defend their statue from the Star Wars fanboys.\ntt0489049,0_aAMNEqylU,Eric approaches Hutch amd Windows with his plan to drive cross country and break into Skywalker Ranch.\ntt0489049,b4CDHFMO1R8,\"Linus refuses to let his illness derail the mission, and kisses his doctor for good luck.\"\ntt0976222,EYoO_t1M-Sg,Will manages to take a rag tag bunch of teenagers and form them into a band.\ntt0976222,UkObc3-RKYg,\"Discussing a new name for the band, Will throws out the suggestion of \"\"I Can't Go, I'll Go On.\"\"\"\ntt0976222,HO6yGAV4G0A,\"Will, unsmoothly and awkwardly, attempts to make his first romantic move on Sam.\"\ntt0976222,THFVJBcv7W4,Will shares the significance of the club CBGB with his girlfriend Sam.\ntt0976222,xsNboBgmN38,The band and manager Will get into a good groove during a rehearsal.\ntt0976222,v96ND45Aqmo,A romantically inexperienced Will gets tips on kissing from Charlotte.\ntt0976222,DXT4GZfUONw,\"Through a classroom video presentation, Will apologizes to Sam for fogetting their date.\"\ntt0976222,qEJNox8TCOw,\"The band rehearses with Charlotte on lead vocals, as Will and Sam watch on with impressed eyes.\"\ntt0976222,7EHVvWxKKro,\"During the Bandslam competition, I Can't Go On, I'll Go On plays their big song.\"\ntt0375568,1afEpntCGXk,The inventive and creative Astro Boy builds small aircraft based off of Leonardo da Vinci's work.\ntt0375568,Ls4Ua-QtHYE,Astro Boy uses the power of the Blue Core to resurrect the giant robot Zog.\ntt0375568,ijnfTK6LgMA,Astro Boy evades the pursuit of military aircraft.\ntt0375568,RB2mOFx7jfY,Robots combat in a stadium for the entertainment of the crowd.\ntt0375568,DLf5iJ2jOZ4,\"When Astro Boy falls from the window of a skyscraper, he discovers rocket-boots that can make him fly.\"\ntt0375568,UXjZbdc79dU,Astro Boy and General Stone clash in a devastating robot battle.\ntt0375568,At6Q3fUFU1o,Astro Boy is brought back to life and met with celebration.\ntt0375568,zi7HyTbmVe4,\"Astro Boy and the robot Zog are pitted against each other in the robot fighting arena, but Ham Egg is displeased with their lack of obedience.\"\ntt0375568,qF5BMKYv94Q,Dr. Tenma creates a robotic replica of his deceased son.\ntt0375568,KZHIVNGrtLM,Astro Boy meets the Robot Revolutionary Front who want to free robots from slavery.\ntt1315981,ew5-ui5CvJI,George reflects on his life before suffering a heart attack.\ntt1315981,JMmp4T6mbkw,George and Kenny head to the beach for a spontaneous round of skinny dipping.\ntt1315981,bTuSlICST0Q,\"George shares a drink with Kenny, a student who has followed him to the bar.\"\ntt1315981,sfVRk14aLtE,Charley admits to never understanding the relationship George had with Jim.\ntt1315981,TDCa_16CiCU,George and Charley lament the breakdown of culture and manners in America.\ntt1315981,ukTcTd6wUD0,George recalls an intimate moment reading late at night with Jim.\ntt1315981,0HjAT5lo4Ts,\"George has an unexpected connection with Carlos, a Spanish prostitiute.\"\ntt1315981,kXBTh2sv4Lg,George has an encounter at the bank with the precocious little girl who lives next door to him.\ntt1315981,KoxDD5gYIYk,George speaks to his students about the persecution of minorities and the prevalence of fear.\ntt1315981,8_iFDOIkRFk,George receives the news from Mr. Ackerley that his boyfriend has died in a car accident.\ntt1315981,BL-d6jqZ858,George goes through his morning routine and ponders his own mortality.\ntt0892318,8b0SHCBsDRM,\"Claire recalls the the first time she saw Lorenzo, and the regret she's felt for fifty years for not acting on her impulse.\"\ntt0892318,b9KIXCf4U48,\"After Sophie says her goodbyes, Charlie realizes that he doesn't want to make the same mistake as his grandmother, Claire.\"\ntt0892318,mNcyNmX9B_A,\"Curious, Sophie follows a woman she sees at Juliet's house and meets a charming group of secretaries.\"\ntt0892318,a75Ywerim8M,Sophie visits Juliet's house and discovers a heartfelt tradition.\ntt0892318,vZ2jwhdnmw4,\"Sophie follows Charlie around the streets of Verona and meets his grandmother, Claire.\"\ntt0892318,ACh4ghU9eok,Sophie shows her writing to Charlie for the first time.\ntt0892318,tSJ3DYrCdNk,Sophie and Charlie share a romantic moment under the starlit sky.\ntt0892318,UeIxzCUMEsg,\"After 50 years and days of searching, Claire finally finds what she's been looking for -- Lorenzo.\"\ntt0892318,a0n9iFb4i70,\"At her wedding reception, Claire reads Sophie's letter out loud.\"\ntt0892318,sZI5ebqgfaw,Sophie and Charlie find themselves in a familiar romantic situation as they profess their true feelings for each other.\ntt1951264,wcenhpP37sg,\"While visiting District 11, Peeta and Katniss go off the script and pay tribute to Rue and Thresh.\"\ntt1951264,2V6d3f8W-oc,\"Katniss and Haymitch are selected for the Third Quarter Quell, but Peeta volunteers for Haymitch.\"\ntt1951264,4_zn64bRf6Q,Gale and Katniss stand up to the Peacekeepers and Gale gets whipped for his insubordination.\ntt1951264,Lma2LDjYf5k,\"Peeta dies when he is electrocuted, but Finnick resuscitates him.\"\ntt1951264,JPbkeLf4zU0,\"Katniss wakes to find that Plutarch Heavensbee, Haymitch and Finnick are part of a revolution -- that has only just begun.\"\ntt1951264,D6_ZC6BywXs,Katniss remembers who the real enemy is and destroy's President Snow's Hunger Games arena with an electrified arrow.\ntt1951264,I44NZgYW6_4,Katniss and Peeta share an intimate moment on the beach.\ntt1951264,OC82kTAQZew,\"Katniss unveils her Mockingjay dress and Peeta tells everyone that not only are they married, but they are expecting a baby.\"\ntt1951264,RsnwTCPo9RI,\"Haymitch, Katniss and Peeta meet the uninhibited Johanna Mason who strips in the elevator.\"\ntt1951264,RrDdgbo_NaE,Katniss meets the pompous Finnick Odair and then makes her grand entrance with Peeta.\ntt1951264,E9v4TSOvOIc,Cinna is killed for his defiance just as Katniss is raised to the arena and the Hunger Games begin.\ntt1951264,AhH1Yqw-gmA,\"Wiress reveals that the arena is set up as a clock of death, but the Careers attack and the Gamemaker has a special trick up his sleeve.\"\ntt0977855,Mnw2rmLB4_I,Joe Wilson implores Valerie Plame to go public and help defend their names publically before they're buried by the White House.\ntt0977855,4-Ml8OEXLbE,Scooter Libby intimdates a CIA analyst into agreeing with him on the probability of Iraq having created weapons of mass destruction.\ntt0977855,zyIccO0lXiQ,\"Joe Wilson and Valerie Plame reunite in the face of enormous political pressure. Later, Joe gives an impassioned speech about the nature of the truth.\"\ntt0977855,L0yOTA3Wq_E,Valerie Plame has new troubles in her life when her identity as a CIA operative has been leaked to the public.\ntt0977855,SpMvmtj35y8,Valerie Plame disputes with a co-worker about the legitimacy of aluminum tubes that can be used to build nuclear weapons.\ntt0977855,wmlNvVvfXNA,The undercover status of Valerie Plame is revealed in the newspaper.\ntt0977855,opxtApiyARs,\"While having lunch with two businessman, Joseph Wilson is harassed by a right-wing reporter trying to make a scene. Afterward, a cab driver recognizes Joe, as his anonymity gives way to noteriety.\"\ntt0977855,RyObt_1eT8M,Joe argues with Valerie that they need to fight back against the White House in order to change public opinion in their favor.\ntt0977855,cv36jml_lAE,\"Valerie tells her father, Sam Plame, that her marriage is on the rocks.\"\ntt0977855,HFZSTBmWyd8,Joseph Wilson and his wife Valerie Plame engage in a drunken conversation about terrorism and racial profiling.\ntt1120985,cBvFsIF5GNE,Dean begs for Cindy to consider their daughter as she tells him she wants out of their marriage.\ntt1120985,4D20x3Pfg6E,\"A drunken Dean shows up at the clinic, where he harasses Cindy and punches Dr. Feinberg.\"\ntt1120985,XjjZyyzdOvs,\"Sensing something is wrong, Dean gets Cindy to admit that she is pregnant.\"\ntt1120985,rGqSj0MA4eM,An argument ensues when Cindy provokes Dean about his lack of ambition.\ntt1120985,_AdhEPNDxeg,Dean runs into Cindy on the bus and manages to insult and compliment her simultaneously.\ntt1120985,NgcEbuMsrS4,Dean and Cindy check into a motel without their daughter in a last ditch effort to save their marriage.\ntt1120985,s-te8zRj4WY,Dean tries to convince Cindy that he's a good guy with a real job.\ntt1120985,tDVlpRBhtWQ,Cindy asks her Gramma for advice so that she can avoid the mistakes her parents made.\ntt1120985,26cjR330Ceo,Dean becomes jealous when Cindy admits to running into an ex-boyfriend.\ntt1120985,p9BRNz08eUs,Cindy dances as Dean sings a goofy song.\ntt1120985,aHw-fJZ7mD8,Dean gives Cindy a CD containing a romantic song just for them.\ntt1860355,ySpuo4tFo20,Coach Bill Courtney talks about the history of Manassas High School football on the first day of practice.\ntt1860355,De-dBcPZlIM,\"When Montrail ditches practice after an incident with another player, Coach Bill Courtney convinces him to be the bigger man and come back.\"\ntt1860355,ABW5RN51NqA,O.C. goes to assistant coach Mike Ray's house in the suburbs for tutoring.\ntt1860355,q40Kh2-q6X0,\"Losing at halftime, Coach Bill Courtney gives an impassioned speech about character and teamwork that rings loud for troubled player Chavis Daniels.\"\ntt1860355,B4ppeyE6UyU,The 'uncommon man' honor for the game is bestowed upon player Chavis Daniels.\ntt1860355,oJJM7GnED2E,\"Down 20-0 at halftime, Coach Bill Courtney fires up the Manassas football team towards an impressive comeback victory.\"\ntt1509767,hTOzxqecG7o,Milady decieves a Venetian guard to gain access to the castle.\ntt1509767,x-HRlq5Oldw,\"D'Artagnan and Rochefort face off. Meanwhile, the Three Musketeers descend upon Rochefort's airship.\"\ntt1509767,lDWXlJG-FDI,Rochefort and D'Artagnan fight to the death.\ntt1509767,sHTtCAH7l6Y,\"After a prisoner exchange, the Three Musketeers battle Rochefort's forces in a sky battle.\"\ntt1509767,QB4WFBsaeus,D'Artagnan talks with the Three Musketeers about their current predicament.\ntt1509767,n2eSLdqwSYY,D'Artagnan reveals that he is the decoy.\ntt1509767,GM0rZv1Lii0,D'Artagnan demands an apology for the insult made to his horse.\ntt1509767,Paut4zNx-3c,\"Outnumbered, D'Artagnan and The Three Musketeers fight Rochefort's men.\"\ntt1509767,yqCFtEZRFPE,The Three Musketeers come before the King after brawling with the Cardinal's guards.\ntt1007029,UqnjC1YM5pk,\"Margaret holds her ground during an economic crisis despite the concerns of Geoffrey, her most trusted advisor.\"\ntt1007029,FgF-RJYNzzY,Margaret visits her doctor and expounds on the problem of feeling at the expense of thinking.\ntt1007029,FdVyibVMumc,Margaret decides to run for Leader of the Conservative Party despite the concerns of Denis.\ntt1007029,Wx7IOoX7l8Y,Margaret fights to gain respect in Parliament as some sexist colleagues dismiss her views during a labor strike.\ntt1007029,EubG9_KSoGo,\"After Margaret loses her first election, Denis proposes to her and she accepts, on one condition.\"\ntt1007029,H-cxAVTmQ0I,Margaret struggles with her dementia when asked to comment upon some recent terrorist bombings.\ntt1007029,fJjBf7yY1P8,Margaret gives a rousing speech in Parliament to celebrate Britain's victory in the Falklands War.\ntt1007029,5-afmnViCr4,Margaret defends her decision to retake the Falkland Islands to Secretary of State Alexander Haig.\ntt1007029,_qqw8iHQASs,Margaret receives image and voice advice from Airey and Gordon.\ntt1007029,OOGcesOHlDs,\"Faced with unrelenting pressure to step down, Margaret offers her resignation as Prime Minister.\"\ntt1007029,XF7QaSY-8lY,Margaret rails against European integration and humiliates Geoffrey during a Cabinet meeting.\ntt1093357,TFrdPPdwY2I,\"As Sean and the group searches for Natalie, they encounter an alien and team up to destroy it.\"\ntt1007029,2p-FeYouCx4,Margaret transforms into a poweful and motivational Leader of the Conservative Party.\ntt1093357,4Q8CqPioUFA,\"As Sean rescues Natalie, an alien causes havoc aboard the trolleybus speeding randomly around the city.\"\ntt1093357,GukkVxrTLaM,\"An alien light beam destroys a building right next to the river, capsizing the boat, and throwing Sean and the others into the water.\"\ntt1093357,mxgE7XEbc48,\"The Russain survivors agree to help Sean, Natalie, and Ben get to the submarine after a passionate plea about returning home.\"\ntt1093357,2b3mwmOTR3s,\"Sergei attempts to fend off the alien light by using his homemade microwave gun, but falls victim, as does Anne in front of a powerless Natalie.\"\ntt1093357,JuKhaVdSGms,Sean and Natalie barely dodge an alien attack by hiding on the other side of a glass wall which helps to disguise their electrical pulse.\ntt1093357,oTTfW63fY6A,\"Ben and Sean try to find supplies in an abandon cop car, but soon they're forced to hide when the alien notices their presence.\"\ntt1093357,abyFD6LO05w,The group run into the Russian police who manage to wound an alien with conventional weapons.\ntt1093357,Z5Hmi5x6JA8,\"The group wanders outside to witness what appears to be an Aurora Borealis. But on contact, the light disintegrates a policeman into particles, causing a frenzy.\"\ntt1093357,TETjB2zHhAE,\"Ben and Sean go to a night club and meet Natalie, an attractive American woman, and her Australian friend Anne.\"\ntt1045658,og36vWGn5CU,Tiffany shows up at Pat's house angry that he never showed. She then turns that anger on Pat Sr. for getting his son to go to the game.\ntt1045658,Vyq3eN0DUU0,\"Pat finishes reading A Farewell to Arms and is so angry at the ending that he barges into the bedroom of his parents, Pat Sr. and Dolores, to complain about it.\"\ntt1045658,DicBrlK4pEU,\"Pat Sr. has an emotional moment with Pat, where he confesses his thoughts on his role as a father.\"\ntt1045658,4EYZfAO5ZWs,Pat is introduced to Tiffany during a nice dinner set up by Veronica and Ronnie. The dinner does not go as planned.\ntt1045658,2ceG37UZvzQ,\"While looking for his wedding tape, Pat has a mental breakdown and accidently hits his mother, Dolores. Pat Sr. ends up getting into a fist fight with him.\"\ntt1045658,3I0AP-HwDnU,\"While going on a jog, Pat is joined by Tiffany much to his annoyance.\"\ntt1045658,8p0YBrmfLyA,Pat and Tiffany get into a big argument that spills out onto the street.\ntt1045658,z__IAJ1Q9lk,\"Pat holds up his end of the deal and shows up for his first dance lesson with Tiffany. Before they begin, Pat finds out just what happened to Tiffany's husband.\"\ntt1045658,y1lzIInBQOs,Pat and Tiffany do their dance in the competition with everything riding on it.\ntt1673434,t4fqGbC2mQM,\"Bella Swan and Edward Cullen get a cabin of their own as a present from the Cullen family. Finally with a quiet romantic moment to themselves, they decide to break in the new bedroom.\"\ntt1673434,d4MZPbERTFs,\"After getting to see her baby for the first time since it's birth, Bella Swan finds out that Jacob Black has imprinted on her child. Bella does not take this news well.\"\ntt1673434,FEWZFq14JiU,\"Jacob reveals his werewolf side to Charlie Swan, so that Charlie can be prepared for the supernatural when he finds out about his daughter.\"\ntt1673434,2P3uaREypD4,The battle rages on as each side loses people. Benjamin decides to finally use his control over the elements and Alice Cullen goes after Jane.\ntt1673434,Ls2be_G7bHc,\"As Bella and Edward spend time alone in the meadow, Bella gives Edward a peak into her mind and memories.\"\ntt1673434,cP7WEGuVwig,\"Nearing the end of the battle, Edward Cullen and Bella Swan go after Aro.\"\ntt1673434,C7qekGisCs4,Bella Swan and Edward Cullen share a moment as Bella gets used to being a vampire.\ntt1673434,CB-a6fmj21U,\"Edward Cullen takes Bella Swan hunting in the woods, which ends up becoming complicated when she smells a nearby human.\"\ntt1673434,5u5ixEyjZng,Edward Cullen and Bella Swan share a romantic moment as they talk about the obstacles ahead.\ntt1673434,3qp3AeWmt38,\"Despite Alice Cullen showing up with evidence, Aro and the rest of the Volturi still decide to wage war. With the killing of Dr. Carlisle Cullen, the battle begins with Bella Swan, Edward Cullen and the rest of the family retaliating.\"\ntt1321860,ZiGf0aDV688,Norah shows Porter the mural she made in honor of her deceased brother.\ntt1321860,KLYlTxCTu20,The Beaver catches Walter on the phone with Meredith and attacks him in a jealous rage.\ntt1321860,OEiioh2L3jQ,\"Walter talks to Matt Lauer on the Today Show about depression and why he \"\"wiped the slate clean.\"\"\"\ntt1321860,k87Hk4JNqGY,\"Meredith gives Walter an anniversary gift that is meant to remind him of the life they used to have, but The Beaver is less than willing to give up.\"\ntt1321860,1QJXKLwmN14,Walter presents a new idea for a toy that may prove successful for his company.\ntt1321860,fEZuzz0KmN0,\"Walter introduces his employees to their new boss, The Beaver.\"\ntt1321860,LjKZiPNHRUU,\"Walter introduces \"\"The Beaver\"\" to Meredith, and claims that the puppet was prescribed to help him correct the unbalanced and negative aspects of his personality.\"\ntt1321860,AHw_6AOK7bg,\"After a T.V. falls on his head, Walter Black wakes up with a new \"\"life coach.\"\"\"\ntt1321860,-zXmGloh-P8,\"Walter Black finds a beaver puppet in the dumpster, and tries to hang himself from the shower curtain in the hotel bathroom.\"\ntt1321860,yV0IgLYLoC0,Walter Black attempts to kill The Beaver.\ntt1321860,4SPwmO5wHjM,The Beaver aka Walter makes a chilling confession to his business associate.\ntt1517489,DwbFUmWjd3g,Juni reunites with Carmen after seven years and the bickering begins.\ntt1517489,6CwHxJUF8DQ,Juni enlists Cecil and Rebecca to help save the day.\ntt1517489,KCbte6Zhaqc,\"Cecil uses his spy gloves to take out the bad guys, while Rebecca plays a prank with jet packs.\"\ntt1517489,zRYmoB7ayDU,Rebecca challenges Cecil to a race as they avoid the deadly hands of a giant clock.\ntt1517489,spI-9R3B6zk,Argonaut helps Cecil and Rebecca get rid of the bad guys.\ntt1517489,d7ye5zFyuso,Marissa tracks down Tick Tock and uses some baby products to avoid capture.\ntt1517489,cniwN1YsUW8,Rebecca and Cecil evade capture in their escape jets by reusing Cecil's barf bags.\ntt1517489,CmPZjdlK3Qw,Rebecca and Cecil discover that their stepmom is a spy when their house comes under attack and their dog Argonaut starts to talk.\ntt1517489,7uvW1U9UXKQ,Argonaut enters attack mode to help Carmen and the Wilsons escape.\ntt1517489,USLznFhxNF4,Marissa foils the evil plan of Tick Tock while going into labor.\ntt1517489,GvRD2YqBi74,Rebecca feels bad about pulling a prank on Marissa after she tries to connect with her as a friend.\ntt0945513,CVs-LAC1zrQ,\"While Colter Stevens is inside the Source Code, he finds out that he was declared killed in action by the military.\"\ntt0945513,LcWRSHD3cAE,\"Confused as to where he is, Colter Stevens goes off on Carol Goodwin for being evasive.\"\ntt0945513,rZAnSJl6VKA,\"Driven by a desire to mend his mistakes, Colter Stevens asks Goodwin to be sent back into the Source Code.\"\ntt0945513,ay1pxLNtdxE,\"With a bomb on the train, Colter Stevens scans the passers and tries to deduce who the most likely suspect is for planting and detonating the explosive.\"\ntt0945513,SPSP9BHo1_c,Colter Stevens calls his father to talk to him one last time.\ntt0945513,V07Z_XYMnmM,\"Having previously experienced the bombing scenario, Colter Stevens realizes he needs to steal a handgun from the vault in order to help neutralize the terrorist threat.\"\ntt0945513,GcSfbaac9eg,\"Dr. Rutledge explains the science of Source Code to Colter Stevens, who is inside the Source Code program.\"\ntt0945513,BjJxoKtYj_w,\"Colter Stevens attacks a suspected terrorist at a train station, but soon realizes the magnitude of his mistake.\"\ntt0945513,oKWpZTQisew,Colter Stevens confronts the terrorist suspect Derek Frost and discovers that Frost has created a dirty bomb.\ntt1502404,_TkhbfmrmD0,\"Beaten up by her now ex-boyfriend, Piper gets a helping heel from Milton in the form of his boot into her ex's face.\"\ntt0945513,L-3Kx6xAUTM,\"Having foiled the terrorist threat, Colter Stevens enjoys a romantic walk with Christina. Meanwhile, Goodwin gets a mysterious message from Colter, and learns that the Source Code program has gone far beyond its initial success.\"\ntt1502404,oQotF_oLWTU,Milton suddenly comes back to life and immediately proceeds to kick Satanist ass.\ntt1502404,7A8pZX7GjR4,\"As King begins his Satanic sacrifice, Milton destroys the cultists with his car and shotgun. Nearby, The Accountant proves that there is a price — and a limit — to everlasting life.\"\ntt1502404,9B7Y2tMDlEA,\"Piper goes toe-to-toe with King in the RV, while Milton redefines the phrase 'reckless driving'.\"\ntt1502404,AwUpqAQNZCY,King shoots Milton in the eye and then kidnaps Piper into his cult.\ntt1502404,L3eM2_0KE2A,Piper fends off King's attack as Milton races to rescue her in his Dodge Charger.\ntt1502404,RVM5hFMx2Kk,\"Milton threatens to kill King, and does so in awesome fashion.\"\ntt1502404,vT3kQdSXrMw,\"Milton fends off an attack by The Accountant using a mystical, badass shotgun.\"\ntt1502404,cr-rgM1-wXs,Milton takes out a trio of lowlifes in brutal fashion.\ntt1502404,a_nd6odxaHI,The Accountant opens up a path for Milton by using a hydrogen fuel truck to blast away all of the police cars in the barricade.\ntt1682181,sPZ2Ukl7EPU,\"David Long talks about how his son Tyler grew more socially isolated as he got older, which made him an easy target for bullying.\"\ntt1682181,-TuZo-mugDw,\"After coming out as a lesbian, Kelby talks about what it's like to be isolated and hated not only by her fellow students, but by the faculty as well.\"\ntt1682181,-iM3hKlLS5E,Alex returns to school and endures threats and intimidation from fellow students along the way.\ntt1682181,xRT4EyI63jw,\"Tyler's father, David, recounts the kind of bullying his son endured prior to committing suicide, and how the school administrators failed in their attempt at creating a safe environment for the students.\"\ntt1682181,lyrv1rNWg0o,\"The vice principal tries to mediate a recent incident when one of her students, Cole, refuses to shake hands with another student over a case of incessant and relentless bullying. Later, Alex recounts the day-to-day misery he goes through, revealling that he now wants to become a bully just to avoid the pain of being the victim.\"\ntt1682181,YbABtps7aY0,\"Alex's parents discuss their concerns about their son's inability to fit in, as well as their own shortcomings as parents.\"\ntt1682181,TVMg2iM-XQg,\"Kirk Smalley leads a vigil against bullying, giving a voice to those children who have taken their own lives as a result of bullying.\"\ntt1682181,l3vcMU002rk,\"As Alex endures an escalation of the bullying, the filmmakers feel compelled to show footage of the bullying to Alex's parents. Later, Alex's mother confronts her son about what he's going through and why he's allowing it to happen.\"\ntt1682181,7y8pbljhMQs,Ja'Maya recounts the time that she brandished a firearm on a school bus because she was pushed to the edge by all of the bullying she had endured.\ntt1586265,iK6cDwd3yH4,\"Skyler, Wendy, and Jules all go into labor with their husbands by their side.\"\ntt1586265,GhisL6dCqV8,Wendy has a pregnant public meltdown during a seminar.\ntt1586265,yNkcLZ0BPuc,Gary gets caught gorging himself on pork by Jules at a food truck.\ntt1586265,mokXxWsIsWg,\"Gary announces to his Dad, Ramsey, that Wendy is pregnant. Turns out, Skyler is pregnant, too.\"\ntt1586265,F_3zkj4QVvA,\"Holly is hesitant to show her Las Vegas wedding photo to a social worker, but Alex jumps at the chance to show it off.\"\ntt1586265,9d8VhjIG6No,The flirtation heats up between Marco and Rosie when they compare cooking scars.\ntt1586265,Jx401J_oG2I,Marco gets irritated when the competing food truck run by Rosie starts serving bacon.\ntt1586265,M5IO69jDb2M,\"In front of millions, Jules and Evan win Celebrity Dance Factor, but not before it becomes apparant that Jules is pregnant.\"\ntt1586265,AEhitq9yTss,Vic leads the pack of men who gather and babysit their children on a weekly man-play date.\ntt1586265,EPCFcnp0R3M,A golf carting race between father and son lands Gary in the Margaritaville pool with a victory.\ntt0431021,uztZUqKrHVo,\"Tzadok leads the family in an excorcism to banish the demon from Em's body, but the demon is no pushover.\"\ntt0431021,aJHRyOrRnQk,\"With the demon now possessing Clyde, Tzadok excorcises the evil spirit back into the Box.\"\ntt0431021,oY0IQEEQ35g,\"As Em gets an MRI to see if there's an abnormality in her brain, Stephanie and Hannah discover a chilling stowaway inside Em's body.\"\ntt0431021,LZhbH4pHMQ8,\"Possessed by a demon, Em uses her evil powers to decay Brett's teeth from his mouth.\"\ntt0431021,qGf3--y_rcQ,Stephanie encounters Em in the midst of a full-on spiritual possession during the middle of the night.\ntt0431021,4SD245xSSVk,\"Having done research on \"\"Jewish exorcisims,\"\" Clyde makes an attempt to rid his daughter of an evil spirit by recitiing a prayer from an anicent scripture.\"\ntt0431021,CuAXqRNpFdo,\"Having thrown out the Box, Clyde is confronted by Em, who demands he return it. When he refuses to do so, Em's behavior takes a turn for the deranged.\"\ntt0431021,Mmcr5WLNtZA,\"A mysterious voice from The Box summons Em in the middle of the night. The next morning, with her behavior strangely altered, she stabs her father Clyde with a fork.\"\ntt0431021,D-QqctD6nCw,\"As Em gets ready for bed, she starts to convulse and realizes that there's something far more sinister than a frog in her throat.\"\ntt0431021,d5MJBYofzhs,An onslaught of creepy moths overtakes the household as the demonic for within Em grows in power.\ntt1764651,qYxJ5YvIJX4,Ross and Vilain engage in a brutal fight to the death.\ntt1764651,_gb6yX-Uiqk,\"Having teamed up with Trench and Church, and with some timely assistance from Booker, The Expendables make their final assault against Vilain and his mercenary thugs.\"\ntt1764651,fpqwsexDM0I,The Expendables are single-handedly saved from The Sangs by the mysterious Booker.\ntt1764651,8X26PR7abAU,\"Jean Vilain holds Bill The Kid hostage, forcing Ross to give up vital information in a desperate bid to save the Kid's life.\"\ntt1764651,_P6ywXKM8kc,\"Trapped in a collapsed mine, The Expendables are rescued by Trench.\"\ntt1764651,rlXL9FlYW8k,\"The Expendables dive bomb Jean Vilain's base in order to save the villagers, who have been conscripted to slave away in the mines.\"\ntt1764651,et7jz9CSPqo,The Expendables blast their way into an enemy stronghold to rescue Trench from the bad guys.\ntt1764651,VXobEyKCykQ,The Expendables decimate a group of Sang mercenaries -- stopping them from terrorizing a local village.\ntt1259521,rL1VrbSK0IA,Marty Mikalski and Dana have a brief moment of peace before the giant evil gods take over the world.\ntt1259521,43DN-b_k4ZU,Curt Vaughan and Jules get hot and heavy in the woods.\ntt1259521,tdMQZ0g9ykE,Chaos rains down on all including Steve Hadley and Richard Sitterson when ancient and mythic monsters and creatures are freed.\ntt1259521,a0dkF8CZxks,\"Marty Mikalski and Dana open the doors of hell, allowing creatures of all sorts to bounce out, pounce, and kill.\"\ntt1259521,ufF5p8VBsVk,Marty Mikalski and Dana ride the elevator downward to the pit of hell where all the creatures are held.\ntt1259521,qb4e_GJzmrI,\"Richard Sitterson has a brief moment of sympathy for the victims, but that quickly passes when he spots a bottle of tequila.\"\ntt1259521,S-xuQp2fW7I,\"Holden and Dana try to stay calm, but that notion is upended when Holden's throat is thrashed.\"\ntt1259521,ZGcMRCaBh_s,\"Marty discovers that he's on a reality t.v. show...that is, until the 'Buckner' shows up.\"\ntt1259521,Io8nlxyMTd8,Richard Sitterson and Steve Hadley have a little fun with Mordecai when they put him on speaker phone.\ntt1259521,xwN0ZIe-cG8,\"Marty Mikalski appears on the scene, toking on a bong, and feeling groovy.\"\ntt1259521,bjqjgoiV6BQ,\"In a game of 'truth or dare,' Jules responds wholeheartedly when dared to make out with a wolf head.\"\ntt1800741,jE5w-Jl5BSE,\"The Mob concludes their epic flashmob to stop Anderson from pursuing his development project, which would tear up neighborhoods across Miami.\"\ntt1800741,b3lLWO2d7b0,The Mob strikes a dance at the heart of corporate headquarters in order to make their presence known.\ntt1800741,5RMx6st2-js,The Mob makes a dramatic comeback at the unveiling of Anderson's new development site.\ntt1800741,ElyptgRxg0M,Sean and Emily realize that their attraction for one another goes deeper than their affinity for dancing.\ntt1800741,HbWxE7l4F3g,\"Emily and Sean learn more about one another, and then share their first kiss together.\"\ntt1800741,SJZ_LT4GwQE,\"The Mob dancers infiltrate an art show and impress the guests, as well as Emily.\"\ntt1800741,vtxo451I_Qk,The Mob busts out a flash mob dance to some whack dubstep on the streets of Miami.\ntt1212450,2myyH9c7mYM,\"With Forrest about to follow his brothers into a dangerous stand-off, Maggie confesses that she rescued his life once, and won't do it again.\"\ntt1764234,Xvs1TPM9g2s,\"When Driver refuses to pay Jackie Cogan what he is owed, Jackie lets his attitude be known concerning the American ethos.\"\ntt1599348,DogM3vTZsuo,\"Moments before commiting suicide, Luke notices that lonely Mei is in trouble when he sees a group of Russian mobsters chasing after her. Instead of throwing himself onto the subway tracks, he jumps aboard a moving subway car in an attempt to rescue her.\"\ntt1599348,KmlUAuGhy24,\"Mei is kidnapped by the Russian mafia in an ambush, while elsewhere, Luke resists indimidation by corrupt NYPD detectives who are in league with the Russians.\"\ntt1599348,cxFXMll7PWI,\"Luke returns home and finds his wife dead at the hands of the Russian mafia. The leader of the Russian group, Vassily, threatens Luke that they will kill anyone else that Luke comes into contact with should he decide to turn snitch.\"\ntt1599348,5D7JRwROZ0E,\"Luke meets up with an old war buddy, Alex – who happens to be the mastermind behind the whole sordid affair – to make one final attempt rescue Mei once and for all.\"\ntt1599348,YI02lc3SxXs,\"Luke kidnaps Vassily and holds him hostage, and then coldly threatens Vassily's father, Emile, with a fate worse than death.\"\ntt1599348,eCu_yXPkwGc,The Triads locate Mei at a hotel and Luke must fend them off with lethal brutality in order to keep her alive.\ntt1599348,CQlI4zJnxho,Luke battles the Russian mafia and corrupt NYPD detectives in order to save Mei's life.\ntt1599348,5-MjWWLPdqE,\"Luke dispatches the Russian mobsters with expert ability, saving Mei.\"\ntt1599348,nEFAuOF_8YQ,With 30 million dollars – and a little girl's life on the line – Luke leads a group of corrupt NYPD cops into a raid against the Triads.\ntt1568338,jgOMHLuBup4,Nick makes a daring jump from the roof a high-rise in his attempt to stop Englander from escaping.\ntt1568338,m6eVFDJA9EM,\"Nick surrends both himself and the diamond in exchange for Joey's life, but he's double-crossed by Englander and his corrupt cop henchman, Dante Marcus.\"\ntt1568338,pyvthgZdQhc,\"Nick suspects his friend Ackerman as a traitor, but when SWAT intervenes, he's forced to make a tension-filled escape twenty stories high.\"\ntt1568338,6krgl6GpIbM,\"Detective Mercer joins Nick out on the ledge, and soon realizes that he is involved in an elaborate heist.\"\ntt1568338,BYh-iVr55EA,\"Nick guides Angie over the radio into cutting off the building's security systems. But if she cuts the wrong wire, all hell will break loose.\"\ntt1568338,5tMAe05kTXo,\"Nick buys more time -- literally -- by throwing out cash to distract the bystanders and slowing down the police, which in turn gives Joey and Angie a better chance to evade capture.\"\ntt1568338,RZ9Od4LBqDg,\"As Detective Mercer tries to calm Nick, a news helicopter performs a sudden and dangerous flyby, causing Nick to lose his footing. Meanwhile, Joey and Angie rappel down an elevator shaft as they continue their infiltration.\"\ntt1568338,HrK6dbGxq-E,\"Nick distracts the police and bystanders by faking a jump to his death, while Joey and Angie detonate an explosive on the roof of another building.\"\ntt1568338,S85RSn20wJ0,Joey and Angie share a sexy moment. Meanwhile Det. Mercer discovers a possible motive to set-up Nick Cassidy from within the NYPD.\ntt1212450,9cR2Rh00ndA,Jack witnesses the notorious gangster Floyd Banner shoot-up a rival gangster.\ntt1212450,NKaENwBlGFQ,Howard Bondurant comes to the rescue of his younger brother Jack during a raid led by Special Agent Charlie Rakes.\ntt1212450,59ZImWWRR50,\"The evil, psychotic Special Agent Charlie Rakes makes his presence known to Forrest Bondurant.\"\ntt1212450,OS8NUnMpllc,Jack Bondurant finds out that Cricket forgot to put gas in the truck.\ntt1212450,5-Al98JQSUM,\"When making eyes with Bertha Minnix during a church sermon, a drunk Jack Bondurant becomes overwhelmed and unexpectedly flees.\"\ntt1212450,FkoI5jde2es,\"Jack takes Bertha on a driving date, and gives her a dress as a gift.\"\ntt1212450,-PAIOy41SjQ,The bootlegging business is booming for Jack Bondurant and Cricket with Special Agent Charlie Rakes still on their tail.\ntt1212450,Vkrb_0DiD4E,Maggie introduces herself to Forrest Bondurant and asks for a job.\ntt1212450,XnEKbUbww9s,Forrest and Howard Bondurant come to the aid of their little brother Jack in a shootout with Special Agent Charlie Rakes.\ntt1764234,qX0rYjUdFik,Jackie explains his ethos on killing to the Driver.\ntt1764234,h1q5X5asH7c,Jackie Cogan arrives on the scene to clean up the mess in the aftermath of the poker heist.\ntt1764234,C7Y3b732UVw,Frankie and Russell make their final preparations before the poker game heist.\ntt1764234,XX8y_mQIewU,Dillon and Kenny rough Markie up a little bit following the poker game robbery.\ntt1764234,YBmz0YGT2kI,\"Mickey arrives in town, with his full-on appetite for booze.\"\ntt1764234,ve1Brtly9Y4,Frankie and Russell shoot up following their successful heist of the poker game.\ntt1764234,pbd1pcdHRVE,Frankie and Russell rob the poker game.\ntt1764234,WTtAAYgzMjo,Jackie takes out Johnny Amato -- the brains behind the poker heist.\ntt1764234,c6TNgqIAYyE,Mickey admits that he's become too soft to go through with the job.\ntt1838544,Ux4y_2RNi_E,Jill tries to convince Sharon to help her find her sister.\ntt1838544,HUcO7rqSLEw,Jill reunites with Molly and lies to the police about her rendezvous in the forest.\ntt1838544,Bt_VjoF2lGo,\"Jill returns to the scene of her abduction and turns the tables on Jim, the man responsible for her nightmare.\"\ntt1838544,GWrQ2H3LhI4,Jill recalls how she escaped from her captor by stabbing him with the bone of a previous victim.\ntt1838544,ocVeenCXGaM,\"With the police watching her car, Jill acquires a vehicle from a custodian.\"\ntt1838544,QW1kAlnQLd4,\"With the police hot on her trail, Jill uses her wits to escape from a hardware store.\"\ntt1838544,8PDbRr_7bI8,Jill pulls a gun on Nick when he catches her snooping around in his van.\ntt1838544,wbrTwrgyOrg,Detective Hood offers to help Jill despite the casual dismissal given to her by the rest of the police department.\ntt1838544,Yh7Qz4fiKxw,Jill becomes suspicious when Detective Hood tries to meet with her privately.\ntt1838544,OkrJTqGkSWI,Jill tries to convince the authorities that her sister has been abducted by the same man who kidnapped her.\ntt1838544,-ayGBx5Igyo,Jill manages to escape from the police using some defensive driving skills.\ntt1838544,clslrqHA26U,Jill returns home to find that her sister Molly has disappeared.\ntt1343727,eApCe2z67Gk,\"Wounded by one of the corrupt Judges, Judge Dredd finds himself boxed-in and on the run.\"\ntt1343727,UlT2oHT2RGY,\"Judge Dredd taps into the slum's central PA system and issues a dire warning to Madeline 'Ma-Ma' Madrigal, her criminal organization, and to any citizens who aid and abet her.\"\ntt1343727,26mzWqdJnis,\"Judge Dredd takes his rookie partner, Cassandra Anderson, on a drug raid in a massive slum apartment complex.\"\ntt1343727,dv_26E-a_mA,Judge Dredd corners a criminal and dispenses swift justice at the end of his gun.\ntt1343727,d5bK1xSr2dY,\"Judge Dredd issues his final judgement upon Ma-Ma for all of her crimes by getting her high and throwing her out the window, far away from the detonator's transmission range.\"\ntt1343727,uNqwzdw5uKE,\"Cornered by Judge Dredd, Ma-Ma threatens to destroy half of the super slum with a time bomb set to her heart beat.\"\ntt1343727,yK3DX2F0JWQ,\"Judge Dredd realizes he's in an ambush when one of the other Judges, who have come in as back up, starts acting suspicious.\"\ntt1343727,3mN85wFz_Vk,\"With a bounty placed on their heads by the drug lord Ma-Ma, Judge Dredd and Cassandra Anderson must shoot their way out if they stand a chance to escape the super slum known as Peachtrees.\"\ntt1343727,O2U0qOzibf4,Cassandra Anderson uses her psychic powers to interrogate Kay about Ma-Ma's drug syndicate.\ntt1343727,SG7voVeJRC0,\"Judge Dredd chases a trio of Slo-Mo drug addicts, taking down out their van in a spectacular rolling car crash.\"\ntt1343727,OLkKMHRUB9A,Ma-Ma tries to kill Judge Dredd with an overwhelming volley of firepower.\ntt1920849,iVojYtEpstY,Clyde plays Gena an old mix-tape from when they were sweethearts.\ntt1920849,n39lwOfvb2E,\"Katie, Gena, and Regan fool around in the oversized wedding dress until it rips.\"\ntt1920849,FdMEJqe55dc,Becky gets a surprise visit from a police officer at her bachelorette party.\ntt1920849,lqbzUCMEK0o,Gena explains her theory on giving oral sex to the passenger next to her on an airplane.\ntt1920849,p4t0OpJJ0MI,\"A brief, hot fling occurs between Regan and Trevor.\"\ntt1920849,5Gmliz8GsG4,\"Gena, Katie, and Regan take in the wedding from the sidelines.\"\ntt1920849,WlwLa7Jh3HY,\"Becky re-unites with the bridesmaids Gena, Regan, and Katie. Only her partying ways have toned down, much to the disappointment of Katie.\"\ntt1920849,hML3kvOUVZU,Gena and Katie can't help but give inappropriate speeches about Becky at the rehearsal dinner.\ntt1920849,4ln7gkWQXys,Resentment bubbles up immediately when Becky tells her friend Regan that she's getting married.\ntt0795461,cQHAH3t5oJI,Charlie Sheen and Lindsey Lohan play themselves in this parady of Paranormal Activity and their celebrity status.\ntt0795461,YwzGw_SMwAc,Jody takes some drugs and ends up having sex with Kendra. Things gets a bit crazier than expected.\ntt0795461,9NKu_Kyi1qY,Snoop Lion and a friend look for a place to hide when they find a scary cabin in the woods. Inside they find some creepy abandoned children in a spoof of the film Mama.\ntt0795461,HM1U0PSGMn0,\"Dan tries to convince his boss, Martin Jacobs, that the ape program is working, in this spoof of Rise of the Planet of the Apes.\"\ntt0795461,CkNjOs-7Sv8,Dan and Jody called in a psychic to help them with their demon problem.\ntt0795461,CkW8xFVXPqI,Jody tries to get the kids out of the house before mama gets them. Mama shows up and beats up Dan.\ntt0795461,B5D_aDaMqkk,\"During the auditions for the Black Swan musical, Kendra manages to go first and does a very sexual version of the dance.\"\ntt0795461,7rTb-n96yS8,\"Jody and Kendra go in search of a book of evil. They come across a cabin with four bible-loving friends in it, David, Mia, Eric, and Natalie.\"\ntt0795461,hnXqavr1ZMQ,Dan accidently lets out the apes in this spoof of Rise of the Planet of the Apes.\ntt1327773,WBuXu-20LZs,\"While living on a plantation, one day Cecil's mother is raped by the owner. His father gets the courage to say something only to get himself shot.\"\ntt1327773,Q92raMBaQ4o,\"After Louis Gaines admits that his father is a butler, Martin Luther King Jr. explains to Louis how important that role has been in recent history.\"\ntt1327773,rkD3FLsiUiU,Cecil Gaines reacts to the news of Kennedy being assassinated.\ntt1327773,UtS2awRAf5E,\"Gloria Gaines decides to end her affair with the family friend, Howard.\"\ntt1327773,7_AiHZa026w,\"While celebrating one night at the White House with other servers, Cecil see's his son on the TV getting arrested. Cecil goes to see his son, Louis, and they get into an argument about Louis's new path in life.\"\ntt1327773,rft59wPnoqk,\"While working late one night in the kitchen, Cecil, Carter and James are visted by Richard Nixon.\"\ntt1327773,lj66AQ2uzug,Cecil Gaines is given an interview at the White House for the position of butler.\ntt1327773,yYCW5Eo72VU,\"After being there for two decades, Cecil Gaines asks for all of the black workers at the White House to get a raise.\"\ntt1327773,buOVuDwsbOM,\"Louis and his girlfriend visit home and over dinner tell his father that he's joined a radical political group called the Black Panters. Upset over his son's new views, Cecil orders them to leave, an argument breaks out that ends when Gloria Gaines slaps Louis.\"\ntt1327773,8FX2FZ0fFlo,John F. Kennedy has a discussion with Cecil Gaines about Cecil's son.\ntt2334649,CHV9FhjbFLQ,\"While on the subway with his friends, Oscar gets recognized by someone who was an enemy of his back in prison. A fight breaks out and the police are called.\"\ntt2334649,sytZ2amRbpk,\"While picking up some food from the store, Oscar helps a customer get what she needs for a dinner.\"\ntt2334649,A6ZOCb2gaqs,\"While stopping to get gas, Oscar befriends a stray dog. Moments later, the dog is hit by a car.\"\ntt2334649,SIwi5PRNTfg,Oscar tells Sophina that he lost his job and has been lying about it for a few weeks.\ntt2334649,PwuTr5z4Bec,\"Oscar goes to pick up his daughter, Tatiana.\"\ntt2334649,QRACf_ehgis,\"Wanda vists her son, Oscar, while he is in jail.\"\ntt2334649,KhAtVQuAjVc,\"On New Year's Eve, Oscar tries to convince a store owner to let his girlfriend use the bathroom.\"\ntt2334649,26ISV0QFWPU,\"While at the grocery store he used to work, Oscar asks the manager for his job back.\"\ntt2334649,2tcG49k5vdw,Oscar and another man talk on the street while their significant others are inside a store using the bathroom.\ntt2334649,BXa-BfF9qGc,Oscar gets his daughter ready for bed before him and his girlfriend go out for New Year's Eve.\ntt0075148,RSUmB80GqDM,Rocky gives Champion Apollo Creed his first knock down with one good punch.\ntt0075148,_YYmfM2TfUA,Rocky's intense training pays off as he ascends the steps and overlooks the City of Brotherly Love.\ntt0075148,jK4lxjvrhHs,Rocky and Adrian have a date at an ice rink and share stories about their upbringing.\ntt0075148,fxriLTLhyyY,\"Paulie loses it with Adrian and Rocky, breaking things around the apartment.\"\ntt0075148,pjX20gL-rnc,Rocky displays his fierce fighting style for a television broadcast as he takes his anger out in a meat locker.\ntt0075148,Tc7H9s4PdSI,\"Rocky goes the distance with Apollo Creed but in the end, he only wants one thing — Adrian.\"\ntt0075148,4NLUpuo3HGo,Mickey warns Rocky about the dangers of chasing women and losing focus.\ntt0075148,Lxfe0cKOx3g,Rocky has a heated argument with Mickey through the doors of his apartment.\ntt0075148,g6mF_yokyiA,Mickey gets angry with Rocky for wasting his talent over the years.\ntt0075148,snqs566G_Zg,\"Rocky wakes up early, ready to train, and starts his day with a big glass of raw eggs.\"\ntt1245526,bRilciIycJQ,\"As VP Stanton tries to make his escape, Marvin Boggs shows up with a bomb strapped to his chest.\"\ntt1245526,3rFMyjGI4cg,\"All hell breaks loose when someone fires an unauthorized shot, forcing Frank Moses and his team escape from the Dunning estate.\"\ntt1245526,buH0CUEx-_Q,Frank Moses and William Cooper square off in hand-to-hand combat.\ntt1245526,qyMVXU7qMGw,\"Frank Moses has a sit-down with Russian secret agent, Ivan Simanov, to help him break into CIA headquarters.\"\ntt1245526,6HXgPGZcXe4,\"Frank Moses and Sarah track down Marvin Boggs, a former black ops agent and a paranoid conspiracy theorist.\"\ntt1245526,iiMNb99KaYk,Victoria and Marvin Boggs unleash some major fire-power as they engage in a shootout with the Secret Service.\ntt1245526,5ijEAMP_zW4,Frank Moses and his team interrogate Alexander Dunning as to why they're being hunted down.\ntt1245526,eXHdqulNiBs,The CIA tracks down Frank Moses at the airport and attempt to dispose of him and his crew.\ntt1245526,M96f_K13joo,Frank Moses neutralizes a CIA assault team.\ntt1245526,JDxlbYa_THM,Frank Moses saves Sarah from being abducted and has a shootout with CIA operative William Cooper.\ntt1245526,FpKhobkTOyY,\"After an intense shootout with the Secret Service, Victoria is wounded and left to fend for herself.\"\ntt0102753,cV0Db20loyg,Mother leaps to Rose's defense when Daddy and Dr. Martinson conspire to operate on her.\ntt0102753,VjdgqT_xtEo,Buddy watches as Rose walks across the bridge to his house.\ntt0102753,2WGvnOdTfGw,Rose works up the courage to ask Mother if she grew up an orphan.\ntt0102753,Y-YsM2a_N5Y,Daddy scares off a a pair of Rose's jealous suitors with his shotgun.\ntt0102753,nuUuXO8D9mo,Daddy fires Rose when he catches her sleeping with a local boy.\ntt0102753,Fjl9b_vVVnk,Rose puts on a tight dress and causes a stir in the Hillyer household.\ntt0102753,qHD4H60rCfA,\"Rose slips into bed with Buddy, who uses the opportunity to explore his natural curiousity.\"\ntt0102753,iaIYk3DZKwE,Willcox Hillyer returns to the house where he grew up and reminisces about the vivacious worman who changed his life.\ntt0053604,SeqT3GyDb2k,Miss Kubelik wonders why she can't fall for a nice guy like Baxter.\ntt0367085,4L62b92Prk0,The airline goes into an uproar when a Middle Eastern man steps onto the plane.\ntt0102753,34_4OMd4I2I,Rose turns many heads downtown when she goes out walking in her homemade dress.\ntt0102753,3sr3yQ4mGbs,Daddy and Mother welcome Rose into their home.\ntt0102753,rZsLiY_Yyhk,\"Rose loses control and forces herself on Daddy, who has a moment of weakness.\"\ntt0067411,cDI9o67o7bo,\"On the bridge to the general store, Kid manipulates Cowboy to show him his pistol so that he can gun him down.\"\ntt0478197,Orwz44-_XSg,\"Leonard Cohen talks about his father's death at the age of nine, and the McGarrigle sisters play the tune \"\"Winter Lady.\"\"\"\ntt0117108,3iZIOZrzbYo,Doug overcomes his fears and is successfully cloned.\ntt0226009,7X47UIYChis,Adam daydreams about Gynger and her friends dancing in the hallway at school.\ntt0226009,NzzSr5StuCE,Gynger and Adam accidentally implicate themselves to a police officer.\ntt0226009,yzSfVpQ-1ns,Adam has sex with a sophomore named Gynger in a restaurant bathroom.\ntt0226009,0uYmyOuu5xs,Adam and Gynger try a series of misguided tactics in order to take care of her unwanted pregnancy.\ntt0226009,oMvMqeThVPk,Adam meets his incompetent lawyer Chuck Clopperman.\ntt0226009,EYO__x8qn2w,Adam seeks advice about pre-marital sex from local youth pastor Reverend Olson.\ntt0226009,CrFsSJPnHj4,Adam literally goes behind Amber's back to cheat with Gynger.\ntt0226009,7qfgWGJpbgA,\"With no one else to call and desperate to avoid a night in lockup, Adam calls Amber to bail him out.\"\ntt0226009,vNgB9PxOAdI,Lydia searches for an issue to prove she's passionate about something besides being elected mayor.\ntt0226009,m5Qn-tIKwD8,Chuck Clopperman presents the Fishers with his ultimate legal strategy.\ntt1341167,RNMZD_WiAvU,Omar has to think on his feet when his coworker Matt observes some strange behavior.\ntt0226009,Hg_aGQjwjmo,Gynger and Adam break the baby news to his parents Al and Patti over dinner.\ntt1341167,kSKnJn8gksc,Waj and Omar discuss the ways they would kill each other.\ntt1341167,awHrfxqEofc,Barry is not happy that Omar and Waj are going to Pakistan without him.\ntt1341167,FqJJfBeuxUE,Barry grills Fessal about some stupid decisions he's made while buying twelve bottles of bleach from the local shop.\ntt1341167,ou4WG7HhFZM,Waj does his best to make a threatening terrorist video with his toy machine gun.\ntt1341167,zWzRkf2uwQk,Omar tries to blend in with the running crowd in his Honey Monster costume.\ntt1341167,uVNCyp4Verc,Omar and Waj take it upon themselves to destroy an enemy drone.\ntt1341167,5WnobKuNaO4,Fessal blows himself up while running with explosives.\ntt1341167,1NfrTfIPl9Q,Hassan scares the audience at a university debate on Islam.\ntt1341167,NEcaoimX3qY,Omar has good news concerning Pakistan as Barry convinces everyone to eat their SIM cards.\ntt1341167,wEvrmiK_WlY,Hassan snaps under pressure and tries to turn himself in.\ntt0348333,PdmE-Ga0f5s,\"Mitch unleashes a tongue-lashing of epic proportions on his new co-workers, bringing the house party to a grinding halt.\"\ntt0348333,M3j9drozqlM,Serena gets into an argument with Monty about his supposed unbelieveable sexual abilities.\ntt0348333,6Cz2mIx0y5k,Bishop dispenses his folksy yet vulgar life advice to Dean.\ntt0348333,Ul0qToCSdfQ,Bishop helps Calvin visualize a way for him to urinate successfully and to overcome his phobia.\ntt0348333,jvAZ0bjChvk,\"Dan hits on the underaged Natasha, while Dean and Monty hurl insults and advice towards Calvin.\"\ntt0348333,UMjzEWOWXk0,The gang at Shenaniganz exact gross-out revenge against a rude costumer by spoiling the food.\ntt0348333,2JHbw-BXN5s,\"The waiters and waitresses of Shenaniganz go about their business, while Raddimus and Danielle get down and dirty.\"\ntt0348333,3dzw4t_dB5M,Raddimus uses pieces of raw chicken to show Mitch the various ways a man can play around with his genitalia.\ntt0348333,ckremwNAupg,Monty and Dean talk about women and relationships.\ntt0348333,U1usNHIi-L8,Monty and his mother have a cordial conversation with each other during supper.\ntt0348333,QVw-cRLFWOI,\"Naomi advises Dean about the dangers of becoming an assistant manager, and then, moments later, flips her lid when she learns that the next set of customers are foreigners.\"\ntt0338095,i1hu0ErzPc8,Marie exacts her revenge on Le tueur.\ntt0338095,qUwfcycK5X0,Marie hides from Le tueur as he brutally murders Alex's mother.\ntt0338095,KSOhzWTWuxA,Alex's mother goes downstairs to find Le tueur in her home and her husband dead.\ntt0338095,UPnwEYjEMP8,Marie attempts to escape from Le tueur while he's filling up his gas tank.\ntt0338095,h6nVYkTWTZw,Marie trails Le tueur into the woods and quickly ends up the one being followed.\ntt0338095,1nIPSxCzfVY,Le tueur enters Alex's house and murders her father.\ntt0338095,r8759Q-oR3E,Marie and Le tueur face off in the woods.\ntt0338095,0E4d_pXA7dI,Le tueur uses a decapitated head for his pleasure.\ntt0338095,Z97maI23aNg,The Police Captain discovers the real identity of the killer.\ntt0338095,vVzx25uDVaM,Le tueur kills gas station attendant Jimmy.\ntt0344510,bzRIeXSIS_w,Young Manech shows Mathilde the lighthouse and later proposes to her.\ntt0338095,ymWU7EuLXNc,Le tueur uses a concrete saw on an innocent motorist to prevent Alexia from getting away.\ntt0344510,YGenu4ZFnmQ,Tina Lombardi confesses the motives behind her killings to Mathilde.\ntt0344510,MIxtdrML0rE,Elodie Gordes tells Mathilde her story.\ntt0344510,o3sj7nGzC64,Mathilde is reunited with her Manech.\ntt0344510,AuF1AN-ugM0,Celestin Poux recounts the deaths on the trench and what he knows about Manech.\ntt0344510,DYfo3nt-O_U,Mathilde plays a game to prove her lover is still alive and she fantasizes about her masseuse in his absence.\ntt0344510,r3Owzt1HZkY,Tina Lombardi gets her revenge against Thouvenel. Mathilde receives promising news.\ntt0344510,2N73a3SRqyE,Mathilde races down the hill to promise herself that Manech will come back to her alive.\ntt0344510,sjPnuqcrL70,\"Manech injures his hand to get out of the war. With every throb of his wound, he feels the heartbeat of his love, Mathilde.\"\ntt1226236,jnuQMlB2uyw,Emma follows Antonio on a whim and is startled when he recognizes her.\ntt0344510,gacB8xCQ09s,Tina Lombardi gets her first bit of revenge against a man who hurt her lover.\ntt1226236,BaccIrZHkno,Antonio makes a special dish for Emma.\ntt1226236,dqbddxpASRk,Betta returns from college and tells Emma that she's a lesbian.\ntt1226236,tojv7SZkBOc,The Recchi family is in a state of upheaval as Emma leaves and Eva announces that she is pregnant with Edo's child.\ntt1226236,ZjC0F-xFL5s,Antonio takes Emma aside and seduces her.\ntt1226236,SYM7Js4_I_4,\"Through a note meant for her son, Emma discovers that her daughter is a lesbian.\"\ntt1226236,0tyZ_m6t2Qs,\"Antonio has his daydream interrupted by Edo, who's come on business.\"\ntt1226236,96T06Ema-Fc,The affair between Emma and Antonio comes to light when Edo recognizes his mother's soup.\ntt1226236,Gtg2d74VHH4,\"On his birthday, Edoardo Recchi Sr. announces to his family who his successor must be once he retires.\"\ntt1226236,CdMDIBgp638,Emma admits to Tancredi that she loves Antonio.\ntt1226236,y1O2kicdfzo,Emma cooks for Antonio and he cuts her hair.\ntt0048356,ktXm7CRXbsE,\"Marty tells his mother that he's just a fat, ugly man and will never find love.\"\ntt1226236,QUVXO7h3-mQ,Emma has a look around the property belonging to Antonio.\ntt0048356,ns_HTpxc-g4,\"Marty gets propositioned by his friends to ditch his date for a sure thing\"\" with Leo, but he says no.\"\ntt0048356,O3bTMw3bb5o,Marty calls a girl he once met for a date and after a painful blow off he finally takes the hint and sadly gives up.\ntt0048356,l6e1M2d4BJ0,\"Clara tells Marty that she believes in him, that he's a good butcher, and that he can do anything he wants to do.\"\ntt0048356,TzAnOnVKwzk,Marty dances with Clara and talks optimistically about how they're better than they think they are.\ntt0048356,lQbw0_5O8CQ,Aunt Catherine warns Mrs. Piletti about her son Marty's interest in a college girl.\ntt0048356,LyszyKhpc88,Angie gets frustrated when Marty won't hit the town with him.\ntt0048356,1fNnMtn7BiU,\"Marty is broken up when Clara won't give him a kiss good night, but she explains that she does like him very much.\"\ntt0048356,zGa7K2HO1-Y,\"Marty, fed up with his no-direction friends, has an epiphany about his feelings for Clara and gives her a call.\"\ntt0048356,ecmRksfy--I,Marty explains to Clara how he got the reputation of being the best shot in his battalion.\ntt0420757,3D2hC2C_Wpw,Jack Giamoro is welcomed back to the office after having his teeth replaced.\ntt0420757,hwu3LxjW22o,Jack Giamoro gets back at Jimmy Dooley for beating him up.\ntt0420757,weqGiMyn8AU,Jack Giamoro gets a surprise when Brynn Lilly offers to audition using a scene from Basic Instinct.\ntt0420757,tCDZOw9BoPU,Jack Giamoro tries to sign successful writer David Lilly to his agency.\ntt0420757,tjSf6v-dztQ,Dr. Primkin encourages his students to search for the truth via their journals.\ntt0420757,IQ4Yt16z2PY,Jack Giamoro explains to his business partners that he is taking a class on journal-writing.\ntt0420757,PWeRWbuEN7Q,Jack Giamoro steals back his private journal from Barbi Ling and must outrun her and her family.\ntt0420757,-w4bcJF68u8,Jack Giamoro has an awkward encounter with a former classmate from high school.\ntt0420757,z4QNCQD7LvU,Jack Giamoro finds his senile father submerged in a fish tank.\ntt0420757,waOQ8ECkEcQ,Jack Giamoro recalls the tragic accident that created a rift in his family.\ntt0420757,cuMmCpE7-pg,Jack Giamoro describes the self-motivation and determination that led him to succeed in his career.\ntt0070355,uki4lrLzRaU,\"The vigilante cops are dead, but Inspector Callahan has one last score to settle with Lt. Neil Briggs.\"\ntt0070355,WQnv22Qnp8s,Inspector Callahan poses as a pilot to thwart a group of hijackers from flying away with a plane full of passengers.\ntt0420757,Blz6dosZ5oc,Nina Giamoro tells Jack Giamoro that she's been cheating on him with one of his clients.\ntt0070355,8kmCFBwTmGY,\"After finding a bomb in his mailbox, Inspector Callahan frantically tries to warn his partner, Early Smith.\"\ntt0070355,-oRm-YxsEH8,\"Inspector Callahan competes in a shooting contest against Officer John Davis, a top suspect in the case.\"\ntt0070355,sEWuVNk2TKA,Lt. Neil Briggs gets upset when Inspector Callahan pays a visit to a crime scene.\ntt0070355,TCrV8NUSTsc,\"Inspector Callahan puts his partner, Early Smith, at risk when a gang holds up a store.\"\ntt0070355,C8l7cD_YI4Y,Inspector Callahan escapes from the aircraft carrier and demonstrates why he's the best there is.\ntt0070355,CQtbqB7NcXc,\"Inspector Callahan meets Sunny, a neighbor with a pressing question.\"\ntt0070355,CgHWwYQ3XSg,The vigilante cops confront Inspector Callahan with a proposition.\ntt0070355,TAkyNyQBnyo,\"After a shootout results in the death of a cop, Inspector Callahan gets an earful from Lt. Neil Briggs.\"\ntt0892782,vAalnLmiZrc,Samantha and Andrew find out what has been growing in the trees.\ntt0892782,YeNQ5WEKggc,Andrew and Samantha watch as two of the alien creatures connect in the night.\ntt0892782,_KpfRDVjsKI,Andrew arrives at the hospital to pick up Samantha.\ntt0892782,1ISntRHuJ4Y,Samantha and Andrew discover a new perspective on the American border.\ntt0892782,w9SWbpW5bNo,Andrew and Samantha watch helplessly as their convoy is attacked by a giant alien.\ntt0892782,eF77Id3wbZQ,Andrew and Samantha make their way to the infected zone.\ntt0892782,JZsF7-7VBYs,Samantha and Andrew cross the border into the United States only to discover an evacuation zone.\ntt0892782,NCh2VGy8AR0,Samantha is startled to find alien tentacles exploring the inside of a gas station.\ntt0892782,BbYPFSGnPZs,Samantha and Andrew bargain to get back into the United States.\ntt0892782,q3LxjwTz-b8,Samantha and Andrew make their way to the coast through a country afflicted by monsters.\ntt0892782,hq-jlSdx5Ck,Andrew walks Samantha back to her hotel room and fails to get an invitation inside.\ntt0117108,tQlujXWP-5c,Doug bribes #4 for information on his wife with some Coca-Cola.\ntt0117108,JpdTx3k0VoQ,Laura is astonished by Doug's attention to detail with food preservation and hair.\ntt0117108,hm9ZzMSoPB4,\"Doug fights to get his daughter ready for picture day, but upon arriving at class, realizes that he's got the wrong day.\"\ntt0117108,VAh7ZGHEp-c,Doug lays down Rule #1: none of the clones can have sex with his wife.\ntt0117108,hSAx87qd-fs,Doug finally fires an employee who is habitually late.\ntt0117108,NwqIdPSNr6E,\"After bickering with the first and second clones, Doug realizes that there is a third clone in the room.\"\ntt0117108,oyYuYNnSq9E,The little league football coach has enough of the meddling parents and leaves the team in Doug's hands.\ntt0064665,D0rFBU7pVL4,\"Just before they reach Miami, Joe discovers that Ratso has died on the bus.\"\ntt0064665,uKZQEDh_KAA,Ratso and Joe fight about the appeal of Joe's cowboy schtick and the Ratso's lack of sexual experience.\ntt0064665,_Z-tCU-sULA,\"Ratso explains the value of proper management to Joe and agrees to introduce Joe to Daniel, the middleman.\"\ntt0064665,xd7SESj-nfA,Joe corners Ratso in a diner and demands his money. Ratso makes excuses and invites Joe to stay at his place.\ntt0064665,afnlOjES53Y,Ratso steals a high-class client from another gigolo for Joe then waits outside the hotel like an expectant father.\ntt0064665,3izxrCNCbUQ,\"Rather than seeing a doctor for his illness, Ratso wants Joe to put him on a bus to Florida.\"\ntt0064665,X6UG7H2dcos,Cass breaks down when Joe asks for money for his time.\ntt0064665,gjliVll3Uyw,Joe keeps things light after a deathly ill Ratso wets his pants on the bus en route to Florida.\ntt0064665,IC2crLlclNA,Ratso daydreams about the new life his imagined riches will bring him in Miami.\ntt0064665,AO_944kf0RA,Joe beats and robs an old man to get the money for his and Ratso's bus ride to Florida.\ntt0064665,bwTe_vZ_2dg,Ratso and Joe lose their home then visit Ratso's father's grave.\ntt0795426,x1dA_SM1vxE,\"Lefty drives through security, and steals supplies from his old job.\"\ntt0795426,_Fw6TuACCKY,Mary and Kirk discuss the difficulties of taking care of disabled loved ones.\ntt0795426,R4ODWXEmvKQ,Lefty offers to take his mother to the Christmas Eve service at her church.\ntt0795426,alvAo3qQRQE,\"To his surprise, Mitch sees Eva and her son, Lefty, at the Christmas Eve service.\"\ntt0795426,BUAUwc7g_gY,Lefty borrows a stranger's cell phone and calls his ex-wife.\ntt0795426,06gTnB_5-Tg,Lefty shows up at his Mother's house so she can wish him a Merry Christmas.\ntt0795426,igD13c0l8Sc,Lefty shows up again at the gas station and apologizes for his last visit.\ntt0795426,bmIx71yf944,Lefty is fired when he shows up late for work one too many times.\ntt0795426,SiLFLIp8I14,Mitch tells Pastor Mark that the caroling trip was a waste of time.\ntt0795426,kjx9LAJ6Wu4,Lefty explains his current situation to his wife's divorce lawyers.\ntt0795426,5-kyVZ5swXE,Carolers arrive at Eva's house right before she plans to commit suicide.\ntt0095953,cKw1b2-4aeU,Charlie loses his temper when Ray insists on going back to Cincinnati to buy boxer shorts from Kmart.\ntt0095953,G4Hwsz1sQmc,Ray has an attack in the airport when Charlie tries to force him on an airplane.\ntt0095953,DH6S0wKKGBM,\"Charlie makes the connection that Ray is \"\"Rainman,\"\" the childhood friend he had growing up.\"\ntt0095953,kthFUFBwbZg,Charlie is amazed when Ray correctly guesses the number of toothpicks that fell out of the box in one glance.\ntt0095953,wAadouGkwMQ,Ray and Charlie scope out the casino and get their first winning streak.\ntt0095953,Bp9AClR8qCY,Charlie takes Ray to a farmhouse to watch People's Court.\ntt0095953,tDpyGID-qHI,Charlie teaches Ray how to slow dance.\ntt0095953,7zDmlkn1gbQ,Charlie says an emotional goodbye to his brother before Ray boards a train back to Cinncinati.\ntt0095953,Lz-ihW8RXSM,Ray acts out when Charlie visits his room and touches his belongings.\ntt0095953,LU1A0sHWYQg,Charlie discovers that the stranger sitting in his car with his girlfriend is actually his brother Ray.\ntt0095953,gN2ZP-q_qpc,Charlie is impressed when he learns that Ray memorized part of the phone book.\ntt0935075,Xw2cUrd_Zt0,Gaby and Howie Corbett smoke pot before support group.\ntt0935075,O7LsLRMEg1Y,\"Becca calls up her mom Nat, and the conversation takes a turn towards the topic of religion.\"\ntt0935075,qDYuDtyvVVQ,\"At a support group, Becca Corbett questions why God takes away little children from loving parents.\"\ntt0935075,Cbijjb5aLYo,Howie tries for some physical intimacy with his wife Becca.\ntt0935075,RgofngIgfsY,Nat recounts a story of an old friend to her daughter Becca.\ntt0935075,zKWgTSNMESI,\"Sitting in a park, Jason expresses his grief and regret to Becca over the accident.\"\ntt0935075,RAG1b0H8nv4,Emotions full of grief come to a head between Becca and Nat at Izzy's birthday party.\ntt0935075,zn9pjQIMQVQ,Becca takes comfort in Jason's idea of a parallel universe.\ntt0935075,sDB0bxWhS4A,Nat expresses the nature of grief as time passes to her daughter Becca.\ntt0935075,i1jS0AMWtgg,\"Jason shows Becca his comic book named 'Rabbit Hole,' inspired by the idea of parallel universes.\"\ntt0935075,KK2MOKkkp4M,An argument between Becca and Howie over an erased video reveals repressed emotions.\ntt0396184,s_zget0Z7Xc,\"After screwing up a drug deal, Kusse-Kurt and Tonny argue about how best to cover it up and who's to blame.\"\ntt0396184,fU3enCcXY80,\"After engaging in a lousy drug deal, Kusse-Kurt, aka Kurt the C**t, accidentally flushes his stash down the toilet.\"\ntt0396184,lPJzoxKtSxY,\"Frustrated at Charlotte for her demeaning attitude and for being constantly coked-out, Tonny tries choke her to death.\"\ntt0396184,8svIExZz6Dw,\"Smeden makes a toast to the groom while insulting his own son, Tonny.\"\ntt0396184,gtHCnru414Q,\"Tonny makes an agreement with Charlotte to cover the child support payments for their infant son, including what he owes for his time lost in prison.\"\ntt0396184,iWFpqo0_43o,\"After helping Kusse-Kurt trash his own apartment in order to make it look like it was robbed, Tonny learns that he has been duped into double-crossing his own father.\"\ntt0396184,AIHlnQOkZiU,Tonny takes pride in changing his son's diapers for the first time.\ntt0396184,RnWxwJxpDig,\"After being mercilessly berated by his father, Smeden, for yet another failure, Tonny snaps and strikes back with savage fury.\"\ntt0396184,FSbcZ85iPvU,Tonny takes his infant son and escapes into the night.\ntt0396184,CBP-t2AJ8M8,Tonny helps his father's associates pull off a car heist so he can prove his worth.\ntt0396184,ks2GU3XYXvM,\"Just before he is to leave prison, Tonny gets some sobering advice from an underworld kingpin.\"\ntt0307351,vMrWJki0r8g,\"Sally and Jacki open up to one another about their abusive pasts, and how music was their saving grace.\"\ntt0307351,EdDMvB9Y20o,Jacki and her sister upset their mother when they joke about their father's abusive behavior.\ntt0307351,GUclZ3JhJoM,\"After a night of drugs and heavy drinking, Tracy finally admits to Jacki that she needs help, but it lands on deaf ears.\"\ntt0307351,dPfKQTaEcEA,Jacki contemplates whether or not she is getting too old to keep following her rock'n'roll dreams.\ntt0307351,fhGy66B0CIU,Tracy and Sally convince Jacki not to quit the band.\ntt0307351,NJz68D8NcE0,A drunken Nick assaults Sally in an effort to live out his rape fantasy.\ntt0307351,6GC872xb5dI,Jacki aks Faith if she ever has any doubts about being a musician.\ntt0307351,IBRvIQdd6UE,Jacki worries that the grant given to her band will be for a lot less money than expected.\ntt0307351,fjnGwAftnDE,Animal comes clean about the reason he was in prison and about his attraction to Jacki.\ntt0307351,UwslgPscal8,Jessica walks out on Jacki after she puts the band before their relationship yet again.\ntt0307351,EVPxub5VJMg,\"Animal and Jacki teach Nick a lesson by tattooing the word \"\"rapist\"\" onto his forehead.\"\ntt0307351,rKjMBYlak2M,The all-girls band rehearse a song that Jacki wrote based on her experience with the issue of rape.\ntt1262981,V1dPrmENIVg,Andrew confronts Lance about the discrepancy between Kyle's reputation before and after his death.\ntt1262981,ccyTJYkiGqE,Lance listens to Jason recite a poem that sounds suspiciously familiar.\ntt1262981,WOLfIBsXq4s,Lance drives Kyle to school and tries to talk about their awkward encounter.\ntt1262981,pwlgVnituhw,Lance and Claire bring Kyle along on their dinner date.\ntt1262981,kNOz8Bcb9v0,\"Lance and Claire, trying to keep their relationship a secret, kiss in the stairwell at school.\"\ntt1262981,Nx0Qte8Wfgg,Lance admits to everyone at the library dedication that he wrote Kyle's suicide note and journal.\ntt1262981,hpfufHZI0yQ,Lance finishes another novel and walks in on Kyle at an embarrassing moment.\ntt1262981,QaKCmtbKf8g,Kyle watches his elderly neighbor and accuses Lance of getting high.\ntt1262981,dEfBtVYzWks,Kyle gets into a fight with Chris after making a derogatory comment about a classmate.\ntt1262981,W1N-a0SDw0k,Claire keeps Lance and the chauffeur waiting as they prepare for a talk show appearance.\ntt1001562,8ExIPKUEZ-4,\"Deputy Larry Stalder believes that the men in black suits, driving black Suburbans, must be drug dealers or smugglers.\"\ntt1001562,A7iVMwpaYmk,Deputy Larry Stalder gets stopped by TSA officials.\ntt1001562,edDfsrTAI1k,Madeleine plays dead in the funeral parlor.\ntt1001562,k4WEx4-yh-g,Deputy Larry Stalder hits the diner and hits on Connie.\ntt1001562,f3mAVsy7WbM,Deputy Larry Stalder doesn't have a credit card to put on file at a motel.\ntt1001562,jSbmgZG-0Ng,Deputy Larry Stalder and Madeleine flee from the men in black.\ntt1001562,poQL9Yw2kNI,TSA officials perform a body cavity search on Deputy Larry Stalder.\ntt0245562,OywTdKpHE8M,Sgt. Joe Enders' men are gunned down one by one on the battlefield.\ntt1001562,NWO-iP_Sbtk,\"Ricardo Bodi sneaks into Connie's home to find Larry, who's not there.\"\ntt1001562,ajj5MxJEJ1Q,Deputy Larry Stalder threatens to blow everyone up with a fake grenade.\ntt0245562,UniUFSan3Bg,Yahzee learns that Enders killed Whitehorse.\ntt0245562,IwC3OUA8_s0,Ben leaves his family for the army.\ntt0245562,H3h2opMD6rM,Pvt. Yahzee comforts Sgt. Enders in his final moments alive after the battle.\ntt0245562,ZsL0rDZPGb8,\"When Pvt. Chick goes too far with his abuse, Pvt. Yahzee goes after him physically.\"\ntt0245562,qsdgNxuhPgc,Yahzee makes an unfortunate first impression with Enders when he ruins his chow.\ntt0245562,hQogMjsahWU,\"Despite enduring some stereotypical remarks, Pvt. Yahzee is happy to join a game of poker with the guys.\"\ntt0245562,ah-M2AYI4Ac,Yahzee holds a Navajo ceremony in memorial to Enders.\ntt0245562,zQHhbhtpJ3M,Yahzee speaking in Navajo language communicates the proper coordinates for the attack.\ntt0245562,hrZxBMTQO0c,The marines land on the Japanese island of Saipan under heavy fire.\ntt0114938,fSOh-vTjWk4,\"Wild Bill is in search for Dave Tutt, to take back his watch and woman, Susannah Moore.\"\ntt0114938,nZy7fW9IO0s,A saloon fight breaks out when a soldier threatens Wild Bill.\ntt0114938,zCfnEpand6k,Charley Prince tries to persuade Jack McCall to forgive Wild Bill for any wrongdoing.\ntt0114938,XAORGJKfEcU,Wild Bill and cripple Will Plummer have a duel with both men confined to chairs.\ntt0114938,y4nFzow4tLQ,\"McCall sneaks up on Wild Bill in an opium parlor, but Bill still unnerves him.\"\ntt0114938,7iWEk7k_kio,Jack tricks Wild Bill with an unloaded pistol.\ntt0114938,gm2PdV3UPfc,Jack McCall threatens to kill Wild Bill in a fit of youthful recklessness.\ntt0114938,hdt5QAIC81Q,Jack McCall tells Wild Bill about his deceased mother.\ntt0114938,8MnF5ok8llg,\"In a chaotic moment, Will Bill accidentally shoots his own deputy.\"\ntt0114938,mb2bzOdITdU,\"After a shootout, WIld Bill shows mercy to Jack McCall and lets him go free.\"\ntt0486674,1eQh2-2W_1Q,Dick doesn't respond well when Ben asks him to deliver some bad news.\ntt0486674,yQAICCf1oug,Bruce Willis eulogizes an agent as various Hollywood power players mourn their colleague.\ntt0486674,ZCYbGGfwbfk,Jeremy does not respond well when Lou tells him to change his ending.\ntt0486674,QslzL-DhXDY,Ben misses his plane out of Cannes.\ntt0486674,8bAvbwlCsHU,\"Ben attends a test screening for his new film, but the audience reaction is less than stellar.\"\ntt0486674,QgYPzXlF1xM,Ben grills his daughter Zoe about her relationship with a deceased agent.\ntt0486674,IyT1ogi3fE0,Bruce Willis reacts violently when Ben tells him to shave his beard.\ntt0486674,1US29KtfPrQ,Ben fantasizes about telling off Scott.\ntt0486674,obbz_0P1wVs,Jeremy shows Ben the new ending for his movie.\ntt0486674,iGAwKHHaRAA,Ben tries to calm Jeremy by providing medication.\ntt0486674,G92KKZEiWy8,Ben wants Kelly to confirm his suspicions of her affair.\ntt1465522,GJgKIC581V0,Tucker gives Dale an uplifting speech.\ntt1465522,bXq9Pa9Txg8,\"The Sheriff warns Tucker about their predicament, but ends up slightly dead himself.\"\ntt1465522,WSoMlpQ6yz8,Dale and Allison start hitting it off…only to be interrupted.\ntt1465522,poZubOWaras,Allison attempts to diffuse the situation between Dale and Chad.\ntt1465522,zKSDHbVKY7Q,Dale comes to Allison's rescue.\ntt1465522,IX3hYYzIyoY,\"Tucker tries to run, but he can't hide from the face of pure evil.\"\ntt1465522,gYTKHHhPk08,\"Tucker and Dale reach their vacation cabin, which is just perfect - aside from it's horrific contents.\"\ntt1465522,JJ0PocoUWVI,\"After much hesitation, Tucker convokes Dale to approach some college students on vacation.\"\ntt1465522,TdOMp1LuvJg,Dale finds his buddy tied up and missing some digits.\ntt1465522,AdGVl3AP7fw,Tucker hits a beehive while working on the house and scares the crap out of the college students.\ntt1465522,MjC0kVIUGYU,Tucker and Dale unwittingly cause Allison to fall and hit her head. The other college students read the accident the wrong way.\ntt1465522,Y4yQoJ-LBVE,Tucker and Dale try to explain their situation to the Sheriff.\ntt0084814,nODBN75vrH0,George and Charles Litton try to escape the law while dressed as gorillas.\ntt0084814,Cpxs390x5N4,Clouseau has a miscommunication with the hotel clerk over a message.\ntt0084814,zvry_GtQIeU,Young Clouseau tries to blow up some Nazis crossing a bridge.\ntt0084814,IRMNacEVuT4,Clouseau tries on a variety of noses for a new disguise.\ntt0084814,JnXCZbZipJg,Clouseau blows up his car while trying to fix the cigarette lighter.\ntt0084814,7fOYHqR2Gyo,Clouseau's bad disguise causes problems when he tries to disembark the plane.\ntt0084814,uq1JHKlUtOU,Clouseau insults Marta when he thinks she is wearing a fake nose.\ntt0084814,uF_721BvdJE,Cato attacks Clouseau while he is in bed.\ntt0084814,gL3mN-UpSyQ,Clouseau is repeatedly knocked out a window while trying to receive his message from the hotel clerk.\ntt0084814,oaqTzvd4aq8,Clouseau puts forth his theory about the Phantom and burns his hand in the process.\ntt0084814,zE0vrRRohs0,Clouseau accidentally starts a fire in his office and uses his resources to put it out.\ntt0070814,ydYaph8BQkE,Tom Sawyer sings about what he'd do if he was God.\ntt0070814,aBgs1Kxh9nM,Tom makes up a lengthy lie to get out of trouble with Aunt Polly.\ntt0070814,BahgFrLFgpk,Tom finds Huck at the fishin' hole and tries to learn him some responsibility.\ntt0070814,Jah71XURbIg,Tom tricks some kids into doing his chores for him.\ntt0070814,4KX9Ojp-yic,Tom takes a whipping for Becky at school.\ntt0070814,yZLkEOM1CQ0,Tom persuades Becky to get engaged to him.\ntt0070814,pKdszbbvQGc,\"Muff Potter, the town drunk, sings to Tom Sawyer about his destiny.\"\ntt0070814,2yXz1r5kn_k,Huckleberry Finn and Tom Sawyer enjoy their free time with nothing to worry about.\ntt0070814,u8TwN5M1fEY,Tom meets Becky Thatcher and is mighty impressed.\ntt0070814,wRbKDoyN5oc,Tom and Huck are quite moved by attending their own funeral.\ntt0070814,lVg2pm0YdQ0,Tom Sawyer and the boys sing about their job satisfaction as they whitewash the fence.\ntt0070814,i5mSHPKEbas,Tom testifies against Injun Joe to his own peril.\ntt1293842,3jBfvv_lBEU,Bill gets rejected when he asks a waitress out for a drink.\ntt1293842,WDq967Y_e3U,Bill tells the girls to start taking the game more seriously if they don't want to look like idiots.\ntt1293842,gMBkkaB0pp0,Bill drags Wendy back to basketball practice when he finds her making out with an older man.\ntt1293842,7jO1tzRBFFw,\"After Bill takes one look at the girl's basketball team that he's been hired to coach, he asks Terry if a joke is being played on him.\"\ntt1293842,hbki4pbNi10,Lisa defends Kathy after two girls on the opposing team mutter a few racial slurs towards her.\ntt1293842,tfsPfimgjFU,\"The girls get emotional when they lose the season championship, but Bill provides some words of encouragement to lift their spirits.\"\ntt1293842,laWUdsC-3Pk,Abby breaks up with Damon after she realizes that he has extremely shallow ambitions for his future.\ntt1293842,QCTgWRNnfZM,The girls bring a drunk Bill back to his apartment and ask about his secretive past.\ntt1293842,jXqcrXqphIo,\"Bill coaches his team from his daughter's cell phone, as he simultaneously runs from the cops.\"\ntt1293842,3IAUIQJXHUM,Molly runs away to her mother's house after Bill embarrasses her in front of her friends.\ntt1293842,FPyap6DbfHw,Bill lectures the girls about keeping their personal issues with one another off the basketball court.\ntt1293842,92h5_0bE8Nk,The girls send Bill on a guilt trip for abandoning the team.\ntt0120520,gfF5C7j-2jk,Kate sneaks off to see Merton and they get caught in the rain.\ntt0120520,GBGdp2p0T30,Kate visits her destitute father for advice.\ntt0120520,_OzammfDblc,Millie and Merton are overcome with passion upon viewing a ceiling painting in Venice.\ntt0120520,tvaROfCgPPE,Kate is overcome with jealousy as Merton dances with Millie.\ntt0120520,6J4faUNOGuI,\"Kate and Merton meet in secret, causing Aunt Maude to grow suspicious.\"\ntt0120520,pu0pYw6lG_c,Kate and Merton reunite after several months of separation.\ntt0120520,gUccqktilDU,Kate encourages intimacy between Merton and Millie by making them share a gondola in Venice.\ntt0120520,mjPh_oYqKPM,Kate and Merton reunite after Millie's death and consider a future with her money.\ntt0120520,A8PVoyIiqrw,Kate wonders if Merton is still in love with Millie's memory.\ntt0120520,YRi3-AbHXbU,Kate tries to convince Merton to join her in Venice.\ntt0051036,55gq831fmzE,J.J. uses some clever negotiations to convince Sidney to help him get Steve.\ntt0120520,qw34BbyVK7c,Kate drags Merton away for one last rendezvous before she leaves Venice.\ntt0051036,9uA8c4XGVxk,\"When Sidney comes over to check on Susan, J.J. turns against him and tries to beat him up.\"\ntt0051036,U0FBVju7fVI,Sidney interrupts J.J. Hunsecker at a dinner he is having with a senator.\ntt0051036,OhH4bYnAdzk,Susan walks out on J.J. and leaves him with some thoughts to consider on her way out.\ntt0051036,Wh4U2TtNn-g,J.J. gives Sen. Walker a warning.\ntt0051036,8xsYjrLw-Qk,Rita confides in Sidney when a columnist tries to take advantage of her.\ntt0051036,VIVMDMDxnQY,Sidney steps in just in time to save Susan from throwing herself over the balcony.\ntt0051036,oCq7TUmVmt8,Sidney convinces Rita to make nice with Otis.\ntt0051036,3CeKpU2WaBQ,Sidney attempts to blackmail columnist Leo Bartha by disclosing his relationship with Rita to Leo's wife in order for him to print a smear on Steve Dallas.\ntt0051036,Xv_qHFUItVo,J.J. gets in between Susan and Steve and forbids her from ever seeing him again.\ntt0098384,iZx1W6cHw-g,\"M'Lynn grieves for her daughter, and when she expresses a desire to hit something, Clairee suggests slapping Ouiser.\"\ntt0051036,e1bMBM_rgwQ,J.J. is surprised by Sidney's evil ways.\ntt0098384,juw328OfWnM,Annelle tries to comfort M'Lynn at Shelby's graveside by reminding her that Shelby has gone to a better place.\ntt0098384,ybbS5_qlkaQ,\"When Shelby suffers a diabetic attack at the salon owned by Truvy, M'Lynn gives her daughter juice and tells Clairee and Annelle that Shelby will be unable to have children.\"\ntt0098384,hn09SKCZgtI,M'Lynn refuses to leave Shelby as the doctors pull her off life support.\ntt0098384,cWuFfrettMY,\"Truvy prepares for Shelby's funeral, and Spud decides to go with her to offer his sympathies.\"\ntt0098384,TlB_1W-qc14,Shelby tells M'Lynn that she's going to have a baby despite the dangers caused by her diabetic condition.\ntt0098384,eTVHMQb2OyU,\"Drum announces that Shelby is pregnant, but M'Lynn is more worried than excited.\"\ntt0098384,BXloUAxs2wI,\"Shelby reminds Ouiser of an old friend who is now eligible again, but Ouiser is not receptive to Shelby's matchmaking.\"\ntt0367085,DLFB0sj-xkc,The Hunkee family notices they're the only white family waiting for the flight.\ntt0367085,Lva7xOJRRCA,Captain Mack prepares the passengers for take off.\ntt0367085,frgfTkjkcxo,The Hunkee family is impressed with Terminal Malcolm X which features custom shops and a couple of very feisty security workers.\ntt0367085,cCoD237oWtg,Blanca shows Nashawn how to take control of the plane with her sexual memory.\ntt0367085,9XVy6vDxQDk,Jamiqua takes an attractive man back for a body cavity search.\ntt0367085,YfUodLRuU-A,Watch NWA Airlines' musical safety video.\ntt0367085,Geneo4_3VbE,Heather Hunkee embarrasses her family by talking loudly about what types of sex she will have when she comes of age.\ntt0367085,cLc_O-kQOoc,Nashawn has a bathroom emergency on the airplane when he's forced to eat the Beef Stroganoff.\ntt0367085,FvsbTxZZgxM,Nashawn realizes that Captain Mack is afraid of heights and has never flown a plane before.\ntt0367085,n5PnSNCFBYs,Nashawn meets two wild airport security guards who don't recognize him as the owner of the airline.\ntt0367085,LFc-p5H9AJI,\"Nashawn meets Captain Mack, a real smooth pilot, who may or may not be qualified to fly the plane.\"\ntt0120788,MRCXvZjeOx8,Jerry hits rock bottom when he begs for drugs and shoots up with his baby daughter in the car.\ntt0120788,HB7ienz0_IA,\"After Kitty announces that she's moving to Alaska, Jerry realizes how much he cares about her.\"\ntt0120788,PSNqibKHIys,Jerry can't cope with social interactions without getting high.\ntt0120788,NrXQSp7Uz0A,Jerry recounts a typical day as a junkie.\ntt0120788,yThTYeRr5BM,Jerry embarks on a drug binge with Gus.\ntt0120788,h0z4HetQWME,Getting high is more important to Jerry than pursuing a relationship with Sandra.\ntt0120788,OWXlfOnU6tc,Jerry has a drug-fueled rant about realism and Expressionism in a writer's meeting.\ntt0120788,EI_QlYraNl8,Sandra kicks Jerry out of the house after he reacts poorly to her pregnancy news.\ntt0120788,lmDII7sMIF8,Jerry recounts the embarrassing aftermath of sharing his story with the world.\ntt0120788,1HfdZj-RzI0,Jerry visits his daughter for the first time since becoming clean.\ntt0120788,rsmsMeT8EYs,\"Jerry interviews for a writing position on the show \"\"Mr. Chompers.\"\"\"\ntt0839880,m8oSm88EIhM,Tanya arrives and Amy is suspicious of the new girl tempting her unfaithful boyfriend Bill.\ntt0839880,0p1OYPs14T4,\"Brielle informs her sister, Samantha, of their grandfather's funeral and their inheritance.\"\ntt0839880,Ay4MOACH9tQ,\"Ben retrieves his wallet with his eyes closed, unaware that he's diving near a corpse.\"\ntt0839880,2F64BSpClag,Gloria introduces Brielle and Kelly to their family tradition.\ntt0839880,tx8GFMF8Pd8,Samantha drinks some wine from the bottle and then gets attacked.\ntt0839880,jthkBksMaXY,Sheriff Chuck Lake gives his mother Gloria an update on the situation and then a kiss.\ntt0839880,2wctAnLU_cE,Amy runs off into the forest as Brielle and Kelly make their getaway in the RV with Ben at the wheel.\ntt0839880,vsSTRzIow2c,Gloria pleads with Willard to preserve their secret family tradition.\ntt0839880,TfeZeRIdyNM,Ben and Brielle meet Gloria and discuss the future of the motel.\ntt0839880,kBgO6ctmq8M,Brielle slaps her father for keeping secrets about their family.\ntt0839880,HFUCwBt4pK0,Bill and Tanya are attacked after a little infidelity in the forest.\ntt0839880,7kAoU7bwDFM,Gloria orders her sons to include their sisters in the family tradition.\ntt0363276,IziNmIErmWw,A young patient escapes from a mental health facility but falls victim to a motorist.\ntt0363276,yga9OU5yuKE,Dr. Morton gets more than a midnight snack when he visits the kitchen after hours.\ntt0363276,SHvBT5RXeeA,Sara has a confession and a grisly discovery is made.\ntt0363276,JVfMbJjbIpw,Clark accuses Sara of the murders that have been occurring throughout the facility.\ntt0363276,TbgusehY_sQ,Nurse Hendricks goes to investigate when she and Sara hear strange noises in the hallway.\ntt0363276,rFPCkGmuUO4,\"When Clark Stevens has some suggestions for the facility, Dr. Franks puts him in his place.\"\ntt0363276,yFX-95l18ng,Sara attempts to calm Clark after his rampage.\ntt0363276,LkLvZZiL3Vo,Clark goes to ask the patient in cell 44 a few questions.\ntt0363276,ZC2SlM2Eqa4,Sara introduces Clark to the Madhouse and its inhabitants.\ntt0363276,Boi5obDmX-g,Clark gets a tour of the Cunningham Mental Health Facility.\ntt0227005,QpoiFakmREc,Ricky and Bobby enjoy the perks of flying first class.\ntt0363276,yJUGxCV5OiQ,\"When he returns to his office, Clark finds that he has a strange visitor waiting for him.\"\ntt0227005,urN3pAtiXdg,\"Ricky steps in to save the day when the deal goes wrong, but his starter pistol doesn't fool anyone.\"\ntt0227005,tPJ_rBWLOxA,Ricky fails to close the deal with one club girl as Bobby gets stuck hanging out with another.\ntt0227005,-WBeglzkZNQ,Ricky tries to convince Bobby that they need guns to survive their next assignment.\ntt0227005,F4d_PYyHSOM,Bobby and Ricky take orders on a job site from a flamboyant designer.\ntt0227005,FaH-7N7iRjI,\"The more things change, the more things stay the same, as Ricky and Bobby argue about Chloe's schooling at her birthday party.\"\ntt0227005,GeqbeBDtYkE,Ricky tries to negotiate a room upgrade from the Hotel Clerk.\ntt0227005,jTFSVXpq1Fg,Bobby and Ricky try to talk business while painting pottery with Chloe.\ntt0227005,iImMlbzg5Qc,Ricky gets in trouble with Ruiz for talking too much.\ntt0227005,y3wTKua41bk,Ricky and Bobby try to talk their way into a hot nightclub.\ntt0227005,fXcIZFeYivQ,Max explains the rules of the assignment to Bobby and Ricky.\ntt0234137,opyCsftx7D0,Kate's boyfriend Joey Santino shows his penchant for Robert DeNiro impressions.\ntt0234137,ettu4zJOh3M,Kate receives a singing telegram from a Tiny Man sent by Adam.\ntt0234137,Vn5ilm1jMgA,\"In a screening of Nosferatu, Kate runs into her ex-boyfriend Adam and his new girlfriend Peaches.\"\ntt0234137,mXwYp2IwFFw,It is love at first sight when Adam approaches Kate at an art exhibit -- turns out that he's the artist.\ntt0234137,uuAGxjrG_gs,Adam and Kate fight over what movie to rent at the video store.\ntt0234137,F5U5PKWgHQo,Kate Welles gets a tongue lashing from her editor Monique Steinbacher when she turns in a lurid piece about oral sex.\ntt0234137,3daIUo8UtM4,A high school-aged Kate loses her virginity to her French teacher.\ntt0234137,v75c0QugkBI,\"Eric gets caught with Kate, who becomes heartbroken, when his wife unexpectedly comes over with his daughter.\"\ntt0234137,M09CkmDfntY,\"Kate's attraction to much older men continues with Eric, a married music video director, after they get into a car accident and are arrested.\"\ntt0234137,4nGA9zBslBg,\"On their first date, Adam asks some standard \"\"getting to know you\"\" questions, while Kate goes for the jugular with questions about Adam's sexual history.\"\ntt0478197,cR7GV9Fdkuk,\"Leonard Cohen and U2 perform the song, \"\"Tower of Song.\"\"\"\ntt0234137,dZushQttfzY,\"Kate meets her next boyfriend, actor Joey Santino, at Earl's Porn-O-Rama.\"\ntt0234137,QU2qTjAFWKQ,\"When Kate takes out a video recorder, Adam busts out his best strip show.\"\ntt0478197,BHx0kYdl9Nw,\"Leonard Cohen reminisces about his experience living in the Chelsea Hotel in New York City, and Rufus Wainwright sings the song of the same name.\"\ntt0478197,tlhxBAhYnS8,Nick Cave covers 'I'm Your Man' and discusses the influence of hearing a Leonard Cohen record when growing up in Australia.\ntt0478197,JQAyLEhEoQw,\"The Leonard Cohen song \"\"Suzanne\"\" is sung by Nick Cave, Julie Christensen, and Perla Batalla.\"\ntt0478197,QTHImytcib0,\"Rufus Wainwright and his sister Martha sing the classic Leonard Cohen song, \"\"Hallelujah.\"\"\"\ntt0478197,eqQtfjs7YGg,\"Rufus Wainwright recalls the first time he met Leonard Cohen, and sings the song \"\"Everybody Knows.\"\"\"\ntt0202677,4xBY09_9H6g,Longbaugh and Parker get into a shootout with Sarno and his henchmen over the ransom money.\ntt0202677,5XWG3eNY298,\"Sarno interrogates Jeffers and Obecks on how they lost Robin, and then threatens them to do their job or be \"\"adjudicated\"\".\"\ntt0202677,AV5hAxICHsc,\"As Longbaugh drags Parker to safety, he's ambushed by Sarno and shot in the legs.\"\ntt0202677,tteCp4cbON4,\"Parker and Longbaugh try to kidnap Robin, a very pregnant woman\"\ntt0202677,NdDOmuWz92I,Parker and Longbaugh sit in separate interviews to determine if they are viable candidates for sperm donation.\ntt0202677,ZIjuiq25Lzk,\"Longbaugh snipes the local Mexican police, as well as Jeffers and Obecks, in order to stop them from taking back Robin.\"\ntt0202677,90li7tw4CCM,Parker and Longbaugh beat the crap out of a pair of obnoxious hecklers.\ntt0202677,5rKn9BNhQ0Y,\"Parker and Longbaugh shoot their way into a whorehouse to rescue Robin, who is the midst of a Caesarean section.\"\ntt0202677,AGCDh4gBj8U,\"When Mr. Parker has doubts about the kidnapping, Mr. Longbaugh tests his loyalty by sending him into a near-ambush.\"\ntt0040897,RAapNGRfaBI,Curtin and Howard laugh together over the fate of their gold.\ntt0040897,8_phNWJu9BY,\"A stranger lays out the gang's options, they can either kill him, run him off, or make him a partner.\"\ntt0040897,dkcsqI6hZz8,Dobbs is surrounded by banditos at a watering hole in the desert.\ntt0040897,TArcc_WduhE,Dobbs and Curtin get into a bar fight with the man who conned them into working hard labor for free.\ntt0040897,Wy3IoFyvWOs,\"Dobbs waits for Curtin to fall asleep so he can murder him, but he didn't plan on his pestering conscience.\"\ntt0040897,_pWx7N8gSoY,Dobbs wants to give up the search just when Howard's found the gold.\ntt0040897,rpdnpip1X4A,\"Dobbs and Curtin think they're stumbled upon the motherload, until Howard sets them straight.\"\ntt0040897,rEAbZTpV47E,\"Dobbs believes Curtin has stumbled onto his stash, when in reality a deadly gila monster has found it first.\"\ntt0040897,vKEWdfB8yo8,Dobbs makes a bet that Curtin will fall asleep before he does.\ntt0040897,4OcM23Hbs5U,Dobbs and company defend themselves against bandits posing as Federales.\ntt0117774,dcKdr89ngtI,Mr. Smith makes a visit to Matt Wolfson on the jai alai court to beat some information out of him.\ntt0117774,mW3KEJNsT2Y,Mr. Smith lays down the law in his classroom with a little physical authority.\ntt0117774,1L-4-XQYxrs,Principal Claude Rolle offers some teaching advice to Mr. Smith.\ntt0117774,Y6uj9ZZl2LI,\"Mr. Smith violently explains to Principal Rolle the lesson that somethings aren't about money, that somethings can't be taught.\"\ntt0117774,6E26ye_66xE,\"Mr. Smith unleashes his wrath, and adds one of the 'flunkies' to his demo reel.\"\ntt0117774,OCV4kaP_0-k,Mr. Smith teaches a lesson about books to Juan and his posse in the library.\ntt0117774,peRHtqEZMLk,Mr. Smith gets to know the students on his first day as a substitute teacher.\ntt0117774,b1s-ewwrpQY,Jonathan Shale interviews for a mercenary position with a highly flatulent Matt Wolfson.\ntt0117774,JMpTeDvOnLA,Things heat up between Jonathan and Jane when her leg cast begins to itch.\ntt0117774,VSiiYMgJ3h8,\"Mr. Smith tries to convince the other mercenaries to help him weed out the drugs, money, and corruption that has infested the high school.\"\ntt0120802,BFkcX4Qi11g,The red violin passes through the hands of several generations of gypsy musicians after it is stolen from the grave of Kaspar Weiss.\ntt0120802,VBgDKUVxAyI,\"Anna expresses concerns about her pregnancy to Nicolo, who presents her with a violin for their baby.\"\ntt0120802,-cvGAF7LbqE,\"Frederick Pope performs a new composition inspired by his lover, Victoria Byrd.\"\ntt0120802,YKce1fkBRrc,Young Kaspar Weiss demonstrates his prowess on the violin to Georges Poussin.\ntt0120802,5oe8grtUxI8,Kaspar Weiss succumbs to the pressure of auditioning for Prince Mansfield.\ntt0120802,a4DTqmln40c,Georges Poussin watches as Kaspar Weiss practices with a metronome.\ntt0120802,Ckem1kbmJdQ,Morritz switches out the red violin with a copy as Williams creates a distraction.\ntt0120802,BR2Bcczm9EI,Morritz gets impatient when a concierge neglects to inform him of an important delivery.\ntt0120802,mGpalRiltP8,Xiang shows her forbidden violin to her son Ming and plays him a tune.\ntt0120802,AUqVNqZdqRw,Victoria Byrd breaks the news to Frederick Pope that she must travel to Russia for research.\ntt0120802,cqZVc6GtV8A,Morritz makes a startling discovery when he arrives in Montreal to appraise a set of violins discovered in China.\ntt0120802,jW9D4lY0TUU,Morritz and Williams marvel over the exquisite craftsmanship of the red violin.\ntt0981072,Us7XgnZ5OHE,Colee gets into a bar fight with some local college girls.\ntt0981072,-scWJO2h1ak,\"After escaping a tornado with Colee, TK discovers that he is no longer impotent.\"\ntt0981072,ynZqnGTUHcM,\"With Cheaver passed out in the back seat, TK becomes distracted and nearly gets impaled in an accident.\"\ntt0981072,8TlVDn0j98E,TK finally tells everyone where he was wounded and why he was lying to his girlfriend.\ntt0981072,bluBJ-eeBBs,\"Colee, Cheaver, and TK share some war stories on their road trip.\"\ntt0981072,KXo_Enhm-xM,Colee tells the pastor the problems that TK and Cheaver are facing.\ntt0981072,gQRANiw4JLw,\"TK, Cheaver, and Colee discuss the war with some party guests.\"\ntt0981072,Bzd07cbr3y8,Pat tells her husband Cheaver that she wants a divorce.\ntt0981072,i0KnbzRHwaM,\"At a diner, Cheaver finds out that he can't get his old job back.\"\ntt0981072,GVuaTdn9TnY,\"After Cheaver's disappearance, Colee discovers his whereabouts in the bedroom with a married woman.\"\ntt0981072,LtkstS3KlIA,\"TK, Cheaver, and Colee have a few drinks in the motel.\"\ntt0070334,HKNo8yzXxyM,Marlowe is interrogated by Detective Farmer regarding the disappearance of Terry Lennox.\ntt0070334,r6dLxmPng8o,Marlowe tracks Terry Lennox down in Mexico and shoots him dead.\ntt0981072,tM4qhFW0FPA,\"Cheaver, TK, and Colee take a ride with a Hummer car salesman.\"\ntt0070334,ObAOGLArxGA,Marlowe locates Wade and frees him from Dr. Verringer's clinic.\ntt0070334,CwBH6g7UEI4,Dr. Verringer pays a visit to Roger Wade during a party to pick up his check.\ntt0070334,c3zRfKmcqv8,Marlowe looks for Roger Wade at the clinic run by Dr. Verringer.\ntt0070334,A6zqLx8tii4,Marty insists on everyone taking off their clothes as an intimidation technique to frighten Marlowe.\ntt0070334,P9fOKOsEX8A,A guard does his best impression of actor Walter Brennan for Harry who is nonplussed.\ntt0070334,7t7gG3XVqW0,Marty smashes a glass bottle into his girlfriend's face to scare Marlowe.\ntt0070334,847dUNGFwsM,Roger Wade drifts off into the ocean as Marlowe interrogates Eileen.\ntt0165854,2G-BNvZvz8I,Terry Valentine waxes poetic on the experience of the sixties to his much younger girlfriend Adhara.\ntt0070334,CU0lA1M1_3I,Marlowe tries to chase down Eileen through the streets of Los Angeles.\ntt0165854,T7uncpUQ4GE,\"Arriving at a party in the Hollywood Hills, Wilson mistakes the valet attendants for body guards, only to be corrected by Eduardo Roel.\"\ntt0165854,0UrClwjpNA8,\"Before killing Terry Valentine down on the beach, Wilson insists on hearing about the death of his daughter Jenny.\"\ntt0165854,E9yuGEux_OI,\"After getting roughed up by some thugs in a warehouse, Wilson lays down his own wrath of vengeance.\"\ntt0165854,qPbOVPtdaZs,Wilson and Eduardo Roel flee Terry Valentine's house through the Hollywood Hills with Jim Avery in hot pursuit.\ntt0165854,5hete-GzD9I,\"The record mogul Terry Valentine is introduced at his Hollywood Hills home, as well as his beautiful girlfriend Adhara who takes a swim.\"\ntt0165854,tJLdaKUBGzo,\"Returning to London, Wilson recalls his trip to Los Angeles, before drifting off into a memory of his younger days in the 1960s.\"\ntt0165854,VKcpoyC6RMA,\"Wilson attempts to explain who he is to the Head DEA Agent, but the conversation is lost in translation.\"\ntt0165854,euvUARojiiI,\"Wilson eyes Terry Valentine at a party, and imagines the possibilities of shooting him dead.\"\ntt0165854,S76IuL89zVY,\"While scoping out Wilson and Elaine on the set of a television show, Stacy the Hitman makes some wise cracks about shows he'd like to see on the air.\"\ntt0165854,sPgl1DyIn3U,\"When the bodyguard Gordon comes to toss Wilson out of Terry Valentine's party, Wilson tosses him over the patio ledge.\"\ntt0097613,_2EQFo-vIH0,Christine refuses advances from Nick and mocks his taste in wine.\ntt0097613,Vtpo8d2mME0,\"Nick struggles to capture the January Man, who puts up a fight all the way down the staircase.\"\ntt0097613,TsGOIi6JI1c,\"Bernadette enters the victim's apartment as a decoy, but Nick is slow to come to her rescue.\"\ntt0097613,v5qwMeiEF0M,\"Nick and Bernadette find the pattern in the serial killer's victims, to the tune of \"\"Calendar Girl.\"\"\"\ntt0097613,vTy2bx3jmrs,\"Nick and Christine try to have a civil conversation over dinner, but their past keeps getting in the way.\"\ntt0097613,lVMviKEztGw,\"Nick tells Christine that he doesn't love her, and then promises to cook dinner for Bernadette.\"\ntt0097613,01ovMSvDohw,Nick follows Bernadette onto a skating rink and makes a fool of himself.\ntt0097613,BZVmJdnVVBw,\"Nick questions Bernadette about her friend, but before long things get personal.\"\ntt0097613,E_UyAj2V4pI,\"Nick discovers the serial killer's pattern for picking dates to kill, but Alcoa is fed up with his quirky ways.\"\ntt0097613,AridlIyM9ak,\"Nick prepares dinner for ex-girlfriend Christine, but he's clearly nervous when she walks in the door.\"\ntt0097613,s9IqypZYH6A,Alcoa refuses to work with Starkey until Mayor Flynn convinces him otherwise.\ntt1594562,r1NHFfwmJZQ,Luke and Claire kill time during the last night that the hotel is open by searching for ghosts.\ntt1594562,DLyLE2LUpOo,Claire finds a surprise in Room 353 where the Old Man is staying.\ntt1594562,yUXdDmn9wP4,Claire and Luke try to conjure up the spirit of Madeline O'Malley down in the basement.\ntt1594562,JIfu8g9EUzo,Claire can't hold back her enthusiasm when she brings hotel guest Leanne Rease-Jones a set of towels.\ntt1594562,HFbgT-GSYhk,\"After a few beers, Luke reveals his attraction to Claire.\"\ntt1594562,g_tQ__pEoPs,\"Claire trips down the stairs into the basement, and becomes trapped with the ghost of Madeline O'Malley\"\ntt1594562,RxogsPx7JwQ,Claire tries to fall asleep but is greeted by a strange presence in bed.\ntt1594562,mHA7T9yOI3A,Claire freaks out when the piano starts to play by itself.\ntt1594562,LWRuMnDhCy4,Claire's mission to get coffee is stumped by a talkative Barista.\ntt1594562,7uO7VSK2XMo,Luke pranks Claire showing a video featuring evidence of a paranormal spirit lingering in the hotel.\ntt1038919,2gKXgAzFV8Q,Martin attempts to capture a Tasmaninan Tiger by setting traps throughout the forest.\ntt1038919,S0_2LuMWicY,\"Martin is led out to begin his hunt by Jack, a guide who believes that Martin has come to Tasmania to conduct research for a university.\"\ntt1594562,bvuDpEE2MQM,\"During the graveyard shift, Claire hears a mysterious banging.\"\ntt1038919,B8rq--5MbZ8,Martin takes a hard fall while pursuing an animal through the forest.\ntt1038919,1AZuIPGAQ_s,Martin goes to Jack's house looking for answers on the whereabouts of Lucy and her kids.\ntt1038919,_epn5foR_Ts,Martin accepts the assignment of hunting the rare Tasmanian Tiger on the condition that he is allowed to work alone.\ntt1038919,V-PNT54Z2ig,A captured Martin lures a rival hunter into a trap after he is forced to reveal the cave of the Tasmanian Tiger.\ntt1038919,aIekhk4NDA4,Martin awakes to find that the near-extinct Tasmanian Tiger is within his sights.\ntt1038919,7JICPsjLMis,Martin talks to Lucy about the disappearance of her husband.\ntt1038919,kGXKWSmXrEk,Martin finds himself unwelcome when he enters a bar in a remote Austrailian town.\ntt1392170,oISBveQNkzA,Katniss Everdeen enters the Games and tries her best to survive the initial bloodbath.\ntt1038919,-R2UHh9T0ck,Bike gives Martin a valuable clue in his search for the Tasmanian Tiger.\ntt1038919,gbPolHxofuo,Martin finds his rented lodging unsatisfactory when he is given a tour by two unsupervised children.\ntt1392170,gaoMc6MgvNA,Katniss Everdeen uses a hive of genetically engineered wasps to escape from the tree.\ntt1038919,TtWqejfxiVU,Martin and the family find themselves in a confrontation between environmentalists and angry loggers.\ntt1392170,mtuBqolFOVs,President Snow explains to Seneca Crane why the Hunger Games needs a winner.\ntt1392170,KAal6-tvckw,Katniss Everdeen promises Prim and Gale that she will try to win.\ntt1392170,WCbXSTBBueU,Peeta Mellark explains that he doesn't want to be changed by the Games.\ntt1392170,mgr2tLYYha4,Katniss and Peeta decide to eat poison berries instead of kill each other when the rule allowing two victors is revoked.\ntt1392170,Ed5xIjGdqb4,Katniss comforts a dying Rue when she's fatally speared.\ntt1392170,v98Rh9qzmPs,Katniss Everdeen volunteers as tribute in place of her little sister Primrose.\ntt1392170,G9VI6SExDms,\"Katniss Everdeen makes a big impression with the judges, for breaking the rules.\"\ntt1392170,7ikLl_nUM2A,\"Katniss takes care of Peeta in a cave, but decides to venture into danger to get him medicine.\"\ntt1392170,Z92aHy9-fkk,Haymitch Abernathy gives the tributes some life-saving advice.\ntt1615091,vVTASz4W2hA,\"When Sophie finds a phone number on a piece of artwork and calls Marshall, they have a surreal conversation and realize they could be neighbors.\"\ntt1615091,dzO8DzLZAuU,Sophie confesses her adultery to Jason.\ntt1392170,XrvB53IDIqM,\"Peeta Mellark tells the nation that he has always had a crush on Katniss Everdeen, but Katniss believes he is only playing the game.\"\ntt1615091,QCXgvx0vPZk,\"Sophie uses her old yellow t-shirt to perform an interpretive dance, to the confusion of Marshall.\"\ntt1615091,L4x1S9WYV9k,\"Sophie, a ballet instructor in the midst of a mid-life crisis, films herself dancing for YouTube.\"\ntt1615091,7nHXSTzcVX4,Sophie tells Jason to look up anything important because their internet access is being shut down for the next thirty days.\ntt1615091,m4MdMCS5EeE,Sophie feels like her life is standing still as those around her mature at an alarming rate.\ntt1615091,J4Mq0xr4gwU,Jason buys a used hair dryer from a chatty man named Joe.\ntt1615091,xcYzjbIVlX8,Jason and Sophie agree on a musical signal to find each other in the event of amnesia.\ntt1615091,8GtyX55FtTs,Paw-Paw writes a letter to future owners Jason and Sophie.\ntt1615091,anQHZRrZHYc,Sophie visits Marshall for a barbecue and spends the night.\ntt1615091,gMIvHGdpQpE,\"Confronted with impending responsibilities, Jason and Sophie discuss age, time, and the future.\"\ntt1615091,m0gUcNGsGYU,Jason has limited success on his first day soliciting door-to-door for a special program to plant more trees in Los Angeles.\ntt0106664,F63pia00pLM,A swarm of sparrows attack Stark and pick him to the bone.\ntt0106664,4SCJoMT1FCY,\"Thad stabs himself in a trance while his alter ego/nemesis Stark, does the same.\"\ntt0106664,x5bONeuC6BY,George Stark ascends from the caverns of Thad's conscience into Thad's nightmare.\ntt0106664,aAg3LPuwfJM,George Stark confronts and kills Mike.\ntt0106664,xoRXgE6j9po,George Stark attacks Miriam in her apartment.\ntt0106664,QhYydmeQ2Yw,A stranger approaches Thad with a theory that the author has a pseudonym for a series of pulpy novels and blackmails him to keep it a secret.\ntt0106664,wdrhl_I3-E8,Sheriff Pangborn visits the Beaumonts with New York police when Thad is suspected for murder.\ntt0106664,k0XGlpR6iLc,Thad's agent brings the police home due to suspicious threats.\ntt0106664,0p1fLn6_ExE,\"Thad's evil doppelganger, George Stark, attacks the photographer of the author's magazine article.\"\ntt0106664,jr8BKtgMJA0,\"Expecting to find a tumor, doctors instead discover the remaining exposed developments of a twin in Thad's brain.\"\ntt0106664,PioVmXuOv7c,Thad and Stark finally exchange fists when Thad's family is threatened.\ntt0115685,z-0rKpuvnT4,\"Albert comes to dinner with the Keeleys in drag, pretending to be Val's mother.\"\ntt0115685,TZjB7MW9Q-E,\"After Val's biological mother comes over, Val reveals the truth about his family.\"\ntt0115685,1_7FYr4JsF0,Armand frantically serves soup to prevent the Keeleys from seeing nude men designs on the soup bowls.\ntt0115685,LEQNosAHrD4,\"After discovering that Val's family isn't as normal as he thought, Senator Keeley tries to leave the party.\"\ntt0115685,Akr33uOKP8M,Armand gets very nervous when Albert and Senator Keeley discuss gays in the military.\ntt0115685,kO0kWTR_7tQ,Armand coaches Albert on how to act like a straight man.\ntt0115685,Q5o7eYFRp_U,\"When Albert's wig threatens to fall off, Barbara and the others suspiciously usher Albert to the bathroom.\"\ntt0115685,TmO1R-GqD50,Armand encourages Albert to think of John Wayne when he tries to walk like a man.\ntt0115685,rU8cUBCZn9c,Albert is so depressed that he refuses to dance in Armand's show.\ntt0115685,YlAmk5w3qZw,Albert overreacts when he learns that Val is getting married.\ntt0189584,s4KQbOrnRYs,Each man imagines himself to be a big shot as they nervously await for the arrival of their high-powered client.\ntt0189584,DwyqcEjMMI8,\"Phil tells Bob about the value of honesty and acknowledging, truthfully, one's personal shortcomings.\"\ntt0189584,9dnvta78Oc8,\"When Bob reveals that he spent his business meeting talking about religion instead of sales, Larry becomes furious.\"\ntt0189584,F8RkAzAX2-g,\"Larry argues with Bob over the significance of business, lust, and religion.\"\ntt0189584,Xr4ZDbix55Q,Phil talks about his dreams and thoughts on God.\ntt0189584,2S8FhT1CLOQ,Larry schools Bob on how to detect someone else's B.S.\ntt0189584,XbuSTq9TZSI,Phil tells Bob about his perspective on women.\ntt0200465,VtnxXJy01ag,\"Police arrive during the robbery, causing Terry Leather and the gang to panic.\"\ntt0200465,0WY4XiwS8Lc,Lew Vogel threatens murder if his demands aren't met by Terry Leather.\ntt0189584,b_W5rtfzadQ,\"Larry loses his temper when his attempts to find \"\"the Big Kahuna\"\" turn up empty.\"\ntt0200465,mTNkmMUcQfc,\"When the team has a surprise visitor or two, Guy Singer decides to take control.\"\ntt0200465,64Kac5hYLBM,Martine Love sneaks into the bank vault while the rest of the team is asleep.\ntt0200465,BcCzxUMcrVc,Martine Love talks to Terry Leather and his mates about the bank job.\ntt0200465,q14F8WFr7EY,A showdown between Terry Leather and Nick Barton ends with some surprising arrests.\ntt0200465,k3sfGEvPoHs,Terry Leather confronts Martine Love about some incriminating photographs.\ntt0200465,aMwqijj857s,Terry Leather introduces the group to Guy Singer and they get a thermic lance demonstration.\ntt0200465,nCLxHi2oZVM,Terry Leather and the crew infiltrate the bank vault and begin inspecting the safety deposit boxes.\ntt0200465,8G84xAalZiY,Dave Shilling gets picked up by Lew Vogel and his goons.\ntt0200465,eIvl2bRW9S8,Terry Leather deals with some thugs who have come to collect money.\ntt0042208,Mlv16s4DxwI,Angela cracks under pressure and admits to lying to the police for Emmerich.\ntt0042208,3SYMh5owQcA,Doc refuses to acknowledge that the cops are closing in as he watches Jeannie dance to the jukebox.\ntt0042208,p2fHtpp_umI,Commissioner Hardy illustrates the necessity of the police force to a group of reporters.\ntt0042208,2RA-7QUYrHA,Lt. Ditrich knows Cobby has the inside scoop on the jewel heist and gets it out of Cobby the only way he knows how.\ntt0042208,48kV7uKAzEU,\"Dix gets a call for robbery work and meets with Doc, who breaks down the plan.\"\ntt0042208,GllksI139DM,\"In transit to a safe house, Dix and Doc run into a suspicious policeman.\"\ntt0042208,-nboVp_nTkg,\"Alarms from nearby buildings go off, leading to a confrontation between Dix and a policeman.\"\ntt0042208,cUEc9ZF3G3M,\"After returning with the jewels, Emmerich and his private dick Brannom double cross Dix and Doc.\"\ntt0042208,EkRzpc98bwc,Emmerich explains to May that criminals are not all that different from regular people.\ntt0078767,SQGwcLUuQUs,Carolyn discovers the source of the house's evil.\ntt0078767,lJuxU-aVeT4,\"When the babysitter finds herself trapped in a closet, her cries for help fall on deaf ears.\"\ntt0042208,ewEreSjPyC4,Emmerich wakes Angela on the couch and convinces her to go to bed after a goodnight kiss.\ntt0078767,ptBGusJjkTU,\"George, by his own admission, is coming apart.\"\ntt0078767,C1zseVrJQLk,Aunt Helena is barely in the house for two minutes before she is overwhelmed by an evil prescience.\ntt0078767,3rrfqXl52tc,Greater despair ensues when Father Delaney can't talk to Kathy.\ntt0078767,9LpOzLU5k70,\"George stalks the bleeding halls of his house, axe in hand.\"\ntt0078767,adFRKm9ezw4,\"When Father Delaney comes to bless the house, he is greeted by a swarm of flies.\"\ntt0078767,2CM_ZbYvMDI,\"Kathy learns about \"\"Jody,\"\" an invisible friend with plans for Amy.\"\ntt0078767,DVAIrYCyB1w,Father Delany makes a passionate effort to stop the evil in Amityville.\ntt0078767,944Xo94Owx4,Nothing stands between George and a pile of wood.\ntt0078767,6l60PJOMu3U,A window seems to have a mind of its own when it crushes the hand of Kathy's son.\ntt0125659,WqyvGyBJbcQ,César meets a mysterious man who tries to convince him that he's living in a dream.\ntt0125659,IANjTUtZimk,\"César is shocked to find Nuria in his bed, claiming to be Sofía.\"\ntt0078767,pDEJr2Sqhxc,Kathy is startled by what she sees outside of Amy's window.\ntt0125659,GU0BYEZb-Xo,César has an oddly familiar sensation upon reuniting with Sofía.\ntt0125659,fgp77jbQkW0,César and Sofía take turns sketching each other but refrain from taking things further out of respect for Pelayo.\ntt0125659,vli6rJX8Xac,César tries to convince Pelayo that he is the victim of a strange conspiracy.\ntt0125659,w2T2xsIYH0I,Nuria takes César for a drive as her emotions spiral out of control.\ntt0125659,rJ9zBV97d5M,César must choose between continuing to live in a dream world or waking to a strange and uncertain future.\ntt0125659,3zW1STojfq4,César is driven mad as he becomes unable to differentiate between Sofía and Nuria.\ntt0125659,E6W4v8DYh4c,César is surprised to find Nuria waiting for him in his bedroom during his birthday party.\ntt0125659,r1UKhlSdV-M,Sofía visits César to remove his mask after surgery.\ntt0125659,iBptW_7wlwQ,César wakes to find the streets of Madrid completely devoid of people.\ntt0368909,QsveFtQaP7c,Ting takes out a guy who likes to fight with whatever is handy.\ntt0368909,MNBd97oTtq8,Ting runs from the gang that George has angered.\ntt0368909,Vjo0hn0kAvY,Ting is driven to intervene when the fighter Big Bear begins to beat up innocent people.\ntt0368909,Jd86VeZU89A,\"Ting runs through the city, leaping huge obstacles to escape the pursuing gang.\"\ntt0368909,GVjV1SKLJ9E,Ting stumbles into a fighting circle and lays his opponent out with a high knee.\ntt0368909,ZVHIsLK07ak,Ting and George attempt to get away from Don's cronies in three- wheeled taxis.\ntt0368909,wZAxWIJZmo4,\"Just when the gangsters think they've blown up Ting, he lands a flaming spin kick to their face.\"\ntt0368909,04tTXJeE8Gg,\"After escaping from Komtuan's men, Ting takes on Saming.\"\ntt0368909,oYDde0u4TT4,Saming and Ting have a vicious fight in the ring.\ntt0368909,hU0v5lzJzXo,Ting and Humlae rescue Ong-Bak from Komtuan.\ntt1598828,tp_djeJB9sQ,\"Stephanie finds herself on the business end of Ramirez and his fist, only to be saved at the last moment by the crack shooting of Morelli.\"\ntt1598828,Ic5tk6Afu0g,Jimmy Alpha reveals himself as the mastermind behind the heroin-running scheme.\ntt1598828,6bECCbRJ_UM,\"During an awkward family dinner, Grandma Mazur plays around with Stephanie's new gun and accidentally shoots it off.\"\ntt1598828,xhhfBsq7qao,\"When Stephanie tracks down Joe Morelli, a parole violator and her former flame, he uses his charm to his advantage.\"\ntt1598828,ykdrEYrEaZE,Stephanie uses her pepper spray to stop Ramirez from twisting Joe Morelli into a pretzel.\ntt1598828,xXTuhmtvXNg,\"When Morty Beyers returns to take his claim on the bounty for Joe Morelli, Stephanie stands her ground and ends up avoiding an explosive situation.\"\ntt1598828,DkIr_I_E1dE,Stephanie gets a lesson in marksmanship from Ranger.\ntt1598828,Q3gK7Oe5gbM,\"Joe Morelli fixes a wire onto Stephanie, while admiring her physical attributes.\"\ntt1598828,9UtRH9enIUE,Stephanie clotheslines her first escaping parolee with surprising force.\ntt1598828,TLNhcMerK-U,Stephanie gets an account of what happened with Morelli from a colorful eyewitness named John Cho.\ntt0035140,dBal-Rb366c,Charlotte comforts Tina with words of wisdom and love.\ntt1598828,XI12czsGYRc,Morelli catches Stephanie in a compromising postiion in the shower.\ntt0035140,nDKhoXEpIq8,\"Returning home after a six month absence, a newly confident Charlotte refuses to let her mother tell her what to do.\"\ntt0035140,E90s7ZR3HNw,\"Near the end of her stay at the sanatorium, Dr. Jaquith presents Charlotte with an inspirational Walt Whitman quote.\"\ntt0035140,aWLRULhIyCE,\"Mrs. Vale suddenly dies after a quarrel, leaving Charlotte feeling guilty and responsible.\"\ntt0035140,iYetsX9JdIU,Charlotte succumbs to a nervous breakdown after relentless teasing.\ntt0035140,vf6PZfksmfg,\"After a chance encounter at a party, Charlotte meets Jerry at the train station to discuss their rekindled feelings for each other.\"\ntt0035140,D1hNiK3YZ2A,Jerry and Charlotte start their tour of Rio together in this iconic scene.\ntt0035140,DesiCKdiCDo,\"After a car crash leaves them stranded in Rio, Charlotte and Jerry grow close while they wait to be rescued.\"\ntt0035140,d9K2p6NtV40,\"Jerry professes his love for Charlotte, and they lament the reality that they cannot be together.\"\ntt0035140,f08pzusjWTQ,\"Jerry and Charlotte discuss what's expected of them in their new arrangement, and Charlotte recites the most iconic line in the film.\"\ntt0395972,BBdShysGs4Y,\"In court, Josey reveals that she was raped when interrogated about her past \"\"relationship\"\" with her teacher.\"\ntt0395972,eSeYw5yaU9A,Bill argues for a class action in order to protect all the women of the Pearson mine.\ntt0395972,YJLeJG_bG1M,\"Bill puts Bobby on the stand, and uses a hockey metaphor to draw out the truth.\"\ntt0395972,9oRspg2ktcI,Glory advises Josey to grow a thick skin in order to keep her job when Bobby Sharp sexually harasses her.\ntt0395972,ry88dGpJKZk,\"When Josey is heckled by the men in the crowd, her father Hank steps in to stand up for her.\"\ntt0395972,yPHYjeHk1YM,\"Josey goes into her meeting with Mr. Pearson confident that he will see the injustice in her experience, but she soon finds that his only interest is in silencing her.\"\ntt0395972,fGiaJDWSWKE,\"Bobby's wife makes a scene at the hockey game, humiliating Josey with a false accusation.\"\ntt0395972,XLk_91MKjgs,\"Bobby assaults Josey in the powder room, and denies it when she exposes him in the cafeteria.\"\ntt0031725,IhTgiNhfF7k,\"An inebriated Ninotchka believes she should be punished for being so happy, and then abandons that notion in favor of enjoying herself.\"\ntt0395972,pjmRcGHqKZ0,A few of the mine workers terrorize Sherry while she's in the port-a-potty during the latest in a string of harassment incidents.\ntt0395972,0k8XW2V2dCg,\"When Sherry is harassed by a fellow miner, Josey reports the act of misconduct to her boss. But he only chastises her.\"\ntt0031725,2A60QcsJtlE,Ninotchka is put off by Leon's blatant efforts to flirt with her when all she wants are directions to the Eiffel Tower.\ntt0031725,qFOp7gSiC0I,Leon is fascinated by Ninotchka and her unconventional ideals.\ntt0031725,aJoVRUNmqIY,Leon uses all of his charms to kiss the stone cold Ninotchka.\ntt0031725,JIHGn-BwZMM,\"Ninotchka finally surrenders to her feelings for Leon, but has trouble saying that she loves him out loud.\"\ntt0031725,dzkjnPSbxJw,Ninotchka arrives on the train and makes a strict impression on her comrades.\ntt0031725,BNxai8Y9IXg,\"Ninotchka's roommate tells her to be more careful, revealing that the slip she brought back from Paris sparked a political debate in the laundry room.\"\ntt0031725,AH9_BGpsNCo,\"Ninotchka invites the Russian diplomats over for a dinner party, where they criticize Russia and reminisce about Paris.\"\ntt0031725,jU6nB-uJh68,\"Leon is intent upon making Ninotchka laugh, despite the fact that she is unamused by any of his jokes.\"\ntt0031725,bXzp-98u468,Leon is devastated to hear that chasing a girl is not a valid reason to obtain a Russian Visa.\ntt0247786,jF78Fs72X4Q,Tim welcomes his friends to his isolated Scottish mansion.\ntt0247786,Rn2__xGApzQ,\"Emma suspects Tim to be the killer, only to come face-to-face with the actual murderer moments later.\"\ntt0247786,xGGRJg-EzoI,\"While trying to restore electricity to the mansion, Pete and Damien are caught unaware by the killer.\"\ntt0247786,Cr-WWckkejQ,Laura sacrifices herself so that Pete might live.\ntt0247786,h3QK9udRbWg,Laura acts as bait in a plan that she and Pete devise to defeat Damien and the demon that possesses him.\ntt0247786,utJWIjtBBvo,\"Left alone, Laura takes matters into her own hands.\"\ntt0247786,9_ouUNFC5AI,Jo complains that Tom never buys her presents.\ntt0247786,371S-YWcKFU,Tom makes a haunting discovery in the library.\ntt0247786,phWjHc6hsRo,Jo trades barbs with Damien while waiting for the bathroom.\ntt0247786,vqgb0X4uuEw,The girls experience strange happenings and Jo is the demon's first victim.\ntt0309912,AQaOCIrb9Fs,John helps Nicholas rescue Smike through diversion.\ntt0247786,X_KqKO48vwY,\"Damien, possessed by the demon, attacks Andy and the wounded Lucy.\"\ntt0309912,bXtvpRR4VbA,Vincent recruits Nicholas and Smike into his theatre troop.\ntt0309912,e0d5svC0xQU,Fanny's plan backfires when she fakes an emergency to gain the sympathies of Nicholas.\ntt0309912,4ot1Y-WYGCU,Nicholas proposes marriage to Madeline.\ntt0309912,ky1semsHhAY,Nicholas tells Ralph off at the death of Madeline's father.\ntt0309912,DX8o_ql6f-E,\"Ralph provides a cold-hearted welcome to the Nicklebys, despite the loss of his brother.\"\ntt0309912,GBDUy8au-_E,Smike reveals to Nicholas the reason for his melancholy.\ntt0309912,d_t77ai5GEk,Nicholas bravely saves Smike from a beating and gives one to Squeers.\ntt0309912,_zxlffOr1GA,The Cheeryble's hire Nicholas at double his previous salary.\ntt0309912,NgSS_lMllOw,Nicholas and the students endure daily horrors at the hands of the Squeers.\ntt0309912,hGuXSd2s0jI,Nicholas and Smike perform in public for the first time.\ntt0309912,1VzqryDpBfM,\"Mrs. Squeers intends to bring Nickleby's pride down, while Fanny has other ideas.\"\ntt0116743,EgsFR3Y5XB4,Jai pushes Maya away because he is worried of becoming too reliant on her to sustain the quality of his work.\ntt0116743,QCrKGjDt00c,Rasa Devi takes Maya in at her school for the Kama Sutra after she is chased out of town for sleeping with the king on his wedding night.\ntt0116743,Z-Hyq9A4vXo,\"Raj commissions Jai to sculpt his new courtesan, Maya, not knowing the two are former lovers.\"\ntt0116743,mvWdOSJ7l2c,Jai scares Maya off when he takes the liberty of touching her as a reference for his sculpture.\ntt0116743,v14aCycvoYI,Maya refuses Raj because her heart is with Jai.\ntt0116743,qDAFxENuoCU,\"Maya tries to make a deal with Raj Singh that she will give herself to him completely if he frees Kumar, her true love.\"\ntt0116743,t9do_YtNsnM,\"Maya, the king's new courtesan, takes the opportunity to taunt Queen Tara.\"\ntt0116743,3pdDB7-UcKM,\"Raj Singh sentences Kumar to death when he discovers he's been having an affair with Maya, his favorite concubine.\"\ntt0116743,gEw3FHiTb1Y,\"Jai comes to Maya asking forgiveness for pushing her away. At first, she refuses but eventually she gives in to love.\"\ntt0116743,XFoGxUA8btQ,King Raj Singh challenges Kumar to a fight after being rejected by Maya.\ntt0116743,BgWOqRD9RPs,A young Maya and Tara practice the dance of enticement into their young adult years.\ntt0116743,EgIkHYVwNrM,Rasa Devi schools her courtesans on the Kama Sutra's sex positions.\ntt1175491,0Z9Pl7oF9dI,\"President George W. Bush and his cabinet discuss the possible invasions of Iraq and Iran, and how best to market the campaign to the American people.\"\ntt1175491,EWvPNbC9KfQ,Political newcomer George W. Bush is coached on his political opinions by master polster Karl Rove.\ntt1175491,cYlCe0SYmWI,George W. Bush seeks guidance from Rev. Earle Hudd and is born again.\ntt1175491,yDgZEL9-ITE,\"While visiting Crawford Ranch, the President George W. Bush and his advisors become so intent on the planning of a post-war Iraq that they find themselves lost on the trail.\"\ntt1175491,YDuDd4tmZps,\"Having gotten himself into another potentially embarrassing situation, a young George W. Bush is called to answer to his father, George H.W. Bush.\"\ntt1175491,_33snCsG6nY,\"Arriving home drunk from celebrating his admission into the Harvard School of Business, George W. Bush has a confrontation with his father George H.W. Bush and mother Barbara.\"\ntt1175491,VmwM9EXyczw,Dick Cheney explains to the President and his cabinet where he sees American interests in the future.\ntt1175491,WriOEr0A1tQ,\"At a friend's barbeque George W. Bush first meets his future wife Laura Bush, née Welch.\"\ntt1175491,8Ad8rMLFcRo,\"During a White House press conference, President George W. Bush is stumped when asked about the mistakes and lessons he has learned during his time in office.\"\ntt1855401,DAlyvQ1hNag,Tim and Eric fight after Tim sleeps with Katie\ntt1855401,vs6V8EILM0M,Eric uses the power of Shrim to cure his sickness.\ntt1855401,_nEWjcGHLJk,\"Tim and Eric explain Dobis P.R., what they do, and who they are.\"\ntt1855401,TmNPJTt2ZsE,\"Eric Wareheim introduces himself to Katie, the love of his life.\"\ntt1855401,LLrfSeyGCls,Taquito attempts to remove the wolf that terrorizes the mall.\ntt1855401,fhsngAtICiY,Tim and Eric stand up to the evil Schlaaang Corporation.\ntt1855401,V5U2yhrsXv8,Dobis has a meet and greet with Reggie's Used Toilet Paper Discount Warehouse.\ntt1855401,VB9pptEqFl4,\"Dobis PR is introduced to Allen Bishopman, owner of E-Z Swords.\"\ntt1855401,lu3fmlUJQsE,Tim and Eric see a commercial for the Swallow Valley Mall.\ntt1855401,2G4Vfuk1dJM,Tim and Eric view an infomercial for Shrim Alternative Healing Center.\ntt1456635,bFWMtZmjwR4,\"Doug Glatt doesn't take kindly to a gay slur, which brings out his inner goon.\"\ntt1855401,T0StyKPJrNY,Chef Goldblum presents the Schlaaang Super Seat for movie watching.\ntt1456635,8QLB_CGDDPY,\"Doug Glatt takes on legendary enforcer, Ross Rhea, on the ice.\"\ntt1456635,ViXH47OcqYA,Doug Glatt comes on Ryan's show to talk hockey and corn dogs.\ntt1456635,BGWe0FvWW54,\"After helping the team win the game, Doug Glatt gets promoted and Xavier LaFlamme is scolded.\"\ntt1456635,bVAiU6Jp4FI,Doug Glatt sacrifices his body to protect the goal in a key game.\ntt1456635,PFajeb2k24U,Doug's parents are not pleased with his career choice to be a thug.\ntt1456635,WJOL4xoamoQ,Gord tries to rally the team for the game.\ntt1456635,ekwnp5L8shM,Doug Glatt meets the strange personalities on his the Highlander team.\ntt1456635,TMspI78Dptg,\"During a game, Doug Glatt tries to get revenge for a big hit on Xavier LaFlamme.\"\ntt1456635,tgiPVB4iLMQ,Doug Glatt meets Ross Rhea and has an eye-opening conversation.\ntt1456635,cKQf7jAt6xM,Doug Glatt asks Eva out on a date.\ntt1456635,EmYyxwO2IJI,Doug Glatt is insulted by his new team and he teaches them some respect.\ntt0115798,FVoOLRhnkYE,\"To avoid pulling a hammy\"\" in a game with Steven's pals, the Cable Guy limbers up.\"\ntt0115798,TVtvBoELA-g,The Cable Guy antagonizes Steven at the county jail.\ntt0115798,5ZjdYG61Wpc,A rude Cable Guy shows up late to install Steven's cable television.\ntt0115798,65yzqqmXs-Q,Steven wakes from a brutal nightmare about the Cable Guy to a real phone call from him.\ntt0115798,k1WKpdhcJSo,The Cable Guy leads Steven's family in a naughty parlor game.\ntt0115798,DtgKqQkglyY,Steven asks the Cable Guy for free cable.\ntt0115798,TdPu6sQ9l4g,\"The Cable Guy takes Steven to Medieval Times, an elaborate dinner theater.\"\ntt0114388,BLz2rixwPpA,\"Marianne falls and twists her ankle, but is rescued by the chivalrous John Willoughby.\"\ntt0115798,zH8ZeRDlyb4,\"In a brawl with Steven, the Cable Guy goofs on Waterworld, and momentarily loses his lisp.\"\ntt0114388,clTG6sYtJig,Marianne begins to enjoy Colonel Brandon's company.\ntt0114388,WofqydeWMJI,\"John Willoughby carries the injured Marianne inside, impressing the whole Dashwood clan with his \"\"decorum and honor.\"\"\"\ntt0114388,nEJKLKKO0uY,\"Marianne spots and follows Willoughby, who is not as happy to see her as she had hoped. To make matters worse, she receives a scowl from his secret fiance.\"\ntt0114388,IiMacKBYPZg,\"The mystery of Willoughby's dubious behavior is solved, leaving Marianne heartbroken.\"\ntt0114388,IIGAL77OuM0,\"Edward draws Margaret out from under the table, much to Elinor's satisfaction.\"\ntt0114388,t_NZNgm66xI,Edward comes by the Dashwood cottage to profess his love to an unsuspecting Elinor.\ntt0114388,9lORsaux9Lo,Edward and Elinor spend some time alone getting to know each other.\ntt1233227,Z7VT-r3RB-4,William Easton must decide whether he will let Allen or Addy remain alive.\ntt1233227,lTWY11J9Z3o,Mark Hoffman waits anxiously while Sachi works with a voice recognition program to determine Seth Baxter's killer.\ntt1233227,al5NvjTtyTI,William Easton helps Debbie through a maze full of dangerous paths.\ntt1233227,n0Fz-ACCMHk,Simone speaks with Mark Hoffman about her ordeal.\ntt1233227,7pk5PLxQXJI,\"John visits William Easton to get a health insurance decision overturned, but William refuses to help.\"\ntt1233227,xwMMpJ9EWmE,William Easton must hold his breath in order to outlive his janitor.\ntt1233227,OEw-cBg0lJY,Simone and Eddie fight to remove flesh from their bodies in order to save their own lives.\ntt1233227,3agyeKATELQ,William Easton finds that six of his employees are strapped to a carousel and he has to decide who lives and who dies.\ntt1233227,stoxd02ubG4,John questions Mark Hoffman about his treatment of their victims.\ntt0120744,R7f2TkxM_rk,The Three Musketeers execute their plan to replace King Louis with Phillipe.\ntt0120744,6cjNvLAvIFs,\"D'Artagnan begs Louis to have mercy on Phillipe, but he orders him back to the mask since Phillipe says that is what he despises most.\"\ntt0120744,h8c0Q6aqZG8,The King's advisors tell an uninterested King Louis about starving Parisians and riots in the streets.\ntt0120744,ZqZZftydH0I,\"Christine reveals to Louis that she still loves Raoul, and laments that she will burn in hell for her sin.\"\ntt0120744,OL0I-Tf0QRU,\"Aramis, having predicted that Porthos would try to kill himself, sawed the beam causing Porthos's hanging to fail.\"\ntt0120744,WrQdlQo-E5Q,Aramis prompts Phillipe to consider his plan to have him switch places with Louis.\ntt0120744,In9QzIAgiFE,\"After removing Louis as King, Phillippe takes over the crown.\"\ntt0120744,Tv08VahBEBg,\"Louis stabs D'Artagnan, who then delivers his dying words to Phillipe.\"\ntt0120744,qyj1tT-vqSQ,Philippe is freed from the iron mask and touches his face again for the first time.\ntt0120744,hc51ExPQJcQ,The three musketeers and Phillipe charge King Louis and his soldiers.\ntt0120744,-tXr3ask1fo,\"King Louis has a nervous breakdown in the ballroom when he sees iron masks hiding in the crowd. Later, he is captured.\"\ntt0120744,hsIdl6x2Lck,\"Athos threatens Louis which leads D'Artagnan to threaten Phillipe, who is recaptured.\"\ntt0985699,7k9bFzgXeXE,\"When Major Remer comes to arrest Goebbels, a phone call from Hitler turns the tide.\"\ntt0985699,kFa1DI_4vEs,\"After the liquor bomb fails to detonate, Tresckow must retrieve the evidence from Colonel Brandt.\"\ntt0985699,AiqgMdj316M,\"The fates of Stauffenberg and the others are explained -- executed, all of them.\"\ntt0985699,Fyd8tAhnKig,\"Stauffenberg and his co-conspirators are captured, and Fromm sentences them to death.\"\ntt0985699,mt0zR2uOAB8,\"Stauffenberg plants the bomb in the same room as Hitler, and exits in time to watch it explode.\"\ntt0985699,1OUMXpkRHNA,Beck talks the others through the plot to kill Hitler.\ntt0985699,TMvi9NJlv_s,\"General Tresckow attempts to convince Colonel Stauffenberg to join him and the others, in order to overthrow Hitler.\"\ntt0985699,G2SpqqxJiig,\"A debate rages as to whether Hitler is really dead, and the operation moves forward as planned.\"\ntt0985699,CAYHD5mAsfo,\"Allied planes strafe the German convoy, injuring Stauffenberg.\"\ntt0985699,uMug9lL1Sgg,\"Fromm reprimands Stauffenberg for going over his head, then forces him to salute Hitler.\"\ntt0100135,eh4jLrZ2IK4,Carl and James offer a genteel response to the local cops' abuse: the golf clap.\ntt0100135,tjJPFWAtG4I,\"When Carl and James discover the corpse of the man they shot, accusations fly.\"\ntt0100135,w1iNrckWufI,\"Confronted by the cops over his hostage, Louis flips out.\"\ntt0100135,7GDnbK8lTYg,\"As James protests, Carl uses his air rifle on an abusive neighbor.\"\ntt0100135,fNeCsZY7I9o,\"Carl, James and Louis take on the bad guys while trying to rescue Susan.\"\ntt0100135,cpdt1EljZp0,Carl and James enjoy themselves on the job.\ntt0100135,BNWF_QsuetA,Louis teaches Carl a valuable life lesson.\ntt0100135,kM781iUqdrI,\"Cornered by cops, Carl and James disguise the body they found.\"\ntt0100135,vMyTIoLhoZY,Carl and James pull a locker-room prank on two rival garbage men.\ntt0100135,DsGsRazwHNc,Carl and Susan find the bike cops in a compromising position.\ntt0100135,uVXQWXpXmvc,\"Carl, James and their team mess with Potterdam before dumping him in his own waste.\"\ntt0100135,M7Bao8cJqWw,Louis panics and takes the pizza man hostage.\ntt0489270,RqAmUMayBk4,Jeff must decide if he can incinerate his son's remaining toys in order to move on from his death.\ntt0489270,xZw3A072F30,Judge Halden advises Jeff that vengeance will not take his pain away.\ntt0489270,LGRbJ610dkc,Kerry must reach into a beaker of acid to retrieve a key that will unlock her trap.\ntt0489270,mwa7-cCuwCI,Lynn performs surgery on John in order to release excess pressure in his brain.\ntt0489270,-UuYTHwZbOQ,Jeff has to decide to forgive Tim for accidentally killing his son or let him die a very painful death.\ntt0489270,R5YZoDFeQlM,Jigsaw recruits Amanda to be his assistant.\ntt0489270,ACdEiMqOVvs,\"Troy wakes up in one of Jigsaw's traps where, in order to survive, he must rip free of the chains attached to his body.\"\ntt0489270,3UjujuY8fbU,Jeff wakes up to find himself in a wooden box with a tape recorder explaining his tasks.\ntt1095442,PNRScegrA_E,Solo and William share their last moment in silence.\ntt1095442,KWWQP82Gqt8,Solo takes William to one of Roc's jobs.\ntt1095442,nIAzIbEBdeM,William tells Solo to get out of his life.\ntt1095442,pVzqfF-qwlY,Solo reunites with his wife Quiera after his baby is born.\ntt1095442,fqteEi-ypuQ,Solo confronts Mamadou about picking up William.\ntt1095442,b3uEOvtuMyc,Solo takes William to a bar.\ntt1095442,W91ITNEiEF4,Solo argues with his wife Quiera about interviewing to be a flight attendant.\ntt1095442,VYZmHG6_7Rg,William offers to pay Solo one thousand dollars to drive him to Blowing Rock.\ntt1095442,bMemNwITgjA,Solo asks William if he can stay at his motel room.\ntt1095442,VFPAH3uEo_A,William tells Solo that he rode motorcycles.\ntt1095442,I3GuNWUhXDY,Solo teases Alex about her cell phone.\ntt0077597,ZreKuv4qWY8,\"Mr. Friendly is amused by the idea of competition from the old gas station, and June teaches April how to pump gas.\"\ntt1095442,RiOhh4AG0rc,William quizzes Solo for his flight attendant interview.\ntt0077597,I2ci4vKm_cI,The gang concocts an elaborate scheme to siphon gas from the other station by creating a series of diversions.\ntt0077597,zTV295EGtOk,The gas station turns into a disco party with Betty and Butch at the center of attention.\ntt0077597,AHV2k4t593E,\"Motorcycle gang The Vultures vandalize the gas station, and Betty ends up on the receiving end of an oil can.\"\ntt0077597,4VFhBMwArqs,\"Peewee and Jane go for a walk to the garage, where he puts the moves on her in the tow truck.\"\ntt0077597,gif34AkAFIg,\"When Mr. Friendly mocks her attempt to compete with his gas station, June rallies the troops to save Uncle Joe's station.\"\ntt0077597,IQQDJahY-Eg,\"After an oil fight breaks out between The Vultures and her mechanics, June decides to recruit the motorcycle gang to work as her tow truck team.\"\ntt0077597,_INsYrEpEFo,\"June and the gang pose as a sheik's entourage to gain access to the oil company's headquarters, where Mr. Smin insists that they're not making record profits.\"\ntt0077597,QoSE9w3o068,January and the other employees of Joe's Super Duper gas station discover the power of sweet talk over the loudspeaker to attract new customers.\ntt0077597,JLWaJTCL_V4,The first customer at Joe's Super Duper gas station enjoys the attention of the all-female staff.\ntt0077597,KvVR17L6j0E,\"Recent high school graduate June sings about her loneliness while filling in for her uncle at his gas station, which is losing business to the new station across the street.\"\ntt0492389,3FG9eGmAPeY,Dan gets tossed around in a porta potty by a bear.\ntt0492389,8xBrQp4oZs0,Dan updates Mr. Lyman about phase one of the building project. Mr. Lyman surprises Dan by adding onto the project.\ntt0492389,sdea5Iq5D_U,Dan is awakened by a noisy crow at night.\ntt0492389,EMta7CcNgGs,Tammy wakes up to her husband creating a booby trap for the animals.\ntt0492389,_ZHytX1097U,Dan gets blasted by skunks while trapped in his car. He tries to get rid of the smell by taking a tomato bath.\ntt0492389,o8A2gIt799I,The animals attack those who carelessly pollute their home.\ntt0492389,tVBVeXfbo6k,Dan finally has his opportunity to kill the raccoon but decides not to. The Raccoon on the other hand quickly jumps at the opportunity to attack Dan.\ntt0492389,jmFpZsBB53s,Tyler believes his dad when he says a raccoon is after him. He shares history about settlers who tried to build on the land.\ntt0492389,KcLVm5KkTjk,Dan drinks the sleepy bye tea his wife brings home for him. He falls into a deep sleep of bad dreams.\ntt0492389,S3dCv5aTB2c,The raccoon and his friends create chaos for Dan in the morning.\ntt0492389,lRzsGDSofxo,\"Dan plays chicken with the Raccoon, but the Raccoon wins with the help of his friends.\"\ntt0097257,MmKjw9UGi78,\"Valerie leaves Mac, Wiploc, and Zeebo in the house to make music and watch television.\"\ntt0097257,tp-eANZcnVQ,Zeebo gets into a dance-off with a man who tries to steal his dance partner Tanya.\ntt0097257,YhYn-b84MvE,Wiploc and Zeebo receive a tantalizing signal from Earth and accidentally crash their ship in a swimming pool.\ntt0097257,_3wnaxan4qw,Mac comforts Valerie after Ted breaks off their engagement.\ntt0097257,yE0aTqijR3o,\"Valerie tries to find something for Zeebo, Mac, and Wiploc to eat for lunch.\"\ntt0097257,S9Wi3A3skb0,Candy performs a musical salute to the joys of being blonde.\ntt0097257,8DYT3ysI2UY,\"Valerie sets up a surprise romantic evening to seduce Ted, but he shows up with another woman.\"\ntt0097257,wavVceonMJg,\"Valerie takes Mac, Wiploc, and Zeebo to see Candy at her salon.\"\ntt0097257,emda_fIsz2o,Candy helps Valerie solve her relationship problems by giving her a makeover.\ntt0059124,JEjsNsrZuHI,\"Dr. Goldfoot sends Diane, one of his robots, to seduce millionaire bachelor Todd.\"\ntt0097257,BUKTDsI9Rbc,\"Mac, Wiploc, and Zeebo discover the appeal of Finland while Valerie tries to plan for Ted's return.\"\ntt0059124,Q1f_3XxcqKc,The chase finally ends when Craig and Todd lead Dr. Goldfoot and Igor off a cliff.\ntt0059124,mCu3uKNGuZw,\"Dr. Goldfoot and Igor follow Craig and Todd down Lombard Street, one of the most crooked streets in the world.\"\ntt0059124,AB7mSGjpn8c,\"Diane seems strangely impervious to bullets, until Craig watches her drink a glass of milk.\"\ntt0059124,2JA3UQCYkQs,\"Dr. Goldfoot prepares another batch of robots for world domination, but his bikini machine produces a defective robot that beats up Igor.\"\ntt0059124,rHwc3Jc9rD8,\"When their cars fail them, Dr. Goldfoot and Igor continue to follow Craig and Todd via cable car.\"\ntt0059124,BRV1CDa5_Z4,\"Dr. Goldfoot instructs his robots how to dispatch their rivals, but he becomes frustrated when one robot teaches the others how to dance.\"\ntt0059124,_dm0Oj_fF14,\"Todd invites Diane back to his apartment, but when she won't go there without a marriage proposal, he pops the question.\"\ntt0059124,W2o3KcKAldE,\"Craig meets and quickly falls for Diane, a seductive woman who keeps confusing him for someone else.\"\ntt0059124,u0wNMcfOIXM,\"Dr. Goldfoot takes Craig and Todd into the dungeon, where they find a familiar face among the prisoners.\"\ntt0059124,tCjohxqJ-0c,\"Now on a motorcycle, Craig and Todd race across the Golden Gate Bridge with Dr. Goldfoot and Igor in pursuit.\"\ntt0059124,lVsH8dttw4I,Dr. Goldfoot examines the second version of robot #12 and demonstrates another seemingly innocuous but deadly weapon in his arsenal.\ntt0088960,fv34SxLog3o,Dr. Wolper persuades Boris to be his new lab assistant.\ntt0088960,N204ncRytIE,Dr. Kullenbeck asks Boris to tag along during his workout in an attempt to pry information out of him.\ntt0088960,LVYMePfXin8,Dr. Wolper says goodbye to his deceased wife after choosing to end his cloning experiment.\ntt0088960,PB5bvrhHFIw,Boris pleads with Dr. Kullenbeck to keep Barbara on life support.\ntt0088960,CmKzzu5ELHU,\"After returning from the beach, Boris persuades Barbara to join him in the shower.\"\ntt0088960,CLAepDJtUJU,Dr. Wolper gives Boris some advice on love while they work in the lab.\ntt0088960,q6LqVs7P-pI,Dr. Kullenbeck makes an unsuccessful pass at the much younger Meli during a dinner party.\ntt0088960,5XuaulOD0ZE,Dr. Wolper gives Boris a hint to the identity of his crush while they talk on the roof.\ntt0088960,almVKV4ywQQ,Boris' personal robot wakes him up for his first day of graduate school.\ntt0088960,LI0o8Nhig1Q,Dr. Wolper introduces himself to Meli after seeing her crying on campus.\ntt0112722,_NhQKmjXz7c,Konerak watches a videotape of Jeffrey Dahmer's recorded confession and is then murdered with an electric drill.\ntt0112722,ic_89aGltSg,Young Ramirez chills with a serial killer who tells him about his tour of duty in the Vietnam War.\ntt0112722,qPVAxNvS1YQ,Jeffrey Dahmer entertains his next victim with a beer.\ntt0112722,GUoa3MFLEO8,Ed Gein makes his kill.\ntt0112722,xcgOzHorYag,\"Young Ramirez witness a startling murder. Meanwhile, Mirabelle researches on the killer of a woman.\"\ntt0112722,_1A33xDs0lI,\"The killer stalks Laura in a parking garage. Later, the police keep her in a room with a two-way mirror while they discuss the case.\"\ntt0112722,vMwPmm9UmtI,The killer shows up to Laura's apartment to reveal how close he is to her.\ntt0112722,XYVKWFL9irA,Ramirez tortures a couple in their bedroom.\ntt0112722,oJuU7gvcwdQ,Laura realizes that the crime scene that she and the detectives are investigating has been staged.\ntt0112722,2nhZzcQBkp0,\"The Killer taunts Laura into trying to kill him, but she has trouble pulling the trigger.\"\ntt0804452,qDkEnNVpn0g,The Bratz win over the crowd with a musical number during their school's talent show.\ntt0804452,bc6k19YKBN4,The Bratz Girls react poorly when Yasmin quits the talent show.\ntt0804452,sx_oR6WXO0I,Yasmin suffers from terrible performance anxiety and can't sing her song.\ntt0804452,_JtPO8an9xY,The Bratz Girls go shopping and promise to never split up again.\ntt0804452,ggEPIKZuPn4,Sasha shows off her best moves when the Falcon Cheerleaders hold auditions.\ntt0804452,MXM6Hz_ItMw,Cloe accidentally discovers a name for the clique.\ntt0804452,L4TIQxyJEcs,The Bratz Girls argue about the restrictive nature of their respective high school cliques.\ntt0804452,K5xM1SxgD6M,Meredith performs an ode to self-absorption at the talent show as the Bratz prepare for their own routine.\ntt0804452,mKQYPa9Onac,Jade helps the football team with some mathematical concepts.\ntt0804452,l063S2tqZSg,\"Through a series of accidents, the Bratz Girls spill food on each other, leading the entire school into a food fight.\"\ntt0804452,6p6tevRcEXY,Meredith performs a musical number at her own Sweet Sixteen birthday party.\ntt0804452,r9ma_9tM48k,Yasmin celebrates with Bubbie because she is excited about her idea to ignore the standard high school subcultures and just be friends with whoever she wants.\ntt0162662,RotJK471KDg,The Arcade Manager scolds Evie for being careless and unprofessional at work.\ntt0162662,plGWKSHrzCk,Evie carves Drumstrings Casey's name into her forehead with a piece of broken glass from a floozy's perfume bottle.\ntt0162662,4pUPYVW5GWI,Evie makes an impulsive decision and stands up to take a picture of Drumstrings Casey during his performance.\ntt0162662,LWnHl2_xh4M,Drum's parents and Evie's father come over for dinner and it doesn't end well.\ntt0162662,fgDsOV1YKpE,Evie and Drumstrings have their first kiss on her front porch.\ntt0162662,Ovp4lQhkIGY,\"Evie watches Drumstrings Casey perform, and immediately becomes infatuated.\"\ntt0162662,QJOXvLGYEwo,Evie is fed up with Drum and wants them to start a new life.\ntt0162662,8NSR7Pod8O8,Evie is interviewed by the newspaper and Drumstrings Casey visits her in the hospital.\ntt0162662,tfqqS90iYKY,\"Evie sets up a fake kidnapping of Drum for publicity, but she's blindsided by shocking news that her father has had a heart attack.\"\ntt0162662,r9w5dIeVamA,Evie lays some ground rules for her wedding on the car ride to the chapel.\ntt0245712,dAxijzivjlc,\"Jarocho and Octavio fight their dogs in an abandoned building, but Jarocho shoots Octavio's dog.\"\ntt0245712,yIGiGtjHUS0,El Chivo tortures Luis about the identity of the person who wanted him dead.\ntt0245712,5AAni-jpFaU,El Chivo leaves a heartfelt message to his daughter whom he never knew.\ntt0245712,f48wH7l3c5I,Octavio and Jorge are being chased by gangsters while their wounded dog is tossed around in the back seat.\ntt0245712,LzXKQvdRZQU,El Chivo helps pull out the wounded Octavio from the totaled car and takes Octavio's dog with him.\ntt0245712,09MjH5hbF5Y,\"With his new dog-fighting enterprise, Octavio earns money to help him run away with his brother's wife.\"\ntt0245712,zCu2iserep4,Daniel tries to rescue the dog trapped under the house while dealing with Valeria's despair and distrust.\ntt0245712,lLepw8cs6eQ,El Chivo comes home to find all his dogs dead.\ntt0245712,KGf_Z5s891U,Octavio inappropriately talks about him and Susan being together at her husband's funeral.\ntt0245712,Hzv74uI9Cr4,Gustavo is surprised to find his brother still alive.\ntt1602098,C_L23E0FwCs,Helen fantasizes about a rich customer over breakfast with Albert and the other servants.\ntt1602098,ViRs8qaB5YQ,Hubert opens up to Albert about her decision to start living life as a man.\ntt1602098,yfYKkvq5dow,Albert takes a very indecisive Helen out for a bite to eat.\ntt1602098,BI5u7jAxIjo,Albert and Hubert venture out in public as women for the first time in years.\ntt1602098,1q15xQhI6Lg,\"Albert works up the nerve to ask Helen out for a walk, and Joe encourages her to play along.\"\ntt1602098,AiaIf4aJgfE,Hubert discovers that Albert is a woman posing as a man.\ntt1602098,Chy1Cu5WOgc,Albert explains to Hubert her decision to live as a man.\ntt1602098,pnzYOL2o_To,Albert tries to comfort Hubert after typhoid fever claims Cathleen.\ntt1602098,8ypUiGzOsOs,\"As Dr. Holloran nurses a hangover, Albert questions him about the feasibility of opening a tobacco shop.\"\ntt1602098,9WpVeYgwugo,Helen teaches Albert how to be affectionate.\ntt1602098,7m3Mv9f_P1U,Joe tells Helen to continue seeing Albert for his money.\ntt1602098,OCDouPR9v9E,Joe shares some painful memories with Helen and pulls her aside for a kiss.\ntt1399683,fHiIfSLjJE4,Ree Dolly tries to track down Thump Milton at a cattle auction\ntt1399683,_83-1qzRNpo,Ree Dolly questions the whereabouts of her missing father to Teardrop -- her meth-addicted uncle.\ntt1399683,ZM3mRir3-LE,\"After Ree Dolly is beaten up by Merab, she pleads for her life to the town crime boss Thump Milton.\"\ntt1399683,O7wmAaT-TBk,Teardrop receives the banjo that belonged to his deceased younger brother.\ntt1399683,8T2dOyo64Pk,\"Ree Dolly teaches her brother Sonny, and sister Ashlee, how to hunt and skin a squirrel.\"\ntt1399683,QK1Xnd7cPJw,\"Ree Dolly tries to talk to Thump Milton -- the local crime boss -- about her missing father, but Merab won't let her inside the house.\"\ntt1399683,ay13eiuH54U,Teardrop comes to the aid of his niece Ree Dolly and confronts Thump's men after she's beaten by Merab.\ntt1399683,1YXJuW9MNGc,Merab takes Ree Dolly out on a rowboat to find her Daddy's corpse which is submerged in a pond.\ntt1399683,5QFPjo1DGE8,\"When Teardrop is pulled over by Sheriff Baskin, he refuses to back down.\"\ntt1291584,0Qkk8a1IVxQ,\"With Tommy's arm broken, Brendan struggles with the decision to continue the fight.\"\ntt1291584,sy7Lx7jY2SU,Brendan takes on the Russian fighter Koba after getting pummeled for two rounds.\ntt1291584,LkimMjwfjrQ,Tommy wakes up to find Paddy painfully crying out in a drunken stupor.\ntt1291584,P9clz3jnMVo,\"Tommy and Brendan find themselves in the cage, fighting for their causes.\"\ntt1291584,kKHr9gSW7HM,Brendan confronts Tommy about their past.\ntt1291584,PXn6o5uTfEU,\"Brendan has his first fight at Sparta, and takes a beating in the process.\"\ntt1291584,XVePWDEck4w,Paddy tries to reach out to Tommy but is dealt harsh rejection.\ntt1291584,9NErcOfza10,Brendan fights for money in a tent set up in a parking lot.\ntt1291584,f6DDYCf80hw,Tommy volunteers to spar with Mad Dog at the gym.\ntt1291584,EUC3JOXJBYw,Paddy tries to talk to his son Brendan after a long absence.\ntt0065214,l9k9_K8Tea0,Pike Bishop reprimands his bunch for wanting to desert old Freddie Sykes.\ntt0065214,CYP38A-nwLY,\"Pike Bishop and the rest of the Wild Bunch walk down the hot, dusty street as they prepare to meet their violent end against General Mapache.\"\ntt0065214,_ysVoV3x5Zo,\"Madness reigns in the Coliseum as Pike Bishop and his bunch massacre General Mapache's troops, and die with their guns blazing.\"\ntt0065214,7NReUd2_0u0,Lyle Gorch and Tector Gorch ask Pike Bishop for a larger share of the money before realizing they've stolen a copious amount of worthless washers.\ntt0065214,St16P31BURU,Pike Bishop and his bunch hold up a bank.\ntt0065214,gOJJm_cSRds,Pike Bishop and the Wild Bunch shoot their way out of a bank robbery against Deke Thornton.\ntt0065214,R6-LDKl3FOs,\"After the Battle of Bloody Porch, Freddie Sykes comes along a worn out Deke Thornton and asks if he wants to join his new posse.\"\ntt0065214,zT639dQIhck,Pike Bishop and the Wild Bunch plant an explosive trap on the bridge for Deke Thornton and his posse.\ntt0065214,yDo7fA8sAlM,T.C and Coffer fight over who they killed during the shootout as they collect the personal belongings off of the victims.\ntt0065214,mx15l4L4Zlk,\"Pike Bishop and the Wild Bunch ask Gen. Mapache to return Ángel, the result of which is a burst of violence.\"\ntt0053604,c--eNhRG5B4,Miss Kubelik learns that Baxter quit his job rather than loan out his apartment.\ntt0053604,_gOQq1ygJgY,\"Convinced of his love, Miss Kubelik races back to Baxter's apartment.\"\ntt0053604,sh7lb9j3k5s,Mr. Sheldrake confronts Baxter about his apartment.\ntt0053604,73BHmDv4qYc,\"On his way to the 27th floor, Baxter chats with the elevator operator, Miss Kubelik.\"\ntt0053604,Rf7NrtrHs1U,\"After abusing his apartment privileges, Mr. Kirkeby assures Baxter he'll be rewarded.\"\ntt0053604,AFXFoDiTtmA,\"When Mr. Sheldrake requests his apartment key, Baxter has a decision to make.\"\ntt0053604,jWt7wiLImmU,\"When Mr. Dobisch gets lucky with a Marilyn Monroe lookalike, Baxter gets a wake-up call.\"\ntt0053604,MeQCLsUrCXo,Baxter tells Miss Kubelik about his own suicide attempt.\ntt0053604,iFpB2_WOk0Q,Mr. Sheldrake swaps a pair of Broadway tickets for the use of Baxter's apartment.\ntt0053604,8gGPt8Eg5lw,\"Baxter gets a warning from a concerned neighbor, Dr. Dreyfuss.\"\ntt0075314,VKE_B4jMF5Q,Travis comes into the Palantine volunteer headquarters and asks Betsy out for coffee.\ntt0075314,UneHDzMhbbw,Travis eats breakfast with Iris at a diner and thoughtfully gives her advice about her life.\ntt0053604,aKUcMTQgl5E,\"Baxter encounters Miss Kubelik, a charming elevator operator.\"\ntt0075314,-QWL-FwX4t4,\"Travis looks into the mirror, drawing his gun, and practices his intimidation routine for a battle on the streets.\"\ntt0075314,FGwRe_5L1WM,Travis goes on a shooting rampage throughout the motel as a terrified Iris listens on in another room.\ntt0075314,1ve57l3c19g,Betsy is impressed with Travis and his honesty during a date at a diner.\ntt0075314,X6frLQWOSlQ,Travis sits quietly as his passenger describes what it would be like to kill his adulterous wife.\ntt0075314,Rq4ucbgrV6U,Travis fantasizes about being praised for performing heroic acts throughout the city.\ntt0075314,LvtFcK8BaY8,\"Travis expresses his feelings about the filth of the city with his politician passenger, Palantine.\"\ntt0258000,XVNNkjY2YDQ,Burnham is upset when he realizes that Junior's plan is already amiss and there is a mysterious third man involved.\ntt0258000,pdYYAu24yVQ,Meg is saved at the last moment when Burnham returns to kill Raoul.\ntt0258000,8XTt2uGxh9E,Sarah helps Meg with her first communication with the burglars.\ntt0258000,HieAi6H3Gxs,Meg and Sarah evade their pursuers and take refuge in the panic room.\ntt0258000,v8KA0GieSoE,\"When Meg discovers intruders in her home, she wakes Sarah in order to get her to safety.\"\ntt0258000,P2p410SndXM,\"Burnham injects Sarah with an insulin shot, saving her from a deadly coma.\"\ntt0258000,F7bAUwj2HEs,\"Meg /*259*/) lights up the propane gas, setting off a spectacular fire and singeing Junior in the process.\"\ntt0093565,SLgV3ynglzg,\"Loretta breaks her engagement news to her father, who expresses trepidation because of her supposed \"\"bad luck.\"\"\"\ntt0093565,T8X4r5X9c-Y,\"Johnny pops the question to Loretta, who insists it be done properly.\"\ntt0258000,hYNYTcpIDSs,Raoul's hand is crushed when he tries to stop Meg from returning to the panic room.\ntt0093565,O66m3X5mYpU,\"At the airport, Johnny asks Loretta to contact his estranged brother. An old Sicilian woman curses the plane.\"\ntt0093565,ji9C_R6HLvg,Ronny recounts for Loretta the story of his maimed hand.\ntt0093565,wUPc7frUlD8,\"Loretta meets Johnny's brother, Ronny, a tortured baker.\"\ntt0093565,k7WkN_gPNaM,A swooning Ronny tries to convince Loretta that playing it safe won't make her happy.\ntt0093565,-n3qpOM31Pc,Loretta psychoanalyzes Johnny ; he kisses her passionately.\ntt0093565,AXgHBzoymaQ,Loretta spots her father at the opera with his mistress.\ntt0093565,nuVzF_r0kHQ,Rose confronts Cosmo about his affair.\ntt0093565,iLgMFwStTHc,\"The morning after their tryst, Loretta is wracked with regret, but Ronny's in love.\"\ntt0093565,lVmwqKY9BX0,\"Johnny calls off his wedding to Loretta, leaving Ronny free to propose.\"\ntt1527186,8LbCb592C0g,\"In the film's prologue, Justine and Leo prepare for the apocalypse as the planet Melancholia approaches Earth.\"\ntt1527186,2oWgJ75kqxg,John grows frustrated with Gaby and decides to throw her out of her daughter's wedding reception.\ntt1527186,V53g8B7Ljqg,Justine notices a change in the sky when her horse begins to act strangely.\ntt1527186,LYbU_99u22o,John reassures Claire that the planet Melancholia will not strike Earth.\ntt1527186,gd2-0TMNqZw,Tensions arise when Dexter and Gaby give rival toasts at the wedding of Justine and Michael.\ntt1527186,F4-pp1JORFc,Justine refuses to comfort Claire in her time of need.\ntt1527186,xU61FGJ5aHA,Claire is relieved when Melancholia becomes visible in the night sky and appears harmless.\ntt1527186,0Q4cKXYFIxU,\"As the wedding guests gather to release lanterns in honor of the bride and groom, Justine makes a startling discovery in the night sky.\"\ntt1527186,vKsWNzKjVEk,\"Justine, Claire and Leo hold hands as the planet Melancholia collides with Earth.\"\ntt1527186,eQBlcP9ENk8,Justine tells Claire not to grieve for the end of life on Earth.\ntt1527186,3SIsMAk_Yhw,Claire panics as she attempts to leave the grounds of the estate with Leo amidst a hail storm.\ntt0067411,MxlTo0BbQlE,\"As Constance Miller devours her meal, she lays out a proposition to John McCabe that he just cannot refuse.\"\ntt1527186,4GraEwTsqFs,Justine and Michael try to help their comically inept limo driver on the way to their wedding reception.\ntt0067411,cb4dxubPYEs,\"Butler and his posse let it be known to John McCabe that they are in town 'to hunt bear,' not to negotiate.\"\ntt0067411,AbRlLFpC34s,\"Cowboy arrives in town looking for the \"\"fanciest whorehouse in the territory.\"\"\"\ntt0067411,SU6tW2cZQeI,\"As the snow continues to fall, Butler hunts John McCabe. Meanwhile, the town celebrates putting out the fire.\"\ntt0067411,PBAzBWYoR9U,John McCabe is caught off guard with the arrival of Constance Miller and her whores.\ntt0067411,guK3fiVFU98,\"The Lawyer lays out the virtues and platitudes of the American justice system, when all John McCabe desires is to not be killed by the bounty hunters hired by the corporation.\"\ntt1615147,UOYi4NzxlhE,Peter Sullivan explains to executive John Tuld the state of affairs at their investment firm.\ntt1615147,LtFyP0qy9XU,Sam Rogers tells John Tuld that he wants out.\ntt0067411,7LBM8BX4UfU,\"John McCabe shows a tender, vulnerable side to Constance Miller when he confesses his feelings for her.\"\ntt1615147,e6WyN4z0VGc,\"After 80% of the employees at an investment firm are fired, Sam Rogers gives a pep talk to cheer the survivors.\"\ntt1615147,xW1CrQu_H6E,Will Emerson explains to Peter Sullivan and Seth Bregman where all his money goes.\ntt1615147,m8Mc-38C88g,Will Emerson tries to convince Eric Dale to come back to the investment firm.\ntt1615147,ag14Ao_xO4c,John Tuld explains his firm's philosophy to his employees while maneuvering around Sam Rogers and his moral principles.\ntt1615147,v4P4cS5jKmQ,Sam Rogers tells his traders to sell all assets.\ntt1615147,DDwsfoudwuc,Sam Rogers confesses to Peter Sullivan that they're all going to get fired.\ntt1615147,QNWXsYZWiiA,John Tuld bribes Sam Rogers into cooperating.\ntt0082694,j_UtDuZaeZo,\"The second-wave attack is let loose on the tanker driven by Max leading to a massive, destructive crash with The Humungus.\"\ntt0082694,BXmMRlQtnP8,\"Max dangerously drives the rig back to base, pursued by Wez and the other psychotics.\"\ntt0082694,zdr-f3MZgqo,\"With the gas tank at empty, Max — aka the Road Warrior — is chased by a group of bandits on a desolate highway at maximum speed.\"\ntt0082694,i2gVXd7FzhQ,Humungus and his dogs of war descend upon Pappagallo's tribe in an effort to gain control of the gasoline tanker. The Feral Kid makes use of his boomerang in taking out the Golden Youth.\ntt0082694,vpir9eGi8Mk,Max violently crashes his V8 Interceptor with Wez in hot pursuit.\ntt0082694,bOEcxxyOC-s,Max gives the Feral Kid a musical trinket and offers to help Pappagallo's tribe.\ntt0082694,3P4LUt0qcX8,Max drives the tanker with Wez and the gang in violent pursuit.\ntt0082694,YFWDhaI6BqY,Max leads the chase out of the booby-trapped compound by driving the decoy tanker.\ntt1588170,iD3pUnlGJxU,\"When Kyung-Chul realizes that Kim Soo-hyeon is linked to one of his earlier victims, he taunts the secret agent and threatens to show him the true power of pain.\"\ntt1588170,_nrXdj11-MA,\"Kim Soo-hyeon beats up the cannibal of the house, kills the cannibal's girlfriend, and then bludgeons Kyung-Chul relentlessly with a pole.\"\ntt1588170,TgaoKPuLtpg,Joo-yeon is savagely attacked by Kyung-Chul as she waits for a tow truck.\ntt1588170,gKmsNU2CWo0,Kim Soo-hyeon kidnaps Kyung-Chul in daring fashion before the serial killer can turn himself over to the police.\ntt1588170,cJEE1-5uQXI,Kim Soo-hyeon finally gets his vengenace against the murderous Kyung-Chul.\ntt1588170,jE5qCSOAsXU,\"Kim Soo-hyeon tortures a cannibal, only to be shot at by Kyung-Chul.\"\ntt1588170,wRNOxvIxMpk,\"Despite being captured and beaten up, Kyung-Chul taunts Kim Soo-hyeon, telling the secret agent that he has been defeated no matter what he does.\"\ntt1588170,cMWSTAEs-TA,Kim Soo-hyeon fights and captures the serial killer Kyung-Chul.\ntt1588170,bK3dyRu67A8,\"Kim Soo-hyeon interrogates and tortures a pervert, whom he believes to be the killer of his fiancé.\"\ntt1588170,LJAUOJDM88o,\"After getting picked up by a friendly cab driver, Kyung-Chul brutally murders the cabbie and the passenger in the backseat.\"\ntt0926084,R2zNRrOXbPY,Harry Potter leads an escape from the Death Eaters with the assistance of Dobby the House Elf.\ntt0926084,nlOF6YhAoJQ,Harry comforts a dying Dobby.\ntt0926084,GM5WI4MTXzc,Harry and Hermione share a tender moment of joy amidst a dark and perilous journey.\ntt0926084,AdaRb_fg8dg,Ron is tested by his attempt to destroy the locket horcrux.\ntt0190332,ltY3ZLA6dA8,\"Legendary swordsman Li Mu Bai faces his archenemy, Jade Fox, but she has an apprentice.\"\ntt0190332,KXIJv1NoXmo,Li Mu Bai battles stubborn Jen on top of a bamboo forest.\ntt0190332,s1hs62Is67s,Shu Lien tires of Jen and a vicious battle with multiple weapons ensues.\ntt0190332,X5SaZ8EmSpw,Jen takes on a tavern full of warriors - and wins.\ntt0190332,svBPXPXgpqc,Jen chases the bandit Dark Cloud for miles because he stole her jade comb.\ntt0190332,noLAdkr7WzY,Li Mu Bai expresses his desire for Shu Lien over some tea.\ntt0190332,rxJiE5EKnD0,Shu Lien chases the thief of the Green Destiny sword up walls and over rooftops.\ntt0190332,x0D4unitqpE,The poisoned Li Mu Bai expresses his undying love for Shu Lien.\ntt1436045,3bqc-TIPv4c,\"Shinzaemon taunts Lord Matsudaira and his men with a scroll that reads \"\"TOTAL MASSACRE\"\".\"\ntt1436045,dtVoa1vg8qk,Shinzaemon addresses his Samurai after learning that the odds are not in their favor.\ntt1436045,tvON7JZAqzY,Hanbei and his men fall into Shinzaemon's trap.\ntt1436045,NcmpDcaWa3c,Lord Matsudaira decides to take a detour after being blocked from Owari land; Makino Uneme meets his fate.\ntt1436045,vEfhLwt-8wg,The Assassins prepare for departure and train for their mission.\ntt1436045,dNwHQsv3tgE,The Assassins are ambushed by Akashi Henchmen in a small town.\ntt1436045,zhGOkVH91z8,Koyata volunteers to be a guide in exchange for food.\ntt1436045,0HSDU71_U-Q,\"For the first time, Lord Naritsugu gets a glimpse of the pain he has inflicted on others, and the terror of dying without having really lived.\"\ntt1436045,BaSoze4fhGA,Shinzaemon and Hanbei duel.\ntt1436045,njPq0Ld041k,Lord Naritsugu finds a disgusting pleasure in violence.\ntt1436045,6HwzVqcNaSU,\"Hirayama cuts down several of Naritsugu's men, with Ogura finishing off the stragglers that make it past him.\"\ntt0098453,EwC2ZHxoDu4,Louise and Brad finally have their romantic dance.\ntt0098453,5XU9Sz69aKA,Mrs. Crocker gives her rebellious students an impromptu sex education class that ends up being more comical than informative.\ntt0098453,lZ885HzflVc,Mr. Miller embarrasses Louise in front of her classmates by reading her romance paper aloud.\ntt0098453,oxxBXpnn2Jw,Polly shows up Rhet in a rap battle.\ntt0098453,3GcQp2JJvv0,\"During a chance encounter with a psychic Madame Serena, Louise learns that she will inherit special powers on her 16th birthday.\"\ntt0098453,lLX3wpgs32Y,Louise says a spell that makes Randa and her friends fight like never before.\ntt0098453,vgGb9tSOKbs,Louise goes through a transformation into a popular girl at school.\ntt0098453,HcD7driLtCQ,Mr. Weaver is literally put through the wash when his voodoo doll gets in the wrong hands.\ntt0098453,HPeiybjTy3E,\"Louise wishes for her nerdy date to leave her alone, and he instantly disappears.\"\ntt0098453,9ogtJYnjD1I,The girls locker room breaks out into song when boys come up.\ntt0098453,W26hbGkeEWo,\"When Louise gets into a fight with her brother Richie, she accidentally turns him into a dog.\"\ntt0098453,0FNk4sNdPtQ,\"With the help of a homemade voodoo doll, Louise makes Mr. Weaver undress in front of his entire class.\"\ntt0094862,goyoOGbDjNM,Charred Chucky attacks Andy and Karen who shoots him to pieces.\ntt0094862,4GUk-1i2_Zo,\"After Chucky attacks Andy at the mental hospital, he gets the drop on Dr. Ardmore and fries his brain.\"\ntt0094862,MM42NkUhSnM,Karen discovers that Chucky doesn't run on batteries.\ntt0094862,8NOmVkx7fWQ,Chucky tricks Eddie and blows him to pieces when the house explodes.\ntt0111653,oXcDMKOD0O0,\"To the displeasure of Little Feather, White Cloud allows the white men to pass through Indian country safely.\"\ntt0327919,sTu7aCTkp9g,Sophie and David analyze an impressionistic painting.\ntt0327919,u1Dxy8jBmYE,\"A Baker tricks David into staying in his bakery, and alerts the authorities that he's there.\"\ntt0327919,u-oetP_iX_I,David has his first proper lunch with Maria and her family.\ntt0327919,WRJWb6SViK4,\"David finds himself caught in the middle of a violent protest, and is unexpectedly locked-up before escaping.\"\ntt0327919,E0TmjA1X2N4,\"David questions Sophie about a book, and discovers that the author is his mother.\"\ntt0327919,Do4Z-aFeJMs,David successfully escapes from the Communist concentration camp.\ntt0327919,p-dnhwIY2G0,\"Sophie helps David get to Denmark, so that he can reunite with his mother.\"\ntt0327919,J-8l4bdfL9g,Sophie explains to David that not all people are inherently bad.\ntt0327919,9CSMoJr51IQ,\"Johannes visits David in a dream, and provides him with advice to help guide him on his journey.\"\ntt0111653,cs6MZqTBBC0,\"Phil Taylor proposes moving back east, but Zeke wants a sure sign from the Lord.\"\ntt0094910,SehEKk2gcSc,\"Burns talks down the suicidal Lopez, but doesn't disappoint his audience.\"\ntt0385988,jSabMn5UXKo,\"Godfrey sings about how Jean cannot break his heart, since he doesn't have one.\"\ntt0094910,Lz3XcjwKGmQ,\"Burns tries to give a lady on the bus some free therapy, but she has some serious issues.\"\ntt0081071,b2gz0vSh0J4,\"When Belle asks why she wasn't invited to the party, Cole has a succinct explanation.\"\ntt0072325,8oDxIAKnWx4,Blue makes a scene at Gator's funeral by spitting on the deceased.\ntt0111653,BZH32FuXeF4,\"Julian faces John Slade in a duel, and quickly outdraws him.\"\ntt0111653,lVQgRd34Dlk,\"Around the campfire with the other guys, Phil Taylor decides it's a good time to tell some personal stories.\"\ntt0111653,cqwrFYjHahk,James Harlow romantically confides to Belle that he doesn't see her as just a whore.\ntt0111653,kUkbUoZ__X0,James Harlow shows off his chivalrous side when he picks up a dropped doll from the brush.\ntt0111653,liH8CRkWl3Q,Phil Taylor gets into a duel over his lost cows.\ntt0111653,aVEtuBwgly0,\"Julian, the book seller, tries to convince Harry Bob Ferguson on the merits of Jane Austen.\"\ntt0111653,OaZ30IajJ2w,Lindsey and Billy are taken aback when they discover the Furguson brothers lighting their flatulence.\ntt0072325,iaQdh-Hbp3I,Dorinda uses a little tough love to prepare her whores for a meeting with all the local pimps.\ntt0111653,5938LUU-UAY,A drunk James Harlow explains the route back east to Phil and Ben.\ntt0111653,6Mwtt_EKIQk,\"James Harlow leads the trail of wagons mistakenly through Indian country, and Julian convienently has a pair of moccasin shoes.\"\ntt0111653,jArxL-3-j94,\"John Slade attempts to blow up the wagon train, but his booby trap backfires.\"\ntt0087727,VqtAA8dO7Ww,Braddock interrogates General Trau at knifepoint as he searches for the location of the MIAs.\ntt0051411,jWJqzIUntho,Steve accuses Jim of lying about being lost in the wilderness.\ntt0087727,zpQFjWoRhGc,\"Braddock blows up a POW camp, building by building.\"\ntt0094862,3lyx7UsMqmc,\"When Karen threatens to throw him in the fire, Chucky attacks her and escapes.\"\ntt0102555,ikfmhFpbWJk,\"When Hamid, a kind store owner, allows Betty to use the phone, she calls the Swiss Embassy to plan her escape from Iran.\"\ntt0093640,OeUbPposwAo,Brice shows up at Susan's house and interrogates her about her traveling companion.\ntt0083629,WIZ0J4rWO88,\"Michael starts to strangle Amanda, but he's able to overcome his evil urges.\"\ntt0104765,3fIng0TRjXI,\"Hearing a struggle, Paul intervenes between Lurene and Ray.\"\ntt0049406,w0l1ukaxeBg,Nikki snipes the lead horse but gets killed during the escape attempt.\ntt0052564,C94ag0ondig,Dr. Iris Ryan discovers the cure to Col. O'Bannion's infection.\ntt0081184,i-bRuSNSvcU,Vincent and Ida plant the human heads into the ground.\ntt0083629,mAeceNqeNtQ,\"Eli and Caroline search for their son in the woods, and when he grabs Eli, Caroline has to pull the trigger.\"\ntt0052832,AguptuYeDRU,The tension between Lady Torrance and Val reaches a boiling point.\ntt0084732,CiOFGnNgnnc,Sam follows a person he assumes to be Brooke into Central Park at night.\ntt0079240,UPaTwmDXLWE,\"As Londoners gather for a hanging, Clean Willy climbs a wall to escape from Newgate prison.\"\ntt0305396,QDNELnksfnw,Steve Irwin does a deadly dance with an angry snake until he gains the snake's trust and it calms down in his grip.\ntt0051411,GMiD6PU8SKI,Rufus Hannassey crashes Major Terrill's party and delivers an ultimatum.\ntt0305396,a_aZ01raOoI,\"Steve and Terri explain that many kangaroos are killed by vehicles in the outback, and they rescue and nurse their orphaned babies back to health.\"\ntt0100680,MlD51EzRE7c,\"When Stanley's boss accuses him of stealing canteen supplies, Iris proves it's not possible since he can neither read nor write.\"\ntt0089572,0pVwRO2dFVs,\"The killer calls Malcolm again, informing him that there will be four more murders.\"\ntt0048424,jcTv-BEwabk,Mr. Powell tells his animated story of love and hate. Young John is skeptical while Mrs. Spoon eats it up.\ntt0082416,yx2giHzJ4-I,Charles reunites with Anna and loses his temper when recounting the way she broke his heart.\ntt0052832,MBfp_LuEfqA,Carol tries to seduce Val in a graveyard.\ntt0063415,DKwC6X7_JU0,Hapless actor Hrundi touches off a premature explosion on a movie set.\ntt0057413,5485fd0CtKw,Sir Charles and George approach a safe in costume.\ntt0100530,3gDvO7H5iEA,Barley confesses his love to Katya and puts his spy training to use to tell her the truth.\ntt0082416,4SzQZn8xGnA,Mike's obsession with Anna grows as he tries to set up their next meeting.\ntt0057413,q3a5wxfm13Q,Clouseau assures the Princess he's identified the Phantom: Sir Charles Lytton.\ntt0052832,W2Et5nGF5C4,The reckless Carol Cutrere attempts to unearth the skeletons of Val's wild past.\ntt0057413,G5sYuuD7ixA,Clouseau pays a visit to the Lyttons in prison.\ntt0057413,kEsfYG_bF-E,\"At a costume ball, Clouseau chides an officer for drinking on duty.\"\ntt0055614,77KnithfRRk,Tony and Maria spot each other from across the dance floor in a love at first sight moment.\ntt0094142,L0rNCGRjvtU,Owen fantasizes about stabbing Momma with a pair of shears.\ntt0054047,oepaVuuBAtA,Three Mexican peasants approach Chris and ask him to help defend their village against bandits.\ntt0120757,SwI_ITgsSks,\"Pete visits his parents, but his father doesn't believe that he's a cop.\"\ntt0120757,tLzcAofC4WA,\"Julie makes fun of Pete for getting kicked out of the club, while Pete mocks her for talking to a guy.\"\ntt0048424,OuEmfmfgw2Y,\"Willa prays and discusses Harry's reasons for marrying her, just before he takes a knife and kills her.\"\ntt0263757,siHzbnn1Bxw,Molly and Ray ride the teacups and share a bittersweet moment.\ntt0048424,JyxSm91eun4,Mrs. Cooper guards the house with her gun and joins in on a song with Mr. Powell who watches from the yard.\ntt0081071,lQ8JIa98kAw,\"Clell Miller requests a change of song from \"\"Battle Cry of Freedom\"\" to \"\"Good Ol' Rebel.\"\"\"\ntt0070915,meZXqa_CE_o,\"Sheriff Connors inspects Dude, Gator, and his hot rod.\"\ntt0098546,LDxOZ6cv-DU,George and Bob meet Pamela at the TV studio.\ntt0098090,S4s8LTNnufA,The Phantom kills a stagehand with a knife.\ntt0072325,QFQ4izzxtec,Dorinda doesn't have any patience for Truck or his questions.\ntt0263757,aikBhgSFE2A,Molly shares with Ray the story of her parents' deaths.\ntt0102926,sbJ89LFheTs,\"After solving the Buffalo Bill case, Agent Starling receives a chilling phone call from Hannibal Lecter.\"\ntt0072325,fSNdh-3k6-g,Blue staggers for several blocks after Truck shoots him.\ntt0086567,jWQ1ITS94cA,\"Claiming that the oncoming enemy attack is nothing more than a simulation, Falken reasons with General Beringer to call off the counter strike.\"\ntt0120757,_cmX1kEbl4g,\"Greer and Bob chew out Linc, Pete and Julie.\"\ntt0098546,Btdp-sC8MJI,Raul hosts an animal kingdom type show from his 2nd floor apartment where he tries to get poodles to fly.\ntt0263757,a5WAyc-EaNc,Molly gets a glimpse of Ray's pessimistic outlook on the world.\ntt0094142,LfxeHobEC9g,\"Larry tries to warn Momma about her son's plan to kill her, but she's asleep with her eyes open.\"\ntt0263757,33KUnZf841c,Ray is less than pleased when she sees that Molly is her new nanny.\ntt0086619,faRFVdrRpws,\"Yentl belts out \"\"Piece of Sky\"\" to celebrate how far she's come and the possibilities that await her in America.\"\ntt0072325,iWGL8PRdM7E,Truck kills two pimps on his rooftop.\ntt0086619,WCES5LXQn9M,Yentl cries out to her father's spirit for direction.\ntt0070915,RzGyyYgXffQ,Gator ends up getting medical care at Sister Linda's Home of Unwed Mothers.\ntt0092003,6bxEuaulT4k,Doc Holliday explains to Henry Gatewood why they have a Calvary escort.\ntt0102555,b6xbga06ApQ,Betty pleads to Moody's family to help her leave Iran and explains Moody's blasphemous lie about their visit.\ntt0086999,b9KCMBBn0EI,Ozone and the gang perform a benefit dance concert to help save Miracles community center.\ntt0086999,bsaA903oxvc,Ozone and his friends engage the Electros in dance combat.\ntt0072251,OF-QIOuucVk,\"The train passengers brace for impact as they speed down the tracks at 70mph, finally stopping at 42nd Street.\"\ntt0071746,0A9ppII7eVA,Lenny makes a triumphant return to the stage after being arrested for acting obscene.\ntt0087727,2_iIEQ-hlKc,Braddock uses his charm to bargain for a one-of-a-kind armed raft.\ntt0087727,sua9tcQ14hs,\"Tuck dies while providing cover fire for the POWs and Braddock ; in the aftermath, Braddock designates his next destination: Saigon.\"\ntt0118900,PlGtHAZOWbo,\"Suspicious that he is taping their conversation, Divinci threatens Rodriguez to take off his shirt.\"\ntt0087727,IW7worFAFlU,\"Braddock beats down a would-be assassin. In the aftermath of the attack, Braddock witnesses the carnage that has afflicted the civilian population.\"\ntt0087727,1zOmRBOYLpc,\"After wreaking havoc through an enemy camp, Braddock detonates a pair of hand grenades as leaps onto his enemy.\"\ntt0087727,FlB2v8LQHDM,\"Braddock brings his own brand of chaos to the enemy as he uses a truck as a battering ram, and then escapes on Tuck's custom-made attack boat.\"\ntt0087727,lSzT54HTpeY,Braddock rises from the water to shoot his enemies to hell and back.\ntt0087727,ccU8NJFeBSA,Braddock overpowers and subdues a hatchet-wielding Vinh.\ntt0087727,Ce0zSR2ParE,\"Fed up by a news report, Braddock boots his TV set.\"\ntt0251114,vlZQj4OrTUM,Lt. Scott speaks to the men about racism.\ntt0070653,0xJcu3vc9tI,Scorpio kills Cross who gives him some advice as he dies.\ntt0385988,E5VOPMr7SKg,\"Nanny Bess says a magic spell while placing the red riding hood on Linet, ensuring her safety.\"\ntt0081184,K2Lt0Ek64eM,Vincent Smith does some pruning in his garden... of heads.\ntt0081184,Ax1Vgvp5Cls,Debbie screams when her friend is taken hostage by Vincent after he tricks them into stopping with... fake cows.\ntt0052564,dso8WOrSRSQ,The crew is attacked when they mistake the leg of a forty foott tall monster for a tree.\ntt0081184,r6fpS6P16NI,\"Vincent and Ida ambush a couple of swingers and of course, gas them.\"\ntt0052564,844ONMSqRWU,\"When the shuttle returns to earth from its mission to Mars, the rescue team discovers few survivors along with one astronaut who carries a shocking infection.\"\ntt0052564,e89qDsf6Q3g,Dr. Ryan is traumatized when she attempts to recall the harrowing events on her mission to Mars.\ntt0102555,kTXppLCyuOk,Betty carries her daughter in her arms towards the U.S. embassy.\ntt0052564,WvQTrzonQAs,Dr. Iris Ryan and Col. O'Bannion flirt over the course of seventeen days en-route to Mars.\ntt0093640,XYrGVKzAJjQ,Brice and Pritchard discuss how to avoid indictment for Susan's death.\ntt0093640,0zLL_XdqxmQ,Farrell tells Sam that he is the man in the photo and asks Sam for a very important favor.\ntt0093640,lD7Xo_FhL4s,\"Farrell flirts with Susan in front of her lover, Brice.\"\ntt0102555,GZJ6sC4nKNc,\"Betty tries to pull her daughter out of school to escape Iran after her husband threatens her life, but the headmaster stands in her way.\"\ntt0089730,A4E1rEzhnz8,Russ and Jamie look for action with the ladies of the laundromat.\ntt0102555,sRwqd3eCNUY,Betty's high hopes for the Swiss Embassy to help her and her daughter leave Iran are quickly crushed when she learns of Iranian laws.\ntt0089730,tDWQvA6IhG8,Mark dreams of biting Robin as the Countess looks on.\ntt0089730,lhGtoYnSdl8,\"Mark, about to be bitten by the Countess for the third time, gets rescued by his friends.\"\ntt0093640,EdN4MiVmI74,Brice and Pritchard give Farrell a difficult assignment.\ntt0081184,-kkP1Pvzvgs,Bob hears a strange noise in the woods and discovers a number of buried heads.\ntt0102555,8riyzFyGdVo,\"Moody beats Betty when she returns from a visit, planning to leave Iran.\"\ntt0102555,dm3xv5sosng,Betty is yelled at and almost arrested for showing a small amount of hair outside her hair wrap.\ntt0093640,daoD1UtU5XI,Farrell demands more information from Pritchard and disagrees with his course of actions.\ntt0081184,yh17pzVY6BE,Ida is attacked from every angle by a group of her angry and vengeful prisoners.\ntt0093640,Y_lgyJtcb2A,Sam reaches out to Pritchard about Farrell.\ntt0089730,DCUGRi_FlNE,The Countess and her vampire minions chase Mark and Robin through her mansion.\ntt0102555,PrjcxNpxOos,\"Betty expresses her gratitude to Houssein, and he tells her about the gardens of Persia.\"\ntt0089730,5BL7Fj5SUhU,Robin goes to a bookseller to conduct some research on vampirism.\ntt0091699,Mvu47rYJ1Y4,Iago plants jealousy in Otello's mind when they see Desdemona and Cassio together.\ntt0089730,_uHTonkUqW4,Countess puts the moves on a very jumpy Mark.\ntt0081184,b9EAfTyu5_I,\"Vincent confesses the deep dark secret of his garden and his meats\"\" to Bruce and Terry before he dies.\"\ntt0089730,t3c_a9M1E7s,Mark and his buddies locate Robin in the basement before running into a group of vampires.\ntt0093640,cEPa4RFLJ-0,\"Schiller discusses the future with Farrell, but in the end lets him go.\"\ntt0105046,XRGOhLyLS9Q,Carlson bullies Candy and says he wants to shoot and kill his old dog.\ntt0052564,zJQujcyncBk,A giant creature from the sea pursues the team when they discover a city on the horizon.\ntt0093640,AXsbWJC8VM4,\"A confrontation between Farrell, Brice, and Pritchard leads to further deception and death.\"\ntt0089730,_kKO_1Dr4Go,\"After drinking a glass of blood for breakfast, Mark goes Dracula on two unsuspecting young customers.\"\ntt0089730,JMlpAPKDm2s,Mark wakes and is excited to learn that he's had sex with the Countess.\ntt0093640,6lYiLycAQSo,Farrell warns Nina to run while he fights off two men that are on the chase.\ntt0052564,7WQTYb36Cew,Martians leave a parting message for the surviving voyagers so they may carry it back to mankind.\ntt0052564,wz29yiGSrB0,The survivors trap the radioactive organism in the ship's outer hull.\ntt0089730,x6fpplPaxG0,Robin overhears Mark talking about his one-night stand and breaks up with him.\ntt0081184,c6ik-AA87Uo,Vincent and Ida take a walk through the head farm and give them their nightly feeding.\ntt0105046,2xRlAbbcG0Y,\"After Lennie's tragic mistake, he looks to George for guidance and asks what they're going to do next.\"\ntt0102555,NT_hyjakJEI,\"Betty is excited to meet Ellen, a fellow American, in class, but she is disappointed to discover that Ellen has assimilated into Iran's oppressive gender roles.\"\ntt0081184,jZyhfkpsGGI,\"Vincent, donning a bloody pig's head, has a battle of chainsaws with Bruce.\"\ntt0105046,DCM-sEpyh1Q,\"George takes a dead mouse away from Lennie, causing Lennie to cry, but promises to one day buy him a puppy.\"\ntt0105046,bR2Uon5BWC0,When Curley starts a fight with Lennie he finally fights back and completely crushes Curley's hand.\ntt0052564,65XtOM1UUGw,\"Dr. Iris Ryan is asked to recall her team's trip to Mars, which begins with a close encounter with a radioactive meteor.\"\ntt0105046,5Ddap2Pyhtw,George tells Lennie a fairytale about their future and then shoots him in the head.\ntt0093640,5GyAcr1BrNA,Farrell attends an Inaugural Ball and Pritchard introduces him to Brice.\ntt0105046,16bGLMEtAww,\"George, upon much begging from Lennie, tells the story about their future and the farm they will one day live on.\"\ntt0102555,mpDnD5Pp90I,Betty speaks with Houssein about leaving the country while she watches a few young men being taken prisoner.\ntt0089572,D7MotG6VP4I,Christine informs Malcolm that she's leaving him.\ntt0089730,d1lql0Z0e-E,Mark and Robin realize he's been bitten by a vampire...and no longer has a reflection.\ntt0091699,6UwcLeAV31Q,\"In a jealous rage, Otello kills his love Desdemona, thinking that she loves another man.\"\ntt0081184,_wLWdDRIkis,Ida imparts some heady advice to Bob and his fellow crops.\ntt0093640,N69MOeO5bi0,Susan panics when she sees Brice arrive home and asks Farrell to leave through the back door.\ntt0091699,lyu3QUjAFtw,Otello and Desdemona share a song of love and hope.\ntt0089730,03L12Mqkzg8,\"Mark and Robin have coffin-rocking sex, making Mark immune to the bite of the Countess.\"\ntt0052564,Z-Hye1zg5IU,A giant carnivorous plant with tentacles attacks Dr. Iris Ryan.\ntt0091699,gLB9F9QftwM,Otello yearns for one last kiss with his love Desdemona as he takes his final breaths.\ntt0091699,LS6oxPMMdas,Desdemona sobs and proclaims her innocence as Otello accuses her of being unfaithful.\ntt0089572,81fH2bYF59g,Investigators find a tape left for Malcolm at the serial killer's apartment announcing that his girlfriend has been murdered.\ntt0105046,k6_nTAS1M4M,Curley's wife makes an emotional confession to Lennie while he quietly listens.\ntt0091699,CxkpSGI8L8o,Otello and Desdemona sing their unconditional love for one another.\ntt0089572,KggovdPWfpk,\"At the newspaper office, Bill tries to motivate burned-out reporter Malcolm.\"\ntt0091699,Keejr4iFv5A,\"Iago tells Otello that he overheard Cassio, who, in his sleep, dreamt of a secret love affair with Desdemona.\"\ntt0105046,XHGWTDHchVQ,\"When talking with Curley's wife, Lennie accidentally kills her while trying to stop her from screaming.\"\ntt0089572,LfKPfJmfGgU,\"Over dinner, Christine becomes upset with Malcolm when he is flippant about quitting his news reporting.\"\ntt0091699,JPtEnl6MpHU,\"Desdemona prepares for sleep, at peace with the fact that she may die.\"\ntt0091699,8-ECgs93q1A,Iago manipulates Otello by warning him about the perils of jealousy.\ntt0089572,bWm1GC01kGo,Malcolm interviews a source without realizing he's the actual serial killer.\ntt0102555,yEYUc9oIVD8,\"Betty is horrified when Moody tells her that they are going to stay, and live, in Iran.\"\ntt0105046,sO2RBLeWYyg,Curley's wife interrupts George while he's working and starts to seduce him.\ntt0102555,LL2LvzUVsZw,\"When Mahtob accidentally leaves Toby Bunny behind, her mom reminds her to stay strong and brave so they can go home.\"\ntt0105046,hJUtiOm9dLY,\"George, Lennie, and Candy pool their money together and make plans to move in one month.\"\ntt0091699,Ur3uTKbrqIQ,\"Otello rejoices in victory with his men, and then finishes the celebration with a passionate kiss from Desdemona.\"\ntt0089572,_f_1Or6RhiQ,Malcolm gets an unexpected call from the killer.\ntt0091699,zDRmwZxOJ4o,Otello swears vengeance while Iago stands by his side in support.\ntt0089572,__3ylv_JWqw,Malcolm faces Alan one last time in a showdown to the death.\ntt0094783,XwS5WsjPg9U,\"Linda tries her best to keep Lenny on track, but his cocaine use ruins an important business deal.\"\ntt0089572,7jtGp6xaVPU,Alan executes Christine after trying to explain his philosophical motives.\ntt0084732,hy0b9Rz31Zs,Brooke confesses that she was relieved when she found out George was dead.\ntt0051411,pwqOYWnLxBo,Jim tries to break a very stubborn horse.\ntt0094783,4vmjX0sQrIc,\"In his filthy apartment, Lenny rambles on to old business acquaintance Ned about his plan to turn his life around.\"\ntt0051411,tYGiUUnoZhk,Julie and Jim have a storytelling contest to see who can outlast the other.\ntt0051411,9ioRMsPEf8o,\"Buck and Jim attempt a gentleman's duel to resolve their differences, but Buck jumps the gun.\"\ntt0051411,iltOTKedsM0,The Hannassey brothers tie Jim with their lassos and insult him.\ntt0094783,eFd0VyfLf1M,\"When he stumbles across a dead body during a drug deal, Lenny promises Linda that things will get better, and she admits to him that she's pregnant.\"\ntt0051411,nQIfRCUlfz4,\"Buck backs out of the duel, but then steals a gun to finish off Jim.\"\ntt0089572,c2tWZFAL5t4,Malcolm races to the school to try and catch the killer before he kidnaps his girlfriend.\ntt0094783,Y52_WuvyKoo,\"Depressed by his business troubles, Lenny takes Joel up on his offer to try some cocaine, and Linda is impressed by his sudden change in attitude.\"\ntt0094783,lh6Y9EU0wPQ,\"Lenny admits to his fear of financial failure, and Linda promises to love him forever.\"\ntt0051411,2KfWymDaTmA,Steve kisses Patricia against her wishes.\ntt0094783,OvaNgegisKU,\"Max sells Lenny on the benefits of living in Los Angeles, and Lenny convinces Linda to makes the move.\"\ntt0094783,Kujzb5PT5ns,\"A visit from Joel and Rochelle leads to a pregnant Linda snorting cocaine and falling down some stairs, and Lenny takes it out on Joel at the hospital.\"\ntt0051411,eZp6EmVqq5o,Jim tries to stop the Major and his men from going out to kill the Hannasseys.\ntt0078790,pIvTIG3tWok,\"Alphie and Bibi find themselves in hell, where Mr. Boogalow and his son Dandi tempt them with a giant apple.\"\ntt0094783,2xujTq-ueyo,\"Lenny brags to Linda about the business deal he just closed at a party, but she's turned off by the strange people and their drug use.\"\ntt0094783,ZnsLPtYvqj8,\"Lenny suffers a reaction to some bad cocaine, and when Linda picks him up from the hospital, he can't wait to use again.\"\ntt0094783,IC5DpSRkHps,Lenny convinces Linda to try cocaine for the first time as a way to boost their energy and confidence.\ntt0086993,AZIlLRwCn08,Bligh and his crew of Loyalists are given scarce supplies and cast off-board by Christian and the Separatists.\ntt0078790,Pj4y9M7cPy0,Mr. Boogalow sings and dances to prove that life is nothing but show business in 1994.\ntt0094783,LPxNka5Ll5U,\"Lenny gives his all in a business meeting, but Max is the only man there who sees his potential.\"\ntt0086993,oYx2teRxnvw,\"After the mutiny, Bligh convinces his loyalists to cheer up and survive the hardship of being lost at sea.\"\ntt0086993,ZFM-OxDGrkg,\"Christian leads the mutiny against Bligh and the Loyalists, sparing their lives.\"\ntt0083629,iFnPpSNqKYU,\"Tom tries to hide from Michael, but the boy seems possessed by Tom's childhood friend Billy.\"\ntt0051411,bEA-o4IJAic,Pat and Julie trick Ramon to learn the truth about Jim's manliness.\ntt0086993,r1jgKSXPL84,Bligh orders the gagging of Churchill and Quintal for an act of insubordination.\ntt0078790,gqRIBKn09_M,Mr. Boogalow uses song to outline for Bibi his strategy for dominating in a master/slave relationship.\ntt0078790,-O3_WO63fhU,Bibi and Alphie pine for each other through song as evil forces conspire to keep them apart.\ntt0078790,LVKODpCrCpw,\"Under the tutelage of her new agent, Bibi transforms into a drug-loving disco diva.\"\ntt0086993,RoP15HrFNu4,Bligh gives up his food ration to a desperate and insubordinate young crew member.\ntt0068931,1XUHPC3s3rM,Arthur chases after his mark on a motorcycle.\ntt0083629,9bVHNqrqvjI,\"Michael and Amanda make out in the woods, only to be interrupted by her dog digging up a human hand.\"\ntt0078790,y_P5zX0ejXI,Pandi drugs Alphie and seduces him to prevent him from finding Bibi.\ntt0083629,lKJ8pyN8Cm4,\"Judge Curwin confesses to covering up his brother's crime, and Eli holds him responsible for the attack on Caroline.\"\ntt0083629,RdL23CR9K5w,\"Judge Curwin locks himself up, but the beast has no trouble locating him and tearing his head off.\"\ntt0086993,z4edIxzhU80,\"Christian plots a course for an uncharted island, while Bligh comforts his crew.\"\ntt0086993,5DYK9Xq-aF0,Bligh and the Loyalists return to land and report an act of piracy.\ntt0086993,KDc6dZxh0Cs,Bligh rallies the crew together and promotes Christian in reprimand of Fryer.\ntt0083629,snKDmQJqQ1E,\"Edwin prepares to cook some red meat, unaware that his guest Michael is possessed by an evil beast.\"\ntt0083629,NSuYLeI3d1U,\"Michael begs to be killed before it's too late, but his father Eli refuses to oblige.\"\ntt0083629,AlIvRiDePlY,\"Michael convinces Amanda to get out of town, and he's driven mad by the sight of her blood.\"\ntt0086993,FVEiScxUQyY,A vehement Bligh criticizes the lewd example Christian is setting for the rest of the crew.\ntt0068931,R5UsZ1yoTO8,Arthur takes Steve out for some target practice.\ntt0083629,KIE436-2xcE,\"Michael has a disturbing dream, and Caroline assures him that they will never leave him.\"\ntt0083629,YDCHojBWEhg,\"Michael prepares to kill Amanda, but when his parents arrive with the police, he claims to be protecting her.\"\ntt0068931,3Lf57-rBck8,Steve poisons Arthur.\ntt0083629,WdD2JN10zpY,The beast within Michael finally emerges as his mother watches in horror.\ntt0086993,k-WrZcFJo2k,Christian steals a coconut which makes Bligh furious.\ntt0056241,IaoE6JAGhh8,\"When Annie teaches Helen her first lesson, she hits Annie in the face with her doll and locks her in the room.\"\ntt0068931,JrGE2knBQsM,Arthur gives a lesson to Steve about killers in history who have become heroes and famous.\ntt0056241,Nk4JsPf8xX4,Annie remembers her heartbreaking childhood.\ntt0068931,zm7wCb8IXx4,Arthur deceives Big Harry before killing him.\ntt0078790,C2YKcU5rfm0,Bibi and Alphie reunite at the hippie commune under a bridge.\ntt0056241,Nt9wqkbXyyU,Helen gently gives Annie a goodnight kiss.\ntt0087231,FD9lsX7gyeo,Chris willingly gives his testimony to the FBI.\ntt0087231,4Spw9eH9GBk,Alex tells Chris that he is forbidden to quit working as a spy for the Russians.\ntt0068931,bCk9vtlnr34,\"With no more ammo, Arthur uses a bulldozer to push the pursuing car off the mountain.\"\ntt0086993,Q067OuCUl7o,Bligh is exonerated of all blame and commended for his outstanding seamanship. Christian and his crew are stranded.\ntt0113026,rxwADdYa0YM,\"Having matured since the last time they spoke, Matt proclaims his love for Luisa on the cloudy countryside.\"\ntt0087231,y7rxncDh6io,Chris reveals to Alex where he knows Daulton from after an argument breaks.\ntt0068931,e0cR6R3SccI,\"Arthur aims carefully, and fires his rifle, which blows up a building.\"\ntt0056241,_W1NRq6DekY,Annie argues with the Kellers during one of Helen's tantrums as she tries to teach her some table manners.\ntt0068931,PXBBHe_SwSs,\"Arthur explains to Steve his job of a \"\"mechanic.\"\"\"\ntt0068931,WoDvOu6PqLk,Steve and Arthur are spectators to Louise committing suicide.\ntt0078790,LIugIUixU_0,Dandi and Pandi of the disco group BIM pump up the crowd at the 1994 Worldvision Song Festival.\ntt0113026,NZqeFQasslA,\"El Gallo outlines his plan through the song \"\"Abductions.\"\"\"\ntt0087231,ealJoNJuKnY,\"Chris wants out, but Daulton blackmails him to stay.\"\ntt0068931,YBqruLJZAcg,Arthur and Steve jump out of their car at the road block and go on the attack with shotguns.\ntt0113026,X115jd2e6e8,Matt and Luisa jump on stage at the carnival and sing along to a silent version of 'Romeo and Juliet' being screened.\ntt0094910,X03tbD886IQ,Burns riles up his bosses by not censoring his language on the air.\ntt0305396,tfGpUcIEIf0,\"President George W. Bush gets involved and has the military retrieve the \"\"ball\"\" Steve Irwin found.\"\ntt0056241,BEkjNAsakzA,Kate screams for Arthur when she realizes their baby is blind and deaf.\ntt0113026,g3jImb6V4wI,\"Fathers Amos Babcock Bellamy and Ben Hucklebee stage a feud between themselves in the hopes that their respective teenagers will be wooed by the forbidden fruit, and date each other.\"\ntt0087231,yY6EgYygsAg,Chris deems Daulton as undependable when he finds him doped up on heroin.\ntt0056241,Ze8Yt5V7T6A,Kate and Arthur argue about how to handle Helen's deteriorating state.\ntt0087231,yUgQNj5-PaY,Daulton is interrogated and charged with murder in Mexico.\ntt0305396,_mVT_JmJ2Bo,Steve Irwin wards off a poacher in a crazy car chase.\ntt0079240,zMNUcNokvkU,\"Pierce stands trial for robbing the train, but his honesty does not go over well with the court.\"\ntt0113026,uSvAfRaxSu4,\"After he learns his heroics were for profit, Matt Hucklebee goes to challenge El Gallo at the fair, where he shows Matt how good a sword-fighter he is.\"\ntt0087231,gbEDjhLuPAs,Chris receives a surprise visit from an NSA Inspector.\ntt0094910,AwMjkeZbRZ0,Becker tries his best to win Laura's heart.\ntt0094910,JmcifAkvDn4,The psychiatric unit is filled with psychiatrists including Baird and Maitlin.\ntt0305396,P06IeXkgRNA,Steve Irwin gets yanked into the water by a crocodile he just roped.\ntt0094910,VklQQrb9-4c,Baird threatens to send Burns to Stateville Sanitarium for research on psychopathic patients.\ntt0305396,nfGKHa_mn20,Steve and Terri Irwin find a King Brown snake in the road and rescue it so it doesn't get run over.\ntt0087231,PFDnRg0lxUE,Christopher releases the falcon into the wilderness before he is captured by the FBI.\ntt0094910,usWA4j2ED_Q,\"Becker solicits Burns, who happens to be mistaken for Dr. Baird, at the airport.\"\ntt0087231,82sgwc-34Cg,Daulton has a mental breakdown at an airport due to his drug abuse and Chris helps him through it.\ntt0094910,nvFln5J-6uY,\"Vera expresses concern over her husband George, who's been in bed for two weeks.\"\ntt0079240,yqy6z3kxWdI,Pierce explains the procedures for transporting gold bars during the Crimean War.\ntt0113026,tYmvgGjSiN8,\"Louisa Bellamy sings about her desire to experience the world, for better or worse.\"\ntt0094910,fXBsUOysL3c,Burns gives advice to a premature ejaculator on the air.\ntt0079240,pHu6mCqzpyw,\"Miriam seduces Fowler in order to obtain a copy of his key, and a sudden police raid saves her from having to seal the deal.\"\ntt0079240,kV36CHsDZ_c,Pierce works on top of the speeding train to secure a rope for climbing down the side.\ntt0081071,-GSZwG_s-8A,Cole and Sam duel in a knife fight for the affection of Belle.\ntt0113026,d3ZUSI1_lOc,Amos Babcock Bellamy and Ben Hucklebee sing about manipulating their children by saying 'no' to things they want them to find interest in.\ntt0056241,BWYNt1N6xWQ,Annie finally breaks through to Helen in order to teach her again.\ntt0094910,5FQFrCgi8d8,\"With Lopez threatening to commit suicide despite Baird's pleas, Burns tries to talk him down.\"\ntt0087231,OK77tkb6D0c,Chris offers Daulton a partnership in espionage.\ntt0079240,qa2Ng4a5yk0,Barlow chases down Clean Willy and strangles him for betraying the gang.\ntt0305396,m-YWYdwcexU,Steve Irwin explains the ferocity of a spider's fangs and how researching their venom can help us understand and protect their habitat.\ntt0305396,Qr9F2ij1jfI,Steve and Terri Irwin find a way to sneak up on the crocodiles while searching for them after dark.\ntt0113026,CFCnY49pyII,\"After their adventure in the moonlight, lovebirds Matt and Luisa sing \"\"Take Away.\"\"\"\ntt0081071,zSCukxfXdAQ,The James-Younger gang robs a carriage in the woods.\ntt0081071,NsMwPIy4Ax4,The gang gets into a deadly shootout riding out of Northfield.\ntt0056241,NMOjCohQbXY,\"Annie teaches Helen that \"\"things\"\" have names.\"\ntt0079240,Lgmzj8eWK8M,Pierce describes to Miriam the fake persona he has created for himself.\ntt0094910,-rebHHoZJSM,Becker makes jelly-less donuts while Burns gets a call from a woman who is fed up with her husband being a slob.\ntt0056241,QlKuJBiw1ac,Annie Sullivan's teaching finally comes to fruition when she tries to get Helen to refill a pitcher.\ntt0081071,aErChTKF6u4,\"As Jesse James straightens a picture on the wall, Bob Ford shoots him.\"\ntt0113026,dDtFWw1mZuw,Inquisitor Luisa Bellamy asks El Gallo how he survives and how he deceives people.\ntt0305396,sJGWczuXzT8,Steve and Terri Irwin follow a croc up the river until he runs out of water and they capture him on land.\ntt0079240,0t1xR1LX5Kg,\"Pierce forces Agar to strip to give up his clean clothes, and they throw the gold bars off the train.\"\ntt0305396,iWJTDTs9ymk,\"Steve Irwin explores a spider hole and finds a male spider dead, having been killed by a female after mating.\"\ntt0076210,vIaVITC62Cs,\"Andrew is chased through the jungle by he knows not what, but is saved when he runs into Moreau\"\ntt0079240,0JBU9hgQ_T0,\"Pierce and Agar concoct an elaborate scenario to copy the keys in the train station, but the police arrive too quickly.\"\ntt0057115,H3KbLBwQFW4,Hilts meets Luger for the first time after his attempt to cross the camp warning wire.\ntt0057115,jKVDdMG37ig,The guys tell Roger that they need more wood to keep the tunnel from collapsing.\ntt0113026,opoVbcNO48o,El Gallo conducts the characters in the fake abduction to show Matt Hucklebee as the hero that he is not.\ntt0056241,jtQcr7lJXB0,Annie convinces Arthur and Kate to grant her complete control over their daughter in order to save her.\ntt0054047,JNuiAZP2dtM,The seven teach the peasants how to shoot the guns they took from the bandits.\ntt0054047,Kk6l301jwOk,\"Vin approaches Chris and the peasants at the bar and, liking the company, joins the team.\"\ntt0079240,ugm8RMqRSxs,Agar has 75 seconds to copy the keys while the guard is in the bathroom.\ntt0054047,L9-FR2MUfrU,\"Aided by the seven, the peasants rise up against the bandits and Chris kills Calvera.\"\ntt0054047,9yh3GgjFpxw,\"When Chico asks to join the team, Chris tests his response time by making him clap.\"\ntt0079240,w3-djlpw4iw,Pierce emerges from the courthouse a folk hero and pulls off a daring escape with the help of Agar.\ntt0057115,RZa79QGDeo8,\"While spending their punishment in the cooler, Hilts and Ives make more escape plans.\"\ntt0054047,yjEcOkwV2MU,Chris and Vin take a dangerous ride through town to the cemetery where they face down six gunmen.\ntt0052832,V39FjO5t9BY,\"Just as Lady Torrance and Val seem prepared to start a new life together, it all goes up in flames.\"\ntt0054047,gKpPQ6SqHvQ,Henry tries to convince the hearse driver to bury the dead man. Chris Adams volunteers to drive the hearse to Boot Hill.\ntt0079240,JAz7hBbOoc0,Miriam poses as a grieving woman in order to smuggle Agar onto the train in a coffin.\ntt0054047,vtxPupFohQA,Chris and the other six hired guns face off against Calvera and his men.\ntt0082416,_yY3iR3yuT0,Anna recounts to Charles how she acquired her shameful reputation.\ntt0054047,nyMtN_aHC_8,\"After running off Calvera and his bandits, Chris and the others discuss the life of a gunfighter with Chico.\"\ntt0057115,eSYNuO9GTU4,Danny starts the dig for his 17th tunnel while the guys cover for him.\ntt0054047,w4i_ZwMT3H0,Chris and the others hand their weapons over to Calvera.\ntt0057115,7WCR4dZt7Uw,Hilts and Ives plan to burrow out of the camp like a couple of moles.\ntt0082416,LQhfDQoYERY,Charles eyes Sarah through a storm for the first time.\ntt0052832,j5Fd6TqePnk,Val explains to Lady Torrance the types of people in the world.\ntt0082416,RhMsnnZ-0qM,\"Charles comes back for Sarah after he's left his wife for her, only to find that she's fled to London.\"\ntt0054047,AU-paVv6zTk,\"Forced into a duel by a haughty gunman, Britt kills the man with his throwing knife before the man can even draw.\"\ntt0076210,qPXny_mZ0iE,Andrew recounts his past in defiance of Dr. Moreau's wishes to forget the past and embrace his inner animal.\ntt0082416,zLhfa5tKJyY,Charles checks in on Sarah as the romance escalates.\ntt0052832,hfufT3MZQm8,Carol puts on a drunken show in a juke joint.\ntt0076210,hh5iOitreQ8,\"The mutants ransack and destroy Moreau's lab, but things go wrong when they decide to release the animals.\"\ntt0076210,nDGZMXNYfF4,\"Andrew and Maria reach the boat, but before they can escape, they must defeat Bearman.\"\ntt0076210,coOguh0UhcY,\"Andrew enters a cave and is confronted by many different human/animal hybrids, one of which attacks him.\"\ntt0076210,jVjq_m-PWSQ,Dr. Moreau reestablishes his dominance over his creatures.\ntt0082416,6PvYbL69oyE,\"Charles realizes that he was Sarah's first sexual partner, and declares that he will leave his wife and come back for her.\"\ntt0052832,cFZWNfXzFLU,Snakeskin asks the judge for a chance at a new beginning.\ntt0076210,BJ1tNYfDZa4,\"When Andrew finds the lab, Moreau uses Bearman as his example to explain his attempts to transform animals into humans.\"\ntt0054047,DcmzHtokiMw,\"When the bandits return to the village, Chris and the others advise Calvera to \"\"ride on.\"\"\"\ntt0057115,JpvqpzU7eEc,\"When the guys aren't looking, a desperate Ives tries to escape for the last time and is shot on the fence.\"\ntt0098546,XI5o939LHrE,\"When Stanley has his mop taken, George takes pity on him and offers him a job.\"\ntt0057115,9zugv1NdMj4,Eric demonstrates his invention to the guys on how to hide the tunnel dirt from the Germans.\ntt0076210,-YGxccN_j6o,Dr. Moreau attempts to sway Andrew's mind toward its primal instincts.\ntt0082416,K0uzT9bWryU,Anna leaves the wrap party without saying goodbye to Mike.\ntt0082416,kp2UhFQQb_k,At the train station Mike asks Anna to stay with him.\ntt0057115,BaFBFmJG-LI,\"Hilts eludes the Germans on motorcycle, but is captured when he gets ensnared on a barbed wire fence.\"\ntt0057115,tyazEYlueAw,Danny grows claustrophobic underground and aborts his place in line to escape.\ntt0082416,37zZ1ULVBa4,Charles and Sarah re-ignite their love affair three years after their last encounter.\ntt0052832,dgGvAQ3kcs4,Val propositions Lady Torrance for a job at her store.\ntt0082416,KwDvrv9byqM,Mike and Anna rehearse a scene then transform into their characters.\ntt0076210,HRrbt00Abv0,The mutants murder Moreau and decide that they will no longer obey his laws.\ntt0057115,frTBOhJ0XHU,\"Danny, Sedgewick and the guys elude the Germans from their secret during a surprise inspection.\"\ntt0049406,s4veow_qEDk,\"As Johnny lays out the details of the plan, a sudden noise from nearby signals the presence of an intruder.\"\ntt0076210,HSc1i2XKjCo,Montgomery threatens Dr. Moreau after Andrew becomes the next test subject.\ntt0076210,WK29KgQKP8s,Tigerman is clearly jealous of his all-tiger counterpart.\ntt0057115,hhGWxqj_bC0,Hilts is caught and returned to camp. Luger is removed from command for the escape of 50 prisoners.\ntt0049406,e5Tb2YSkGh0,\"Moments before Johnny and Fay board their plane to escape, fate intervenes and sends their precious cargo fluttering in the wind.\"\ntt0049406,jIyn1q4Ilpw,\"George lets the heist plan slip to his wife, Sherry, in an attempt to please her.\"\ntt0076210,ogkh8GaUkBE,\"Andrew wakes up to discover he's now part of the volunteer\"\" pool for Dr. Moreau's clinical trial.\"\ntt0049406,IfwHIwPbHaI,\"Johnny holds up the racetrack bank clerks, stealing millions in the process.\"\ntt0049406,FHUpEG_qdVc,George's loyalty is in doubt when Johnny catches his wife at the hideout.\ntt0049406,Tg3A7u83stA,\"Waiting for Johnny at their safe house, the group is ambushed by Val and his associate.\"\ntt0049406,gsWHt9OIofc,Johnny reveals his motivations on why he's going to risk his neck over the planned heist.\ntt0055184,9IuMUzCJ5m8,Roslyn engages in a game of paddle ball at a bar and almost starts a fight.\ntt0055184,gXHhy4c4UZw,\"Fed up with their callous treatment of the wild horses, Roslyn tells the cowboys what she thinks of them.\"\ntt0049406,D7H61Y1yUr4,Maurice wrestles with the security guards to create the necessary distraction for Johnny to slip inside unnoticed.\ntt0048424,U4se5hr9O84,\"Feigning his grief, Mr. Powell convinces Mr. and Mrs. Spoon that his wife has run off with another man. The reality, however, is much more sinister...\"\ntt0049406,77Uk4kkFEnA,Johnny sees through Sherry's veneer and lays down the law.\ntt0048424,q3JlGPF4Ko8,Mr. Powell drives into a new town and speaks aloud to the Lord about his string of past murders.\ntt0120757,C1QZn415vh4,\"As Linc and Pete try to survive the shootout, Julie stops Billy from getting away.\"\ntt0049406,mIIZqCaHUFI,\"Mortally wounded, a betrayed and beleaguered George shoots and kills his wife, Sherry.\"\ntt0055184,dTSXhhHDOk0,Roslyn can't bear to see Perce ride a bull at the rodeo.\ntt0055184,ax0943uaZUk,Gay surprises everyone by releasing the stallion he just caught and choosing to live a new way.\ntt0086619,LwdMHOiN6ko,Yentl sings about falling in love with Avigdor.\ntt0048424,5rlFiEe6S24,Ms. Cooper is in awe of the strength of little children to endure in a world that is harsh and cruel.\ntt0086619,au9pGQ9AuUs,\"Dreading her impending nuptials, Yentl sings \"\"Tomorrow Night.\"\"\"\ntt0055184,0vOulnDhH8A,Perce agrees with Roslyn and releases the captured horses.\ntt0081071,dEnoofPhBtE,Frank heads off with his brother to the disappointment of Cole and his brothers.\ntt0055184,k8oFMkg7icg,\"After Perce releases the horses, Gay wrangles the powerful stallion by himself.\"\ntt0048424,8hG-F24aroc,\"Mr. Powell follows the children to the cellar where they claim the money is hidden, but he soon discovers that it is stashed inside a doll.\"\ntt0048424,MlSzWgyNsAI,\"After escaping Mr. Powell, Pearl and her brother John float up river in their boat as the animals of the night watch on.\"\ntt0120757,2KwdvymU_ao,Linc is surprised when Pete pulls a gun at a suspect's trailer.\ntt0048424,auccmqO45a8,Ms. Cooper takes to arms when Mr. Powell tries to take the kids away.\ntt0072251,efqBAU-lT5Q,Mr. Blue informs the passengers that they have been taken hostage.\ntt0055184,qUqtwCfbjVw,Roslyn and Gay have an honest discussion about love.\ntt0063415,fWBAKMYKPSc,\"Hrundi encounters Wyoming Bill, a famous screen cowboy.\"\ntt0055184,_e917WJMzl4,Guido tries desperately to persuade Roslyn to leave Gay for him.\ntt0063415,GGkg5ytaXlA,\"Performing in an epic film, actor Hrundi refuses to die -- or stop bugling.\"\ntt0081071,0J_lTFS0ouM,\"After Ed loses his cool during a bank robbery, Jesse cuts him off from the gang.\"\ntt0048424,lDetwrOZPZg,\"John makes a promise to his father to always watch over his sister, and to protect the hidden money.\"\ntt0120757,BHEe0PqpvNw,\"When Linc accuses Greer of being dirty, Greer tells the squad to focus on gathering evidence.\"\ntt0081071,undTPa_iq1Y,\"When questioned about the James gang, the Younger brothers keep quiet.\"\ntt0048424,9PyNL2ahKwc,\"As John and his younger sister try to rest, they are awakened by the haunting voice of Mr. Powell, as he stalks them from a distance.\"\ntt0120757,czBTbtS1YpE,\"When Linc has his cover blown by Billy, Pete and Julie send in his car.\"\ntt0081071,kCsm28_ULw4,Jesse exacts revenge for the murder of his younger brother.\ntt0081071,LcHtYOV0bVo,Belle and Cole negotiate her asking price with a game of cards.\ntt0120757,l2g7v4DYYik,Linc pursues a suspect who won't shut up once he's caught.\ntt0098090,3JL2XIwueEA,\"The legend of the Phantom is told, and the secret of how he can be killed is revealed.\"\ntt0055184,yKxkjtLBq6I,Gay tries to convince Roslyn to stay in the country with him.\ntt0120757,MBYRmSeYB4A,Pete gathers evidence at the house where Bob is meeting with the other dirty cops.\ntt0055184,6ISHd9kAsTw,\"Isabelle proposes a toast to Nevada, the place where you can leave everything.\"\ntt0120757,eOdZMwIh1I8,Linc reunites with Pete and Julie and they try to piece together the trail of dirty cops.\ntt0072251,IXi_VrFakL0,\"Forced to decide whether or not to pay the terrorists, the mayor turns to his wife for advice.\"\ntt0120757,7dqjg1TwbXs,Pete and Linc witness a double murder when their informant and a suspect are killed.\ntt0063415,aA_j4KpP0W0,\"When he dips a dirty shoe in an indoor canal, Hrundi loses it to the current.\"\ntt0055184,dzbazAbjk8w,\"Roslyn and Isabelle meet Gay and Guido, who invite them to go to the country with them.\"\ntt0098546,GYYuyvyr2HY,\"Mr. Earley comes on the \"\"Town Talk\"\" show to demonstrate how NOT to use a table saw.\"\ntt0120757,JFblxacw_CA,Briggs questions the squad about where they were when Greer was murdered.\ntt0098090,c93bejkDIuU,\"The Phantom confronts a critic about the negative review he gave Christine, and then kills him.\"\ntt0098090,080g4Ylkv2M,\"Christine auditions for a part, when an accident suddenly happens on stage and somehow mysteriously sending her back in time.\"\ntt0063415,sR176VaCLXg,\"Dining with the guests, Hrundi is seated considerably lower.\"\ntt0098546,4BUDwj_mXKE,A low budget commercial for a local store that specializes in spatulas.\ntt0054428,mvAkLCKYvwU,Charlie's romantic reverie is interrupted by Kiowa arrows.\ntt0086567,9RRGvAB4HF8,A launch detection shows a full scale Soviet Strike and General Beringer orders the move to DEFCON 1.\ntt0054428,ex_KPw6bVwQ,Charlie kisses Rachel after proposing marriage; Rachel demands Ben's blessing.\ntt0054428,6d37Zy95yDI,\"Facing execution, Kelsey swears to his story about Rachel's bloodline.\"\ntt0098546,tHe6ar-X2cQ,George and Bob get inspired when they see Stanley on his new children's TV show.\ntt0054428,qTpB6q-YJwM,\"When horse tamer Johnny gets fresh with Rachel, Ben takes quick action.\"\ntt0098090,ioXW5Fg_q_g,The Phantom watches Christine's performance from the shadows and enjoys it immensely.\ntt0063415,DCzA_11fJZE,Hrundi attempts to waltz with a young mod.\ntt0054428,lGlvNt-N140,The Kiowas attempt to crush the Zacharys' roof with cattle.\ntt0094142,_j0KhXH6xLE,\"When the booby trap doesn't work on Momma, Larry tries it himself, and gets tossed down the stairs.\"\ntt0063415,w7ngnhj4snE,Hrundi is honored to have his hand crushed by Wyoming Bill.\ntt0086567,bh2ShAQ4lw0,David realizes that Joshua is still playing the game. And people are going to die.\ntt0063415,gIGtDdiHlA8,\"Hrundi attempts to stop a running toilet, but soon gets in over his head.\"\ntt0063415,TlQ_qOWPTnE,\"Intrigued by a flashy control panel, Hrundi accidentally broadcasts his voice to the whole house.\"\ntt0063415,03QHVB_n6N8,\"Attempting to mingle, Hrundi mistakes a tragic story for a joke.\"\ntt0086567,1vmnp7ghGPk,\"Falken explains the value of extinction, but David doesn't agree with him.\"\ntt0063415,LKpLGai9GxA,\"After wreaking havoc on various appliances, Hrundi graciously answers the telephone.\"\ntt0098090,C2PhwDzcQJY,\"Christine returns to her own time, avoids a deadly accident, and lands the part.\"\ntt0054428,jH2OKc8HPw8,\"Ben discredits Kelsey's words as lies, then Mattilda executes him.\"\ntt0072251,9fQG9Zhv2_I,Garber gets fed up with Correll's complaining about getting the trains back in service and physically confronts him.\ntt0072251,e-5SVm2NUe8,\"Garber tells Mr. Blue his demands will be met, and Blue shares the news with the hostages.\"\ntt0098546,xOCBpMs-9hY,Stanley gets abducted by some thugs.\ntt0098090,pOQv_Ng3CaU,\"Christine sings with the Phantom in his lair below the opera, and then later, he makes a dark marriage proposal to her.\"\ntt0055614,DGtD5QAaAGY,\"Maria, full of hate and sorrow, points the loaded gun at the Jets and Sharks.\"\ntt0086567,LwDbgE54QYE,David insults his condescending teacher in front of the whole class.\ntt0098546,XHbdoO7uCkk,\"Promo spot for the new show, \"\"Conan the Librarian\"\".\"\ntt0098090,VI9lWn1dpzg,Christine fights back against the Phantom and his clutching grasp.\ntt0098090,ZU1CFYBhGT8,The Phantom creates a grisly diversion in order to capture Christine.\ntt0055614,9K_4ZaMc1-4,\"The Jets happily make their way through the streets, owning their turf.\"\ntt0086567,MpmGXeAtWUw,Joshua learns the results of Global Thermonuclear War and decides to play a nice game of Chess.\ntt0383216,m5bPIty4Dww,\"Sharing a bed, Clouseau and Ponton discuss women.\"\ntt0263757,h44egWnbrrg,Molly gains some self-respect when she refuses to take Neal back.\ntt0102926,DE71sZbjvbs,\"Lecter offers to profile Buffalo Bill, if Clarice will arrange his transfer to a cell with a view.\"\ntt0072251,sXtlR_7l6xQ,\"Lt. Garber speaks to Mr. Blue for the first time, and Blue gives his demands.\"\ntt0102926,RZAkOfxlW6g,\"In a provocative chat with Senator Martin, Lecter reveals Buffalo Bill's identity and whereabouts.\"\ntt0055614,m7xTvb-FAhQ,Tony and Maria sing on the balcony.\ntt0100530,pKJOqt7BtB8,Katya informs Barley of her history with Dante.\ntt0098090,naKm_rLxRCs,\"As The Phantom holds Christine hostage, Richard enters The Phantom's lair to save her.\"\ntt0100530,Uqn_pbUUfKg,Ned teaches Barley the rules of the spy game.\ntt0383216,4qFxfRN75HQ,Clouseau rids his new office of bugging devices...and giant globes.\ntt0100530,J2yzM2nkylI,\"Russell uses a metaphor to negotiate with Barley, but Barley does not take the bait.\"\ntt0383216,3pON6S9aDy4,Clouseau tests Ponton's self-defense skills.\ntt0100530,nBRPKaHMFn4,\"Russell comes to England to tell Ned to drop the case, but ends up admitting he thinks Dante is for real.\"\ntt0072251,WAwbrOJMKEc,\"When Mr. Blue realizes that Lt. Garber has cornered him but will not kill him, he takes his own life.\"\ntt0383216,ti42vZVtgvY,Clouseau updates a wary Dreyfus on his investigation.\ntt0102926,99Ptctl5_qQ,\"After probing Clarice's background, Lecter mocks the FBI questionnaire and issues a gruesome warning.\"\ntt0102926,UhDZPYu8piQ,Lecter helps Clarice analyze Buffalo Bill's nature.\ntt0086567,k9WhxTOA19s,\"Overwhelmed by the specter of inevitable doom, David breaks down to Jennifer and they kiss.\"\ntt0102926,BWDYUMTmHjU,\"Lecter and Clarice discuss the modus operandi of Buffalo Bill, a serial killer at large.\"\ntt0102926,OLBotH5Bki8,Lecter draws a traumatic memory from Clarice : the slaughtering of the spring lambs.\ntt0072251,hIoCskqjp9c,\"Mr. Blue gives detailed instructions on the money drop, unaware that the cash has not yet arrived.\"\ntt0094142,eo6MfN5Lcws,Owen sneaks up on a sleeping Momma with a trumpet; Momma racks Larry with a cane.\ntt0383216,x87nnioiLP8,\"Clouseau loses his \"\"miracle pill,\"\" setting off a chain of mishaps.\"\ntt0094142,RQk7-GqzZCc,Larry meets Momma and gets hit in the head with a frying pan.\ntt0263757,rfdF7LBQ8Ic,Molly has trouble letting go of her things at her yard sale.\ntt0055614,hMMAB3MNCKw,Riff counsels the Jets to keep things cool.\ntt0072251,bkpuLB3ftow,Mr. Green enjoys some quality time with his portion of the ransom money until the authorities show up.\ntt0102926,YlRLfbONYgM,Clarice shares painful memories in exchange for Lecter's psychological insights.\ntt0383216,RiBRrKC_6pE,Clouseau gets his hands stuck while questioning Larocque.\ntt0070915,aClqNJOXy-w,Gator makes a prison break but is chased down.\ntt0100530,cdFiubg8UnQ,Ned reads a letter detailing how and why Barley sold secrets to the Soviets.\ntt0070915,G-tFJHYBqjo,\"Gator gets introduced to Rebel\"\" Roy at the pool hall.\"\ntt0055614,eZtQn-GAemQ,The Jets challenge The Sharks to a rumble and agree on a location and weapons to be used.\ntt0055614,_SQ4ogstDVE,Tony and Maria sing about their hope to run away together.\ntt0070915,6Dyph0wJBcA,Gator is anything but intimidated when Big Bear sticks a knife up to his throat.\ntt0102926,yNeQm5aqrHo,Clarice has a growing suspicion that the caretaker of Mrs. Lippman's house is the long-sought killer Buffalo Bill.\ntt0070915,qqaFGM-AyNA,Gator is chased by a cop and loses him after a high-speed chase.\ntt0072251,nDlEcFRZUYI,Green gives himself away when he sneezes and Lt. Garber recognizes him as Blue's accomplice.\ntt0094142,gpW3ywIoyr0,Owen scares Larry when he realizes that he didn't keep his promise to kill Momma.\ntt0070915,89uZslA-efY,Lou takes off her dress and takes a romp in the lake with Gator.\ntt0070915,W6udsqodIzo,Two sexy young girls flirt with Gator.\ntt0383216,ZXfw1y8Mbfo,Clouseau questions Xania and makes good use of her soundproof recording room.\ntt0070915,fgEjlKNllEU,Lou does her best dirty talk to arouse Gator's attention.\ntt0072325,boCpijI2k5I,Dorinda shows off the merchandise to some fellow pimps.\ntt0094142,v3dCP69-IFU,\"Tired of his mother's abuse, Owen poisons Momma's Pepsi, but then has second thoughts.\"\ntt0055614,YhSKk-cvblc,Anita sings about the great land of America.\ntt0070915,g-2hB5Kd5aM,Connors and Junior chase Gator.\ntt0263757,CtTjc4nJlDM,Ray and Molly have an all-out insult brawl over some dishwashing.\ntt0102926,V5dA92wqmME,\"Lecter greets Clarice, whom he learns is an FBI trainee.\"\ntt0070915,cRsKzW5Fszc,Gator fights off his captors and Big Bear to escape with Lou.\ntt0383216,Z6oeAdemFZw,A dialect coach asks Clouseau to repeat a simple phrase.\ntt0100530,Ii5azc-GzXg,American Colonel Quinn leads an informal interrogation on Barley who replies with wry wit.\ntt0102926,QRqXBsgnYok,Buffalo Bill terrorizes Catherine while holding her in a well in his basement.\ntt0072325,OHHn-_aJQ7s,Truck takes out a hired killer with the help of his trusty sidearm.\ntt0263757,lu9yr0xefYQ,Molly tries to get Neal to stay as he desperately tries to flee her chaotic apartment.\ntt0383216,eu-afVml4MM,\"After saving Nicole with the Heimlich, Clouseau questions Ponton about the latest murder.\"\ntt0086567,KXzNo0vR_dU,\"David and Jennifer hack into the computer and initiate a game of \"\"Global Thermonuclear War.\"\"\"\ntt0263757,DDb0S3nIfNA,Molly meets Ray in the bathroom at her birthday party and they talk about wrinkles and germs.\ntt0263757,NG4z6W4Zp_0,Roma fires Molly. Molly criticizes Roma's mothering.\ntt0383216,ZgBPFyzsqFg,Clouseau causes an international incident getting through airport security.\ntt0072251,s-Sx_dMw8oA,Mr. Blue and his heavily armed men take control of a subway car.\ntt0092003,L8_G6h_pK1o,\"In the pale moonlight, Curly thinks about the trouble that is up ahead.\"\ntt0094142,7EXefCHq6OQ,\"After hearing about his wife's demise, Larry tries to convince Owen to turn himself in.\"\ntt0086567,tGNBdjVO04Y,Joshua searches for the codes to launch the missiles while McKittrick and General Beringer argue about what to do.\ntt0072325,cMnkhxzCLyA,\"After Garrity spouts off some redneck racial slurs, Truck beats the hell out of him.\"\ntt0054428,Om2UW4c_vqU,\"The Kiowas come for Rachel, attacking the Zachary home.\"\ntt0054428,9anDqvXfdu4,The Kiowas seek to trade with Ben : their horses for his sister.\ntt0072325,nCgg5XIxxjY,Truck and Jerry wreak havoc in a bar.\ntt0055614,RgHtBxOs4qw,Maria sings at the bridal shop.\ntt0100530,6jS65g5UnWM,Katya turns the tables by asking Barley some tough questions of her own.\ntt0098546,4ega5Rcct2s,\"TV Commercial for U-62's new action show, Gandhi II.\"\ntt0072325,uaDgwjVu8ik,Truck and Jerry pursue Gator through the streets of Los Angeles.\ntt0072325,YTnxiXd0qwA,Truck does not hesitate to kill Dorinda when she pulls a piece on him.\ntt0057413,nwQ5zHdDFng,\"Oblivious to his wife's deception, Clouseau is pleased to find his violin repaired.\"\ntt0094142,1cTY-JnvfYI,\"When Owen is about to lose it and kill Momma, Larry agrees to do it for him.\"\ntt0054428,cv62uysSvQE,\"When all seems lost, Cash returns to fight alongside Ben ; Rachel kills an approaching Kiowa.\"\ntt0072251,pcyg0H7EU3c,Lt. Garber bargains for more time from Mr. Blue to no avail.\ntt0054428,gwEeqSGSL3g,\"With rifles blazing, the Zachary clan defends their home from a Kiowa attack.\"\ntt0094142,9ecF-Go9lt8,Owen and Larry save Momma from falling off the train... then she kicks Larry off the train.\ntt0057413,SOnb-cyRdAg,Simone finally whisks Clouseau into bed and the others out the door.\ntt0098546,cvy2tRH7HNE,\"In this Indiana Jones parody, George steals the Oscar statue, runs from a giant rock, and gets crushed in the street.\"\ntt0057413,ZYLekT6cYwY,Sir Charles and the Princess discuss their previous evening together.\ntt0057413,Wh4oSUvSQTQ,Three different men pursue Simone in her room; she works to keep them apart.\ntt0057413,uvXwt5HNFLU,\"Under cross-examination, Clouseau is framed as the thief.\"\ntt0086567,U2_h-EFlztY,David hacks into the school computer and changes Jennifer's flunking grade.\ntt0100530,31usxLUiuhs,Dante meets with Barley to discuss his hope for a new Russia.\ntt0100530,ulMNuwN1C-8,\"Barley describes the happenings at the writer's retreat, including his ability to improvise a jazz band.\"\ntt0057413,z3YKH7m0P4c,Simone pretends to bathe while hiding her men from Clouseau.\ntt0055614,DyofWTw0bqY,Tony sings of his newfound love for Maria.\ntt0072325,lTd2m2J2XmU,Truck and Jerry take out Gator in a gun fight.\ntt0383216,1daKtciMLiE,\"Questioning a French soccer team, Clouseau attempts to identify distant footsteps.\"\ntt0086619,HHFbltJSRxo,Anshel relishes getting accepted to the yeshiva.\ntt0102926,ovQk7fd4_Co,\"Clarice navigates a dark cellar to find Buffalo Bill, unaware that he's watching her through infrared goggles.\"\ntt0098546,i_9C6d3VVHM,\"When R.J. misplaces his file, he blames Stanley and fires him.\"\ntt0383216,uDqSQGOtixE,\"Surrounded by French media, Clouseau has a message for the killer.\"\ntt0263757,raVKed5rdgM,Molly's boy target at her birthday party is the musician Neal - and she HAS to have him!\ntt0086567,F7qOV8xonfY,\"David teaches Joshua the no-win game of Tic Tac Toe and, in the process, averts global thermonuclear war.\"\ntt0098546,-ui9TwNrNEw,George imagines himself rescuing Stanley as Rambo.\ntt0094142,7FgWn6jQuTQ,\"Larry watches his ex-wife, Margaret appear on the Oprah Winfrey Show to promote the books she stole from him.\"\ntt0092003,tk2vET4aFW8,Ringo kills Plummer in a dramatic standoff.\ntt0092003,TO01P7dpKV4,Ringo and Dallas flirt before they embrace each other and kiss.\ntt0092003,UdT8lSEVHZU,Curly and the other men defend the stagecoach from an Apache ambush.\ntt0092003,z5s04znNyMM,\"Ringo offers Hatfield some liquor, but he refuses.\"\ntt0086619,wPO6KyIYst4,\"Yentl laments the fact that, because she is a woman, she is not allowed to fulfill her ambitions of studying the Talmud.\"\ntt0086619,yAgMoKBGjT8,\"Yentl witnesses how Hadass waits on Avigdor hand and foot, noting through song that it's no wonder he loves her.\"\ntt0092003,2TITAbyObTw,Curly and his men surround Ringo and arrest him.\ntt0092003,q8CXKTH5950,\"Mrs. Mallory is happy to meet her new baby, but surprised to learn that the child is a girl.\"\ntt0092003,3t1YQOfYndM,Curly and Teddy have a chat about Apache attacks.\ntt0092003,zRsPSJWe5sY,Trevor Peacock pitches his burbon to the local saloon.\ntt0092003,bLmYWtqC8pc,The men watch as Ringo and Dallas ride off together on their stolen horses.\ntt0084732,5FMiM08gFtQ,Gail corners Brooke on the balcony and tells her to jump.\ntt0107863,DeYew_zLc_c,Jesse rescues his friends while dressed as a Ku Klux Klan member.\ntt0091875,6CxOSOVI76c,\"While Danny and Ray argue about who shot Gonzalez, guns fire again forcing them to finish their job.\"\ntt0108187,H6fBnHvdZeI,Jacques pretends to be a physician when summoned for Hans.\ntt0098042,aUdbjoT_DPQ,An impromptu game of football in the store leaves Ernie out cold.\ntt0108187,sCJ_SlkCT_o,\"Jacques attempts to infiltrate a club in a disguise, but is immediately discovered.\"\ntt0108187,jd3KM4imjr4,Inspector Clouseau's longtime friend Cato offers his services to Clouseau's son.\ntt0098042,XVGIvc6G6yg,\"Lester asks a nervous Dave about Ernie's whereabouts, unaware that the evidence is hanging before his eyes.\"\ntt0108187,p0Ov897MYiw,Commisioner Dreyfus tails Jacques only to discover the Inspector already has someone hot on his tail.\ntt0098042,kCtsoBRr1Z0,Sunny seeks help from the bumbling Lester.\ntt0108187,zZlbperC3ns,Commisioner Dreyfus weds Jacques's mother and discovers there is another member to the family.\ntt0108187,dPk7S_LiI1I,\"Jacques uses the hospital remote in order to adjust the television, but instead sends the Commisioner for a ride.\"\ntt0098042,s2xKn06X9cQ,Dave realizes that he is getting deeper and deeper into trouble.\ntt0098042,goOhv_1FYsE,\"Dave can't seem to do anything right, so Sunny has to clean up his mess.\"\ntt0098042,S-hMzdxcOD0,Ernie toys with the idea of sending Dave to an icy grave.\ntt0108187,jZXHcvhr2p8,Officer Jacques makes a fashionable entrance at the scene of an accident involving Commisioner Dreyfus.\ntt0098042,0NSgeb0dBLY,Sunny decides the freezer is a good place to keep Ernie.\ntt0108187,RFAfyPXisjQ,Commisioner Dreyfus discovers revealing information about Jacques' family from his mother.\ntt0108187,8ygfQ6oSNiU,Jacques consults Professor Balls for a disguise.\ntt0107863,mjo4d488_yE,The posse attacks the enemy camp and acquires a case full of gold.\ntt0108187,l3t1ZSuwLzg,Jacques fumbles in his rescue of the princess while Hans battles the invading militia.\ntt0098042,wy1eWsC2sL8,Dave is startled to find his partner's dead body in the freezer.\ntt0098042,iGJCWeK7YCA,\"Sunny tries to negotiate with Dave, but when he balks, she locks him in the freezer.\"\ntt0107863,YhdrJfDiIkM,Jesse and the posse overpower Col. Graham's forces when they are found A.W.O.L.\ntt0070653,Ip-dPqtyXRs,\"When McLeod and Filchock recruit Scorpio to kill Cross, Scorpio begins to ask questions of his own.\"\ntt0098042,QNrM2ICShJ4,\"After a few anxious moments, Sunny and Dave successfully push Lester's car into the river and watch it sink.\"\ntt0114287,9u_76dg61ns,\"Archibald wins\"\" the sword fight, but while Robert is on his knees, he grabs the blade at his throat, then kills Archibald.\"\ntt0114287,o_yIykgKbeQ,\"After Montrose acts against them, the villagers and Robert discuss how best to retaliate.\"\ntt0091875,vjKoaNcefSU,A little kid flips off Ray while Danny questions a woman about Gonzalez.\ntt0084732,Rc8ybU83qHU,Sam's /*259*/) mother helps him work through George's dream in the hopes of finding clues about his death and expresses worry at Sam's involvement.\ntt0114287,CeYoUJYqAQc,Guthrie challenges Cunningham to a sword fight.\ntt0122690,hghczTVgav0,Sam tells the guys a story about interrogation and the limits that every man has.\ntt0107863,mCVwWrfOT3s,Lana criticizes Jesse for leaving.\ntt0385988,FypqAWaSTFU,\"After Godfrey's powers turn the Wolf into a man, he learns that there are still people who do not fear him.\"\ntt0385988,6G8ExBEJEMQ,\"Dagger tricks Linet into believing that he is her grandmother, and then attacks her.\"\ntt0122690,Rt8Bfir3A4Y,Sam chases Deirdre through the streets of Paris.\ntt0114287,a2gMY3TRx8s,\"Robert explains honor to his children, then has a moment alone with his wife Mary.\"\ntt0107863,MYuEOOe0xSE,Col. Graham forces prisoners to choose between execution and fighting in battle.\ntt0114287,aYbNb8eaTCY,Archibald sets fire to Mary's house then rapes her.\ntt0122690,bMDdjhWe9NQ,Sam bravely walks Vincent through the steps as he surgically removes a bullet from Sam's abdomen with no anesthetic.\ntt0122690,XnD8FsykE08,\"The team finally catches the target and acquires the briefcase, but they are betrayed.\"\ntt0122690,fR0Sh0C6jFE,Sam chases Deirdre through the streets of Paris and finally catches her.\ntt0122690,OrZB5n0tNAI,Sam exposes Spence as a fraud.\ntt0107863,69aok-u1esc,Jesse reconnects with Papa Joe.\ntt0091875,-Luy502C920,\"Danny and Ray are confronted by two muggers, who are surprised to learn that their \"\"victims\"\" are cops.\"\ntt0385988,NG1KirPJLSQ,Lady Jean sings a comforting lullaby to a frightened Linet before bed.\ntt0114287,P_GbbXL9E78,Robert and Archibald engage in their first sword fight.\ntt0091875,hkFSMV93VeA,\"Ray and Danny drop their pants at the order of Gonzalez, chase him outside, and ultimately lose their suspect.\"\ntt0107863,1D-v8EcGV2Q,Jesse stops into a town with his posse and kills the demons of his past.\ntt0091875,sA0SngAZcdA,Danny and Ray catch Gonzalez and make him recite the Miranda rights.\ntt0091875,ToK_9NLtr7M,Snake and Julio's plan backfires when their own men turn out to be cops.\ntt0107863,jusrkQ2Zg8o,Jesse kills Col. Graham in a final showdown.\ntt0107863,MJ0qQkcBNPs,\"Jimmy recruits Father Time into the posse, but Col. Graham arrives and forces them to run.\"\ntt0091875,hgFClV33aH0,\"When three suspects pretend to not speak English, Ray and Danny pull out something they can understand - their guns.\"\ntt0385988,tm6qzug9AS8,\"Allen sings \"\"Green in the Blue\"\" with the townspeople.\"\ntt0084732,5F6pso8VBhc,Sam stops by Brooke's apartment the day after the thief who stole his jacket was murdered.\ntt0070653,KE0awhgSLmE,Cross gets the drop on an assassin at a construction site and throws him off a building.\ntt0114287,xR1YEOrYOdw,Rob confronts a band of cattle thieves and kills their leader.\ntt0091875,aJhtBJETQF8,Danny and Ray make Snake take part in a rigged line-up of suspects.\ntt0075268,5TbuwxXBfoA,\"Craig is introduced to the \"\"Grease Man\"\" and \"\"Batman\"\".\"\ntt0091875,nn-nEk5kpz0,\"When Ray and Danny refuse Julio's bribe, they get dumped into a trash compactor as it starts to compact.\"\ntt0385988,v1dTnLPL9gU,Dagger sings a song about strangers with Linet in the woods while also trying to secretly attack her.\ntt0385988,2PVdztmMSzI,A fearless and innocent Linet sings a song in the woods about hope and confidence.\ntt0070653,4GLcbZQoPNk,Cross creates a distraction to get the drop on McLeod.\ntt0385988,blDYzZvYAak,A confident and conceited Dagger sings a song about his evil ways.\ntt0100680,OQVIkVIf_BE,Stanley gets defensive when the shoe repair man asks him to sign for his shoes.\ntt0100680,mUzu93AhMuE,Sharon throws a fit when she discovers that her husband bought alcohol with the money she was saving.\ntt0091875,456l6TpeE1E,Logan forces Ray and Danny to take a vacation.\ntt0122690,dJFR7xbOIuw,\"Sam's uneasy feeling about doing the deal in the tunnel is validated when he spots a sniper on the bridge above, and shoots him dead.\"\ntt0075268,stelirVdNdI,\"Joe gives Craig some relationship advice, namely, that there is no growth without a little burn.\"\ntt0114287,_dtNz4Te0Gw,\"When Montrose attempts to arrest Robert he refuses to do his bidding, then pulls a knife on Archibald.\"\ntt0091875,F3f7Li9T4n4,\"Danny takes a bullet during a raid, and Ray searches for the wound.\"\ntt0091875,opseGWIdLd4,Things quickly turn violent when Gonzalez and Danny arrange to trade Anna for the cocaine.\ntt0107863,lqdyZpgCnXQ,Jimmy humors the posse as he defends himself in a discussion about racial history.\ntt0084732,-oeFJvhvMik,\"When Sam gets stuck while working through George's dream, Brooke helps him with the missing piece.\"\ntt0100680,F10EFVISERQ,Kelly tells her mother that she got pregnant just to spite her.\ntt0084732,9hCHM2Oj1wQ,\"While Brooke is working the auction downstairs, Sam takes the opportunity to snoop in her office to investigate a newspaper clipping she ripped up earlier.\"\ntt0075268,SQ_rMhKlNFE,Craig and Joe switch up their partners on a double date.\ntt0100680,V-eoS6kEyeg,Stanley walks Iris home after he fails to catch the man who stole her purse.\ntt0100680,2Z5WH83Vhs8,Stanley practices his reading skills a little too loudly at the library.\ntt0075268,KDQqlRIFcAQ,\"At a barbeque, Joe offers to show Dorothy that not all weightlifters are homosexuals.\"\ntt0100680,JOqFKM-dt5Y,Iris interviews an illiterate Stanley and records his answers.\ntt0084732,QUTDoPuCUcg,\"After following who he thinks is Brooke into the park, Sam runs into some unexpected trouble.\"\ntt0122690,dKoFTEK7O_o,\"In an effort to avoid the cops while parked in the car, Sam kisses Dierdre, and for fun, she kisses him back.\"\ntt0075268,3iD4rM9utqc,Anita fights off some intruders at the gym.\ntt0070653,qpLovLQoJ6c,\"When the police arrest Scorpio for heroin, McLeod makes him an offer he can't refuse.\"\ntt0070653,3eA0tlN-WMY,\"Filchock visits Scorpio and informs him that Cross, the man he was supposed to kill, is back.\"\ntt0084732,1NBRkyfy4lA,Sam reflects on a dream George once shared during one of their therapy sessions.\ntt0385988,2ohNiVtAwJY,Percival saves Linet from the belly of the wolf.\ntt0100680,2SnugUXqVJc,Stanley notices that Iris wears different sweaters depending on her mood.\ntt0084732,O6frj4BOJJU,\"Brooke forgets her keys in the house, which gives Gail the opportunity to isolate her victims.\"\ntt0075268,Xk7IjHYLVH4,Craig and Mary Tate spend the night with each other.\ntt0100680,N-VlQuj49a4,Iris tells Kelly about the exact moment she began to understand motherhood.\ntt0070653,9GagOWlFd-U,Cross loses his pursuers with some aggressive driving.\ntt0107863,DdZNLekEcIQ,Lana discovers the truth about Carver and Father Time meets his end.\ntt0075268,9fnjkSES3VM,Craig gets a personal workout with Joe.\ntt0084732,2315p7LJusg,Sam bids arbitrarily on a painting in order to send Brooke a note warning her that the police have their eye on her.\ntt0070653,rfix60WuBxs,Scorpio cleverly gives one of McLeod's men the slip in the hotel lobby.\ntt0070653,df-YzAnQJpU,\"Scorpio and another agent give chase to Cross, who fights back at a dangerous construction site.\"\ntt0114287,Oum7mEtv05g,\"After Montrose orders him to be hung from the bridge, Robert attacks Archibald, then escapes.\"\ntt0100680,kA_BtqogJNk,Stanley tells Iris all about his recent successes and then proposes to her in a very practical way.\ntt0107863,SzUPAc8HTOI,\"During the shootout, Jesse tries to take out the Gatling gun with some dynamite.\"\ntt0075268,Pbr6HpxJYm4,\"At an old country hoedown, Joe plays some music and Craig drinks some moonshine.\"\ntt0070653,i6ymVjU5hno,Cross sets up a secret meeting with Scorpio to warn him that McLeod is not all that he seems.\ntt0070653,IVZd3YBqxEc,\"Zharkov explains to Cross why, in spite of all that has happened to him, he is still a Communist.\"\ntt0122690,7gc1EIrxjws,Dierdre and her team chase the target through the Italian countryside.\ntt0100680,dw2jrtR9Px4,Stanley offers to iron for Iris after she tells him how stressful her day has been.\ntt0114287,wosztGGnWt4,\"Lord Montrose makes a deal with Robert for his land, while alternately complimenting and insulting him.\"\ntt0075268,Mr8aBk7ub2g,Joe competes in the Mr. Universe competition.\ntt0075268,EshEWL1ZhCc,\"Backstage at the Mr. Universe competition, Joe explains to Craig that it is important to \"\"stay hungry.\"\"\"\ntt0084732,rfeKwl7Dyg0,\"After the lights go out in the hallway to the laundry room, Sam hears strange noises and suspects he is not alone.\"\ntt0075268,eJWSp6A1Ks0,The bodybuilders take over the streets following the Mr. Universe competition.\ntt0086999,PZ93GNHBHsE,\"Turbo dances on the ceiling, which impresses his chicky-babe, Lucia.\"\ntt0086999,89g2af1Qw0I,\"Kelly and the gang dance and sing their way to Miracles, a dance community center.\"\ntt0086999,kjd3eUIBSj0,\"After revealing to Ozone that she might be leaving for Paris, Kelly finds herself on the receiving end of some serious threats from Ozone's ex-girlfriend.\"\ntt0086999,l53Q1UXk2DE,A downtrodden hospital comes to life with the power of dance.\ntt0086999,KzVgbCFwn0U,\"When Turbo asks Ozone for advice on how to get the attention of a girl, a sudden and bizarre rivalry ensues between them.\"\ntt0086999,a-Z66uN97Ds,\"As the bulldozers come to raze the Miracles Community Center, Turbo takes a stand and creates a miracle of his own.\"\ntt0071746,p0CKoz0u6Eo,Lenny talks about the sexual needs of men compared to women.\ntt0118900,QL4mGMAjHBg,Cynthia sticks up for the man that Divinci and Rodriguez forced her to pick out of a lineup.\ntt0102103,Fk17A1jyjKo,\"When Chopin breaks off his kiss with Sand, she encourages him to get some fresh air, which leads to him getting slapped.\"\ntt0102103,petKvkHfPJo,\"Chopin leaves dinner due to a coughing fit, while de Musset gets challenged to a duel.\"\ntt0059287,ZkCH653K2cc,\"Peachy Keane leads the ad men in a song praising their boss, B.D. MacPherson.\"\ntt0089348,4PcE-gNqFfU,Hunter drives his truck into a mall shootout.\ntt0102005,8YCMjAOgFpo,The Marlboro Man has a final showdown with Chance Wilder.\ntt0102005,SMYJOm56YvY,\"When Alexander holds the Marlboro Man hostage, Harley tries his best to help.\"\ntt0251114,1_vxyocjxg0,McNamara puts his life on the line in the stead of his soldiers.\ntt0093200,MvYuTdiMcRk,\"Bobby introduces Hollywood's first Black Acting School, complete with Jive Talk 101 and other offensive stereotypes.\"\ntt0059287,tr3ORGLT_W8,The only way to know how to stuff a wild bikini is to sing about it.\ntt0093200,IL_B1fmfl_c,Bobby and Tyrone imagine what it would be like if they hosted their own movie review show.\ntt0102103,LDsysmP_8yo,A drunken de Musset tries for one more tryst with Sand before his duel.\ntt0080895,KmCgqSJnzrc,A little league game turns ugly when tensions between Max and Tom boil over.\ntt0102005,54SNIVms9vo,\"After taking heavy fire from Alexander, Harley Davidson and the Marlboro Man escape through the back window.\"\ntt0080895,_WzzevY4_Ys,\"Alarmed to find a police car out front, Elaine is relieved to discover that it's only a visit from Jack.\"\ntt0102103,oKmBIC6X6Fs,Sand professes her love for Chopin and reveals herself to be the author of the love letter.\ntt0102005,ktFZq_8XXOg,The Marlboro Man explains his five rules of shooting pool.\ntt0102103,Uw98q-YIFec,D'Agoult tries to convince Liszt to sabotage the potential relationship between Sands and Chopin.\ntt0093200,pE5pl9UG93I,\"Bobby feels too guilty playing a negative stereotype, so he quits the movie.\"\ntt0080895,_8N1uJZUyaY,\"Distracted by Elaine, some mall cops drive a security cart into a light pole, smashing the ball and sending cash everywhere.\"\ntt0102103,OcNjc5lfvpM,\"Chopin faints during his duel, leaving Sand to finish off the job.\"\ntt0102005,tVfrMp_MWw4,Harley Davidson asks the Marlboro Man some philosophical questions.\ntt0059287,VEgR-CiTK2E,\"Through song, Frankie and Dee Dee reveal their subtle lamentation at having to settle for second best when it comes to matters of the heart.\"\ntt0102103,AGUMsaszNKM,D'Agoult gives Sand advice for wooing Chopin.\ntt0080895,x21gkEu5lKc,\"Elaine finally catches up with Louise and Jane, who are distraught until a bag of money reappears.\"\ntt0102103,pmC3rsgHD9E,Chopin is shocked to discover Sand hiding under his piano as he plays.\ntt0102103,g2dAymk715E,\"De Musset writes a play satirizing his hosts, Chopin protests, and an explosion ends the performance.\"\ntt0059287,61_aprVh2FQ,Ricky rebuffs Von Zipper's intimidation tactic and makes a fool out of him.\ntt0093200,iG4GVhx6oGc,A series of actors audition for the roles of stereotypical ethnic gangsters.\ntt0093200,Wo3qdzlpPdg,Struggling actor Bobby finally lands a role.\ntt0093200,5RzSW0dc9dE,Bobby feels guilty that his acting debut as a street pimp will enforce negative stereotypes of African-Americans.\ntt0093200,pt-Ir7xS29Y,Members of the community tell the press their strong feelings against Bobby Taylor and come to the conclusion that he has to die.\ntt0059287,khg8XoyKzs4,\"When 'Peachy' Keane selects Cassandra as his spokesmodel, the other bikini babes try to serenade him into thinking otherwise.\"\ntt0059287,PJQ2AiURctI,\"Ricky defends Dee Dee from a home invasion by Pete, a member of the biker gang, The Rats.\"\ntt0059287,PBHZhxrhO4E,Dee Dee is declared the 'girl next door' when she wins the motorcycle race by disqualification.\ntt0085672,sIB8AdUqEqg,Hercules defeats two charioteers during one of the King's tests.\ntt0059287,qfIzHlWOiuE,\"When Dee Dee learns that her boyfriend -- currently overseas -- is cheating on her, she decides to do something about it.\"\ntt0102103,7w2iVXAHiPk,\"Sand and D'Agoult marvel as Liszt performs, and Duchess D'Antan prepares for Sand's arrival.\"\ntt0085672,qkjpTwOa0GY,\"Ariadne tries to kill Hercules, but he escapes.\"\ntt0102103,d_jEVMQc0ig,Duchess D'Antan barely contains her excitement as she welcomes Sand and her companions to her home.\ntt0093200,PSmJNK9zhR0,\"One hooker tries to warn the others about street pimps that are out on the attack, but when one hooker doesn't listen, she pays for her mistake.\"\ntt0059287,z9MEhN5rjmg,Frankie gets transported back home with the help of the witch doctor Bwana and his daughter.\ntt0085672,I1CjDw569ss,Hercules creates the great continents by separating Europe from Africa.\ntt0080895,5UKpz6Gsyu4,\"Jack tells Elaine how he really feels about her, and they kiss.\"\ntt0085672,NvPYToFoU2M,\"Hercules battles a giant robot on the isle of Thera, but Circe dies.\"\ntt0085672,koX0RDUQHFs,Hercules and Circe create a magical chariot and take a ride into space.\ntt0093200,65ltaw4SF38,\"Ace interrogates Jheri about his whereabouts the night of the murder, and holds his curl activator as ransom.\"\ntt0080895,YBQ90wbJ7MY,\"To determine if she's psychologically capable of committing robbery, Jane attempts to steal from a supermarket.\"\ntt0093200,GxMoPTqev8g,Rambro reenacts a scene from Rambo.\ntt0085672,6i3eC2gzxXA,Hercules' father is impressed when Hercules uproots a tree with his bare hands.\ntt0085672,VwE2USOqfNg,Hercules battles a fearsome winged creature.\ntt0085672,D_5kpc0cUWk,Hercules defeats King Minos to save Cassiopeia.\ntt0068673,WrYDmyHlxqY,Hammer defeats Irish Joe Brady and takes the championship.\ntt0093200,2NLGmRYLvsY,Bobby daydreams about fame when his boss Donald threatens to fire him if he doesn't get his act together.\ntt0080895,lRVUsY_rcCo,\"In order to distract the shopping mall crowd from the robbery, Elaine starts to strip on stage.\"\ntt0109913,3_NMhC6GR04,\"After Max finishes cutting Ely's nails, they start to make out and get intimate.\"\ntt0109913,vyN2oD5tI80,Evy is confronted by her mother for being a lesbian.\ntt0118900,otQ_oCvSq6E,\"Arthur tricks Cynthia into admitting that she knew \"\"Joe\"\" before his supposed crime, thus destroying her false testimony.\"\ntt0109913,qUMSld6BwC0,The girls sit around and talk about what to call their private parts.\ntt0085672,7DhLw2aNu_Y,Hercules rescues Cassiopeia and takes care of Ariadne.\ntt0085672,yXeBhFzqzfY,Hercules saves his father from a savage bear and creates a new constellation.\ntt0093200,BUAPTnpOdVM,Speed and Tyrone give two thumbs down to a movie they watch starring Dirty Larry.\ntt0109913,lbIbVWmpcCg,\"When the girls play a drinking game, some secrets get revealed.\"\ntt0068673,worFlbNJG_w,Hammer finds out from Big Sid that Lois has been kidnapped in order to force him to throw the fight.\ntt0080895,lwo1GnbKOW8,\"Unable to use her garage door opener, Elaine calls the Power and Light man, who doesn't believe her story.\"\ntt0085672,wrYcEEv737c,\"Hercules is trapped with a creepy old witch, who turns out to be a powerful ally.\"\ntt0118900,QC4b5Aoff1I,Divinci justifies their actions when Rodriguez's conscience starts to kick in.\ntt0080895,Ubr_vvAzvtA,Louise visits Albert at his office to ask for money to cover her antique business.\ntt0068673,k1fiQFCN2Zs,Hammer jumps Brenner in a parking garage and takes him out.\ntt0109913,E_tzgBTGxEM,\"Max tries to console Evy after she is kicked out of her house, but she only manages to aggravate Evy even more.\"\ntt0109913,ytQv31xRLGo,Max and Kia debate their tastes in women and dating styles as Kia tries to find Max a girl.\ntt0118900,i4GeD9FWdG4,\"Divinci and Rodriguez consider their circumstances after they learn that the homeless man they pinned the murder on is actually a \"\"saintly\"\" surgeon.\"\ntt0109913,nSEGOd89xWw,Ely and Max tell their friends separately about what happened on their date the night before.\ntt0080895,O0twX6iB62U,\"During lunch at the mall, Louise, Jane and Elaine brainstorm ideas for making money.\"\ntt0080895,Yg7ulcF39e8,Louise storms out on Albert when she learns that he's suing her to force her into bankruptcy.\ntt0109913,hdaAD9fxKXA,Max fantasizes about Ely at the breakfast table and what it would be like if they dated.\ntt0080895,FzOGfMXmfF0,\"Elaine returns home to find a message from her husband telling her that he won't be coming home tonight, or ever.\"\ntt0068673,S8WazHAxJLM,Hammer makes quite an impression on some men nearby after he brutally wins a fight against Riley.\ntt0109913,xvVqMR_f6IY,Ely and Max get to know each other better when they have a conversation over the phone.\ntt0068673,6JTplpmC6AA,Brenner takes out Roughhouse by trapping him at the end of an alley with his car.\ntt0118900,cpO3ALFscmQ,Divinci and Rodriguez convince Joe that he committed their crime.\ntt0089348,UvpLAMfYgJ8,Rostov blows up Hunter's house.\ntt0118900,2Rlao83KneM,Rodriguez freaks out when he finds out Divinci used the gun from another murder case.\ntt0118900,e0fFbNV1ySY,Divinci confirms his suspicions that Rodriguez has turned on him and has been recording their conversation.\ntt0068673,5iyXb_jNvgc,\"Hammer, Davis, and Bruiser run in and save the professor.\"\ntt0068673,S01OvbVQhGc,\"When Sonny and his men try to heckle Hammer, he shows them who's boss.\"\ntt0118900,kWPc7z2IMkA,\"After being on the run for four months, Divinci goes after Cynthia for confessing the truth.\"\ntt0118900,p12YiRom_Kw,\"Divinci coaches Rodriguez through their mistake of killing an undercover cop, convincing him it will be easy to cover up.\"\ntt0048254,6HH44dvOLJw,\"Gloria seduces Vincent to stall for time, enabling Davey to escape.\"\ntt0048254,nH40NtYdL-U,Vincent and one of his thugs pursue Davey across the rooftops.\ntt0089348,E5zvQmTrzVU,\"Hunter traps the Russians, and they try to flee.\"\ntt0048254,KzSRd6xpR04,\"On his way out of town, Davey reunites with Gloria at the train station.\"\ntt0068673,wzJObNk-flo,Henry manages to escape the police in a fiery junk yard.\ntt0071706,6bn4rdEiqg0,Nicholas receives ransom instructions from Juggernaut while McCleod chases down the call.\ntt0118900,0WuMU0zi02w,\"Already distressed from just having ratted out his partner, Rodriguez comes home to find his bookie waiting for him.\"\ntt0048254,jfYvV2tBEz0,\"Davey holds Vincent at gunpoint to rescue Gloria, but Vincent's thugs turn the tables.\"\ntt0089348,QdIw0bzY3oc,Hunter blows up two guerillas behind a wall and Rostov comes after him.\ntt0048254,grlDMsiQ2Yc,Vincent and Davey face off in a fight to the death at a mannequin factory.\ntt0048254,f1Nh9DlkZ1w,Davey wakes from a nightmare to the screams of Gloria being attacked by Vincent in her apartment.\ntt0089348,GxcZL7EM5Zo,Hunter confronts Rostov and blows him away.\ntt0068673,bBeHRwjwKk8,Brenner makes The Professor a proposition for his fighter.\ntt0089348,HrFmuAN50BA,Hunter uses extreme force -- and a knife and a hand grenade -- to get information about Rostov's whereabouts.\ntt0071706,wZheb1gbe58,Corrigan is confronted by a passenger who wants to know why they are traveling in circles.\ntt0071706,ghNPXViyQoU,Brunel calls Porter who tells him that they are not going to pay the ransom.\ntt0089348,SN39w-Bnlgg,Hunter saves a church from the Russian terrorists.\ntt0068673,w1pIFZb7480,Hammer trains for his upcoming fight with help from Professor.\ntt0089348,ITEod2_WHoU,Rostov brutally destroys homes in a suburban neighborhood.\ntt0071706,C-7X5i_EQPE,McCleod questions O'Neill who refuses to tell him anything.\ntt0068673,jTRa22j4OUk,Henry is incapacitated after Brenner and his men give him a strong injection.\ntt0109913,d8Ff_W4-4VE,\"After Max and Ely share their first kiss, Max learns that Ely has a girlfriend in Seattle.\"\ntt0109913,kuQQoH9skXc,Ely and Max contemplate going to the movies after their third friend flakes out at the last minute.\ntt0071706,vozS5ppNzAM,Azad save a little girl trapped behind sealed doors when the bomb team begins their work.\ntt0071706,VWWchm35s-Y,Porter makes it very clear to Curtain that he is going to go against the government's wishes and pay the ransom money.\ntt0109913,KVncpZkleFc,Daria's sexuality is questioned by her lesbian friends because she had sex with a man.\ntt0089348,whUo8sI5OuY,Hunter saves a school bus full of singing children from a bomb that the terrorists plant.\ntt0089348,BTVWvOpPkIo,Hunter warns Rostov of his impending doom via television.\ntt0071706,7L0xuL1thp4,Fallon disarms a bomb and receives a call from an admiral.\ntt0071706,xpSqCE8wCOU,\"While trying to diffuse one of the bombs, Charlie blows himself up leaving Fallon to give up hope.\"\ntt0251114,w610fTL5O-A,Lt. Hart comes across an unusual checkpoint.\ntt0251114,qA73y2w3WUc,Lt. Hart offers evidence that proves the killer was white.\ntt0071706,FwHnNe_ItOY,\"When word comes that negotiations have broken down,\"\" Brunel tries to convince a drunk Fallon to go back to the bombs.\"\ntt0068673,Tzt-axwwOUY,\"When a black militant party member questions Hammer's authenticity, he puts him in his place.\"\ntt0251114,Ih-_ZmPZ1x8,Hart confronts McNamara about the tunnel.\ntt0071706,qh1KCsqqHFY,Fallon has a hunch and takes a gamble on cutting a wire.\ntt0085672,jPSjDk0CM68,Hercules defeats a group of wrestlers using a huge log.\ntt0102005,_F4WjvMnL6Y,\"The Marlboro Man gets pulled over for speeding on his motorcycle, and is intimately frisked by a sexy female cop.\"\ntt0251114,_hX3fkzGrxk,\"After a friendly fire attack, the prisoners scramble to spell \"\"P.O.W.\"\" to the fighter planes overhead.\"\ntt0089348,iRmtQ5DlvuQ,Hunter drives a truck into a mall and window shops for some terrorists.\ntt0071706,nXoPEmh39ls,\"Down to the last second, Sidney tells Fallon to cut the blue wire.\"\ntt0089348,tLiJueTgu44,\"Dressed in disguise, Rostov pretends to welcome a boat of refugees while really interested in the goods below deck.\"\ntt0251114,HLxJLrrC5mE,Staff Sgt. Bedford finds the consequences for throwing bread across the fence to the Russians.\ntt0071706,mTYwZEhFwu0,Nicholas receives a call at home from a man telling him that the Brittanic is rigged with bombs.\ntt0102005,gNEB3vRczjA,The Marlboro Man and Harley Davidson deal with complications during the bank robbery.\ntt0102005,44-8o-jEDB0,\"With nowhere else to go, the Marlboro Man and Harley Davidson take a leap off the building into the pool below.\"\ntt0251114,ohnhJ6gyLhk,Lt. Scott and Archer are introduced to Barracks 27.\ntt0102005,kItLDGtPMMI,Harley Davidson gives the Marlboro Man a gun for his birthday.\ntt0251114,8I_QMs_Mjb0,Col. Visser gives some unexpected help to Lt. Hart which could greatly help his client.\ntt0102005,OK_v02xShhs,Harley Davidson knocks out two men trying to rob a convenience store and in return gets to pump all the gas he wants.\ntt0102005,cpQQpn89mEs,Harley Davidson takes on Jack Daniels in a bar fight.\ntt0048254,8dPqVrwBp7s,\"Gloria picks up her last paycheck from work, but Davey misses out on his pay when his manager gets robbed by some thugs.\"\ntt0048254,QgdvS-09ygk,\"Davey and Gloria kiss for the first time, but when he says he loves her, she questions his sincerity.\"\ntt0251114,OZNLJj4pJsw,Col. McNamara and Col. Visser discuss the war and the future.\ntt0251114,oub2YWXPV6g,Col. McNamara and his men salute Russian prisoners when they are hanged by the Germans.\ntt0048254,60PDxhI6y4g,\"Davey and Gloria leave their apartments at the same time, and Gloria is picked up by her boss Vincent.\"\ntt0102005,AesICMoanS0,The Marlboro Man and Harley Davidson prepare for a shootout against Alexander and his men.\ntt0071746,SyXqFhSPWBg,\"Having cheated on Honey, Lenny implores the men in the audience to always \"\"deny it.\"\"\"\ntt0071746,LWkbKaDHXbw,\"Lenny gives a routine about doing it\"\" after sleeping with Honey for the first time.\"\ntt0048254,URvrDySPc4U,Gloria and Vincent watch on television as Davey loses his fight against Kid Rodriguez.\ntt0048254,0XzQX-i3y_I,Davey tucks Gloria in and she tells him about the attack by Vincent.\ntt0104765,vH8nss4M93g,\"A road block causes Lurene to panic and run, leaving Paul to be arrested.\"\ntt0104765,xLIEyHRfbv4,Lurene tells Ray of her plan to attend the President's funeral.\ntt0071746,a2lb_3-fYFc,\"Lenny is hauled off to jail after an \"\"obscenity\"\" plagued monologue.\"\ntt0104765,6kdms5umbhA,\"Paul tries to leave Lurene at a gas station, but she insists he owes her a ride to the funeral.\"\ntt0071746,4QsATC7VdUk,Lenny begs the Judge to let him do his act for the court.\ntt0104765,zvgXyU1STYI,Lurene accuses Paul of kidnapping Jonell.\ntt0104765,XGkwMwwlTLQ,\"Paul storms off when Lurene implies their problems are similar, and then he returns to the barn and kisses her.\"\ntt0104765,DSoLhO7jVzk,\"Lurene strikes up a conversation with Paul, to the disapproval of the other bus passengers.\"\ntt0071746,2J4gviivSJU,Lenny performs an on stage bit about lesbians to get back at his wife.\ntt0104765,vK7tEsNZtFs,Lurene misses her chance to shake hands with Jackie Kennedy at Love Field in Dallas.\ntt0071746,o_6VSJ_RjkE,Lenny tries to diffuse the power of racial slurs by overusing them on stage.\ntt0071746,fXcQVdBqtaY,\"Lenny praises stag movies, then gets into a car accident with Honey\"\ntt0104765,2fkfpdMG-KQ,\"Sensing a panic in the streets, Lurene discovers that President Kennedy has been shot.\"\ntt0071746,vBhBkvkofjk,\"Strung out on heroin, Lenny flails on stage.\"\ntt0071746,2i-3w7WnPiU,\"Audio of Lenny's \"\"to cum\"\" bit is played in the courtroom.\"\ntt0104765,YjwB9d1tpJE,Paul returns from prison and reconciles with the recently divorced Lurene.\ntt0070379,OopV0xphrrA,Johnny Boy and Charlie discuss money and which girl they want to take home.\ntt0104765,HdaBcsWogXE,Lurene calls Ray for some money and hangs up on him when he says she needs help.\ntt0104765,d-2r0wMjfrY,\"The police catch up with Lurene and Jonell, but after she's placed in the cruiser, Lurene finally gets a glimpse of the First Lady.\"\ntt0283897,F6Y4Vd970zw,\"ohn risks life and limb to track down his daughter's birthday gift, even though he knows he's being watched and hunted by his enemies.\"\ntt0373469,MPDs_ZJMc90,Harry has an emotional breakdown after a dog steals his severed finger.\ntt0070379,qkGDaroLl_M,Charlie parties until he passes out.\ntt0070379,EpD-Hu37w5k,\"When Charlie drives to Brooklyn, Johnny Boy gets shot by Jimmy Shorts.\"\ntt0105690,rba9NiqG9PI,Ryback neutralizes several terrorists using hand-to-hand combat.\ntt0086999,HkDkImVLQGc,Ozone tries to negotiate a truce with the Electros to no avail.\ntt0105690,t69ZfcWPZFY,Casey fights back against the terrorists while taking a call from the Pentagon.\ntt0438488,2zGJ_oOECv4,\"After stepping on a land mine, the resistance discovers who Marcus Wright really is.\"\ntt0373469,XQdxHzDK12o,\"Harry hits on an attractive woman in a bar and discovers that she is his long lost friend from childhood, Harmony.\"\ntt0373469,jF9GE50ioFo,\"After discovering a woman's corpse in his bathroom, Harry and Gay Perry must move it before the cops arrive.\"\ntt0059825,KQcLnNoYMWU,Labiche stands guard as the resistance fighters paint the train white to denote the cars containing artwork.\ntt0091055,21GAl13VImg,\"At first in complete awe, the team celebrates when they find a mountain of gold.\"\ntt0091055,yBxr5ACMH5U,Max calls Leo a sissy and Patricia a fruitcake.\ntt0091055,SV73jXKrQ80,Leo masquerades as a Priest and fakes the last rights to a dying man.\ntt0295289,yXcVX57I2JU,Paul gives an agonizing presentation in front of his co-workers while he starts to realize a heavily growing itch in his crotch.\ntt0052896,MyINcc8SDd4,Shirl compares Tony to a kiwi bird - all talk and no action.\ntt0295289,6-L8WG51noY,Jim tries to play it cool in front of Paul but Tonya blows his cover when she reveals their couple pet names.\ntt0295289,p8t_xV4Lf0A,Ray accuses Paul of sleeping with his girlfriend and proceeds to dump food all over him and throw him in a dumpster.\ntt0295289,LKVcX3959I0,\"Paul gets Becky out before Karen can see her, but he has a little trouble thinking of a place to hide Becky's Hawaiian bikini underwear.\"\ntt0295289,2fWpPZaxmM8,Pete gets Paul worried about his indiscretion with Becky while they are tux shopping.\ntt0070379,p92CKGAeQUY,Johnny Boy disrespects Michael by refusing to pay him back.\ntt0070379,MIGDyLqwY7Y,\"When Johnny Boy and Charlie get busted for brawling, the arresting officer shakes them down.\"\ntt0070379,Si5R7-KZWFY,Teresa asks Charlie about his likes and dislikes.\ntt0070379,E0wfFdGnwx0,\"Tony kicks a junkie out of his bar, while Michael makes a poor business decision.\"\ntt0070379,_DbFZkXD8WA,\"Johnny Boy, Charlie, and Michael flee from Tony's bar after a shooting.\"\ntt0070379,BS-6KavRfww,A guy with a gun shoots a drunk in the restroom.\ntt0070379,7xt32rq7iD8,Johnny Boy blows up a mailbox while Charlie goes to church to contemplate his spirituality.\ntt0096769,reQPn8oDC2c,\"Kevin, anticipating an attack, accidentally beheads Joan at the surprise birthday party she planned for him.\"\ntt0049414,kHRSh7JOKxo,\"Gordon reveals to Ellen that Dwight's death was not suicide, but murder.\"\ntt0096769,TPQeRElxu2o,\"Prof. Derek breaks free from the rope, takes the ax, and kills Russ but catches on fire in the process.\"\ntt0096769,me7nuXZfXVM,\"When the car won't start, Amy runs away but is attacked and mauled by wild dogs.\"\ntt0096769,skMchQx_U_k,\"Alex gets a disturbing call from a man and when she tries to warn her friend about him, she's too late.\"\ntt0049414,chlwxs2dfVA,\"Promising to marry her, Bud takes Dorie to the roof of the courthouse, but his motives might be sinister.\"\ntt0049414,EimQSagV_8k,Bud concocts poisonous pills intended for his pregnant girlfriend.\ntt0096769,irglCpn_Hs8,Russ exacts his revenge against Prof. Derek by tying him up and starting a gas fire ring around him.\ntt0096769,fiziIJ6zTU8,Wild dogs attack the girls' car and the dog's master jumps on top and stabs through the roof as they drive away.\ntt0096769,XRUO2E9UQro,\"Alex limps away on her crutches from Richard, but after she stabs him, he may still have some fight in him...\"\ntt0049414,dKleqAHv-Zw,Ellen and Bud struggle for dear life near a perilous cliff top.\ntt0096769,roxNsu1YELE,Allison wakes up and realizes that the terror she was running from was all just a nightmare.\ntt0096769,vSjkkQ6Bfc4,Prof. Derek turns a cynical student into a believer of real fear when he points a gun on him and pulls the trigger.\ntt0303714,MCtE3Y28IR0,An angry woman takes out her anger on a barber shop patron's car.\ntt0069897,tTrgUKsKetY,Omar ties up King George and drags him from the car as Studs watches in horror.\ntt0086946,g0HwVyKSC_8,\"Lee dances for Tracy's class, but when the teacher won't replay the video, Double K takes the tape.\"\ntt0049414,LHVll_0Hmh4,Ellen tells Gordon how she's piecing the clues together about her sister's apparent suicide.\ntt0049414,3SessG74yMk,Ellen questions Bud about why he hid his past with her murdered sister.\ntt0283897,kNMc5CKw4G0,\"John and Manuela get to know one another better as they talk about love, life, and family.\"\ntt0049414,Ejp4AjvBuGw,\"Bud kills Dwight, making it look like a suicide.\"\ntt0049414,8BY36nM4_HI,Ellen falls in love with Bud.\ntt0049414,nWRelGmpmxQ,Things backfire for Ellen when she tries to get the drop on her sister's suspected murderer.\ntt0049414,ZYOhqPzYRjs,\"After giving Dorie poison the day before, Bud is shocked to see her at class.\"\ntt0049414,80htzZ3-XwA,Bud tells Dorie he'll marry her if she's still pregnant after a few days.\ntt0283897,tJHkiRzd05M,\"John and Manuela go for a dance lesson, and then later, to the zoo, where Manuela reveals her admiration for the black panther because of its inherent elegance.\"\ntt0096769,2nacHERVnsY,Prof. Derek teaches his class about the reality of fear by staging his own pretend suicide in front of them.\ntt0283897,kVXAITzqSgc,John is mesmerized by a sexy performance of the tango.\ntt0283897,M9rOG76v0qY,\"John makes his way over to Manuela's table to arrange tango lessons, but finds himself rebuffed.\"\ntt0303714,oPOqdtLP8XM,\"When Calvin tells Eddie that he sold the shop, Eddie shames him with a piece of his mind.\"\ntt0283897,H9TUkZR66o4,John gets insulted when a cop comments about him looking tired.\ntt0303714,YJhs9wqT7qE,\"Eddie explains what \"\"seniority\"\" means to the young men.\"\ntt0283897,U_5JpJYsufQ,John argues that he's the best man for the job because he's the only one who can get the job done right.\ntt0283897,Sms4grRcCck,John dreams of performing the tango with Manuela one last time.\ntt0283897,BL9xCIeznI8,John accomplishes his mission.\ntt0303714,n7W0yxKnuvs,Calvin sells the barbershop to Lester who plans to turn it into a strip club.\ntt0303714,GNsD8EVetbU,\"While he's rolling the cash machine down the street, J.D. nearly gets caught by the police.\"\ntt0303714,N_tNwz5Bxwk,Eddie preaches about what it used to mean to be a barber while showing the others how to give a proper shave.\ntt0303714,oSpMQ0WtrSs,\"When Billy's sister threatens to tell mama about the stolen cash machine, he and J.D. are forced to move it.\"\ntt0303714,ZtE1j9UnzC4,Terri Jones breaks up with her lame boyfriend Kevin.\ntt0303714,7U-et8qOXLs,Eddie's speech on Rosa Parks leads to an argument about the things black people should tell the truth about.\ntt0303714,RczW1gIRBjY,The crew of the barbershop debates about slavery and white reparations to black people.\ntt0303714,1MUi4ZiJUsA,\"Calvin decides to keep the store, but when he tries to give back the money, Lester wants double.\"\ntt0086946,Ph6hXpPbl0s,The Treacherous Three perform 'The Santa Claus Rap.' This is an early performance by Kool Moe Dee.\ntt0086946,frqy8o30rv8,\"Melle Mel and the Furious Five perform to a full house, rapping about the world's massive iniquties.\"\ntt0086946,SiJQJiUZ5Jw,A dance battle gets broken up by the cops and Lee gets caught.\ntt0086946,cigrbhwjTnI,The Bronx Rockers step up to Beat Street in the club and a dance battle begins.\ntt0086946,8aQFiCfxz6M,An all-out breakdance extravaganza finale featuring a cavalcade of performers.\ntt0086946,fpnoVKmulZM,The Us Girls put on a performance that raises the roof beyond all comprehension.\ntt0086946,hyXCJXsHX3A,Double K takes Tracy to show her what Ramon and Lee are painting at the station.\ntt0086946,d7he8f2L_BE,Ramon and Double K throw a burner up on the side of a virgin train.\ntt0068284,_lnD3Fh-kYg,\"After seeing Tina die, Blacula takes his life by going out on the roof while the sun is out.\"\ntt0068284,9gdhd-EerNw,\"Blacula makes his intentions clear; to revenge himself upon his attackers, leaving no-one alive!\"\ntt0055798,3SAElnJHcNc,\"Bored with life in solitary, Stroud teaches his injured pet sparrow to fly.\"\ntt0055798,FRVB-HBxR98,Fellow bird-lover Stella convinces Stroud to go into business selling bird remedies.\ntt0094862,XY3urIUUizU,\"Chucky attacks Mike while he's driving, causing him to crash the car.\"\ntt0068284,4a71NDQWOMM,Blacula is waiting for Dr. Thomas and Lt. Peters as they try to escape a warehouse crawling with vampires.\ntt0069897,BOYsnywXTu8,Things get heated when Coffy attacks Meg and the rest of the prostitutes at the party gang up to defend her.\ntt0055798,c9_46Iv_GGM,\"Stroud, relieved that his death sentence has been commuted, learns from Shoemaker that he must spend the rest of his life in solitary confinement.\"\ntt0068309,luhE1BFZN9U,\"Bertha and Bill are reunited, but their reunion is short-lived.\"\ntt0069897,Tt9v8E7Owxo,Coffy seduces Arturo at his place.\ntt0094862,5xl30KAt6-w,Mike shoots at Chucky who terrorizes him in the overturned car.\ntt0068284,n92XBsqbSF4,\"Dr. Thomas, Lt. Peters, and some officers track Blacula to a warehouse, only to find a roomful of the undead waiting for them.\"\ntt0068309,Xp_xKQZigM0,Bertha is impressed by how Big Bill incites a riot against the railroad bosses.\ntt0055798,QbRnDoXuwkQ,\"After the death of his canary, Gomez reminisces about an ex-girlfriend who tried to train her parrot to speak.\"\ntt0068309,iTXqcn1qyCk,Bertha and the boys crash Sartoris' party and rob his guest's jewels.\ntt0069897,RE6QfwhDMhw,\"Coffy gets the information she needs out of Priscilla, and flees unharmed when Harriet the pimp comes home.\"\ntt0069897,2uQeLmDx98o,Coffy finds Howard at his beach house and guns him down to complete her quest for revenge.\ntt0055798,oow41RrqpHE,\"Stroud impresses the new warden with his trained sparrow, and seizes the moment to request some birdseed.\"\ntt0068309,Fnvug-nXPYg,Bertha and the boys rob a train and pick up a nice pile of cash.\ntt0068309,yJjnYpZCH8A,\"During a robbery, Bertha enjoys the power that holding a gun gives her.\"\ntt0068309,wmG3O9RvEaU,Bertha uses her feminine wiles to help the boys escape the chain gang.\ntt0068284,SATdGPY78z0,Dr. Thomas convinces Michelle to dig up one of the antique dealer's graves and they see he has become a vampire.\ntt0069897,g_mjMjs_eFY,Coffy drives through a house and offs Arturo after getting the information she wants.\ntt0055798,wO1s5eRplKs,Stroud appears distraught when convicts Burns and Logue start a prison riot at Alcatraz.\ntt0068309,sXatQewZKRw,Bertha and the boys continue robbing trains and banks.\ntt0055798,Moq-NmqnZR0,\"After Stroud starts a fight in the laundry room, Shoemaker puts him in solitary confinement.\"\ntt0068284,B22vWcjNR9I,\"Dr. Thomas and Lt. Peters open Blacula's coffin and find Tina, whom they stake.\"\ntt0055798,yJlwArJRkmE,\"Stroud transfers out of Alcatraz and meets Tom Gaddis, the man who wrote a book about him.\"\ntt0094862,crBqPflvzyQ,Chucky kills Maggie with a hammer.\ntt0055798,45d4aoDJnhw,Stroud ends the prison riot by throwing the convicts' guns out the window to Shoemaker.\ntt0068284,lh3qxTgaa1Y,Blacula attacks the two antique dealers that bought his coffin.\ntt0069897,AIeKpxgasMQ,\"Coffy pays a visit to a former patient and junkie, Priscilla, to gain some information.\"\ntt0055798,X4_8ByCyrUA,\"Stroud breaks a train window on the way to jail, making a bad first impression on his new warden, Shoemaker.\"\ntt0055798,2uSOBDMv_S0,Elizabeth forces Stroud to choose between her and his wife.\ntt0094862,CSuwuvVcRHU,\"Chucky tortures Dr. Death with his own voodoo, discovering some important details before killing him.\"\ntt0097138,Lt01tXTT0Ak,Gibson and Nady are ambushed by bandits.\ntt0068284,4uVC-cDpdpg,Dracula curses Mamuwalde into Blacula.\ntt0068309,wJJ2RLLVzcU,Bill donates all of his stolen money to the labor union.\ntt0069897,jRRY7zgE4K8,Coffy blows away dope pushers to avenge her sister's hospitalization due to contaminated drugs.\ntt0094862,WcSLuxBdYJ8,Chucky knocks out Andy with a bat.\ntt0094862,HSH9SG55kBU,Andy and Karen torch Chucky in the fireplace.\ntt0097138,8tteR5k1l-A,Gibson fights a gang of pirates in an abandoned factory.\ntt0097138,_LAoGdcXG3Q,Fender and his gang crucify Gibson on a junkyard ship.\ntt0068309,nkUx3zstpbU,\"When Sartoris' men get the drop on them, Rake can't bear to be captured.\"\ntt0094862,Js0YTLpY9bY,\"When Chucky comes back for one last scare, Mike shoots him in the heart, finally killing him for good.\"\ntt0068309,9R0If3RWk5M,Von shoots and kills all the men who tortured Bill.\ntt0069897,5E3TSzke-Fg,King George struts his stuff.\ntt0085384,P4PPhm_fJug,Sleigh has a drink at a cafe with an inflatable doll.\ntt0068309,4QL9q2mwZXI,Bill's enemies nail him to a train and leave him for dead.\ntt0068284,SJ671CSV2-M,Blacula tells his backstory to Tina and asks her to freely come to him.\ntt0068284,Wd7iSbGIDqs,Blacula gets hit by Juanita's cab and then attacks her.\ntt0068284,gboXDP4L4b0,\"When a reckless cop shoots Tina, Blacula has no choice but to save her by turning her into a vampire.\"\ntt0068284,J_OsoyDByWo,Juanita wakes up as a vampire!\ntt0097138,B62wGNHDYHA,\"Pearl asks Gibson for his help, revealing that she is a cyborg with a critical mission.\"\ntt0085384,4dS7rsMy1-Y,\"Sleigh takes a parasailing trip, until he's unexpectedly shot down.\"\ntt0085384,PK1aYqQgn-k,Sleigh and Inflatable Shirley get a room at a hotel.\ntt0097138,XITc_tguH2o,\"Crucified and left for dead, Gibson escapes his fate through the power of his will and with the help of Nady.\"\ntt0069976,j638xTM36I8,Purvis and his men kill Floyd in a field.\ntt0097138,vU1_EJh6Atc,Gibson finally gets the advantage over Fender.\ntt0085384,i812ZsyyeLg,Sleigh accidentally fills his hotel room with gas.\ntt0097138,Bzqkq2LwnOQ,Gibson's reunion with Haley is cut short when Fender returns for one last fight.\ntt0085384,mWqZWXSj-s0,Sergeant Sleigh accidentally trips and pushes Chief Inspector LaRousse off the balcony.\ntt0085384,e-oTHFL5_ec,\"Sergeant Sleigh pays a visit to Chief Inspector Dreyfus to apologize, and express his gratitude for being assigned to the case.\"\ntt0085384,Rtv_BhYXLh8,Professor Balls offers Sleigh the final disguise he made for Clouseau before his disappearance.\ntt0097138,Eghn9oMlSy0,Gibson begins his duel with Fender in the harsh rain.\ntt0085384,vY04JLQa1MQ,Sergeant Sleigh questions the Littons in an effort to learn information about his case.\ntt0097138,qKYRwuoqETc,Gibson and Nady fight valiantly as they are overwhelmed by the pirates.\ntt0069976,1C_7b05Rlvo,Dillinger meets Billie and proves his identity to her when she mocks in disbelief.\ntt0097138,p7rtU_AM1bE,\"Gibson takes on all comers as he fights his way to his nemesis, Fender.\"\ntt0085384,pSzusQmqyxE,\"Sleigh puts out a fire in Larousse's office, causing him to fall off the balcony yet again.\"\ntt0085384,XpdrOUgweIA,Sergeant Sleigh snoops around the wax museum and gets entangled with Cato.\ntt0069976,FeecJ5bAGHA,Purvis kills Dillinger in an ambush after a fake movie date.\ntt0069976,c-jOeDA-X0k,Dillinger carves a fake gun in his cell and uses it to break out of jail.\ntt0069976,fBB_lJ3Axqk,Big Jim Wollard arrests Dillinger at a local country dance.\ntt0069976,Sp1xdUY8R14,\"Dillinger kidnaps Billie, brings her to the hideout, and introduces her to the gang.\"\ntt0069976,w8O0iiBrIzM,Purvis receives a nickname of his own after capturing a notorious criminal.\ntt0069976,dUCUs8EtHoM,Dillinger and his gang make for a bloody getaway when a bank robbery goes very wrong.\ntt0069976,Wlrq_lGAn78,Purvis walks into an armed household and takes out the bad guys singlehandedly.\ntt0069976,U4DZWsXvRUA,John Dillinger spouts off as his gang robs a bank.\ntt0069976,osfdb5BrLPI,Sage cooperates with the police and gives Purvis some important intel.\ntt0069976,0en0UJ180yc,Dillinger and the gang are ambushed when the police receive a tip-off.\ntt0080661,SVGc5KwWRtM,Dr. Elliott keeps his patient's records confidential to the dismay of Det. Marino who is searching for a killer.\ntt0080661,GiNKTYoCWG4,Liz has a terrifying nightmare where someone sneaks into her bathroom and slices her neck.\ntt0080661,4qHuiCLkYHc,\"Liz uses every trick up her nonexistent sleeves to seduce her therapist, Dr. Elliott.\"\ntt0080661,2Et6MGSeXOU,Kate eyes a handsome stranger and passionately pursues him through a museum.\ntt0080661,Pys1zBR5jX8,Peter warns Liz when Dr. Elliott sneaks up behind her in a wig.\ntt0080661,iyCfFXxNtp8,Liz gets the money while Dr. Elliott watches Phil Donahue interview a transgendered person.\ntt0106873,aUCNlDzsDH0,Lola Cain offers Ned Ravine a wiener at the carnival.\ntt0080661,R8_HfT2ndyg,\"Liz calls an elevator to find a bloody Kate, and just before the door closes, she eyes the killer.\"\ntt0080661,KI97hqN52Ik,Liz explains in detail the procedures involved with sex change operations while Peter listens intently.\ntt0080661,0-81bpcuz44,\"When Liz is chased on the subway, Peter arrives at the last minute to save the day.\"\ntt0106873,kYQkkpRXgP4,Ned knows what Frank is up to...or does he?\ntt0106873,9lU01uvS3Nk,\"To Lana Ravine's surprise, she finds both her husband Ned Ravine and Frank Kelbo, her lover, in the same bed.\"\ntt0106873,4OW7CMS8PBQ,Laura shoots Lana and Lola one final time.\ntt0106873,kDFwUhn_1Ao,Ned chases and arrests Milo through an amusement park.\ntt0106873,wrmwJx6kYKc,\"Lana Ravine's trial begins, complete with sports color commentary.\"\ntt0106873,S3GG_HRE-D4,Max Shady is released from prison with a vow to kill Ned Ravine.\ntt0106873,OBPgy6HGL44,Ned Ravine is seduced by Lola Cain in his office.\ntt0106873,vPs5yv77m9Y,Ned Ravine meets up with Lola Cain at the bar and offers her a cigarette.\ntt0106873,70_b9ZEcxp0,Lana accidentally kills Make Shady on a train.\ntt0106873,Y3vhSZJthJM,Ned goes into a pet shop and encounters a loud mouth pet store worker.\ntt0091055,Tv6tdiEMGaY,Leo and Max get themselves caught up in a bar brawl.\ntt0091055,672m88mMLZ8,El Coyote holds Leo over water and asks Max to choose between his friend and the treasure.\ntt0106873,yKFEKBIXPxY,\"Ned and Lola enjoy some wild, sexy bedroom games.\"\ntt0091055,eZWHAM2EG3o,\"Patricia asks Max and Leo to find a treasure for her and in return, she'll split it 50/50.\"\ntt0091055,Dvze9_LZmC0,\"During a high-speed desert car chase, Max and Leo manage to drive right into a pool of water.\"\ntt0091055,lxQj06LN31A,Leo and Max make it just in time to save Patricia from sacrifice.\ntt0091055,hLNZCf1nuRo,\"Max and Patricia flirt with each other on a train, dressed as a priest and a nun.\"\ntt0091055,xKvmGfNhbF0,Leo and Max try to protect themselves from angry natives.\ntt0091055,YCuSsetzzg8,Max and Corky have a friendly knife throwing contest.\ntt0091055,caypUMEoKf8,\"Just before Max and Leo are to be decapitated, Corky steps in and saves them.\"\ntt0052896,IhDAJ1Tug4M,\"Tony turns to his brother Mario in despair, but refuses to take his money.\"\ntt0057449,Bi_YR5xkRx4,Rexford appears to be under the influence of an evil spell as he drives Dr. Craven and Dr. Bedlo in a carriage.\ntt0057449,9VkmshlGEvE,Rexford climbs down the castle wall and stumbles upon his father Dr. Bedlo alive and hiding in the castle.\ntt0059825,uSuoZcrKq0I,Labiche tries to prevent the Germans from executing Papa Boule for sabotage.\ntt0057449,xHunA6CYHvo,\"Using only their hands, Dr. Craven and Dr. Scarabus engage in an intense and deadly sorcerer's duel.\"\ntt0057449,F2Y7FnlkuCg,Dr. Bedlo challenges Dr. Scarabus to a magical duel as his son Rexford watches nervously.\ntt0066130,jUcER281BOg,Ned defiantly accepts his death sentence.\ntt0057449,qrTBSBYpzg0,\"As Rexford is saved by his father in raven form, Dr. Craven fights Dr. Scarabus to save his daughter's life.\"\ntt0066130,KxlEI-kTY2I,\"Covered in the armor he made, Ned goes down fighting.\"\ntt0057449,evo1frlMjHQ,\"When Dr. Craven attempts to acquire some hair from his dead father for the potion to cure Dr. Bedlo, the corpse comes to life.\"\ntt0295289,2_kQHIUwJMQ,Becky and Paul chat while hiding from her ex-boyfriend's dog in a bathtub.\ntt0052896,PpbNn6gMTUE,Sophie tries to mediate a brotherly fight between her husband Mario and Tony.\ntt0295289,0IP7ihJrrqw,An already humiliating trip to the pharmacist for crab medicine turns worse when Paul runs into his future mother-in-law.\ntt0052896,i3xjZomB1s0,Tony loses the race and is shocked when Jerry pulls out of the Disneyland deal as well.\ntt0052896,1p8rDhTaegs,Tony visits Mrs. Roger's house and she confesses to being lonely and misses being a wife.\ntt0052896,SyGAQwggjTw,Mario refuses to give Tony money and tells him he has to work in order to take care of his family.\ntt0052896,79HayHaaXDE,Ally listens in and watches his father Tony lie and ask his brother for money.\ntt0052896,YY-l3FmgXKw,Tony plays cards with his son Ally at four in the morning and they discuss how they'll avoid being evicted.\ntt0052896,uPqgue3xfPI,Ally is ecstatic when he's reunited with his father Tony on the beach.\ntt0295289,Hhep61HLkIA,Paul makes up a strange story when Karen finds Becky's underwear in his hiding place.\ntt0295289,bmJ4doOPxd8,\"Paul wakes up in a panic when he sees that the woman next to him in bed is NOT his fiancée, who is due to arrive shortly.\"\ntt0295289,1VwF6VuVhkc,Paul's parents make a very awkward first impression on Karen's parents when they arrive for dinner.\ntt0295289,_07OFEHs0iE,Paul tries to sneak out of the window to avoid facing Becky at dinner.\ntt0295289,-bzOzD2QShQ,\"Karen tries to out her fiancée Paul as a liar, but the Spend Mart clerk covers for him.\"\ntt0057449,poAxbGphYmA,Lenore begs to reunite with Dr. Craven as he flees the burning castle with Estelle and Rexford.\ntt0057449,O_NBFJ4pow8,\"Dr, Craven finds a raven outside his window, and after he lets the bird in, he's surprised when it starts talking back.\"\ntt0057449,OinNCchV-xk,\"Dr. Craven discovers that Lenore is alive and has left him for Dr. Scarabus, while Dr. Bedlo begs to be turned back into a raven.\"\ntt0057449,nuVY83HU5Mw,\"Grimes, the servant of Dr. Craven, enters with an axe and tries to kill Dr. Bedlo and Estelle.\"\ntt0066130,y-AJwogMrAU,Ned heads to the gallows.\ntt0066130,mksJyq7Z-mQ,\"Ned exercises his pipes at a local pub with his version of the Irish/Australian ballad, \"\"The Wild Colonial Boy.\"\"\"\ntt0066130,xAMy0g4w_ME,Ned shows that he knows his way around a boxing ring.\ntt0066130,F1cWO821sR4,Ned and his gang go on a crime spree.\ntt0066130,DHJDwY4xoEc,Ned guns down a would-be captor.\ntt0066130,YTadpFs7QAI,\"After a stint in prison, Ned is welcomed home with a music and dancing.\"\ntt0066130,Q8rhm3wBFE0,The authorities spoil Ned's plans to rob a train.\ntt0066130,ei1tTWCrHqc,\"Ned arms his gang with makeshift, yet resilient, armor.\"\ntt0066130,EEVcrvlYO-w,Ned bets on his long jumping abilities.\ntt0066130,W9fV8EusSWE,Ned delivers a toast to his Irish brethren.\ntt0059825,BQ5nPyRi6l8,Miss Villard tries to convince Labiche to risk the lives of his men to save the French paintings.\ntt0059825,CPRh4gw_GmQ,\"Von Waldheim orders his men to load the paintings into trucks, but the defeated Nazi soldiers ignore his orders.\"\ntt0059825,k1Xv18Vy-q0,\"Christine berates Labiche for returning to her inn, and he explains the purpose of the mission.\"\ntt0059825,OC_NauqyoSg,\"Von Waldheim mocks Labiche for his lack of art appreciation, and Labiche shoots him dead.\"\ntt0059825,y5wsjMSXolU,Labiche tries to warn Papa Boule about the imminent bombing of the rail yard by Allied forces.\ntt0059825,Z3yR0aNriPM,Labiche races to safety inside a tunnel when a Spitfire aircraft attacks.\ntt0059825,Y1IEtzj23ws,Labiche deliberately crashes the train and escapes on foot.\ntt0059825,hAxEEf5p3Bw,Von Waldheim surveys the damage of the train wreck and vows to find the man responsible.\ntt0313911,iiUiiK9dMPg,Cody uses his very special skills to save a toddler who is driving a car.\ntt0313911,pN7yX45G6WA,\"Cody makes quite the first impression at his new school after he accidentally electrocutes one of the students, and then makes a fool out of himself in front of Natalie and her friends.\"\ntt0313911,ENjz0-Ut-nQ,\"The CIA team is panicked when they learn that Cody still has one thing to learn, despite all of his training: how to talk to girls.\"\ntt0313911,iWW0Tk58kXM,\"In order to avoid security lasers, Cody uses a special contraption to walk on the ceiling.\"\ntt0313911,XWXmnyflZtw,A wide-eyed Cody gets his first tour through the spy gadget laboratory.\ntt0313911,L45abB8vyEo,\"Cody finally makes a good impression on Natalie, getting invited to her birthday party.\"\ntt0313911,mJbFV5i5ay8,\"With a ticking time bomb set to blow up the enemy base, Cody must fight his way through Molay, the last surviving henchman, to have a shot at escaping.\"\ntt0313911,Zj3ggkkj2Pg,Natalie and Cody are enjoying their date together when Molay barges in and kidnaps Natalie.\ntt0313911,pFm8RKAyU_Q,\"Cody breaks up Brinkman's nefarious plan, rescuing Natalie and kicking tons of bad guy butt.\"\ntt0313911,tz6dNnahwCI,\"When Cody gets harassed by some bullies at a party, he shows them who's boss by kicking all of their butts.\"\ntt1228705,DlBuWaGDP0M,Justin annoys Tony and Pepper when he introduces them to a nosy reporter at a party.\ntt1228705,VCxGD8VH-TM,Tony is impressed with the qualifications of Natasha to the chagrin of Pepper.\ntt1228705,zwQRQ6SbyMk,Tony confronts Ivan in prison about his background.\ntt1228705,89hCOgVa5LI,Tony quickly transforms into Iron Man to battle Whiplash at the racetrack.\ntt1228705,yocBQlw_mCA,Tony Stark decked out in his full Iron Man suit leaps from an airplane for a glorious entrance at his expo.\ntt0085811,PM9t2KSOfK8,The fellowship is aided by a mysterious cyclops when the slayers and cyborgs attack in the swamps of the black forest.\ntt0139134,DToj3xM2b1E,Kathryn is humiliated when the student body walks out on her eulogy. She realizes that Sebastian's journal has been published for all the world to see and her reputation is shattered.\ntt0139134,iYG8WCULpNM,\"Sebastian and Kathryn make a bet. The terms are if Sebastian can de-virginize the headmaster's daughter then he gets to lay Kathryn. If Kathryn wins, she gets Sebastian's classic Jaguar automobile.\"\ntt0139134,hpliHwPiYYU,Cecile describes her most recent sexual encounter. Kathryn manipulates her into becoming a slut.\ntt0139134,_4lDASeWsFg,Annette makes funny faces forcing Sebastian to laugh as they drive around in the country.\ntt0139134,rwwMn3Y6rUA,Kathryn teaches Cecile how to french kiss.\ntt0139134,CgBeBag4ir0,Kathryn reveals her manipulative ways to an already brokenhearted Sebastian.\ntt0057012,PSofqNSuVy8,\"When Mandrake asks Ripper for the launch codes, Ripper refuses and explains his true intentions to start nuclear war.\"\ntt0139134,Bb2XlqE9OUg,Bunny fires Ronald when she finds love letters written to her daughter Cecile.\ntt0139134,xEqdoVnIFug,\"Sebastian goes against his heart, and harshly breaks-up with Annette to complete the bet.\"\ntt0057012,WI5B7jLWZUc,\"When Buck and de Sades get into a fight over a concealed camera, the President has to step in.\"\ntt0057012,Ymze0Je2Tm0,\"Mandrake tries to call the President, but doesn't have enough change.\"\ntt0057012,snTaSJk0n_Y,\"When Kong tries to fix the bomb door, he accidentally opens it and ends up riding it all the way down.\"\ntt0057012,J67wKhddWu4,Ripper tells Mandrake his views on why Communists don't drink water.\ntt0057012,VEB-OoUrNuk,The President gets into a testy phone conversation with the Russian Premier when he tells him of their problem.\ntt0057012,mzddAYYDZkk,\"While trying to control his nervous tics,\"\" Dr. Strangelove informs the President how America can survive underground.\"\ntt0085811,Cc1VTko8xJM,\"In order to travel to the teleporting palace in time, the fellowship rounds up and lassos fire mares, the only transport fast enough.\"\ntt0057012,231TmvIPzQQ,\"Upon learning that the doomsday device may still detonate, the President and the Russian Premier argue about what to do.\"\ntt0085811,EDdsxJLhp-E,\"The fellowship is deceived by the Seer, who turns out to be a changeling sent by The Beast.\"\ntt0085811,9O1-5MNRbKE,Ergo the Magnificent's introduction to Prince Colwyn doesn't go as smoothly as he hoped.\ntt0085811,3wJY4bd_M-w,The fellowship races to the fortress on the mighty fire mares.\ntt0085811,WGGlUlvJffY,The fellowship is ambushed by a group of convicts.\ntt0085811,173I36m3rr8,The union of rival families in the the marriage of royal Krull heirs is cut short when cyborg armies of The Beast attack.\ntt0085811,RlnrFh_APX0,The fellowship asks Kegan concerning one of his wives.\ntt0089886,wfbqJpn8fN8,\"Mitch meets his bizarre new roommate Chris, but is possibly even more confused by Lazlo, the strange man who disappears into his closet.\"\ntt0089886,SN7sOR35KCg,Chris meets his future employers and makes a good impression on the professor's assistant.\ntt0089886,Qa8kCQQUjHM,Mitch discovers a hidden passageway in his closet that takes him to the subterranean lair where Lazlo lives and works.\ntt0088172,2ATVtP3BK64,\"Jenny pulls a gun on the naked intruder in her house, but when she sees that Starman resembles her late husband, she passes out from the shock.\"\ntt0089886,rthHSISkM7A,\"Kent watches from inside Hathaway's house as the laser aims right for it, igniting a giant container of popcorn.\"\ntt0089886,YyZ4gGCCqss,Mitch uses a transceiver in Kent's braces to convince Kent that he is speaking to Jesus.\ntt0089886,XPEWBEa8pqg,Chris convinces Mitch to stay in school and get even with Kent.\ntt0088172,teZ52l28tys,\"Starman helps Jenny start the car, and after creating a map, he asks to be driven to Arizona.\"\ntt0088172,G6i3bDGOLB8,\"When Starman brings a deer back to life, he's attacked by a trio of deer hunters, until Jenny fires the gun to scare them off.\"\ntt0088172,1IctSkdJICI,\"After some cops shoot Jenny during a high-speed pursuit, Starman uses one of his marbles to destroy a road block and escape.\"\ntt0089886,E0aNsWbWr1s,Mitch has an awkward encounter with Jordan in the men's room.\ntt0088172,g3WtvzmKCQQ,\"Jenny convinces Starman to stop for food, but when he runs a yellow light, she questions his ability to drive.\"\ntt0088172,05-e-YTw4r8,\"Jenny tries to convince Shermin that Starman means them no harm, while Starman hitches a ride with a confused cook.\"\ntt0088172,TLsRWN6G77I,\"Starman tells Jenny that, despite her previous infertility, he impregnated her with a baby that will be human but will possess all of Starman's knowledge.\"\ntt0088172,aPPMHA65HIg,Jenny teaches Starman how to say goodbye as he prepares to leave Earth forever.\ntt0118708,JOkwDeIX1jg,Gobei and Sensei offer words of council to Haru as he departs the Takagura dojo.\ntt0118615,ChQG9RAkBiE,Paul Sarone intrigues the crew with his fishing technique and knowledge of the region.\ntt0118708,rAEv7dJC5Iw,\"Haru tracks down Sally Jones in Beverly Hills, and vows to protect her.\"\ntt0118615,MfIvSh-tko8,Paul performs an emergency tracheotomy on Dr. Cale after he is stung by a wasp.\ntt0118615,rzG2L4Nbm3E,\"As the expedition travels down the Amazon, Gary admits that the jungle makes him really horny.\"\ntt0118615,JWqaTJbxbW0,Paul is squeezed and then swallowed by the anaconda.\ntt0118615,k-WW7ULn8RA,\"The boat is swamped with baby snakes, which only Paul appreciates.\"\ntt0118708,wwoxXiyWf7A,Haru's weapons practice is interrupted when Sally Jones arrives at the dojo.\ntt0118708,raIdZiSZ970,Haru dons a disguise in order to eavesdrop on Tanley and Nobu.\ntt0118708,PbgLbYd2zYI,Haru attempts to impress Sally Jones with his ninja skills.\ntt0118615,ijXLPE7SB3c,\"The anaconda attacks, but Terri saves Danny by shooting it.\"\ntt0118708,K7iGuEr-u0s,Haru and Gobei join forces against Tanley's goons.\ntt0118615,Bk2dqynryeY,\"After Gary is eaten, Paul Sarone takes control of the crew.\"\ntt0118615,d79o09D8cuo,Gary tries to persuade the crew that their best option is helping Paul catch the anaconda.\ntt0118708,qbdg6o8Z11I,Haru and Gobei get caught in the middle of a shootout between Tanley and the Kobudosai.\ntt0118708,lAcZxn1DeHs,Haru faces Tanley in a final showdown at the warehouse.\ntt0381849,Kye_x3QOSU0,\"Dan Evans escorts Ben Wade out of the hotel and they make their way across town, evading continuous gunfire from the townspeople.\"\ntt0381849,owM4is78C0o,Dan Evans and company reclaim Ben Wade from Walter Boles and his posse.\ntt0381849,M9WaDhm3bE0,Ben Wade shows mercy to his rival Byron McElroy before he loots the stagecoach.\ntt0381849,ijueTjJrMQ0,\"Ben Wade nearly strangles Dan Evans, but shows mercy when Evans reveals the truth about his wooden leg.\"\ntt0374102,oUxsU2oZ27s,\"Now alone with the sharks, Susan is forced to make a difficult decision.\"\ntt0381849,gV4WFBjc01I,William Evans stampedes a herd of cattle that provides cover for Dan Evans to push Ben Wade onto the train.\ntt0381849,9BB9JHog-mg,Dan Evans decides to escort Ben Wade to the train station by himself.\ntt0381849,amGJwP2p7D8,Outlaw Ben Wade and his gang ambush an armored stagecoach full of money.\ntt0381849,UwnVloaPX5Y,Ben Wade and Dan Evans return to the streets before barricading themselves in the station to wait for the train.\ntt0381849,8lnEGuCcmXs,Ben Wade kills Byron McElroy and attempts to escape from Dan Evans but he's stopped by the surprise arrival of William Evans.\ntt0814022,H2_tkNGWYKs,Joe chases down a bad guy using a boat and motorcycle. then kills him.\ntt0381849,H4dh0EmCQLg,\"Dan Evans finds his barn being burned down by Tucker, who threatens to burn down his house if he doesn't pay his debt.\"\ntt0381849,jAR5DtTUdHM,Dan Evans finds Ben Wade in the saloon and distracts him long enough for the railroad guards to arrest him.\ntt0814022,4XG4OPjDKJY,Joe terrifies Fon when he kills two muggers.\ntt0814022,i1nbM1Gg5OI,Joe rides through Bangkok on a motorcycle and takes out a car full of targets.\ntt0814022,lAAxpdk0Swo,Joe gives Kong his first lesson in being an assassin.\ntt0814022,ddwe3cp5dt0,Joe assassinates a prisoner-turned-witness with a sniper rifle.\ntt0814022,j1CcIP0upoU,\"Joe takes out a bad guy on his way to save his apprentice, Kong.\"\ntt0814022,LagYNt1QpT4,Joe lists his four rules to avoid being caught.\ntt0814022,B3g8p7_d8r8,Joe shoots himself and Surat in the head in front of the police and Kong.\ntt0814022,rSturS8MP9o,Joe takes out a group of assassins who were sent to his house to kill him.\ntt0814022,QuIQ_S_WH7M,Joe takes out several bad guys in order to save Kong and Aom.\ntt0142688,pyDG32yotmk,The Girl rescues Dean from an attack.\ntt0142688,n7AIwvbyT5c,The Girl and Dean recover from a fight in the street.\ntt0142688,2_WO15gq88k,Dean tracks down Boris in a remote castle.\ntt0142688,gcM1pFxO464,Dean watches as Boris enters The Ninth Gate.\ntt0142688,BcRXmoGWHtQ,Dean finds out that the devil co-authored the book.\ntt0142688,kKk9o476WM8,\"Dean vists Liana Telfer, the widow of a recently deceased book collector.\"\ntt0142688,4ekcTVeV-1w,Boris gives Dean his assignment to authenticate a rare book.\ntt0142688,OuLL5R3sb-w,Dean swindles a valuable book from an unsuspecting family.\ntt0452625,LzJEXl2ie4E,Charlie surprises Cam with gifts and a singing quartet in an effort to keep her from leaving him.\ntt0142688,6xNFwkWJug8,Dean compares his client's book to one belonging to Victor Fargas.\ntt0142688,z0-rv13DDk8,Dean finds the correct image and enters the Ninth Gate.\ntt0142688,YAjVUJ5RB3E,Baroness Kessler tells Dean about her encounter with the devil.\ntt0452625,hBsnb6M-lr0,\"Stu calls Charlie to let him know that the charm had no effect on him, and that he can now sleep with Cam.\"\ntt0218839,MeAMVy0ybYA,Tension builds as the Mayflower Best in Show Judge comes to a surprising decision.\ntt0218839,CCF5MCx5Tes,Cookie Fleck and Gerry Fleck put their love for terriers to good use in the recording studio.\ntt0218839,wirXvuRATiE,Max Berman puts his hostage negotiation skills to the test when his son climbs onto the roof with Winky the dog.\ntt0218839,xVWpHTafYuA,\"Meg Swan and Hamilton Swan recall the moment they met, at two different Starbucks locations across the street from each other.\"\ntt0218839,W7xrlkbp0Hs,Christy Cummings and Sherri Ann Cabot reflect on their creation of a magazine for lesbian pure bred dog owners.\ntt0218839,3uAh-opNpDg,Sherri Ann Cabot describes the many things that she and her elderly husband have in common.\ntt0218839,-GaJPgI3jh4,Buck Laughlin and Trevor Beckwith provide color commentary as the hound group is judged.\ntt0218839,3COpxKYnjPY,Harlan Pepper talks about his tendency to name nuts and how it drove his mother crazy.\ntt0374102,xhlW1DSEAiw,Daniel and Susan return to the surface to find that their boat is missing.\ntt0374102,JdeH3lqGvgY,Daniel attempts to calm Susan after their first encounter with a shark.\ntt0374102,DO_uVdE-KtE,Daniel and Susan are forced to move when they find themselves among a group of jellyfish.\ntt0374102,fVv7WOgDC0o,Susan wakes to find that she and Daniel have drifted apart.\ntt0374102,Z08HN_2m24o,Daniel tries in vain to seduce Susan on the first night of their vacation.\ntt0374102,l1DMfq2zSks,Daniel and Susan enjoy a carefree dive in the ocean.\ntt0374102,S6QH4oWys_Y,Daniel neglects to tell Susan about the extent of her leg wound.\ntt0218839,Imyqnop6grY,Cookie Fleck and Gerry Fleck describe the way they met and discuss the disability that limits Gerry's dance moves.\ntt0452625,m89SmMCynWM,Stu calls Charlie to warn him not to sleep with Cam after she's already waiting in bed.\ntt0374102,abM-sq8s2_E,Susan inspects the wound after Daniel is bitten by a shark.\ntt0374102,qJ9YL7qMG80,Daniel and Susan try to determine if the sharks surrounding them are dangerous or not.\ntt0452625,CoDnI1qW8ys,Charlie meets Cam at his ex-girlfriend's wedding.\ntt0452625,4x1dHdc5fD0,Charlie apologizes to Cam and tries to convince her not to go to Antarctica.\ntt0452625,FcFtBqXUud0,Stu tries to convince Charlie to use his charm to sleep with women.\ntt0452625,tu0NflL0_9c,Charlie tries to persuade Cam to go out on a date with him.\ntt0374102,lWopMAZt-sw,Susan begs Daniel to stay alive as they weather a storm in the middle of the night.\ntt0452625,W2OKX-PIpco,\"Reba begs Charlie to sleep with her, so that she can find her soulmate.\"\ntt0452625,E4D7FEZx150,Charlie sleeps with Eleanor Skepple in order to determine whether or not the charm is truly real.\ntt0452625,xkzNVP-tQ-0,A Goth Girl puts a curse on Charlie after he rejects her.\ntt0452625,FjrKzRGUXWA,Charlie and Cam get to know each other on their first date.\ntt0800003,2DkHvEZSBOg,\"Larry and his friends launch an attack on what they think is an Iraqi village in order to liberate it, but in reality, they're engaging in a turf war amongst Mexican druglords.\"\ntt0800003,BITmqWGegUE,\"The mercurial Carlos Santana intimidates a gringo ventriloquist, and then disposes of a henchman after learning that the subordinate has failed him.\"\ntt0800003,9_AMztckp6k,\"The boys gear up and drive into what they think is Fallujah, Iraq, but they're really in Mexico.\"\ntt0800003,Pi392aPIVHc,\"Larry, Bill Little, and Everett go through basic training, and learn that their days as Weekend Warriors has come to an end.\"\ntt0800003,rOoBvxdO0Ac,\"Larry rescues Little Bill from a hostage situation, but he and his compadres find themselves in a Mexican standoff.\"\ntt0800003,DcZgodKg9OQ,Larry and Bill Little find themselves eating a new delicacy -- the Camel Ass Taco.\ntt0800003,H7GwaAh6G4o,Larry and Everett lead a bungling attack on Carlos Santana and his henchmen.\ntt0800003,x7mnUeDZWRI,\"Sgt. Kilgore verbally roughs up Larry and Bill Little, disgusted by their epic lack of discipline.\"\ntt0800003,-xSV3MoacUw,Larry faces Carlos Santana in the final showdown.\ntt0427312,JhX_d4BCzhk,\"Timothy Treadwell captures stunning footage of two grizzly bears battling for supremecy, and then later, he provides his analysis of what just occurred.\"\ntt0427312,ArMePKKjiSw,Timothy Treadwell's friends spread his ashes and honor his memory.\ntt0427312,yUsoVGj1Ta0,The last footage of Timothy Treadwell leaves Werner Herzog pondering the collective wilderness of our human nature.\ntt0427312,yySvdJeBcEg,\"As Timothy Treadwell wraps up a segment for his video, a wild fox steals his hat -- and the show.\"\ntt0427312,yo6AWtLxoG4,Timothy Treadwell unleashes his rage against his former colleagues and civilization at-large.\ntt0427312,J181xxxzqyg,\"After witnessing the effects of a drought on the bear population, Timothy Treadwell yells and prays for rain.\"\ntt0427312,UVj_fFGA1Vw,Timothy Treadwell introduces himself and his position the world: that of a valiant protector of the grizzly bears and their home.\ntt0427312,wUf0QFFi2Mk,\"Werner Herzog listens to an audio recording of Timothy Treadwell's death and advises Treadwell's friend, Jewel Palovak, to never listen to the tape and to destroy it for her own well-being.\"\ntt0427312,Ao-ipKN7iQE,\"Timothy Treadwell talks about who he is, what he's done, and offers his viewpoint on romantic relationships between men and women.\"\ntt0218839,B3UhbtdxYak,Stefan Vanderhoof and Scott Donlan channel their love for old movies and Shih Tzus into a calendar.\ntt0218839,rARKAStGRy8,Hamilton Swan and Meg Swan panic when they discover that Beatrice is missing her favorite toy.\ntt0099180,ouPU0xazha4,The re-animated corpse of Meg becomes jealous when Francesca tries to get Dr. Dan Cain to help neutralize the impending zombie attack.\ntt0099180,fNcnudXLN2g,Dr. Herbert West is attacked by his grotesque creations.\ntt0099180,2CFBewOReY8,\"Having killled Lt. Leslie Chapham in self-defense, Dr. Herbert West revives the dead body and ends up with one very angry zombie.\"\ntt0099180,vE3T2n8wX4k,Dr. Herbert West attaches an arm to a decapitated leg and revives it.\ntt0099180,30xxXgTH4OE,Dr. Herbert West has found the final piece to complete his ghastly creation.\ntt0099180,8x6RDkjZj8Y,Francesca discovers that her dead dog has been re-animated and doesn't take it well.\ntt0099180,QL9sZG6f5rQ,Dr. Graves revives the decapitated head of Doctor Carl HIll.\ntt0099180,txKlsWFlkcs,The survivors are attacked by a slew of re-animated zombies.\ntt0099180,wUul0bIkS6g,Dr. Herbert West mocks the decapitated head of Doctor Carl Hill.\ntt0838283,xQi7ABaeCx0,Both Brennan and Dale sleepwalk and destroy the kitchen in the process.\ntt0838283,WVxz2j4_skI,Brennan and Dale are picked on by some middle school bullies and are forced to lick dog poop.\ntt0838283,ulwUkaKjgY0,Brennan and Dale construct bunk beds which leads to an accidental collapse.\ntt0838283,ENAuQIAgXIg,Brennan buries Dale while he's still alive.\ntt0838283,IF-3dxM0df8,Brennan and Dale spend the first night sharing a room as step-brothers.\ntt0838283,_PvuoEb4yeQ,Brennan and Dale become hysterical when they learn that their parents are getting a divorce.\ntt0838283,KSheZC9C__s,Derek insists on being punched in the face and Brennan obliges. Alice forces herself onto a hesitant Dale.\ntt0838283,7FOk4bCAQhc,Brennan and Dale blow several interview opportunities including one involving a sporting goods manager.\ntt0117407,Kw5qjJslyNU,Milo and Radovan torture Frank.\ntt0117407,EzR4I2hJyxo,\"When Frank apologizes to Milo for losing the money and the dope, Milo raises the price of the deal and wants his money back.\"\ntt0117407,RhirMa1wvPc,\"Tonny asks Frank about this girlfriend, and then proceeds to discuss women and sex as crudely as possible.\"\ntt0117407,mZpiKdps530,\"Frank turns to his supplier, Milo, in order to score enough heroin to fill an order.\"\ntt0117407,JL9SnJbeZQw,Frank and Radovan try to recover some money Frank is owed by a junkie.\ntt0117407,k6UQZv_ElZE,\"After getting beaten up by Milo and his henchmen, Frank confides his fears to Vic, and then the two agree to runaway to Spain together.\"\ntt0117407,ZBc_xWnmHRk,\"Frank is brought before Milo, whom he now owes 230,000 kroner, and is made to settle his account.\"\ntt0117407,85dpTb6PRNw,\"When Milo's enforcer, Radovan, comes to collect a debt, all Frank can offer is the last of his heroin.\"\ntt0117407,Qo91sVEacq0,\"When Frank's heroin deal with the Swede is busted by the cops, he makes a run for it and dumps the stuff in a pond.\"\ntt0117407,tgOwPRAbRdo,\"Running out of time and options, Frank hits up his mother for money.\"\ntt0145531,ZF4nYBty_FU,Father Andrew recites a message from “The Gospel of Saint Thomas”.\ntt0145531,bjaJxs12l44,Father Andrew discovers Frankie writing and speaking in tongues she does not understand.\ntt0145531,cG0GDlP4oH0,Frankie experiences her first stigmata while taking a bath.\ntt0145531,PLNOftwFMCA,Father Andrew saves Frankie by receiving her message and becoming the messenger.\ntt0145531,2T8HUyL7zyA,Frankie is possessed into a stigmata on the train when she sees holy people.\ntt0145531,hJYfFD_MNoY,Father Kiernan explains the devout nature of stigmatics to Frankie.\ntt0145531,0NNaypyly_o,Frankie has a bad reaction to a rosary gift from her mother.\ntt0145531,iJcH2hCMNiY,Petrocelli presents a case to Father Kiernan about the original scrolls and words of Jesus.\ntt0145531,T2WbeZlfB9U,Frankie lands herself in the ER. The doctors believe her wounds are self-inflicted.\ntt0145531,nNkIWyfowzA,Father Andrew watches as Frankie floats transfixed in mid-air.\ntt0145531,HcP-chk0FwY,A corrupt Cardinal Houseman leads an attempted exorcism on Frankie at the cost of her life.\ntt0145531,kcDEHkSgpuw,Father Andrew saves Frankie by receiving her message and becoming the messenger.\ntt1324999,IelhpK-eDh0,Bella Swan and Edward Cullen exchange vows and share a heartfelt kiss at their wedding.\ntt1324999,YfualY_RvlA,\"Edward’s venom begins to take hold of Bella’s body, and she transforms into a vampire.\"\ntt1325004,PwmNvgd5kNI,\"Edward tells Bella he won’t sleep with her before marriage, and then he proposes.\"\ntt1324999,buoodeEt_hM,\"The Cullens fight off the Quileute wolf pack, until the wolves discover that Jacob Black has imprinted on Edward Cullen and Bella Swan’s daughter.\"\ntt1324999,_3-cN9Bhxls,Jacob Black shows up unexpectedly to Bella and Edward’s wedding to say his goodbyes.\ntt1324999,dvT333RoCrw,Bella Swan discovers that Edward somehow got her pregnant.\ntt1259571,hEXsOOVWuGA,The Cullens fight to protect Bella from the Volturi.\ntt1324999,yjdZhknwl2E,Jacob Black discovers that Bella’s baby is thirsty for blood.\ntt1259571,-c9-2KcnLXI,Bella must protect Edward from showing the world his crystal body.\ntt1259571,-Kd5zqw24S4,\"Jacob, Mike, and Bella Swan go to see a movie but Mike can’t handle the violence. Meanwhile, Jacob and Bella discuss their romantic feelings for each other.\"\ntt1324999,QKRPgJYHblo,\"With the help of Edward, Bella gives birth to their child.\"\ntt1259571,0klA5lTNwyY,Bella tells Jacob that she wants to stay with Edward.\ntt1259571,GQlizbovQAg,Jacob breaks up with Bella.\ntt1099212,lhAQ43EIZ-g,\"After a violent battle with James, Edward Cullen has to make the decision to save Bella Swan, or let her turn into a vampire.\"\ntt1259571,vOnWEmbW3OQ,Jacob transforms into a wolf in order to protect Bella from danger\ntt1324999,RNRZxWxgQlg,\"Edward desperately tries to save Bella, and unbeknownst to him, his venom begins to heal her.\"\ntt1324999,JOidGUY4Dm0,Bella and Edward share a passionate night together on their honeymoon.\ntt1259571,JhE3o7EwmEI,Jacob climbs into Bella’s bedroom to explain his love.\ntt1259571,pPDz5TWc0Zw,Bella takes a tumble off her motorbike and Jacob takes his shirt off to help her stop bleeding.\ntt1259571,daUvbGlC3CY,Bella Swan tries to convince Edward Cullen that they only way they can be together is if she becomes a vampire.\ntt1259571,V2r-pCAO4rw,Edward vows never to fail Bella again because he doesn't know how he can live without her.\ntt1259571,luylsO8UlhE,\"Before school, Bella talks to Edward and Jacob.\"\ntt1259571,lkMilWJJR_U,\"Bella gets a paper cut, which drives Jasper to attack her.\"\ntt1099212,eDblDj6BISo,Bella Swan tells Edward Cullen that she wants to become a vampire in order to be with him for eternity.\ntt1325004,mSd_B5ZTP3s,Bella asks Edward why he disagrees with her decision to become a vampire.\ntt1325004,-bG0iKaxQYM,\"When Jacob kisses Bella, she punches him in the face.\"\ntt1325004,7ghEs2R68XE,Jacob shows up at Edward and Bella’s school to talk about something serious.\ntt1325004,0AUpWC9Whfs,\"After a heated argument, Bella asks Jacob to kiss her.\"\ntt1325004,LnuqPEIHL9I,\"When Bella visits the injured Jacob, he confesses his never-ending love for her.\"\ntt1325004,Vs2DOfnZ2vg,Jacob arrives to help warm Bella up.\ntt1325004,fWxKQF17YHk,Jacob gets angry when Bella tells him her plan to become a vampire.\ntt1325004,NMrgITIzg2o,Jessica delivers a thought provoking Graduation Day speech.\ntt1325004,QsQAo97BaBA,Edward drops Bella off to spend the day with Jacob.\ntt1099212,AZIk5wIq2Qw,Bella Swan umpires a game of baseball with the Cullens.\ntt1325004,HQK5uM8tokE,Jacob agrees to join the Cullens in a fight to protect Bella.\ntt1099212,cE71I4X9hWQ,Edward gives into his urges and kisses Bella.\ntt1099212,bpcwhWgWfCc,Edward Cullen saves Bella Swan's life when Tyler loses control of his van.\ntt1099212,SnJzOrHZwk8,Edward tries to warn Bella that he's dangerous.\ntt1099212,ujFUQwcAQ7w,Edward confirms Bella's belief that he is a vampire.\ntt1099212,FY2kKLvUL2c,Edward Cullen tells Bella Swan that he can't deny his feelings for her any longer.\ntt1099212,9lX00rAetvU,Edward Cullen comes to the rescue when Bella Swan is cornered by a group of relentless frat guys.\ntt1099212,kELmSLtEiiI,Edward Cullen shows Bella Swan what kind of abilities he has as a vampire.\ntt1099212,oXMUkgWoMlQ,Edward Cullen has trouble controlling himself when he catches Bella Swan's scent for the first time.\ntt0415306,D5E23GxcVHA,\"Cal keeps inviting Ricky to come over and party, but Ricky feels betrayed by him taking his life away.\"\ntt0415306,A27nH_TtN3k,Reese freaks out at Applebee’s when the family starts to expect a real relationship out of him.\ntt0415306,IzkrKfk4kYE,Susan gives Ricky a stirring pep talk that gets their juices flowing.\ntt0415306,QN5dfOs4TMY,\"Ricky’s arm is broken by Jean Girard, who also introduces everyone to his husband.\"\ntt0415306,YXmD6qdDCDE,Carley leaves Ricky for his best friend Cal.\ntt0415306,6Dye05tvSoo,Ricky doesn’t believe that his paralyzing injury is all in his head and he stabs his leg to prove it.\ntt0415306,RkxAAilnLEI,\"French driver Jean Girard provokes Ricky Bobby, but Cal backs him up.\"\ntt0415306,i1Nh_3JCFj8,Ricky Bobby says grace over his fast food dinner and gets in an argument with Carley over the specifics of prayer.\ntt0119654,G9puHtVcU5o,\"J stops the bug from getting away, while K gets his gun back, and Laurel proves handy with a weapon.\"\ntt0119654,UONfi1pwQzI,\"J and K shoot down the spaceship, but the bug inside Edgar is not going away without a fight.\"\ntt0119654,TNsEK_IIs9U,\"J questions Laurel, unaware that Edgar is hiding under the gurney.\"\ntt0119654,aJCCUdK7PiU,\"J and Laurel watch as the corpse's head opens to reveal a tiny alien creature with a dire warning, and K has to erase Laurel's memory.\"\ntt0104694,8LhpYfjGZvw,\"Dottie, Kit, and Hooch arrive at try outs and get bullied by Mae and Doris.\"\ntt0104694,-7krYJUfFv4,\"Dottie gets recruited by Ernie to play in a professional baseball league, but Kit is the one who wants to go.\"\ntt0119822,8z7YDo44-xE,\"Melvin makes an offhand joke about her son's illness, which deeply offends Carol.\"\ntt0425637,Z7KYTavLTBo,The Southern rebels attempt to fight off Cao Cao's enemy forces to make time for the civilian refugees to escape.\ntt0425637,MM0kq3y2AMk,Cao Cao debates with the Han Court and the Emperor whether or not they should go to war with the rebels in the south.\ntt0926084,aJSh1zkPEvc,Hermione tells the tale of three brothers who met Death.\ntt0245686,PvtJeQ322eY,\"Joe gets to know his new boss Clem, and on his first assignment, he gets bombarded with cafeteria food.\"\ntt0079417,8HZ56REwh3o,\"Joanna takes the stand, and explains why she deserves custody of Billy.\"\ntt0373469,NiAbqHXwclo,Harry and Gay Perry accidentally discover a dead body.\ntt0343660,E2U5HXLiy90,Ula tries to get the details of Henry's latest conquest.\ntt0343660,S__SZwFn0Rw,Henry deceives his latest conquest in order to cut ties.\ntt0343660,T-m_67AX5Ms,Henry and his walrus work together to play the vomit joke on Alexa.\ntt0343660,iYU7ltkHYXM,Lucy shows Henry her art studio and tells him she dreams about him every night.\ntt0343660,v-fwHV86PgY,Lucy pummels Ula with a baseball bat in order to protect a seemingly innocent Henry.\ntt0343660,xHrOaF4Dq5U,Henry and Lucy have a series of first kisses.\ntt0343660,lQoMIGl_NTU,\"Henry says his goodbyes to the walrus, Ula, and the kids.\"\ntt0343660,tmwSUyoEItk,Lucy forgets completely about Henry and is startled to awake to him in bed.\ntt0104257,iRdTetA_Dqo,Col. Jessep reacts angrily when he realizes that he has been arrested.\ntt0104257,9FnO3igOkOk,Lt. Kaffee's search for the truth hits a roadblock in Col. Jessep.\ntt0104257,nyKJeXDoqnw,Lt. Kaffee learns a lesson from Col. Jessep.\ntt0104257,PjJzOpe9xEg,Col. Jessep's upper hand against Lt. Kaffee doesn't last very long.\ntt0113670,kSyIRLpdmlA,\"Miss Minchin cuts Sara's birthday party short to deliver tragic news in her typical, cruel way.\"\ntt0104257,CevDWRn-3-s,\"At his wit's end, Lt. Kaffee explodes when Lt. Cdr. Galloway makes a suggestion to call Col. Jessep to the stand.\"\ntt0104257,vyMggFe9WRQ,Col. Jessep forces Lt. Kaffee into a weakened position by forcing Kaffee to be nice.\ntt0104257,WXsTZ7eUpBE,Lt. Cdr. Galloway endures Col. Jessep's insults as she tries to question him.\ntt0104257,ljzkCBZuHM4,\"Lt. Cdr. Galloway gets in the face of Lt. Kaffee in an attempt to shame him into action, but it doesn't quite work.\"\ntt0104694,NaKBQWLRJqw,\"The girls are at a loss when they try to get their coach Jimmy to give them the line up, but he takes a long bathroom break instead.\"\ntt0104694,XS1DdZzYIik,Dottie and Kit make up after the game as Dottie says goodbye to her sister... and baseball.\ntt0104694,a46FsHMRPkc,\"Dottie tells the pitcher how to strike out her sister Kit, but Kit proves them wrong with a home run that wins the game.\"\ntt0104694,mmuJb30cigQ,The girls are confused when Jimmy leads them in an unorthodox pre-game prayer.\ntt0104694,6M8szlSa-8o,Jimmy chastises Evelyn in front of the team and reminds her about the rules of baseball.\ntt0104694,KVyRBCk_V1s,\"Jimmy and Dottie give contradictory signals to Hooch, while she's up to bat.\"\ntt0113670,v1ordVEmJQQ,The girls lead a crusade to retrieve Sara's special necklace from cruel Miss Minchin.\ntt0113670,va_wuPBP5kA,\"Sara paints Becky a picture of India, and connects with her Indian neighbor, Ram.\"\ntt0113670,fWPRhRM1V7I,Sara upsets Miss Minchin when she tells her what her father taught her.\ntt0113670,trLRP0-zvtU,Miss Minchin takes pleasure in demoting Sara to a servant after her father has passed away.\ntt0113670,-WOw8ePUCEo,Sara comforts Lottie with the notion that their mothers are in heaven as angels.\ntt0113670,FZ1f-u8RqBU,\"On the day Miss Minchin had punished the girls with no food, they discover a bountiful feast and lavish decor set up for them by a mysterious do-gooder.\"\ntt0113670,LpBQ2Q6GMlM,\"Tired of Lavinia's bad attitude, Sara puts a curse on her.\"\ntt0113670,G3iPKcMjGlM,Sara makes a dangerous escape from the evil clutches of Miss Minchin.\ntt0113670,mszANpbvdM8,\"Sarah reunites with her father, who has amnesia from a war injury.\"\ntt0310281,IeMmE7HvO40,\"The Folksmen are disappointed to hear the New Main Street Singers open with their signature tune \"\"Never Did No Wanderin'\"\" at the tribute concert.\"\ntt0310281,kXvfBvua7GY,Jonathan harasses Lawrence about some minor details before the concert.\ntt0310281,2idVkpn0YAU,Terry tells Sean that he can change out of his uniform once his singing is up to par.\ntt0310281,Izr-5yitrb0,\"The Folksmen recall how they got their start as musicians, and lament the repercussions of being on a record label with no distribution.\"\ntt0310281,ojiHA64n6iw,\"Terry and Laurie Bohner discuss the spiritual organization they belong to called \"\"Witches in Nature's Colors.\"\"\"\ntt0310281,sa2TE--j394,Amber and Wally explain how they plan to garner press for the memorial concert.\ntt0310281,5gN8YA_xeY8,\"After the benefit concert, Mark reveals that he has found his identity as a blonde female folk singer.\"\ntt0310281,YOkboxqOKBA,\"Mike describes the sitcom that is being produced with the New Main Street Singers entitled \"\"Supreme Folk.\"\"\"\ntt0310281,Of8JOVXYU0Q,Mike recalls his short-lived career as a television personality and how he came to discover the Main Street Singers.\ntt0105265,uu-RxCqop98,\"The Maclean brothers go fly fishing with their dad, who shows them who has the most skill.\"\ntt0105265,7vRhOdf-6co,Rev. Maclean teaches young Norman and Paul how to fly fish and how to write.\ntt0310281,BI0lsk0EjfE,Terry and Laurie Bohner discuss their unconventional upbringings and recall how they met one another.\ntt0105265,AP3GWf3p4fQ,\"Norman tells Paul he's going to marry Jessie, and invites him to come with them to Chicago.\"\ntt0105265,gnz7BQ7lxJQ,\"With a prize trout on the line, Paul gets swept downriver.\"\ntt0105265,TfGmV-el44k,Rev. Maclean delivers the last sermon Norman will ever hear him give.\ntt0105265,NJF70sHMFN8,\"Norman, now old, fly fishes alone and waxes poetic about the river he loves.\"\ntt0105265,WA3_SfMxtN8,Mrs. Maclean breaks up a fight between Paul and Norman.\ntt0105265,nLTcdOr66lA,Paul and Norman attempt to navigate a set of falls on the Blackfoot River.\ntt0268126,mSD3SFHaqwg,Donald visits Charlie on the set of Being John Malkovich and asks him for a good way to kill people.\ntt0268126,8391icf7iLk,\"Charlie despairs that he will ever be able to adapt the book, but Donald finds all kinds of inspiration for his thriller movie.\"\ntt0268126,ap9g2vR32Vg,Donald's inane movie idea drives Charlie up the wall.\ntt0268126,MyvEWQL7veg,\"Desperate and defeated, Charlie goes to his hornball agent and tells him that he can't adapt the novel.\"\ntt0268126,7_HpQA3rLWw,\"Charlie nervously details his vision for adapting \"\"The Orchid Thief\"\" to Valerie.\"\ntt0268126,x90GleSXqIg,\"While hiding in the swamp for their lives, Donald elegantly reveals his philosophy on love to Charlie.\"\ntt0268126,nr037owyBqM,Charlie asks a simple question about screenwriting and gets a brutal answer in return from Robert McKee.\ntt0118571,SuJOuQ9PJ_o,\"The President is secured aboard a military transport plane, which changes its call sign to Air Force One.\"\ntt0268126,mdYIqSZblv0,Laroche reveals to Susan that he can easily move on from a passion project when the moment suits him.\ntt0118571,yehCJ076_zI,Secret Service Agent Gibbs betrays the President as Air Force One is moments away from an oceanic impact.\ntt0118571,nHpuQMB2pVU,Ivan's celebration over securing Radek's release is short-lived as the President proceeds to kick ass.\ntt0118571,yJS6icRaOq8,A fighter pilot flies into the path of an oncoming missile in order to shield Air Force One.\ntt0118571,YdaeVone5qA,President Marshall battles terrorist Ivan on the plane's parachute ramp.\ntt0118571,AoAK1JNNKR0,\"With the deputy press secretary at gunpoint, Ivan issues an ultimatum.\"\ntt0118571,ZRkiBDXDT5Q,The President arms himself by removing a terrorist from his weapon.\ntt0118571,zj4oU-cUE9E,\"A group of Russian nationalists, lead by Ivan Korshunov infiltrate and hijack Air Force One.\"\ntt0074119,CXacLvKGrQ0,Harry Rosenfeld informs Bob Woodward and Carl Bernstein that they'll be covering the Watergate scandal together.\ntt0074119,gvKBHCBBdf0,\"After confirming that Haldeman was indeed the fifth man involved with Watergate, Ben Bradlee gives Carl Bernstein and Bob Woodward permission to run the story.\"\ntt0074119,O4itfvSP7-c,Bob Woodward and Carl Bernstein are taken aback when one of their key contacts suddenly denies having any involvement with them.\ntt0074119,Tg4_lfm5VrQ,Ben Bradlee tells Carl Bernstein and Bob Woodward to run the story about Mitchell.\ntt0074119,FEdL1_zOyz4,Woodward and Bernstein consult with Ben Bradlee about whether they should push the Watergate story in the face of serious threats against their lives.\ntt0074119,zZi8n49RMGE,Bob Woodward presses Deep Throat for answers and discovers that he and Carl Bernstein are in serious danger.\ntt0074119,vETxuL7Ij3Q,\"Bob Woodward meets with an anonymous source, going by the codename Deep Throat, who tells him that the key to Watergate is to follow the money.\"\ntt0074119,42sANL2ap9A,Security guard Frank Wills discovers a break-in at the Watergate office complex.\ntt0074119,u0ttQ8Dn7LM,Carl Bernstein questions the committee bookkeeper about the funds used for Watergate.\ntt0305224,XZWz-YlVw5c,Dave crashes a New York Yankees game in order to profess his love to Linda.\ntt0305224,1cekfpK8mZQ,Dave confronts his childhood bully who has now become a Buddhist monk.\ntt0305224,zEYkLkJs5g0,Buddy admits to Dave that he has fallen deeply in love with his girlfriend.\ntt0305224,bQzh5ugYzPg,Dave takes Stacy and Gina out in an effort to make Linda jealous.\ntt0305224,PGy7bpf9ibo,\"Dave realizes that he is getting more anger management therapy and an out of control partner to \"\"help\"\" him.\"\ntt0305224,Vs2Nq6isib4,Dave is surprised when Kendra turns out to have a terrible fat complex.\ntt0305224,lAgPsmTxBfc,Dave learns an eskimo word at his anger management session.\ntt0119822,l59t24vh3QI,Melvin finds the words to convince Carol that she's the greatest woman on Earth.\ntt0305224,DzUc3Eqzzos,\"Dave has a meltdown on a plane, which gets him in deep trouble.\"\ntt0119822,Jly4dXapR9c,\"Simon tells a story about his father to Carol, while Melvin tries to convince them that some people had happy childhoods.\"\ntt0119822,A75AgrH5eqc,\"Carol asks for a compliment, and Melvin takes a very convoluted path to give her one.\"\ntt0119822,MI0gOipkexk,\"Carol breaks down and confesses all of her fears to her mother, who just wants to go out.\"\ntt0119822,pbI6qTih2TI,\"Nora asks Melvin for help with walking Verdell, and he agrees, but still tells her off with his trademark wit.\"\ntt0119822,itIDxKxfGJI,Melvin reluctantly takes Verdell the dog when his neighbor is hospitalized.\ntt0119822,c-ecbGNxEHM,Melvin meets a female fan and manages to insult her almost immediately.\ntt0112442,v5wBisDJJ5A,\"Mike saves Marcus at the last moment, but Fouchet escapes with Julie as his hostage.\"\ntt0112442,pqDU_EJrb2g,\"Marcus finds himself ambushed by Fouchet's henchmen in the restroom, while Mike enjoys the lovely ladies at the club.\"\ntt0112442,ujhXgFBjcZA,Fouchet's last-ditch attack is thwarted by Mike's faster pull of the trigger.\ntt0112442,hAUbdHw8QG4,Fouchet makes his getaway as Marcus and Mike give chase.\ntt0112442,im1ZK1WNBZs,\"After foiling Foucet's drug deal, Mike and Marcus rescue Julie and wreak havoc to the bad guys.\"\ntt0112442,MoPFAlf393g,\"Despite their incessant arguing, Marcus and Mike thwart a couple of would-be carjackers.\"\ntt0112442,AYZZV6qazes,\"Mike takes his interrogation of Jojo to an extreme level, which disturbs even Marcus.\"\ntt0414852,Jet1_E4O1MU,Leito tries to keep Damien from entering the code to stop the bomb because he thinks that it will actually blow the bomb.\ntt0414852,Cmhinct9OGE,\"Damien goes mano a mano with a giant, while Lola tries to destroy the bomb.\"\ntt0112442,i4h9xcdtyrE,Mike and Marcus find themselves held at gunpoint by a fearful convenience store clerk.\ntt0414852,Z9BefcGEB10,\"When Taha's thugs realize he can't pay their paychecks, things get ugly.\"\ntt0414852,qb0Vd5ac82Q,Leito and Damien are chased through the neighborhood by K2's men.\ntt0414852,jvCmoJHIm-A,Leito and Damien work together to escape Taha's headquarters.\ntt0414852,21q8w_kAtkU,Leito breaks into Taha's headquarters to rescue his sister.\ntt0414852,FIo18XdSuLs,Damien asks Leito how he figured out he was a cop.\ntt0414852,jrH2FZC1Z_U,Leito leaves Damien to fend for himself as a lone cop in District B13.\ntt0414852,VHSoPTJNfPE,\"Leito leads Taha's thugs on a wild free-running chase through District B13, but they can't keep up with him.\"\ntt0981227,g8nPKVElb88,\"When two drunks jump into the Yugo thinking it's a taxi cab, Nick and Norah drive them to the Bowery Ballroom.\"\ntt0414852,fbmyMs5HAR4,Capt. Damien Tomaso breaks out of a casino where he was working undercover.\ntt0106364,MVy9DFwT-4o,Salvatore Valestra pays a fateful visit to The Joker at his hideout in the ruinous Gotham World Fairgrounds.\ntt0106364,yJ5tQQhl8wc,\"In this flashback, Bruce Wayne dons a ski mask and tries to stop a gang of thieves from robbing a warehouse.\"\ntt0106364,GvYsdMFsHuE,\"In this flashback, Bruce Wayne intervenes when a gang of motorcycle thugs tries to mug a street vender.\"\ntt0106364,-_YHQheqKxE,Batman and the Joker battle it out amid a model version of Gotham City.\ntt0106364,-4Q-MS_oFkw,\"In this flashback, Bruce Wayne's new fiancé Andrea Beaumont suddenly vanishes, prompting him to follow his destiny.\"\ntt0106364,o_vwPlWTrgo,\"Thinking Batman is responsible for the Phantasm's murders, Harvey Bullock and the police corner him at a construction site.\"\ntt0094721,SAYvv7GeSSE,\"After breaking the rules and summoning Beetlejuice, Juno chastises Adam and Barbara for making the situation worse.\"\ntt0106364,DK7-VL8Uxxo,\"The Phantasm reveals her identity to the Joker, who isn't quite ready to die.\"\ntt0106364,ZEOI34R4iw0,\"Having stopped the Joker's jetpack escape plan, Batman pleads for the Phantasm to escape with him before the whole amusement park explodes.\"\ntt0094721,OeEa3gTsVDo,Lydia surprises Adam and Barbara when she reveals that she is the only living person who can see them.\ntt0106364,vE0nmQGO4Hk,\"A new villain stalks the streets of Gotham, known only as the Phantasm, he takes down the mob boss, Chuckie Sol.\"\ntt0106364,_3CJHN6bBzk,\"In this flashback, a pre-Batman Bruce Wayne falls for the irresistible Andrea Beaumont.\"\ntt0094721,Io0PZTAcBes,\"After being unleashed by Adam and Barbara, Beetlejuice shows his gratitude in a most obnoxious way.\"\ntt0094721,RYlj-btwi6o,\"While hiding in the attic, Adam and Barbara see an ad for Beetlejuice who showcases his ghostly services.\"\ntt0094721,Lcf227lWEek,\"Beetlejuice scares the Deetz family by taking the form of a giant, hideous snake.\"\ntt0094721,cZwdCa0ynEw,Barbara and Adam find themselves trapped in the bureaucracy of the Netherworld. It's a lot like the DMV.\ntt0094721,vHmyJqXxmL8,Adam and Barbara work together to stop Beetlejuice from marrying Lydia.\ntt0094721,Nz15PudXkXM,Beetlejuice tries to get Lydia to say his name three times so he can escape into the world of the living.\ntt0094721,aDm4L7gjYNs,Lydia summons Beetlejuice so he can help her rescue Adam and Barbara.\ntt0381681,VhRkUhY8MlQ,Celine sings Jesse a song she wrote about their night together.\ntt0381681,3WscLkiiCts,\"Jesse explains the idea for his next book, and gets flustered when he sees Celine in attendance.\"\ntt0381681,eGJqzSFW9Zg,Celine gives Jesse a hug to see if he dissolves into molecules.\ntt0381681,pEa07GOtQs4,Celine shares her feelings regarding the uniqueness of each relationship.\ntt0381681,TUbgKkn9qFw,Celine gets worked up when she reflects upon how her experience with Jesse has stunted her.\ntt0381681,60ldo3xGfGY,Celine asks Jesse to speculate about what he would say to her if it was their last day on Earth.\ntt0381681,z_eg2OjO6uM,Jesse confesses to Celine the loveless state of his marriage and the longing he has felt for her over the years.\ntt0381681,Gk3MgTTHdLs,Celine and Jesse finally learn the outcome of their plan to meet in Vienna nine years earlier.\ntt0381681,WPPUUvcO43A,Jesse laments what could have been if he and Celine had met in Vienna like they'd planned all those years ago.\ntt0381681,dcsByxGdYO0,Jesse is in disbelief when Celine claims she doesn't remember having sex nine years earlier.\ntt0758774,vTeY6H581pg,\"When Ferris visits Aisha and her sister, an otherwise peaceful lunch is disrupted by the politics of the Iraq War.\"\ntt0142342,acs2qgkCHvw,Sonny shows off Julian to his friends Phil and Tommy.\ntt0142342,nDw_DOEdai8,\"Sonny surprises Vanessa, only the surprise is on Sonny when he learns she's sleeping with an old man.\"\ntt0142342,vWyPfvAbUOQ,Sonny has an ill-timed interruption to Kevin's marriage proposal to Corinne\ntt0142342,TvetwclCFq4,Sonny uses Julian to help him hit on Layla in Central Park.\ntt0142342,orGDoXo7xKA,Sonny says an emotional goodbye to Julian who begs to let him stay.\ntt0142342,UFlhVGogIRg,Sonny convinces his father and the court that he's ready to be a father.\ntt0142342,UMlZ90ZNGJI,Sonny dressed as Scuba Sam makes a surprise visit and convinces Julian to bathe and study.\ntt0319061,IdEekLJJc0o,\"Ed introduces himself to Sandra, only to find that she is engaged to marry someone else.\"\ntt0319061,5WIwlJP6XhU,A sudden growth spurt helps young Ed realize that he is intended for larger things.\ntt0319061,RAvoR20o9s4,\"Will tells Ed the story of his dying moments, where everyone he knows gathers by the river to watch him swim away.\"\ntt0142342,K2JtNouF2rQ,\"Sonny teaches Julian where to pee, after a Restaurateur doesn't allow them to use his facilities.\"\ntt0319061,35LPE5SjhiI,\"Like fellow Ashton native Norther WInslow, Ed is charmed by the secluded small town of Spectre, but he decides to leave when he realizes he is not yet ready to settle down.\"\ntt0319061,ZRdLFB-SJpA,\"Ed makes a grand romantic gesture for Sandra, and when her fiance beats him up, she decides she likes Ed better.\"\ntt0319061,cfDwQbxRoEo,\"Ed sees Sandra, the love of his life, at the circus and time stops.\"\ntt0319061,V5qEU07yVnI,\"A young Ed, along with his friend Ruthie, ventures into the yard of a local witch, whose glass eye can predict the moment of death for anyone who looks into it.\"\ntt0319061,gvJLNa16cdo,Ed befriends Karl the Giant and encourages him to join him when he leaves town.\ntt0758774,paCyf1IAKug,A group of jihadi terrorists prepares Ferris for an on-camera execution.\ntt0758774,WkFdij3Wr9M,Roger Ferris devises a fake terrorist attack to draw out Al-Saleem into the open.\ntt0758774,NeciZ5_hFTY,\"Ferris is taken hostage by Al-Saleem's men, while Ed Hoffman watches from the safety of his command station.\"\ntt0758774,tskuP_9J2RY,Hani Salaam uses coercion and bribery to worm a spy into Al-Qaeda's ranks.\ntt0758774,ySu6q4ydPZQ,Ed Hoffman shows up in Jordan to meet with Hani Salaam about borrowing their newly acquired asset.\ntt0758774,4cZQOWaWYj0,Ferris and Bassam attempt to escape a terrorist safe house with their mission-critical intelligence.\ntt0758774,HK4eFj52f1o,Ferris leads a meticulously planned surveillance operation that is screwed up by an inexperienced operative.\ntt0758774,McBW00qkAlY,\"Ferris infiltrates a terrorist safehouse, while Bassam provides sniper cover from afar.\"\ntt0115734,QihI3ORsFn0,\"As the Hinckley Cold Storage mission falls apart, Dignan decides to go back for Applejack.\"\ntt0758774,GJz6eFgwgkA,\"When his informant is taken hostage, Ferris is forced to execute him in the middle of a crowded street.\"\ntt0115734,-swpG7VRhpQ,\"Bob struggles to sell himself to Dignan, but he's the only one with a car. Anthony despairs over his little sister Grace's low opinion of him.\"\ntt0115734,5BKMV5PyjDg,Dignan and his team lose all sense of control as the Hinckley Cold Storage robbery goes from bad to worse.\ntt0115734,OAZo5VJVZCY,Dignan blows up after realizing that lovesick Anthony gave all their money to the housekeeper.\ntt0115734,21mtTvR21Ts,\"Futureman mocks Dignan's new yellow jumpsuit, but Anthony supports his newest scheme.\"\ntt0115734,SmFDafzmklA,Dignan blows up at the gang for not paying attention to the plan.\ntt0101507,BQdE0_Hy10M,Doughboy tells Tre that he understands why he decided not to be involved in avenging Ricky's murder.\ntt0115734,vLXjWGI8sfw,Futureman hunts down his brother Bob for not cleaning the pool. Anthony explains to Stacy why he was in a mental hospital.\ntt0115734,UkYl0Qxgkpw,Anthony gets upset with Dignan for stealing his mother's earrings. Little sister Grace is ashamed of Anthony for checking into an insane asylum.\ntt0101507,vN_HrPvTVIk,\"Doughboy and Ricky get into a fight, and Tre tries to break it up.\"\ntt0101507,C--iuM8NcQc,Tre watches in horror as Ricky is gunned down in an alleyway.\ntt0101507,W1fv8bPOwGk,Furious convinces Tre to give him the gun instead of avenging Ricky's death.\ntt0101507,5p9rqqJmDaQ,Furious lectures Tre and Ricky about the dangers of lowering property values in the black community.\ntt0101507,aCEjVC3Dtn8,\"When Ferris bumps into Ricky, Doughboy sticks up for him until shots are fired.\"\ntt0101507,SPrK-BvZA9E,Furious shoots at a burglar during the first night that Tre spends in the house.\ntt0101507,SXeiM5hAWvA,\"Doughboy wins a game of dominoes and switches to a game of spades, while Tre arrives at the party and spots Brandi.\"\ntt0127723,qhzCkJXZVJg,\"At long last, Preston fulfills his destiny and makes a move on Amanda.\"\ntt0127723,eqdLKw173WI,Preston recounts his attraction towards Amanda and how fate has given him another chance.\ntt0127723,_RUjbQGPytY,The Angel inspires Preston to seize the moment that fate offers.\ntt0127723,asySRpuqnTM,\"William's drunken rendition of \"\"Paradise City\"\" gains him some fast friends and some fly honeys.\"\ntt0127723,K8nX2uH-h-M,Kenny and Denise find out that they have more in common than just bad fashion.\ntt0127723,9SomT1Cop8A,\"Much to everyone's surprise, Amanda shows up to the party.\"\ntt0127723,T0cNy3l6Zek,Amanda rebuffs Mike's attempt at reconciliation after he tries to force the issue upon her.\ntt0127723,nxRZisFQdTE,\"After breaking up with her boyfriend and then being hit on by several other guys, Amanda reacts violently towards Preston's heartfelt advance.\"\ntt0425637,vG8-BVdJ9_U,Xiao Qiao and her band of armed maidens lure the enemy into a trap.\ntt0425637,feHbFy5zPNQ,\"Liu Bei tries to arrange a marriage for his tomboy sister, Xiao Qiao, but she has an idea of her own.\"\ntt0425637,iC-oZZbET3I,\"Zhao Zilong, Zhang Fei, and Zhang Zhao take on the army of Cao Cao and show their skill as warriors.\"\ntt0425637,PZalnJDYFDk,Zhou Yu speaks to his military leaders and motivates them to believe that they can win this war.\ntt0425637,NAZYmJ_bVkw,\"Viceroy in Chief, Zhou Yu puts together the strongest warriors to lead the next battle against General Cao Cao.\"\ntt0425637,VHLbq6oeSyw,The battle wages while three extremely well-trained warriors take on enemies on different fronts single handedly.\ntt0425637,gA9Z-Irh_Y4,Zhang Zhao uses an innovative technique to halt the enemies charge while Zhao Zilong fights to protect the child of Prime Minister Liu Bei's family.\ntt0425637,Wj-RYFPvje4,Cao Cao debates with the Han Court and the Emperor whether or not they should go to war with the rebels in the south.\ntt1326972,Q7spsnpuZQ4,The allied forces attack the imperial army's main camp.\ntt1326972,rojN1eCJgiA,\"The war continues as Zhou Yu finds himself in a sword fight, and Sun Shangxiang, also known as \"\"Piggy\"\", comes face-to-face with an old friend.\"\ntt1326972,iptTDWFBsGQ,Zhou Yu's soldiers use a phalanx tactic to fight against the enemy troops.\ntt1326972,GETldyxkTEI,\"Fire and explosions engulf Cao Cao's naval troops, which forces them to retreat.\"\ntt1326972,r-briQqhGZY,\"Zhuge Liang's strategy to acquire 100,000 arrows goes as planned.\"\ntt1326972,zyTCACwFsgw,\"With the lives of Xiao Qiao and her unborn baby at stake, Zhou Yu and his men take risky steps to rescue them both.\"\ntt1326972,laQz2eLj1-0,Zhou Yu and his army take advantage of the shift in the winds during a naval battle against Cao Cao and his imperial troops.\ntt0075860,JeeZA4B1qyI,Lacombe makes direct -- and friendly -- contact with one of the aliens.\ntt0075860,dUYCIwyMZTQ,Roy is questioned by Lacombe and Laughlin regarding his strange and sudden obsessions.\ntt0075860,LYtSsBCYByk,Roy leaves behind his life on earth to join the aliens aboard the Mothership.\ntt0075860,S4PYI6TzqYk,Scientists try to communicate with the Mothership using light and musical tones.\ntt0075860,cdkS0TgEG30,Roy has a mental breakdown at dinner with his family.\ntt0075860,HYtuw0c3dJ4,\"When Roy's truck suddenly shuts down, he sees first hand the mysterious power of the UFO.\"\ntt0075860,OuH_qx192js,\"Jillian and her son Barry are trapped in their home, surrounded by mysterious extraterrestrial lights.\"\ntt0376541,7ycl6niFTsM,Alice knows that Anna just kissed her boyfriend.\ntt0376541,-eocP3-Ifag,Anna and Larry cross paths with Alice and Dan at the opening of Anna's photo exhibition.\ntt0075860,8MW3KJUa8FQ,Roy and the local police give chase to the UFOs.\ntt0376541,ceTBcVLeUtI,Larry shares his feelings with Alice in the Paradise Room.\ntt0376541,fnF1_aVlIio,Alice finally walks out on Dan.\ntt0376541,ZbeXU9FIFw8,Larry grills Anna on the details of her affair.\ntt0376541,iCfBiIzWG9g,The tension between Larry and Alice starts to heat up in the Paradise Room.\ntt0376541,qgmcXs02URY,Dan comes to Larry's office to seek some advice.\ntt0376541,USGs4XhdI6I,\"At Dan's insistence, Alice admits to sleeping with another man.\"\ntt0106673,pOgf3IaWlgU,Dave admits President Mitchell's involvement in the campaign finance scandal before faking a second stroke.\ntt0106673,ZARAldXlSyA,Dave takes over a cabinet meeting to balance the Federal Budget in order to save a children's homeless shelter.\ntt0106673,rWvIBJO8T_Y,Duane says goodbye to Dave and tells him he would have taken a bullet to save his life.\ntt0106673,njHGa4f1LwY,Ellen gets to know Dave and asks what he would do if he could be President a little while longer.\ntt0106673,7_wMbTKsnvQ,Dave wows Bob and Alan when he knows more about the President's mannerisms than they do.\ntt0106673,0xjYQiEDbj4,Ellen intimidates Dave at their first encounter during a press conference.\ntt0106673,xTdNSA_CWvc,\"Bob interupts a White House tour on his way to fire Dave, but Dave has the upper hand.\"\ntt0106673,M2V8jSFKVw0,\"When the President has a stroke, the White House Communications Director, Alan, and Chief of Staff, Bob, convince Dave to impersonate the President.\"\ntt0106673,CftR-xOfXsc,\"Dave unsuccessfully tries to connect with Secret Service Agent, Duane.\"\ntt0068473,iBSRk-DbhRw,Drew and Ed argue about what to do with the man that Ed killed.\ntt0068473,Ej9siBXzHzY,\"After the men conclude that Drew was shot, Ed asks Lewis what their next move should be.\"\ntt0068473,dFwt1vL1JOg,The men hide the body of the Mountain Man by buring him in the woods.\ntt0106673,WQnFe6vuWq4,Ellen bursts in on Dave in the shower and demands to speak with him about something he didn't do.\ntt0068473,y7Ynxoqo8gw,\"Lewis shares his philosophical point of view with Ed about the \"\"game\"\" of survival and the dangers of trusting a civilized system.\"\ntt0068473,ntC0xJo2bSU,Lewis kills the Mountain Man right before Ed is raped.\ntt0068473,4gh5B_Uezmk,\"Sheriff Bullard questions Ed and Bobby one last time, then advises them never to return to the town.\"\ntt0068473,WqNMjZpSbnU,Ed watches helplessly as Bobby is humiliated and raped by a redneck.\ntt0068473,AYQA7kCTPN8,\"Ed encounters the Toothless Man, but has trouble finding the courage necessary to kill him.\"\ntt0068473,LVkOD1Uy_9k,\"When Ed and Bobby take a break from their canoe trip, they are threatened by two rednecks who have no intentions of playing nice.\"\ntt0112851,srDyToPqozI,\"El Mariachi takes on an army of thugs, but his friends are among the casualties.\"\ntt0112851,doVYFjIJcfU,\"El Mariachi gets attacked by the knife-wielding Navajas, who also puts away a car full of henchmen.\"\ntt0112851,uxhJ_E3LuNA,El Mariachi gives Carolina a guitar lesson that quickly turns into something more.\ntt0112851,S7h60nfyg3M,\"Finding the bookstore on fire, El Mariachi and Carolina escape via the only way out of the building--the roof.\"\ntt0112851,KfprSGvOgpI,\"El Mariachi confronts Bucho, who turns out to be his own brother, but that doesn't stop them from fighting to the death over Carolina.\"\ntt0112851,5nIwJTUMlE4,El Mariachi reunites with two old friends to declare war on Bucho's men.\ntt0112851,AEEf_00tNos,El Mariachi single-handedly takes on a team of bad guys in a bar.\ntt0112851,579nK0yB22I,\"Carolina serenades El Mariachi in bed, but he can still hear the footsteps of approaching gunmen.\"\ntt0088323,rCn7orvs0Ws,\"Atreyu finds Shell Mountain and discovers that it is inhabited by a giant, apathetic turtle.\"\ntt0088323,5sEZmMeH96Q,Atreyu comes face to face with the Creature of Darkness that has set out to stop him from completing his quest.\ntt0088323,NgUGViWp3tg,All hope is lost when the land of Fantasia is torn apart by the power of The Nothing.\ntt0088323,IBUOACCdZi8,Atreyu's bad luck turns around when he meets Falkor.\ntt1213644,vD8p7k2-_zA,\"Music video of all the pop culture cameos in the entire film singing a version of \"\"I'm F**king Matt Damon.\"\"\"\ntt0088323,QQyorpxZ8rs,Rockbiter makes a stop at Night Hob's and Teeny Weeny's camp for a quick snack.\ntt0088323,xaILTs-_1z4,\"Bastian realizes the connection between himself and the world of Fantasia, and that he is the only one who can save the magical land.\"\ntt0088323,aj-OpTHixpU,\"Atreyu meets the Rockbiter, who is distraught over his failure to keep his small group of friends together.\"\ntt0088323,I_vzG5nYk1I,Atreyu must pass through the Sphinxes' Gate in order to continue his quest to save Fantasia.\ntt0088323,mPxTwqzr1sw,\"With the help of Falkor, Bastian finally gets revenge on the bullies who tormented him.\"\ntt0088323,vE8mFDabqD0,\"Atreyu and his horse Artax enter the Swamp of Sadness, but only one survives.\"\ntt1213644,Bg5ll84eQTw,Will and Amy discover a mini Indiana Jones.\ntt1213644,v59kIbs3gDY,Will and the gang find Batman as he is leaving the city.\ntt1213644,LcX1BSUZVpg,Juney fights a rather masculine Carrie from Sex and the City.\ntt1213644,I2jetO_ky7U,Will and the other survivers find a demented version of Alvin and the Chipmunks.\ntt1213644,zmqhj8EOLBI,\"A caveman runs from a Mammoth in 10,001 BC and then fights Wolf the gladiator.\"\ntt1213644,MjsSG8pPTy0,The gang encounters a gay Beowulf and a violent Kung Fu Panda.\ntt1213644,AQC83SamleQ,Will's party turns into a High School Musical scene.\ntt1213644,jVLk2tqreto,\"Hannah Montana dies by meteor, but not before promoting her career.\"\ntt0072890,nvdBfpA8r4o,Stevie chickens out when Sonny and Sal set the bank robbery into motion.\ntt1213644,KLieNRvLmd0,Lisa fights with a foxy lady.\ntt0072890,4ca0T6jbhHo,Sonny tells Sal of his plan to leave the country on a jet.\ntt0072890,XEsZK8pvveU,\"Sonny, Sal, and the hostages arrive at the airport and prepare to board the jet.\"\ntt0072890,_SR4O2gcXYA,\"A news telecast reveals Sonny's sexual orientation, while Sal takes offense at being labeled a homosexual.\"\ntt0072890,JkJmzgDiUtw,An emotionally spent Sonny calls his wife Leon to say 'goodbye.'\ntt0072890,W-OzWbkk5lE,Sonny fires the first shot when he hears the police coming in through the back door.\ntt0072890,rFuhmG2wUXw,The near-riotous crowd goes crazy when Sonny begins to throw money into the air.\ntt0072890,A1Tgrq5wLAw,Sonny receives a surprise phone call from Detective Moretti as the cops arrive at the scene.\ntt0072890,NSXcYEFY_ao,Sonny is interviewed live over the phone by a television news reporter.\ntt0072890,lB6Gk5EtunI,\"Sonny steps outside of the bank to find the building surrounded by police officers, and leads the accumulated masses in a chant of \"\"Attica.\"\"\"\ntt0119008,tPJ9WsQhpMw,Sonny and Lefty ambush and overthrow Sonny Red's faction.\ntt0119008,dbE2-VU-4SM,Lefty's paranoia about Donnie is a point of contention between the two men.\ntt0119008,TT8o1fvTB5Q,\"Lefty questions Donnie's loyalty, threatening violence if he discovers that Donnie is a rat.\"\ntt0119008,z54CDMBPKu8,Donnie is forced to think on his feet when a U.S. Attorney inadvertently blows his cover.\ntt0119008,twkjN0xQsWw,Joe reveals to Maggie the agony of his job as an undercover FBI agent.\ntt0119008,e2xiwiWd_sM,\"When Lefty leaves his apartment, he knows it will be for the last time…\"\ntt0119008,NqYAnj6YcLk,\"Convinced that he's being set-up, Lefty is instead startled by the gift that Sonny has wrangled for him — a live lion.\"\ntt0119008,BPrF_0Bg6iY,\"Suspecting a power play by Lefty, Sonny threatens to kill Donnie if he doesn't reveal what's really going on.\"\ntt0103874,9CIAkk-YENU,\"During the course of a long night, Van Helsing almost falls victim to the seduction of Lucy and Dracula's brides. In the morning he finds their lair and beheads the three vampire brides.\"\ntt0103874,_OFfuZY_Pvk,\"In the throes of passion, Mina drinks the blood of Dracula in order to live in eternal life with her love.\"\ntt0103874,X1rnBQJxfdk,\"Led by Van Helsing, the gang has a standoff with Dracula who transforms into rats to make his escape.\"\ntt0103874,8rlohOLUi9k,\"Van Helsing, Jack, Arthur, and Quincey discover that Lucy has become a vampire when her coffin is empty. On her return, the men stab her through the heart and behead her.\"\ntt0103874,V67ozonzKRQ,\"Over a prime rib dinner, Van Helsing explains to Jonathan and Mina that vampires do exist and the rules to their existence.\"\ntt0103874,jrLVuKks6lE,Prince Vlad restrains himself from sucking the blood of Mina and then saves her from an escaped wolf in the cinematheque.\ntt0064276,SDAdzb9IeGU,\"Wyatt, Billy, Mary and Karen drop acid in a New Orleans cemetery.\"\ntt0064276,QLAYw0vM-bw,Wyatt and Billy meet a violent end by the side of the road somewhere in the deep South.\ntt0103874,onbiOVpX0_w,Vlad the Impaler returns from battle to find Elisabeth dead. He renounces God's church and accepts the powers of darkness.\ntt0103874,ojgy7kyNp5g,\"Dracula welcomes Jonathan inside his castle and tells him that he \"\"never drinks wine.\"\"\"\ntt0064276,iamsdf-VSQI,\"Wyatt and Billy pick up two prostitutes at a brothel in New Orleans, but Wyatt is more interested in what's happening at Mardi Gras outside.\"\ntt0064276,lQWvCntonxE,\"Billy celebrates their financial success and the freedom it entails, but Wyatt insists that they blew it.\"\ntt0064276,4j7zD5ydpUo,George expresses an interest in joining Wyatt and Billy on their road trip to New Orleans.\ntt0064276,8Gu2ouJNmXc,Billy and George debate why society is so threatened by the freedom they represent.\ntt0064276,r763LgcxCyM,\"Wyatt and Billy meet lawyer George in jail, and he offers to help get them out.\"\ntt0064276,L7GJ018Avgw,\"Billy describes an unidentified flying object that he saw, and George explains his theory about aliens living among us.\"\ntt0181536,F6y4B_BFrJ4,\"To the astonishment of all in attendance, William informs Prof. Crawford that the words he read were, in fact, written by Jamal\"\ntt0181536,t5KEbS5soMA,William makes a surprise appearance in Jamal's writing class to read an essay entitled 'Losing Family.\ntt0181536,yF0WIBF4lBw,\"While out on the field at Yankee Stadium, William recalls watching the ball games with his brother during long ago summers and autumns.\"\ntt0065724,Gc8MuT6L4Nw,Bobby ridicules Catherine after she reveals that his musical ability has triggered an emotional response within her.\ntt0181536,xSnraJOeOyM,\"Jamal gets kicked out of class after challenging Prof. Crawford, and winning, in a game of authors and literary quotes.\"\ntt0181536,FIaxR4Z1jVY,\"During a basketball practice, Jamal scuffles with another player leading to a free throw shootout to see who does laps.\"\ntt0065724,0nfoP3bmd1c,\"When a haughty intellectual insults Rayette, Bobby defends his girlfriend with his trademark wit and temper.\"\ntt0181536,1hMMUJ2Gn7Y,William inspires Jamal to get into the rhythm of writing by having him type an older piece named 'A Season of Faith's Perfection.\ntt0181536,A_lu5jmaUbU,\"Jamal asks William if he ever entered any writing competition. William responds \"\"once,\"\" and that he won the Pulitzer.\"\ntt0181536,zLBEFvMkQCo,\"William gives a lesson on writing to Jamal. Specifically, the first key to writing is to write, not to think.\"\ntt0065724,QZq0zhzgres,A frustrated Bobby succumbs to his attraction to Catherine.\ntt0065724,XNfCPe5SGbw,Bobby finds himself as the center of interest for a pair of smitten women.\ntt0065724,5JLr0XUrEF0,\"Trapped in a traffic jam, Bobby jumps onto the back of a truck and starts playing the piano in an impromptu freeway performance.\"\ntt0065724,vLAQiwEGGKs,\"After a pensive moment alone, Bobby makes a fateful decision to suddenly abandon his life, leaving behind his girlfriend Rayette.\"\ntt0065724,Y7y8tLgvpCY,Bobby makes a tearful apology to his invalid father.\ntt0065724,hdIXrF34Bz0,Bobby outwits a stubborn waitress and then insults her in legendary fashion.\ntt0083987,pAs8uvKNkcU,\"Gandhi decides to fast until the rioting ends, even if it results in his own death.\"\ntt0083987,0adv8zQsa9I,\"Gandhi gives advice to Nahari, a man who believes he is going to hell because he killed a Muslim boy in an act of vengeance.\"\ntt0083987,3GG_4UaCD8E,Gandhi gives a rousing speech promoting non-violent opposition to an unjust law.\ntt0083987,CZVsWzIb6Vk,\"Gandhi argues that the people of India would prefer their own \"\"bad\"\" government to the \"\"good\"\" government of the British.\"\ntt0083987,pi6SInyE0sw,\"Reporter Vince Walker interviews Gandhi about his ashram, or community.\"\ntt0083987,S8mfOyCySKg,Gandhi and Rev. Andrews encounter a racist youth in the street.\ntt0083987,-Y3tZpAdWTc,Gandhi is thrown off a train in South Africa for sitting in a first-class compartment.\ntt0083987,d7c4TXqkMso,Hundreds of thousands gather for the funeral parade of Gandhi in New Delhi.\ntt0119177,MEOPA4dzK2s,Vincent and Irene consummate their relationship in a room overlooking the ocean.\ntt0119177,7gYbpM0GWTs,\"While competing to see who could swim furthest from the shore, Vincent is forced to rescue his brother Anton.\"\ntt0119177,06lJhEc7zIo,\"After landing a job at Gattaca, Vincent prepares to adopt Jerome's identity.\"\ntt0119177,1Z-MzwPzpBk,Jerome tries to convince Vincent that his identity is safe.\ntt0119177,1Q67bMYOm7E,\"The story of Vincent's inauspicious beginnings as the naturally conceived God-child\"\" of Antonio and Marie Freeman.\"\ntt0119177,MjOXPVmOBSg,Vincent and Irene's date is interrupted by Detective Hugo.\ntt0119177,ll5qiWa6YDk,The rivalry between Vincent and Anton comes to a head in one final competition.\ntt0119177,UQDSN9a_Zgs,Irene learns the truth about Vincent's identity.\ntt0097428,LmiHjcCiYwQ,Oscar climbs on the ledge of Venkman's apartment building as Janosz snatches him before Dana can save him.\ntt0097428,t1gkRAWvxOs,\"The gang meets the Mayor to inform him of another impending attack on the city, this time in the form of slime that is provoked by human emotion.\"\ntt0097428,lCs7qjJzoDg,The Ghostbusters fight Vigo the Carpathian.\ntt0097428,_th4Xe6Dsm4,Louis does his best to defend the gang while they stand on trial.\ntt0097428,_Nd7VxsQIGo,The Ghostbusters investigate a painting that has been spooking Dana at the National Museum of Art.\ntt0097428,Tb6tz6ohprw,The gang investigates an abandoned railroad tunnel and get spooked by it's paranormal activity.\ntt0097428,oRh8qQyIngg,\"When the ghosts of two executed murderers wreak havoc in the courtroom, the Ghostbusters lock and load for the first time in years.\"\ntt0097428,J511q05SReQ,Peter Venkman interviews two psychics on his show who believe to know the date of the end of the world.\ntt0365265,EXTklH_oTI0,\"After failing to kill Geoffrey, Ginger realizes the consequences of her inaction as others take over the responsibility.\"\ntt0365265,ne4ZgnPn9Ck,Ginger gives in to the temptations of her new identity.\ntt0365265,5rrDUgMfVuo,\"Werewolves attack the humans in the village, leading to death and destruction all around.\"\ntt0365265,xEtptEM2_mg,\"Ginger returns to the village to rescue her sister Brigitte, who is causing some violent mayhem.\"\ntt0365265,qAteApi_4IE,\"Brigitte knows what she must do, and kills the Hunter.\"\ntt0365265,zQLLIxNky50,\"In an induced dream, Brigitte discovers what she must do to save herself and others.\"\ntt0365265,Uy5uLy_cpwc,\"While Ginger seeks help for her injured sister, Brigitte comes face-to-face with a wolf before she's rescued.\"\ntt0365265,WkfpLz3XMOI,\"When Ginger can't find Brigitte, she wanders into the hallway, only to find the Hunter instead.\"\ntt0365265,oN-Ck_140ko,\"Ginger and Brigitte stumble upon a deserted, bloody campsite.\"\ntt0365265,ESjSqiHhL0A,Ginger explores the house and makes a terrifying discovery.\ntt0097441,lJiMlgvygvc,Colonel Shaw leads his company at the battle of Antietam.\ntt0097441,gmo_PhSftuc,Sergeant Mulcahy picks on Corporal Searles during a training exercise.\ntt0097441,KD5DVxqmjRo,\"Accused of desertion, Private Trip gets whipped in front of the entire company.\"\ntt0097441,8Nbbi16tvYA,Colonel Shaw confronts the Quartermaster about withholding shoes for his troops.\ntt0097441,FFWLkCnT50s,\"After Private Trip picks a fight with Corporal Searles, Sergeant Rawlins finally steps in.\"\ntt0097441,GrMoki4-weM,Private Sharts and Sergeant Rawlings lead the 54th in prayer the night before the assault on Fort Wagner.\ntt0097441,q7qwqVbZSqE,\"The 54th Massachusetts, now led by Major Forbes, begins their final advance on Fort Wagner.\"\ntt0097441,Fjr5MSmxKJ0,Colonel Shaw and Private Trip are shot down in the attack on Fort Wagner.\ntt0139239,NEg6faTj_co,\"Adam and Zack return to the ditch to retrieve Ronna, but Adam is unable to handle the task at hand.\"\ntt0139239,4SWqNoW_zI0,\"Adam and Zack hit Ronna with their car, and when they see Todd holding a gun, they flee the scene.\"\ntt0139239,OkdLWuCRe0c,Burke and his wife Irene try to convince Adam and Zack to join their Amway-like wholesale business.\ntt0139239,YonDo9SCqII,\"Simon gets the car stuck in a narrow alley, and Marcus shoots at the oncoming car in an attempt to slow it down.\"\ntt0139239,WzBS3IIb-vg,Simon and Marcus return to the hotel room with only a few seconds to escape with Tiny and Singh before the club owner arrives.\ntt0139239,sPZUh1YRnDg,\"Todd tracks down Ronna in the parking lot, but when she becomes the victim of a hit and run, Todd flees the scene.\"\ntt0139239,PLtPPtaCZQA,\"Ronna tries to buy some ecstasy from Todd, but when she comes up short on cash, she offers to leave Claire as collateral.\"\ntt0139239,SxgfSDgHGYw,\"Todd flirts with Claire, and while Ronna attempts to return the ecstasy, Mannie continues to feel the effects of the pills he took.\"\ntt0120684,ufaAnz9XmsE,\"James Whale attempts to molest Boone and then goads him into striking him. When Boone asks what he really wants, Whale finally admits that he wants Bonne to kill him.\"\ntt0120684,HgTsJ7hBQ-4,James Whale remembers the aftermath of the death of young Barnett during the First World War.\ntt0120684,D6XLyg5wBHU,\"James Whale and Boone run into Jamess' old partner, David, at a social event.\"\ntt0120684,41h9uoNt6F4,\"James Whale remembers the war and the first man who ever looked up to him, the first man he ever loved.\"\ntt0120684,wwe_yos_-ew,\"As James Whale's reminiscences on the film industry devolve into more intimate memories, Boone becomes disgusted — and frightened — into hostility.\"\ntt0120684,r8XE2-HpGuk,\"Boone talks to Hanna, who confirms that James Whale is gay.\"\ntt0120684,BuRr2uMsGTM,\"James Whale opens up to Boone about his childhood, spent trying to escape the slums and his family.\"\ntt0120684,AJ4edZsgJAk,\"James Whale, fascinated by —and attracted to— his new gardener, Clay Boone, asks for him to sit for a portrait.\"\ntt0120684,0s_EWjNNgWg,\"Bored by the interview and looking for a quick thrill from his guest, James Whale convinces Edmund Kay to strip in exchange for answers.\"\ntt0107048,gKGOG-Pr81E,\"An expert from his repetitive days, Phil runs some errands which include saving a child from a tree and fixing an old lady's flat tire.\"\ntt0120684,KuoC25LQrdM,\"The long retired director James Whale receives a visit from college student Edmund Kay, and is disappointed to find that he's only interested in discussing one of his pictures: Frankenstein.\"\ntt0107048,gvGNWLszAQA,\"Phil impresses the people in town around him with his sculpting skills, advanced piano technique, and as he lends a helping hand.\"\ntt0107048,ZNn6J56J5HE,\"Phil carves an ice sculpture bust of Rita who is touched and impressed, making Phil very happy.\"\ntt0107048,uw63_YyNsF4,Phil tries to explain to a skeptical Rita that he is a God.\ntt0107048,zVeJ5F26uiM,Phil impresses Rita at the end of a series of deja vu dates by consuming increasing knowledge of her interests.\ntt0107048,iClIIg_YtAk,\"Phil asks Rita who her perfect man would be, and as she describes his traits, Phil says he fits the bill.\"\ntt0107048,XqSYC_vwhDg,The persistent Ned Ryerson tries to jog Phil's memory about their high school years.\ntt0107048,hQCG2AwzTxA,Phil is completely confused by his first repeat Groundhog Day.\ntt0061735,2wTJfcaezu0,Matt gives his blessing to John and Joey as Christina watches with pride.\ntt0061735,LTgahyvBMk4,John tries to explain his generation's attitude toward race to his father.\ntt0061735,cGTn7aRFttk,Christina fires gallery employee Hilary when she expresses shock and outrage over her daughter's new relationship.\ntt0061735,-9P7Ge1KmTY,\"Matt tells Christina about John's impressive background, but Matt panics when he learns that John's parents are coming to dinner.\"\ntt0061735,AhPCRPmHcxE,\"John and Matt discuss the problems that interracial children might face, and John assures Matt that times are changing.\"\ntt0061735,ejUWeYTslb0,\"Matt and Christina share their concerns with each other, and John promises he will not marry their daughter without their approval.\"\ntt0099726,BoNAEfrI2oQ,\"While Hamlet and Laertes duel, Claudius attempts to poison Hamlet's drink.\"\ntt0061735,ASnNWCK3kiQ,\"Sensing that Christina is upset, Matt demands some answers, and John tells him of his intentions to marry their daughter.\"\ntt0061735,8BI5jFyAdZ8,Joey describes John to Christina as he quietly enters the room and Christina gets her first look at her daughter's new boyfriend.\ntt0099726,DNWODAIBs7s,\"Hamlet kills Claudius for his treachery, and then dies from the wounds afflicted to him by Laertes.\"\ntt0099726,a38HZFbhB-M,Hamlet kills Polonius in a blind rage during his speech with Gertrude.\ntt0099726,UbxMhvcxJJc,Hamlet and Horatio meet a gravedigger on their way back to Denmark.\ntt0099726,HqS7VyuD_Mg,\"Claudius confesses his sins in the chapel, and Hamlet debates whether or not to kill him.\"\ntt0099726,KOGjVUa_iIE,\"Hamlet stages a play that shadows the crimes of Claudius, which lets the guilt of the king overwhelm him.\"\ntt0099726,I5iG5NitBgI,Hamlet tells Rosencrantz and Guildenstern why his mother and the King have sent for them.\ntt0099726,Vf2TpWsPvgI,Hamlet contemplates whether it is better to fight through the troubles of this life or drift into eternal sleep.\ntt0308353,LKR2bN9V2Bc,\"Ella and Frieda battle it out, while Rick, Munk, and Mambo try to save Ella.\"\ntt0099726,8JyxfJo-iiA,Polonius gives Laertes some last minute advice before he departs on his journey.\ntt0099726,KJmWpR-4AIg,Hamlet bemoans the fickle nature of his mother.\ntt0308353,QKP-AZKNl9k,Ella and her friends beg the Seven Dwarves to help her protect the kingdom from the bad guys.\ntt0308353,fO8nqGKrtDI,\"Ella takes command of the Dwarves' anti-air gun against a trio of witches, while Munk and Mambo help reload the weapon.\"\ntt0308353,XYZ_oLTFzSA,\"When Frieda realizes that she is doomed to be the loser in the fairlytale, she uses her powers to change her fate just as Prince Humperdink makes his move to kiss Ella.\"\ntt0308353,0I84IUKomh4,Frieda tells Ella that all hope is lost and that the Prince is not going to come and save her.\ntt0308353,ZXgyS34Zpto,\"As The Wizard gets ready to leave on vacation, he gives specific instructions to Munk and Mambo to protect the world from evil.\"\ntt0308353,NnWIRGdMR44,Frieda takes control of Fairytale Land by stealing the magical staff that balances Good and Evil from Mambo and Munk.\ntt0308353,CO6yUpPvY7s,\"Frieda demands that the villains go out and capture Cinderella, but they claim they cannot because they only work at night.\"\ntt0308353,8CCo0EI6zIM,Ella gets help from her Fairy Godmother and finds something sterling to wear to the Royal Ball.\ntt0308353,YY4kKO6wfyg,\"Rick delivers Ella and her stepsisters an invitation from the Prince to attend the Royal Ball. Also invited: Ella's mean stepmother, Frieda.\"\ntt0113277,2z4o-jBlqq0,Neil McCauley pays Waingro a visit before his escape.\ntt0113277,s3rv0BdxWfM,Neil McCauley reminds Chris Shiherlis that a life of crime should be a life of no attachments.\ntt0113277,GpNzlh5ALRA,Neil McCauley and his crew of professional criminals rob an armored truck.\ntt0113277,JqDoUCcJHPU,Neil McCauley and Eady discuss their families over drinks.\ntt0113277,DdDl6mbcGtc,Neil McCauley thwarts an ambush with back-up from Chris Shiherlis and Michael Cheritto.\ntt0386588,mGf4oL6RLGs,\"Sara thinks Hitch has left without saying goodbye after spending the night, but he's only stepped out to get her coffee.\"\ntt0386588,0JmETteiVzo,Hitch meets with a potential client who turns out to be a jerk.\ntt0386588,j2e41FeccuA,\"Hitch chases Sarah, who has seemingly moved on with another man.\"\ntt0386588,QnyzZbrrh9M,Albert makes a breakthrough with Allegra when she asks to meet up with him for business advice.\ntt0386588,uU59kXuJHhI,Sara gets hit on by a clueless guy named Chip.\ntt0386588,eKKd33QEB3I,Hitch takes Sarah jet skiing on the Hudson River.\ntt0386588,50YQeugOMOw,\"Albert thinks he's set in the dance department with moves like \"\"making the pizzas\"\" and \"\"the Q-tip,\"\" but Hitch sternly advises against expressing oneself through dance.l\"\ntt0386588,ur0U4xN0d_A,\"Albert tries out his new shock and awe\"\" approach to get Allegra to notice him, but takes it a little further than he intended.\"\ntt0102057,qZubhGcnsHk,Captain Hook defeats Rufio on the pirate ship.\ntt0102057,H6DqWP733F4,\"The Lost Boys take on the pirates aboard the pirate ship with their Thud Ball, egg shooter, and marble tosser.\"\ntt0102057,-wX6_qCCnPc,Peter Pan finally defeats Captain Hook.\ntt0102057,6ohgHjQvK5g,Peter Pan confronts Captain Hook and tries to get the brainwashed Jack back.\ntt0102057,C6hmQwfEmzc,Peter gets his Pan back.\ntt0102057,JsJxIoFu2wo,Peter Pan and Rufio exchange insults at the dinner table in front of the other Lost Boys.\ntt0102057,6s8ZEFUSYAI,Pockets checks Peter's face to see if he truly is Peter Pan.\ntt0102057,YCSbEzI7Nz0,Peter Pan and the Lost Boys have an epic food fight battle.\ntt0090060,wvPmP4xTruI,\"Kirby tells Kevin about his latest infatuation, while Kevin and Billy maintain a more jaded view of love.\"\ntt0061809,eQ9HJXZI_qU,The Prosecutor explores the necessity for capital punishment to the jury.\ntt0090060,oLIwz9gn00g,Jules speculates that Kevin is gay because he's never made a pass at her.\ntt0061809,qU0H2mmgsjM,Dick pulls a flawless con tailor fit for Perry.\ntt0061809,HD8tSGHYaGA,Perry discusses the possibility of going after Cortez treasure as the duo's next step.\ntt0061809,cPYdLs7RRRc,Perry has a moment of self-reflection as he rifles on the floor for Nancy Clutter's silver dollar.\ntt0061809,gHAJY34g-LY,Perry decides to execute the entire Clutter family.\ntt0061809,JQXj8pF6Rx4,Dick creates a plan to score while on the road with Perry.\ntt0061809,k4YuBxpQwqA,Perry recounts his relationship with his father moments before his execution.\ntt0061809,yxVC4lfxHGs,Perry yearns to apologize for his crime before his execution.\ntt0107206,0EKDRD2sHI4,\"Leary rejects Frank's offer for help, instead choosing death over imprisonment and humiliation.\"\ntt0107206,p8wvEC_cBU4,Frank radios a coded message on where to aim in order to hit Leary.\ntt0107206,JAiuiipD6Wo,Frank recalls his failure as a Secret Service Agent back in November of '63.\ntt0107206,tff_EEQt79s,Frank takes a bullet for the President and foils Leary's assassination attempt.\ntt0107206,FQfb9ayuY3A,Leary notes the irony of his and Frank's situation as their cat-and-mouse game escalates.\ntt0107206,THLll7d7Dfo,\"Leary saves Frank's life, but takes the life of Agent D'Andrea.\"\ntt0107206,jbCyTUSQ6fY,Leary threatens to kill another President as Frank gets under his skin.\ntt0107206,abhF5CFFW4s,\"Outwitting a counterfeit group, Frank saves Agent D'Andrea while making a dramatic arrest.\"\ntt0025316,vEt5MqYD_3s,Peter and Ellie pretend to be an arguing married couple in order to fool a pair of nosy detectives.\ntt0025316,qFWptPtHG78,Peter carries Ellie across a stream as they discuss the particulars of piggyback rides.\ntt0025316,Lhc_xw9cQ6I,Peter suppresses his love for Ellie when she tries to embrace him.\ntt0025316,aHJKwOGb7MI,Peter formally introduces himself to Ellie while introducing her to her new temporary last name.\ntt0025316,9zUaNKBQ04c,\"Peter uses a blanket to make a \"\"wall\"\" dividing his side of the room from Ellie's, all the while flirting with her.\"\ntt0025316,1kAtlL7cZOg,\"When Ellie literally lands in Peter's lap, he asks her to bring the family, too.\"\ntt0025316,Ar-hnj5Zsk4,Ellie teaches Peter how to really hitchhike.\ntt0025316,KF-wcaGD2UE,\"Unceremoniously fired over the phone, Peter finds a way to save face in front of his drunken reporter buddies.\"\ntt0116695,Of73UiXUvjA,\"When Tidwell learns of his new contract from Roy Firestone, he has an emotional breakdown on TV.\"\ntt0116695,AyrP-pwDayE,Jerry opens his heart to Dorothy.\ntt0116695,QhVuXKypPs0,\"After suffering a hard hit, Tidwell celebrates the thrill of victory.\"\ntt0116695,l1B1_jQnlFk,\"Once again, Tidwell pushes Jerry to his wit's end.\"\ntt0116695,niZKrt4XAZE,Jerry learns that breaking up is hard to do when you're getting beaten down.\ntt0116695,ASVUj89hyg0,Jerry tries a tough love approach to inspire Tidwell to play better.\ntt0116695,6ZZI6-zh0GM,\"Jerry leaves the office alone, humiliated and defeated, until Dorothy suddenly joins him at the last second.\"\ntt0102138,BckPa2_A8gI,Jim Garrison gives an emotional closing argument to the jury about the importance of truth within the government.\ntt0102138,3ema7lfEAMk,A frenzied and paranoid David Ferrie confesses his knowledge to a conspiracy before emotionally breaking down.\ntt0102138,FhBm4kprCkk,\"Jim Garrison and his team delve into the background of Lee Harvey Oswald, and arrive closer to the conclusion that he was just a patsy.\"\ntt0102138,GSw9sjqYK_I,\"Jim Garrison meets with a mysterious man called X, who gives him confidential information about President Kennedy's assassination.\"\ntt0102138,xuUtu2xRGgY,\"X offers his insight to the question of 'why' was President Kennedy assassinated, the answer leads to the highest echelons of the United States government.\"\ntt0102138,2nmGS8rVuIM,\"Jim Garrison repeatedly shows the Zapruder film in court to demonstrate the impossibility of the magic bullet theory, and cement the notion of multiple gunmen out at Daley Plaza.\"\ntt0245686,I_X0TKL3bqk,\"A self-proclaimed crocophile,\"\" Joe inspects the mouth of a mean gator.\"\ntt0245686,x4utH5uWK6c,Joe gets lucky with a girl who may or may not be a relative.\ntt0102138,2gaEkPaykJo,Lou Ivon gives Jim Garrison a demonstration in shooting a rifle at the book depository in Daley Plaza to show that it would be impossible for one man to have shot President Kennedy alone.\ntt0245686,jXGV-MT-TmU,\"Joe adopts a space meteorite, then discovers its true origin.\"\ntt0245686,I5TzyLhwKKY,\"Joe packs up his dog's ashes and says goodbye to Brandy, oblivious to her feelings.\"\ntt0245686,suvJai5IC6c,Joe berates a fireworks salesman for his weak merchandise.\ntt0245686,X-S296ENSIo,\"Joe's \"\"atom bomb\"\" turns out to be an RV septic tank with a foul payload.\"\ntt0245686,ZAMQGIx3JKk,\"When he visits Buffalo Bob, Joe lands in a dungeon reminiscent of \"\"The Silence of the Lambs.\"\"\"\ntt0113497,M0TjT53qpFY,Alan rolls his last turn which ends the game just in time for him to escape the hunter's bullet.\ntt0113497,SiUT8u1LckQ,\"Chaos culminates as Judy is struck by a barb from a Venus Fly-Trap, Alan and Sarah are threatened by giant spiders, and an earthquake strikes.\"\ntt0113497,yjF_gSu6xCQ,\"Alan gets swallowed up by the attic floor that has become like quicksand. Judy rolls her turn, but it only makes matters worse as giant spiders invade the attic.\"\ntt0113497,ibeJlYiMz9w,\"A monsoon strikes the house, bringing some aggressive crocodiles along with it.\"\ntt0113497,RWwhA2v9UFQ,A stampede of wild animals storms through the house.\ntt0113497,dTllG2KdPMQ,\"Disoriented from being stuck in Jumanji for 26 years, Alan questions the whereabouts of his parents and the current year.\"\ntt0113497,969gXtFAcZU,\"Alan, Judy, and Peter track down Sarah Whittle to have her pick up where she left off in the game, but it's going to take some convincing.\"\ntt0113497,javEwwHaNa4,Judy and Peter follow the drum sounds to find the Jumanji game. Wasps and monkeys appear as they begin to play.\ntt0373469,qbYyYYHysqM,Harmony interrupts an intimate moment with Harry to make a scandalous confession.\ntt0373469,R2MxWZTrgxw,\"Wounded and alone, Harry springs into action when he hears Harmony call for his help.\"\ntt0373469,6svL10xXulQ,\"When Harry Lockhart uses a game of Russian Roulette to get answers from a stubborn henchman, things do not end well.\"\ntt0373469,15i99XcYpc8,Gay Perry taunts Aurelio in order to save Harry from a torturous death.\ntt0373469,7ux7Dd18Rw4,\"Eluding the cops after a botched robbery, Harry finds himself accidentally auditioning for a part when he's mistaken for an actor.\"\ntt0373469,uGg9-5_0On4,Harry accidentally pats Harmony's breast in an attempt to kill a spider crawling on her.\ntt0079417,OFZS03hWtlE,\"Ted's lawyer plays rough, verbally attacking Joanna on the stand and casting her in a bad light.\"\ntt0079417,sCiErOySQtA,Joanna changes her mind about taking Billy home with her.\ntt0079417,re0xt6hDdqE,Ted makes his case for why he is the best parent to have custody of Billy.\ntt0079417,M_ejjr2-4WE,Joanna tells Ted that she wants Billy back during their first meeting in over a year.\ntt0079417,Cw1YwZlfijg,\"On his first morning without Joanna, Ted tries to teach Billy how to make some very messy french toast.\"\ntt0079417,8kIsYLV8bE8,Billy refuses to eat his dinner and eats ice cream instead against his father's wishes.\ntt0079417,80UzhoD-RBs,Joanna announces to Ted that she is leaving him and explains all the provisions she's taken to do so.\ntt0119488,cjFIi3PC2cI,\"Ed Exley and Bud White are ambushed at the Victory Motel, but they won't go down without a fight.\"\ntt0119488,-opqUSOUDQY,\"Ed Exley interrogates the Nite Owl Massacre suspects, but Bud White has some effective methods of his own.\"\ntt0119488,1ubs6iUMdyo,Jack Vincennes uncovers more of the truth than he can handle.\ntt0119488,MeypYa863r4,\"Dick Stensland takes brutal vengeance on some Mexican prisoners, despite Exley's protests.\"\ntt0119488,_VIWqtzAHQ0,\"Bud White questions Lynn Bracken, but finds himself intensely attracted to her.\"\ntt0119488,G3N_ELEBvH0,\"During a fistfight over Lynne, Bud White and Ed Exley realize they are involved in a murder conspiracy.\"\ntt0119488,BVwLpNGBqqY,Bud White rescues a kidnapped girl and is annoyed by Ed Exley's zealousness.\ntt0119488,dO_D5ilNoZA,Ed Exley confronts the corrupt police captain Dudley Smith and stops him from evading the law.\ntt0119488,_MLgnDZguM0,Ed Exley leads a raid on the suspects of the Nite Owl Murders and brings them to justice.\ntt0119488,47ptIuV4NLo,Bud White beats a confession out of D.A. Ellis Loew and throws him out of a window to hear more.\ntt0089457,5_npi1WISDk,Captain Etienne Navarre tells Phillipe of his quest and explains why they need to stick together.\ntt0089457,H_SgDfv61O8,Phillipe Gaston encounters the black wolf and Isabeau d'Anjou for the first time when he gets attacked in the forest.\ntt0089457,uIl9IFcIXlg,\"Before confronting the bishop, Captain Etienne Navarre must first deal with Marquet, the bishop's Captain of the Guard.\"\ntt0089457,rS3VUoThFBw,The plan to lure Captain Etienne Navarre goes terribly wrong when the black wolf falls through the frozen lake.\ntt0089457,kglWIEtKSXY,\"Thinking that Cezar had killed Captain Etienne Navarre, Isabeau ventures into the forest to get revenge.\"\ntt0089457,CztbQ4Fgv_w,\"While trying to escape the bishop's guards, Phillipe Gaston and Isabeau d'Anjou find themselves in a precarious situation.\"\ntt0089457,cudAGo1nSKI,Captain Etienne Navarre finally gets his chance to fulfill his quest to kill the Bishop of Aquila.\ntt0089457,LmZV7WtCRi4,\"Just when he is about to be executed, Phillipe Gaston is rescued by Captain Etienne Navarre.\"\ntt0089457,1ODVyWqW4ps,\"At dawn, Captain Etienne Navarre and Isabeau d'Anjou share a fleeting moment together in their human forms.\"\ntt0089457,a72FDTElH9g,Phillipe Gaston has a surprise encounter with the bishop's Captain of the Guard Marquet.\ntt0056172,_EZCG2Ex8Q0,\"Under the banner of celebration, Lawrence safely returns to the tribe's desert oasis having saved Gasim. He remarks to Sherif Ali that \"\"nothing is written.\"\"\"\ntt0056172,aARaYjgm_rA,Lawrence shows no mercy when ordering an attack on a column of retreating Turkish soldiers.\ntt0056172,IBeMUoMTeZo,Lawrence survives a sniper's bullet and then poses atop a train to the cheers of the tribesmen.\ntt0056172,vR3FPplcJGg,Lawrence commands a guerilla ambush on a Turkish railway in the middle of the desert.\ntt0056172,lChJz2DSpsE,The tribal alliance led by Auda abu Tayi overruns the port city of Aqaba with the Turkish guns only pointed to the sea.\ntt0056172,-tuNR-uD_mE,\"To illustrate the value that nothing is written,\"\" Lawrence risks his own life to go back to save a fallen Gasim. Daud waits for Lawrence to return out of the Nefud desert.\"\ntt0056172,ud1zpHW3ito,Lawrence's guide Tafas is killed by Sherif Ali for drinking from a well.\ntt0110322,OdlFHPM3A2U,Susannah tries to console Tristan at his brother's grave.\ntt0110322,lpwrDEfCESg,Tristan is captivated when he meets Susannah for the first time.\ntt0056172,uE0DBpw09SU,\"Lawrence tells Mr. Dryden that the expedition with the Bedouin tribe is going to be fun. After blowing out a match, Lawrence begins his journey in the desert.\"\ntt0110322,0_pN-X7Gew8,\"When Colonel Ludlow opens fire on O'Banion, Alfred comes to the rescue.\"\ntt0110322,DB5H2QGFFwU,\"When the Ludlows run into a racist bartender, Tristan takes matters into his own hands.\"\ntt0110322,Dpz8L-thRmc,Isabel is accidentally killed by an officer working for the O'Banions and Tristan beats the officer severely.\ntt0110322,qCq0IXXi_2U,Tristan returns to the ranch to find his father a different man.\ntt0110322,aWinsyIVC3E,\"Everyone at the ranch admires Susannah, but she finds herself captivated by Tristan.\"\ntt0110322,Ha4SHiHf8Vw,Tristan arrives too late to save his brother Samuel from being gunned down in combat.\ntt0097733,ysIsqzXZyN0,Riggs confronts the racist South Africans and tells them to leave the country.\ntt0097733,rDIF3XhXTT8,Riggs crushes Vorstedt while Murtaugh takes care of Arjen Rudd.\ntt0097733,7WqzJvhR9Fo,Riggs does a little house cleaning.\ntt0097733,FM26ZXjPL_4,Sgt. Murtaugh nails some bad guys.\ntt0097733,vKePn-57zAA,Riggs and Murtaugh prepare to deal with a toilet bomb.\ntt0097733,j19-hpjJ4ok,Riggs puts the moves on Rika at the grocery store.\ntt0097733,HnZw65gsesw,Sgt. Riggs does a little car surfing.\ntt0097733,AMtKsDnOw_0,\"Sgt. Riggs and Sgt. Murtaugh chase down drug dealers in Murtaugh's new car, and Murtaugh asks Riggs not to scratch it.\"\ntt0097733,Zz1Lypwfwug,\"A room service man tries to assassinate Leo, but Riggs tackles him out the window.\"\ntt0097733,i9upvWNN3P8,Leo shares his opinion of restaurant drive-throughs.\ntt0110413,eRBI1VSO7hc,Stansfield murders Mathilda's family in cold blood.\ntt0110413,-gD05qjgKN4,Léon teaches Mathilda how to use a sniper rifle.\ntt0110413,Ce6jdrqyW0U,\"As Léon helps Mathilda escape, they both express their love for one another.\"\ntt0110413,JqDOosChydc,\"Just as Stansfield is about to kill Mathilda, he learns that his colleague was killed by Léon.\"\ntt0110413,mX-qK4qG2EY,\"After Léon neutralizes the first %SWAT% Team, Stansfield orders everyone into the fray.\"\ntt0110413,4R-cTX0i2hQ,Léon forces an exchange: a SWAT team member for Mathilda.\ntt0110413,fa1DuNjhWOk,Léon dispatches the Fatman's body guards with expert precision.\ntt0110413,9bvxJlLfzGw,\"Léon gives Stansfield a parting gift, courtesy of Mathilda.\"\ntt0325805,1W4y_8Eu38Y,Roy yells at Angela for sneaking out of the house.\ntt0325805,TOrEE5NeZ9w,Roy watches as Angela pulls off her first con on a lady at the laundromat.\ntt0325805,04xSMg03sZ0,\"Roy and Frank pull the Jamaican switch\"\" on Chuck.\"\ntt0325805,pMTlNUKE7yg,Chuck chases after Roy after he discovers that he's been scammed.\ntt0325805,ftst7XzK21Q,Angela persuades Roy to teach her how to be a con artist.\ntt0325805,g6sSw9vrO0s,Roy preps Angela for her first con.\ntt0325805,Ib8uNldNd-0,Roy visits Dr. Klein to get a prescription for pills that he was buying illegally.\ntt0325805,My4ojpQzoWY,Roy and Frank pose as Federal Trade Commission officers in order to tie up loose ends on a scam.\ntt0325805,GwQdBsTpmOM,Roy and Frank con unsuspecting customers out of their money.\ntt0325805,6f2-XlVHGcc,\"After he accidentally drops his medication down a drain, Roy suffers due to the effects of his anxiety disorder.\"\ntt0303361,1XBwwSzLqWA,\"Gripped with madness, May stabs out her lazy eye and places it on her doll-like creation so that it can \"\"see\"\" her.\"\ntt0303361,VNJehwzHpe4,Polly hits on May after she convinces May to dance with her.\ntt0303361,pMSrolUBGRc,\"May pays a murderous visit to Adam and his new girlfriend, Hoop.\"\ntt0303361,PEnOSwKyrb4,\"May creates a grisly new \"\"friend\"\" by piecing together the body parts of her victims.\"\ntt0303361,QikcO8tlmOI,\"May has an intense emotional breakdown after being rejected by Adam, and blames it on her creepy doll.\"\ntt0303361,FnRp0n0RhDM,\"May makes her first pair of kills by slashing and stabbing Polly and Ambrosia, respectively.\"\ntt0303361,EETi6NJFRjA,May takes the concept of a love bite too far when she draws blood from Adam during a make out session.\ntt0303361,X9mTMZF-CTs,Polly seduces May.\ntt0303361,SmmKg3VG2jI,May tells a gross and disgusting story to Adam.\ntt0120787,SMQ6aga9mI0,\"When Bruno makes an impromptu pitch on how to perform the perfect murder, Guy ends up leaving the conversation rather disturbed.\"\ntt0829482,1EnGKC9Lk_Y,\"In the Good Shopper alcohol aisle, Seth imagines different scenarios where he can obtain booze.\"\ntt0280590,Wg89Bj_9Wg4,Deeds plays a game of tennis with Chuck and can't avoid drilling him repeatedly with the ball.\ntt0280590,oEtIf_2mzJc,\"At the stockholders meeting, Emilio learns that he is the sole inheritor of the Blake media corporation and promptly fires Chuck.\"\ntt0280590,ZKIiHz62TR0,\"Emilio talks to Deeds about his great Uncle, and also describes his fetish for feet.\"\ntt0280590,qUKBDcMN7tg,\"At a fancy New York restaurant, Deeds is made fun of by some elite New York intellectuals. To settle the score, Deeds beats them up in front of Pam\"\ntt0280590,9KwuLlQrkVI,\"Deeds stops Marty, who''s pretending to be a mugger, and rescues Pam.\"\ntt0280590,DHVyayHXOdY,Deeds insists on Emilio whacking his frost bit foot with the fireplace poker over and over again.\ntt0280590,Tlfd0Y0SjgA,Deeds meets his servant Emilio and plays a call-and-response game with the house staff in his large apartment.\ntt0280590,_T7T-0iR2Sw,\"While flying to New York in a helicopter, Deeds sings a song with the pilots and normally sophisticated Cecil joins in.\"\ntt0031679,zPv0S1-ETdI,Senator Jefferson Smith finally attacks the political corruption on the Senate floor.\ntt0031679,i7hk-TupE5g,Saunders offers advice to a depressed Jefferson.\ntt0031679,dbH4Amzn-Rk,Senator Paine describes to Jefferson how good politicians sometimes compromise their ideals.\ntt0031679,17MyPrAEQ28,Jefferson Smith emphasizes the importance of liberty and the beauty of nature to Saunders.\ntt0031679,0v7Ea7kg2gA,\"After Senator Paine advises Jefferson Smith on a new bill, Jefferson has an awkward moment with the Senator's daughter, Susan.\"\ntt0031679,NRjWEE0hmjQ,\"After being persecuted in the newspaper for being incompetent, Senator Smith targets the Washington press.\"\ntt0031679,BL-Jg7CyqLQ,An exhausted Senator Jefferson Smith professes his innocence on the Senate floor.\ntt0031679,qYf35nBq8Oo,Governor Hubert Hopper describes the genius of appointing simpleton Jefferson Smith as a the state's next Senator.\ntt0981227,zTueXqC-xfI,Nick and Norah make love for the first time at Electric Lady Studios.\ntt0981227,AyodiwWneu8,Nick calls Norah to apologize for the way the evening ended and to find out where he can find her.\ntt0981227,o2wVetrydrY,Nick and Norah abandon their ex's and leave the Where's Fluffy concert together holding hands.\ntt0981227,GofDgoM13BA,\"Tris dances for Nick by the river, but he can't stop thinking of Norah and leaves Tris to fend for herself.\"\ntt0981227,LoZtHl2YXAo,\"After getting closer throughout the night, Norah's heart breaks a little when Nick decides to join Tris, who is waiting at his Yugo.\"\ntt0981227,PRKag5krnfU,\"At the Port Authority Bust Terminal, Caroline drops her cell phone and gum into a disgusting toilet. After retrieving both items, she just misses Norah who is at the station looking for her.\"\ntt0981227,sR4iKRfUwOs,\"In a crowded bar, Norah picks out Nick to be her boyfriend for five minutes\"\" in order to make Tris jealous. When the two kiss, a natural chemistry becomes apparent.\"\ntt0277371,af_J2e4r328,\"Just when Jake appears to have hit rock bottom, The Wise Janitor offers sage advice: \"\"Believe in the ball, and throw yourself.\"\"\"\ntt0277371,8F8MBp-GBKA,Priscilla insults Janey at the party and Melissa Joan Hart stops by to give instructions on how to properly employ a teen movie staple: the slow clap.\ntt0277371,nuPd4L7_0uQ,Quarterback Jake Wyler recalls an on-field tragedy.\ntt0277371,z6GmZrBKW98,Ricky shares a very personal poem.\ntt0277371,G9u3Lbli8Uc,\"Principal Vernon gives Mitch and the guys a \"\"Breakfast Club\"\"-style verbal lashing.\"\ntt0277371,Buutvk0mHXY,\"Mitch, Ox and Bruce are in for a surprise when they spy on the girls locker room.\"\ntt0277371,CXYlv-z_xHQ,\"Austin makes a bet that Jake can't make a Prom Queen out of Janey Briggs, a girl with paint on her overalls.\"\ntt0277371,Vc7HzKwZ55Q,Head Cheerleader Priscilla auditions a unique new squad member.\ntt0047296,IYBAPVjJykY,\"Terry successfully helps to have the mob overthrown, wins the respect of the people, and gets everyone back to work.\"\ntt0047296,uBiewQrpBBA,\"Terry speaks with Charley about his lost days of promise, then Charley hands him a gun and lets him go.\"\ntt0047296,geh_Mu622SY,Edie is devastated when Terry confesses that he gave up her brother's name to the mob.\ntt0047296,-hl0hUWyqoU,\"When Terry finds Charley murdered by the mob, he vows to get revenge and honor his brother.\"\ntt0047296,2u1RrWj4RDk,Father Barry rallies the dock workers and encourages them to stand up to the mob.\ntt0047296,VfXFbuW47kA,\"Johnny berates and fires one of his men and takes his money, then gives it to Terry for a job well done.\"\ntt0047296,5PPQutDwpmw,\"Terry tells Edie a romantic story about pigeons, and when he asks her out for a beer, she accepts.\"\ntt0047296,UZqpweWv5_0,\"Terry flirts with Edie by talking about old times together in grade school, and asks if he can see her again.\"\ntt0107818,LBP8QDlm6OA,\"Andrew recites from memory a legal precedent of the Federal Vocational Rehabilitation Act of 1973 to Joe, in order to convince him that there's a winnable case.\"\ntt0107818,fHYuhwnlTZs,The Beckett family led by Sarah says a tearful goodbye to Andrew at the hospital.\ntt0107818,mIqXkwxzUB4,\"Joe makes the point to the courtroom that the case is not only about AIDS, but also the public's \"\"hatred, loathing, and fear of homosexuals.\"\"\"\ntt0107818,eYJYW_9mFVg,Andrew shows the lesions on his chest to the court.\ntt0107818,Tr90d0ZcrCU,Andrew tells the court why he loves the law and why he makes an excellent lawyer.\ntt0107818,mjbxL_v2DPk,A gay law student asks Joe out for a drink at a pharmacy.\ntt0107818,YkpHalgTqpw,Joe watches an encounter in which a Librarian asks Andrew if he'd be more comfortable in a private research room.\ntt0107818,wHSH-NpCQOw,Joe declines to take on Andy's wrongful termination suit for personal reasons.\ntt0425379,08NGebwIr8Q,\"Milo visits his old enforcer, Radovan, to ask for a favor.\"\ntt0425379,qE9eKngduGM,\"Milo gives a toast to his daughter, Milena, on the start of her new life.\"\ntt0425379,D8V0rLDKZL8,\"Milo enlists the help of his old enforcer, Radovan, to dispose of the corpses of the two gangsters.\"\ntt0425379,SJeCtS4D2HQ,\"In debt to the Albanians, Milo lets them use his restaurant as the site of a human-trafficking meeting. In discussion: the sale of a young girl into prostitution.\"\ntt0425379,icGkuwUzbGI,\"When the Polish human trafficker beats the girl, Milo cannot stop himself and kills him.\"\ntt0425379,9Hn60TQSyTQ,Milo smokes the heroin left to him by Kurt and falls off the wagon.\ntt0425379,v8_v3EaYE6A,\"Milo encounters an old friend, Kurt the C**t, who tempts the now-sober Milo with drugs.\"\ntt0425379,wK0m72Rf7tk,\"Milo confronts his son-in-law Mike about his drug dealing, but then makes him a deal of his own.\"\ntt0425379,l0n2Od6zG58,\"Milo meets with his supplier Luan about an error in shipment, and through the help of Luan's conniving henchman, Rexho, the two make themselves understood despite the language differences.\"\ntt0425379,ewGC9K-7NXg,\"Little Mohammed has found a buyer for Milo's unexpected shipment of ecstasy, but with all of his men incapacitated by food poisoning, Milo must entrust the sale to Little Mohammed alone.\"\ntt0093886,bnitvEUDaBE,C.D. comes to Roxanne's aid when she locks herself out of the house in the buff.\ntt0093886,urdf4g-LXk4,\"In response to a taunt of \"\"big nose,\"\" C.D. rattles off a list of better insults.\"\ntt0093886,pw5Y_7wtJmk,C.D. describes his alien abduction to a gaggle of old ladies.\ntt0093886,VR78Ss7yoio,\"C.D. tells his plastic surgeon to \"\"cut the thing off,\"\" but settles for shuffling through nose cards.\"\ntt0093886,o9zfxe4JVlQ,C.D. uses his tennis racket to thrash a pair of bullying drunks.\ntt0093886,_PZ_LyJfYe8,C.D. uses a radio transmitter to coach Chris through his date with Roxanne.\ntt0093886,h3VZ6IRrVlI,Chris lays eyes on C.D.'s nose for the first time and finds he can't look away.\ntt0108002,tpyZHmGRPuE,The team wants Rudy to lead them out onto the field for the final game of the season.\ntt0093886,bRzQBGwfMkM,\"When Roxanne offers C.D. a glass of wine, he struggles to imbibe it.\"\ntt0108002,FXcu4V-8-j0,Coach Devin delivers a last minute speech to Rudy and the team.\ntt0108002,TY0LUIIwo8k,Rudy's teammates all tell Coach Devine that they want Rudy to dress in their places.\ntt0108002,ZI63g64kDgY,\"In the final play of the final game, Rudy is given the chance to compete and sacks the quarterback.\"\ntt0108002,Qoh3YkxuwVo,\"When he hears that Rudy has quit, Fortune reveals that years back, he also quit the team and has regretted it ever since.\"\ntt0108002,wur5ljnTCzQ,Rudy goes to the Notre Dame football tryouts and shows the coaches what he's got.\ntt0108002,G8c6j-LS-ZI,\"When Rudy sacks O'Hara in practice, O'Hara loses his cool and the coach demotes him to prep team.\"\ntt0108002,pBq_lpX9LTw,Rudy goes to his first Notre Dame football practice where he is pummeled.\ntt0323944,VBeTTZ4QBoA,Chuck fires Stephen after one too many lies.\ntt0323944,Amd6hjScF58,Editor of the New Republic Michael Kelly stands up for the writers when they are attacked for their incorrect usage of comma punctuation.\ntt0323944,OeE1spoom58,Chuck confronts Caitlin to the truth and consequences that the New Republic's journalistic credibility has been irrevocably damaged.\ntt0323944,oJHp0GrlX6M,Amy's attempt to broaden her writing skills is critiqued by Caitlin.\ntt0323944,4qW3YcXJeyg,Chuck finds Stephen's credibility more and more under scrutiny when they do a little backtracking of his hacker story.\ntt0323944,EHmjP1BExPs,\"When Chuck removes Stephen from the New Republic office, Stephen tries to convince Chuck that he is not a criminal. The plea falls on deaf ears.\"\ntt0323944,i8oGdak7vN4,\"With Charles's suspicions increasing with each passing moment, Stephen Glass becomes under the gun during an investigative conference call led by Adam Penenberg and the others at Forbes digital.\"\ntt0323944,ajcVgbrSIWk,Adam Penenberg and Andy Fox test out the phone number they receive from Chuck Lane for Juxt Micronics.\ntt0323944,9frZAZs1Cqo,\"Stephen Glass pitches a story on a young hacker, Ian Restil, to the New Republic team.\"\ntt0323944,z3GNhBE2yhM,Stephen Glass talks about his idea of a well-told journalistic story.\ntt0385004,iNgDtwHreZM,\"Mei is attacked by soldiers hiding in the bamboo trees, but she won't be taken without a fight.\"\ntt0385004,AiJP0M-5Mjc,Jin and Leo battle to the death in a snowy blizzard.\ntt0385004,2ObQm0XBmgI,\"Jin and Mei are trapped in the bamboo forest, but the mysterious Flying Daggers come to their rescue.\"\ntt0385004,7X3WSQtviJU,\"Jin and Mei are attacked by Leo's men, but Mei's flying dagger and Jin's quick archery saves them.\"\ntt0385004,WgLyqfSdbDg,\"Jin takes advantage of the blind girl and watches her bathe, but she is not fooled.\"\ntt0385004,IP-NM6Qdrl4,Captain Leo fights the blind girl after she attacks him.\ntt0385004,YetxvEnpKh8,\"Posing as a blind dancer, Mei performs an intricate dance for Captain Leo that proves very dangerous.\"\ntt0385004,kROlgEPoSVA,\"Leo's men ambush Mei in the forest, but she fights them off with Jin's help.\"\ntt0091949,0xPu59_MHQ0,\"After fear that Number 5 was demolished, the fierce robot makes an emotional reappearance.\"\ntt0091949,y7wj3bB6OU4,Newton tells a joke in an attempt to get Number 5 to laugh.\ntt0091949,hW0V7kZHRSA,Number 5 goes toe to toe with Stepanie's ex-boyfriend and his slick red car.\ntt0091949,BJHzyg9AOsY,Number 5 is tracked down and hunted by the other robots.\ntt0091949,9h_-TIM3kdE,\"Number 5 faces off against a Nova tank on a bridge, leading to a mid-air flight.\"\ntt0091949,mJFvqNOorTs,\"Newton and the rest of the defense team discover that Number 5 escaped, while the robot finds himself in a cow pasture.\"\ntt0067328,Dgd6gV5Z53U,\"Jacy invites Duane over to a motel to lose her virginity, but he is unable to perform.\"\ntt0091949,vWokC4nx7PA,The latest NOVA robotics are put to the test in a makeshift battlefield to impress a crowd of generals and investors.\ntt0091949,Q9AIDn-w3EM,\"Number 5, a prototype robot built for warfare, gets a personality change due to an electrical storm.\"\ntt0090022,Dv6rmmAk_Es,Paden resorts to drastic measures to get his favorite hat back from a thief.\ntt0090022,6JynBr-1sSA,Stella and Paden discuss their plans to take down Sheriff Cobb.\ntt0090022,eug4wbPSykc,\"Paden heads to the edge of town for his classic Western fast draw duel with Sheriff Cobb, while Stella awaits the results off to the side.\"\ntt0090022,iBaUUJOO6V8,\"Sheriff Cobb asks Stella to bring Kelly to the barroom dance floor. Kelly is fired but won't step down, so Sheriff Cobb tosses him out of the bar.\"\ntt0090022,QxXbtzn-6PE,\"Hiding in a cave, Emmett learns his sister, brother-in-law, and nephew have been attacked. Mal brings the news...and a couple shotguns.\"\ntt0090022,wiA6bjzz-CM,Jake explains to Emmett why he's in jail.\ntt0090022,SGbvYkCLZ9U,\"Mal wants some whiskey and a place to lay his head, but the barkeep and the local barflies aren't having it.\"\ntt0090022,5mAO3eeRP84,\"Paden, robbed and penniless, rides into town in his underwear, discovers the man who stole his horse and sets out to get even.\"\ntt0105414,onxbHFyNqGw,\"With some help from Graham, Allie turns the tables on Hedy and escapes the apartment, but she doesn't make it past the elevator.\"\ntt0105414,PJo7WdHSxoI,\"When Allie disappears in the basement of their building, Hedy searches for her, armed with a hook.\"\ntt0105414,yosiG9eEEHA,\"When Hedy holds a knife to Allie, Allie kisses Hedy to save her own life.\"\ntt0105414,KISK76nF-XE,\"After seducing Sam while pretending to be Allie, Hedy stabs Sam in the eye with her stiletto heel.\"\ntt0105414,5pzJ6qzeXlw,\"Allie learns about Sam's murder, but when she discovers the murder weapon in the bathroom, she lies to Hedy in an attempt to escape.\"\ntt0105414,mFcz_U62r6s,\"After Hedy gets her hair styled just like Allie, Allie does some snooping in Hedy's closet.\"\ntt0105414,qSbI8KRB74M,Allie returns to the apartment after reuniting with Sam to find Hedy waiting for her in her bedroom.\ntt0105414,MEYAoMSfCQY,Potential roommate Hedy enters the apartment at an awkward time when Allie breaks down over a picture of ex-boyfriend Sam.\ntt0108160,c77JrXbqqV0,\"Suzy emotionally recounts to the guys the storyline of the film \"\"An Affair To Remember.\"\"\"\ntt0108160,3cZIoQWyBCI,Ross reads letters from potential wives for his Dad.\ntt0108160,qeY1mkXqKgk,Sam finally meets Annie for the first time on top of the Empire State Building.\ntt0108160,LyfG5cnkuEI,Jonah tries to convince Sam to go to New York to meet Annie.\ntt0108160,yy7H306nKaY,Annie listens to the little boy on the radio while hiding in a closet in the middle of the night.\ntt0108160,WdehPsCJab8,Sam and Jonah talk to Dr. Fieldstone on the radio about life without a wife and mother while Annie listens.\ntt0108160,JCLLZQFyGGM,Sam is surprised to find a girl in his son Jonah's bedroom.\ntt0108160,VCRyYN8DfUU,Sam's date is interrupted by an unnecessary phone call from his son.\ntt0208092,g7QBS0O7gT0,\"After a shaky start in a bare-knuckle barn fight, Mickey gets the job done.\"\ntt0208092,1crhwQPKr7w,\"Even at gunpoint, Bullet Tooth Tony intimidates his would-be captors.\"\ntt0208092,RD6BaHKMTXk,\"Bullet Tooth Tony balks at the idea of dissecting a dog; returning to New York, Avi makes a declaration.\"\ntt0208092,2xUynRdzzsM,Brick Top holds forth on how to properly dispose of a corpse.\ntt0208092,xu0p6CtioZk,\"Challenged by Vinny, Brick Top explains who he is.\"\ntt0208092,isyFunAeYnQ,\"When Mickey floors his opponent with a single punch, Brick Top has some explaining to do.\"\ntt0208092,6NbgGhD4tdk,Vinny's dog swallows his squeaky toy whole.\ntt0208092,tGDO-9hfaiI,\"Tommy arrives at the Pikey campsite, where Mickey and the others speak a language all their own.\"\ntt0108174,Qae03boj7lU,Charlie explains his last few break-ups and wows the crowd with his beat poetry.\ntt0108174,L_QCioSGgwU,\"The police captain tears into Tony, then critiques his own performance.\"\ntt0108174,z6QWyZYi8ZU,\"Charlie fends off Rose's axe in a rooftop battle, with both of their crotches taking abuse.\"\ntt0108174,RJACPfUU3nk,\"At his son's wedding, Stuart sings a cover of \"\"Da Ya Think I'm Sexy?\"\" backed by bagpipes.\"\ntt0108174,smVge5w077g,\"Harriet shares a creepy thought with Charlie, then makes the mistake of touching his ear.\"\ntt0108174,ah7mS9H_TOM,\"While touring Alcatraz with a grim guide named Vicky, Charlie and Tony talk about Harriet.\"\ntt0108174,YKRFlNryaWw,\"Charlie visits his parents, just in time to hear his father denounce Colonel Sanders.\"\ntt0108174,IqycJpRdVaY,\"Stuart ridicules his son's \"\"huge noggin\"\"; Charlie and his mom discuss marriage.\"\ntt0090060,TvFwTMU0vyY,Billy comforts Jules and assures her that they're all going through the same tough times.\ntt0090060,Dq6jS6uazUI,\"When Jules freaks out and locks herself in her apartment, Leslie brings all her friends together to help out, despite the tension between Alec and Kevin.\"\ntt0090060,7iMvnj_UBqc,\"Alec lets himself into his friends' apartment, unaware that Leslie is in bed with Kevin.\"\ntt0090060,4ZOT0aLogWU,Kevin finally admits to Leslie his true feelings for her.\ntt0090060,TB8q78FEwE8,\"Wendy admits to Billy that she's still a virgin, but he manages to insult her before he can rectify the situation.\"\ntt0090060,GCEBqhWnUDo,\"Leslie encourages Kevin to fall in love again, but unbeknownst to her, Alec just cheated on her with a salesgirl.\"\ntt0092005,4aI9-g_n_OE,\"When Ace attempts to claim the body, Gordie intervenes.\"\ntt0119654,WS93LMcRGRk,\"K explains the history of the Men In Black to James, but he doesn't believe a word until K gets some coffee from the Worm Guys.\"\ntt0119654,q3OTEdZkBaQ,\"K gives James a tour of Men In Black headquarters, where James loses control of some advanced alien technology.\"\ntt0119654,UqbTLJ0U84M,K questions an alien while J helps to deliver his wife's squid baby.\ntt0119654,1FkVXCCfg2A,\"K uses some harsh techniques to interrogate Jeebs about an alien weapon, and James watches in amazement as Jeebs grows another head.\"\ntt0092005,ecsPydUbYGM,The boys finally come face to face with the dead body.\ntt0092005,tX74H9IuYdM,Chris and Gordie part ways; grown-up Gordie reveals Chris' fate.\ntt0092005,V4jg8o9wXys,\"Crossing the swamp, the boys are set upon by leeches; Gordie finds one in a very private place.\"\ntt0110516,-4_rMqeyOJY,Chris confides in Gordie about a teacher who betrayed his trust.\ntt0092005,zK0JaEde4VI,\"Gordie tells the story of Lard Ass, a tormented boy with a plan for revenge.\"\ntt0092005,gozRrRCtj6E,The boys are chased by an oncoming train as they cross a long bridge.\ntt0092005,soEFK6PSKEY,Vern overhears his brother discussing a corpse; Chris and the others decide to find it.\ntt0120201,_lSzhjggxjI,\"Lt. Rasczak lays down the ground rules to the new soldiers, namely, \"\"everyone fights, and no one quits.\"\"\"\ntt0120201,fgq0ecMHfzc,The largest swarm of bugs attacks the base both from the ground and from the air. Rico and Rasczak do their best to combat the creatures. General Owen screams in panic.\ntt0120201,cACQ2548i0o,\"Jenkins notes how Sgt. Zim is the man responsible for changing the course of the war by capturing the bug. A new recruitment video celebrates the accomplishments of some its soldiers like Lt. Johnny Rico, and Capt. Carmen Ibanez.\"\ntt0120201,1DANEtz59KA,\"Despite some valiant fighting in battle, Rasczak meets his demise when his legs are ripped off by a bug.\"\ntt0120201,EmUIfX9TSJs,\"Johnny, Ace, and Dizzy all experience basic training. Ace receives a lesson in knives from Sgt. Zim.\"\ntt0120201,eAJLWSg5PIY,Rico takes drastic measures when a Tanker Bug shows up and starts destroying his squad.\ntt0120201,DtTgHuGgW-c,Carmen and Zander are captured by the bugs and placed in front of the brain bug who sucks the brains of humans.\ntt0120201,DhGaY0L1lLY,\"While dissecting a sand beetle in anatomy class, Carmen becomes nauseous holding the entails and projectile vomits.\"\ntt0160127,U3lA1kS-XKA,\"The Angels invite Charlie to share drinks on the beach with them, but Charlie prefers to remain anonymous.\"\ntt0044079,jVxyX7FcS4Q,\"Even with his dying breath, Bruno maintains his ruse to take Guy down with him by lying about the missing lighter.\"\ntt0044079,_tVFwhoeQVM,Guy notices a sinister face watching him from the crowd.\ntt0044079,uykR8csyO-w,Guy and Bruno fight on a wildly spinning carousel.\ntt0044079,FL1acMVcHGo,\"Bruno demonstrates his murder technique at a party, much to the delight of the guests.\"\ntt0044079,jd4tpvAcKYA,Guy tries to piece together the murder timeline so he can avoid being implicated in a crime he did not commit.\ntt0044079,44RYxAPH78A,Bruno explains to Guy that he will be blamed for Miriam's death.\ntt0044079,S04ArwiZwjE,Bruno stalks his prey and commits the perfect murder.\ntt0044079,2hlDkSg-Ycc,Bruno spends quality time with his doting mother.\ntt0044079,mjdgDECpWr4,Guy and Bruno meet on the train.\ntt0829482,eLLzlb1SN2M,Fogell gets punched by a store robber while buying alcohol with his McLovin fake i.d.\ntt0083131,tvCjr63AgtM,\"Frustrated by his lack of ambition, Winger's girlfriend dumps him.\"\ntt0083131,FOzub_ghAbM,\"Winger leads his men through their drill display, impressing the general.\"\ntt0083131,YXjqTyQuq4w,\"Winger inspires the troops with a rousing speech about American greatness and \"\"Old Yeller.\"\"\"\ntt0083131,Fjj4a3zB1ag,\"Winger challenges Sgt. Hulka to climb a tower, where he's blasted by an incoming mortar shell.\"\ntt0083131,xR9HuRUUTbs,Winger and Ziskey enlist in the Army.\ntt0083131,mUtHkSw9nEY,The group meets two cadets: antisocial Psycho and weight-challenged Ox.\ntt0083131,iTwIwfvNJLk,Ziskey and Winger introduce themselves to the platoon.\ntt0083131,hYq75Gm4UdI,Winger teases a pretty MP with a spatula and ice-cream scoop.\ntt0829482,9Dv0rOjEVIw,Evan and Seth run into Becca and Jules at the mall the day after the big party.\ntt0829482,23ZWuWe2riY,\"During a sleepover, Evan and Seth say \"\"I love you,\"\" and confirm their best friends forever status.\"\ntt0829482,fls3z7Me2Dc,\"Officer Slater and Michaels admit to Fogell that they know he's not twenty-five years old, and how they wanted to show that cops can have a fun time, too.\"\ntt0829482,Po1GiAYyjIc,\"As Evan is getting lucky with Becca, Seth makes his drunken move on Jules with not the best of results.\"\ntt0829482,XARAo5zXJsQ,\"Officer Slater and Michaels arrest Seth and Evan. When Fogell comes on the scene, Seth and Evan make a run for it.\"\ntt0829482,2HTHPtoNJLk,Fogell shows his new fake I.D. to Seth and Evan who aren't too happy with the name he chose.\ntt0438488,bLPMGLsf1c0,John Connor and Kyle Reese attempt to escape from the T-800 Factory.\ntt0438488,Nl0BGD-SxS0,Marcus Wright discovers that he is not a man but a hybrid terminator.\ntt0438488,8r354VUktU8,John Connor faces off with a T-800.\ntt0438488,gOy7KDtN3mc,Blair Williams is attacked by some scavengers.\ntt0438488,Qq8BlVT4KtY,\"Marcus Wright, Kyle Reese and Star attempt to escape from Terminators.\"\ntt0438488,3VeXn9KEvSA,The machines discover a human hideout and launch an attack.\ntt0438488,dPKG3WMkMxQ,Kyle Reese saves Marcus Wright from a T-600.\ntt0438488,v3aqGRzL0BY,John Connor is attacked by a T-600 terminator.\ntt0096764,xLU_GvlaTtI,\"As Berthold runs to Austria to fetch a bottle of wine, the Sultan entertains the Baron with his latest opera, The Torturer's Apprentice.\"\ntt0438488,AdyWIiYQv7E,\"John Connor, leader of the resistance, launches an attack on Skynet.\"\ntt0096764,5oOK3e53elo,The Baron flies over the battlefield clinging to a cannonball.\ntt0096764,_9JONJG6KSU,\"As the Baron and his men come under attack for taking all of the Sultan's treasure, the line between theater and reality begins to blur.\"\ntt0096764,ixbStXcVqW4,The Baron escapes the war-torn city in a homemade balloon.\ntt0096764,JvVSTmfQJyk,The Baron and Venus dance in the air.\ntt0096764,GH3WNYCuRks,The Baron and his friends are swallowed by a sea monster in the South Seas.\ntt0096764,bZ0jZaH48b8,The Baron prepares to be beheaded by order of the Sultan.\ntt0096764,lJVIu_wNm4g,The Baron and his men singlehandedly defeat the Turks.\ntt0080453,uvbOvG1gCj4,Richard and Emmeline explore each other's bodies and appear to have their own wedding ceremony.\ntt0080453,x1gEy9LSa4A,Richard's father finds the pair after they've eaten berries they believed to be toxic.\ntt0080453,KNmmwUDi4I8,Emmeline is clueless as to why she is bleeding when she gets her period.\ntt0080453,78VWWyPDmss,\"Richard, Emmeline, and Little Paddy find themselves stranded without oars in shark-infested waters.\"\ntt0080453,_FyezVyMFJ8,Richard and Emmeline finally kiss.\ntt0080453,AQ_Boszvgg4,Emmeline has Richard feel her stomach which mysteriously moves by itself.\ntt0080453,e6omnFC9jC4,\"Richard plays Santa Claus on Christmas morning. Emmeline reveals she has \"\"funny thoughts\"\" about him.\"\ntt0080453,M9yS_RvQ5AY,\"Sexual tension causes Richard and Emmeline to get in an argument, and leads Richard to kick her out of the hut.\"\ntt0050212,bbTgmSIDyn8,Shears lectures Major Warden about living life to the fullest.\ntt0050212,nkwyt0ytVJI,Colonel Nicholson informs Saito that the bridge has been mined. Joyce kills Saito with a knife.\ntt0050212,lSTkEHpkMf8,\"In a moment of introspection, Colonel Nicholson reflects on his twenty-eight year career in the military.\"\ntt0050212,bWJkPbBOXL4,\"When Major Clipton wonders if building the bridge is a good idea, Colonel Nicholson is appalled and puts the Major in his place.\"\ntt0050212,tRHVMi3LxZE,Colonel Nicholson comes to the realization that the bridge must be destroyed. In his final moments he falls on the detonator exploding the bridge.\ntt0050212,J1rrdlXZ-pQ,\"The British soldiers celebrate the release of Colonel Nicholson and the other officers from the \"\"oven.\"\"\"\ntt0050212,t9f5FmSQeB4,\"Colonel Saito orders the British officers to perform manual labor. Based on the rules of the Geneva convention, Colonel Nicholson refuses to obey the order.\"\ntt0050212,IXdycEK_38Y,\"Colonel Saito tries several bribery tactics to convince Colonel Nicholson to order his officers to work on the construction of the bridge, but Nicholson will have none of it.\"\ntt0382625,tfL5f6cZlk8,Teabling discusses the theory that the Holy Grail is in fact Mary Magdalene as proven by Da Vinci's Last Supper painting.\ntt0382625,d7pioagkX5k,Silas flagellates himself in humility during prayer.\ntt0382625,HhbADfa8rmY,Langdon explains the The Priory of Sion to Agent Neveu before trouble brews at the U.S. Embassy.\ntt0382625,_8LrZ4NhPmk,\"When Sir Teabing escorts Langdon and Agent Neveu to England, the French have Scotland Yard ready to intercept their fugitives.\"\ntt0382625,PIwZVG5wMi8,\"Langdon and Agent Neveu seek the assistance of a knighted grail scholar, who reveals a dangerous ancient secret.\"\ntt0382625,B7zXxCAZjK4,Robert and Sophie discuss the ramifications of their final discovery.\ntt0382625,F_HKGZRUroE,Langdon and Agent Neveu discover a clue on Da Vinci's Mona Lisa.\ntt0382625,ZFt3xJ6DvVE,Symbologist Robert Langdon opens his lecture on the origins and power of symbols.\ntt0119116,AcuaoDtYcUY,The Diva turns it up a notch while Leeloo beats down the Mangalores.\ntt0119116,poxW5pFQVEw,Ruby Rhod does the intro to his evening show with Korben tagging along.\ntt0119116,OsJKdxPwZdk,Korben is overwhelmed in his initial meeting with the manic Ruby Rhod and his entourage.\ntt0070909,lR6vy0i_rRU,\"Fleeing from the murderous mechanical Gunslinger, Peter Martin comes across a prisoner in MedievalWorld.\"\ntt0119116,7VTsFtwO0u0,\"When Zorg chokes on a cherry pit, Cornelius lectures to him, then saves his life.\"\ntt0119116,7jVsQToSfag,\"Zorg shows off his new and updated weapon system, the ZF1.\"\ntt0119116,3bdQlGt3cEA,Korben takes the unconscious Leeloo to Vito Cornelius who discovers her true identity as the Fifth Element.\ntt0119116,ujC4W8hJ4mg,\"When a Mugger tries to rob him outside his apartment, Korben outwits him with a simple trick.\"\ntt0119116,6u14pLHV3Vw,Leeloo breaks out of her unbreakable prison and escapes into the ventilation ducts.\ntt0865556,BfHSald-ypM,Lu Yan and Jason fight the Jade Warlord's soldiers in a restaurant.\ntt0865556,pS2a76BS_bA,Jason frees The Monkey King.\ntt0865556,gQAZdGaMHu0,\"When Jason finds himself under attack for his staff, a drunken Lu Yan comes to his defense.\"\ntt0865556,e5uhElLMLbA,Jason fights powerful witch Ni Chang.\ntt0865556,Z5DlqH0klZU,Lu Yan and The Silent Monk argue over the best way to train Jason.\ntt0865556,qu1F98-YEz4,Lu Yan fights The Silent Monk for the Seeker's Staff.\ntt0865556,x1DLLAqLiAM,Lu Yan makes it rain with a little help from The Silent Monk.\ntt0865556,foyloa1KiVI,Jason fights to save Lu Yan's life.\ntt0865556,Su6H2_SrpOk,A magical staff sends Jason back through time after being backed into a corner by thugs.\ntt0865556,zhH9GJ7lpGs,The Monkey King faces off with the Jade Warlord after accepting his challenge.\ntt0087538,fzXK1hDkqYc,Daniel continues to train with Mr. Miyagi and learns a stark lesson on concentration.\ntt0087538,AOKzlx8p6yM,\"When everyone thinks the fight is over, Daniel gets Mr. Miyagi's help to fix his leg and goes out to finish the fight.\"\ntt0087538,zJfuNE2rsPY,Daniel awkwardly greets Ali's parents as they head out on their first date and his mom has trouble starting the car.\ntt0087538,WCenGKkj3YQ,\"Despite illegal moves from the Cobra Kai that bring him to the ground, Daniel delivers one final kick and wins the championship.\"\ntt0087538,DsLk6hVBE6Y,\"Daniel excels as Mr. Miyagi tests him on his set of classic moves, and reminds him to concentrate.\"\ntt0087538,wAuzCjipF00,Daniel surprises his teacher Mr. Miyagi when he is able to catch a fly with chopsticks on his first try.\ntt0087538,SMCsXl9SGgY,Daniel is skeptical when Mr. Miyagi tells him to wax a series of cars during their first karate lesson.\ntt0087538,tPgwaQKNKRk,Daniel's attempt to defend Ali from Johnny ends in embarrassing fashion.\ntt0067328,nejXDl9BPbY,\"Sitting in the kitchen, Sonny and Ruth slip into a haunting calm and quietude. She reassures him with the words, \"\"never you mind, honey, never you mind.\"\"\"\ntt0067328,FQunyqgIksc,Jacy is caught by her mother Lois fooling around with Duane and Sonny after school.\ntt0067328,QeydehWrRu0,Sonny and Duane decide to take a road trip down to Mexico.\ntt0067328,H3E2nY0djIQ,\"When Billy returns from a trip to Jimmy Sue's with a bloody nose, Sam the Lion bans the boys including Sonny from his pool hall and movie theater.\"\ntt0067328,_56dNRLXn8Y,Sonny and Duane get into a fight over the affection of Jacy leading to Sonny getting a bottle smashed into his eye.\ntt0033870,1kk3Xvw7jn0,\"Sam tries to explain his moral conviction to Brigid, before he sends her off to the police.\"\ntt0067328,bvjLvggrYUo,Sonny and Duane return from Mexico to learn that Sam the Lion passed away.\ntt0067328,mvgKGY5m71w,\"At the fishing hole, Sam the Lion recollects old times and a crazy, youthful romance.\"\ntt0033870,wPT49WXC0Zo,\"Sam Spade confronts Brigid about why she killed his partner, Miles.\"\ntt0033870,7Xuw-XKP1sI,\"Kasper Gutman, Joel Cairo, and Brigid finally receive the Maltese Falcon, but they soon realize it's a fake.\"\ntt0033870,e4RGh5iAykY,Kasper explains to Wilmer that he's turning him in as the fall guy for the Maltese Falcon. He then warns Sam to be careful in dealings with Brigid.\ntt0033870,aogWdNKef2o,\"Kasper Gutman and Sam Spade have their first meeting, with Sam pretending to flip out over Gutman's bold refusal to diclose information about the Maltese Falcon.\"\ntt0033870,Sgbe_owOvEI,\"Sam Spade proposes that Kasper Gutman should make his gunsel, Wilmer, the fall guy for the murders.\"\ntt0033870,sGuNGXmQZSE,\"Joel Cairo informs Sam of the Maltese Falcon, and offers to pay him $5,000 for it's recovery.\"\ntt0033870,vqOByzMoS_A,\"Sam proposes to Kasper that Joel take the roll of the fall guy, but Wilmer \"\"steps up\"\" to the position.\"\ntt0033870,0I1Vh-Ru1z0,Sam and Brigid O'Shughnessy meet with Joel Cairo to take care of business but Brigid and Cairo don't seem to get along too well.\ntt0033870,gG5kz32ot20,\"Brigid O'Shaughnessy confesses her decietful transgressions, and begs for Sam's help & protection.\"\ntt0120746,rcgygxfcywM,Zorro and Diego get their long-deserved revenge on the men who killed their loved ones.\ntt0120746,pz0R9XJciO0,\"Zorro infiltrates the hacienda to steal a map and fights off Montero, Capt. Love and all their guards.\"\ntt0120746,qRGre50eHbQ,\"When Zorro loses control of his horse, he removes the guards from their own horses one by one.\"\ntt0120746,bw7GnKjkThQ,Elena challenges Zorro to a duel in an attempt to retrieve the map that he stole.\ntt0120746,WLSQERsdER8,\"Zorro takes on a group of soldiers single-handedly, but in his enthusiasm he ignites a powder keg and accidentally destroys the building.\"\ntt0120746,kaJv6L8vF-Y,\"Alejandro dances provocatively with Elena, much to the chagrin of Montero.\"\ntt0120746,J2ZnJvnPgRY,\"Elena admits to lustful thoughts, unaware that Zorro is posing as a priest in the confessional.\"\ntt0087781,qdtCFKVtSls,\"Outside a county fair, unknown pitcher Roy Hobbs strikes out the vaunted Babe Ruth-like player The Whammer.\"\ntt0087781,2QGYIM-8y38,\"After Roy breaks his bat, Bobby Savoy, the bat boy, brings out his own crafted bat to use named the Savoy Special.\"\ntt0087781,i94ldGNNSQ0,\"With two outs in the bottom of the ninth, Roy Hobbs hits the game winning home run to send the Knights to the World Series. He rounds the bases as the lights explode around the field.\"\ntt0120746,Du8HRf6pRVY,Diego trains Alejandro in the cave where he once trained to become Zorro.\ntt0087781,oyaud2-X1QM,\"In front of Memo and Gus, Roy Hobbs turns down the Judge's bribe to throw the clinching game to get to the World Series.\"\ntt0087781,J0lof7tFKtE,\"With Iris in the stands at Wrigley Field, Roy breaks out of his slump with a towering home run that crashes through the score board clock.\"\ntt0087781,tlNLhuxeDJQ,\"In his first at bat in the big leagues, Roy knocks the cover off of the ball.\"\ntt0087781,H8Ancd0WztU,\"To all the players surprise, Roy puts on a hitting clinic in batting practice in front of Pop and Red.\"\ntt0087781,TgIB5Yl4sBQ,Roy introduces himself as the Knights new right fielder to Coach Pop Fisher and Red in the dugout.\ntt0120768,46-oS8F8_c8,Chris takes command of the hostage situation as Danny informs everyone that he's still alive.\ntt0120768,MZhNDpll2Vg,Chris tricks Frost into confessing about the Internal Affairs conspiracy.\ntt0120768,ZiO-hWU7IZI,Chris has a close call while trying to help Danny escape.\ntt0120768,LVC2uynUn8c,Danny convinces Chris to help him escape so he can find the files that will clear his name.\ntt0120768,4FsDFOIWiHo,Chris negotiates with Danny for the safe return of Frost in exchange for turning the electricity back on.\ntt0120768,DA2JIQh96iI,Palermo refuses to take the shot on Danny when ordered by Beck.\ntt0120768,Q0xqrvefO7Q,Danny tries to get answers from a deceitful Niebaum.\ntt0120768,Yd1ndA1_G_A,Danny uses his hostage negotiation skills to defuse a deadly situation.\ntt0120768,GtARiQO8ljE,Danny gives Farley a lesson in hostage negotiation tactics.\ntt0120768,nxTEOyfchP8,Danny seeks answers from Niebaum to prove his innocence.\ntt0187393,ZQzBHnXdPY4,Susan runs after her father begging him to not leave the family again to go back to war.\ntt0187393,N9uT3yyoaGY,\"Benjamin gets his revenge on Tavington, killing him, and watching the British forces retreat from the battle.\"\ntt0187393,oCE8jHLJe3g,\"As the Colonial army begins to retreat, Benjamin assumes the flag to inspire the soldiers to reverse directions and to hold the line\"\ntt0187393,CYgJjicx0yI,\"To trick the British forces on the battlefield, the militia retreats over the hill where the Colonial army is waiting to fire.\"\ntt0187393,njFOIvoN9pc,\"During a peaceful prisoner exchange, Benjamin recognizes Col. Tavington, as the man who murdered his son, and the two officers have a tete-a-tete.\"\ntt0187393,4YdP5YLuJDc,\"Gabriel stops at a church to recruit more men for the militia, but it is Anne who inspires the churchgoers to pick-up arms in the cause for independence.\"\ntt0187393,8kBKeCR4xiU,\"Benjamin, with the help of two of his sons, massacres a number of British soldiers to rescue Gabriel who's held captive for treason.\"\ntt0187393,iD4lY0brr60,\"As the battlefield erupts around them, Benjamin and Tavington eye one another and commence a showdown to the death.\"\ntt0117318,MeTuNES82O0,Alan presents the case of free speech and libelous speech to the justices of the Supreme Court.\ntt0117318,2XuJzaDhV50,Alan reads the Supreme Court decision to Larry who is watching an old tape of Althea.\ntt0117318,yie3IIh0HiQ,\"Larry enters the Flynt Publication offices for the first time since his paralysis, and makes some immediate reformations.\"\ntt0117318,JqoH6dDyZmk,\"Larry makes a mockery of a judge's orders in the courtroom, then tells Alan that he's a dream client in that he's \"\"fun, rich, and always in trouble.\"\"\"\ntt0117318,FyCJ-hUXQ7o,\"With Hustler Magazine on the brink of bankruptcy, Larry receives word of the existence of Jackie O nude pictures. The pictures of the First Lady save the magazine.\"\ntt0117318,OSc1_gfVfCc,Alan gives a closing statement to the court about the price of freedom during an obscenity trial.\ntt0117318,QttI1akIG_4,\"During a Hustler photo shoot, Larry insists on pushing the envelope of the magazine, by exposing a woman's genitalia despite the photographer's protest.\"\ntt0117318,VFDN2EOGyDI,\"After seeing Althea dance for the first time, Larry has a sneaking suspicion that she is underage. He shares a bottle of moonshine with her while broaching the age topic.\"\ntt0454921,JZZnBoruCik,\"After getting off the phone, Chris spots his stolen Bone Density Scanners. Chris chases down the red-handed hippies in the streets of San Francisco.\"\ntt0454921,_-jXE-VvZqw,\"Chris takes his son to the local daycare center, but asks for the profanities and misspellings around the daycare to be cleaned up for the children's sake. His plea falls on deaf ears, as the Chinese Maintenance Worker doesn't speak English.\"\ntt0454921,xPBBnS4br9w,\"As part of his internship, Chris makes cold calls to sign clients, from the bottom to the top. With his time constraints as a single parent, he decides to go top to bottom, and gets a bite from the big fish.\"\ntt0454921,ep-ieEG06qg,\"After being arrested for unpaid parking tickets, Chris goes to his first interview with the firm in a wife beater and dried paint.\"\ntt0454921,t1TC-pegncQ,\"Feeling down about the new living situation, Christopher expresses his anger by badmouthing the Bone Density Scanner. Chris turns his frown upside down by pretending it's a time machine and creates a world of imaginary dinosaurs for Christopher to play in.\"\ntt0454921,56fngopihOo,Chris gets the big news that he has been granted the coveted stockbroker position.\ntt0454921,UZb2NOHPA2A,\"After moving Christopher into his new apartment, Chris shoots hoops with his son and gives him important life lessons on protecting his dreams and aspirations.\"\ntt0454921,V8Dm3OfSn4w,Chris explains his aptitude for the stockbroker job to Jay Twistle while he twists and spins a Rubik's Cube.\ntt0107943,2Jq7xgVqPYA,Congressman Lewis stuns Lord Darlington and his guests when he tells them that they are all amateurs in international affairs.\ntt0107943,G2un8xvArsU,\"In a show of power, Mr. Stevens reprimands Miss Kenton for not following the protocol of the manor.\"\ntt0107943,b7lV6-iKiwQ,\"Mr. Stevens overhears Miss Kenton crying, but he is unable to bring himself to console her.\"\ntt0107943,5nyJNNk1jCY,\"Mr. Stevens continues to maintain a dignified distance from Miss Kenton, even after she informs him that she is getting married.\"\ntt0107943,-vCVptWV5UE,Miss Kenton teases Mr. Stevens for eyeing a young housekeeper.\ntt0107943,34bCs92ACpk,\"Still unable to proclaim his affections for her, Mr. Stevens bids a final farewell to Miss Kenton.\"\ntt0107943,JtqEy9DW91U,Mr. Stevens retreats from Miss Kenton after she playfully inquires about the book that he's reading.\ntt0107943,WIrebinrQH0,Mr. Stevens informs his father that he is no longer allowed to wait on the tables in the manor.\ntt0292644,KLJ4xbE_j94,Lauren ends the relationship with Sean.\ntt0292644,IuFESp6a8hM,\"Heartbroken over losing Lauren, Sean makes several unsuccessful attempts to commit suicide.\"\ntt0292644,pw46kpxHbls,\"When Sean and Lauren meet through serendipity, they discover not only a shared disdain for their Saturday class but a mutual attraction towards one another.\"\ntt0160127,k-mbJhVl2Xc,\"Bosley starts to lose his mind while held captive, but finds a way to communicate with the Angels.\"\ntt0292644,GKh4VG9YQ1Q,\"Paul and Lauren talk about their mutual acquaintence, Sean Bateman.\"\ntt0292644,LozIIWJG9Fs,Sean wants to sulk alone in the snow but is interrupted by Paul.\ntt0292644,-sJezi3j7O8,The situation escalates into chaos when Rupert demands his money from Sean.\ntt0292644,Btn6OKhfHHk,\"While having sex with Lara, Sean fantasizes about being with Lauren instead.\"\ntt0292644,20tvG54uZLg,Richard acts obnoxious while dining at a fancy restaurant.\ntt0292644,cWYIlga8sas,Victor describes his adventures in Europe.\ntt0108071,KJCvbFLtRB0,The spell of sadness that plauged the Craven family is broken and the Secret Garden remains open for one and all.\ntt0292644,Aedxe7JThh8,\"Panicked that Harry has overdosed on drugs, his friends try to convince a jaded doctor to save his life.\"\ntt0108071,hHZs6i30Xr4,\"Colin ruefully chastizes Mrs. Medlock and kicks her out of his room for threatening Mary. Later, Mary reveals to Colin that she has been to the fabled Secret Garden, which raises his disposition.\"\ntt0108071,U2g825zrVA4,Master Colin takes his first steps with the help of his friends.\ntt0108071,OyH39BhKP2g,\"Mary discovers that a young sickly boy, Colin, is the source of all the midnight crying and the two soon realize that they have much in common.\"\ntt0108071,ZFwI8ujpT0Y,\"Mary shows Colin the world outside his windows and when he rises to see the view, he collapses and breaks into a panic.\"\ntt0108071,XkGVykfJIts,\"In the garden, Lord Archibald Craven makes a startling discovery concerning his son, Colin, while Mary feels the pangs of abandonment.\"\ntt0108071,vVRPMleD1SI,Mary searches high and low for the entrance to the garden and encounters a mysterious boy on a horse.\ntt1273678,_kqyM33kijU,Bob Ho and the kids defend the house against Creel and her Russian invasion.\ntt0108071,YGlqg2jC3R4,Mary makes a late-night excursion through the manor and overhears the mysterious cries of someone hidden in another room.\ntt0108071,1ESVngpn1aA,Mary finds out she has a servant named Martha and starts to treat her poorly.\ntt1273678,nwBlOt3WDUQ,Bob Ho breaks out of his bindings and uses a bike to beat up Anton Poldark and his thugs.\ntt1273678,RairI_NdWQA,Bob Ho realizes that Larry has eyes on more than just Farren.\ntt1273678,DknDCyfSe8Q,\"Farren tells Gillian, her mom, that Bob Ho is a spy.\"\ntt1273678,_kocDBoWDcU,\"Bob Ho battles Creel and her Russian thugs, saving Nora from being kidnapped.\"\ntt1273678,Z6bU-bOkm2Y,\"Bob Ho uses his spy tech to get the kids ready for school, but Farren, the eldest child, proves to be a defiant challenge.\"\ntt1273678,w_BL6gnrtDg,Bob Ho uses all of his abilities to wrangle little Nora for bedtime.\ntt1273678,Dkj-8VuWNJk,\"Anton Poldark tests out his new bacterial biological weapon, which has an insatiable appetite for petroleum products.\"\ntt1273678,-dkz4Sk6UuA,Agent Bob Ho makes quick work of Anton and his Russian thugs.\ntt1273678,ix0_IOPyX2g,Bob Ho panics when he loses sight of little Nora in a sea of princesses.\ntt0367089,2VKpd3XEbD8,\"Walt returns to the Museum of Natural History and confronts the squid and the whale, this time without fear.\"\ntt0367089,m5rfQ59cc0o,\"After Bernard collapses from exhaustion, he shares a fond memory with Joan about the early days of their relationship.\"\ntt0367089,lS1KFyakAPE,\"After getting rejected by a literary agency, Bernard tries to connect with his youngest son Frank by beating him at ping-pong.\"\ntt0367089,VcVDBbEpQx8,Bernard reveals to his ex-wife Joan that he tried to save their marriage in his own way.\ntt0367089,yoFS6X0RKkA,Bernard's advice to Walt regarding women yields lousy results.\ntt0367089,gZ9nPV_stFA,Frank has a hard time getting used to Bernard's new house.\ntt0367089,a4wb-xmYM50,Family allegiances take form in what is supposed to be an easy-going game of tennis.\ntt0367089,03Rl5exupSo,Bernard and Joan tell their kids that they are getting a divorce.\ntt0087332,7aW8oyTgA60,\"Faced with ultimate destruction, Spengler decides to \"\"cross the streams\"\" through the gate, hoping it will roast the Stay Puft Marshmallow Man.\"\ntt0105690,dN9rfJvFHgw,\"With two nuclear-armed Tomahawk missiles en route to Honolulu, the Pentagon scrambles a contingency plan to deal with the situation. Meanwhile on the USS Missouri, Ryback and his team continue their assault against the terrorists.\"\ntt0105690,XBz6d2VPgZw,Ryback doesn't take too kindly when Cmdr. Krill shows up at the galley and pulls rank.\ntt0105690,aYBTp7dH_XE,Ryback gets a hand from Jordan after he's cornered by Doumer.\ntt0105690,_uw-hnKrV80,\"To save their shipmates from drowning, Casey and the remaining hostages organize a counterattack against the terrorists.\"\ntt0105690,A0gGIMaQZJs,Ryback interrogates Playboy Playmate Jordan Tate about the situation on board the battleship.\ntt0105690,sQC7OzU_d18,Ryback finds the hostages and liberates them.\ntt0105690,FwnnarFw_T8,\"After executing a lowly private, the terrorists begin their hunt to eliminate Ryback... until they become the hunted.\"\ntt0320691,QA029M9LIVU,\"After seeing Lucian left for dead, Raze goes on a rampage against a whip-brandishing Vampire.\"\ntt0320691,2QGI0KdwW8Y,\"Seeing help from a Vampire Elder, Selene awakens Viktor from his slumber a century ahead of schedule.\"\ntt0320691,BWWfy9YSQmw,\"With Lycan blood now in his veins, Michael is able to see Lucian's memories of loss and torture at the hands of the Vampires.\"\ntt0320691,naUJM6Dp7qk,Selene dispatches Viktor by using his own sword against him.\ntt0320691,Eb3oEMSXPnc,Selene rescues Michael and helps him escape in daring fashion.\ntt0320691,pexcH4Ffi8I,Lucian tells Selena that the only way to save Michael is to bite him and turn him into a vampire-werewolf hybrid.\ntt0320691,lTc8TxNTh6I,Viktor justifies his past atrocities to Selena.\ntt0320691,tAH5PR2SvXM,Selene rescues Michael from Lucian and his Lycan attackers.\ntt0383694,XU8Xdt7tSyo,Reg thanks Vera for a lovely Christmas despite the somber nature of the affair.\ntt0383694,EPtxN1YoQ3k,Sid finds himself unable to forgive Vera for her actions.\ntt0383694,Vo5ycPggsGY,The Judge sentences Vera to two and a half years in prison.\ntt0383694,k7OWfTv3Xr0,Vera is filled with shame as she tells Stan about her secret career as an abortionist.\ntt0383694,fuAo0q0a_Ww,\"Questioned by Det. Webster, Vera justifies her work as a backroom abortionist.\"\ntt0383694,ysFpoWSlo7g,Ethel's engagement party is interrupted when Det. Webster pays a visit to Vera.\ntt0383694,ltMrjNiI340,Reg proposes to Ethel and she accepts.\ntt0383694,6Vj6Up8OaFo,Susan visits a psychiatrist in an attempt to obtain an abortion on legal grounds.\ntt0383694,4XhNhG_zq-A,\"Vera welcomes Reg into her home with the intent of setting him up with her daughter, Ethel.\"\ntt0383694,bBBV7uUGER8,Lily visits Vera with a new assignment and an assortment of rare postwar goods.\ntt0070909,W7Dq7vqpGCM,\"When the sun goes down in WestWorld, the real work begins.\"\ntt0070909,40CUuyOxUZs,Peter Martin has an intimate encounter with one of the ladies at the bordello – who is a robot.\ntt0070909,9Okpnw0Ktt8,A mechanical snake fails to follow protocol when it slithers up to John Blane and Peter Martin.\ntt0070909,nq382fby2yU,\"With the robotic Gunslinger on his heels, Peter Martin has to act fast.\"\ntt0070909,Mg7YM02K5ek,A guest dressed as a Medieval Knight fights the Black Knight robot until something goes horribly wrong.\ntt0070909,fsMC6d8DeMo,\"John Blane and Peter Martin face the Gunslinger once more, but this time, things go off script.\"\ntt0070909,lHodSSB_YpM,\"After watching this commercial, you'll want to book your trip to Delos today.\"\ntt0070909,4M1mi7Ommbg,Peter Martin and John Blane stop by a bar and get picked on by a robotic Gunslinger.\ntt0070909,1KCTiqj_-tg,John Blane gets a surprise visit from the Gunslinger.\ntt0120890,yqtmypCco-I,\"As Detective Perez gets closer to the truth, she finds herself getting closer to Lombardo.\"\ntt0120890,-heLeiCeD58,Detective Perez doesn't buy Kelly's story about her sexual assault.\ntt0120890,DWa1IsbsiY4,\"Suzie poisons Lombardo's drink and sends him overboard, thereby tying up the last loose end…\"\ntt0120890,uNsFppO-q3g,Kelly stuns her mother when she tells her that she was raped by Sam Lombardo.\ntt0120890,lDDtJ_J_hhw,\"After washing Lombardo's jeep, Kelly makes a not-so-subtle attempt to seduce him.\"\ntt0120890,9lro80T1eV8,Lombardo and Suzie team up to surprise Ray and dispatch him into the wide open sea.\ntt0120890,Tx59CHKUgjs,Lombardo and Kelly conspire to murder Suzie in order to get her out of the way.\ntt0120890,vW4TOsL7e3M,Ray is on to Kelly's scheme and lets her know about it.\ntt1156398,VDm_Pg2Cdsk,Tallahassee creates a distraction so Columbus can save the day.\ntt1156398,OK7Hm5IztPc,Tallahassee provides a distraction while Columbus runs off to save Wichita and Little Rock from a clown zombie.\ntt1156398,1tdZ_k0eaHo,\"While checking out a gift shop, Columbus tells Tallahassee that he has a crush on Wichita.\"\ntt1156398,Awh5WP9BbGQ,\"Wichita and Little Rock seek shelter on an amusement park ride, while Columbus and Tallahassee decide that the sisters need help.\"\ntt1156398,cwprGyncs0A,Columbus and Tallahassee risk their lives to look for a box of Twinkies in a grocery store.\ntt1156398,sSvxvpY7PZM,\"Columbus hitches a ride with Tallahassee, who has only one weakness: Twinkies.\"\ntt1156398,RW4ADt4YSy0,Columbus explains his first four rules for surviving the zombie apocalypse.\ntt1156398,kp3HaaTqYP0,Columbus wakes to find that his sexy neighbor from the apartment next door has transformed into a zombie.\ntt1554091,x2wH5RS58lo,\"Carlos tells Luis why he decided to raise him as a single parent, and what it means to have his son in his life.\"\ntt1554091,LXM383MIFYY,\"Carlos takes his son Luis to his first charreada, a Mexican rodeo.\"\ntt1554091,f3XcExCD3HM,\"Luis and his friend, Facundo, tease one another about their respective futures, and are interrupted by gang member Ceelo, who serves as a reminder of the dangers of gang life.\"\ntt1554091,du22ttQhRhA,\"After successfully reclaiming the pickup truck, Carlos and Luis get pulled over by the police. Later, Carlos finds himself in prison because he is an illegal immigrant.\"\ntt1554091,z5S3e6sCBV0,Carlos and Luis break into a used car lot get their truck back.\ntt1554091,LwgcvZ0z430,Carlos and Luis find Santiago working in the kitchen of a night club and ask him what he did with their truck.\ntt1554091,mhaxNZs5MGc,\"While Carlos climbs high atop a tree, Santiago uses the moment to steal his truck.\"\ntt1554091,w57ga2Yiic4,Luis asks his father Carlos why he bothered having him when he knew he was going to be poor.\ntt1554091,PiJ5Ef63OwY,Anita offers Carlos money to start his own business by buying a truck.\ntt1740707,nRSaxtoy7fo,\"The film crew and troll hunters come face-to-face with an angry, rabid mountain troll.\"\ntt1740707,7tFLFMyA0EI,\"After tiring out the mountain troll, Hans must deliever the final blow.\"\ntt1740707,HSh63MNfwbE,The troll hunters find themselves trapped in a troll lair and have difficulty escaping.\ntt1740707,yly_wF8DyE8,\"After finding out that the trolls have been infected with rabies, Hans, Thomas, and Johanna must escape the wrath of an angry mountain troll.\"\ntt1740707,Io7wUtei6BA,The troll hunters escape the woods and the angry troll.\ntt1740707,WhGFwk58h34,\"Desperate for a troll blood sample, Hans resorts to extreme measures, luring the troll out of hiding with sheep and \"\"Christian man's blood.\"\"\"\ntt1740707,kRCO31JfDck,Hans goes to the extreme in order to obtain a troll blood sample.\ntt1740707,CjIU-zqxJEA,\"Over a bite to eat, Thomas interviews Hans in order to gain a better understanding of trolls.\"\ntt1740707,angyfkPmHMo,\"Hans allows Thomas and Johanna to accompany him on a hunt, and the students get their first look at a troll.\"\ntt1740707,KgqzMdBg7ig,Thomas and Johanna follow the troll hunter Hans into the woods and find themselves involved with something greater than they expected.\ntt1306980,nukRk0WMspo,Adam learns that Rachael has been cheating on him.\ntt1306980,Cj-H4ZcfVU8,Kyle is pleasantly surprised when he learns of Adam's odds of survival.\ntt1306980,2tI3Dz2Ic2o,Adam is appalled by state of Katherine's car.\ntt1306980,5aLrRe3K_6I,Adam uses his cancer as a way to guilt girls into talking to him.\ntt1306980,oZEJTJSZQQs,\"Adam meets his therapist Katherine, who is much younger than he expected.\"\ntt1306980,CwLcHWwjkV4,Adam talks to his family in his final moments before the big operation.\ntt1306980,oviA5ncbmc8,\"Adam informs his mother, Diane, that he has cancer.\"\ntt1306980,OGpGO7K3aBo,Adam clips his hair off because he will start chemotherapy soon.\ntt1306980,jmjcKSMwC1Y,Adam is very nervous about his surgery so he calls Katherine to feel better.\ntt1306980,0RWk0XTaEX4,Adam drives a car for the first time and then he has an angry breakdown.\ntt1237838,0999Zftz6-w,Duncan uses a slingshot and a firecracker to take out Robert.\ntt1237838,i-6UVTMiDm8,\"Jason tries to negiotate the release of Kelly and his friends, but he bungles it horribly.\"\ntt1237838,VSjHX4LO35c,\"The Mystery Team infilitrates Leroy's compound disguised as the most unconvincing \"\"high school students\"\" ever.\"\ntt1237838,o2jtBk4B-hE,\"Jordy gives the Mystery Team a new lead, while also commenting on Jason's prospective love life.\"\ntt1237838,OQrJfULly20,\"After discovering two dead bodies, Duncan rages against Jason over how incompetent they all are at doing detective work.\"\ntt1237838,rHPTGJpgtFU,\"The Mystery Team goes to the local bowling alley to follow-up on a lead, but they encounter nothing but insulting hostility.\"\ntt1237838,xDvdVxr48UU,Duncan has to reach into a filthy toilet to retrieve an important ring before he and his friends are caught by the Bouncer.\ntt1237838,-cOOPGQGqh8,\"Jason infiltrates a hospital costume party disguised as a bandito and meets Jim and Frank, two drunkards.\"\ntt1237838,b0dtzloyP6k,\"After being rejected by his friends, Jason seeks the sage advice of Jordy.\"\ntt0087332,89OOSFlcy98,\"The Ghostbusters fire at Gozer who disappears, but Spengler says the worst is yet to come.\"\ntt0087332,9-tYZkJ2p54,\"Faced with incarceration by Peck, the Ghostbusters convince the Mayor to allow them to save the world.\"\ntt0087332,xSp5QwKRwqM,\"When the police drop the possessed Louis off at the Ghostbusters' office, Spengler questions him.\"\ntt0087332,ZGNoXIhKTLw,\"Possessed Dana tries to seduce Venkman. When he rejects her, she starts to levitate.\"\ntt0087332,VWb1z6ZwUoY,\"When the Hotel Manager refuses to pay the bill, Venkman shakes him down.\"\ntt0160127,EN0JaJN_fwU,\"Dylan finally gets back to Natalie and Alex, but their headquarters are blown up.\"\ntt0160127,FHB3oMNWk1g,\"Natalie is attacked by a thug in the bathroom, while Alex is ambushed in Jason's trailer.\"\ntt0087332,7_pR6mUYtOo,\"When Stantz's shot misses, the fleeing ghost winds up sliming Venkman.\"\ntt0160127,jj7BRKHml8g,Natalie infiltrates Redstar's secure computer system and plants a bug.\ntt0160127,cjyqWsrpQAA,Alex gives a stirring talk to the Red Star technicians and gains their cooperation.\ntt0087332,5ohlA__xABw,\"Venkman conducts ESP testing, always passing the cute female student, and continually shocking the male student.\"\ntt0160127,2LWGe28axmg,The Angels chase the thin man and barely escape his gunfire.\ntt0160127,xvf--4i6NA0,Alex is annoyed when Natalie and Dylan make fun of her inedible muffins.\ntt0212235,lBSi1KKCRQY,The kids discuss the killer's methods.\ntt0212235,eh_vTiBMvpo,\"In a parody of Scream, the Killer calls Cindy aka \"\"Screw\"\" and stalks her.\"\ntt0212235,X1JIzLmbkA4,Barbara finds out she has STDs and then remembers an awful thing that the killer knows about her.\ntt0212235,dz6QtPfCmrU,Slab sings in the auto body shop and is pursued by a demon car.\ntt0212235,EVGsdxjfeO0,Dawson and Martina finally unmask the killer.\ntt0212235,OdaMqivNKZ0,The movie parodies Pop-Up video with information for the audience.\ntt0212235,-k34FungG-Q,The new kid Dawson meets all the other relevant teenagers in the movie.\ntt0212235,YC65XWrNn4s,EmptyV host Hagitha Utslay meets the school security guard.\ntt0212235,oQAqWa_86vg,The killer goes after Barbara with a weed whacker.\ntt0212235,1dqc9SW9OFI,Martina explains the rules of parody films.\ntt1132626,FnmbPDYmz0E,\"Luba tries to force Mallick to sacrifice himself, but her plan backfires.\"\ntt1132626,8BgcozieWuE,Charles becomes a target when his selfish behavior puts the others at risk.\ntt1132626,jcp5lTiZEUY,\"When Mallick starts the clock ticking, Ashley pays the ultimate price.\"\ntt1132626,9N9BwAElBiA,\"Brit and Mallick figure out the game, but only after it's too late.\"\ntt1132626,QE78itp1Jn0,Jigsaw confronts Mark Hoffman about his copycat murders.\ntt1132626,IrptxQD55zY,\"Brit, Luba, Charles, Mallick, and Ashley wake up in a room with collars attached to their necks.\"\ntt1132626,3y4KK8Bd5l8,Agent Peter Strahm wakes up with his head in a box connected to two large bottles of water.\ntt1132626,BYwC-WJQKd4,Mark Hoffman visits Agent Peter Strahm in the hospital to determine how he escaped Jigsaw's trap unscathed.\ntt1132626,lh9z3hPGqgM,\"Agent Peter Strahm decides to ignore Jigsaw, at his own peril.\"\ntt1132626,LHpto8gCOso,Seth Baxter is forced to crush his hands in order to ensure his freedom but Jigsaw has other plans for him.\ntt0360009,x6oaXdPsiN0,Scott meets ambitious recruit Curtis and knife-fighting instructor Jackie Black during a training exercise.\ntt0360009,imyD8loUM-g,Jackie Black is shot down as she guides Laura to safety.\ntt0360009,z8fwAxhgA-A,Laura expresses the depth of her anger and hatred for her father.\ntt0360009,ktrHO9uETjk,An undercover Secret Service Agent reveals the truth about Laura and the depth of her attachment to the girl.\ntt0360009,aKgha2AsDNc,Curtis and Scott argue about the case as Curtis presents Scott with new evidence.\ntt0360009,hKoYPfcWpcU,Plans go awry when Tariq Asani sees Curtis with a cop.\ntt0360009,BWWTObc0KDQ,Scott learns necessary information from Tariq Asani.\ntt0360009,YOcfHxXt_aA,Scott plays a robber on a killing spree in order to gain the trust of some convicts.\ntt0360009,aTsjwO97Aow,Scott uses brutality and harsh techniques to track down the President's daughter.\ntt0360009,TaOTPhkNkbw,A young and eager recruit named Curtis introduces himself to Scott and shares a keepsake from his father with him.\ntt0308508,dYvCGjka2-s,Surfers explain the differences in surf cultures across the world and enjoy the remote island of Rapa Nui.\ntt0308508,6whKr0DDbdY,\"Dale Webster describes his passion for surfing over 10,000 consecutive days.\"\ntt0308508,cUknJlnzdLo,\"Surfing has changed since it first began, becoming more mainstream and including women.\"\ntt0308508,8Jd-gAm1wMU,\"Despite engine problems, the group boats 100 miles into open water to surf.\"\ntt0308508,wACyqCoTTno,Jim and Alex ride sand dunes in Vietnam.\ntt0308508,Y3WWNavHXSA,Riding a foilboard is like gliding on water.\ntt0308508,fQJzgovGkSQ,Several surfers describe the pipeline of Oahu.\ntt0308508,OwzlxG2_8hA,Dana Brown explains how it's all about the wave.\ntt0308508,4sJi6VExXuA,The Malloy Brothers explain how surfing brings people together.\ntt0308508,zJ3ZcmivZhI,Jesse Billauer explains how he overcame adversity to continue surfing.\ntt0118971,PnFxS6a2aPU,Kevin and Mary Ann explore the luxurious apartment provided by Kevin's law firm.\ntt0118971,DEX-5gM0P8I,Kevin uses some reverse psychology to prepare the jury to acquit Alexander of murder.\ntt0118971,3teArKtt1PQ,Mary Ann has a waking nightmare involving an abandoned child.\ntt0118971,L38yiP7vLwM,Mary Ann raises some suspicions about their new life as Kevin tries to comfort her.\ntt0118971,9enPC37mHrM,Kevin puts his jury selection skills to the test upon his arrival in New York.\ntt0129167,W3HDdYjGDzg,Hogarth Hughes teaches The Giant the difference between a rock and a tree.\ntt0129167,5Ipcnz96hE8,The Giant protects Hogarth Hughes from the jet fighters that are aiming to shoot them out of the sky.\ntt0129167,yhaoJxQpRg0,The Giant is resurrected.\ntt0129167,D4dT2eBWI2M,The Giant sacrifices himself to save everyone else.\ntt0129167,SF24fZvfoHs,Hogarth sneaks a laxitive into Kent's milkshake under the pretense of making it a better drink.\ntt0129167,9t2_DjGU_Qk,The Giant makes a big spash after watching Hogarth make a one of his own.\ntt0129167,QjCxoikhxSE,\"Hogarth tries to thwart Kent as he searches for the Giant. Meanwhile, Dean deals with the Giant consuming his scrapyard.\"\ntt0129167,MiPH7hknJ8k,Hogarth finds food for the Giant.\ntt0129167,ydMwnnhLnLU,Hogarth is placed in a difficult situation when the Giant's severed hand snoops around the kitchen.\ntt0129167,PW-RHrX7Fnc,Kent Mansley introduces himself as a tough-talking G-Man.\ntt0093437,9o8gzua-K_E,Michael watches as David and his pals drop one by one from a railroad bridge into a foggy abyss.\ntt0093437,0A80j2BuMaU,David initiates Michael into the gang with a disorienting meal.\ntt0093437,ZynRcyXIGKM,Edgar and Alan Frog try to convince Sam that Santa Carla is crawling with vampires.\ntt0093437,TgLe98ts0QU,\"With all of the Lost Boys dead, Max reveals himself as the head vampire and demands that Lucy join him.\"\ntt0093437,F5g7u8WRwqQ,Michael and David fight their way into Grandpa's antler-filled work room.\ntt0093437,XObhhoFp6G8,Alan and Edgar Frog kill Paul with a bathtub of holy water.\ntt0093437,5EN8IHljaaE,\"Sam and the Frog brothers attempt to kill the lead vampire, but they only end up angering David.\"\ntt0093437,Kq3nRBxVD3k,\"At dinner, Sam and the Frog bothers try to prove Max is a vampire, to no avail.\"\ntt0093437,iYsOzr1hPl8,\"When his dog attacks Michael, Sam must face facts -- his brother is one of the living undead.\"\ntt0093437,wmbt1RjPn4M,Michael is transfixed by Star at a rocking beach party.\ntt0120004,Ss7i62FguNY,The creature attacks the group that stayed behind to wait for help.\ntt0120004,QJYrz4jET9M,D'Agosta and his dog hear something on the other side of a door.\ntt0120004,tQkepXxAGq4,D'Agosta sits in on the autopsy for one of the creature's victims.\ntt0120004,fUxg-0j1Ijw,Dr. Green burns her own lab to defeat the creature.\ntt0120004,0UBym5z6rgM,\"A security guard goes to the bathroom to smoke a joint, but has an unexpected visitor.\"\ntt0120004,KldCgijNQyg,\"D'Agosta interviews Dr. Frock, who tells him about his theory, The Callisto Effect.\"\ntt0120004,HC9BNtZrnIc,Things go horribly wrong at the opening of the museum's new exhibit.\ntt0120004,7SU_ZshgGro,The creature takes out the police rescue team.\ntt0120004,HaG2Mm5K6TE,D'Agosta tells Dr. Green about his lucky bullet.\ntt0086508,sx-obtKU1jM,A wounded Sailor uses his lucky grenade as Rhodes and the others fly to safety.\ntt0086508,J4yrUjXQJdQ,Blaster sacrifices himself to ensure that the bridge is completely destroyed.\ntt0086508,f4wQCy4xIyY,Charts uses some fancy flying to rid his helicopter of an unwanted passenger.\ntt0086508,m_C2cbqPkx0,Rhodes quotes Shakespeare as the ground team and air team go their separate ways.\ntt0086508,qXTTXNZucIU,A fight between Sailor and Scott leads to a revelation about Scott's reasons for joining the mission.\ntt0086508,IYuknBe73ik,Wilkes takes out the entire unit during a training exercise highlighting his evasive techniques.\ntt0086508,oWr69u4tLoc,\"After their weapons are confiscated, Wilkes convinces everyone to surrender their pay.\"\ntt0086508,wj0aH_PiAnI,Blaster teaches a lesson on the proper placement of explosive charges.\ntt0086508,Xwl5DKs5HL0,\"Rhodes tracks down Sailor, who begs to be included in the mission.\"\ntt0086508,39-n35p2juk,Sailor teaches Scott a lesson about perseverance.\ntt1477076,QEkSX1S4kwg,\"Bobby attempts to save the life of Nina, his publicist and partner in crime.\"\ntt1477076,1khqylEN_48,Hoffman uses the head trap to exact revenge on Jill.\ntt1477076,-JeKHhnEcw0,\"Lawrence, working on behalf of Jigsaw, returns to the scene of his nightmare to inflict revenge on Hoffman.\"\ntt1477076,01qhgR0WsnA,\"Bobby fights to save the life of his lawyer, Suzanne, from a device designed to pierce her eyes and mouth.\"\ntt1477076,KdfwchgYp-U,Bobby finds himself in a cage when Jigsaw forces him to face his first real test.\ntt1477076,xZOMiFk2ThE,Evan and his skinhead friends face the wrath of Jigsaw in an elaborate vehicular torture trap.\ntt1477076,6XFzJ3WtYPo,\"Bobby seeks to inspire a support group for Jigsaw survivors, but Lawrence sees right through his performance.\"\ntt1477076,FTgzyx6931A,Jill dreams of being brutally murdered by Hoffman.\ntt1477076,IvPewzBKqYU,Jigsaw devises a sick game for a love triangle that plays out in a very public way.\ntt0816462,NFwg1siPn3A,Conan fends off mystical serpents.\ntt0816462,fXwVoMcZa90,Conan and Khalar Zym have their duel.\ntt0816462,iGk8yvyixvY,Conan battles mystical sand monsters.\ntt0816462,2vL7DtW6wGM,Khalar Zym seeks out the pure blood Princess.\ntt0816462,bU6V_rkvECA,\"Conan and his crew are attacked, but repel the invaders.\"\ntt0816462,wRLLMDtKPvc,\"Conan catapults one of Khalar's men back to his camp, with a message.\"\ntt0816462,G1IQQRRhI5M,Conan chases down a rival group of warriors to find Khalar Zym and meets Tamara.\ntt0816462,QHUcubYTt0o,Conan interrogates one of his captors and extracts the whereabouts of his father's killer.\ntt0816462,CTCkd8aEpZ8,A young Conan brutally kills a group of savages.\ntt1212023,wsvdvNRcUVA,Taylor and Justine get attacked while trying to call for help.\ntt1212023,QUYNJvRn4jw,Justine and a very unobservant Taylor try to find help inside a gas station.\ntt1212023,FRLcggpffDk,Justine and Taylor discover what's left of Zach.\ntt1212023,ShCVyu04OCc,Taylor and Justine flag down a truck driver and attempt to escape.\ntt1212023,93uAmv9qwNs,\"While Justine and Zach get intimate in the bedroom, Taylor explores the rest of the farmhouse.\"\ntt1212023,yrZ7CsXcTrI,Justine investigates the barn and faces off against every farmer's worst enemy.\ntt1212023,8YkX-DZDB4o,\"While Taylor surveys the tools, Josh has a deadly encounter with Farmer Brown.\"\ntt1212023,9ZM4N1bdm4g,\"As Taylor gets ready for another day at school, Farmer Brown prepares a rooster for slaughter.\"\ntt1212023,5ai_pW6LPpE,Zach and Justine explore the barn until blood is spilled.\ntt1212023,dw4cZQicaVo,Taylor takes control when the gas station is mysteriously closed.\ntt0206275,Bn0-7zClnWA,Derek tries to persuade Malakai to give up his criminal life.\ntt0206275,zMEjTw82zDc,Sara arrives at a new school and gets in a classroom debate with Derek.\ntt0206275,KRCwsXtAeKQ,Sara auditions for Juilliard Dance School.\ntt0206275,_oBX12cEu-w,Sara tells Derek that she wants them to take a break with their relationship.\ntt0206275,Ts4u--T-fDc,\"Roy apologizes to his daughter, Sara, for their conflicted past.\"\ntt0206275,jgcD-DHpPR0,\"Sara gets in a fist fight with Nikki, while Derek is involved in a drive-by shooting.\"\ntt0206275,cvEJy_9hy4o,Sara explains to Derek why ballet isn't a part of her life anymore.\ntt0206275,NyxW1SxFqzk,\"Chenille brings Sara to a local club, where Nikki confronts them.\"\ntt0206275,lPrOstRqB1o,Derek shows Sara how to dance to hip-hop music.\ntt0086873,eI8o5C5l9J8,Roger tries to get Prahka Lasa to put Edwina's soul back in the bowl.\ntt0086873,aQ6ZzIC7OZk,Edwina tries to sabotage Roger in his bid to sleep with Terry.\ntt0086873,3VVxzAw0hzk,Roger tells Edwina she is going to be the same old bitter person in her new body.\ntt0086873,BpV5wTbvq8M,Roger forces Edwina to give him a hand in the restroom.\ntt0086873,ICC99mWSW1s,Roger tries to sleep with Terry without waking up Edwina.\ntt0086873,LpPNvHq9rKQ,Terry makes a deal with Edwina and Roger to keep them from sending her back to jail.\ntt0086873,nE58ZtIpNSo,Roger and Edwina find themselves trapped in his body with mutual control of its movement.\ntt0086873,Vz0R6lgYJb4,Roger talks to his girlfriend Peggy about getting married.\ntt0086873,u14YNz-Ym2c,\"Edwina helps Roger overturn the prosecution's objection, but sabotages him when she discovers the ruling was unfair.\"\ntt0086873,iZ1_8kpRnW8,\"Roger tries to explain what is happening with him and Edwina to his girlfriend, Peggy.\"\ntt0086873,9e-6wOwlHmM,\"Edwina asks Roger to draw up a new will for her so her estate goes to her stableman's daughter, Terry.\"\ntt0086873,kHFzcXAU8hg,Edwina's soul is mistakenly transported into Roger's body.\ntt0115738,rOTyj0-PRRY,Kid incites a tomato battle with Al.\ntt0115738,ok-pfhEHoE8,Kid breaks down emotionally after a fight with Wick.\ntt0115738,bENL5AzvP4w,Al and Kid destroy Al's former workplace.\ntt0115738,7sQ6ktZxmYY,Al realizes his fear of aging.\ntt0115738,s3TkMEuXaqs,\"Before Al leaves, Kid gives him the box of moonlight.\"\ntt0115738,1VkkHqm3q14,Kid and Al debate the authenticity of professional wrestling.\ntt0115738,4zhGIlO2Lx8,\"Al scolds Kid about his freewheeling, irresponsible lifestyle.\"\ntt0115738,cMbUCMRhH9M,Kid tricks the local sheriff after he interrupts his tomato fight.\ntt0115738,vtXNIF662BU,Luvven pesters Al with his religious prying.\ntt0115738,Bo47QGYq-LI,Al yells at Kid for stopping on a blind curve.\ntt0115738,7v6zdWNRtLI,Al is unsatisfied with Floatie's sex hotline performance.\ntt0374563,OmBxRiaJzFg,Gary Dexter volunteers for dental torture in order to save Jennifer Tree.\ntt0374563,DTpEhN9pzbs,Jennifer Tree has thirty seconds to kill or be killed.\ntt0374563,giegMz7BBPQ,Jennifer Tree is shown a haunting video of what's to come.\ntt0374563,iRrAI8tl8d8,Gary Dexter has to keep his cool while Detectives Di Santos and Bettiger investigate a missing person.\ntt0374563,aisjDMTWr2w,Jennifer Tree discovers that she is not alone.\ntt0374563,TyPhgetzMfY,Jennifer Tree gets the upper hand on Gary Dexter.\ntt0374563,_MeA5EW8FdI,Jennifer Tree wakes up in an unfamiliar place.\ntt0374563,RUvQEHa_lZQ,Jennifer Tree discovers some incriminating photo albums.\ntt0374563,3aCT8ZhNBrA,Jennifer Tree is forced to drink the remains of a previous victim.\ntt0200530,ULp3vJ6Dme8,Sam auditions for Buck and Beverly and impresses Buck because of his resemblance to Chuck.\ntt0374563,h-a0Kx3RlIg,Only fellow captive Gary Dexter can save Jennifer Tree from drowning in a sea of sand.\ntt0374563,b8SJezYEQHA,A captured man is tortured with battery acid poured up his nose.\ntt0200530,UchtzdG8HdM,\"After Buck confronts Chuck's assistant, Jamilla, Chuck tells Buck to stay away from him.\"\ntt0200530,wOzRG7N8_Ic,Buck and Sam get off topic at a late-night rehearsal.\ntt0374563,R7cqvLTR0vA,Jennifer Tree makes an escape attempt through the air duct.\ntt0200530,Nq1D205cXss,Buck presents Chuck with a special gift.\ntt0200530,30shqA196uw,Buck doesn't agree with the analysis of his play by Beverly.\ntt0200530,f39I-UCl9Qo,Buck wants to play a game with Chuck.\ntt0424993,_U8k98LPpjg,Zack and Vince face off for the Employee of the Month title.\ntt0200530,sp4A_jU3oD0,Buck meets some of Chuck's friends to less than desirable results.\ntt0200530,24kOoUWjz5Q,Buck moves to L.A. but can't work up the nerve to visit Chuck.\ntt0200530,0QbMWpwr7FM,\"Buck hits on his childhood friend, Chuck.\"\ntt0200530,32OtN3z_DNs,Buck tells Carlyn about growing up with Chuck.\ntt0200530,tv25UVPcgxY,Buck shows Chuck and Carlyn his room that hasn't changed much in years.\ntt0200530,UJ36_9oVTO8,Buck decides he wants to write a play and put it on at Aeternus Theatre.\ntt0424993,d3-AXjkz3Pk,\"During a softball game against rival store, Maxi Mart, Zack gives an inspiring speech to his teammates.\"\ntt0424993,RywZwxSQcvo,Jorge agrees to help Vince at the check stand face off with Zack under one condition...\ntt0424993,vn9awsg8BjA,\"In order to keep his hopes alive for the Employee of the Month award, Zack races through traffic to clock in on time.\"\ntt0424993,049R_wOazQI,\"While Zack is on a date with Amy, Vince and Jorge break into Zack's house and turn the clocks back.\"\ntt0424993,0eC9f13FIJ0,Glen Gary makes a surprise appearance for a store audit.\ntt0424993,P63QUmBOP08,Zack misses out on a chance to collect a gold star.\ntt0424993,gHf9n0jhBdk,Lon manages to insult and harass a customer at the same time.\ntt0424993,EKd7hAoXDPU,Zack goes out on a date with Amy and learns her deepest secret.\ntt0424993,dKFZ4T_Y9Pw,Vince tries to impress Amy by acting like Zack.\ntt0424993,PuFTYd0b6n0,\"Zack meets the new cashier, Amy, but is interrupted by the pesky Vince.\"\ntt0424993,AVEnTcDIo0A,\"As the store closes, Vince and Jorge are looking to bad mouth the slacker, Zack.\"\ntt0317676,EqzhYb-Ey4c,\"Caught by zombies, Simon blows up the house as his friends escape into a tunnel.\"\ntt0317676,kmGvvAof2Ww,Simon and Liberty head for the boat and are saved by the sharpshooting skills of Captain Kirk and Casper.\ntt0317676,9nqpOwh4N_Q,Alicia and Rudy face off against the immortal Castillo.\ntt0317676,1kh5X5CJAOU,Captain Kirk and Casper lead the troops in a full-on assault against the zombie infestation.\ntt0317676,CxCjXAy6HQE,Casper saves the day when Cynthia turns up as a zombie.\ntt0317676,ye-S7zxbv9o,Casper defends the group as they attempt to cross a bridge.\ntt0317676,YmIShBpwLPk,The gang hires a salty Captain Kirk and his first mate Salish.\ntt0317676,bWyLG7CWLjA,\"Simon, Karma and Alicia discover a scary house with some unexpected inhabitants.\"\ntt0317676,QSVX6S1zbjQ,Captain Kirk defends his boat from approaching zombies.\ntt0317676,3TeYtmJXgQE,\"Matt gets an unexpected hand, much to the displeasure of Johanna.\"\ntt0317676,39zzDqksCHc,\"The gang watches zombie attack footage on a camcorder, as Kirk remains unaware of the approaching horde.\"\ntt0160672,oNI9u5Q4TLQ,Joe says his sad goodbyes to Mike and Theresa.\ntt0160672,lvyRzKr6Bkk,Jorge scolds Joe for breaking into Roy's house.\ntt0160672,BSuaYQdLqV0,Joe orders an excessive amount of food before his incarceration.\ntt0160672,rM3mP-39_is,Bob gives Joe some final advice before he is incarcerated.\ntt0160672,gINx5_Hs8C4,\"To get back at his brother's bully, Joe urinates on his dinner.\"\ntt0160672,OjHsjB_foZI,Joe steals a lockbox from Roy's house.\ntt0160672,SDS5UH9Nnus,Mike is upset after a classmate teases him for being a janitor's son.\ntt0160672,PaYl9YVeXhc,Joe confronts Bob about his debts.\ntt0160672,UJhTR5FTd2I,Joe finds the aftermath of a fight between his parents.\ntt0160672,RZziZRbaCPc,Mrs. Basil humiliates Little Joe in front of the classroom during Career Day.\ntt0160672,6e59qLPJxgI,Joe tries his best to charm a girl at the foosball table.\ntt0160672,oOFNIMMfTUg,Bob takes his anger out on Joe after his neighbor hassles him about debts.\ntt0119426,KJnIgY7l_nk,Detective Lopez questions J.T. about the guests at the motel.\ntt0119426,OboAFE4Tr8Q,J.T. watches Tanya by the pool until he's interrupted by a new motel guest.\ntt0119426,M6gOHxwffBg,Smith teaches Tanya how to erase her tracks.\ntt0119426,QaNag38SNno,\"After finding a body, J.T., James, and Tanya argue about what to do with it.\"\ntt0119426,oP43IvevmjY,J.T. and Tanya dare each other into skinny dipping in the motel pool.\ntt0119426,cHEoEuY_mTk,\"After their joyride in the stolen car, J.T., James, and Tanya make a gruesome discovery.\"\ntt0119426,_RVQuAICxc0,J.T. and James realize what Tanya did to save their lives.\ntt0119426,5otacrrli04,\"When James has trouble starting his car, J.T. comes up with an idea.\"\ntt0119426,ERw4l461lhU,Smith rescues Tanya from an aggressive client.\ntt0399295,eQMofmwnt6s,Yuri Orlov witness the slaughter of his brother.\ntt0119426,T7-sw9PhQec,Smith forces Tanya to shoot J.T. and James in cold blood.\ntt0399295,RVDyoCWz0vM,\"A bullet leaves the factory, travels around the world, and gets fired on the battlefield toward its final destination.\"\ntt0399295,JITv11rctGg,\"After finding a stockpile of illegal weapons, special agent Jack Valentine interrogates Yuri Orlov.\"\ntt0399295,3rnomffKi0I,Special Agent Jack Valentine catches Yuri Orlov on a plane transporting his illegal cargo and he's forced to make an emergency landing.\ntt0399295,6FJfcqLCkIc,\"In a race against time, Yuri Orlov gives away all of his illegal cargo before Special Agent Jack Valentine arrives to arrest him.\"\ntt0399295,45wce6oSr0M,\"After the fall of the Berlin Wall, Yuri Orlov visits his Uncle Dimitri and cuts a deal for a Soviet stock pile of weapons kept in the Ukraine.\"\ntt0399295,EcffcR-lgtc,\"Yuri Orlov gets picked up to meet his newest customer, President of Liberia, Andre Baptiste Senior.\"\ntt0399295,H99XlWQ9KsA,Yuri Orlov describes the world's most popular assault rifle and the greatest export of the Russian people.\ntt0399295,HJjBZoopPXw,\"When Yuri Orlov finds Vitaly Orlov in a downward spiral of drug addiction, he brings him back to America to enter rehab.\"\ntt0399295,ISTPRoBW2sc,\"After removing all the missiles from his newly bought military helicopter, Yuri Orlov attempts to fool Special Agent Jack Valentine and smooth talk his way out of prison.\"\ntt1179891,7xWlr8_R5YY,The Miner murders Ben Foley.\ntt1179891,cGbTf-FgG-M,Axel and Sarah discover Megan's body behind the grocery store.\ntt1179891,BZwbVffx49M,The Miner attacks Burke and Deputy Ferris.\ntt1179891,o-Hcz6we0mk,Sarah Palmer and Megan try to escape the Miner through a caged window.\ntt1179891,Isof3ww1UPs,Sarah Palmer and Megan are stalked by the Miner in the local grocery store.\ntt1179891,Tpp5oqIzQL4,The Miner locks Tom Hanniger in a caged room while he murders another man.\ntt1179891,e2FdM0YQSHk,Axel Palmer receives a grotesque Valentines Day gift.\ntt1179891,7E8rxZMCldI,The Miner unleashes his killing spree on a group of teenagers.\ntt1179891,8_2fitdIp4c,The Miner impales a teenager through the eye with a pickaxe.\ntt0138704,XobjkWljkXw,\"Max is confronted by Marcy, but a rescue by Lenny proves to be short-lived.\"\ntt0138704,1UWy_6S-ZfY,Max has a hallucination of a businessman singing on the subway.\ntt0138704,6_CtgelI6xU,Max wakes up and plays a number game with his neighbor Jenna.\ntt0138704,Yv6L4DunPDE,Rabbi Cohen kidnaps Max in order to get his help with deciphering the Torah.\ntt0138704,XGZ0K5Rpacw,\"Max, overwhelmed with paranoia and mental illness, takes a drill and pushes it into his skull.\"\ntt0138704,DhhKbHpvGwk,Max gets some iodine to stain a slide as part of his research on mathematics in nature.\ntt0138704,7-C1cpG6TLc,\"Max talks with Sol about numbers, patterns, order, and mathematics.\"\ntt0138704,ShdmErv5jvs,Max believes that the universe can be predicted in a pattern of numbers.\ntt0138704,SzfQ2Bwhkcc,Max ponders his thoughts on mathematics while at the beach.\ntt0138704,P9e_I-fkJ6c,\"As Max's mental illness grows stronger, he finds a human brain in a New York subway station and pokes it.\"\ntt0138704,OGKPmBtBpBo,Sol lectures Max about the legend of Archimedes.\ntt0138704,3vi7043z6tI,Lenny shows Max about how numbers add up in the Torah.\ntt0432348,fuCEfNfuoiM,John reveals the situation that he has Eric Matthews' son involved in.\ntt0432348,cIRL7jMVh8Q,Kerry and Rigg discover that the team has been sent to the wrong location.\ntt0432348,bYVsnJR_f80,\"Eric Matthews discovers that Amanda was working with Jigsaw all along, and that she now has him trapped.\"\ntt0432348,rm2NO3Nr3hA,\"Addison attempts to reach a syringe of the antidote, but gets her hands stuck in a razor trap.\"\ntt0432348,K2vOPpJFstM,\"Xavier threatens Amanda, and when she refuses to help him, he cuts his own number off from the back of his neck.\"\ntt0432348,94mvgpMi-rQ,\"Obi crawls inside a furnace to retrieve vials of the antidote, but accidentally triggers a mechanism that turns the furnace on, and locks him inside.\"\ntt0432348,3CAQ0iZKP08,Xavier throws Amanda into a pit of needles in order to find a key to reach the antidote.\ntt0432348,DX5KZHeK3bw,\"A group of people wake up in a unknown room, and receive a message that they are inhaling lethal nerve gas and must work together in order to survive.\"\ntt0432348,Nn6y3CUpIfA,\"Michael discovers that he's trapped in a death mask, and the only way to survive is to reach the key implanted behind his eye.\"\ntt0114594,1DnnWl0Qkts,Guy is forced to make a fateful decision when he's confronted by the two opposing forces in his life: Dawn and Buddy.\ntt0114594,sW-ddNOh1hk,\"Buddy reveals a more human side about him, which catches Guy off-guard.\"\ntt0114594,8WrFOPPepCk,\"Buddy takes delight in torturing Guy after learning that Guy really, really, really needs to go to the bathroom.\"\ntt0114594,-I5e_GXU4Zo,Guy enjoys putting Buddy through the same physical pain that he would have to go through at work by slashing him with paper cuts.\ntt0114594,NDW6AQjK3Q0,\"When Buddy learns about an unflattering article about him in Time Magazine, he orders Guy to destroy every last copy in town.\"\ntt0114594,_eruoEC4LsA,Guy tortures Buddy for all the pain he's caused during his employment.\ntt0114594,QtoKDVTZfSE,\"When Guy confronts Buddy about his continued mistreatment, Buddy ups the ante with even more insults.\"\ntt0114594,_qit_nq-jUk,\"Buddy gives his assistant, Guy, a lesson: there is no such word as 'unreachable' in Hollywood.\"\ntt0114594,nTBBQQRE0Z8,\"After holding all of Buddy's phone calls, Guy gets the full force of rage from his angry boss for simply doing his job.\"\ntt0114594,L6IPj5zl9oQ,\"Buddy teaches his new assistant, Guy about the difference between Equal and Sweet & Low.\"\ntt0114594,50j2eckQ1to,\"Guy starts his first day at Keystone Pictures and sees Buddy in action as he insults, demeans, and ridicules his partners and subordinates.\"\ntt0283111,oXouSM2JOZk,Gwen spikes Richard's drink with Colon Blow before his big exam.\ntt0283111,8D2TivUo_zU,Taj Mahal Badalandabad experiences his first strip club in the company of Van Wilder and Hutch.\ntt0283111,t8yv6xn2HhQ,Van Wilder passes his exam and accidentally admits to fooling around with Professor McDoogle's daughter.\ntt0283111,ZWeqx9VP2zE,\"After having a fight with Gwen, Richard decides to have sex with Jeannie.\"\ntt0283111,5GWj9H4JId0,Gordon and Richard provide underaged kids alcohol at their party in order to get Van Wilder arrested.\ntt0283111,H44ZLiOlN0A,Richard Bagg and his fraternity brothers eat pastries filled with dog semen.\ntt0283111,h4wnyCRRi0o,\"Van Wilder, Taj Mahal Badalandabad, and Hutch make some \"\"special\"\" treats for Richard Bagg and his fraternity brothers.\"\ntt0283111,V5xN-xNvwsw,Richard Bagg has trouble pleasing Gwen Pearson in bed.\ntt0283111,TIvNRHR6GbU,\"In order to get an extension on his school tuition, Van Wilder tries to seduce Ms. Haver.\"\ntt0283111,V0BHKgbef9E,Van Wilder and Hutch interview candidates for an assistant position.\ntt0283111,gZaagSRp8F4,Hutch attempts to light what he thinks is a bong.\ntt0283111,2B4dnGQc9wM,\"Van Wilder and Hutch interview one last candidate for the assistant position, namely Taj Mahal Badalandabad.\"\ntt0283090,-vE1JNGKvxQ,The Waitress gets The Chief his money back from the bus stop.\ntt0189998,YgqgSaDCgC4,Schreck explains why Dracula is such a sad book.\ntt0283090,7lKWPxDej7s,The Hitman threatens The Drifter in the car while The Waitress stashes the bag.\ntt0283090,nDTVpRRoqcw,All of the surviving players discuss the whereabouts of the bag filled with cash.\ntt0283090,FE8xpnLMZlU,The Drifter and The Waitress discover what the bag contains.\ntt0283090,mAtSvxJe6Yw,The Hitman confronts The Cop about his missing bag.\ntt0283090,4Qrs43i_S50,The Cop threatens The Drifter until The Waitress comes to the rescue.\ntt0283090,6G7J6lZDW3E,\"The Hitman, The Security Guard and The Cop have a standoff over the bag.\"\ntt0283090,JZtErr7VLKE,The Cop claims his bag from The Ticket Clerk.\ntt0283090,NG3ru8QGwl0,The Security Guard sees The Doctor for a bullet wound.\ntt0283090,XPUqjed6k4s,The Drifter waits for The Ticket Clerk to get distracted so he can steal a bag full of money.\ntt0283090,VYQoxBs5N2A,The Cop investigates a crash involving a drunk driver.\ntt0437800,aFqlaPLvkw8,Dylan and Akeelah spell their final words as they compete to be co-winners of the Scripps National Spelling Bee.\ntt0437800,4t94x0N3AoU,\"In an effort to strengthen Dylan's relationship with his father, Akeelah purposefully misspells a word in the National Spelling Bee.\"\ntt0437800,uQ84SYJmHYI,\"When Akeelah is stumped on a word in the National Spelling Bee, she uses her special trick to spell it correctly.\"\ntt0437800,mgSQQjO5pwI,Dr. Larabee inspires Akeelah to vocalize and pursue her dream.\ntt0437800,r_3r5f1W1Oo,Akeelah is unexpectedly tough competition for Dylan in Scrabble tournament.\ntt0437800,_UZxXUwQX84,Dr. Larabee teaches Akeelah the secret to spelling big words.\ntt0437800,WdDUhHl-BzM,\"On her first day of tutoring, Akeelah has an argument with Dr. Larabee and storms out before the lesson begins.\"\ntt0437800,DwKBxabn4QY,Dr. Larabee inspires Akeelah to follow her passion and believe in herself.\ntt0870195,jyerVX4GpBs,\"T.K. holds Henry at gunpoint, where he must choose between getting his revenge or letting Henry live.\"\ntt0870195,xHlaIIyiRSw,T.K. is put through a village ritual to determine his guilt or innocence. The penalty for being guilty is death.\ntt0437800,UCehCmHzBzw,\"At the Crenshaw school spelling bee, Dr. Larabee discovers Akeelah's natural aptitude for spelling.\"\ntt0870195,C7_7Wco4SWY,\"After her last day at work for the Moores, Sajani returns home to her husband, who harbors suspicious about her fealty to him.\"\ntt0870195,PmvZQglWfJM,Laura confronts Henry about his affair with Sajani.\ntt0870195,IinUDFR7Sr4,\"On trial for the alleged murder of Sajani, T.K. is pressured into admitting guilt by the council, but he maintains his innocence.\"\ntt0870195,mTHQ0fQXf-0,Henry is faced with some tough decisions when confronted by Charles and Inspector Sampath.\ntt0870195,vXmHNYtFll8,T.K. and Henry release Sajani's to the river.\ntt0870195,7Ro8QybNKu8,\"Henry and Sajani sneak off to the jungle together, but are soon discovered by two young boys.\"\ntt0870195,_v-_KbjVPxg,Henry tells Sajani that he does not love her in order to get her to leave the village and save her life.\ntt0870195,Il1j-dS5dBs,\"After discovering that Sajani has been beaten by her husband, Henry and T.K. must determine how to handle the situation.\"\ntt0997143,rnlyf0wk0ic,\"Sai begs Royce to free her soul, while elsewhere, Eric stabs the monster in the back.\"\ntt0997143,8c88JWPmDrA,Sai wakes up possessed by the monster and apologizes to Kerra before killing her.\ntt0997143,XGQpnngBL_g,Sai kills two vampires by telepathically choking them to save Royce.\ntt0997143,MUFqS9iKzHw,Sai asks Royce to photograph her while she is under the influence.\ntt0997143,GUyIWu59kig,\"After taking drugs, Kerra has a horrifying hallucination of being stalked and raped.\"\ntt0997143,8osn-0mHqC8,\"In a dream, Sai allows Royce inside of her -- in more ways than one.\"\ntt0997143,GlXLG_rF9lg,Eric inhales the drug and attacks Kerra during his hallucination.\ntt0997143,X-w-beB9r3M,\"Under a drug infused hallucination, Sai gives in to her desires and allows herself to be seduced by Royce.\"\ntt0997143,wweMxbvl86Q,A monster stalks a beautiful victim in the forest.\ntt0997143,jfbbUufb7jM,Sai explains the meaning behind her painting to a mysterious buyer who's interested in her work.\ntt0450278,XtTVNCZEcAs,Paxton finds himself at the mercy of a chainsaw-wielding psychopath.\ntt0450278,qSmjZYAZQp0,\"Paxton finds Josh, and discovers he won't be leaving anytime soon.\"\ntt0450278,vgZL3KUbu8I,\"The Dutch Businessman explains his motivation to his victim, Josh, before severing his achilles tendon.\"\ntt0450278,shIHmOihazQ,Paxton and Josh search the creepy town for their missing friend Oli.\ntt0364385,UBMs3lfRim4,Izumi's displays some disturbing behavior in front of her classmates.\ntt0364385,h1KasQ7pdL4,\"Hitomi rushes home after bizarre occurrences at her work, only to find out that the strange events have followed her to her apartment.\"\ntt0364385,tvRH4kLj-Dk,Hitomi receives a strange phone call and encounters a nasty surprise in the restroom.\ntt0364385,D8aAHxbYCCs,\"After catching a glimpse of a strange reflection, Rika sees Kayako in the mirror.\"\ntt0364385,Af6v6H6gvcQ,Rika encounters a cursed family in the haunted house.\ntt0364385,MUeixjmY950,\"Before setting fire to the haunted house, Toyama runs into his daughter Izumi, then ventures upstairs to find out what she and her friends had been doing.\"\ntt0364385,7-59dVoKmik,\"Rika is startled by little Toshio, but true fear overtakes her when she tends to Ms. Sachie.\"\ntt0364385,UDqKtqsOwBs,\"While watching a security video from the night Hitomi disappeared, Toyama sees something strange and unsettling.\"\ntt0364385,NELtiWqsHY8,\"After dreaming about her deceased father, Izumi gets out of bed and looks out the window, only to find her three missing friends staring back at her.\"\ntt0364385,0oDBrYgawmI,\"After coming home to find his wife incapacitated, Katsuya has a feeling that they are not alone.\"\ntt0263734,EP6Qb7rzBmA,\"After losing their first match, the team encounters a strange obstacle in the road: an army of confused beavers.\"\ntt0263734,YYlvedJn5W0,Amy gives Cutter a piece of her mind when she thinks that he's trying to use her.\ntt0263734,AmACeERgRA4,\"Cutter and his father, Gordon, reconcile at the cemetery.\"\ntt0263734,0VRTOfZePkM,\"From beyond the grave, Donald introduces the members of his family and the curling team.\"\ntt0263734,R1ejcTtTPTY,Cutter prepares to make curling history with his triumphant last shot.\ntt0263734,edVZXNgaYbE,\"After winning the Golden Broom, Stuckmore pays a vista to James to settle an old score.\"\ntt0263734,w-jFuEpRFOM,Cutter visits his father and asks him to coach the team.\ntt0263734,06yqAuIbuVw,The guys confront Cutter about why he left the town -- and the team -- all those years ago.\ntt0263734,jJ-o9HHw-_s,The guys have their first curling match against some old-timers.\ntt0263734,ZN9EtTazTl0,\"When a burly drug dealer roughs up James Lennox, Cutter comes to his buddy's rescue.\"\ntt0263734,BNCwxQQcXv8,\"As the family goes over Donald's will and testament, they learn about a peculiar last wish from the recently departed.\"\ntt0274812,uWalH3hnCyY,Lee and Peter have sex for the first time and it's rather awkward.\ntt0274812,POEUgs1Shqw,\"As Lee becomes more involved with Mr. Grey, she starts to have more intense fantasies about her boss.\"\ntt0274812,Iqenc7PJze4,\"Lee sits at Mr. Grey's desk, showing her dedication to him, as her friends and family try to convince her to move on.\"\ntt0274812,4Ufv8hcJZ_A,Lee skips out on her wedding and confesses her love for Mr. Grey.\ntt0274812,L5Yu-IGx0-4,Mr. Grey has Lee Holloway bend over his desk and read a letter out loud while he spanks her. Hard.\ntt0274812,wX2AeW_M-xc,Mr. Grey gets angry with Lee over of her continuous typing errors.\ntt0274812,ie7XVOuzf2U,Mr. Grey instructs Lee to be a grown woman and never cut herself again.\ntt0274812,QflHaPOXcA4,\"Mr. Grey interviews Lee for the secretary position, but tries to convince her that the job is beyond boring.\"\ntt0831887,rypwboimK5k,The Spirit stands up to The Octopus.\ntt0831887,U0get4DzXqA,The Spirit runs across the city.\ntt0831887,jxIm__RPZuw,The Octopus and Silken Floss discover that they have the wrong box.\ntt0831887,WgFa1bVTQEs,The Spirit finds himself inside the lair of The Octopus.\ntt0831887,alziIIbUN9o,Sand Saref and The Spirit catch up.\ntt0831887,YnpV0k673Ug,Sand Saref warns Silken Floss.\ntt0831887,OPQbpZwpLtE,The Spirit learns that Sand is back.\ntt0831887,ITSOiqkDzrI,The Octopus and The Spirit battle each other.\ntt0831887,AIkEAcjhQOA,The Spirit escapes from Lorelei Rox.\ntt0831887,fGV1kmATl0E,\"The Octopus, Silken Floss and the clones discuss the problems of having a criminal organizations.\"\ntt0337972,n1rhiQzW30k,\"Will confronts his brother Tommy about killing Randall's son, and advises him to leave town.\"\ntt0337972,wJRb5MKvouw,\"Will watches his mother pass away, and Tommy kills a man trying to help them.\"\ntt0337972,CrKUXT6JZ7M,\"After a gang of outlaws breaks Randall out of jail, he comes looking for Nathan Cross.\"\ntt0337972,mXXucVAQdf4,\"At the funeral of Nathan Cross, some interesting details come out about his true identity.\"\ntt0337972,RlPaVTRPVLI,Tommy comes to his brother's rescue.\ntt0337972,27gWbiG9w5A,\"Tommy shoots his boss, Rodney.\"\ntt0470705,r8cegnOVDjo,\"After pizza is mysteriously delivered to the motel room, Peter and Agnes prepare to kill the bugs inside them.\"\ntt0337972,fb8Xk2_yqps,Tommy gets revenge by shooting the son of the man who killed his father.\ntt0337972,2Q9h-B9OVVA,Will returns to Defiance for a final showdown.\ntt0470705,oR_XFDHk0Kk,Peter thinks Dr. Sweet is a government machine sent to take him back to the hospital.\ntt0470705,NQdNfhG-s8k,Dr. Sweet confides in Agnes that they are in fact being watched.\ntt0470705,TgOGj14T0M4,Peter is very set on the idea that there's an egg sac in his molar's filling.\ntt0470705,9hbBpOHXAkc,Agnes tells R.C. to leave after Peter has an episode.\ntt0470705,n-G24ROD5g0,\"After an argument, Peter comes back to tell Agnes what happened to make him so paranoid.\"\ntt0470705,YShA_c8OUl4,Peter and Jerry share some strong words.\ntt0470705,6J3zkkpEkWg,\"Agnes is paid a visit by her ex-husband Jerry Goss, and the subject quickly turns to their abducted child and threats of violence.\"\ntt0470705,NcYbRZdgLik,\"Agnes is introduced to Peter, who thinks she's a very beautiful woman.\"\ntt0470705,jqdKv0Vz0sU,Agnes and Peter believe they've stumbled onto the origin of the bug.\ntt0814075,MG_o8Id_UCU,Monsignor Cain provides his testimony of what he recalls happened between Nancy Sloan and Oliver O'Grady.\ntt0814075,SEM1DDRM5r4,Bob Jyono breaks down while discussing his feelings of betrayal caused by his church.\ntt0814075,JOQoxkx9uS0,Adam talks about the abuse he received from Oliver O'Grady.\ntt0814075,aUIjcrHyvHU,Anne Jyono and her parents discuss the time when Oliver O'Grady stayed in their home.\ntt0814075,5nilVcDLNYs,\"Attorney John Manly, Father Tom Doyle and theologian Patrick Wall discuss the basic tenets of catholicism.\"\ntt0814075,uvQFoM1fj0E,Nancy Sloan reads a letter of apology that was written by Oliver O'Grady.\ntt0814075,ZpDnHh_JmQE,A letter written by Oliver O'Grady infuriates the higher authorities of the church.\ntt0814075,1qamIJWkKi0,Oliver O'Grady discusses his abnormal attraction to children.\ntt0353489,PypxQNMzAHM,Brigitte realizes that Ghost has been less than honest with her.\ntt0353489,-9Cf6w28dc4,\"Thinking that Tyler had abused Ghost, Brigitte lures him into a deadly trap.\"\ntt0353489,o3fUAorIxss,\"Rapidly transforming herself, Brigitte must destroy the werewolf before it's too late.\"\ntt0353489,zCpJ5qcmPnY,Ghost and Alice check on the fate of Brigitte and the werewolf.\ntt0353489,OB4ppp4EAAw,Ghost watches as Brigitte succumbs to her werewolf instincts.\ntt0353489,k6v2NnHxYPk,\"Ghost picks Brigitte's brain, much to her chagrin.\"\ntt0353489,AYfAyTEVnVI,Brigitte and Ghost try to escape the crematorium with a hungry werewolf on their heels.\ntt0353489,QXqBylUsyzM,Brigitte unwillingly makes a new friend in Ghost when she sticks up for her.\ntt0353489,Ke7vTfbeH0w,Brigitte explains to the group why her problems are unique.\ntt0353489,WRslUrt2NBg,\"Brigitte injects herself with a deadly dose of monkshood to fight off the effects lycanthropy, while dealing with visions of Ginger, her dead sister.\"\ntt0353489,renIgi40w5s,Brigitte and Ghost tread carefully to avoid becoming a meal for the werewolf.\ntt0450278,1TeoyEPmuzA,\"In this Director's Cut ending, the Dutch Businessman waits for his daughter by the restroom and comes to a horrible realization.\"\ntt0450278,NVB5kj4k6O4,\"Paxton and Kana reach the train station, but merely surviving isn't everything.\"\ntt0450278,wQ6wc8oc_E8,Paxton performs an eye-popping rescue of a girl being tortured.\ntt0450278,_5qVrmBANTE,\"Pretending to be a dead body, Paxton is wheeled into the butchering room.\"\ntt0450278,VAC6RfndhMQ,\"Almost home free, Paxton is confronted by an eager American client.\"\ntt0450278,Akl5BAnhh_M,The thugs chasing Paxton discover what happens when you don't have gum on hand.\ntt0811138,7HHCL1eRdVo,Guru Pitka attempts to sneak into Jacques 'Le Coq' Grande's house in order to deliver an apology letter to Prudence.\ntt0115438,xwRlSxS2azA,Helga calls Becky a bad name leading to a violent cat fight.\ntt0115438,p_UeWtpIW08,Strayer gets one too many golf balls through his window.\ntt0115438,TXZ9nnOteV8,\"Dosmo searches for a suit in Allan's wardrobe collection, while Allan admits to being an \"\"a-hole.\"\"\"\ntt0115438,mcWrZOrafnA,\"Strayer and Taylor come across Becky, who just came from the scene of a murder.\"\ntt0115438,KGKqdRDo-N8,\"A toupee-wearing, gun-toting Dosmo threatens Allan's dog until it is called off.\"\ntt0115438,OXcI5qu76jY,Dosmo holds Allan and Susan hostage while he makes some pasta.\ntt0115438,8FysZvGGiz8,Danny shoots Dosmo in a car and then proceeds to blow it up.\ntt0488508,IxWEtRxzzhI,The younger polar bear dies in the snow from starvation and brutal cold.\ntt0488508,a7K1xgoi_c4,\"The ice melts faster due to global warming, making survival harder for the polar bear.\"\ntt0115438,v-OP9DnMN-w,\"Allan finds himself with a kidney stone, and a flat tire at the same time.\"\ntt0488508,dwecZ5D3tFY,\"The male polar bear refuses to share his food, but if the female polar does not eat, she will starve.\"\ntt0488508,OIXDhgqDYV0,The family of walruses camp out on a rocky island and scratch each other's backs.\ntt0488508,89c3RqTIxws,The sun brings many creatures warmth and life in the Arctic.\ntt0488508,fhO2QtGb8tY,The newborn polar bears snuggle with their mother.\ntt0488508,7SQWhD6OeRk,Female polar bears go for food that belongs to an aggressive male polar bear.\ntt0488508,ktGwZKWClZg,The Narwhals show off their long tusks.\ntt0488508,nic5WxX4BCo,A polar bear hunts for the new baby walrus.\ntt0109254,-YTLGLeKoJQ,Axel faces off against De Wald on a dinosaur themed ride.\ntt0488508,m4VP7c5UCdE,\"After eating clams, the walruses have indigestion.\"\ntt0109254,2vjWxyJtUdo,Billy gives Axel the rundown on his new job.\ntt0109254,RfKKArjmRHI,\"Axel causes a disturbance at an awards dinner for Ellis De Wald, a corrupt private security director.\"\ntt0109254,6u79wLUXGPQ,Axel outsmarts a group of De Wald's men inside a science fiction theme park ride.\ntt0109254,Cf3RfidFKBw,\"Serge shows Axel and Billy his new, all-in-one killing machine — the Annihilator 2000.\"\ntt0109254,WF724QBowDo,Serge brings Axel and Billy up to date on his new business venture.\ntt0109254,ZhMpx9aeefY,Axel rescues two children from a malfunctioning theme park ride.\ntt0393162,fnH1ZtugoqU,Coach Carter and the crowd watch Richmond and St. Francis play the final seconds of the championship game.\ntt0109254,WEnGy2hTHgA,Axel cuts in line at a theme park ride to elude two security guards.\ntt0393162,J97F53CAA1I,Coach Carter refocuses his team after getting behind during the third quarter of the championship game.\ntt0393162,eSBnFu1YnrU,Coach Carter addresses his team in the locker room following the championship game.\ntt0109254,1JDAa0BvD68,Axel chases a group of criminals through the streets of Detroit.\ntt0393162,2FKPDOpKzDo,Coach Carter assures his group of high school players that he will do anything to help them get to college.\ntt0393162,2_fDhqRk_Ro,The team recommits to improving their grades while Timo eloquently expresses his thanks to Coach Carter.\ntt0393162,1g82D68N-ys,The team shoulders the remaining drills assigned by Coach Carter to Timo in order to help him earn back his spot on the roster.\ntt0393162,qUiptlAJcyQ,Coach Carter's Richmond High team overcomes a three point deficit with help from freshman Damien to get their first win of the season.\ntt0393162,JomrLxDiT5g,Coach Carter manages the final seconds of Richmond's road game against Bay Hill.\ntt0393162,V1wAemvxNaM,\"Coach Carter presents his new team with conduct contracts at the start of practice, but Timo has other plans.\"\ntt0410097,1niI0J4kdI4,Djay talks to Nola about the difference between men and dogs.\ntt0410097,1pq96OQlUWs,Djay stands up to Skinny Black about turning his back on Memphis.\ntt0410097,_RsQsYJ_oWE,Nola gets Djay's song on the radio.\ntt0410097,7r_DI5X5ROs,Djay takes a stand when he finds out Skinny threw his demo tape in the toilet.\ntt0410097,_Cr0nP3k_p4,\"Shug helps Djay, Shelby, and Key lay down a track.\"\ntt0410097,q-y6JBpCFtI,Djay has it out with Nola over what she wants out of life.\ntt0410097,Ye-GPGstKFc,Yevette entertains Nola and Lexus in the living room while Djay raps for Key in the kitchen.\ntt0410097,-TzrPYcpPvY,DJay and Nola are moved to tears while listening to a choir singer.\ntt0410097,q-StMfE8NrA,\"Djay, Key, and Shelby start writing a song, and Nola and Shug get into it.\"\ntt0100740,T5d-R7FDG7s,Timmy escapes from Betty.\ntt0100740,EniROJmSS8U,\"Carola transforms back into the gargoyle, and is forced to kill Preston for breaking his promise.\"\ntt0100740,1G9ED_K_IAQ,\"A vicious gargoyle kills Jer, but spares Preston's life in exchange for a promise: that he'll never tell another what he saw.\"\ntt0100740,fvVBKWMTSRM,Bellingham summons the mummy versions of Lee and Susan to kill Andy.\ntt0100740,-SJAzpHg4s8,Drogan comes back to find that Halston is dead.\ntt0100740,KhfsAokR-D4,Halston discovers that he is no match for the cat.\ntt0100740,YMb-AODYc6g,Drogan explains how the cat murdered Carolyn and Amanda.\ntt0100740,yUd_E5dnVx0,Andy destroys the Mummy in an effort to get revenge against Bellingham for killing his sister and best friend.\ntt0100740,FRogQQGQn1g,Andy discovers that Susan has been attacked by the Mummy.\ntt0037536,KRhnyD4ZLkI,\"Father O'Malley sings \"\"The Bells of St. Mary's\"\" with the nuns.\"\ntt0100740,wzYht_EEf0U,\"The Mummy breaks into Lee's house, and brutally murders him with a clothes hanger.\"\ntt0037536,mSeeLOr1GKI,Father O'Malley tries to convince Sister Benedict to see education from a different point of view.\ntt0037536,re8jdVlrltA,Sister Benedict is overjoyed when Horace offers a special gift to her school.\ntt0037536,oxjeihyxCnY,\"As Father O'Malley sings O Sanctissima, Horace begins to imagine what his office would look like as a classroom.\"\ntt0037536,9d4Zddhcqbc,Sister Benedict offers advice from the window as Eddie engages in his first fair fight.\ntt0037536,0AspXDFcGlw,Sister Mary Benedict teaches Eddie the basics of boxing.\ntt0037536,LN1WX6JkYaI,\"Father O'Malley teaches Patty how to appreciate the little things in life, and how to be happy with who she is.\"\ntt0408839,CqXatBg5LtE,Eddie becomes concerned when Lila sings along to every song on their road trip.\ntt0037536,V4aBCK2UWpQ,\"After Father O'Malley breaks up an argument between students, he and Sister Benedict discuss their views on fighting.\"\ntt0408839,cH8W_cTQQvw,Eddie tries to break up with Lila despite interruptions from Martin and a mariachi band.\ntt0408839,9mE6UqKoe5Y,\"Eddie runs into Miranda again, failing to mention that he's married to Consuela.\"\ntt0408839,zHzbei3YeFs,\"When Eddie attempts to broach the subject of divorce, Lila gives him a thoughtful present.\"\ntt0408839,vrCmp9js4YI,Eddie meets Uncle Tito and delivers an embarrassing present.\ntt0408839,FMcQ9qdYBUI,Lila ignores advice from Eddie and gets a nasty sunburn.\ntt0408839,vsBwRV2b3LY,Eddie is shocked when Lila introduces him to her overweight mom on their wedding day.\ntt0408839,eMFxQti1xHU,Eddie tries to stop a mugger on a bicycle who steals a purse from Lila.\ntt0408839,7fYY9Fk5vg0,Eddie is disappointed to find himself seated at the kids' table during his ex-girlfriend's wedding reception.\ntt0434139,_qJp9DwYgck,Michael stays outside Jenna's apartment in the hope of getting her to forgive him.\ntt0434139,FkDrbUQLuHY,Stephen talks to Michael about what to do with his mistakes.\ntt0434139,jbh5Q-eHULU,Jenna confronts Michael about cheating on her.\ntt0434139,fpLdP56W3do,Jenna is furious when she sees right through Chris' bad lying about Michael's whereabouts.\ntt0434139,BIPpar64F5o,Anna pays a visit to an old flame.\ntt0434139,mIJdrHpr3_Q,Anna tells Stephen about her affair.\ntt0434139,FHs_-lvHG4E,Michael discusses his life crisis with Kim.\ntt0434139,GeYJEkN4fao,Michael and Jenna announce their pregnancy to Stephen and Anna.\ntt0434139,qckVPZkmiNU,Izzy is upset that Kenny won't come with him to South America.\ntt0811138,qDTmyJdVAF0,\"Guru Pitka, Jane, and the rest of the group perform a Bollywood rendition of the classic Steve Miller Band song.\"\ntt0811138,t5qkPMvpDfg,Darren must confront his mother in order to have a chance at winning the world cup.\ntt0811138,JU189rHBIIQ,Jane confesses to Guru Pitka that she's always had a schoolgirl crush on him.\ntt0811138,OgEr2VRg6n0,Darren explains to Guru Pitka why his relationship with his wife was so special.\ntt0811138,32XOkSNoXdE,\"Guru Pitka and Rajneesh serenade Jane with their version of Extreme's \"\"More Than Words.\"\"\"\ntt0811138,Gmza139ypxw,\"After Darren is insulted, Guru Pitka stands up for him and starts a bar fight.\"\ntt0811138,il4NFf0V_HQ,\"After receiving some direction from Guru Pitka, Darren starts a fight on the ice.\"\ntt0811138,tYPUzX8KTXw,\"The owners of the Toronto Maple Leafs, Jane Bullard and Coach Punch Cherkov visit Guru Pitka in order to convince him to help their team.\"\ntt0264323,8TIqqUbWUTI,\"After taking a detour, Anderson, Nelson, and Cory arrive at a small town named Pleasant Valley, where they get a warm welcome from the townsfolk, and Mayor George W. Buckman.\"\ntt0384814,1OcqJdBrRpw,\"Arturo Bandini strolls along the Long Beach Boardwalk contemplating the fragility of life, when the world begins to shake.\"\ntt0137338,1G3a0mUEz5I,Eric asks Monica for the real reason she dumped him.\ntt0137338,-Ml2V9Mos-4,Jack and Cindy discuss his problems with intimacy.\ntt0137338,d6Jy5tMv0GA,\"Ellie rants about men to Disco Cabbie, who tries to pick her up.\"\ntt0137338,k7koR5o-fUM,\"Kevin and Lucy decide to go all the way, until Ellie shows up.\"\ntt0264323,EinsfcAsUoQ,What lies beneath Mayor George W. Buckman's eye patch is revealed when he fights Anderson.\ntt0137338,Mlb3avSMD_Y,Lucy is upset with Kevin's response to her proposition.\ntt0264323,hol98WRZtz4,\"As Pleasant Valley's guests wake up, and intend to be on their way, they are stopped by Mayor George W. Buckman who insists that they stay.\"\ntt0264323,0QTBwHx-Wuw,\"Granny Boone leads Leah and the rest of the girls in the Jubilee hoedown, which ends up being a ritualistic sacrifice.\"\ntt0137338,5UnFOqWJ5SI,Monica promises Hillary first dibs on men as she waits for her guests to arrive.\ntt0264323,zS9ZrFqMchM,Mayor George W. Buckman shows Anderson and Joey what's going to be on the menu at the barbecue other than themselves.\ntt0264323,xw5Iyx5ejO0,Mayor George W. Buckman and Granny Boone capture Ricky when he tries to escape and ready him for dinner.\ntt0137338,6bRqnek7R6E,Disco Cabbie gives Kevin some tips on having a fun New Year's Eve.\ntt0137338,pxHoR9Cc6Rg,Stephanie warns Val about crossing onto Avenue B.\ntt0137338,cqlk4EfEDJQ,Disco Cabbie convinces Cindy to go out and enjoy life.\ntt0137338,UvMusa65chI,Kevin explains his disdain for New Year's Eve as Lucy eyes the bartender.\ntt0264323,MTJzGzdA3c8,\"Harper Alexander teaches Pleasant Valley's guests about the traditional game of horseshoes, and Cory shows some unexpected skill.\"\ntt0264323,qcP3rt5etd8,\"Harper Alexander shows Kat why countryfolk aren't as naive as she may think, in the ways of love.\"\ntt0264323,jFKbSAjlJY0,Anderson romances Joey while Mayor George W. Buckman discusses his sinister plans with his three sons.\ntt0264323,eP2aBRb6geI,Nelson and the Milk Maiden are getting it on when events turn deadly.\ntt0375173,J_uWB_m7ML8,\"Alfie thinks about his behavior over the course of his life, and the women it has affected.\"\ntt0264323,qC7yIu-ZQZE,\"Professor Ackerman lectures Anderson, Nelson and Cory about respecting history.\"\ntt0264323,s109ZEZXQJE,\"Anderson, Nelson and Cory head down south to Daytona, Florida for spring break when they run into an unexpected hitchhiker, Justin.\"\ntt0312329,u7tSASIBz4Y,Jackie receives an unexpected reception when she goes to see Luther after the championship fight.\ntt0375173,DfNfg963uEA,Alfie makes a connection with an older man named Joe in the hospital bathroom.\ntt0312329,-HTF_tAUtkQ,Jackie enters the ring to give Luther some last minute advice during the championship fight.\ntt0375173,m7_LwdyNsIQ,\"When Alfie asks Liz why she is seeing someone else, he receives an answer for which he's not ready.\"\ntt0375173,4oY9E3_6jlY,Alfie visits a doctor about his performance problems.\ntt0375173,rBZQHST6BQQ,Alfie and Lonette share a romantic evening...the only problem is that she's his best friend's girlfriend.\ntt0375173,eLFf1LzuM1Q,Alfie runs into Julie and learns that he might be a little to late for an apology.\ntt0101301,5jAVjQh9S8A,Ethan explains what he did to try to get his parents back together again.\ntt0375173,1fscFQfphvE,Alfie finds that Nikki won't fall for any of his dumping tricks.\ntt0375173,zQydroqGFbA,Alfie introduces us to his start-of-the-day rituals.\ntt0101301,UYOH5SCstlI,Hallie tells Ethan that their parents are spending Christmas Eve together.\ntt0101301,UEndkOUG9M4,\"Catherine decides to stay the night, and spend Christmas Eve with her ex-husband Michael.\"\ntt0101301,PTG0z3VWa8g,Ethan shares his plan to get his parents back together with Stephanie.\ntt0101301,AKpSGtlsBws,\"Ethan reminds Hallie that she can't ask Santa Claus to make their parents get back together for Christmas, but she does it anyway.\"\ntt0101301,TuQLFcJ8Eyw,Stepanie and Ethan stay up together on Christmas Eve.\ntt0101301,IlLYqvnCs0o,Ethan scolds Allie for going to visit Santa Claus alone.\ntt0101301,IXgeL39PXAE,Hallie tells Ethan what she's going to ask Santa Claus to bring her for Christmas.\ntt0101301,DvTSWj2tgnI,Catherine tells Michael that she's getting remarried.\ntt0080365,vNrNofWBcas,Michelle provides Julian with an alibi in order to get him out of jail.\ntt0080365,sWs843kQxaM,Julian spends the morning with Michelle after their night together.\ntt0080365,Ya4RBKamUqU,Julian discovers that Leon is the one responsible for framing him.\ntt0080365,dRwiGgbaM84,Leon warns Julian that he's becoming overconfident in his profession.\ntt0080365,np_HgtPXDXE,Julian confesses his love to Michelle after she tells him that she has to leave town for a couple of months.\ntt0080365,gec4_X9J2K0,Julian frantically searches his apartment when he realizes that evidence might be planted somewhere inside.\ntt0080365,eoSPKSIxeek,Julian asks for Anne's help when he realizes that he's being framed for murder.\ntt0486259,Y55tkTIy5sc,Colin makes a 3 pointer to win a very important basketball game!\ntt0080365,3Vimb_RuN7c,\"Michelle insinuates that Julian is a gigolo, but he denies it.\"\ntt0486259,aDUZ8IC6wco,Megan Krizmanich is caught vandalizing a classmate's home.\ntt0486259,q15Yv0rZXqs,Jake Tusing visits his older brother and gets drunk for the first time.\ntt0486259,WASIZITWvZs,Hannah Bailey struggles with her fear of going back to school.\ntt0486259,CGzMqCfxpPs,\"After a topless photo goes viral, Megan Krizmanich and her friends leave mean phone messages for the victim.\"\ntt0486259,wYMfDxQdnUc,Megan Krizmanich and her friends play spin the bottle.\ntt0486259,sdNPmpfgOMw,\"Megan Krizmanich, the popular girl, is introduced.\"\ntt0486259,inAlpz8a0aU,\"When Geoff Haase receives a topless picture from a friend, it quickly goes viral.\"\ntt0221799,msKXGrgvzP0,Suzanne returns home with a new perception of Margit.\ntt0221799,iGU6Zqxfw5s,Suzanne takes desperate measures when Margit locks her in her own room.\ntt0486259,wXYRFo4rrrw,Hannah Bailey talks about what her future plans and aspirations are.\ntt0221799,hQDDQV-oCsE,Suzanne's bad behavior creates a rift in the entire family.\ntt0221799,SSgDunmuSAA,Suzanne gets scared when she goes exploring and can't find her way home.\ntt0221799,OnYQyspzLEc,Helen tells Suzanne why Margit has bad feelings about Budapest.\ntt0221799,6Bk2AsTcdbE,Peter tries to explain to Suzanne the reasons why she was left behind.\ntt0221799,JSHPdnYixNo,Margit is distraught when she receives a letter saying that her baby has been left behind for good.\ntt0221799,P578OPOe02E,The family enjoys their first dinner together after being reunited.\ntt0384814,8VI6vvaZxbE,\"Camilla surprises Arturo Bandini at his home, and before making it to the bed they debate race, social status, ex-boyfriends and marriage.\"\ntt0384814,QNv1frrhj4s,Arturo Bandini works away while Camilla begs him to come to bed.\ntt0221799,xfxhI_l9UYQ,Margit and Peter must leave their baby daughter behind as they flee Hungary.\ntt0384814,X3aJZU6rInc,\"Arturo Bandini re-writes his night of love and lust with Camilla, when Hellfrick abruptly interrupts his mood.\"\ntt0384814,Ut_lRQbeQcU,\"Arturo Bandini and Camilla work to impress each other, but miscommunicate their intentions.\"\ntt0384814,9aaVOicCVcY,\"After spending his last nickel, Arturo Bandini gives a waitress, Camilla, a hard time when she serves him a bad cup of coffee.\"\ntt0384814,cETZjbXsUog,Arturo Bandini and Camilla have an argument in the street that leaves Arturo with a heavy proposal to ponder.\ntt0384814,2baUXj3vrEs,Arturo Bandini writes about the diverse people of Los Angeles.\ntt0491747,36WAEsNsfng,Grant Anderson talks to Fiona for the last time.\ntt0384814,AHudLuix7As,\"Arturo Bandini prays for the right idea to write about. And in thinking about his financial woes, decides to steal from the milkman.\"\ntt0491747,2hWZyDGHNxI,\"Kristy, a nurse at the nursing home, questions Grant Anderson on his assumptions about marriage and aging.\"\ntt0491747,CrMlZldzxSg,Grant Anderson tries to convince Marian to send her husband back to Meadowlake.\ntt0491747,x3SUKG6l6FQ,Fiona Anderson makes a visit to her old house on a day trip from the nursing home\ntt0491747,EdxnFXQId-0,\"When Grant Anderson kisses his wife Fiona Anderson during a visit, he creates trouble at Meadowlake.\"\ntt0491747,AqKpGR4EocU,Grant Anderson tries to get Fiona Anderson to remember that he's her husband.\ntt0491747,TfWrCqaIAtE,Dr. Fischer tells Grant Anderson that he needs to move his wife to the second floor.\ntt0491747,TbdjQ6LLFsU,Fiona Anderson battles symptoms of oncoming Alzheimer's at a dinner party.\ntt0491747,TJj7YqhNxiw,Grant Anderson explains to Monica why he's not sitting with his wife Fiona Anderson.\ntt0491747,HLIVYHitYPw,Fiona Anderson reminisces about the infidelities of her husband Grant Anderson.\ntt0491747,Is9bN_cdTMo,Grant Anderson and Fiona Anderson say goodbye to each other.\ntt0414853,8fIL99qy9HU,All the animals on the farm dance in a giant party.\ntt0103759,FWx6IsqPUKk,\"The Lieutenant abuses his power when he pulls over two Jersey girls for a routine traffic violation, and forces them into a humiliating sexual situation.\"\ntt0103759,cQA8oY5pwJQ,The Lieutenant has an emotional breakdown in a church and hallucinates seeing Jesus Christ.\ntt0103759,ycKGXmtM6hk,The Lieutenant goes for a ride with the two thugs who raped a nun.\ntt0103759,0aMQUngLy1Y,The Lieutenant offers the nun his own brand of justice for the men who raped her.\ntt0103759,BiO01_Fe6To,The Lieutenant settles an altercation at a local convenience store.\ntt0103759,ukvZvl0GElQ,The Lieutenant visits his friend Zoe to indulge his taste for some fine brown stuff.\ntt0103759,FmiBHWtxHLA,The Lieutenant attempts to steal a kilo of cocaine from a crime scene.\ntt0103759,JQRV5_auS_Q,The Lieutenant shoots out the car stereo after losing his bet on a baseball game.\ntt0414853,hSUo-HJ01kY,\"Otis the Cow steals a car and goes joyriding, but the police chase after him.\"\ntt0103759,Wo2ZCh7vc2E,The Lieutenant approaches a local dealer for some drugs.\ntt0414853,2sY8MYUTfiQ,\"Daisy the Cow gives birth to a son and names him Ben, after the farm's deceased leader.\"\ntt0414853,LQFM8e6gQRg,Snotty Boy gets what he deserves when the cows decide to push back.\ntt0414853,76ftznPZmgk,Otis the Cow brings his friends from the farm to get revenge on Dag the Coyote.\ntt0414853,3J2Hm85PD2E,Otis the Cow takes the gang surfing on the farmland.\ntt0414853,ue0MJQmrIlg,\"Otis the Cow needs to fool the farmer into thinking he was napping, because otherwise the farmer might realize his animals can talk.\"\ntt0414853,-Nr56-RD_g8,Otis the Cow gets an interrupting and embarrassing phone call during a farm animal meeting.\ntt0292963,LrSA5tw_KSc,Andy and Hank rob Andy's drug dealer as their lives continue to spin out of control.\ntt0414853,C2db3UusdPc,\"Ben the Cow scares off the coyotes who want to eat the hens, but the fight costs him his life.\"\ntt0414853,90rIOemL6Xg,Otis the Cow pretends to be human while paying for pizza.\ntt0292963,7kTGVJ5OKDA,Hank and Bobby prepare for the jewelry heist.\ntt0292963,ziF1CU69IEA,Dex confronts Hank about his recently deceased brother-in-law and makes him an offer he can't refuse.\ntt0292963,39gtT7pdMwE,Gina tells Andy that she's been having an affair with his brother.\ntt0292963,V_i1yhjzdgI,Charles and Andy apologize for disappointing each other.\ntt0292963,qwsrKRo5gdA,Andy spends some leisure time shooting up H and hanging out with his manstress.\ntt0292963,88fxqiFGNXY,Andy and Gina discuss moving to Brazil.\ntt0292963,m5aE6rnmIwg,Nanette gets the drop on Bobby when he tries to rob her jewelry store.\ntt0292963,aZtlkGEwfSA,\"After agreeing to assist in a robbery for his brother Andy, Hank finds out the target is their parents' jewelry store.\"\ntt0292963,4a55PnIKoz0,\"After their attempted robbery inadvertently gets their own mother killed, Andy and Hank go over the details.\"\ntt0482463,MlhH_sjxXaA,Jose and Bella spend quality time at the beach.\ntt0292963,O4di7-6b7eY,Andy lets his brother Hank in on his burglary plot.\ntt0482463,EG_6BpNd0Vw,Jose asks Nina if she has considered giving her baby up for adoption.\ntt0482463,uECrYxTF-pU,\"When Nina confesses that she's pregnant, Jose offers her some support.\"\ntt0482463,2OOUlE9F190,Jose tells the story of his terrible accident.\ntt0482463,ZGF2551BMIc,Nina explains her sad family situation to Jose.\ntt0246772,DDfuaxazcc4,Mario tricks Martha into trying his cooking.\ntt0246772,V2E341Ilexw,Martha and Mario work together in the kitchen.\ntt0482463,D93lQnQlJcg,Jose argues with Manny about his management style.\ntt0482463,w7VbNRVbRQY,Nina explains why she wants an abortion.\ntt0246772,-BOt25-zf8Q,Mario uses his subtle charm to convince Lina to eat for the first time in weeks.\ntt0482463,meDRW5WV1R8,Nina is fired after she's late to work for the second day in a row.\ntt0246772,TsBMOksruxA,\"After a meeting with the principal, Martha and Lina get into an argument.\"\ntt0246772,ZqTzBhLdJO4,\"After an argument, Martha and Lina have a heart-to-heart talk.\"\ntt0246772,DZ2_coKUWcc,Lina asks for Mario to come and cook with her at Martha's.\ntt0246772,AdJe8nZ8crs,Mario tests Maria's palate in a surprising and romantic way.\ntt0246772,3CR_U8066OY,\"When a customer sends his steak back twice, Martha decides to give him exactly what he requested.\"\ntt0294357,wMZ5UJRpxfk,\"Sarah saves a young boy from being eaten by a vulture, and rescues his injured mother as well.\"\ntt0294357,JvFNTD3NhH8,Sarah tries to rescue Nick from the Russians.\ntt0294357,LbMpSo9yvZo,\"When a baby pulls the pin on a grenade, Elliott gets shot by a rebel.\"\ntt0294357,8uHpWrtDfAU,Colonel Gao stops Nick and Sarah in order to search their medical cargo for any weapons.\ntt0294357,8RRzvri051s,\"As the new spokesperson for UNHCR, Sarah gives a short speech at their annual conference.\"\ntt0294357,02064E1SHtQ,\"Nick tries to get through to the rich folks at the charity ball about helping refugees, but they only mock him.\"\ntt0294357,dMJolQgBp38,\"Nick begs Sarah to run ahead for help, but she runs onto a land mine on her way to the camp.\"\ntt0109305,pYXkfLVbLIQ,Coach Pete Bell faces off against Coach Bobby Knight in a basketball game pitting Western vs. Indiana.\ntt0109305,ptgpK6nH-5g,\"In the final seconds, Neon scores the winning basket for Western and Coach Pete Bell.\"\ntt0109305,wAE0vlaKvkM,Neon scores a 960 on his SAT's and attends his first class in college.\ntt0294357,v4Zjie4qH04,Sarah confronts Nick about his callous disregard for his patient's comfort.\ntt0109305,KUnaFhIJ17Q,Jenny Bell tutors Neon to prepare for the SAT's.\ntt0109305,iNxUsONmig8,Coach Pete Bell gives the team a pep talk before the big game.\ntt0109305,Jv_AlRfm998,Coach Pete Bell meets his friend Slick who tips the coach off on a raw talent by the name of Neon.\ntt0109305,ghn35eUPiIc,\"Coach Pete Bell asks his ex-wife, Jenny Bell, if she would tutor Neon.\"\ntt0109305,5oAIVuFPUdQ,Coach Pete Bell punts the basketball and gets ejected from the game.\ntt0229260,zTX_mBbobME,Sheriff Cravens has Jeffrey and the others tune in to the local news just in time to see a report on the murder of the rival Blair Witch tour group.\ntt0103873,WA-A3QhXx30,\"Zombies crash the party, tearing off limbs of the guests.\"\ntt0229260,-5RW2xQ9pNs,\"When Kim grabs beer at the local convenience store, she's frustrated by the town's surly residents.\"\ntt0109305,weTmdGoN_SQ,Coach Pete Bell attempts to motivate his team by way of verbal abuse.\ntt0229260,vILYE9lG3Aw,Erica and Stephen have a strange encounter that quickly turns nightmarish.\ntt0229260,4gbvjHb0ZUA,\"Jeffrey's van is destroyed, Stephen has marks on his body, Tristen has nightmares, and strangest of all, Erica is missing.\"\ntt0229260,d5lyojjyMl0,\"Kim returns from her beer run to find Jeffrey at work on the tapes, but things are more sinister than they seem.\"\ntt0229260,kEKqDuIl8Wo,\"Tristen, either insane from the stress of the weekend or possessed by the spirit of the Blair Witch, taunts the group and challenges Stephen to kill her.\"\ntt0229260,dkB5SsVVlOI,\"Jeffrey, Kim, and the rest of the tour group wake to find their camp and belongings completely destroyed, with no memories of the night before.\"\ntt0229260,DZpfEy3OsrI,\"When Jeffrey asks Kim why she bothered to come along if she doesn't believe in the Blair Witch, she gives him an excellent answer.\"\ntt0229260,V9aRvKzTOc4,\"After reporters converge on the compound to cover what now appears to be a weekend of crazed ritual murder, Jeffrey gets interrogated by Sheriff Cravens.\"\ntt0103859,Viai9bgo5KM,\"At a dinner party thrown by Marcus, Mr. Jackson muses on subjects from his mushroom suit, to being pussy-whipped.\"\ntt0229260,7rDK27McgEg,\"The residents of Burkittsville, Maryland, share their experiences with tourism and myth in the wake of the popularity of the movie The Blair Witch Project.\"\ntt0103859,UD_gJShgozE,Marcus allows himself to be seduced by Lady Eloise because he thinks it will help him get ahead in business.\ntt0103859,O7VH8LKDnr0,Marcus experiences the wrath of Strangé when he rejects her sexual proposition.\ntt0103859,iMzGaN5Sg3w,The meeting about Strangé's new perfume takes an interesting turn when she demonstrates what she thinks the perfume should smell like.\ntt0103859,NP7_SIRfo-c,\"Marcus puts on an act of vulnerability to get Christie into bed, and is later horrified to discover that she has \"\"hammertime feet.\"\"\"\ntt0103859,qYgpnWoRbXg,An offensive perfume ad starring Strangé goes horribly wrong when it is premiered in front of the executive board.\ntt0229260,sdfDF8OuPPc,\"Erica tries to commune with spirits in the forest, and lectures Tristen on the morality of punishing witches.\"\ntt0229260,u1_fdJ0f2iQ,\"Jeffrey, Stephen, Erica, Tristen, and Kim discuss what has brought them together: the Blair Witch.\"\ntt0103859,HmGeJVIfb1U,\"Marcus, Gerard, and Tyler face racism from the boutique clerk.\"\ntt0103873,CaCW78inauI,Lionel finally stands up to his mum.\ntt0103859,v4kXrblmBE8,\"Marcus gets bent out of shape when he doesn't have the upper hand in his relationship with Jacqueline, but she makes it up to him.\"\ntt0103859,IZGhNReGZTs,\"Marcus tries to lay the moves on Jacqueline, only to receive the \"\"no business with pleasure\"\" speech.\"\ntt0103873,_fap4qRqTlk,Lionel's mum dies and then comes back to life.\ntt0103873,rC6WAAlNHt4,Lionel is saved from a group of thugs and zombies by Father McGruder.\ntt0103873,_ASByCtlV_o,A baby tears open a woman's face while Lionel fights off the last of the dead alive.\ntt0103873,ebNbXsFdz9w,Lionel finds a dead alive baby and takes it to the park.\ntt0103873,O_GMXI7Pp6c,A group of zoo officials capture a dangerous monkey from a tribe.\ntt0103873,_frVHCLECNQ,Mum is bitten by a rat monkey at the zoo.\ntt0103873,8wDlH8jWxYk,Lionel helps his mother with her infected arm and her peeling face.\ntt0163988,XnJvHpxr1Lw,Frank holds onto Cy while the police cut him down.\ntt0163988,dcO8blFBl8g,\"On a full moon Saturday night, a delirious Frank and a crazed Tom hit the New York City streets in a maddening frenzy.\"\ntt0163988,lQCPntZhPPk,Frank and Tom harass a homeless man who quite unsuccessfully tried to commit suicide.\ntt0163988,SfQk_TF9KJ8,Marcus accidentally crashes the ambulance in a fit of manic joy.\ntt0163988,CXJ8c0rWJsk,\"As Frank brings back to life a drug addict, Marcus seizes an opportunity to instill some faith through some evangelical preaching.\"\ntt0163988,sBpNA3HWj6Y,The Dispatcher sends Frank and Larry to help the local drunk -- Mr. O.\ntt0838283,-NeY5tqk1N8,\"After having one too many drinks during Sam's funeral, Hank condescends and insults Tommy.\"\ntt0163988,JrlQ3NAcPf0,\"Frank and Marcus help Maria,who, despite delivering twins, claims she is not pregnant.\"\ntt0163988,_h2BB1vo27s,Frank and Larry arrive at their first call of the night -- an elderly man suffering through a cardiac arrest.\ntt0163988,x1brwiNhp6Q,\"When Frank shows up to his shift late, the Captain once again goes back on his promise to fire him, and as always, promises Frank he'll fire him next time.\"\ntt0838283,Yo3qKhfO_V4,\"When Sam's guilt becomes too heavy to bear, he lashes out at Grace and destroys the kitchen.\"\ntt0838283,FYh2_trJNiA,\"Grace tells Sam that she kissed his brother, but Sam has trouble believing that is all that happened.\"\ntt0838283,K_jwfCn9X6E,Tommy gets upset after his father advises him to be more like his brother Sam.\ntt0838283,c1nmARXTuvE,\"When Grace tells Tommy that his brother is dead, Tommy does not take the news too well.\"\ntt0838283,029Mdp9jYiY,\"Grace and Tommy reminisce about their relationship in high school, and Tommy takes the opportunity to make a move on Grace.\"\ntt0838283,oN2S394WfuU,\"When the cops arrive at Sam's house, he becomes manic and begs them to shoot him.\"\ntt0838283,c3nJu9SBkis,\"During a tense family dinner, Sam explodes at his daughter, Isabelle, and she retaliates with some very hurtful comments.\"\ntt0838283,KVy9rgFD5js,\"Sam is given a choice by his captors -- kill his fellow soldier, or be killed himself.\"\ntt0838283,RnTG-5XU49o,Sam asks Tommy if he slept with Grace while he was fighting in Afghanistan.\ntt0179116,CMcqNCzUlGw,Rock is embarrassed as his mother conducts the final test in sexual simulation.\ntt0179116,y-4yAOPVjZA,Megan interrupts the True Directions graduation ceremony to declare her love for Graham.\ntt0179116,IBN5GruNnME,\"The group goes through a final test to prove their heterosexuality, and everyone passes except for Andre.\"\ntt0179116,5k5l5PQJFrE,Megan and Graham get intimate and Megan compares the experience to cheerleading.\ntt0179116,JoNeXThhiqs,\"After cheerleading practice, Megan makes out with Jared but has other things on her mind.\"\ntt0179116,oFEEoG2s_04,Graham is humiliated when the students have a family therapy session.\ntt0179116,ghaZWnGSgMI,The students at True Direction take a gender identity course.\ntt0179116,WQyUUpQzdto,The boys get distracted by Rock during their football game.\ntt0303816,HxyKbR3GmsY,\"Thinking he's avoided the contagion, Jeff is on top of the world after coming out of the wilderness, and finding the bloody remains of his friends strewn about the cabin.\"\ntt0179116,nINkPmHZfRc,Megan meets everyone at True Directions but denies that she belongs there.\ntt0179116,8NFxckpb-CY,\"During a group therapy session, Jan tells the group that she's never been a homosexual.\"\ntt0179116,F6AdQghTUis,Mary Brown encourages the students of True Directions to share what they think is the root of their homosexuality.\ntt0303816,9AyPzu3JmSE,Paul and Bert spring a bloody trap for the redneck assassins headed their way.\ntt0303816,smtDfh1TXe8,Paul finds a corpse in the reservoir and gets a little too curious.\ntt0179116,qBGFAnbZS_M,Megan is confronted by her family about her sexuality.\ntt0303816,FK2rc4NbKco,\"Dennis mistakes Bert for some pancakes, and takes a bite.\"\ntt0303816,qrCkASenz7I,\"Around the campfire, Paul tells a scary story about a deranged bowling alley employee.\"\ntt0303816,jCatADs_uW8,\"The infected hermit shot by Bert shows up at the gang's cabin, and the tension heats up.\"\ntt0303816,Cjg8Hj75FPQ,The gang gets to know some of the local color including Old Man Cadwell at the country store.\ntt0303816,5d0GYRAD_aI,Paul arrives back at the cabin after a vicious dog has its fill of Karen and Marcy.\ntt0303816,MJJ8AJUn-p4,\"Paul rounds third base in bed with Karen, only to find something bloody just to the left of home plate.\"\ntt0303816,BxFaosg1mV4,\"Bert stumbles upon an infected Henry, and accidently shoots him.\"\ntt0303816,mFj1lf3ECK8,\"While getting supplies at the local market, Dennis bites Paul on the hand.\"\ntt0961722,B3oSlrpSf8k,\"As John spills his guts to Cassie, the moment is interrupted when a mysterious -- and armed -- government agency orders them back inside the school.\"\ntt0961722,LnDG46BruE4,\"Rick tries to score easy with Frederica, but gets grossed out when his lover starts to fall apart.\"\ntt0961722,PUo-B7AEAWY,\"After finally escaping the school, Cassie is rescued by Winston moments before agents from the CDC capture her.\"\ntt0961722,moJvW1-7_Cw,Winston and Toby learn that there's something nefarious in the water.\ntt0961722,HnqkmLTgv78,John amputates his arm while Cassie's boyfriend looks for revenge.\ntt0961722,rlX19RmlimM,Cassie and John try to convince Principal Sinclair that the school is under attack.\ntt0961722,UC2zyr54O2w,Find out the fate of Paul from the original Cabin Fever.\ntt0961722,UgjmE8BWps8,Winston convinces a bus driver that he only hit a moose.\ntt0961722,I-xbToSaaPU,Johnny Janitor finds that spiking the punch has its difficulties.\ntt0961722,axqYHL-KPRk,Sandy doesn't want a couple of blood-vomiting students to ruin her finest hour.\ntt0375912,EYKwSLZPwV4,\"Pippa hits it off with sexy photographer, Hemingway.\"\ntt0961722,RxjCZxfPA3U,John and Cassie run into Ms. Hawker while hiding from the CDC.\ntt0375912,egC34ixXtos,Pippa and Lulu bond over their singleness at their friend's wedding.\ntt0375912,YYc1h1Pymto,\"Ian seeks out Pippa at the lake, arriving with the bed they once looked at in a vintage shop.\"\ntt0961722,DTJii7bLit0,\"Winston witnesses a diner customer choke to death but before he can do anything, the victim starts to squirt blood. Everywhere.\"\ntt0375912,_AA7Q5bWirM,\"Pippa begins her speech on an earnest note, but fakes her way through the rest in order to win over the crowd.\"\ntt0375912,MiyfHiRy_tI,Pippa pays Hemingway a late night visit.\ntt0375912,oHpI2u95uUk,Ian comes clean to Pippa about his hopes of getting to know her on an intimate level.\ntt0375912,mLcwaMW919Q,\"Pippa invites her friends to stand in as a focus group to hear their input on marriage for the magazine, Wedding Bells.\"\ntt0375912,JbRDwutWOng,\"After Ian tells Pippa how he feels about her, she lets him in and they make love, but the next morning she reverts back to her non-commital ways.\"\ntt0375912,G-_QYRggMwM,Ian befriends Pippa while she is drunkenly searching for her bra.\ntt0375912,FdvsQb7f7uM,Pippa and Ian go out one night on a business trip and get to know each other better with a game of truth or dare.\ntt0375912,5tpVvZo9hus,\"Ian tries to get to know Pippa better when they're both working late at the office, but she shuts him out.\"\ntt0157472,dL2_nbhJaTs,Zak puts his explosive plan into action.\ntt0375912,OPmVkpUsbz4,\"Pippa tries shaking things up at her first meeting as editor for Wedding Bells, but Ian and the rest of the employees don't share her progressive views.\"\ntt0157472,4pmBvrehyTk,The gang heads to the science expo to steal some supplies they need to fix the watch.\ntt0157472,2AHC98YRBKA,Zak takes a risk and goes to hypertime while he's in hypertime.\ntt0157472,o1JgvBy3_cA,Zak grabs a bike and tries to outrun the QT security.\ntt0157472,c9vl9Rurcc8,Zak and Francesca are swept up by a garbage truck.\ntt0157472,T60vdoUUk_E,Zak meets Dr. Dopler and tries to escape with him in a car.\ntt0157472,FmG9SZNVpmk,Zak and Francesca use hypertime to help Meeker lay down some funky beats.\ntt1121931,1uIPM6h1gDg,A battle of epic proportions ensues after Chelios finally catches up with Johnny Vang.\ntt0157472,1cFyFvO56Sw,Zak and Francesca discover what hypertime does.\ntt0157472,GwkD7itIsCM,Zak has his first encounter with hypertime.\ntt1121931,tqjyFalTkw0,\"After surviving the ultimate charge, a flaming hot Chelios defeats El Huron and longs to be reunited with Eve.\"\ntt1121931,Wwoxu41UkNw,Chelios' mischievous childhood is revealed in a segment from a daytime talk show.\ntt1121931,gU8Ksz47C54,A doctor's fear of Chelios comes full circle when a stray bullet interrupts his therapy session.\ntt1121931,bVZ_-0df7XE,Chelios pulls a bloody escape from Don Kim's men after the mob boss reveals that he's turning him in for a reward.\ntt1121931,VyS-apNPxUI,Chelios tries to charge his slowing artificial heart by creating static electricity with people at a racetrack.\ntt1121931,ys3a4yA-5Eg,Chelios attempts to chase down Johnny Vang on foot after he speeds away with his recently removed heart in a cooler.\ntt1121931,5GL9pbYS_D8,Chelios gets a quick charge from an electric dog collar while on the run from the cops.\ntt1121931,kBJD6iSkqxw,Chelios uses a shotgun to pump information out of a Triad gangster.\ntt1121931,VGQWULimSCg,Chelios beats down a group of baton-wielding cops after getting a power boost from a police taser.\ntt1121931,0GH64kmHZvs,Mia takes a liking to Chelios after he clears out a group of Chinese gangsters.\ntt1121931,yPbgAbAimoA,Chelios gets supercharged after he hooks himself up to a car battery with jumper cables.\ntt1153706,huE8fA3Ln18,Thomas and Megan get in a debate during Mr. Moody's acting class.\ntt1153706,QQ6SadUAXWQ,Thomas reveals his true identity to Megan.\ntt1153706,I54GtHWXwpc,The Uncle Toms pull out all the stops when they finally get to battle the 409 crew.\ntt1153706,pv7Y9z9ZvR8,Thomas gives Megan her first hip hop dancing lesson.\ntt1153706,k3rxddIltIA,Thomas' crew faces off with the 409 crew during their first dance battle.\ntt1153706,VtVq2S8qp1k,\"Megan tries to tell Thomas that she wants to break up, but he doesn't agree.\"\ntt1153706,CmCNWoo1TD4,Ms. Cameltoé belittles the students in her ballet class.\ntt1153706,M9MvIL2FDaM,\"While Thomas is teaching Megan how to dance at the club, the 409 crew shows up and challenges him to a rematch street battle.\"\ntt0433362,Ks2IFhAqBSE,Elvis and Audrey Bennett attempt to transform Edward back into a human.\ntt0433362,BMVmbqSR668,Frankie sacrifices himself to save Edward and Audrey.\ntt0433362,JxZHAMfuwsA,Frankie Dalton is ordered to drag subsiders into the sun.\ntt0433362,2RXSVTFM3hQ,\"Edward tricks Bromley into drinking his blood, bringing Bromley back to life.\"\ntt1153706,04RW0CPquaE,D's signature dance move proves to be fatal.\ntt0433362,NCm1lI1L4LQ,Elvis tells his tale of turning from vampire to human.\ntt0433362,ANZUU_ev5HU,Subway commuters go mad with blood lust and attack a coffee shop.\ntt0433362,lfXtePMdNMk,Jarvis and Alison get attacked on the road to the hideout.\ntt0433362,SELIbxPbbh0,Edward gets in a wreck with a car full of humans.\ntt0433362,ZDYLUH3BImk,Edward and his new allies attempt to escape the soldiers pursuing them.\ntt0433362,aVCOzbRPapo,Edward tests his first batch of synthetic blood on a vampire.\ntt0433362,GCOXBnHRdmc,Edward and Frankie are attacked in Edward's house by a vampire deprived of blood.\ntt0817538,vz2RAznAy9Q,\"Wade, and Emmit interview Drillbit Taylor to be their bodyguard.\"\ntt0116493,t1x6i73klIs,Harriet meets with a child psychologist because she is having emotional issues at school.\ntt0276919,Jxk0QX01quo,Grace decides that killing Tom requires a personal touch.\ntt0276919,nYoAZo7L2w4,\"Bill, with the town's help, constructs a feat of engineering to make Grace stay in Dogville.\"\ntt0276919,ZryPGAMBuF4,Grace is exploited by the dehumanized township of Dogville.\ntt0276919,NUAs-J9HatA,\"After confronting Grace about sleeping with her husband, Vera challenges her to a test of stoicism.\"\ntt0276919,CApovMdNxw8,\"As the villagers demand more and more of Grace, she starts giving less and less.\"\ntt0276919,Ud5-cq0a1sU,\"Grace decides the fate of Dogville after talking with her omnipresent father, The Big Man.\"\ntt0276919,wlhtHcN0wo8,Jason demands punishment from Grace.\ntt0150377,72R97Mzaey4,Libby and Matty reunite.\ntt0276919,JhGjwr3rLtc,Grace and Tom convince Ma Ginger to let Grace help around the store.\ntt0817538,MDdgxMEIYFI,\"Drillbit stands up for the guys, and fights Filkins.\"\ntt0276919,aJl8UJ7-JiI,Grace shares her initial opinion of the town with Tom.\ntt0109676,5WaI5NdGVw4,Pete comes face to face with Ty Moncrief as he attempts to con the D.E.A.\ntt0150377,uDr8qT3BlHM,\"Libby gets some internet help from a fellow looking to \"\"get some\"\" from her... until he finds out she's a convicted felon.\"\ntt0276919,23x_B3MpUH4,\"Tom Edison meets Grace, an unexpected visitor to Dogville.\"\ntt0150377,rAULcuSAZeo,Libby kills Nick.\ntt0150377,v5-gQQunvJw,\"Libby collects her winning bid on Jonathan\"\" and demands her son back from him.\"\ntt0817538,_i9YzGZS0I8,Drillbit plans to give up his life as a bum and move to Canada.\ntt0817538,H-5mWBsCOaw,\"Drillbit gets released from prison, and is reunited with the guys.\"\ntt0817538,N72sZx-UMlg,\"The guys run from Filkins and Ronnie, who chase them with their car.\"\ntt0150377,HGdt0QR55Ko,Margaret shares a little advice about the criminal justice system with Libby.\ntt0817538,XFoP9Dy1jNc,The guys confront Drillbit after Wade gets punched.\ntt0150377,m2REqMDEXNU,Libby finally holds Nick at gunpoint after six years of being falsely imprisoned.\ntt0150377,sJusqH8NxP4,Libby makes her great escape from Travis.\ntt0817538,RslDexUKDB4,Wade and Ryan attempt to learn how to take a punch.\ntt0097240,q7DHkw_5Wzw,Dianne comes back to see if Bob will return to the drug lifestyle.\ntt0109676,CW_yC7l6PO4,Swoop prevents Earl Leedy from making an escape.\ntt0150377,dFIsw8XfF30,\"Libby finally talks to her son on the phone but the conversation runs short when supposed-to-be-dead Daddy\"\" comes home.\"\ntt0817538,BpnXXI34rSs,Don convinces Drillbit to steal from the kids.\ntt0817538,g0CFQF54ePo,Wade convinces Ryan to challenge Filkins to a rap battle.\ntt0817538,s1Y023ZS4Ms,\"As a consequence of standing up for Emmit, Wade feel the wrath from bullies Filkins and Ronnie.\"\ntt0326856,rFXajFXNWQw,Tim finally tells Nick the truth about his feelings.\ntt0109676,sQolThygoGk,Jessie and Pete go look for Swoop in order to ask him to join their team.\ntt0109676,3qMNxVVQhzM,\"The group practices for their stunt but as they go to land, Selkirk's chute doesn't open.\"\ntt0097240,puXEHhZgXaY,Bob and his crew rob a pharmacy.\ntt0097240,bSW_sW_A8pg,Bob explains why he doesn't want any dogs or puppies around the crew for fear of a hex.\ntt0097240,TksvZdrx9_A,Bob negotiates a drug deal with David.\ntt0109676,OUo2Klpa8AU,Pete goes on his first skydiving jump with the group.\ntt0150377,Cx7ip9cWKJg,Libby wakes up to find herself alone on a bloody boat.\ntt0097240,RSvx75Md5l0,\"Bob and the crew find Nadine dead from an overdose, and the jinxed hat still sitting on the bed.\"\ntt0097240,-WN4uZXOltk,\"Bob tries to rob a bigger pharmacy at a hospital, but things don't go as planned.\"\ntt0097240,zJZiy6BuuLY,Gentry and his police officers raid Bob's house in hopes of finding evidence implicating him in a robbery.\ntt0109676,MqQ9-AP36z4,\"When Torski attacks Swoop, Pete steps in to stand up for him.\"\ntt0109676,FGcla1_O220,Jessie Crossman drops Pete Nessip from the plane after he insults her profession.\ntt0109676,ei2dYpiS-Us,\"Ty Moncrief discovers that has been partially identified, and decides to kill him off.\"\ntt0109676,3gCyObtqSEo,Ty Moncrief and his crew take a plane hostage in order to capture computer genius Earl Leedy.\ntt0097240,YGFrKow2KfA,Bob saves a kid from a drug deal and talks philosophy and drug addiction recovering addict Tom the Priest.\ntt0215750,Giom5_byviI,Major Konig searches for rival sniper Zaitsev in a Russian train yard.\ntt0215750,wMvTR012Dmg,Commisar Danilov gives Zaitsev his first chance to take aim at Nazi officers.\ntt0215750,93tR96egox4,Danilov helps Zaitsev find the location of an enemy sniper.\ntt0215750,BF-sTHMVoOc,Zaitsev and Koulikov must cross a dangerous gap as they exit a war-torn building.\ntt0215750,381Di8Cw0-I,A disappointed Khrushchev addresses his officers after they fail to take Stalingrad back from the Germans.\ntt0215750,rRUuycF5FTU,Tania helps Zaitsev escape from the sights of a skilled Nazi sniper.\ntt0215750,8yOBCGwMpeo,Zaitsev joins other Russian soldiers on a dangerous ferry ride to the battle-torn city of Stalingrad.\ntt0326856,0pxJFZ8HRV8,Tim comes up with an invention that could save Nick's fortune.\ntt0326856,v91LBP6w4aI,Tim and J-Man share stories over drinks.\ntt0215750,WTi7v77XZYs,Koulikov tells Zaitsev and Volodya his story while they are on the lookout for Nazi soldiers.\ntt0326856,eW4DpZkOe1g,\"Tim accidentally shoots his best friend's horse, Corky, with a bow and arrow.\"\ntt0326856,bW3ur5td00I,Tim and Debbie are in shock after they realize Nick's invention actually works.\ntt0215750,oJ3bzg-Tvt4,Zaitsev and other Russian foot soldiers attempt to reclaim the city of Stalingrad from German control.\ntt0326856,YOxfSSv14CM,Nick makes Tim a partner and takes him on a business trip.\ntt0326856,qjbkmhtAsJo,The Vanderparks invite the Dingmans over for dinner so Natalie can make a big announcement.\ntt0326856,kZGlMOfzhC4,Tim tries to hide J-Man from his wife and children.\ntt0428518,yIF3Vr_at5I,Jay-Z and Pharrell Williams work on a track in the studio.\ntt0119095,4Sl4t9JNnuk,Mr. Binley concludes that the photos of the fairies that Sir Arthur and Edward brought in aren't actually real.\ntt0428518,NsNN1eHv7MU,\"Jay-Z talks about the way New York was when he was growing up, and considers whether or not rap lyrics should reflect real life.\"\ntt0119095,JpE65kS0aIo,Frances and Elsie finish the doll house to show the fairies they are sorry for telling their secret.\ntt0428518,9CKyWqb5-sw,Jay-Z records a rap to a track by Timbaland.\ntt0428518,-fMCqLBMPPo,Jay-Z and Kanye West hang in the studio.\ntt0428518,A-BrlQ3h1i4,\"Jay-Z records the song \"\"99 Problems\"\" at Rick Rubin's home studio.\"\ntt0428518,2lavod63XMI,\"Jay-Z and Beyonce perform \"\"Crazy in Love\"\" on stage together.\"\ntt0119095,LR6C2oVQr_I,The fairies visit Elise and Frances in their bedroom.\ntt0119095,PhBZ50d6Btw,Elsie asks the famous magician Houdini if he ever reveals his magic tricks to anyone.\ntt0428518,MRmFis1ZxUE,Michael Buffer introduces Jay-Z at his sold out Madison Square Garden concert.\ntt0119095,lAIJ6Twk8aQ,Sir Arthur presents the girls with new cameras for taking photos of the fairies.\ntt0119095,DHDOgbfwSlY,Houdini advises Sir Arthur to get more proof and more photos if he wants to declare that fairies are real.\ntt0119095,WjY6_V2EM04,The fairies help bring Frances' father home from the war.\ntt0119095,_r4a-vgIqgM,Mrs. Thornton introduces Frances to the class.\ntt0428518,BSy7Wzj4OCY,Jay-Z talks with Pharrell and Just Blaze about the importance of staying focused when making a record.\ntt0289944,6wa4qfLmyoE,Peter tries to find out why Harry is looking for his wife.\ntt0289944,SvVYUW8r_Dk,Harry is surprised when a prostitute suddenly shows up at his hotel room door.\ntt0289944,B_CRLQ8VXAg,\"After being shot by Peter, Harry returns to get revenge, when suddenly, he begins to hallucinate.\"\ntt0289944,rVEFouzc6LI,Peter calls an emergency meeting to make his peers aware of Harry's presence in their town.\ntt0119095,XFmCXGXAZ5A,Arthur is confused by the photos the girls took of the fairies.\ntt0119095,w8td2mMGYjo,Houdini entertains guests with a chalk trick.\ntt0289944,BdgWnY2SCq4,A police officer sits down with Harry when he questions a waitress about a local woman.\ntt0289944,NoiLYCUpS5A,Harry watches the security footage of his wife being shot and killed.\ntt0289944,a_7a2sP4WMw,Harry catches a shoplifter red handed.\ntt0289944,gAN-yHGtbY8,\"Kate asks her husband, Peter, why a man named Harry Caine is looking for her.\"\ntt0106912,jKu10hihpkg,Travis breaks free from his alien capsule.\ntt0106912,mO2W96NCiRc,Travis is the subject for bizarre experiments at the hands of his alien captors.\ntt0289944,PKr0pj8Dw6A,Harry is questioned by the police regarding his wife's death.\ntt0289944,OaFB9lMthfU,\"Harry sneaks into a neighboring house, looking for clues about his wife's killer.\"\ntt0106912,nDbBWcwu1jM,The UFO's powerful light hits Travis knocking him out.\ntt0289944,8tp5RSId2g4,Harry tells Phil his plans to go to Montana to search for his wife's killer.\ntt0106912,BSBKmD2TRow,Travis stumbles across a room full of alien space suits.\ntt0106912,ViUbA_O3N5M,Mike and his co-workers take the polygraph test.\ntt0106912,mM2Tc_tYYKk,Travis is back yet goes into shock remembering fragments of the abduction.\ntt0106912,on6B12rsn9Q,\"Mike rethinks his fleeing from the UFO, and turns the truck around to rescue Travis.\"\ntt0106912,ZczgtOsK7WU,\"Travis, Mike, Dallis, Whitlock, Greg and Bobby see a strange red glow above the tree line.\"\ntt0050419,9dcybKF8Pjo,\"Jo and Dick argue about Professor Flostre's intentions, with disastrous consequences.\"\ntt0050419,cFzsm8tKWU0,Jo contemplates her feelings via song.\ntt0101912,9dCHSNdHZQs,Nick hires Johnny with the help of his niece Artemis.\ntt0050419,uD2mdsAwJBA,Dick and Maggie perform an impromptu song and dance number for Professor Flostre's disciples.\ntt0101912,s5jDTz07buw,Johnny and Tim make small talk before his date with Frankie.\ntt0101912,KwnTYy2p0AE,\"Johnny shows Frankie the flower market, his \"\"secret place.\"\"\"\ntt0101912,LOxqK6o4NN0,Frankie finally shows some interest and approaches Johnny with a question but she finds a way to run again.\ntt0101912,HnnBvemHrWA,A man has an epileptic seizure and Johnny asks Frankie out on a date.\ntt0101912,ch6zVPr6lWM,Johnny confesses his love to Frankie.\ntt0101912,6ygujqr_JWc,Frankie exposes her wounds and shares her personal sufferings with Johnny.\ntt0101912,HOr8EwpHNwY,Johnny asks Frankie to open her robe.\ntt0050419,Hp7zxA4BsKg,\"Jo hides in the darkroom with Dick, who tries to boost her self-esteem.\"\ntt0050419,RH4cgOQjITc,Dick professes his love for Jo through song and dance.\ntt0050419,aPElaYUCTmA,\"Jo appears in her new look, to the delight of Dick and Maggie.\"\ntt0050419,ljK_2ZT44jA,Dick follows Jo home to make amends for their argument.\ntt0050419,q4G5hUvL-wI,Jo performs a Bohemian-style dance in a nightclub as Dick watches in disbelief.\ntt1034032,nKCIuHUFJnY,\"With the help of Simon, Kable finally eliminates Castle during a live television broadcast.\"\ntt0050419,cvakyq_EaWY,\"With the magazine headed in a new direction, Dick persuades Maggie and Dovitch that Jo would be the perfect new \"\"It Girl.\"\"\"\ntt1034032,sogf5QgMqJs,The Humanz go through Kable's -- aka John Tillman's -- memories and discover why he killed his best friend.\ntt1034032,JNLW2R5dYOM,Simon communicates with Kable for the first time during a game of Slayers.\ntt1034032,QnaTtsClgc4,Castle reveals his plans of global conquest to Kable.\ntt1034032,54kfWG3V-IE,Humanz Brother tries to recruit Kable in the battle against Castle and his growing empire.\ntt1034032,lU2FHV2lr04,\"Kable rescues Angie from the Society game, but Hackman intervenes with a shotgun.\"\ntt1034032,EqoU4-wHxDU,\"While testing out his upgrades, Kable explains to the Upgrade Guard who's really in control.\"\ntt1034032,SHdKVf4jA0c,\"Gina interviews Castle on the success of Slayers, as well as the controversial social fallout from its creation.\"\ntt0828393,LEdvMVoFgro,April considers her career options with Lana and Tiff.\ntt1034032,x9U9Xi1yQMo,Kable jacks a truck so he can drive off the playing field.\ntt1034032,c7StgLYxbPU,Kable fights to stay alive in an intense death match game known as Slayer.\ntt0828393,gpO1qCdOHGc,Nathan quits his job working for Sally St. Claire.\ntt1034032,Gp22ZHf0_a0,Kable continues his fight for survival in the brutal game of Slayers.\ntt0828393,zCz-i5sPrBo,Sally St. Claire and Todd try to get her pictures back from Anthony.\ntt0828393,EHeR5XCO3uA,Nathan tells April about his aspirations in life.\ntt0828393,b_BJbecP-Xc,Nathan and April make new friends at the bar.\ntt0828393,8SqhsheKNqg,Sally St. Claire and Todd kidnap Davey Diamond and demand he return Sally's pictures.\ntt0828393,rqWU2zS3rJg,April calls Anthony to have her picture taken for money and Todd calls Sally St. Claire.\ntt0828393,jlwA_X5iyBA,Sammy meets a fast-talking A&R hustler named Joey Zane.\ntt0430308,qPpMWDyyHy4,Marcus meets Bama after a prison fight has him thrown in solitary confinement.\ntt0828393,Oel3rZOooFc,Sally St. Claire tells Nathan to check her marijuana supply while Lana and April try to get a fake I.D.\ntt0828393,AQAQUyNnXms,Davey Diamond goes on a date with Leni but it doesn't pan out the way he expected.\ntt0828393,MKVy1bpJCi0,Todd helps Sally St. Claire with the gum stuck on her shoe and she offers to help sell his house.\ntt0828393,6JHAWVBOq3M,Nathan gives Sammy a ride and a peek at his employer's marijuana-growing facility.\ntt0165798,Z9GVG_9yN7M,Ghost Dog finishes off Sonny Valerio and encounters a fellow samurai in the street.\ntt0430308,fZAksSuI1R4,Marcus has to calm Bama down when he confronts Justice about fidgeting in his backseat.\ntt0430308,ujH4hnVthhM,\"After ten years apart, Marcus and Charlene finally reconnect.\"\ntt0430308,pgk_j6ehCEA,A fight turns deadly when Marcus and Majestic struggle over a grudge.\ntt0430308,F4vBy7g5vpo,Young Marcus attends his mother's funeral.\ntt0430308,2sROc10VoBA,Charlene visits Marcus in prison and tells him she is pregnant.\ntt0430308,MxtB_Ri0q_w,Marcus visits Levar in prison and discovers the identity of his father.\ntt0165798,q-5e6U4CdbU,Louie faces off with an unarmed Ghost Dog.\ntt0165798,-TAp26oPrvE,Ghost Dog listens as some rappers freestyle in the park.\ntt0165798,Qz1-NSdsqNE,A Kung-fu Master defends himself from a mugger as Ghost Dog watches.\ntt0430308,Cgfw3cjfO6A,Majestic teaches Marcus and the rest of his crew the rules for selling crack cocaine.\ntt0165798,e4IJ2LyK9cs,Louie takes a bullet from Ghost Dog.\ntt0430308,-pVDJkIp5sc,\"Marcus, Bama and Justice rob a bookkeeper.\"\ntt0165798,omYsWxT4Mbs,Ghost Dog saves Louie's life once again.\ntt0165798,nAq5GhiMdSA,\"Ghost Dog comes across two hunters and \"\"takes care\"\" of them.\"\ntt0165798,fIZiQDCK_Ng,Sammy the Snake and Joe Rags attempt to find Ghost Dog but instead come across Nobody.\ntt0165798,PgeCL2KdU_I,Louie has a sit-down with Ray Vargo as they discuss what to do with Ghost Dog.\ntt0165798,JoPPsr14gRk,Ghost Dog makes his way to Ray Vargo to kill him and all his henchmen.\ntt0405061,rb7z1bFt79k,\"Joey Cheng goes out to lunch with Mrs. Chow, and panics when she finds a ghost watching from under the table.\"\ntt0165798,SzzO21mg8yA,Ghost Dog practices his swordplay on a rooftop.\ntt0405061,vjplEkEo_H8,\"Stuck in an elevator with a pregnant woman in labor, Joey Cheng panics when she spots a ghost coming to kill the woman's child.\"\ntt0165798,puwOGUjUKz8,\"Ghost Dog takes care\"\" of Handsome Frank.\"\ntt0405061,9hEYOiPK79g,Joey Cheng jumps off the hospital roof in order to prevent Yuen Chi-Kei from re-incarnating herself in the form of her baby.\ntt0405061,c2TTFWzBuE8,Joey Cheng is tormented by her visions of the dead at a bus stop.\ntt0405061,xy2zgeQ7ECg,Joey Cheng brutally attacks a man who tries to rape her in a dark alley.\ntt0405061,Nd8HPu7y8qk,A Buddhist Master explains to Joey Cheng the reason that she's able to see the spirits of the dead.\ntt0335119,xoqU0B7BGQI,Griet poses with Catharina's pearl earring when she is away.\ntt0405061,9leTC1Rk2bc,Joey Cheng agonizes over her recent breakup without realizing that she's being watched by a ghost's reflection in the water.\ntt0405061,215DJ7KbNsY,Joey Cheng tries to stop a woman from jumping in front of a moving train.\ntt0405061,4zT8gk15yrY,\"After an attempt to kill herself, Joey Cheng gains the ability to see the dead.\"\ntt0104348,55wIwwmrHxk,\"When John Williamson discovers that Shelley Levene is the culprit of the break-in, he shows him no mercy.\"\ntt0335119,Z8E9FEaEm8A,Griet learns of the gossip surrounding her at the marketplace.\ntt0335119,imtYtoHzPJc,\"After praising his latest commissioned piece, Van Ruijven asks Johannes what his next subject will be.\"\ntt0335119,8aYUJSDZHKw,Johannes asks Griet to remove her cap.\ntt0335119,9M7i6Uaf_f4,Catharina demands to see Johannes' painting of Griet wearing her pearl earring.\ntt0335119,HzCGd_bsWns,Johannes shows Griet his painting through the lens of the camera obscura.\ntt0335119,rkuhTjnuQZ0,Van Ruijven forces himself onto Griet.\ntt0335119,YE0WStB-1cc,Johannes shows Griet the various dyes and paints he uses.\ntt0335119,rtVhMrgtcq0,Johannes asks Griet which colors she sees in the clouds.\ntt0104348,ROYuupoGarQ,Shelley Levene visits the house of Larry Spannel to try and sell him some real estate.\ntt0335119,OLhu6bw5EYc,Johannes instructs Griet as she models for him.\ntt0335119,RCptP8ItWmw,Van Ruijven suggests that Griet appear with him in Johannes' next piece.\ntt0104348,r6Lf8GtMe4M,Blake gives everyone at the real-estate office an in-your-face sales talk.\ntt0104348,rW7WlT6OJxE,Ricky Roma unleashes a barrage of verbal insults at John Williamson after he accidentally ruins a sale.\ntt0104348,kdj7BqZQfaQ,\"Ricky Roma discusses his philosophies on life with James Lingk, in order to win him over on a sale.\"\ntt0104348,P5Mn2YHVg0s,Ricky Roma lashes out at John Williamson when he receives three 'deadbeat' leads including the name Patel.\ntt0064381,MievQTukqMM,Neil and Brenda get into their first serious argument when Neil finds out she hasn't been using any form of contraception.\ntt0104348,AO_t7GtXO6w,Blake continues his epic sales speech by bringing out brass balls to re-emphasize his words.\ntt0335119,ZYq7Q_UW0Vo,Griet admires Johannes' work as she cleans his studio.\ntt0064381,B2I2s9rEOCA,\"When Neil visits Brenda at college, they get into an argument about why she left her diaphragm at home for her mother to find.\"\ntt0104348,sgzxcBufwS8,\"The morning after the break-in, tensions arise between Ricky Roma and John Williamson. Meanwhile, George Aaronow worries about talking to the police.\"\ntt0093137,bzRUc3Zrvfw,Worcester explains to the troops why he came back to Vietnam after being medevaced.\ntt0104348,u9R34QNUy1g,John Williamson refuses to give Shelley Levene better leads.\ntt0064381,HapeoGg80EA,Neil gets to know Brenda.\ntt0093137,iMJnr5bhQUI,The platoon makes their final push up Hamburger Hill.\ntt0104348,1LYn1my4jbc,Dave Moss and George Aaronow discuss the troubles of their job.\ntt0064381,R06Ujp-UBx0,\"Neil Klugman has dinner with his new girlfriend, Brenda Patimkin and meets her family.\"\ntt0064381,RtabrwMvAuY,\"Neil calls up Brenda to ask her out, having fallen for her earlier that day at the country club.\"\ntt0093137,enY9iKZ8mDQ,\"While the troops discuss their sexual conquests, Bienstock gets a break-up letter from his girlfriend.\"\ntt0064381,KE6dEjZ8qmg,\"Brenda hassles Neil about his station in life, but soon softens and asks him if he loves her.\"\ntt0093137,buGiJK-dXss,\"Just as the troops begin to overtake the hill, air support arrives to shoot at their own men.\"\ntt0064381,HIf2wdbacpU,\"As the Patimkin family all get ready for bed, Neil Klugman has a pretty awkward moment with his girlfriend's brother.\"\ntt0093137,oEODtP56lBc,Beletsky listens to a tape his wife sent him.\ntt1235837,cQhgVl3V1Rw,Munk and Mambo begin to tell the story of Snow White and Fairytale Land.\ntt0064381,c_69KA0PKYI,Brenda Patimkin teases a wedding guest at the thought of her and Neil Klugman being the next to get married.\ntt0093137,fyIATgssVJw,Sgt. Frantz prepares the troops for the duties and challenges that await them.\ntt0064381,iB8YcYRzDdE,\"As the night comes to a close, Neil Klugman and Brenda Patimkin can't keep themselves off each other long enough to say goodbye.\"\ntt1235837,IEfj3lH-scU,The king's royal assistant starts the search for the perfect wife with the help of the Fairy Godmother.\ntt0064381,BLHc07GYSVE,Neil Klugman and Brenda Patimkin talk on the phone after their date until Neil's aunt and uncle catch him in the closet.\ntt0093137,-jiHKFt981Y,A fight ensues after Alphabet says a crude remark to Beletsky.\ntt0093137,RMRT3_djqqw,A news reporter on site interviews Sgt. Frantz after a battle.\ntt0093137,jyzhfamiaQc,Doc Johnson teaches the troops how to properly brush their teeth.\ntt1235837,sOpJs8Licp8,Lady Vain tries to get rid of Snow White once and for all.\ntt1235837,50ZwjmYsIcY,\"While babysitting for the Old Woman Who Lives In a Shoe, Snow White has a little trouble keeping the kids in line.\"\ntt1235837,xPulA49aBZU,Snow White is tricked into eating a poison apple.\ntt1235837,_z5tcqcVgvA,Snow White arrives just in time to stop her father's wedding to the evil Lady Vain.\ntt0093137,885EiuL9GKg,\"Doc Johnson grieves over a fallen soldier, but Motown intervenes and calms him down.\"\ntt1235837,p-zGZTYN9nQ,Snow White tries her best not to wake the castle when she sneaks into her home after a long night out.\ntt1235837,jG2FwGoAPNY,Snow White notices Sir Peter at a jousting match.\ntt1235837,dNK-wsUHMvw,\"The queen-to-be, Lady Vain, is introduced to her soon-to-be royal subjects, but not without a disruption.\"\ntt0361693,m9vRMtJDEVU,Nicky screens the final cut of his documentary about Javier.\ntt0361693,WlHZBcuKDb8,Jude performs a song at a karaoke bar.\ntt0361693,aM4Gyz0kd3Q,Frank breaks up with Jude after he finds out she is using him for his money.\ntt0361693,XGmHx9PAaeE,Jude moves in with Otis in order to seduce his father.\ntt0361693,76S0ukfD8YU,Pam tells Gil and Charley why they didn't use Gil's sperm sample for their pregnancy.\ntt0361693,T_igwYlgnZ8,Jude goes to a clinic for abortion advice from Mamie.\ntt0361693,uFzV6DktOzg,Nicky and Mamie test out the new video equipment for their documentary.\ntt0361693,HKrJ0cZ4nDE,Javier and Nicky have the their first interview session for the documentary.\ntt0361693,vEnbBgByg98,Charley tries to convince Gil that Max is his biological son.\ntt0361693,OILU3oEYu8I,Mamie and Javier convince Nicky to make a film about an immigrant massage therapist.\ntt0361693,wFSW1l-Am_I,Mamie and Javier role play at the spa where he works.\ntt0361693,n137CIxjKTA,\"Jude practices with the band for the first time, and finds out Otis is a closeted homosexual.\"\ntt0815236,yWZtEE8C1x4,Things get heated when Dylan challenges Kirk to a slap shot contest.\ntt0815236,qNCFZLQOj_M,Kirk's girlfriend leaves him for an entrepeneur.\ntt0815236,b0SfZ4LMV98,Molly informs Kirk's friends that she can't join them in the pool because she isn't wearing any underwear.\ntt0815236,2nFh-kxiEng,Kirk has an imaginary conversation with his ex-girlfriend.\ntt0815236,YwrX990kW9k,Kirk and Molly finally let go of their issues and make up.\ntt0815236,LiNFLOs3BfE,\"Before take-off, Kirk tells off his entire family, only to find out he can't get off the plane afterward.\"\ntt0815236,DPksJcC1e_c,Molly gets the pleasure of meeting Kirk's entire family all at once.\ntt0815236,9FIHPZrHVGs,The issue of self-esteem finally comes to a head between Molly and Kirk.\ntt0180734,2Ji7Coh4O7E,The team gets excited to see Sammy Sosa when Conor treats them to their first major league baseball game.\ntt0180734,HL_VmoAOZtY,Conor gives his team an appreciative pep talk before they play their first game without G-Baby.\ntt0815236,Wxo_5gNakBA,Kirk awkwardly explains why he was rude to Molly's parents.\ntt0180734,e0qpJCNLViQ,G-Baby gives Conor a rundown of an argument prior to the start of practice.\ntt0180734,5CrufNJ4A_Q,Conor recounts G-Baby's game winning hit at his memorial service.\ntt0180734,dwMoiBGmH_4,Conor and the Kekambas help Miles pitch through a tough out.\ntt0180734,uOmPHEVoSa4,Elizabeth meets Conor at a sports bar to convince him to take coaching more seriously.\ntt0180734,MM01XhEgcF0,Conor surprises his team with new uniforms in the dugout just before a big game.\ntt0180734,NOphOh3EqKI,Conor and Ticky watch nervously from the street as the basketball game they've bet thousands on plays out.\ntt0180734,xrgGccehkKY,Kofi and G-Baby get caught in the crossfire of a violent shooting on their way home from a baseball game.\ntt0116493,o_49_kbx9yA,\"Harriet is depressed because she misses Golly, her nanny.\"\ntt0116493,Lf6fX3bsCxA,\"Sport can't afford his groceries, so Harriet lies that he dropped his money.\"\ntt0116493,E49Wkrqw_DQ,\"Harriet hides in the dumbwaiter, spying on Agatha K. Plummer, until she gets caught.\"\ntt0116493,Hre4nTAQcIA,The kids in class gang up on Harriet to get back at her for writing nasty things about them in her notebook.\ntt0116493,3rtbO9uOirI,Sport's Dad finally gets some money from selling his book.\ntt0116493,xSTf5WyBUQ0,Harriet loses her notebook full of private thoughts and the other children read them aloud.\ntt0116493,XGgVzfEptX0,Harriet and Ole Golly say goodbye because Golly must move away.\ntt0116493,o2VM3B_izXw,\"Harriet visits her friend Janie Gibbs, who does chemical science experiments in her room.\"\ntt0116493,ccX1d19hmc8,The kids visit a garden full of eclectic art and make wishes while drinking club soda.\ntt0102011,-dzyuUNTwUo,Lorie is amused by Dan's playboy antics.\ntt0102011,LCxS9lUlCmE,Lorie's family does not take too kindly to Dan or his political views.\ntt0102011,qKj2c67Ht98,Lorie gets delusional when she senses feelings between Dan and his ex-lover.\ntt0102011,esXVSyflpDU,\"Almost immediately after their break-up, Lorie runs into Dan and Linda on a date.\"\ntt0102011,JrPj-b18Lt4,Dan tells Lorie that he's ready to be in a monogamous relationship with her.\ntt0102011,lYGDkN8xPt8,Lorie cons Dan into dancing with her.\ntt0102011,fOv_N9k5im4,Lorie lets her guard down and tells Dan how she feels.\ntt0102011,lAhQbCN-Zvg,Lorie breaks up with Dan for good after realizing he is never going to change.\ntt0102011,ukmrk8JdGxk,Dan's fear of commitment surfaces while he is deciding what to order for dinner.\ntt0102011,MC2MLmGhc1M,Lorie projects her anger at Dan during an on-air segment.\ntt0251736,0sdIO3lVTWE,Denise Willis walks into Dr. Satan's operating room.\ntt0251736,HiuPgdW3E9g,Baby Firefly puts on a show for her guests.\ntt0770810,CLZUz1TwsDs,The JSJ crew perform their last routine for the finals.\ntt0450278,ks32K99a1RU,College students Paxton and Josh soak in the rich culture of Amsterdam...by getting high with other American tourists.\ntt0251736,BkGbYdSwFCU,Baby Firefly chases Mary Knowles through a cemetery.\ntt0251736,4cbfnH5APuE,\"Bill Hudley and Jerry, along with their girlfriends, attempt to escape from their demented hosts.\"\ntt0251736,Yg95nS9poCw,\"Bill Hudley and Jerry go on the \"\"Murder Ride.\"\"\"\ntt0251736,BWm1l21hBb8,Denise Willis wakes up as Tiny Firefly serves her some breakfast.\ntt0251736,yd13zj2PC1g,\"The group sits down for dinner and meets Tiny\"\" Firefly.\"\ntt0251736,V82hFRJcrj0,\"Killer Karl and Richard Little Dick\"\" Wick attempt to rob Captain Spaulding.\"\ntt0251736,2WZCKiDOQ9Q,Otis Driftwood shows Mary what he did to Bill Hudley.\ntt0251736,i3EF63p3v-I,Baby Firefly plays a guessing game with Jerry.\ntt0770810,QV6em4mxnE8,Kin Dreadz perform their last routine at the Detroit step contest finals.\ntt0770810,GAEBkpl1cIQ,As an audition Bishop has Raya stepping off against E.C..\ntt0770810,9Jwm_LHAwVo,\"After a failed attempt to apologize, Raya is challenged to a step off with Michelle.\"\ntt0770810,XIQbAhdlZt8,A variety of teams compete at the Detroit step show.\ntt0770810,-J_tiDK1tEA,\"Faye delivers the news to Raya that she passed her scholarship exam, but they argue about whether or not Raya should dance with her crew.\"\ntt0770810,9lTKjTuPGEc,\"While the JSJ crew practices for their next competition, Bishop teaches Raya the crew's step routine.\"\ntt0770810,aW_qXKNDWtU,Raya asks Bishop if she can join his step crew to pay for her college tuition.\ntt0110146,uAtcsqDjOr8,Vincent is furious when Olivia shows up to his work event uninvited.\ntt0110146,W3WRCxy2ZaE,Vincent is operated on after his violent car crash.\ntt0110146,O1fxGIiCt1E,Vincent meets Olivia for the first time.\ntt0110146,l_7z4h0soHg,Vincent crashes into a stalled van at a highway intersection.\ntt0770810,uc0l3djxQ5Y,Raya walks in on a local step competition just in time to catch the JSJ dance crew show off their moves.\ntt0110146,eqk4fOK2VU8,Vincent tells Sally that he's leaving her for another woman.\ntt0110146,Lgwj8KoDshs,\"It's the final straw for Olivia when Vincent chooses to spend time with his ex-wife instead of her, once again.\"\ntt0110146,Kek4f12wu3o,Sally puts work before her marriage with Vincent.\ntt0110146,ld9ehvuVu-8,\"Vincent realizes that he wants to be with Olivia, and leaves a heartfelt message for her.\"\ntt0110146,z67cBIaUOzw,\"Sally begins to flirt with Vincent, but instantly regrets it.\"\ntt0186253,kTZLHA6zbnM,Mira recounts all of the husbands and ex-boyfriends she had that passed away and how it makes her grateful to be alive.\ntt0186253,0xo0KxL_21U,\"FH gives fellow rehab patient Bill a shave, and asks him about his life.\"\ntt0186253,-FGNt71n2oA,FH gets emotional when he tells Georgie that he accidentally killed the bunnies they tried to save.\ntt0186253,GP5MbvcXb0E,\"FH collapses after eating too many mushrooms, and wakes up in the hospital, hallucinating and convulsing.\"\ntt0186253,Y99ODe7GzfM,Michelle and FH reenact the first truly intimate moment they shared together.\ntt0186253,xZYfE-65U3Y,\"After taking a hallucinogenic pill, FH believes he sees Michelle's face projected onto a cemetery wall.\"\ntt0186253,ZMHEIVKg_iQ,FH and the rest of the ER staff are startled when a patient comes in with a knife through his eye.\ntt0186253,n_Zor8p_ZsA,\"FH finds himself captivated by the free-spirited Michelle as she dances to the song \"\"Sweet Pea,\"\" and the two quickly take things to the next level.\"\ntt0186253,iqH7W6dLTZY,A waitress accuses FH of skipping out on the bill the last time she served him and punches him in the face when he tries to change the subject. He then meets up with a drunk Wayne.\ntt0186253,0BozXvlwFCk,\"After Michelle kicks FH out of their motel room, she insults him in the parking lot and steals some college kids' car.\"\ntt0186253,7keYfMMBIws,\"Dundun throws FH out of the car as they are driving McInnes to the hospital, and beats him up for reasons unknown.\"\ntt0425123,Kf5iT31fZN8,Elizabeth follows her instinct to go on the rooftop where she discovers a familiar face.\ntt0425123,gQ3YdU0WlPw,\"David desperately tries to save Elizabeth from death, but the hospital's security is hellbent on stopping him.\"\ntt0425123,27CB8wWJt94,David tries to get through to Abby to get her to change her mind about pulling the plug on Elizabeth's comatose body.\ntt0425123,jJHNJjwNUWM,Pieces of the puzzle fall into place when Jack reveals to David that he was supposed to meet Elizabeth the night of her accident.\ntt0425123,udHPeemZ8zE,David tries to convince Jack that Elizabeth's spirit really does exist so he'll help him steal her body before the hospital pulls the plug.\ntt0425123,IOmR8ZCYhzc,Elizabeth's feelings get hurt when she walks in on David's sexy neighbor throwing herself at him.\ntt0425123,TpXABjbV9cc,\"After the priest and ghostbusters fail to exorcise Elizabeth from the apartment, David invites Darryl, the metaphysical book shop clerk, over to help him communicate with Elizabeth.\"\ntt0425123,qcMHKqF91tM,David tries to get Elizabeth to realize that something's off.\ntt0425123,MoInDyDrLKk,\"When Elizabeth refuses to leave David alone, he takes desperate measures to exorcise her spirit from the apartment.\"\ntt0215129,Wxy1loV9jqc,Beth and Jacob arrive at Josh's dorm to find that feeding time has finally arrived for Barry and the snake.\ntt1250777,TsCTF8rAkqk,\"As audiences wait for the execution of Big Daddy and Kick-Ass, Hit-Girl intervenes and rescues the two.\"\ntt1250777,Va6oQ_2-jh8,Kick-Ass and Hit-Girl take on Red Mist and Frank D'Amico in the final showdown.\ntt1250777,jTGak1m5o6U,\"Mindy Macready gets a kick-ass present from her dad, Damon Macready.\"\ntt1250777,V7yhBe0E85E,Hit-Girl dresses up as a school girl to gain entry to Fran D'Amico's fortress.\ntt1250777,h-Y7v9WyBug,Big Daddy infiltrates Frank D'Amico's warehouse and burns it down.\ntt1250777,zZaA_9hN1Lo,Sergeant Marcus Williams breaks into Damon Macready safe house and discovers a comic book explaining the origins of Big Daddy and Hit-Girl.\ntt1250777,Paei6bi8XBo,\"Kick-Ass threatens Rasul to stay away from Katie, but he's outnumbered and ends up in a sticky situation. It's up to Hit-Girl to save him from sure death.\"\ntt1250777,7PcolFECV_k,\"While patrolling the city, Kick-Ass rescues a victim from three gang members.\"\ntt1250777,jj5CG9kzDYY,Big Joe tries to get answers from Danil concerning the whereabouts of the missing coke by stuffing him into a life-size microwave.\ntt1250777,8zUemCOntvo,Dave Lizewski engages in his first crime fight as the superhero Kick-Ass and takes a beating.\ntt1250777,-uQOkA8zuMk,\"Damon Macready teaches his daughter, Mindy Macready, not to be afraid of guns by shooting her in the chest.\"\ntt0113537,DTXU2pMEZeA,\"At the bar, Max laments his tendency to wax nostalgic for events even as they happen.\"\ntt0113537,oRMqBipT26M,\"Grover reflects on the potential benefits of a long, happy life together with Jane.\"\ntt0113537,-qs8tLNcMVY,Chet dispenses some bartender's wisom to Grover.\ntt0113537,tXmgYy1D5MA,Otis gets a job at Video Planet alongside Zach and his delusions of grandeur.\ntt0113537,XoW9HJEDk5E,Grover has an awkward visit from his newly separated father.\ntt0113537,cLmDqUnUEE0,Max walks Kate home and is crushed by the news that tomorrow is her birthday.\ntt0113537,mhPPLQqVP0c,Miami tries to break up with Skippy but has a hard time keeping a straight face.\ntt0113537,DTkzFvyvzkk,Chet is disappointed when Otis neglects to read the selection for their two man book club.\ntt0113537,C-qXt_tIUJY,\"Max returns to the college dining center, where Kate informs him of the new potato policy.\"\ntt0113537,6QYrOTw1Y4w,Max convinces Otis and Skippy to head to the bar when the house becomes too depressing.\ntt0113537,h4OULP90F0c,Otis refuses to send his beer back after he finds some food in it.\ntt0113537,uCXHj1i42KA,\"At their graduation party, Jane breaks the news to Grover that she's leaving to study in Prague.\"\ntt0074751,wk34RXMFgM0,King Kong shares an intimate moment with Dwan as he gives her a shower.\ntt0074751,P749Vnd3WSw,King Kong breaks out of his cage during Fred Wilson's show.\ntt0074751,v6Xbfyz0aXM,Dwan attempts to protect King Kong from a violent helicopter attack.\ntt0074751,5znSACsZMa0,Fred Wilson and his crew lure King Kong into a trap.\ntt0074751,7H_MQ4OSwPM,Jack Prescott and Dwan share a romantic moment together.\ntt0074751,eopKHS8iM5Y,King Kong attacks Jack Prescott and the rest of the crew in an effort to keep them from getting to Dwan.\ntt0074751,cNkof76o8P8,\"King Kong fights a giant snake, and Dwan sees her opportunity to escape.\"\ntt0074751,V2wuTBrkBpU,Dwan attempts to convince King Kong to let her go.\ntt0074751,zzt_urtTkG4,The islanders offer Dwan to King Kong as a human sacrifice.\ntt0325703,cbzkmMaYSNg,Reiss reveals his plan of world terror to Lara before he orders her death.\ntt0325703,1IZtDOuubT4,Lara takes a stand after Terry decides to take Pandora's Box away from its place at the Cradle of Life.\ntt0325703,mTx6_XT9Hns,Reiss and his henchmen are ambushed by deadly creatures as Lara leads them to the secret location of Pandora's Box.\ntt0325703,0awcEOEug5c,Terry tries to rekindle his relationship with Lara while they bunk below deck.\ntt0325703,MVSH6eiGvSM,Lara and Terry evade a group of henchmen by wingsuit flying off a building.\ntt0325703,RrrQxZ4j7t8,A showdown ensues after Chen refuses Lara's offer for the valuable orb he's stolen.\ntt0325703,yOMv5lJpHwY,Lara and Terry escape from a group of Chinese gangsters by sliding down a pair of ropes.\ntt0325703,ypKY-4583qM,Lara and Terry cross China's terrain by motorcycle.\ntt0110305,-sq1AYZOWz0,Lassie rescues Matthew Turner one last time.\ntt0325703,9z6_GAPIkTU,Lara confronts a blood-thirsty shark during her escape from a collapsing undersea temple.\ntt0110305,q_d_fgqJna8,\"The Garland brothers scare the Turners' flock of sheep, but Lassie ruins their fun.\"\ntt0110305,Ld2g77JckSk,Matthew Turner fights the Garland brothers over the flock of sheep.\ntt0110305,a6uHu-9c23c,Matthew Turner and Josh Garland fight over Amy Porter.\ntt0110305,UOdl87tD-58,The Turner family rebuild their sheep farm.\ntt0110305,pUNArJgkB2U,Lassie forces Matthew Turner to be more adventurous.\ntt0110305,J0MXhoaoPy8,April Porter offers Matthew suggestions on how to build a sheep farm.\ntt0110305,Zqp8_F9EXbw,\"The Turner family adopts a homeless collie, Lassie, into their family.\"\ntt0110305,vBVkz1xSKFc,Lassie saves Matthew Turner from a vicious wolf.\ntt0110329,ipc4KfTrRZs,\"Cody gets the upper hand on The Leprechaun, despite his shape-shifting ways.\"\ntt0420251,b9oREoCw3ew,Aunt Mei describes the benefits of the secret ingredient in her dumplings.\ntt0110329,qcFM5Xhg8W8,The Leprechaun makes Morty wish he hadn't asked for his pot o' gold.\ntt0110329,AgZGoFX8xWY,A rude waiter gets pinned down by The Leprechaun.\ntt0110329,Og_AVlwo94I,The Leprechaun races down the home stretch toward getting his gold shilling back from Cody.\ntt0079640,_y5i94TfOxw,Balford explains to Phillip Elliot how he's going to woo a lady.\ntt0119783,riJRHpcshE0,\"Sean Casey tells his father, Liam, that he's going to prosecute the man who shot him.\"\ntt0079640,qlwQsJOKoIo,Phillip Elliot and Seth Maxwell take some early morning pills and wash them down with cold beer.\ntt0119783,1bZ_L0GOaYw,Morgenstern makes an announcement to the detectives and staff of the District Attorney's Office.\ntt0110329,kgSDN6_VyR0,The Leprechaun is challenged to a drinking contest by Morty.\ntt0110329,D4rlczOezQ8,The Leprechaun makes a timely entrance while Cody and Morty discuss the existence of mythical creatures.\ntt0119783,QOCLLi8inz4,Elihu Harrison gives Sean Casey a few spoonfuls of truth in his time of discouragement.\ntt0110329,fjsZJkL1lB4,The Leprechaun finds himself a piece o' gold in an unfortunate place.\ntt0110329,c17KWinVFss,The Leprechaun brings Bridget to his humble abode to consummate their marriage.\ntt0110329,izxDdUcC3Ag,Cody and Bridget get attacked by The Leprechaun.\ntt0110329,s0bxFcZV40A,The Leprechaun kills William O'Day after he foils the little guy's attempt at wedding his daughter.\ntt0113691,vEv9tQL3b-A,Khaila and Margaret agree to help raise Isaiah together.\ntt0110329,LwNWzSruov8,The Leprechaun does lunch with a talent agent.\ntt0113691,DEDWjeRGMks,Margaret says goodbye to Isaiah.\ntt0113691,dxsVIClobT4,Khaila leaves Baby Isaiah in the trash in a moment of desperation.\ntt0258273,6GfFdTJiRmo,Michelle finds her sister Annie at McDonald's and the two have a rare moment of connection.\ntt0113691,nLcCOlgev3k,Margaret and Charles visit a lawyer after discovering Isaiah's mother wants him back.\ntt0113691,V6I4cJ1kJVc,\"Isaiah grows up with his new family, the Lewins.\"\ntt0113691,WSbK1kJvTkg,Khaila and Margaret argue over who has the right to be Isaiah's mother.\ntt0258273,r9z4qCu9sTw,Elizabeth visits her mom in the hospital after her surgery.\ntt0113691,lOaaPz6E6ms,Attorney Kadar Lewis questions Margaret as to why she should be allowed to raise Isaiah.\ntt0113691,TtLvNyDGUg8,Khaila breaks down as she confesses to throwing her baby away.\ntt0113691,MNWmA8mmbH4,Margaret helps Baby Isaiah after he is almost crushed by a trash compactor.\ntt0258273,yfrnQMbd64w,\"Michelle and Elizabeth have intimate connections momentarily with their dates, Jordan and Kevin.\"\ntt0258273,fJ0myLkUGjk,\"Michelle gets caught with her underage friend\"\" Jordan.\"\ntt0258273,R0k1CGlHAtY,\"As her hair is straightened, Annie Marks tells a joke about a black mother and a Jewish father to Lorraine.\"\ntt0258273,bIcPNZlEW8w,\"Elizabeth must exude sexiness\"\" in her audition with Kevin.\"\ntt0258273,gLEioQymzKc,Elizabeth and Michelle visit their mother Jane in the hospital to find her not doing well.\ntt0258273,NjN_jPTXHys,\"When Bill accidentally steps on a piece of Michelle's art, she accuses of him of doing it on purpose.\"\ntt0258273,hFON-hiGW8g,\"Michelle fails to sell her art again, so she applies for a job at a one-hour photo shop run by Jordan.\"\ntt0258273,9j0tqkW7Bd8,\"Michelle fails trying to sell some of her art, and runs into a successful old friend.\"\ntt0258273,l0-EYjaAurE,\"Annie asks Michelle what she means by \"\"reality.\"\"\"\ntt0438205,1RTpXJVozSY,The principal talks about Michelle's dramatic behavioral improvements.\ntt0438205,_K6U3FyJBv4,A pair of students competes in the Swing dance category at the Grand Finals competition.\ntt0438205,pUtdFHAAGhE,The kids express the pros and cons of each sex and talk about their views on dating.\ntt0438205,9oDHw4wwTQI,\"At Semi-Finals, Wilson dances better than anyone expected him to.\"\ntt0438205,_deZCO2ojAo,One teacher talks about how badly she wants her students to succeed.\ntt0438205,zhXaZ2a1NcU,The students talk about what it's like to dance with the opposite sex.\ntt0438205,xehwopjgKGU,The teacher pairs students up and has them dance for the whole class.\ntt0438205,LtCy6T9d6-s,The green team deals with losing the Quarter Finals competition.\ntt0438205,C-DCupYm66Q,The students dance the Merengue and the Tango at the Quarter Finals competition.\ntt0266747,ajvCMC8Na3M,Mary Ellen Spinkle listens to a new track from Dr. S and finds herself dancing free of inhibitions.\ntt0266747,WB9uluVLP9g,Dr. S discusses semantics and the rich cultural dialect of the African American people.\ntt0266747,_fPBDSFxGq4,Dr. S sings a special song for Marci Feld and offends right-wing conservative America.\ntt0266747,YzPOjXIwbu8,Dr. S takes over Marci Feld's auction and charms the ladies in the audience.\ntt0266747,IqefatGKx68,Yolanda and Marci Feld get into a fight and the police arrest Marci.\ntt0266747,bN3U1IwMvhI,Dr. S shows Marci Feld what he really thinks about their public service announcement for the Save Our Families Foundation.\ntt0266747,OFmxUUOxZl8,Marci Feld and her friends celebrate understanding when they explore multicultural harmony through self expression in the club.\ntt0757361,r-Pl3TQJqhE,\"When Dick Koosman gets personal during a bookstore interview, Margot panics and walks out.\"\ntt0473692,zriRtxv9jf0,\"Neil Young recalls growing up on a farm in Canada and being given a gift of a ukulele from his old man before busting into the song, \"\"Far From Home.\"\"\"\ntt0266747,uxvN1tNASYo,Marci Feld wins the audience over with her rap about her purse.\ntt0757361,lyCbXVV-PAY,\"After Margot and Pauline race in the pool, Claude gets dizzy and falls in.\"\ntt0757361,0PcN_4_J6b8,Margot and Malcolm get upset when their partners don't play the game correctly.\ntt0757361,AbI_r4kXbcQ,Margot proves to her sister and son that she can still climb a tree.\ntt0757361,pe1z-Tdk36M,\"Malcolm expresses his bitter feelings toward Pauline's sister, Margot.\"\ntt0416320,jQ903giVNAg,Chris and Chloe set a date after playing a friendly match of tennis.\ntt0757361,bnIEGNhW3ZY,Malcolm cries over the phone and begs Pauline to take him back.\ntt0757361,SEaGeyLjBUU,Malcolm admits to Pauline that he cheated on her with Maisy.\ntt0416320,OCXvMchSYX4,Chris continues to deny his affair after Chloe questions him on his strange behavior.\ntt0416320,vVjfW-P5yZY,Nola and Chris embrace in the rain despite being in serious relationships with other people.\ntt0757361,HaTAZMTwVoM,\"Since Margot exposed Pauline's secret that she's pregnant, Pauline is forced to talk to both her daughter and Malcolm about it.\"\ntt0757361,Fj7KNHxzYjc,Pauline finally breaks down and tells Margot how much of an a**hole she is.\ntt0209144,eqYhouRLYis,\"Leonard makes the decision to target Teddy Gammell as his wife's killer, rather than to accept reality.\"\ntt0757361,8N6q0Yprfwk,\"After an accident in the car, Pauline has an accident of her own.\"\ntt0209144,W3-UIdApbyw,Teddy Gammell tries to make Leonard understand that he has already killed his wife's murderer.\ntt0416320,qTIc6y5mojw,Chris attempts to restart his affair with Nola after spotting her at an art gallery.\ntt0416320,Hj9WsioJbJw,Chris flirts with Nola beside a ping pong table shortly before he discovers she's engaged to Tom.\ntt0291341,SJHWGDkIxNM,Danny Meehan redeems himself after an awful second half to set up the game winning goal kicked in by Billy the Limpet.\ntt0291341,IvWyoUACISc,\"Danny Meehan tells the inmates why he threw the game against Germany, while Doc goes to Meehan's cell to retrieve scouting tapes.\"\ntt0416320,EFgCZDRkacU,Chris is made aware of some incriminating evidence when he is brought in for questioning on the murder of Nola.\ntt0416320,u_Bfpbz3owc,Chris and Chloe share differing views on luck during a double date with Tom and Nola.\ntt0416320,KduMYNqIGBA,Chris and Nola discuss their current relationships over drinks.\ntt0291341,KDyJYLDyBzc,\"After a talk with the Governor, Danny Meehan plays to lose the game, but the Monk plays to save the game.\"\ntt0291341,mbPEuV3NJIg,\"Danny Meehan takes a foul shot, but he doesn't aim for the goal, instead he aims for Ratchett's 'jewels.'\"\ntt0209144,QJ3Z0TSIpE0,\"Natalie asks Leonard to kill the man who is after her, and is furious when he refuses.\"\ntt0291341,G9wDgZk1s6E,\"Danny Meehan scores the first goal of the game, and Monk continues with his unorthodox play.\"\ntt0209144,R5409gLbXuw,\"Leonard meets with Natalie to get information about the man who murdered his wife, and recalls his life before she was killed.\"\ntt0291341,zBjq9UbpCtQ,Doc tells Danny Meehan the story of how he ended up in prison.\ntt0291341,c__26Uyp5eU,Some of the inmates try out for the soccer team.\ntt0209144,hgGf5X8-j1s,\"Natalie offers to help Leonard, and hopes that he will remember her the next time they meet.\"\ntt0291341,Zzuc4RiUjJs,\"In order for Danny Meehan to convince Sykes' men to play football for the team, Meehan has to win a bare-knuckle fight.\"\ntt0291341,Rh-nBzPUoOk,\"Danny Meehan is sent to solitary confinement after he assualts guard Ratchett, who beats up a helpless Massive.\"\ntt0209144,UyVSJcL-7BA,Leonard tries to comprehend the feeling of loss he experiences for his late wife.\ntt0209144,i_Y5UB3xxW8,\"Leonard discovers that Teddy Gammell is the man he's looking for, and shoots him.\"\ntt0117091,OXvNnV-cwFQ,John jokes about his relationship with their Mother as Jeff storms out of the house.\ntt0117091,Z7C6L3yRYGM,\"John and his Mother are shopping when they run into her friend, Helen, and her sister, Alice.\"\ntt0117091,H46x8fD7WzE,\"On his way back to Los Angeles, John meets a woman at a gas station.\"\ntt0117091,3MK7O6w2Mz8,John asks his Mother about her writing and comes to a psychological conclusion.\ntt0117091,Lg69Gwv4tOM,John becomes frustrated when his Mother tells the Pet Store Salesman that he's divorced.\ntt0117091,Z8vCm7TUK8c,Beatrice tries to convince the TV Installers that the TV picture looks a little green.\ntt0117091,RcqR5cnQyUo,John drives to Northern California for an extended stay with his mother.\ntt0117091,8iqKSKK9_uQ,\"John tells his brother, Jeff, that he plans to move back in with their mother.\"\ntt0117091,1cCEE8-jhus,John sits down to a meal prepared by his Mother.\ntt0117091,3SGIHbvcTRc,Beatrice forces John to eat some bad sherbet.\ntt0119715,Z-GoRxX2exA,The auction gets awkward and silly when the Mouse runs around the room.\ntt0119715,TVAhhVrpkwM,Ernie sets hundreds of mousetraps but the mouse defeats them all.\ntt0119715,I0YUjv1u-Gw,The Mouse alters the factory to make string cheese.\ntt0119715,19WT40D513Q,\"During the auction, the house floods and collapses.\"\ntt0119715,8I5_zsRI4Zo,\"Ernie shoots at the Mouse, but he hits the bug bomb instead.\"\ntt0119715,ji4pvRXDMOY,The Mouse gets knocked out and Ernie puts him in a box to be sent to Cuba.\ntt0119717,WrnyKH7u6DQ,\"Lester is intrigued by Dashiell's relationship with Ramona, and later he lies to her about what he does in therapy.\"\ntt0119717,LwioGjicbRw,Vince nervously recites his wedding vows in front of his friends and family.\ntt0119715,irQ89Ny0HkI,The house has a gas leak which causes a terrible explosion.\ntt0119715,cku1N8eCUlo,The Mouse sleeps inside the walls until he is woken up by nails being hammered into the wall.\ntt0119717,DDv-GQjcZDA,\"Lester admits to Ramona that he's been in therapy to spy on her ex-boyfriend, Dashiell.\"\ntt0119715,ziPAPWBYU5A,The mouse triumphs over the exterminator Caesar.\ntt0119717,e-KbcJI8Rl4,\"In therapy, Dashiell tells of a recent romantic encounter with Ramona.\"\ntt0119717,cidI_7BQUJE,Lester and Ramona reconnect at a wedding.\ntt0119717,Pu5OjNuJl30,\"Lester spots Ramona's ex-boyfriend, Dashiell, on the street and decides to follow him.\"\ntt0119717,fnl5_3zT1d4,Ramona confesses her infidelity to Lester.\ntt0119717,hXg2LXOwsoA,Lester begrudgingly goes out for a drink with Dashiell and is surprised by their rapport.\ntt0093605,cktXSK7io8U,\"As police surround the motel, Caleb devises and implements an escape plan.\"\ntt0093605,fTEPaF5TjWU,Severen gets Caleb in a bar fight with his obnoxious behavior.\ntt0119715,xfwm9CY5dao,The Mayor chokes on a cockroach and dies.\ntt0093605,ufcsS9E-JVs,Caleb takes a shotgun blast to the stomach as Severen and the gang finish off the rest of the bar.\ntt0093605,2QLbTjd693M,Severen plays chicken with a truck driven by Caleb.\ntt0119717,SKEvjOq6L6o,Lester confronts Dashiell in group therapy.\ntt0119717,ic5tRp5nKOE,Lester runs to Ramona's apartment to question her when she doesn't answer the phone.\ntt0093605,qHm2lHzV7tM,Severen kills a biker but laments his victim's poor grooming habits.\ntt0093605,ClrfnLtqXYo,\"Loy, Caleb and Sarah escape from the motel with the help of some bright sunlight.\"\ntt0093605,1iiGGpwLdQc,Homer gets out of the car to chase after Sarah even though the rising sun will seal his fate.\ntt0473692,BSEx_EMtQW8,\"All the musicians gather on stage with acoustic guitars to perform \"\"Comes a Time.\"\"\"\ntt0473692,c_BMbnWPWnU,\"Neil Young and company perform the final song of the evening -- \"\"One of These Days\"\" -- an ode to the friends and family remembered in the course of a lifetime.\"\ntt0473692,U_0oVOS3LC4,\"Neil Young performs the classic song \"\"Heart of Gold\"\" off his 1972 album Harvest.\"\ntt0473692,Y-N5lfNPLnY,\"Neil Young performs the aged, autumnal song \"\"Harvest Moon.\"\"\"\ntt0473692,ddm0aMIKiqY,\"Thinking about Hank Williams, and how Nashville has changed over the years, Neil Young performs a heartfelt version of \"\"It's a Dream.\"\"\"\ntt0473692,SZDFWDc58TE,\"Neil Young performs the 1972 hit \"\"Old Man\"\" from the album Harvest.\"\ntt0473692,4Xvu9fzPGhA,\"Neil Young returns Hank Williams' old guitar to the Ryman for the first time since 1951, and plays the appropriately titled song, \"\"This Old Guitar.\"\"\"\ntt0093605,10GtbJs6GEw,\"When Caleb gets abducted, Mae convinces the others to spare his life.\"\ntt0093605,ZfCZwP2Qe60,\"Unable to kill an innocent truck driver, Caleb sucks blood from his lover, Mae.\"\ntt0093605,odWPv33yKAk,\"Sarah meets Homer, but she's unaware they're nowhere near the same age.\"\ntt0093605,QsXsfrk06-I,\"Caleb brings Mae to the horse stable, but she can't seem to relax.\"\ntt0119783,eR_BcTP8HOM,\"Sam Vigoda presents Jordan Washington unscathed, to the press, to prove he is surrendering himself to District Attorney Morgenstern.\"\ntt0119783,PPMM8VRgEUk,Joey Allegretto finally confesses to Sean Casey that he was involved in the police corruption scandal.\ntt0079640,AWLkXfNg6ek,The North Dallas Bulls get pumped for the game in the locker room.\ntt0119783,f5f86alm7jk,\"Jordan Washington takes the witness stand and confesses his fears, motives, and the details of his involvement with corrupt police officers.\"\ntt0119783,6f5ggdRQuB8,Morgenstern pressures Sean Casey into taking on the big case.\ntt0079640,D3XYhRv-rBU,Seth Maxwell and Phillip Elliot hook up for the final plays of the game.\ntt0079640,DCT__l4_m4g,\"B.A. Strothers, and Conrad Hunter have final words for the North Dallas Bulls before the game, followed by a prayer from the Father.\"\ntt0119783,HYvwDxWCSwM,Sean Casey prosecutes Jordan Washington to the point of attempted strangulation.\ntt0079640,TWqf3iE2Gk8,\"While nursing their injuries, Seth Maxwell tells Phillip Elliot a drunken story of the night before.\"\ntt0119783,Q3kOA_8ws6A,Joey Allegretto calls for an unusual amount of back-up before going in to take down Jordan Washington.\ntt0079640,wOp2t0IKnUo,\"Monroe goes full speed during a scrimmage against tough guy, Jo Bob. A fight ensues after the play.\"\ntt0079640,I6mpHW3SMcc,O.W. Shaddock argues with Coach Johnson over the lost to Chicago.\ntt0396171,xtz6dAjWz3g,\"Jean-Baptiste Grenouille's masterful perfume has a visceral reaction on the crowd, saving him from execution.\"\ntt0079640,I4hc-GcHCsE,The team members of the North Dallas Bulls celebrate a victory at a house party.\ntt0322659,EwdFmqEvG7M,Father Harlan meets with prospective parents Mr. and Mrs. Hope for Irwin.\ntt0079640,WEszqunyV0M,\"While the team trains, Phillip Elliot and Seth Maxwell train there liver and lungs by drinking beer and smoking cigarettes.\"\ntt0322659,MjFgD2yLBI4,Irwin haggles with Cup of Tea over the distance of a thousand miles.\ntt0322659,JWUrJ-zH7fw,Walter and his colleagues guess what menu items are left at Ursula's diner.\ntt0073190,te366vMoW0E,Linda tries analyzing January's relationships with the men in her life.\ntt0322659,kRWvfBinmWw,The state Evacuation Committee hold their final meeting.\ntt0322659,YCN_nis2E84,Cup of Tea accidentally shoots Happy with a tranquillizer gun.\ntt0073190,BF4-iXXZE-s,Mike attacks Tom after catching him in bed with his daughter.\ntt0322659,OYuE4tFH7lc,Walter and Willis ask the Stallings to evacuate their houseboat.\ntt0073190,fp86WZ7Jn5g,January gets upset when she learns that her father married Deidre for her money.\ntt0322659,VlGVLpW7Dsw,The Hadfields return Irwin to Father Harlan.\ntt0322659,-_HlyIgHUa0,Marvin and Matt discuss the difference between Chevrolet and Ford owners.\ntt0322659,wQhcRCuORak,The citizens of Northfork are promised power and recreation from the Northfork Dam.\ntt0073190,PiyaX2sq_wk,Tom tells January that he doesn't want any type of commitment.\ntt0120784,x8kclPvcsTI,Porter cautiously waits for his money to be dropped at a train station but is ambushed by syndicate hit-men.\ntt0322659,Lc1MmNI8jLc,Walter explains death's odor to Willis.\ntt0073190,Er3iFTlMpmc,January reconnects with an old friend from college who works as the editor of a fashion magazine.\ntt0396171,xaOERHG7Qr8,\"As Jean-Baptiste Grenouille finishes his perfume, the Bishop of Grasse excommunicates him in the town church.\"\ntt0073190,IpQkAn4FnkY,January gets into a motorcycle accident with the lead actor in one of her father's films.\ntt0073190,bLjFBMuBc68,January turns David down when he bluntly admits that he'd like to sleep with her.\ntt0073190,HHlf5HhqdOs,Mike and January argue about her relationship with Tom.\ntt0073190,MTRBtcsZwjw,Hugh worries that January may not know what she is getting herself into with Tom.\ntt0120784,ki8KblCCOuA,Porter confronts Mr. Fairfax at his home and demands to be paid back the money he's owed.\ntt0396171,SFHSKaQESeI,\"After pouring his perfume on himself, Jean-Baptiste Grenouille is eaten by the surrounding townspeople.\"\ntt0120784,0r4uUQBLokk,Porter demands money from Val while he's in bed with Pearl the dominatrix.\ntt0120784,qkTP21NTcgM,\"Porter negotiates the money he's lost with Carter, a boss working for a criminal organization known as The Outfit.\"\ntt0073190,vqlURGjq4AM,\"When the studio offers to buy Mike's screenplay on the condition that someone else produce it, he chooses to swallow his pride and take the money.\"\ntt0120784,Ku9rtTERy1A,Porter and Stegman are ambushed by Pearl and a car full of gun-wielding Chinese gangsters.\ntt0120784,WTs3TbtIwUA,Porter returns to Rosie's apartment to find that Val is holding her at gunpoint.\ntt0120784,WyjaZFv4lgI,Porter gets some information out of an unsuspecting drug dealer.\ntt0120784,ePUgjJofgq8,Porter and Val pull a job on a group of Chinese gangsters by ramming their car in a head-on collision.\ntt0105128,xUAn-hrMa0A,Gus gives Clyde a taste of his own medicine.\ntt0396171,ilZqZaSUC0Y,Richis tells Jean-Baptiste Grenouille how he will feel watching him die.\ntt0396171,hrcFkSMZBng,Jean-Baptiste Grenouille is distraught when Baldini tells him that he cannot distill the scent of living things.\ntt0396171,-o8b7tsVH64,Jean-Baptiste Grenouille uses the scent of a prostitute to create his first human perfume.\ntt0396171,8wTnBC7doPk,\"While lying in a cave alone, Jean-Baptiste Grenouille has the terrifying realization that he has no smell of his own.\"\ntt0396171,4F5sPA5E27o,Jean-Baptiste Grenouille follows a beautiful young woman in order to take in her scent.\ntt0105128,Q9szFqOlDJc,Renee wants Chase and Jeff to join the undead.\ntt0105128,OwCO4rmsct0,The undead Clyde and Renee show up at the Matthews' house wanting to kill Jeff.\ntt0067589,TKVyyEsA-so,Norma breaks her diamond ring while attempting to convince her daughter to come out of the hotel bathroom.\ntt0105128,RMd-tHAtdoY,Chase goes to Gus's house to confront him about digging up his wife.\ntt0105128,i--0u4m_zZg,Gus forces his wife and son into an oncoming semi-truck.\ntt0067589,urWMTYuDxME,Roy climbs out on a window ledge in an effort to coax his daughter out of the bathroom.\ntt0067589,MuBwxePS-s0,Borden finally convinces his fiancé Mimsey to come out of the bathroom and get married.\ntt0105128,pXIcjMT1SUg,Zowie fatally attacks Gus during an altercation with Drew.\ntt0067589,03NoI9KiZOk,Jesse compliments Muriel in an effort to seduce her.\ntt0078111,BvwCwDf6J3w,Violet and the girls holler out to the men on the boat and some of them join them in the lake.\ntt0078111,QXB9qatHDSU,Bellocq and Violet get married with their friends present.\ntt0067589,6BDzGP6HuGE,Sam doesn't understand Karen's reaction when she finds out that he has been having an affair.\ntt0105128,Z18eK57wD3k,The dog Zowie arrives home after being buried.\ntt0078111,3cqeNsSZYh4,\"Hattie comes back for Violet, but Bellocq is not pleased.\"\ntt0105128,dv0-EuBX490,\"A tragic mistake on the film set of \"\"Castle of Terror\"\" costs Renee her life.\"\ntt0105128,SZKLpJzv5JY,Gus behaves quite strangely at the dinner table after his cemetery resurrection.\ntt0078111,pKN_6Javjnc,Violet runs away from the brothel and asks to stay with Bellocq at his place.\ntt0067589,nTz_lWcgDhA,Roy attempts to get his daughter out of the bathroom on her wedding day by breaking down the door.\ntt0067589,PBF9pOAjXt0,Karen insinuates that her husband Sam is having an affair with his secretary when he has to go into work on the night of their anniversary.\ntt0078111,cNLFuTms4go,\"Hattie gets ready to leave the brothel to make a better life for her and Violet, but Violet refuses to go.\"\ntt0462499,U6uNt6h3_bM,\"When the mercenaries do nothing to stop soldiers from forcing civilians to run through a mined rice paddy, Rambo steps in.\"\ntt0078111,iJMYIXoFGcQ,Nell takes bids for Violet's first night as a prostitute.\ntt0078111,VKaGKi9OHQI,Hattie and the girls check up on Violet after the departure of her first customer.\ntt0067589,tTbqVFrvn0E,Jesse uses his fame to successfully get Muriel into his bedroom.\ntt0462499,0S5lIhsh2Rc,\"As the rebels join the fight, Rambo uses the.50 cal to take down boats, trucks, and a whole lotta soldiers.\"\ntt0078111,JSyZq8Eg5eg,The girls prep Violet for the auctioning of her virginity.\ntt0462499,0zVmdCICQok,\"Rambo leads the enemy on a wild goose chase that can only end one way, a giant explosion.\"\ntt0462499,1ZeDq4Yo6Jk,Rambo steals a truck-mounted machine gun just in time to save everyone from execution.\ntt0462499,h_N5IH-bWNE,\"When river pirates want to kidnap Sarah, Rambo takes matters into his own hands.\"\ntt0462499,IYju9ObPTTw,Michael tries to recruit Rambo to take the missionaries up river to minister in Burma.\ntt0180093,BKDnwX9P7vo,\"Alone in their suffering, Harry, Marion, Tyrone and Sara curl up in the fetal position.\"\ntt0462499,Ofifxt45nfg,Sarah tries to convince Rambo to take the missionaries up river to war-torn Burma.\ntt0462499,XF0e2BjTDh8,Rambo returns to his family farm in Arizona.\ntt0462499,0njU7LPADwY,Sarah convinces Rambo to keep taking them up river.\ntt0462499,f_BcfyJea_M,\"Rambo rescues Sarah, taking out a guard's throat along the way.\"\ntt0462499,iONYYY7lHo4,Rambo forges a new blade.\ntt0180093,TlcxW8KUzks,Harry calls Marion and promises to come home.\ntt0462499,1Mx_jHNEBtA,Rambo has a nightmare about his violent past.\ntt0180093,bkxVMf2ozrs,Marion goes on a date with Arnold to score some money.\ntt0180093,eqIkFkmb054,Marion pays a visit to Big Tim to score some dope.\ntt0180093,_d4WkQci7zw,Sara is visited by Tappy Tibbons and her TV self.\ntt0180093,ncOY7vtsY8I,\"Harry tells Marion how beautiful she is, and for the first time, she believes it.\"\ntt0180093,6H72hXsLZ8k,Sara tells the ladies she's going on a diet while Harry and Tyrone land a big score.\ntt0180093,oYcKftzUS_Y,Sara Goldfarb talks about fitting in the red dress and what it means to her.\ntt0215129,6XWpPwp8p_0,E.L. convinces Kyle to let the guys jump across a broken bridge in his Ford Taurus.\ntt0180093,mkYNhZvlHv0,Harry and Tyrone get high and formulate a business plan.\ntt0180093,2BtZY3z72jY,Tyrone gets arrested after the limousine he is erupts in gunfire.\ntt0215129,2mSiP5Bbdxw,Josh and the guys enjoy some hospitality from members of a national black fraternity.\ntt0180093,U-JAuw8FsrA,\"Harry, Tyrone and Marion make money selling drugs.\"\ntt0180093,7TBwFfjXd3s,Sara starts her new diet.\ntt0215129,HNfciDzZTNM,Kyle falls victim to the shameless behavior of a deceptively polite waiter.\ntt0337711,qokWn0jfbM4,Nigel Thornberry and the babies are saved.\ntt0215129,A6CTejBh5QU,Barry's grandpa gives Rubin some advice while the two share a joint on the front porch.\ntt0337711,QKKrwhcVEJA,Chuckie Finster meets Donnie Thornberry.\ntt0337711,bNbi_KLd_Uk,Donnie saves Nigel Thornberry and the babies from a hungry jungle cat.\ntt0215129,R1JHZFJyWds,Rubin asks a rude motel clerk if he knows where he can buy some weed.\ntt0215129,-rtUvlR1pZE,E.L. gets an unexpected surprise when he asks a nurse to assist him at a sperm bank.\ntt0337711,gpytphKy7a0,The raft lands on an uninhabited island and Angelica is reunited with Cynthia.\ntt0215129,pl2HDVRj_4o,Josh discovers that Rubin has accidentally mailed a sex tape he made to his long-distance girlfriend.\ntt0215129,Pz3SOdEw0LY,Kyle shows his dance moves on stage with fraternity members after getting drunk at their party.\ntt0890870,HtxIqa2mXaA,Rigg finds Morgan still alive after a traumatic experience with her abusive husband.\ntt0337711,zXBPTIjfZgA,Eliza Thornberry meets Spike.\ntt0337711,wz4HLeURVOQ,The family misses their cruise ship ocean liner and instead settles for a used ship ocean clunker.\ntt0337711,6UvEeQC0Odc,Tommy and the gang pretend to film a wildlife documentary in the jungle.\ntt0420251,5wUu-cKYMgI,\"After the Stranger puts three fingers in the blender, the Director's Wife has some advice for her husband.\"\ntt0420251,3AD_sQbn9EY,The Stranger shows off one of his talents.\ntt0337711,ajBK8B_kYO0,\"As Charlotte Pickles and Betty DeVille help everyone to safety, Angelica's doll goes overboard.\"\ntt0420251,sqjS__9_Irk,The cause of the death of young Shoko is revealed.\ntt0420251,ak4mtSDwxV4,Kyoko has a recurring dream where she is buried in a box in the snow.\ntt0388395,DLasTex8Vnk,Schultze chats with a lady in the hot tub in Texas.\ntt0890870,FYo6dKubr-Q,Rigg forces Ivan into Jigsaw's machine where he must choose between his eyes and his body.\ntt0420251,hp3inTPISwQ,The Director does not recognize his kidnapper.\ntt0890870,lMy-kxTpXKA,\"Rigg fails his test by breaking into another room, with deadly consequences.\"\ntt0388395,sLlQvz0y7QM,Manfred loses his cool during a chess match.\ntt0420251,CwowG9t4bPU,\"Mrs. Li, in a desperate attempt to retain her youthful looks, consumes her own offspring.\"\ntt0420251,URHjEpowEcw,Kyoko gets a glimpse of her lost sister and tries to explain what happened fifteen years ago.\ntt0420251,BLVhog_zX68,Mrs. Li visits Aunt Mei to try her special dumplings for the first time.\ntt0420251,lhhxZt-oU38,Kyoko is forced to watch the opening of the box in which her sister Shoko died.\ntt0388395,RZ-__QD99DA,The guys meet the new barmaid named Lisa.\ntt0890870,lA2ubmfr6Dw,Eric Matthews pretends to die so that Art will come over to him.\ntt0890870,i3jmM-Fc5Nk,Eric Matthews is kept prisoner over a six month period.\ntt0420251,qOeMwWgruZw,Just another day at the office for Aunt Mei as she acquires the secret ingredient for her dumplings.\ntt0420251,QDeWmH3M9-M,The Stranger explains the rules of his sadistic game.\ntt0890870,qZPjRshIz4s,Hoffman is called to the morgue when a tape from Jigsaw is found inside his own stomach.\ntt0388395,PykWxPq9JEE,Schultze plays the Zydeco blues tune he heard on the radio for his local music club's 50th anniversary.\ntt0388395,LCEr8N9zXy8,Schultze visits the doctor because he fears his newly discovered taste for the blues may be an illness.\ntt0388395,qpZBUlqRoeA,Schultze's boat is stuck and Captain Kirk helps him.\ntt0890870,oOl1Kvh2Zwg,Rigg rushes to save Detective Kerry despite warnings from Hoffman.\ntt0388395,uyfrK4LrXaQ,Schultze catches the blues on his radio and likes what he hears.\ntt0890870,3VfuSHP-57o,FBI Agent Strahm explains to Hoffman that the device wasn't made by Jigsaw alone.\ntt0890870,oHyebwN9XXU,Officer Rigg gets to the motel and finds a recording from Jigsaw with his next task.\ntt0890870,IwcQ6LDdW9Q,Agent Strahm and Agent Perez discuss Kerry's last message while Rigg is attacked in his home.\ntt0189998,ohgN4PexEv4,Murnau and Schreck argue about how to finish the film.\ntt0189998,nALXcRjbVzs,Murnau and Schreck clash over their visions for the film.\ntt0189998,-lAXOMpPqYM,Murnau continues filming as Schreck finally faces the sun.\ntt0189998,JuvJl9iwKb4,Greta needs to be calmed down because Schreck casts no shadow.\ntt0189998,SLNBos63EkY,Murnau stays focused on getting good footage as things continue to crumble around him.\ntt0046303,Ternps0JFwo,Shane teaches Joey Starrett the basics on how to use a gun.\ntt0189998,cEafT-GQfv4,\"Wagner, the new cameraman, arrives and immediately establishes his way of doing things.\"\ntt0189998,2nChsqAPyHw,\"Gustav accidentally cuts himself during a scene, causing Schreck to scare everyone.\"\ntt0189998,kVPIOjjbIpY,Schreck warns of his peculiar eating habits.\ntt0454945,Ua3NXljreQ4,The real Sebastian gives everyone proof that he is a boy.\ntt0046303,CWnDVW07_1c,\"Jack Wilson provokes Frank Stonewall\"\" Torrey to draw his gun.\"\ntt0189998,h5jZBcDev1s,\"While filming, Gustav meets Schreck for the first time.\"\ntt0046303,V1l3TboL5MI,Shane takes out Jack WIlson and the Ryker Gang.\ntt0046303,DtoCw2iOTSc,\"Shane rides out of the town alone, with young Joey calling out to no avail, \"\"Shane, come back.\"\"\"\ntt0046303,YklwFCfEEMM,Shane teams up with Joe Starrett and take on the Ryker gang.\ntt0046303,0TjrNjcFv_A,Shane is confronted by Chris Calloway as he buys a bottle of soda pop at the bar.\ntt0046303,f3z_ene1G6c,Shane is offered water by Joe Starrett as he passes by their farm.\ntt0454945,opCf3mp24dE,Viola reveals her true identity to everyone.\ntt0184907,9LvdctnZeWE,Lane reveals to Hal how she feels about him.\ntt0454945,FxjONf9AXEs,\"Olivia Lennox flirts with Duke to make Sebastian\"\" jealous.\"\ntt0046303,4aRryzzZLTI,\"Shane buys Chris Calloway a drink, and a punch.\"\ntt0454945,yNs0hmNinA0,Olivia Lennox and Monique have a disagreement and Viola is caught in the middle.\ntt0454945,ntQrC5iclmI,\"Sebastian\"\" gives Duke some tips for talking to girls.\"\ntt0454945,ofIzQbTGQ2E,\"Sebastian\"\" meets the roommates and demonstrates an alternative use for tampons.\"\ntt0454945,HOoHh7wHtvQ,\"Sebastian\"\" has an intimate chat with Duke as a completely objective third-party outsider with absolutely no personal interest in the matter.\"\ntt0454945,NY8m6lManpQ,\"Headmaster Horatio Gold welcomes Sebastian\"\" to the school.\"\ntt0184907,e2-VnrdN_Ng,\"Natalie and her recruits fight back against Snowplowman, finally immobilizing his efforts to prevent them from having a second snow day.\"\ntt0184907,MlRFw1CvPd4,\"With the knowledge that Claire is watching the news, Hal steps in front of the camera to communicate his feelings to her.\"\ntt0184907,nr7ui14-O_Q,Hal's romantic gesture is interrupted by Claire's boorish ex-boyfriend.\ntt0184907,sKrqOTg_FJY,\"Hal goes to Claire's house with the intention of telling her how he feels about her, but he soon discovers that every guy at school had the same idea.\"\ntt0184907,t0Yf_fvD-lY,Natalie tries to get Hal to join her in the quest for the legendary second snow day.\ntt0184907,7sUwnda1FUs,Natalie rejoices when she wakes up to a very snowy morning.\ntt0184907,G4BGtSvviS0,\"Hal admires his crush, Claire Bonner, from afar.\"\ntt0184907,vg6-AbLe5nM,Lane and Hal chat about romance.\ntt0040823,1DkaN1nDQoY,Leona tries to talk Henry out of looking for a job where he won't have to work for his father-in-law.\ntt0489281,XAWdzV2Bafw,Brandon expresses to Steve his guilt for the fallen soldiers under his leadership.\ntt0040823,ZSKSNo2z8AM,Henry's father-in-law tells him how it's going to be: he's going to do what his daughter wants and keep working in the family business.\ntt0040823,6MbOPK4TCB4,\"While Leona tries to call a nurse, a man breaks into the house and listens to her phone call.\"\ntt0040823,XLSkfVJxbwo,Leona wines and dines Henry into a loveless marriage.\ntt0040823,s4AzrUO3D1w,Henry confesses everything to Leona and warns her that she only has three minutes to live.\ntt0040823,J0IxGD8-6Cc,Leona drops a lot of hints and comes on to Henry pretty strong.\ntt0040823,Ma6SDu0V98Y,Leona overhears two men plotting to murder a woman when the operator crosses their phone lines by mistake.\ntt0040823,zdyBsGHbs4k,Leona receives a disturbing telegram that helps her put the terrible pieces together.\ntt0117731,s3RNsZvdYZQ,Picard makes his case for vengeance against the Borg.\ntt0489281,u3A8DoRXiSI,Brandon and Michelle visit Pvt. Rico Rodriguez.\ntt0117731,sMt3SzAH_i0,The Borg Queen reveals herself to Data.\ntt0489281,gzQt5VctFfI,Brandon expresses his grievances with the Iraq War to Michelle.\ntt0117731,EaPpa-eoxi4,The Vulcans arrive on Earth and make first contact with Zefram Cochrane.\ntt0040823,78RKzUAQD40,The incessant ringing of the doorbell drives Leona out of bed.\ntt0094072,8fvhchY0UmY,Principal Kelban takes note of the dramatic increase in the students' grades and grants Mr. Shoop tenure.\ntt0094072,QL412_xWtT8,Mr. Shoop attempts to teach Denise how to drive.\ntt0489281,J6JcrLIvKUA,Brandon is stop-lossed and tries to reason Lt. Col. Boot Miller.\ntt0117731,DYE3nm9voUk,The Phoenix blasts off into outer space but Zefram Cochrane thinks he forgot something.\ntt0117731,lDa6qc93nNs,The Borgs attack the USS Enterprise crew.\ntt0489281,CttvEq-ypno,\"Despite his battle injuries and disability, Pvt. Rico Rodriguez admits to Brandon that he feels lucky for his survival.\"\ntt0117731,D4QyCdRvXr4,Picard must stop the Borg from hijacking the deflector dish.\ntt0117731,JnN-SR_2ovA,Picard faces off against the Borg Queen.\ntt0117731,5Z8LHf9J6PQ,The Enterprise crew explain to Zefram Cochrane the importance of first contact with Earth.\ntt0094072,-5Pku48YPFo,\"The students recreate a scene from The Texas Chainsaw Massacre\"\" in an effort to scare away the new substitute teacher.\"\ntt0117731,t4DCOpG1oNE,The Enterprise arrives to battle the Borg Cube.\ntt0324127,MA6g7AEH_kA,\"When looking through O'Ryan's old room, Mackelway discovers that he is being tracked.\"\ntt0094072,B7ZTNm5o780,Mr. Shoop gets personal about Robin's relationship with Vice Principal Gills.\ntt0489281,GB7Cq_W4-U4,Brandon visits his parents before going AWOL with Michelle.\ntt0489281,CYF7eLv3hMw,Brandon jumps into the motel swimming pool to save Private Rico.\ntt0324127,RVevBZFMkys,O'Ryan begs Mackelway to kill him in order to make the visions disappear.\ntt0094072,u0kF24ceZMI,Mr. Shoop finds one of his students working at a strip club and encourages him to quit and focus on his studies.\ntt0094072,jJiKYmmWiCA,Vice Principal Gills blackmails Mr. Shoop into teaching remedial English at summer school.\ntt0489281,x5Nu0PPrI-E,\"When Steve trashes his house in a drunken rage, Brandon shows up to assist Michelle.\"\ntt0094072,farC0cWkpvc,Pam openly expresses her true feelings for Mr. Shoop at a house party.\ntt0094072,LzdoMQL_jR8,\"To avoid getting fired from his teaching job, Mr. Shoop adheres to his students' proposition.\"\ntt0324127,njlI82MV0gk,Mackelway discovers the remains of several dead children when searching a suspect's attic.\ntt0324127,rroHhssQbok,Mackelway visits Professor Dates to learn more about the theory of Suspect Zero.\ntt0115571,sTI1U2BiTNk,Zane investigates a Planecorp plant and makes a sinister discovery.\ntt0324127,0ROplAtLJvo,O'Ryan tells Mackelway how Project Icarus destroyed him.\ntt0094072,KkLV3MzJM_8,Mr. Shoop acquaints himself with his students for the first time.\ntt0115571,s4nMGnlbq9I,\"During their escape attempt, Zane and Char come under the attack of Gordian's alien henchmen.\"\ntt0094072,9OFoTABYnY0,Mr. Shoop makes a second attempt at asking Ms. Bishop out on a date.\ntt0115571,WO-1MybFFvI,\"Mysterious agents clean Zane's home quite thoroughly, using the power of a tiny singularity.\"\ntt0115571,rs1V8Sxp3ZY,\"Escaping the underground base, Zane uses the aliens' own deception against them.\"\ntt0115571,akYf73cUU6U,Zane gives Kiki a message to share with his people.\ntt0324127,YFUCezoyzyk,Mackelway tries to convince Fran and Rich that they are going after the wrong suspect.\ntt0324127,zAc3K7mjlxs,Mackelway watches O'Ryan's video describing a secret FBI project.\ntt0324127,VwP_-8SCu5s,O'Ryan uses a FBI mind technique to locate Mackelway at the scene of a recent murder.\ntt0115571,FCcdMEItd-U,\"Zane investigates the growing conspiracy with Char, while Ilana prepares for bed in a scorpion-infested room.\"\ntt0115571,lL2AwD_4G8w,\"After nearly being killed, Zane chases the perpetrator through the streets of Mexico.\"\ntt0115571,TnwtTQlfaQo,Zane extracts the dangerous truth from Phil Gordian.\ntt0324127,ZG4DMIhSIZY,Mackelway and Fran discover a corpse in an abandoned car.\ntt0115571,e0wRbbzTdhQ,Zane snoops around the underground alien base and witnesses an amazing -- and insidious -- transformation.\ntt0115571,NmNveyfhpBg,Zane attempts to explain what the aliens look like to his young neighbor.\ntt0115571,GNQ2LOxMi9Q,Zane and Char reflect on their relationship in the record-setting heat.\ntt0185937,8TJk9N4RrNM,\"The day after Josh goes missing, Heather finds a bundle of sticks laying outside the tent, bound with strings torn from Josh's t-shirt.\"\ntt0064045,ETqX2DZqAN8,Ivan kills Baron Muntzof before he can kill Sonya.\ntt0064045,ArSEv2hjwzE,Sonya finds the ticking bomb in her room and quickly disposes of it.\ntt0064045,CKJcpp8ff44,Ivan destroys the blimp before Lord Bostwick gets the chance to release the bomb.\ntt0185937,6_Onrl4g6H4,\"When the crew reaches the river and finds the same log they crossed the previous day, Heather collapses in tears.\"\ntt0064045,3Dit-yAwTgY,General Von Pinck hides a small bomb inside the sausage Ivan and Sonya ordered.\ntt0064045,s0_sBamhlIs,\"Lucoville tries to gas Ivan and Sonya out of the room, but Ivan beats Lucoville at his own game.\"\ntt0064045,IypE3rPP4sc,Popescu tries to assassinate Ivan but Ivan sets him on fire first.\ntt0064045,WRtOCCfKEvQ,\"When Sonya delivers a briefcase to the director, she finds out there was a bomb in it.\"\ntt0064045,tIB4z4uMeNs,Sonya wants Ivan killed and he thinks it's a marvelous idea.\ntt0321442,j2lG-WtrrsA,\"A hooker named Candy shows up out of the blue to warn John about a man known only as The Cowboy. Later, when she realizes that John is a B-List actor, she asks for him for his autograph.\"\ntt0321442,d8FIxfJaAYM,John meets an oddball local by the name of Dan who thinks that there's a major conspiracy afoot in the desert.\ntt0185937,cmYsRcLMvO8,Heather and Mike follow the sound of Jake's screams into an abandoned house in the middle of the forest.\ntt0321442,ep7wuwsdgqA,\"A nebbish man by the name of Neely convinces John to take a mysterious suitcase out to the desert town of Baker, California.\"\ntt0321442,E6jJUN52anM,The Cowboy and Ruthie try to convince John to join them in paradise.\ntt0321442,1c15w3kCHkw,The Cowboy manipulates John into an even worse deal by holding his friend Grace hostage.\ntt0321442,DKMzt447niI,\"Bob has a philosophical discussion with John about life, death, and long road in-between.\"\ntt0185937,2m_lqGnLtWA,Heather films a confessional where she admits fault for all of the events that have transpired.\ntt0321442,n4hHWb2UUQI,\"After Ruthie tells John a story about UFOs flying over the desert, they engage in a massive flirt session by using whip cream and Jack Daniels as key ingredients.\"\ntt0321442,n3F7_uaZUzU,\"Held at gunpoint by Randy, and with his life in peril, John is saved by the mysterious Cowboy.\"\ntt0321442,D8e-_q_iG6Q,John inverts the hostage scenario by threatening to shoot Ruthie -- the hostage -- if Randy -- the captor -- doesn't let her go.\ntt0185937,bKy6BtAbTU8,\"The crew rushes back to the trail after they find a series of strange rock formations outside their tent, but Heather discovers that the map is missing.\"\ntt0185937,nLKymV5rwAU,Mike discovers some strange stick figures hanging from trees in a nearby clearing.\ntt0185937,ntgrRUML2ic,Heather and her crew shoot the first scene of their film and then hit the town to interview residents about the legend of the Blair Witch.\ntt0185937,5ZHYDynRjV4,The crew discovers a strange rock formation near their campsite.\ntt0109340,w7ZY9tqDsEc,Mr. Crocker-Harris addresses the school auditorium on his final day of work.\ntt0109340,L4fJ1ht5TJM,Frank speaks to Andrew about his wife's indiscretions.\ntt0109340,CcPqBfuXdCo,Laura has some disheartening news to share with her husband Andrew concerning a gift he's just received from a student.\ntt0109340,92qwWy1aKH4,Mr. Crocker-Harris is shaken to the core when his pupil Taplow gives him an inscribed gift.\ntt0109340,sQFqzFD78Ck,Mr. Crocker-Harris is given the bad news from Dr. Frobisher : he won't be getting his pension after all.\ntt0109340,9H1gvvzRk9o,\"Laura visits her lover, Frank, who has begun to feel guilty about their affair.\"\ntt0109340,JlbIb4XdF4M,\"Flirtation surfaces between Frank and Laura, the wife of Mr. Crocker-Harris, just as the professor arrives home.\"\ntt0109340,u74DpEZeHbg,\"Before Mr. Crocker-Harris arrives for his last class, his students speculate over his reason for leaving the school.\"\ntt0051436,qDJg1qnedF4,\"Lafitte confesses to sinking the Corinthean, even though he was not the man responsible.\"\ntt0051436,2Yu7LGZcPus,\"After Lafitte kills Captain Brown, Bonnie wants revenge and the other pirates want a share of the gold.\"\ntt0109340,fSqvtspQonw,\"Taplow attempts to ask a favor of Mr. Crocker-Harris, a spiteful headmaster on the verge of retirement.\"\ntt0051436,SkEOY1s78e4,Gen. Jackson agrees to release Lafitte in exchange for gun powder and flints.\ntt0051436,gqU37m6uoFw,\"When American congressmen speak of surrendering to the British, Gen. Jackson makes it very clear that surrendering is not an option.\"\ntt0051436,jBYxPuIGu_o,Annette offends Lafitte when she confesses that being with a pirate contradicts everything that she and her family stands for.\ntt0051436,vfW0mLeRXe8,\"After Captain Brown pillages and burns an American ship, Lafitte hangs him in front of the crew.\"\ntt0101523,-uhpev-dp2M,Marina shows Alex how her clairvoyance works by performing a reading on him.\ntt0051436,FEddJ-WcZfU,A fight breaks out at the pirates' market when Bonnie refuses to give up fifty-percent of her earnings to Lafitte.\ntt0101523,oWuYilt9hX8,Marina and Alex battle it out over their different interpretations of life's meaning.\ntt0101523,2CcanSjYzlM,Alex's professionalism goes out the window when he tries to steer Stella in the wrong direction for his own benefit.\ntt0101523,-i9mrpATCms,\"Alex tries to explain away Marina's vision with psychobabble, and later accidentally exposes her husband's affair.\"\ntt0101523,7Qe11Thhwvs,Marina and Alex discuss the idea of one's other half.\ntt0101523,sOesH75ggbQ,\"Leo falls in love with Stella when she sings a seductive song by his favorite artist, Bessie Smith.\"\ntt0101523,nhKgGtFIqXY,\"Stella goes into Grace's shop looking for something dowdy and plain\"\" but Marina convinces her to get something more flashy.\"\ntt0101523,IomS4eaONdg,\"Leo and Stella express their feelings for one another, but they refrain from acting on their impulses because of Leo's marriage to Marina.\"\ntt0298814,R-PAimSAL08,The crew stops drilling inside a geode surrounded by hot lava.\ntt0298814,jr7HNZg0ljU,Dr. Josh Keyes explains to the government that they can not dig deep enough into the Earth's core.\ntt0298814,jK0s7zfdDOc,The San Francisco Golden Gate Bridge melts due to shifts in the Earth's atmosphere.\ntt0298814,ZkynnGqL7QM,The crew drills into the Earth's crust for the first time.\ntt0298814,6BGmQ21EekY,The ship encounters a drilling problem when the rock contains empty space.\ntt0298814,Qz836czauEk,The city of Rome is destroyed by electricity because the Earth's magnetism is unstable.\ntt0298814,MAu2e0VbvY4,Problems with the Earth's core and electromagnetic fields cause birds to panic and attack London.\ntt0298814,0x05PrIasjk,Dr. Ed 'Braz' Brazzleton goes out of the ship to deactivate a safety switch and is killed by the intense heat of the molten rock.\ntt0298814,b_HhiU1mOwU,Dr. Ed 'Braz' Brazzleton shows off the element Unobtainium and the designs for his ship that can drill to the center of the Earth.\ntt0435625,tenCir3A3cE,Sarah and Juno team-up and take down a room full of crawlers with unreal savagery.\ntt0435625,lRjxk7z0kOQ,Sarah hides in a pool of blood to evade the crawlers.\ntt0435625,RkH6Q6d8ihA,\"As they climb to safety, Sam and Rebecca are left vulnerable to an attack by the crawlers.\"\ntt0435625,01X3KxC5GfM,\"Beth warns Sarah to not trust Juno, before begging to be put out of her misery.\"\ntt0435625,YiD9zhs0Lt8,\"Juno murders one of the crawlers before it has a chance to kill Rebecca. Later, Sam studies the creature and tells the gang that it hunts by using sound.\"\ntt0435625,Gq3WJ-sJj7I,Juno single-handedly kills a swarm of crawlers but then accidentally attacks Beth when she startles her from behind.\ntt0435625,EOSJ6vijGyo,\"The girls get their first glimpse of the cave-dwelling creatures, and one of them brings Holly to an abrupt and brutal death.\"\ntt0435625,V7-kCVemvVI,Juno puts her life in jeopardy when she chooses not to use the rope to get to the other side of the cave.\ntt0435625,HbdxvncHvCs,\"Pinned by collapsed rocks, Sarah tries to suppress her fear as Beth tries to rescue her.\"\ntt0435625,faZ88f6Gfzc,The girls get angry when Juno reveals that she has brought her friends to a new cave that has not yet been discovered.\ntt0116240,UnSxnVp8FzM,\"Aurora Greenway reconnects with Garrett Breedlove, and they scatter the ashes of her deceased friend.\"\ntt0116240,cJeYngoI1oA,Aurora Greenway is comforted by her family on her deathbed.\ntt0116240,0mwMM8VrYmw,\"Melanie Horton calls Aurora Greenway, and they have a heart-to-heart about life.\"\ntt0116240,vq8OmtyOsR8,Aurora Greenway and Patsy Carpenter get into a heated argument aboard an airplane.\ntt0116240,s5XdRd5SQIw,\"Aurora Greenway visits Tommy at the prison, and gives him a heartfelt gift.\"\ntt0116240,Hv-n7C1EU3U,\"Aurora Greenway takes Jerry Bruckner to dinner, where they discuss their relationship.\"\ntt0116240,lp0FOpFdWi8,\"Aurora Greenway confronts Jerry Bruckner and Patsy Carpenter about their sexual relationship, and discovers why Jerry is so interested in her; she resembles his mother Lola.\"\ntt0116240,bAyb9cEDh2E,Teddy Horton and Melanie Horton reminisce about when they were children.\ntt1320253,jFP9_AxrurA,Barney and the Expendables go on the offensive after detonating a huge explosion.\ntt1320253,z0j4sVZHUdo,Christmas shows off his knife-throwing skill while the team celebrates the end of their mission.\ntt1320253,xEIhAu0v-kU,Barney and Christmas rescue Sandra from the threatening hands of Monroe.\ntt1320253,tQkTtnCV1n4,Toll Road and Paine have a heated battle in the middle of a chaotic gunfight.\ntt1320253,z8lDbb_76Ug,Gunner and Yin face off in a duel that pits the Expendables smallest member against its biggest.\ntt1320253,ac6FZ59tna4,Barney and Christmas spray jet fuel on a dock full of enemy soldiers to trigger a huge explosion.\ntt1320253,6SyjoKS9CXM,Barney and Yin try to outrun Gunner after they discover he's sided with the enemy.\ntt1320253,sVbhGDytHk4,Christmas interrupts Paul's basketball game to discipline him for mistreating a lady.\ntt1320253,2TWpil1VJ8I,\"A group of enemy soldiers gets annihilated by Hale Caesar's massive rifle, Omya Kaboom.\"\ntt1320253,ShB8ZLISubA,Mr. Church calls in Barney and Trench to offer them a dangerous job in the gulf.\ntt1320253,q9n96my-QzI,Barney and the Expendables are tasked with rescuing hostages from a group of heavily armed pirates.\ntt1320253,uAO727Dw9hg,Barney runs to catch a plane just before it becomes airborne.\ntt0093075,25_Kvrl7agM,Glen goes to war with the demon he unleashed in his living room.\ntt0093075,UOOGD4DLy-0,A giant demon emerges from the Gate and gives Glen a horrific gift in his hand.\ntt0093075,CKGHiP4bs84,Glen and Al battle a zombie that's more than what it appears.\ntt0093075,2mXAB3HO160,Terry gets in touch with his inner demon-lord.\ntt0093075,YOtz3kdBKW8,The old gods disguise themselves as Glen's parents.\ntt0093075,Z8leMw24Nbc,Al ventures outside and pays for it.\ntt0093075,0SMMbr2kXc8,Terry comes downstairs to discover the ghost of his dearly departed mom.\ntt0093075,VOVOizcl4Gc,Glen is left to fend for himself when his treehouse comes under attack by supernatural forces.\ntt0093075,EmeHbU_s7Cg,Al and her friends try to levitate her little brother Glen.\ntt0219699,8ZYQejxdHdc,David questions Donnie about his history of violence.\ntt0219699,r8zjtGUA6tU,Annie describes her psychic abilities to the jury.\ntt0219699,uY9VcYt2bKE,Sheriff Johnson tells Annie that she defended herself against Wayne.\ntt0219699,daPR5OjY6bI,The truth is revealed when Wayne takes Annie to the crime scene.\ntt0219699,8TG4sr_y-Ys,Annie tries to stop Buddy from burning his father alive.\ntt0219699,nQunClrM4co,Annie receives a disturbing vision after Jessica asks her to foretell her upcoming marriage to Wayne.\ntt0219699,zgEYrXfWhWs,\"Annie envisions wilting flowers, dripping blood and a fiddler on the bayou.\"\ntt0219699,fMI2u6Jp1FE,Annie talks Buddy through a frantic episode.\ntt0064505,bW0aNTB523c,\"After the heist, the crew dumps the Mini-Coopers off the cliffs of the Alps.\"\ntt0064505,V3s3OXOzoH4,\"A Lamborghini Miura drives through the Italian Alps, enters a tunnel, crashes and explodes. A bulldozer dumps the remains down a steep gorge.\"\ntt0064505,5ntVWRhfqo0,Charlie Croker reclaims his fancy Aston Martin after it has been in storage for many years.\ntt0064505,RtWkewqIFDM,Charlie Crooker and his crew speed around Italy in Mini-Coopers to escape the police on motorcycles.\ntt0064505,3hcmGG6VUsU,\"Altabani flips Croker's Aston Martin DB4 into the gorge, but Charlie Croker talks his way out of being killed.\"\ntt0064505,sOGhuhC4AF0,The drivers of the Mini-Coopers get their cars into the getaway bus.\ntt0064505,HZCaSyid4m0,\"The back of the bus is left teetering over a cliff, and as the gold slides towards the rear, Charlie futilely tries to save it.\"\ntt0064505,GHRFqRbAx1o,Charlie Croker and his crew steal gold in Italy and transfer it into Mini-Coopers.\ntt0064505,T_ZImfAxOu0,Charlie Croker in a Mini-Cooper races around the Fiat Lingotto factory to escape from the police.\ntt0064505,7_PX1cVuaVA,Arthur blows up a truck when he was only supposed to blow off the doors.\ntt0074777,df1mSOyvsXU,Monroe Stahr recites his scene again but this time Kathleen Moore is in the story.\ntt0074777,_8GB76HyNNU,\"Monroe Stahr picks a fight with Brimmer, but it doesn’t last long.\"\ntt0074777,isgx4Srs9t8,Monroe Stahr makes a jerk of himself when he drinks too much while out to dinner with Brimmer and Kathleen Moore.\ntt0074777,eC2O1zsfn2c,Monroe Stahr watches dailies and makes the unpopular decision to have the scene re-shot.\ntt0074777,TqL70V8rn9I,Monroe Stahr gives a presentation on filmmaking.\ntt0074777,FIGm0YdXotI,Cecilia Brady offers herself to Monroe Stahr.\ntt0074777,CSwnlwsBAFU,Didi lives up to the Hollywood diva stereotype and stubbornly insists on filming another take.\ntt0074777,6lw33XpYhGs,The studio suffers damage from an earthquake and Monroe Stahr spots a floating beauty.\ntt0385057,prGnVwLgxPc,Ed walks in on Cathy in bed with another man.\ntt0385057,HwHADsTOVMs,\"Cooper performs as Hamlet, but remains a lady killer to the end.\"\ntt0385057,Fqeo-bUOueA,\"Ellen comes to the rescue of Ed, who describes his terrible weekend.\"\ntt0385057,OgU8mEFGcfA,Cooper admits that he paid a prostitute to seduce his brother Ed.\ntt0385057,f-zgBlWksMc,Cooper attempts to release his brother Ed from police custody.\ntt0385057,rILBK11XLA0,\"Ed goes home with Kim, a sexy woman who wants to have some late-night fun.\"\ntt0385057,Cg6X7ukYzTo,Cooper prays for his brother to return home.\ntt0385057,I0jMv9vF9MI,Ed makes small talk with Susie while Cooper gets busy in the other room.\ntt0385057,TnUS6tDANfc,Ed shows off his advertising skills by winning over a client with his idea for a snappy commercial.\ntt0385057,pbSX1diNIlY,Ed goes to the laundromat and the gym to pick up girls.\ntt0380510,tJimPUh3vmQ,Susie finally gets the chance to kiss Ray.\ntt0385057,8d6AniF_vxg,Ed's flatulence leads to an awkward moment in the elevator with Ellen.\ntt0385057,q0DZLuG2FiI,Cooper and Ed pretend to be priests to meet single girls at a funeral.\ntt0380510,_k8uSp3-900,Ray gets the courage to ask Susie out on a date.\ntt0380510,5y719xX1I5U,Lindsey Salmon breaks into Mr. Harvey's house and finds a notebook filled with evidence that he killed her sister.\ntt0380510,SfL4U_bOGvc,Jack Salmon figures out that his neighbor George Harvey was responsible for Susie's murder.\ntt0380510,rGR6aO4JsH0,\"Jack Salmon follows Mr. Harvey to the cornfields, but when he goes to attack, he realizes that he's been chasing Clarissa and her boyfriend Brian.\"\ntt0380510,FKj1vfHB2i0,Susie realizes that she's stuck in a place that lies between heaven and earth.\ntt0380510,M-APah17AQA,Mr. Harvey lures Susie into his underground hideaway.\ntt0380510,Nc_b69ag6Eo,Detective Len Fenerman questions Mr. Harvey about the recent murder.\ntt0380510,xam8pRUej7A,Jack Salmon spends time with his daughter Susie teaching her how to make a ship in a bottle.\ntt3595776,wXnYmZhdm04,Felix and Oscar argue over what to do when the driver of their car dies suddenly.\ntt3595776,jepTSaMF2ZM,Felix and Oscar become roommates once again.\ntt3595776,0q3BH18BmZI,Felix and Oscar slap on some new underpants and hit the bar.\ntt3595776,j6_umKYN_JU,Felix loses his temper when he finds out Oscar forgot to pack his suitcase.\ntt3595776,hsE1N5mfvmA,Felix and Oscar attempt to hitchhike to the nearest town.\ntt3595776,lJIPM69YQNY,Oscar pulls a prank on Felix in the rental car.\ntt3595776,A4ktp_9Q5Es,Brucey calls to tell Oscar he is getting married to a woman named Hannah Unger.\ntt3595776,Pv4M77BcywE,Oscar and Felix reunite at the airport.\ntt0071970,k4DsinIrAjQ,Rintels tells Frady to stop creating news and simply report it.\ntt0071970,WcZSEqj45Ws,Frady tries to escape from the convention hall without being framed as the assassin.\ntt0071970,I1OmcMDFR0Y,Frady watches helplessly as Hammond is gunned down by an assassin.\ntt0071970,0iSD31ToSC8,\"Frady tracks down the elusive Tucker, whose paranoia turns out to be justified.\"\ntt0071970,hN952f_jn8E,Frady watches the recruitment film designed to find assassins for the Parallax Corporation.\ntt0071970,V9jD7kLAmPM,Frady is betrayed by Sheriff Wicker as the rushing waters of a dam quickly approach.\ntt0071970,raLZ6l174_k,Frady steals a police cruiser and leads a small town deputy on a wild chase.\ntt0071970,2RQNDXuAIJI,Frady gets into a brutal bar fight with a small town deputy.\ntt0314498,cfILhtwu9S0,Kyle comes home after a stressful day to find his mother grading standardized tests.\ntt1129442,VF609NvGcCM,Frank makes his car pop a wheelie in order to drive between two massive semi-trucks.\ntt0227445,WwHpeDtSMmc,Nick Wells and Max negotiate a deal.\ntt1129442,LfDjQe0B7Tw,Frank beats up a bunch of thugs who try to recruit him for a shady job.\ntt0443295,ygOrLkyfHsw,Frank and Helen find that they both have unusually large families at their high school reunion.\ntt0071970,WEScYukcD1Y,Lee tells Frady that her life may be in danger.\ntt0314498,TrxSTI517Iw,Desmond's Mother pushes Roy out of bed and into the shower with some tough love.\ntt0071970,KoNukbGYfFY,Senator Carroll is shot and killed at the Seattle Space Needle on Independence Day.\ntt0314498,arfamPuUOek,The group meets at Kyle's house to discuss the details of the heist.\ntt0314498,shO2tSVK0IU,\"Kyle, Francesca and Matty break into the room where the SAT answer sheets are stored.\"\ntt0314498,_ewnZCc0imw,\"When the group is unable to acquire the answer sheet for the SATs, they must work as a team to answer the questions themselves.\"\ntt0314498,I-xX6foX9zw,Francesca starts an argument with Anna to test the solidarity of the group.\ntt0314498,hdVQlYgFRuM,Francesca comes up with a disguise that will help Kyle and Matty gain access to the ETS building.\ntt0314498,LTqaoTSCTc0,\"Roy, Kyle and Matty infiltrate the ETS building in search of the master answer sheet.\"\ntt0095897,rz41nM47q7Y,\"With Colonel Caldwell pinned down by gunfire, Major Maclure chooses to make the ultimate sacrifice in order to make things right.\"\ntt0095897,vXsKVaJTQCA,\"Detective Austin charms his way into, like, some information from Grateful Dead loving dispatcher Gloria.\"\ntt0095897,bQInfO7fE-s,\"Trapped in a water bottling plant, Detective Austin and Major Maclure fight intimidating personal assistant --and jewel smuggler-- Mark.\"\ntt0095897,_BMYVDOOQ0E,\"Detective Austin finds out more about Colonel Caldwell's daughter Donna, mostly on the trunk of his car.\"\ntt0095897,GpEhxhSoFAU,Detective Austin has to give chase through Chinatown when Colonel Lawrence resists arrest and makes a break for it.\ntt0095897,M9CkGS1O5WM,\"Realizing that he's going away for good this time, desperate prisoner Howard gets his hands on a gun and tries to make a break for it, only to be faced down by Detective Austin.\"\ntt0095897,9Dka54jH9po,\"When Detective Austin and Colonel Caldwell have their coffee break interrupted by an obnoxious man looking for a fight, Colonel Caldwell helpfully instructs the man on how to properly recognize military rank, wrecking the bar in the process.\"\ntt0095897,7_OHC_nqFQ8,Colonel Caldwell has a few too many and explains his view on America and freedom to Major Maclure.\ntt0095897,I_xrNryhq1Y,\"Two Patrolmen engage in a high-speed pursuit through the streets of San Francisco, with unpleasant results.\"\ntt0337697,Wrs-qNpKvbE,Eddie spots Paige in the crowd and invites her to join the Royal parade.\ntt0337697,7rN0Kk3eUSo,Paige tells Eddie that she can't marry him.\ntt0337697,UBbsHeltzEE,Paige realizes she loves Eddie and has to go to Denmark to find him.\ntt0337697,0AslM2bC5DY,Eddie and Paige share their first kiss.\ntt0337697,g2atr8aQ0zg,Eddie tutors Paige in Shakespeare and teaches her more than she expects.\ntt0337697,-L9EZRMgmXM,\"When Eddie and Paige are caught in a moment of passion, the truth about Eddie's background comes out.\"\ntt0227445,rYjtudWe7O0,Jack Teller betrays Nick Wells during the heist.\ntt0337697,bOKID-aX3z8,Paige confronts Eddie after he misses class.\ntt0337697,iv2j0CJkzbM,Eddie introduces himself to Paige and proceeds to ask her an inappropriate question.\ntt0227445,9aPhLF7yfU8,\"After making a getaway from the scene of the heist with the valuable sceptre, Jack Teller realizes that Nick Wells was one chess move ahead of him.\"\ntt0227445,YALDmRKFYSk,Nick Wells discusses his doubts about a robbery with Max.\ntt0227445,4IOwJNyILNI,Jack Teller plays games with Nick Wells during the robbery.\ntt0227445,odEociFdDN4,Nick Wells and Jack Teller go to a park for a meeting to acquire security codes.\ntt0227445,ABpeiNlMOHU,Nick Wells and Jack Teller enlist Steven as a hacker.\ntt0227445,ph2dq-pPBnA,Nick Wells and Diane discuss their future.\ntt0227445,OkVJ0KvOV60,Nick Wells helps a mentally handicapped man who is actually con artist Jack Teller.\ntt0268695,nd3MVcbnfAc,\"Given his time machine and told to return to his own time by the Morlock's leader, Alexander realizes what brought him there and accepts his destiny in the future.\"\ntt0268695,61xq5Kja1Uo,\"In the ruins of what was once New York, Alexander discovers the remains of the librarian protocol Vox, who has had solitary centuries to ruminate on humanity and loss.\"\ntt0268695,Jwaw24W2bW0,\"In the bowels of the Morlock caves, Alexander is confronted with the leader of the Morlocks, who explains to him the future's unique ecosystem.\"\ntt0268695,Rkc09sTiS7g,\"Far from his own time, Alexander consults the Fifth Avenue Public Library to see what information on time travel the future can provide. His efforts are stymied by the incredulity of the library's interactive reference protocol, Vox.\"\ntt0268695,KHPPeGoWDEU,\"Alexander infiltrates the Morlocks' nest and is confronted with the terrible truth of their relationship with the Eloi, and of their food source.\"\ntt0268695,2KGv86GLvXo,\"Alexander and Mara come face- to-face with the grotesque predators of the Eloi, the Morlocks.\"\ntt0268695,D6uIONVMTxE,Alexander becomes the first man to travel through time.\ntt0268695,W9SemYK9HEw,\"Finding no answers in the past, Alexander sets his sights on the future as all of the 20th century passes around him.\"\ntt0290095,jMv808xIuwg,Jimmy fights off multiple bads guys while using Agent Del Blaine to contain a rare bug.\ntt0290095,6oUQEh-Xji0,Jimmy and Banning face off while donning their super-powered tuxedos.\ntt0290095,QUVhbRmhn_w,Jimmy fills in for James Brown by using his tuxedo to entertain the crowd.\ntt0290095,Jc0r-WTEnzc,Jimmy uses the powers of his tuxedo to catch up with Agent Del Blaine.\ntt0290095,V7u623DEJD4,A half-dressed Jimmy fights off some bad guys in a hotel room and saves Agent Del Blaine.\ntt0290095,c94JyVrcWwE,Jimmy and Mr. Devlin try to outrun a mechanized skateboard with a bomb attached to it.\ntt0290095,pxy0q9dp1GA,Jimmy accidentally knocks out James Brown while visiting him backstage.\ntt0290095,9GF-YNA-iTM,Jimmy gets an unexpected surprise when he tries on the high-tech TUX-1 suit for the first time.\ntt0290095,3XK3y_S1kP8,Jimmy gets into a fight with a surly cyclist after accidentally knocking him off his bike.\ntt0301976,6BS2yXD9Ggo,Becky tells Julie she's getting clean.\ntt0301976,as_lXF3HqCY,Pearl confronts Albert about his parental neglect.\ntt0301976,ioznxKkY_IE,Pearl and Leland discuss human nature.\ntt0301976,58qDZgvh3jk,Leland describes the inherent sadness he sees in every person.\ntt0301976,fARjlj6q1uU,Pearl secretly passes Leland his workbook.\ntt0301976,ljdH53Ro0xQ,Becky asks Leland for some reassurance.\ntt0301976,50cIB7qKfnk,Leland denies any concrete reason for his crime.\ntt0301976,9ac3upRnOl8,Leland meets Guillermo and Pearl.\ntt0301976,i1n8bNgTUTw,Leland discusses the fickle nature of memory.\ntt0301976,NAH_6By9C7g,An old woman mistakes Albert for a famous actor.\ntt0159097,A4Sywg8Yw4Q,Lux sneaks out after her date with Trip to see him one more time.\ntt0159097,uLkxV_gyYbI,A group of friends attempt to figure out the mysterious Lisbon sisters who live down the street.\ntt0159097,idKzxvXO9_8,The boys reconnect with the Lisbon sisters by reading the same magazines as them.\ntt0159097,X2YdsIm2Pj8,The boys communicate with the Lisbon sisters by playing records for them over the phone.\ntt0159097,gaoBscEDdzM,\"Trip and Lux are crowned homecoming king and queen, as youthful joy bursts out on the dance floor.\"\ntt0159097,9qEoK4PYN5I,\"The boys go to rescue the Lisbon sisters, but quickly discover that something is awry.\"\ntt0159097,LwvvOrYPcuM,Mrs. Lisbon throws a party for her daughter Cecilia in an effort to help her socialize after her first suicide attempt.\ntt0159097,Qq2TXAE-Ih8,\"The boys get ahold of Cecilia's diary, and read the entries about life with her sisters.\"\ntt0159097,glz-J_geNNI,\"Trip recalls the first time that his eyes landed on Lux, and fell in love at first sight.\"\ntt0282120,gW3KZsBwQzw,Debbie is helped by a tribe of natives and a teenage boy named Boko.\ntt0282120,WlaQZKko8bk,Debbie learns what will happen if she tells anyone her little sister can talk to animals.\ntt0282120,OzCu7Cvdsjc,Darwin blows his cover just as Eliza starts to make new friends at school.\ntt0282120,nHyK6uFdDWY,\"Eliza reveals her secret to the Blackburns to save her sister, Debbie.\"\ntt0282120,2KuNMLOKUXE,Nigel tries to comfort Eliza before she returns to London for boarding school.\ntt0282120,M8LDQ6M_CBs,Eliza finds a welcome surprise when she unpacks her suitcase at boarding school.\ntt0161100,Em8I02rqbhw,Mike delivers a heartfelt speech to Roland and Lisa on their wedding day.\ntt0282120,QKEMn5rTRL4,The Thornberrys decide it may be time to send Eliza to boarding school after Debbie reveals a number of secrets about her sister.\ntt0282120,Kuwa9UzfMGg,Eliza and Darwin warn the family of an incoming stampede.\ntt0161100,sfHaTenaRBI,\"Mike, Slim, and Roland, discuss why Roland is having cold feet on his wedding day.\"\ntt0161100,n16wkJDq2VQ,Mike and Slim try to convince Lisa to forgive Roland and go through with the wedding.\ntt0161100,KVt9YlotsuY,Mike finds himself in an awkward situation when he tries to steal a condom from Stacey's bedroom.\ntt0161100,d-nJUGK8ABk,Mike practices his moves so that he can impress Alicia at the school dance.\ntt0161100,2LeVu2F6s4g,Mike finally musters up the courage to ask Alicia to dance.\ntt0161100,-e6lEsIUf3U,\"Stacey runs into Mike while robbing a convenience store, and insists upon giving him and his friends a ride to the dance.\"\ntt0161100,KzWronMcXR8,Stacey fights Mike after school to teach him a lesson about touching his sister.\ntt0161100,LBU5Yu6RFBY,\"When Mike follows through on a bet to grab Alicia's butt, Alicia threatens to tell her ruthless older brother.\"\ntt0469623,ex65__9m7f0,Kelly gives Audrey a new perspective on how to deal with grief and losing the love of one's life.\ntt0469623,6IPcEITrktA,Audrey begins to resent Jerry for knowing things about her daughter.\ntt0469623,pe8vv-fGpWk,Tension arises after Jerry asks Audrey why she invited him into her home.\ntt0469623,4dp5Q3B20aE,Jerry tries to console Audrey as she finally confronts the reality of her husband's death.\ntt0469623,qaQUmqNJTO8,Audrey and Brian share their final moment together just hours before Brian is murdered.\ntt0469623,p6LXVK9rPbw,Audrey questions whether or not she will ever feel beautiful again.\ntt0469623,K44KlE3sSMM,Audrey's despair gets the best of her when she asks Jerry what heroin feels like.\ntt0469623,VpOmvE4sLUY,Audrey is distraught upon hearing the news of her husband's death.\ntt0469623,Ug0QqktJ5tc,Audrey gets emotional after seeing Jerry teach her son something her husband never could.\ntt0469623,VwfXJVjptt0,Audrey and Jerry reunite at her husband's funeral.\ntt0300556,o3uf4YSwY9I,Andre shares his love for archaeology with Chris.\ntt0300556,hcUVOlbNb30,Lord Oliver orders his men to attack the French using their newly acquired battle techniques.\ntt0300556,VEwLgrpyamQ,\"Sir William De Kere kills his old colleague, Frank Gordon, and warns the others of transcription errors.\"\ntt0300556,RdIAtsbwb00,Baretto journeys to the present with a grenade that destroys the time travel device.\ntt0300556,3H9TofuarsE,The Professor demonstrates Greek fire for Lord Oliver.\ntt0300556,Hsi4X9MxtkY,Andre and the rest of the archaeologists travel to 1357 AD.\ntt0300556,OdL9R0ZODYs,Steven explains to Andre and the others how they found the professor's bifocal lens and signed documents.\ntt0300556,3kfnzu3RrFM,Josh makes a surprising discovery about the documents and bifocal lens found underground.\ntt1129442,1U9wqQ9a8GU,Valentina tells Frank how she ended up in this mess.\ntt1129442,YlwAVV3dC2o,\"Frank drives his car into a lake, but if he leaves the car he'll explode.\"\ntt1129442,k8QQCwXyVbI,Valentina steals the car keys and makes Frank do a striptease.\ntt1129442,B3nAwyocJs0,\"Frank jumps his car from one half of the train to the other, where he confronts Johnson.\"\ntt1129442,FOAj7BE1VEg,Frank lands his car on the roof of a speeding train to rescue Valentina.\ntt1129442,Vz04LQ7GGzc,\"Frank steals a bike to stay within 75 feet of his car so Valentina, who has a bomb strapped to her, doesn't blow up.\"\ntt1129442,gknxRGof8Pc,Frank fights off a gang of villains to give his friend time to search his car for the transmitter that sends a signal to the explosive bracelet.\ntt1129442,9a3z1lvLLng,Frank fights the Big One in a rough and tumble brawl.\ntt0139699,Aqqc9H83ECk,Billy Bob scores the game-winning touchdown of the championship game.\ntt0139699,eKbXO0f-mvw,Lance and Mox take over play calling duties from Coach Kilmer during the championship game.\ntt0139699,RjdPAElUs9E,Lance and Mox are challenged to knock beer cans off the heads of their drunken fathers.\ntt0139699,UtRR6sLexR8,Mox disobeys a play call from Coach Kilmer to get a touchdown for Wendell.\ntt0139699,qbIEepu8Z4w,The team takes a stand against Coach Kilmer after he insists on giving Wendell an injection.\ntt0139699,LoT3AimKXmk,\"Mox visits Darcy, who has a surprise planned for him while her parents are away.\"\ntt0139699,LHrkO46ERP8,\"Mox, Billy Bob, and Tweeder take a tough loss after partying the night before.\"\ntt0139699,XFOoJ3gwplQ,Star quarterback Lance Harbor is injured after Billy Bob misses his block.\ntt0139699,ANYJbKdMHk8,Coach Kilmer disciplines Mox after he runs the wrong play in practice.\ntt0070895,r_a34DBcwCE,Buford catches a traitor in his department.\ntt0070895,DLuROR8kLy8,\"After crashing his police car into the Lucky Spot, the town supports Buford by burning everything in the casino.\"\ntt0070895,ZkpC7VsyqaE,Sheriff Thurman gives Buford Pusser some bad news about his case.\ntt0070895,WhZEKkpf3CU,\"Buford gets his revenge by crashing his police car into the Lucky Spot, killing Buel and Augie.\"\ntt0070895,3l7-8yvdTLE,Buford is put on trial and the jury shows their support.\ntt0070895,KVDtV-uVRq0,Sheriff Thurman and Grady chase after Buford.\ntt0070895,o-e8eejeHLA,\"On a quiet drive, Buford and Pauline are gunned down by Buel, Augie, and the rest of the Lucky Spot gang.\"\ntt0070895,KNip2ZamrMc,Buford catches the craps dealer cheating and a fight breaks out.\ntt0070895,q9iIgRYUyA0,Buford and his bat head to the casino to get revenge and the money owed to him.\ntt0049934,L6YJkhVYUXs,Pierre comforts Natasha after the man she loves leaves her.\ntt0049934,Xm6JHSUoLpY,Pierre gets involved in a violent battle between the Russians and the French.\ntt0049934,-KOG8edoC00,\"Natasha comes back to Moscow and discovers that Pierre has returned from battle, as the two re-unite.\"\ntt0049934,ZWSHjks0ESI,Natasha and Maria tend to Prince Andrei as he dies.\ntt0049934,jihDFIqNz1s,Pierre visits Prince Andrei the night before the battle in an effort to experience war firsthand.\ntt0049934,4XpFpGcTh1s,Prince Andrei expresses his interest in Natasha at a formal dance.\ntt0049934,aTTbCJmc3Cg,Natasha tells Sonia her thoughts on Prince Andrei as he eavesdrops from the room below.\ntt0049934,EV5W98Ql4vQ,Pierre explains to Natasha that he's planning on marrying his cousin.\ntt0049934,YJbQz3bTn6I,Pierre fights Dolokhov in a duel to the death for taking his wife as a lover.\ntt0048801,yvcIugB8yt4,Isabelle mistakingly believes Paul is in love with her.\ntt0048801,Q-xBDej7O6M,The convicts try to break the news to Isabelle that Andre and Paul are dead.\ntt0048801,WgBb0YoMp1g,Amelie and Joseph discuss their life choices.\ntt0048801,xQOZMIbnpMc,The convicts have a change of heart after Felix gives them a Christmas present.\ntt0048801,P3QI8hTpxl8,Joseph demonstrates his remarkable talent as a salesman.\ntt0048801,EL9EJL3O7bU,Albert offers Isabelle sage advice.\ntt0048801,I2UTg_bYu68,Isabelle faints after she receives bad news in a letter.\ntt0048801,tcCo38aP8qc,The convicts spy on the family they plan to rob.\ntt0048801,ckAD2sg5SxQ,Felix and Amelie discuss marriage prospects for their daughter.\ntt0120524,NvuCGs9iYSk,The Djinn finds a way to get past a pesky security guard.\ntt0120524,NWfz4zLi640,\"While Alexandra tries to escape, The Djinn gets into a showdown with the doorman.\"\ntt0120524,tqfFZYur4sM,Alexandra runs from The Djinn and finds Raymond Beaumont suffering from a curse.\ntt0120524,DW3d5hYgV_Q,\"Alexandra discusses her problems with Wendy, when she realizes she isn't talking to Wendy at all.\"\ntt0120524,wpA9m3t6bNY,The Djinn convinces Alexandra to make her first wish.\ntt0120524,F6RpbWC4-L0,\"Wendy explains to Alexandra the history of The Djinn, who finds another victim at a clothing store.\"\ntt0120524,lqA3TgVtN-Q,The Djinn asks Nick his price for information on Alexandra's whereabouts.\ntt0120524,oa1LGWv3zkA,\"A homeless man argues with the pharmacist and then has a run in with The Djinn, who grants him a wish of revenge.\"\ntt0120524,LWP0KujKOKY,\"The Djinn breaks into the morgue and removes the face from one of his victims, while Alexandra experiences a connection with The Djinn every time a wish is made.\"\ntt0477139,5Rp-dpnsqUo,\"Mikal insists on driving, but Eugene doesn't want to sit in the back.\"\ntt0120524,8Z60zTp6Izo,Josh Aickman runs some tests on the artifact that Alexandra gave him when The Djinn is awoken and released.\ntt0477139,4TSoSMLHTi0,Zia and Eugene pick up a hitchhiker named Mikal.\ntt0477139,FXZ3JnwIph0,\"Eugene crashes the car when he nearly hits Kneller, who is asleep in the middle of the road.\"\ntt0477139,3OHisdS9LXs,Mikal becomes jealous when Zia catches up with Desiree.\ntt0477139,WeVMy5j7ykc,Desiree tells Zia about what happened after he killed himself.\ntt0477139,i5znTCoKLPI,Kneller tells the fable of the crooked tree and the straight tree.\ntt0477139,k0tc08W_t-Y,Mikal and Eugene argue over who is in charge in the afterlife.\ntt0477139,qkvQOEJKHNk,\"Zia tells Mikal how he feels about her, but the romantic mood is spoiled in the harsh light of day.\"\ntt0477139,Op9k4MLjKSQ,Zia kills himself and imagines what life will be like for Desiree without him.\ntt0477139,jaSs0dUv0zQ,Zia goes to the store to get more cottage cheese and runs into Brian.\ntt0477139,Gg3woGs9ZGY,A cop arrests Mikal for vandalism until Zia saves her.\ntt0096487,WGBw3zwzqwI,\"Texas Joe Grant is in search of outlaw Billy the Kid, but he doesn't realize is that Billy is right under his nose.\"\ntt0096487,-Zr-B5aIEvE,\"With their backs against the wall, Billy leads his gang in a perilous escape, only to return moments later to settle the score with Murphy once and for all.\"\ntt0096487,iX1ha-hADlU,'Jose' Chavez y Chavez explains to the gang how Murphy destroyed his family.\ntt0096487,UqvuJLOCSxc,\"A bounty hunter by the name of Buckshot Roberts engages the gang in a shootout. During the fracas, Dick is shot dead.\"\ntt0096487,PII5jcf950Q,The gang trips out on peyote.\ntt0096487,H2iK5QHr3Is,Billy suspects that one of their fellow Regulators is a spy.\ntt0096487,F5ZP1m4J0H4,\"'Jose' Chavez y Chavez brews up peyote tea to \"\"Find the way\"\" to the spirit world.\"\ntt0096487,OhtKiOEZBJY,\"Billy has a warrant to arrest Henry Hill, but instead he kills him.\"\ntt0096487,3FPsMeQ6Ra4,\"Murphy threatens his competition, John Tunstall, with political corruption in order to get him to leave his property.\"\ntt0096487,cxgg3KTdRcM,\"Murphy sends one of his men to pick a fight with John Tunstall, but Charley intervenes and defends his mentor.\"\ntt0443295,E8LQ1SmVO2M,The North kids pull a trick on the Beardsley kids when it becomes clear that they rigged the bathroom schedule.\ntt0443295,x3jT6tQ_gJk,\"Frank tells Helen the romantic story about \"\"the beautiful lighthouse keeper.\"\"\"\ntt0443295,v3IyV96FX74,\"The Beardsley and North kids fess up to their involvement with their parents' break-up, and encourage them to get back together.\"\ntt0443295,NxnXB1ViFEk,\"The kids throw a party while their parents are out as part of their plan to break them apart, but it gets a little out of hand.\"\ntt0443295,t0R7IRtvvFA,\"The Beardsley and North kids decide to put their rivalry aside to team up, and break their parents up.\"\ntt0443295,k2C9QOtoreY,Frank's mission to get supplies for the house turns into a mayhem-filled outing.\ntt0443295,vFSAQ1Nj7fg,Frank's idea of bonding through sailing doesn't go as swimmingly as he'd hoped.\ntt0443295,rTCpK6ONu9M,\"Holding a business meeting proves difficult for Helen, who must deal with her rowdy children shuffling in and out of her work space.\"\ntt0469999,w7mr-fVLqis,Simon Vale kills Michael Cosnick.\ntt0469999,wVTFBeiqCSE,\"Michael Cosnick kills J. Donald Fisk, the man who has been investigating the Zodiac killer for years.\"\ntt0469999,rmqvWkh45gs,\"Michael Cosnick picks a pizza girl as his next victim, but has second thoughts about killing her when she arrives.\"\ntt0469999,kjRTvd8QRJI,Michael Cosnick kills two more female victims by gassing them.\ntt0469999,USKy5QYNY70,Michael Coznick kills two more people at Venice Beach.\ntt0469999,PjBQfqlstnw,Willie Harmon talks about his father with Simon Vale.\ntt1186830,2Qfa77SRZkc,\"Davus explains to Hypatia his theory of how the Earth is the center of the cosmos, creating a heated debate on God and creation.\"\ntt0469999,cOe_8-IWvmY,\"A Zodiac cult discuss the victims they've killed, as well as the copy-cat killer.\"\ntt0469999,SY3nCdfnsCQ,Michael Cosnick kills a couple who are looking to buy a car.\ntt0469999,hg27lxt2IFw,Michael Cosnick reads about the origin of the Zodiac killer and then contacts the writer Simon Vale.\ntt0469999,lWflJvuYww8,Michael Cosnick kills a man who is doing his laundry.\ntt1448755,sLECDbDoXaQ,Jen confronts Spencer and her parents about their duplicitous behavior.\ntt1448755,gZbzZaYK3Zo,\"Spencer faces off against Mr. Kornfeldt, who turns out to be a CIA agent.\"\ntt1448755,S-PPQ9aewqo,\"Spencer and his father-in-law, Mr. Kornfeldt, banter about mustaches, wives, and babies.\"\ntt1448755,Od2dajJAbEE,\"Spencer comes home expecting assassins to kill him, but instead finds a surprise party.\"\ntt1448755,Y_bIzO41o2c,Vivian tries to kill Spencer as Jen waits obliviously in the bathroom.\ntt1448755,3r2JiHZVEk4,Jen passes out just as Spencer comes clean about his career.\ntt1448755,6uaqkS1AiS4,Spencer escapes from Henry while explaining his secret life to Jen.\ntt1448755,1Jaq36snpLo,\"Spencer fights to the death with Henry, much to the surprise of Jen.\"\ntt1448755,1-lFBwn6bKg,Spencer meets Jen on his way to the beach.\ntt1448755,8rF5KWQw6YE,Spencer and Mr. Kornfeldt discuss marriage while sport shooting.\ntt1448755,e3siZO79KrM,\"Spencer and his wife, Jen, argue about their need for a pregnancy test.\"\ntt1186830,f5lTRa_ZJn8,\"After the Christians overtake the Library of the Serapeum and destroy its contents, Davus chooses to join the Christian forces.\"\ntt1186830,FGqPDYzAXdI,\"Hypatia reflects back on her life, and wonders why she hasn't been in love.\"\ntt1186830,2IVX_4BG7m4,\"As a mercy killing, Davus suffocates Hypatia, his master who he once loved.\"\ntt1186830,_lykwQIS_3w,\"Cyril gives the word of God during a Sunday Mass, and asks the government officials to kneel before the Christian faith.\"\ntt1186830,hZqVpO3_MP4,\"The pagans attack the Christians for insulting their gods, and leads to a vicious, bloody battle.\"\ntt1186830,5AujBlOtU88,A group of Christian's debate whether the Earth is flat or round.\ntt1186830,gqxV6mOE2L4,Hypatia and her students listen to a philosopher explain the heliocentric model of the solar system proposed by Aristarchus of Samos.\ntt1186830,s2U0dL0k9s8,\"Ammonius walks across fire to prove that his Christian god is the one, true god..\"\ntt0893412,yO4oRzCAc4k,Nora explains to Edward the reason she was afraid to be with him.\ntt0893412,ksFNCZ951Oc,Mary tells Bruno that she wants to be a part of his world.\ntt0893412,-AlKOlUgzaI,\"Edward surprises Nora by buying them a house, and proposing.\"\ntt0893412,LlWcSO9ok9g,Mary's car breaks down in the rain.\ntt0893412,zXnWUj1a8Ss,Mary discovers that her boyfriend Rodrigo is already married.\ntt0893412,oFon0yFgldk,\"Edward comes to Nora's party, and shares his true feelings for her.\"\ntt0893412,thOz5eO74hE,Mary comforts Nora when she discovers that her love interest is newly engaged.\ntt0893412,Bi2CHeMhNyM,\"Mary tells Rodrigo about her old house, and they share their first kiss.\"\ntt0893412,EodapLIzTnk,\"Mary discovers Rodrigo, the attractive new teacher's assistant.\"\ntt0893412,k2VevzNW4AY,Nora and Edward win their case.\ntt0893412,0R1F6r2-ngk,Nora and Mary decide to move out after Olivia humiliates them.\ntt0893412,E-dMy3oJGT0,\"Mary and Nora dance with their father on his birthday, when suddenly, he has a heart attack.\"\ntt1189340,NCqhkbAkzug,\"After Mickey Haller gets Louis Roulet's assault charges dropped, he has him arrested for murder.\"\ntt1189340,0SYBBmzZPOA,\"When Louis Roulet threatens Mickey Haller's family, Haller has Roulet beaten up by a gang of bikers.\"\ntt1189340,mPoxI4PmAl8,Mickey Haller rushes over to Frank Levin's after his murder to discover that his nemesis Detective Lankford is investigating the case.\ntt1189340,X7KoVUspHys,Mickey Haller cross-examines Charles Talbot.\ntt1189340,lfCVS3HWdjg,Louis Roulet threatens Mickey Haller's family after discovering that Mickey knows he's guilty.\ntt1189340,8qQg4bvTlho,\"Mickey Haller realizes that his current case is linked to a previous client, Jesus Martinez, whom he put away for life.\"\ntt1189340,7W78nWDG95s,\"Mickey Haller tries to convince Jesus Martinez to plead guilty, and receive a life sentence with parole, even though he maintains his innocence.\"\ntt1189340,h6M2ZbuGfYc,Fondness lacks between Mickey Haller and Detective Kurlen as they get into a heated exchange over the justice system.\ntt1189340,CcKPNcDGDLs,\"Maggie and Mickey hook up, but are faced with the reality of their situation the next morning.\"\ntt1189340,i2uV68pKreU,Mickey Haller lets Eddie Vogel know that he doesn't work until he's paid.\ntt1189340,HDUHC--wGt4,\"Mickey Haller meets his new client, Louis Roulet.\"\ntt1600195,YRG4Q2gIWjo,Dr. Bennett helps Nathan and Karen escape from the CIA.\ntt1600195,5eSrShL8dt8,Dr. Bennett gives instructions to Nathan in order to help him escape.\ntt1600195,Af2wrig588c,\"Nathan gets the chance to speak with his true father, Martin Price.\"\ntt1600195,kQUXf8oO73I,\"Nathan's deal with Kozlow goes awry, and he is forced to flee the stadium.\"\ntt1600195,IP0UFkE-Nng,\"Nathan responds to the online missing person ad, and Alek puts a trace on his computer to find his location.\"\ntt1600195,ohwhcMgHUKs,Kozlow attempts to kill Nathan and the others with a sniper rifle.\ntt1600195,6nvQySlxSWY,Nathan uses his training to fight off one of Kozlow's men.\ntt1600195,lDksLpsqHwQ,Nathan and Karen do their best to escape after discovering that a bomb has been planted in the house.\ntt1600195,dwMz7K0kr-M,Kevin forces Nathan to box with him after a night of heavy drinking.\ntt1600195,3fjlQw23hd0,Nathan and Karen explore their feelings for each other.\ntt1600195,yQi_ZJp9_jM,Karen and Nathan discover Nathan's picture on a website for missing children.\ntt0805619,hkHrNtJHbRQ,Ted Cogan accidentally meets a woman with a unique set of tricks.\ntt0805619,lsgl848rea8,\"Overcome by the ghost of Farzan, Ted Cogan struggles to protect his family.\"\ntt0805619,9MyynB2RnZQ,Ted Cogan grows concerned when his son Max comes home with a black eye.\ntt0805619,I2yuo_5AkCs,An unhinged psychic helps Ted Cogan understand his terrifying dreams.\ntt0805619,e1NkoFF-13U,Ted Cogan visits the scene of a murder and makes a horrendous discovery.\ntt0805619,sCUSUl7-4Qg,\"Unable to get the treatment he needs, Ted Cogan gets some helpful advise from a mysterious man.\"\ntt0805619,nZSxvozKoeE,Ted Cogan takes an elevator ride he won't soon forget.\ntt0805619,sOgO4lPPK1U,Ted Cogan is left in the dark after returning home from Iraq.\ntt0805619,D83XRiOVARQ,Ted Cogan discovers the horror of war after his men open fire on a suspicious van.\ntt0805619,Id3vqOPHk-4,Ted Cogan checks up on Army widow named April.\ntt0805619,gvoBpSAb-vM,Ted Cogan gets a painful message from beyond the grave.\ntt0339294,BAqabMWnAmk,Things get bloody when Watson bare knuckle boxes with The Leprechaun.\ntt0339294,j67MZXY33c0,The Leprechaun has an encounter with the LAPD\ntt0339294,Y6CMcllU8J0,Lisa wages battle against The Leprechaun and things go up in flames.\ntt0339294,kCqEADYRg8g,\"The Leprechaun enjoys a smoke, admitting he hasn't hit a good pipe in a long time.\"\ntt0339294,i5Y6BTlx37s,\"Despite her sawed off shotgun, Chanel falls victim to The Leprechaun, who takes a souvenier.\"\ntt0339294,6JSqeViZRU0,Doria gets a deep tissue massage from The Leprechaun.\ntt0339294,PyHK6QRniQ0,The Leprechaun grabs a bong hit and a snack in the kitchen.\ntt0339294,_U_s1OKHnlU,A shovel-wielding pastor with a drinking problem battles The Leprechaun with the power of holy water.\ntt0339294,vrujU3pc7-U,The Leprechaun's origin is revealed.\ntt0339294,tifUOGFTOBM,Jamie and his dog have a meaningful conversation.\ntt0339294,YOO8a-wBTy0,\"Emily and Lisa visit a psychic, who sees visions of what's to come.\"\ntt0929632,S_PvnzDlqmI,Precious plays with her newborn baby as she narrates her dreams for a better life.\ntt0929632,PlkdsidJA38,Precious reveals to her classmates and Ms. Rain that she is HIV positive.\ntt0929632,CekWztEL504,\"Precious severs ties with her Mother with a plan to complete school, and improve herself for her children.\"\ntt0929632,Fh1ZUliQDFg,A social worker comes to check on Mary who puts on an act that life is decent in the apartment.\ntt0929632,_-xCcoG6Wlc,Mary screams and curses at her daughter Precious for allowing a social worker to come to their apartment.\ntt0929632,GUw4Qqh5Th0,\"Precious and her baby are welcomed into the home of her teacher, Ms. Rain, who is a lesbian.\"\ntt0929632,3ZQFpUxopm4,Mary has a heartbreaking confession when questioned by Mrs. Weiss on why she allowed her daughter Precious to be abused.\ntt0929632,hFqDZ3vzyRw,Precious steals a bucket of fried chicken from a local diner.\ntt0082382,V-SMOiDv5pA,Justice Dan Snow delivers a eulogy at a funeral service for Justice Stanley Moorehead.\ntt0049096,TJ9f2rnjB84,Giselda tells Hawkins she's put the pellet with the poison in the vessel with the pestle; the chalice with the palace has the brew that is true.\ntt0344604,VKu1354bPug,Antoine discovers Louis making a big mistake.\ntt0088170,MPQvVBaOx2E,Uhura helps the gang beam aboard the Enterprise.\ntt0344604,jsL4-BxsZjA,Antoine and Blanche try to rationalize their passionate kiss.\ntt0344604,hvvTxyks7L8,Louis sets Antoine and Blanche up on a date.\ntt0344604,bbqRezPHMDQ,Blanche asks Antoine to kiss her when she knows that her ex-boyfriend is watching them.\ntt0344604,9GYgmwMfGXU,Antoine tries to help Louis get through his sommelier interview.\ntt0344604,kW7IPAaL7I4,Antoine meets Blanche for the first time at the flower shop.\ntt0344604,fvYD-2ggmcc,\"After Antoine and Christine get into an argument, Christine interprets Antoine's apology as a proposal.\"\ntt0344604,qO1-at2DUGU,Antoine reinterprets the suicide letter from Louis for the benefit of his grandmother.\ntt0344604,jBajVRGElXY,Louis' grandmother tells the story of how she convinced Blanche to break up with Louis.\ntt0387564,ZTGK6ChH494,Adam learns the horrifying truth of Jigsaw's game.\ntt0387564,HHxezNV6ntY,\"Zep arrives and Adam, thinking Zep is Jigsaw, exacts his gruesome revenge.\"\ntt0387564,YegA1WNRKnU,Adam and Lawrence think they've figured out that Detective Tapp is behind the game.\ntt0387564,7bmB4RhsYgQ,\"To Adam's horror, Lawrence saws off his own foot as Tapp chases down Zep.\"\ntt0387564,717gDCZQsdc,\"Jigsaw shocks Adam, foiling the plan he and Lawrence hatched to escape.\"\ntt0387564,qqWVQuCaB6Y,Adam searches his apartment when he hears an intruder.\ntt0387564,ZEqt7tr41Mk,A game of life and death is laid out for Adam and Lawrence.\ntt0387564,WzlAPD4Ttc0,\"Detectives Tapp, Sing, and Kerry investigate the gruesome death of Paul.\"\ntt0387564,PLBt2zwq_vU,Amanda must commit a gruesome act in order to free herself from a deadly contraption.\ntt0387564,5LZfv0tLZKE,\"After Tapp is slashed while rescuing a man from a booby trap, Sing is killed in another trap set by the Jigsaw Killer.\"\ntt0387564,iNSN6QhIWeA,Adam and Lawrence wake up to find themselves in a nightmarish situation.\ntt0285742,a6oC5iQB4u8,Lawrence draws portraits of Sonny and Hank while he waits for his execution.\ntt0285742,JMWhU1FfqP8,\"After the electrocution, Hank attacks Sonny for messing up the prisoner's last walk.\"\ntt0285742,0tRSAQUheo0,Events end tragically for Sonny when he stands up to his abusive father Hank.\ntt0285742,p_-Zm_G8cBI,\"Leticia yells at her son, Tyrell, for being fat.\"\ntt0285742,OxqTSDSxRwg,\"Leticia brings her son, Tyrell, to prison to say goodbye to his father, Lawrence, who is on death row.\"\ntt0395584,NOadx4ZICaQ,The Devil's Rejects go out in a blaze of glory at a road block.\ntt0395584,ujEbejephNM,A chicken salesman gives some tips to Bubba and Clevon on how to maximize the pleasure of sexual intercourse with a chicken.\ntt0395584,arQDNf6cjaw,The Devil's Rejects take a breather from bloodshed to enjoy some ice cream.\ntt0395584,tfvptl5VS08,The Devil's Rejects unwind at the local whorehouse while Sheriff John Quincy Wydell prepares to take them down.\ntt0395584,JXnNKqu3N3w,A maid discovers just how little The Devil's Rejects are concerned about leaving a motel room clean.\ntt0395584,yl0jujA2jLw,Sheriff John Quincy Wydell takes issue with a movie critic's comments about one Mr. Elvis Aaron Presley.\ntt0395584,7FN-chIhcNM,Baby Firefly demands entertainment from the two hostages in exchange for letting them use the bathroom.\ntt0395584,0N9Fzv7bYCM,Captain Spaulding commandeers a vehicle for official clown business...and he doesn't stutter.\ntt0395584,j42TrAVceCI,Otis B. Driftwood and Baby Firefly make their escape over the song 'Midnight Rider.'\ntt0395584,VjlGwSBvL6g,Captain Spaulding's new commercial is interrupted by a news report detailing the Firefly Gang manhunt lead by Sheriff John Quincy Wydell.\ntt0107387,1H0J9VhDCno,\"Tory thinks her leg is being caress by Nathan, but it is actually the leprechaun.\"\ntt0408236,QfrPUNMOS6E,Mrs. Lovett gives Sweeney the razors he has been missing so much.\ntt0408236,xamDprXBtBg,Sweeney arrives in London with Anthony.\ntt0123755,MG9L-S6J_18,\"Worth, Rennes, Quentin, Holloway, and Leaven meet, yet none of them know where they are, how they got there, or why they are there.\"\ntt0092890,P6fVrC-RQLg,Baby helps out Johnny with an alibi proving he didn't steal a wallet.\ntt0092890,7lShqpv3i24,Baby declares her love and passion for Johnny.\ntt0092890,LFhlnBzdOtk,Johnny describes his past relationships to Baby.\ntt0092890,XINddkzfTzM,The dance hall goes wild with a provocative dance led by Johnny.\ntt0092890,ypKSbnYOrwE,Johnny comes to proclaim his love for Baby to everyone at the dance hall.\ntt0107387,f8Cjlv6nBTg,The Leprechaun catches Nathan in a bear trap.\ntt0107387,x9L9S7jEv_M,The Leprechaun kills a shopowner by pogoing on his lung.\ntt0107387,ev7an6-CYpc,The Leprechaun breaks free of the crate and threatens Ozzie about the missing gold.\ntt0123755,B_DMSu-NVZ8,Holloway volunteers to examine the surface of the cube while holding onto a make-shift rope.\ntt0123755,h__j2aPe63w,\"As the group finds a way out of the diabolical cube, Quentin crashes their party.\"\ntt0123755,8AZk-d0z3ws,Quentin concludes that they've been going in circles after discovering the corpse of Rennes in another cube.\ntt0123755,3_dGBLwXBIE,Quentin threatens to kill Kazan when he sets off a sound-activated trap.\ntt0123755,tvIE50OJfxM,\"In the heat of an argument, Worth reveals himself to be the architect of the outer shell of the cube.\"\ntt0123755,n9-Wk6ulBuA,Quentin fights back when the others attempt to distance themselves from him.\ntt0123755,gv1nYk_OJjs,Quentin barely escapes a razor sharp booby trap.\ntt0123755,X7U_RxbkaIg,\"As Quentin and the rest of the group make their way about the cube, they stumble upon Kazan who is mentally handicapped.\"\ntt0123755,QiVfqVQ5t9A,Leaven discovers that doors with prime numbers lead to rooms with booby traps.\ntt0123755,K7Dd88h25kU,Rennes reveals himself to be a highly skilled escape artist and triggers one of the Cube's booby traps.\ntt0285742,y3zcF3YvK-o,Hank and Leticia reconnect as lovers.\ntt0123755,k8Tw4JhzORM,Alderson explores his environment and ultimately triggers a booby-trap.\ntt0092890,f2ugRkVMOuE,Baby dances with Johnny on a log because it builds better balance.\ntt0285742,x6FDJAu5yMc,\"In a deep state of grief, Leticia talks to Hank about her son.\"\ntt0285742,MtWRq5FXCbo,\"Hank drives Leticia and her son, Tyrell, to the hospital after a hit-and-run accident.\"\ntt0285742,MR93FRxKjTQ,\"Hank informs his father, Buck, that he quit his job as a corrections officer.\"\ntt0285742,8XkrkBt-8LQ,\"Leticia meets Hank's racist father, Buck.\"\ntt0092890,siTZSTZwJ0E,Johnny has to leave his job because of his romantic affair with Baby.\ntt0092890,iMA4bMMh44w,Baby apologizes to her father for lying to him about her romantic affair.\ntt0285742,ZiXcZtfAbf8,\"The strained relationship between Buck, Hank and Sonny Grotowski manifests itself when two African-American children visit the household.\"\ntt0092890,LnqAE4Rjdqk,Baby gets her father to help Penny after her illegal abortion.\ntt0092890,aiilV691CzY,Baby flirts with her lover Johnny during dance practice.\ntt0092890,-sYKI4A3uhc,Baby learns some difficult dance moves from Johnny and Penny.\ntt0092890,WRdy4CcRchU,Baby discovers dirty dancing with some help from Johnny.\ntt0375679,VAp9p0U1r4g,Snow falls on a Los Angeles filled with troubled people.\ntt0375679,MsSPAEtYaZE,\"When Officer Hansen asks Lt. Dixon for a new partner, he comes up with an embarrassing solution.\"\ntt0375679,EbarO9zF81Y,\"When Jean sees that the locksmith is a tattooed Latino, she demands that Rick have the locks changed again.\"\ntt0375679,_QXyyj1RiCE,Anthony and Peter discuss racial stereotypes before committing an armed car-jacking.\ntt0375679,GDrnSzfL-aI,Cameron confronts the police after his wife was molested by a racist cop the day before.\ntt0375679,EtvbEtPIGiA,\"Officer Ryan molests Christine while frisking her after pulling her husband, Cameron, over for a driving violation.\"\ntt0375679,oUTQFpVOWGE,\"Officer Ryan tries to save Christine, who he molested one day earlier, from a burning car.\"\ntt0375679,m6NeY3rTpJU,Daniel comforts his daughter after she hears what she thinks is a gunshot.\ntt0158493,LlQXhEOzLW0,\"Tommy visits drug lord Lennox at his mansion to propose that they go into business together to deal a new, more potent form of heroin.\"\ntt0375679,L-iyxIincCI,\"When Farhad puts a gun in Daniel's face, his daughter tries to save him with her magic cloak.\"\ntt0107387,B3v1kEzT4bA,Tory finds a four-leaf clover to destroy the Leprechaun.\ntt0107387,W8Iw5W2_bbM,The Leprechaun replaces his eye with an eyeball.\ntt0107387,IAYQUTYc_tA,The Leprechaun crashes into the gang with a miniature car.\ntt0107387,aNUs1A_sUCc,Tory gives the Leprechaun his precious gold.\ntt0107387,IhZrBku_eCA,Tory is chased around the corridors of a hospital by the Leprechaun.\ntt0107387,Jrvr-VIymgo,Ozzie tracks down the end of the rainbow and finds a pouch of gold.\ntt0107387,jr_bZ2gzRIY,Tory takes offense at a male chauvinistic comment from Nathan and decides to tough it out at the house.\ntt0158493,yp6SO-tZpJw,\"When Black gets an attitude, Tommy puts him in his place by beating him up, firing shots, and making him strip in front of everybody.\"\ntt0158493,r0Iq2_euH44,\"Tommy, Sincere, and their crew rob a nightclub.\"\ntt0078788,k26hmRbDQFw,Lieutenant Colonel Bill Kilgore orders a massive napalm strike on the tree line.\ntt0078788,WFsMguGrUVo,Captain Benjamin L. Willard waits in a Saigon motel room to be assigned a mission. Getting softer. Getting weaker.\ntt0078788,30QzJKCUekQ,Lieutenant Colonel Bill Kilgore attacks a Vietnamese village from the air while the music of Wagner rings out as a battle cry and intimidation tactic.\ntt0158493,8upFfAQcfEM,Reverend Saviour delivers a speech asking Tommy to choose light over the darkness while Kisha fights for her life.\ntt0158493,xi5rxsY_Nsw,\"Sincere advises Shorty, a 12-year-old kid older than his years, to get out of the game and change the course of his life.\"\ntt0158493,Wo3XrThPZzo,\"Shameek and Big Head Rico play a game of cat and mouse at an Omaha strip club, resulting in Rico's murder.\"\ntt0158493,HGCOxt0M7cE,Things get heated between Wise and LaKid when they take hits at each other's egos.\ntt0158493,f8znwPYsuFE,\"Tommy, cocky with all the money he's making in Omaha, ticks off local drug dealer Big Head Rico.\"\ntt0158493,TGyqMjtaZiw,\"Sincere lends his support to Tommy, who is panicked because his operation has fallen apart and the feds have raided his house.\"\ntt0158493,JnFHE_crn0o,\"In Jamaica, Tommy poses as a homeless man in order to murder Sosa as a favor to Lennox, while back in New York, Tommy's house gets raided by the feds.\"\ntt0158493,bxegamvM8ME,\"Tommy, Sincere, and Mark return to Tommy's house after robbing a nightclub.\"\ntt0408236,gUrSHyV7Opg,Sweeney has his gruesome vengeance on Judge Turpin.\ntt0408236,qZmteh2hT9A,Sweeney and Anthony sing about Johanna as Sweeney cuts the throats of customers.\ntt0408236,Pn_XD7jDwFQ,\"Mrs. Lovett, with the help of Toby, re-opens her pie shop with a special new recipe.\"\ntt0408236,O1-lkTgl-ws,Mrs. Lovett imagines her life with Sweeney after they escape.\ntt0408236,srR56T9-j5M,Sweeney challenges Pirelli to a public shaving contest.\ntt0408236,hTzqKlFConk,Sweeney explains his plans of vengeance to Mrs. Lovett.\ntt0144084,PpUWjff_OcM,Patrick Bateman makes fake dinner reservations at a fancy restaurant.\ntt0144084,MCo6TtUkCWc,\"Patrick Bateman tries to strangle his associate Luis Carruthers, but his intention to murder is misconstrued.\"\ntt0144084,XMmlJnxP7Y4,\"Patrick Bateman waxes on about Phil Collins' solo career as he orders the prostitutes Christie, and Sabrina, to strip and dance.\"\ntt0144084,nRTjNEP6v2U,\"Looking around at the fellow yuppies and Wall Street colleagues, Patrick Bateman wraps up his own evil and psychotic feelings.\"\ntt0144084,0S7olzuojGY,\"Patrick Bateman explains the beauty of the Whitney Houston song, The Greatest Love of All,\"\" to Christie and Elizabeth.\"\ntt0144084,qizUajHk7r0,Patrick Bateman chases after the prostitute Christie with a chainsaw.\ntt0144084,Ruw9fsh3PNY,\"Patrick Bateman discusses one of his favorite songs from Huey Lewis & the News, and then murders Paul Allen with an axe.\"\ntt0144084,7OARf8dNLBc,\"With a police helicopter circling the office, Patrick Bateman calls his lawyer to make a confession about all the people he has killed.\"\ntt0144084,_OtcwxERu50,\"Following the instructions of an ATM, Patrick Bateman attempts to murder a cat, which then escalates into a spree of murders.\"\ntt0078788,HSWtc01BlqM,\"As the villagers hold a ritual sacrifice, Captain Benjamin L. Willard assassinates Colonel Walter E. Kurtz -- completing his mission.\"\ntt0078788,GjB8z0Bvi14,General Corman and Colonel Lucas assign Captain Benjamin L. Willard his mission -- 'to proceed up the Nung river and terminate Colonel Kurtz's command.'\ntt0312329,B1kQLmi0q5U,\"Jackie introduces Luther to his new trainer Felix, and the two get off to a rocky start.\"\ntt0078788,JInEj95yoUQ,\"At the very last military outpost at the Do Lung bridge, Captain Benjamin L. Willard attempts to find the commanding officer in-charge, but all that exists is chaos.\"\ntt0078788,_C672_Fkzms,The Photojournalist tries to explain to Captain Benjamin L. Willard the method and the madness behind Colonel Kurtz.\ntt0144084,RjKNbfA64EE,Patrick Bateman describes his morning routine of vanity.\ntt0144084,AD5N-le_1es,Patrick Bateman and his associates flaunt their business cards.\ntt0078788,3T-VAi2Xqq8,\"Captain Benjamin L. Willard has his first encounter with the man he was sent to terminate, Colonel Walter E. Kurtz.\"\ntt0144084,3-Q6PbschQI,\"Patrick Bateman jokes around with Craig McDermott and David Van Pattern over the topics of women, and serial killer Ed Gein.\"\ntt0120151,_r-R-b72rL0,Steve offers up his own children to his friend Danny.\ntt0120151,1i8l526qhzY,Danny tells his wife Jennifer his hopes for their child.\ntt0261289,EMOE8Ub7-zs,\"Ray Harris scolds his employee Joe Tyler, asking him to be more like Tony.\"\ntt0312329,bBzNPO001NU,Luther opens up to Jackie after she shows him his new apartment.\ntt0261289,0BF9MkmTBjk,Kate talks to Joe Tyler with her body.\ntt0089945,L-sb2Xeqn14,Rex O'Herlihan teaches Peter the basics of being a sidekick.\ntt0089945,BPUpzQ4vX_o,\"To escape danger, Rex O'Herlihan performs a high stepping routine with his horse, Wildfire.\"\ntt0261289,rAKR-BBQY2M,Joe Tyler invades Amanda's house to serve Sara Moore divorce papers.\ntt0068245,sqmzvduQ-JY,Big Joe and his gang steal what Jake and his friends have left of their food and money.\ntt0068245,HuzpoTGja5M,Marshal and his posse find Big Joe's gang and shoot them out of the shack.\ntt0068245,KZrcqIvvB_0,Jake cleans a rabbit while the others watch.\ntt0068245,cHQcdgc_Whk,Jake puts a frog down Drew's shirt.\ntt0068245,oN832LNaq4w,\"Drew and Jake start a fight, breaking everything in the house.\"\ntt0348505,nXIu-RlvPJM,Peter confesses his feelings for Stella.\ntt0348505,wbMLxj0lKAU,Stella leaps from a clock tower.\ntt0348505,rllKhsQXZXI,Peter reminds Stella of her son's death.\ntt0348505,bXRv0TjJQZ0,Peter offers Edgar an incentive to talk.\ntt0348505,rtqgJvhrswY,Edgar is arrested after meeting with Stella.\ntt0348505,D3tnuA1OazI,Max prepares Stella for the sadness ahead.\ntt0348505,xSyvjgWMsKc,Peter asks Stella about her trips to London.\ntt0348505,B7FkLh0uqdc,Edgar stows away in the trunk of Brenda's car.\ntt0348505,7khCMEgY5wc,\"Peter, Jack, and Bridie handle Stella's scandal.\"\ntt0348505,rhNty595BeI,Edgar asks Stella where Max got his adventurer's spirit.\ntt0218182,PTg0wFv6dZ4,Colm discusses an epiphany he is having with George.\ntt0218182,xxfZmz7TxSo,Colm meets with the IRA agents to discuss their business proposition.\ntt0218182,3RgRVQqUhhM,Colm and George are harassed by some IRA agents when they are parked on the side of the road.\ntt0218182,1fdta94pfxc,Colm and George are interrogated after one of their toupees is found at a crime scene.\ntt0218182,MrL_uWnwPq0,Colm and Bronagh are shocked when they return home to find a stranger naked on the couch.\ntt0218182,rhQ5dWLFLPM,Colm and George have a little misunderstanding with a potential customer.\ntt0218182,uEJ_Ak34ias,Colm and George have the terrifying pleasure of meeting The Scalper.\ntt0218182,qZIIx-X5Bbc,George tells Colm about his high speed pursuit in a Ford Escort.\ntt0218182,YieQdHA9uIA,Colm and George get to know each other over some poetry.\ntt0118073,05nRqVJlunA,The Brady kids drag Trevor to the mall for a music-filled shopping trip.\ntt0118073,DEHpRuG-P94,Marcia and Greg share a room for the first time and are surprised when they see each other in a different light.\ntt0096316,gj-Rl-cgKxM,Preston invites a car chase to show off the Tucker Sedan.\ntt0096316,CZaS2CCnFYs,\"After the jury finds him innocent, Preston invites everyone to a ride in a Tucker Sedan.\"\ntt0096316,djMYTM1p318,Preston blames the hypocrisies of big business and bureaucracy for destroying innovation.\ntt0096316,eL9aiYpAyI0,\"After some setbacks, Preston shows his prototype to the public.\"\ntt0096316,iwXsuJXUau4,Abe reveals his criminal history and decision to resign.\ntt0096316,Cfcaik7bDyg,Preston presents evidence of the negligence of The Big Three automotive companies to bureaucrats in Washington D.C.\ntt0096316,K-Tad1Lgw7k,Preston is unfazed when the prototype nearly crushes Alex.\ntt0096316,bIHeoOh2F7o,\"Preston unveils the prototype for \"\"the car of the tomorrow.\"\"\"\ntt0096316,l-vk0fgFGd4,Alex offers Preston his design improvements.\ntt0406158,7vp7Lpjl_vk,\"Evelyn finds her soul mates in The Affadaisies, a group of women who pool their resources to enter contests.\"\ntt0406158,oXRixZ82ZqU,Kelly and Evelyn ponder eviction until a prize arrives at just the right time.\ntt0406158,FVJX6ODlvFY,Evelyn watches over her adult children as they pack up her belongings.\ntt0406158,OOBt6EktEVg,Evelyn breaks down after she realizes she may lose her house.\ntt0406158,x9u_a8eEPlM,\"Evelyn tells her daughter, Tuff, to enjoy each moment to the fullest.\"\ntt0406158,SqISCN4gNNA,Kelly apologizes for the comments he made about Evelyn and her contests.\ntt0406158,A_6e5AilC6k,\"Evelyn races around the supermarket, stuffing her cart with food that she won in a contest.\"\ntt0406158,NGceQLxvFNE,Kelly gets violent and smashes the family's new freezer when his baseball team struggles.\ntt0406158,yn_iiD8lxZQ,Kelly signs the mortgage papers as Evelyn watches.\ntt0051364,OMEv7FPE7CQ,Sara tells Kay that she was in love with her late husband.\ntt0051364,pV2y0et0TT4,\"Sara explores the house, and looks for objects that remind her of her lost love.\"\ntt0051364,KRMxuHWOcTI,Alan asks Kay what life was like when her husband was away in the war.\ntt0051364,RXC48uE7UzM,Kay questions Alan about the behavior of her late husband during the weeks before he died.\ntt0051364,Upww38-2fyo,\"Kay comforts Sara, and reminisces about her late husband.\"\ntt0051364,2QCUgqD37fk,Sara discovers that the man she loves was killed in an airplane crash.\ntt0051364,8O97aGzvU3g,Sara confesses to Mark that she has agreed to marry her boss.\ntt0051364,24QQqGjDEKM,\"Mark comes clean with Sara, and tells her that he's married.\"\ntt0145653,Nfah2Cy_mwU,Frank is repentant.\ntt0145653,WQ71crXovIk,Aunt Aggie purchases Frank new clothes for his new job.\ntt0051364,84ybwb86tKs,Mark and Sara wait in anticipation as a technician dismantles a nearby bomb.\ntt0145653,P9aAc9ibVWM,Frank nearly dies of Typhoid and his father Malachy kisses him goodbye.\ntt0145653,8XglzsFYAJU,Frank stands up to Laman Griffin.\ntt0145653,dQ0sgbvSQAk,Malachy comes home drunk and offers his sons Friday pennies.\ntt0145653,yq2t7SjUSoI,\"The school boys tease Frank's poor, home-repaired shoes so Frank shows up to class barefoot.\"\ntt0060086,C4dkYaeNLuc,Alfie overreacts when he finds out from the doctor that he has an infection.\ntt0060086,AWJPmyL5uHI,\"After being introduced to his newborn son, Alfie continues to charm the women he encounters.\"\ntt0060086,AF9cqjNt9uc,\"Alfie gives some parental advise to Gilda, and talks about his relationship with his son.\"\ntt0267248,YSQ_eohNRrM,Katie replays her last argument with Embry in the cave and Wade realizes she's been seeing things the whole time.\ntt0267248,vAyq-3z1SYo,Katie shares with Embry her memories of when her dad left.\ntt0267248,i1lkrSFlpss,Harrison confesses to Katie that he is in love with her but Katie doesn't feel the same way.\ntt0267248,70yAXCvid4k,Katie's friends question her about her future plans and Samantha gets annoyed because Katie is being irrational.\ntt0267248,I1xQMJjTMLQ,Katie finally hears why Embry had left without saying goodbye.\ntt0267248,Gx7y8ecslp4,Dr. David Schaffer makes a pass at Katie.\ntt0120151,Nf1uvt0zKFU,Jennifer and Nancy meet with Richard to discuss the proposition to buy their perfume.\ntt0267248,E0NZlvha-KQ,Embry pushes the choir to sing like they are singing to God.\ntt0267248,XAm-zfxcktE,Katie remembers the time she and Embry spent together.\ntt0267248,e8J56HbIyvc,Katie interviews with Robert Hanson and his colleagues for Mckinsey & Company.\ntt0120151,S4YcLymVzXw,\"Jennifer goes to say goodbye to her husband, Danny, when she finds he's traveling with another woman, Lindsay.\"\ntt0267248,b2WuWXRVdfk,Katie's friends drag her out to a party on a Friday night.\ntt0120151,8kiNT3_17i8,\"Jennifer, Nancy, and Richard discuss the sale of the 7th Scent Perfume.\"\ntt0120151,DTXWi9iR2F0,Dr. Chin discusses options for pregnancy with Danny and Jennifer.\ntt0312329,x0yNzsNUoK4,Luther takes a cheap shot at his sparring partner during a training session.\ntt0120151,ffR1X6gndvo,Danny and Jennifer enter the San Francisco Fertility Clinic.\ntt0120151,XXVbPZX6qz8,\"Nancy divulges all the details of her love life with the mortician to her friend, Jennifer.\"\ntt0120151,LntFGGP92xQ,Danny and Jennifer embark on their fertility tests.\ntt0312329,3JLDAyAEaqI,A heated argument ensues after Jackie lets a TV crew into Luther's locker room before a fight.\ntt0120151,1YGyKYK1HuY,Danny calls on his wife Jennifer to help him provide a sample for the clinic.\ntt0312329,w3HklXic1eY,\"Jackie gets her first look at Luther, who gets into a fistfight with her client over a drug feud.\"\ntt0312329,75A7PFuBqFk,\"Jackie and Felix prepare Luther for his first fight, which he must win to continue his boxing career.\"\ntt0118073,gtHSeq99_l8,The Bradys build a house of cards to settle an argument between Greg and Marcia.\ntt0118073,AA_yIRZNg1s,Mike invites Trevor to stay at the Brady house for as long as he needs.\ntt0118073,_hMtM3QndW8,Mike and the family come to save Carol from the greedy Trevor.\ntt0118073,gz-Uv494KFk,Trevor shows up at the Brady house pretending to be Carol's first husband.\ntt0118073,JR_bnlkaEss,Marcia and Greg go on separate dates but just end up spending time together.\ntt0118073,yBwa0z0kCrg,\"At the anniversary celebration, Greg and Marcia get to know each other a little better.\"\ntt0118073,6Tjcx6B5lbA,The Brady Bunch sings and dances to pass the time on a plane ride.\ntt0060086,nSJxx_KUEes,Alfie gives Harry some life advice.\ntt0060086,FyS7kFIZJ6k,Alfie walks in on Ruby with a younger man.\ntt0060086,7O6j3eHsueM,\"Alfie seduces his friends wife, Lily.\"\ntt0060086,9Vve6PAxRpk,Alfie flirts with a customer he photographs.\ntt0060086,mQAlpiB3_FQ,Alfie get's involved in a scuffle with Frank that escalates into an all-out bar fight.\ntt0060086,B0FZhLeHy7A,Alfie explains the difference between married and single women.\ntt0078757,v-UIgJgiPJs,Maria seduces Hal.\ntt0078757,GlHL_ippO8k,Maria finds Hal to be an unlucky presence at the roulette table.\ntt0258038,y587UlBV9jg,\"Now living on a farm in the country, Pootie quickly seduces the local sheriff's daughter Stacey when she comes to bring him some pie.\"\ntt0258038,WSIS3ZUDzzY,\"Lecter explains to Dirty Dee and Froggy that the company no longer has need for Pootie, and wants him dead to ensure their nefarious plans go smoothly.\"\ntt0078757,ZW66_8a4rqY,Hal and Maria argue about the meaning of sacrifice.\ntt0078757,VzZJ9-El-a4,Hal chases Maria across land and sea so he can apologize for the night before.\ntt0373908,RemcXMCCQVk,\"Ralph and Ed attempt different methods to make money, including breakdancing.\"\ntt0078757,pFxOuE_0wqc,Hal and Maria go on a romantic date to the French countryside.\ntt0078757,qdy5TZDOwm0,Hal and Maria share a moment of honesty after Maria sees Hal's Film for the first time.\ntt0268397,wNqqn5NPJ8k,\"Jimmy Neutron accidentally leaves his new invention, Burping Soda, in the hands of his parents.\"\ntt0078757,fPWCnwZEOqE,Hal and Maria discuss open marriage arrangements in bed.\ntt0078757,j3k3xWKZIn8,Hal and Maria share a romantic moment in a boat.\ntt0795351,Qns26Wdvph8,Emily locks herself in her room in order to hide from Lilith.\ntt0099587,FXPNIj7q0lU,Camparelli explains the origin of his name.\ntt0795351,9J0DZojg6-g,Emily and Detective Barron intervene when they find Edward and Margaret attempting to kill their daughter Lilith.\ntt0795351,xCI_stZgRHc,Lilith throws a tantrum in an elevator when she doesn't get her way.\ntt0795351,HEnmNkRRmHs,Doug is forced to face his biggest fear when hornets attack in the bathroom.\ntt0795351,sxtENaaaPpQ,\"Doug attempts to get Lilith to open up, and share her fears, but she turns the table on him.\"\ntt0795351,hgCr8TOxcCo,Emily drives her car into a lake in a final attempt to kill Lilith.\ntt0795351,-NW-w5Z_vpk,Emily finds out that Diego murdered his parents.\ntt0098625,vJFN-ZPqCiQ,Ned demands to be allowed to march in the processional so that he can get across the border to Canada.\ntt0098625,ZvMDRj9jFaE,The Deputy begs Ned to help him stave off the temptations of adultery.\ntt0795351,a861J6gxqmg,Lilith breaks into Emily's bedroom.\ntt0098625,w71n9tHYuIw,\"Thinking Ned is a priest, the Deputy brings him to see the woman with whom he's been sleeping, Molly.\"\ntt0098625,qGrKwxglKJ0,\"Bobby, about to be executed via electric chair, shoots his way out of prison, dragging Ned and Jim along for the ride.\"\ntt0098625,mMyrxQNItpY,A young monk asks Jim why there's a clothes pin on the collar of his stolen shirt.\ntt0098625,mFBIlYRQBLI,\"Ned, at the end of his rope, prays to the Madonna to help him escape into Canada, when Father Levesque comforts him with words of wisdom.\"\ntt0098625,xiNxK0Xiv2E,Ned and Jim try to blend in during the pre-meal song at the monastery.\ntt0098625,sehGLkGe-iI,\"Jim, an escaped convict posing as a priest, is encouraged to bless the food for a room full of clergymen.\"\ntt0098625,9lInNK2jtx8,Jim has to improvise a sermon when he wins the lottery for the privilege of preaching.\ntt0314676,S7ZhqwAzKTQ,The Chief of Staff tries to to cheer up Dan Dark with a conversation but she fails when she mentions his visits to a psychotherapist.\ntt0314676,wwwhtUdGOVM,\"As Dan Dark hallucinates, his detective alter ego saves him from the hoods trying to kill him.\"\ntt0314676,fk2MU617-Bc,Two hoods are stranded in the desert trying to find answers.\ntt0314676,vj6kMfad_2E,Dr. Gibbon plays a word association game with Dan Dark to get a diagnosis of his mental health.\ntt0314676,HBrzlqErO_E,Dan Dark accuses Mark Binney of being a pimp.\ntt0314676,kKlihXmSqPE,Dan Dark tries hard not to be turned on by Nurse Mills as she rubs lotion on his skin.\ntt0314676,IrDrwaot490,\"During a performance, Dan Dark is targeted by a pair of hoods.\"\ntt0314676,5ud6mZ5SULk,\"While the hospital staff evaluate Dan Dark's skin condition, he begins to hallucinate a musical performance.\"\ntt0134067,sheRsZ2HOYI,\"The babies must take care of the infant Dil, who just pooped himself.\"\ntt0314676,-A-fBbIXbPo,\"Young Dan Dark watches his mother, Betty Dark, cheat on his father with his business partner, Mark Binney\"\ntt0134067,SYHN3rt-R5Y,The Pickles Family has a baby shower which becomes chaotic when Didi starts going into labor.\ntt0134067,PbwgDqZazAU,A wolf comes to attack the babies but the brave dog Spike saves the day.\ntt0134067,2fEZc4acGC0,The babies are surrounded by angry monkeys but they escape in the Reptar Wagon.\ntt0134067,tlSZa51g_rc,Tommy gets upset when his brother gets more attention from their parents.\ntt0134067,WzDlb8zf7gQ,Tommy is upset when his infant brother does not share.\ntt0134067,nOFfrd6bOh0,\"Tommy Pickles fights with his brother Dil Pickles, while Stu Pickles fights with his brother Drew Pickles.\"\ntt0134067,Wpen_d9INlw,\"Stu Pickles shows off his invention, the Reptar Wagon, a wagon for toddler transportation that dangerously shoots fire.\"\ntt0134067,MOKKPloglVE,The Pickles family welcomes a new baby boy.\ntt0134067,ZCz2Ob5_-bg,\"The Reptar Wagon, carrying the babies, gets loose and speeds around town.\"\ntt0062153,Xbf61_Fgldo,Agent Masters comes clean about his identity to his strangely unsurprised therapist Sidney.\ntt0062153,AL2Qj_h_d-o,Sidney starts to see spies everywhere as he continues to fray at the edges.\ntt0062153,BuwF3dRJiS8,\"The President of The Telephone Company explains their nefarious scheme for worldwide connectivity to Sidney, who gives him the opinion of a qualified psychiatrist.\"\ntt0062153,bXZFFinWVYw,FBR Agent Sullivan questions Bing Quantrill about Sidney's whereabouts.\ntt0060736,BFpoIHexhKQ,The Man and a brazen ivory trader hunt elephants for their tusks while on safari in Africa.\ntt0062153,3PHLmv4Zzu0,Old friends Agent Masters and Kropotkin reminisce on the spy game and discuss the forces after Sidney.\ntt0062153,VgKqo3TvZoI,\"After escaping Washington, Sidney gets to know average -- but very forward thinking -- host Wynn Quantrill, and his average American family.\"\ntt0062153,JmElZmlYkHU,\"As Sidney and a new friend get to know each other, assassins pile up around them.\"\ntt0062153,gRxu0ooBrPE,Agent Masters remembers the painful moment from his childhood when he first learned about race.\ntt0062153,5XINVbpWRmw,\"A few weeks listening to the problems of a president can wear anyone down, as Sidney learns when his job interferes with his life.\"\ntt0060736,kdbGqJtHWQg,The Man skins and eats a snake for sustenance while one of his pursuers runs into some bad luck with a cobra.\ntt0060736,nNLk8GMdFd8,The Man races to the safety of a trading outpost while being chased by a group of African warriors.\ntt0060736,lk1As4QnaCc,The Man diverts the attention of enemy soldiers during a village raid to save a young boy.\ntt0060736,0SHMCN-6-IM,The Man engages two of his pursuers in deadly combat.\ntt0060736,mydc8K7yaZI,The Man becomes human prey when a group of African warriors set him free to be hunted.\ntt0060736,lNHheEljm5s,The Man uses flaming arrows to create a blazing barrier between him and his pursuers.\ntt0060736,ZpJvQAs3_98,The Man eludes a group of rifle-wielding soldiers by sliding down a waterfall.\ntt0419887,ZHNyG9ykGDA,Amir and Soraya get married and enjoy the wedding celebration.\ntt0060736,DPPoZpw3NOg,An army of native warriors ambush the camp of an ivory expedition in Africa.\ntt0419887,ky1W2n5RilM,Young Amir and Young Hassan enjoy flying their kites on an Afghanistan afternoon.\ntt0419887,Jhvq7EGVtUg,Amir enters into Taliban-occupied Afghanistan.\ntt0419887,7BEpbVXCbvo,Baba refuses to be medically treated by a Russian-American doctor.\ntt0419887,gbbbs1uWxvo,Amir reads a letter from his childhood friend Hassan.\ntt0419887,3jEZ_y7_kfs,Amir has a grand birthday party.\ntt0419887,20zF8Ug0MjM,Amir tells his story ideas to his friend Hassan.\ntt0419887,1TroueqxAtM,Amir and Hassan compete in the kite-fighting contest.\ntt0419887,ypf6WHYpeRU,Amir teaches Sohrab about kite flying.\ntt0366174,BZ1KEaetIwM,Aaron hunts down two deer hunters.\ntt0366174,2HgE2gZhovI,L.T. tracks a wolf and sets it free from the snare around its foot.\ntt0419887,4amekKHX28Q,Amir meets his future wife Soraya for the first time.\ntt0366174,p7zF3vZL-4s,L.T. and Aaron fight in the woods.\ntt0366174,F7UEddgJxrE,Aaron hunts down and kills a Serbian Commander.\ntt0366174,Fy_utfWemC4,L.T. and Aaron fight to the death.\ntt0366174,QSQTYxhlIog,L.T. and Abby argue over the best way to stop Aaron after he escapes by diving into the river.\ntt0366174,vdq609Xci-g,L.T. teaches Aaron how to kill.\ntt0373908,V0MF8uNW_gc,\"Ralph, Ed, and Dodge begin to train Iggy the Greyhound for the big race.\"\ntt0366174,xVpk12wYQ5g,Aaron gets away from L.T. and Abby.\ntt0373908,7UhOWJw9eys,\"Ralph, Ed, Alice, Trixie, and Dodge nervously watch as Iggy runs in the big race.\"\ntt0373908,g5lJIy5IcWc,Ralph attempts to put cayenne pepper on his mother-in-law's dinner but his plan backfires.\ntt0373908,LhbHp9ey_sU,Ed and Trixie pay a visit to Ralph and Alice's rundown apartment.\ntt0373908,G5nY_snMhic,Ralph reveals his latest bad investment to Alice and Trixie.\ntt0373908,hUAGX1IOMr0,Ralph and Ed try to convince the crowd that Iggy deserves to be able to race despite their financial situation.\ntt0373908,2Bml42cWPpo,Ed shows Ralph a hidden train car underneath the city.\ntt0373908,xVc_GWABEFk,Ralph and Alice discuss their dreams.\ntt0373908,oIu0P3gXxsI,\"Ralph and Ed meet Dodge, their new Greyhound trainer.\"\ntt0044672,aQRjyav-x8o,Holly and Buttons the Clown perform a song for the rest of the circus crew.\ntt0044672,vykvU-52g6w,Klaus plays a dangerous game with Angel because he is jealous of her interest in Brad.\ntt0044672,jDjZ_Dh6HSM,Buttons the Clown talks to Holly about love.\ntt0044672,0Nn_t_RfYS8,The circus is saved when a parade brings in a huge audience.\ntt0044672,K9ITp_xSaxE,Klaus tries to save Angel by warning the circus train of the stalled train on the tracks.\ntt0044672,XEQJU3VPjHU,The Great Sebastian arrives at the circus with a police escort.\ntt0044672,BeRTEiGRbw8,Cecil B. DeMille introduces the circus.\ntt0044672,nIhrGSxslzQ,Holly and The Great Sebastian attempt to one-up each other in a game of high-flying acrobatics.\ntt0044672,7qPmEvrv3HQ,The Great Sebastian is injured while attempting a high-flying trick with no net.\ntt0191133,xWpMF_EFqyc,Lucius gives Darrin a refresher on his home town.\ntt0191133,dMOQv0rb6DY,Lilly and the choir work to get the inmates' approval in order to perform at the Choir Explosion.\ntt0191133,w6n3WpRNWTs,Darrin walks Lilly home and gets a goodnight kiss in return.\ntt0191133,8UMJAkQqhcM,\"Darrin holds open auditions for the church choir, but is appalled by the singers' lack of talent.\"\ntt0191133,b7Dxy34dFyY,Darrin is fired from his job when a history of fraudulent activity finally catches up with him.\ntt0191133,WI00FLWTRrY,Darrin changes his tune about leading the choir after hearing the stipulations of his late aunt's will.\ntt0191133,gjWdFgV-Vz8,Darrin is smitten when he hears Lilly sing for the first time.\ntt0191133,rWGj8MCBBnc,Darrin interrupts his aunt's funeral to take a phone call from work.\ntt0191133,UEr47WrS7Ys,Darrin listens as a barbershop quartet spontaneously bursts into song.\ntt1305806,FAWPEOWyWN4,Sydney witnesses the fiery destruction of a Chinese restaurant through a lifelike flashback.\ntt0191133,aJh1RC2Z474,\"Paulina objects to Lilly joining the choir, but Darrin leaves her with no choice.\"\ntt1305806,gJCMd15eaW8,Sydney has a violent flashback to a burning factory while sitting alone in her apartment.\ntt1305806,2xRNmBGvfSk,Sydney and Dr. Faulkner rush to save a group of people from a dangerous explosion that Sydney has foreseen.\ntt1305806,Il5lC0E0nqM,\"While seated in a cafe, Sydney is frightened by the presence of a disturbed ghost.\"\ntt1305806,KtBMZ6VAZyI,Sydney comes face to face with the dead girl whose eyes were used to repair her vision.\ntt1305806,JRQJyeZ0wkY,Sydney sees a strange figure after she successfully undergoes an eye transplant.\ntt1305806,Q1WdHuNv1uo,Sydney is confronted by threatening ghosts on the way up to her apartment.\ntt1305806,RvQ1y_CPuDw,Sydney enters a dark basement and takes part in a flashback of Ana's death.\ntt0085407,6-RSVTLojGU,\"When touching Dr. Weizak, Johnny experiences visions of the doctor's past.\"\ntt0085407,HG3e03wWQu0,Johnny arrives at the crime scene to put his powers to the test.\ntt0085407,-NgmhVRFApQ,Sarah tells Johnny he's the talk of the town.\ntt0085407,1Pcd6RZexJI,Politician Greg Stillson and Roger Stuart discuss campaign donations as Johnny arrives.\ntt0085407,zcZJF81jt4w,Johnny attempts to assassinate President elect Greg Stillson and as he begins to shoot the President takes an unexpected cover.\ntt0085407,Tj9M34DzAKo,\"As Johnny shakes hands with Presidential candidate Greg Stillson, he discovers his true ambitions.\"\ntt0085407,MoRaxm7lK8g,Johnny after waking from a 5 year coma has his first psychic experience.\ntt0085407,fltSq_QHbbk,Johnny and Sheriff George Bannerman investigate the house of Deputy Frank Dodd after finding out he is the killer.\ntt0085407,y-TUmx2Ow74,Johnny confronts Roger Stuart about the fate of his son Chris.\ntt0072848,n1pSObsJ_hk,Tod and his neighbors watch as two roosters fight to the death.\ntt0072848,wFSWmfqMp7o,\"When Homer stomps on Adore outside of a movie premiere, an angry mob tortures him in return.\"\ntt0072848,jJ_p_xhMEvU,\"During a film shoot depicting the Battle of Waterloo, the wooden stage collapses and causes many injuries.\"\ntt0085407,P0ePytsVcpI,Johnny Smith suffers the car accident that gives him psychic powers.\ntt0072848,hfW-fzTbpRg,\"After Tod goes to the movies with Faye to watch her small part in a movie, Tod steals a photograph from the lobby to impress her.\"\ntt0072848,cuK7JbG06ho,\"Tod, who works as an art director in Hollywood, gets assigned to work on a new Battle of Waterloo movie.\"\ntt0072848,ajE9h1zUbMs,Tod meets vapid starlet Faye.\ntt0072848,BQO5Xy2ebhs,The angry mob continues to riot and causes Los Angeles to burn in flames.\ntt0055871,UlsRjhvfKJY,Allied spy Eric Erickson hurts his Jewish friend Max in order to keep his cover.\ntt0072848,cmtXA6x6Jm4,Faye has a temper tantrum in front of her lover Homer.\ntt0055871,fjzcBqz2Cpk,\"Marianne makes a confession, not knowing the person inside the booth is not a priest.\"\ntt0072848,xLMzMKlv_Ao,Harry Greener is a door-to-door salesman who does not succeed at sales.\ntt0055871,_mwKm8tpz-M,Collins tries to convince Eric Erickson to adopt a pro-Nazi stance.\ntt0055871,PRximULrt4g,\"Eric Erickson meets his friend Otto Holtz, whose son Hans is a Nazi Honor Guard.\"\ntt0055871,bqxDIHYcp9g,\"The Nazis board the ship where Eric Erickson and Kindler, a Jew, are hiding.\"\ntt0055871,4k9WHvF1QsE,Marianne explains her motives for being an Allied spy to Eric Erickson.\ntt0055871,iHllnWESLvY,Eric Erickson and Baron Gerhard witness Nazi brutality.\ntt0408524,sPS0cKOGZO0,The Bad News Bears are interviewed on the TV News.\ntt0055871,ORy5ULEbQ48,Eric Erickson meets fellow spy Marianne.\ntt0408524,cPooLABE6Js,The Bad News Bears have a pillow fight and Carmen gets a Playboy Magazine.\ntt0408524,qq4gK8PkKNM,\"The Bad News Bears are not allowed to finish the game until a standing ovation, and chant of 'Let them play,' from the crowd cheers them on to continue.\"\ntt0055871,Z6E9SQ_ZLkw,Wilhelm confronts Eric Erickson with condemning evidence.\ntt0408524,DM7JBXzCP1k,\"When the Bad News Bears play against the local Native American team, a brawl looms on the horizon when Carmen accidentally beans the batter.\"\ntt0408524,jv2MsLBMi9U,The Bad News Bears trick their way into staying at a motel.\ntt0408524,sloo9PMVoRE,The Bad News Bears trick their parents with a fake coach who only knows one sentence.\ntt0408524,c2TcT9JairA,Carmen has trouble on the pitching mound.\ntt0408524,6Qhj03nCJn0,\"The Bad News Bears fire their coach, with Kelly leading the way.\"\ntt0408524,BhbazIuvUCY,The Bad News Bears win on the last-at-bat.\ntt0102951,9BHXzftnFGA,Celeste arrives at Jeffrey's apartment to make sure that he does not get involved with her niece.\ntt0102951,PlTz6i4z6xU,\"David travels to Florida to recruit Jeffrey, a washed up TV actor with a gig performing dinner theater for senior citizens.\"\ntt0408524,8GbzfsvSY7I,The Bad News Bears stop for a sexy female hitchhiker who thinks twice about getting in the van.\ntt0102951,4B0FFnkSCuM,Jeffrey tries to rekindle his relationship with Celeste while they shoot a passionate scene for their soap opera.\ntt0102951,dLLkOjKNanY,Celeste and Rose protest David's changes to the shooting script while he tinkers with a remote control truck.\ntt0102951,IVxzLITK1YM,David shrewdly persuades Celeste to go along with the new pages of the script.\ntt0102951,bANgFADltvw,Rose reveals Montana Moorehead's big secret during a live taping of a soap opera.\ntt0102951,OkphsYRRJ_0,Lori sneaks her way into Betsy's casting office in hopes of landing a role on a soap opera.\ntt0122718,gmYSTObayoY,The Commando Elite find a supply of Barbie-like dolls and turn them into new recruits.\ntt0102951,0I7GjbhDYtM,Jeffrey has difficulty reading his lines from the teleprompter during a live taping.\ntt0102951,LC1Sb6tRr4E,\"Celeste breaks down in front of the entire cast and crew of the show, and reveals the full story behind her love affair with Jeffrey.\"\ntt0102951,fX4XAbCTdYs,Celeste nearly falls while trying to spy on Jeffrey through his apartment window.\ntt0122718,n7KKfjFRw8w,Alan rescues Christy and she goes postal on her doll collection.\ntt0122718,TgZwFvKRqK4,Archer uses Alan's computer to learn about the world.\ntt0122718,H7XEyuPBE48,The Gorgonites decide that they should fight even if they're going to lose.\ntt0122718,ul_HuCZxxNU,Chip Hazard gives a rousing speech made up of bits and pieces from patriotic speeches throughout history.\ntt0122718,Ls5834hbssM,Chip Hazard escapes from his box and activates the rest of the Commando Elite.\ntt0122718,0bbWQy30oc8,Alan uses Chip Hazard to overload the transformers and cause an EMP to take out all the evil toy soldiers.\ntt0122718,pMoxr-jgd58,Phil tries to negotiate the surrender of the Gorgonites.\ntt0122718,kQoFdaWI4h8,Brick Bazooka attacks Alan's bicycle.\ntt0122718,rFHh8MTXs5M,\"When Irwin and Larry pitch Mars their new toy lines, he decides to make them into real, functioning toy soldiers that can walk and talk.\"\ntt0108162,DebtnaQFX7M,\"Carly and Zeke engage in a strange, flirtatious game while out to dinner.\"\ntt0108162,T6QGAOSIE-o,Carly and Zeke share an intimate trip to the gym.\ntt0108162,pKWLGY2fwZg,The heat rises between Carly and Zeke as they take the elevator to the 13th floor.\ntt0108162,lDFltuNEfts,\"After investigating a scream, Carly finds Jack hovering over a bloody Vida.\"\ntt0108162,njP__lsFwE4,Carly has a less than pleasant jog with Jack.\ntt0108162,Ya7Qs1NHepQ,Naomi Singer is thrown to her death by a hooded figure.\ntt0108162,ZMb-qj1X1do,Carly destroys Zeke's viewing room.\ntt0108162,6QcrQ_TIoKw,An eager co-worker interrogates Carly on the sexy details of her latest fling.\ntt0108162,hEiI72hLQX4,Zeke's seduction of Carly pays off in a big way.\ntt0239986,jowNLHQCAAY,Carpo gives Tommy some strange advice before his date.\ntt0239986,f3tseBsU248,\"Everyone gives their final words on love, sex, and relationships.\"\ntt0239986,Za9pPzJJcYg,Annie confronts Griffin about whether or not he is having an affair.\ntt0061385,_4jtkw-qFms,Corie argues with Paul over his inability to have fun.\ntt0239986,M9m4XUd6x98,Griffin and Annie have an awkward dinner with Hilary and Harry.\ntt0239986,_vxVcxYCyE4,Ben asks out Ashley after she waits on him in a coffee shop.\ntt0239986,6ylO7RAbApc,Tommy and Maria meet when they both want to rent the same movie.\ntt0239986,2wEjsHggyII,Ben and Ashley share some sweet moments at the beginning of their relationship.\ntt0239986,a6mkbps0BmY,Everyone tells the story of how they lost their virginity.\ntt1130884,Z_0TQHoV_2I,\"Teddy asks Chuck which would be worse, \"\"to live as a monster, or to die as a good man?\"\"\"\ntt0239986,erILyrdpSqs,\"While looking at an apartment, Tommy and Annie argue about the \"\"Real New York.\"\"\"\ntt1130884,rku6u5PmiZ4,\"Andrew tells his wife, Dolores, that he loves her, just before killing her.\"\ntt1130884,eveUzWmTxl4,Dr. Cawley and Dr. Sheehan try to convince Teddy that his real name is Andrew Laeddis.\ntt1130884,HWe802TQAG0,\"Teddy meets Rachel Solando, who questions his very existence.\"\ntt1130884,9DlWhZ45k5w,George Noyce tries to convince Teddy he is part of a conspiracy.\ntt1130884,9WY5gDBR0gM,Teddy and Chuck decide to leave the island before it's too late.\ntt1130884,KihpUEKi4TA,Teddy questions patient Peter Breene concerning the whereabouts of Rachel Solando.\ntt1130884,-F1-sTyGvwA,\"Teddy dreams of his wife, Dolores.\"\ntt0096094,ghwBg2RgBJM,\"Kristy talks Jake into going to a fertility clinic, where he imagines that everyone laughs at him.\"\ntt0096094,TyeZy_UPYKM,\"Waiting at the hospital, Jake thinks back on his marriage as his wife, Kristy, has emergancy surgery while giving birth to their child.\"\ntt0096094,_W5MVZjoNwc,\"Davis comes onto his best friend's wife, Kristy.\"\ntt0096094,5uVVWV4FnVU,Jake hears more than he bargained for when the preacher reads his wedding vows.\ntt0096094,DsKfkkrTLMg,Jake's boss tells him about the cold hard reality of settling for less.\ntt0096094,RfqBp4LFuIQ,Jake gets caught lying on his resume during a job interview.\ntt0096094,LDnFpgimHH4,Jake imagines his neighbors performing an elaborate musical number while mowing their lawns.\ntt0261289,5_B-hXtddxw,Joe Tyler and Sara Moore escape trouble by pretending to be vets.\ntt0096094,ViPVPgUJUgM,Kristy makes Jake promise he won't get mad before she tells him her secret.\ntt0096094,dPXGowa6p3Y,Jake is less than thrilled by Kristy's routine attempts at conception.\ntt0261289,nkelgV49oGQ,Joe Tyler and Sara Moore share their first kiss.\ntt0261289,-7-C6lSAfOs,\"Just as Joe Tyler thinks he's caught Gordon Moore, he has to deal with a monster truck and renegade biker.\"\ntt0261289,t5xpX6krGmE,\"To escape Tony, Joe Tyler and Sara Moore maneuver through a conveyer belt.\"\ntt0261289,cgogH0SylMc,Sara Moore and Joe Tyler go to desperate measures to get a free motel room.\ntt0089945,lEiwqEMhS9E,Colonel Ticonderoga seeks out help from the Railroad Colonel.\ntt0261289,DG5ZouipJNs,\"Joe Tyler and Sara Moore track Gordon Moore to a gym, where they battle his personal trainer Allison.\"\ntt0089945,cIE1fT395HM,\"Peter tells Rex O'Herlihan about the dangers in town, but Rex isn't convinced.\"\ntt0089945,NARUgQRZhL8,Rex O'Herlihan challenges the gang of outlaws to shoot him from a distance.\ntt0261289,R_shARjqjLA,\"After Tony warns Sara Moore she's about to be served papers, she tries to escape process server Joe Tyler.\"\ntt0959337,sNcBUOlGBcg,John becomes upset when Frank announces that they're no longer moving to Paris because April is pregnant.\ntt0089945,ewVwSrVSKS4,Jim and Jud bring recently deceased Blackie to Colonel Ticonderoga.\ntt0089945,BPvZa789l5o,Rex O'Herlihan and a gang of sheepherders face off against the outlaws that threaten them.\ntt0089945,Vdhhi9nYLTI,Blackie and his two henchmen swagger into the saloon and create mayhem.\ntt0959337,inDZp80Sq6U,\"Helen Givings and her Husband Howard, bring their mentally unstable son John to visit the Wheelers, in an effort to help socialize him.\"\ntt0089945,vYafR-6wNGE,Rex O'Herlihan meets Bob Barber for the good guy duel.\ntt0959337,m_7Bm1gyq2c,Frank gets into an argument with April when he finds out that she's been planning on aborting their unborn child.\ntt0959337,RVGyvDhPE3k,Frank tells April about his past infidelity in an effort to come clean.\ntt0959337,lPfrzsQ2-Qo,\"April and Frank have breakfast together, and Frank explains what he'll be doing at his new job.\"\ntt0959337,n2lTpPptOWA,The Wheelers get in an argument because April realizes that she no longer is in love with Frank.\ntt0959337,RSEMLDUOqe4,April attempts to convince Frank that they should take the family and move to Paris.\ntt0959337,1BUBVkpQQGA,Frank and April get into a screaming match about their lifestyle in the suburbs.\ntt0421239,FhDi_WF5uOI,Lisa must get Keefe's family out of the hotel room before the missile is fired.\ntt0421239,ZcvlWuqqv48,\"Lisa writes a message on the bathroom window, but Jack finds out.\"\ntt0421239,SJB5InL3g7I,Jackson and the police both chase after Lisa in the airport.\ntt0421239,kq0YESApfvs,\"Lisa is being stalked in her house by the killer, Jackson.\"\ntt0421239,G6EPGcF9mW0,\"An annoying couple complains about the hotel, which Lisa does not tolerate.\"\ntt0421239,6Wmzed6d0Jo,Lisa rams her stolen car into the assassin.\ntt0421239,x7CXlwS73iI,\"Lisa tries to write a warning inside a book, but Jackson finds out and headbutts her unconscious.\"\ntt0421239,1MnPXQSWAJo,Jackson explains his kidnapping plan to Lisa.\ntt0421239,YaLewAfBoU0,Lisa stabs her captor in the throat with a pen.\ntt0250687,AIPb1OMTZ0Q,Owen tolerates a bus full of Lucille Ball impersonators and the distaster that ensues.\ntt0250687,OXpqA3BvLLg,Duane and Blaine attempt to gain an advantage in the race by incapacitating the airport radar tower.\ntt0250687,uJMPom6-xmA,Randy and his family get more than they bargained for when they decide to stop at the Barbie Museum.\ntt0250687,MdMVzxis5vs,\"After emerging from the desert, Owen disguises himself as a bus driver to gain a leg up in the race.\"\ntt0421239,TuiyN5O4Q5k,\"When hotel reservations are mixed up, Lisa is able to save the day.\"\ntt0250687,Wj2sfYCpHOo,Vera and Merrill steal a land speeder.\ntt0250687,CuscvBChOqM,Tracy takes a detour to visit her cheating boyfriend.\ntt0250687,XSVzRBiiTxA,\"Donald Sinclair explains the rules of the race, or rather the lack thereof.\"\ntt0250687,4dsgQb3jkk4,Randy drives Hitler's car into a conference for war veterans as the result of a misunderstanding with bikers.\ntt0250687,UJbqnbXI0Po,Duane and Blaine chase the thief who stole their key.\ntt0082970,BFanCVteXfw,The racist firemen harass Coalhouse Walker Jr. and try to make him pay money to travel on the road.\ntt0082970,3b00UbIxbCc,Coalhouse Walker Jr. is furious that the racist firemen will not clean up the mess they made on his fancy car.\ntt0082970,lClRzGmpFrs,Coalhouse Walker Jr. wants revenge on fire chief Willie Conklin for his racist behavior and he's not afraid to use violence.\ntt0082970,9wQHMLWpVLk,Coalhouse Walker Jr. meets with a lawyer to figure out if he has a case against the racist men who damaged his car.\ntt0082970,wVpIChmQ7dQ,\"Rhinelander Waldo tries to communicate with the gangsters who are hiding in the Morgan Library, which is full of priceless items.\"\ntt0082970,_U82hhWfDFY,Mother and Father discover a baby that was abandoned in their garden.\ntt0082970,cLYCKmqJApw,The Jewish immigrant Tateh has made a life for himself as a film director.\ntt0258038,40cOkf5fT7A,A flashback highlights Little Pootie and his preternatural charisma.\ntt0082970,EPDoc6alrlE,\"Coalhouse Walker Jr. prays before exiting the Morgan Library, where he hid from the police.\"\ntt0082970,B1Q2f338TJU,Coalhouse Walker Jr. and his gang take over the Morgan Library as part of their plan to achieve justice against the corrupt civil authorities.\ntt0082970,TJf7vDKfuFQ,Evelyn Nesbit meets Jewish immigrant Tateh and explains why he must keep his daughter tied up.\ntt0258038,g0mHVE8ebqA,Lacey and JB hang out on the corner and talk about the weather. And they talk about the weather too.\ntt0258038,NLIbv_J5E0M,\"Pootie arrives to stop Lecter at the grand opening of the first Pootie's Bad Time Burgers Restaurant, only to be confronted by a horde of Pootie look-a-likes.\"\ntt0258038,dOTGLArtfrQ,\"Pootie is confronted outside a party by a mugger, then brings the mugger back from the dead after killing him in self-defense.\"\ntt0258038,aESwFtEWnpM,Biggie Shorty discovers that dressing fancy and standing around near prostitutes can give some people the wrong idea.\ntt0258038,89lwQxQm5co,\"Bob Costas interviews international film, music, and pottery superstar Pootie Tang about his new film-- \"\"Sine Yo Pitty On The Runny Kine.\"\"\"\ntt0258038,yu_9eQXlsVQ,\"The world goes crazy for Pootie's newest single: \"\"------\"\".\"\ntt0066181,TBS2UeiR7Mc,Melinda declares her love for Dr. Chabot.\ntt0258038,8Wg3WYlR2M8,Little Pootie is raised right by his mother and father before tragedy strikes.\ntt0066181,2K-ihnb5kho,Daisy sings about her struggle to choose between two men.\ntt0066181,x1BpKIb7Ces,Daisy sings the title track of the film.\ntt0066181,uE_EjcgtiVI,Dr. Chabot tries to get the attention of Daisy.\ntt0066181,_8s4_Nabo4E,Daisy wonders why her past self was more interesting than she is.\ntt0078024,4EfmKXE-Li4,Oliver meets Marcie Bonwit on her jog and plans a tennis date with her.\ntt0066181,u7kInn-7hcA,\"Daisy recalls how she seduced her husband from a former life, Robert.\"\ntt0078024,u73HoUZD7tc,Oliver complains to Marcie about her personality at work versus the personality she brings to the relationship.\ntt0066181,SESbcd2bp80,Daisy confesses her secret talents to Dr. Marc Chabot.\ntt0078024,TV9GpnvWxgQ,Marcie confronts Oliver about his distance in their relationship.\ntt0078024,G_2PNOH_j6A,Gwen and Stephen Simpson try to set up Oliver with Joanna Stone.\ntt0066181,Fsqymfl2Q_A,Daisy is surprised when Tad visits her.\ntt0078024,jlYY8xkTXOQ,Oliver and Marcie go on their first date and Oliver is faced with a touchy subject.\ntt0078024,a-KQ5h6WmJg,Marcie gives Oliver a little bit of advice about facing his reality.\ntt0078024,E6SfKJ0TmXs,Oliver stays after the funeral to see Jennifer's casket lowered into the ground.\ntt0078024,51pdEOruyWY,\"Oliver introduces a city official, Mr. Gentilano, to a community activist program for government approval.\"\ntt0063356,7dHg_hYZDCw,\"The Strangler\"\" turns himself in to Morris Brummel but he doesn't really fit the description.\"\ntt0063356,UGKRVSevWnA,Christopher Gill finds Alma Mulloy's little delicate spot and then strangles her.\ntt0063356,jiP6PiKJLUs,Christopher Gill attacks Kate Palmer in her apartment while Morris Bummel is on his way to rescue her.\ntt0063356,0QeOXuuFo4g,Morris Brummel brings Kate Palmer home to meet his mother.\ntt0063356,QbfEULz4z98,Morris Brummel admits to Kate Palmer that he wanted to see her again.\ntt0063356,WBHjaRXCINg,\"Christopher Gill disguises himself as a German plumber and prepares to strangle his second victim, Mrs. Himmel.\"\ntt0063356,gKGmO34XgMU,Mrs. Brummel questions her son Morris Brummel about the new girl in his life.\ntt0063356,7UsWapAIMGo,Morris Brummel questions Kate Palmer and receives a strange compliment in return. Mrs. Brummel criticizes Morris about the duties of his occupation.\ntt0056267,KOV2C0jVS4M,Paul has a phone conversation with Lucy in Arizona and Yoko Mori in Japan.\ntt0056267,rMdZw9aBmnY,Lucy and Sam meet Lucy's geisha instructor.\ntt0056267,vnQ9yD_IIwo,\"Lucy lies to everyone to give her husband, Paul, the applause that he deserves.\"\ntt0056267,3FDh8EtZETg,Yoko Mori kisses her potential co-star Bob during her screen test.\ntt0056267,cCNhONF1lHI,Lucy wears a geisha disguise as a bet with Sam to prove her husband Paul will not recognize her.\ntt0056267,1lCWhKWBjbc,Bob enters Yoko Mori's room but his manly desires are thwarted.\ntt0056267,YBRg2qsJ94Y,Paul and Bob's community bath with the girls turns out to be a little different from what they expected.\ntt0056267,y47SwwfaTBk,Yoko Mori bluffs her way through Japanese and leaves a sumo wrestler puzzled.\ntt0110516,Q7-BibZkYxY,V makes an impression on the suburban town she's stranded in while on the clock.\ntt0110516,Q-_d7CI08qc,\"Tom is introduced to V, and confusion arises over her chosen profession.\"\ntt0110516,WFOM58iTTJQ,\"Frank lays down the law to V, a streetwalker turned house guest.\"\ntt0110516,mq2cz9Xvzcw,Frank and his friends hang out and talk about the great unknown: female anatomy.\ntt0110516,B1WG5mK06fA,V reveals her true profession to Tom.\ntt0110516,aNR8SIVnHTY,Frank brings V to class for an in-person anatomy lesson.\ntt0110516,_AUvAyx_fwc,V makes good on her offer to show Frank and his friends what they paid for.\ntt0110516,y603mzYAcas,Tom and his son Frank discuss the finer points of pleasing women over breakfast.\ntt0110516,g4v51XeJnkw,Frank negotiates a peepshow with V.\ntt0110516,LOb8UYWDz-0,V gets recognized by one of her clients while out on a date with Tom.\ntt0068835,TiCSS1zLCCI,Barney Cashman has smelly fingers because he works in a fish restaurant.\ntt0068835,I-kLvrKYP4w,Barney Cashman accidentally bites Elaine while kissing which causes frustration between the two.\ntt0068835,Fc7bVIA-b1k,Bobbi tells Barney Cashman about the strange things that happen to her.\ntt0068835,Rw8cPAmrrbU,\"Barney Cashman meets cute actress Bobbie in the park, and in an effort to impress her, he loans her money.\"\ntt0068835,FiAJpDiz6Kw,\"Barney Cashman pesters Elaine, who is interested in having an affair, enough to the point that she wants to leave.\"\ntt0068835,i7vKbmKF9VI,Barney Cashman talks about his history with women and feelings about death.\ntt0068835,GIiXwau_5iw,Barney Cashman gets too frustrated trying to create sexual excitement with Jeanette.\ntt0068835,j3MZdcbv-ew,Barney Cashman wants to have an affair with Bobbie but she acts too much like a goofy idiot.\ntt0068835,P38cMPv-Nag,Barney Cashman can't handle the depressing woes of Jeanette.\ntt0068835,U2Eff0vnE6s,Barney Cashman thinks to himself about the attractive woman on the street.\ntt0408985,MMiicN9p8a8,Senator Dillings takes notice when Georgia arrives in the restaurant to dine alone.\ntt0408985,jqyhGCHT-v0,Chef Didier shares the secret of life with Georgia.\ntt0408985,V81lVBQ8TCs,Matthew is on a ledge and Georgia talks him out of jumping.\ntt0408985,OinSJLNXgA0,Georgia tries snowboarding and ends up in a competition with Matthew\ntt0408985,Wg3iwI32C5Q,Georgia gets some interesting treatment from the spa.\ntt0408985,hweZTM7VPbk,\"Georgia and Matthew prepare to base jump, but only one of them succeeds.\"\ntt0408985,gK06H6EpKP4,Georgia smashes Adamian's phone and speaks her mind.\ntt0408985,reIyMTBfEwQ,Georgia finds out that she has Lampington's Disease and doesn't have the insurance to cover it.\ntt0408985,Yorm8_AGu10,Georgia breaks out into some good old call and response at church.\ntt0119468,zPa3qf25T3s,Casanova punishes Kate for breaking the rules.\ntt0119468,T6QO7UyB5tI,\"When Kate finally wakes up after being drugged, Casanova is there to greet her.\"\ntt0119468,5AwBYVybnY0,Kate cries out for help and gets the other girls to talk.\ntt0119468,081zoKkdEYA,Kate wakes up when she hears someone lurking in her house.\ntt0119468,QpxdbtnTXXY,Dr. Cross helps Kate remember what happened the day she escaped.\ntt0119468,uXyvjZa6x2o,\"Kate encourages families who still have relatives missing, thanks those who helped her and reminds Casanova that she was the only one to break the rules.\"\ntt0119468,KiOiYYsMcM4,Dr. Cross talks Dianne out of killing herself.\ntt0119468,IWe5PTNQ6ko,Kate gets away from Casanova and runs for her life.\ntt0268397,VYMQZsZUxeA,Cindy gives Jimmy Neutron some kind words to cheer him up.\ntt0268397,hA1BikUzBKc,\"All the kids in town find out their parents are missing, so they decide to have some wild and crazy fun.\"\ntt0268397,S_fzdjP3jKg,Jimmy Neutron reverses his shrink-ray to make himself bigger and defeat the aliens.\ntt0268397,QBvJoXAu2zM,Jimmy Neutron discovers that a giant alien chicken monster wants to eat him and his friends.\ntt0268397,nIJQOFSGKks,Jimmy Neutron gets ready for school using his crazy inventions.\ntt0268397,a7qRJ9T9TPg,Jimmy Neutron battles the aliens in outer space.\ntt0268397,r7k9mkm0TKU,Jimmy Neutron blasts off into outer space.\ntt0268397,Ea5k9eZg7rk,\"Jimmy Neutron sends a message to aliens, who discover they want to eat his parents.\"\ntt0268397,SYOiDFKwCsA,Jimmy Neutron shrinks himself so that he can sneak out of the house.\ntt0099850,PZPOGfNlJyo,Raymond shoots Dennis when he breaks into Raymond's house.\ntt0099850,otQNGe5sWaQ,Raymond embarrasses Kathleen when she refuses to discuss her lunch plans.\ntt0099850,JQ8nLSXGWWE,Dennis sets up Van and then kills the shooter to tie up the loose ends.\ntt0099850,5R7pGpChUVw,Raymond becomes convinced of his wife's adultery when Dennis talks dirty about her.\ntt0099850,hRRvrXxGJjg,Steven wants Dennis to kill his parents so he can run the company.\ntt0099850,r0-vDDcDUMo,\"When Van and his wife argue about her cheating, Dennis calms the situation.\"\ntt0099850,ZtahDAhvvSc,Raymond begs Demetrio to stop running.\ntt0119360,MTX0Ig39Nws,Howard's bachelor party turns ugly when the guys argue over which Barbra Streisand movie to watch.\ntt0119360,Rh4ap8LIbtw,Mike explains how homosexuality goes against basic plumbing.\ntt0099850,gvbI2bHohQ4,Raymond chases down the only eyewitness to the crime that took Van's life.\ntt0119360,mD83kao4Q60,Howard's students try to help him figure out why people think he's gay.\ntt0119360,oZQ95ON2X-s,\"Cameron comes across Emily in her wedding dress, freaking out on the side of the road.\"\ntt0119360,UJ9Q1b1FwKM,Cameron outs Howard during his Oscar acceptance speech.\ntt0119360,fhUXu7x66BA,Peter kisses Howard.\ntt0119360,0yYUlLFlw1I,Emily flips out when Howard comes out on their wedding day.\ntt0119360,xa-P9llTLM4,Howard listens to an audio book on manliness and fights an overwhelming urge to dance.\ntt0119360,ZPP70vRDmzM,Howard assures his parents he's not gay.\ntt0110099,LKpCK8OtA1s,\"Ed Walters falls for Catherine Boyd when she and her boyfriend, James Moreland, experience car trouble and pull into his repair shop.\"\ntt0110099,OFlIZu9exco,Ed unexpectedly meets Albert Einstein when he knocks upon Catherine Boyd's front door.\ntt0110099,jD4Fh0LsvjM,Catherine realizes she's in love with Ed aboard the sailboat.\ntt0110099,R7stiKJsGjY,\"Albert Einstein, Kurt Gödel, Boris Podolsky and Nathan Liebknecht turn Ed into an intellectual.\"\ntt0110099,AkEnbYvJGg0,Ed and Catherine share a kiss as Boyd's Comet soars by overhead.\ntt0110099,w6kumXHaOeI,Ed tries to figure out the best way to ask Catherine out on a date.\ntt0110099,qb00B8U8UBw,\"Ed passes a test with the help of his friends Albert, Catherine, Kurt, Boris and Nathan.\"\ntt0110099,U3qhoY13AkM,\"Ed meets three of the greatest minds of the twentieth century, Kurt Gödel, Boris Podolsky, and Nathan Liebknecht.\"\ntt0110099,3NCw83LVWFo,Albert and Ed run into James at the lab conducting time deprivation experiments.\ntt0319531,ZI1jKmWANP0,Will visits a pathologist for information on the psychology of rapists and rape victims.\ntt0319531,nZq8AiBXhiI,Helen urges Will to stop seeking vengeance and leave while he still can.\ntt0319531,8lTcU_MuQGg,The Coroner gives Will the horrific news that his brother was raped before his suicide.\ntt0319531,-gkBCCbycmQ,\"Will visits Helen to explain why he stopped writing her, and why he has returned.\"\ntt0319531,Fvka6JcREsY,\"Will confronts Boad about what was done to his brother, and explains his plans to kill him.\"\ntt0319531,OXaqam1ZdZs,Will visits some old crime buddies to find out who was behind his brother's death.\ntt0319531,tBeJkq_by_8,Mickser is devastated when he finds Davey dead in the bathtub.\ntt0051745,VrMWnHwh0z0,Tom and Sophia differ in their views of parenting.\ntt0051745,t-T4RYRUNWk,Cinzia swindles a ring toss game to win Robert a harmonica.\ntt0319531,BBWQchYpjqQ,Boad has his henchmen grab Davey in order to rape him.\ntt0051745,7ynMrmloUVA,Tom tells David his views on life after death.\ntt0051745,Wkm_Bp6pG9k,Angelo is too afraid of falling for Cinzia to continue their date.\ntt0051745,JcO_Cs2WZLU,\"Angelo, preoccupied with Cinzia, leaves Tom's house on the tracks.\"\ntt0051745,eMuBBjnM4yo,Cinzia asserts herself when Alan gets out of line.\ntt0051745,h4eOGlJpLYg,Angelo offers Tom a housing alternative.\ntt0051745,uy8_ARH8yyM,Cinzia gets the job at the last minute.\ntt0080836,YMhAvAFZ8js,Henry cautiously leads two other scientists into the interior of an alien spaceship.\ntt0080836,Ka-SEhfCAUY,White House Representative Cain discusses how to handle the government's response to the crash landing of a U.F.O with his top officials.\ntt0080836,fPk-Dms1rJc,Phil accidentally powers on the alien spacecraft when searching the ship for clues.\ntt0080836,aqa74uEbtDE,Lew attempts a risky maneuver on top of a speeding gas truck to get rid of two government agents.\ntt0051745,JQwmeTKQLo8,Cinzia insists on staying in Washington against Arturo's will.\ntt0080836,k0aqHfvHcsc,Harry and his team make a startling discovery in the spaceship moments before an explosive-filled plane is flown in to destroy the hangar.\ntt0080836,OJiaifxaWCY,Harry reveals to his team of scientists that the aliens they've discovered have previously visited earth.\ntt0080836,wYSIce1SzFU,Steve and Lew elude two government agents chasing them in their rusty old pick-up truck.\ntt0080836,zstIMA6K-Ws,Steve tries to steer a rental car to safety after he realizes the brakes have been cut.\ntt0050468,wa5asCQrdPE,\"Disadvantaged, Doc Holliday and Wyatt Earp take on the rest of the Clanton gang.\"\ntt0050468,fCQb93-RrZo,Doc Holliday enters a saloon to confront Bailey.\ntt0080836,_nngOtRHAK0,A team of astronauts encounter a U.F.O. while launching a satellite into space from their shuttle.\ntt0050468,BIt9IYPOY2g,Wyatt Earp helps Doc Holliday escape.\ntt0050468,aE4h5rX9u3U,Doc Holliday and the Earp family go head to head with the Clanton gang.\ntt0050468,6VUfXGlADjU,\"Doc Holliday walks in on Kate and her new man, Ringo\"\ntt0050468,YJnneXfx_q8,Wyatt Earp lectures Billy about the gunslinging life.\ntt0050468,UNlo03HucLM,Doc Holliday teams up with Wyatt Earp to stop Shanghai and his gang from causing any more damage to a ballroom dance.\ntt0050468,Lj7OCHi8x7c,Wyatt Earp warns Ike and his gang that there are no firearms in the city of Tombstone.\ntt0082432,-xX0mOMuxyI,Archy tries to console Frank when he finds out Snowy is injured and Barney is dead.\ntt0050468,1yLt0kzJIUQ,\"Wyatt Earp and Doc Holliday stop for the night after a long day, but their sleep is interrupted when a posse sneaks up.\"\ntt0082432,GLZXGflTTjA,\"Archy meets Frank, who encourages him to avoid the army's age restriction by enlisting in Perth.\"\ntt0082432,0VIefkYf2Rs,Archy and Frank are reunited during a practice battle.\ntt0082432,RGuY5r-7ta4,\"Archy and Frank have a friendly race to the pyramids, where they carve their names into the stone.\"\ntt0758746,elvtIj_sPwU,\"Tommy wakes up from a realistic nightmare, where a younger version of himself watches on as two teenagers dig up Jason's corpse.\"\ntt0758746,aoZDSctyBE0,\"Joey pesters Victor until he violently snaps — chopping his back, instead of chopping wood.\"\ntt0758746,HONa-BdZMA4,Sheriff Tucker tells Mayor Cobb who he believes is responsible for the recent murders.\ntt0758746,ryKepaMME_U,\"Pam runs from Jason, and is saved by Reggie who plows him over with a tractor.\"\ntt0758746,ltdgreWmnSY,\"Tommy puts on Jason's old mask, and takes his identity.\"\ntt0758746,YIw-r1yjxMU,\"Junior recklessly rides his motorcycle through the yard, while Ethel yells at him to come inside for dinner.\"\ntt0758746,OGEmY8RCF40,Anita plays a trick on Demon while he's using the outhouse.\ntt0758746,F9fEIstp82g,\"Lana leaves to meet Billy, but when she arrives at his car she finds more than spilled white powder.\"\ntt0758746,qlwxaCiNZzo,\"Pete goes into the woods while Vinnie works on their broken car, but when he returns he gets an unexpected surprise.\"\ntt0430105,lnf-VO8gIGg,Lt. Green finds out that Detective Fowler is a dirty cop.\ntt0430105,FZJK7bi2mWU,\"The police interrogate Bobby, Angel and Jeremiah about the death of a gang leader.\"\ntt0430105,Cf3YdE-vMyE,Bobby and Victor box on a frozen lake.\ntt0430105,ZCYBYZDrmWk,The Mercer house comes under attack from gangsters with machine guns.\ntt0430105,bIbxR_KN2TM,Bobby interrupts a basketball game with a gun to find a witness.\ntt0430105,bdm9LVNbuNg,Bobby and Angel lead a raid on a teen gang to get some answers.\ntt0430105,BcW6m0Rg1-8,\"Evelyn is in the wrong place, at the wrong time, when a violent robbery occurs.\"\ntt0430105,qSnUywWS9xs,Bobby and his brothers chase after gangsters in a snowstorm.\ntt0099587,JPofeRImxv8,\"When McPherson is shot by a Vietnamese peasant, Grafton makes an emergency landing.\"\ntt0430105,lDduI2NkIsQ,Bobby shows up at the apartment of the crime-scene witness with a violent attitude.\ntt0099587,vXLLH1eSOZE,Cole and Grafton try to save Camparelli from enemy guns but their plane gets shot down.\ntt0099587,tBNjWDkNbms,Cole questions Grafton's feelings on war and peace in Vietnam.\ntt0099587,rZuHQ94ES6U,The military men get drunk and rowdy at a local bar and participate in a game with a toy airplane.\ntt0099587,g2h8xRzMxtA,A Duty Officer describes the next flight mission.\ntt0099587,pZXuol2q1Yg,Grafton narrates his goodbyes to his friend and fellow soldier who died in a flight mission.\ntt0099587,2wOJBjpLTBA,Camparelli prepares the jet pilots for their daylight raid to North Vietnam.\ntt0099587,g8YFtf6tfRg,Grafton tells Camparelli that his promotion to Captain could lead to even greater things.\ntt0099587,Xwob-vrMkz0,\"Even though Camparelli is stuck behind enemy lines, he orders his team to retreat.\"\ntt0082382,_XriL3ARav8,Justice Ruth Loomis pretends to be the CEO of Omnitech while Justice Dan Snow questions her.\ntt0082382,eZ64IFqMQuQ,Justice Dan Snow tries to convince the other Justices to hear a case against Omnitech.\ntt0082382,dZ-teGgl2tw,A Nebraska attorney addresses the Supreme Court concerning a film he deems pornographic.\ntt0082382,r0N4KlcTSUQ,\"Justice Dan Snow lectures his law clerk, Mason, on the role of the Supreme Court.\"\ntt0082382,f9vhFEweovc,Justice Dan Snow and Justice Harold Webb get in an argument concerning their convictions.\ntt0082382,i-f0M5TqmsY,Justice Dan Snow and Justice Ruth Loomis argue over the intention of the law.\ntt0082382,-Ixi48TxkaA,Chief Justice James Crawford informs Justice Dan Snow of the President's new appointee to the Supreme Court.\ntt0082382,X1DvoMiJ6n0,Justice Dan Snow advises Justice Ruth Loomis not to resign from her position on the Supreme Court.\ntt0097336,DN3iIszMnI0,General Barry barges in and confronts General Groves about the tire shortage.\ntt0097336,2djG7snKS8w,Oppenheimer argues with General Groves about demonstrating the bomb versus actually dropping it on the Japanese.\ntt0097336,K8qQO5DvYhE,\"At the start of the Manhattan Project, General Groves gives a speech to the scientists.\"\ntt0097336,zB-hQWVCwwU,Dr. Schoenfield challenges Oppenheimer about what they've been doing.\ntt0097336,AQ0P7R9CfCY,Michael leads the team in assembling the core when something goes terribly wrong.\ntt0097336,ZQ-8RqS16uU,General Groves visits an eccentric scientist about the possibility of building an atomic bomb.\ntt0097336,emVaK5MoPBg,Oppenheimer oversees the first testing of an atomic bomb.\ntt0418647,n3_noySdJVs,Cale sneaks out of her house in the middle of the night to visit Soñador and discovers that she likes popsicles.\ntt0097336,JPoZcvcPtIA,Oppenheimer and General Groves debate postponing the device test due to weather.\ntt0418647,78xJ5ZYPQnc,\"When Soñador breaks her leg, Ben rushes out to the field to help her.\"\ntt0418647,pVZtw0LrIX4,Soñador wins The Breeders' Cup Championship.\ntt0097336,YuuMHvaxXFY,General Groves lectures Mrs. Oppenheimer on a wife's place in the background.\ntt0418647,h0i97SWIdLU,Ben reads Cale's story in front of the class at parent's night and is touched deeply by it.\ntt0418647,Njpz7jWgB04,Cale announces that she wants Soñador to race in The Breeders' Cup World Championships.\ntt0418647,BjKq059eG6E,Ben surprises Cale by making her the proud owner of Soñador.\ntt0418647,SRNxRvPSscQ,Ben explains to Cale the harsh reality of horse racing.\ntt0418647,RLcngJeCHtg,\"When Soñador gets startled and runs away with Cale on her back, Ben chases after them in his truck.\"\ntt0418647,0M6PP32wggM,\"Soñador wins her first race after the accident and gets claimed, much to the chagrin of Cale.\"\ntt0044509,OuE_YH1pzC0,Lola and Doc discuss the nature of their relationship and marriage.\ntt0044509,5IFvZMLDqXA,Doc relapses and expresses hostility toward Lola.\ntt0044509,z7vdutawe8g,\"Distraught after seeing Turk and Marie together, Doc struggles not to relapse.\"\ntt0044509,59E_IDXFWuY,Marie and Turk get into an argument over her other boyfriend.\ntt0044509,LNFINZN0KXY,\"Lola joins Doc at his Alcoholics Anonymous meeting to celebrate his \"\"birthday\"\" of one year of sobriety.\"\ntt0044509,OGbya9Fm_Ns,\"After originally being opposed to the idea, Doc decides that renting the spare room to Marie is a good idea upon meeting her.\"\ntt0044509,8csRJcVDQdc,A drunken Doc gets increasingly violent with Lola.\ntt0044509,SLkR7mzysAs,\"Lola tells Doc about the dream she had about their lost dog, Little Sheba.\"\ntt0163983,xPLtxTJnVOY,\"After being kidnapped by The New Dawn Cult, Maggie wakes up to find herself speeding down the wrong side of the road during rush hour traffic.\"\ntt0044509,7hrG-FtbWsw,Lola tells Doc about the dream she had the night before he returned from the hospital.\ntt0163983,E2syhaH4Qgk,\"Maggie and Cheri attempt to flee from the New Dawn Cult, and the encounter ends in horror.\"\ntt0163983,IuCIhvIAn44,Maggie O'Connor stops by a church and discovers a shocking revelation about her niece Cody.\ntt0163983,yV5JUYhnJQk,Cheri pays a visit to the hospital where Maggie works to deliver a dire warning about her niece and sister.\ntt0163983,MAzasda1GUA,\"Cheri Post knows where The New Dawn Cult has taken Maggie's niece, but she takes off before spilling the details.\"\ntt0163983,r2xpAXMPRHc,Maggie checks in on her niece and is horrified by what she sees.\ntt0163983,CeMiILVlZgo,A little boy talks to the wrong stranger while collecting cans in an alley.\ntt0163983,VyMHLfAg9bI,\"Maggie attempts to take the direct route in stopping Eric Stark, leader of The New Dawn Cult.\"\ntt0163983,D5a4_a3dIK4,Maggie makes a daring escape with her niece Cody from The New Dawn Cult.\ntt0075765,nLeZGuvX7D8,Lander tells the VA counselor about his wife and their divorce after he returned home from a P.O.W. camp.\ntt0075765,SWjCrhbuvCM,\"Lander flips out when he gets passed over for the opportunity to fly the Goodyear Blimp at the Super Bowl, and will therefore be unable to carry out his plot to destroy the game and kill 80,000 people.\"\ntt0075765,xknWZIAzBCc,\"Despite being mortally wounded, Lander manages to fly the Goodyear Blimp into the Super Bowl and light the fuse, while Kabakov tries to attach a cable for a helicopter to haul the blimp to a safe distance before its weapon launches.\"\ntt0075765,VWJfmCFQjAk,Lander and Dahlia test their experimental weapon on an unsuspecting victim.\ntt0075765,awYi2rXf1Ws,\"Dahlia tries to poison Kabakov, but his partner, Moshevsky gets in the way.\"\ntt0075765,7ZnhCcj4sXg,\"Kabakov and Corley take a tour of the Miami stadium that is going to host the Super Bowl, the terrorists' intended target.\"\ntt0075765,exE414Mp-gA,Kabakov and Corley try to intercept the terrorists before they can take off with the Goodyear Blimp and destroy the Super Bowl.\ntt0326769,eensusNo-jE,\"Anita gives Kid an ultimatum - quit racing, or live with someone else.\"\ntt0326769,9R_jeIGgaa4,\"Primo asks Kid and Stuntman to help him find the girl that mugged him, but his friends can only laugh at the hilarity of the situation.\"\ntt0075765,UEemdeEfw-Y,Kabakov leads a Mossad raid on a Black September compound in Beirut.\ntt0326769,Dt3n2LVD4q4,Anita finally tells Smoke that Kid is his son.\ntt0326769,xLz4trRoHeM,Kid's ego gets inflated when Smoke confronts him about breaking the rules.\ntt0326769,hMW3GQ2x79Q,\"When Kid wins a race in which he was never supposed to ride, he gains the respect of his fellow riders.\"\ntt0326769,317Fhd1UwzQ,Will is the victim of a fatal accident when Chu Chu's bike spirals out of control during a race.\ntt0326769,nF2xGs2J6Gk,Smoke challenges Dogg to a race after he calls him out for being too safe of a rider.\ntt0326769,DERds8rPSi0,Primo tries to prove that he can ride with Kid and Stuntman.\ntt0326769,xaBIju-chWA,Kid's bike spins out in the middle of his race with Dogg.\ntt0061385,gdJC7j6maRs,Corie has to talk Paul down after he drunkenly wanders up to the roof.\ntt0061385,BjbnFg5KBwI,Corie finds Paul stinking drunk in Washington Square Park.\ntt0061385,QD1FH9vC-q0,Paul and Corie arrive at the Plaza Hotel for their honeymoon.\ntt0326769,JJAByeqjimo,Kid attacks Smoke after he tries to discourage him from racing.\ntt0061385,djAkVv3P_pQ,Corie finally allows Mildred to give her marriage advice.\ntt0068245,cJYwpfA3HWY,Jake and Drew take revenge on the thugs that tried to rob them.\ntt0061385,WvgG6VNS2J0,Corie and Paul get an unexpected visitor in Victor Velasco on their first freezing night in the apartment.\ntt0061385,T3dPGXTusv4,Paul gives Corie a hard time about all the problems in the new apartment.\ntt0061385,7euiG3tT2R8,Paul goes to work for the first time since the wedding.\ntt0068245,AgJE212GTcs,Marshal questions one of the gang members right before he has him hanged.\ntt0068245,22aRiNlHhaI,Drew convinces the gang to trade in one of their guns for a meal.\ntt0068245,pCQuhXDlfL8,\"When Jake tells the gang to steal food for the night, Boog gets shot in the head.\"\ntt0061385,oqyRFXXwB48,The five-story walk-up proves to be quite a challenge for the delivery men.\ntt0109120,N-PI5nIwciE,Toni comes to accept that Andre is better off living at the aquarium.\ntt0109120,_c7cV5_jU5Q,Andre saves Toni from the storm by guiding her boat toward her father.\ntt0109120,cjS-Y6WsWMg,Andre escapes from his Winter home in the barn and doesn't return until Spring.\ntt0109120,b_jYYdrSYBg,Mark and Paula take Andre out to sea where Mark reveals his intentions of killing Andre.\ntt0109120,PJot4Pv7dFI,Harry saves Andre from a belligerent Billy.\ntt0109120,RhUPit82Gm0,\"Toni brings Andre to show-and-tell, and becomes heart-broken when her parents tell her they must return him to the wild.\"\ntt0109120,T7eWdvyCHyI,\"Andre becomes a local celebrity for performing tricks, but Toni's dad soon finds himself in trouble with the authorities for keeping him in captivity.\"\ntt0109120,AI9AcMtuqsU,\"Harry leads by example, encouraging Andre to play in the water like the seal that he is.\"\ntt0109120,39vZZiM3kIA,Toni spends some quality time with Andre.\ntt1403865,r4SF22qFxbE,Rooster challenges La Boeuf to a shooting contest after his marksmanship comes under suspicion on account of having only one good eye.\ntt1403865,oK4FZ3ks17M,Mattie tries to recruit Rooster to help her find her father's killer and bring him to justice.\ntt1403865,gMPr9rchJMs,\"When La Boeuf suggests that he join in on the hunt for Tom Chaney, Mattie resists the overture with her signature wit.\"\ntt1403865,mbkWniWSpR0,\"When Mattie takes it upon herself to arrest Tom Chaney, her inexperience gets the best of her as things go quickly awry.\"\ntt1403865,ovy6F76ip3M,\"Ned Pepper holds Mattie hostage, using her as leverage against Rooster.\"\ntt1403865,wdAXjMj6mfU,Rooster takes on Ned Pepper and his henchmen in a climatic one-on-four showdown.\ntt1403865,MHfk4edzvnI,\"Frustrated that the trail for Tom Chaney and Ned Pepper has gone cold, Rooster lashes out at Mattie and La Boeuf for their shortcomings... But he saves the greatest invective for himself.\"\ntt1403865,MEU2EJBkJcs,\"After considerable haggling, Mattie convinces Rooster to help her find the man who killed her father.\"\ntt1403865,_Rnaa9qtGgs,Chaos erupts after Rooster interrogates a pair of outlaws regarding the whereabouts of Tom Chaney.\ntt0384680,fY-Aprk4mtY,Dave assaults the man who has been harassing and threatening his son.\ntt0384680,mQ3tgtzkz_U,\"While practicing archery, Dave takes aim at Russ.\"\ntt0384680,qvFduxMK7zo,Dave has a breakdown when someone throws a pie on him before he has to see his family.\ntt0384680,vRaCv5oNQ3w,Dave recalls an instance when he was not the best husband he could have been.\ntt0384680,oCjXFnr826Y,Dave and Noreen have an argument over a very specific aspect of their marriage.\ntt0384680,FDGyKHeU2Es,\"Dave and Noreen go to trust counseling, where Dave is less than stellar.\"\ntt0384680,cSUVLAM8jx0,\"After an argument with Russ, Dave finds out some disturbing things about his daughter.\"\ntt0100828,VB3awTlgRFk,Jake Berman has a smoke in a house that is flooding with oil.\ntt0384680,-5Rohhkg-7k,\"After getting hit with a Frosty, Dave's day gets even worse when Robert tells him that he has been diagnosed with cancer.\"\ntt0384680,b3Aq5Vc0Ics,Dave has a verbal altercation with another customer in the DMV line.\ntt0100828,wrrxHvC1J7I,Jake meets with Kitty and discovers what happened to Katherine Mulwray.\ntt0100828,N4fylYYIrUc,Jake makes Detective Loach suck on his own gun.\ntt0100828,2cExWs8VUN8,Jake talks to Rawley about oil.\ntt0100828,_7Y_OCGOKTk,Jake and Lillian succumb to the passion of the moment.\ntt0963794,ZErJ-R9PLFA,Jeff sacrifices himself so that Amy can escape.\ntt0100828,wCDAFiLrHE0,\"When Lillian threatens to expose Jake, he knocks her out.\"\ntt0100828,oqCHL75LG3Q,Jake Berman turns homicidal when he finds his business partner in bed with his wife.\ntt0100828,3zPrtRFOZQY,Jake Gittes prepares Jake Berman for a confrontation with his unfaithful wife.\ntt0963794,phzJ2Iam214,Stacy feels the vines in her body and begs to cut them out.\ntt0963794,VtEOGd7tD9o,Eric wakes to find Stacy cutting the vines out of her body.\ntt0963794,JBLwuC2gHVQ,Stacy watches as Jeff cuts her open to remove the vines.\ntt0963794,3i76M1f3nB4,Mathias prepares for Jeff to cut off his legs.\ntt0963794,ar72efkbkSo,\"While Stacy becomes insanely jealous, Mathias gets attacked by vines.\"\ntt0963794,ajMVBGbsL_E,Amy and Stacy find not only a cell phone but also a dead body and killer plants.\ntt0963794,MpGCnuiCSuU,Stacy and Mathias wake to find that the vines have entered their open wounds.\ntt0117331,Zh_r3u2RK1Q,The Phantom and Diana Palmer say their goodbyes.\ntt0117331,2ZiKO3NtZiI,\"When Quill and his gang capture The Phantom and Diana Palmer, Phantom's dog comes to the rescue.\"\ntt0117331,hLUSwJuMjWo,The phantom destroys Drax and the three skulls with his fourth skull ring.\ntt0117331,9lj3ebVWDUw,Drax tries to bargain with The Great Kabai Sengh to split the power of the skulls.\ntt0117331,C_QYZUjx7rs,Drax demonstrates the skulls' ability to combine powers and point to the location of the third remaining skull on the map.\ntt0117331,VNQP-pvNK9A,\"Drax holds a board meeting to talk about the three skulls' power, but Ray Zephro chooses not to participate in the jungle madness.\"\ntt0117331,CvK9ZJVsiPM,The Phantom rescues Diana Palmer but first he runs into some girl trouble.\ntt0117331,LkBmLiDPbxQ,Drax believes Dr. Fleming has given away secret information and decides teach him a lesson.\ntt0117331,rYXDky5UYks,Quill and his accomplices search for one of the three skulls deep inside a cave.\ntt0059575,DXRDZkTNEuM,Jesus Ortiz is shot in his attempt to protect Sol Nazerman.\ntt0059575,Qn336Lxy1TQ,Jesus Ortiz makes a confession in his final goodbye to Sol Nazerman.\ntt0059575,moYhss9sP94,A crowded subway unearths Sol Nazerman's haunting memory of his son's death on the train ride to the concentration camps.\ntt0059575,oJ_2e3gdfNQ,Jesus Ortiz asks Sol Nazerman if there's anything in life he does believe.\ntt0059575,gzTzSOHP_HM,Rodriguez throws the truth of Sol Nazerman's reality in his face.\ntt0059575,5clBF38sqqw,Jesus Ortiz asks Sol Nazerman why his people come to business so naturally.\ntt0059575,XSUU-_0cWn4,Sol Nazerman's traumatic flashbacks are triggered when a pregnant woman comes into the shop asking to borrow off her diamond engagement ring.\ntt0059575,OLtnOGTdLO4,The barking city dogs and the gang beating of a kid trigger Sol Nazerman's traumatic flashbacks of his days in the concentration camps.\ntt0091129,wx2g7H8UvrQ,The Golden Child entertains Til with a dancing soda can.\ntt0091129,NtkLxegTLPU,Chandler and Kee try to fight off Sardo Numspa and his henchmen.\ntt0091129,o50HHf9f_SQ,Chandler creates a diversion at the airport to throw off the police.\ntt0091129,V1bgBW9xx40,Chandler plants the sacred dagger on an unsuspecting traveler to sneak it through airport security.\ntt0091129,7zwPRGbmrow,\"Before he can obtain the sacred dagger, Chandler must complete an obstacle course to prove he is pure of heart.\"\ntt0091129,jr0JXSM_0Nk,Kee takes Chandler to a Buddhist temple to request the sacred dagger.\ntt0091129,ETkJs0Mhnmo,A strange series of events unfold while Chandler dreams.\ntt0049096,a4WffLH9UMs,Griselda puts Hawkins under her spell and sends him off to seduce the princess.\ntt0049096,4hgt2hCDgr4,\"When the King tries to seduce her, Jean tells him about the disease that ravaged her family.\"\ntt0091129,aGMCd4SoXk0,Kee informs Chandler he is destined to find the Golden Child.\ntt0049096,3SNcyADMY8k,Hawkins and Jean fool the King's soldiers with their disguises.\ntt0049096,TdRbjlsp7uM,\"Hawkins, assuming the identity of Giacomo, the court jester, fools the king's soldiers again with his quick-changing accents.\"\ntt0049096,cysxO5Z-0L8,\"When the King asks Hawkins about the Italian court, he makes up a story about what the duke did.\"\ntt0049096,AfyZ1bWv7Ls,\"During his fight with Sir Ravenhurst, Hawkins becomes the Black Fox at the snap of a finger.\"\ntt0049096,G9GWMbrEu_g,\"Hawkins, forced to entertain the king, sings a song about how he became a jester.\"\ntt0049096,6zIWcCvQNqQ,\"Griselda tells Hawkins there's been a mistake: the pellet with the poison's no longer in the vessel with the pestle, but in the flagon with the dragon.\"\ntt0252028,FM_KxbSOjJk,Drew finally opens up to Alicia about his troubled past.\ntt0252028,LmCGd9zuFTs,Drew runs into Alicia unexpectedly and attempts to make amends.\ntt0252028,uFHReMA18_c,Chaos erupts in the Valco household after Brian accidentally discovers provocative photos of Christine.\ntt0252028,jq2tARSds7M,Drew is conflicted when his ex-girlfriend and his current love interest show up for Christmas dinner at the same time.\ntt0252028,2-oMhYVEk8w,Drew's attempt to impress Alicia doesn't go over as planned.\ntt0252028,k1_OK7cug8I,Drew hands out a script he wrote in order to familiarize the Valco family with the roles that he expects them to play.\ntt0252028,cM2U8v8OuLo,\"Tom convinces Christine to sign a contract indicating that they will pretend to be Drew's family during Christmas in exchange for $250,000.\"\ntt0252028,Fekzb5yWBZk,\"Drew visits his childhood home to burn his grievances, but to Tom and Christine, it appears as if Drew is igniting a fire on their front lawn.\"\ntt0251075,78IG1HROeoc,\"When the aliens evolve into primates and attack, Governor Lewis gives General Woodman his full support.\"\ntt0251075,d6E6Pu3a5qM,An accident in the lab leads Ira to discover the secret to the alien's rapid growth.\ntt0251075,9-Kvo3-7OZo,Governor Lewis demands solutions for the alien invasion crisis.\ntt0251075,maWXwv9cBS4,Ira and Harry deliver a shampoo enema that defeats the giant alien.\ntt0251075,f9_1eujdVpI,\"Ira, Harry and Wayne track down a giant alien bird in a shopping mall.\"\ntt0251075,-nkxnc1C6rc,An alien crawls inside of Harry and gets pulled out the hard way.\ntt0251075,aV2eCTRFJbY,Ira gets deposed by Allison regarding the side effects of the vaccine he created.\ntt0251075,xAV_XfpHSr4,Ira informs Harry of his recent alien discovery.\ntt0249478,YldUEtdvBZU,Frank confronts Rick about Danny.\ntt0251075,DZfq30VdBqU,Wayne practices his firefighting skills when a meteor crashes into earth.\ntt0249478,K7vOjKOdMNE,\"Having tied Danny up and preparing to make his escape, Rick is stopped when Frank bursts in to save his son.\"\ntt0249478,mTr1vpzU00Q,When Frank tries to talk to Danny he appears crazy to family and friends. At home Rick threatens Danny for trying to talk to his father.\ntt0249478,XSa0_MGO8bA,Rick threatens Danny in his bedroom.\ntt0249478,OIl2sEhU24I,Rick disposes of Ray Coleman's body as Danny watches from the shadows.\ntt0249478,iTlkXQH-sdg,\"Rick kills Ray Coleman and prepares to dispose of the body, unaware that Danny has seen everything.\"\ntt0821642,mvkHPUZnww0,\"After finding Nathaniel bumming around in a roadway tunnel, Steve presents him with a gift of a cello.\"\ntt0249478,hVZ9AGQL_oo,\"Frank attends Susan and Rick's wedding, and notices a change in Rick when an unexpected guest arrives.\"\ntt0249478,aYuatR0B8Uc,\"Danny and his new step-father Rick have a game of catch that begins friendly, and ends anything but.\"\ntt0821642,rn4Ff3MpiRc,Steve finds it difficult to get through to Nathaniel when he approaches him about writing a feature for the LA Times.\ntt0821642,Gv_SuIRPPyQ,Nathaniel and Steve reconcile their friendship after Nathaniel apologizes for his harsh words.\ntt0821642,dAc1rDS3YhQ,Nathaniel lashes out at Steve after reading a document stating that he has a schizophrenic mind.\ntt0821642,V4rNLT7N_VA,\"Steve tells Mary that he is done trying to help Nathaniel, as his previous efforts have done more harm than good.\"\ntt0821642,R2n0ZDq1N2c,Nathaniel rushes off the stage when memories of his past collide with fears of the present.\ntt0821642,ymzHr_Uvp7w,Steve approaches Nathaniel after hearing him play the violin on a street in downtown LA.\ntt0105327,4tTTXKxHcKY,\"David visits the headmaster to confess to cheating on the test, but Rip Van Kelt intervenes, exposing the real truth about who cheated.\"\ntt0821642,kXuzMpA9MaA,Mary embarrasses Steve by accusing him of exploiting Nathaniel.\ntt0821642,d3P2O-Up78Q,Steve gets uncomfortable when Nathaniel tells him that he is his God.\ntt0105327,U2iJ1VmhksI,\"David confronts Charlie about seeing him cheat on the test, threatening that if Charlie doesn't tell the guys at the meeting, he will.\"\ntt0105327,fTb9XrbAMRs,David becomes the victim of discrimination when the guys start attacking him for being Jewish.\ntt0105327,DPRsafiw4vQ,David visits Sally at her swim meet to see if she wants to be with him.\ntt0105327,R5SlDq1oRYA,\"With five seconds on the clock, David runs to the end zone and scores, defeating their long-time rival team.\"\ntt0105327,cyEwqVnXGU0,Charlie provokes David with a racist joke and a fight breaks out in the shower room.\ntt0105327,LVt8wEpPgPQ,Charlie explains to David about what the future can hold if he plays his cards right.\ntt0105327,nuLPRAvxkDo,David gets insulted about being a Jew and a fight breaks out in the alley.\ntt0069097,kF-KLIi97Uc,Allan fantasizes about his date with Linda but gets interrupted by daydreams of his ex-wife and Bogart.\ntt0069097,B8CGtuR9FnY,Allan prepares for his date with some advice from Bogart.\ntt0069097,au5XE48PEeU,Allan imagines his hero Humphrey Bogart giving him advice on how to handle women.\ntt0069097,Z-Vnk_VTtzk,Allan sinks to the depths of depression after his marriage to Nancy ends.\ntt0069097,fniTZP_4V1M,Allan gets roughed up by some thugs while on a date.\ntt0069097,WdfgoDKArzM,\"Allan thinks that Sharon is attracted to him, but he's proven wrong.\"\ntt0069097,DS1YYtQ_LLY,Allan tries to pick up a girl at a museum.\ntt0069097,QlNXJ4pAoZc,Allan explains to Linda that he thinks about baseball during sex.\ntt0090357,7iBFIlHDZx0,Holmes and Watson experience surreal hallucinations in the London Cemetery.\ntt0090357,qIV6K8OOvYM,Mr. Waxflatter stabs himself after experiencing a violent hallucination in an antique shop.\ntt0069097,8JkLimZnZAs,Allan imagines that Dick will take the news of his betrayal in cinematic ways.\ntt0090357,MTGOnbJkILg,Elizabeth presents Holmes with a new hat after she allows him to hide out in her Uncle's attic.\ntt0090357,pyyquXhcSk8,Holmes and Watson attempt to rescue Elizabeth from the captivity of a secret Egyptian cult.\ntt0090357,ye_E3_ik9gQ,Holmes and Watson take an untested flying machine to the air in attempt to save Elizabeth.\ntt0090357,-33sUQVbQ24,Holmes engages in a sword fight with Professor Rathe while Watson tends to an injured Elizabeth.\ntt0090357,-kRGB8yBnrA,Professor Rathe calls on Holmes to demonstrate fencing techniques to the class.\ntt0090357,uOsxXi-tu_U,A mysterious hooded figure strikes Reverend Nesbitt with a thorn that causes him to have a strange hallucination.\ntt0756729,FdgyK4SErpU,Peggy and Newt become friends and work together to improve animal rights.\ntt0090357,4NES9LMRqAc,Watson meets a teenage Sherlock Holmes on his first day of attending boarding school in London.\ntt0756729,OSfjh0d3RkA,Peggy takes her niece and nephew to visit a farm.\ntt0756729,cUnb4UuUS8E,Peggy gets in trouble with her boss when she collects signatures for a PETA petition.\ntt0756729,RupELElQj6E,Peggy and Al talk about their dogs that died too young.\ntt0756729,A1MEIKVyYPk,Newt tells Peggy that her dog killed another dog.\ntt0756729,HJU9-MJ4oEc,Peggy adopts every dog from the pound.\ntt0756729,BVs5TFKigUw,Peggy attacks Al because she thinks he killed her dog.\ntt0756729,ffPTYWq1YAY,\"Peggy heads off to a protest, content that this is her greater reason for living.\"\ntt0756729,W1p7SP59Vkk,Bret suspects that the babysitter is drugging her baby with Benadryl.\ntt0364751,BZejgesCJhE,Jerry and Tom square off against two hillbillies in an abandoned mine.\ntt0364751,BLNQrlY4HMY,Mountain man Del helps the boys out of a tight spot by providing some cover fire.\ntt0364751,J97c0nWkJT4,Tom demonstrates his unique fish catching technique for Jerry and Dan.\ntt0364751,xG6V0I6_ZP8,\"Jerry, Tom and Dan encounter two beautiful forest dwellers living in a tree.\"\ntt0364751,kU5tlt5wTcc,\"Jerry, Tom and Dan encounter some rough rapids on their camping trip.\"\ntt0364751,jN_ftt-J7S8,\"Jerry, Tom and Dan enjoy the hospitality of a bearded mountain man.\"\ntt0364751,iIeyS_5sJHE,Dan recalls a scene from Return of the Jedi as the guys elude two angry hillbillies on a four-wheeler.\ntt0277434,Uu77LGPAlPA,Hal gives a moving speech to his men before leaving America to fight over in Vietnam.\ntt0364751,um3tlxmK7Cg,Dan has a close encounter with a mama grizzly bear.\ntt0277434,8T6_bpLwTrc,The U.S. Air Force bomb the Vietnamese ground troops with napalm.\ntt0364751,c5ZiiE8fyGk,\"Jerry, Tom and Dan discover a treasure chest they put together as childhood friends.\"\ntt0277434,eZe4RbiIBpM,The military housewives get together and socialize about their lifestyles.\ntt0277434,6M6cpjP7GIo,Combat starts between American soldiers and the North Vietnamese when U.S. Army helicopters arrive in Vietnam.\ntt0277434,3bo6h-7ryfE,The French Foreign Legion is ambushed by the Vietnamese military.\ntt0277434,3e-DXYUvxys,Lt. Col. Moore leads his troops into a harrowingly violent battle against the Vietnamese foe.\ntt0277434,VglR1HaNlV8,Julie receives a telegram and panics.\ntt0277434,UFXtRWVYQV8,Jack seeks advice on being a soldier and a father.\ntt1193138,EePcWVFtRCU,Ryan meets Alex at a bar.\ntt0277434,KMsryQSdT_k,\"Lt. Colonel An evaluates the tragedy of the battle that took place, and the ramifications of the escalating Vietnam conflict.\"\ntt1193138,MIexe6aa14w,Natalie tries out the new video chat method of letting people go.\ntt1193138,TkX-TPaodoM,Ryan tells the man he's firing that this is an opportunity to go back to the dreams of his youth.\ntt1193138,ZDgFAFQGZbI,Ryan tells Natalie about his goal of earning 10 million frequent flyer miles.\ntt1193138,Wje5oR4NqYI,Ryan has a wake-up call from Alex about what their relationship really means to her.\ntt1193138,vEDyFvKFcoQ,Natalie tries to talk to Ryan about the value of marriage.\ntt1193138,DsVUFXVx2pQ,Ryan and Natalie discuss his philosophy of love.\ntt1193138,fjVyrWdUy0c,\"Ryan fires people for a living and his latest victim, Steve, takes it pretty rough.\"\ntt1193138,TsT0ExNMK3I,Ryan talks to his sister's groom when he gets cold feet.\ntt0073747,VUsdbeBqeeo,Joanna and Bobbie accidentally walk in on a Stepford couple.\ntt0073747,hVGcbaoRtqk,\"Joanna, now a soulless Stepford wife, greets the other women at the grocery store.\"\ntt0073747,NQobuzmBNXo,Carol comes to apologize to Joanna and Bobbie for her strange behavior the previous day.\ntt0073747,F5mTt2atvVk,Joanna and Bobbie discover that Charmaine has decided to get rid of her beloved tennis court.\ntt0073747,VG7JAM6DQnM,\"Joanna goes to Bobbie for help, but quickly discovers that she is no longer human.\"\ntt0073747,JbNo_tlgYfs,Joanna and Bobbie discuss the strange happenings in the town of Stepford.\ntt0345950,t0Hr0YA9_H0,\"The evil Plankton finds an evil plan to take down his nemesis, Mr. Krabs.\"\ntt0073747,6_0y_BGIZSU,Joanna finds the replacement that Dale created for her.\ntt0073747,GjtM8XhcA-M,Joanna and Bobbie hold a meeting for the women of Stepford.\ntt0073747,8fbZvje4A58,Joanna comes back from New York City to find that Bobbie has become like all of the other women in Stepford.\ntt0345950,brTGAgUYnIc,David Hasselhoff comes to the rescue.\ntt0345950,r3eNr-xxA7s,The creatures of Shell City come alive and get revenge on the Cyclops Diver.\ntt0345950,YCPDVVLUw-4,Spongebob performs a rock concert in the Krusty Krab.\ntt0345950,0vVy9NBehoc,Spongebob must escape the wrath of Dennis the bounty hunter.\ntt0345950,NpI0s0ky53I,Mindy makes Spongebob and Patrick into men with her mermaid magic powers.\ntt0345950,qcFVUGNUWuk,Spongebob gets ready for an important day at work.\ntt0345950,7nUDA-4vD9g,Mermaid Mindy gives helpful advice.\ntt0345950,ohMzC_1W0ZY,The opening musical number with a song and dance by pirates.\ntt0345950,j8yAjWvAqyM,Spongebob plays with bubbles.\ntt0416236,1xI_CHaHWmw,Hogsqueal makes himself integral in the defeat of Mulgarath.\ntt0416236,3qZAvmpNfaw,\"Jared shares an emotional moment with his father, only to discover that it is actually Mulgarath in disguise.\"\ntt0416236,3V-kJbW3b54,The kids escape from the magical land where Spiderwick has been held prisoner.\ntt0416236,acO1g9PEIBM,\"Jared,, Simon, and Mallory take a ride on Spiderwick's pet griffin.\"\ntt0416236,g0TZztZJGRo,Simon dispatches a group of goblins with a home-made oven bomb.\ntt0416236,q254XDNZ2Ao,Helen and the kids defend themselves from the encroaching hoard of goblins.\ntt0416236,plovZLxlpGk,\"While trying to rescue Simon, Jared meets the friendly but troublesome Hogsqueal.\"\ntt0120053,xWTQN9bqbws,Simon Templar steals a microchip from Russians.\ntt0416236,fZzxZa0k7II,Jared and Mallory run from a cave troll while navigating the secret tunnels leading into town.\ntt0416236,387KRtYq2mE,Jared discovers Spiderwick's Field Guide to magical and mystical creatures.\ntt0120053,zmxWCJ8iM_8,Dr. Emma Russell runs to get into the American Embassy where she will be safe from Russian mobsters.\ntt0120053,wnosQPQgvTs,Simon Templar hides from Russian mobsters by diving into ice water.\ntt0120053,qYufeLaIggU,Simon Templar seduces Dr. Emma Russell by pretending to be an artist.\ntt0120053,O1p6omIzsuY,Simon Templar pretends to be German to fool Russian mobsters.\ntt0120053,yAXioyO-acA,Simon Templar fools the detectives in London and escapes in a car.\ntt0120053,atpbdTo9nno,Dr. Emma Russell explains how cold fusion works.\ntt0120053,QDYx2BOuAGo,Simon Templar pretends to be American to sneak around the American Embassy.\ntt0120053,NaFy_SWmRlI,Simon Templar pretends to be a Spanish man in order to fool the authorities.\ntt0120844,og1c8h2UyE8,Captain Picard infiltrates the Son'a ship.\ntt0120844,i7KcAEPxDwQ,Ad'har Ru'afo attacks Vice-Admiral Doughtery after he threatens to end the mission prematurely.\ntt0120844,9bHnSNlLZh4,Captain Picard and his crew try to protect the Ba'ku from attack.\ntt0120844,mha0N1Cx1Ck,Captain Picard tends to a dying Anij.\ntt0120844,-1gCG8m1SHU,\"Captain Picard, Commander Data and Anij investigate a holographic ship.\"\ntt0120844,xdgjUPMiiEc,Captain Picard and Anij discuss the perfect moment.\ntt0120844,N4x1K97JZG0,Commander Riker and the crew of the Enterprise destroy the Son'a battleships.\ntt0120844,jw41pJtU6eY,A malfunctioning Commander Data disobeys orders.\ntt0120844,0UlzQ-bao3Q,Commander Riker tries to woo Counselor Troi.\ntt0120844,vm8sOhr-0lA,Captain Picard and Commander Worf search for Commander Data.\ntt0113972,TBBN6WvPavY,The Shoe Shine Man delays Ms. Jones from killing Mr. Watson's daughter.\ntt0113972,tcfI_6ZMZQo,Mr. Watson has to shoot the Governor or his daughter will be killed.\ntt0113972,nFYtmrhEBZc,Mr. Watson tries to tell his cab driver about his really big problem.\ntt0113972,Z2ixl9gb0uk,Mr. Smith tells Mr. Watson that he has 90 minutes to find and kill a particular woman or his daughter is dead.\ntt0113972,HZJ7Y5JooZM,Mr. Watson tells Mr. Smith that the Shoe Shine Man is deaf so that he can hear the truth.\ntt0113972,bHPmA9JEEQs,The Shoe Shine Man helps Mr. Watson trade places with a bellhop.\ntt0113972,z1bpjIkTie8,\"When Mr. Smith murders the woman trying to help him, Mr. Watson tries to shoot his way out of the governor's suite.\"\ntt0377091,4vOHfYUUCJk,Rocky tries to convince Marty to call off the prank.\ntt0113972,XmGOiqQm9B0,Mr. Smith tells Mr. Watson a story about his friend he had to kill.\ntt0113972,meN82_c9J_U,\"When Mr. Watson tries to rescue his daughter, Ms. Jones tells him what different calibre guns could do to her.\"\ntt0377091,M6mnrzwTxVU,George beats up Sam when he touches George's video camera.\ntt0377091,a5PoLM_QBuo,Kile grabs Marty for waking him and borrowing his gun.\ntt0377091,KvWWoKcefWo,Marty tries to convince everyone that they need to bury the body.\ntt0377091,IESky9kgqi8,Millie prepares questions she wants to ask Sam on their date.\ntt0377091,Q8HMk-QX5hg,\"Millie performs CPR on George, but it's too late.\"\ntt0377091,nhwtMOjWerg,\"When George taunts Marty about his dad, Rocky pushes him off the boat.\"\ntt0377091,-2LmKW3TtuI,Marty tells George why they really brought him to the lake.\ntt0377091,CmpDJs0Mjj0,Sam tries to convince Rocky to not go through with the plan against George.\ntt0377091,H4zYhsldk8M,Millie makes Sam promise that they won't do anything mean to George.\ntt0115678,dC1bJ1qmOCo,Phyllis is confused as to why Secondo doesn't want to go any further sexually.\ntt0120696,nCK7A5Zp9I4,Tom talks to Jim about taking the money.\ntt0120696,LCt7YtB6P7g,Jim comforts his wounded companion.\ntt1126618,cYdScH3BmBk,\"To Becky's delight, anchorwoman Colleen Peck is eager to participate in any stunts to help the morning show \"\"Daybreak,\"\" including sumo wrestling and kissing frogs.\"\ntt1126618,h52UYfkLhXg,Becky discovers that the ratings go up when Mike and Colleen insult each other on the air.\ntt1126618,_RYBglsS0tg,Becky flirts nervously and awkwardly with Adam until he admits to liking her.\ntt1126618,UpHWJ6959yo,The crew has a mix up with some of the graphics on Mike's first day.\ntt1126618,VrRhpEc9Ivk,Becky has finally had enough of Mike's attitude.\ntt1126618,8TIPGj4-f-M,\"A battle of wills begins between Colleen and Mike, leaving Becky to sort out the mess.\"\ntt1126618,9jI5AN2KZJ0,Mike shows his colors as Becky tries to work through a promo with him.\ntt1126618,gHfTsIMdlPg,Becky asks Mike to join the show.\ntt1126618,I4ktnP8eOOY,Mike gives a list of his credentials and accepts the job.\ntt1126618,GU6US0VlAio,Becky is interviewed by Jerry.\ntt0114857,rxKp6tH2AKU,Barnes finally takes out SID 6.7.\ntt0114857,hM33ekZw3yQ,SID 6.7 takes over a television station and calls it Death TV.\ntt0114857,FYcrFQ5boyA,Barnes attempts to diffuse the bomb set by SID 6.7 to kill Karin.\ntt0114857,47jfeR1H65g,Barnes recalls the moment when his family was murdered by Grimes.\ntt0114857,GJ1KcXeNstM,Barnes and Carter investigate the scientific makeup of SID 6.7\ntt0114857,Fs1k0EMYydY,Lindenmeyer notifies SID 6.7 that he is being shut down for his recent actions.\ntt0114857,E3LODyZSXT8,SID 6.7 makes music out of the screams of his hostages.\ntt0114857,rm6i_YfioZU,Barnes gets into a fight with another inmate over the death of Donovan.\ntt0114857,IV40w-OYo0A,\"In the virtual world, Barnes has a shootout with SID 6.7.\"\ntt0272020,j0sbjGj7ONo,\"When the guards refuse orders to shoot Lt. Irwin, Col. Winter takes matters into his own hands.\"\ntt0272020,Jh1ujB4gFv8,\"Lt. Irwin tries convincing Yates to join his rebellion, but Yates wants no part of it.\"\ntt0272020,U318Nwim78E,Lt. Irwin begins phase one of the inmates' uprising.\ntt0272020,Tp2V6oAgYbw,Col. Winter threatens to shoot the inmates if Lt. Irwin does not command them to get on the ground.\ntt0272020,cfM9_PduF3M,Lt. Irwin orders the inmates to begin launching boulders through Col. Winter's window.\ntt0272020,Ux1Er4tflxI,\"Shortly after the causeless execution of Cpl. Aguilar, Lt. Irwin tells Col. Winter that the inmates expect his resignation.\"\ntt0406650,VX5XAwBfy1w,Dean tells Carrie about her son.\ntt0272020,bH5GtRBsss0,Lt. Irwin is beaten after protesting the punishment of Cpl. Aguilar.\ntt0272020,1iFQ6IvEQXg,\"Col. Winter summons Lt. Irwin to his office in order to \"\"justify\"\" his strict methods.\"\ntt0272020,1F-LMCJ2n4M,Rosalee visits her father in prison but finds that she doesn't have anything to say to him.\ntt0406650,zzjFcjSFoqs,Dean is interrogated by Officer Lou Bratley about his fight at the mall when he finds out that it's actually the officer's son that has been kidnapped.\ntt0406650,t8Ql94ApRSI,Dean and Crystal come to help Charlie after Lee stabs him.\ntt0406650,5dxhOkrjfuA,Dean finally breaks down to Crystal about his friend's suicide.\ntt0406650,cUQZVnerwI0,Dean and Billy get into a fight at the mall over Troy's drugs.\ntt0406650,_OpCOSHbqiM,Carrie and Terri exchange passive-aggressive blows across their driveways.\ntt0406650,KJpaul2yTOU,Carrie returns a casserole dish to Allie.\ntt0406650,B_PvKCOXdiw,Dean has a strange encounter with Michael.\ntt0830558,RC5ZiK6o7uQ,\"Cris rescues Liz from the clutches of the evil Mr. Smith, only to realize what he has been seeing is all a projection.\"\ntt0406650,MGy5sF8PhRQ,We are introduced to Troy and his place in the community.\ntt0830558,lufECeWtN34,Cris navigates several future timelines at once in an attempt to save Liz.\ntt0830558,Yj-a2zT-r88,Cris manages to escape the clutches of the FBI.\ntt0830558,zDmvCNfvt5w,Cris uses his ability to escape both parties that are chasing him.\ntt0830558,9fuapCaufd0,Ferris forces Cris to watch the unfortunate potential future of Liz.\ntt0830558,aUWOzyo-Kec,Cris uses his ability against Kendall to impress Liz.\ntt0830558,TW8ZML5OvXs,Cris gives his definition of beauty to Liz.\ntt0830558,MpXp07KfSFI,Cris uses his special ability to escape casino security.\ntt0830558,us54vk5--jM,Cris explains his rules for using his foresight to gamble.\ntt0097481,TzMC8kgib3c,\"Laying together in bed, Dominique La Rue attempts to kill Quick, but he is one step ahead of her.\"\ntt0097481,UXCzmFHm3EE,Sugar Ray and Bennie Wilson insist Quick apologize to Vera for shooting her in the foot.\ntt0097481,OjHAZWyckMc,Quick accuses Vera of stealing and she invites him outback to settle the matter.\ntt0097481,5RPUchAlppA,Richie Vento makes a phone call home after Sunshine confesses her honest feelings for him.\ntt0097481,nNXxlYCU0aY,\"A crying man, a man with a broken nose, and their partner attempt revenge on Quick.\"\ntt0097481,yMiGHGsdikU,Vera takes Quick to the back alley to teach him a lesson for accusing her of stealing.\ntt0097481,538H6EYp_ZU,Sugar Ray resolves the customers' complaints about Bennie Wilson's vision at the craps table.\ntt0097481,JBOq0nY1rQE,Luck runs out for a Toothless gambler when a kid sits in on a game of craps at Sugar Ray's place.\ntt0084021,pcMXFYqwPGI,\"Rydell High's senior class sings \"\"We'll Be Together\"\" upon graduating.\"\ntt0084021,yPQQzJGKOvk,\"Stephanie mourns the loss of the mysterious motorcycle rider in the song, \"\"Love Will Turn Back the Hands of Time.\"\"\"\ntt0084021,HiNWDfHz8Io,Louis tricks Sharon into thinking the Russians are attacking outside to get her into bed.\ntt0084021,CcrrepikVtI,\"The mysterious motorcycle rider has everyone wondering, \"\"Who's That Guy?\"\"\"\ntt0084021,oJGQgAniyho,\"Mr. Stuart's biology class gets carried away with the lesson and breaks into the song, \"\"Reproduction.\"\"\"\ntt0084021,dJQGkx5LpuA,\"The senior class of Rydell High sings \"\"Back to School Again.\"\"\"\ntt0084021,KWKu1BbZhkQ,\"The gang goes bowling and breaks into the double entendre-laden song, \"\"We're Gonna Score Tonight.\"\"\"\ntt0084021,Hk3IpNbltyw,\"Stephanie tells Michael exactly what she wants in a guy through the song, \"\"Cool Rider.\"\"\"\ntt0077621,t209ljjmTqg,\"Henry and Julia put aside their differences, and leave together with the gold.\"\ntt0077621,_B9xQeIvdHM,Julia catches the Rail Road Manager spying on her as she bathes in the river.\ntt0077621,yLPFWQ0NcZo,\"Moon's Old Gang shows up to visit, and Big Abe finds out that Henry has struck gold.\"\ntt0077621,CVyeyli6gzg,Henry and Julia discover gold in their mine.\ntt0077621,ylDhWZKbCrc,Henry tells Deputy Towfield the truth about his new wife.\ntt0077621,d51N1kUa4lw,\"Henry Moon is rescued by Julia, just as he is about to be killed.\"\ntt0077621,SoQzCG8nTbg,Julia's neighbors come over to give her some marital advice.\ntt0077621,ENkEuLrzmnc,\"Henry attempts to come on to Julia, but she's not interested.\"\ntt0333766,25D3SlGLFKg,\"After leaving Sam in the airport, Largeman has a change of heart.\"\ntt0333766,URt8hBsrHFI,Mark delivers a helium tank to Diego in exchange for directions to a mysterious quarry.\ntt0333766,w13ky72PcKI,Largeman leaves Sam because he is too nervous to screw up the relationship.\ntt0333766,S-0prbWRAUk,\"Largeman, Mark and Sam find enlightenment at a deep rock quarry.\"\ntt0333766,08iCLTmybXM,\"While at Handi-World, Largeman meets an old schoolmate who has an opportunity for him.\"\ntt0333766,3Bm1V7eZBR4,Largeman reveals that he can't cry…or swim.\ntt0333766,MBopFmu3yAg,Sam shows Largeman what she does to feel original.\ntt0333766,4ImW1F6LyHE,\"Largeman takes Sam on a ride, but she doesn't like his friend Jesse.\"\ntt0333766,g46IxT3MGP8,Largeman meets a horny dog and quirky Samantha at the Doctor's office.\ntt0333766,oh8pzfm5QF8,Largeman is surprised to find out his old buddy is now a cop.\ntt0333766,BCHi6DrWgjI,Largeman meets a friend of Mark's mom who likes to dress in armor.\ntt0115678,pDcPRvZ9sDU,Primo and Secondo fight on the beach and get out all their frustrations of owning a business.\ntt0115678,Yd8gK6EgpLM,\"Primo and Secondo serve their secret recipe, Timpano, which causes an uproar.\"\ntt0115678,fz19xrc_99o,\"Secondo talks Phyllis out of the water, but she remains angry and refuses to talk to him.\"\ntt0115678,KAPU1-0hGRE,Phyllis catches Gabriella comforting Secondo with his disappointment of the night.\ntt0115678,d3hs2M_0vLE,\"Secondo makes a joke out of what Primo said, but it is taken the wrong way.\"\ntt0115678,rpUPWSqadTo,Secondo is given 30 days to pay rent before his and his brother's business goes into foreclosure.\ntt0115678,24qcFHAk1Cw,Phyllis and Gabriella discuss their dislikes when it comes to men and fantasize about cowboys.\ntt0115678,1UeNQlmxEkQ,The dinner guests finally get to eat the food prepared by Primo and Secondo.\ntt0120696,eEUulOnl-n8,Tom and Jim battle it out with the Sheriff and his men.\ntt0120696,BT2RBCEH54M,Tom tries to escape a flooding jail cell.\ntt0335559,5aXmi3hKJrY,Pete tries to upstage Tad as they do some chores around the farm.\ntt0335559,P_mbrROQcME,Pete expresses his true feelings for Rosalee.\ntt0335559,gOb8HH2oKcE,Tad quotes Pete in order to convince Rosalee to come home with him.\ntt0335559,YXzryi4HrVs,Pete intrudes on Tad in the bathroom to give him a lecture about breaking Rosalee's heart.\ntt0335559,kh1sYuFgUAM,Tad and Rosalee end their date with a romantic goodbye kiss.\ntt0335559,YdiAV1mo4ck,Rosalee assures Pete that Tad is being genuine.\ntt0335559,-zoOpeF5Yzc,Tad makes a visit to Rosalee's workplace with the intention of spending more time with her and setting his priorities straight.\ntt0335559,HYkSzS4v_sI,\"Rosalee practices what she will say when she first meets Tad, but she is still speechless when the moment arrives.\"\ntt0098382,hWRG6Oar-aM,Spock suggests a faster — albeit more dangerous — way of ascending a corridor.\ntt0335559,DuvGxB60xCQ,\"Before Rosalee leaves for Los Angeles, Pete warns her about men.\"\ntt0098382,f3u4j0hVy8c,\"Sybok leads Kirk, Bones, and Spock to a god-like figure, but the Captain has his doubts.\"\ntt0098382,2DM0pOmClOg,Captain Kirk receives a few surprises after he is beamed aboard a Klingon warshi\ntt0098382,0wMU9XDIm4g,Sulu and Chekov guide the Enterprise to an unchartered planet under the orders of Sybok.\ntt0098382,PK0i_dyx230,\"Scotty breaks Kirk, Bones, and Spock out of their prison cell on the Enterprise.\"\ntt0098382,xvi62S5Ou_E,Kirk feels betrayed by Spock after he tries to escape captivity from his brother Sybock.\ntt0098382,-L3D0BL9ieA,Captain Kirk and his crew stage an undercover attempt to rescue a group of hostages.\ntt0098382,qL1WqN1XKK0,Captain Kirk has a close call while doing some rock climbing during his shore leave.\ntt0098382,V7N7EZ79mvM,\"Kirk, Bones and Spock talk around the fire while camping in Yosemite.\"\ntt0088170,aZe77wShCbE,Kirk and the gang escape from Genesis before it is completely destroyed.\ntt0088170,XS4s3XXNLiE,Kirk fights hand-to-hand with Kruge.\ntt0088170,OlqErSr6Rjw,Kirk and Sulu rescue McCoy from jail.\ntt0088170,W3c9wtbQTZ4,McCoy meets an alien at a bar regarding an illegal ride to Genesis.\ntt0088170,Lk9wSrZ0fWA,The Enterprise duals a Klingon Bird of Prey.\ntt0088170,Yc81Un8ltS4,Spock's memory returns after his resurection.\ntt0088170,P1xdGCvNMEY,Kirk sets a trap for the Klingon boarding party.\ntt0272207,xj04uvQx9l8,Oak discovers a dead junkie who used a shotgun for a bong.\ntt0272207,nkcLf1CH_MY,Oak slowly dies leaving the tape recorder with his confession on it.\ntt0272207,7wLSkQOkAGY,Oak and Nick traverse the streets of Detroit asking about Jimmy Fredericks.\ntt0272207,vmnZ_-Mqb-c,Oak and Nick raid a warehouse where two drug dealers are hiding.\ntt0272207,xQGzDvZq6v0,\"Nick asks to work a desk job, and he will be granted one if he can solve a murder case teamed up with Oak.\"\ntt0338564,o4U1GZcMmn0,Lau finds Chen waiting for him in his office.\ntt0272207,-tlRw45_Ftk,Audrey can't stand how her husband Nick puts himself into dangerous situations as part of his job.\ntt0272207,mTr6qV4PiMc,Nick and Oak rough up a drug dealer's apartment and discover police-owned weapons.\ntt0272207,2xfrmlcIQf4,Nick runs after a drug dealer who takes a child hostage on a playground.\ntt0272207,LUQGBGUI64E,Oak reflects on a warrant raid where he found an abused little girl in a drug dealer's closet.\ntt0338564,sN7zJBjZgHU,Chen and SP Wong are trapped upstairs when the gang shows u\ntt0338564,cCtn7_K1GZM,Chen follows Lau from his meeting with Hon.\ntt0338564,UgU1ALnQTFA,SP Wong interrogates Hon.\ntt0338564,QWMVhLtFtNI,Chen reports on the criminals to the police while Lau reports on the police to the criminals.\ntt0338564,GfX0WTR-kNI,\"Chen arrests Lau, but things get more complicated when Inspector B shows u\"\ntt0338564,C1ZrzzP6tSQ,\"The cops ambush the parking garage, and Lau betrays Hon.\"\ntt0338564,o2joReiVA1A,Lau uses Wong's phone to call Chen\ntt0113451,XWI8ugmXnwM,Corelli gets stuck in the middle of a Chinese parade while chasing a suspect.\ntt0338564,YJBNE7F49Aw,\"Chen's criminal friend tells him as he dies that he didn't tell their boss that Chen was late, and therefore the mole.\"\ntt0113451,2mezAYW6Qiw,Katrina seduces Corelli after she gives him more information on the investigation.\ntt0113451,GSR6orbPFjo,Katrina confesses her involvement in a sex scandal after investigators reveal video evidence to her husband.\ntt0113451,XClRjF_xBj8,Corelli loses sight of the car he's chasing after it enters an abandoned pier.\ntt0113451,D8yY16GX9t0,Corelli engages in a high speed pursuit through the streets of San Francisco.\ntt0113451,0MU_p9wU5kQ,Corelli questions Patrice on a sex scandal involving the governor of California.\ntt0113451,3Cp_-nl5jEs,Corelli shockingly witnesses Patrice get hit by a car while waiting to meet with her. And then hit again.\ntt0780567,rNOZMZHDVB8,Olivia sweet-talks her daddy into taking a bite of some exceptionally burned pancakes with just the right amount of ketchup and hot sauce.\ntt0113451,cJti4-26uFE,Corelli must dangerously navigate traffic after he realizes that his brakes have been cut.\ntt0780567,OT-cPtnytxo,\"Playing pretend, Olivia makes her daddy stretch his creative muscles.\"\ntt0113451,DdZlmK8Xxsk,Corelli visits Mr. Wong to get answers on a piece of evidence.\ntt0780567,wRUXdHtHe8U,Johnny Whitefeather tries to pitch himself to Dante D'Enzo.\ntt0780567,ZCoJgCHXXK8,Johnny Whitefeather tries to get his son Indigo to use a magical blanket to get stock predictions.\ntt0780567,ifM0qy83_-A,Olivia forces Evan to dance with no music in public in order to get his stock advice from her imaginary friend.\ntt0780567,cB0p96nOXjo,Evan finds out that his predictions about underwear and poop were right on the money.\ntt0780567,rBgn0IhMEBk,Evan tries to take the Goo Gah away from Olivia.\ntt0780567,zVIDGJxo238,Johnny Whitefeather takes the stage and speaks about his dream sparrow.\ntt0120696,q7QxVddVEW0,Jim and his gang try to rob the flooded armored car.\ntt0780567,6zlY2XVDl0E,\"John tries to show Evan his powers as the \"\"man whisperer\"\".\"\ntt0120696,rXqRZvG5LAQ,The Sheriff reveals his evil intentions.\ntt0120696,Rv1LUObd720,Tom tries to get Karen free of her handcuffs before she drowns.\ntt0120696,ZKTMxF2PrHM,\"Tom turns the tables on his pursuers, stealing a jet ski and escaping from the school.\"\ntt0120696,RineREyWP-4,A gunfight breaks out at the flooded cemetery.\ntt0335559,RKBZx9XsCuE,Rosalee struggles to keep her cool on her date with Tad.\ntt0343121,WXDIkldSPqI,Tupac talks about the love he has for and from his community.\ntt0343121,mWquYel6AI4,The beginnings of the West Coast/East Coast rap battle are examined.\ntt0343121,-yx9JK_HeQc,Tupac succumbs to gunshot wounds sustained after a Mike Tyson fight in Las Vegas.\ntt0343121,hC6jyc9reW0,Tupac talks about the double standard between men and women when it comes to sex and the appeal of fame.\ntt0343121,Yg1izGf8EFQ,Tupac talks about the feeling of hopelessness.\ntt0343121,w9yRZoY0stg,Tupac talks about his love for women.\ntt0343121,ejJIihkZTGU,Tupac talks about the Thug Life movement and what it means.\ntt0343121,1tZ2EZXxU6w,\"Tupac describes his ascent from unknown to platinum rapper, beginning with his involvement with Shock G and Digital Underground.\"\ntt0815245,hSLj5cQaXM8,Anna is taken back to the psych ward. She is greeted by Dr. Silberling and Mildred Kemp.\ntt0343121,ScMlNpnLI3U,Tupac Shakur talks about getting shot and his thoughts on death and being an artist.\ntt0815245,L-HEnOelh-k,Anna gets upset and what she sees and acts on her anger.\ntt0343121,TQebazOCP4M,Tupac Shakur talks about why he started acting as a child.\ntt0815245,Ga9YztTUYaU,Anna wakes up to find a bloody trail that leads to the downstairs dumpster.\ntt0815245,750pEcgJqGg,Anna explains to Sheriff Emery that Rachel is trying to kill her and her sister.\ntt0815245,IYqE3JfSbzA,Anna and Alex try to explain to their father what happened to his girlfriend.\ntt0815245,UU8yY3gkZZ0,\"Anna sneaks into Rachel's room to find the pearl necklace, but gets confronted by Rachel.\"\ntt0815245,ETrY43GsoHY,Anna helps Rachel by taking out the trash from the kitchen.\ntt0815245,wbccgEaJudM,Matt sneaks into Anna's bedroom and tries to tell her the truth about what really happened the night of the fire.\ntt0815245,Pd8RaVEZlyU,Anna goes into the room where her mom died and sees her dead mom who is trying to tell her something.\ntt0327162,wf02wZ_Okw8,Joanna is shocked and highly suspicious of Bobbie's change in personality.\ntt0327162,yZvx9PF3NAU,\"Joanna, Bobbie and Roger locate a strange remote control after breaking into the Sunderson residence to check on Sarah.\"\ntt0327162,Op0qrTGRcxk,\"Walter is surprised and confused when Ted Van Sant is able to use his wife, Charmaine, as an ATM.\"\ntt0327162,R57cfRscNyM,\"In this recreation of the iconic final scene from the original film, Joanna appears at the supermarket where she purchases groceries alongside the other Stepford wives.\"\ntt0327162,C-Ad2a7UD0A,\"Joanna Eberhart introduces a new reality series, \"\"I Can Do Better.\"\"\"\ntt0327162,HkfaRh__E6U,Mike Wellington shows Joanna and Walter how a Stepford wife is made.\ntt0327162,mW42lBPbuTc,\"Claire Wellington takes control of The Stepford Wives book club alienating newcomers, Joanna Eberhart and Bobbie Markowitz.\"\ntt0327162,sEaSAJgaLtQ,Claire introduces Joanna to the Stepford wives and shows her their workout routine.\ntt0119874,xfIJV6C9-fM,\"Col. Devoe, Dr. Kelly and Vertikoff encounter a convoy of armed men as they drive through the streets of Austria.\"\ntt0119874,IwzcDydxQyM,Col. Devoe and Dr. Kelly get acquainted as they fly to Europe to investigate the theft of ten nuclear warheads.\ntt0119874,d5jxXkpstv4,Dr. Kelly and Col. Devoe work together to disarm a nuclear bomb seconds before it is set to detonate.\ntt0119874,TSaB7Oltgwg,Col. Devoe and Dr. Kelly pursue two terrorists through the streets of Manhattan.\ntt0119874,QecVEAGoQ4A,Col. Devoe secures a load of nuclear warheads from a truck moments before it teeters off a bridge.\ntt0119874,C2NxwHIDTUA,A stand-off ensues after Col. Devoe guides three U.S. helicopters into Russian airspace.\ntt0119874,gHfRl_ZjHj8,Col. Devoe utilizes some unorthodox interrogation methods to get information on a terrorist attack in Russia.\ntt0119874,avXk2EamFs4,Col. Devoe shows some impressive driving skills as he and Dr. Kelly fend off a group of hired assassins.\ntt0119874,MXYUFlvaGpk,Col. Devoe convinces Dr. Kelly to let him chase down some stolen nuclear weapons in Russia before they are smuggled abroad.\ntt0171363,DdqQsOC-A2w,\"Mrs. Dudley welcomes\"\" Eleanor to Hill House.\"\ntt0171363,upwUN92OAQU,Eleanor has help brushing her hair.\ntt0171363,bKOW66PVjvA,Eleanor does some digging into the past.\ntt0171363,UgxCAQEI16o,Eleanor confronts the ghost.\ntt0171363,NyPF-BmNQjQ,Eleanor sees haunting visions in the mirror.\ntt0171363,xSmmiAl9ZWE,Dr. Marrow tries to reach Eleanor before the stairs collapse.\ntt0171363,PVuB1pBFA5k,Eleanor's bedroom comes alive and attacks her.\ntt0171363,N6ffGVe63c0,\"Luke loses his head while facing off against a portrait, carpet, and fireplace. Eleanor fights a statue.\"\ntt0253754,aTPdWYo9zhQ,Two Romulan War Birds help the Enterprise battle Shinzon's ship.\ntt0253754,FVfoce-wfgI,Data encourages Picard that he is more than the sum of his parts.\ntt0253754,nYkD6bPe9Ho,Riker and Worf fend off an enemy boarding party.\ntt0253754,S02T1j9qzwg,\"Picard tells B-4 about his \"\"brother,\"\" Data.\"\ntt0253754,bXq3dytL6ZA,Picard flys the Enterprise straight into the Reman attack ship.\ntt0253754,DHUSpAtemfg,Counselor Deanna Troi engages the Reman Viceroy in a psychic battle of wills.\ntt0253754,Bl0c_aXJtUc,Picard tries to inspire Shinzon to embrace his potential for good.\ntt0785006,Jl4L_RREcpQ,Bruce runs out on his foster parents as the dogs take over the hotel.\ntt0785006,5djUDJaY7Ig,Mark discovers the Hotel for Dogs and promises to keep it secret.\ntt0253754,NJJDRmtivWI,Shinzon debates his shared identity with Picard.\ntt0785006,DSBU1YgGyt0,Bruce invents a waste disposal system for the hotel.\ntt0785006,w4o45-EnPrU,Andi distracts Lois when Friday gets loose in the apartment.\ntt0785006,T_0IN7mMXZI,Andi and Heather discover the downside of working with dogs.\ntt0785006,rTCi5UsRudE,\"Bruce builds a fetch machine, and Dave feels its wrath.\"\ntt0785006,1i2_WXJB6wI,Andi and Bruce try to stop one of their dogs from howling.\ntt0785006,4xcqyJwEdd0,Bruce and Andi discover a pair of dogs living in an abandoned hotel.\ntt0785006,kzUfGDKepCA,Bernie apologizes for interrupting Carl and Lois during band practice.\ntt0995039,n86CV7VKvfE,Gwen and Bertram bond over mummified remains.\ntt0785006,JYKlYHwUiac,Friday gets out of his leash and steals a hot dog from a man on a bench.\ntt0995039,JeT0XHFyAU4,\"When Gwen visits Bertram to see how he is doing, Bertram uses the opportunity to tell her the truth about Frank's dream.\"\ntt0995039,qlUmBE6uGu8,Gwen has a hard time believing Bertram when he tries explaining why he knows intimate details about Frank's life.\ntt0995039,TdQkBU9p6Y0,Bertram wakes to find his bedroom filled with ghosts.\ntt0995039,nshLAILEN4w,Bertram attracts a strange following after being pronounced dead at the hospital.\ntt0995039,7qVgjGI6Lsw,Dr. Prasher has a talk with Bertram to try and put some sense into his head.\ntt0995039,aOAgGeW7abs,Bertram bristles at the personal nature of the questions asked by a nurse.\ntt0995039,5kmgUtppQP0,Bertram tries to keep from gagging when Gwen brings out her giant dog.\ntt0995039,hcvAwHA7usc,\"After experiencing a series of hallucinations, Bertram demands to know if there were any complications during his previous day's surgery.\"\ntt0995039,qIOC-6zluBQ,\"Bertram approaches Gwen with the intention of asking her out, but Gwen is not privy to his charms, or lack thereof.\"\ntt0486822,NGtMNsci-zk,Kale and Ashley try to escape from Robert.\ntt0486822,QH8uHNGEvbg,Kale finally defeats Turner and saves his mom.\ntt0486822,x883mrwYjDM,Kale is very surprised to find Robert in his kitchen for breakfast.\ntt0486822,toAOUXtlXXc,\"Kale realizes exactly what Robert is up to when his mother, Julie, is over his house.\"\ntt0486822,VCghHER3cOU,Robert scares Ashley in her car when he realizes she is following him.\ntt0486822,Rv6_mS8l48U,Kale must race back to his house after he goes outside the house arrest perimeter.\ntt0486822,NH5fod3mC7c,Kale sees some questionable events taking place next door at Robert's house.\ntt0486822,b9qMqGTi1uc,Kale and his father get into a car accident on the way back from fishing.\ntt0486822,BWw0KCLcKHc,\"Señor Gutierrez pushes Kale too far. He gets a punch in the face, while Kale gets three months house arrest.\"\ntt0099044,jgdFx9Epf78,Cates has to shoot Reggie to kill Ben.\ntt0099044,67cxJ9EynG4,\"After Cates' partners reveal their betrayal, he and Reggie escape for their lives.\"\ntt0099044,nS-l7xvs5ew,Reggie takes the wheel after bickering with Jack.\ntt0099044,U6xq6u7vv0U,Reggie and Cates' interrogation turns out more difficult than predicted when bullets start flying.\ntt0099044,C_uIIZdNVwk,Reggie uses force to get Cates out of a bar fight.\ntt0099044,l4bCchzGpkQ,Reggie plays a joke on a traffic cop.\ntt0099044,uEchpjUjGPA,Cherry and Willie try to kill Reggie on the prison transport bus.\ntt0099044,uiWL3bxDifQ,Reggie is not pleased about his new assignment when Jack visits him in prison.\ntt0099044,hks2iXeaxsk,Reggie is less than pleased with Jack's upkeep of his car.\ntt0083530,OeLnS8O08ng,Elaine Dickinson helps Ted Striker find a piece of metal to shove into the panel per Commander Murdock's orders.\ntt0083530,1UybDydQpNY,Commander Buck Murdock assists Ted Striker and Elaine Dickinson in landing the Mayflower One.\ntt0083530,q8_R4AG2o1w,Father O'Flanagan declares the flight's impending doom.\ntt0083530,JGnxWlhfrrM,Ted Striker tries to negotiate with Joe Seluchi.\ntt0083530,OE8Tc1cvSYM,Commander Buck Murdock takes charge and gives orders.\ntt0083530,Gd6aLnPHqeE,\"Elaine Dickinson defines \"\"a tad\"\" to the passengers.\"\ntt0083530,_6AGOfGHzeg,Ted Striker starts to question his sanity after witnessing First Officer Dunn and Captain Oveur waltz off into space. The shuttle has run out of coffee.\ntt0083530,JMa1f4jyBa0,Mrs. Hammen testifies on the witness stand for Ted Striker and recalls the traumatic events that occurred the night Ted Striker saved the plane. A former colleague of Striker recalls the night they bombed Macho Grande.\ntt0083530,bE0mQSaYaNY,\"Jimmy Wilson thinks coffee is the reason for his father John Wilson's recent outbursts, but mother Alice Wilson has another idea. Mr. & Mrs. Hammen reminisce.\"\ntt0083530,BrRdy4BAYp0,\"Captain Oveur, Navigator Unger, and First Officer Dunn discuss the Oveur-Unger-Dunn hierarchy. Ted Striker buys a Lunar Shuttle ticket from a scalper.\"\ntt0120324,gNtGI_D85mQ,Jacob tells Hank that he doesn't want to live with everything they have done.\ntt0120324,EGX-t_U6vkg,Baxter forces Hank to go back into the plane to get the money.\ntt0120324,SWEbahhZEyA,Sarah tries to stop Hank from bringing the money back.\ntt0120324,tjYSxlqLOew,Baxter forces Hank to go back into the plane to get the money.\ntt0120324,mflonVbY9gw,Lou proposes the idea of keeping the money that he found with Hank and Jacob.\ntt0120324,Qn6tLR3RGgE,Hank is less than supportive when Jacob decides to buy back their parents' farm.\ntt0120324,tAp2Z3-zx9k,Things get bloody when Lou threatens Hank with a shotgun.\ntt0120324,3I6s_-Q_2kI,Hank strangles Dwight after being surprised that he is still alive.\ntt0964517,uYV11ZwpaSQ,Dickie takes his cake and visits his old friends at the crack house.\ntt0964517,rKV-U-HcGVk,Dickie and Charlene try to reconcile for Micky's sake.\ntt0964517,YP-rmIcxn1g,\"Mickey tells his mother, Alice how he feels about her favoritism.\"\ntt0964517,s2pqELFTepw,\"Micky tries to make peace between his family, his girlfriend, and his trainer.\"\ntt0964517,iCp3nEO3ttU,Charlene fights with Alice and Micky's sisters.\ntt0964517,OELFAF76DEU,\"Micky and Charlene have an awkward first date, but a great first kiss.\"\ntt0964517,hKvpF7ACDBo,Dickie watches a documentary about his own life from prison.\ntt1251757,0zhatVdxShE,Jack is forced by Haggerty to sign himself out of the company.\ntt1251757,yX5LfZK1wTw,A kidnapping goes wrong when the men bring back the wrong boy.\ntt1251757,pXe74ckEnME,Jack talks to Audrey about his family and the life he is leading.\ntt1251757,6w6aNHXW93o,Jack blackmails the District Attorney to get him to drop the charges on his son.\ntt1251757,DwOTJvwKKeU,Jack confronts Haggerty about deceiving him.\ntt1251757,l0VX6h8lP08,\"Jack is taken by the Russians, and Nikita questions him about the whereabouts of Ivan.\"\ntt1251757,qPZWb3abC9I,Things go terribly wrong with Ivan comes to pick up money for the Russians.\ntt0071771,Zmnzw-Dxym4,\"It's 4th and Goal, the game in the balance, and Paul puts the hopes of a victory for the Mean Machine on his shoulders.\"\ntt0071771,qBWbxMv6v_s,\"During the victory celebration, Paul gives the game ball to a stunned and angered Warden.\"\ntt0071771,HWAQ8rTBLUk,The Mean Machine get penalized for unnecessary roughness after Paul deliberately throws the football at the linebacker's nether regions -- twice.\ntt1251757,KuXeOs4oOBw,Wayne and Buck make their first batch of internet sales.\ntt0071771,84VVZEw9vBs,\"Paul recruits the psychotic inmate Shokner to play football, who then proceeds to break Samson's nose on the practice field.\"\ntt0071771,NhpvvobULYA,Paul recruits various misfits for the football team including Samson.\ntt0071771,EPmNA1vLOH4,\"A drunk and haggard Paul splits on his hot sugar mama Melissa, but not before a little domestic abuse.\"\ntt0071771,sZ0nA_2qOWc,Miss Toot smuggles some game film to Paul in return for fifteen minutes of sexual satisfaction.\ntt0499554,ZRJ_tgwyLUM,An alligator expert gets a rude surprise in a swimming pool.\ntt0203230,MALjtjcdmt8,Samantha confronts Terry about his behavior.\ntt0452608,XdMuekkeCeU,\"Jensen is approached during meal time and mocked, instigating an all-out brawl.\"\ntt0112715,GxhXJGA32YI,Amy the Gorilla drinks a martini to calm her nerves.\ntt0112715,6oPn0DwJOZA,Homolka's greed leads to an unpleasant encounter with a killer gorilla.\ntt0243736,EvQmjnk86zA,Matt and Erica share some candid conversation at the laundromat.\ntt0112715,ViUAWLUF74Q,The team is forced to abandon their plane.\ntt0112715,8fbGbPwKbQA,Captain Wanta gives his guests a warm welcome to Africa.\ntt0112715,jfgWw43Fcuw,Karen mops up the gorilla problem with a laser just before the volcano erupts.\ntt0112715,458GisQyQLg,Charles gets more than he bargained for when he and his partner make a big find in the jungles of the Congo.\ntt0112715,Aa4bjQGD6oY,Richard tries to make small talk.\ntt0112715,vKEqdQhX4lo,Peter wakes up to find a leech in his shorts.\ntt0112715,45mmWoSzIAY,The boats are attacked by hippos at night.\ntt0118849,CNH4A1sI_oE,Zahra is ashamed to be wearing her brother's sneakers until her teacher commends the students wearing the proper shoes.\ntt0243736,WmeaAGe4uMo,\"Matt, waiting handcuffed to the bed for Erica, experiences sexual hallucinations and is taken advantage of by the devious Erica.\"\ntt0243736,WK682NdLvS4,Matt's boner causes a disturbance at a meeting; Erica gushes to Sam about the intimate night she and Matt shared in which they touched one another using only flowers.\ntt0426501,ZI827BuJgx8,Johnny and Rita connect over their dark past and their less than promising future.\ntt0099558,gRGbGI2-kPs,Condor uses an inflatable bubble to escape marrying a large tribeswoman.\ntt0118887,oUQ9ZKUt2XQ,Freddy Heflin tries to help Moe Tilden with the investigation.\ntt0118887,wD8pQ5eDneo,Moe Tilden tries to convince Freddy Heflin to be his inside man.\ntt0118887,CWxkPQXZo6Q,\"Gary Figgis mocks Joey Randone, and tells Freddy Heflin that \"\"It's okay to be jealous.\"\"\"\ntt0118887,CG88PCHKwOk,\"Jack Rucker plants a gun at the scene of the crime to cover up Murray Superboy\"\" Babitch's mistake.\"\ntt0118887,ToxlyJ4-zBM,Shondel fights Joey Randone on the rooftop.\ntt0118887,dKAvAAT2q_U,Freddy Heflin dreams of when he saved the life of young Liz Randone.\ntt0413895,eUNWIKp6nR4,Homer gives a speech about Wilbur.\ntt0118887,TBURp00dftA,\"Driving on the highway, off duty cop, Murray Superboy\"\" Babitch is side-swiped by another car.\"\ntt0164184,H-h_xgdM8FI,Jack calls DCI William Cabot to alert him that a bomb has been planted in Baltimore.\ntt0413895,20dudgZjeaY,Elwyn and Brooks pick on Templeton the Rat.\ntt0164184,l-uqZJwOieA,A bomb goes off in Baltimore and causes a vast amount of destruction.\ntt0413895,9BNJuZn72tg,Charlotte builds a web for Wilbur.\ntt0413895,Q0UDJuPozw8,Elwyn and Brooks want corn. The only thing in their way is the scarecrow.\ntt0413895,DYFQ9vVqiMA,\"While Avery and Fern fight over Charlotte, Templeton the Rat tries not to break a rotten egg.\"\ntt0413895,zdX69cWtu6w,\"Fern convinces her father, Mr. Arable not to butcher a runt piglet. Instead, she offers to take care of it.\"\ntt0445934,_7dr6PCeW4c,\"Chazz and Jimmy stumble in the finals, but determine to perform the dangerous \"\"Iron Lotus\"\" move, in reverse.\"\ntt0445934,jaRbZJBLIQo,\"When Jimmy finds Chazz and Katie in a compromising position, Chazz leaves him a series of phone messages.\"\ntt0445934,sDsoiCkKuZY,\"In danger of disqualification, Chazz admits that he never slept with Katie and rushes to join Jimmy on the ice.\"\ntt0445934,nekzfohNwuY,\"Chazz attends sex addiction therapy, but finds himself powerfully attracted to his groupmates.\"\ntt0445934,0LzZVYshI7s,Jimmy tries to explain to Katie the magic that he finds in ice skating.\ntt0445934,aqvTaYLP8yc,\"Jimmy tries to ask Katie out, with a lot of interference from Chazz and the Van Waldenbergs.\"\ntt0445934,0DFBoLZC3Bw,Katie Van Waldenberg is disappointed that her skating brother and sister are so intent on cheating.\ntt0445934,JwGZDfu-PZI,Chazz tells Jimmy about his tattoos and love history.\ntt0096933,KKW4wRDTI6Q,Nick Conklin\ntt0445934,sh0IBg7GBeY,Chazz cheats on his diet and has some thoughts on the music for their routine.\ntt0445934,MQZES2Vkcws,Chazz annoys Jimmy on the Gold Medal podium and they get into a fight with disastrous consequences.\ntt0442933,eWmiv9uIXQk,\"A beast, Grendel attacks and terrorizes King Hrothgar's village.\"\ntt0442933,-RhmDUj_GJs,A dragon attacks Beowulf's kingdom after he repossesses the Royal Dragon Horn.\ntt0243736,gAVNayJY7Tc,Candy takes the opportunity to try to seduce Matt by giving him a provocative peek at her butterfly tattoo.\ntt0243736,KZzmopXXE2k,Matt and John suffer through an awkward dinner conversation about their parents' sex lives.\ntt0243736,gPamy0ygNs8,\"Duncan plans to sabotage Matt's celibacy vow by spiking his orange juice with Viagra, but their boss, Jerry, unknowingly takes the bait instead.\"\ntt0243736,I2rWcnXUllw,Erica and Matt discuss the complexities of attraction.\ntt0243736,Cr04KncHozI,\"Mandy and Andie corner Matt in the supply closet, propositioning him with a three-way to restore the system of sexual power.\"\ntt0243736,jpY79a30azQ,\"Matt stands up to Nicole when she comes crawling back, but it only makes her want him more.\"\ntt0243736,97QNsiDKamk,\"Matt takes Erica on a date to his special place, the bus, and ends it with a high five.\"\ntt0109506,OB8uD8FaPXU,Eric sends T-Bird flying to his grave as Skank watches.\ntt0109506,3Lq9NGTN8Pc,\"Eric takes on the first victim from his past, Tin Tin.\"\ntt0317248,kgxhkCKXyRs,The war between Li'l Ze and Knockout Ned escalates as more and more kids join gangs to get revenge.\ntt0317248,dPpj1KEhwpo,\"Rocket and his buddy try to rob a bus and a bakery, but didn't count on the victims being so cool.\"\ntt0109506,KDqz--u8NYY,\"Triggered by painful memories of his past life, Eric transforms himself into a mysterious figure bent of revenge and justice.\"\ntt0124315,TCQQtdtZmv0,\"When the sick orphan Fuzzy dies, Dr. Larch wants the other orphans to think he was adopted.\"\ntt0317248,hdlfKy3AXDI,Rocket ends up in the middle of a war zone when Li'l Ze asks him to take a picture of his gang.\ntt0317248,ru6jbod6hHI,Li'l Ze attacks Knockout Ned's home and Ned takes matters into his own hands.\ntt0317248,qvDxgXX9lww,Shaggy tries to get out of town with his girlfriend.\ntt0317248,Fa1zCdRj3MY,Knockout Ned joins Carrot's gang and becomes a hoodlum.\ntt0118849,HaCRdT6wcyE,The principal tells Ali to leave school when he arrives late for the third time in a row.\ntt0118849,InDLvz0bN4k,Ali tells Zahra that he's going to win a new pair of shoes for her.\ntt0118849,PCID_Jg1Djo,Zahra asks Ali how she will make it to school without a pair of shoes.\ntt0426501,Sa6o9ovlX7E,Johnny and Flynn come to terms with their situation and discuss how the best laid plans of mice and men fall astray.\ntt0243736,JUuQ3MggHbw,\"Matt asks his brother for relationship advice, but comes up with a solution on his own -- no sex for Lent.\"\ntt0243736,FcvCuyT-zWs,\"Matt surprises Erica at the laundromat, where he apologizes and they share their first kiss.\"\ntt0043338,0l5h8k9N9pI,\"Chuck goes to see Mr. Boot, looking for work as a reporter.\"\ntt0241303,1eWz6aeGexk,\"Armande Voizin finally gets a chance to see her grandson, Luc Clairmont.\"\ntt0413895,C0mHRQn_YrI,Charlotte describes her Magnum Opus to Wilbur.\ntt0065528,dcmwPYCUysw,Yossarian defies orders by refusing to bomb innocent civilians.\ntt0118799,btRNa3CItMc,Guido and Joshua send Dora a message of hope over the concentration camp's PA system.\ntt0264472,4VWgFJUjmHc,Doyle shows his rage against Gavin by damaging his car tire.\ntt0413895,zS3qOr0zAJg,Charlotte introduces herself to to Wilbur.\ntt0413895,jKCpGDv8vuY,Fern enjoys herself at the county fair.\ntt0118887,cNqSc_WsRJ4,Deputy Cindy Betts pulls over Ray Donlan for speeding.\ntt0413895,JoEU1L2kueo,Wilbur tries to convince the other barn animals to play in the rain.\ntt0317248,L9x9zuoAEl0,\"Knockout Ned tries to help a wounded member of his gang, but he has his own agenda.\"\ntt0241303,ALImNM6jWZw,Vianne tries to persuade Guillaume Bierot to buy a gift for Madame Audel.\ntt0317248,XeN0t2sZaP4,\"Li'l Dice grows up fast, murdering, thieving, and becoming Li'l Ze.\"\ntt0317248,V26Pogm8ktk,Li'l Ze torments the Runts.\ntt0088930,jPf2y2QGoJw,\"In the real ending, Wadsworth reveals himself to be Mr. Boddy and Mr. Green turns out to be a Federal agent.\"\ntt0317248,BnrKndkqLaY,Benny's going-away-party goes terribly wrong.\ntt0118887,Y-9QUziXV1w,\"With help from Gary Figgis, Freddy Helfin takes justice to another level.\"\ntt0118887,K8HgAzIL-iA,\"Ray Donian and the gang try to take out Murray Superboy\"\" Babitch.\"\ntt0118887,y7m2AWevwoI,Gary Figgis overreacts when he hears that he's being shut out from the gang.\ntt0463998,VrJMgYRC_ys,\"Eva confesses that her boyfriend, Paco, was responsible for the convenience store murder.\"\ntt0082418,A63kIf5CfgE,\"When Vicky returns to the cabin, she finds her friends dead and herself on a short road to joining them.\"\ntt0082418,kcYN8phvjSY,Alice is the first to go when she finds a severed head in her fridge.\ntt0082418,sOqvTLXZsMs,Scott's fate is sealed when he goes out to investigate a mysterious sound outside.\ntt0787475,17gLdc5k_XU,\"Rod prepares for the bus jump, as the fans cheer, crew members watch and his family listens from home.\"\ntt0427229,QaDy4LHwyec,Tripp tries feeding a chipmunk and ends up getting a bad bite.\ntt0082418,6YbTy5AvRP4,\"After chasing an unseen assailant into the woods, Deputy Winslow finds a mysterious, creepy cabin.\"\ntt0082418,yxoE9td3Hko,Paul gives the counselors a jump when he tells them the story of Jason.\ntt0082418,-CzO7z1dZ1A,Ginny hides under the bed and is saved by a poorly crafted chair.\ntt0209037,Upj9_vP0WxY,Jean reveals to Willy that he has kidnapped Debbie.\ntt0787475,VY6PAkLG2p4,\"Kevin introduces Rod to Mr. Pasternack, a radio DJ with a bizarre tattoo.\"\ntt0209037,OCT_61zKMJU,Jean is distraught to discover on the news that the police have found him and are surrounding the house.\ntt0209037,FePVICEsBZY,Jean and Marva share a very public emotional moment before she goes on to perform.\ntt0209037,GjOcw8d8yn8,Michael harasses Debbie about the lack of enthusiasm for her fame.\ntt0118799,v2sqjebFODg,Guido argues with Joshua when he refuses to go take a shower with the other children.\ntt0426501,dMt-XLWY8-g,\"When Johnny and Flynn make off with the money, Julius takes it out on Rita.\"\ntt0426501,AEucDLp8RdQ,The deal between the Ol' Irish boys turns ugly.\ntt0426501,XlfvWdF-g_E,\"Flynn takes care\"\" of one of Julius's thugs.\"\ntt0426501,yoeV1e8dTTI,Ras distracts the police while the convicts make their escape.\ntt0426501,Wd4DobcYu30,Johnny has a standoff with Julius over his present company.\ntt0118799,XkFE98rP1eo,\"Guido follows Dora into a greenhouse and takes a bike ride with their son, Joshua, years later.\"\ntt0118799,9lTSqc1UnLU,\"Guido volunteers to translate for a Nazi guard, despite the fact that he doesn't speak German.\"\ntt0112744,ZHGLbVKq9T0,Booth reveals to Jojo how he felt after he tragically killed a little girl during a drunk driving accident.\ntt0426501,LdcIe3gGQHY,Johnny meets Rita and discovers that the two share nationality.\ntt0118799,o4E-yb-1_FA,Guido tries to get Dora to notice him during an opera.\ntt0426501,l60Xedjvw-Q,\"Johnny finds a way to hide his \"\"two mates from Belfast\"\" with a little help from Nathan.\"\ntt0118799,KaUEDYWofJQ,\"Guido explains trains to Joshua, while Dora demands that a Nazi officer allow her to board the train.\"\ntt0118799,ccAWioDHgQM,Joshua thinks that the American tank liberating the concentration camp is really the prize he won for winning the game.\ntt0118799,h7CBrN19OY4,Guido sweeps Dora off her feet and onto a horse painted bright green.\ntt0118799,Am-uvoQN72E,Guido shows Dora the power of prayer on their first date.\ntt0118799,-13ScnosXAk,\"Guido maintains a playful demeanor for his son, Joshua, right to the very end.\"\ntt0079540,AuWjXrFh1qQ,Tripper tells a scary story to the counselors around the campfire.\ntt0079540,DONkgw00QSE,\"Faced with certain defeat, Tripper encourages his basketball team to lose with some dignity.\"\ntt0499554,85-2A0PHLIc,Ethan the Drug Lord tortures a hostage with an unusual device.\ntt0499554,2pud_rEsxMs,Ethan the Drug Lord and Jeff Spoder reveal their nefarious plan to the Reno Sheriff's Department.\ntt0499554,Gd6ruQcgu9w,All members of the Reno Sheriff's Department work together to get a chicken out of the road.\ntt0796366,gAKiWvjfCiQ,Captain Kirk takes command of the U.S.S. Enterprise and leads her out to boldly go where no man has gone before.\ntt0796366,k9vHopyEtzs,Kirk accuses Spock of not caring about the death of his mother in order to provoke him to anger.\ntt0499554,etyH2OUxVuQ,Terry gets arrested for lewd behavior by the beach.\ntt0796366,8Ppo5YIYwTM,\"Spock meets an old Vulcan he believes is his father, but turns out to be an older version of himself.\"\ntt0796366,5ECsW0x8svw,\"While marooned on an ice planet, Kirk is saved from a vicious creature by Spock himself.\"\ntt0796366,qs0J2F3ErMc,\"Kirk is accused of cheating on the Kobayashi Maru test by Commander Spock, who wrote the test.\"\ntt0796366,QGNfrNJZin4,\"When Sulu falls off the Romulan drill, Kirk risks his life to save him.\"\ntt0796366,-ArVBL8EgKU,Sulu and Kirk land on the drill and have a brutal hand-to-hand fight with some Romulans.\ntt0124295,sDKUL1YRZZs,Michael Moore investigates the layoffs at the Payday factory.\ntt0424774,lFiX7y8KFoU,Marissa uses her powers to defeat Mr. Electric.\ntt0796366,RlphfLO3MYA,\"While boarding the shuttle for space, Kirk meets a cranky passenger named Leonard McCoy.\"\ntt0796366,FXy_DO6IZOA,Kirk rescues Captain Pike from the Romulan ship while Spock flies in a collision course with Nero.\ntt0111280,vXNr2xtv09Y,Picard and Soran discuss the effects of time.\ntt0424774,-tUodP_Wus4,The audience is told to whip out their 3D glasses when the gang rockets out of the solar system.\ntt0109506,IQp7gtX4w0U,Eric's powers vanish when Grange wounds the crow.\ntt0109506,5uJV71s0r5Q,Eric pays a visit to Gideon for information on the remaining murderers.\ntt0124315,WwDJZhI5IRM,The baby Homer is returned twice to the orphanage.\ntt0109506,cXbzJ7xAVn4,Eric visits Fun Boy and tells him a joke before enacting his revenge.\ntt0109506,Mwo-Wd__tTI,\"Eric sends the criminals, gangsters and thugs to hell in a blaze of glory.\"\ntt0099703,TGqcz-Xtd6E,Lilly explains to Roy how she killed Myra and skipped town.\ntt0442933,8gc-RSAJpH4,\"King Hrothgar offers his prized Royal Dragon Horn to Beowulf, if he can slay the kingdom's beast.\"\ntt0264472,TEodx0CTTgE,Doyle's A.A. sponsor explains Doyle's bad habits.\ntt0264472,JyjlwpXupvI,Gavin confronts his father-in-law about the legitimacy of his legal actions.\ntt0065528,UdZuHyttXbw,Yossarian escapes the military base.\ntt0264472,NWsc8gC3nSw,Gavin talks to a priest.\ntt0109506,gDwlbuyDPfk,Eric battles Top Dollars on the roof of a church.\ntt0109506,1edv56TCvxk,Eric pursuades Darla to kick her drug addiction.\ntt0112744,6f1jYUTo7AU,\"Freddy has Booth dead to rights, but the bullet only wounds him.\"\ntt0864761,67jgvKFBCsY,Georgiana is forced to hand over her illegitimate child to General Grey.\ntt0164334,nZE2tGoC0H4,Alex is impressed by Soneji's patience and dedication to his craft.\ntt0829459,kGVQE0m_V3A,The CID Captain intimidates a jihadi foot soldier into giving up a critical name in the Daniel Pearl case.\ntt0164334,LiYdMadk89Q,Alex uses a hidden video camera stream to identify his kidnapper.\ntt0829459,bmdgHN34hnk,Mariane chastises a news reporter when he asks an insensitive and invasive question surrounding Daniel Pearl's death.\ntt0829459,FEioKHlkczY,\"The CID Captain interrogates a jihadi regarding the whereabouts of Daniel Pearl. As the interrogation escalates, each man makes an understated threat upon the other man's family.\"\ntt0829459,kgdr5vmYZLw,\"Mariane confronts the reality of her husband's murder, and in the process, finds the strength to endure anything.\"\ntt0829459,NTd3y71iKqE,\"When Mariane asks for confirmation regarding her husband's death, she's told that her husband has been beheaded.\"\ntt0829459,DfcpuhTr8R0,Mariane breaks down after learning the terrible news that the kidnappers have killed her husband.\ntt0829459,Id3Lr9GyGh0,Mariane reminisces about a happier time with Daniel.\ntt0829459,x_H8vusyzN0,\"Mariane goes on television to talk about her husband's disappearance, showing her strength and grace under intense emotional stress.\"\ntt0829459,dH1SeHOpEO8,\"Asra reads a chilling e-mail from Daniel Pearl's kidnappers, which contains photographs of him being held hostage. When a wave of doubt casts suspicion on the e-mail's authenticity, Mariane knows the unsettling truth: her husband is in enemy hands.\"\ntt0043338,Y4_1X9cpFWI,Chuck and the Sheriff argue about digging Leo out early so he won't die of pneumonia.\ntt0043338,LLjiVwzeDb0,\"Chuck tries to talk Lorraine out of leaving her husband, Leo.\"\ntt0043338,7hY_dAeX9hw,Mr. Boot confronts Chuck about how he's handling the story.\ntt0043338,42xTE_bzg18,Chuck conspires to help get the Sheriff reelected in return for a favor.\ntt0043338,dShmoHD7PdM,Chuck complains about small town life.\ntt0164334,doLHipw196I,Cross and Agent Flannigan protect Dimitri from abduction.\ntt0043338,4D6bHTh4-tE,\"Chuck tries to get a story from Leo, who's buried in a cave.\"\ntt0043338,BvPVgwp_M18,Chuck talks to Herbie about what makes a good story.\ntt0164334,FPbDFxXU_74,Jim loses control of his car when he tries to thwart Tracie and Alex's sting operation.\ntt0164334,iH9hjyoAugw,Soneji meets his end after receiving an unflattering cross examination.\ntt0164334,5sRrCX-pLPM,Megan sabotages Soneji in an escape attempt.\ntt0164334,bYQjcjDeGF4,The alliance between Alex and Agent Flannigan comes to an end.\ntt0164334,3OYeaLGRfug,Alex offers Agent Flannigan some words of wisdom.\ntt0080388,TXs4RCJasOM,\"Ashamed by his inability to protect Sally from a pair of gangland thugs, Lou retreats from her sight.\"\ntt0164334,ExYO7B26kkw,Agent Flannigan uses persistence to partner up with Alex to recover the kidnapped senator's daughter she was responsible for.\ntt0080388,7UZpRynpUac,\"After learning that her husband and Lou were working together, Sally demands her rightful share of the money. When she's denied, she makes sure that the entire casino hears about it.\"\ntt0164334,xMpgI4DCKyk,Ben has raised too much suspicion for Agent Flannigan.\ntt0080388,AZ042bsOWTs,Lou surprises himself after killing a pair of gangland henchmen and saving Sally.\ntt0080388,gL17bwbFDAI,Lou seduces Sally after he reveals that he has been watching her from his window.\ntt0080388,zlaLlT-5Lf4,\"When he notices Sally stealing money from his wallet, Lou realizes that it's time end his fantasy of having a life with her and just let her go.\"\ntt0080388,Dyme80H188w,\"Taken by Lou's apparent wisdom and sophistication, Sally asks him to be her mentor, not realizing that Lou is already smitten by her.\"\ntt0118849,adOO9YXZ9Ys,Ali attempts to come in third place at his school race in order to win a new pair of shoes for his sister.\ntt0080388,olxqe0CQ7W0,\"Joseph's impassioned speech makes an impression on his students, especially Sally.\"\ntt0118849,1XkC9it8OPs,\"While Ali is running errands for his family, his sister's only pair of shoes goes missing.\"\ntt0118849,oSvVjh93suI,Ali and his father get a side job doing gardening work for a wealthy family.\ntt0080388,bd0ZO7Ewiq0,\"Still energized after having killed two gangsters in self-defense, Lou makes a wayward proposal to Sally to go off with him to Florida.\"\ntt0118849,bhGFCS11OR8,\"Ali's father promises Ali that from now on, their family is going to have the finer things in life.\"\ntt0118849,JxTMuhVED0w,\"After their pair of sneakers gets dirty, Zahra and Ali wash them together.\"\ntt0118849,uqeGxkIdBiY,\"In an effort to make it home in time, Zahra accidentally drops a sneaker into the gutter.\"\ntt0118849,rgQjzIVzoh4,\"During an assembly, Zahra notices that another girl at school is wearing her pair of missing shoes.\"\ntt0442933,dJS8Umi2b0Q,\"King Hrothgar announces that after his death, Beowulf will take his place as King.\"\ntt0442933,YWmwAdK48vg,Beowulf battles a dragon in order to save his kingdom.\ntt0442933,KNaj7uCVPCI,\"Beowulf encounters the beast, Grendel, for the first time, and shows his strength with a violent attack.\"\ntt0442933,0KA8Qkw3nks,Beowulf fights a dragon mid-flight in an effort to save his kingdom.\ntt0442933,cs7CW6xDbL8,\"As he is competing to win a race, Beowulf fights off a group of sea monsters.\"\ntt0442933,-A9rFt7ITy4,\"A warrior, Beowulf arrives with his men in order to slay a beast wrecking havoc in the kingdom.\"\ntt0096933,v9qbXZZD-b0,The Japanese Police lead a raid on a Yakuza hideout.\ntt0096933,C-dzbTNdd04,Yakuza criminal Sato is taken into custody by Japanese police imposters.\ntt0096933,W5ATR6lZw4o,Police officer Nick Conklin follows after Sato in a meat locker.\ntt0096933,3UALmd0PV6o,Masahiro questions Nick Conklin's honor as a police officer.\ntt0096933,R7CbMBUNC6I,Police officer Nick Conklin gets his thrills by motorcycle racing.\ntt0096933,ngThTIjgCMw,Nick Conklin leads a gunfight against the Yakuza.\ntt0096933,aYzPUa-6BLE,Police officer Nick Conklin watches in horror as Sato and several motorcycle gang members surround Charlie before Sato beheads him.\ntt0096933,4nJl2BZ6obg,Police officer Nick Conklin admits to embezzling money from the NYPD.\ntt0162222,tvGHSvfnlsQ,\"Having dropped off the last FedEx package, Chuck is at a crossroads and doesn't know which direction to head.\"\ntt0162222,ri44Zx810p0,Chuck and Kelly embrace in the rain one last time before saying goodbye.\ntt0162222,lv_LfXcjWew,Chuck escapes the island out to sea using a hand-made raft.\ntt0162222,LHtgKIFoQfE,Chuck is heartbroken when he loses Wilson out at sea.\ntt0162222,LUDEjulbqzk,Chuck is ecstatic when he succeeds in creating a fire.\ntt0162222,Z-365iujWk8,Chuck almost loses his only friend Wilson after he tosses the volleyball in a fit of anger.\ntt0162222,MLnzF5NcAc4,Chuck and Kelly exchange Xmas gifts right before he gets on the doomed FedEx airplane flight.\ntt0162222,IyOu9xCNMK0,\"With the plane crashing in the water, Chuck must survive from drowning and then the on-coming propeller.\"\ntt0065528,RrQppEXvRcM,The military men want to impress the general's girlfriend.\ntt0065528,E9wcK6qvCqI,Yossarian can't find his parachute because Minderbinder stole it for profit.\ntt0065528,g0UV6ug96c0,Minderbinder explains ways of profiting during the war.\ntt0065528,j-OcaLECz1k,The Old Man explains the wisdom he gained over 107 years.\ntt0065528,0cHePp1_EMg,\"When Yossarian is injured, his desperation to leave the military is increased.\"\ntt0065528,LwELqrqsf_o,Yossarian watches as an airplane accident causes several deaths.\ntt0065528,0bkaFNVY2UQ,Yossarian accepts his medal in the nude.\ntt0065528,-eXI4uy3Mlg,Yossarian desperately wants to get out of combat by claiming insanity.\ntt0264472,Z89Q2fkgbRo,Cynthia confronts her husband Gavin about his affair.\ntt0264472,FCYA84FwbC0,\"After important documents have been lost, lawyers propose to Gavin to forge them.\"\ntt0264472,B1QVeR_p7WQ,\"Lawyer, Gavin, interviews a young applicant.\"\ntt0264472,d9-DFXwcmFI,Doyle explains his ideal Tiger Woods commercial.\ntt0264472,KtekLRYl3q8,Gavin wants his special documents back from Doyle but Doyle is upset that Gavin disrespected him.\ntt0090830,0foXV1hWrx4,Sarah explains to James why she doesn't want to learn how to speak.\ntt0264472,su64KIPecuo,Gavin has a car collision with Doyle.\ntt0090830,BSFgVoDNlG8,James attempts to confess his love to Sarah.\ntt0090830,1Pb1vdt-SnQ,Mr. Leeds explains the importance of learning to speak to his students.\ntt0090830,EZ7HxkZKDuk,Sarah explains to James why she doesn't let people get close to her.\ntt0090830,KQrBeGqz1W0,\"Sarah and James reconcile their differences, and get back together.\"\ntt0090830,1qO81pgfRVA,\"After Sarah returns home, Sarah's Mother apologizes to her for how she was treated as a child.\"\ntt0090830,1pJywLQLzcA,Sarah explains to James the reason why she doesn't feel equal in their relationship.\ntt0088930,GNUP-so0ndQ,\"Mr. Boddy encourages the guests to murder Wadsworth, only to end up a victim himself.\"\ntt0088930,nrqxmQr-uto,Mrs. White describes the intense hatred that drove her to murder Yvette.\ntt0088930,n3PGfjyctSQ,\"In this possible ending, Mrs. Peacock pulls a gun and attempts to make her escape.\"\ntt0088930,uIUCcORbMvg,Miss Scarlet starts to scream when she and Colonel Mustard find another corpse.\ntt0088930,O5ROhf5Soqs,\"In this possible ending, Miss Scarlet argues with Wadsworth about the number of bullets left in the gun.\"\ntt0088930,MRSTpj2Z5cU,\"Yvette, The Cop and The Singing Telegram Girl each come to an untimely demise.\"\ntt0088930,aKOmGhBOJZI,Wadsworth loses his cool when Mr. Boddy shows up dead for the second time.\ntt1034303,7CEYqIjhTHs,\"Tuvia gives a rousing, inspirational speech about community to the new survivors.\"\ntt0088930,fbwsXqUpZRU,Mr. Green proclaims his innocence when The Cook falls dead from the freezer.\ntt1034303,ntGBzcfpKYg,\"When all hope seems lost, Asael heroically leads the crossing of the swampy marsh.\"\ntt1034303,CZrA-i6kOdc,\"When all hope seems lost for Tuvia, Zus leads a partisan force on an assault of the Germans.\"\ntt1034303,q8RTGMsDTiw,\"While Asael and Chaya celebrate their marriage, Zus leads a group of partisans in fighting the Nazis.\"\ntt1034303,cdVMT44nWzk,Tuvia avenges his father's death by murdering the Nazi informant.\ntt1034303,S9LRWazyNC0,The rivalry between the Bielski brothers hits the breaking point and becomes physical.\ntt1034303,SooANfD9sWc,\"When tensions among the camp are seemingly on the brink, Tuvia reminds everyone that living - each and ever day - as free men will be their revenge on the Nazis.\"\ntt0209037,DvOrBPJGAnc,Michael reveals to Jean that he knows his true identity.\ntt0427229,WzeXsjGmkjI,\"While Tripp is surfing with the guys, he gets attacked by a seemingly friendly dolphin.\"\ntt1034303,Vw8BozG_LVA,Zus leads a roadside ambush on a car full of Nazi soldiers.\ntt0116126,lXtrwkdSkow,\"Ashtray goes to live with his father, who explains the rules of the house to him.\"\ntt0116126,MwAV8x0J6DA,Toothpick and his gang open fire on Ashtray and the group.\ntt0116126,I_yF6-3pXdw,Loc Dog's Grandma and Sister Williams have a dance battle during mass.\ntt0116126,F1Bhl3yjzsQ,\"When Toothpick and his gang threaten Ashtray, Loc Dog comes to his rescue.\"\ntt0116126,WS94fK4djqg,Ashtray has a talk with his father about his future.\ntt0116126,phKe4peWFG8,The group goes to visit Old School so they can ask him for advice.\ntt0116126,ng9LMtcmqNs,\"Ashtray and Loc Dog go to a convenience store, and get set up by The Man.\"\ntt0116126,N3U5ed3dRAE,\"Loc Dog goes to an interview, and gets hired as a crash test dummy.\"\ntt0116126,ZRJgexzNOMo,Ashtray introduces himself to Dashiki and her seven children.\ntt0116126,Gh3AZit48Uc,\"While at a house party, Loc Dog explains to Ashtray what to look for in a real woman.\"\ntt0463998,9f8liieRepk,A student reads his diary entry expressing why Ms. Gruwell's class gives him hope.\ntt0116126,1kj111rBzoo,Dashiki recites a poem that she wrote to Ashtray.\ntt0443489,fbNz1vlRSyM,\"After Effie is forced to sing backup, the group performs for the first time with Deena as lead.\"\ntt0116126,qPtAocA3m2Y,Ashtray's driving instructor takes him on a detour to rob a bank.\ntt0443489,O3CGLSyIwNo,\"The Dreamettes record their first hit singing backup for James Thunder\"\" Early.\"\ntt0443489,uZgo9g8v76U,\"Effie, Deena, and Lorrell catch their big break at a local contest.\"\ntt0443489,1mJ49BcUM3E,Curtis tells the group that Deena is going to be taking Effie's place as lead singer.\ntt0443489,zZK_bkxhJes,Effie joins the Dreamettes to sing their last song together.\ntt0443489,79LzBvBRPx0,\"C.C. makes amends with Effie, and asks her to perform the song that he wrote.\"\ntt0443489,PAcLQ7fRJlo,Effie storms off stage when Deena takes her place in the spotlight as the group's lead singer.\ntt0443489,53o7_NqrTQA,\"James Thunder\"\" Early stops the show to put a new twist on his song.\"\ntt0427229,hzV5qSWRfKY,Paula cries faux tears over a dog on a pretend deathbed in order to bond with Tripp.\ntt0443489,QZO_QFM5j_I,\"After she is kicked out of the group, Effie expresses to Curtis that he can't leave her.\"\ntt0427229,OJVDP7FaiqI,Tripp announces that he will move out of his parent's house so they can all stop the charade.\ntt0463998,3c5pbePUc2g,Ms. Gruwell begins to understand her students after reading each of their class diaries.\ntt0427229,DjANcJEduN0,Paula educates Al and Sue about their son's common problem and explains how she can help.\ntt0427229,Apv7l4b68MQ,Tripp realizes that he wants to spend his life with Paula.\ntt0427229,39OHlSguIy0,Kit apologizes in an insulting way and Paula replies with an insult of her own.\ntt0427229,ZCjO50QLDhA,\"When Paula realizes that Tripp is getting ready to dump her, she turns up the heat.\"\ntt0427229,9B7tjXbhnog,\"While rock climbing, Tripp has an incident with an angry lizard.\"\ntt0099558,UPkb66KjZc0,\"Condor, Ada, and Elsa fight off Nazi henchmen.\"\ntt0427229,UPu0PU6sLxo,\"Kit tries to buy a gun, but the salesman senses something is off and won't let her buy it.\"\ntt0787475,Uii-wMha6mE,\"Rod fights his stepdad Frank in the basement. Later, he is reunited with the girl next door.\"\ntt0099558,Dz9YWjkw2BA,Condor fights his way out of a warehouse.\ntt0099558,qOy1ncO2t8c,Condor is blown back and forth by a giant propeller while fighting off henchmen.\ntt0787475,3EIgmj6gp1I,\"Rod prepares to jump a mail truck as his buddies Kevin, Dave and Rico watch.\"\ntt0099558,UrIcAAryafo,\"Condor, Ada and Elsa go airborne to escape the military base.\"\ntt0099558,6oijcajbnM0,\"After witnessing the vault's brutal booby trap, Condor and his team try another method.\"\ntt0099558,1bvaqpSmBLQ,Condor goes undercover to rescue Ada and Elsa.\ntt0099558,XgZihg6-VZQ,Condor outruns a motorcade and rescues a baby along the way.\ntt0099558,aeavPOh2Wws,\"Elsa rents a machine gun to stave off a pair of intruders, destroying much of the hotel in the process.\"\ntt0463998,AjGIJPE8B8I,\"The woman who hid Anne Frank during the holocaust, Miep Gies, comes to speak to Ms. Gruwell's class.\"\ntt0463998,jA-BCSOaa4Q,Ms. Gruwell fights Margaret Campbell and the board of education in order to gain permission to continue to teach her class for their junior and senior years.\ntt0463998,1JauH_EKpaY,Ms. Gruwell confronts Andre about his self evaluation assignment.\ntt0463998,G0rXUr-msX0,Ms Gruwell assigns a final class project to her students; to create a book out of all of their diary entries.\ntt0463998,PahVp7p3XHg,Ms. Gruwell holds a class exercise in order to show her students that they have more in common than they believe.\ntt0463998,qzayNPEmoK0,Eva explains how she became affiliated with gang life.\ntt0082418,KJciGsgcYN0,\"Jeff and Sandy, having just made love, quickly become horror movie cliches by being killed immediately.\"\ntt0082418,eBU1T2DdLsk,\"After playing a mean joke on Terry, Scott is left hanging in the woods, which promptly puts him in danger.\"\ntt0091188,g5Y-PN_duno,Mark discusses the lost socks of the world.\ntt0082418,zEIqJ4321TE,Ginny tries to convince Jason that she's his mother.\ntt0091188,m-1vkYcqRRw,Rachel's first baby is on its way.\ntt0091188,RuC2eNMtAHA,Rachel watches the TV as it describes her current predicament.\ntt0091188,wUP31hGC1A0,Mark makes up songs about their bun-in-the-oven.\ntt0091188,5soOhh80bK0,Rachel confronts Mark about his affair.\ntt0091188,9c0szHKahlQ,Mark and Rachel get a new house and attempt to fix it up.\ntt0091188,gnaDj74UMqs,Rachel and Mark agree that they don't believe in marriage...sort of.\ntt0091188,iY68ovrzfXc,Rachel is asked a question that she can't help but answer and is forced to make a decision.\ntt0787475,ELpItLsTKgY,\"Rod finally defeats Frank in a fight, and forces him to admit that Rod is a man.\"\ntt0787475,Nrs-lyhcXmA,Rod gives Dave a ride to the hospital to remove the piece of metal lodged near his eye.\ntt0787475,TOUrLn1FFCA,Rod and Kevin apologize to each other and improvise a song.\ntt0787475,wxb_X12HZWQ,\"Rod introduces Denise to the crew, but they seem to be nervous around a girl.\"\ntt0209037,tHNjy3BH4qE,\"Marva finally gets to perform her song, \"\"Lucky Mañuelo,\"\" on television.\"\ntt0787475,gbu88CKkEzI,\"Rod prepares to roll down a hill, but his strange pronunciation of the safe word confuses Kevin.\"\ntt0787475,QAztYUCEhzk,\"Rod attempts to jump over the public pool, with Denise and everyone else watching.\"\ntt0209037,TumSHtCzjAw,Chantal suspects Marva is not revealing everything that happened during her meeting with Michael.\ntt0209037,HNrYPzxrG7I,Jean and Chantal share an intimate moment before the television performance.\ntt0209037,lBvrfWqCjYE,Jean returns to the house furious when he discovers on the news that Willy went back to Debbie's apartment to get her dog.\ntt0209037,SBLMTDMdTIU,Jean and Chantal go to see Marva perform as Madonna at a strange talent show.\ntt0209037,KocHmCmLwro,Marva quite harshly explains to Jean what she would really want out of a father.\ntt0209037,FiAndeAR9wQ,Debbie and Willy share an intimate moment while alone in the house.\ntt0079540,rCHGzxSBn-c,Tripper tracks down Rudy at a diner and convinces him to return to camp.\ntt0426501,-BYVM9TrKzg,Julius gets shot by Rita after he captures the fugitives.\ntt0079540,8-UdwBkXJBI,\"Spaz has a run-in with some jerks from Camp Mohawk, while Tripper spreads some false information about the rival camp.\"\ntt0079540,pWPn-C5l3Sk,Tripper coaches Fink to victory over The Stomach in a hot dog eating contest.\ntt0079540,WaF5AMiC4xU,The North Star Counselors in Training sing a song around the campfire on the last night of summer.\ntt0079540,jdZ6RA_c6oE,Tripper motivates Rudy to win his race by giving him a nickname.\ntt0079540,-TogGxzlfhM,Tripper rallies the troops with a rousing pep talk before the last day of the Intercamp Olympiad.\ntt0081353,rqVI2DmLI2Q,\"Learning that Olive Oyl has broken their date, Bluto explodes into the song, \"\"I'm Mean,\"\" and leaves a path of destruction in his wake.\"\ntt0070510,ma_XNn1bwOM,Moses gets increasingly angry with Addie because she is keeping him awake.\ntt0070510,BGZZ7s7FJlM,Addie runs away from her Aunt Billie's house and finds Moses on the road.\ntt0079540,q85fsxWYG6A,Tripper puts the moves on Roxanne and then turns the tables when Morty returns.\ntt0070510,2jTjWGNMo4E,Moses says goodbye as he drops Addie off at her aunt's house.\ntt0416051,R0zmkkcEdKc,Lance shows a client his promotional video for Mr. Fix It.\ntt0070510,IK1HlBRMGwk,Moses and Addie enter into a high-speed chase to escape the police.\ntt0070510,CKJJbZe4TWM,Addie pulls her own con on an unsuspecting salesgirl.\ntt0070510,VBA_fhQoArA,Addie puts Moses in a tough situation when she demands the $200 he owes her.\ntt0070510,ATGMbNOmAYs,Addie helps Moses con a widow into buying a Bible.\ntt0070510,phJJFbxyino,Moses gets angry with Addie after she decides to call the shots and take a widow for more money.\ntt0081353,qAFgj8mqPk0,\"On overhearing Popeye's affection for her, Olive Oyl breaks into the song, \"\"He Needs Me.\"\"\"\ntt0081353,mFwAm6oIPtk,\"As the attraction between Olive Oyl and Popeye grows, they sing the lullaby \"\"Stay With Me\"\" to baby Swee'pea.\"\ntt0081353,f_G1oYcHFsk,\"In the boxing ring, Popeye knocks out the gigantic Oxblood Oxheart.\"\ntt0081353,UmwLKU5DIGk,\"Olive Oyl sings about the positive aspects of dating tough guy Bluto in the song, \"\"He's Large.\"\"\"\ntt0081353,1-HbIkCjDbk,\"Discovering Olive Oyl is now with Popeye, Bluto blows his top.\"\ntt0081353,qhxDQ1g964U,\"A sense of empowerment and confidence grows in Popeye as he sings \"\"I Yam What I Yam.\"\" And what is he? He's \"\"Popeye the Sailor Man!\"\"\"\ntt0081353,-ncFDuKdgNE,\"Popeye eats a can of spinach transforming himself into \"\"Popeye the Sailor Man,\"\" and saving the day for all.\"\ntt0236640,Dq6dW6XbeLI,\"Lizzie becomes vindictive and sarcastic after she encounters Dr. Sterling, who proves to be no pushover.\"\ntt0499554,kdTfLDIbwow,\"Terry invites the Reno Sheriff's Department to join him on his jet, given to him by his father for Flag Day.\"\ntt0499554,9G4TzgRUKGI,Jeff Spoder holds the Reno Sheriff's Department at gunpoint after a low-speed pursuit.\ntt0499554,kicjYh3v1FI,Deputy Williams teaches Deputy Wiegel to speak in street vernacular.\ntt0499554,H53kBYo1Jx8,\"Rick Smith arrives to take charge, and quickly needs to be replaced.\"\ntt0822854,huOZPQ6Hl2c,\"After being captured and tortured by agents of a mysterious private army, Memphis is set-up to be murdered... until Swagger saves the day with his quick scope and crack shot.\"\ntt0499554,MYge4RghcNQ,Deputy Travis wakes from an elaborate dream to find himself behind the wheel of his cruiser.\ntt0822854,5cKRTdQtq5w,\"When the assassins attack, Swagger finds himself on the wrong side of a cover-up as he becomes instantly expendable.\"\ntt0822854,a_6tguZWgmU,Swagger opts for an aquatic getaway when he's cornered by the police and federal agents.\ntt0822854,mn60YWO218k,\"Swagger gains the counsel of Mr. Rate, a firearms expert, as he searches for the identity of the real assassin.\"\ntt0822854,lKEihcQaa_g,\"After Swagger neutralizes the enemy snipers, he turns his sights on Jack, who holds Sarah hostage.\"\ntt0822854,AoSA32zQ754,\"With images of his deceased friend still fresh in his mind, Swagger makes amends by protecting his new partner, Memphis from an enemy helicopter.\"\ntt0822854,RIN6AtTxFgE,Colonel Johnson and Senator Meachum take turns gloating at Swagger when he confronts them about their crimes.\ntt0822854,pAZOyJPs5bo,\"Swagger and Memphis shoot, kill, and blast their way out of a black-ops ambush.\"\ntt0054331,ouDfr9Jh0s8,Crassus finally identifies the rebel Spartacus and commands him to fight his friend Antoninus to the death.\ntt0102975,C1NgX-w54RY,Kirk has Spock extract information from Lt. Valeris via mind meld.\ntt0102975,nrizm2gnQBo,The crew of the USS Enterprise NCC-1701A sail off into the sun one last time.\ntt0102975,BS-f_KwM81I,Kirk fights an alien that doesn't have an anatomy like ours.\ntt0102975,l_a2GN0Ix4o,\"Spock discusses the problems with the warp drive,\"\" while Kirk \"\"plans his escape\"\".\"\ntt0102975,s2wBtcmE5W8,Kirk fights a shape shifter that changes into Kirk himself.\ntt0102975,fg58hVEY5Og,Kirk and Chang do battle as Chang quotes iconic Shakespeare.\ntt0102975,Bf4YINfjQaQ,Kirk and McCoy are tried and sentenced by a Klingon court for the assassination of Chancellor Gorkon.\ntt0111280,U15kcueM3Og,Kirk and Picard face off against Soran.\ntt0111280,y8_oqgPwHfI,Picard finds Kirk buried in rubble.\ntt0486655,dKSAKBEI4w0,\"The pirate, Captain Shakespeare, treats his prisoners unconventionally.\"\ntt0102975,avH2K1iR8Oo,Uhura tries to speak Klingon to the outpost monitor.\ntt0111280,xz3CYcjdSaI,Data has trouble dealing with his new emotions.\ntt0111280,VrJiU9BOEBI,Kirk agrees to come back to reality with Picard.\ntt0099703,NY0e-PQeJbQ,Myra watches as Roy pulls a con on some sailors in the next train car.\ntt0111280,fmIaHAtabSU,\"Picard fails to stop Soran from destroying the star, and sending the entire planet on a collision course with the Nexus energy field.\"\ntt0111280,FpgyrIlhoyw,The Enterprise crash-lands.\ntt0486655,JTu1R4b1yZQ,Yvaine shines like a star.\ntt0486655,dkdrbg4EwGA,Tristan battles the witch Lamia and the reanimated corpse of Septimus.\ntt0111280,DSCWB4GqcFE,The crew of the Enterprise tries to find a way to bring down the Klingon Bird of Prey before they're destroyed.\ntt0486655,5FZ7jNq8A00,Septimus fights the witches and meets a soggy end.\ntt0486655,uopoXtR0Kjk,\"The King discusses who will inherit his crown with his sons, living and dead.\"\ntt0486655,7ZkmgFpKdxQ,Septimus asks the Soothsayer some tricky questions.\ntt0486655,pTCTgL7_9gY,Yvaine tells Tristan what she knows about love.\ntt0486655,_NrqftLip64,Septimus walks in on Captain Shakespeare getting into the spirit of the Can Can.\ntt0424774,0CZAYJ_sotw,The gang figures out a way to get a heated Lava Girl across an ice bridge.\ntt0424774,hhGSeFrYSyo,Max narrates the origin of Sharkboy.\ntt0424774,0EeL2FeI7NA,The gang arrives in the land of milk and cookies.\ntt0424774,4ZaIb1kBnX8,Sharkboy sings a lullaby to get Max to sleep.\ntt0424774,K1AMs3IPQJQ,Max and Minus face each other dream to dream while Sharkboy faces Mr. Electric.\ntt0424774,n8hmCcXvpz8,\"Max faces Minus in the dream world, where he talks him out of destroying dreams.\"\ntt0424774,yKwIEIVAMfE,The gang fights off Mr. Electric's plug hounds.\ntt0424774,_P3bnWz5GL4,Sharkboy and Lava Girl travel to the real world looking for Max.\ntt0424774,2GvL2DyMfGU,The gang fights Mr. Electric's wave of giant power cords.\ntt0424774,SmCSJ3akPIs,Linus taunts Max before chasing him around the playground for his dream book.\ntt0124295,kOS8g1D6MXk,Michael Moore interviews a former inmate who answered phones for TWA as a prisoner.\ntt0124295,9PM9tDtmaaI,Michael Moore teases Republican primary candidate Steve Forbes for never blinking.\ntt0124295,WeZiTVev7vA,Michael Moore confronts representatives of Johnson Controls about the company's layoffs in Milwaukee.\ntt0124295,PW2Wr4-2oyM,Michael Moore tries to film inside the headquarters of the Pillsbury corporation.\ntt0124295,yPBDhqwT8VQ,Michael Moore recounts his experiment to see if politicians would accept money from anybody.\ntt0124295,b3z4_gJ5hGU,Michael Moore is kicked out of the Hersheys/Leaf offices.\ntt0124295,28B_sZZ6km4,Michael Moore invites Nike CEO Phil Knight to accompany him on a visit to Nike's Indonesian factories.\ntt0124295,ymjvQZ6nSd8,\"The unemployed of Flint, Michigan send a video message to Phil Knight, CEO of Nike, hoping he will bring a shoe factory to Flint.\"\ntt0124295,Nd5_lg9Ea0E,Michael Moore criticizes Johnson Controls for laying off workers without warning.\ntt0124315,tGs4xAZJkps,Homer questions Arthur about his incestuous affairs.\ntt0124315,SzJ6RfcDato,Homer performs an abortion on Rose.\ntt0112744,BoTt0juJio4,Freddy finds himself at the wrong end of Booth's rifle; he tells Booth that he got arrested for drunk driving and laughs at the irony of the situation.\ntt0124315,JES2fQLPoGU,Homer and Dr. Larch correspond through letters.\ntt0124315,NM_5sUMyd0I,Homer returns to the orphanage and is welcomed with open arms.\ntt0124315,umK3KRcg1V8,\"Homer moves out of the orphanage, destined for greater things.\"\ntt0124315,azvRjKHhpfA,Homer and Dr. Larch discuss ethics and the responsibility of abortion.\ntt0124315,LK4c5TIKY0w,Homer reads off the rules of the cider house to the apple-picking crew.\ntt0402022,TKKzI-DKhuQ,Aeon protects Trevor from a group of machine gun wielding cops.\ntt0124315,8aRwEJvaPiY,Homer reassures Curly when a couple visits the orphanage and chooses a girl.\ntt0112744,Bw-Y1sEUlSk,\"Booth leads Freddy to his daughter's gravesite. For both men, years of grief and torment are exorcised, and their animus towards one another is finally disarmed.\"\ntt0112744,yGy0XuoyTvE,\"On the night he is to kill Booth, Freddy has an emotional breakdown and calls Mary for help.\"\ntt0112744,scrKz6PN92g,Freddy distracts himself from his emotional pain by falling into the embrace of a prostitute.\ntt0112744,hKNSpQwCIdA,Freddy gives Mary a piece of his mind after she tells him that she has taken pity on him because of his dissolute life.\ntt0112744,jszED6T4Gik,Freddy explodes at his ex-wife Mary when she finds no joy in his desire for revenge against John Booth.\ntt0112744,ZpuHoppfsN0,\"Freddy returns to get one last word in edgewise against his ex wife, Mary.\"\ntt0112744,8xf7Ee4KLiE,\"When a shopper makes a fuss about a ring that doesn't fit, Freddy makes sure that the customer leaves satisfied.\"\ntt0112744,6teHF2I4UuY,\"Just as Freddy is about to tell one of his buddies that he's going to commit a murder, a stripper named Mia calls him up on stage so they can dance together.\"\ntt0109506,uqLr5PR6sbM,Visions of his and his fiance's murder flashes in Eric's mind as he returns to his abandoned home.\ntt0109506,US6tvODNVu4,Eric interrupts a meeting with the leading gangs and thugs.\ntt0112744,YNTpnxwyEg4,\"After Freddy botches the hit job, he gives Booth three days to live before returning to finish what he started.\"\ntt0864761,rvjVIwMPxqA,The Duke apologizes to Georgiana and explains that he wants their life together to return to normal.\ntt0109506,T2R4z7O4kg0,Eric blows up Gideon's after finding his old engagement ring.\ntt0864761,XquwlFI-Ygc,The Duke threatens to take away Georgiana's children if she leaves him.\ntt0864761,ZlITgn8FjDw,Georgiana realizes that The Duke has slept with her one true friend.\ntt0116209,eWgOjuLg5oY,\"Following the plane crash, Count Laszlo carries a wounded Katharine to the Cave of Swimmers.\"\ntt0864761,9V2nsuzAzb8,Georgiana takes a vacation to Bath in order to secretly meet up with Charles Grey.\ntt0864761,7h14GBiAZxo,\"Lady Elizabeth explains to Georgiana Keira Knightley) that love with a man can be enjoyable, rather than forced.\"\ntt0116209,aW4tjKzDEDU,\"During an interrogation, Major Muller tortures Caravaggio by chopping off his thumbs.\"\ntt0864761,2NfTq7LPnXk,\"Georgiana fails to bear a male heir to her husband, The Duke.\"\ntt0864761,BjCjlMXLVtw,\"Georgiana befriends a woman that The Duke has eyes on, Lady Elizabeth.\"\ntt0864761,JMJAl7PfSlk,Georgiana discovers that she will be married into a powerful and wealthy family.\ntt0068646,ppjyB2MpxBU,\"Michael takes a gun he hid in the bathroom and blows away his enemies, McCluskey and Sollozzo.\"\ntt0068646,voNs3aHZmQM,Michael explains to Kay that his father is just like other powerful men.\ntt0116209,OkSIAlL4f-0,Count Laszlo and Katharine continue their secret affair during a Christmas celebration for the troops.\ntt0116209,8DlxO2frMPE,Kip takes Hana to a cathedral decorated with beautiful wall paintings.\ntt0116209,yU5kwdXhSzY,Kip\ntt0116209,x11OTizHwfE,Jealousy gets the best of the Count when he spies Katharine dancing with another man.\ntt0116209,tK49SBXBK_U,\"At a party in Cairo, the Count shares a dance with Katharine and the romantic tension is already present.\"\ntt0116209,6SEp2FQYS84,Caravaggio suspects Hana\ntt0116209,z40Tipkm4IA,Count Laszlo and Katharine spend their final moments together in the Cave of Swimmers.\ntt0068646,SWAJPB_5rSs,\"Michael's Italian bride, Apollonia, is cruelly murdered in an explosion.\"\ntt0068646,DvD9OryD6mY,Michael lies to Kay about what he did to Carlo and she fearfully watches as men pay respect to the new Don Corleone.\ntt0068646,jYnRBX2Trtk,Moe Greene threatens Michael. Michael warns his brother Fredo to never take sides against him...ever.\ntt0068646,0qvpcfYFHcw,Michael devises a plan to kill Capt. McCluskey.\ntt0068646,1CDlBLvc3YE,Michael has a series of hits executed while he is at a baptism.\ntt0164184,PJpGMrH7RWs,President Robert Fowler contemplates what action to take after Chechnya is attacked.\ntt0068646,sJU2cz9ytPQ,\"Sonny is stopped at a toll booth, ambushed by a group of armed men, and murdered.\"\ntt0068646,VC1_tdnZq1A,Mr. Woltz wakes up to find his prize horse's severed head in bed next to him.\ntt0071562,435mkg6_eGQ,Michael remembers an earlier time – the day that he told his family including Sonny and Tom that he had enlisted in the marines to fight in World War II.\ntt0071562,wPmTp9up26w,\"Senator Geary tries to strong arm Michael, but the threat fails to work.\"\ntt0071562,gCdXiOssbM0,\"Vito Corleone returns to Sicily to honor his dead father, Antonio Andolini, by taking revenge on Don Ciccio.\"\ntt0071562,AO-VFDYy9Rk,Michael wipes out all his remaining enemies including his own brother Fredo who is fishing on Lake Tahoe.\ntt0071562,4dWE_ag9W6o,\"When discussing the possibility of assassinating Hyman Roth, Michael reminds Tom that if there is one thing certain in this world, it is that \"\"you can kill anyone.\"\"\"\ntt0071562,_g9RI0GgRIQ,\"Kay informs Michael that her miscarriage was, in fact, an abortion.\"\ntt0071562,em7EcaXPJF8,\"During the Italian fiesta, Vito murders Don Fanucci in his doorway.\"\ntt0071562,5Weaop_aiTg,\"Michael banishes Fredo from the family, both in business matters and as a brother.\"\ntt0071577,DiNE5iYBuHA,\"Daisy tells Gatsby the story of how she came to marry Tom, and why she didn't wait for him.\"\ntt0071577,KlPjJx6pMNA,Nick has an awkward first encounter with Gatsby during a party.\ntt0071577,EwYjmMjwF_M,Gatsby and Daisy see each other for the first time in eight years.\ntt0071577,Z8zeMXCxlmE,\"Nick reunites with his cousin Daisy and meets her husband, Tom, and friend, Jordan.\"\ntt0071577,lE4UQ5gh5Zo,George sneaks into the mansion and murders Gatsby.\ntt0071577,-W93ly0pQGI,Gatsby tells Tom that he intends on leaving with Daisy.\ntt0099703,Drr7dxV6I64,\"When Roy rejects her advances, Lilly grabs the briefcase full of money, with tragic results.\"\ntt0071577,dhRABm5GgHc,Myrtle tells the story of how she and Tom met.\ntt0071577,QxL3vcwOL8E,\"Nick has lunch with Gatsby and his friend, Meyer Wolsheim.\"\ntt0071577,vgZ-MV0YbMU,\"Tom brings Nick to meet his mechanic, George Wilson, and mistress, Myrtle Wilson.\"\ntt0099703,sdUbhlY-RP8,\"When Roy rejects her plan to work together, Myra questions Roy's relationship with his mother.\"\ntt0099703,Rlwhv7m3CSI,Myra and Cole rope an unsuspecting businessman into an elaborate business scheme.\ntt0099703,QauBYsssnl4,\"Lilly tries to hire a nurse for Roy, but he sees through her ploy.\"\ntt0099703,jvhap1vcLDw,\"Bobo threatens to beat Lilly with a towel full of oranges, then burns her hand with his cigar instead.\"\ntt0099703,Z96Hz_Hio8k,Lilly and Myra size each other up when they visit Roy in the hospital.\ntt0099703,FJU-pWka9lY,Myra seduces a jeweler after he determines her diamonds are fake.\ntt0099703,6lOPeGgf9C4,Roy befriends a con man in order to learn everything about becoming a grifter.\ntt0099703,AMibptRTFdo,Roy pulls some short cons on a bartender and a customer.\ntt0368008,SUu7hWUv7f8,Eleanor is confronted about using her son as a hit man.\ntt0368008,uEYm9Zm5zI8,Marco bites Shaw to prove that he has an implant in his back.\ntt0368008,rRaHWuWTtG8,Rosie reveals herself as an FBI agent when Marco attacks her in her apartment.\ntt0368008,3cDavZFKopc,Melvin tells Marco about strange dreams he has been having.\ntt0368008,ac7D9kcETUg,\"Shaw is sent to kill Senator Jordan and his daughter, Jocelyne.\"\ntt0368008,WR_LpHsIp7Q,Marco remembers his brainwashing where Simon McBurney had him and Shaw kill Ingram and Baker\ntt0368008,Qub35DMB63E,Marco is interrogated after Melvin is found dead.\ntt0164184,BU6A7rn15oA,Jack informs President Nemerov of the true origin of the bomb that was in planted Baltimore.\ntt0469641,ja4l7-L7n6M,John reminisces about the time when he found out Donna was pregnant with their youngest daughter.\ntt0469641,IeFdeC6ukDY,The officers arrive at the horrifying scene of Ground Zero directly after the attacks.\ntt0203230,BziL_wBTw6A,Terry talks to Rudy about Rudy's father.\ntt0402022,FhODkuXIda4,\"Aeon is summoned from her room by The Handler, who assigns her a new target for termination.\"\ntt0402022,ow9U0uWCfDY,Aeon and Freya square off in a show-no-mercy fight.\ntt0402022,1iFLiN6E1qE,Aeon catches a fly with her eyelash in a sequence inspired by the animated TV show.\ntt0402022,5zInmil5iT4,Aeon utilizes her Monican powers to free herself from captivity.\ntt0164184,Y0p3egpGwAI,DCI William Cabot and Jack Ryan meet with President Nemerov to discuss Russia's military forces.\ntt0164184,glMgSCdK1xU,Grushkov reveals to Jack that he was a secret source to the CIA.\ntt0164184,XcNYS8j9Qkg,Jack tells Cathy that he can't make it to their dinner date because of the secret CIA mission he's on.\ntt0164184,8GPu-oZ4p64,DCI William Cabot discusses the matter of the new Russian president with Senator Jessup.\ntt0164184,Wzp2rpe06j8,Dressler records a speech on fascism while his bomb is being planted in the United States.\ntt0469641,VDU2I4kxPY8,Will is finally rescued from the rubble.\ntt0469641,oG58-Vs838M,\"The officers notice the first signs of an attack on the morning of September 11, 2001.\"\ntt0469641,lPCt2BBqR2k,\"Will, John, Antonio, Dominick, and Christopher, run for cover as the tower collapses on top of them.\"\ntt0469641,2CEYOnJqPE4,Allison and Donna are told that their husbands have been being found.\ntt0469641,wEnaRGQc8Ls,Will and John are finally discovered by Karnes.\ntt0469641,cagsLW2dKTI,John is finally rescued from the rubble as Donna waits for him at the hospital.\ntt0469641,eHx-v7Xto7E,Will gets increasingly distraught at the despairing situation that he and John are in.\ntt0203230,XP71dJlnLJQ,Samantha is a little irate when she hears about the time Terry spent in jail.\ntt0203230,Ad4VvlLYJ9o,Rudy finally gets to spend some quality time with his Uncle Terry when he gets picked up from school.\ntt0203230,QX1qfAa0np8,Samantha argues with Brian over the future of her job.\ntt0203230,i1ZUVkU_XK4,A fight ensues when Terry brings Rudy to meet his biological father.\ntt0203230,MPp_UJZTU78,Terry says goodbye to Rudy.\ntt0203230,exIGslwFcMI,Terry gives Rudy some last-minute advice while he packs to leave.\ntt0203230,hc0o1zXNHAg,Samantha tells Terry about her tryst with her boss while they share a joint.\ntt0402022,TiHM7F5EUaI,\"Aeon spends the night with Trevor after she realizes they share a distant past. Her sentiment changes in the morning, however, when she remembers she's under strict orders to kill him.\"\ntt0402022,rwk6Obqrj9M,\"Aeon explains the post-apocalyptic city of Bregna, whose residents are confined within the domed walls.\"\ntt0402022,jgvj0XwxagY,Aeon stylishly takes out a group of armed agents surrounding her from above.\ntt0402022,KPz_yW2gjmI,Aeon performs a daring jump onto a floating ship.\ntt0402022,JbyemdsSfI0,Sithandra confronts Aeon on her reluctance to follow orders.\ntt0116367,Z9m4hRQkVSA,Chaos in the convenience store erupts when Richard accuses Pete of signaling Ranger McGraw.\ntt0109445,fEEj6d3GTOU,\"Randal annoys an indecisive video store customer, who in turn annoys Randal.\"\ntt0219653,YTkSNIvrueA,Mary sacrifices herself to destroy Dracula by letting sunlight pierce his flesh.\ntt0068767,WmD1a_N83ZM,\"Chen Zhen crashes a Japanese dojo in search of Suzuki, the man who Chen believes defiled his school and his master's legacy. When the Japanese students defend their dojo, they learn a lesson in unbridled badassery at Chen Zhen's knee, foot, and fist.\"\ntt0112346,UJUWDZ9JUEI,\"When mutual attractions are exposed, President Shepherd and Sydney discuss the steps of a possible relationship.\"\ntt0407304,NBS7J3KHWhQ,\"Harlan tries to pull a shotgun on the aliens, but Ray stops him because he knows they're outnumbered.\"\ntt0219653,vj_NmzJ0mMA,Mary and Simon trick Dracula and fight his undead servants.\ntt0091042,KS6f1MKpLGM,The Economics Teacher calls attendance and notices a few absences.\ntt0112346,4tnHIQmcSHY,\"When President Shepherd cancels a date with Sydney, he stops by a florist shop to send her flowers.\"\ntt0112346,OORXuVmd9YQ,\"When Sydney's boss discovers her date with The President, he lectures her about her responsibilities. At the same time, Sydney receives a gift from the White House.\"\ntt0112346,aIm1ZGm03WA,Sydney gets more than she bargains for when The President unexpectedly walks in on a meeting right when she is insulting him.\ntt0266489,8sUWwozOFww,\"In cartoon form, Alex and Nancy search for a house within their price range.\"\ntt0255477,m3TAK8ty_cg,The Blue Fairy watches as Pinocchio is swallowed by a shark.\ntt0047396,DKCGcHQSvHw,A neighbor is heartbroken when she finds her dog has been killed. Jeff and Lisa question why Thorwald would want to kill a dog.\ntt0110005,xLq2eTiqbww,Pauline imagines her mother and father suddenly dying while at the dinner table.\ntt1253596,kzu2Gwn-sPA,\"The good news is that the assault charges have been dropped. The bad news is that since thirty days have passed, none of the midgets or mascots will win the inheritance.\"\ntt0092007,YtDqlEcfr9w,Dr. Gillian Taylor grills Captain Kirk and Spock on their strange behavior.\ntt0088850,oozQe2Bk2cA,\"Spike gleefully tells Monty he made him \"\"10 million, 10 million, 10 million dollars!\"\"\"\ntt0219653,CbMYk-lCKOw,Simon fights an undead Marcus.\ntt0133751,1jiv5JxmUww,\"When Casey and Zeke confront Professor Furlong about the missing parasite sample, they find out that their professor is already infected.\"\ntt0091042,H19uKs99vIw,Jeanie reluctantly enters into a conversation with a stranger at the police station.\ntt0219653,uBB3Cvxq5f8,Van Helsing describes his history with the mysterious Dracula.\ntt0219653,excK59qpaOA,The thieves break into Matthew Van Helsing's secure vault which holds a deadly secret.\ntt0219653,WYzUtZMt5A8,Dracula murders the thieves of his coffin on an airplane.\ntt0219653,MicQ48AuWhw,Dracula frees Solina from an asylum.\ntt0219653,dejp7HK8Owc,Nightshade is the first to greet Dracula as he wakes from his century long slumber.\ntt0219653,Ao5TqA-l2cg,Van Helsing and Simon must face Dracula's undead servants.\ntt0219653,rOaNhtHWULw,Van Helsing and Simon escape the perilous undead servants of Dracula.\ntt0219653,Y9NVQr1r9nw,\"Dracula seduces Lucy, where he references an iconic line from the original Todd Browning Dracula\"\ntt0219653,qwMmxh3r8YM,\"Dracula reveals himself to be Judas Iscariot, the disciple who betrayed Jesus Christ.\"\ntt0077416,Kd9_2TRib3k,\"On the hunt in the early morning, Michael gets the perfect shot at a deer but misses it intentionally.\"\ntt0090305,mcUWG23hqvw,\"Wyatt is blackmailed by Chet, his militaristic older brother.\"\ntt0091042,mHa1zTLrXO8,Ed Rooney and Grace discuss Ferris and his popularity.\ntt0384642,gA8z3Yk3wWc,Phil tries coffee for the first time.\ntt0107076,GrlUWh2ZlHo,A motorcycle chase ends in flames when Chance ghost-rides his bike into a truck and blows it to hell.\ntt0106332,UkdFtNyvsBM,Cheng Dieyi is aggravated by Duan Xiaolou's sudden decision to marry the prostitute Juxian.\ntt0112346,y-HKigPxUi0,President Shepherd and A.J. discuss the consequences of dating during an election year while playing pool.\ntt0088850,SRWyQELLODg,\"Monty outfoxes his lawyers by mailing a rare stamp, canceling its worth.\"\ntt0082198,gmpBzm5RknI,Conan is resurrected from the dead and regains his strength through the care of Valeria.\ntt0765429,PgOO8Z-FoKY,\"Frank and his wife Eva are shot at during a drive-by shooting, but manage to survive.\"\ntt0077416,dGFrhVeMm6U,\"When the helicopter comes for them, Nick is rescued, but Michael and Steven fall in the river.\"\ntt0384642,Ozpkzjl-oCU,Phil's unruly behavior gets him kicked out of the coffee shop.\ntt0107076,5I-k7fSMhg8,Fouchon and van Cleef punish Poe for providing their hunting organization with a man who had a family.\ntt0088850,bXEglx-or6k,\"Monty announces a simple campaign platform: Vote \"\"None of the Above.\"\"\"\ntt0384642,rxM8oCm4TnM,Phil takes the boys camping and takes it a little too seriously.\ntt0088850,9Najox-g4zE,\"Monty pays off a man who rear-ended his car, compensating him for \"\"brain damage.\"\"\"\ntt0106332,Z0JXPVm_Ohg,\"After running away from their troupe, Young Douzi and Laizi attend the opera for the first time.\"\ntt0106332,X8gUgmkzHjs,\"The opera manager is confident that Duan Xiaolou and Cheng Dieyi will have continue to have flourishing careers, even after the impending Communist takeover.\"\ntt0107076,kC44tlr_KsU,\"When Natasha is attacked by some thugs, Chance shows them the error of their ways.\"\ntt0099674,Td8eEM9KDig,Vincent and Michael barely escape a massive helicopter attack ordered by Joey Zasa.\ntt0047396,-6fuDrAmhNc,Jeff calls Thorwald to get him out of the apartment so Lisa and Stella can search for clues.\ntt0090305,6bDAYP4kpGk,Chet catches Wyatt wearing women's underwear and demands money to keep it quiet.\ntt0107076,R6Vbxei-TQc,Chance and van Cleef face off in a deadly shootout at the warehouse.\ntt0088850,c35RsjYzAhY,Monty hires an enthusiastic Russian cab driver as his personal chauffeur.\ntt0047396,-e3HqC2rbQc,Lisa and Jeff have a disagreement over their future together.\ntt0110005,JsFO0ZY7whQ,\"After a long time apart, Pauline and Juliet renew their friendship in an imaginative and intimate way.\"\ntt0106332,lhQRz_BP1v8,Duan Xiaolou is interrogated for disparaging the Communist army.\ntt0082198,PAHFNiNl9JM,\"As Conan lays on the cross crucified, Subotai rescues him before death.\"\ntt0090305,GvZLaCfU4PA,Gary and Wyatt are drenched in slush by a pair of bullies.\ntt0088850,k9gcqiIfw8E,\"Monty delivers his stump speech, electrifying campaign supporters at a \"\"None of the Above\"\" rally.\"\ntt0082198,RVFpy5UwsAU,Conan prays to Crom before a battle with Thulsa Doom and his warriors.\ntt0088850,L_b55QpXdsg,\"Addressing a stern judge, Monty and Spike mount a defense of the previous night's skirmish.\"\ntt0080761,7xOOk5w5dDA,Alice fights for her life with Mrs. Voorhees.\ntt0090305,-UJ9K8lMxPA,\"Gary and Wyatt's computer hacking results in a gorgeous, flesh-and-blood woman.\"\ntt0110005,8wh62mxbLy8,\"Juliet and Pauline bond together over music, books, movies, and toys -- an idyllic display of adolescent bliss.\"\ntt0110005,F3hX-mdx80w,\"Pauline reveals her plan to murder her mother to Juliet. Later, they burn their records as part of a ritual preparation for what they're about to do...\"\ntt0077416,BsTrRttExpA,Michael hunts and kills a deer with one shot.\ntt0120694,HbYMkY74ikA,Charles is murdered by Michael Myers. Trivia: the famous Michael Myers mask in this scene was digitally replaced with one that more accurately resembles the mask in the first movie after negative feedback from test audiences.\ntt0216787,8COIJaMQGc0,Bruno and Manie discuss how men and women deal with sex.\ntt0765429,y5RFBLZV-B4,\"Frank explains his method of business and how he managed to surpass the \"\"white man\"\" when others couldn't.\"\ntt0452608,pMQxW1t8guI,\"A man enters Jenson's home and attacks and kills his wife, Suzy. Then he attacks Jenson, framing him for the murder.\"\ntt0384642,qvFBGYjAXW8,Mike Ditka and Phil try to inspire the kids to greater soccer success.\ntt0106332,00pBYZ1yofs,A tragic riot breaks out at the opera when Duan Xiaolou tries to settle an unruly crowd of soldiers.\ntt0112346,YnKV34oNXiw,\"When President Shepherd wrestling with votes on a piece of legislation and the media focusing its attention on his personal life, Lewis reinstates what people care about in the Presidency.\"\ntt0047396,1Ez6dw3ywcc,\"When Lisa is caught snooping in Thorwald's apartment, Jeff is also caught watching from his window.\"\ntt0090305,YIYJpbAK6MY,Gary and Wyatt recoil at the sight of Chet's nasty new persona.\ntt0110005,oOZ7KbI0Phw,Pauline imagines herself in the Fourth World to escape the boredom of having sex with Nicholas.\ntt0047396,Re5jTn8Cv4M,Jeff sleeps peacefully by the window with two broken legs with Lisa by his side.\ntt0238380,_b3_-pPzDVk,Preston examines a hidden stash of contraband items and weeps upon hearing Beethoven for the first time.\ntt0169547,GyJGnNFU5dc,\"Lester fawns over Jane's friend, Angela.\"\ntt0112346,q3NI5sE3KeY,President Shepherd gives a press statement addressing his political opponents and asserting his position as the President of the United States.\ntt0120694,3GoXAgg7rgM,Laurie has a feeling that Michael Myers could be back when she realizes her son is the same age she was when Michael first tried to kill her.\ntt1253596,xQvyGwbVWHk,Big Red appears after the screening of the finished documentary to reveal that he's alive after all and giving his money away to the contestants.\ntt0080761,RObb2QfBnUs,\"Alice wakes up in the hospital to find that all her friends are dead, and Jason is still alive.\"\ntt0230600,6QFgsy9R4uc,Grace questions Anne and Nicholas about children\ntt0169547,Vt0rz5iPuaA,\"Following a property showing, Carolyn allows herself a brief emotional meltdown.\"\ntt0110005,8ZgKfSqsN80,Pauline and Juliet murder Pauline's mother after luring her into a trap.\ntt0110005,VyEM6uxoo7o,\"After learning that her parents are going overseas, Juliet takes refuge from her hysteria by entering the imaginary realm of the Fourth World\"\", where she invites Pauline to accompany her.\"\ntt0107076,oLnrsZa4EqQ,Chance bites the tail off a rattlesnake that's about to attack Natasha and leaves it for the bad guys to find.\ntt0080761,yO3eVly1GSI,\"Annie hitches a ride to Camp Crystal Lake, with disastrous results.\"\ntt0110005,slGnGr6kHIA,\"After seeing the film The Third Man\"\", the girls have visions of being chased by \"\"Orson Welles\"\ntt0216787,330mxTrSMLI,\"Castella hangs out with Clara and her bohemian friends, who tease him -- without him knowing it -- about his cultural ignorance.\"\ntt0357413,rDXBM22wbrg,Veronica takes over as news anchor as Ron's friends try to distract her.\ntt0080761,atzQpAlaojg,Mrs. Voorhees channels her son Jason as Alice runs away.\ntt0092007,l6zm1uCb30w,\"Kirk tells Spock he should avoid using colorful metaphors; he also tells him not to lie, but to exaggerate.\"\ntt0099674,DBZUhOSY6g0,Kay asks Michael to let their son go to live his own life.\ntt0092007,sf8rDpu1vCk,\"Chekov and Uhura get blank stares when they ask for directions to the \"\"nuclear vessels\"\" near San Francisco.\"\ntt0120694,efNMnSL6Wlg,Laurie confesses her true identity and family history to Will.\ntt0120694,XYjynyKDAdY,\"Marion Whittington, Dr. Loomis's colleague from the first two films in the series, meets her end when Michael returns to Haddonfield searching from files leading to his sister.\"\ntt0077416,jyqr-hGGpQg,Michael and the boys try to talk to a soldier at the bar who's only in the mood to drink.\ntt0110005,PuVXyMNeXOk,\"Having been ordered to see a doctor for her excessive closeness\"\" towards Juliet, Pauline imagines a creative way to silence the doctor's smug lecturing.\"\ntt0120694,bBbLZ6m_9MA,\"John and Molly briefly evade Michael Myers, only to lead Michael right to Laurie.\"\ntt0080761,36FJgdiYYs4,\"Just when she thinks she's safe, Alice has to fight off Mrs. Voorhees on the dock.\"\ntt0169547,hJVXg1AHQTY,\"Armed with dirt on his superiors, Lester demands a hefty severance package.\"\ntt0110005,F0-Ke_gCCNg,\"Juliet makes quite the impression during her first day in class, especially on young Pauline.\"\ntt0079945,gxAaVqdz_Vk,\"The crew of The Enterprise discover that the mysterious VGER is actually Voyager 6, launched by NASA.\"\ntt0080761,mS-uVaGMOtw,Alice hides in the closet until Mrs. Voorhees tracks her down.\ntt0230600,Oio9JPB1GzI,Anne finds a surprising tombstone just as Grace makes her own startling discovery.\ntt0384642,v2pWzqZqTyk,Phil apologizes to Mike Ditka for his behavior.\ntt0080761,kk2HQ0hCGTE,\"Mrs. Voorhees tells Alice what happened on the day when Jason, her only child, drowned in the lake.\"\ntt0080761,09idDzvkxZ0,Alice runs into Mrs. Voorhees and tries to convince her they're both in danger.\ntt0080761,Mvs2nUuXWLo,\"Jack enjoys a cigarette in bed, but he soon learns that smoking isn't the only thing that can kill you.\"\ntt1253596,5DJehPkkRSQ,A variety of midgets and mascots audition for spots on the teams competing to win the inheritance.\ntt0384642,G3xSISRjDR4,Phil recruits legendary coach Mike Ditka to help his soccer team.\ntt0092007,HBxcalnSzIk,\"When Spock can't rely on science and hard facts, Bones tells him to take his best guess.\"\ntt0106918,f9_akBxA4mU,Mitch gains the upper hand when he records Agent Terrance threatening him and abusing his power.\ntt0384642,TVBx0r_xPCo,Sam gets past Bucky to score the winning goal.\ntt0092007,PoS1eAVNXWU,Kirk and Dr. Taylor are surprised to find Spock swimming in the whale tank.\ntt0765429,_s4J6vN1t9Q,\"Richie and his men raid the heroin lab, making some key arrests.\"\ntt0080761,E16S5BAkzQ8,\"Marcie looks for her boyfriend, and ends up on the receiving end of an axe.\"\ntt0765429,cXCMz340CRg,Frank teaches his family about business then takes a break to collect his money after shooting Tango on the street.\ntt0120694,94AnEUa_z8U,\"When Michael Myers shows up on campus, Laurie and Will do their best to protect themselves and the kids.\"\ntt0230600,nIGy0Jw96PY,\"Distraught over her husband, Grace discovers that the childrens' protective curtains have been removed.\"\ntt0230600,_LvUmxUqPTo,Grace panics when she finds an old woman where her daughter was.\ntt0090305,t4U-Q2nd6u4,\"Gary and Wyatt have a rich fantasy life, but a humiliating reality.\"\ntt0077416,aCW9NsrV6VM,\"When Michael and Nick are forced to play Russian Roulette with three bullets, Michael changes the game.\"\ntt1912398,Nwl4xV6wuRI,\"After Nick's funeral, old friends get together and sing \"\"God Bless America\"\" in his remembrance.\"\ntt0230600,qrCKDRFj-A8,Mrs. Mills explains to Grace that a photo album contains pictures of the dead.\ntt0077416,VlmanKoPLyo,Tensions rise when Michael won't lend Stanley his extra pair of boots.\ntt0099674,ZtuLM666bLo,Kay professes her undying love for Michael.\ntt0112346,M-cO3MLYOy8,Suspicion overcomes the President's advisors when President Shepard asks for an outside line in the oval office in order to send some flowers to Sydney.\ntt1253596,-meMCDrOmpo,Gator volunteers to wrestle a real alligator and loses an arm in the process.\ntt0112346,hcWo8KXmhLs,The President and Sydney have their first date at a state dinner for the French President.\ntt0384642,fpxPstb2DAU,Phil gets carried away at the soccer game and pushes a little kid.\ntt0384642,aAF6B3USip0,\"At the game, Phil talks smack to everyone.\"\ntt0077416,OuGSXflBoWU,Nick and Michael play one final round of Russian Roulette.\ntt0357413,IKiSPUc2Jck,Champ and Brian try their best to seduce Veronica Corningstone.\ntt0099810,c5WfxwnLlLU,Jack Ryan gets a taste of the turbulence that the Air Force crew goes through regularly.\ntt0384642,qCpDKjDMo6Y,Buck and Phil hock balls and vitamins in their new commercial.\ntt0120815,Le9uGkbtxHk,\"As Caparzo lies bleeding to death, Jackson takes out the sniper in the bell tower.\"\ntt0107076,C3hCT5jijpw,\"Chance, Natasha and Detective Mitchell arrive at a crime scene, only to find that van Cleef and his men are still there.\"\ntt0107076,Lk5QIK3_Cjo,\"Fouchon and his men follow Chance's trail to the cabin of Uncle Douvee, who has a few surprises up his sleeve.\"\ntt0082198,ltO8_FJbRUw,\"Seduced by a beautiful woman, Conan finds out she is a witch mid-coitus.\"\ntt0107076,IAqy_BtCqM4,Chance uses a distraction from some pigeons to take out a henchman.\ntt0047396,v7FL42Fon3g,Jeff writes a note to Thorwald questioning the disappearance of his wife. Lisa riskily delivers it by slipping it under the door.\ntt0107076,pu2ArBfwZcA,\"Forced to put down his shotgun, Chance uses a grenade to finish off Fouchon.\"\ntt0119675,QQvcg1NNqWQ,Dr. Tyler is attacked and flown away by the menacing humanoid bug.\ntt0120694,c5Re3lGYUA0,\"Michael Myers sneaks into the private high school, past Ronny the guard.\"\ntt0230600,zxeNP1dHgXQ,Grace begs for Charles to stay when he threatens to return to the war.\ntt0047396,t8eNpwLPwog,Jeff prepares a lap full of light bulbs for his flash when he hears Thorwald sneaking up on his apartment.\ntt0047396,EFollUtH108,Jeff keeps watch as Stella digs up the garden for clues and Lisa sneaks into Thorwald's apartment.\ntt0090305,B8dldLG_ZhI,Gary talks Wyatt into using his computer to simulate a woman.\ntt0047396,oowcsynjIwc,Thorwald is caught by police when he attacks Jeff in his home and pushes him out the window.\ntt0090305,g9GBuciv20A,\"Inspired by the bluesy atmosphere, Gary tells a group of barflies his story.\"\ntt0082198,Daz5Pc5rXPA,\"After his village is massacred, young Conan loses his mother at the sword of Thulsa Doom.\"\ntt0047396,w5pn48wzBuw,Jeff takes a closer look at his neighbor by using a telephoto lens.\ntt0090305,IfggccwQrcY,\"Lisa teaches Chet a lesson by turning him into a squat, putrid creature.\"\ntt0082198,fERCwTTOU3M,\"Conan knocks out a camel while carousing with Subotai, a companion and thief.\"\ntt0082198,MNV86VFd4Zw,Conan engages in a bloody battle with Thulsa Doom's warriors.\ntt0082198,_42qmKBSC3g,Conan's fame as a gladiator escalates after his first battle in the ring.\ntt0082198,bj2JORdzs1g,\"Conan faces Thulsa Doom at the temple, and finally gets his revenge.\"\ntt0088850,FosFEzsLKiI,\"Monty receives a challenge from beyond the grave: Spend 30 million dollars in 30 days, and get 300 million.\"\ntt0088850,A-KN6ZbpIDE,Monty and Spike pick up two ladies at a bar by expounding on the benefits of nude massage.\ntt0090305,9y-f9F8Hl0I,Chet returns to find the house in disarray.\ntt0090305,nip7ztfMngk,\"Gary and Wyatt shower with their creation, who urges them to \"\"loosen up.\"\"\"\ntt0449467,lFHKj8M1maI,Chieko gets high on pills with her friends.\ntt0216787,VqLghmct2i4,\"Manie recognizes one of her customers from a one-night stand, but he can't seem to remember her.\"\ntt0090305,fgPFXXhzBCE,\"The morning after the party, Chet confronts Lisa and the boys about their behavior.\"\ntt0449467,lHqpwH6rqOY,\"When confronted at the U.S./Mexican border, an intoxicated Santiago provokes the officers and speeds off unauthorized.\"\ntt0088850,Vw_QOIebFpw,\"Monty models a new suit for Spike, and his tailors assure him he's not a lowlife.\"\ntt0169547,22VmzX35pvM,\"Colonel Fitts misreads Lester, prompting an uncomfortable moment.\"\ntt0088850,jLPtdXAVuwo,\"Morty King, the self-billed king of the mimics,\"\" repeats Monty's every word.\"\ntt0230600,DVPGcQ1Ljgc,Grace loses her patience with Anne when she convinces Nicholas that there is another boy in their bedroom.\ntt0169547,wPJE21U518M,Lester fantasizes about Angela and gets caught masturbating in bed.\ntt0169547,5P7bIH5iC7M,Lester wonders why Carolyn is more interested in material possessions and has lost her desire for him.\ntt0765429,FFJo3KhcZw4,Frank stops by Nicky's club and tells him to stop ruining his heroin brand by selling a diluted version.\ntt0230600,zd0FCDiFapo,\"On her way into town, Grace gets lost in the fog and reunites with her husband.\"\ntt0449467,NpOTp73r0Cw,Richard pleads for help when the American embassy delays his wife's rescue. The rest of the tourists abandon them.\ntt0407304,kytDzjuBGJI,\"When an alien probe explores the basement, Ray uses a mirror to confuse it.\"\ntt0169547,qw0kuEG7NR8,Lester buys a new car to feel better about his life and asks Carolyn why she is so joyless.\ntt0765429,m3QyTiNVwWA,Richie and a slew of officers greet Frank to arrest him while Frank's men are being arrested all over town.\ntt0084726,e7X01_j_oDA,\"Khan is angered that Kirk is still alive, but knows how to really hurt Kirk.\"\ntt0765429,H38XiM2EOnQ,Frank tries to bribe Richie into letting him go free.\ntt0449467,Dtou1hnP_Zo,\"The police opens fire on Abdullah and his sons. When Ahmed is wounded, his brother Yussef shoots an officer.\"\ntt0169547,c1gSDo9bO2g,Lester imagines Angela in a bed of roses.\ntt0169547,tB0th8vNLxo,Ricky shows Jane his most beautiful video: a plastic bag dancing in the wind.\ntt0088850,JZbJcEKVBqk,Catcher Spike distracts a Yankee batter by trash-talking his wife.\ntt0449467,RJsnx3Fqk6w,A veterinarian sews up Susan's bullet wound with a needle and thread.\ntt0216787,3LYT1O8DuR0,Franck expresses concern about Manie's drug dealing.\ntt0088850,p29GuFPbzsg,Angela is just in time to help Brewster secure his inheritance of $300 million dollars before the midnight deadline.\ntt0449467,2V5LfF6uxT0,Amelia is interrogated at the border and is informed that she will be deported.\ntt0106332,pK_ffLZIOb4,Juxian jumps into Duan Xiaolou's arms from the second story of the House of Blossoms to escape a pack of particularly brutish clients.\ntt0449467,0m3w2NeEPY4,Yussef surrenders to the police and pleads for his brother Ahmed's and father's Abdullah life.\ntt0765429,j4ujHOSbQB0,Mama Lucas confronts her son Frank and warns him that he will lose his family if he doesn't straighten up.\ntt0230600,YgcSs9Qt2vU,Anne reveals to Mrs. Mills that Grace has a history of mental illness.\ntt0099674,Ju4vhscaYII,Vincent kills both of the assassins sent by Joey Zasa and saves their hostage Grace.\ntt0765429,v8OMHtUg9sU,\"When Huey gets out of hand at the party, Jimmy shoots him, then Frank smashes Jimmy's head.\"\ntt0765429,-qmkhAXmBNc,\"The U.S. Attorney laughs in Richie's face when he says that Frank Lucas, a black man, has moved above the Italian mafia.\"\ntt0765429,TeGaTTIBv1Y,Richie strikes a deal with Frank in an attempt to get the names of all of the crooked cops in New York.\ntt0216787,dYQpJJySnwU,Clara visits Castella to protect him from buying more art she feels he is too ignorant to understand; Castella responds by assuring her that he is not so ignorant as to not be able to appreciate the artworks he buys.\ntt0216787,AaHqtd4dUWs,Clara opens up to Manie about the mid-life funk she's in.\ntt0119675,k4-CQXg0Z88,\"Little Chuy witnesses his grandfather, Manny, being torn apart by a massive humanoid insect right before his very eyes.\"\ntt0216787,LDsw5Fx76jI,Clara is annoyed to see that boorish Castella has come to the gallery opening.\ntt0216787,GKT1gsoVouo,Castella opens up to Manie about his failed attempt to woo Clara.\ntt0216787,y-79cpg2VC8,Bruno tells Franck about his inability to remember the woman who said they'd slept together.\ntt0106332,lYa7NsegwsY,\"In Cheng Dieyi and Duan Xiaolou's first performance together in decades, Dieyi commits suicide with Xiaolou's sword.\"\ntt0106332,vnHkr84as-4,Master Yuan is executed by the communist party as a counter-revolutionary.\ntt0099674,-_XIgfmDa1s,Michael's fiery nephew Vincent clashes with Joey Zasa and takes a bite out of his ear.\ntt0099674,N5EYRBPqrgs,Michael asks Kay for her forgiveness.\ntt0133751,ZWly042cYCo,\"Zeke is pitted against both Stokes and Marybeth, as he tries to determine who is infected and who is still human.\"\ntt0449467,iN4yYrCgb0o,\"Amelia pleads with border patrol to find the kids she left in the desert, but they arrest her.\"\ntt0099674,U6M-YT5kkio,\"At a meeting of the bosses, Joey Zasa creates an enemy in Michael.\"\ntt0106332,EZFLsjeeVmo,\"Speaking to a modern opera troupe, Cheng Dieyi urges the young artists to practice traditional Beijing Opera.\"\ntt0119675,JVjlqTOPdls,\"Mortally wounded, Leonard creates a diversion so that the others can escape.\"\ntt0106918,f_lRMCPHbuY,Agent Voyles informs Mitch that the law firm he works for represents the mafia and no lawyer has ever left the firm alive.\ntt0106918,7tNEvCdVtk0,Head of Security shows Mitch just how dangerous the firm can become to a young lawyer's family.\ntt0099810,4unk6siO-tI,Captain Ramius expertly navigates the sea canyons and avoids American torpedoes.\ntt0357413,_c_ufaxeSTs,\"At Tino's club, Ron impresses Veronica with his impressive jazz flute.\"\ntt1253596,5dVpXj--7kY,The midgets attack Scottie Pippen when they learn that the mascots have drafted him to play on their basketball team.\ntt0092007,Qt1cF93u-6A,Kirk sets forth the plan for saving Earth and Spock devises a logical solution for hiding his alien heritage.\ntt0079945,Rn2-wALgmMk,Bones gets beamed aboard against his will but is relieved when he learns it was Kirk's doing.\ntt0133751,vE_xjjCJWng,Zeke battles against Miss Burke as he tries to escape her parasitic clutches.\ntt0079945,2ikHoBKVlCA,\"The crew of The Enterprise realize that, thanks to the other machines, VGER has gained enough knowledge to become a living thing.\"\ntt0099810,PUvS_htXD34,Jack Ryan puts forth his theory that Captain Ramius might be defecting.\ntt0099810,BGnZognK3Oc,Jack Ryan is given the opportunity to bring the defecting Russian Captain in and get aboard the Red October.\ntt0079945,rNoHdt36C7o,Kirk pulls Decker aside to relieve him of his position as captain of the Enterprise.\ntt0079945,B2qVxDAonD8,A seemingly unfriendly beam of light shoots toward The Enterprise as Spock rushes to transmit a peaceful communication.\ntt0079945,zR7Zj6ZFyUY,Spock reports to Kirk while being mocked by Bones.\ntt0106918,JzH1Z17c4yc,Mitch is repeatedly informed by the firm's lawyers that no associate has ever failed the bar exam.\ntt0092007,LkqiDu1BQXY,Scotty introduces an astonished engineer to future technology in order to build the whale tanks.\ntt0099810,DWjJlErBPX4,Jack Ryan and Captain Ramius agree that it is wise to study the ways of one's adversary.\ntt0099810,5kaBIMuW74Q,Jack Ryan takes care of the saboteur and Captain Mancuso plays chicken with the Russian sub.\ntt0099810,P8JW75Lv25k,Borodin discusses with the Captain what life might be like in America.\ntt0099810,PWU9g1Fce3U,\"As torpedoes bear down on the sub, Captain Ramius chats with Jack Ryan about a book he wrote.\"\ntt0099810,HCqR0_a6_so,Captain Ramius lets Jack Ryan know that revolution is a good thing now and then.\ntt0084726,OofMJ6cwzLM,Khan inserts his pets into Chekov and Terrell in order to get them to talk.\ntt0106918,04s96zDt1RE,Mitch flees the firm on foot when he finds out that they know he's been speaking to the FBI.\ntt0084726,iPQfwmfRq2s,Kirk sneaks up behind Khan's ship and blows it up.\ntt0084726,WlhyiskKER8,\"Kirk ponders the life he could have had with his former love, Carol Marcus.\"\ntt0084726,xrUEjpHbUMM,\"In his final moments, Khan attempts to destroy Kirk.\"\ntt0084726,9_8nY_LQL3w,Captain Kirk delivers an emotional eulogy for his friend Spock.\ntt0084726,KqpcmQhnl48,Captain Spock gives the ultimate sacrifice for his friends.\ntt0079945,aeneVqyoBTo,A mysterious light probe visits the bridge and takes Lt. Ilia.\ntt0079945,5Ei_2wS0U-w,Spock has a unique insight into the alien presence known as VGER.\ntt0084726,CR08UnlmGKc,\"Kirk finds forgiveness and reconciliation with his son, David Marcus\"\ntt0106918,1tYwDHxg60g,Two thugs question Eddie Lomax as to why he is investigating dead lawyers. He doesn't cooperate so they shoot him.\ntt0079945,BPNUN_aCFAc,\"Kirk marvels at the birth of a new life form and commands the Enterprise to head \"\"thattaway.\"\"\"\ntt0106918,_QE6prpcauw,\"Mitch warns his wife, Abby that their house is being bugged by the firm.\"\ntt0099674,0-0MyjmphsA,The Corleone family grieves when Mary is ambushed by a gunman dressed as a priest.\ntt0357413,Wu7xiJ_HD6c,All the news teams engage in violent warfare for supremacy over San Diego.\ntt0106918,D0vCzkK_AJ0,Hit men pursue Mitch.\ntt0106918,zCB7RR3RaYg,\"Mitch gets trapped in a building, but finds a way to escape being killed by Devasher and his hit man.\"\ntt0449467,MhWCHfeHWJE,Susan is shot on a bus in Morocco.\ntt0407304,rYGWG2_PB_Q,The tripods begin to vaporize humans as Ray races to get home to his kids.\ntt0357413,qN-_cZNDy0w,Co-anchors Ron and Veronica trade barbs as the credits roll on the news broadcast.\ntt0169547,lscdNc0qTnI,A now-deceased Lester marvels at the beauty of his average American life.\ntt0407304,_kopi8gT9KE,\"Ray searches for Rachel on a farm, and when she gets abducted by a tripod, he has no choice but to follow her.\"\ntt0407304,X7rfWPbEufo,\"Ray tries to prevent Robbie from joining the battle, while Rachel tries to fend off a well-meaning mother.\"\ntt0407304,tMw_xOuU9DA,\"Ray tries to escape on a ferry with Robbie and Rachel, but a tripod emerges and overturns the boat.\"\ntt0407304,pCHHv7ojfiw,\"Ray sees birds landing on a tripod and realizes the shield is down, and he tells a soldier so that the counterattack can begin.\"\ntt0407304,S2fxN2JZ81A,\"Ray locates Rachel inside a tripod, and when Ray gets pulled further inside, the humans band together to pull him out.\"\ntt0118607,WzCgOrQn0GM,\"It's a victory for Baldwin, Theodore, and Tappan as Judge Coglin rules in favor of freeing the Africans and finds the Spaniards guilty of slave trading.\"\ntt0118607,iMliaXlKxow,\"Cinque is thrown aboard a slave ship, experiencing inhumane treatment such as whipping and overcrowding.\"\ntt0118607,ena0xfW0_Lo,Cinque leads a bloody slave revolt to take over the ship La Amistad.\ntt0118607,Pb3txlrBZaE,John Quincy Adams gives his opening statement to the Supreme Court addressing that the natural state of mankind is freedom.\ntt0118607,3rpHa7RLvc8,John Quincy Adams invokes the Declaration of Independence and the forefathers of the United States in his plea that all men are born free.\ntt0118607,y8Jkls3xgvg,Cinque explains to John Quincy Adams that he will call up the help of his ancestors in their case before the Supreme Court.\ntt0119675,EYu1SK9XyP8,\"Searching for bug specimens to sell, young Davis and Ricky are savagely attacked by a mysterious humanoid insect in the subway tunnels of New York.\"\ntt0118607,Ee8NvgURCZs,\"Disrupting the courtroom proceedings, Cinque stands up to chant for freedom, over and over again he proclaims, \"\"Give us free.\"\"\"\ntt0120694,hKqQSFaX4NQ,Norma offers some maternal advice to Laurie. Trivia: Janet Leigh is Jamie Lee Curtis' real mother. Listen for cues from Bernard Hermann's score for Psycho as the two part ways.\ntt0118607,B_YYf8Z4b3Q,\"John Quincy Adams finishes up his statement to the Supreme Court by bringing up the probability of Civil War, and to let it come, for it will be the last battle of the American Revolution.\"\ntt0106332,XHHg1C8LGnk,\"When the troupe is disbanded after Master Guan's sudden death, Duan Xiaolou and Cheng Dieyi find a student named Xiao Si who is unwilling to quit.\"\ntt0357413,cDfQo1ANeLM,\"When he tosses a burrito out his car window, Ron causes an altercation with an angry biker.\"\ntt0357413,ZP0mhGmUbr0,Ron Burgundy and the Channel 4 News Team trade insults with Wes Mantooth and the Evening News Team.\ntt0357413,1Zro4CfP9wY,The San Diego news teams converge and trade insults.\ntt0120815,LvAIBDGIYE0,\"To stop the fighting between his men, Capt. Miller finally tells them all where he's from and what he did before the war.\"\ntt0120815,OqSg7WO4tT4,\"Capt. Miller pauses to survey the pure chaos on the beach, before regrouping and ordering his men to move on.\"\ntt0120815,u3_3EUKbY00,Capt. Miller has difficulty convincing Pvt. Ryan that he needs to abandon his post and head home.\ntt0120815,wgHRj2-vvs8,\"Jackson once again displays his sniper skills, until a tank takes aim at his bell tower.\"\ntt0120815,QnX_mQ9apu8,\"Severely wounded, Capt. Miller takes his final stand against an approaching tank.\"\ntt0120815,uW9Q1cm_Tnw,Upham cowers on the staircase as Mellish engages in a brutal fight to the death.\ntt0230600,Y_WiVEBST6I,Grace and her children encounter the intruders and make a horrible discovery.\ntt0172495,s66zFW3nogU,Maximus defeats another of Commodus' gladiators and tigers meant to ambush him. But Maximus spares the loser's life.\ntt0172495,X1UmHfWCw-4,\"After winning his first battle in the Coliseum, Commodus meets the masked gladiator and is shocked to see Maximus.\"\ntt0172495,Bb5tMhOeg5I,\"In the final battle, Maximus gets his revenge by killing Commodus in the gladiator arena.\"\ntt0172495,FI1ylg4GKv8,\"Now known as The Spaniard, Maximus thrills the crowd by butchering several gladiators. He mocks the crowd after his flawless victory.\"\ntt0172495,r2jbK6dGLGc,\"After hearing he will not be the next emperor of Rome, Commodus murders his own father, Marcus Aurelius.\"\ntt0172495,k71x-TmobGo,\"Sentenced to death by Commodus, Maximus overtakes his would-be executors and kills them in the forest.\"\ntt0172495,spvSw-wR6qg,Maximus leads his troops into battle and they massacre the barbarians with no mercy.\ntt0964517,ZrF5rZ3FTbg,\"Despite being patronized by Mickey's mom, Charlene holds firm that she knows what's best for him.\"\ntt0964517,xfoGEGTl-sg,\"Mickey visits Dickie in prison to break the news that he has new management, but Dickie just can't let go.\"\ntt0964517,wWswgKOqkZM,Mickey confides in Charlene.\ntt0964517,ivmjSqQ_7aw,Charlene defends Mickey when his mother and sisters confront him.\ntt0964517,3uUlGkrzPWo,Mickey asserts himself by telling the people closest to him what he wants.\ntt0110005,2hs_qcU6410,\"With Juliet bedridden, Pauline conjures a way to pass the time by starting a letter correspondence, with each friend playing the part of the king and queen of their fairytale world.\"\ntt0964517,HEKPhSJ0PjA,Charlene and Dickie try to make things right between them for Mickey.\ntt1253596,DoJaIZ2Sajk,\"Big Red appears via videotape to explain his will, requiring a contest between midgets and mascots for his inheritance.\"\ntt1253596,51y64KtGGRI,\"Russell leads the midgets to their first victory in the milk chug contest, where everyone must chug a gallon of milk in fifteen minutes.\"\ntt1253596,sSx4IDKK6sg,\"Sheriff wins at rodeo poker, where the last midget or mascot sitting at the table as a bull charges is declared the winner.\"\ntt1253596,YOrZHY_-ap8,The midgets are given ladders and the mascots receive t-shirt guns in a contest to see who can sell the most items.\ntt0119675,WiMw3ttzVMs,\"Dr. Tyler explains the structure of insect society to young Ricky, all the while unaware that she is being stalked by a sinister force from very close by\"\ntt1253596,1LvSSeZfWmI,The midgets and mascots view their completed projects in the amateur porn trailer contest.\ntt0119675,SaWCkQzKopo,Josh sneaks away from a killer bug.\ntt0119675,Jjv5GQtJTEw,\"Having finally discovered the breeding nest for the bugs, Dr. Mann tries to destroy them all by lighting an exposed gas line.\"\ntt0119675,134ua7rOS4g,Leonard goes on a rant after being asked a stupid question by Dr. Mann.\ntt0119675,IHbIf3K5pdc,\"Realizing that the bugs have evolved to mimic people, Dr. Tyler issues a grave warning that if the insects are not stopped immediately, they will spread and infest human society with incredible speed.\"\ntt0401383,mFxrm9Q6E4M,Jean-Do decides to stop pitying himself and put his imagination to work.\ntt0133751,eP7cLId4ocM,\"With suspicions mounting, Zeke issues a makeshift test using his homemade drugs in order to see who is human and who is an alien in disguise.\"\ntt0133751,i77quMJ5ihE,Casey takes out the parasite Queen by shoving a ton of homemade drugs into the creature.\ntt0133751,H5woQdVbaC0,Casey uses his knowledge of movies and sci-fi to try and convince his friend Stokely that something terrible is afoot at their school.\ntt0401383,l_OJuYjvKrM,The doctor sews Jean-Do\ntt0133751,LekZbZ0ksyA,Marybeth reveals herself to be the parasite Queen.\ntt0401383,PUH2nHjBYsA,Jean-Do begins writing his book and goes on a poetic journey around the hospital grounds.\ntt0133751,l6StIaMaRsg,\"Stan is startled by a withered Mrs. Brummel who gives him a cryptic warning. Later, Casey watches Coach Willis exhibit some strange behavior on the football field.\"\ntt0401383,NOZMlcY9MC8,Jean-Do receives a phone call from his Father.\ntt0133751,mtuuOV4FtKY,\"Thinking that their principal is the parasite Queen, the surviving students force her to take a different kind of test.\"\ntt0327679,ayjftbSDeVA,\"Sitting by a fireplace, Ella and Char share their first kiss.\"\ntt0133751,FEAmUOrMd3o,\"Hidden away in a closet, Casey and Delilah witness Coach Willis attack and infect Nurse Harper.\"\ntt0133751,BNWvtfCdBcA,Professor Furlong gets the business end of this parasite when he tries to touch the creature.\ntt0327679,rD3kI-nioGA,\"While being chased for shoplifting, Ella is ordered to freeze by a guard.\"\ntt0255477,8BOU3JhcXIU,\"When Cricket goes to save Pinocchio from Playland, he gets caught up in the madness.\"\ntt0266489,QHYccOE4h4c,Nancy accidentally shoots Alex in the penis when handling a gun for the first time.\ntt0401383,_6up-uz7Q9k,Jean-Do has a visit from two beautiful therapists.\ntt0401383,Y2DV9PUx15s,Jean-Do is stuck in the hospital room with a buzzing TV all night. He ponders his missed opportunities.\ntt0401383,vjkkbQy9fLA,Jean-Do tries out his new wheelchair and has a surprise visit from Celine.\ntt0401383,df0j-m8xV58,Jean-Do shaves his Father.\ntt0401383,zNkZr44VLFY,\"Jean-Do imagines anything he wants: surfing, bull-fighting, himself as Marlon Brando.\"\ntt0401383,XwJGqNQapO8,Jean-Do reaches out to Henriette\ntt0401383,IeqXtCC8Osk,Jean-Do daydreams about writing a play and kissing the Empress of France.\ntt0327679,8ReMLVUwKmA,Ella and Char celebrate their wedding with a big song and dance number.\ntt0327679,SN8hW7AeoQI,Ella is ordered to sing and dance to the song 'Somebody to Love\ntt0327679,x7dGXb7jrHw,\"Prince Char proposes to Ella, and she happily accepts.\"\ntt0327679,9AQGhFGi1dM,\"Ella and Hattie have a heated classroom debate, until Ella is ordered to\"\ntt0327679,mNtK6UvRjO8,Mandy gives Ella a magical book to help track down Lucinda.\ntt0327679,l24yOwR9saU,\"Ella resists the obedience order to kill the prince, and breaks the spell placed upon her.\"\ntt0327679,gPadm1Ql1Is,\"Ella verbally spars with Prince Char, but not without a little attraction.\"\ntt0327679,cw1dB9PxWzM,Lucinda casts the spell of the gift of obedience upon Ella when she's a baby.\ntt0327679,q0yFqlPrLyE,Ella and Slannen are swept up in the musical pageantry of the elf village.\ntt0327679,IBPc_SnNPzo,Ella beats-up some bullies torturing the elf Slannen.\ntt0266489,H2UF-eI_dj8,\"Having snuck into Mrs. Connelly's apartment, Alex is stuck in the bathroom as she undresses for her bath.\"\ntt0266489,J_VTn3SAV20,A clogged pipe leads to Nancy projectile vomiting all over Alex's face.\ntt0266489,vR_L-yH_3jY,Mrs. Connelly insists that a simple raisin is an actual mouse dropping.\ntt0255477,BHWGn9p_p4s,\"Pinocchio becomes friends with a group of puppets, and their leader gives him money.\"\ntt0255477,b0xYU8jHaH4,Pinocchio becomes a real boy and runs around Geppetto\ntt0255477,os1gnR5k3S8,Pinocchio refuses to take his medicine from the Blue Fairy until he is threatened with death.\ntt0255477,28JhyDR8-5M,Pinocchio tells a lie to the Blue Fairy and his nose begins to grow.\ntt0255477,N_20oqY8E2c,Pinocchio and Lucignolo realize they\ntt0255477,J8pmj6RkiQk,The Blue Fairy and Cricket say goodbye to Pinocchio.\ntt0068767,FRC8Nn6PREI,Chen Zhen's speed and agility are too much for Petrov.\ntt0068767,HvFU1MFkLm4,\"Chen Zhen takes out Yoshida's men, before killing Yoshida with his own sword.\"\ntt0255477,UCd_bEZa6k4,\"Pinocchio and his father, Geppetto are reunited in the belly of the terrible shark.\"\ntt0255477,0hau_p3N-MI,PInocchio realizes he has become a real boy.\ntt0068767,8t7NUEm0mMM,\"Chen Zhen avenges his master's death when he fights and kills Suzuki, the leader of the Japanese dojo.\"\ntt0068767,IMjO-38v2cs,\"After being denied entry into a public park on account of being Chinese, Chen Zhen beats the hell out of a Japanese martial arts student who mocks his heritage.\"\ntt0068767,FtZb1Kbh2qY,\"Chen Zhen and his classmates at the Ching Wu school are mocked by Hu, an interpretor and lackey for the occupying Japanese forces. Hu takes special pleasure in denigrating the Chinese people as being \"\"weak\"\".\"\ntt0068767,PH8Gh-5lQNE,\"To protect the Ching Wu students, the school, and its legacy, Chen Zhen faces his fate and charges at the Japanese soldiers, defiant to the very end.\"\ntt0266489,rnnt0KYtwFc,\"Alex and Nancy meet Mrs. Connelly and her pet parrot, Little Dick.\"\ntt0266489,4uuvZl95Cyc,\"Alex is forced to give Mrs. Connelly the heimlich, and CPR, when she chokes on a chocolate.\"\ntt0266489,-cBGthOZ-Ls,\"Alex and Nancy get in a frisky mood, but it is quickly interrupted by the sound of Mrs. Connelly's television.\"\ntt0266489,RVbEs5DBPlY,\"Alex's success with the Clapper is short lived, as Mrs. Connelly – living upstairs – learns how to use it to control the television.\"\ntt0266489,sdb8G26294A,\"Fed up with Mrs. Connelly, Nancy daydreams of killing the old bag.\"\ntt0266489,rrejfviNpqE,The leaking ceiling isn't enough to kill Mrs. Connelly during her workout to Riverdance.\ntt0266489,EBkacU72QM4,Attempts at sabotaging Mrs. Connelly's apartment end up going haywire for Alex and Nancy.\ntt0095765,qq38b_oRYr0,Alfredo and Toto project a movie onto a wall in the village square.\ntt0095765,rrDG0rQCc28,Toto watches a montage of censored kisses that Alfredo made for him.\ntt0468565,lRd5iD73g2s,Tsotsi and his gang panic after the man whose house they are robbing triggers the alarm.\ntt0468565,GPCN0TioP4A,Miriam urges Tsotsi to return the baby he's kidnapped to its parents.\ntt0468565,JELOhEjLgmU,Tsotsi takes the child he's caring for to the slum where he grew up.\ntt0095765,r99wnIibUQY,Alfredo tells Toto he should leave home and make something of himself.\ntt0095765,xr3TcE009HY,The village priest rings a bell every time he sees something he wants cut out of the movie.\ntt0095765,mE53H-ZbD7c,Alfredo rescues Toto from a beating when his Mother catches him spending the milk money at the movies.\ntt0095765,l1GXJBIkb74,Toto rescues Alfredo when the projection booth catches fire.\ntt0095765,mDXU3KxBpCM,\"Toto waits outside the window for Elena, and she finally comes to him in the projection room.\"\ntt0095765,cAEth6FATZk,\"Various colorful audience members enjoy a double feature at the cinema, which seems magical to Toto.\"\ntt0095765,PlO7gaalX68,Toto has a boring summer until Elena comes back to town during a storm.\ntt0095765,dJOMfmVs9Ag,The audience weeps together as they enjoy the same melodrama they've seen repeatedly. One man even has the dialogue memorized.\ntt0468565,x5f6nNMdbgU,\"After stealing a car, Tsotsi is surprised to find that the owner's baby is still in the back seat.\"\ntt0468565,t4k-USM30aU,Tsotsi and his gang stage a robbery on a subway train.\ntt0468565,As5-06N6Rko,\"While caring for a young infant, Tsotsi has a flashback to a traumatic experience from his childhood.\"\ntt0468565,zZB1N4IMjlA,Boston confronts Tsotsi on his mysterious past which leads to a violent altercation.\ntt0468565,dMhT03nH_HA,Tsotsi returns the kidnapped child to its parents amidst the presence of several police officers.\ntt0468565,nfJqMoCXVho,\"After pulling a deadly job, Aap ends his childhood friendship with Tsotsi.\"\ntt0468565,-FyVSeNTqJM,Tsotsi has an intimate conversation with a crippled homeless man.\ntt0468565,3F1uAggQmYI,Tsotsi reminisces about his mother while he watches Miriam care for the child he's kidnapped.\ntt0468565,GgYOGHU_IOY,\"Showing remorse, Tsotsi offers to let the injured Boston stay at his place.\"\ntt0216787,a5WKH6TNlDw,\"Castella surprises Clara with a poem he wrote about her, but the gesture is lost on her as she couldn't be less interested in him.\"\ntt0172495,qUcMohewjvI,Commodus warns Lucilla that he is aware of her spying and threatens to kill her son Lucius.\ntt0181875,HpISLkb5L5E,\"William meets the world famous rock critic, Lester Bangs.\"\ntt0181875,fgMlyvq2oNo,\"Anita comes home with a Simon & Garfunkel record, only to be caught by her mom, Elaine.\"\ntt0257044,v7b0_Z9dzoM,Harlen surprises Michael at the beach house by shooting him in the back.\ntt1182609,mCqrIptSd9k,\"Riggins survives the explosive attack from rocket launchers, mortars, and bazookas to the building in which he's taken cover.\"\ntt1182609,uPzTQvSPsqY,Riggins smashes through a roadblock in an armored vehicle with Ana by his side.\ntt1182609,x2DospZTmUg,Riggins' sexual magnetism is just too much for Ana to take. She jumps his bones after touching his gunshot wound.\ntt1182609,GEp_uGRMbFM,Riggins returns to rescue Ana from the hands of Connelly and his henchmen.\ntt1182609,eCR4DIi8SzU,\"Riding on a motorcycle, Riggins is pursued by Connelly and the army, after they botch the assassination attempt.\"\ntt1182609,D15UY1FXJpI,Riggins gets ambushed in a restaurant but manages to shoot his way out of trouble.\ntt1182609,kBifgLJF5og,Riggins procures enough weapons to fight an army from a black-market Gun Dealer.\ntt1182609,QAxmwbQ_7sI,\"Riggins blows up Connelly with a grenade, and survives a gunshot wound to the arm.\"\ntt1182609,o504Z9dWRqs,\"After witnessing a shootout between Vlado and General Drago, Riggins accepts the payoff for delivering Ana to Connelly.\"\ntt1182609,mvc_bbaLhSg,\"In a Russian prison cafeteria, some thugs attempt to intimidate Riggins, but instead, he warms up his cold food with their hot deaths.\"\ntt1179904,7LhZupa1Bng,Micah tells Katie about a woman from the sixties that was haunted by a similar spirit and ended up dead before an exorcist could save her.\ntt1179904,o5l0Bw2jMO8,Katie becomes possessed by the demon and sets a trap for Micah.\ntt1179904,uvgBCv4v71s,\"After Katie Featherston gets dragged out of bed by an unknown force, Micah Sloat examines the mysterious bite wound on her back.\"\ntt1179904,4jcflB38DNo,\"Micah and Katie beg the psychic for help, but he feels a very angry presence and leaves as soon as he can.\"\ntt1179904,3bgPH3rOWVk,\"During the day, Micah and Katie find their portrait broken and the spirit breathes on Katie.\"\ntt0302886,hV2om9YBADI,\"At marriage counseling, Frank talks of wanting to know what type of underpants a waitress had on at the Olive Garden.\"\ntt1179904,Bogko_zvcaY,\"Micah and Katie reach their breaking point. Later that night, the ghost moves their sheets and uncovers Katie's foot.\"\ntt1179904,4Ky2p76AKSs,The ghost gets serious when Micah and Katie see it turn on and off the lights and slam their bedroom door.\ntt1179904,S1s9cXYpxNo,\"Micah puts talcum powder on the floor to track the ghost. To his and Katie's surprise, they find tracks leading into their room from the attic.\"\ntt0302886,XRz0pSQXTQ4,Darcie wakes up in bed the morning after the party lying next to a shy Mitch.\ntt0302886,va6nRaZ9eRg,Beanie and Frank visit Mitch's new house. Beanie covers his son's ears to protect against profanity.\ntt0302886,_yYDzLUH1NE,\"During the charter review, Frank dominates the debate competition against James Carville.\"\ntt0302886,sFW-yxe13lo,Frank accidentally shoots himself in the jugular with a tranquilizer dart.\ntt0302886,jJMXxv-hYPo,The pledges are hazed by tying a 30 lb. cinder block to their penis and making a leap of faith.\ntt0302886,NnxcN2umAOk,Cheese tells Mitch and Bernard they have to vacate the premises in one week.\ntt0302886,20g3QIUnOgY,Frank the Tank decides to go streaking through town.\ntt0418279,_yy4qamWAmk,\"Cornered by Megatron atop a high-rise, Sam learns that there's only one way down.\"\ntt0302886,NUJVU87Qb7A,\"Mitch gives a drunken, highly inappropriate wedding toast at Frank's wedding reception.\"\ntt0418279,bmHLulbWm74,\"Capt. Lennox, Sgt. Epps, and the rest of the Special Ops team are ambushed by the Decepticon Scorponok in the deserts of Qatar.\"\ntt0418279,kWmntegbxMc,\"Lead by Optimus Prime, the Autobots reveal themselves and their mission to Sam and Mikaela.\"\ntt0418279,5t8Utwa_YYQ,Sam is about to make his move on Mikaela until she insults his car and gets them both thrown out.\ntt0418279,IMo_Jx35SZw,\"Outgunned and on the run, Captain Lennox and Sergeant Epps use teamwork to take down the menacing Decepticon Blackout.\"\ntt0418279,m1ef1Y2x8NY,Optimus Prime and Megatron finally meet in battle -- but it's Megatron who strikes hardest in this encounter.\ntt0418279,Cs-L3psiK2Y,Sam and Mikaela escape the menacing clutches of Barricade with some big help from Bumblebee.\ntt0418279,5QYQS9SYa6A,It takes two to tango as Optimus Prime and Bonecrusher grapple on the LA freeway.\ntt0418279,f6L3Ef1JCC8,\"Mikaela offers to take a look at Sam's car, while Sam takes a look at her.\"\ntt0418279,CcfN7q8rN58,\"As Bumblebee battles Barricade, Sam and Mikaela deal with the annoying minibot, Frenzy.\"\ntt0377109,LqneoJRRqbg,\"Dr. Temple questions Aidan about his mother, unaware that she's really speaking to Samara.\"\ntt0377109,rroMPRc4flw,Rachel crawls her way out of the well as Samara tries to keep her in there forever.\ntt0377109,EiVRkqi02a0,Rachel sacrifices herself to Samara and once again wakes up at the bottom of the well.\ntt0377109,a8xs3O-NwsY,\"Rachel decides to kill Samara by drowning Aidan in the tub, but at the last moment Aidan seems to beg for his life.\"\ntt0377109,yl_CgAqNvKc,\"Jake believes that he is safe from harm, until he discovers that Emily played the tape without looking.\"\ntt0377109,e7dbge0Zk5A,Rachel rushes into the bathroom to find Samara in the bathtub where she left Aidan.\ntt0377109,iBRhat_CcQM,\"When Rachel nearly hits a deer on a back road, Aidan tells her not to stop the car and keep going.\"\ntt0120737,hpb2-ZOzc_o,Noah watches as Samara crawls out of the television and heads straight for him.\ntt0120737,398qkvR92GU,\"Rachel watches a taped interview with Samara Morgan, until Richard Morgan uses the television to kill himself.\"\ntt0120737,u4T5X47MKm4,\"Rachel tries to calm a horse on a ferry ride, but the animal escapes and panics.\"\ntt0377109,bxAiioYl1bw,\"Rachel sneaks into the ambulance to examine the body of the dead teenager, and soon learns that he's not the only one in there.\"\ntt0120737,igEO_oyUs6U,Rachel examines the tape with a professional editing machine and makes some strange discoveries.\ntt0120737,b9abCIgGxT4,Rachel has a bad dream and wakes up to find bruises on her arm.\ntt0120737,OA6wpEFU-uw,\"Rachel and Noah discover a well beneath the cabin, and a freak accident sends Rachel tumbling down into the water.\"\ntt0120737,VyiCDq6Y0c8,\"Rachel watches the tape in the cabin where Katie stayed, and gets a mysterious phone call.\"\ntt0120737,PFsl1cGHzp4,\"Becca tells Katie about a videotape that kills you seven days after you watch it, and Katie admits to seeing it.\"\ntt0236493,LUr7o6R4u8U,Winston confesses his love of Frank to Samantha as they have coffee in a diner.\ntt0236493,PEo3OnoPBI4,Jerry negotiates with the car thief over which part of his body to shoot.\ntt0236493,9zYrXFG6zSs,Winston and Samantha give Frank the postal worker a ride to Las Vegas.\ntt0236493,FUbC8WBChng,\"Samantha and Jerry hug in the airport after he correctly answers the question, \"\"when is enough, enough?\"\"\"\ntt0236493,NUdeuIj-yKk,Jerry picks up Samantha and Winston in a rental. While arguing he dares Samantha to say one more word.\ntt0236493,GanDtOcF0M0,\"Winston asks Samantha, \"\"When two people love each other, when do you get to the point when enough is enough?\"\"\"\ntt0236493,AgLQ3qTL-t0,Samantha throws a fit when she learns that Jerry has to do one more job.\ntt0161081,Jjfj3SkBkpg,Dr. Spencer sets his paralyzed wife in the bathtub in an attempt to make her death appear as suicide.\ntt0161081,SnvRdPwoMRQ,Claire allows Madison to possess her and seduce her husband.\ntt0161081,WNnxjpBMF7U,\"After finding a box of suspicious items, Claire confronts her husband and accuses him of murder.\"\ntt0161081,M4NDR6zyzkw,\"Possessed by Madison, Claire seduces Norman, but the \"\"Professor\"\" hasn't seen this side of her before.\"\ntt0161081,vPTTP3gSLJc,Clair is haunted by an eerie spirit in her bathroom.\ntt0236493,I2AjeXpxmI4,\"At a diner, Winston admits to being gay to Samantha.\"\ntt0161081,irr4b40Ok7E,\"With her entire body paralyzed, Claire can only use her foot to save herself from drowning in the bathtub.\"\ntt0236493,WUApETooc_g,Jerry and Winston have a standoff while fixing a tire out in the desert.\ntt0161081,F1adM9oDbbw,Claire is convinced her neighbor killed his wife and confronts him in public.\ntt0161081,14t1taTBtmc,\"Moments before Norman is about to murder his wife, something appears from the depths in search of vengeance.\"\ntt0181689,xtXdKETotbc,\"Agatha gives Anderton and his ex-wife a powerful vision of their missing son, but the moment is broken by the arrival of the pre-crime unit.\"\ntt0325537,hu2AlkyvIe0,\"The election results are in, and Mays becomes the first African-American President of the United States.\"\ntt0325537,3tXDymBcnJY,\"Mays and Lewis spar in their first debate, on the eve of the election.\"\ntt0325537,hRa-69uBmIw,Mays launches into his inspirational closing remarks.\ntt0325537,lCiravgbbJk,\"The debate between Mays and Lewis turns childish, until they're interrupted by a question from Kim.\"\ntt0325537,tPy34tjLOyk,Mitch encourages his brother Mays to speak his mind.\ntt0325537,r9bfL4Jz-M8,Mitch and Mays engage in some unconventional debate preparation.\ntt0325537,fMTn4M2qfNI,Mays goes off the teleprompter to give an inspirational speech from the heart.\ntt0325537,hvZiZFDE3A8,Alderman Mays Gilliam helps an elderly neighborhood woman save her cat from a house that's about to be demolished.\ntt0325537,SXjiv_w2i3Y,\"Mays gets some unwanted attention from Kim, so he takes advantage of his new security detail.\"\ntt0325537,Pha96r6s_g4,\"Mays is smitten with gas station clerk Lisa, but their conversation is interrupted by the Meat Man.\"\ntt0264464,Ow8mG8qutkw,\"Frank tricks the airline into thinking he's a pilot \"\"deadheading\"\" back to Miami.\"\ntt0264464,DCOm4osfWn8,Frank butters up a bank teller in order to get information on bank checks.\ntt0264464,HYOjY7JJDBI,\"Carl tracks Frank to Montrichard, France and convinces him to surrender into his custody.\"\ntt0264464,sFW15hEqZQk,\"Frank is about to go AWOL from his job at the FBI, but Carl meets him at the airport for a heart-to-heart.\"\ntt0264464,O71paEZERHg,Frank gives Carl a call on Christmas Eve.\ntt0264464,i5j1wWY-qus,\"Frank, impersonating a doctor, is called into the E.R. without any preparation.\"\ntt0264464,R5WC60UwB_Y,Brenda and Frank passionately kiss in his office before he's called out to the E.R.\ntt0264464,31lZFoSS-VQ,Cheryl Ann negotiates with Frank the cost to spend the entire night with her.\ntt0264464,PNOuZUHKneY,\"Carl tracks Frank to the Tropicana Motel, but is duped when he claims to be a Secret Service agent.\"\ntt0264464,KAeAqaA0Llg,\"On his first day of school, Frank impersonates the substitute teacher.\"\ntt0181689,DvS7X6Zik1c,\"When inspector Danny gets too close to the truth, Lamar Burgess murders him.\"\ntt0181689,IHLzITVRlCo,\"Anderton confronts Lamar with his crimes and his choices, but Lamar chooses a darker fate.\"\ntt0181689,5M4QWD0U8-A,Crow reveals a conspiracy and forces Anderton to shoot him.\ntt0181689,8MuZATnrE3Y,\"Anderton finally catches up to the pre-cog's vision, but he decides not to fulfill his fate and commit murder.\"\ntt0181689,9S44kVrFB24,Anderton tries to escape pre-crime officers who chase him with jetpacks.\ntt0181689,901lYbPmqu4,\"Anderton tries to hide in a bathtub, but the nasty spider robots catch him anyway.\"\ntt0181689,GurNiNV5XvY,Anderton tries to feed himself without the use of his eyesight.\ntt0181689,2l_IUAcvfv8,Anderton is shocked to see himself as the murderer in the precog's vision.\ntt0369339,TZQWu0gDpO4,The tension rises as Max tries to talk his way out of a jam.\ntt0369339,CxzCn3OZfeA,Vincent talks about the burden that parents put upon their children.\ntt0369339,6mreIgrIXQ8,\"Vincent shows another side of himself as he lays on the charm for Ida, Max's mother.\"\ntt0369339,wDZyu8jYw90,Vincent gives Daniel one shot to avoid his fate.\ntt0369339,lBS9AHilxg0,Max finds himself in an unwanted partnership with Vincent.\ntt0369339,_syPeFclyN8,\"Through sheer happenstance, Max picks up a mysterious passenger in Vincent.\"\ntt0369339,EMS4lYA-hEo,Max and Vincent have their final showdown on board a speeding subway train.\ntt0369339,oEFPcljAXgs,A pair of street thugs meet their violent end at the hands of Vincent.\ntt0120647,C0SqH_PRfGU,The President gives a somber but hopeful speech in the aftermath of the comet's impact.\ntt0120647,_xJ1KmjXSYc,Leo proposes to Sarah so he can use his newfound fame to get her family to safety.\ntt0120647,-nIwFGmgYMs,\"After detonating a nuclear bomb on the comet's surface, the crew of the Messiah suffers the consequences.\"\ntt0120647,5s6vEQzHOcM,\"In a race to escape the sun, the crew of the Messiah loses one of their own to deep space.\"\ntt0120647,VNtsVP42bOE,\"The comet makes impact in spectacular fashion, destroying the Eastern Seaboard of the United States.\"\ntt0120647,vQWmd8REdaE,The crew of the Messiah gives the ultimate sacrifice to save humankind.\ntt0120647,TzMGDdUyHkQ,\"Just hours before the comet's impact, Jenny finally reconciles with her long estranged father.\"\ntt0120647,Au47y23N-QM,Capt. Tanner suggests a last-ditch plan to his crew on how to stop the comet -- but there's a catch: it's a one-way mission.\ntt0120647,gM4-jiKNuIs,\"After a mission rife with antagonism, Capt. Tanner opens up to his wounded rival, Dr. Monash.\"\ntt0120647,j0silSyYFPM,An ambitious television reporter is on the losing side of a deal with the President of the United States.\ntt0399201,dQTwbSY0z_Q,Lincoln and Jordan steal a jet bike and crash it into a building.\ntt0399201,pTbelq2dtKg,McCord explains to Lincoln and Jordan that they're clones with implanted memories.\ntt0257044,yHBT_3vRbq8,Mr. Rooney pays a visit to Michael Jr. and gives Michael Sr. some advice about sons.\ntt0942385,xPxs0Qh72kY,\"While lost in the jungle, Kirk and Alpa conflict with Tugg and discuss racial issues.\"\ntt0257044,9dyhBVEQi9U,\"Over some coffee and pie, Michael Jr. learns a thing or two about negotiation from his father.\"\ntt0942385,KA2ziAAXoqE,\"Tugg has a brutally honest discussion with his Hollywood agent, Rick Peck.\"\ntt0942385,7YdgPy21hBM,Tugg proves himself to Kirk as a true actor when he nearly misses a bomb and almost dies.\ntt0942385,LQNKhY7ws48,\"Tugg goes mad in the jungle and kills a panda. His Agent Rick, is pleased to hear he didn't kill a hooker instead.\"\ntt0942385,QZocvme6cYc,\"Action hero Tugg Speedman stars in \"\"Scorcher\"\" movies 1-5 and the latest installment \"\"Scorcher 6: Global Meltdown.\"\"\"\ntt0942385,Mhu2Ij0rWCQ,Tugg and Kirk can't get through a scene when Cody decides to set off a million dollar explosion.\ntt0942385,mgyypjEpK6U,Kirk tries to get a gay confession out of rapper Alpa while Jeff suffers from cocaine withdrawals.\ntt0942385,X6WHBO_Qc-Q,\"Kirk discusses acting with Tugg and why he didn't win an Oscar for \"\"Simple Jack.\"\"\"\ntt0942385,zGIIiQyyuYM,Tugg and Kirk act out a scene in a very epic and dramatic war movie.\ntt0942385,qIxHb7cA6tg,Tugg is forced to act as Simple Jack while Kirk and Alpa think of a way to rescue him.\ntt0177789,nF_6OfgbF7c,\"Obsessive Galaxy Quest\"\" fan Brandon receives a radio transmission from his hero Jason that confirms his beliefs.\"\ntt0177789,EQG3I5efwWo,\"Jason runs for his life as an rock monster chases after him. Meanwhile, Fred finds the courage to beam Jason up.\"\ntt0177789,JJ83r886Kyg,\"Gwen finds what appears to be an adorable alien, but true to Guy's suspicion, the aliens are ruthless killers.\"\ntt0177789,nW-NiGp1gys,\"The crew beams up a pig lizard to test out whether they can rescue Jason, but the alien creature dies a horrible death.\"\ntt0177789,qopdYE3_QoU,Guy Fleegman is sure he's going to die as the crew lands on an unknown alien planet.\ntt0177789,_zSpueUqvcs,Jason and the crew are attacked by real aliens for the first time. The ship is badly damaged and they narrowly escape.\ntt0177789,uDJsCE01LYI,\"Alexander Dane feels like a sell-out as he and the rest of the Galaxy Quest\"\" cast wait for Jason Nesmith at a convention.\"\ntt0177789,FEdyNyQCjwE,Alexander dreads signing autographs while Jason savors every moment. Aliens arrive with a plea for help.\ntt0181875,-hDPK865N9I,William informs Penny that Russell sold her to the band Humble Pie for $50 and a case of beer.\ntt0177789,n8mK-A_0viA,\"The \"\"Galaxy Quest\"\" cast unknowingly agree to board an alien spacecraft and receive their first alien probe.\"\ntt0181875,3VIKJMifm7k,\"WIlliam meets Penny Lane and the other \"\"band-aides\"\" while waiting outside of the concert venue.\"\ntt0181875,A3WUhMCsZds,Penny asks William if he wants to go to Morocco with her.\ntt0181875,6OPp0MyQfoM,Tensions within the band arise when Jeff and Russell argue over their images on the band t-shirt.\ntt0181875,eXAvTZlmYF0,\"After Russell is electrocuted on stage, the tour bus busts through the locked gate.\"\ntt0181875,VCfFCFkVSss,\"While on acid at a house party, Russell declares that he is a \"\"golden god.\"\"\"\ntt0181875,TEAIVXJ1Qds,\"As the tour plane heads for a crash landing in Tupelo, dark secrets, confessions, and truths emerge from each passenger.\"\ntt0257044,O_4Sx5NtOPM,\"In the falling nighttime rain, Michael kills Mr. Rooney and his men.\"\ntt0257044,U5418CiBukw,\"Michael confronts John over his betrayal. John responds, \"\"this is the life we chose, the life we lead.\"\"\"\ntt0257044,7-VAbEyf9V4,Michael steps into a trap but manages to fend off Harlen who is shot in the face.\ntt0257044,nPWRoCkmaQU,Michael escapes a set-up in Calvino's office by killing two men.\ntt0257044,UfmdBPl48uw,Mr. Rooney embarrasses his son Connor at a meeting for an insincere apology.\ntt0257044,MhGl83Qsi4Q,Michael Jr. watches Connor execute Finn and Michael Sr. catches him.\ntt0399201,sOxspReyzOI,\"Lincoln tries to convince Laurent that he is not the clone, while Tom attempts to do the same.\"\ntt0399201,5paBdZiLhqQ,\"Lincoln returns to save his fellow clones, but Dr. Merrick proves to be a worthy opponent.\"\ntt0399201,xCQ2qh3Tu9o,Lincoln and Jordan ride a giant logo as it falls off the side of a building.\ntt0399201,CHPnFgyg064,\"Hiding on a truck, Lincoln releases some train wheels onto the highway to stop the henchmen in hot pursuit.\"\ntt0399201,Ihd-NwI030c,Lincoln watches as Starkweather wakes up during his operation and tries to escape.\ntt0399201,IdEsGZhAO7A,Lincoln and Jordan get their first taste of fresh air when they find a way out of the compound and into the desert.\ntt0477051,UuVuFO1cCFE,Mr. Wong tells an interesting and embarrassing story from Norbit's childhood at the wedding reception.\ntt0399201,139c6HgY7jA,\"Lincoln dreams of a boat ride with Jordan, but it quickly becomes a nightmare of mysterious creatures and scientific experiments.\"\ntt0477051,IakgSRSZZ0I,Norbit gets personal during the children's puppet show.\ntt0477051,E3WlOWMP9KA,Rasputia is annoyed and uncomfortable in her car and accuses Norbit of adjusting the car seat.\ntt0477051,JUQS0Q_0aQg,Rasputia shows Kate how going down a water slide is really done.\ntt0477051,yKfQ_-lnMJw,Kate visits Norbit in the hospital and makes his heart monitor work overtime.\ntt0043014,TMUJpec6Bdc,Joe is mistaken for a coffin maker when he meets the washed up movie star Norma Desmond.\ntt0043014,Nn4pMI2q_PM,\"Joe watches Norma play a bridge game with old silent film stars, including the legendary Buster Keaton.\"\ntt0043014,_3hajwRww6I,\"After Joe shatters Norma's delusions of fame and prepares to leave, she threatens to kill herself.\"\ntt0088286,AupQ8Vm51OQ,Nick and Hillary meet a motley lineup of underground fighters.\ntt0238380,XM3BsAAO8JI,Preston turns against a team of clerics when they discover a dog hidden in the trunk of his car.\ntt0080339,ixljWVyPby0,\"After killing his seatmate, Striker is invited into the cockpit to take over the plane.\"\ntt0091159,7trB7i2xpfc,Hunt makes a presentation to the Japanese automakers and continually puts his foot in his mouth.\ntt0115986,kk0vH1qJPHk,Judah hangs and whips The Crow during the Day of the Dead parade.\ntt0918927,nS8tqsjySaI,Sister Beauvier warns Father Flynn that she's been investigating his past by calling the nuns at his past parish.\ntt0369339,3ZpmjPc9Vcc,Max steals Vincent's briefcase in an attempt to disrupt the assassin's plans.\ntt0086465,V4705kE44Jc,\"A crazed, gun-toting Louis tries to frame Billy at the company holiday party.\"\ntt0093748,iU0CuPH7akM,Neal sounds off on Del's pointless chatter.\ntt1179904,evoa_UWUobI,\"When Micah and Katie leave the house, the ouija board that Micah borrowed moves and starts a fire.\"\ntt0101272,WSlojAguwGE,Morticia fantasizes about lying in a grave next to Gomez for all eternity.\ntt0120082,fnTckzsYgg0,\"While attending a screening of Stab,\"\" a fictionalized account of the Woodsboro Murders, Maureen meets her demise at the hands of the new -- and very real -- Ghostface Killer.\"\ntt0120082,ba4niP3IwLQ,The Ghostface Killer stalks sorority girl CiCi in her sorority house.\ntt0106598,oDeQU3l-JSg,Beldar and pregnant Prymack discuss their new living arrangements until Prymack's water breaks.\ntt0120082,xdPtumdfg9c,\"After the Ghostface Killer makes an attempt on Sidney's life, she begins to suspect her boyfriend, Derek.\"\ntt0095705,J2_tJIgfnDA,Nordberg is hit with a flurry of gunfire...but that's only the beginning.\ntt0120082,EA-9nqoIXs8,\"As Sidney performs a scene from Agamemnon, she is stalked by the Ghostface Killer who is disguised as a member of the chorus.\"\ntt0120082,r9aUxfTTLfk,\"Mickey reveals his deranged master plan to Sidney, as well as his partner in crime...\"\ntt0112572,XFrerPgK0kk,\"The Brady kids have a secret meeting to come up with a way to earn $20,000 to save their home. Alice almost gets engaged.\"\ntt0120082,y8SLxD3ATw0,\"Cotton Weary makes a decision on whether to save Sidney from the hands of the insane Debbie Salt, aka Billy Loomis' mother.\"\ntt1300851,O7dHybpZ7Mc,Frank rides with the police as they attempt to put an end to St. Niklas and his reign of terror.\ntt0066011,ZPk3nEFRuZg,Jenny and Oliver have a do-it-yourself wedding.\ntt0086425,cGP9TwLnG78,Garrett asks Aurora out on a date.\ntt0102510,cEjo0ajod1M,Drebin meets with forensic expert Ted and shares his boxing knowledge.\ntt0112572,C5LuP6tDw3w,The neighbors can't understand Cindy's lisp and Dad gives Cindy advice about tattling.\ntt0273923,8hJlwQwwCGk,\"When Ashley accidentally gives some of Lance's pills to the Dean, Shaun tries his best to make the case for his acceptance.\"\ntt0238380,IBjrQR_1ef8,Brandt brings Preston before Dupont for the crime of sense offense.\ntt0091159,9EBnUERX_cU,Kazihiro berates his colleagues for spending their whole lives working.\ntt0238380,8iQKnefUJNg,Preston saves a group of resistance fighters by turning against his own men.\ntt0110622,p-echNQGbug,\"While working undercover, Frank experiences a wild prison riot.\"\ntt0238380,59ZcTCijizI,Preston interrogates Mary and watches as clerics practice the art of gun kata.\ntt0325258,IEOqAlmq2NU,\"When bullies pick on Sam at school, Dickie puts them in their place.\"\ntt0238380,uZWDke-bpmc,Preston races to save Mary as she proceeds to her execution.\ntt0238380,pPuAKVnqJdk,Preston infiltrates a criminal hideout with guns blazing.\ntt0063522,aHM8kYwl1R4,\"When a hazy Rosemary wakes to find deep scratches on her skin, Guy claims responsibility.\"\ntt0101272,gNGmuLYwd3o,Wednesday and Puggsley play in their electric chair.\ntt0077631,_ZfmXzIbHI8,\"in, heartbroken over Sandy.\"\ntt0088286,uuYTVl0iOkk,A Swedish bookstore owner arranges for Nick and Hillary to meet the resistance.\ntt0238380,TJf9Pf9rjO4,Preston finds Partridge reading a book of poetry and executes him in cold blood.\ntt0066011,qXJF21RuqlM,Oliver learns that Jenny's inability to have children is indicative of something far worse.\ntt0102510,2jvtU-_WDUw,Drebin visits Jane at home and they figure out Hapsburg's evil plan.\ntt0162650,ZzOzVT2o2BU,Shaft and his friends get chased through New York by Peoples and his henchmen with some heavy fire power.\ntt0104695,Yq5csaHc_GE,Jonas avoids arrest as Jane feeds him information about Officer Lowell's family.\ntt0106598,SbTWLdT_tgk,Beldar and Prymack help their neighbors in the suburbs.\ntt0112572,mVqKHUtKh8Y,\"Mike Brady and his wife Carol Brady have just only one week to come up with $20,000 in back taxes or their house is sold and they'll have no choice but to move. And it's up to the Brady kids to secretly raise money and save the homestead before they lose their house to their scheming neighbor Mr. Larry Dittmeyer.\"\ntt0325258,OUHFpvPxmRI,Dickie acts out a childhood moment he's never had for director Rob Reiner.\ntt0095705,foll8sDGq4M,\"With American muscle and know-how, Drebin gives the terrorists a drubbing.\"\ntt0087277,gTTHW0Hynbc,\"While at work, Ren and Willard have the great idea of hosting a dance.\"\ntt0325258,y-qFqfSjN1U,Grace pushes Dickie around in a stroller.\ntt0087277,Fyuo3Z5ZTX4,Ariel terrifies Ren with her wild side when she plays chicken with a train.\ntt0325258,GQDLVpNKFhw,Dickie crashes an Alcoholics Anonymous meeting to ask Tom Arnold a favor.\ntt0087277,4EdkUt4f5wg,Ren appeals to the Bible to defend his dance at the town meeting.\ntt0325258,N8f-APll5f8,A see-and-say game touches a nerve with Dickie.\ntt0325258,Qf9xTFEhRS0,\"Thinking the Finneys' dog killed the neighbors' rabbit, Dickie engineers a cover-up.\"\ntt0325258,BkVDaT2FTM8,Dickie talks drugs with the Finney kids; Sally puts Dickie in his place with a schoolyard rhyme.\ntt0087277,I6_C4fK94-c,Ariel and her father Reverend Moore have a heated conversation.\ntt0325258,LX_cW_dLweA,A tarantula enlivens Dickie's scary story.\ntt0082766,rr6eufh4DA4,Joan cuts Christina's hair off after she catches her mimicking her in the mirror.\ntt0082766,f0MBL-DyXaE,Joan beats little Christina in a swimming race and then rubs it in.\ntt0082766,qRAQivSrtm0,\"When Helga doesn't clean beneath the tree, Joan obsessively cleans it herself.\"\ntt0082766,5NOmw_kzrJQ,Christina demands to know the reason why Joan adopted her.\ntt0082766,PtwRKtvezd8,\"In bitter anger, Joan calls the children out into the garden to help her clear the roses.\"\ntt0082766,tUkE9qaVgmo,\"After finding a wire hanger in Christina's closet, Joan beats her with it.\"\ntt0082766,fqM1ttqNA9k,\"Christina says that she is not one of her mom's fans, which leads Joan to choke her.\"\ntt0063518,km-nbIRZJYk,Friar Laurence lectures Romeo about his disposition and tells him to be happy that Juliet is alive and well.\ntt0090555,VToA3hOd3tM,Michael explains the particulars of a crocodile attack to Sue.\ntt0063518,kikLy1L-keE,\"When Tybalt returns after killing Mercutio, Romeo fights and kills him.\"\ntt0090555,KQ6EyoqFWQM,Michael and Sue discuss food options in The Outback.\ntt0090555,GvwHxn_ziD4,\"When Michael, Sue and Walter encounter a bull in the middle of the road, Michael mentally overpowers it.\"\ntt0090555,bd165_YTXZQ,Michael disguises himself as a kangaroo and attacks some poachers.\ntt0090555,uw9V_NayRVY,\"Sue is offended when Michael tells her she wouldn't survive by herself, and takes off alone.\"\ntt0090555,_vW54lAtldI,Some street kids try to rob Michael and Sue but Michael's got a bigger knife.\ntt0090555,Ti9VcWX0vEs,\"Sue catches Michael before he boards the subway and tells him she loves him, with some help from the crowd.\"\ntt0086425,PuvONUFArdI,Emma stays strong while saying her final goodbyes to her sons and reminds them both how much she loves them.\ntt0090555,uYIe9o2jMSE,Michael has trouble initially understanding the use of a bidet.\ntt0054698,4jsUIgchHXU,\"Holly explains The Mean Reds\"\" to Fred and how she goes to Tiffany's to get rid of them.\"\ntt0071315,8G0BVEIjGyo,Jake enlightens Evelyn about her husband's death.\ntt0071315,7SZMEImptPQ,\"Jake tells a crude joke to his partners, unaware of his larger audience.\"\ntt0071315,kh0exWqvxeI,Cross questions Jake about his investigation.\ntt0071315,9y2y-Tkn7eg,Jake is caught snooping at the reservoir by Mulvihill and his blade-wielding henchman.\ntt0071315,3BB-PdHTQHg,Cross entreats Jake to locate Mulwray's mistress.\ntt0071315,X6CEEc9g9vk,Evelyn struggles in vain to shield her daughter from Cross.\ntt0071315,wnrdetFAo1o,\"Confronted by Jake, Evelyn makes a startling revelation.\"\ntt0077663,bkH0i7fGo6E,Mr. Jordan shows Joe a variety of bodies to pick from but Joe remains reluctant.\ntt0077663,35fEjN5m4ds,\"The Escort explains to Joe the rules of the afterlife and travel, but he refuses to listen.\"\ntt0077663,NMi4ONkFym8,\"When Julia freaks out by seeing that Joe is still alive, Tony covers by claiming she saw a mouse.\"\ntt0077663,KejnRkhhY14,\"Max continues to speak to Mr. Jordan who he thinks is in the room, until Joe informs him that he's not there.\"\ntt0077663,SzVAyGry2Ic,\"Joe tries to explain to Max what happened to him, but Max dismisses it and thinks he's crazy.\"\ntt0077663,nfcci0C95tA,Tony tries to calm down Julia after they discover that Joe is still alive.\ntt0077663,EHJoH9IFboo,It is revealed that The Escort made a mistake and took Joe too early.\ntt0077663,EnIL4KXQI2g,Betty finally recognizes Joe from his former life.\ntt0102517,QvfJieP0KVA,\"When Charlie can't hit the sled hard enough, Andre comes in to show him how it's done.\"\ntt0085549,kvbYXGOZHnQ,Alex puts on a show when she jumps to conclusions after seeing Nick with a blonde.\ntt0085549,2u8cHrJvlHQ,Alex and Nick spend some quality time together.\ntt0085549,f4M5MT96FwY,Alex blows up when she finds out Nick meddled with her chance at the audition.\ntt0085549,7eI5BfzRCY4,Nick gets shot down when he asks Alex to dinner.\ntt0056217,hP77V2X1Biw,\"Ransom receives a shot in the arm, but then wins the showdown with Liberty.\"\ntt0102768,OQrzt7JI_DM,\"After almost throwing up the food that Bradley prepared for him, Henry realizes that he wants Ritz crackers.\"\ntt0085549,P0GZAeKVtfg,Alex and Nick have yet another fight about her future.\ntt0110622,MTs-HKiOQj8,Tanya seduces Frank while he tries to operate undercover.\ntt0102768,UUcH7wBp3G4,\"Henry flicks paper wads at his daughter while she tries to study, and when she tells him to read his book, he tells her he can't.\"\ntt0102768,3lGZmV8_XxU,Rachel teaches her dad to read a grade school book.\ntt0167427,vSt6OezOAwg,\"Mary makes out with a tree, while a concerned nun watches.\"\ntt0056217,TbiSXYT1-SY,Tom tries to intimidate Ransom but the lawyer stands his ground.\ntt0167427,IeRLdVndLpM,\"Mary uses a made-for-TV-movie monologue in confession and loses control. At school, she fends off a slew of insults.\"\ntt0054698,7I7OErGVS68,Paul tries to stop a fiery incident at Holly's hopping party.\ntt0112572,Ts5FbF_2Wus,Mike summarizes a speech from Jan about family... and home... and family.\ntt0093748,ZKtFIgmoqoI,Del tries to sweet talk the cop who pulls over their husk of a car.\ntt0093748,FuZNswuwAxM,Neal and Del bargain with a motel clerk for a room.\ntt0101272,TZYf96eyE94,\"Morticia tells her unique spin on \"\"Hansel and Gretel\"\" to a group of children.\"\ntt0093748,nl8PQAfhi28,\"Reunited at the airport, Neal reminds Del of their previous encounter.\"\ntt0116313,x12Dai43I8Y,The gals share their stories of resentment towards their exes and devise a plan to get even.\ntt0368709,U3sOMWjM7aU,Drew and Claire finish their marathon phone call by meeting to watch the sunrise.\ntt0101272,Lp3r6mBRUXI,\"Wednesday's teacher, Ms. Firkins, talks to Morticia about Wednesday choosing her great aunt Calpurnia as her hero.\"\ntt0101272,qAhaYHHcYyk,\"After being betrayed by Uncle Fester, Morticia consoles the family by referring to an old fable.\"\ntt0071315,ppGd-2nEOVQ,\"Jake learns the awful truth about Noah Cross, but is helpless to stop him.\"\ntt0112697,BEG66-Lro7U,Cher insults her housekeeper and then bombs her driving test.\ntt0112697,xM2mL0y9i5M,Cher starts to fall for Christian in class and gives a presentation on violence in the media.\ntt0071315,7uSz0mEtEsQ,\"As Cross leaves with Evelyn's daughter, Jake is left completely disillusioned.\"\ntt0094006,VgiH-x1eRpw,Keith runs after Watts after realizing she loves him.\ntt0325258,IzYmyWR3pJs,\"Dickie runs into another former child star, Leif Garrett, who has the info on the latest Hollywood happenings.\"\ntt0325258,YzpjrMci980,Dickie meets with publishers about publishing his life story.\ntt0368709,Clr9NbvwbhA,Ellen breaks up with Drew over the phone.\ntt0368709,0rgfZzE6Ulg,\"Drew gets to know his musical cousin Jessie, who once opened for Lynyrd Skynyrd.\"\ntt0106598,tcR7LgBVTNE,Beldar and Prymack rent a room and enjoy all the foreign amenities.\ntt0087277,BnjXFpoLJfk,Reverend Moore preaches about the importance of trusting our children to do their best with what we have taught them.\ntt0087277,2lVRcI0zsvw,Ren gives an inspired speech to Reverend Moore in favor of dancing.\ntt0368709,3eJ8A1W3jqM,Drew and Claire discuss the expectations of other people.\ntt0106598,402xHwQGVsE,\"Beldar goes to the dentist to get his teeth capped, but the dentist finds surprises in Beldar's mouth.\"\ntt0106598,XkvIlrLiy9o,\"Posing as Jehovah's Witnesses, INS agents Seedling and Turnbull question the Coneheads.\"\ntt0106598,2rCTuXAbyTI,\"At breakfast, Beldar is horrified to see that his teenage daughter Connie has gotten a tattoo on her cone.\"\ntt0106598,jPsXJlylRvs,Beldar's boss finds out that he doesn't have a Social Security Number and is an illegal alien.\ntt0106598,mMRQdL_xvME,Prymack asks Beldar what he would do if she ever died and he affirms that he loves her.\ntt0106598,MXkFgmQ2O-Q,\"At the football game, the entire high school is blown away by Beldar's fireworks display.\"\ntt0067185,reJAzTE980s,\"Mrs. Chasen fills out a dating questionnaire for Harold, while he handles a revolver.\"\ntt0106598,7q-lFxf9-p8,Connie excels in diving due to her perfect conehead.\ntt0067185,WuHkE1eU2AY,Harold meets Maude at the funeral of a stranger.\ntt0067185,RU3F4QPUVQw,\"Mrs. Chasen arranges a date for Harold, but he would rather play with fire in the yard.\"\ntt0067185,QVGOUxQrISc,\"Maude gives Harold a ride, in his own hearse.\"\ntt0043014,ADl0wC_cAbk,Norma Desmond pledges to Joe that she will be a star again after watching her own silent films.\ntt0067185,mzuVsHCLSOg,\"Harold tells Maude about the first time he ever pretended to be dead, and the effect it had on his mother.\"\ntt0067185,6ooboieA_eE,Harold and Maude get pulled over by a motorcycle cop on their way to plant a tree.\ntt0067185,0ZzNlA9uZ0g,Maude breaks the news to Harold that this day will be her last.\ntt0067185,LYppdp_2GCk,Harold commits another fake suicide in front of the last date arranged by his mother.\ntt0043014,MvajGqWodvM,Norma Desmond meets Cecil B. Demille after she falsely believes that he invited her there to discuss her script.\ntt0074860,JWMjQEyfaQ8,Babe pursues Elsa from the library to her apartment in order to ask for a date.\ntt0163187,cKADfQQILN8,Ike confronts Maggie about not standing up for herself in her relationships.\ntt0074860,kzw1_2b-I7A,Szell performs dental torture on Babe to determine if it is safe.\ntt0063518,lbaWyJwff-U,Juliet discovers that Romeo has drunk poison. She kills herself with a dagger to join him in eternity.\ntt0074860,WziC9cSTCWc,Doc barely survives an attack in his hotel room in Paris.\ntt0074860,GZeehXqOYVI,Babe bargains with Janeway to find Szell.\ntt0074860,lC-DSaxzDzs,Szell returns for another round of interrogation with Babe.\ntt0074860,6nWWM8tTn84,Szell gets spotted on the streets of New York by some former victims.\ntt0074860,SNruq88Dlpg,Babe screams for help as mysterious men break into his apartment.\ntt0273923,q5BzDVDotzI,\"Shaun gets ignored by his English teacher, who has some unusual ideas about Shakespeare.\"\ntt0273923,HDq2KcdmVU8,\"Shaun, Lance and Ashley arrive at Stanford, only to find that the dean has gone home for the night.\"\ntt0091159,2Tjoz_0I4Gk,\"Hunt insults Oishi, which results in a knock-down, drag-out fight in the factory.\"\ntt0104695,SdNqYGbc0tU,\"Marva isn't fooled by the efforts of Jonas and warns him not to give false hope to her little brother, Boyd who is crippled.\"\ntt0104695,MkMqRDBKUwM,Reverend Jonas wins the trust of the townspeople as Jane feeds him personal information about them.\ntt0074860,PZGS6N3zG4o,Babe forces Szell to swallow some of his own diamonds.\ntt0104695,B6iOniIX5eA,Sheriff Will brings Jane to a butterfly field and professes his affection for her.\ntt0091159,VSo45ZD29oo,\"Hunt appears as his Japanese superiors swim in the river and promises to deliver 15,000 cars.\"\ntt0104695,Q1vQUG6GFNE,The crippled Boyd touches the statue of Jesus and walks without his canes.\ntt0104695,e6kJsyysbSM,\"Jonas hitches a ride out of town just as a rainstorm hits, ending the drought.\"\ntt0104695,NgEOTc2qgVg,\"After being denounced by the sheriff as a fraud, Jonas brings the crowd back to his side.\"\ntt0066011,P-4jKZ3X1zQ,\"After getting into a fight with Jenny, Oliver learns a lesson about love as he tries to make amends.\"\ntt0091159,hKNeFHBPgRo,\"At dinner with Hunt and his wife, Oishi gives and receives some brutal honesty.\"\ntt0275022,faaBOJDQ_Lc,\"While in the bathroom, Lucy, Mimi, and Kit discuss how cute Ben is and also the rumor that he was in jail for murder.\"\ntt0275022,z0ogqhF4ems,\"On graduation night, Henry desperately reads a list of reasons why Lucy should sleep with him.\"\ntt0091159,nYb42fv8pMU,\"In a business meeting, Hunt uses an expression that puzzles the Japanese managers.\"\ntt0066011,uvtLHXUjt_o,Oliver makes an impromptu marriage proposal to Jenny.\ntt0066011,qb4Rfj1wp0Q,\"Oliver conflicts with Jennifer at the library, but succeeds in taking her out for coffee.\"\ntt0066011,nOLCO4_AKiE,\"Jenny finally opens up to Oliver, proclaiming her love to him.\"\ntt0066011,7e6DCyXotE0,\"Jenny confronts Oliver, telling him that he must be strong for the both of them.\"\ntt0275022,ee6yIS-0NrI,\"Lucy reads Ben a poem. Then, Mimi interrupts their first kiss, having been bitten by a spider.\"\ntt0066011,Tsz_tamjpmc,\"On her deathbed, Jenny uses tough love on Oliver in order to get him to remain strong.\"\ntt0066011,hZzQx9cEjhQ,Oliver sees right through Jenny's emotional defenses.\ntt0275022,2fwZfyxiMFY,\"Lucy's father comes to Hollywood to take Lucy home. After a heartfelt talk, Lucy decides to stay in Los Angeles to live out her dream of being a singer.\"\ntt0066011,i75piQgUKa0,Oliver passes on Jenny's lesson of love to his father.\ntt0275022,euxVy9j6TTU,\"With their car broken down, Mimi and Kit get into a catfight after some name calling.\"\ntt0275022,WMIho_dolCA,\"Lucy and the gals enjoy the sunset. While camping at night, Mimi teaches Kit how to throw a punch.\"\ntt0758758,8j5sn2UyTp4,\"In the Alaskan wilderness, Chris cleans up the magic bus and carves his plan for freedom in a a block of wood.\"\ntt0332379,37oJqWp4rJM,\"Dewey teaches his students about \"\"The Man\"\" who is responsible for all the evils in the world.\"\ntt0275022,jEHoNJLqbnk,\"In their hotel room, Lucy, Kit, and Mimi share a night of partying and bonding.\"\ntt0332379,FhPUGeCMKCE,\"When Dewey poses as a substitute teacher, the principal explains the school's code of conduct.\"\ntt0332379,Ed2KRddgv-4,Dewey teaches Zack the rock guitar stance and hands out musical homework for the students to study.\ntt0101272,zIC2aMlqEZk,Gomez and Morticia express their love for each other.\ntt0332379,kdkVnZsOgJA,Dewey helps the kids get in the mood for rock by encouraging them to tell him off.\ntt0101272,fq_QSi29iGQ,\"Tully the Addams' Attorney, convinces the family to try to conjure Fester through a séance.\"\ntt0116313,AnPDhq6O8jo,Elise removes everything and anything she ever gave Bill from his office.\ntt0101272,EnrWZiqgv1E,Morticia shows Fester what it means to be an Addams.\ntt0094006,uDimGOcZ24U,Duncan and his delinquent friends crash Hardy's party and save Amanda and Keith.\ntt0046250,l-PmluGC2wk,\"When Princess Ann describes her perfect day full of ordinary things, Joe offers to be her guide.\"\ntt0094006,MgtXKQbmYRM,\"Ray tells Watts that she radiates sexual vibes, and she gives him the brush off.\"\ntt0213790,fF12SZcPQ1s,Leon hooks up with Audrey while she is dressed as Bloopie the Clown.\ntt0056217,exObFY-sHQw,\"Ransom wants to follow the law, but Tom urges him to pack a gun and settle things himself.\"\ntt0086425,3H0V4XiAyv8,Aurora is less than thrilled when Emma announces she's pregnant.\ntt0110622,akrTlYc40XE,\"Jane is overwhelmed by the amount of women with babies all around her, even in court.\"\ntt0046250,YL19Rvtea4k,\"Princess Ann can't find the words to say goodbye to Joe, and gives him a goodbye kiss instead before she leaves.\"\ntt0102768,oWBYpwZ5-AM,\"When Henry asks his maid Rosella what he used to do when he wasn't working, she tells him that he was always working.\"\ntt0110622,dAMqMErPIIY,Louise compliments Jane when she accidentally kills a lecherous trucker.\ntt0110622,8r_dXbWf2Aw,\"While pursuing Tanya Peters, Frank unknowingly signs up for a sperm donation.\"\ntt0063522,JBA3q4S1LE8,Rosemary and her husband quarrel about doctors; she feels the baby kicking.\ntt0102768,10fKN4nHNd0,Henry doesn't remember his family and would rather stay with his friends in the hospital.\ntt0056217,l1NB8NQc7wU,\"Tom sets fire to his own home then goes inside to die, but Pompey goes in to save him.\"\ntt0102768,Co2dpNsHMKo,A young thug shoots Henry when Henry accidentally interrupts a liquor store robbery.\ntt0095705,koPEnaz0Qm8,\"When its airbags deploy, Drebin's car endangers the whole neighborhood.\"\ntt0102768,rngwd6ExGmc,\"Sarah is pleasantly surprised when Henry, for the first time, isn't afraid to hold her hand in public.\"\ntt0063522,ctrJ0-TLUHQ,\"Meeting with young Dr. Hill, Rosemary recounts her ordeal with the witches.\"\ntt0110622,63lE3AOBgeA,Frank visits the lab and finds out that the paper they found was from Statesville Prison and he must go inside to catch the bomber.\ntt0398165,PsqrgV2RCCM,\"After Switowski's nose is broken by a kick-to-the-face, Crewe and Caretaker mend his nose and his feelings.\"\ntt0081283,b02H0dW2xf8,\"Conrad has a breakdown during a therapy session with his doctor, by expressing anger towards his late brother.\"\ntt0081283,IZS7zpXftHA,Doctor Berger helps Conrad understand his pain and feelings about his family's tragedy.\ntt0063518,lKTGkLcn3yY,\"As Mercutio sees that he is dying from Tybalt's wound, he curses the houses of Montague and Capulet.\"\ntt0074174,xSQxtMWJzGQ,\"The Bears stick it to the Yankees during the trophy presentation as Lupus declares \"\"wait 'til next year.\"\"\"\ntt0082766,OKn00A40uWE,Joan reacts strongly when the Pepsi executives try to retire her from the board of directors.\ntt0063518,OZLVlajiihI,Juliet wonders aloud about her new love Romeo and he appears below her balcony.\ntt0063518,O6KVfajjyGs,Romeo is heartbroken over Juliet's apparent death and drinks a vial of poison.\ntt0081696,ZMplnAKdBsA,Sissy insists on hitching a ride rather than going home with Bud. The escalating argument leads to a sudden marriage proposal in the parking lot.\ntt0116313,kflvHGnIkoA,The gals escape Morton's apartment on a scaffolding and take a thrilling ride on a window washer's lift.\ntt0273923,4SNTodFS0h4,Lance convinces Shaun that it's time to leave Stanford because the cops are after him.\ntt0046250,0SbVnjlPhjY,Princess Ann throws a tantrum over her crippling and demanding schedule.\ntt0102517,ZEbN6Vnr1g8,\"Wally amps up during his pep talk, and shows his team what real intensity is.\"\ntt0119978,S6UlqI_pZr4,Rudy urges a battered Kelly to file for divorce.\ntt0102510,7CkTYPnJS0E,Drebin accidentally disarms a bomb.\ntt0119978,14Fq0FgsKfw,\"In a jealous rage, Cliff attacks both his wife and Rudy.\"\ntt0102510,lI-ty9MfICM,Nordberg gets caught setting a bug and is dragged underneath a van and then Drebin's car.\ntt0185014,PHcwHxzDQDs,Prof. Tripp convinces James to trip with him.\ntt0110622,fsWhDcon8aQ,Frank and Rocco escape prison only to find themselves at a very unfriendly LA high school.\ntt0063522,R9WGPRckS1s,\"Rosemary is certain her neighbors are witches, but Guy is unconvinced.\"\ntt0095705,NP5IK_pn1eY,\"Drebin vaults through his apartment, searching for an intruder.\"\ntt0081283,1BkNaaNscqU,Calvin confronts his wife about their failing relationship with their living son.\ntt0095705,36T5BEpn3dA,Drebin trashes a roomful of precious collectibles.\ntt0090329,hVxEoBe1UVg,Rachel's father warns her of committing sins and being shunned by the Amish community.\ntt0081283,1KBWO9Js23k,Mother and son have a strained conversation about the past and pets.\ntt0108550,d2zY1WRtG94,Gilbert makes sure Arnie knows he will be there to protect him.\ntt0093748,nWRxPDhd3d0,Neal loses control and goes on an obscene rant to the car rental lady.\ntt0093748,dbgOACJpZg0,\"Neal and are disgusted when they meet Owen, Gus' redneck son.\"\ntt0110622,YwM7NgPE5lw,\"Frank and his men have an intense gunfight on the stairs in a parody of a scene from \"\"The Untouchables.\"\"\"\ntt0093748,Rd5dYQHoZS0,Neal Page meets the most annoying seatmate on the airplane.\ntt0259711,zhWJUB-Sub8,David angers Brian by accusing him of causing the accident with Julie.\ntt0259711,sGh6m5Ilw_Y,David is overwhelmed by Sofia's charm and wisdom.\ntt0116313,nhomGXOMYmc,The wives get revenge on their lame husbands.\ntt0273923,Qg4NBOIbwXc,\"Shaun rushes home to find a letter from Stanford, but he's confused and disappointed to find he's been rejected.\"\ntt0074174,ONRLZIY7gbs,\"Timmy Lupus makes an unexpected, sensational catch in the championship game.\"\ntt0074174,CWN1xWdKbHY,Buttermaker tries to coach his team of misfits during their first practice.\ntt0074174,dm61r3qnPKQ,Buttermaker convinces Amanda to join the team.\ntt0196229,KeX9BXnD6D4,Zoolander runs into Hansel at a club and challenges him to a walk off.\ntt0074174,Adh_8pva10k,\"To get back at his Dad, pitcher Joey Turner refuses to throw the ball and the Bears tie the game.\"\ntt0043014,jMTT0LW0M_Y,\"In this classic scene, Norma Desmond gives her final performance as she descends into madness.\"\ntt0443706,4OgldRzYvD4,Robert visits Paul who has become an alcoholic after leaving the San Francisco Chronicle.\ntt0112572,wM2NQimHkTY,\"At breakfast, the Bradys give wise parental guidance to Greg, Bobby, and Jan.\"\ntt0043014,HduXGYkoc_w,\"Joe Gillis, a struggling writer in Los Angeles, narrates the story of his own demise as the police fish his corpse from a swimming pool.\"\ntt0043014,bb_uXwPiNxc,Hours go by when Joe finally realizes that he is the only invited guest at Norma's New Year's party.\ntt0213790,vpHEQqApoAY,Lance holds the first meeting for Victims of the Smiling Ass and tells his story.\ntt0094006,rGS4bE0G3yY,Laura gossips to the family about Keith getting a date with Amanda Jones.\ntt0096061,A3xuABrdKis,Frank freaks out when he runs into the incarnation of Death at his studio.\ntt0162650,5LApVevs2II,\"Shaft gets cornered by Jack and Jimmy, but Carmen rescues him.\"\ntt0213790,mNQx3KPxifQ,\"Lance forces Leon into a wrestling match, but Leon uses a non-traditional form of wrestling to win.\"\ntt0196229,H2uHBhKTSe0,Zoolander and Hansel fail in their attempts to figure out a computer.\ntt0086425,plqzeUB9B-w,Aurora throws a fit at the nurse's station when they're late giving her daughter her pain shot.\ntt0114694,QbSFxlfuf9s,\"A resuscitated deer destroys Richard's car, wowing Tommy.\"\ntt0114694,S2XvxDaIwCw,Tommy blows a sale by dramatizing a grisly collision.\ntt0099653,cjkkKO5Gsno,Sam asks the Subway Ghost to teach him how to move objects in the realm of the living.\ntt0361411,Rs0tk-z4b2c,\"Determined to arrange some marriages for her daughters, Mrs. Bakshi orchestrates a visit from obnoxious Mr. Kohli, who is visiting from Los Angeles to find a traditional Indian wife.\"\ntt0120082,Xm-UligdIrQ,The Ghostface Killer taunts Randy from very close by...\ntt0120082,odrqxoaNPC0,\"The Ghostface Killer ambushes Sidney and her body guards, taking them all on a thrill ride.\"\ntt0120082,rWeaYCoh1qk,Randy discusses the rules of the sequel with Dewey as he lists out potential suspects.\ntt0120082,kaXM8DMSm-g,The second killer reveals herself and her underlying motives to Sidney.\ntt0120082,Mi3s2DWKiUo,The Ghostface Killer stabs Dewey right in front of Gail as she watches helplessly.\ntt0120082,XzKYNZY9Hpk,Randy and Mickey get into a discussion on the value of film sequels and whether life can imitate art.\ntt1300851,2z8XAo4Lpuw,\"Frank survives an attack by St. Niklas and his ghost army, but his friends are not as lucky.\"\ntt1300851,b_uKO3N_JJQ,A family falls victim to the murderous ghost of St. Niklas.\ntt0112817,ZtUB8XCrqPg,\"On the train ride to the town of Machine, William Blake encounters the mysterious Train Fireman who foreshadows the journey to the spiritual world.\"\ntt0238380,bcs2En6tGRw,Preston tracks down Dupont and does battle with Brandt.\ntt0112817,W-T51n6etp8,Mr. Dickinson hires three renowned killers\ntt0238380,LqQJOr4Rx5k,Dupont begs for his life when Preston beats him in a gun battle.\ntt0238380,COhtZbBhOYU,Preston and Brandt engage in some cleric practice while also playing mind games.\ntt0112817,2mmq2hx0tl0,Big George and Benmont argue over who will have the philistine William Blake.\ntt0112817,cglY-gszmNI,\"When Charlie unexpectedly catches his fiance in bed with William Blake, the inevitable shootout occurs.\"\ntt1046173,GJkn0wEMc4w,Witness the birth of both Cobra Commander and Destro.\ntt0112817,vBH4Hv39SEo,\"Sitting around the campfire cooking beans, Sally and Big George ruminate on the evil Emperor Nero Augustus, the scourge he brought upon the Christians, and whiskey.\"\ntt0112817,t2RUtqJGxlw,WIlliam Blake dispatches of two U.S. Marshalls who are on the hunt for him.\ntt0112817,wAZPdmo7LVA,Nobody eyes a vision of death written across the sleeping countenance of William Blake.\ntt0238380,4weEXyoXZKs,\"Faced with the realization that he has been tricked into destroying the resistance, Preston summons all his strength to fight back.\"\ntt0112817,lh0yfYUCkIw,\"A Trading Post Missionary refuses to sell Nobody some tobacco, until William Blake makes his presence known.\"\ntt0112817,tO1oeKVFlPk,Nobody bids William Blake farewell as he pushes the canoe out to sea.\ntt0112817,DH80L45zXJw,William Blake bravely steps into the office of Mr. Dickinson.\ntt0905372,Tb-PscLsY9I,Something terrible escapes from the block of ice.\ntt0905372,pobSophb2UE,Kate breaks the some unsettling news to the crew about\ntt0158983,fy-Ocaxlk1Y,\"Eric bets Kenny that he can't light his fart on fire, and Kenny proves him wrong but sets himself on fire.\"\ntt0905372,roA5fvzJsho,Kate holds everyone under suspicion that they might be\ntt0905372,u6GTs78NHzQ,A tense stand-off is interrupted by what the group assumes to be\ntt1462041,W-qUR8qovy8,Will tries to prove to Dee Dee that the man she saw was only her reflection.\ntt1462041,x0ce_01UW_Q,Libby questions the identity of the man\ntt1462041,WpCGV48yiNQ,Will reassures Libby that they\ntt0251127,DXSoxAHjqRg,Ben begs Andie's forgiveness and promises to do couples therapy with her.\ntt0108525,EGa3R9VvDVs,Wayne terrorizes Garth on the show by pretending to be a leprechaun.\ntt0086465,TsIQj8gZeo0,Billy reveals the truth to Louis about the Duke's bet which changed both their lives.\ntt0105793,MQEwJdhfddk,Wayne and Garth have trouble adapting to their new blue screen set.\ntt0251127,oxLuG0BYYwE,Andie shows her friends how easily she can manipulate Ben.\ntt0093010,IAsBghop-hw,Dan is shocked to find his mistress Alex having a chat with his wife.\ntt0108525,Ev0Dm5qX0bU,Wayne fights Cassandra's martial artist dad to prove himself worthy.\ntt0108525,6eWsFFQP0gA,Wayne asks for a better actor to play the gas station attendant andCharlton Heston is brought in.\ntt0097815,NfcmrwPNn7A,\"Hayes leads off the season with a hit, but then gets picked off when trying to steal second.\"\ntt0097815,nPH9cWTJgdU,\"Taylor points to the bleachers, then bunts, in order for Hayes to score the winning run.\"\ntt0322802,P0t4ruBVxSA,\"Ehren McGhehey makes a \"\"yellow snowcone\"\" by urinating on a snowcone and then eats it.\"\ntt0146316,QhDRkf_XGVw,Lara is interrupted during her evening exercises and uses her bungee cord to defeat some intruders.\ntt0080678,5pJOdrchPlo,Merrick visits the home of Treves and his wife is overcome with emotion.\ntt0080678,AqWLMW73b6Y,Wicked Mr. Bytes demands the Elephant Man back from Treves and accuses him of hypocrisy in exploiting Merrick.\ntt0049833,Id6oS3L-D9A,Moses brings the Ten Commandments from the mountain only to find his people worshipping an idol.\ntt0049833,DXjOOS4zAq4,Rameses informs Nefretiri that she will be his wife. She assures him that she will never love him.\ntt0146316,5Gc9pviBlJA,Lara Croft faces off against a training robot in an exercise designed to test her tomb raiding skills.\ntt0758758,Ui8Y0Pqlg_4,Chris spends his final moments of life reflecting on re-uniting with his parents.\ntt0758758,SY_94CSMlyE,\"Out at the bus in Alaska, Chris is inspired to re-enter society after reading Leo Tolstoy's book Family Happiness.\"\ntt1046173,kHq3y20HhRk,\"A mysterious, high-tech aircraft launches a surprise attack on Duke and his men.\"\ntt1046173,TReOE4LKcT8,G.I. Joe must chase down and stop The Baroness before her Cobra team destroys the Eiffel Tower.\ntt1046173,5ps3fGNzpd0,\"The G.I. Joe team saves Paris, but only at the expense of the Eiffel Tower.\"\ntt1046173,cg7wSv4ALRo,\"Snake Eyes bests his rival and brother-in-arms, Storm Shadow.\"\ntt1046173,XYumOva6Xr0,The G.I. Joe team escapes from the crumbling underwater Cobra base.\ntt0080339,rQbj9uvYL8I,Dr. Rumack describes the symptoms of the flight sickness as Captain Oveur experiences all of them.\ntt0080339,y_7o1pAwhDA,Striker recalls a violent bar he once visited.\ntt0080339,FNkpIDBtC2c,\"When Mrs. Hammen gets hysterical, a line of passengers intervene.\"\ntt0092644,3SLoG8B0HTg,The abusive Chief Lutz finally gets his just desserts.\ntt0092644,Qse_uMLvdwI,Axel faces off with Dent and is saved by Taggart.\ntt0092644,36IxAWko46A,\"During the final shootout, Billy lives his fantasy of being a tough street cop.\"\ntt0115641,EbxlqGXQeEM,\"After a visit to the Capitol, Beavis freaks out about not scoring with the chick they were looking for.\"\ntt0115641,yDq42VIYVnc,Beavis and Butthead try to escape a moving vehicle.\ntt0115641,Y_SP86WfXZ0,\"Muddy contracts with Beavis and Butthead to kill his wife, but they misunderstand him.\"\ntt0054698,YQdnuL6YRBc,Holly leads Paul in some illicit activity at a local store.\ntt0092644,UBU2McO7-GY,Axel meets Karla Fry and destroys the virtual shooting gallery.\ntt0497116,1KkrlhoFbBM,Al Gore demonstrates how many cities will be under water if Greenland melts.\ntt0054698,SykyfXBJgNg,Fred offers to repay a favor and buy Holly a gift at Tiffany's with all of the money in his pocket - ten dollars.\ntt0497116,9tkDK2mZlOo,\"Al Gore uses a chart that goes back 650,000 years to compare today's drastic rise in carbon dioxide levels.\"\ntt0497116,OqVyRa1iuMc,A cartoon demonstration of the effects of greenhouse gases on earth.\ntt0116191,NH6x4IDEGKU,\"As Harriet decides to get over Mr. Elton, she destroys a treasured memento: a strip of gauze.\"\ntt0457510,p43EnAUd3-w,\"After his robe burns off, Nacho is revealed as a wrestler.\"\ntt0457510,lc0UIhNuudQ,\"When Nacho gives up wrestling, Esqueleto admits that he hates all orphans.\"\ntt0457510,tkRvLFdrbTU,Nacho wrestles a hungry man for tortilla chips and convinces him to become his wrestling partner.\ntt0118113,r96GiSht1uQ,\"Amelia and Andrew flirt and reminisce about their relationship, while Laura watches forlornly from the window.\"\ntt0118113,tTc26ZemSGY,Laura's attempt at love making turns contentious when she gets freaked out by Frank's mole.\ntt0457510,nTOUiTegqrA,Esqueleto listens to the song Nacho wroteâin his mindâabout Sister EncarnaciÃ³n while he was in the wilderness.\ntt0457510,hHWcoaM_59E,Sister Encarnacion and Nacho get to know each other better.\ntt0457510,AMQgbNK7fGs,Nacho is put on the spot and forced to make up a song at the party in honor of Ramses.\ntt0457510,ME2mnzfCdug,Nacho and Esqueleto fight against the beastly midget wrestling team.\ntt0457510,EPweJNJOQz8,Sister Encarnación reads a letter from Nacho explaining where's he's been and what could've been between them.\ntt0457510,aoXg7SSmGyk,Nacho discourages the orphans from wrestling and denies that he's ever wrestled.\ntt0457510,h7wEE6Yx7IQ,Chancho discovers Nacho putting on his wrestling costume; Esqueleto gets baptized.\ntt0099371,JHkM4OUkF8E,\"With just two laps to go, Harry tells Cole to ignore his earlier advice and go to the outside on turn four.\"\ntt0099371,HOldh4ePgnA,Cole experiences his first major crash while trying to pass Rowdy Burns.\ntt0099371,ISs3m1aHZxY,\"The truck gets pulled over, but when a female officer gets frisky with Cole, it turns out to be a prank.\"\ntt0099371,Z9mzzABiQUo,\"When Russ Wheeler wins a race with some dirty tricks, Cole decides to get some on-track revenge.\"\ntt0099371,0SSgv8t0QbM,\"When Dr. Lewicki examines Cole and determines that he's fully recovered, Cole decides to make his move.\"\ntt0099371,guQnnPJgtUo,\"Cole meets Dr. Lewicki, but he thinks Harry is playing another trick on him.\"\ntt0126886,0MoJuaS5x14,Mr. McAllister realizes that he has to stop Tracy Flick from winning the election so he loses two votes.\ntt0099371,e77ybggTHHg,Cole is running last in the Daytona 500 when another crash threatens to take him out of the race for good.\ntt0086960,lKE3zh_Hxqw,Axel gets an unpleasant welcome from Taggart.\ntt0099371,G45X6fSk1do,\"In the closing laps of the Daytona 500, Cole drafts Wheeler and passes him on the inside for the win.\"\ntt0086960,JVZwoLZgrRs,\"Axel is tossed through a window, then arrested for disturbing the peace.\"\ntt0086960,Ad5ZJcmYc_k,\"Axel, Taggart and Rosewood are greeted with machine-gun fire at Maitland's mansion.\"\ntt0086960,2dYyyQdjgLI,\"Axel stalks Maitland through the house, resulting in a final standoff.\"\ntt0086960,HmNJ03s2ZuM,Axel cons his way into an exclusive club by posing as Maitland's lover.\ntt0086960,UTIjIC00VwI,Axel makes a scene at the Beverly Palms Hotel to convince the manager to give him a room.\ntt0086960,GHZWWFmaFcI,\"Axel meets Serge, a flamboyant Beverly Hills art gallery clerk.\"\ntt0086960,ycoe7us5bbM,Axel poses as a custom inspector to get what he needs.\ntt0086960,8w_naC0saGI,Axel mocks the second team of detectives that come to see what he's up to.\ntt0086960,6y-pdLyZPJ8,Axel stops the detectives following him with a couple of well-placed bananas.\ntt0105112,KnhDO1G0ieY,Ryan's family is endangered when a terrorist group targets the British minister for Northern Ireland.\ntt0105112,tB9_C5zQLZw,Ryan turns the tables on a would-be assassin.\ntt0105112,QiuXl1cPfrU,\"When book dealer Dennis begs to join an outgoing raid, he's silenced by Miller.\"\ntt0105112,t8loKEw-wlA,\"At CIA headquarters, Ryan watches an assault mission via satellite.\"\ntt0105112,krqNvqvhvp0,\"When terrorists infiltrate the Ryans' home, Cathy must protect her young daughter.\"\ntt0126886,yisFmY4OAbs,McAllister tries to teach Paul about Democracy with fruit.\ntt0126886,6u3GAQgZpww,Tracy angrily explains that she's not upset at all that rich kid Paul decided to run against her in the election.\ntt0105112,Nj7HiMh778M,\"As terrorists breach the basement, Ryan manages to escape with his allies and family.\"\ntt0126886,eh3TXsx8B40,Tammy gives her election speech before the student body and pumps everyone up with her passionate apathy.\ntt0126886,0eJpmeoLXLg,\"Tracy, Tammy, and Paul say very different prayers to God the night before the election.\"\ntt0105112,kvAByCIqoOM,Ryan and Miller grapple to the death aboard a flaming boat.\ntt0126886,OYt6asKb5bw,Mr. McAllister sees Tracy Flick one last time in Washington and chucks a shake at her car.\ntt0105793,nV9U23YXgiY,Wayne impresses Cassandra by speaking Cantonese while his ex tries to get his attention.\ntt0105793,FPc4QZqz4ek,Wayne and Garth hang out by the airport and discuss their friendship.\ntt0105793,CW0Yfk66UxE,Wayne introduces himself and his dreams for his cable access television show.\ntt0105793,KjB6r-HDDI0,Wayne and Garth explain to Benjamin that they are not in it for the money.\ntt0092099,KPxDoFbsvWA,Maverick and Goose have a close encounter with an enemy MiG.\ntt0092099,vdHBsWXaHN8,\"Ignoring both Goose and the controllers, Maverick zooms past the tower.\"\ntt0092099,wUZxSf_P2r0,\"Maverick boasts about his run-in with a MiG, leaving the class and its instructor skeptical.\"\ntt0105793,WK--S8kuxOI,Wayne interviews Mr. Vanderhoff on the show but surprises his producers with some very special note cards.\ntt0092099,o1nS19OOD-U,Viper tells Maverick the truth about his father's death in combat; Maverick considers his future.\ntt0092099,fC976fuQm4E,\"Maverick abandons his wingman to chase Viper, his senior instructor.\"\ntt0092099,uvFc0EPRSI4,Maverick outmaneuvers and shoots down a hostile MiG.\ntt0119081,GSSXEGoO53Y,D.J. tells Captain Miller he believes a message has been sent to them from Hell.\ntt0119081,rF6a1GG1taY,\"An evil Dr. Weir blows a hole in the ship, creating a devastating vacuum.\"\ntt0119081,rAchA32z2zM,Captain Miller confronts a mutilated and deranged Dr. Weir.\ntt0119081,9JHi4K9XfzM,Dr. Weir has a nightmare about his deceased wife as he emerges from a 57-day stasis.\ntt0119081,EHKfoWh8t6o,Justin enters the ship's core and is sucked into black liquid matter.\ntt0119081,-nzW1T89qH4,\"The ship resurrects a demonic Dr. Weir, but Captain Miller sacrifices himself to blow them both up.\"\ntt0119081,W8AmENQ7_ik,Captain Miller and Peters confess that they've been experiencing what Dr. Weir claims are hallucinations.\ntt0119081,giiuqTdBSTc,Dr. Weir threatens to return the spaceship and all onboard to the evil dimension.\ntt0119081,3LEa0FN1bf8,Crew members rescue a seemingly possessed Justin from the core.\ntt0251127,Mg7RrLU3Uq8,\"Andie tries naming Ben's \"\"member,\"\" but he has something a little more masculine in mind.\"\ntt0251127,HcHdy_Vc1DY,Andie shows Ben a fictitious family album of what she thinks they're future children would look like.\ntt0251127,z3dwJ734jbE,Andie nearly gags when Ben presents her with his home-cooked meat.\ntt0094898,cHUML0EZ1BQ,Akeem gets some advice about American women from Randy Watson his local barber.\ntt0094898,a_Txm9dQuhM,Prince Akeem and Semmi check out their new apartment.\ntt0094898,dI7M4Om2ITw,\"Akeem chats up Mr. McDowell about the New York Giants \"\"most ripping victory.\"\"\"\ntt0094898,m7z0sOBPx3g,Akeem decides to talk to Lisa McDowell while she's trying to work.\ntt0094898,Md0LvQ9gANc,\"Semmi writes a telegram to Zamunda, but the Telegraph Lady finds it very curious.\"\ntt0108525,zHjeOiB-cxY,Wayne and Garth scout the location for Waynestock on a dark rainy night and find a problem of Jurassic proportion.\ntt0108525,9vvMKxDvAt8,Wayne and Garth meet a partial ocular albino who stands between them and a permit for their concert.\ntt0094898,ExG7Ut6DJ1E,Akeem and Semmi go to a beauty pageant to pick out a bride for Hakeem. Or at least that's what Semmi thinks.\ntt0094898,f2ygGoHSuPQ,\"Akeem spars with Semmi both physically, and verbally, about their views on having a wife.\"\ntt0094898,sZywE0AT1qY,The old men in the barber shop argue about boxing.\ntt0158983,bOR38552MJA,A South Park P.T.A. meeting turns into a song and dance blaming Canada for their children's misbehavior.\ntt0108525,_E62a_RCtX4,\"Because of a dream, Wayne and Garth visit Del to convince him to help with Waynestock.\"\ntt0162661,g9vPtCW9pJ8,Baltus tells the tale of how the Hessian Horseman was killed with his own sword.\ntt0108525,rhtLoA3X21s,\"Del sets forth his plan for the rock concert, which includes cyanide capsules in the event of capture.\"\ntt0158983,6wJXBUfcIOE,\"Mr. Mackey teaches the kids how to \"\"get back in touch\"\" through song and dance.\"\ntt0158983,4WcOcgc3WN4,\"Canada argues with America over the release of Terrance and Phillip and all America can do is laugh about \"\"aboot.\"\"\"\ntt0083511,xbga181nm84,Reggie and Jack catch Luther and ask him a few questions... The hard way.\ntt0158983,1DNyLD2SRjA,Terrance and Phillip appear on Conan only to find that they have been setup for arrest via the M.A.C.\ntt0158983,kTk2jXiuo9s,\"Satan tries to break up with Saddam, and Saddam tries to convince him otherwise.\"\ntt0083511,HrvHeKH9kLg,\"Reggie demands a nice dinner and Jack obliges, by providing a candy bar.\"\ntt0094898,IZQFJ6hZNJc,Akeem and Semmi take action when a robber tries to hold up the McDowell's where they work.\ntt0093010,Yg3w_8_fwIc,Dan plays dead in the park and Alex scares him back.\ntt0094898,ACV4Krf8JTQ,\"King Jaffe Joffer pays a visit to Akeem's apartment in Queens, and catches Semmi off guard.\"\ntt0083511,7msu2ugXGW8,Reggie bets Jack that he can go into a redneck bar and get some information about where Ganz is.\ntt0038650,s_CwatXdxUA,\"George wishes that he'd never been born, so Clarence gives him his wish.\"\ntt0093010,sJ9nOmRn6fg,\"When Dan says goodbye to Alex, he soon realizes that she has slit her wrists.\"\ntt0093010,fBaXUdPo_2g,Dan has dinner with Alex and she asks him what he's doing with her if he is married.\ntt0083511,kvzIRuIg288,Reggie has an entire bar full of rednecks thinking he's a cop. So he decides to have a little fun while he gets what he wants to know.\ntt0093010,SZ5YPfWeYzA,Alex surprises Dan by announcing that she's pregnant...and she doesn't want an abortion.\ntt0083511,wsSlB31dwiE,Jack wants to beat the truth out of Reggie about what's really going on between him and Ganz.\ntt0083511,ALGW3PA12XE,Jack and Reggie finally catch up with Ganz aboard a speeding bus. They chase him down in the Caddy.\ntt0093010,JS6Gw6NVgRg,Dan defies Alex's requests and threatens to kill her if she tells his wife about their affair.\ntt0083511,FWEQfN39sTo,Jack and Reggie corner Ganz in an alley.\ntt0083511,28C0A4CEUsc,Reggie shakes down some rednecks to get information on the whereabouts of Billy Bear.\ntt0093010,ecWhXP2jM28,Beth comes home to find an unpleasant surprise on the stove.\ntt0093010,hd521kE7f0A,\"Dan tries to drown the crazed, knife-wielding Alex in the bathtub, but Beth saves the day in the end.\"\ntt0112573,pKEwvDFqMGw,William tries to save his newlywed wife Murron from an Englishman intent on raping her.\ntt0112573,gr_OpFxCx-A,William delivers a powerful speech while trying to rally his countrymen to war.\ntt0112573,ETcMNeJTfOs,William attempts to romance and impress Murron.\ntt0112573,PD5Imb7vWSc,William leads his men in battle with a cunning move that withstands the charging horsemen.\ntt0112573,QJVsS-vIDdc,The Scotsmen completely decimate the English in this battle.\ntt0162661,RN7YPq8i4w0,The Headless Horseman emerges from the Tree of the Dead.\ntt0112573,1KdjUNIcP8k,\"After Mornay has a nightmare about William coming for revenge, he awakes to experience exactly that.\"\ntt0112573,sa8E_rZcXho,Princess Isabelle admits her love for William and they spend a passionate night together.\ntt0162661,X3mBsrFYwjk,Ichabod has a bloody face to face with the Horseman which ends badly for Van Brunt.\ntt0038650,2rha-6qG4OQ,During a dance party the floor splits in half revealing a giant pool underneath which some guests fall into by accident and others jump right in.\ntt0162661,2k0mUKGYUQE,Ichabod investigates the newest murder with a group of townsfolk.\ntt0162661,31Q9JbHAzjA,Ichabod thinks it's silly for Magistrate Philipse to believe in the Horseman... until he comes and kills him.\ntt0112573,kTXlnI1XaSY,\"Princess Isabelle begs William to swear allegiance to England, but his honor will not allow him to.\"\ntt0162661,EcOENbnXxQ4,\"Ichabod, Katrina, and Young Masbath come across the \"\"Tree of the Dead.\"\"\"\ntt0112573,i6zGEBhJMHA,\"Moments before being beheaded, William screams his last word to the onlooking crowd, \"\"freedom.\"\"\"\ntt0038650,9fIrXo0raaU,Clarence reveals to George that he is his guardian angel.\ntt0162661,SI1K-_VTFrQ,Ichabod gets his first terrifying glimpse of who he thinks is the Horseman.\ntt0038650,TNQ76UyurLA,\"Clarence tells George what's really happening to him, but George doesn't believe it.\"\ntt0162661,ShQp2Qp6o7s,The entire Killian family become the next victims on the Horseman's list.\ntt0107211,ttIN2nLcy6s,John encourages Diana during a high-stakes game of craps.\ntt0038650,X4xJLbsa4PQ,George goes home only to find it empty. Then the police arrive and Bert tries to arrest Clarence.\ntt0038650,6SLDMMGzkyI,George finds that his wife Mary is an old maid working at the library.\ntt0038650,u56OqFjs1dg,\"George breaks down and prays to God to let him live again, and his wish is granted.\"\ntt0162661,dIUK_wn5If4,\"Ichabod, Katrina, and Masbath are pursued by the Headless Horsemen.\"\ntt0107211,4WNfrd5hsdI,A jealous David goes through Diana's wallet and asks her if she's still in contact with John.\ntt0162661,TSaU7qATRHM,The Horseman finds a way to get to Baltus without having to enter the church.\ntt0107211,wJCqOhdzatA,\"When two screenwriters overhear Jeremy negotiating a controversial deal with David on the phone, they hire him.\"\ntt0038650,OfUV-F9jFro,\"George learns a valuable lesson, that no man is a failure who has friends.\"\ntt0107211,5rivvvWeYh4,David speaks with Diane about the choices they made as a couple and the consequences that followed.\ntt0107211,ehdAEyAGBEc,John offers David $1 million for one night with his wife Diana.\ntt0107211,mklRbf1JoGY,John tells Diana a story from his youth about the girl who got away.\ntt0064116,j6gLJ4_sfG8,\"Frank tracks down Harmonica, who's waiting for him, to find out once and for all what he's really after.\"\ntt0107211,gQubL9r0qAQ,John predicts that Diana will enjoy herself and reassures her that nothing will happen that she doesn't choose.\ntt0107211,pHxvNgorTQA,Diana and David come together on the pier and find their love again at the place where it all began.\ntt0092007,zZH3OD9d9Sc,Bones has some serious qualms with Kirk's crazy plan to save the world.\ntt0073802,l7-rpI0RrQU,A baffled Turner tries talking through the conspiracy with Kathy.\ntt0158983,sNJmfuEWR8w,The boys sing a song about what Brian Boitano would do about saving Terrance and Philip.\ntt0158983,Jo4XXm8OUP4,Satan sings a song about being able to live above ground on Earth.\ntt0158983,26oRZCLHR1M,\"Dr. Vosknocker introduces the V-chip to the parents of South Park, demonstrating how it works on Cartman.\"\ntt0073802,LaIsEAR_R5Y,Kathy helps Turner kidnap J. Higgins.\ntt0073802,0u0P8j4vLyw,\"Turner confronts J. Higgins, and gets little consolation in return.\"\ntt0073802,RRJ1EPuYkZQ,Turner gets some dark advice from G. Joubert.\ntt0073802,KJ4q3cWQPsM,\"Because of his constant state of danger, Kathy is afraid of getting too close to Turner.\"\ntt0073802,Iaqusi3cAAc,\"Turner gets ambushed by a fake delivery man, and shoots and kills him after a difficult battle.\"\ntt0073802,9w3E3eFMsLg,\"Turner confronts Higgins about the murder of seven innocent people, and the consequences of political games.\"\ntt0073802,8yDjtE3wmFs,Kathy and Turner share an intimate moment on the street together.\ntt0073802,QQJDkZZaA00,\"Turner calls for help after witnessing a mass murder, but ends up getting a lot of questions from headquarters.\"\ntt0086465,vkkM9YAJ-Ts,\"Billy breaks a $35,000 vase only to make the Duke's $15,000 on the insurance claim.\"\ntt0086465,KKzWTwJwrGc,\"Louis is let out of jail, but his girlfriend is disgusted by his shabby appearance and his hooker admirer.\"\ntt0076666,WUuTs5CXP3U,\"When Tony meets Stephanie and tries to flirt with her, he quickly realizes she's not an easy conquest.\"\ntt0086465,uI4fVgVVpiw,Billy educates the Duke Brothers on the real reason for price decline on pork bellies during the Christmas season.\ntt0076666,Wl_vyjME-ug,\"Tony is proud to announce that he received a raise at his job, but his father disparages the amount.\"\ntt0086465,9B3TN2rEckQ,Billy enjoys a nice meal with the Duke Brothers while a rain soaked Louis peers through the window.\ntt0080678,V5ej5BJ55us,Treves questions Bytes about Merrick's injuries.\ntt0076666,Cvl0iKbdV6A,The dance floor is cleared as Tony and Stephanie work their disco moves.\ntt0086465,DKtjBqJ4NxA,\"Billy gets busted by the cops for pan-handling in disguise as a blind, crippled Vietnam War veteran.\"\ntt0076666,se9hqOIp810,\"Tony, Annette and Joey are nervous when Bobby goofs off on the bridge...and slips.\"\ntt0080678,gADayU4DP9U,\"Bytes spins a wild yarn about the origin of the Elephant Man, but Treves is moved to tears by the deformed man.\"\ntt0086465,wjkdynBFHuQ,Billy discovers the true nature of Mortimer and Randolph Duke.\ntt0080678,PT-2kB0dajE,Treves and Mothershead discuss Merrick's visitors and the dignity he deserves.\ntt0083511,ZdN6HbD0paY,Jack gets Reggie released from jail in order to find Ganz.\ntt0251127,W2Q27LruEnA,Andie completely embarrasses Ben at his guy's poker night.\ntt0251127,9PpBLxJLihI,\"At a vegetarian restaurant, Andie pulls off a diversion to sneak back and watch the Knicks basketball game.\"\ntt0251127,AkOcZ0S8vDg,Andie embarrasses Ben by visiting him at work and bringing their new dog.\ntt0251127,nVhrWyZtYFk,Ben catches up to Andie and convinces her to stay with him.\ntt0251127,BiQ0NRRraIc,\"After the truth about her article is revealed, Ben dumps Andie.\"\ntt0038650,uAERYfeiYBc,George regales Mary with all of his dreams for the future.\ntt0105112,AKOtvcIssZk,\"Jack Ryan tries to warn his wife to get off the freeway, but Miller makes her have a serious accident.\"\ntt0105112,7mtTvR0Rg_8,Jack Ryan threatens Paddy O'Neil for hurting his family.\ntt0092099,9s-a1vp4LLk,Iceman and Maverick are reconciled and Maverick decides to become a Top Gun instructor.\ntt0086465,jLo7tHDHgOc,Louis has a hard time pawning his Swiss sports watch.\ntt0092007,TVOIig2xLq8,Commander Chekov is confused by his FBI interrogator and decides to make a run for it.\ntt0086465,Od4nSd9AVH8,Louis eats his Christmas dinner on the bus and tries to commit suicide.\ntt0092007,02Or-Hx3yqc,Bones is disgusted by primitive medicine while trying to smuggle Chekov out of the hospital.\ntt0092099,p890hIa1w9k,Viper likes Maverick's arrogance.\ntt0108525,8aXqgoiVb8E,\"In a radio interview, Wayne and Garth poke fun at the host, Handsome Dan.\"\ntt0108525,52FdiECWnhQ,Garth makes a love connection with Honey Hornee at the laundromat.\ntt0108525,gXQhdB1y674,\"Wayne and Garth play a joke on the drive thru guy, but it backfires.\"\ntt0105793,4m2WutlqBk0,Wayne and Garth discuss Cassandra and Bugs Bunny's sex appeal.\ntt0109444,W4xO0k9LcIU,A training operation tests a Rainbow Six operative's skills. The sniper manages to best them without being detected.\ntt0105793,8Qi3JERmk9E,Garth plays a wicked drum solo at the Guitar Store.\ntt0105793,74M0hPAeFHs,Cassandra professes her love for Wayne.\ntt0105793,o5FT3IGXtAk,Wayne and Garth make it backstage to hang with their idol Alice Cooper.\ntt0099371,AGk2Hr3GcS8,Cole Trickle blows everyone away on his first ride around the track.\ntt0109444,dKsDjpKr2Mk,Director of Intelligence Jack Ryan squares off with Robert Ritter regarding the authorization of a covert operation.\ntt0109444,i7tGEEWQIhQ,Jack Ryan accuses U.S. President Bennett of orchestrating a cover-up that cost American lives.\ntt0109444,HppKwvQMZ4M,Admiral James Greer reminds Jack Ryan of his sworn oath to stand up for the people of the United States.\ntt0109444,ZJlmYy-mAZY,\"Jack Ryan is riding in his motorcade when he notices a suspicious biker. Moments later, his caravan is ambushed from all sides.\"\ntt0088286,61AWnIZrT5g,Agent Cedric arrives at the hotel in the scrap-metal remains of his vehicle.\ntt0126886,jA0RnDQiFbQ,Mr. McAllister and Tracy threaten each other with the dirt they have on each other.\ntt0109444,5XP3MonWebI,The United States executes a covert operation to bomb the household of a known Colombian drug cartel family.\ntt0109444,T7pci4SIGCo,Benjamin Bratt and Raymond Cruz discover a secret cocaine bunker and detonate it.\ntt0109444,PqtjbWJPIgQ,Jack Ryan tries to rent a helicopter for his pilot.\ntt0126886,J07_XVy9Hns,\"Paul angers his sister Tammy by dating Lisa, so she decides to disrupt his campaign.\"\ntt0109444,0668UNhYjXg,Jack Ryan breaks into Robert Ritter's computer and unfolds a massive government cover-up.\ntt0126886,wPSEC3PpLuM,Mr. McAllister is forced to resign over his tampering with the student election.\ntt0097815,RH3I-IE0Xhw,\"The team plays a prank on Willie Mays Hays, and while he impresses everyone with his running, his hitting leaves much to be desired.\"\ntt0097815,bBaNdHqC_Yo,\"Vaughn makes a good impression with his arm, if not his wardrobe.\"\ntt0097815,g_wc9JvTXGc,\"Vaughn makes his major league debut on the mound, and immediately earns the nickname of \"\"Wild Thing.\"\"\"\ntt0097815,rBsvuoQMmuo,The Cleveland Indians struggle to overcome their problems during spring training.\ntt0097815,XDZ_lSJjgvk,\"Brown reveals a cardboard cut-out of Rachel, motivating the guys to win, and the team films a television commercial.\"\ntt0097815,yBBKcecvEcM,\"With Ross out with an injury, Vaughn is one out away from his first victory, so the Cleveland fans start a two-man wave.\"\ntt0097815,kL4cEH2JdQQ,\"Brown gives a speech to the team on opening day, informing everyone that they're expected to come in dead last.\"\ntt0322802,jMaeuWl4qHM,\"Johnny Knoxville, dressed as an elderly man, goes bonkers shoplifting in a convenient store.\"\ntt0322802,hGOHE1zqEmY,An x-ray on Ryan Dunn reveals a toy car stuck in his rectum.\ntt0097815,Pdjgdb-OxY8,Vaughn learns some tricks of the pitching trade from veteran Harris.\ntt0322802,LWWG1eKmylY,Steve-O attempts to cross over an alligator pit on a tightrope with raw meat hanging out of his jock strap.\ntt0322802,7C1Pr4AU2wc,Johnny Knoxville takes out an airhorn on a golf course to disrupt golfers' swings.\ntt0322802,Drva4gp66lc,April Margera is terrified when she comes home to find an alligator in the kitchen.\ntt0322802,t_lvc5iBnNg,Johnny Knoxville attempts to ride down a rail on a skateboard.\ntt0322802,sSHxFSaOV-o,Steve-O vomits at a sushi bar after snorting wasabi.\ntt0322802,ezj13E-cX9I,Johnny Knoxville places bottle rockets on his rollerblades.\ntt0080678,JxRj80eLkMc,Merrick proves to Mr. Gomm and Treves that he can communicate.\ntt0080678,f783E8Zi8Q4,\"Merrick enjoys tea with members of London society, but they are very uncomfortable by his appearance.\"\ntt0080678,uqg7Ow4SNk8,\"As Merrick tries to leave the train station, he is pursued by children and men who are frightened by his appearance.\"\ntt0080678,qj_NSmG9m5E,\"In a late night epiphany, Treves realizes that he has more in common with the wicked Mr. Bytes than he supposed.\"\ntt0146316,pBNKarJukms,Lara takes a shower and rejects the fancy attire picked out for her by Hillary.\ntt0080678,niFndjwElIY,Mr. Gomm is pleased to give John Merrick a permanent home at London Hospital.\ntt0146316,h1-T9LYq1hI,Lara gets no help from the men as she tries to defeat a giant six-armed statue.\ntt0146316,nzjEYhUtRGc,\"Relying on Bryce for surveillance, Lara takes out a number of henchman, but not before they get what they came for.\"\ntt0146316,_fJArvSVqEo,\"By completing the triangle, Lara is able to travel through time and speak with her father one last time.\"\ntt0146316,2Wlur8mxYP0,\"Lara, Manfred and Alex must work together to defeat an army of statues come to life.\"\ntt0146316,fGkSjNHEecA,Lara and Alex race to find the remaining piece of the triangle as the solar eclipse approaches.\ntt0049833,4cJs-f3NC6s,\"Moses is arrested and brought before Sethi. Moses claims he is not the deliverer, but would free the slaves if he could.\"\ntt0146316,tnhW2iYL25k,\"Manfred produces a pocket watch that belonged to Lara's father, so Lara stays behind to finish him off.\"\ntt0049833,92ygYJw9CSE,\"After the Pharaoh declares all newborn Hebrew males be killed, Yochabel hides baby Moses in a basket and sends him down the Nile.\"\ntt0049833,zUm6rC0o7Po,\"Moses is summoned up Mount Sinai and hears the voice of God through the burning bush, instructing him to return to Egypt and free the Hebrews.\"\ntt0049833,MnBarCQ9BE4,\"Much to the dismay of Bithiah, Moses confronts Yochabel asking if he's her real son. She first denies a son who can worship an idol, but her maternal love caves in.\"\ntt0049833,QrRTUOebEpU,\"Rameses exiles Moses to the desert, which is to be his new \"\"kingdom.\"\"\"\ntt0049833,ahkwQhQZWG8,\"Moses goes to the court of the Pharaoh demanding he let his people go. Moses turns his sceptre into a serpent, which swallows the serpents of the Pharaoh.\"\ntt0758758,xRtjf4AE2-4,Jan has a heart-to-heart talk with Chris about her own runaway son. Chris spends a day with Tracy.\ntt0049833,OqCTq3EeDcY,Moses parts the Red Sea for the Hebrews to escape the Egyptians' pursuit.\ntt0049833,OYeox3LLQ08,Moses besets Egypt with a plague that turns the Nile River into blood.\ntt0758758,I70sIrfz0_c,\"Chris realizes too late that he's eaten poisonous berries. He falls into a weakened, emaciated state.\"\ntt0758758,NL4WWmwdV6g,\"After staring at him longingly, Tracy introduces herself to Chris in the R.V. park.\"\ntt0758758,dZbWmnVOhbA,\"Spurred on by Rainey, Chris overcomes his fear of water by swimming in the sea with Jan.\"\ntt0076666,VdlxHA_WLn4,Tony's brother Frank Jr. returns home and announces that he's leaving the priesthood.\ntt0758758,AhAHDaOGHFI,Old man Ron is inspired to run up a hill to join Chris at the top.\ntt0758758,1U_GoiFy6kw,Ron drops Chris off before he starts his Alaskan adventure and has a heartfelt goodbye plea.\ntt0076666,GSruhwZsc9c,The Manero family argues over dinner and discusses Frank's ongoing unemployment.\ntt0076666,mzZgTmwmkfo,\"Stephanie agres to be Tony's dance partner, but nothing more, because he's a low-class kid who isn't going anywhere in life.\"\ntt0064116,lyuwBW9lNa8,Harmonica gets dropped off at the train station with three assassins including Stony waiting for him. All three are gunned down by Harmonica in a shootout.\ntt0076666,vyQHWSbBCcQ,Tony and his buddies drive their car into the Barracuda's club to avenge their friend Gus.\ntt0064116,_ptjc9Vono4,Frank and his henchmen murder Brett McBain and his three children.\ntt0076666,vrf1MjmWFRY,Tony confronts Stephanie about her relationship with a man she used to work with.\ntt0064116,_kD54-q1uFM,Harmonica has a flashback to the death of his older brother at the hands of a younger Frank.\ntt0064116,VtPoKS5cCL8,\"As Jill fetches water at the well, Harmonica guns down two assassins. Cheyenne appreciates Harmonica's skill with a gun.\"\ntt0064116,9vUcfymkjNY,Frank kills some of Morton's hired assassins in the street after being tipped off by Harmonica.\ntt0064116,ftmRf0AY8Co,Frank seduces Jill while holding her captive.\ntt1046173,_JZ7U3FsOJ4,\"The Baroness and Storm Shadow steal an advanced weapons prototype from the G.I. Joe team, leaving chaos in their wake.\"\ntt0064116,98wG4OA6iLw,Harmonica gets his long waited vengeance by killing Frank in a showdown.\ntt1046173,iNUv6pnKd5s,It takes G.I. Joe teamwork to bring down The Baroness' armored SUV.\ntt1046173,SW2HRaFUXV4,\"The G.I. Joe team makes their explosive entrance, saving Duke in the nick of time.\"\ntt1046173,k-Rg51azVlg,\"Piloting the Night Raven, Ripcord shoots down a deadly missile, saving Washington D.C.\"\ntt0080339,g0j2dVuhr6s,\"When a flight attendant struggles to understand her jive-talking passengers, a friendly old lady steps in.\"\ntt0080339,vkdH0nuDWX4,Randy despairs that she'll never be married and Striker doubts his ability to land the plane.\ntt0080339,a5QBuJla5do,Striker tries his best to land the plane despite little help from everyone around him.\ntt0120770,Bpw7M2Heuk0,\"Steve and Doug love their mother, but have some conflicts with their father.\"\ntt0080339,AZ2EPeq1TK0,Two dueling loudspeaker announcers get territorial.\ntt0120770,6LOwktvZlCc,Emily tries to hook up with Steve.\ntt0080339,n2A194yTWoQ,A boy riles co-pilot Kareem Abdul-Jabbar while Captain Oveur reveals a dark side.\ntt0080339,NfDUkR3DOFw,\"As the plane taxis to the runway, there is confusion among the pilots due to their names.\"\ntt0120770,gMBEqbV0mw4,Steve explains to his father why he has trouble communicating with Doug.\ntt0120770,1nLc8ZZUKCg,Steve makes some serious faux pas at his wedding.\ntt0120770,ncDQvy5GoK8,Emily gets really turned on when talking to Steve about career goals.\ntt0120770,Ls9p2CEVQMo,\"Doug and Steve ask the girls out again, but the Butabis are rejected when the girls realize that they are not rich.\"\ntt0120770,s6pAWtuEIR8,\"Emily asks Steve to make a toast to their wedding, but Steve gets increasingly nervous about his impending wedding.\"\ntt0118771,nGSrqmJr1Y0,\"Jeff breaks free from duct tape bonds, stabs Earl in the neck and ties him up.\"\ntt0092644,Oq3cGgqbWG8,Axel convinces Inspector Todd to give him more money for his undercover operation.\ntt0092644,5AsYaSut428,Axel turns the tables on Carlotta after he recognizes him from the cigarette bust in 1984.\ntt0092644,wXf_eaQcSdM,Axel tricks Sidney Bernstein into leaving his office so he can snoop through his computer.\ntt0115641,MdQC-DD9fz4,\"Beavis chats with an old lady about the \"\"slots\"\" in Las Vegas, which he interprets as \"\"sluts.\"\"\"\ntt0092644,JCnZaM2qKYE,\"Axel cons Lutz into thinking that he is \"\"Johnny Wishbone\"\" a psychic from the island of St. Croix.\"\ntt0115641,fqtFUIQ7oWA,Beavis and Butthead dream they are giants destroying the city.\ntt0115641,XvVhKYmr8cE,Mr. Van tries to inspire Beavis and Butthead into seeing a world beyond TV.\ntt0084434,goikm-zX9r8,Zack carries Paula out of the factory.\ntt0084434,6lGs-tXWpR4,The Sergeant makes life hard for new recruit Sid Worley.\ntt0084434,vuuTS_WNw5w,\"Zack is ridiculed by his new sergeant, who also uncovers his tattoo.\"\ntt0084434,nXJxxahiC3A,Sergeant Foley tries to break down Zack by badmouthing him and bringing up his past.\ntt0084434,aU-Qp-5TsB4,Zack calls Betty out on her lies and deceit.\ntt0094744,6Q2rF2uAH6g,Pee-Wee and Vance tinker in their greenhouse.\ntt0094744,MCkKihQrNA4,Pee-Wee gets frustrated waiting for his turn at the store and upsets Cock.\ntt0084434,6g2JN2PrHJg,Zack pleads with his sergeant to let him stay in the only place he's got... the military.\ntt0054698,uirBWk-qd9A,Fred hears Holly singing on the fire escape below his apartment and goes out to listen.\ntt0094744,DWoQcfvV1Zw,The entire cast of circus folk sing a song about finding love under the big top.\ntt0094744,iTiWC8GpOgM,Pee-Wee and Winnie have a picnic.\ntt0094744,AwgrZd_BjtE,The girls go wild for Pee-Wee when his disguise fails as he tries to leave his show undercover.\ntt0094744,_3K4VtyM3xg,Pee-Wee and Gina share a really long kiss. Winnie catches them.\ntt0115641,kWoC8yYqPJk,\"Beavis and Butthead meet Dallas, the wife they are supposed to kill.\"\ntt0094744,aSUmLsp97mE,Pee-Wee is entranced when introduces to Gina by Mace.\ntt0115641,knL5zY1LRqw,\"Butthead meets Chelsea Clinton at the White House and Beavis wreaks havoc as \"\"Cornholio.\"\"\"\ntt0092644,NXG6CKgSNdc,Axel pretends he is delivering an explosive package to finagle himself into the Beverly Hills Shooting Club.\ntt0115641,eN4fDGHpf_c,\"As Beavis and Butthead die in the desert, their sorry lives flash before their eyes.\"\ntt0115641,YkjmtfQVzWU,\"President Clinton appoints Beavis and Butthead to the Bureau of Alcohol, Tobacco and Firearms.\"\ntt0118771,o4Dly22Kcfs,\"When Earl pulls a rifle on Jeff, he escapes by driving into the river.\"\ntt0118771,fRCKKlTNxt8,\"Jeff finds the trucker who gave his wife a ride. But when he forces Red to pull over, Red claims to have never met them.\"\ntt0118771,0lInUr7VgCM,Jeff finally turns the tables on Earl. Amy finishes him off.\ntt0118771,ZlFSjq7eU4Y,\"The Sheriff pulls Jeff over. Earl breaks free and shoots the Sheriff, but the Sheriff shoots him back.\"\ntt0092644,r-zlkOg6_Zw,Axel makes a thug rap before Rosewood knocks him senseless.\ntt0118771,2YNlWDv95EY,Jeff pulls a gun on Red and his family in their kitchen.\ntt0054698,rVFi-yeTe5g,\"When Holly and Fred can't afford anything at Tiffany's, the salesman offers to engrave something.\"\ntt0054698,fL4j9mZfUdg,Holly is reunited with her cat and Paul.\ntt0118771,npwnO-yPp8g,\"Jeff rescues Amy from the freezer, and locks up Red and his family.\"\ntt0054698,PMVqjEj9eKI,Holly explains to Doc that he creates a difficult road of heartache for himself because of his love for wild things.\ntt0118771,aMBtKhTlQHk,\"Jeff and Amy hit the road, but getting away from Red and the gang proves to be difficult.\"\ntt0497116,NXMarwAusY4,Al Gore explains how vulnerable the earth's atmosphere is and how we're capable of changing its composition.\ntt0054698,L_TvaJulWx0,\"After Holly tosses the cat out in the rain, Fred stops the taxi and is brutally honest with her before leaving.\"\ntt0497116,xtyieNg18O0,Al Gore explains how Professor Roger Revelle used weather balloons to measure carbon dioxide in the atmosphere.\ntt0497116,yRLCUdWuyng,Al Gore demonstrates how global warming has contributed to the re-emergence of old diseases and has also created new strains.\ntt0497116,FzQ0GeLVLhk,Al Gore shows how the U.S. is by far the largest contributor to global warming.\ntt0497116,6hFxG-8I0Go,\"Al Gore demonstrates how rapidly the glaciers are melting as an effect of global warming, and how this will eventually lead to water shortage.\"\ntt0497116,Lzx24hw_K5I,Al Gore reflects on how the Hurricane Katrina disaster was predicted by scientists and essentially ignored.\ntt0112697,Yf7MT1p1VNI,Cher debates immigration policy with Amber by using a garden party anecdote.\ntt0497116,vTFuGHWTIqI,Al Gore demonstrates how the ocean absorbs the sun rays and subsequently melts the ice caps.\ntt0112697,TDrGHP9Z8vw,Cher explains to her classmates and Ms. Stoeger why their school's physical education department is a disgrace.\ntt0112697,m8-_aJ1BiFE,Travis gives an impromptu acceptance speech for achieving the most tardies in Mr. Hall's class.\ntt0112697,QPzZIJ-4Cq4,Cher and Dionne talk on their cell phones while walking down the hall; Cher tells about her mother.\ntt0112697,0_ArO8UCfyk,Josh asks Cher how she feels about him and they share a kiss.\ntt0112697,iuL2loyB1bk,Murray and Dionne help explain why Christian didn't seal the deal with Cher.\ntt0091159,h9jsnAD4aNw,The autoworkers balk when their new Japanese bosses attempt to lead a session of jumping jacks.\ntt0112697,lW2JBJSaXUI,\"During driving practice, Dionne accidentally takes Murray and Cher on the freeway.\"\ntt0091159,Om3C1EpHLGs,\"Insisting the cars built together represent something pretty great,\"\" Hunt attempts to drive off in one.\"\ntt0091159,HzAzwbkW7tw,Hunt and Buster come to blows in a supermarket over their Japanese management.\ntt0119215,mqkqDSAIaBY,Ed dreams of hamburgers that talk and fly with him.\ntt0091159,KlWlhyX6rb0,\"Invoking a high-school basketball game, Hunt delivers a rousing speech to the autoworkers.\"\ntt0119215,4PXcUkIkulo,Ed asks Monique out for the cowardly Dexter.\ntt0119215,jzasSSMjsxY,Dexter makes Ed swear never to tell anyone the secrets of his famous sauce.\ntt0119215,4t8bAQ-cGZM,Three Mondo Burger employees stop by to rub in the demise of Good Burger.\ntt0119215,umIEp9WZI9E,Ed foils an angry customer who asked for no toppings on his hamburger.\ntt0104695,dvmqIBOExp8,Jonas tells Boyd he needs to help himself and not rely on God.\ntt0119215,sRk8Aentzic,Ed explains his brilliant plan to foil Mondo Burger.\ntt0119215,dXj2MnkN2nA,Ed is overwhelmed by a particularly complicated order.\ntt0119215,EwSSmKP7ADQ,Ed talks to a dog and finds out there is something wrong with Mondo Burger's meat.\ntt0275022,JlaTtF1rdVo,The girls dig up their childhood time capsule and argue when a pregnant Mimi says she's going to an audition in California.\ntt0104695,lAlJRP1W_rU,Jonas has an angry chat with his Maker.\ntt0104695,vWNDQxvY3iU,Jonas tells an inspiring story about faith in God at his tent meeting.\ntt0116313,esHt1mAYF-g,\"Elise, Annie and Brenda have a battle of the insults and finish it off with a slap-off.\"\ntt0091790,t8HQInlblys,Blane asks Andie to the prom and she answers with a passionate kiss.\ntt0119215,SOBvUyimDo0,\"Ed says goodbye, though no one is leaving.\"\ntt0368709,jrf263yJwic,Claire helps Drew accept his failure.\ntt0091790,uBf-pbxHb7Y,Iona describes her passionate kiss with Duckie to Andie.\ntt0368709,C2pUVmGEEeM,Drew convinces Claire that she deserves a better man and kisses her.\ntt0368709,inrI2qvps58,Phil shows Drew the massive repercussions caused by his failed product.\ntt0368709,87idpAngKc0,Drew has a very complicated and stressful three-way call.\ntt0492619,v8c2XZdCS_A,Fred tries to convince a babe to join his Tae Kwon Do class by showing off a trophy and dissing Ju-Jitsu.\ntt0368709,o1SrrJNjIh8,Hollie tells a humorous story about her late husband's friend Bob.\ntt0492619,pYI0bXZVZek,Fred turns down Suzie's request for a reconciliation and urinates on his wedding ring.\ntt0368709,uCV1-C_0vC8,Drew and Claire talk about the meaning of names.\ntt0087277,lHtMdj1rZks,Ariel comes on to a hesitant Ren and asks him if he wants to kiss her.\ntt0088286,ySEkuf94my4,\"On a train into East Germany, Nick does some landscape painting, practices German and meets his authoritarian hosts.\"\ntt0088286,KSZwlMDSOvY,Nick and Hillary acknowledge the silliness of their story.\ntt0088286,qjhh_5PMBZs,Nick's execution is called off just in time.\ntt0088286,vPB2g1y2VFk,Agent Cedric receives instructions from a blind party-tricks vendor.\ntt0096061,Je4QCA5KCuc,Frank fires Loudermilk even though it's Christmas. He gives everyone on his list a bath towel or VCR.\ntt0063518,-NkNYd_ku_8,Romeo romances Juliet at her family's masquerade ball.\ntt0096061,gprLI38JwQ0,\"Television executive Frank Cross berates his employees for what he feels is a totally sucky \"\"Scrooge\"\" promo.\"\ntt0167427,-RBjiJto4hc,\"Mary wins the St. Monica High talent show and rubs it in to her nemesis, Evian\"\ntt0332379,4QagAGmJcnE,Ms. Mullins tells Dewey how the pressure at school has turned her into a nasty person.\ntt0096061,Ak1dPU8uXiE,Frank is beaten up by the kindly Ghost of Christmas Present to get his attention.\ntt0096061,mvmAa1cYZK4,\"Frank shows his team what kind of \"\"Scrooge\"\" promo he would create, involving terrorists, murder and nuclear explosions.\"\ntt0096061,Vc_4eoSHwK8,\"Frank receives an unsettling visit from the ghost of his old boss, Lew Hayward.\"\ntt0088286,-MEOfLvOuas,The Torch lays out the strategy for the rescue mission.\ntt0259711,GeOcsY8foxI,David is terrified when he wakes up and finds Julie in bed with him claiming to be Sofia.\ntt0162650,iVoG7CivnH0,Walter meets Peoples while he stays the night in jail.\ntt0108550,yjlZPv-37h0,Arnie disrupts Ken Carver's funeral when he gets excited about Burger Barn.\ntt0088286,MfRi-a8hPh0,Nick and the Torch duke it out in an undersea saloon.\ntt0185014,OWYSE2bKbNo,\"When Dr. Gaskell's dog Poe attacks Prof. Tripp, James thinks his only option is to shoot him.\"\ntt0332379,6UV_5HvpmgY,\"Dewey lets the kids in on his secret \"\"Rock Band\"\" project, which will test their hearts, brains and minds.\"\ntt0332379,_xiz8CnP1-0,\"Dewey sets up a new schedule to teach the students about music that \"\"rocks\"\".\"\ntt0259711,5ut37zda30I,\"Sofia offers to help a disfigured David, but warns him that she can easily fall out of love with him.\"\ntt0259711,5gMuofAdW6A,Sofia and David flirt in her kitchen and exchange nicknames.\ntt0443706,p2esJ_ypn7Y,\"Following an anonymous lead, Robert goes down into the basement of Bob Vaughn's house.\"\ntt0332379,ctTSLWXE58o,Dewey tells the Battle of The Bands director that his students are terminally ill so he'll let them play in the competition.\ntt0081696,Ustq_iSIqgQ,\"Uncle Bob provides some wisdom to Bob about pride, forgiveness, and love. Later, there is an explosion at the plant.\"\ntt0094006,K4czoAgsH-0,Watts tells Keith that they need to spend less time with each other.\ntt0116313,lD1XDCbhtn0,Dr. Leslie Rosen wants Annie to let it all out and hit her.\ntt0116313,aPrURpNEtkg,\"The gals have an alcohol-soaked conversation about love, beauty and youth over lunch.\"\ntt0094006,YTds2jCQHKA,\"Keith embarrasses Hardy at a party, and Amanda puts in her two cents as well.\"\ntt0119978,oQAY2uslGuI,Rudy receives a tongue-lashing from Judge Hale for appearing in court without a license.\ntt0119978,TpOPvupzWow,\"Rudy attempts to conduct his deposition, but the opposing counsel makes it difficult.\"\ntt0119978,NXvcleOF798,\"After screening a video statement from his client's dead son, Rudy appeals to the jury to \"\"do what's right.\"\"\"\ntt0102517,Eyh5RlXHBLU,\"Ed, sick in the hospital, asks Wally to coach the team for him in his absence.\"\ntt0119978,p-Kyr2Ibq3c,\"Rudy gets a late-night phone call from Deck, who crows about a piece of good news.\"\ntt0063374,c9xahfssbQg,Oscar and the guys speculate on what kind of harm Felix may do to himself while locked in the bathroom.\ntt0110622,_ZJUuDLqjzU,Frank has a standoff with Rocco at the Oscars ceremony.\ntt0063374,GtV5-2QXj9Y,Oscar goads Felix into throwing and breaking a cup which causes Felix to hurt his arm.\ntt0101272,Mw0IakmQri0,\"Gomez and the fake Uncle Fester dance the \"\"Dance of Brotherly Love.\"\"\"\ntt0063374,g-Yufp_dafk,Oscar intentionally steps on the vacuum cord to mess with Felix.\ntt0063374,f_5nHV8FJyI,Felix uses a special technique to clean out his sinuses in a crowded restaurant while Oscar looks on.\ntt0090329,hdW1BlDtcyU,Schaeffer is forced to surrender when the Amish men come to Book's rescue.\ntt0398165,E4s5mJQr94E,\"After football practice, Ms. Tucker and the girls\"\" perform their newest cheer for Paul.\"\ntt0090329,J215p0P-ieA,A young Amish boy witnesses a murder in the bathroom.\ntt0259711,_TRUBZVUg8k,\"Brian has a near death experience, but David's life flashes before his eyes.\"\ntt0090329,TDoj_T5cYhE,Book finds a creative way to kill one of the dirty cops.\ntt0086425,ltwRv-C1EFQ,\"Aurora comes back from a date with Garrett offended and disgusted, but there's still something about him...\"\ntt0167427,WsPcC5TGxlA,Father Ritley gives a warning about venereal disease. Mary gives her backup dancers a pep talk before their performance at the talent show.\ntt0372588,iKqGXeX9LhQ,\"After getting really drunk, Gary stumbles down an alley where he nearly drowns in his own vomit.\"\ntt0112572,Qf8im5NX7JE,\"Jealous Jan dreams of cutting off Marsha's hair, but it all backfires.\"\ntt0046250,I3Mg_5wqewU,\"Princess Ann wakes up confused in Joe's apartment, wearing his pajamas.\"\ntt0196229,NQ-8IuUkJJc,Mugatu presents a model for the Center For Kids Who Can't Read Good to Zoolander who is horrified at the size.\ntt0443706,fh1Y30QwRGE,\"Toschi brushes Paul aside, angered by his meddling in the case.\"\ntt0372588,TmoeZHnOJKA,Gary joins Team America as they leave on their mission to police the world.\ntt0091790,nxHTPahkN6M,Andie has a fight with her father about her mother leaving.\ntt0091790,17dU___xcdA,Duckie gets thrown into the girls' bathroom where he complains about the inequalities between boys and girls.\ntt0116313,noq0Lb6lVEI,The gals sneak into Morton's apartment and panic when Gunilla warns them to escape upon his return.\ntt0196229,Wv_JTjYYaQI,\"Derek and Hansel define the Earth To\"\" phrase to Matilda.\"\ntt0091790,hA0OlCQLC0Q,Duckie stands up for Andie and fights Steff\ntt0213790,w-DFg1aS_2E,\"When the V.S.A. attempt to separate Leon from his manhood, he explains why he did the things he did.\"\ntt0213790,itdD328hLuQ,Leon and Julie visit various radio stations to have them sample Leon's demo tape.\ntt0086425,NIrF-rsXWJM,\"An inebriated Garrett takes Aurora on a drive on the beach, and later gets busted for feeling her up.\"\ntt0082766,7n1uwzYOBa0,Christina stands up to Joan after she lies about why she had to leave school to a reporter.\ntt0086425,YYSAcTkd5B8,Garrett breaks things off with Aurora when things start to get too serious between them.\ntt0213790,-wSYsQS2-NU,Lance teaches the group to subdue their defeatist attitude.\ntt0086425,GxQPnTqPeVM,\"Emma is convinced that her husband Flap is having an affair, but he assures her that she's just being paranoid.\"\ntt0086425,oCDk1jDXZnM,Garrett convinces an uptight Aurora to have a drink on their date.\ntt0119978,hDH1ilg9NMU,Miss Birdie instructs Rudy to leave her estate to a televangelist.\ntt0162650,JO-L1PjLp5M,\"When Walter is granted bail, Shaft shows his displeasure by throwing his badge at the judge.\"\ntt0108550,yRess0-DpRk,Becky explains the peculiar mating habits of the praying mantis to Gilbert.\ntt0108550,vKLbd6LeUv8,Gilbert apologizes to Becky for Arnie dropping her groceries.\ntt0492619,_c97olSX4hE,Mike McAlister makes a guest appearance at Tae Kwon Do class and has a talk with Julio and Henry before a road trip.\ntt0046250,3lz4BuydE-Y,Princess Ann and Joe share an intimate moment in front of the crowd as she states her favorite Italian city.\ntt0095705,73ZsDdK0sTI,\"Posing as an opera tenor, Drebin butchers the national anthem.\"\ntt0046250,6af1dAc9rXo,\"Joe tricks a frightened Princess Ann into believing his hand was eaten off by a statue called \"\"The Mouth of Truth.\"\"\"\ntt0162650,VdG34y8kUyc,Things get a little rough when Shaft puts Walter Wade Jr. in jail overnight.\ntt0372588,QQOWp3tLb2s,\"While Sean Penn sics some \"\"panthers\"\" on Joe and Sarah, Gary confronts the evil Susan Sarandon.\"\ntt0185014,q5rs99ZpXCM,\"While trying to save Prof. Tripp from Vernon, Terry destroys Prof. Tripp's script.\"\ntt0185014,9DLcDirhBAk,Prof. Tripp confesses his affair with Dean Gaskell to James.\ntt0185014,I8PLjzTzy08,Hannah tells Prof. Tripp that she read his script and suggests that he write while sober.\ntt0162650,xCnFME3JqIk,Shaft and Peoples go toe to toe in a final showdown at the docks.\ntt0102510,O6DFHh2XxLk,Dr. Meinheimer's wheelchair goes haywire and takes flight.\ntt0185014,JBGkwf707Ls,\"When James mentions that he sleeps at the bus station, Prof. Tripp decides to take him under his care.\"\ntt0073802,TYEvhdLuW-U,Turner confronts Leonard and reaches an epiphany on his own about oil.\ntt0102510,rJWLdQ9vylA,Drebin interrogates a series of almost dead guys who seem quite helpful in leading him to Hapsburg.\ntt0185014,AlV_R7v4DFI,James shows off his knowledge of movie suicides.\ntt0102510,Njwqb3iGNto,Drebin has a final showdown with Hapsburg.\ntt0102510,GUwhnO-nTLo,Hocken tries to cheer up Drebin when things go bad with Jane.\ntt0102510,Nz1NJ3fhso0,\"While Hector Savage gives his demands to the Captain, Frank crashes through in the police tank.\"\ntt0102510,wG6wio8azyE,Drebin runs into Jane again and has some very strange thoughts.\ntt0185014,rJodsSNioXY,Prof. Tripp finally knows where he wants to go and he has someone to help him get there.\ntt0056217,TDMdoNM-pBU,Ransom gives some ill-received legal advice to the marshal.\ntt0056217,U49MXakb7f4,\"Tom calls Ransom a persistent cuss when he sees his \"\"attorney-at-law\"\" sign.\"\ntt0095705,pdE83FX-Mto,\"Forgetting he's miked up, Drebin broadcasts his bathroom noises to a press conference.\"\ntt0095705,nTh9qpzhunE,Drebin trades bribes with a dock worker.\ntt0102768,FuE5BaM0BdM,Henry tries to make up for his dishonest legal past by giving up some crucial evidence to the other party.\ntt0056217,363ZAmQEA84,Maxwell rips up Ransom's story and throws it in the furnace before delivering a potent message about The West.\ntt0163187,pJ6XiEEJndw,Ike rehearses his version of an authentic marriage proposal to Maggie.\ntt0095705,tippFPLwGgI,A gathering of nefarious world leaders plots to strike the United States.\ntt0095705,5cU6TxpG_p4,Drebin commandeers a driving-school vehicle with an unflappable instructor.\ntt0090329,AcEe0LbP2wY,Mr. Lapp gives Samuel a lecture on guns and violence.\ntt0063374,IT3BdhTyVXs,Oscar shares his spoiled food with the guys as they play a game of cards.\ntt0063374,NXqs_wYohxM,\"Felix cleans the room and Oscar destroys the room, in this quiet battle of wills.\"\ntt0063374,7VO2NcQl2-g,Oscar finally breaks down after Felix's unrelenting cleaning habits get the best of their friendship.\ntt0063522,P10AWBi4-y8,Roman invites Rosemary to rock her baby.\ntt0063374,MfeSSw69cC4,Oscar and Felix get in a heated argument about the cleanliness in the apartment.\ntt0063522,4l1Yek0Z1FQ,\"Dining with Rosemary and Guy, Hutch relates the vile history of their new apartment.\"\ntt0063522,1BRteOP9UL8,Rosemary wakes from a dream of motherhood to find that her husband has arrived to reclaim her.\ntt0081283,EcxB2iCU3w8,Beth is uncomfortable and hesitant to have a picture taken with her son Conrad.\ntt0108550,Yf_toKBYCl4,The Grape family has to deal with one of Arnie's episodes.\ntt0081283,yOpsJ8dh5L4,Jeannine ask Conrad about his suicide attempt.\ntt0063522,kye191FZmeU,Rosemary refuses to believe that her newborn is dead.\ntt0074174,Oc2xTMnIwrI,Amanda is heartbroken when Buttermaker refuses to have her around for company.\ntt0081283,2_SfD5cdrnw,\"Calvin comes to a realization about his life, his wife, and their life together.\"\ntt0108550,Kf-JPkSfjug,Gilbert comes home and has a conversation with his mom about not leaving again.\ntt0101272,eBxVWEnuSC0,The impostor Uncle Fester is distressed by dinner with the Addams family.\ntt0093748,_akwHYMdbsM,Del almost kills Neal by driving down the wrong side of the highway.\ntt0108550,I5kkwmOapss,Becky tries to get Arnie and Gilbert to let loose by going for a dip.\ntt0110622,3XeLFSaoyAk,A dream sequence illuminates the words that Frank writes in a letter to Jane from prison.\ntt0093748,S9RbwDvpqD4,\"As their rental car burns up, Neal realizes that it was rented on his credit card.\"\ntt0074174,K2qNJ7IzzqE,Coach Buttermaker realizes he's gone too far after he yells at the team.\ntt0116313,ML1_2lHFftE,Annie learns that her husband is divorcing her for her therapist.\ntt0332379,vbF4qz_-PCM,Dewey teaches his class what it means to have a hangover and tears up their class rules.\ntt0091790,l6uaxfye2Ig,Andie really hurts Duckie by going out with Blane.\ntt0332379,4KJD4aP90YQ,Dewey shows Ms. Mullins how he uses music to teach the kids.\ntt0091790,8l7LGK2hnQw,Andie asks Blane to admit that he is ashamed of her.\ntt0259711,4mdd9P7Tn6I,David faces his last fear and chooses to live.\ntt0259711,7xohWvO9i4c,A hysterical Julie fights with David and runs her car off a bridge.\ntt0090329,LmdcbtSwX6Q,\"As Samuel wanders the police station, he finds a picture of the murderer.\"\ntt0259711,7xVN8Q0OIbo,David freaks out his friends when he shows up with a prosthetic mask.\ntt0090329,o07ecRzkLuM,John Book takes care of a creep who bullies the Amish.\ntt0090329,9GxFab5uMPc,John Book has his first experience with work on the Lapp farm.\ntt0074174,R9goLghpPBg,Tanner comes to Lupus' defense when he is picked on by a bully.\ntt0090329,nS0fxM7sCHs,\"After much consideration, Rachel runs to John Book and kisses him passionately.\"\ntt0074174,74Y7PD_uBe8,Buttermaker passes out athletic cups and Kelly joins the team.\ntt0112572,2v-VkDiUm0Y,\"Marsha gets hit in the face with a football, ruining her life forever.\"\ntt0297884,pq9dj2Q6edw,Filippo and Philippa flee to the countryside and discover that they share the same birthday.\ntt0492619,LBO6A4kU5Vo,Fred catches his wife cheating with Chuck 'The Truck' in his house and challenges him to a fight.\ntt0443706,TbI7_iOYJvg,\"The Zodiac killer strikes again in Napa Valley, attacking a couple picnicking by the lake.\"\ntt0443706,DSuUJ-Scbeg,\"Toschi, Armstrong, and Mulanax interrogate Zodiac suspect Arthur Leigh Allen.\"\ntt0443706,eDhJ-xXsbHc,\"When her car breaks down, Kathleen Johns and her baby are picked up by the Zodiac Killer.\"\ntt0443706,WJlOBTLg4xw,Toschi and Armstrong search Arthur Leigh Allen's mobile home.\ntt0443706,RiTXscx2pJY,The Zodiac killer calls into Melvin Belli on television.\ntt0443706,W91BHqxJIRg,\"After years of investigating the Zodiac killer, Robert and Inspector Toschi come to the realization that it was Arthur Leigh Allen all along.\"\ntt0163187,tz56LhvDFho,\"In discovering that Ike is a reporter, Peggy and Maggie dye his hair with crazy colors.\"\ntt0112572,EIz94vt-Opo,Marsha kisses Charlie with a little tongue and something suddenly comes up.\ntt0372588,DxTFwXcsctE,\"Team America battles the evil film actors including Samuel L. Jackson, Tim Robbins, Helen Hunt, and Matt Damon.\"\ntt0163187,uqMxfPMxW78,Ex-fiance Gill is heartbroken when he discovers that Maggie's rose tattoo was a stick on.\ntt0112572,vb2GzRckU9s,Jan is convinced to return home by a friendly truck driver.\ntt0108065,QNVWY5jUIbc,Master chess player Bruce tries to get prodigy Josh to visualize his strategy before he acts.\ntt0163187,sM3PgyGpO7Q,Maggie and Ike romantically kiss during the wedding rehearsal in front of the groom.\ntt0163187,qYbwQoq9XfI,\"As friends and family roast Maggie at the luau party, Ike comes to her defense.\"\ntt0108065,7JISgsyVgUA,Josh beats an expert at a chess club.\ntt0163187,TY04QewafKc,\"About to get married to Ike, Maggie bolts from the wedding once again...this time in a FedEx truck.\"\ntt0372588,HIPljGWGNt4,\"Terrorists plan to detonate a bomb in the middle of Paris, until Team America arrives and saves the day.\"\ntt0163187,iZLnEfsXttE,\"In a role reversal, Maggie is the one proposing to Ike.\"\ntt0372588,u7tXpBrpecA,\"After Lisa makes Gary promise her that he will never die, the make love in every way imaginable.\"\ntt0372588,U8XrE0FSQv4,\"After Gary is held hostage by terrorists, Team America races to rescue him while also managing to destroy Egypt.\"\ntt0372588,DIlG9aSMCpg,\"In order to infiltrate the terrorists, Gary dresses like a terrorist and speaks their \"\"language.\"\"\"\ntt0372588,UEaKX9YYHiQ,Kim Jong Il sings about how lonely it is to be an evil dictator.\ntt0046250,qalHjNdHFJc,\"Joe informs his boss, Mr. Hennessy, that he doesn't have the Princess exclusive.\"\ntt0492619,jpPCVq8UmX4,Simmons gets his students ready for the Tae Kwon Do demonstration and attempts to break some blocks with his elbow.\ntt0372588,32iCWzpDpKs,\"In his inspiring speech to world leaders, Gary compares Team America, Kim Jong Il and the Film Actor's Guild to various body orifices.\"\ntt0492619,iJKhynhnPyU,The Simmons host a dinner party for their new neighbors. Fred leads the table in saying grace.\ntt0492619,w9-IJEaGhRg,\"Fred antagonizes his apprentice, Julio, while eating pizza, after dropping a board during a demonstration.\"\ntt0492619,SgO2khv_SDY,Fred beats up on Lil' Stevie Fisher in class with all the mothers watching on in horror.\ntt0492619,_Er9cXkqWEs,Fred and the gang start a fight at Chuck The Truck's party.\ntt0492619,KY_G2f2R1Tg,\"Fred's coaching tip of \"\"no holds barred\"\" leads to a student beating up an old woman.\"\ntt0063518,MH9ZK7vSBYY,\"At the Capulet masquerade ball, Romeo falls in love with Juliet at first sight.\"\ntt0112572,N_HE8beijHA,\"Dittmeyer insults Cindy for her lisp, but gets electrocuted with a loose wire.\"\ntt0046250,Udhn4vCPZ7A,Princess Ann gets a short haircut while exploring Rome.\ntt0273923,NrE3t6Pgps0,\"Shaun tracks down his hero, writer Marcus Skinner, who gives him some priceless advice and encouragement.\"\ntt0096061,5FgtVXFRyTQ,Frank watches a scene from his childhood where his father gives him veal for Christmas and chews him out for making excuses.\ntt0063518,hwWsAUpr9eM,Romeo asks Juliet for her love's vow and she responds that it is already his.\ntt0096061,lPe61El1_3E,\"Frank chews out his actors in the \"\"Scrooge\"\" special and has an emotional breakdown.\"\ntt0167427,CblvDFObgNA,Mary decides to audition for the talent contest and fantasizes about being a Hollywood star.\ntt0096061,K0zvX6AGd7Q,\"Frank hops in a cab, but realizes that the driver is the Ghost of Christmas Past who takes him on a wild ride back to his childhood.\"\ntt0096061,3kX6rf9uw7w,Frank takes over his broadcast to give an inspiring speech about what he's learned about the miracle of Christmas.\ntt0167427,sZTRUAFCzF4,Mary fights Evian because Evian won't let her sign up for the audition.\ntt0167427,XXLpjT6qjCg,\"Sky breaks up with Evian, which gives Mary the motivation to make a move on Sky.\"\ntt0167427,l2K4Fw-pmLw,Father Ritley asks Mary to look back at her life and she describes it with a made-for-TV-movie monologue. Her grandma drags the father with her wheelchair.\ntt0167427,akyfR8zcmIo,Mary examines her breasts in a mirror. Mary's version of Jesus appears to her.\ntt0167427,ThzCQZyzCkg,\"Evian tries to get Sky back, but he assures her that he's done with her and she should move on.\"\ntt0273923,jzEhVsME8p4,\"Shaun complains to his college counselor, only to discover that she sent in the wrong transcript.\"\ntt0273923,DnwnDFr9kOs,Shaun pleads with his mother to just be normal for one hour so he can impress someone from the Stanford admissions board.\ntt0273923,hQEej75JeUQ,\"Shaun tries to project an image of normalcy for the Stanford admissions board member, but his family ruins it.\"\ntt0273923,Q5wdXytgRLI,\"Shaun returns to the dean's office to find that Lance has burned the building down, and Lance gets nervous during an interview with a firefighter.\"\ntt0196229,3zavgk2_BJs,Zoolander attempts to copy the underwear removal move performed by Hansel.\ntt0196229,tUaOBgXp_Pg,\"Zoolander gets a vigorous massage from Olga, as Matilda follows up on an anonymous tip.\"\ntt0196229,AU0NLheu8mU,\"Zoolander visits his family in coal mining country, but his father mocks his modeling career and rejects him.\"\ntt0196229,EMTbkfgT_jc,\"Zoolander wonders if there's more to life than modeling, while his roommates argue for the importance of their work.\"\ntt0046250,sP9ufyH-Pdg,\"Joe brings Princess Ann home to stay with him, but he doesn't know who she really is.\"\ntt0196229,gx9O6q0pDAU,\"Mugatu threatens to kill the Malaysian Prime Minister himself, so Zoolander debuts his new look to save the day.\"\ntt0196229,EUvgqItrt1c,Former hand model Prewitt explains to Zoolander and Matlida the vast conspiracy involving models and assassinations.\ntt0094608,NRQifnaioeM,Attorney Kathryn Murphy prepares Sarah for the condescending questions she will be asked on the stand.\ntt0094608,sEXIC0OaQSU,\"Sarah confronts her attorney, Kathryn for consenting to a reckless endangerment charge.\"\ntt0046250,ExVWQ_I-elI,Princess Ann takes off on a scooter for a reckless drive through Rome.\ntt0094608,kf8NklFXAd4,\"One of Sarah's rapists, Scorpion harasses her in a parking lot.\"\ntt0094608,CFstDwSYjkc,Kathryn presents the option to Sarah of taking the rape spectators to trial.\ntt0094608,w0NWPKGGFiY,Attorney Wainwright tries to discredit Sarah's case.\ntt0094608,YJPebmYS95E,\"Kathryn locates key witness, Bernie, and questions him about the rape.\"\ntt0094608,3ArDaUOO6w0,\"Kathryn visits Sarah in the hospital, where Sarah accuses her of not being on her side.\"\ntt0094608,Uif48WrZza8,Bernie visits Bob in prison and tells him he is going to be honest about what he saw that night.\ntt0108065,T0QshoW8SQY,Expert chess coach Bruce informs Fred that his son is the next Bobby Fischer.\ntt0108065,yOoGw9aTRhs,\"Josh's teacher informs the Waitzkins that Josh is falling behind in school, and perhaps shouldn't be traveling so much to pursue this \"\"chess thing\"\".\"\ntt0099653,3orSzPUIVJw,Molly tells Sam she wants to marry him as they walk home from a night out.\ntt0080120,1ycpmrEl-9E,Cyrus drives the crowd into a frenzy with his ambitious plan to take over the city.\ntt0108065,ZurT6BG1OM8,Josh fears his competition and doesn't want to disappoint at the state finals.\ntt0108065,gwXzOVu0x-U,Josh disagrees when Bruce encourages him to hate his opponents.\ntt0108065,v38lu0Bi0Kk,Josh challenges Bruce for his master's certificate.\ntt0108065,uV5YFJgGPNQ,Fred lectures Josh for throwing the competition.\ntt0081696,nWAV_KcSkNw,\"When Sissy rides the mechanical bull, Bud's temper flares as he realizes she's been practicing with Wes.\"\ntt0108065,k9pFp6iRVM0,\"Knowing his opponent is about to lose, Josh offers him a draw.\"\ntt0081696,cdaDQcs-XNQ,\"At dinner, Bud complains to Sissy about her responsibilities as a wife such as cooking dinner, cleaning the house, and making love.\"\ntt0108065,-v8C1H99O_s,Bruce proudly gives Josh his chess master's certificate.\ntt0081696,wzSYH0nT6Qk,\"In an act of machismo and chivalry, Bud beats the hell out of Wes and then takes Sissy home.\"\ntt0081696,f_xjQNnIcdQ,Sissy rides the bull in a sexy manner to make Bud jealous.\ntt0081696,c5BJJbtFP4E,Bud and Wes compete head-to-head in the Gilley's rodeo competition in front of Sissy and Pam.\ntt0081696,XkasRfjEqFs,\"After the rodeo competition, Bud tracks Sissy down to apologize and tell her how much he loves her.\"\ntt0398165,RUX-bx6rwdI,\"When the warden floods the practice field, Paul gives a rousing speech to the convicts that they will win the game and to get dirty.\"\ntt0398165,7UKx-6P2F-k,Caretaker introduces himself to Paul and tells him he's a man who knows how to get things.\ntt0398165,3JJaD_5oQq8,Ex-football player Paul Crewe is pulled over by two cops for drunk driving and stealing a vehicle.\ntt0081696,mYhkrT5de2Y,\"Wedding photos are taken of the bride and groom, Bud and Sissy.\"\ntt0398165,Q1IQ49BHkEg,\"In order to get game footage of the guards, Paul has to indulge in a little hanky panky with a much older Lynette.\"\ntt0162650,hGgWUKweXzI,Shaft makes a thug pay for making him run.\ntt0398165,GKuQDM9OlAQ,Paul takes the game into his own hands when his offensive line refuses to block for him. Then he gives an inspirational speech admitting how he threw the game and won't do it again.\ntt0398165,Rwtay9w8axo,\"After a grueling tackle by Switowski, Guard Dunham loses control of his bowels.\"\ntt0398165,VMVzQ8rW53Q,Coach Scarborough enters the game to score a touchdown on a trick play.\ntt0102517,ilrpqagxBf4,\"At the end of the big game, Texas State fakes a field goal to go for a touchdown and win the game.\"\ntt0162650,ZSFCW8cDIU8,Shaft provokes the irascible Peoples Hernandez into an altercation.\ntt0102517,XKl9WKaYVRw,The team practices some unusual technique when it comes to defense.\ntt0102517,sLWhxB6QNrw,Blake comes up with a good way to teach the douchebag Dean a lesson he won't soon forget.\ntt0102517,o4UVXgAzYb0,A rival football team insults the Texas players at a bar and a huge brawl ensues.\ntt0102517,AyJIq_BNPME,\"When an opposing player mocks Lucy, she introduces her foot to his balls.\"\ntt0102517,86RH1KAwM2A,\"During shower time, Lucy asserts that she is an Armadillo like everyone else, but Manu begs to differ.\"\ntt0102517,0jzYpSrpVqU,The team is impressed when sexy Lucy joins the team as the kicker.\ntt0094608,gZXv9XswYM8,\"Kathryn plans to try the bar spectators for solicited rape, despite the refusal of her boss, D.A. Rudolph.\"\ntt0093748,u2pu0m9iTo4,\"After sharing the same motel bed, Neal wakes up to find Del spooning with him.\"\ntt0109830,j-47cwN0w_c,Forrest proposes to Jenny. She does not accept but spends the night with him before leaving again.\ntt0162650,xLxCXburq2U,Shaft throws Wade in jail where he meets Peoples.\ntt0109830,x2-MCPa_3rU,Young Forrest breaks free from his leg braces and discovers he can run like the wind blows.\ntt0109830,tvKzyYy6qvY,Forrest tells the story of how young Forrest meets young Jenny for the first time.\ntt0077631,ZS9SXH3DfT8,Danny and Sandy's reunion is spoiled as Danny plays it cool for the T-Birds.\ntt0377092,JcP-yeailEM,\"Cady admits to writing the burn book\"\" and makes amends with Regina and Miss Norbury.\"\ntt0080120,zL0ipXUD-uU,\"The Warriors try to outrun the Baseball Furies, but when it comes time to fight, the Warriors prove to be the tougher gang.\"\ntt0117060,KOi9hHjmYq4,\"Kittridge accuses Ethan of being a mole, so Ethan escapes with the help of some explosives.\"\ntt0421715,tOZTZP_qzC0,Benjamin rises from his wheelchair and walks for the first time during a a tent revival meeting.\ntt0077631,aUNq34kNR0M,\"Birds, Sonny is surprised by Principal McGee.\"\ntt0421715,qW7Nq2UBlbk,Daisy tells Benjamin that she's pregnant.\ntt0421715,dpBTugwEdaQ,Benjamin experiences his first kiss with Elizabeth late at night in an empty hotel.\ntt0421715,CccXBzfhDVA,Benjamin leaves home for the first time at age 17 to become a seaman.\ntt0077631,6soXf476aV0,Rizzo's baby news travels fast.\ntt0065126,-zIhorOBLZM,\"When Moon decides to spill the beans, Quincy stabs Moon and Rooster shoots Quincy.\"\ntt0421715,sthFTs2gWeg,\"Queenie finds a baby abandoned on the porch steps, and despite his ugliness she accepts him into her home as a \"\"child of God.\"\"\"\ntt0077631,aqIYxDk4vh8,\"John) pines for Danny, singing \"\"Hopelessly Devoted to You.\"\"\"\ntt0065126,XTMeDBVknQY,\"Rooster and La Boeuf try to prevent Mattie from joining them on the ferry, so she finds another way to cross the river.\"\ntt0077631,wsQJVAzezrc,John) rejects Danny's clumsy advances.\ntt0065126,9-cPWheNyaA,\"Rooster takes on Ned Pepper and his men, but when Rooster gets trapped under his horse, La Boeuf saves the day.\"\ntt0077631,FWrh6KWGFo0,\"John) his ring, but cringes at her reaction.\"\ntt0117060,TVaP9kEYVZ8,\"Ethan disguises himself as Jim to fool Claire, but the real Jim appears shortly thereafter.\"\ntt0077631,S1waPNwf_ns,for baseball.\ntt0065126,XW9T7s1U_XU,\"La Boeuf ambushes Mattie and whips her, but Rooster has no patience for their bickering.\"\ntt0077631,-MQNNzaEt2s,Rizzo and the Pink Ladies arrive at Rydell for their first day as seniors.\ntt0065126,ZJJGXUlqb_k,La Boeuf blocks a chimney to drive Quincy and Moon outside as Rooster waits nearby.\ntt0109830,MLkaLveElpM,Jenny tells Forrest that he has a very smart son.\ntt0099653,YcbZKza_zUg,Molly talks to Sam as if he is still able to hear her from the dead. What she doesn't know yet is that he really can.\ntt0117060,Cho039BrHpg,Ethan dispatches with Jim and Franz with some handy explosives.\ntt0065126,Lb13v2-bBJQ,\"Rooster falls down drunk, and after blaming it on his horse, he decides to set camp for the night.\"\ntt0065126,-lb8E3qQVKY,\"Mattie stumbles upon Chaney by the river, and she shoots him when he threatens her with his rifle.\"\ntt0065126,57yGBikRJec,\"As Mattie prepares to sleep, she questions Rooster about his past.\"\ntt0065126,6DU0mdThjg4,\"Rooster and Mattie wait quietly for Ned Pepper and his men, but La Boeuf panics and starts a shootout.\"\ntt0109830,xuQZJHfWf9U,Forrest finds Bubba wounded during battle and he dies in his arms.\ntt0077631,HsYC-hVEpQM,John) watches from a distance.\ntt0109830,SqOnkiQRCUU,Mrs. Gump passes away.\ntt0109830,9Jt-bxV1gW0,Lieutenant Dan keeps his promise and joins Forrest as First Mate on the shrimping boat.\ntt0099653,_hyXwvNIKZM,\"Molly tells Carl that Oda Mae went to the bank and closed an account, which makes him suspicious.\"\ntt0099653,oAb2_-uv41Y,Oda Mae sets some ground rules if Sam wants her continued help.\ntt0109830,HqAbjHKO5jM,Lt. Dan thanks Forrest for saving his life in his own way.\ntt0099653,IdIEDlLAaJs,Molly needs to be convinced that Oda Mae can hear Sam from the dead.\ntt0099653,6vg44SEEMmA,Sam terrifies Willie who meets a tragic end.\ntt0377092,6ovOboVwB7g,Gretchen breaks down to Cady and spills some juicy secrets about Regina.\ntt0099653,5fLlgS6aO9k,Molly finally believes Sam is speaking through Oda Mae when she shares things no one else could know.\ntt0377092,VZpMlm4xYG4,Regina and Cady have a blow-out in front of school which ends disastrously for Regina.\ntt0377092,W8_POt2KlfQ,\"The Plastics gang up on Regina, furthering Janis' goal to dismantle her \"\"army of skanks.\"\"\"\ntt0377092,PoIdfRnQZ4A,Cady rejects Regina's attempts to make her jealous.\ntt0377092,re5veV2F7eY,\"Cady sits with \"\"the Plastics\"\" during lunch and gets invited to return for the rest of the week.\"\ntt0377092,LORyEX_5czg,Regina gives Cady the low-down on her and Janis' lost friendship.\ntt0099653,NpvlS6uBduQ,\"After being shot by a mugger, Sam realizes that he has died.\"\ntt0377092,WPYqRaOm1ak,\"After Regina distributes copies of \"\"the burn book\"\" at school, the girls go wild in the halls.\"\ntt0377092,sT8wMBeVffk,A huge fight erupts when Janis calls out Cady for her behavior and says she's transformed into a Plastic.\ntt0109830,4rT5fYMfEUc,Forrest fits right into Army discipline and meets Bubba who has a passion for shrimp.\ntt0377092,sR528E5_8yI,Miss Norbury encourages the girls to apologize to everyone they've hurt.\ntt1060277,RkFcHUvyJ-k,\"After a huge explosion in New York City, the head of the Statue of Liberty comes rolling down the street.\"\ntt0099653,-Y2wqkD2KVM,Carl dies escaping from Sam and is carried away by dark spirits.\ntt1060277,6esR4uGEFCc,\"The gang gets caught between the army and the monster, so they run down into the subway to escape.\"\ntt1060277,gRzjSsXw9PU,\"The gang tries walking down the subway tracks, but soon discover they're not alone.\"\ntt1060277,DUbplahEBfQ,\"The gang finds safety with some military personnel, but Marlena turns from bad to worse.\"\ntt1060277,8c-Na7OHYnI,\"The gang rushes out of the building to the helicopters, where Lily catches a ride.\"\ntt1060277,dVCki9kwF_4,\"While the crowd tries to leave Manhattan via the bridge, the creature makes escape impossible.\"\ntt1060277,kyY50rBet2U,\"Hud, Rob and Beth hitch a ride on a helicopter, but the journey ends sooner than expected.\"\ntt1060277,6ibWJnY6Ur8,\"Rob and Beth record their final words for the camera, while some earlier footage provides a clue.\"\ntt0117060,k-oVuQpjG3s,\"Ethan begins his descent into the vault, but he's not alone for long.\"\ntt0117060,sd_I5ez3jwg,\"Ethan realizes the mission has gone hopelessly wrong, resulting in the death of his team members, including Sarah\"\ntt1060277,ocb7pXndlug,\"Hud pulls Rob from the helicopter, and then finds himself right under the monster.\"\ntt0317919,wwzyveUAS80,\"Ethan scales the wall to gain access to Vatican City, then makes a quick costume change.\"\ntt0117060,ar0xLps7WSY,\"Ethan starts to copy the NOC list, but a rat and one drop of sweat threaten to jeopardize the mission.\"\ntt0117060,YK-ys6sY_q0,Ethan tries to convince Franz and Luther to help him hack into the CIA mainframe.\ntt0117060,AysV4mGh4fc,\"Ethan pursues Jim on top of a train, as Franz pursues the train in a helicopter.\"\ntt0117060,2wwC9c3iYK4,\"Ethan sails out of the vault just in time, but manages to leave some evidence behind.\"\ntt0120755,zk6ac5Amzr0,\"Ethan makes another daring entrance, this time from a helicopter into an atrium.\"\ntt0317919,CgX4uJSj00Y,\"Ethan tries to trade places with Owen in the bathroom, but the gadget that changes his voice takes a little too long to work.\"\ntt0120755,bXYobuaTjNs,\"Ethan tries to convince Nyah that they can help each other, while driving down a treacherous mountain road.\"\ntt0120755,hnum8SxuVCQ,\"Sean forces Nyah to retrieve the Chimera virus, but she injects herself instead.\"\ntt0317919,QLNUIU7AzTg,Owen threatens to shoot Julia if Ethan doesn't tell him where the rabbit's foot is.\ntt0120755,iXSKAf6h5vE,Ethan is about to destroy the Chimera virus when he's interrupted by Sean and his men.\ntt0120755,GR0R9KfU4tY,\"Nyah tells Ethan to kill her and destroy the virus, and he promises to get her the antidote.\"\ntt0094226,xPZ6eaL3S2E,Malone advises Ness on the attitude necessary for nailing Capone.\ntt0120755,O3P0SMpqK-8,\"All appears lost when Ethan is taken hostage, but he manages to retrieve the antidote with the help of another disguise.\"\ntt0317919,00rpUGdvcY0,\"Ethan runs out of ammo, just in time to escape the warehouse with Lindsey.\"\ntt0120755,AzIQg6Ly_Rw,\"Ethan races to save Nyah in time, with Sean in hot pursuit.\"\ntt0120755,AIcUKqhFp4g,Ethan takes out a guard on the island with some fancy footwork.\ntt0317919,S69qPup6hyk,\"Benji retrieves data from the damaged hard drives, including information on an upcoming function at Vatican City.\"\ntt0120755,eVUsVW87kSk,Ethan and Sean fight to the death as Nyah's life hangs in the balance.\ntt0120382,ZUKCW08_8Og,\"Despite Meryl's protests, Truman drives over the bridge and through a line of fire, but a leak at the nuclear power plant finally cuts short his attempted escape.\"\ntt0317919,YMz-skgeUdw,Ethan resorts to drastic measures to get information out of Owen.\ntt0317919,FCRdTWGdngU,\"As the team distracts some guards with baseballs, Ethan takes a daring leap off one building to swing onto another.\"\ntt0317919,8l4qdf_1nGM,Ethan tries to prevent Owen from escaping after a deadly bridge attack.\ntt0094226,gAM2Q7Sqlbk,Malone tricks Capone's bookkeeper into talking.\ntt0094226,KdNSlyrbcDY,Capone fields questions from reporters about his suspected bootlegging operations.\ntt0094226,QHH9EYZHoVU,Capone's baseball metaphor ends badly for one gangster.\ntt0094226,_d5jXDvrOu4,\"Malone tosses a thug from his home, but meets a hail of bullets from Nitti.\"\ntt0094226,j8nZBlPfR7Y,\"Ness confronts Capone at his hotel, challenging him to a fistfight.\"\ntt0094226,YVz211iI26o,Ness succeeds in dismissing Capone's bribed jury; he and Capone exchange words.\ntt0094226,eSm68IEDDT0,\"Ness hurls Nitti from a rooftop, avenging the death of his friend.\"\ntt0094226,QJpRSf4q-hI,Ness and Stone trade fire with gangsters while chasing a runaway baby carriage.\ntt0099674,t2QvuZpxmeo,Michael finally confesses that he ordered the death of his brother.\ntt0094226,dgoDvnebHRw,\"After losing his shipment, Al Capone blows his top and threatens Eliot Ness.\"\ntt0080120,qoWjU8OAUaU,\"The Warriors confront the Rogues on the beach, and after Swan takes down Luther, the Gramercy Riffs show up to finish the job.\"\ntt0080120,aRM2YcGpmxg,\"The Warriors return to Coney Island, but Luther taunts them to fight one last battle.\"\ntt0080120,0kqn9qQZdOs,\"The Warriors hide in the Mens' Room at a subway station, where they successfully defend themselves against another gang, the Punks.\"\ntt0080120,bTUrWYv2vtU,Cyrus brings together all the gangs in New York City to prove their strength in numbers.\ntt0120382,z9lBvg5clr0,\"Truman takes Meryl on a spontaneous road trip, and she tries everything in her power to convince him to stay home.\"\ntt0080120,oMLjP2ajXvs,Luther shoots Cyrus and blames it on Cleon as chaos breaks out.\ntt0120382,MdwuW8n3JYA,\"Truman is confused by a lighting rig that falls from the sky, but the radio announcer provides an easy explanation.\"\ntt0120382,wIrUoTYd9hA,\"Truman gets soaked by a weirdly specific rain shower, and when Meryl talks him into going to bed, some audience members complain about censorship.\"\ntt0361411,7b9sNVUPFyM,Lalita gets into it with Darcy when she suspects he is being ethnocentric.\ntt0120382,YfJc2bORFHs,\"To distract Truman from his recent discoveries and suspicions, Christof orchestrates the return of Truman's father and creates a moving television moment in the process.\"\ntt0120382,6U4-KZSoe6g,\"When Meryl tries to sell another product during a serious conversation, Truman snaps and threatens her with a kitchen tool.\"\ntt0120382,6ZMZYrdXtP0,Christof speaks to Truman in one last ditch effort to keep him from leaving the show.\ntt0120382,u-ApxFOpl28,\"Conquering his fear of the water, Truman struggles to survive a storm manufactured by Christof.\"\ntt0120382,UIfdjPDPM-I,\"Truman performs a spaceman routine in front of his bathroom mirror, knowing that he's being watched.\"\ntt0080120,QXtkzFiGsxw,\"Ajax puts the moves on a woman sitting on a park bench, but she surprises him by arresting him and handcuffing him to the bench.\"\ntt0317740,6c5Qlf1Fr28,John Bridger gives Charlie Croker some advice about being a good thief.\ntt0317740,764r3kF5tZg,\"Handsome Rob and Lyle drive the decoy boat to distract the guards, while the rest of the team cracks the safe under water\"\ntt0317740,2bkNfQBLCJw,\"The team has to get into a subway tunnel to steal the gold, but first they have to beat a speeding subway train in their Mini Coopers.\"\ntt0421715,zmicfGmQZ9s,Benjamin travels around the world and chronicles his experience for his daughter Caroline.\ntt0317740,dnnrhhZjTh8,Gunman on motorcycles chase the team through a tube which leads out into the LA River.\ntt0317740,GVAVkeMQyKY,Steve suspects that Yevhen knows too much about his stolen gold. He decides to shut him up permanently.\ntt0317740,6EFjbeXuNCg,Charlie lets Steve know that he's going to steal the gold back from him.\ntt0317740,YlT7x_8VuMA,\"Charlie gets cornered by Steve, but he uses his sweet driving skills to find a way out.\"\ntt0317740,r4IBPd7-LlQ,Steve closes in on Charlie in a helicopter.\ntt0449467,jtoYZoKsAnY,Teenage Cheiko sexually provokes her dentist during a routine visit.\ntt0421715,_r8MRCkHY54,\"In the spring of 1962, Daisy returns home into the arms of Benjamin.\"\ntt0114694,ohz8_IafGwE,Tommy twirls around in Richard's jacket.\ntt0114694,3QCSrQEGvZA,Richard fools Tommy by impersonating a very saucy housekeeper.\ntt0114694,ndfLW-xm9Xk,Tommy and Paul's attempt at cow tipping goes awry.\ntt0114694,gkGFvtW0CSE,Tommy struggles to change clothes in a tiny airplane bathroom.\ntt0114694,n1lbpj6868o,Tommy gets fed up with Richard's insults and challenges him to a fight.\ntt0114694,HWrjBBXjjhM,\"Tommy and Richard pose as airline stewards, making the pre-flight safety announcements.\"\ntt0114694,c1EyN9xTK94,Tommy uses a dinner roll to illustrate his overzealous sales approach.\ntt0421715,ECDGpYuMRDA,\"Gateau unveils a clock that runs backwards as a memoriam to the U.S. soldiers who lost their lives in World War I, including his son.\"\ntt0421715,GmslKQBmdzg,Benjamin and Daisy sail into the Gulf along the Florida Keys for an extended romantic retreat.\ntt0114694,5LN23qErZDM,\"After killing his sale, Tommy has an emotional meltdown.\"\ntt0361411,hIhe-VqMBVI,\"Darcy tries to tell Lalita how he feels about her, but she is too enraged by what she's heard about him to care.\"\ntt0361411,1_-RGLVHmOA,\"The Bakshi sisters sing a playful song inspired by Mr. Kohli's saying, \"\"no life without wife.\"\"\"\ntt0361411,AoWdk9CB-mU,\"First the boys tease the girls, then the girls tease the boys in a special wedding dance.\"\ntt0361411,WDAo_p8At-o,Lalita gets worked up when dancing with Darcy and is relieved to have Wickham cut in.\ntt0120694,IH_dSlEAl0A,\"After pinning Michael Myers against a tree, Laurie finally puts an end to the nightmare and beheads her brother... or is it her brother?\"\ntt0361411,psru6_9PPcw,\"Lalita meets the dashing Johnny Wickham, and is more than happy to take his side against Darcy.\"\ntt0297884,BkW-4CWw3XQ,Filippo's little brother helps to distract the guard while Philippa makes a run for it.\ntt0297884,TEjRTNg51Io,\"The carabiniere listens to Filippo's recording for Philippa, which details her escape plan.\"\ntt0297884,4dW0aROYEk4,\"Filippo, afraid at first that Philippa is referring to the bag he has hidden in the toilet for her escape, translates for Philippa as she explains her reason for bombing the building.\"\ntt0297884,9pDIRuJt-gU,Philippa and Filippo consummate their love in the Italian countryside.\ntt0120694,upyAJ-kEgNY,\"After years of fear and seclusion for her and her son, Laurie decides to take the offense against her brother.\"\ntt0297884,tFAX4TdV6ak,\"Philippa confesses her wrong-doings to Filippo who, in turn, confesses his love to her.\"\ntt0120694,OTq3-zG1lCE,\"After discovering the body of her boyfriend, Sarah unsuccessfully tries to evade Michael Myers.\"\ntt0297884,P-E8ZrQ06go,\"Philippa calls Mr. Vendice's secretary out of the office after having left a bomb in his trash can, but her plan falls apart when a cleaning lady takes out the trash.\"\ntt0297884,g-GJDgd7D8k,\"Philippa is shocked when the prosecutor states her crime, as she intended for the bomb to only kill the drug dealer, Mr. Vendice.\"\ntt0297884,Ktn-Hd2BTzs,The Carabinieri updates Mr. Vendice about the status of Philippa's case and how they plan to cover up her claims. Philippa listens to a tape that Filippo recorded for her.\ntt0371746,bwzuMk8SRzY,Tony starts to get the hang of flying around his lab.\ntt0119094,qYW3MOezCc4,\"After a battle with the prison guards, Sean Archer succeeds in escaping to freedom.\"\ntt0371746,3Im7ZYrXCOY,Tony takes the Iron Man suit out for a spin.\ntt0297884,t7S_kRqYshw,Philippa kills Mr. Vendice after having called him in under a false pretense.\ntt0297884,qilGSZ9UWTc,\"Filippo's father offers to help, but Philippa and Filippo decide to continue on their own.\"\ntt0371746,OYrxSQ_Y2Iw,Tony calls a press conference and decides to tell the truth for once.\ntt0371746,3o2ACEr9NmQ,Tony becomes Iron Man to save a village and destroy some Stark Industries weapons.\ntt0104036,p0qVhhIfWr4,\"Fergus is mesmerized when Dil takes the stage to sing her signature song,\"\ntt0361411,3Ag3aRRoPzk,Lalita warms up to Darcy as they spend time together in Los Angeles.\ntt0297884,a4EqbYUl7Rg,\"Filippo and Philippa take advantage of the Carabinieri's helicopter being unattended, highjacking it and soaring up higher and higher until it disappears.\"\ntt0128442,dsCzZE_y0so,\"Despite holding a monster hand, Mike spots Teddy's cookie tell and wisely folds his cards.\"\ntt0128442,e2RQwVyRSGU,\"After a re-raise from Teddy KGB, Mike goes all in with a pocket pair of Kings.\"\ntt0128442,MbrO-ZbuhIs,Teddy KGB busts out Mike in a high stakes game of Hold'Em by revealing a higher full house.\ntt0128442,aXbf3X56rGM,\"For one hand at a table in Atlantic City, Mike takes down the great poker player Johnny Chan on a pure bluff.\"\ntt0119094,c_YHTdu1jFc,Archer pursues the fleeing Troy on a speedboat and tries to make him crash.\ntt0119094,XxsSp2qJIZg,\"Archer apologizes to his wife for putting her through hell, but Troy arrives and threatens her.\"\ntt0128442,ciWBzhmOC_o,\"The rounders including Mike, Petra, and Knish dominate the card table against some unsuspecting tourists.\"\ntt0128442,0ZQln6DsWgE,Mike impresses all at the 'Judges Game' when he helps Abe take down the pot.\ntt0361411,_nqoPInNcvo,Lalita receives a proposal from Mr. Kohli.\ntt0361411,HMziYymVYMs,\"Darcy and Lalita search for Lahki, who has run off with the untrustworthy Wickham.\"\ntt0128442,QvVoH-X-Kls,\"After losing a heads-up game of poker, Teddy KGB tries to goad Mike into playing a re-match.\"\ntt0128442,ERmo8TmDYCI,Abe tells an anecdote to Mike about following one's destiny in life.\ntt0128442,z7NxEj4A1Cg,\"When Mike comes asking for money again, Knish responds with some cold, hard truths of life.\"\ntt0128442,QAJkvEJ2QjE,\"Sitting down at a high-stakes poker game, Mike explains how to play No Limit Texas Hold'em.\"\ntt0128442,N7hG6mx0csE,\"When Worm gets caught for cheating at the table, there's nowhere to run, and nowhere to hide for Mike.\"\ntt0128442,LIXJaTQTDAg,\"Holding the nuts, Mike traps Teddy to win sixty-thousand dollars.\"\ntt0230600,_7z8a8kTj1c,Grace hears voices and Anne shows her a drawing of the mysterious family.\ntt0119094,G5GJHYXrjhY,\"Troy tries to kill the Archers, but Sasha shows up and a massive shootout takes place.\"\ntt0119094,Mn6WC1pxVNk,Archer uses a helicopter to keep Troy's jet from taking off.\ntt0119094,klCemtBU1cg,\"When Archer catches Karl hurting a girl in his car, he gives him a beating and makes him apologize.\"\ntt0371746,GH-r4HXHcCk,Tony uses his newly designed prototype Iron Man suit to escape the enemy camp.\ntt0371746,KNAgFhh1ji4,\"Tony presents The Jericho, his new missile system, to an American military audience in Afghanistan.\"\ntt0371746,-zya4vJ-kQE,Tony asks for help from Pepper when replacing some sensitive equipment.\ntt0371746,n4BJBz8GpzI,Tony breaks out of the cave using his newly designed suit.\ntt0469494,x1ij_TEK_MM,Young H.W. loses his hearing after an accident inside the oil rig.\ntt0409459,nVrzbfxxcZ8,\"Nite Owl and Silk Spectre take \"\"Archie\"\" out for a ride and save some citizens from a burning building.\"\ntt0101318,Y9GAufJIe0I,\"Alex sets fire to the truck carrying Michèle's \"\"missing\"\" posters.\"\ntt0115697,sBjNpZ5t9S4,\"Mike is pulled over for driving only 7 MPH, and tells the officer a tall tale about Steve.\"\ntt0118826,25Y5O97c1Aw,Con and the rest of the family try to cheer up Darryl after he loses the court case.\ntt0118826,1Gk_oU1m5CY,Dale introduces the members of the Kerrigan family at their humble abode by the airport.\ntt0207201,xCtMlhZskDE,Nick realizes he can hear Flo's thoughts.\ntt0115697,WZppJUaR7_0,Mike falls on top of Governor Tracy in a compromising position.\ntt0115697,BcufzXXaEoI,\"When Steve hits Drake with his car, he tries to drive off but gets stuck in traffic.\"\ntt0115697,fvptWDiYrIk,Mike makes phone calls to voters and recites an unorthodox political tangent with one recipient who ends up being a little girl.\ntt0120694,sp8Ufx3Ej24,Laurie gets angry at her son when he skips school on Halloween.\ntt0119094,kLskn7jHXrg,\"Archer and Troy discuss trading faces back, but then just try to kill each other.\"\ntt0119094,d6ISJ_dN-80,Archer has a shootout with Castor Troy in an airplane hangar.\ntt0117381,flvyCwagnF0,Janet accuses Martin of being nervous around intelligent women.\ntt0257106,4vcNnS9k884,Father McFeely battles his bowel movements before battling the demon in this prologue parody of The Exorcist\ntt0257106,5t_tgiWatvs,The group gets nauseous when the caretaker uses his bare hands to prepare their dinner.\ntt0119094,8ce557hlgEM,\"Archer, in disguise, is shocked to see Castor Troy wearing his own face.\"\ntt0117381,XyGbtYaVcaA,\"When Martin confronts Aaron, another personality named Roy comes out.\"\ntt0117381,e2g4Wr81rz8,Janet plays rough with Aaron on the stand until he cracks and physically attacks her.\ntt0117381,ZbaW0HZ_Qy8,Aaron reveals the final twist in his case when he talks to Martin from his jail cell.\ntt0409459,b4teoyYZsYk,\"With Rorschach locked in his cell during a prison riot, Big Figure cuts the arms off of a fat thug with a saw.\"\ntt0117381,QAFttSucKH4,Martin explains to Connerman that he does what he does because he chooses to believe in the goodness of people.\ntt0117381,jaCofC2Bv-c,Aaron erupts when Martin tells him he's seen the videotape that would provide a motive for the murder.\ntt0117381,YDV8PMVi-fA,Laura thinks Martin is crazy for thinking Aaron could be innocent.\ntt0409459,EuSGUhhmYfk,Ozymandias sets off a nuclear attack on several major cities throughout the world including New York City.\ntt0117381,PYLokGkYl4E,Martin preps Aaron before trial.\ntt0409459,yGbUcqCXe14,Jon Osterman is evaporated in an atomic chamber and Dr. Manhattan is born of atomic matter.\ntt0409459,JJ5290-0lw0,\"Walter Kovacs explains the genesis of Rorschach. In the prison cafeteria, he defends himself by using the deep fryer grease.\"\ntt0117381,esQgzR6gTjw,Shaughnessy gives a stern warning to Martin.\ntt0409459,BYWVUvqDFh0,Rorschach sneaks into the crime scene at The Comedian's apartment.\ntt0409459,p-mlLMZXqg4,Rorschach is captured by the police and his mask is removed to reveal the true identity of Walter Kovacs.\ntt0409459,NFV2sZJrtDQ,Dr. Manhattan is forced to kill Rorschach in order to save humanity from nuclear war.\ntt0469494,s_hFTR6qyEo,\"Daniel explains what \"\"drainage\"\" really means to Eli.\"\ntt0409459,4u-4PyidIeQ,\"Dr. Manhattan is accused on a television news program, while Laurie and Dan fight a gang in an alley.\"\ntt0469494,zirtzDl2RH0,Eli Sunday forces Daniel Plainview to confess his sins in front of the congregation.\ntt0101318,-ZODi5SGAyE,Alex performs a fire breathing act on the streets.\ntt0469494,nzyDm-J065g,Daniel Plainview fights to stop a raging fire that has broken out in his oil rig.\ntt0469494,HzpxTmlWOC4,Daniel disowns his son H.W. and pronounces he is nothing but a bastard from a basket.\ntt0469494,12Iosf6btzM,Daniel Plainview finally gets his revenge against Eli Sunday.\ntt0469494,MyKNmvJYO7o,Daniel forces Eli to say that he is a false prophet and that God is a superstition.\ntt0207201,5yUd7SXxXzs,\"With the help of Dr. Perkins, Nick sees the upside to his new gift.\"\ntt0469494,28BXqQWqYJU,Daniel reveals to Henry that he hates most people and sees no good in them.\ntt0207201,xJp2HXBJv_4,Nick learns what his secretary and the other women at work really think of him.\ntt0101318,hf7_JChVnAQ,Alex and Michèle steal a police boat to go water skiing among the fireworks of the French Bicentennial celebrations.\ntt0207201,L8eQ78agzQg,\"When Nick confesses to Darcy that he is the reason she lost her job, he also confesses his feelings for her.\"\ntt0207201,FeoFv3dOeqo,Nick realizes that his mind-reading skills have a gender preference.\ntt0207201,urby-QPF1hE,Darcy and Nick share thoughts on the Nike account.\ntt0207201,NrriZYH49yE,Nick checks up on Erin and realizes that he can't hear her thoughts.\ntt0101318,lKMl0NFXM4s,\"When Julien rejects Michèle, she shoots him through the peep hole of his door.\"\ntt0101318,abh8wBYFeuE,Michèle runs from the train to find Alex as military forces parade during the French Bicentennial celebrations.\ntt0340163,yDoaKW48_hk,Talley finds that his family has been taken hostage by The Watchman in order to force Talley back into the hostage situation.\ntt0101318,Q6kNpNi_iJI,\"Not wanting Michèle to know that her family is looking for her, Alex destroys a number of \"\"missing\"\" posters.\"\ntt0101318,8lD16zBpcog,Michèle and Alex reunite on the bridge after Alex is released from prison.\ntt0101318,cH80fIW-mrc,Alex and Michèle dance as fireworks celebrating the French Bicentennial burst above them.\ntt0101318,vn1ZcpwPlAA,Alex and Michèle drug businessmen at restaurants to steal their money.\ntt0340163,rG1qXTVH1t4,\"Talley rushes to save a hostage negotiation gone wrong, but discovers that he?s too late.\"\ntt0101318,AMuVqFvM2Rs,\"Left alone by Michèle, Alex shoots off his own finger. He is then sent to prison for the poster man's death.\"\ntt0115697,oW7IadnQblg,Mike is pushed on stage at MTV's Rock the Vote and improvises by pumping up the crowd.\ntt0118826,C7G9Q9JcN34,Darryl is deeply proud when his daughter Tracy marries Con.\ntt0115697,4sO94xn-C6o,Mike freaks out when he gets caught on a news van antenna and draws the attention of Gov. Tracy and her crowd.\ntt0118826,uCtMTbKX6_I,Tracy and Con return from their honeymoon with gifts and tales of wonder.\ntt0118826,qqhQ9jN3gj4,Darryl reckons they're in for a pleasant surprise when they see the land valuation on their property.\ntt0118826,qTUcFhCim_A,Dale reminisces about how Darryl kept his worries away from the rest of the family.\ntt0118826,prnQLmVg5V8,\"The Kerrigans travel to their holiday home in Bonnie Doon, where Darryl enjoys the serenity.\"\ntt0118826,wEE-EVC0P8M,Darryl takes Dale fishing and Con practices his kickboxing.\ntt0118826,PfnAhUBroF8,Sal tells the story of how she met Darryl while she was dating another man.\ntt0118826,ssukL9a99JA,Dennis argues in court that the acquisition of the Kerrigan house violates the vibe of the constitution.\ntt0118826,b4kKWa_hjCk,\"Having won the court case, Darryl throws a party for all of his friends and family.\"\ntt0118826,5smoo7ipoc0,\"Steve tries to cheer up Darryl, who compares their plight to that of the Aborigines.\"\ntt0115697,f890SC1schE,\"While delivering fliers for Donnelly, Mike falls down a hill... and keeps falling...\"\ntt0115697,HI_mwhUvqHc,A huge boulder rolls down the mountain and crashes into the cabin.\ntt0115697,tlE5yK4l34o,\"Mike pumps up the crowd at MTV's Rock the Vote, but takes things a little too far...\"\ntt0340163,sjeIpuOhuPM,Mars opens up to Jennifer as Tommy watches from above.\ntt0340163,t8dJFMMvNQQ,Mars and Dennis startle Walter and his family when they enter the house with guns.\ntt0115697,RGvWYYCWFq8,\"Steve is all laughs as hail rains down on Mike on the top bunk, until the pressure causes Mike to crash on top of Steve.\"\ntt0340163,i_sT5Jl3qM4,Mars panics when a cop responds to an alarm.\ntt0340163,68XJpm3q2b4,Talley negotiates with Dennis for half of the money in the house.\ntt0340163,qbfjO2d2S4Q,Talley talks to Dennis to assess the situation and determine who shot the police officer.\ntt0340163,T9tQanQSgQM,\"Talley calls Dennis to warn him, and then reassumes control of the hostage situation.\"\ntt0340163,tJIzs4CS-TE,Talley tries to end the hostage situation but Mars and Dennis struggle for control.\ntt0340163,UGn03bNlFuo,Talley infiltrates the house just as Mars tries to burn it down.\ntt0340163,M3jyyQMbJNY,\"Talley poses as an EMT to gain access to the house, where Mars keeps an eye on him.\"\ntt0340163,Zp4qkAJFHrQ,Mars chases Jennifer and Tommy through the house as they head for the panic room.\ntt0104036,KUGH4XQ94tc,Dil holds Fergus hostage as Jude and Maguire plot an assassination.\ntt0257106,pwt49IF0uG0,\"Cindy meets Hanson the caretaker of hell house, who sings a familiar hymn\"\ntt0104036,EMBCBSoE1rU,\"Fergus finds himself unable to shoot Jody, who makes a run for it just as British troops attack.\"\ntt0257106,ZOtIoBAxDUw,Father McFeely and Father Harris exorcise a deomon from Megan in a parody of The Exorcist\ntt0257106,FX3YO40UDHc,A giant marijuana monster smokes Shorty before being distracted by munchies.\ntt0257106,sw-oQlitqCY,Cindy fights the mansion's pussycat.\ntt0257106,VjlUWwstdTU,\"The group investigate a mysterious noise, which turns into a parody of a Nike commercial.\"\ntt0257106,js-kku6X7yU,Dwight refuses help while trying to climb up the stairs while Cindy pleasures Buddy believing it will save his life.\ntt0257106,ZSoIlS4LQiI,The mansion's apparition rapes Alex while Brenda and Ray have sexual troubles of their own.\ntt0257106,dvodASNU58U,\"Dwight has a wheelchair chase with Kane, the hell house ghost that lampoons this John Woo chase from Mission Impossible 2\"\ntt0257106,YkGv4M2y3zg,The girls spoof this scene from Charlie's Angels when they confront the possessed Hanson.\ntt0104036,CXgaZeUY6fM,Jody proudly shows Fergus a picture of his girlfriend.\ntt0104036,Ugd_VB9iVFE,Jody tells Fergus the story of the scorpion and the frog to illustrate a point about human nature.\ntt0104036,MV-KVBADWMg,\"Fergus rescues Dil from Dave, and they kiss to make Dave jealous.\"\ntt0104036,LldAqBKjyJ0,\"Fergus encourages Jude to check on their hostage, Jody.\"\ntt0104036,0Z-o1RVdnHE,\"Faced with the truth that Dil is a transsexual woman, Fergus gets sick and leaves in a panic.\"\ntt0104036,bP9A87VOaYE,Fergus tells Dil that he was responsible for Jody's death.\ntt0371746,qvwHppI95K0,\"Tony meets intrepid reporter Christine Everhart, but it doesn't take long for her to fall for his charms.\"\ntt0104036,b0fZtW9Niic,Fergus gets a haircut from Dil and follows her down the street.\ntt0104036,7-YQ7rO_JSg,Jude tracks down Fergus and blackmails him into returning to work.\ntt0110889,ELzQ4OtDjrs,\"A new priest, Father Pilkington, ministers to Father Thomas's congregation quite differently than what they are used to.\"\ntt0116324,kaZ87rTNkDA,Some tension arises over dinner between Agent Kent and his life partner Paul when the issue of adoption is brought up.\ntt0261392,NI7As3rOogo,Holden shows Jay and Silent Bob the awesome power of the internet.\ntt0416508,HZs_qERvDko,\"The antagonistic Lady Gresham attacks Jane's character, but her family and, surprisingly, Mr. Wisley, rise to her defense.\"\ntt0113101,naTncfYgYtU,\"Ted the Bellhop arrives in the wrong room to find himself in the middle of a fantasy hostage situation between Sigfried and Angela. From the segment \"\"The Wrong Man,\"\" directed by Alexandre Rockwell.\"\ntt0238924,T2-1TBORh9k,Margie Flynn reveals shocking details about her past to Francis.\ntt0120613,vaIRRbuiarE,\"Pearl gives some unsolicited sales advice to Walker, the new blouse man.\"\ntt0271219,yZ1OgEqw2oc,\"Stanley and Eve send Oscar back to school, and he has a promising encounter with Miranda on the train.\"\ntt0285823,Z5lyNKWvZfc,Final confrontations are met at the capitol during Barillo's revolution.\ntt0285823,fVltuJq1SQ8,Sands takes down two thugs blind and without the help from his Chicle Boy.\ntt0120879,qBrEcM3NbH0,Arthur greets Curt Wild years after their encounter when Curt was a rock legend.\ntt0285823,RS9Z138meRo,El Mariachi and his mariachi friends save El Presidente from General Marquez's militia.\ntt0120613,j84y65YfUS4,Things get awkward when Marty returns to find Walker helping Daniel recover from some wasp stings.\ntt0238924,X7ut7L-X1NQ,Francis and Tim find a dying dog on the side of the road.\ntt0110907,yNDm5IA6nQQ,\"In trying to lock-up fashion photographer Milo O'Brannigan to come work for Elle Magazine, Regina succumbs to degradation when she gets down on her hands and knees.\"\ntt0238924,u3xawRs6Rik,\"On a field trip to a local zoo, Francis and Tim encounter a cougar and start planning to capture it for a prank.\"\ntt0238924,HtagS7pfoJo,Francis and Tim cut down an old telephone pole.\ntt0238924,2Fy8vK7IGIs,\"This animated segment introduces the altar boys' comic book alter-egos, The Atomic Trinity, as they do battle with the evil Sister Assumpta.\"\ntt0238924,kmU4DlO3wzc,\"In the altar boys' comic book story, the Atomic Trinity fight a pack of evil motorcycle-riding nuns to save Sorcerella.\"\ntt0238924,TGWJfpAwlrI,Francis is interrogated by Sister Assumpta after creating a ransom note for the missing statue of Saint Agatha.\ntt0238924,NWuqkpD_A6E,\"After Francis shoots the cougar with a blow dart, Tim enters its cage to capture it.\"\ntt0238924,isOtwdqD3y8,\"In a moment of anger, Tim Tim reveals to Donny that he knows about Donny's secret, leading Donny to seek revenge.\"\ntt0238924,xTyEZA6ILOk,\"In the altar boys' comic book world, Skeleton Boy engages in a final battle with Nunzilla.\"\ntt0110907,JSetLbD948c,\"After stepping in some dog poo, Milo takes control of a fashion shoot for trendy cowboy boots.\"\ntt0113101,s-kucHjKbG4,\"A man offers Ted the Bellhop $500 to watch his kids. From the segment \"\"The Misbehavers\"\" directed by Robert Rodriguez.\"\ntt0110907,Kz234-_khjs,Isabella does a sexy strip tease that makes Sergio howl with excitement...until he falls asleep.\ntt0113101,BCruokZzMXc,\"Ted the Bellhop brings the misbehaving children under his watch a bedtime snack. From the segment The Misbehavers,\"\" written and directed by \"\"Robert Rodriguez\"\ntt0113101,RAKPzL6uNOg,\"The man returns to his hotel room to find it in pandemonium. From the segment The Misbehavers\"\" directed by \"\"Robert Rodriguez\"\ntt0113101,9XvQJ2Jbg8A,\"As the parents leave for a romantic night out, Ted the Bellhop tries to set some rules for the audacious children. From the segment The Misbehavers\"\" directed by \"\"Robert Rodriguez\"\ntt0113101,RHULBucGlA4,\"Ted the Bellhop presents the items Chester and his cohort have ordered. From the segment The Man from Hollywood\"\" written and directed by \"\"Quentin Tarantino\"\ntt0116191,YO2-9VWwiUI,\"At an outdoor party, Emma scorns Miss Bates for her prattling.\"\ntt0110907,wwLnrdD4l3U,\"As Milo humiliates another unsuspecting fashion editor in Nina, both Sissy and Sergio hide in the closet.\"\ntt0113101,rQOBwQbssgo,\"Leo explains the bet between Norman and Chester to Ted the Bellhop. From the segment The Man from Hollywood,\"\" written and directed by \"\"Quentin Tarantino\"\ntt0113101,OsH_JszzicE,\"Chester offers Ted the Bellhop $1000 to help with a bet with Norman. If Norman doesn't light his lucky lighter ten times in a row, Ted will cut off Norman's pinky. From the segment The Man from Hollywood\"\" written and directed by \"\"Quentin Tarantino\"\ntt0113101,oqDlKpTihNo,\"Ted the Bellhop puts vaporub on the eyelids of the children he is watching, hoping it will keep them from getting out of bed. From the segment \"\"The Misbehavers\"\" directed by Robert Rodriguez.\"\ntt0120907,qfym2Neaz4c,\"When Ted Pikul and Allegra Geller plug Micro-Pods into their bio-ports, their game characters develop an overwhelming sensual attraction to one another.\"\ntt0113101,lllLnc58CoI,\"When Ted the Bellhop is unable to find the correct drugs for the man dying in the next room, he tries to escape out the bathroom window. From the segment \"\"The Wrong Man,\"\" written and directed by Alexandre Rockwell.\"\ntt0116191,gNCAj7eS07I,\"When Harriet Smith receives a letter from Mr. Martin proposing marriage, Emma tries to persuade her to decline in favor of Mr. Elton.\"\ntt0120907,Wt5LAZa7LAU,Kiri Vinokur performs surgery on Allegra Geller's bio-pod as Ted Pikul asks about how bio-pods work.\ntt0116191,HO4TjpZw5zc,\"Despite her best efforts to push him out of her mind, Emma thinks constantly of Mr. Knightley prior to his return. She prays that if she can't have him, he might at least stay single.\"\ntt0116191,6B6yElrEeKM,Mr. Elton is unusually attentive to Emma at the party.\ntt0116191,LTgOLHxQ9mM,Mr. Knightley proposes marriage to Emma.\ntt0110907,M4nag_xN0Rw,\"Kitty Potter, working for FAD T.V., interviews fashion designer Thierry Mugler.\"\ntt0116191,41MHIJIg6u0,Mr. Knightley confesses his love for Emma.\ntt0116191,mjt0iNTJrWE,\"Mr. Elton confesses his love to Emma, who rebuffs his advances.\"\ntt0116191,8k_gzuVqZmk,Emma and Mr. Knightley argue about whether Harriet should have rejected Mr. Martin's marriage proposal.\ntt0116191,YOLGp-P5QFc,\"Emma and Frank Churchill sing a duet of Arthur Somervell's \"\"Silent Worship\"\" at the Coles' Party.\"\ntt0120907,HdU-6bKqhzk,\"Gas betrays Allegra Geller to get the bounty on her head, but Ted Pikul shoots him through the neck.\"\ntt0110907,9NCpU9laV9I,\"Competing fashion editors Nina and Regina both feel slighted on their lavish hotel suites, and desire the other one's suite.\"\ntt0120907,W1fkINKMwHA,Gas gives Ted Pikul his bio-port. Ted asks Allegra Geller why bio-ports don't get infected.\ntt0110907,YHKkh9b1Oi0,\"When Joe opens up a bottle of wine, Anne becomes a real lush. Meanwhile, Milo takes a group photo of the Pret a Porter fashion designers.\"\ntt0110907,9KhqPTmsCJU,\"On spotting Sergio - an old lover - after a fifty year absence, Isabella faints in front of Kitty Potter.\"\ntt0120907,-qq785V7JOU,\"When Ted Pikul pauses eXistenZ, he gets the impression that he is still in a game, and that Allegra Geller is a game character.\"\ntt0120907,ssM67LXOwQw,\"At a Chinese restaurant in the game world, Ted Pikul follows a \"\"game urge\"\" to kill the waiter.\"\ntt0120907,4zJ3a0K2DP0,Ted Pikul tries to keep Allegra Geller from bleeding to death from her severed umbilical cord. Deadly spores are released into the air when Yevgeny Nourish destroys the diseased pod with a flame thrower.\ntt0120907,89hYiDNscBE,\"In a twist revelation, the characters realize they have been playing a new game called tranCendenZ all along.\"\ntt0120907,o3f521sUTaE,\"After finishing the game tranCendenZ, Allegra Geller and Ted Pikul reveal that they are realists and assassinate Yevgeny Nourish.\"\ntt0120907,2tmMMXTmM9o,\"After killing Kiri Vinokur, Allegra Geller confronts Ted Pikul with her theory that he's actually a realist assassin. Once her suspicions are confirmed, she kills him by detonating an explosive she has placed in his bio-port.\"\ntt0110907,SzQ4cDkdsqg,\"Lounging around in their hotel room, Joe and Anne get into an argument about their sexual dynamic, and then immediately make-up.\"\ntt0110907,ZTUXWwbqu-I,\"After spending the entire week of pret a porter in a hotel room, Anne and Joe have a tender farewell.\"\ntt0858479,OD69M9N_ihQ,Vanessa advises her father to move on after he comes home from his botched date.\ntt0858479,A7kyMbwD9o4,Chuck's idea to take Vanessa out drinking backfires when she drunkenly kisses him.\ntt0241303,DcH_p1vfD1g,\"Vianne serves her first customers and prescribes them their \"\"favorite\"\" chocolate based on what they see in her spinning plate.\"\ntt0241303,yuU67Mv4bFA,Vianne tries to tame the grouchy Armande with some chocolatey goodness.\ntt0241303,BbsJiMmpObc,Guillaume confesses his recent sins to Pere.\ntt0241303,Q4-XxWqSgH8,\"Vianne visits Josephine in the hopes of becoming her friend, but must first get past her boorish husband.\"\ntt0241303,yoGdST0RFuc,\"Vianne and Anouk befriend Roux, the pirate\"\" who's just docked his boat on the river shore, and buy a trinket from him to spite the passing mayor.\"\ntt0241303,70E-IYUdbZk,\"Vianne opens up to Roux about her lifestyle and her hopes for the future, leading to an intimate moment.\"\ntt0241303,rGvIBT10JDU,Roux plays along with Anouk and pretends to eat a worm.\ntt0241303,xmwm0RH8i-4,Vianne defends the household when Josephine's abusive husband breaks in.\ntt0241303,PhkCGApLP30,\"Vianne invites Roux into her shop, and is surprised when her \"\"favorite chocolate\"\" routine doesn't work the same magic it usually does.\"\ntt0241303,xftZzmdlCKk,Vianne invites Roux to a party she's throwing.\ntt0274558,U-XEvzDp70Y,\"Laura receives a visit from Kitty, her upbeat neighbor.\"\ntt0274558,hPF9nzzuMfo,Laura and Kitty share an intimate moment when Laura consoles Kitty about her inability to get pregnant.\ntt0236640,UGYt7xZWoPw,Lizzie meets Noah at a Lou Reed concert where she tries Ecstasy for the first time.\ntt0274558,1PKDDa6p-xE,Leonard scolds Virginia for running off and reminds her of the reason he's so worried about her.\ntt0236640,xKL_T4z0QX4,Lizzie's epic writing binge becomes a concern to her friends and a serious hazard to her health.\ntt0274558,_f0TNK7fb1w,Laura represents Virginia's heroine as she verges upon killing herself.\ntt0236640,xsyNWPpAb14,\"After sleeping with Noah, Lizzie reveals to Ruby that it was her very first time.\"\ntt0274558,ajgeUrUcqfE,Clarissa shares with Julia her dissatisfaction with her present life and reflects upon a moment of happiness in her youth.\ntt0274558,CWAAUSNLZXQ,Richard and Clarissa discuss how his condition has affected her life.\ntt0274558,vWZapP8b11s,Clarissa visits Richard to take him to the party she's throwing him; Richard says goodbye.\ntt0274558,Qk_tn8K0OwA,Virginia's niece gives a dead bird a funeral and asks some big questions about death.\ntt0115632,DHkGu6e0R4I,Andy Warhol and Basquiat work on a painting together while discussing the impossible expectations that come with being a famous artist.\ntt0274558,JsUh_lfcyKk,Laura picks up Richie after deciding not to kill herself.\ntt0236640,HtpiEXXf7dI,\"A drunk and surly Lizzie acts out in front of her grandparents and her mother, Mrs. Wurtzel.\"\ntt0274558,kvHcswMy05A,\"Laura returns upon Richard's death, and confesses her story to Clarissa.\"\ntt0236640,l6SNAV2S5es,Ruby confronts Lizzie after learning that her boyfriend had an affair with her.\ntt0236640,UaRyn-tb0U4,\"After an awkward date, Lizzie and Rafe make love.\"\ntt0236640,2wy3acVALNI,\"Lizzie climbs her high horse and pontificates to Ruby about the virtues of \"\"real\"\" love.\"\ntt0285823,jAZbK72VLFA,El Mariachi finally gets revenge on General Marquez.\ntt1045670,KtGm2OkQa3w,Poppy and her friends share a laugh at her flat after a night of partying.\ntt0105236,zr5fCCcWRJ4,\"After killing and getting shot defending his partner, Mr. White discovers the truth about Mr. Orange.\"\ntt0105236,z0s6zZJdsZo,Tension mounts between Mr. White and Mr. Pink and only grows when Mr. Blonde arrives at the meeting point.\ntt0105236,HzF_TbmDH5s,\"Tension between Mr. White, Nice Guy Eddie and Joe over the loyalty of Mr. Orange leads to a violent Mexican Standoff.\"\ntt0175142,1ZT_oKZGgew,Buffy wins the beauty pageant after her acting ability is enhanced by the improvisational work of The Killer.\ntt0236640,EzW2MKQ5q4s,\"After seeing Rafe take care of his mentally retarded sister, Lizzie makes the bizarre accusation that he \"\"gets off\"\" on the misery of others.\"\ntt0105236,rLx1ABxely0,Mr. Pink and Mr. White discuss the heist and Mr. Pink recalls his escape.\ntt0340377,EyXDqVQ7MBc,Joe attempts to befriend Fin.\ntt0236640,Ad7rUGIPVqQ,\"At her doctor's insistence, Lizzie goes on medication for her depressive episodes. Meanwhile, Mrs. Wurtzel is mugged and beaten, as both mother and daughter hit rock bottom.\"\ntt0120577,Qxn6aafaNP8,Shane asks Steve to put some of his friends on Studio 54's list to get in.\ntt0236640,WyNGkhmkuus,\"Lizzie and her mother, Mrs. Wurtzel, share a heart-to-heart moment of reconciliation, grief, and guilt.\"\ntt0111512,2eMqB3CFMkI,Tsang challenges Fei-hung to a friendly fight for fish.\ntt0236640,AVKK_tDNQMc,\"Dr. Sterling catches Lizzie during a suicide attempt and, with her scowl, prevents Lizzie from killing herself.\"\ntt0261392,b2zQmmYEDY4,\"Marshal Willenholly corners Jay and Silent Bob in a scene reminiscent of \"\"The Fugitive\"\".\"\ntt0113158,3RLPHNi_2-A,\"Though rough around the edges, Sadie performs the Van Morrison song \"\"Take Me Back\"\" with raw emotion, and her entire heart and soul.\"\ntt0175142,sHTeguzrPto,\"Cindy shows off her ridiculous fighting ability as she proceeds to kick the living crap out of the killer, Matrix style.\"\ntt0175142,q9QJ_S62yVo,Drew bungles her way into the hands of death... but not before she shows off her killer bod.\ntt0120577,tfvoOEa1OOI,Steve tries to persuade Greg to give him fellatio on top of a pile of money.\ntt0175142,RBvtPZ6zyHI,\"As Cindy and Bobby get intimate, the Killer gets stoned with Shorty and drops a killer beat.\"\ntt0175142,A3oL7v7PLac,\"A spoof of the Budweiser \"\"Wassup\"\" ads from the late-90s.\"\ntt0175142,Sgwfvu6k0xs,\"Brenda's obnoxious movie-going habits are brought to a sudden end when the audience revolts, allowing The Killer to enjoy the show.\"\ntt0175142,T8oTlWwAPFI,\"Flooded by a sea of TV reporters, Shorty finds a captive audience for his eyewitness account.\"\ntt0175142,-zLOrCQ0BpQ,Buffy takes the notion of victim role-playing a little too far as she continues to prattle on after being brutally murdered.\ntt0175142,mw7xjHBJOvs,Gail gives a snot-filled apology to her cameraman's family after she gets him killed during an interview with The Killer.\ntt0306047,WUfY9jgSrLI,Busty Becca and Kate are haunted by a mysterious and unseen force.\ntt0120577,GhSSEuAEcm0,Shane and his friend Ricko try to get into studio 54.\ntt0175142,ZAerssgC4pc,The Killer's attempt at playing mind games with Cindy yields less than desirable results...\ntt0175142,Qpbf9NUuuUk,\"The Killer will murder anyone and anything, including a random, lowly victim at a generic house party.\"\ntt0175142,UlIBiZxArGY,Cindy and The Sheriff realize at the last moment that Doofy was the real killer all along.\ntt0306047,D9FBXb4G4GI,Hijinks ensue when Cindy commandeers Ross Giggins' teleprompter in order to let the populace know about the killer videotape.\ntt0306047,9iSVgAZ6bSM,George's rap battle victory is short-lived after he inadvertently reminds the audience of the Klu Klux Klan.\ntt0120577,9I0E9w8Nqfg,Steve introduces Shane to the other bartenders.\ntt0120577,vzt7Yb_-yiY,Shane and Julie discover they have more in common that they thought when they run into each other on Christmas Eve.\ntt0306047,zAeofWDUArU,\"Fearing that his daughter is kidnapped, Tom fights MJ to rescue her... only, it isn't really MJ that he's fighting...\"\ntt0306047,Fxx7g5nz4WQ,Cindy's mind-bending discussion with the Architect reveals a greater threat in the form of an alien attack.\ntt0306047,kSk0pCs4pGQ,Brenda messes with Cindy by faking her own injuries for her own gallows amusement.\ntt0104567,Qe_3aoChgwI,Yvonne and Johnny take turns shaving each other in the tub.\ntt0306047,viCosY2u6YU,\"The alien invaders turn out to be friends, and they have quite a bit in common with The President.\"\ntt0306047,mqnB2ef3S6M,Tom remembers his wife Annie's parting words as he holds her in his arms.\ntt0306047,umjmV3SwDjw,\"During an awards ceremony at the White House, the President becomes paranoid about aliens disguising themselves as humans. Instead of calming the American public, the President ushers in a wave of chaos.\"\ntt0113158,AIw6mK0Ob60,\"As Sadie finishes up the song \"\"Take Me Back,\"\" Georgia joins her on stage to sing back-up harmony.\"\ntt0858479,o1mDknOtAv4,Janet's unexpected presence at Christmas dinner receives a mixed response from the Wetherhold family.\ntt0113158,Ji28PrD7P-M,\"At a benefit concert hosted by Georgia performs the Van Morrison song, \"\"Take Me Back,\"\" with raw emotion.\"\ntt0120613,SnMSSAqPSaw,Alison confronts Pearl about her immature behavior at Woodstock.\ntt0306047,oiikIyodOAk,Aunt ShaNeequa loses her temper when the ghost in the TV starts to cop a serious attitude.\ntt0307987,Q1MHXYx2820,\"After Willie collapses in a drunken heap, Marcus and Gin argue about how to handle the situation.\"\ntt0120613,u83fkqXPIGE,Pearl tries on a tie dye blouse and Walker gives her his number.\ntt0240890,gJvgjH9Tvpo,\"Jonathan and Sara finally share their first kiss, knowing in their hearts that they're right for each other.\"\ntt0120613,xaCe8T1fXSM,Pearl returns from Woodstock to find Marty waiting for her with a lot of questions.\ntt0120613,KerwQ_DokIw,\"When Alison gets her first period, her grandmother Lillian slaps her, following family tradition.\"\ntt0120613,c_a5Y18mdLo,\"Pearl calls Walker to arrange a date to watch the moon landing, while Alison tries to convince her mother to let her go to Woodstock.\"\ntt0120613,HZkrxGuKHkU,Pearl and Marty find that making out in the car is not as easy as it used to be.\ntt0120613,0IxeTLiovq8,Both Pearl and Alison find themselves reveling in the freedom of the Woodstock music festival.\ntt0858479,tPnacrrdjIk,Janet spells out for Lawrence his rudeness and self-absorption on their first date.\ntt0120613,YzW2OjTJc0o,Walker seduces Pearl as Neil Armstrong takes his first steps on the moon.\ntt0114194,0iz6-4QxGnc,\"As they search Gabriel's lair, Dagget and Katherine are stricken with a vision of war, as thousands of angels lie dead before them.\"\ntt0114194,ugw3DUIVKow,Dagget and Katherine rescue young Mary from Gabriel's grasp moments before she is torn apart.\ntt0858479,zD0YTr7ZF58,\"Lawrence's adoptive brother, Chuck, drops in to volunteer to be Lawrence's driver while he recovers from his seizure.\"\ntt0858479,JQc_dMcByUk,\"Vanessa visits her father in the ER, where he quizzes her on SAT words.\"\ntt0858479,9pT5FVBFunA,\"Lawrence gets a second chance with Janet after the previous bad date, this time with more success.\"\ntt0858479,j1dkwnqffaM,Lawrence's underachieving brother criticizes the poor choices Lawrence has made.\ntt0120613,1n4wtaSq7AY,Marty wonders who prevented Pearl from making a change in her life.\ntt0858479,a9eT3NaWLPw,Chuck makes amends with Vanessa after their relationship had become awkward over a drunken kiss.\ntt0120679,wyKfuDzbbOI,\"In this unique collage-style sequence, Frida and Diego arrive in New York City.\"\ntt0120613,bTdvsBKjlbE,\"Marty assures Alison that even if her birth was an accident, it will always be the most important moment in his life.\"\ntt0105488,8W3_WigxsXs,Scott Hastings prepares for the luxurious Pan-Pacific Grand Prix Dancing Championship.\ntt0105488,csfyEVjimu4,\"When Scott becomes boxed in, he resorts to \"\"crowd pleasing steps,\"\" against the will of him family, his coach and his dance partner.\"\ntt0240890,BHFoI47tc9A,\"After losing his potential soul mate, Jonathan reads an early 'obituary' about himself, written by his best friend Dean as means way to create inspiration in his life.\"\ntt0105488,lIzqZwDHis4,Les Kendall and Liz try to talk Scott out of his wild and inappropriate steps.\ntt0105488,guq6F4Jm5Rs,Fran professes to Scott her desire to be his partner after she witnesses him dancing alone.\ntt0114194,o-rVEtR9rfQ,\"In his search for the missing soul, Gabriel interrogates and tortures the angel Simon, his former comrade in arms.\"\ntt0105488,K-zYWpnMyXI,Scott auditions new partners despite the fact he knows Fran is the one he wants.\ntt0114194,D1kIRqy-sbA,\"Sensing a threat to her school kids from Gabriel, Katherine confronts him directly about his motives.\"\ntt0105488,WRx0b993Lj4,Scott and Fran practice for the Pan-Pacific Grand Prix Dancing Championship.\ntt0114194,T1Z39yM9AVk,\"During a visit with the county coroner, Dagget discovers a series of strange details about the mysterious corpse that was found at an apparent routine crime scene.\"\ntt0114194,ChIS70dX0eU,\"As Dagget translates an ancient passage from the Bible, the archangel Gabriel begins his search for Simon.\"\ntt0114194,mPoyezWAghE,Lucifer appears before Katherine and tells her why the angels have always hated the humans.\ntt0105488,O6IMaR_G_sU,Barry Fife inaccurately describes the tragic tale of the downfall to Scott's parents' dance career.\ntt0105488,IzOtTXOVc9A,Scott and Fran spontaneously begin to dance together before he is to meet his new partner.\ntt0105488,xwsTm8Xo7kE,\"Fran's Spanish family introduces Scott to the exotic dancing style of \"\"Pasodoble\"\".\"\ntt0114194,ix08f9qDkk8,\"After Dagget rejects Gabriel's offer to join his cause, Gabriel reveals to him the true reason for his unholy actions.\"\ntt0105488,RATBzjmcbh8,Scott and Fran make a dashing introduction to the Pan-Pacific Grand Prix Dancing Championship.\ntt0114194,2tQUU1c6MIw,Lucifer destroys the archangel Gabriel by ripping out his heart.\ntt0114194,ragJxrFknuQ,Gabriel proves to be quite menacing as he intimidates Dagget in a church.\ntt0114194,uc7tYT1-Y78,Simon engages in hand-to-hand combat against a mysterious and powerful foe.\ntt0120577,uC1Lmk5qK2Q,Anita gives disco lessons.\ntt0105488,B4Us9Mq7GIc,Scott learns the style of Pasodoble from Fran's Spanish family.\ntt0120577,XTfUTOcdkqY,\"After serving time in jail, Steve hosts a welcome back party for his friends.\"\ntt0308644,b3EWsHg08x4,The Davies brothers' grim and controlling grandmother provides J.M. Barrie inspiration for the character of Captain Hook.\ntt0120577,N0gaRYJH5GE,Disco Dottie collapses during Anita's debut song on New Year's Eve.\ntt0120577,qKerIOG7jdI,Shane discovers he got the clap. Look out for the Ron Jeremy cameo.\ntt0120577,Y0FAYOIt-VQ,Shane and Anita attend an upper class dinner party.\ntt0120577,qmBAF_JTwDs,Steve unveils an act in honor of Truman Capote.\ntt0301199,ntALVSmIUrg,Okwe discovers a heart in the toilet of one of the hotel rooms.\ntt0120879,t9iFa_dTcN0,\"Arthur attends a concert celebrating the \"\"death of glitter\"\", opening with the song \"\"20th Century Boy\"\".\"\ntt0340377,HYUfT__t3jU,\"Olivia welcomes Fin to the neighborhood by offering him a \"\"housewarming/sorry I ran you off the road\"\" gift.\"\ntt0111512,eN7zGm5KKrI,Fei-hung showcases his drunken boxing technique to Fu Wen-Chi.\ntt0104567,wqvnT7u0mSg,Johnny is thrilled when a pair of black suede shoes drop out of the sky.\ntt0261392,6n6RVIIC8SE,Jay and Silent Bob disguise their monkey as a boy to evade the Wildlife Marshal.\ntt0247425,CzaHTATaPAc,Matt explains the sociopathic behavior of lobsters.\ntt0104567,MGiNXAG0gjw,Johnny returns with Darlette to her apartment despite the fact that she has a boyfriend.\ntt0104567,IIoBuBiTfS4,Johnny sings a song for Darlette and denies to Deke that he's in love.\ntt0120679,ToZx1LjLmrM,Tina Modotti toasts Diego and Frida's radical marriage.\ntt0120679,HadRbtEI7KU,\"Following her separation from Diego, Frida cuts her hair.\"\ntt0104567,5k2vzUZYdfw,Darlette breaks up with Johnny when he questions her relationship with an abusive boyfriend.\ntt0120679,s9jX0S7mvB8,\"Frida admits her affair with Leon Trotsky to Diego, then berates him for his infidelities.\"\ntt0104567,5wThW2AGZw0,\"Yvonne sits in on a rehearsal with Johnny and his band, featuring B-Bop on bass.\"\ntt0104567,-9xP6hMwNy4,\"Johnny spends the night with Yvonne, who has some specific requests in bed.\"\ntt0104567,pEjOIBe21a8,Yvonne flips out at Johnny and forces him to admit his true feelings for her.\ntt0104567,D0NZyQWyZfI,Johnny admits to cheating on Yvonne when a pair of panties falls out of his pocket.\ntt0104567,x0KnLMaLLcI,\"Johnny runs into Freak Storm, who sings him a deeply personal song.\"\ntt0104567,lGIEwdZTNRQ,Freak and Johnny discuss ways to break into the music industry.\ntt0301199,yhf9YADtuyA,\"While searching for anything suspicious in the room he found the heart in, Okwe finds himself peering in on Juliette and her John.\"\ntt0104567,JcvSNsyvwNc,\"Johnny runs into Freak, who offers Johnny a chance to stay at his place with his new girlfriend Darlette.\"\ntt0105236,VtkM2SPaSJ8,Mr. White and Mr. Orange go over the heist.\ntt0301199,4_4HFkbbbC4,Okwe and is co-workers save Senay from Immigration Officers.\ntt0301199,2ZDDIJV5ypc,Okwe and Senay get to know each other over a Nigerian dinner.\ntt0301199,irnb55gfwNc,\"After completing the surgery, Okwe and the others trade the kidney with their mysterious business partner.\"\ntt0301199,ZJhHYsmJra0,Senay bites her boss's genitals when he makes her preform fellatio.\ntt0301199,EmTXI8HV9nE,\"Okwe and Senay set up Juan before the \"\"surgery\"\".\"\ntt0301199,83twDFjlCjM,\"Senay considers offering her body to the black market after being raped by her boss, despite Okwe's warning.\"\ntt0301199,g05Ja_89tOg,Juan persuades Senay to have sex with him for her passport.\ntt0301199,GL2B4xLAjE4,Okwe tries to convince Senay that for their kind there is only survival and dreams can be hopeless.\ntt0105488,qjKhJnrMamA,\"When the plug is pulled on the music, the croud makes their own beat to encourage Scott and Fran to continue dancing.\"\ntt0301199,wek_o4V_T00,Juan tries to force Okwe to preform surgery on one of his clients.\ntt0113326,s0EAZmF0k6g,Keung gets chased into a parking garage by Tony and his gang of bikers.\ntt0105236,NRd2gti9rHE,\"Mr. Brown explains how Madonna's \"\"Like a Virgin\"\" is a metaphor for the pain a sexually experienced woman feels when an abnormally large penis penetrates her. Meanwhile Mr. White gets fed up with Joe's address book.\"\ntt0105236,Eb5uCh-8rZ4,Mr. Pink explains his reluctancy when the crew is asked to throw down a tip for their waitress.\ntt0105236,4W5KhfJHF_4,Not everyone on the team is happy with the colorful aliases Joe gives out to the crew.\ntt0105236,PGqB6JIUzBo,\"Mr. Blonde moves to the beat of \"\"Stuck in the Middle With You\"\" on K- Billy's Super Sounds of the 70's before cutting off Marvin's ear with his razor.\"\ntt0105236,z8oaq50tGRI,Mr. Orange intervenes before Mr. Blonde can ignite Marvin.\ntt0301199,fPUJS7w4Dag,Okwe says his final goodbyes to Senay as she boards the plane to New York.\ntt0117283,P5GNspEWA68,Scott breaks the game plan to make Tom look good.\ntt0077594,Zx8vIjEKvT8,Billy Lo begins his epic fight with the towering Hakim.\ntt0110889,-zPjGsII_fw,Members of the congregation get riled up when Father Pilkington returns to Mass after being outed by the press.\ntt0077594,fQBlpIivzY8,Billy Lo triumphs over Hakim by choking the life out of him.\ntt0077594,f3_39H9_3Qw,Billy Lo engages in a hand-to-hand fight against a formidable hapkido master.\ntt0077594,OIBtFHZy0xk,\"On the set of his latest action movie, Billy Lo is shot by a would-be assassin during a take. Tragically, this scene would prove to be a premonition of the death of Bruce Lee's son, Brandon Lee, on the set of The Crow two decades later.\"\ntt0077594,5N0ifKLehLM,\"Billy Lo learns that The Syndicate are serious people, and that Hakim is their most dangerous and ruthless enforcer.\"\ntt0077594,SnpNDM1XeZY,Billy Lo overwhelms Pasqual with his speed and fury.\ntt0077594,lYb1h0iDWSE,Miller and Lo Chen rough each other up in the ring.\ntt0077594,H98MLmW5tYw,Billy Lo and Pasqual engage in an intense fight with nunchakus.\ntt0077594,qslhUrtrjXQ,\"Miller knocks out Lo Chen, defending his title as World Champion.\"\ntt0113326,y69iLU9cSyo,Keung watches from above as two rival bikers threaten to wreck the limo intended for his uncle's wedding.\ntt0113326,l2IJxv1lbAc,Keung springs into action when Angelo and his thugs cause trouble at the market.\ntt0120577,qPfLNjGXa2M,Greg catches Shane and Anita flirt.\ntt0113326,NBG53Xzikp8,\"Backed into a corner, Keung withstands a brutal onslaught of glass bottles from Tony and his gang.\"\ntt0113326,5TIiQZo6snc,\"Keung helps a woman in distress, only to learn that he's been lured into a trap.\"\ntt0113326,Uo18enRpmG4,\"When Keung is discovered hiding in a truck full of balls, his only choice is to jump to safety.\"\ntt0113326,xfTtfDBUrvA,Tony calls for an end to the fight once he realizes that defeating Keung is impossible.\ntt0113326,6ZZHQMtbhxw,Keung walks right into trouble when he enters the gang's hideout and challenges Tony to a fight.\ntt0113326,IUodLjwwSBU,Keung chases White Tiger's gang onto a hovercraft before getting dragged behind it.\ntt0110889,dMxAYJDzSls,\"Father Pilkington breaks down in tears when Lisa, a girl he believes he failed when he did not report her abusive father to the authorities, comes forth to recieve communion from him during his first Mass as an open homosexual.\"\ntt0113326,mqzu3AI7Dow,Keung uses an antique sword and a wrecked Lamborghini to take out the hovercraft and catch the bad guys.\ntt0113326,ZWrv3l_2tGQ,\"The hovercraft continues its rampage on land, running over both Keung and a Lamborghini.\"\ntt0113326,PpD6HmPdadI,Keung finds White Tiger on the golf course and takes him out with the hovercraft.\ntt0110889,la1tZNwaBog,Father Thomas preaches on the hypocrisy and corruption of his Church.\ntt0117283,vlqQwxeYtr8,\"Tom tries to make a move on Julie at the end of the night, but it goes bumpier than he'd hoped.\"\ntt0110889,L5xFe4LFtb4,Father Pilkington attempts suicide after the newspapers out him as a homosexual.\ntt0111512,eG9QMl_w1pk,\"When Wong Kei-ying threatens to beat Mrs. Wong for letting Fei-hung drink and fight, Mrs. Wong avoids it by pretending to be pregnant.\"\ntt0110889,evzxQrEfIG8,Father Pilkington argues with Jesus while Mrs. Unsworth discovers the horrifying truth about her husband.\ntt0110889,nCO2V7YS1nQ,Father Thomas preaches on humanity's responsibilities to the ongoing evolution of our creation.\ntt0110889,xMy-NiI7q-M,Father Thomas and Father Pilkington argue over their responsibilities to their congregations.\ntt0299977,RJAU3K60wIk,\"The King figures out Nameless' plan of assassination, given away by the candles' flames, but it may be too late.\"\ntt0111512,RF9vhf_r81w,\"Fei-hung overpowers Henry after consuming the \"\"perfect amount\"\" of alcohol.\"\ntt0111512,jXA-4rN9-ds,Fei-hung and Henry throw down in the mines.\ntt0111512,F85KoecJotw,Fei-hung and Fu Wen-Chi are attacked by the axe gang.\ntt0111512,C02zRnebZu0,Henry orders his thugs to stop Fei-hung.\ntt0111512,N_vildqkupI,Fei-hung battles a menacing henchman using chains and fire.\ntt0105236,6w-07V2q_DE,\"Mr. Orange finally gets the opportunity to recites the commode story he has been rehearsing, which is so convincing it practically tells itself.\"\ntt0111512,8LGY68ppqVk,Fei-hung and Fu Wen-Chi use a bamboo to escape the axe gang horde.\ntt0120679,06u-a5jmi6o,Frida and Tina Modotti dance the tango together.\ntt0111512,_mSvR3aQeWU,Fei-hung and his step mother name the various styles of Fei-hung's moves before his father interrupts.\ntt0111512,Nlyai-wfZLw,Fei-hung uses his step mother's liquor to defeat purse snatchers using his drunken boxing technique.\ntt0111512,FAY2LYoYCAU,Fei-hung attempts to stop a thief before his train leaves.\ntt0213847,HN-YqWQ3PEE,Renato speaks his first words to Malena.\ntt0117283,Wvyi2PEVFcQ,\"Tom freaks out when his high school crush, Julie DeMarco, shows up, and hassles Scott for his shirt.\"\ntt0104558,CIAyyugbq54,Jackie Chan and his co-actors barely survive the film's craziest stunts in Jackie's trademark credit sequence.\ntt0355295,dp4qnnVSk8Y,Will and Jake barely escape the enchanted forest.\ntt0117571,qe_BzGXRDzo,Principal Himbry meets his untimely demise at the hands of the Ghostface Killer.\ntt0105236,vp94AFms0V0,\"When the heist goes bad, Mr. White gets out by tagging a couple of cops and Mr. Orange falls deeper into his cover than he ever expected.\"\ntt0117571,NdYmIIbYoH0,Tatum's desperate attempt to escape the Ghostface Killer is met with crushing consequences.\ntt0117571,mvLpbHKV1_8,Randy breaks down the do's and don'ts of surviving a horror movie to his less than interested audience.\ntt0117571,gwnFTbQVOwM,Sidney's escape from the Ghostface Killer is only momentary as he murders Kenny the cameraman right before her very eyes.\ntt0117571,zyVKJXfRm_g,Billy and Stu reveal themselves as the Ghostface Killer to Sidney.\ntt0211915,maEC9NS6CkA,\"Raised by neurotic parents, 6-year-old Amelie becomes introverted and imaginative.\"\ntt0117571,kR3VW07XfUo,Billy and Stu Matthew Lillard) lay out the final touch of their master plan as Sidney watches helplessly.\ntt0117571,CiT-XIWEC8c,Sidney gives the killers a taste of their own medicine as she dons the Ghostface mask.\ntt0117571,xCMsK2duu2s,Sidney and her friends discuss the gory details of another student's recent murder.\ntt0118842,iaofBseh0J8,Silent Bob ends his reticence and dispenses some useful advice to Holden based on his own painful life experience.\ntt0211915,Wuntz3KDIAk,\"Suddenly compelled to help mankind, Amelie helps a blind man walk across the street and narrates the sights of the boulevard.\"\ntt0117571,LWxSBbBX4fs,Casey gets a menacing phone call from a stranger who happens to be a fan of scary movies.\ntt0211915,kORHCVmSucM,\"Collignon is mystified by the changes Amelie has made to his apartment, which include switching out his slippers for a smaller size, switching his light bulbs for dimmer ones, sticking a needle in a cord, changing his speed dials, and adding salt to his liquor.\"\ntt0117571,gVgsadEybgQ,Casey is brutally murdered by the Ghostface Killer.\ntt0117571,v1M3w_o7cOc,The killer manipulates Casey into giving the wrong answer to his deadly trivia questions.\ntt0117571,p8Ejl4eeFXM,\"After being attacked by the Ghostface Killer, Sidney falls into the embrace of her boyfriend Billy, only to be disquieted by what she finds next...\"\ntt0118842,1EbSU5Zyx9Y,\"When Banky gets in Holden's face about chasing Alyssa, Holden reveals that he's falling for her.\"\ntt0211915,vTbcPIKxmP0,Mr. Dufayel encourages Lucien to create monikers for the cruel Mr. Collignon.\ntt0118842,l4AmSVb6Hew,Holden and Banky mess with their friend Hooper X as he gives his keynote speech.\ntt0211915,26MkbK_C-lM,Amelie relishes being close to Nino on the ride at which he works.\ntt0211915,hVnFKJJYLPA,\"After sending Nino on a scavenger hunt for his photo album, Amelie gives him more clues via pay phone.\"\ntt0211915,bQutB3mYc84,\"Connected by fate but having never spoken, Amelie and Nino share their first kiss.\"\ntt0211915,Inj01auwE9c,\"Nino goes to The Two Windmills to meet Amelie as she instructed, but she is too shy to talk to him.\"\ntt0211915,mbTZ4ywa1Dc,\"The people Amelie helped are in a better place in their lives, as is Amelie herself - she rides blissfully on the back of Nino's bike.\"\ntt0118842,g1JAILio6-s,\"After Alyssa explodes at Holden for professing his love to her, she runs back to him and they share a passionate kiss in the rain.\"\ntt0118842,atGNvojXOvM,Holden professes his love for Alyssa.\ntt0118842,cxWRWbdsTjc,\"Banky tells Holden that Alyssa's nickname of \"\"Finger Cuffs\"\" originates from an X-rated story.\"\ntt0118842,_eCWpUV7cOI,Banky and Alyssa debate the epistemology of what it means to f**someone.\ntt0118842,epHCMiCtt3M,\"Banky flips his lid after an annoying fan gets in his face about being \"\"just a tracer.\"\"\"\ntt0118842,OmQGN9X57Ts,\"Much to Holden's chagrin, Banky and Alyssa one-up each other with stories from their past sexual encounters -- a direct reference to this famous scene\"\ntt0118842,Iqc8WWvcTN4,Alyssa educates Holden about lesbian sex and about her attraction towards women.\ntt0118842,_undGtyUxeg,Holden breaks off the relationship with Alyssa after learning about her lengthy sexual history.\ntt0307987,wVWk6IfRuEE,\"The non-confrontational Bob Chipeska asks Gin, his head of mall security, to find a way to get Willie fired.\"\ntt0247425,V9K9m155U2E,Ruth accuses Matt's leniency with their son to be the cause of his death.\ntt0118842,Pe7G8iCN_nM,\"Holden suggests that he, Alyssa and Banky have a three way in order to share an intimate experience together and to repair the relationships that have been fractured.\"\ntt0307987,Z0W6ufDtdS8,\"Held at gunpoint by Marcus, Willie is at his most desperate as he contemplates the last moments of his life.\"\ntt0307987,Tt8DoNerIPY,\"Having caught on to Willie and Marcus's con game, Gin leverages a deal for half of all their earnings.\"\ntt0307987,1LxDWSYgiUc,\"Enlisting the help of Marcus, Willie tries to teach The Kid the basics of self-defense... which then goes horribly wrong when everyone gets hit in the balls.\"\ntt0247425,JuQmiyLzHdw,Matt visits his son at the docks and discusses his future prospects.\ntt0247425,gXJH5jhO9to,Carl discusses the unfortunate case against Richard to the Fowlers.\ntt0247425,R1G5HwXEw9M,Matt and Ruth go through their own moments of grief at their son's wake.\ntt0247425,JqyCEV_iACo,Richard murders Frank when he comes for Natalie and his children.\ntt0247425,PhXFRRVBKus,The defense attorney sets Natalie up to admit she did not witness the murder.\ntt0247425,xE9YSmsKm8I,\"When Matt suffocates the air out of his first poker game since his son's murder, Henry recites \"\"My Lost Youth\"\" by Henry Wadsworth Longfellow.\"\ntt0307987,b1eMAFWXZ4Q,\"After meeting Willie and Marcus for the first time, mall manager Bob Chipeska is left deeply perturbed.\"\ntt0307987,AKONPxrqFxs,Willie and Marcus browbeat Bob Chipeska into keeping their mall Santa jobs.\ntt0247425,bZq6Gv7rP0w,Ruth runs into the two people involved with her son's death on the same day.\ntt0247425,zFo_QE8j1Hs,\"Matt acuses his wife, Ruth of being an overbearing and unforgiving mother to their now deceased son.\"\ntt0116324,bw4xDTQYIfE,\"As Ed complains about the smell of cheese, and Pearl shows off the wonders of a bra, Mel tries to introduce Tina to his parents.\"\ntt0307987,Auq9e3lBq6I,\"After engaging in some casual sex with Sue, a barmaid, Willie is accosted by a crazy man in the parking lot.\"\ntt0247425,vcsl8fSgqls,\"Matt leads Richard out to a cabin, where he shoots him in cold blood.\"\ntt0116324,UnXDK24wbSg,\"Agent Kent makes a move on Nancy in the bathroom, while at the dinner table, the Schlichtings inform their biological son Mel that they went to prison for distributing L.S.D. back in the sixties.\"\ntt0307987,VJOO-fcRLzk,\"In order to keep a low profile, Willie shacks up at The Kid's house. Delighted by the fact that Santa is staying over, The Kid asks him a slew of questions about what it's like to be Santa Claus.\"\ntt0307987,qUu8VHynw40,A portly Kid gets under Willie's skin by asking him one too many questions about being Santa Claus.\ntt0116324,l83CcqhP-kY,\"While engaged in a flirtatious game of indian wrestling with Tina, Mel accidentally breaks Valerie's glass shelves with all her precious glass animals.\"\ntt0307987,EKd7z5CY4BU,The Kid seeks Willie's advice after he gets humiliated by some bully punks.\ntt0307987,IHR5ljAFCGE,Willie receives an unexpected present from The Kid.\ntt0116324,36QmLon8dn8,\"Mel meets the twin sisters Jane and Sandra, and learns that a mistake has been made by Tina in that Valerie is not his biological mother.\"\ntt0116324,iF_053JQnQE,\"When Fritz points out that Mel looks quite Jewish, he realizes that Mel is not his son, but must be the son of an old friend nicknamed \"\"needle dick.\"\"\"\ntt0116324,CDn1rXzkBEM,A brief but heated make-out session with Tina leaves Mel with a pup tent which is impossible to hide in front of his wife Nancy.\ntt0116324,_kItBZZK1p0,Paul has an L.S.D. freak out when his quail is dosed by Lonnie.\ntt0116324,yjU5akwca64,\"Discovering a taco place, the Coplins make a blind u-turn which leads to a car accident with the Schlichting family.\"\ntt0116324,nNXIh6RrvNw,\"Mel walks in on Agent Kent licking Nancy's armpit. Meanwhile, Mary tries to calm Paul down from his L.S.D. freak out.\"\ntt0115639,4K8M2EVnoKc,\"While shoveling snow, Willie meets his precocious thirteen-year old neighbor named Marty.\"\ntt0115639,E8LYvflSTAE,The guys are immediately smitten when Andera walks through the barroom doors. They each try to impress her in their own way.\ntt0115639,DPQ47h-k-nw,\"Willie plays the piano while leading the bar in a drunken rendition of the song \"\"Sweet Caroline.\"\"\"\ntt0115639,RqCVbiHCYAA,\"Shopping at a drug store with Willie and Tommy, Gina goes on a rant about men's obsession with models and the objectification of women.\"\ntt0115639,M-h1ERyxbQ0,Marty flirts with Willie while ice skating.\ntt0115639,tMIO48oFmHc,A drunken Willie obsesses over his crush of a thirteen year-old neighbor with his friend Mo.\ntt0115639,n1BXpNTsoB8,\"Willie puts on a boozy, piano playing persona to casually hit on Andera.\"\ntt0115639,Uyo69utc9bM,Paul explains his obsession of hanging photos of beautiful girls and models on his bedroom walls to Willie.\ntt0115639,F4T2_xFNAqs,\"Willie ranks girls on a scale of one to ten on such traits as face, body, and personality for Kev and Mo.\"\ntt0115639,ITfoGnAkw4I,Willie and Andera share a late night drink while ice fishing to discuss dating and romance.\ntt0115639,2Vam2a4r9vo,Willie spots Marty putting away her sled next door and tells her that they should stay in touch.\ntt1045670,xIbilLMZLHw,Poppy attends her first flamenco dance lesson led by an eccentric teacher.\ntt0261392,r2NHTRgH3G0,Jay and Silent Bob discover the Internet while checking in at a Mooby's for breakfast.\ntt0261392,-ftyIj2_b8Y,Jay and Silent Bob run into trouble on multiple film sets while trying to escape the Miramax lot with their monkey.\ntt0416508,k59rG0r-sqI,Tom and Jane finally profess their feelings for one another.\ntt0416508,EeEhcPAOGUo,Jane and Tom exchange witty observations about one another while they share a dance.\ntt0416508,DiIgAES9zt0,Tom flirts with Jane and suggests that she must widen her horizons in order to become a great novelist.\ntt0261392,waE1U01kwxY,\"The Indomitable Jay and Silent Bob spend another day in front of the Quick Stop, their designated hang out spot since birth.\"\ntt0416508,NnEKQD1fS20,Jane and Judge Langlois get off to a rocky start when they disagree on the implications of irony.\ntt0261392,diFDBNNmnnU,\"Jay and Silent Bob run into an experienced Hitchhiker, who gives some friendly advice.\"\ntt0261392,uPwo-nHWQaM,Jay sets up Brent by outing him as a dirty sheep lover.\ntt0416508,c8qfaEdYBJ0,\"Jane calls off their elopement, as she has just found out that it would mean the demise of Tom's family.\"\ntt0416508,xqD1y_cJAaM,\"Ever the rebel, Jane cuts into the cricket game, and ends up making a home run.\"\ntt0261392,1uLzZVSIo1U,Reg Hartner and Wildlife Marshal Willenholly update the public on the C.L.I.T. and their stimulating movement.\ntt0261392,nnESedN4vSI,Jay and Silent Bob try to sabotage Matt Damon and Ben Affleck on the set of Good Will Hunting 2: Hunting Season.\ntt0120879,mYZGSfnk144,\"Brian Slade sings \"\"Tumbling Down\"\".\"\ntt0261392,PYJFzOzpwHo,Jay and Silent Bob face off against Cocknocker on the set of the Bluntman & Chronic movie.\ntt0113158,3KoW7h3Auf4,\"At the airport, Sadie has a meltdown when she's informed she cannot board the plane without wearing shoes. A kind stranger helps her out.\"\ntt0416508,8LM8A67uo_M,\"Furious that Jane has rejected Mr. Wisley's generous proposal, Mrs. Austen warns her against ending up a poor, old maid.\"\ntt0436697,KcINC5YSNbE,\"The Queen opens up to Tony Blair for the first time, allowing their relationship to strengthen and build for the future.\"\ntt0261392,kDnCoiYKmtw,Tension mounts for the whitey crew with Chaka Luther King taking control of the set.\ntt0416508,XVOsO0E1E34,Tom returns to Jane to propose they run away together.\ntt0120679,kQ6BSOZ0VGQ,Frida's post-crash operations are portrayed in a stop-motion sequence with skeleton doctors.\ntt0416508,OOMIZUsKlmg,Jane shares a moment with her sister before eloping with Tom.\ntt0416508,G5qjWjkpUaI,\"Jane reunites with Tom after 20 years, and meets his daughter whom he has named after her.\"\ntt0115632,Vjiy9rCG-yU,\"While shooting some hoops on the playground, Benny discusses the traps and pitfalls that fame can lead to for an artist with his friend Basquiat.\"\ntt0115632,vXvHja7vtoU,\"At a local diner, Basquiat draws a portrait of the waitress Gina on the tabletop using syrup.\"\ntt0115632,oKcbalkmH_Y,The Electrician gives some wisdom and encouragement to a twenty-year old Basquiat. Basquiat introduces himself to fellow artist Albert Milo.\ntt0115632,gsJlkWp0p90,Basquiat follows Andy Warhol and Bruno into a restaurant to sell them some of his artwork.\ntt0355295,iHWOj17ISfk,Jake destroys the Queen by destroying the magic mirror.\ntt0115632,Z-5JqDEHfe8,\"Basquiat's gallery opening is a big success, but the seeds of self-destruction are beginning to blossom. Gina and Big Pink - both Basquiat love interests - have an uncomfortable run-in.\"\ntt0115632,DiAtgmRa6fc,Basquiat paints several pieces in his new basement space.\ntt0355295,MRs1EBoZQ7c,Jake gives Angelika the kiss of true love and she gives hers to Will.\ntt0355295,ovV34LOq9Q8,Will and Jake try to control enchanted knives that are trying to kill them.\ntt0355295,TRAlGwGvlXs,\"Angelika realizes that her father, the Woodsman, is under the Queen's control.\"\ntt0115632,qM8jk56Vj9Y,\"A fancy dinner at Mr. Chow's falls into chaos when Rene, intoxicated and jealous, crashes the party in front of Basquiat, Andy Warhol, and Albert Milo.\"\ntt0355295,9yPj41sNdn8,The Queen tries to seduce Jake to her will.\ntt0355295,PR9wl4Qve5E,A mud monster attacks Sasha and carries her away.\ntt0355295,JDN_C4L6Bjg,Jake asks Will to help him get to the bottom of the story.\ntt0115632,F3H_X9-yFZA,\"At a lunch date with Gina, Basquiat - out of insecurity and anger - picks up the tab for a table of white businessmen unbeknownst to them.\"\ntt0115632,1BZoajBwbac,An Interviewer probes into Basquiat's background and family upbringing.\ntt0355295,g3hYbDHwBJY,Will and Jake convince the General to let the girl live.\ntt0338096,48jtU38CZS4,Katey and Javier practice for the competition.\ntt0355295,nYhuIXk_CPk,Will and Jake realize that the forest is enchanted - and not in a good way.\ntt0363226,2tKQW10sje4,\"As geisha Okinu plucks the shamisen for her brother, Osei -- who is also disguised as a geisha -- she reminisces to a time when Osei was a child performing the same dance. The memory leaves Okinu with a quiet sense of sorrow because she knows that her brother had to learned the dance in order to make money as a child prostitute.\"\ntt0108148,UWyzrr2ch5s,\"Master Fox and his troops surround Governor Cheng, but their efforts are no match for the Iron Monkey.\"\ntt0338096,DnFk_dGSL5M,Katey visits Javier at the chop shop to ask him to be her partner for the latin ballroom competition.\ntt0355295,EDyDOkeEge0,Will and Jake introduce themselves to the paranoid people of Marbaden.\ntt0270288,4jv8ZCoQyZE,\"A naked Chuck stands by the refrigerator looking for a late-night snack, and meets the charming and vibrant roommate named Penny. The two hit it off immediately.\"\ntt0115632,LABD2un-vIs,Gina wakes up to discover that Jean-Michel has painted all over her new dress and her paintings.\ntt0108148,X11uEGRnCDs,Wong Fei-Hung unleashes his kung-fu on some hooligans for the first time outside of his father's sight.\ntt0115632,VkGD-6ebYJ8,Jean Michel tells a dream about a locked-up prince who wore a magic crown which produced the most beautiful sound that could be heard when he banged his head against the iron bars.\ntt0108148,99h9RG7Rfp4,Wong Kei-Ying is ambushed by students of Shaolin while on his search for the Iron Monkey.\ntt0108148,u5AzB4EGGpc,The Iron Monkey is set up when he tries to release wrongfully imprisoned citizens and is forced to fight Wong Kei-Ying.\ntt0108148,vvd0meL8260,\"Wong Kei-Ying and his son, the folklore hero Wong Fei-Hung, are met with hostility when they arrive in town.\"\ntt0108148,DF2dkoIOm0o,Hiu Hing unleashes the poisonous Buddha's Palm blow on the Iron Monkey before unsuccessfully attempting to finish him off.\ntt0270288,a-VqYtkvmzw,\"Chuck gets creative inspiration for a new television show called \"\"The Dating Game.\"\" His pitch is successful, and the pilot episode is made.\"\ntt0108148,kzrHg5GOvXE,The Iron Monkey is set up by traitorous Shaolin Monks who plan to bring him down.\ntt0108148,bC3oNsbOyWY,Wong Fei-Hung defends Miss Orchid from the traitorous Shaolin Monks.\ntt0108148,yJ1hoVGPxCY,Miss Orchid battles a dozen guards to defend young Wong Fei-Hung.\ntt0108148,4865Vc0ptnk,The Iron Monkey and Wong Kei-Ying team up to defeat Hiu Hing on top of burning poles.\ntt0270288,uOnIqWuSCIk,\"Having to sit through several bad folksinging auditions leads Chuck to the inspired idea for his next hit television show...\"\"The Gong Show.\"\"\"\ntt0160862,GdrDuVImE2c,Zack and Laney share the last dance of their prom night - and the first dance of their relationship - in her back yard.\ntt0134119,p2Md_248enw,Tom creeps out Dickie with his impression of Dickies father before revealing his true intentions in coming to Italy.\ntt0160862,bg9SuuzPdVE,Laney must deal with the popular kids when they interrupt her and Zack's beach date.\ntt0270288,qYXoNC_LbcI,\"At a lounge in Helsinki, Finland, Chuck meets his contact, Patricia Watson, a femme fatale undercover operative\"\ntt0134119,dQSK2gmtNMI,\"After scolding Tom for being boring and pretending to be someone else, Tom attacks and eventually murders Dickie.\"\ntt0270288,nOu9n4ulmRk,\"Chuck Barris has another television hit with \"\"The Gong Show,\"\" a program in which untalented performers get the \"\"gong\"\" before their performance is complete.\"\ntt0308644,IT-iX7o_ozA,J.M. Barrie and the Davies brothers pretend to have a Wild West shootout.\ntt0104558,AR4d7r6--I4,\"Kevin proves to a group of trainees that he really is a \"\"supercop\"\" by fighting their teacher.\"\ntt0264150,M0N1Q7Eav4M,\"Donna and the other stewardess trainees are treated to a night of dinner, laughs, and inspiration with Sally Weston at her mansion.\"\ntt0308644,iD9tENbIPHg,\"On the opening night of his new play, J.M. Barrie tries to get a nervous usher to tell him how much the audience hates it.\"\ntt0270288,xs8k31_ucJ8,\"Jim Byrd shows up at Chuck's swimming pool to instruct him to kill the mole. After some provocation, Chuck kills Jim.\"\ntt0299977,rylEfnxeUZo,\"Before the first blow is struck, Nameless and Sky visualize the entire battle in their minds.\"\ntt0308644,bk9oFLFDsfE,\"On an imaginary pirate ship, J.M. Barrie takes the role of Captain Hook and sentences Peter to walk the plank.\"\ntt0104558,1Ej-iuKgmvQ,Undercover cops Kevin and Jessica's cover is almost blown by some real cops suspicious of Panther.\ntt0270288,PrpeARyTcx8,\"On the edge of sanity, Chuck hosts an episode of \"\"The Gong Show\"\" battling fatigue, and extreme paranoia.\"\ntt0299977,TE95amqnEx8,Nameless displays to Broken Sword and Flying Snow his unparalleled swordsmanship at 10 paces.\ntt0270288,oqBWx58n1Yk,\"Patricia poisons Chuck's coffee. But unbeknownst to her, he deceptively switched the cups.\"\ntt0308644,Dv52JE3zqzc,\"As the Davies brothers jump on their beds, J.M. Barrie imagines them to float away.\"\ntt0270288,N6HCOGj1lNI,\"Chuck confesses to his new bride Penny that he is a C.I.A. assassin, and begins work on his latest show, \"\"The Old Game.\"\"\"\ntt0286112,gmk1iStpovo,Steel Leg tries to contain his leg strength by kicking eggs and practices his accuracy.\ntt0286112,fI-F18nRHBQ,\"Thanks to Steel Leg's faith in them, his brothers reclaim their kung fu skills.\"\ntt0107822,R0U9F4HexA4,Alisdair witnesses Ada and George's steamy affair.\ntt0104558,Rt7_IUmuwHw,Jessica finds herself in a precarious position during a shootout while wearing a vest made of dynamite.\ntt0104558,RAQD0bY2_OM,\"While working undercover, Kevin meets his girlfriend, who doesn't believe his story.\"\ntt0270288,SCXs7OphbUU,Chuck gets his start in television working as an N.B.C. tour page. The job has its perks.\ntt0104558,rAu-0Ko7uBQ,Jessica jumps on Mrs. Chaibat's getaway vehicle and has to hang on for dear life.\ntt0104558,DurMO8Ayhn4,Kevin jumps onto Chaibat's helicopter ladder and is taken for a wild ride.\ntt0085127,7uqoIuB8zx4,\"Dragon gets arrested, but finds a way to fend off the police on a bicycle.\"\ntt0104558,hTv7HXqqqXA,Jessica jumps a motorcycle onto a train to catch Chaibat.\ntt0308644,pnTtzyItCQA,\"On the opening night of Peter Pan,\"\" producer Charles Frohman is exasperated to learn that J.M. Barrie has been reserving 25 seats in the theater for orphans.\"\ntt0104558,jUM7RRZWW78,The drug deal goes bad and Kevin and Jessica are caught in the crossfire.\ntt0104558,s-D79Y-gBrs,Kevin and Jessica have to convince crime lord Chaibat that they are not cops.\ntt0104558,jaiWxuKmaa0,Kevin meets his undercover Police family for the first time while escorting a criminal.\ntt0104558,UfziV-fIbyM,Kevin is forced to help Panther escape the cops in the harbor.\ntt0308644,cOyt0_sRRvU,\"J.M. Barrie directs an actor in a dog costume on how to play Nana in his play \"\"Peter Pan.\"\"\"\ntt0308644,6X4Sukx3GsY,\"During the performance of \"\"Peter Pan,\"\" Wendy grabs hold of a kite and soars through the theater.\"\ntt0308644,CmcZU82YaEw,\"At the premiere of the play, Peter Pan teaches the Darling children to fly.\"\ntt0115986,_kV0xtzcwg8,The Crow seeks his revenge on Nemo at a peep show.\ntt0115986,3yqPdLURXjI,The Crow is reminded of his wandering soul from a Priest discussing the Day of the Dead.\ntt0115986,jDmw_MLAQSU,\"Scared for his life, Curve takes out his frustrations on Sarah for inking him with a bird.\"\ntt0120321,_tpfO7RS7-U,\"Arnold storms out of the house in a wave of anger and violence after getting into a fight with his wife, Arlene. Young Victor tries to reach out to his father, but Arnold leaves both mother and son behind.\"\ntt0192071,MKboBvadcD8,\"When Basin learns that her dance partner has fallen ill, Dennis steps in to help.\"\ntt0120321,oLQsS64Mgjg,\"Arnold recounts a story of when he and Young Victor came back to defeat a pair of Jesuit priests in a game of 2-on-2 basketball, with Young Victor hitting the winning shot.\"\ntt0308644,E3B_XdL7Z6Y,\"At a performance of Peter Pan\"\" in the Davies home, Neverland comes to life for Sylvia.\"\ntt0116324,dXe45jbpElA,\"At the Schlicting's, Mel meets his brother Lonnie, who is a little insecure, and a little threatened.\"\ntt0302674,nIsuwv3VfxE,\"After running away from the trail, Gerry and Gerry decide to forget \"\"the thing\"\" before getting lost.\"\ntt0918927,7OmBXWA0Rfc,\"In a sermon on gossip, Father Flynn tells the story of a priest named Father O'Rourke who instructs a woman to cut open a pillow in the wind and retrieve the feathers.\"\ntt0918927,TAOUtgdcjik,\"In the aftermath of Father Flynn's resignation, Sister Beauvier reveals her doubts to Sister James.\"\ntt0192071,ZhjyZXJVm4w,Kelly gets Felix to slip some new sheet music to the pit orchestra in order to improve her solo number.\ntt0918927,FuJ2soRp1VI,Father Flynn barges into the office of Sister Beauvier to confront her about her suspicions.\ntt0184858,Wd16x0wExDE,\"Eluding Gabriel and his men, Rudy returns to rescue Ashley who has fallen into the icy waters.\"\ntt0340377,bXpq-sf0Drk,Fin gets his share of attention on the first day in his new neighborhood.\ntt0340377,fvxvrapx3UI,Joe greets his new neighbor Fin.\ntt0184858,wkH0WdBYT4E,\"After burning Merlin to death, Rudy is caught between the guns of Gabriel and Ashley.\"\ntt0184858,huvEARIzQNc,Ashley double-crosses Gabriel right before Rudy's eyes.\ntt0184858,kxu97nWDapM,Rudy evades his captors by switching clothes with a college kid.\ntt0184858,x-Vvl8gkZAw,\"After being beaten up by Gabriel and his henchmen, Rudy comes clean and reveals that he is not the guy who everyone thinks he is.\"\ntt0184858,sceJ1R4JzMU,\"Having assumed Nick's identity, Rudy flirts his way into Ashley's heart.\"\ntt0300051,LMU895wYEDI,\"Ollie spends the first quiet moment with his daughter, opening up repressed feelings.\"\ntt0340377,IWQriJ_Nebs,Joe greets Olivia and Fin the morning after Olivia spends the night.\ntt0144715,CzBxp4EtOXw,\"Ruth's dripping sexuality drives P.J. wild at a nightclub making his obsession, and attraction, for her intensify.\"\ntt0340377,1o56ZKPhPjA,Joe joins Fin in an afternoon of train watching.\ntt0377107,ZThOaBpFIGg,Hal presses Catherine to go out with him; Catherine becomes suspicious of his intentions.\ntt0377107,BcmM6kMxyBE,\"Catherine freaks out when she finds that Hal really did plan to take one of her father's old notebooks, but softens once he shows her what the notebook contains.\"\ntt0340377,1mxednlcHSs,Fin and Joe premiere their train chasing video at Olivia's house.\ntt0340377,LtKCcSEgPJQ,Joe cooks for his new friends Fin and Olivia.\ntt0340377,9QNXD_Col7k,Fin agrees to sit in the lounge under the condition that Joe doesn't talk.\ntt0340377,5XiEDoHueUo,\"Fin, Joe and Olivia spend an afternoon walking the \"\"right of way\"\".\"\ntt0918927,KoEPdETXy4k,Sister Beauvier finds Father Flynn's sweet tooth unbecoming of a priest.\ntt0340377,xD1H-FIqeMA,Fin gives a lecture about trains in Cleo's classroom.\ntt0240890,ApU6H2gqkMg,Eve tells Sara that she can't just depend on fate to guide her through life.\ntt0340377,UqKkfcG36V4,\"Worried for Olivia's well being after she seemingly disappears, Fin camps out in front of her house.\"\ntt0918927,-nh3g6F63qM,Father Flynn irritates Sister Beauvier when he suggests that this years' Christmas program include some secular hymns.\ntt0918927,qNk-kc0XH4A,Sister Beauvier questions the motives behind Father Flynn's last sermon.\ntt0918927,P53a6QG4jlY,Father Flynn chides the students in gym class for having dirty nails.\ntt0918927,KSc0srYx9-4,\"As Father Flynn delivers a sermon on the importance of doubts, Sister Beauvier enforces reverence among the children in the congregation.\"\ntt0918927,NpwkIYB3ZEY,\"As Father Flynn and the other priests revel at suppertime, the nuns dine stoically.\"\ntt1045670,xWShDNB5XZU,Scott instructs Poppy on the golden triangle of driving.\ntt1045670,uI-q42kRXi8,Poppy can't believe it when Scott tells her to lock the car doors when two black men ride by.\ntt1045670,7wYMAJSnpVo,Poppy meets her driving instructor Scott for her first lesson.\ntt1045670,AxeeO1qdrgw,Poppy visits a physical therapist after pulling a muscle.\ntt1045670,mTkgIN2TteI,Scott nearly loses it after another day of teaching Poppy.\ntt0240890,3TWxK4Lb6ws,\"Jonathan and Dean interview a lead in their search for Sara, a whimsical French man named Mignon.\"\ntt1045670,2zZUujqZfQg,Poppy's flamenco lesson takes an unexpected turn when her flamingo teacher has a breakdown during a lesson.\ntt1045670,hnHERe72nQM,Scott has a complete nervous breakdown when Poppy refuses to give him the keys to his car.\ntt0213847,8j-53yv1nD4,\"Having just turned 12, Renato is initiated into a group of teenage boys by following their lead in watching the beautiful Malena.\"\ntt0240890,wxlvZpMSxM8,\"After a heartfelt conversation with his fiancé, Halley, Jonathan receives a serendipitous gift from her which alters his life...\"\ntt1045670,4_9ZfH_x1hE,\"Scott freaks out when Poppy pretends there is a \"\"little juggernaut\"\" in the road.\"\ntt0240890,kiv4EChGJVs,Jonathan flirts with Sara by telling her the story of how Cassiopeia transformed from a beautiful princess into a celestial constellation.\ntt0240890,gZ6x-hUpoPo,\"When Jonathan loses Sara's contact info in a gust of wind, he tries to convince her that their chance meeting is the work of Fate.\"\ntt0240890,PMar5oQ5Ha8,\"Sara plays a game of chance with Jonathan, telling him to have faith in destiny.\"\ntt1045670,9OGKM_BI9zY,\"Scott lectures Poppy on the \"\"harsh way of the world\"\".\"\ntt0240890,8KaBhZM-PTg,\"After running into a random series of people using the name Sara, Jonathan tries to rationalize the encounters to Dean.\"\ntt0240890,kNepR8njvT8,Jonathan's patience is pushed to the limit after he gets extorted by a Bloomingdale's salesman during his search for Sara.\ntt0085127,T4l9RZRce58,\"Dragon, Tzu, and Fei finally overcome the pirate lord.\"\ntt0085127,ErQGXlQV6vg,Dragon is tortured about the location of the guns and then falls from a clock tower.\ntt0085127,uTW2Hrn49Yk,\"Dragon, Tzu, and Fei battle the pirate lord and his men.\"\ntt0240890,sIMxtj6czX8,\"Dean reveals that he and his longtime girlfriend have separated, adding that he admires Jonathan for his ability to live with foolish and romantic abandon.\"\ntt0085127,i16c8n45lR4,Dragon meets Fei and they team up to kick butt.\ntt0085127,wdaFZ0seZBM,Dragon tries to evade police and help Winnie at the same time.\ntt0085127,sEgsFoQhy3Q,\"While handcuffed, Dragon climbs up a flagpole and crashes into a clock to escape.\"\ntt0240890,GolLDhBuy74,\"Sara finds Jonathan's contact info on a five dollar bill that he wrote years ago, and uses that as her sign to go and seek him out.\"\ntt0085127,6mGJ0lFK8c8,\"Faced with police corruption, Dragon quits the force and escapes the VIP Club in style.\"\ntt0085127,pCnPsUo_p9w,Dragon and Captain Tzu try to arrest a criminal in the VIP club and destroy the place.\ntt0085127,MOB7nv-1G3c,Dragon and his Marine Police fight the Hong Kong Police in a bar.\ntt0110588,RntgG4p1m8E,Robert assures Dorothy that they can succeed as freelance writers.\ntt0377107,rqT82hS-rMw,Claire questions Catherine about the incident in which she called the police on Hal.\ntt0377107,s3znWXpeLPA,Catherine delivers an embittered impromptu speech at her father's funeral.\ntt0110889,1IlqRjk27JI,\"Father Pilkington hears confessions from the students, including a harrowing confession from Lisa.\"\ntt0377107,gUpkU0-pS3U,\"Catherine and Hal chat after their \"\"wonderful\"\" night.\"\ntt0377107,303wyvo5Uow,Catherine and Hal make a connection after her father's funeral.\ntt0377107,T4V4NqEU668,Claire tries to set things right by getting Catherine to move to New York with her.\ntt0377107,IE0S6NNXiYM,\"Now that he finally believes Catherine that she wrote the proof, Hal tries to convince her to stay in Chicago and take credit for it.\"\ntt0377107,pnvy9q4UpZw,Hal is elated when he discovers the notebook with a groundbreaking proof inside.\ntt0213847,Spl7doGUZTI,Renato defends Malena when a defaming letter reaches her father.\ntt0213847,FNvk5X4D7g0,Renato's father throws a fit when he discovers Renato with Malena's stolen panties on his face.\ntt0213847,zkBkTx-GL8s,\"Poor and widowed, Malena cuts her hair to make herself available to the men of the town.\"\ntt0213847,ZTAVOF3D4vY,Malena causes a stir amongst the townspeople as she walks through the plaza after looking for a job.\ntt0213847,i9_lCyG67Rc,Renato writes Malena a love letter and fantasizes that she is his teacher.\ntt0213847,dsRTzhbsAmQ,Renato and his friends fool around and measure their penis sizes.\ntt0213847,aCqhUO76MTU,Malena is surprised to be welcomed back with open arms after the way she was chased out of town.\ntt0213847,rhc_Ds85lG0,\"Malena's greasy lawyer, Centorbi, takes advantage of her when he demands that she pay her lawyer's fee with a favor.\"\ntt0119324,v3MPODJTzFM,Anthony makes Lesly uncomfortable and admits that she is their first house guest.\ntt0119324,NCgUx9-REsg,Jackie-O reacts strangely to the news that her brother Marty is engaged to Lesly.\ntt0119324,BeJMZm6DDtk,Jackie-O grills Lesly on the subject of her sex life with Marty.\ntt0119324,QXa6FXKJQpw,Jackie-O mocks Lesly for growing up poor as Marty tries to ease the tension.\ntt0186894,rcJ5q5BdJi4,Abby and Buddy chat while his pants are being hemmed from the damage her dog did to them.\ntt0186894,NTPT4BHAmRI,Abby sicks her dog on Buddy when she suspects him of having ill intentions.\ntt0186894,6xSLNonQJSc,Buddy calls Abby to offer her the job of finding a new property location for his company.\ntt0119324,zg4tFOmYKpA,Anthony tells Lesly about his siblings' incestuous relationship.\ntt0119324,qw6k-69hm90,Jackie-O and Marty reveal the incestuous nature of their relationship to Anthony.\ntt0186894,_yHgZUYOYdY,Abby impresses Buddy - and herself - when she closes the deal on a property she showed Buddy's partner.\ntt0119324,XHdmamu0zPk,\"Jackie-O and Marty recreate the Kennedy assassination one last time, as Lesly runs from the house in shock.\"\ntt0186894,SDesztIj8Kc,Abby gets the message Buddy is conveying when he tells her about the unattractive aspects of his personality.\ntt0119324,NDw4Lax2j0k,Marty and Jackie-O recreate the Kennedy assassination as a form of foreplay.\ntt0119324,OPwRf_sD5fo,Mrs. Pascal is more disturbed by a gun than by the sight of Jackie-O and Marty waking up together.\ntt0186894,VWwkLEUn-a0,Buddy apologizes for what he said in the restaurant.\ntt0119324,kY4iDLi0pV8,Lesly confronts Jackie-O about her sordid family history.\ntt0186894,pqLAni94IEI,Abby opens up to Buddy about the loss of her husband and then they make love.\ntt0285823,lhsWHmJiaXE,Sands lectures El Mariachi on the importance of keeping the balance to Mexico by shooting a cook.\ntt0186894,TqB34Q7iy-A,Abby breaks up with Buddy when she finds out he switched flights with her husband on the night his plane crashed.\ntt0186894,MsxXJOiXEW4,Buddy delivers a drunken acceptance speech when he wins for his work on the Infinity Airlines account.\ntt0285823,t3ttyoPvivk,El Mariachi is ambushed inside a church.\ntt0110598,Xqti-Sxsxk4,Muriel and Rhonda enter the talent contest while their old classmates tear each other apart in jealousy.\ntt0186894,BrXYAZzLZTg,Buddy testifies about the night he gave Greg his ticket for the ill-fated plane.\ntt0110598,lhZFyMTaIt8,Muriel can't stop laughing when her first sexual encounter with Brice goes hilariously awry.\ntt0285823,KJI8TYE7DtE,Belini tells Sands the legend of the Mariachi and his woman.\ntt0285823,ae-cYVuxBKI,El Mariachi and Carolina wake up and find themselves chained together with militia drawing close to wipe them out.\ntt0110598,SyiA_t-8c7Y,Muriel is taken by surprise when her friends break up with her for being an embarrassment.\ntt0097937,mTysQF15PHE,Christy solves his sister's math problem.\ntt0110598,2C6FHPmqETM,\"Muriel runs into Rhonda, who devises a plan for getting back at their old classmates.\"\ntt0110598,39M16Z2aYYk,\"Frustrated with her recovery effort, Rhonda makes Muriel promise that they'll never go back to Porpoise Spit.\"\ntt0110598,X09M4YjeE78,Rhonda catches Muriel trying on a wedding dress and Muriel admits that Tim Simms is a fictional boyfriend.\ntt0110598,E1BBS1rIgIw,Muriel is thrilled to be marrying a decidedly less enthusiastic David.\ntt0110598,m0uAIT2O5P0,\"Muriel returns with David to his apartment after the wedding, only to find they have separate bedrooms.\"\ntt0110598,Lpk6lNEGrg0,Muriel meets with a coach determined to find an Australian bride for swimming star David.\ntt0110598,MSVT6NNqldY,Muriel breaks up with David in an attempt to stop living a lie.\ntt0285823,5Rl0mFRWfzc,Cucuy's failure to kill El Mariachi escalates to a motorcycle chase.\ntt0285823,fKoYXxN6x98,Sands kills Belini when a waitress accidentally spills coffee on his fake arm.\ntt0110598,BW5hIGrXcEs,Muriel rescues Rhonda from Porpoise Spit in order to bring her back to Sydney.\ntt0285823,_WF9UwKuitI,A blind agent Sands asks a Chicle Boy to be his eyes as he takes out a thug.\ntt0097937,M-VdYzNgtng,\"Christy's mother expresses fear that Christy's newfound abilities are getting his hopes up; meanwhile Christy develops feelings for his therapist, Eileen.\"\ntt0097937,X7Vt8oHsr0g,Dr. Eileen Cole convinces Christy to practice speech therapy.\ntt0097937,p12OcbmjVgU,\"At a dinner celebrating his art show, Christy tells Eileen he loves her.\"\ntt0097937,WTW9la6_mEY,\"Christy writes his first word, to the astonishment of his family.\"\ntt0097937,gqKobRWnvZQ,Christy makes a scene when he rejects Eileen's platonic love.\ntt0097937,PWvWrHzlfAk,Christy's mother begins to build Christy a room of his own.\ntt0097937,4C-aVLgAw8g,\"Christy asks out his caretaker, Mary.\"\ntt0097937,WpULGtEqNBI,Christy celebrates his seventeenth birthday and plays soccer with his brothers and the neighborhood boys.\ntt0097937,f-9ErKOlWyE,Christy surprises his mother by giving her the money he earned.\ntt0120879,n8JOgoI_2as,A BBC Reporter reports the glam rock influence Brian Slade has on today's youngsters.\ntt0120879,f0-GryhUnSQ,\"Brian begins his final performance before being \"\"shot\"\" on stage.\"\ntt0120879,QEp-lhl5ImQ,A young Arthur adapts to the sensational pop lifestyle of glam rock while listening to Brian Slade.\ntt0120879,Hjhg4s4nD5s,Brian addresses questions concerning his sexuality during a press conference.\ntt0120879,NEc_n0W4ans,Brian gazes at Curt Wild during a performance.\ntt0120879,c2gZ4aOYOw4,A recording session ends abruptly when a belligerent Curt changes his cues.\ntt0120879,X_akiwYsyYM,\"Brian Slade describes his lifestyle in a circus act while Curt Wild interrupts the \"\"performance\"\".\"\ntt0120879,6-2doIEpFVE,Brian and Jerry have a meeting with Curt Wild.\ntt0120879,K1C2odNXI4E,Arthur embraces Curt Wild in a euphoric dream-like flashback.\ntt0436697,aXg3HXlsdg0,\"Tony Blair addresses Britain, and the world, following the news of Princess Diana's death. The Royal Family decides to stay quiet.\"\ntt0436697,-l-VCl5kQuY,\"While stranded at the river, The Queen eyes the great stag.\"\ntt0436697,qo0uCiDpp0k,Tony Blair is pleased when he watches The Queen step outside Balmoral Estate to acknowledge the passing of Princess Diana.\ntt0436697,io2eeYm9sQs,\"The Queen addresses Britain, and the world, as Tony Blair watches on with admiration.\"\ntt0436697,sGbVR3TgQUs,\"The Queen visits Buckingham Palace to pay her respect in front of thousands of mourners, and is handed a bouquet of flowers from a little girl.\"\ntt0436697,KAPjaNfNw-I,\"While watching The Queen visit Buckingham Palace on television, Tony Blair takes offense at his speech writer's flippant remarks about the Queen.\"\ntt0436697,lF_KpWfFyR8,\"Calling up The Queen following Princess Diana's death, Tony Blair is surprised to learn that a private funeral is planned, and that the Royal Family plans on evading the British public completely.\"\ntt0436697,TgXkBPFZZFY,\"Two months following Princess Diana's death, The Queen believes the institution of the British monarchy has been diminished, as she cautions Tony Blair that one day the people will turn on him too.\"\ntt0436697,ytFFiCYItjI,Tony Blair meets with The Queen for the first time after having been elected as Prime Minister.\ntt0271219,_flZU87W_Rc,Oscar ignores a girl his own age to focus on seducing his stepmother Eve.\ntt0271219,FYlySSs_-JI,Oscar visits his stepmother Eve at work where they discuss the heart as a symbol of love.\ntt0271219,4iMFUxeKJd8,\"The morning after sleeping with Diane, Oscar runs into her unsuspecting boyfriend Phil.\"\ntt0271219,zlL7BbZoSAY,Oscar implores Diane not to tell her friends about what happened between them.\ntt0271219,czzH5M2bUYc,Diane gives Oscar a massage that quickly leads to something more intimate.\ntt0271219,ti2qUYIgpjM,Stanley sees Oscar and Diane kissing in a corner of the restaurant.\ntt0271219,rrbEQDRYpy8,Stanley grills Oscar to find out where he spent the night.\ntt0271219,ITszRkvBcUg,Oscar panics when Stanley runs into his classmate Miranda and falsely concludes that they are an item.\ntt0306047,pIWh28WPyxQ,Cindy gets a helpful nudge from the most powerful man in the free world during her fight against the ghastly Tabitha.\ntt0271219,mT1QTyuTr-M,Oscar works up the nerve to kiss his stepmother Eve just before Stanley returns.\ntt0274558,KMFxz39Qhjk,Virginia expresses to Leonard her longing to move back to London.\ntt0035423,h7CCnLwD2MY,Leopold helps Charlie see that he's pursuing Patrice with the entirely wrong approach.\ntt0190590,OMhzAcofd_8,Desi defends herself after Odin accuses her of cheating on him with their mutual friend.\ntt0113158,nyExbZwBM2c,\"Sadie and Georgia finally have it out with each other, a hurtful heart-to-heart between sisters, each saying what the other doesn't want to hear.\"\ntt0858479,eCCJzVqLBvU,\"Lawrence makes amends with Janet, who has some big news to share with him.\"\ntt0120679,znxRGH92XDg,Alex and Frida are riding a bus when it is struck by a street trolley.\ntt0120679,E3wiJJOrgho,\"This montage depicts the creation of Frida's painting The Two Fridas\"\" and the assassination of Leon Trotsky.\"\ntt0113158,AjXl70vbOwk,\"In concert, Georgia performs the song Hard Times\"\" to an adoring crowd. Her sister Sadie is in attendance.\"\ntt0120679,RTCMHLpNi4k,\"Frida, recognizing that her life will soon end, gives Diego an early anniversary gift.\"\ntt0113158,8KjAsaJdi2w,\"As Georgia sings Hard Times\"\" in front of an adoring crowd, Sadie sings the same song for a few drunks in a Portland dive bar.\"\ntt0113158,k7VW1xNAn5A,Bobby's band with Sadie on vocals perform a traditional Jewish folk song at a wedding.\ntt0113158,99PeJShwZis,\"As Bobby sings I'll Be Your Mirror,\"\" a stoned Sadie is unable to finish the song, and drifts off the stage.\"\ntt0113158,J0IXJNE0FXI,\"At Sadie's insistence, Georgia joins her sister on stage to sing a song with the bar band.\"\ntt0120679,OzP8k0R-USw,\"Forbidden from leaving her bed by her doctor, Frida is carried into her first Mexican exhibition in her bed.\"\ntt0113158,EnGXNEEHPG8,\"During the car ride home following another drunken, but passionate performance from Sadie, Georgia confronts her younger sister, offering up an ultimatum that she doesn't want to hear.\"\ntt0113158,YCIYe01lg1E,\"Sadie sits in with the local bar band, and performs - in almost a whisper - the tender song, \"\"Almost Blue.\"\"\"\ntt0120679,06B3m6L5fFw,\"Diego wants to marry Frida, but he won't promise to be faithful.\"\ntt0110588,YlpN0wDqUx4,Dorothy and Robert form the center of a new social circle of writers known as the Algonquin Round Table.\ntt0110588,DTVnQBRfCAw,Eddie slaps Dorothy when she questions his reliance on alcohol.\ntt0120679,rQP1duR2tf4,Frida confronts Diego about his affair with the model.\ntt0110889,Q0bjuz5YBLM,Father Pilkington picks up a man at a nightclub.\ntt0110889,J8_CIsow_Y8,Mr. Unsworth argues the ethics of incest with Father Pilkington.\ntt0110889,qFsoL6ed_2E,Father Pilkington denies Graham Communion when he shows up unannounced.\ntt0110588,LWEklaaHGsE,The Vicious Circle gains a new member when Edna Ferber joins the group.\ntt0110588,HhtRNV2v2rU,Charles seduces Dorothy by criticizing her writing.\ntt0110588,yvv9DRyxTFo,Robert tries his first drink at a speakeasy while Charles flirts with Dorothy.\ntt0077594,Fyvzidxs_SY,\"To protect him from The Syndicate, Billy Lo undergoes plastic surgery to change his appearance while Ann grieves for him at the funeral, unaware that Lo is still alive. This scene contains actual documentary footage from Bruce Lee's funeral in 1973.\"\ntt0110588,Jhxb2wWFK4M,\"Distraught by her lover's infidelity, Dorothy attempts suicide.\"\ntt0110588,B3fgBOG1fWs,Dorothy asks Robert why their relationship has remained platonic over the years.\ntt0117283,ef77ViM-f14,Tom makes a nervous phone call to Julie to ask her out on a date.\ntt0110588,qZBVXYYcCjQ,\"Asked to recite a poem on the spot, Dorothy composes a morbid ditty that attracts the attention of Roger.\"\ntt0162360,gZY_zy2hAHA,\"Fugitives Wayne and Harry think they're being sentenced to jail time when Chappy the Sheriff brings them before the Judge, but the Judge thinks he's negotiating payment with the pageant professionals that the town has hired.\"\ntt0162360,ubgR8CKyzYw,\"When Wayne and Miss Schaefer learn that all the girls qualified for the pageant, they get a little wild.\"\ntt0162360,UqPRk4oFz_U,Wayne and Harry search their stolen mobile home for clues to the identities of the people they're impersonating.\ntt0117283,_OMy1p_m3_Q,Tom witnesses something scandalous as he is spying on Julie.\ntt0120148,1H2xudG3BPI,\"Coming home early after being fired, Helen's bad day continues when she finds her boyfriend, Gerry, in bed with Lydia.\"\ntt0117283,WQtoXhnhFwM,Julie comes by Tom's house to confide in him about what happened with Scott.\ntt0120148,sj93sTcEJYA,\"James surprises a heartbroken Helen at home, and takes her out for a milkshake to cheer her up.\"\ntt0162360,uPAXLQIxBGY,\"Wayne, masquerading as a pageant professional, steps in to stop a bully boy who teases the girls.\"\ntt0120148,X5wAXtQ0oDY,\"It is an ideal kissing moment between James and Helen - a romantic, nighttime boat ride under the lights of a glistening bridge. At first Helen is hesitant to James' advances, and then she makes the move.\"\ntt0117283,MLxnvq1E-ag,Ruth storms into the restaurant where Tom is dining with Julie and her parents.\ntt0117283,Q4DEaXN6Dp8,Tom tells Ruth about Julie in a roundabout way by making her out to be Bill's crush rather than his own.\ntt0162360,XfBImxhVWTw,\"Chappy the Sheriff, thinking Harry is actually the gay pageant professional Steve, comes out to Harry and asks him on a date.\"\ntt0117283,rxX-JLi1FB0,\"Just as Tom starts to get somewhere with Julie, Ruth calls and reveals that she knows about her.\"\ntt0117666,qJKahA8B9Ro,Karl tracks down his father to get some closure on their relationship.\ntt0110588,3uHIpj5JpvQ,Dorothy asks Alvan to diagnose her inability to write.\ntt0120148,c-zaHGYURv0,\"James and Helen reconcile their relationship in the rain. Meanwhile, the parallel Helen learns of Gerry's adulterous relationship with Lydia.\"\ntt0162360,Mp5IvPj4ay0,Harry demonstrates to Joe the way her boyfriend should express his love for her.\ntt0780511,sk3soFv1wHM,Frank visits the art gallery in New York to pick-up one of his late son's paintings.\ntt0338096,5xWrsFC7pG8,\"Katey and Javier dance at the finals, but are interrupted by a gunshot.\"\ntt0120148,eeR4VQyoLdc,\"James frantically tracks down Helen, who is standing on a bridge in the rain, to explain to her that there's a misunderstanding...he's divorced and single, not married.\"\ntt0117283,-nkqrSaJf1g,\"Tom struggles through a vague eulogy about Bill Abernathy, who he does not remember.\"\ntt0120148,UUB75dkgT_c,\"A case of miscommunication between Helen and James leads to a chance run-in on the street, where he tells her that he's been wanting to call her, much to her excitement.\"\ntt0120148,idxHUQY4aDA,A stuttering and stammering Gerry goes on the defensive when Helen mildly insinuates that he's cheating on her. And the truth is...he is cheating on her.\ntt0120148,v-0Z_0SUtJw,\"As Helen lays in a coma in the hospital, James makes a promise that he will always be with her.\"\ntt0162360,5Ui9rRepv0Q,Wayne offers an irreverent prayer before the girls are to compete in the pageant.\ntt0162360,diteeSODzTQ,Chappy the Sheriff is shot trying to prevent Bob from robbing the bank.\ntt0117666,FYDrPt06XNI,Karl gives Frank his books along with a bookmark containing a reassuring message.\ntt0120148,HUwVxqQz25Y,\"Fate and destiny are on the side of Helen and James, as they meet once again in an elevator.\"\ntt0162360,t9BqiLLt9SI,Harry breaks up with Chappy to keep him away from the dangerous Bob.\ntt0117666,xCJZij74-J0,Charles tells Karl a story about picking up a prostitute with a startling secret.\ntt0120148,G4tfduPN3rM,\"Helen gets fired from her P.R. job, but not before getting one last zinger aimed at her uptight male boss.\"\ntt0120148,3c6F_0KpK3k,Helen tries to tell a philandering Gerry that she's pregnant. But the cheating boyfriend does not stay on the phone long enough to give her a chance to say it.\ntt0120148,pYBS9Sp0xU8,\"Gerry tries to win Helen back, but she immediately catches him in a duplicitous action.\"\ntt0117666,neFpFiuvYsQ,Karl and Frank bond over their similarly tragic family histories.\ntt0162360,I2eVbp_Jfc0,Wayne and Harry are taken back to prison; Miss Schaefer brings the girls to perform for them.\ntt0117666,sAgSUFT4cVk,\"Karl explains to a reporter how he came to kill two people, including his mother.\"\ntt0117666,4pz2kXoDo_s,\"Karl questions the Frostee Cream Boy about their menu, including french fries.\"\ntt0117666,PJ1i0HuBXPg,Doyle intimidates Karl when he arrives to move in with Frank.\ntt0338096,iLYeR6v-fVE,Javier catches Katey practicing some dance steps and gives her a few pointers.\ntt0363226,Fu6QrGkRdJo,Genosuke dispatches a rival gang leader in cold blood as his employers watch from nearby.\ntt0117666,uB2eggtlTfE,Vaughan takes Karl to lunch and tells him they have something in common.\ntt0338096,LAd6SaXDdZ4,James takes Katey out to his car and tries to take advantage of her.\ntt0338096,O4qhT8oRvss,The hotel's dance instructor mentors Katey on how to let go of her fear.\ntt0363226,7ZhnS45Zexo,\"Cornered by Ginzo's henchmen, the two geishas are rescued by Zatoichi who dispatches Gizno's forces with incredible efficiency.\"\ntt0363226,SlVK7ogwyUI,Zatoichi and the ronin samurai Genosuke battle each other in a quick and deadly duel.\ntt0117666,L9tK9HYspFM,Doyle seethes as Vaughan and his bandmates debate their poetic lyrics.\ntt0117666,0C6nvNlVx1A,Doyle kicks everyone out of the house in a drunken rage.\ntt0338096,H3Epwo8vFpk,\"Under the impression that Katey is dating James, Katey's mom talks to her about sex. Little does she know she's actually seeing Javier.\"\ntt0363226,1UqJgV10-wE,\"With his preternatural sense of hearing, Zatoichi listens to the sound of the dice and realizes that they have been switched. Immediately sensing an ambush, Zatoichi strikes first, slaughtering all of the would-be assailants.\"\ntt0363226,BydT8m3NdRY,Zatoichi slices up a group of enemy swordsmen in the rain.\ntt0363226,ZuqwMQTc8cE,\"Ichi aka Zatoichi, slices up a couple of roving bandits when they try to intimidate him.\"\ntt0117666,tGYc5woadps,Doyle apologizes for his drunken behavior while continuing to be a complete jerk.\ntt0338096,Znook3DEEaI,Katey and Javier's dance practice gets hot and heavy at the chop shop.\ntt0338096,bcY4Lhb3yhI,Katey and Javier blow away the crowd with their sexy competition routine.\ntt0363226,YV2WQTL_45A,Shinkichi's attempt to teach swordplay to a trio of young bumpkins goes comically awry.\ntt0363226,MFZGTRWVOjU,\"As seen through a flashback, the family members of the two geishas are murdered by Ginzo and Ogi's assassins.\"\ntt0117666,sL6QJSdqlt0,Karl brings a lawnmower blade into the house with the intention of killing Doyle.\ntt0338096,XPRFb9J1CvA,Katey's mom disapproves of Katey's decision to dance with Javier.\ntt0114478,b_uXZZRpO-E,\"In the Brooklyn Cigar Shop, Paul tells a story to the guys about Sir Walter figuring out how to weigh smoke.\"\ntt0114478,U6Lt17rALrM,Cyrus explains to Thomas (Harold Perrineau how he lost his left arm in a car accident to pay for his sins.\ntt0115906,Ovloa5lv7io,\"Ruth freaks out when Dr. Rollins offers her $15,000 to have her baby.\"\ntt0363226,p7aigA4gPiw,Tensions rise when Zatoichi encounters the formidable samurai Genosuke at the village tavern.\ntt0363226,xl01-vBoHsE,\"After revealing that he can see, Zatoichi neutralizes the last yakuza boss with a quick strike from his sword.\"\ntt0494222,TZAvqLk4o-g,Jarrod calls his childhood nemesis and threatens to fight him.\ntt0115906,o69EA3eSDf0,\"Ruth faces the judge, who charges her with endangering her fetus.\"\ntt0115906,tAx_zjVXTOs,Ruth is welcomed into the home of Norm and Gail Stoney.\ntt0115906,NKCskfhsru0,Ruth grows impatient when Dr. Rollins tries to convince her to have her baby.\ntt0115906,zk0AexuAhlw,\"When Ruth sneaks off to sniff glue, Norm and Gail finally lose their patience with her.\"\ntt0115906,V2weMKLFJLo,Ruth joins Norm and Gail at a protest outside an abortion clinic.\ntt0494222,0WjELXl_6zA,Lily meets Jarrod's disparaging family.\ntt0115906,QzymqXvURkw,Diane brings Ruth home and reveals that she is a spy for the pro-choice movement.\ntt0115906,mOpvoWxjz90,Ruth sees a news report on her story and decides to give Gail a piece of her mind.\ntt0115906,X9N-BROIbeY,Blaine receives a massage and questions Norm on his decision to bribe Ruth to have her baby.\ntt0258068,CymY_Rl1fEs,Pyle confesses his love for Phuong to Fowler as bombs fall around them.\ntt0115906,TDecVpSLT38,\"As Ruth prepares to leave for her abortion, her mother makes a last ditch effort to stop her.\"\ntt0115906,ndrr3vif10w,\"When forced to choose between two opposing sides, Ruth sort of takes a stand.\"\ntt0115906,TQrzX_5FO1k,Ruth devises a plan to escape the abortion clinic after she acquires her bribe money.\ntt0494222,ZS0rEz8wR4g,Lily falls in love with Jarrod while taking his order at Meaty Boy.\ntt0494222,xo2meR8UHJ4,Lily and Jarrod get hot and heavy at the party.\ntt0494222,-g7jRpukoVg,Lily plays against Jarrod in the videogame tournament and allows him to win.\ntt0494222,K3ucS56rrpA,Lily and her brother crash Jarrod's costume party.\ntt0494222,QJfhiv1Te6o,Jarrod gives Lily the third degree when she finally shows up after partying all night.\ntt0494222,2GMpuN48u5c,\"Jarrod is dismayed when his childhood nemesis shows up to fight him, but is in a wheelchair.\"\ntt0494222,UYovQZUBzpA,Lily falls in love with Jarrod while taking his order at Meaty Boy.\ntt0494222,SKMOhrpxUSo,\"Jarrod fights his childhood bully, even though he's a cripple.\"\ntt0114478,JGV_h36uZ5E,\"Paul looks through Auggie's photo albums, or as Auggie calls it \"\"his life's work.\"\" The photos consist of the same street corner, at the same time, everyday.\"\ntt0494222,vz7jp6GiwTA,Lily's heart breaks when she sees Jarrod spending time with another woman.\ntt0278500,eORAWRKW53s,\"Algernon proposes to Cecily, who informs him that she's been engaged to him for three months already.\"\ntt0494222,aAnJ9iO8DAE,Lily gets hit on by one of Jarrod's friends.\ntt0278500,NbX7nS8SG7E,Algernon finally meets his cousin Cecily and immediately takes a liking to her.\ntt0114478,E8eiFdoI5W0,\"Ruby takes Auggie to meet his daughter Felicity. When they arrive, Felicity angrily announces that she had an abortion.\"\ntt0114478,_6CT5p7fh9g,\"Rashid finally comes clean about his background to Cyrus, who is his biological father.\"\ntt0114478,RTObjnUfgNs,\"At a dive bar in Brooklyn, Auggie happily runs into Paul who is there celebrating Rashid's seventeenth birthday.\"\ntt0114478,NI4En1gLsXs,\"Auggie surprises Ruby by giving her $5,000 to help out her daughter.\"\ntt0114478,WBxpXxZqKms,\"Having finished telling his Christmas story, Auggie shares a smoke and a smile with his friend Paul.\"\ntt0114478,vG833_jH7eY,Paul tells a story to Rashid about a son who discovers his father's body preserved in a block of ice.\ntt0114478,qUDMInHr_wI,\"Auggie tells a story to Paul of how years ago he shared a Christmas feast with Granny Ethel - an old, blind woman and a complete stranger.\"\ntt0114478,D-UBJzXzoho,\"Auggie finishes up his Christmas story, explaining how he stole a camera from Granny Ethel – an old blind woman – years and years ago.\"\ntt0114478,04zHzVrubHk,\"Rashid makes amends for his mistake of flooding the cigar shop by giving Auggie a paper bag holding $5,000.\"\ntt0134084,ofxfYinuKKc,\"Randy visits Sidney from the grave in the form of a video tape, warning her about the unpredictable the nature of horror movie trilogies.\"\ntt0134084,VevqDJM8KH0,Cotton and his girlfriend are murdered by the Ghostface Killer.\ntt0134084,dsONBwWtAts,\"Ghostface Killer takes out Steven Stone, the personal security guard to big shot actress Jennifer Jolie.\"\ntt0134084,dDDbmin38gg,\"Ghostface Killer lures the survivors into a trap as he rewrites the \"\"movie\"\" in real-time.\"\ntt0134084,hQL6_NbLwtk,\"Gale and Jennifer encounter Bianca, a surly -- and vaguely familiar -- studio secretary, in their search for more information on Maureen Roberts.\"\ntt0134084,hajGYP3CLKo,Ghostface Killer stalks and murders Sarah at a film production company office.\ntt0134084,VgQOZkXg9t4,\"Visiting the Stab 3 movie set of her home back in Woodsboro, Sidney is attacked and tormented by the Ghostface Killer.\"\ntt0134084,gcu30p7VEKI,Ghostface Killer goes on a rampage inside the mansion.\ntt0134084,GwFaz1nukyE,Jennifer is murdered by the Ghostface Killer behind a two-way mirror as Dewey and Gale react to the carnage with tortoise-like reflexes.\ntt0134084,DMeR-bkC13g,\"Sidney learns that the Ghostface Killer is her own brother, movie director Roman Bridger.\"\ntt0134084,J6Cg05MhWbw,\"Sidney pulls a gun on the Ghostface Killer, but he proves to be hard to kill.\"\ntt0134084,1b_sbGJGx0o,Dewey pulls the coup de grace on deranged film director Roman and his murderous antics.\ntt0160862,_OiXT87RhvA,Taylor fills Zack in on how she met the guy she's leaving him for.\ntt0160862,O47od13_x1k,\"With his reputation under attack, Zack makes a bet with Dean that he can make any girl prom queen just by dating her.\"\ntt0160862,r4mQmoD72tc,The prom is stepped up a notch as the students launch into a choreographed dance the campus D.J. taught them.\ntt0160862,nimkNFEKUkY,\"After some help from Zack's sister with hair and makeup, Laney reveals her new look.\"\ntt0160862,x0XE7KFZook,Zack stands up for Simon when he sees him being bullied in the cafeteria.\ntt0160862,TbFYMfIpRss,Taylor humiliates Laney in front of everyone at the party.\ntt0160862,i9KJXFbkMH0,\"Brock puts on a show as he dances to his favorite jam, \"\"Give It to Me, Baby.\"\"\"\ntt0160862,BztqFxMXpTQ,Zack visits Laney at the Falafel Barn to ask her out.\ntt0160862,-AlTccRsRsk,\"Much to Zack's dismay, Dean selects Laney Boggs as Zack's target for their bet.\"\ntt0160862,M_MJrybDRKA,Zack watches some wacky performance art in the name of winning Laney over.\ntt0118113,5iZUg7tGlxM,\"When Amelia confronts Bill about why he hasn't called her, he's straight-up with her in his response.\"\ntt0118113,pnjWGD-WW8k,\"Amelia hits it off with Bill and they sleep together. Later, as Amelia freshens up in the bathroom, Bill listens to a message on her answering machine from Laura and he doesn't like what he hears.\"\ntt0118113,97ZiBty1eTM,\"Creeped out by an anonymous obscene caller, Amelia calls up Andrew for emotional support.\"\ntt0118113,R65UmAfIZpw,Laura makes a scene when she fails to see the humor in Frank's gift to her.\ntt0118113,eZjR4aso7VY,\"After Andrew reveals the source of their broken relationship, Amelia leaves his place, hurt and angry.\"\ntt0118113,e_hkxbNpQMw,\"When Amelia learns that Andrew has been having phone sex with a girl he just met, she calls him out on his sordid behavior because he won't call the girl for an actual relationship.\"\ntt0118113,veN5fuM-AwI,Frank is the odd man out as he travels with Laura and Amelia to the countryside.\ntt0134119,QoJ5JJ3keUw,\"Tom introduces himself to Dickie and Marge, pretending to be an old acquaintance.\"\ntt0118113,GdM1NCrxZvI,Amelia is devastated after she finds out that her cat died by falling out of an open window.\ntt0118113,ZjDB3Pfl3iA,Amelia and Andrew rekindle their relationship.\ntt0134119,E-TthagAhsk,Freddie catches Tom spying on Dickie and Marge making love.\ntt0134119,9KstSfW1IAA,Tom confronts and scares Marge when she discovers he has Dickie's rings.\ntt0118113,8P3Q_di3Lo8,\"Amelia and Laura air their grievances and then reinforce their friendship. Later, Laura reunites with Frank after they had spent some considerable time apart.\"\ntt0134119,BjMrxHxraio,Tom runs into Marge at the opera and has to juggle his acquaintances from meeting each other and exposing his double life.\ntt0134119,_9b7JgWu4PQ,Tom sets up Meredith and Marge to meet when they are both expecting to meet him.\ntt0134119,bTE69etu_fg,Peter confides in Tom about his failures as a father to Dickie and Dickie's failures as a son to him.\ntt0134119,3si4Cv66RSM,Inspector Roverini inspects Dickie's apartment and tells Tom the mounting coincidences concerning Freddie's death.\ntt0134119,Mq462kfFKI8,Freddie begins to suspect wrongdoings from Tom and confronts him with his suspicions.\ntt0134119,a-IU2mBY1_4,Marge opens up to who she believes is Dickie on the other side of his door.\ntt0134119,XgTtI5D-INw,\"Alvin MacCarron, an investigator and employee of Herbert Greenleaf tells Tom a startling theory that frees Tom of any further suspicion.\"\ntt0278500,CZK9pY1dA74,\"When Gwendolen professes her love to Earnest, he begins to probe into how she would feel if his name weren't Earnest.\"\ntt0278500,VHVxpLDEAo8,\"Lady Bracknell grills Jack about his upbringing, and is shocked at his responses.\"\ntt0278500,eW4wR7-iOMg,Lady Augusta asks Jack some odd questions in order to determine whether he is worthy of Gwendolen's hand in marriage.\ntt0278500,VpLXPIihj60,\"Jack comes armed with an urn and a bogus story hoping to kill off his fictitious brother, Earnest; little does he know that Algernon has just shown up claiming to be Earnest.\"\ntt0278500,r3TEbOR9SyQ,Algernon and Jack console themselves with muffins when Gwendolen and Cecily ditch them for their lies.\ntt0278500,3pDOsNri1Ko,Gwendolen and Cecily quiz Algernon and Jack about their reasons for lying to determine if they are worthy of their forgiveness.\ntt0278500,Qwx74IfTNwo,Gwendolen and Cecily begin to consider each other enemies until they discover they have been deceived by their wicked boyfriends.\ntt0264150,KaxcWDmXbBs,Donna has a huge freak-out during her first ride on an airplane.\ntt0211915,wPJvAzfaqlk,Amelie imagines that Nino is about to surprise her at her apartment... and is surprised when he actually does.\ntt0264150,r_U2p-bdeww,\"Donna gets a job with Sierra Airlines - an airline known for serving drunks and gamblers - whose motto is \"\"big hair, short skirts, and service with a smile.\"\"\"\ntt0278500,FOdizWKG4qk,Miss Prism reveals her involvement with Jack's plight.\ntt0264150,oXDyQju8my4,John Witney enthusiastically leads the stewardesses through basic training.\ntt0278500,gtb_4pNuYIA,\"Jack uses Cecily as leverage against Lady Augusta to be able to marry her daughter, Gwendolen.\"\ntt0211915,x7CGZ5vxlLs,Amelie's matchmaking work comes to a climax when she sets up Joseph and Georgette to be in the bathroom at the same time.\ntt0278500,2TI2MT0eoSo,\"Algernon uses his trusty, fictitious friend, Bunbury, to get out of a social obligation.\"\ntt0211915,Vz7PIPZgT0A,\"Amelie's heart races when she encounters an intriguing young man at the train station, and chases after him when he takes off running.\"\ntt0264150,cLm4oCbovsE,The gals get interviewed by the eccentric John Witney and do their best to ignore his strange eye.\ntt0264150,DmokH6o-nKU,Donna gets a birthday surprise from her boyfriend Tommy when he breaks up with her in a birthday card.\ntt0264150,X_SthyaIImM,Donna enjoys the Christmas holiday with Ted and his family. She even receives a gift of the Stewart family red sweater.\ntt0264150,XyBWsO1gVTk,\"When Donna is disappointed about being assigned to Royal Commuter Airlines, despite being the top student in her class, John explains that she peaked-too-soon.\"\ntt0264150,38ok415yQOc,\"If Cleveland is where Ted calls home, then Donna loves Cleveland because she loves him.\"\ntt0264150,2zi4N3_c4sM,Tensions boil over between ex-best friends Donna and Christine leading to a cat fight aboard the plane.\ntt0264150,JgYPxPGfaRE,\"Donna receives a perfect score on her makeup test, and has some encouraging remarks for her instructor John Witney.\"\ntt0264150,hKBHte0cc_0,\"Donna makes it to Paris, but is saddened that she has no one to share the experience.\"\ntt0286112,SfaY0KH76nU,\"With stellar goal-keeping and a mighty kick from Steel Leg, Team Evil is blown away.\"\ntt0299977,CWPoQO7bMRU,Flying Snow battles Moon in a whirlwind of falling leaves.\ntt0299977,sjVgX0A8Jtc,Nameless and Flying Snow push back the King's arrows while Broken Sword finishes his calligraphy.\ntt0299977,2eXbS-qG2GA,Nameless and Flying Snow battle to the death before the King's army.\ntt0299977,57TliyF8MFI,\"Nameless and Broken Sword wage an epic battle over a lake, visualized in their minds.\"\ntt0299977,fLxSRdnGucA,\"After storming the palace, Flying Snow fights the soldiers while Broken Sword fights the King.\"\ntt0299977,VIJIbL0ujtk,Moon attacks Nameless who defeats her utterly.\ntt0299977,KeTBqolcrO8,\"The King gives the order to execute Nameless, then gives him the funeral of a hero.\"\ntt0299977,E1N0IvW6HyI,\"Finally understanding Broken Sword's decision, Nameless abandons his plan to assassinate the King.\"\ntt0107822,YafZPxB5DRs,George tries to protect himself by telling Ada she should go if she doesn't feel the same way about him.\ntt0107822,3WNqgV1M5Zs,\"Alisdair, enraged that Ada sent George a love note engraved on a piano key, hacks off her finger.\"\ntt0107822,XawDF5UDgXY,George demands that Ada lift her skirt while she plays.\ntt0107822,QqY-Ikm0kc4,\"George strikes up a deal with Ada -- that she can earn her piano back, one key at a time, by letting her do \"\"things he likes\"\" while she plays.\"\ntt0107822,4U8n5Kjd0LY,Ada narrates the epilogue to her story.\ntt0107822,hoHyqSZGPt0,Alisdair sends Flora to deliver George her mother's finger as a warning.\ntt0107822,OMMs6m-HIxM,Ada puts up a fight for her piano when Alisdair claims it's too heavy to move.\ntt0107822,AZLoDR3AjX8,\"Following one of their trysts, George questions Ada about her feelings for him.\"\ntt0107822,3_giBWrUYKc,Alisdair visits George in the middle of the night to tell him that he is relinquishing Ada to him.\ntt0107822,tLUrEgC-Dd4,\"Thinking the piano spoiled, Ada insists they throw it overboard and, at the last second, decides to be pulled down with it.\"\ntt0286112,HtBebT-rKeM,Mui impresses Steel Leg with her use of kung fu techniques to make sweet buns.\ntt0286112,exMmixM3b3Q,\"Steel Leg fights a street gang using a soccer ball, so as not to use kung fu for violence.\"\ntt0286112,n5_WG3WZqVk,\"At their training match, Shaolin Soccer learns that soccer can be as brutal as any battlefield.\"\ntt0286112,JwfDV_Y54fA,\"Mui is conflicted by her new look, but she quits her job at the bakery.\"\ntt0286112,lqT20npvohw,Shaolin Soccer faces off in their first official match and makes quite an impression.\ntt0286112,Vje8Fp3yQFM,\"In the China Supercup, Shaolin Soccer faces a very powerful goalie.\"\ntt0286112,fvBB1KK_VY0,\"At the Supercup, Team Evil cheats with drugs and Shaolin Soccer suffers at their feet.\"\ntt0286112,Go6nwid-CaQ,\"Shaolin soccer faces off against the strange-looking, but fiercely talented Team Mustache.\"\ntt0286112,6BsWrEwtDP8,\"Mui volunteers to take over as goalie, but she is not well trained.\"\ntt0115986,DF-ifsJZQEM,Sarah dreams of the savage murder of Ashe and his son Danny.\ntt0115986,qnNr8etyi08,\"The Crow seeks revenge on the first thug behind his family's slaying, Spider Monkey.\"\ntt0115986,0tN0uV9DebQ,Judah makes an example out of one of his thugs that betrays him.\ntt0115986,r74QbwaIWFc,Ashe resurrects from his watery grave.\ntt0115986,dlYo5IHqD80,\"Sarah paints Ashe in the fashion of her friend, Eric.\"\ntt0302674,Pu3BkumJXpk,Gerry gets rock marooned while searching for Gerry.\ntt0302674,n7mEYDnXaMg,Gerry discusses his conquests in a strategic video game.\ntt0115986,fBtPMUJJEg8,The Crow seeks his revenge on Kali.\ntt0115986,FtM7tdP6UDE,The Crow takes his revenge on Curve in the Los Angeles sewers.\ntt0115986,0-EcLwovpbU,Judah's slaying of the crow causes Ashe to fall from a skyscraper.\ntt0120321,lIk-3o2CkM8,A heated argument between Victor and Thomas escalates to such a point that Victor crashes the pickup truck when he fails to see a stranded car in the middle of the highway.\ntt0120321,6ZNNfq5l5Ds,\"Shortly after meeting Suzy, Arnold asks her -- point-blank -- about the worst thing she's ever done to another person. By the end of their conversation, he realizes that they have quite a bit in common.\"\ntt0120321,xPnV2392Tck,\"After a couple of sh*t-kicking cowboys take their seats, Victor and Thomas get back at them by mocking the greatest icon of cowboy Romanticism: John Wayne.\"\ntt0120321,kBEhz8vw2AM,Thomas secures a ride for Victor and himself after he regales a couple of women with his storytelling abilities.\ntt0120321,uwcJaUaVfR0,Victor shows Thomas how to be a real Indian.\ntt0120321,az-Q_fYNZrU,\"After encountering a group of shellshocked accident victims, Victor runs through the desert for help, his mind clouded with voices and images of his past, and of his father.\"\ntt0120321,afW8dxL3qZM,\"Suzy reveals to Victor how the house fire on the reservation started all those years ago, back when Victor and Thomas were infants. After Victor disputes her rendition of the story, Suzy challenges him to go into his father's trailer and confront what awaits him.\"\ntt0120321,IdSgAIq22b4,\"Victor explores his father's trailer and finds a photograph of himself, his mother, and his father during a happier time. Then, as part of a Native American ceremony, Victor cuts his hair short.\"\ntt0120321,Bi3QsK4sVVA,Victor skillfully talks his way out of a dicey predicament with the Police Chief.\ntt0192071,t0qYTDYyNvs,\"Berke and Kelly kiss, but Berke breaks it off out of loyalty to Felix.\"\ntt0120321,ND-nldJc8kU,\"Upon returning home, Thomas posits the need for one to forgive the past, as Victor spreads his father's ashes over the river.\"\ntt0116324,RSm6z78KnxQ,Agent Kent advises Nancy on the proper technique to breast feed. Paul has difficulty finding a seat on the airplane.\ntt0192071,6QOqWyBhTVo,\"Berke claims to be over Allison, but her intimate moment with Striker distracts him during gym.\"\ntt0302674,OAhF3wWBxbM,Gerry helps cushion Gerry's jump from the large rock.\ntt0192071,VyLZlTLEY4U,Kelly offers to help Berke with his audition for their school's new Shakespeare musical.\ntt0780511,VK-GL8zzH9I,\"Rosie sends her Dad off at the airport, not knowing when she'll see him again.\"\ntt0192071,ASP2K-sFud0,\"Berke goes on a date with Dora Lynn, the hottest and clumsiest girl in school.\"\ntt0192071,NC756fAs0Hk,\"When Berke forgets the lyrics to the commercial jingle for Big Red gum during his audition, Kelly helps him out.\"\ntt0192071,l0Io_aXWgkQ,\"When Berke gets arrested in a sex club raid, his mom and dad are disturbingly supportive.\"\ntt0302674,hoSJVPaj0ds,Gerry and Gerry discuss a humorous episode of Wheel of Fortune while searching for the trail.\ntt0300051,GU_FUlOapf8,Ollie has a tough time renting porn when the video store clerk gives him a hard time.\ntt0192071,_KXS58EqEHY,Desmond does not respond well when Kelly comes to his office with some lyrical suggestions.\ntt0192071,nET7V9DsWgo,\"Desmond is thrilled when the opening number of his musical based on \"\"A Midsummer Night's Dream\"\" goes off without a hitch.\"\ntt0427969,HU3C0Vv0FeA,A young boy wants to shoot Superman to see the bullets bounce off.\ntt0350261,S48AVqtonXw,\"As the bear roams through town, Einar tracks him down only to be stopped from shooting it by Crane.\"\ntt0192071,y9DslHbBubA,Berke rewrites the end of the musical on the spot to profess his love for Kelly.\ntt0357470,MKbX6ilLdRQ,Kelly goes undercover and off script during a WW2 reenactment.\ntt0192071,Yc1M82PB8C4,\"Sisqó and Vitamin C cover Earth, Wind & Fire's \"\"September\"\" in a post-credits dance party with the cast.\"\ntt0302674,yOJ1gWVYB88,Gerry & Gerry's exchange an single insult after days of being lost.\ntt0302674,iqRZb8tveM0,Gerry and Gerry run from the trail after discovering other tourists.\ntt0302674,6c4QghxZ3IU,Gerry & Gerry's try to recount their steps to determine where they should go next.\ntt0302674,9GFz8aB2BVE,Gerry chokes Gerry to death to save him from the agony of dying of dehydration.\ntt0302674,fgxnajrZN9s,A delusional Gerry sees another mirage in the form of Gerry.\ntt0302674,QpGGSlwgOPs,Gerry finds a highway after mercifully killing his friend Gerry under the pretense that there was no hope.\ntt0103994,505KGEuKbNg,\"After years of staying quiet, Tita stands up to Rosaura about the love she and Pedro share.\"\ntt0103994,-yEB9DCX-Ek,\"John tells Tita about a mythical theory in which one must find their passion in life, or \"\"light their match.\"\"\"\ntt0184858,SIQb3d-piF0,Rudy overhears a conversation between Gabriel and Ashley where he finds out that Ashley is really Gabriel's girlfriend.\ntt0103994,RNXEflQuWsU,\"Tita's sister, Rosaura, reveals that her daughter will share the same fate as Tita -- to care for her mother until she dies.\"\ntt0103994,fU9nP5V2vw4,\"Mama Elena cruelly rejects Pedro's proposal to Tita, offering him Rosaura's hand in marriage instead.\"\ntt0184858,Gt_pfAghaHA,\"Rudy leads Gabriel and Ashley into a trap when they open the mysterious \"\"Pow-Wow\"\" safe.\"\ntt0103994,x2vfxsdVhaU,Rosaura begs Tita to help her attract Pedro.\ntt0103994,Nbl6Y076TeQ,\"Mama Elena's ghost haunts Tita, disapproving of her affair with Pedro and cursing their unborn child.\"\ntt0103994,wjHd0VWfuRU,\"Tita takes a stand against Mama Elena's damning ghost, driving her away forever.\"\ntt0489327,q1Pz7ppcuJc,\"Maurice introduces himself to his friend's rude and disinterested great-niece, Jessie.\"\ntt0184858,LmRLxta5-4U,\"Stunned to learn that his old cellmate, Nick, is still alive and dating Ashley, Rudy is secured to a burning car so he can be chalked up as a casualty of their nefarious plan.\"\ntt0103994,J7PnM3ji7uA,Tita confesses to John about her affair with Pedro while he was gone.\ntt0184858,8ZDX262xJvo,\"Gabriel's heist plan goes haywire in a sea of confusion and gunfire. When the dust settles, Rudy is captured at gunpoint by Ashley.\"\ntt0103994,O4aMxMg0Vn0,Tita makes quail with rose sauce using the roses Pedro gave her. The meal has a mystically sensual effect.\ntt0103994,2pg_Mr4lIoY,Pedro and Tita's love story begins with his declaration of love for her.\ntt0489327,cLTBa54o70U,\"When Jessie passes out after drinking at a nightclub, Maurice takes her home and puts her to bed.\"\ntt0489327,LldI0SRzJX0,\"Maurice gets Jessie a job posing nude for art students, and he can't help but try and take a peek.\"\ntt0184858,kghbSGoV1kE,\"When cockroaches are discovered in the prison food, a massive riot breaks out in the mess hall. In the chaos, Nick is killed as he protects Rudy from a very ticked-off inmate.\"\ntt0489327,qRAE0UOMyB8,\"Maurice takes Jessie to the National Gallery in London to see his favorite painting, the _Rokeby Venus_ by Diego Velázquez.\"\ntt0103994,dZgbeIE9Xbo,Pedro takes advantage of the protection night offers and kisses Tita.\ntt0103994,H3ZYf8ECNWU,\"Tita, being the youngest and therefore her mother's caretaker, can do no right in the eyes of her mother.\"\ntt0489327,IIn0MEHnMC8,\"Maurice takes Jessie shopping, but she's humiliated when he doesn't have the money for her dress.\"\ntt0144715,-IZv4Jfl6ZQ,\"Arriving in Australia, PJ Waters exudes confidence, and his magnetic charm is no match for the ladies, especially Yvonne.\"\ntt0489327,OYwDIrdkJ3Y,\"Maurice helps Ian cut his toenails, which leads them to contemplate their own mortality.\"\ntt0300051,iR-4e37VUPo,Ollie and Gertrude argue before the video music awards.\ntt0489327,kuXEfuC92Ag,Jessie allows Maurice to kiss her three times on the shoulder.\ntt0300051,0VYvdsrV6Lw,Ollie hasa meltdown in front of the press while managing his career and his baby.\ntt0489327,cIiMDK4UMQM,Maurice and Jessie reconcile after his return from the hospital.\ntt0144715,H60kzF257OI,\"Having slept with Ruth the previous night, P.J.'s male assertiveness is threatened when she dismisses the sexual affair.\"\ntt0144715,R4O0t9jkkUg,//j.mp/zaccRf\ntt0144715,yGPikMkqr3M,A hallucinating and deranged PJ has a spiritual vision of Ruth in the form of a Hindu deity.\ntt0144715,5abHHDWcRAQ,\"In the Australian outback, PJ chases after Ruth, and Yvonne chases after PJ.\"\ntt0144715,KA-LkJdOzHo,\"Yvonne deliberately succumbs to the sexual machismo of PJ. She seduces him, and he seduces her.\"\ntt0144715,q06t8RTLqMQ,\"After PJ calls Ruth a \"\"man hater,\"\" he insists that she attack his male insecurities and flaws.\"\ntt0144715,ig80r0pbEv4,Ruth makes P.J. over to look like a woman. He's not to pleased with the reflection in the mirror.\ntt0144715,8JfgfdHNkvg,Ruth mocks PJ by stating that sex with him is a bit revolting.\ntt0300051,uvUH_niF-Zo,Ollie tries to open up with his daughter about sexuality when he catches her and a friend showing each other their genitals.\ntt0144715,esrBtSFDlEU,Ruth has a religious awakening when Baba graces her with his touch.\ntt0190590,Xy-cq_YpYPg,Hugo plants the seed in Odin's mind that one of their teammates is sleeping with Odin's girlfriend.\ntt0300051,IB2eLqqkLaI,\"Ollie picks up his daughter, Gertie, from school in his \"\"batmobile\"\".\"\ntt0300051,JC2eKssXavo,\"Ollie gets some parental advice from his former client, \"\"Will Smith\"\ntt0489327,iRIxb6_ELNg,\"Jessie recalls her pregnancy and abortion, while Maurice recites a Shakespearean sonnet.\"\ntt0300051,_9ZdW3KXuMs,Ollie has an unsuccessful job interview with two Kevin Smith regulars.\ntt0300051,ACCoL8xk0Jg,Maya interviews Ollie about his masturbation practices.\ntt0300051,8n2vsSHAs0w,An awkward conversation ensues when Gertie catches her father and Maya in the shower together.\ntt0300051,uONmjd_RGk4,Gertie gets angry when her father plans to interview for a job in the city on the day of her show.\ntt0489327,_VA5a5QSYYA,Maurice apologizes to Valerie for leaving her with three children.\ntt0300051,GXZ-NAPnfsw,Gertie lights up when her father makes it to her big Sweeney Todd number for the school show.\ntt0780511,3F_Jlo1A4oo,\"Frank hitches a ride with Colleen, a truck driver, who recently lost her husband.\"\ntt0780511,nKB-Ij0vyB4,\"Rosie inquires about her father's dreams and career ambitions when he was younger. Frank answers simply that he \"\"wanted to be a good father.\"\"\"\ntt0489327,dRTKQQtFoRU,\"Jessie takes Maurice to the seaside, where he dips his toes in the freezing cold water one last time.\"\ntt0780511,WH9nsFQH6KU,\"Rosie cooks dinner for her father Frank, and reminisces about learning to eat spaghetti as a kid.\"\ntt0489327,Jf3-qH7OhmM,Donald tries to break up the fight when Ian confronts Maurice about his influence on Jessie.\ntt0190590,hiq_FE5dmWI,\"With his mind roiling in jealousy and suspicion over Desi's supposed unfaithfulness, Odin uses his anger to nail a perfect score at the dunk contest. But when his aggressive demeanor gets out of control, the crowd turns against him.\"\ntt0190590,3yp-s7ia9iQ,\"Odin is accused of forcing himself onto the Dean's daughter, Desi. When Desi is brought in for questioning, she tells her father that she and Odin have had a secret relationship for quite some time.\"\ntt0190590,lsxZwAnu8LQ,Hugo's plan goes horribly awry when Roger misfires and only wounds Michael instead of killing him. This leads to a cascading breakdown of panic and even more murder.\ntt0190590,Yp6X2N7tcKQ,\"Odin apologizes to Desi for what he's done, and for what he's about to do as his jealous rage takes over.\"\ntt0258068,qFcIW6TtVEI,\"Fowler ruminates on the power of Vietnam, and has a late night meeting with Vigot.\"\ntt0190590,DnKAU918UaE,\"Odin delivers his last words to clear the air, and his conscience, before committing suicide.\"\ntt0190590,JvtwIPa3c9A,\"Hugo manipulates Odin by feeding him false information during a conversation that he has with Michael. Afterwards, Odin asks Hugo for his help in killing Michael.\"\ntt0448075,koWFIhw94xo,Gabriel and Pete develop a friendship over the phone.\ntt0190590,fYvvenxELZA,Emily brings Desi's scarf to Hugo in exchange for some romantic affection.\ntt0190590,Q1yT_LIMb30,\"Hugo lays out the plan on how he and Odin can kill Desi and Michael, and get away with it.\"\ntt0258068,42asJ9x0-po,\"Fowler meets Pyle, who develops an immediate attraction for Fowler's lover, Phuong.\"\ntt0780511,-BUI1BdZz94,\"After suffering a heart attack, Frank is emotionally devastated to learn that his missing son died of a drug overdose.\"\ntt0780511,GrWqq9ukRY8,\"Frank is disappointed to learn that his son Robert is not a conductor of the orchestra, as he was led to believe, but a percussionist.\"\ntt0780511,9ZhgVCU6ehk,The letter which Frank left for his son is returned including a family photograph taken on Christmas Day from back years ago.\ntt0780511,6RAn28uDZHc,\"Suffering through a fevered dream, Frank questions his young children as to why they all lied to him during his recent visit.\"\ntt0780511,VbrKHPGdDT0,The entire Goode family comes home for Christmas. Frank even cooks the turkey.\ntt0780511,c-veUs6bPHY,The father-son relationship reverts back to old times when Frank scolds Robert for having a cigarette.\ntt0780511,9gQIJ4id6pg,\"The Goode family sits down for Christmas dinner, Frank looks over his children and can happily say, \"\"everybody's fine.\"\"\"\ntt0448075,Kv_9PD-_akA,\"When Gabriel can't get a hold of Pete, he flies out to Wisconsin.\"\ntt0258068,1TCzcINB8HI,Fowler watches as Pyle dances with his lover Phuong.\ntt0448075,vJ3TMzKciS8,Gabriel and Anna discuss potential theories and possibilities concerning the truth about Pete.\ntt0448075,fPJQ4T2TQ0E,Gabriel calls Pete after reading his book.\ntt0258068,gY7e586vhzo,Fowler tells Phuong that he has been instructed to return to London.\ntt0448075,jEXEQRL2oQw,\"After hearing Pete and Donna on the phone, Jess has suspicions that they may be the same person.\"\ntt0448075,IiIwhalEAwU,Gabriel gets uncomfortable when he attends what he believed to be a small Christmas party with his ex-boyfriend.\ntt0118949,9NqWMjMX548,Jamling explains how his father inspired him to climb Mt. Everest.\ntt0258068,ilfv_YzaP0U,\"Fowler tells Pyle and Phuong that his wife is granting him a divorce, but the lie is quickly uncovered.\"\ntt0448075,mWdqcBWVurw,\"Gabriel visits the address of Pete's house, which turns out to be a store.\"\ntt0448075,tdBNwAJMgW4,Donna's attempt to be friendly doesn't go over with a frustrated Gabriel.\ntt0448075,4cWDWIgBXrw,Gabriel is harassed by a police officer after he finds him in Donna's house.\ntt0448075,ZLFDR8pvkf4,\"Gabriel receives his final call from Pete, which may or may not be Donna.\"\ntt0448075,SM-1QC6F1-k,Donna attempts to secure Gabriel in the middle of the road as a trucks drive by.\ntt0258068,4uVgjb0gO9E,Fowler is relieved when Phuong rejects an offer of marriage from Pyle.\ntt0118949,pW3peNmE19E,Jamling goes over the dangers the mountain poses; Araceli carefully crosses a crevasse using a ladder.\ntt0258068,5w8kGvQ2j5Y,\"After Fowler reveals the depths of his love for Phuong to Pyle, an attack forces them out of the watch tower in which they were hiding.\"\ntt0118949,lcns0VMck7s,\"The team spends time at base camp, where they hear the roar of avalanches.\"\ntt0118949,iVpm6-9dPYs,\"Ed reflects upon the storm that the climbing groups who set out before him faced, including his friend, Rob Hall.\"\ntt0118949,29KrhW9Ft4E,The team spends a few weeks acclimatizing to the altitude at Middle Camp.\ntt0258068,e50yvXvkaeg,\"On a search for Phuong, Fowler makes a scene at the office before finding her at home with Pyle.\"\ntt0118949,qEMbpl4V-eA,\"The Summit Team struggles with the harsh conditions of \"\"the death zone\"\" before they make their final ascension to the summit.\"\ntt0118949,KS_Doe-4fkM,The climbers choose to persevere and begin their climb to the summit despite the tragic deaths of the climbers who'd tried it just days earlier.\ntt0118949,Urf145tA2SM,Ed reflects upon his friend Rob's last night as well as the miraculous story of another climber who made it through the storm.\ntt0118949,qmGHg5uJ7xU,The Summit Team reaches Mt. Everest's summit.\ntt0118949,OrjUfQFz_os,The Summit Team braves the Lhotse face up to high camp.\ntt0118949,59R3QIB6NqU,The Summit Team climbs up the Southeast Ridge to reach the summit.\ntt0258068,gBjOW9luDWw,Fowler and Pyle witness first-hand the bombing of a busy intersection in Saigon.\ntt0114805,0qeD9nc9nwo,The documentary Nanook of the North gives Isaac Mizrahi the inspiration for his new collection.\ntt0427969,7_OiqaOaeNc,George Reeves auditions for the lead role in the Superman television series.\ntt0258068,QF08ozhDX-0,Hinh convinces Fowler that Pyle ia a spy who needs to be eliminated.\ntt0258068,gljJhOFXrUU,Fowler watches from a distance as Pyle is abducted and taken to a dark alley.\ntt0242527,cX0S8SN8Cmk,\"Liz tells Mike that she's attracted to him, and suggests that the reason they are trapped in bunker is because of Martyn's jealousy towards them. They soon suspect that the entire bunker has been bugged by Martyn.\"\ntt0242527,W0_4w6GsngI,\"After leading his friends to The Hole, an abandoned WWII-era bunker, Martyn asks Liz if she's going to be able to handle being underground for three days.\"\ntt0190138,Kocw_F48CGw,\"Leo apologizes to Val for being a disappointment, and breaks the news to Erica that Willie committed murder.\"\ntt0427969,rChS9MeLW-w,Lou sees his unhinged client Chester Sinclair arrested for murder.\ntt0427969,FfIAWygymsc,Lou searches for overlooked evidence at the site of George Reeves' shooting.\ntt0242527,IimC6oXVZpI,\"Convinced that Martyn is spying on them via hidden listening devices, the gang pretends to make it look like they are tearing themselves apart in order to fool Martyn into thinking that his plan has worked.\"\ntt0242527,gYhC67R4g64,\"Martyn gives his version of the story to the police, revealing a totally different side of Liz and Frankie as they plan their party in The Hole.\"\ntt0377107,MdTaJDKTgUc,\"Catherine remembers the years in which her father was losing his mind, particularly the time he thought he'd made a mathematic breakthrough when he'd actually written gibberish.\"\ntt0114805,shogibE67W8,Isaac Mizrahi learns that another designer was inspired by Nanook of the North.\ntt0427969,cg-wxqxxWs4,\"At the urging of his agent, George Reeves reluctantly accepts the role of Superman.\"\ntt0114805,Wzt_d8eA_m8,\"Isaac Mizrahi discusses his pop culture influences, including Call of the Wild and Mary Tyler Moore.\"\ntt0147004,AqTaIbDTNnE,Ray uses the only thing that matters to LV -- her deceased father -- to get her to agree to playing a show.\ntt0114805,psDnYKqgVT8,The models hit the runway during the show for Isaac Mizrahi's new collection.\ntt0114805,UQzUOKKGfLs,Isaac Mizrahi and Sandra Bernhard meet a joke writer for comedian Marty Allen on the streets of New York.\ntt0114805,BOaImgyr7mU,Isaac Mizrahi's preparations for the show are intercut with footage from his home movies.\ntt0114805,HRbf5iuWZt8,The fashion models resist Isaac Mizrahi's suggestion that they change behind a translucent scrim.\ntt0114805,wYwlDchIasw,\"Isaac Mizrahi discusses the origins of his favorite neologisms, \"\"Yarn't\"\" and \"\"Gurna.\"\"\"\ntt0114805,n16wxs5pgvk,Isaac Mizrahi visits actress Eartha Kitt and agrees to create gowns for her.\ntt0184858,c_7V6VgIvTY,\"Frustrated by Rudy's intransigence, Gabriel figures out a new way to get his point across.\"\ntt0350261,AVMAbj_Pbnk,Einar takes Griff to the diner to reconcile with his daughter in-law Jean.\ntt0114805,gJOWAISZDhs,Isaac Mizrahi explains his process of designing fashion collections.\ntt0144715,oxA2tQ6kfdE,\"When Ruth tries to escape from an obsessed P.J., he loses control and punches her out.\"\ntt0350261,-AXjzZskE9U,\"At the local diner, Einar puts two drunk hillbillies in their place when they mess around with Nina the waitress.\"\ntt0035423,d7RrYVI3Xw0,Kate joins Leopold in the 19th Century just in time for him to announce their marriage.\ntt0035423,Aw1mnorjq-o,\"Leopold gets acquainted with modern conveniences as well as Stuart's ex-girlfriend, Kate.\"\ntt0427969,zWY-GWMn4Ig,\"Embracing his role model status as Superman, George Reeves doesn't let his young fans catch him smoking.\"\ntt0035423,5EFH9AmTg6c,Kate and Leopold disagree upon the principles of Kate's advertising job.\ntt0350261,FmGg8C6mI78,A humorous moment develops while eating lunch when Griff misinterprets the friendship between Einar and Mitch as a gay relationship.\ntt0350261,Hh-QeqsDXKI,Mitch and Griff get to know one another while discussing the strange things people will eat.\ntt0190138,mfg2O0A6L4g,Leo rides along with Willie to a meeting with a paranoid city official.\ntt0240510,nRq905BT8HM,Jack chases a Mahdi rebel who refuses to put his rifle down when caught.\ntt0240510,M-HCaHXzQRY,Harry explains to Abou why he ran away from his duty.\ntt0120820,Qt5TuFHZh5E,Darryl uses his super hearing abilities to eavesdrop on Janice as she talks to her friend about the type of man who captures her interest. Darryl then uses this information to charm Janice.\ntt0102749,FwfrVozwn7A,\"Down in Natchez, Mississippi, a deal between the local rednecks and Slim's gangster posse goes haywire when the sheriff's department surrounds the house.\"\ntt0120820,dl1X9j-9Lbg,Darryl's dulled senses prove to be an asset as he handles Scott's attempt at hazing with incredible ease.\ntt0102749,cliSp3FNprY,\"As Screamin' Jay Hawkins casts a spell on the dance floor, Imabelle casts a spell on the clumsy Jackson.\"\ntt0107426,V9Ul46Dj3Hg,Siddhartha's decisions lead his disciples to abandon him.\ntt0102749,PqGuiXKC320,\"All's well that ends well for Jackson as he says 'goodbye' to Goldy, then hops a train to be with Imabelle.\"\ntt0350261,gZSxqyNDZvw,Einar takes his granddaughter Griff for a ride on a horse to visit her Dad's grave.\ntt0350261,Kp6aaQEK5y0,Jean pours out her grief over the car accident that killed Einar's son.\ntt0147004,rV4DxcJOCLs,Ray Say is astonished when he hears LV singing in her room upstairs.\ntt0350261,hw8D5KSx5p4,Einar beats the hell out of Gary after the domestic abuser threatens Griff.\ntt0357470,qIleHfrMWWE,Kelly is introduced to the eccentric Bowland family.\ntt0242527,CjyutBNjVns,\"Frankie is found dead, to the horror and shock of the survivors.\"\ntt0350261,wSKGygJ2-oQ,\"Mitch visits the bear that mauled him, now relegated to a cage in the zoo.\"\ntt0350261,Y77zaw13B_8,Einar's plan to free the bear goes horribly wrong when the gear shift of the truck accidentally shifts.\ntt0350261,L6FYDW1TC4g,The Gilkyson family comes together as a family with Einar finding peace for the first time since the passing of his son.\ntt0350261,IqOqMdra3rk,Mitch steps outside at night to find himself face to face with the bear that mauled him. He resolves to not give an inch.\ntt0242527,_pEz5emBI4A,Liz recounts the moment when she and Mike got intimate while they were trapped in The Hole.\ntt0357470,fy-PoYl4bQI,Kelly runs into Tabby at an art supply store.\ntt0357470,GbW8sknTWZ8,Kelly interrupts class when he believes the teacher's curriculum is undermining the truth.\ntt0242527,nnJW5FWg9oc,\"Liz experiences a flashback where she recalls the actual, sordid events of what went on in The Hole.\"\ntt0357470,IvKzfpZ1GUw,Kelly tries to impress the Bowland family during dinner.\ntt0357470,gnY0vVF0j60,Bart confronts Kelly about kissing his sister during the History Channel reenactment shoot.\ntt0357470,kUAXs0LhD6I,\"Kelly introduces himself to Miner Weber, Tabby's fiancee.\"\ntt0357470,7BnAQgS15HY,\"Kelly, Bart and their friends pull an apocalyptic prank on Lance.\"\ntt0357470,1QDmLu5a0nI,Kelly and Tabby share a brief intimate moment when her wedding is called off.\ntt0242527,w6v2DUJi-C0,\"Trapped and without running water, Geoff describes, in detail, what happens to a human being when they go thirsty. Liz breaks down from the news and her friends try to comfort her.\"\ntt0242527,fi6U1d5eW4g,The gang freaks out on Liz after they realize that they're trapped in The Hole.\ntt0242527,f7utYx1vcM0,\"Liz reveals to Mike that the whole concept of going down into The Hole was so that he could get to know her better and fall in love with her. Mike doesn't see it that way, and reacts quite violently...\"\ntt0242527,AHyK8eTGHNs,Martyn chases down Liz and confronts her for betraying him to the police.\ntt0186975,kaQPejxLNRw,It's love at first sight for Al when he spots Imogen from across the bar standing by the jukebox.\ntt0035423,I_mYmJVMef0,\"Charlie takes Leopold's advice in trying the sincere approach with his crush, Patrice.\"\ntt0035423,bSE3gq6Sf6Y,Leopold romances Kate with a candle-lit dinner on the roof.\ntt0242527,sRqeX6qMlak,\"When Mike realizes that Geoff has stashed away a soda can, he loses his temper -- and his mind -- and bludgeons Geoff to death.\"\ntt0035423,U9nydZd_emI,Leopold comes to Kate's rescue when a thief steals her purse in Central Park.\ntt0186975,dCxgKZ5QV5E,Al recalls his first kiss - coming out of the dentist's office with his mouth numbed from novocaine and encountering an older woman.\ntt0035423,G-FYkB9M72k,Kate and Leopold do some 19th century dancing; Kate expresses fear of letting herself fall in love.\ntt0035423,DLVfYn9pvwo,Charlie asks Leopold about his real identity; Kate is moved almost to tears when Leopold makes breakfast for her.\ntt0035423,Fwi0bsJ5F8I,Leopold performs the Farmer's Bounty commercial flawlessly....until he takes a bite of the stuff.\ntt0427969,2MtY0yfM0nI,Eddie Mannix defies Lou to prove he had anything to do with George Reeves' death.\ntt0035423,tBw_BTLbjJI,Leopold crashes Kate's date with J.J. to expose J.J. as the insincere fraud that he is.\ntt0186975,liK550asDSw,\"At the bar, Al encounters the tempting and alluring Cyrus who's in the porn business.\"\ntt0186975,hohZbtTAtRA,\"Enjoying a date in an art gallery, Imogen's passion for a painting sparks Al's passion for her.\"\ntt0186975,VrFey4EPA8Y,\"Imogen shows off her extroverted, soulful side by performing a song and dance to the tune \"\"Let's Stay Together.\"\"\"\ntt0240510,wF6xVdnFJho,\"After discovering the regiment will go to battle, Harry asks his superior to resign from his commission.\"\ntt0427969,1z2AjhGr9XI,\"After watching his 8 mm home movies, Lou arrives at the home of his ex-wife and son.\"\ntt0190138,MEdmiHCUvYA,Leo attempts to reconnect with Erica at the party celebrating his release from prison.\ntt0427969,BRWeoTfbbbg,Lou tries to charm a saleswoman into providing information about George Reeves' watch.\ntt0427969,if5npkJHfik,Art gives Lou an 8 mm film reel that shows George Reeves practicing martial arts.\ntt0190138,uCCrethRf3E,Willie takes Leo out to the club and reassures him that they can find legitimate work together.\ntt0240510,2sFAyhjR8_o,Harry helps a wounded Jack after the battle of Omdurman.\ntt0186975,LrTMwBugt-Y,\"Unable to sleep, Al turns on the t.v. to find himself a guest on 'The Man Show.'\"\ntt0240510,938jCranAMo,Harry confesses to Ethne that he resigned from the army not for her but for himself.\ntt0240510,Z58VID4Qjf0,\"The Mahdi rebels surround the British fleet, who counter a charge when they believe they have a backup cavalier fleet.\"\ntt0240510,NvxttHABP1o,The British army is forced to shoot a group of unarmed Mahdi rebels before realizing they were only a small first wave.\ntt0240510,skuMakhGnn4,\"The British Army attack the Skirmishers, including Harry, while Castleton falls in battle.\"\ntt0240510,ptiXfr5lJl8,\"Abou aids Harry in prison, where they both mutually decide to break out of prison.\"\ntt0186975,Ur4Pg0Jyph0,\"Overlooking Central Park, Al receives some wisdom on the topic of romance from Monk, and Imogen unexpectedly makes a surprise visit.\"\ntt0120820,DFEuw-bNldk,\"Darryl proves his mastery of finance without the use of the experimental super drug, and in the process, defeats Scott for the job.\"\ntt0240510,9ZvkGoQ1dSU,Harry and Abou battle their captives as they attempt to escape prison through the desert.\ntt0186975,U6PfGIrWIak,\"At a house party, Al finds a wannabe Jim Morrison hitting on his girlfriend Imogen.\"\ntt0240510,FlyWwjIuCeE,Harry meets Ethne for the first time since he went to war and she got engaged to Jack.\ntt0240510,0PraJ0mNgUs,Jack gives his blessing for Harry to be with Ethne after he realizes Harry was the man who helped him at the battle of Omdurman.\ntt0186975,3XPzF1azIkI,A romantic walk in New York City leads Imogen to confess that she's still not over Al.\ntt0186975,9aHj6prYd54,\"Al opens up a gift from Imogen - a book entitled \"\"Down to You\"\" with the front cover being a hand drawn portrait of the two of them.\"\ntt0186975,btWDXgrF-bo,Al and Imogen sleep together for the first time after a courtship of three months.\ntt0190138,PtgGWFzIQq0,Things go wrong one night when Willie kills a rail yard supervisor and Leo beats a cop.\ntt0120820,z8Z8Qx6-rPY,\"Scott embarrasses Darryl in front of his elitist, fraternity friends before telling him that he's not good enough to join them.\"\ntt0190138,bolHm17q3ik,Leo finds himself unable to shoot the police officer who can identify him from the rail yards.\ntt0186975,bHjHDiu2UR8,\"Al surprises Imogen on her birthday by serenading her with the Barry White song, \"\"Can't Get Enough of Your Love Babe.\"\"\"\ntt0120820,EF6ss3d4GyI,\"After taking the experimental super drug, Darryl's senses kick into overdrive as he hears, sees, smells everything in unbelievable detail. It drives him crazy.\"\ntt0120820,17oDZd93a-U,Dr. Wheedon lays out the science and the dangers behind his experimental super drug.\ntt0120820,UTAZimUwzCM,A shady guy takes advantage of Darryl's situation when he realizes that Darryl can't see properly.\ntt0120820,jHessqORWLw,Darryl gets into a tussle with Patrick Ewing after he inadvertently insults the NBA legend during a Knicks game.\ntt0120820,U937JR-ir5I,Darryl starts to master his newly empowered senses and realizes the potential he now possesses.\ntt0190138,41IWZRnmb68,Frank and Willie discuss their strategy for covering up Leo's involvement in the murder.\ntt0120820,hLrM7OaMTGg,\"After giving himself a double dose of the experimental drug, Darryl's senses are overloaded and he has a tough time maintaining his composure around the sultry Lorraine.\"\ntt0120820,M7iC24MaxxI,\"Now a successful partner on Wall Street, Darryl offers to move his mom to a deluxe apartment on the East Side.\"\ntt0190138,bqPbkGVa_wc,Leo and Willie get into an epic brawl after Willie slaps Erica.\ntt0102749,0g39c4d1fKQ,Imabelle's attempts at seduction fall flat on the inexperienced and innocent Jackson.\ntt0102749,ifS04il68Yw,\"With Jackson paralyzed to several sexual come-ons, Imabelle correctly concludes that he must be a virgin.\"\ntt0102749,C68UZJevw2Q,\"At first uncomfortable, clumsy, and hesitant, Jackson eventually reaches a point of sexual ecstasy in the hands of the experienced seductress Imabelle.\"\ntt0102749,xs0lwxmTaZY,\"Having never drank alcohol, Jackson accidentally gets drunk when he develops a taste for rye whiskey. Goldy and Big Kathy look on with shock.\"\ntt0102749,tbjTxvs1nPo,\"Jackson chases after Imabelle leaping from rooftop to rooftop, with Goldy following suit.\"\ntt0102749,DOl-8LrZapk,\"When Easy Money refuses to back down to Slim calling him \"\"chump pussy,\"\" a showdown occurs, leading to an inevitable shootout.\"\ntt0102749,OKjpAsVT-8g,\"With Slim holding Pappy hostage, Easy Money surrenders his weapon to save his dog.\"\ntt0102749,TJIWOgCUdGE,\"With high adrenaline and high risk, neither Goldy nor Imabelle will back down to other, so they decide to become partners.\"\ntt0102749,UvNE2bjUfC4,Jackson defends his love for Imabelle against Slim in a fight of manhood to the death.\ntt0190138,4xpGjslC5Vs,\"Erica rejects Willie and they fight, with deadly consequences.\"\ntt0190138,R80X3_lPzoo,Willie gets arrested while Frank and Kitty hear the news about their daughter.\ntt0190138,9IMNpGeSLT0,Leo gives a warning to the thug sent by Willie to take him out.\ntt0107426,9QbJu_68yS4,Lama Norbu explains to the Conrad's how he believes Jesse is the reincarnation of Lama Dorje.\ntt0190138,Cb1Pbk3gQSM,\"Leo has a job interview with his new uncle Frank, who encourages him to return to school.\"\ntt0107426,EWBVJF9sSPI,Kenpo Tenzin recounts his dream to his peers of Lama Dorji's reincarnation in Seattle.\ntt0107426,0zyVlsLgJ8U,Lisa recalls the story of Siddhartha's birth.\ntt0338135,4nrgeASou5Q,\"Nathalie gives Rémy some heroin to help ease his pain. As she prepares the drug, they discuss the shared past between them.\"\ntt0107426,yxnFEjVMK2U,Siddhartha ventures outside of his kingdom and witnesses the class structure and mortality of man for the first time.\ntt0107426,YmMAmPFhSqw,Lama Norbu and Kenpo Tenzin explain the purpose of their Seattle visit to the Conrad's.\ntt0107426,2QT4mFNVyzc,\"For the first time, Siddhartha wonders about the world beyond his walls.\"\ntt0107426,xJzCM_nI2mM,Siddhartha witnesses for the first time the frailty of humanity at the moment of death.\ntt0107426,GV9TBb-8Kec,Disciples of Siddhartha become convinced of his miracles when a serpent covers their Lord when it rains.\ntt0107426,iGgiGgeCwM8,\"After Lama Norbu lectures Dean on the Buddhist belief in reincarnation, Dean decides it is not the life he wants for his son.\"\ntt0107426,zyRjUeY6YOc,\"Raju and Jesse are introduced to the third candidate, Gita.\"\ntt0107426,BS_wIUrlOPk,Dean and Lisa discuss the possibility of letting their son go to Bhutan.\ntt0434124,B_UjiJy0t4c,\"After trying to save a damsel in distress, Charlie is surprised to wake up in the dressing room of drag queen Lola.\"\ntt0147004,hX5s15LBHqo,\"Mari brings Ray home, where she is quickly set off by LV's skittish disposition.\"\ntt0434124,g92cHdRbgag,Charlie speaks to the workers for the first time after taking over the factory from his late father.\ntt0147004,Z519Bs2Kidc,Mari gushes to Sadie with all the juicy details of her night out with Ray Say.\ntt0434124,uJNHr8QQVJQ,\"Lola flips out when Charlie produces a comfy, burgundy boot.\"\ntt0434124,Rxn-KDDZ8RI,Charlie takes Lauren to see a performance by Lola.\ntt0147004,QX7j8pCeD7Y,Ray claims LV as his discovery as soon as he witnesses her talents.\ntt0147004,h4SMndWj5To,\"LV, shy at first, gets inspiration from her dad's memory to perform her first song full-out.\"\ntt0147004,FYDwyb7CJxY,LV's show takes off as she embodies a variety of great divas.\ntt0147004,vT6xS0mRapg,\"Drunk with power and the potential for profit, Ray begins to push LV too hard.\"\ntt0434124,khz9zIg_2sc,\"Lola shows up at the factory in Northampton, to the embarrassment of Charlie.\"\ntt0434124,su2njbUCQhg,Lola challenges Don to an arm wrestling match and lets him win.\ntt0434124,4BRkb7LhkUU,Charlie pitches Lola the idea of custom-made boots for drag queens.\ntt0434124,omiio7SJIOE,Lauren tries on a pair of boots and Charlie rehires her.\ntt0434124,NBh_b2SBDHs,Charlie struggles to remain upright as he ventures onto the catwalk in Milan wearing his company's boots.\ntt0434124,vQyK7Re2-Jc,Charlie watches as Lauren dances with Lola.\ntt0372824,VbfjIg31aE0,\"After being fired from the school, Clément Mathieu takes the orphan Pépinot with him.\"\ntt0434124,Mwk75Fek3qs,Lola saves the day on the catwalk in Milan by performing a boots medley assisted by cross-dressing background dancers.\ntt0434124,P4-obzmm_T0,Lola says goodbye to her fans and welcomes her new coworkers to watch her nightclub act.\ntt0147004,t4qrfjEgdt4,LV finally stands up to her mother.\ntt0147004,uLYYXvBlUgQ,Ray harshly tells Mari what he really thinks of her.\ntt0338135,spu_6dxLcok,\"As his friends discuss the various radical and intellectual causes that they've been a part of over the years, Rémy recounts a time when his high-class education made him look like a fool.\"\ntt0147004,KdNQBaLVGfI,\"LV cracks against Ray's demand to do another show, and fights back with a slew of impersonations.\"\ntt0147004,oBtG0gj6MxA,LV channels Judy Garland's Dorothy when she gets caught in an electrical fire. Billy comes to her rescue.\ntt0118949,LwdlYGPcikE,Jamling and Araceli share the feelings they experienced being at the summit of Mt. Everest.\ntt0035423,gJyibprvYQk,Stuart guides Kate to the girder she must cross to time travel to meet Leopold in the 19th century.\ntt0338135,c71vLQPwjdU,\"Sébastien searches for Nathalie after his father, Rémy, undergoes heroine withdrawals.\"\ntt0338135,NBTLvFg_ve8,Sébastien explodes at Rémy for being a destructive and selfish father.\ntt0338135,wPvJ5OJ_P18,\"Sébastien chews out Rémy for not keeping track of his laptop. Later, a French intellectual theorizes the rise of \"\"barbarians\"\" at the gates of Western civilization.\"\ntt0338135,10Q3mew9R6A,Rémy recounts the various love affairs he's had with women he's never met.\ntt0338135,iXyfNoBlpjA,Rémy lectures Sister Constance Lazure about the terrible past of humankind while struggling with his own fading mortality.\ntt0338135,-KvWckPXGIQ,\"Rémy questions Nathalie's self-destructive tendencies and her nihilistic outlook on life. But Nathalie challenges Rémy as well, telling him that he lives only in the past.\"\ntt0338135,XI9RzX6Xvyw,Rémy's family and friends give him a personal farewell.\ntt0338135,IHPjxbcPnAc,Rémy's past lovers discuss his predilection for receiving blowjobs.\ntt0338135,ty5exYQi3wg,\"Rémy receives a tearful goodbye from his estranged daughter, Sylvaine, who lives on the other side of the world.\"\ntt0338135,4zULAL9VioE,\"Rémy shares a tender moment with his son, Sébastien.\"\ntt0372824,Pu54Ka5I6lc,\"Though the rules forbid any further contact, the children find a way to bid their beloved teacher Clément Mathieu goodbye.\"\ntt0372824,EXS5TiBYESk,Clément Mathieu writes music for the chorus and conducts their rehearsals.\ntt0372824,CTlALiQtH5o,Clément Mathieu finds the boys in the dormitory singing a puerile ditty about him.\ntt0372824,95XSvfimW_E,\"Following accusations that his mother works as a prostitute, Pierre Morhange runs away from the school to verify his mother's profession.\"\ntt0287717,MfmOj8Rqcog,Gregorio and Donnagon fight hand-to-hand for control of the transmooker device.\ntt0372824,5l1VEIQj0vA,Pépinot and Pierre Morhange both get in trouble in Rachin's class.\ntt0372824,cCn4FUNWvQ4,\"When headmaster Rachin fires Clément Mathieu after the school burns down, Mathieu states what he really thinks about Rachin.\"\ntt0372824,d9N--iGGW3E,Clément Mathieu arrives to teach his first class and finds the children difficult to control.\ntt0372824,8IXVGrc3uOA,Clément Mathieu auditions the boys for the chorus.\ntt0287717,a_4TTRfXkgk,Dinky Winks gives the President's daughter a tour of Troublemaker Theme Park.\ntt0287717,ZNzVgqv5MtQ,Carmen and Juni battle sword-wielding skeletons.\ntt0287717,Z09MpDVYWSw,Juni dances ballet with the President's daughter.\ntt0372824,Ya2mPO0f-uk,\"When the chorus performs for the Countess, Pierre Morhange is given an unexpected solo by conductor Clément Mathieu.\"\ntt0287717,Onqbwlqk4G0,\"When all of the adult OSS agents are drugged at an awards banquet with the president, it's up to the Spy Kids to defend the transmooker device against the Magna Men.\"\ntt0287717,3chYfqAbqow,Juni and Carmen call Floop and Minion\ntt0287717,AcNkJ4_bQ1g,Romero explains how his experiments to make a miniature zoo went horribly wrong.\ntt0287717,0yc0knpkAxw,Juni's spider monkey battles Gary's slizard; Carmen arrives to defeat Gary.\ntt0287717,WZkuKkPQjbQ,Carmen and Juni free fall after tumbling into a volcano.\ntt0287717,AzGePmv0GD8,\"Uncle Machete introduces Carmen and Juni to his latest gadgets, including a spy watch that doesn't tell time and the Machete Elastic Wonder.\"\ntt0117951,qp27BT2g0BE,Begbie and his mates find themselves out of their league on a big-time drug deal.\ntt0217505,mdwLxOK7xLc,Riots ensue in New York when the middle and lower class get fed up with the drafts.\ntt1225822,XNG8wW6Ffw4,\"At the Sam Ash Music Store, Cindy coyly uses her feminine charms to steal a valuable guitar from right under the noses of the guitar salesmen.\"\ntt1225822,OIyluGsy-zA,A domino effect of accidents in the extract plant leads to Step losing one of his testicles.\ntt0889573,gkEsrZpCdOo,\"When Sebastian comes down with a case of lice, Wally is the man to the rescue.\"\ntt0159365,9nrVYO6LU6I,Inman and Ada exchange vows in an informal wedding ceremony.\ntt0159365,aEpa21af2j4,Inman faces off against Bosie and Ada sees her horrible premonition come true.\ntt0159365,TY513V0RMgw,Ada and Ruby celebrate Easter with their family at Black Cove Farm.\ntt0227538,AHHH770W4Wk,Ingrid tells Carmen the story of her wedding day.\ntt0227538,i-VeLFEMeko,Carmen and Juni get acquainted with their new gadgets and read about how to become good spies.\ntt0227538,v2KtG9kFZOI,Carmen and Juni take a jetpack to escape Floop's castle and the Thumb Thumbs.\ntt0299658,jx6Rgn1ioAk,\"Free birds Roxie and Velma keep up the pace with their \"\"Hot Honey Rag\"\" act.\"\ntt0227538,93Z1sPjzz8w,\"In the aftermath of their mission to Floop's castle, the Cortez children are called on another mission by Devlin.\"\ntt0227538,5lqvuMwYODI,Carmen and Juni steal uncle Machete's spy plane while he sleeps.\ntt0299658,vhQ4S5ajwDQ,\"Amos and Roxie sing the number \"\"Funny Honey\"\" after Amos wises up to Roxie's schemes.\"\ntt0299658,OxzfUI1wSwU,\"Billy Flynn, Roxie and Miss Sunshine sing the number \"\"We Both Reached For the Gun\"\".\"\ntt0299658,TfxoCicKvCc,\"Billy Flynn sings the number \"\"All I Care About\"\".\"\ntt0116367,q7heVIEyvQ4,\"As the gang grabs a seat, Sex Machine makes his own introduction armed with an appendage previously seen in Desperado\"\ntt0217505,aAWIZFqE6L4,Johnny catches Amsterdam up with the gang status in the Five Points since he has been away.\ntt0117802,lMrKsKQWrl8,Mike leaves a series of increasingly desperate messages on the answering machine of a girl he met that night.\ntt0117951,cyiC3x6-Kzk,\"Renton craps his suppositories down the worst toilet in Scotland, then dives in to retrieve them.\"\ntt0117951,N7iMP1tPg7I,Spud ruins breakfast for Gail and her family with his drunken mess from the night before.\ntt0117802,feeIOZH7wr4,Trent compares Mike to a bear to give him the confidence to go out and get some digits.\ntt0119217,ifkYHEoe6_k,Skyler recounts a joke to Will's friends.\ntt0119217,8WsHwXs_aq4,Sean recalls the day of the biggest Red Sox game in history and how he missed it over a girl.\ntt0119217,xvvx-0G7XHc,\"Sean recalls his wife's idiosyncrasies and \"\"imperfections\"\" and how they were the things he misses the most.\"\ntt0119217,ouppQFx3v-I,Sean lectures Will on life experience and the limitations education has in truly defining oneself.\ntt0119217,HSfxl1KI6y8,Will dissects Sean's painting before disrespecting his wife.\ntt0119217,e1DnltskkWk,Will butts in when a yuppie M.I.T. student tries to insult Chuckie.\ntt0119217,gcZPWkNY6x8,\"After winning Skylar's number, Will rubs it in Clark's face.\"\ntt0119217,yzb726TP-OM,Will confides in Sean when he discovers he has also been a victim of parental abuse.\ntt0119217,3i8eIzSeC8w,Chuckie lectures Will on how he is wasting his gift.\ntt0119217,trxN4ftuxKQ,\"Will lashes out at Skylar, who pressures him to tell her he doesn't love her.\"\ntt0119217,VcKVgWYkZa4,Will delivers a long monologue on the NSA.\ntt0109445,C4MVQby0InQ,Dante and Randal discuss the ethics of the destruction of the second Death Star in Return of the Jedi where independent contractors must have lost their lives.\ntt0109445,DDYj5ChFwbU,Caitlin freaks out when she realizes the man she had sex with in the bathroom was a corpse and not Dante.\ntt0109445,tp7ss_bTP4Y,\"When Dante isn't relieved from his shift, he improvises his scheduled hockey game to take place on the roof of the Quick Stop.\"\ntt0109445,3a3zXJ7biqI,Dante and Randel observe the strange behavior of a man searching for the perfect egg.\ntt0109445,D9khHJTztKk,Randal berates Dante for not ripping into the occasional customer.\ntt0117802,up7I_0JGTgQ,Mike finally works up the nerve to swing dance with Lorraine.\ntt0109445,WTw51Ynkn7A,Jay & Silent Bob spend another day hanging out in front of the Quick Stop.\ntt0358135,Ng7jUTiM21A,John unexpectedly shows up at Beverly's work with a rose and asks her for a slow dance.\ntt0358135,jXb09CCPFO4,\"When John displays a less than enthusiastic amount of attraction to Bobbie as they practice the rhumba, Paulina steps in to show how it is done.\"\ntt0358135,NUXt-stAcRw,\"Having had his wig ripped off his head, Link becomes emboldened on the dance floor with his partner Bobbie.\"\ntt0358135,FaSlQP79M-M,\"John and Bobbie compete in the waltz competition, and dance wonderfully.\"\ntt0358135,AKMLjQycW0U,\"After dance class is over, Paulina gives John a private lesson in ballroom dancing.\"\ntt0358135,IIr2CCwrYbU,\"At Paulina's going-away party, John arrives in the nick of time for a farewell dance.\"\ntt0358135,mZwKEa09xTc,\"At dance class, John is surprised to spot a somewhat familiar face. Behind a long black wig and a latin persona it turns out to be Link from work, and he is dancing up a storm.\"\ntt0358135,DcaV2VQgea0,\"John, Vern, and Chic all hit up the local diner with Bobbie after class to gossip about why they are learning to dance.\"\ntt0358135,PWN2ntVDwoU,\"John, Chic, and Vern emotionally succumb to the beauty and grace of Paulina on the dance floor.\"\ntt0358135,u9A2CYMFfNo,\"John attends his first ballroom dance class at Miss Mitzi's, and meets the two other male students, Chic and Vern.\"\ntt0358135,d7V9liYn-IA,\"At dance class, Paulina teaches John, Chic, and Vern how to perform the waltz.\"\ntt0358135,KcHfK9kvnvs,\"As has become his nightly routine during his L-ride home, John looks out the window to find Paulina gazing out from Miss Mitzi's Ballroom Dance School.\"\ntt0116367,vtjCVRm2DAM,Seth takes out the fierce Satanico Pandemonium vampire while other survivors take out the remaining vamps.\ntt0116367,QTKNzDn8PzA,Seth tries to reinvigorate Jacob's faith.\ntt0116367,0x6LPfRGAL8,\"The bar erupts in violence when the dancers, musicians and bar tenders turn into vampires feasting off of the flesh of bikers and truckers.\"\ntt0110912,S8kPqAV_74M,Butch and Marsellus find themselves in a heap of trouble when Zed and Maynard bring out the Gimp.\ntt0110912,LBBni_-tMNs,Jules loses his patience with Vincent when he accidentally shoots Marvin in the face.\ntt0110912,tVRPz6-Tkww,\"Butch saves Marsellus from Zed, and Marsellus outlines his plan for revenge.\"\ntt0110912,xHO6nBc4YFU,\"Butch returns to his apartment to retrieve the gold watch, only to find an unsuspecting Vincent waiting in the bathroom.\"\ntt0110912,YFtHjV4c4uw,\"Butch dreams of the story Captain Koons told him as a young boy about his family heirloom, a gold watch.\"\ntt0110912,ZOoJoTAXDPk,Vincent and Lance give Mia a shot of adrenaline to the heart to save her from an overdose.\ntt0110912,x2WK_eWihdU,Jules interrogates Brett and recites his favorite passage from the Bible.\ntt0110912,PvMxbRCBalk,Pumpkin and Honey Bunny make an impulsive decision to rob a coffee shop.\ntt0401792,rp4nf7xR9Uk,Hartigan says goodbye to Nancy - forever.\ntt0401792,BahUC3EFWXA,Hartigan saves Nancy from Yellow Bastard.\ntt0110912,jYID_csTvos,Mia Wallace convinces Vincent Vega to twist with her on the dance floor.\ntt0401792,ppWi_bhS2eQ,Yellow Bastard takes Nancy and leaves Hartigan hanging.\ntt0401792,KrDck8ocFu0,\"Hartigan is reunited with little Nancy, who has really grown up.\"\ntt0401792,mdcXOlUMfq0,Dwight takes an unnerving ride with the corpse of Jackie Boy in this scene directed by Quentin Tarantino\ntt0401792,6mBFhNSqBk8,Dwight lures the mercenaries into a deathtrap in Old Town.\ntt0401792,RwyLbX4uOS0,Jackie Boy finds himself in over his head with the sword-wielding prostitute Miho.\ntt0401792,9BOOv6NNnP0,Dwight defends Shellie from her abusive ex-boyfriend.\ntt0401792,6G6Z60EPieA,Marv fights the cannibal Kevin and feeds him to the wolf.\ntt0401792,cwJFMjOz_l0,Marv finishes off the twisted Cardinal Roark.\ntt0378194,jKXg2eMaNXU,Vol. 2 - Bill explains why he treated The Bride so badly.\ntt0378194,NL7nLSSSWjw,Vol. 2 - The Bride surprises Bill by using Pai Mei's secret technique on him.\ntt0378194,I_cEoK1mXms,Vol. 2 - Bill explains to The Bride his theory about alter egos.\ntt0378194,9-qk52E7zj8,\"Vol. 2 - The Bride finally reaches Bill, but realizes that her daughter is alive.\"\ntt0378194,fCbf4DjlHuM,\"Vol. 2 - The Bride meets Kung Fu Master Pai Mei, who repeatedly insults her.\"\ntt0378194,TrZuYfti-pE,Vol. 2 - The Bride and Elle Driver have a knock-down drag-out fight in Budd's trailer.\ntt0266697,fWqnZTTRkm4,The Bride goes an a roaring rampage of revenge at the House of Blue Leaves and gets bloody satisfaction.\ntt0378194,JnXi3SVJXbM,Vol. 2 - The Bride uses punching technique learned from Pai Mei to escape being buried alive.\ntt0266697,uGsWYV2bWAc,\"The Bride takes on O-Ren Ishii's mace-wielding henchwoman, Gogo Yubari.\"\ntt0266697,rIr6rEndy0A,The Bride asks the notorious Hattori Hanzo to give her a sword to kill Bill.\ntt0266697,OLvz5E61UNs,O-Ren Ishii disciplines one of her headstrong bosses.\ntt0266697,KQM0klOXck8,O-Ren Ishii takes bloody revenge for her parent's murders.\ntt0266697,2sJx9qbjetg,The Bride wakes from a coma and kills the wicked orderly who took advantage of her.\ntt0266697,_Mk_f75TS1A,The Bride aka Black Mamba revenge on Vernita Green is witnessed by her young daughter.\ntt0266697,kgRlzeYc1nk,\"The Bride says hello to an old friend, Black Mamba style.\"\ntt0116367,V8K5d3pEUl8,Tension rises as the Gecko brothers try to keep things cool when Texas Ranger Earl McGraw enters the convenience store.\ntt1091722,kGViaTOfSow,Time stops at Adventureland as all the guys stop to ogle Lisa P.\ntt1091722,TEmvPX06cJo,James decks a disgruntled customer who starts to cause trouble when he catches on to the carnival's scam.\ntt1091722,zV0rK6KXfwU,\"James and Em catch up and finally have, as James would call it, intercourse.\"\ntt0378194,l4L9Yi-lXbo,Vol. 2 - Bill warns his brother Budd about the vengeful bride.\ntt0401792,MnMZeDmfgmU,Marv is interrogated by Goldie's sister.\ntt0378194,ETTsJggQl3I,Vol. 2 - Master Pai Mei is not impressed with The Bride's kung fu.\ntt0401792,sNom4k5Pwb8,Marv escapes from the cops and vows revenge for his sweet Goldie.\ntt0378194,RWwGXIjxbnI,Vol. 2 - The Bride fights Elle Driver and removes her other eye.\ntt0266697,EajaioMj-NA,The Bride faces off against O-Ren Ishii.\ntt0266697,W6bT7Y-WfoY,The Bride arrives at the House of Blue Leaves and confronts O-Ren Ishii.\ntt0378194,QsaG8rJGlyQ,\"Vol. 2 - Budd is killed by Elle Driver and her \"\"friend.\"\"\"\ntt1091722,r1S-yBBZsDI,\"Bobby and Paulette notice that James is high while announcing the derby game, so Bobby takes over.\"\ntt0266697,jYrKqg2TqUo,The Bride finally gets her revenge on O-Ren Ishii.\ntt1091722,-nX_jQxWFN4,The Adventureland gang hangs out after work; James is ecstatic to receive a ride offer from Em.\ntt0116367,KqAIrFLuymo,\"The survivors use their blessed weapons to horde off the vampire, while Sex Machine transforms into a menacing rat-like creature.\"\ntt0116367,GG4VDjXtt7Q,Frost has a Vietnam flashback while Sex Machine turns into a vampire.\ntt0116367,YbcfcgX2U3g,THe survivors of a vampire attack discuss their enemy and how to deal with it.\ntt0217505,ADmX9eMEV9U,\"The Natives, led by Bill the Butcher, come out of the woodwork and line up for combat against the Dead Rabbits and other foreign gangs.\"\ntt0217505,Ij79LQXZDEk,The Natives battle the Irish gangs at the Five Points as young Amsterdam watches the bloodshed.\ntt0217505,2_YvzQoCG68,\"The Irish gang suits up and takes Communion, with Priest Vallon leading the charge against the Natives.\"\ntt0217505,ns-qtoxnAS8,The ploy of American immigration during the Civil War is augmented in this single take showcasing the disturbing circle of an Irish immigrant seeking a better life in America.\ntt0217505,UdhxL9r9hkg,\"After Amsterdam saves Bill's life, Bill confides in him with the story of his relationship to Amsterdam's father, the most honorable man he'd ever known.\"\ntt0217505,jn8SVc374U0,The battle between Amsterdam is thwarted when the draft riots destroy the Five Points.\ntt0217505,GQy5xztHVPQ,Amsterdam's plan to assassinate Bill on the anniversary of his father's death goes horribly wrong.\ntt0378194,EEjI0A9iMow,Vol. 2 - The Bride is challenged by Master Pai Mei to punch through a block of wood.\ntt0217505,lDRzG3mH-DQ,Happy Jack attempts to knock off Amsterdam before the Dead Rabbits grow too strong.\ntt0266697,dmL4e3jljy4,The Bride faces off against the leader of the Crazy 88s.\ntt0217505,-TPRG6Yqzf4,A fight ensues when McGloin calls Amsterdam a word he doesn't understand.\ntt0217505,39mBogAVAQc,\"When a pelt is found hanging in the five points, Bill intimidates Happy Jack to put down the Dead Rabbits.\"\ntt0110912,MWkN3akP3cU,Vincent and Mia share a five dollar milkshake and an uncomfortable silence at Jack Rabbit Slim's.\ntt0116367,c9FCOAEPHHM,\"The Gecko brothers and their hostages arrive at the checkpoint, a low-down dirty Mexican biker/trucker bar called the Titty Twister.\"\ntt0299658,YW3MIixEps4,\"Billy Flynn sings the number \"\"Razzle Dazzle\"\".\"\ntt0299658,wtMDZyMGKe0,\"Attempting to win a new partner, Velma sings the number \"\"I Can't Do it Alone\"\".\"\ntt0299658,TYmMagkfjfI,\"Velma and the murderers row convicts sing the number \"\"Cell Block Tango\"\".\"\ntt0299658,yy6j2LUyh24,\"Mama Morton sings the number When You're Good to Mama\"\" when Roxie enters prison life.\"\ntt1091722,-xTty5scUwM,\"James confesses to Em that despite being in several relationships throughout college, he is still a virgin.\"\ntt1091722,JXEpQzze8Wo,\"Pete doesn't get the hint when Lisa P. turns him down, so she asks James out right in front of him.\"\ntt1091722,rMWZUV287WA,James gets a little excited by Em in the pool; Frigo catches on and announces it to the entire party.\ntt0299658,1c8XLJ9MEhk,Billy Flynn dances around Velma in the courtroom.\ntt0299658,ZoAlJJb4aYM,\"Roxie sings the number \"\"Roxie\"\".\"\ntt0299658,HVyg4MchBYM,\"Velma sings her final number All That Jazz\"\" while Roxie brings home a guest.\"\ntt0299658,OToWh3nrWn8,\"When he realizes that he couldn't be the father to his wife's child, Amos sings the number \"\"Mister Cellophane\"\".\"\ntt0889573,ZFofgS_iQ0Q,\"At Kassie's insemination party, Debbie presents Wally with the baster to be used for doing the deed.\"\ntt0889573,pgET7AHDk6Q,\"It's Sebastian's birthday, but he won't blow out the candles until someone adopts Doug, a three-legged dog.\"\ntt0889573,obxWLczHe0c,\"Kassie forgives Wally, and he asks for her hand in marriage.\"\ntt0889573,4cAxmhotNbI,\"Cutting off Roland's marriage proposal to Kassie, Wally announces that he switched the sperm sample years ago, and that makes him Sebastian's natural father.\"\ntt0889573,dxqJ_k_uw5k,\"Wally and Sebastian spend a day bonding together at the aquarium discussing topics such as how to deal with the school bully, Parkinson's disease, and hypochondria.\"\ntt0889573,zMgKNI5A9ps,\"With Leonard counseling him along, Wally comes to the stunning realization that he might have switched the sperm sample.\"\ntt0889573,5gkiHLA4ZuY,\"When Wally meets Sebastian for the first time, he is stunned at the kid's strong opinions on feasting on duck.\"\ntt0889573,nr8nHHg80CM,\"A highly intoxicated Wally pours Roland's sperm sample down the sink, and replaces it with his own sample.\"\ntt0452623,CTwZmJronis,Bressant questions Helene about her drug contacts in order to find a lead to save her little girl.\ntt0889573,SDRcCeWRVRA,\"When Kassie and Wally meet up for lunch, she informs him that she'd like to have a baby by artificial insemination.\"\ntt0452623,_2iIyoxqN54,Bressant explains how sometimes you have to break the law to do what's right.\ntt0452623,MrboCh44XGI,\"As Lionel explains his feelings about his sister, an armed robber threatens his life.\"\ntt0452623,yEQtrdTpJFU,The ransom switch for Amanda turns into a shootout and something big falls into the quarry lake.\ntt0452623,-TWsZukTS4Q,\"When Patrick discovers a murder victim, he takes vengeance into his own hands.\"\ntt0452623,X-3TvjRKYPI,Chief Doyle explains why he is so motivated to save little Amanda.\ntt0452623,8V2XD5XS9Ys,Patrick tries to find out where Cheese is hiding the little girl.\ntt0452623,jJ4zpJxcw4o,Helene regrets messing with drug lord Cheese and asks Patrick to save her little girl.\ntt0452623,ar5YGIFyEUY,Patrick tries to get any clues at all out of Helene to explain what happened to her little girl.\ntt0159365,Zx2SsdhKqbk,Ruby teaches Ada how to restore the farm and prepare for winter.\ntt0452623,uAgvdtpmXBk,Patrick runs into a threatening regular while searching for clues at the local bar.\ntt0227538,wowXQ9ZrN1w,\"As Juni and Carmen infiltrate Floop's castle, they defeat a pack of Thumb Thumbs and get directions from captive Fooglies.\"\ntt0227538,jQKx2XTcd_I,\"Discovering that they've been tracked to the playground by their robot doppelgangers, Juni and Carmen try to keep the Third Brain safe.\"\ntt0227538,6rl0rXHWtbQ,Carmen and Juni fight their robot doppelgangers to get to their parents.\ntt0227538,TBKiHfVkYCY,Fegan Floop strains to figure out what he needs to add to his show to take it to number one.\ntt0227538,qFL0bfzriR0,\"As Juni watches the bizarre children's show Floops Fooglies\"\" on the way to school, Gregorio sees a resemblance between the missing spy Donnagon and the new Fooglie named Donnamight.\"\ntt0159365,hFJlpOjXf9s,Inman and Ada reunite on the snowy trails of Cold Mountain.\ntt0159365,xG7kLQh4Qn8,Inman rescues Sara and her baby from some marauding soldiers.\ntt0159365,oeCRY2mdih8,Reverend Veasey finds a saw that comes in handy when Junior needs help removing a dead animal from a creek.\ntt0159365,darXVyyQUlc,Sara asks Inman to lie with her in bed without going any further.\ntt0159365,UmNPw-PeG8g,Reverend Veasey leads Inman to a ferry crossing maintained by a young girl.\ntt0159365,jmpuAz59EbQ,Ruby arrives to help Ada tend to the farm and its animals.\ntt0159365,bHTWme5Ks9g,Ada gives a book and her photograph to Inman as he prepares to leave for war.\ntt0159365,t7OQIn7Yuvc,\"Inman reads a letter from Ada, unaware that an attack is imminent.\"\ntt1225822,p8xEvj1w23g,An extremely awkward moment arises for Joel when the girl he's been trying to call turns out to be Cindy – the girlfriend of tough guy Willie.\ntt1225822,NXXS-UOKbao,\"Joel comes home early from work, only to find that Brad has been continuing to have sex with his wife.\"\ntt1225822,y0jPHehx2EQ,Joel hires a male gigolo to seduce his wife. One problem is that Brad seems pretty dumb.\ntt1225822,d4WJ0CGGXo4,Joel lets on that he knew that Suzie was having an affair with the pool guy. Their argument gets interrupted by nosy neighbor Nathan.\ntt1225822,YVHzS7B1NbI,Lawyer Joe Adler offers a reparation settlement - he will drop the lawsuit - if he can slam a door on Joel's testicles.\ntt1225822,SAPvfHqWNFE,\"Joel succumbs to peer pressure from Willie and Dean, and takes a massive bong hit leaving him incredibly stoned.\"\ntt1225822,w6CQUyyPvAw,\"Suzie dumps the pool boy Brad, but he is such a moron that it doesn't register.\"\ntt1225822,m2dMEucbXIA,\"Despite Joel's best attempt to get home by 8pm so he can have sex with his wife, he just can't seem to avoid Nathan - the always annoying neighbor.\"\ntt1225822,Vwd5W0M3ZC4,Dean cannot believe a girl as good looking as Cindy is working at the extract plant.\ntt1091722,TvTdzkWNq28,Em breaks things off with Connell just as James finds out about their affair.\ntt1091722,BgDmIxfkPFE,James gets hired and learns the basic rules of Adventureland.\ntt1091722,kYlPy24WJzU,James' hot date with Lisa P is interrupted by Frigo.\ntt1091722,ZlGg7QIlGp8,James meets Emily in New York to patch things up.\ntt0889573,uy3UaHILcig,Leonard tells Wally that his romantic chances with Kassie are gone.\ntt0889573,L25W_b8Or5Y,Debbie makes fun of Wally's lack of enthusiasm at her birthday party.\ntt0109445,eD4l8wpbrRI,Silent Bob lays down some lady advice for Dante.\ntt0117802,KIsAH4rSGNo,Rob gives Mike a pep talk to help him get over his ex-girlfriend.\ntt0117802,CaAtavKP0-4,Trent and Sue play videogame hockey as Mike waits his turn.\ntt0117802,ZlEXOzC6vqE,Trent tries to convince Mike that he's popular with the ladies.\ntt0119217,QCzH42efniU,Gerald and Sean argue the ethics of pushing Will in a direction he may not want to go.\ntt0117802,dxlbeqeGkQ8,\"Trent encourages Mike to double down, sending them to the lower stakes table.\"\ntt0109445,7gFoHkkCaRE,\"Jay's Russian cousin Olaf sings \"\"Berserker\"\".\"\ntt0109445,1OQl89ewXvc,Dante has a nervous breakdown when he discovers his girlfriend has given thirty seven blow jobs.\ntt0109445,3gHqYddtmNU,A passing Chewlies Gum rep riles up a mob against the Quick Stop and their cancer merchant brainwashers.\ntt0109445,2TTfvxYUBug,\"After breaking into a fight and ruining the store, Dante and Randal argue over the delusions of their life.\"\ntt0117802,3B4fl7vqi5g,Mike interrupts Trent and Christy to check his messages back home.\ntt0117802,TscPOjzk0hI,\"Rob laments his acting opportunities, while Mike prides himself on not bringing up his ex-girlfriend.\"\ntt0117802,WqO6vJTUOkM,\"Trent exchanges some vibes with a diner customer, unaware that he's not her object of affection.\"\ntt0117802,7RD-I8AOf10,Mike walks Lorraine to her car and they exchange numbers.\ntt0117802,eAvVe92mi5k,Trent celebrates a successful night out after Mike meets a nice girl and gets her number.\ntt0477348,0wvJETrNQG8,Llewelyn is chased by a truck out in the desert and then a killer dog in the river.\ntt0477348,3B_rRmkbA9I,\"Chigurh forces a gas station attendant to call \"\"heads\"\" or \"\"tails\"\" on a coin toss.\"\ntt0477348,lkmpm4TeOvE,Carson visits Llewelyn in the hospital and warns him about dealing with Chigurh.\ntt0477348,dRQtjVzj1bo,Chigurh shoots Carson dead after discussing the nature of existence.\ntt0477348,GKt6dCi-LJo,Llewelyn narrowly avoids being shot by Chigurh when he jumps into a pickup truck on the street.\ntt0477348,C-iQldPiH64,Carla Jean is visited by Chigurh and tries to dissuade him from killing her.\ntt0477348,d1U3MyX0pmE,Uncle Ellis gives an allegorical tale of violence in America to his nephew Sheriff Ed.\ntt0477348,GH4IhjtaAUQ,Ed recounts a past night's dream involving his father to his wife Loretta.\ntt0119396,6v6C3lZ9Ic0,\"Max comes over to Jackie's to pick up his gun. They have a cup of coffee, and listen to an LP by The Delfonics.\"\ntt0117951,Naf_WiEb9Qs,Renton and his mates run from the law and play soccer while he espouses his philosophy on life as a heroin addict.\ntt0117951,VnAR2qB24yQ,Sick Boy tells Renton his theory of life while they scope out targets in the park.\ntt0119396,TzatMfqIf3A,Jackie makes the money exchange with Melanie in the department store dressing room.\ntt0117951,ACkEugMxFvk,Renton spots Diane across the club and falls in love at first sight.\ntt0117951,b2B7w4Z3uOI,Renton describes the Sick Boy Method of kicking heroin -- cold turkey.\ntt0117951,BsxYfYCbVC0,Spud goes to his required job interview high on speed and screws it up on purpose.\ntt0117951,Ci82yWg-9Q0,\"When Tommy tries to convince his mates to hike in the great outdoors, Renton responds with a rant about being Scottish.\"\ntt0117951,OaSuSnUJm3E,\"Locked up in his old bedroom, Renton suffers through a harrowing withdrawal complete with hallucinations of a gravity-defying dead baby.\"\ntt0477348,fBqbMZ23n5o,Llewelyn waits with a shotgun in his hotel room for his pursuer to enter.\ntt0117951,EsRoSsauhss,Tommy recounts a story about Begbie freaking out over a game of pool.\ntt0119396,Gr6eFXNq5Wc,\"Ordell explains the benefits and intricacies of an AK-47 assault rifle to ex-convict Louis, while Melanie brings over some fresh drinks.\"\ntt0117951,AwFtpeX3V-g,\"Begbie has another freak-out in a pub, jeopardizing the success of their recent drug deal.\"\ntt0119396,M-FOqHC-G6Q,\"After bailing him out of jail, Ordell pays a visit to Beaumont and convinces him to re-pay the favor, even though it is the middle of the night.\"\ntt0119396,3osli3y94I0,\"It takes some convincing on Ordell's part, but Beaumont finally acquiesces and gets in the dirty ass trunk of a car.\"\ntt0119396,bXy8AgE7jBo,\"While trying to locate their car in the shopping mall parking lot, Melanie continues to needle and provoke Louis. His only response is to kill her.\"\ntt0119396,N7W2F1GcD-A,Louis and Melanie are ready to catch up after three minutes of screwing.\ntt0116367,dw7d707e-EI,The entire bar gazes upon the voluptuous Satanico Pandemonium.\ntt0119396,3e7wbs_xfas,\"Sitting in a parked van, Ordell unexpectedly shoots Louis having reached the breaking point of dealing with Louis's incompetence, and half-baked attitude.\"\ntt0119396,jj1lH26Ky08,Max and Jackie share a tender kiss before saying goodbye on a bittersweet note.\ntt0119396,57ge-WVuEY0,Jackie turns the tables on Ordell and makes some demands of her own.\ntt0110912,IgzFPOMjiC8,The Wolf arrives to help Jules and Vincent clean up a mess.\ntt0119396,7_ip79SGVLo,\"Ray questions Jackie about the botched money exchange, and she shows a vulnerable side for the only time.\"\ntt0477348,o9guyPNZglE,Chigurh sets up a car explosion outside a pharmacy in order to rob the store.\ntt0477348,I42_ESLXfWI,Chigurh is blindsided by a car that runs a red light.\ntt0116367,xFfUAjUMVY8,\"Richie comes back from the dead as a vampire, leaving his brother the responsibility to take care of him.\"\ntt0110912,6Pkq_eBHXJ4,Vincent tells Jules about the little differences regarding life in Europe.\ntt0119396,Fh-7WQr_daM,\"When Ordell asks the whereabouts of Melanie, Louis explains that he shot her...twice.\"\ntt0203536,QELMO-GsxVA,Ronnie visits movie producer Chad Devroue.\ntt1334536,rW0sXd9Vl_I,\"Sara the relater rushes to the house after the team calls 911, only to be murdered by the spirits.\"\ntt1201607,5rEwN8tIRWw,Harry Potter appears in the Great Hall just as Snape asks the Hogwarts students where he is hiding.\ntt1201607,t15VVQjK16Y,Neville stands his ground as an army of Voldemort's minions race toward the battle at Hogwarts.\ntt1201607,_eZeYq2r3tM,\"Harry, Hermione and Griphook search for a Horcrux inside a vault at Gringott's Wizarding Bank.\"\ntt1201607,FK-mY_mZAzs,Harry Potter asks Mr. Ollivander about the Deathly Hallows and wants to know if they truly exist.\ntt1201607,cacjl7UwuVU,Harry tells Ron and Hermione that he has seen into Voldemort's head and has learned that the there is another Horcrux at Hogwarts.\ntt1201607,P57Z6LOoh_k,Ron and Hermione return to the Chamber of Secrets to get a Basilisk fang and destroy a Horcrux.\ntt1201607,rhTGE6TQdSc,\"After years of fighting, Harry Potter comes to Voldemort to meet his death.\"\ntt1201607,n3SrAOdy-tE,Draco Malfoy ambushes Harry Potter in the Room of Requirement and demands his wand back. Harry refuses and asks Draco why he lied to Bellatrix.\ntt1201607,bWr67LK9-Uo,\"Ron, Harry and Hermione are pursued by a Fiend Fire spell that is engulfing the Room of Requirement.\"\ntt1570728,Dk0roE34zLw,Jacob literally begins from the bottom up with his makeover of Cal.\ntt0409847,h52b1cHKeJg,Aliens attack the town and take Maria up into their spacecraft while Doc watches helplessly.\ntt0409847,9IzZsjED07A,\"When Ella is abducted by an alien speeder, Jake Lonergan goes in hot pursuit.\"\ntt0409847,29NsPLHISNE,Jake Lonergan defends himself against Sheriff Taggart and his men.\ntt0409847,rQVDhPVyU-o,Colonel Dolarhyde and the town of Absolution face an overwhelming alien attack.\ntt1570728,eq3-F_738gA,\"Jacob scolds Cal for wallowing in self pity and offers to help him \"\"rediscover his manhood.\"\"\"\ntt0409847,RaDlQYFo7eU,\"When a wounded alien escapes from the town after the raid, Colonel Dolarhyde confronts Jake Lonergan.\"\ntt1570728,wALbxbEBLU0,Cal's boss makes light of Cal's divorce when he compares it to having cancer.\ntt1570728,sdc5bkFd2X4,\"Jacob Miyagi's\"\" Cal by proving that he's taught him how to pick up women.\"\ntt1570728,pVjh7-4ux7g,Cal expresses his regrets to Emily.\ntt1570728,dtwfZd9KGpo,\"Cal gives Robbie a father-son talk about not giving up on the girl you love, but gets called out for not heeding his own advice.\"\ntt1570728,4xLmxgd-AYs,Jacob hits on Hannah only to be rejected.\ntt1570728,5e9vyyrP4Zs,Hannah gives Jacob a run-down of how the night is going to go.\ntt1570728,dQoqvTs4lvg,\"Cal fools around with Kate, who is delighted with his honesty.\"\ntt1226753,MBjVMydv63A,\"Rachel asks David why he didn't leave when they escaped the train station, which he answers with a kiss.\"\ntt0286947,U2ZOhOknNc8,\"Stu is scared straight when he sees police at the bank in the morning, but he and the other robbers get a pleasant surprise.\"\ntt1557769,eb6k3SU1T2E,\"Mike, back at Charles' apartment to fix his lock, tries to get him to appreciate what he has with Margo.\"\ntt1226753,qlrpmMPkRUM,Rachel breaks into an office building to obtain some information.\ntt1265621,m1DIBnkwrp0,Leo awkwardly asks Lindsey if he can kiss her. His romantic clumsiness pays off in a brief make-out session in the parking lot.\ntt1226753,lj59KyjwK3c,David and Rachel take out the guards as they escape the train station.\ntt1226753,5OMaEgJv-KE,\"Stefan orders Rachel to take down Vogel, a Nazi war criminal they were supposed to take out 30 years earlier.\"\ntt0377808,UCskICK1t1Q,\"Prehistoric eggs drop down on 15th Century England, where hatched dragons unleash havoc.\"\ntt0203536,qowk8kRtc8M,August purchases a new firearm from an annoying gun salesman.\ntt1265621,aAtrw4G6Ino,Dr. Zulkowski meets quantum theorists Trish and Tom. They are quite an eccentric pair when it comes to their requests.\ntt1265621,tGzM5IFK964,President Scott addresses the nation on the impending apocalypse.\ntt1265621,kVH74eYVAus,\"As Ben lays on his death bed, Trish and Dr. Zulkowski watch the missile launch which ultimately reverses the time-space continuum and stops the oncoming apocalypse.\"\ntt1265621,xDkGfxCKMKA,\"In a superhuman feat of strength, helped out by the loss of gravity, Ben and Leo are able to rescue a woman by picking up a car and tossing it yonder.\"\ntt1265621,uVZLcXAc5aY,\"Terry saves the day at NASA headquarters by correcting the scientists on their calculations of fusion, not fission.\"\ntt1265621,lohIAbjwCBE,\"Leo and Lindsey outrun an approaching tornado. Meanwhile, New York City gets hit by a super-sized tsunami.\"\ntt0377808,9nhbb-EhMYg,\"After defeating a dragon with a ballista, the survivors discover they have been ambushed by half a dozen more dragons.\"\ntt0377808,xdXKP_4pbhM,The survivors take down the final dragon.\ntt0377808,tKOX13gKlf8,Dragons attack the King's battalion when the creatures discover they have one of their eggs.\ntt0377808,lIpUIAl6ltw,The King's surviving force uses a giant ballista to take down their first dragon.\ntt0377808,pwr6OtkCTiw,King Fastrad warns King Wednesbury of the likelihood of an impending Dragon attack.\ntt0377808,ndV1BsZ1q88,\"The King's men run into Silas, a huntsman who flanks the group in the woods.\"\ntt0377808,kPVaohv2-ZI,Silas interrupts Medina while she is preparing for a bath.\ntt0377808,TeL-XU97qyY,Obnoxious teens are murdered by dragons awaiting them in a cave.\ntt0377808,ZPKEtczECDk,A Messanger brings grave news to King Fastrad concerning the fortress.\ntt0203536,Nr1FMis9MiQ,\"Moments before taking a contract with Avi, Ronnie has a childhood flash.\"\ntt0203536,3Z2NklQONgc,August makes a deal with Ronnie which he believes will maintain their friendship without breaching his contract to take Ronnie out.\ntt0203536,PSd562J8ZFU,Ronnie meets August in a movie theater during an unsuccessful robbery.\ntt0203536,wYBcBpFZYF8,August attempts to stop a Mexican standoff by talking to Avi on the phone.\ntt0203536,6zAcU68P0GM,Marie and Donnie make small talk about Van Halen before taking out their target.\ntt1265621,6PJ5GsyOt7M,\"Trish gives an update to the heads of NASA, namely that they, and the U.S., are 100% screwed in avoiding the oncoming natural apocalypse.\"\ntt0203536,vlynd7r6pLU,Ronnie lectures August on professionalism after his first contract.\ntt1133995,PLOMwlZsSYM,Wolf's squad is ambushed in the streets of Iraq where they lose one of their own.\ntt0815230,2LuJ9QU-6X8,\"Brian confronts his old high school nemesis with the intent to kill him, but when he gets his chance, Brian breaks down when hears the voice of God... or, at the least the voice of a televangelist.\"\ntt0203536,smNgpBRjuFs,August tells his doppelganger story to Roy.\ntt1406157,KYQjUOjBx0A,Matsumura defends himself from a seemingly endless stream of attackers as Kei watches with admiration.\ntt1265621,syi46NOW2Fo,\"Terry, an autistic savant, is eerily close to resembling Dustin Hoffman in Rain Man when he talks with his brother Ben.\"\ntt0118652,Zur7hoLFsrw,\"Trevor confronts Amy and while she admits to being an actress, she also reveals her true feelings for him.\"\ntt1265621,Iip4iU0wuAU,Ben and Leo spot a huge migration of birds which foreshadows the impending apocalyptic doom.\ntt0118652,E3bgtIIw9JM,\"Douglas, possessed by Faith, chases Trevor through the house until Trevor gains the upper hand.\"\ntt0118652,kpsUc7HBCoQ,Douglas and Trevor examine the trunk in the attic just as Liz is being murdered.\ntt0118652,PNzvucMz1t0,\"Faith helps Trevor to remember how he found the book of black magic in their new house, in an attempt to get him to reveal the book's current location.\"\ntt0286947,JL9cenVTdOk,\"The employees all pass on their promotion after the bank is robbed, while Max enjoys the high life as a mildly wealthy man at a fast food restaurant.\"\ntt1557769,FNdcZckBm2Y,Margo and Mike act as if they don't know each other when she shows up at Charles's apartment.\ntt0118652,cz4XgiXhVOo,Douglas explains to Trevor his conspiracy theory and reveals how he ended up in psychiatric care.\ntt0118652,_U4T80Jv9h4,Trevor adjusts to his new surroundings by chatting with Douglas and Amy.\ntt0286947,K3xHM2hrV6U,Sheila copies Rick's vault key while Stu and Max steel money from his teller's drawer.\ntt0815230,3z0t0O6ZIPs,\"In trying to rescue her husband, Tonya accidentally kills their obnoxious neighbor, Otis with a frying pan.\"\ntt0118652,U9bgSiDUqtg,\"Leventhal is readmitted to the mental hospital, and Dr. Coffee is mistaken for a fellow patient.\"\ntt0118652,DqpPwu8MQ2E,Trevor transfers to a halfway house for mental patients run by Dr. Thalama.\ntt1133995,Cr313z3sY6k,Wolf confronts the man who set him up and ruined his life.\ntt1133995,BU6P24jMDLw,\"Continuing their search for the elusive terrorist leader, codenamed Ace of Spades\"\", Wolf realizes that capturing the terrorist leader is not the primary objective after all...\"\ntt1133995,ytTswOdw54k,\"Cornered by a pair of federal agents in a convenience store, Wolf gets some back-up in the form of a shotgun-weilding clerk named Mac.\"\ntt1133995,Rdp3LSS_czA,Sgt. Mitchell lightens the mood by telling his men a joke about dying and going to Heaven.\ntt1133995,sWTHIrA5L1o,\"Wolf discovers the whereabouts of the fugitive terrorist known as the \"\"Ace of Spades\"\", who is now an invalid. The terrorist mastermind tells Wolf about the twisted reasons why the United States has engaged in endless war.\"\ntt1133995,HuYvFH-he5Y,Wolf brutally interrogates a would-be assassin as to his motives and mission.\ntt1406157,D_-VW2paVeA,Matsumura and Kei work together to defeat Kenga when he pulls out a gun.\ntt1406157,KlNmtsP9OHQ,Kei finds a worthy opponent in a one-on-one fight in the schoolyard.\ntt1406157,vQWF7zqozSI,Kei takes on the female members of The Destroyers in an attempt to infiltrate their gang.\ntt0815230,qJodFL7bxXg,\"In his attempt to end Tonya's murder spree, Brian engages in mortal combat with his wife.\"\ntt0815230,dHLDknvGAn0,\"After promising Brian that she won't kill anymore, Tonya breaks her word and continues a clandestine, city-wide killing spree.\"\ntt0815230,WcRpuNfGtXw,\"After putting up with a racist's rants in a restaurant, Brian and Tonya run into him again in the parking lot -- literally.\"\ntt0815230,Xyd6zzq97LY,\"When a suspicious detective confronts Brian and Tonya about a series of missing persons cases, Tonya takes matters into her own hands.\"\ntt0815230,nVkMrqrZKmc,\"After getting a few kills under their belt, Tonya and Brian discover that wanton murder is just the shot in the arm that their relationship needs.\"\ntt0286947,d6mZ4guAJK8,Shmally gets aggravated while watching Charles Merchant on an infomercial.\ntt0815230,qntho2Y9bLk,\"Brian decides that its high-time his boss, Mr. Haney, gets fired.\"\ntt0815230,GxKkfTq41zc,\"After seducing a sexist pig into being handcuffed in bed, Tonya lures him into a deadly trap.\"\ntt0286947,C4o-zcihGN4,Doleman goes through a series of job interviews while Shmally continues to fantasize during work.\ntt0286947,BnZTj4nADDM,\"As Doleman is interviewed for a job at the bank, Stu and Max put their stolen loot all in on black while Sheila and Woods rob what's left at the bank.\"\ntt0286947,C5-RnOKEZ-4,Woods has an epiphany when he gets a fifty-five cent raise at work.\ntt0286947,-2kcu-IpfoY,Woods gets in a jam with a mutt while Charles scorns a Girl Scout selling cookies.\ntt0286947,wfbdNtfo7NA,\"After Rick dumps Sheila, she takes out her frustrations on a fireman with hiccups.\"\ntt1557769,rx4BjUnPGss,Margo visits Mike at his work release facility to ask him out on a date.\ntt1557769,oGKr8bdx_5E,\"Margo returns the van just in time, and requests that Mike help her with another job.\"\ntt1557769,_kz7e2_Gxoc,\"Mike is faced with having to tell his supervisor that he \"\"lost\"\" the company van.\"\ntt1557769,ReAGCpATawk,Margo and Mike share a kiss while hanging out back at her place.\ntt1557769,rRGfnT_LUBQ,Mike tries to strike up a conversation with a guarded Charles.\ntt1557769,wuw6lFV1rRs,Margo freaks out when she suspects her boyfriend is cheating on her.\ntt1557769,6y0Uh3qzK-g,Mike gets Charles to open up a little bit.\ntt1557769,imnkiyOsu_g,Margo tries to convince Mike to go into the restaurant where her boyfriend is eating to find out if he's cheating on her.\ntt1499658,d76CwsWbV2E,\"Bobby orders Kurt to \"\"fire the fat people\"\" in the office.\"\ntt1622979,NOMdMmQWgjQ,Bludworth gives the survivors of the bridge collapse a parting warning.\ntt1622979,-hqNz9Ve-Hs,Agent Block tries to understand the pattern of deaths surrounding the survivors of the bridge collapse.\ntt1622979,e8i7WCXqJ94,The familiar Coroner warns the survivors of the bridge collapse.\ntt0420740,ZxkxWhiTQnc,\"At the insurance office, Isold walks-off disappointedly with a $1500 check from Abe after he discloses the deception within the insurance claim. However, both sides are knowingly guilty of deception.\"\ntt0445946,PAxy4zrKs-Y,\"Frank, Ray, and Chris climb down a cliff in a storm; Chris nearly falls.\"\ntt0420740,VwYovLPAX0E,A grief-stricken Mrs. Rodriguez is deceived and manipulated into accepting a smaller-than-expected insurance claim by the slimy insurance investigator Frank.\ntt0420740,_z7q7HzR9G4,\"Following Frederick's death, Isold receives an insurance payout check of one million dollars from Frank. She remembers Abe as she sings a lullaby to her son.\"\ntt0420740,AyNEyYnJ_ds,\"Abe informs Frederick that he switched the names on the insurance policy. Facing no options, and with a gun pointed to his head, Fred takes Abe on a joyride that can lead to only one end.\"\ntt0445946,NHoU-7e_tw0,Ray probes Frank about his profession.\ntt0420740,lWSPwOvJSNs,\"After a car accident, insurance investigator Abe Holt gives a deceptive and intimidating speech to the passengers of the public bus.\"\ntt0445946,KwmiEuEoY6o,\"Ray and Chris save two men floating down the river, but soon realize they've stumbled upon a tense situation.\"\ntt0420740,w42uRnJwoIc,Isold has a flashback to a dangerous car accident insurance con that was led by her brother Kelvin.\ntt0420740,DiCQwUtulqs,\"At the coroner, Abe explains in graphic detail the process of a human being burning to death as an intimidation tactic to get Isold to confess.\"\ntt0445946,dS260nXz5d8,\"The Keenes get to know Frank, and learn what he does for a living.\"\ntt0445946,TiupPnshH-o,\"The police force gets acquainted with the FBI agents, who belittle and intimidate them.\"\ntt0420740,d51kNuh6K-U,\"Abe and Isold share a quiet, tender moment.\"\ntt0808265,7gdtw-l0GqQ,\"Chris, possessed by the evil spirit, disposes of Big Dave and the dog in preparation for a move into Suze.\"\ntt0420740,3cmp6g1fbhs,Abe goes to the coroner's to investigate the remains of a burned body.\ntt0305556,eltUh-VMAKI,My-ik and Du-ug attempt to behead a cow. They are less than successful.\ntt0445946,TxhfeY6M8lQ,\"Frank's men block the road in order to apprehend him, but lose him when his car careens into the river.\"\ntt0445946,DEJ_XECWRcs,\"Davis fakes an injury so he and his partner can \"\"eliminate\"\" the state troopers.\"\ntt0858411,1iJNC4ty1Q4,Tina has a strange nightmare involving K-Jay performing oral sex on her. The Road Rascals crew meets the Pleasant Valley Travelling Jamboree.\ntt0858411,8NzL8n2GEC0,Sheriff Friedman is killed by the maniacs in a deadly barrel roll.\ntt0305556,2mo6oM4vnWY,Kenny offers some hospitality to My-ik and Du-ug. They toast to Rabirr over a round of Smirnoff Ice.\ntt0305556,0huG2wHLCGA,My-ik and Du-ug receive their orders to go to Earth to destroy all human life.\ntt0858411,NYefwzfGRWA,\"A promo piece for the reality t.v. show Road Rascals plays as rich sisters, who resemble the Hilton sisters, Tina and Rome Sheraton are introduced.\"\ntt0321704,Pnpgz413Wpw,Dirk participates in his first night of the fight circuit where Pike dominates the competition.\ntt0321704,MsMsnCypMuU,\"As Max apprehends the Warden, Dirk fights Pike in the pounding surf.\"\ntt0858411,_ZmzCV8muyU,\"Mayor Buckman discharges his musket - Confederate-style\"\" - into a horny Granny Boone.\"\ntt0858411,YPmYDxnmGnM,Jerry Schmit loses his head when Harper detonates the dynamite in his mouth.\ntt0858411,5iKhN22wsmI,\"Granny and the Gals perform the breakout hit \"\"Cannibal Rock.\"\"\"\ntt0858411,1rHtYKAv7Vo,The cannibals feast on body parts and corpses.\ntt0305556,avB-gC3PO98,\"Croker makes his powerful presence know to Mr. Breen in the restaurant, and to Kenny in the kitchen.\"\ntt0305556,58uMOyQcvms,\"On a double date with Jan and Penny, Du-ug and My-ik show off their dance moves.\"\ntt0321704,TFmga8EIQpo,\"Baxter welcomes the new inmates to Ogden, and Dirk meets his cellmate Blackjack.\"\ntt0321704,8-TDW9Cm3TA,\"On their way out of the office, Dirk and Max run into some angry thugs in the parking lot.\"\ntt0321704,d1VyT4mI-8g,Reporter Nicole secretly obtains footage of the underground fight club held in the prison yard late at night.\ntt0309452,yr8bdlI4Moc,\"On the search for his brother, Dirk gets spotted at a nightclub and has to fight his way out.\"\ntt0363095,PaMAFPMi6cI,Sean lurks in the shadows at a book signing where reporter Katie grills Seger on the timing of his book release.\ntt0321704,KwsyI7nWrG0,\"The fight club spins out of control when Dirk and Pike run off, leaving the guards to fire into the crowd.\"\ntt0321704,ArXhfCr-vb8,\"Dirk is disturbed by the blood lust of the other inmates, and he accuses Pike of killing his friend.\"\ntt0363095,fw_IEdXIuYU,Sean documents every second of his life on videotape nearly ten years after being accused of a series of vicious murders.\ntt0363095,FIKDkbVveeo,Sean and Katie watch a reconstruction of the murders until Emeric enters to interrogate Sean.\ntt0363095,t3TniZu-fk8,\"Sean watches a videotape, secretly shot by the murder victim, that contradicts his own surveillance footage.\"\ntt0363095,MSIAnJPZeaY,Emeric shows Sean the body of Seger and Sean soon realizes he is the prime suspect in the murder.\ntt0363095,V5Rl2bVxD2o,\"When Emeric enters and shoots Sean, Katie kills Emeric and turns the gun on herself.\"\ntt0363095,-MG8-wCvzpE,Sean holds Seger at knifepoint and realizes that Seger knows he is innocent.\ntt0233657,GNw7aQdAfcA,Mason is introduced to Dr. Czaban before getting a glimpse at the huge monolith.\ntt0363095,eQhNOc_Bo78,Seger reveals to Katie that her father killed her mother and sisters.\ntt0233657,kqEj45pk6aE,Mason discovers the healing power of the monolith from Dr. Holt.\ntt0233657,cHJd_bAK9C0,Allen Lysander leads an official research investigation on the mysterious rock hovering over Buton.\ntt0233657,kJ8_sMrSxns,Mason and the team use the alignment of the solar system to open the door to the monolith.\ntt1328910,KBfD-4BCMR0,\"Tinkerbell tries to enlist the help of her ex-beau named Bobby Dupree. When her charm fails, Lady uses a little more forceful method.\"\ntt0233657,_cYlrtZSG-c,The team discuss the possible purpose of the torus in the form of re-terraforming.\ntt1328910,Wuwev3p4rKs,\"Lady and the girls prep for battle, while Dusty warns Elliot of the upcoming reckoning.\"\ntt0374286,r4IlzPnP7ew,Ferguson discovers the serious implications when the twin torus meet each other.\ntt1328910,b2IWTMJV2cE,\"The girls find themselves in a quandary when there are two Gretchens - one real, and one a robot.\"\ntt0374286,YNJflokcnFI,\"Mason, Sondra and Tower enter the inner chamber of the Torus and discover the truth.\"\ntt0437072,pDzkhDjTY64,James tries to teach Darius the value of being smart over tough but Darius isn't hearing it.\ntt1633356,f7q5ce9Jwgw,The gang arrives at the beach house for the weekend.\ntt1633356,CY1lL585Gjk,The boys in the back seat get an unexpected passenger.\ntt1633356,mbWtLBLt1ro,Jess is attacked by a shark in the lake.\ntt1633356,qIis4kiGo6Q,Maya must swim for her life when a shark caches her scent in the water.\ntt1633356,dkCUjz7I36M,Dennis tries to keep Nick from saving Sara.\ntt1633356,PH5pgpWY1uE,Dennis pushes a girl into the shark infested waters.\ntt1633356,FPPdbapD_E0,A group of friends are attacked by a shark while wakeboarding.\ntt1563738,wmFhHU38IhE,\"Emma picks up Dexter from the airport in Paris, where she warns him that she has to something to tell him.\"\ntt1563738,k6TPsaQRQus,Emma and Dexter catch up on one another's love lives.\ntt1563738,6-NRVtIrrEs,\"Emma confesses to Dexter that she had a crush on him in college, which comes as no surprise to him.\"\ntt1563738,qbYHRU551nI,\"Dexter tells Emma that he thinks about her, but quickly backs out of the seriousness of the moment.\"\ntt1563738,VsLlPXjtnVs,Emma and Dexter finally get formally acquainted.\ntt1622979,ba-U_sXRFqg,Peter tries to warn Dennis of their impending death.\ntt1622979,s5D8jf0k_1k,Death attempts to wipe out Olivia while she is getting laser eye surgery.\ntt0493129,na_Fzn77bBA,\"After getting high on some serious weed, Jay and his buds discuss their interpretations of what God would look like.\"\ntt0493129,m2Bf7Viheuw,Derrick gets into trouble when his current girlfriend runs into his ex.\ntt0493129,J8tCOzttKMA,\"Partygoers play a game of Truth or Dare, where each member of the opposite sex tries to one-up the competition.\"\ntt0493129,H6NlpE8B0b4,Reashaun confides in her friend that she may finally go the distance with her boyfriend.\ntt1630564,0xW-3QH_WGU,Father Porter says a prayer before the violent reckoning from John against Arment and his henchmen commences in the church.\ntt0493129,4pVd11CW1qI,Jay and Dude engage in an impromptu rap about their awesome genitals and stuff.\ntt1630564,KxMHqnKgF7w,John takes a no prisoner approach to finding the missing girl when he kills Rook and Jade.\ntt1630564,PCNdV_Du58c,\"John hits up a dance club, but instead of dancing, he shows off his moves with a gun.\"\ntt1630564,LEwJNM-Oj7s,\"Before Mike can get to safety, he is visited by Jade and her henchmen.\"\ntt1630564,2Gd39qysshg,John is tough and cool under pressure as he waits for the bad guys to drive right at him before he blows them away with his gun.\ntt1630564,1DA-nWsGNTk,\"Talking to Father Porter, John realizes that the Virgin Mary statue is made of heroin.\"\ntt1630564,2x7aG-JRlCE,John laces up his ice skates to catch the criminal Chan after a hockey game.\ntt1630564,IfJuol_Q-jw,\"While lighting a candle at church, John shares a swig from his flask with Father Porter.\"\ntt1266121,ortccjAUofU,Van Helsing and company succeed in sending Lilith back to the pit of hell.\ntt1266121,zip5M8y42fk,\"As Lilth the vampire is about to regain her powers and assert her supremacy, Van Helsing and the vampires square off.\"\ntt1334536,9d6eWkYfjsk,\"The survivors escape the house, only to be killed off by a possessed Tom one by one.\"\ntt0312640,LFwCy1HuMCY,\"Carver turns the tables against the Dragon, setting it on fire so the remaining fighter jets can use their heat-seeking missiles to blast the creature out of the sky.\"\ntt0312640,ZiyuOaPD0eM,\"The Air Force scrambles fighter jets to take out the Dragon, but the beast makes haste as it takes out a pair of mechanized birds.\"\ntt1334536,89PPmxL-EVE,\"Quentin, unaware of the hauntings, attempts to get the hanging key only to be impaled by its branches.\"\ntt1266121,fn58yij7rxw,Von Griem and the vampires track down Van Helsing and friends in a cemetery to battle over the amulet.\ntt1266121,UUiiyiX_STo,Alex saves Bayne from a vampire. Van Helsing tortures the captured vampire by giving her a slow blood transfusion.\ntt0312640,VlS-HHdayMU,The Dragon chases down Carver's helicopter as they escape the lab. Dr. Drakovitch falls to his death after the Dragon hits the helicopter.\ntt0312640,QEcxsTjlIJ4,\"On the run from the Dragon, Carver discovers a slew of dragon-related incriminating evidence in Dr. Drackovitch's room.\"\ntt1334536,xdNcrmG6P_Q,\"Greg investigates the attic, while Tom becomes hypnotized by the television.\"\ntt1266121,zJuMyRu4kkU,Van Helsing and Sadie tell Bayne about the history of Lilith the vampire.\ntt1266121,TQezxXB6TYc,Alex instructs Bayne on some of the true myths of being a werewolf including the danger of silver bullets and wolvesbayne.\ntt0312640,G1JAVVZ_fMA,\"After obtaining a laptop with critical information, Carver leaves Kevin on his own after Kevin insists on drinking himself into a stupor.\"\ntt1334536,S7I9LpgwS1w,\"While the team gathers further readings from the house, Heather coughs up a giant hairball.\"\ntt1334536,eWjLy8S5uyk,The team investigates the last known spot of Bub while Heather has a psychic disturbance.\ntt1334536,yHR-TMj88tc,Bub follows an apparition of Heather that leads to his doom.\ntt1266121,TI5XVZEwtiM,Alex begins Bayne's training to control his aggression and werewolf transformation.\ntt1334536,Hia2AZPMH2Y,Simon and Greg give the new production assistant Bub a hard time.\ntt1334536,6EY8a5WbtLM,\"In this prologue set in the 50's, two kids slam J.J.'s baseball signed by Babe Ruth into the haunted house.\"\ntt0312640,gkEZQDlj6OQ,\"After one of the scientists is eaten by the Dragon, Carver must fend off the fire-breathing beast with a shotgun.\"\ntt1266121,o9W8bxAxvvg,A wounded Bayne is fixed up by Alex.\ntt0312640,N9vKzv8jLw8,A sudden catastrophe in the cloning process sends the scientists into a panic and Carver into action.\ntt1266121,pQEsnpbMwEM,Bayne transforms into a werewolf for the first time.\ntt1266121,gDymr00KVAg,\"When Bayne stops on the side of the road to help a sexy stranded motorist, he gets more than he bargained for when she is attacked by a werewolf.\"\ntt1328910,EQP-k2x6Yzo,\"Lady takes on the role of a vigilante - driving from town to town, tracking down one android at a time.\"\ntt0312640,kBt6bwRR7ls,\"As the team of scientists go through the painstaking process of cloning the dragon, Carver questions the ethics involved.\"\ntt0312640,rnm2leIC_5I,\"In years of yore, a group of knights seal away the Dragon within its lair.\"\ntt1328910,MGsGQAu3aNM,\"Surrounded at a bar, the gang attempts a getaway from the robot police. Some make it to safety, others don't.\"\ntt1328910,3WCcFVnEKh0,\"In a biker bar, Lady and the other chicks realize that they are in a shootout with robots.\"\ntt1328910,GbLymMUHlXU,Lady gives her credo to the evil mastermind Elliot. Bobby and Gator blast the 1000 unit robot.\ntt1328910,xs1kML847Ww,\"Layla sends a robot to hell by detonating a grenade. Meanwhile, the 1000 unit robot emerges for the first time, posing another obstacle for the biker chicks.\"\ntt1328910,ws9--JaXKcg,The female biker gang rampage through the supermarket taking out the robots in style.\ntt0374286,b0ydPnxtSKY,Mason uses his son as the key for the monolith to ascend back to where it came from.\ntt0457319,Qv3wA3MJnJk,\"As zombies swarm inside the bank, Ski reappears to help out, and Hunter hesitates with deadly consequences.\"\ntt1328910,9QIPuX7vf1U,It is hot and heavy when Gator and Layla re-unite. The sexual chemistry between them is still dripping with passion.\ntt0457319,LPPEPzpSzwM,\"When Rich arrives via elevator, relief soon turns to terror as the others realize he's been infected.\"\ntt0374286,uC74Ix65Aas,The team parachute onto the Torus after deflating its security perimeter with a rocket.\ntt0457319,28wFNLwZpAU,\"When Malcolm gets bitten by zombies, Hunter and Ski team up to put him down.\"\ntt0374286,bqOMJ-Qrg1Q,The team discovers a mysterious floating orb before getting attacked by an unidentified soldier.\ntt0374286,MteufVA29iQ,Mason greets Captain Tower for the first time in ten years while inspecting the mysterious diamond.\ntt0374286,2X_LdH71B6I,Doyle increases his fee for killing Mason from the Genesis Coalition.\ntt0374286,SNdc9-hv8co,Another monolith appears in France ten years after the last one.\ntt0457319,QwQ7gl5N41I,\"Just as Ski negotiates an escape route, zombies descend on the town, killing all the cops gathered outside the bank.\"\ntt0374286,xGvLjaA4Zek,The Chinese militia attacks a international space station.\ntt0457319,JR_yxYYp8NM,Ackson is taken by surprise when Ski and the gang decide to rob the bank one day ahead of schedule.\ntt0374286,dwIgQqWOKCg,Mason and his son are on the run from cultists who want to eradicate all traces of the alien visitation.\ntt0233657,F_qsH2om2VI,Dr. Czaban makes a startling confession to Mason regarding her baby.\ntt0457319,D0Led4y5r3I,Hunter warns Ackson about bloodthirsty creatures that come out at night.\ntt0457319,b-4JObBlWC0,Ski and his friends approach Hustle for some assistance in acquiring firepower for a bank robbery.\ntt0233657,-3A2TNWXDXA,The monolith's healing power intervenes in a political argument turned ugly.\ntt0233657,70ut3wLkQmo,Mason reveals to the team his new cure from ALS.\ntt0233657,gPbn1uWQywg,The military squad gets attacked by both the Chinese forces and an entity on the Monolith.\ntt0230512,zWjlFN5hO6I,\"Despite Rodney's loyalty and long-lasting love for Camille, she won't commit to a relationship with him.\"\ntt0457319,xA57pKdLCbM,Mike and Kelly make the fatal mistake of asking a zombie for directions.\ntt0233657,2HOwFvWBZ3A,Mason is harassed and threatened by Mexican thieves before a government helicopter chases them away.\ntt0230512,w4iERLpYmzU,Rodney feels betrayed when his good friend Chris Carter jumps to another radio show that is very similar in tone to 'Rodney on the Roq.'\ntt0380201,aLVn2GWY-Ec,Reggie calls the police to turn himself in for the murder of Reverend Packer only to be warned of J-Bone's motive to kill him.\ntt0380201,lJxNtmP2Nas,Alicia puts Reggie on the spot about what he knows about her father's murder.\ntt0380201,rfYZT8xR1Gs,\"J-Bone, Reggie, and Reggie's little brother have a standoff.\"\ntt0380201,QN7he2e5qq0,J-Bone tells Reggie what really happened the night the preacher was killed.\ntt0230512,i27WEap2cLA,Rodney sits down with the filmmakers for an interview at the half-way point to discuss his worries over the film.\ntt0230512,thG4yP1OdgU,\"Rodney visits his family, yet it is bittersweet when they look at family photos and there are few of Rodney displayed.\"\ntt0437072,LI-SbYy8hMo,Berwell urges James to change the way he lives now that he's been exposed to the William Lynch papers.\ntt0437072,dO7tQ5fXGCY,Creeper and Double T proposition James to be the security guard for their prostitution business.\ntt0437072,q4lM2MGiS20,\"Animal reacts to the \"\"smell of death\"\" on his hands, reverting back to childhood.\"\ntt0437072,PgZp8EEzrJc,\"After years in prison, James is welcomed home by his friends and family with a party.\"\ntt0437072,dLcQb08EVvI,Kassada arranges for Animal to cage fight another prisoner to the death.\ntt0437072,UT2YmXPRg6c,\"Berwell explains that he arranged for Animal to no longer be preyed upon nor protected by any of the prison gangs, and prompts him to start becoming a real man.\"\ntt0492912,uBIAcBKvF28,\"Adam begs for Dr. Vick to kill him, unaware that death is no longer possible for him.\"\ntt0492912,CJHV8XKftbc,\"When Adam tries to escape on foot, Dr. Vick tracks him down on his snowmobile.\"\ntt0437072,vm4p1tZAmEw,\"Animal confides in Berwell that Malcolm X was the first book he'd ever read, and begins to receive his next lesson about William Lynch.\"\ntt0492912,nVwOCEibZu0,\"Adam gets shot by a hunter, but the bullet seems to have little effect on Adam's health.\"\ntt0437072,Uf0P-Ezxg5Y,\"Animal visits Berwell to share the good news about his release, but some vengeful inmates make a deadly interruption.\"\ntt0492912,0DTD2i-pMl0,\"Adam tracks down the hunter and shoots him, forcing Dr. Vick to admit that Adam is not really contagious.\"\ntt0437072,PmoU153vF3U,James and Darius's bitter discussion escalates to a tragic end.\ntt0492912,4p7hZ2WJXHs,\"When Adam collapses in searing pain, he begs Dr. Vick to put him out of his misery.\"\ntt0492912,_dE4g2x-Ing,Dr. Vick watches as Adam comes back to life one day after being murdered.\ntt0492912,LFinvO6-_T0,\"Adam tries to intimidate Dr. Vick, but his lack of control over his body undermines the threat.\"\ntt0492912,4eLsFtya4Gk,\"Dr. Vick questions Adam on the topic of cryonics, and when Adam offers to help with research, Dr. Vick strangles him.\"\ntt1294136,U72Ap0dAveE,\"Aaron threatens to kill Ethan's daughter, setting off a game-changing turn of events.\"\ntt1294136,weUbXakK6Fw,\"Helen's conscience kicks in as she tries to save Ethan, who she believes to be innocent, but Aaron isn't willing to give up the fight that easily.\"\ntt1294136,meBbBnp3FcA,Aaron takes captive Ethan's ex-wife and daughter when they arrive at his apartment.\ntt1294136,tHdqS2Vda8Q,Aaron cuts Ethan's eyelid to get him to confess what he knows about the murder of their religious leader.\ntt1294136,oj0LXmHzUoM,Aaron uses Amy to try to get information out of Ethan.\ntt1294136,4kQb8kUDq5o,\"Aaron tries to squeeze some information about Ethan out of his neighbor, Amy.\"\ntt1294136,XeZkZIt0zqA,Ethan tries to break out of the refrigerator his captors trapped him in.\ntt1294136,hBpNWBQZK4s,Aaron tells a racist joke so Ethan takes it upon himself to tell a redneck joke.\ntt1294136,K61WsiAs4rE,Ethan is assaulted by intruders.\ntt0305556,Je8n23QMWkg,\"Du-ug is enraptured with Penny's hairy feet, while My-ik is turned on by Jan's uni-brow.\"\ntt0445946,lWvb6U-KZds,Frank's men invade the cabin; Ray tries to fight them off.\ntt0808265,QiymXl8HTlA,\"Kathy kisses Tate in a last-ditch effort to save her boyfriend, trapped in the body of The Greek.\"\ntt0445946,Sd6LBK8KhuQ,\"Ray and Lochlan topple the bridge in order to slow down their pursuers; little do they know that they are no longer on foot, but in the \"\"rescue\"\" helicopter.\"\ntt0305556,of7ZP6vXAPo,\"At the laundromat, it is love at first sight for My-ik and Du-ug when they encounter Jan and Penny...and the ladies' sexy uni-brows.\"\ntt0305556,uFPINtBli58,Du-ug falls under the bewitching spell of Sheila and begins worshipping her feet.\ntt0808265,P8JnW9dWBRo,The evil spirit passes from Chris to Tate when he stabs her with the dagger.\ntt1499658,bvRS9b2nhh4,The guys wait outside to spy on their target.\ntt1499658,vKZhOw3Feo4,The guys await the arrival of the hitman they found online.\ntt1499658,nsQtI33UbGI,Motherfucker Jones coaches the guys on how to murder their bosses without leaving a trail.\ntt1499658,ARdTVbhhy84,\"Nick tries to make a point about his dedication by bringing up his dead grandmother, but Mr. Harken only uses the opportunity to mock him.\"\ntt1499658,IToYFpzH0_U,Dr. Harris harasses Dale by squirting his pants on the job.\ntt0138097,_wAG98wcrYc,\"The Queen determines Viola's fate, and Viola makes a visit to Shakespeare.\"\ntt0138097,XrxIR2uja8w,\"Viola makes a sorrowful goodbye to Shakespeare, leaving him sad, yet inspired as he begins to write Twelfth Night.\"\ntt0138097,o_KXbKa2crI,The Queen saves Shakespeare from arrest and Viola from being outed as a woman.\ntt0138097,827EAYtM6XQ,\"When the original Juliet is unable to perform, Viola quickly steps in, having already memorized every word.\"\ntt0138097,WfUTDlmLMFk,\"Viola is outed as a female, and therefore the theater is ordered to be closed for lewdness.\"\ntt0138097,0_avQPM3L90,\"The Queen picks at Lord Wessex's manhood as she meets Viola for the first time, and places a bet.\"\ntt0138097,ifjmJHoUzc8,Viola's disguise as Thomas is unveiled during a romantic boat ride with Shakespeare.\ntt0138097,OJZhDHdlk3w,\"Shakespeare falls deeper in love with Viola during rehearsal, and as they steal kisses together backstage.\"\ntt1270761,qF0CMv413PA,Sally arms herself against the creatures with a gift from her mother.\ntt1270761,alQVZ9YxUJw,Sally attempts to open an old furnace when she hears whispers coming from it.\ntt1270761,F3FrLQdbyKk,Alex discovers a door on the other side of the drywall.\ntt1270761,azYL1oPxMGg,Mr. Harris scares Sally while she is inspecting the bushes in her backyard.\ntt1270761,6xU4PZNn6RQ,Sally visits her new home for the first time.\ntt0380201,ZK4Ly7Ij81o,\"Lieutenant Hudson is at a loss with the Reverend Packer murder case until, miraculously, an eyewitness graces his office.\"\ntt0380201,gfXVOCNMpMQ,\"Reggie runs into the preacher's daughter, Alicia, at the mortuary.\"\ntt0380201,AhHM_fCLsIY,J-Bone accuses Reggie of being untrustworthy and taunts him with the fact that he killed his father.\ntt0380201,F3peN7bOfOo,Reggie holds Reverend Packer at gunpoint under J-Bone's instructions.\ntt0363095,6Bg4HfBsmAU,Seger begs for his life as Katie prepares to frame him and Sean for the murders.\ntt0363095,0vI6TtIP4t0,Katie forces Sean to have sex with her in order to accuse him of rape.\ntt0321704,Obf7CnOmBak,Dirk infuriates the Warden by defeating four opponents and refusing to kill them.\ntt0321704,kEwJ2uBX7sQ,\"After Baxter asks Dirk if he's a fighter, Dirk returns to the yard and answers the question.\"\ntt0321704,mro3v8ZZA_E,Dirk starts an intense training regimen to prepare to infiltrate the fight circuit at Ogden Correctional Facility.\ntt0309452,Hfoa97N4-4w,\"To free his brother, Dirk must work his way up the ranks of the underground fight club.\"\ntt0309452,7GF9Ic-yNcc,\"Dirk faces off against Kwan, unaware that his twin brother is waiting to take over.\"\ntt0309452,RXvm3oOIG8k,Dirk uses a backhoe to break through the gate of the compound hosting the underground fight club.\ntt0309452,dujvrGLRTlI,\"Dirk makes a date with Nicole, but his excitement is short-lived when three thugs approach him to start a fight.\"\ntt0309452,sPdJwBfuEDc,\"Lenny trains Dirk to get him back into shape, while Jeremy wins his first fight.\"\ntt0309452,eJ6y8TeIeAM,\"Dirk continues to train with the techniques given to him by Lenny, who pays for his betrayal.\"\ntt0305556,S0IGwZy9_xg,Croker films an infomercial for the exercise device called the Belly Twister.\ntt0309452,WyW86PD74dA,\"When Jeremy gambles away twenty thousand dollars, Vixton offers him a chance to fight to pay off his debt.\"\ntt0305556,ROUu-unQieo,\"My-ik attempts to launch himself into the atmosphere, but the dynamite just blows up in his face.\"\ntt0858411,c1HS49PeMUM,Hucklebilly runs over Tina and Rome Sheraton to the delight of the cannibals.\ntt0858411,_zlm3MXTK-0,Mayor Buckman and Granny Boone snap a killer photograph of K-Jay. It's electric!\ntt0858411,Y9ewiC2bykI,\"Falcon and Rufus have a moment inspired by Ennis Del Mar and Jack Twist. However, unlike Brokeback Mountain Rufus really does break Falcon's back.\"\ntt0339526,5e0cFUGyfzI,Carl tells Jericho about Mortensen's role in the operation.\ntt0339526,DwDzyVvtR9M,\"Jericho finds Jezebel at the train station, where she convinces him to leave for California with her.\"\ntt0339526,Tn6y5TARbnQ,Mortensen interrupts Carl and Jericho's game to further complicate the situation.\ntt0339526,l_4wAj6Kx-k,Bullets fly as the faceoff between Carl and Mortensen continues.\ntt0339526,h8QQbFolJZI,Jericho and Jezebel get intimate when he goes to her house after getting beat up.\ntt0445946,OkR9Bp19nKs,Frank is shot at just as Ray is interrogating him about his missing son.\ntt0808265,yjm6WiV1bBo,Death finally catches up to the spirit inside Tate as the Ferryman arrives to collect his payment.\ntt0339526,IZ3BR0J5vvw,Mortensen holds Jericho at gunpoint although their deal is over; Jezebel steps in to defend him.\ntt0808265,7Lsh9PH4cn0,\"After being caught with Kathy, Chris turns on Tate until Suze saves the day.\"\ntt0489318,A7ZmPaAVJgo,\"Suddenly emasculated by his invalid mother, James begs Mickey to kill his mother so he can be free of her psychological tyranny. Instead, Mickey turns the tables on James, bashing the serial killer to death.\"\ntt0420740,4X5-zcyQc7U,Abe forces Frederick to give up his son to Isold who will raise him in a much more loving environment.\ntt0808265,y59dykC47mc,Chris catches a shark and the entire crew is disturbed when they find a human hand inside it.\ntt0808265,AgbKPzg3rAk,\"Suze and Big Dave are disturbed to find Chris, Zane and the dog locked up in a bloody room.\"\ntt0808265,NXRbXCIjxR0,\"The Greek stabs Zane in the chest, but Kathy is unable to find the wound.\"\ntt0808265,EATS70yNA0E,Chris and Zane explore an abandoned boat and find a badly injured man.\ntt0138524,BxQMT4R51Dk,\"On the witness stand, the Baron provides damning testimony about Marylin's motives.\"\ntt0113074,usUO449hUXQ,Jackal and his thugs pillage a village.\ntt1172060,Q-BviNtL0PQ,\"Lenore experiences a flashback to the delivery, while Frank gets scratched by the baby.\"\ntt1172060,Yzu5yxVl3yQ,\"Lenore gives birth, but she and the baby are the only people to survive the delivery.\"\ntt1161449,6EP_KsI8k8w,\"Krit tracks Patrick down to retrieve the stolen treasure, but Patrick won't give up without a fight.\"\ntt1161449,DwrmKYIuYi0,Krit faces off against Gary as Praifa fights Selina.\ntt1161449,xUllXfNznIY,Krit gathers strength from his necklace and rallies to defeat Patrick once and for all.\ntt1161449,O0gse4WDTrY,Krit holds his own against three mafia henchmen as Praifa watches from a safe distance.\ntt1161449,Vr9OaXD19JY,Krit and Praifa wait in the road for a ride until Patrick and his crew appear.\ntt1161449,juik-nkFIoU,Selina offers to take care of Krit and Praifa by filling their car with lead.\ntt1161449,6kw3u6O_SxE,Krit gets assaulted by mafia henchmen and chooses to escape instead of fighting them.\ntt1161449,uaSkuUzEuq4,The theft of the Royal Antiques leads to a fierce battle between the thieves and the palace guard.\ntt1161449,VwvlEZJMbg0,Kirk defends himself from mafia henchmen after he finds and pawns an ancient Thai vase that is a stolen national treasure.\ntt1161449,TVfHmkZlp3s,Patrick pulls a double-cross on mafia boss Wisa by planting a bomb in a decoy vase.\ntt1087524,qhc9YD3ahAs,Liam gets shanked while waiting for a visit from his son.\ntt1087524,Y1Q93Zi9_kc,Liam gets a visit from his son and his grandson.\ntt1087524,JUbVxse8ZrQ,Chance ambushes Rath and his men seeking his son.\ntt1087524,DedlZ0Es_dU,Chance's return to fighting after serving time in prison doesn't go according to plan.\ntt1087524,sLB6_-ZNR6E,Chance threatens Eddie while Beat gets in an accident with Rath.\ntt1087524,0woPxIfjVTk,Chance and August visit Aunt Rose for the first time since before his prison sentence.\ntt1087524,rf5MnH9pG_s,\"When Liam discovers fresh wounds on August, he takes action against the boy's father.\"\ntt1087524,cbulyV4O3qc,\"Chance visits Eddie, an aging bookie hipster friend.\"\ntt1087524,n7DQNB_OKZs,Rath loses his temper on a drug raid and murders a suspect in cold blood.\ntt1087524,QxFgIsrvJR4,Kat walks out on her son when his father returns home from a five year prison sentence.\ntt0770778,a50LKwRt5CU,\"De'Sha coldly informs Taz that he is, and always will be, an agent of Satan.\"\ntt0770778,V2j9MRkQE78,\"Taz encounters the demon De'Sha, who has taken the form of his deceased father. But De'Sha makes it clear that he's all business and just doesn't give a f***.\"\ntt0770778,4xLBhHfpKTU,\"After Taz is threatened by a fearful colleague, De'Sha shows up to do some home improvement chores.\"\ntt0770778,f0KpM0-h1CI,Norman executes a traitor as his son bears witness.\ntt0770778,oiYIVQm-qvY,A mysterious man known only as Natas suddenly appears and gives Taz an offer that he can't -- or at least shouldn't -- refuse.\ntt0770778,AHzW_z8rUyQ,Taz's bizarre dream turns into an weirder reality as a strange demon woman speaks to him.\ntt0770778,mXEgUS1i_m4,Norman teaches his son a lesson about family values.\ntt0770778,COsMa1MQIVM,Taz resists De'Sha as the demon tries to coerce him into killing his wife and child.\ntt0770778,n-WzTlw0scA,The demon De'Sha taunts Taz about the gruesome killings and reveals to him that they are one and the same.\ntt1172060,yX0WnX27tJw,\"Frank captures the baby and holds him at gunpoint, but he's unable to pull the trigger.\"\ntt1172060,Bmxi1VgTb-I,\"Lenore refuses to return to school, and her friend Marnie becomes her baby's latest victim.\"\ntt1172060,X-RU-b4OyuY,\"Frank discovers a pile of dead bodies in the basement, while the baby sets his sights on a police officer.\"\ntt1172060,QynjN9Nzr7E,\"Lenore refuses to be hypnotized by Professor Baldwin, and her baby has a permanent solution to the problem.\"\ntt1172060,NCCUGkrIfkQ,\"Lenore gets uncomfortable trying to remember her delivery with a therapist, and she finds her baby with a disturbing snack.\"\ntt1172060,zqIOu4ki5-Q,\"Lenore is thrilled with the baby's room prepared by Frank, but she experiences strange labor pains in the shower.\"\ntt0119208,mbGDV3lPib0,Nathan breaks into Avery's house to murder him on behalf of Matt.\ntt0119208,_yqWh3OBDEE,Plans change when Nathan kills Jason at their meeting place.\ntt0119208,5dBd4x1yxaU,Matt tells Nathan about his addiction to -- not drugs -- but power.\ntt0119208,-UEeG5IIQK0,\"When Nathan comes to Matt for more work, he receives a far riskier job than he bargained for.\"\ntt0119208,uEoCU5cuQA0,Matt tries recruiting Nathan to help him deal drugs.\ntt0119208,dyVMPRxN0FQ,\"Desperate to score some rent money, Nathan robs a house.\"\ntt1290400,bwcLwZQGCAE,\"Nicholas saves Katrine from the evil clutches of Serik, gunning him down.\"\ntt1290400,gywGZDlDv7U,Murdoch's attempt to kill Nicholas by pushing him off the train backfires in a deadly way.\ntt1290400,nH51jEGD7G8,Nicholas and Katrine find themselves exposed in the middle of a shootout between the multiple participants of the diamond exchange.\ntt1290400,sSkwCIpxqxU,\"Nicholas encounters Katrine, and their chemistry heats up fast.\"\ntt1290400,FxCpDJ1ZAo0,Katrine talks to Nicholas one last time explaining her motives for helping him at the risk of her own.\ntt1290400,NodMkxK5ndw,\"Nicholas evades capture at the train station, getting a little help in the process.\"\ntt1290400,29vmOrsOjvM,Nicolas evades his Russian pursuer in the forest by knocking him out with a rock to the skull.\ntt1290400,mYqUdiWcOok,\"Digging his own grave in a forest, Nicholas waits for the appropriate opportunity to escape from the Russian henchmen.\"\ntt1151928,SakCFLhbAJA,Hart and his colleague give Ms. Fraser the lowdown on what makes Isaac tick and why he's so valuable.\ntt1290400,tWmPkmMO-mo,\"At a cocktail reception, Nicholas swears he recognizes the beautiful Katrine, but she claims he has mistaken her identity.\"\ntt1290400,jfVzY0OTW1c,\"On the way to deliver a baby, Dr. Pinter has an enchanting run-in with a mysterious, sexy woman.\"\ntt1151928,X0NIR5-QiAM,Isaac uses his cybernetic superhuman abilities to find a missing child and return her to safety.\ntt1151928,BcRIvgk2USU,\"Isaac destroys himself and Hart, thus getting the revenge he desires while putting a stop to Hart's nefarious military program.\"\ntt1151928,l4srSgqgncU,\"Hart reveals his true ruthlessness when he kills Ms. Fraser, who is being held hostage, in cold blood.\"\ntt1151928,B64yKhFe5Lw,\"When members of his former military unit demand his surrender, Isaac resists with precision violence.\"\ntt0476964,B00qOyB7CuE,Bee finds the strength to defeat two equally vicious opponents simultaneously.\ntt1151928,2bMvW5QUMYk,\"Hart orders the slaying of two local police officers in order to maintain project secrecy, while Isaac and Lindsey escape during the carnage.\"\ntt1151928,LZo51T6e928,Beck and his men send Isaac and Lindsey crashing into the ravine below.\ntt1151928,vpJbP-sA1gg,\"Captured by Hart's electromagnetic security system, Isaac is about to be killed until Lindsey saves the day.\"\ntt0476964,o6bYgD2JDus,Lita appears at the last moment to save Bee and Tong.\ntt0476964,giXrOAZtjaE,Things turn dangerous for Bee and Tong when their enemies begin to use deadly weapons in an attempt to defeat them.\ntt1151928,E2kt9XttAzU,\"Isaac dispatches the commandos, giving their leader, Beck, an eyeful of trouble.\"\ntt0476964,TURTkb6N_FA,Bee and Tong split up to take on countless gang members one-by-one.\ntt0476964,hBlhWP2N4j4,Bee tracks down Mai at his boat and beats him up in front of his family.\ntt0476964,Zr0xGlPjTHA,Bee gets chased to the roof by a gang of thugs and realizes there's only one way down.\ntt0476964,qCpSqCKBM-M,Bee uses his ingenuity and fighting skills to avoid capture by a vicious gang.\ntt0476964,1JyApnR4o9U,Bee saves his brother Tong from a bomb while suspended in mid-air.\ntt0476964,ylGIAp_-JK8,Bee evades capture by the police and escapes from an office building undetected.\ntt0476964,y2t3XqFAjt0,Bee infiltrates the office of a bank by fighting every person on staff.\ntt0762073,fCXWwJcplg0,\"Joy turns to anguish as Noelle, Bryan, and Tyson realize that the watering hole is poisonous.\"\ntt0762073,OxhtzzpoYBk,\"As Noelle lays down from exhaustion and de-hydration, she spots a truck driving to rescue her, and it begins to rain.\"\ntt0762073,-ikc2VldgSU,Noelle wakes-up from a luscious dream with a wolf eyeing her for dinner.\ntt0762073,ZoFNL5lwimk,Bryan cuts his jugular with a razor so that Noelle can drink his blood.\ntt0762073,zEdVDymxYQc,Tyson drinks the blood of a rattlesnake as does Bryan.\ntt0762073,BQ42Z2UGeS4,\"Bryan goes off into the darkness to scare off a wolf that is stalking his prey. While doing so, he gets scratched and sucks his own blood.\"\ntt0762073,DmBEdpsTwxc,\"Refusing to heed Noelle's advice, Tyson eats the cacti.\"\ntt0762073,WX_9RZSjar8,Noelle performs a primitive form of brain surgery on Atheria to relieve the pressure of a blood clot using a rock and a screw driver.\ntt0762073,F6-7c3I_egQ,Noelle lets Bryan know that she's pregnant.\ntt1406157,zYySG-Bwo1Q,Kei faces off against a fierce competitor as the rest of the Destroyers watch.\ntt0762073,b6W1FIgCADQ,Tyson crashes the truck when he tries to avoid a wolf in the middle of the road and Atheria gets a concussion.\ntt1406157,4tKHdEaBlXw,Kei takes on a dojo full of black belts unprepared for her karate skills.\ntt1406157,kFJm_Gedi7k,Matsumara begs to get his pupil Kei back from the Destroyers as Shurei continually kicks him.\ntt1406157,WBMHd6mCSP4,\"While infiltrating the Destroyers' lair, Matsumura is confronted by Hien.\"\ntt1406157,9cTHj9NKHXk,\"Matsumura teaches Kei and the other students the basic tenets of karate, the art of self-defense.\"\ntt0480271,l6FPyq4wvuA,Davie's Father makes his appearance known to the worst of the survivors.\ntt0480271,z_udbrboBXk,\"Callum gets his \"\"crazy\"\" on when he discovers Louise's head on a stick.\"\ntt0480271,8-IbFKbycv4,Blue gets impaled with a bear trap after attempting to rape one of the survivors.\ntt0480271,wgmwBXh6ExI,\"The survivors contemplate the meaning of the letter \"\"D\"\" painted on Jethro's corpse.\"\ntt0480271,VMqDBkf__xo,The camp gets attacked by a mysterious figure with a crossbow and his hounds.\ntt0480271,136NiOTy4Xo,\"The survivors comes across Jethro's mauled corpse, hung to intimidate them.\"\ntt0480271,IOXtBc7CJI0,Jethro is attacked while fetching water.\ntt0480271,mwE7hDBei2g,The team accuses Callum of murder when he discovers the corpse of a poacher.\ntt0480271,zySQRLbqyng,Jed and his boys discover Louise and her girls also on the island.\ntt0760188,4wvMWwwCRYU,\"When Breuer tells Mathilde that he is leaving her, she mocks his desire for freedom.\"\ntt0760188,cSXgqTUqtOY,Nietzsche opens up to Breuer about his loneliness and they acknowledge their friendship.\ntt0480271,aDwNCyqgVA4,Callum is attacked in the middle of the woods.\ntt0760188,-Fmvuy-4U_A,Nietzsche encourages Breuer to imagine Bertha as a flatulent infant in an attempt to clear his mind of her.\ntt0760188,LAvuBfU6iSg,Nietzsche forces Breuer to consider the destructive effect that Bertha has had on his life.\ntt0760188,rQvp_unbfFM,\"Breuer tells Nietzsche about the strange case of Anna O., and the talking cure they created in an attempt to treat her hysteria.\"\ntt0760188,2ZhQWROtg58,Nietzsche suffers a crippling migraine while seeing a prostitute and Breuer rushes to his side.\ntt0760188,8AUEcXu2krY,Breuer has a sexually charged dream featuring his patient Bertha and Salome.\ntt0760188,5gQUCqEQVLI,\"Nietzsche gives a controversial lecture on the death of God, which impresses Salome, but her rejection leads him to despair.\"\ntt0489318,jei1Q_fP_Es,James struggles to control his homicidal urges after he notices a pretty nurse riding along in an elevator with him.\ntt0489318,dEjdEoovBR4,\"James kills Mickey's friend and collaborator in order to further take psychological command of their \"\"working relationship\"\".\"\ntt0489318,H07ghIFjox8,\"After learning that his mother has been kidnapped by James, Mickey looses his cool in front of a police officer and implicates himself as a public threat.\"\ntt0489318,0u_qMyWIZU4,James plays a practical joke on Mickey.\ntt0489318,V2Sa7ey52f0,Mickey witnesses a savage murder in an alley and barely escapes with his life.\ntt0386751,bHSnlMlFC94,Abel intimidates Harry into telling him what happened regarding the death of Gus Pierce.\ntt0386751,MaRBZ90WDYo,\"In the aftermath of his failed investigation, a pensive Able relives the moment when he witnessed his older brother commit suicide.\"\ntt0386751,rt8L4_lD-_g,\"In a lengthy flashback, the truth of Gus's tragic death is revealed.\"\ntt0386751,QpBfwsw4OaE,\"After discovering a mysterious powder in her deceased friend's jacket, Carlin realizes its significance when she sees a white rose turn red, right before her eyes...\"\ntt0386751,8QZgJWf5aqg,\"Recounting the last night of Gus's life, Carlin reveals that she and Gus had an argument prior to his death.\"\ntt0386751,psHsXebbbYo,\"After watching his partner, Joey, take a bribe, Abel blows up at him in a wave of anger and disgust.\"\ntt0386751,cJBjSpKIRWw,\"Abel and his partner Joey discover a dead body under a sheet of ice. As they investigate the scene, Abel suspects that foul play is involved...\"\ntt0386751,6EUxC78eSjk,\"Despite her intense attraction to Able, Betsy breaks off the affair for fear of losing her job and her way of life.\"\ntt0386751,M--q4JZp5lE,\"Betsy visits Able with an update on the photographic evidence, but it's really a pretext to seduce him.\"\ntt0455584,a6DTqXLuu_c,Silvia and David race to find the source of the music as tourists begin killing themselves.\ntt0455584,pvni4Q-Xh7k,\"Frank tempts David to kill him, and warns him of mass murder.\"\ntt0455584,moiaW_zgh1c,\"When David threatens to shoot himself, Frank convinces him to turn the gun on him instead.\"\ntt0455584,7VV6BZWittk,\"When David realizes that he's been bugged, Jaume tries to remove his implant and is driven to suicide.\"\ntt0455584,rsHK7n7hVBQ,\"David meets Frank, the man responsible for bringing one of David's stories to life.\"\ntt0455584,cgGJhEgDgIU,\"When Gloomy Sunday\"\" plays on the radio, Silvia is driven to attempt suicide again and David must jump into traffic to save her.\"\ntt0455584,ea2fcCJ0_u0,\"As Silvia prepares to leave Majorca, a sinister man enters her hotel room and paralyzes her with an injection.\"\ntt0455584,6cwIlJvjP6k,\"Silvia begs for help from David, but he doesn't believe her until another stranger commits suicide.\"\ntt0455584,YdF7wSrLk-w,David lets his imagination get away from him on a plane ride with his girlfriend Jane.\ntt0455584,QuVUH1lm8NY,\"David watches a strange DVD found in his hotel room, and Jane apparently jumps to her death.\"\ntt0149171,2wCqM6rbeWc,Rick sabotages his date with Heather when he lets his tough guy attitude get the best of him.\ntt0149171,5L-JTSGZQ4E,Rodney and Mike call Fred out on his lies.\ntt0149171,F_EJsjP26cI,\"Rick tries to comfort the scorned Danielle, but his honesty only makes matters worse.\"\ntt0149171,0ynuAmC24_Y,Rick shares with the guys the consequences of being promiscuous and careless with love.\ntt0149171,O3FndxKOnMA,Tony encourages Danielle to go into Rick's room so he can hook up with her friend.\ntt0149171,4qW5feZgSM8,\"Rick hassles Fred about his hygiene, or rather, lack thereof.\"\ntt0149171,qDyiygLEd38,Rick and Heather get to know one another after the party.\ntt0149171,T8QSGSX7joU,\"Rick surprises Heather by singing her \"\"If I Only Had a Heart.\"\"\"\ntt0149171,OjxvPz5T7YY,\"Rick has had it with his friends' selfish, irresponsible attitudes when Tony laughs at the fact that he gave his girlfriend herpes and gonorrhea.\"\ntt0149171,pr335ddgcuQ,\"After Rick's first date with Heather, Tony pesters him to hook up with a stripper he brought home for him.\"\ntt0284491,HzAlqdHBZzs,Marina and Davenport meet after the divine hearing of Manny's soul.\ntt0284491,o3NneX3NJ-I,Carmen and Lola are caught by one of the managers when trying to escape the store they just robbed.\ntt0284491,4BXpDgTVN2E,Lola and Carmen are caught after robbing their former employers.\ntt0284491,gtSXreFMPpc,\"Lola confronts Carmen when she finds Manny riled up with self loathing thanks to Carmen's \"\"encouraging\"\" words.\"\ntt0284491,a8DNOaAifkE,Representatives of Heaven & Hell dine together and discuss the rapid changes in their divine struggle.\ntt0284491,fGJIFMA09cE,Marina explains the importance in the salvation of Manny's soul to his heavenly representative Lola.\ntt0284491,8sHaAvi0SJw,Hell's agent Carmen and Heaven's agent Lola find each other battling for the soul of a discouraged boxer Manny.\ntt0284491,XdUKcQsnS4k,Henry and Nancy brief Davenport on recent matter from Hell.\ntt0284491,M9JQBS2Km-Y,Carmen and Lola discuss God's relationship to evil and how it is ultimately a divine trilemma.\ntt0425395,sguNMcMJQv8,Richard comes home to discover that his biological parents have turned his house into a circus.\ntt0425395,vV3Utpy9vCI,Richard loses his temper when his parents interrupt his interview on the Holly Davis talk show.\ntt0425395,qskwY84EXkw,Ellen finds Richard beat and emotionally broken when his birth parents leave.\ntt0425395,1MJg1718M74,Richard tracks down the Menure's when he discovers that they are in fact his true biological parents.\ntt0425395,qqATa_flYaI,Doug loses his temper during a game of charades.\ntt0425395,_wfy0wdA2pQ,Frank and Agnes come home early to greet their sons family and friends.\ntt0425395,CGX5n1pvu5s,Richard gets a giant cheese ball in the groin.\ntt0425395,QkAHUSwy8Uc,Frank and Agnes explain their family's extensive medical history.\ntt0425395,MP7SCUB0fWU,Richard meets his biological parents for the first time.\ntt0425395,fbc0TS1kJ5w,Richard fantasizes what his biological parents are like.\ntt0416051,eP7VXLIgaIs,\"Lance helps his friends serenade the O'Mally widows, and watches how love appears to make them all young again.\"\ntt0416051,xP_cM03sHgU,Lance presents his scheme to win Sophia back for Bill.\ntt0416051,OjZadIbLAIE,\"Lance comes on to Sophia in the middle of a touching moment in order to turn her off but, surprisingly, she takes the bait.\"\ntt0416051,slW61xrU17E,Karen tells Lance about her real identity and feelings.\ntt0416051,JIhx0f2y25I,\"Lance walks Bill through his plan to make Sophia think he lied about everything, which will make her run back to Bill.\"\ntt0416051,vecXbFwYvPQ,Lance is in for a surprise when he finds out he's been duped.\ntt0416051,BhtHFyjXaXU,Lance surveys the couples on the beach to test whether they're actually in love.\ntt0358569,iJ7r9jKl1so,A bad Oasis album and the untimely death of Princess Diana contribute to the demise of Britpop.\ntt0416051,zoFt-5SqUCs,\"Sophia spouts off characteristics she likes in a man, and Lance does his jaunty best to embody them.\"\ntt0416051,7jj-8TCQTXc,\"Using the knowledge that Sophia enjoys street performers, Lance becomes one himself, but finds it more challenging than he expected.\"\ntt0358569,vjSMyoCFS_o,Noel Gallagher defends his decision to meet with Tony Blair upon his election.\ntt0358569,IEVDBboDFcw,\"Noel Gallagher ponders the fickle nature of the record-buying public in regards to the sales of \"\"Definitely Maybe\"\" and \"\" Morning Glory?\"\"\"\ntt0358569,TIccuJuQg3w,Liam Gallagher and Damon Albarn explain their decision not to accept the invitation to 10 Downing Street sent by Tony Blair.\ntt0358569,OMzGVY5_gpc,Noel Gallagher and Damon Albarn consider the assessment of Oasis as a working class band and Blur as a middle class one.\ntt0358569,Vi5nIuJQVpM,\"Noel Gallagher questions Blur's decision to release a single on the same day as Oasis, while Damon Albarn remembers being heckled and cheered in the streets.\"\ntt0358569,26-SvRLhthc,\"Liam Gallagher describes his days as a juvenile delinquent, and Noel Gallagher discusses his writing process for the debut album by Oasis.\"\ntt0358569,on28B5qrgtY,Damon Albarn refuses to comment on the rivalry between Blur and Oasis as documented in the U.K. music press.\ntt0358569,dRTxXWB-lpE,Tony Blair comes to power and aligns himself with the resurgent British youth culture.\ntt0358569,Y937MAvxTZI,Noel Gallagher discusses the dire state of Britain's popular culture in the 1980's.\ntt0276276,TlnLO-nYFG0,Nick takes care of the strange girl he found hung over in his bed the day after the party.\ntt0276276,oDNgxbWzpf8,\"Tim tries to get Leah's input on the future of their relationship, but she is too distracted by David's presence to give him a straight answer.\"\ntt0276276,49LrC8wJLPU,\"Nick tries to accommodate the hung over girl who crashed in his bed, but she is oddly demanding.\"\ntt0276276,W6U80LM5b1U,David apologizes to Leah for the way their affair ended.\ntt0276276,_71L2__mFtE,Tim introduces Leah and David ; little does he know they already know each other.\ntt0276276,KKNUjL6oLeA,\"Tim invites the cute shop girl to a party to impress her, but then he must organize the party.\"\ntt0276276,Mw9Dc_MJF34,Nick makes a sudden attempt to have sex with Charlie.\ntt0276276,uHmd86pWvmY,\"Nick and Charlie start to spend more time together; Judy, thrown off that Nick is seeing a woman, tells Nick that he won't be getting any of Stuart's money after all.\"\ntt0276276,-BhFk_mOlxc,\"Nick runs into Charlie, who repays him for the cab ride by giving him free groceries and forcing Darren to apologize for his behavior at the party.\"\ntt0454879,3ssOgE8RWSI,Paul gets into a violent brawl with a transvestite streetwalker.\ntt0276276,MLFezSJBdC8,Dan makes assumptions about the nature of Nick and Stuart's relationship based on his impressions of gay couples.\ntt0454879,y935w17KA18,Paul informs his father that he is cutting him out of his share of the money from the drug deal.\ntt0454879,6EEradwg8aE,Paul recounts his father's neglect of his mother's suffering.\ntt0454879,-fIi-c3tSig,\"Sinatra asks Wemba to take Angie to safety, but Rodrigo stands in their path.\"\ntt0454879,Rn2_vtaTLM4,\"Wemba tries to drive himself and Monique to safety, but the gunman after Wemba's drug money shoots Monique in the back.\"\ntt0454879,CjYxp2UFfL0,\"Angie holds Paul at gunpoint, but is interrupted by Nazda, who has come back for revenge.\"\ntt0454879,6z6MpYHnbRc,Wemba and Monique are chased by a gunman who's after the drug money Wemba is delivering.\ntt0454879,QPKFPLL4XQQ,Paul instructs Rodrigo to shoot The Soothsayer's dog to get him to cough up the information he's after.\ntt0138524,xGN5cFcaD5A,Miles hires an asthmatic hitman to deal with Marylin.\ntt0454879,a0uMay4ExT8,Sinatra seeks answers from The Soothsayer.\ntt0138524,SyM4ctfYzks,\"After marrying Marylin, Miles gives a surprisingly heartfelt speech to a roomful of divorce attorneys.\"\ntt0454879,1H96OfI64Fs,Wemba runs into a few problems while transacting the drug deal with the African buyers.\ntt0138524,gFKba_Esjt0,Doyle gives Marylin an unconventional wedding gift.\ntt0138524,KNiplLivjQI,\"Marylin introduces Miles to her new fiance, oilman Howard D. Doyle.\"\ntt0138524,jGCY8thosNw,A helpless Miles receives some scary counsel from the firm's founder.\ntt0138524,dcsVnpHXXX0,Miles pulls Marylin aside for an intimate discussion.\ntt0138524,Zz-mpgYNUW8,\"The firm's ancient, wheezing founder calls Miles into his office.\"\ntt0138524,YgdWrHFx0I0,\"Divorce attorney Miles Massey \"\"massages the kinks\"\" out of a straightforward adultery case.\"\ntt0138524,IkQ_uPNWp28,Miles and Marylin get better acquainted over dinner.\ntt0138524,6PpQk63iIWw,Miles spars with Marylin's lawyer at a settlement meeting.\ntt0138524,82TS-sLA0P0,\"Marylin meets with a tactless private investigator, Gus Petch.\"\ntt0417751,FNLQdquN0-I,\"Thinking Jeana's already left on her cruise, Paul goes to her house to ask her roommate how to reach her, and ends up telling her how he feels about her.\"\ntt0417751,I1L5vXswv0Y,\"When Tom's marriage proposal falls flat, he and Jeana agree to go on the cruise as acquaintances.\"\ntt0417751,GrG6AZG-ZOQ,\"Jeana and Paul run into Tom at the park, where they all discover how interconnected they are.\"\ntt0417751,YiMIAKXwHg4,\"Jeana goes on a talk show to clear her name and share her opinion on her virginity. Meanwhile, Paul is shocked to learn that Jeana is the girl he encouraged Tom to pursue.\"\ntt0417751,sR22u1bgrog,Paul advises Tom to tell Jeana he's in love with her while Caroline tells Jeana not to trust men.\ntt0417751,qTUAF-_v55o,Jeana is shocked to hear that Tom is back together with Zsa Zsa even before he breaks up with her.\ntt0417751,lcDo8iV-rPg,\"Embittered by the recent unwanted attention from men, Jeana becomes defensive when Paul tries to thank her for helping him with his stalled car.\"\ntt0417751,Khjlz5bMb2E,Jeana apologizes to Paul for her previous attitude and the two start to get to know one another.\ntt0417751,vZW4Qk-wqlg,Jeana is outraged that she can't get a refund for the cruise she and Tom planned to take together.\ntt0417751,GC_ehA6dd_I,Tom accidentally reveals that Jeana is a virgin on live television.\ntt0412798,sqpSc2wwTaE,\"During a nightmare, Rachel sees her dead son and is dragged down into the water by him.\"\ntt0412798,6AW4O4ohXK0,\"The evil conspirators meet their demise as Rachel takes care of Sharon, and the ghost\"\" of Angus hooks Brian in the stomach.\"\ntt0412798,Fe2CpAhZ9w4,\"From the blossoming romance with Angus, Rachel finds some momentary peace, comfort, and writing inspiration.\"\ntt0412798,pl3Oay3HDo8,\"Brian and Sharon drown Rachel, but she is saved by a supernatural miracle.\"\ntt0412798,Z_9GcqiwxF4,Rachel is shocked to learn from the townspeople that her lover - Angus - has been dead for nearly seven years. Is Angus a ghost?\ntt0412798,V6aDrQg-WVU,\"Despite Rachel's warnings, Sharon refuses to believe that Angus is right behind her, until it is too late.\"\ntt0412798,W51M5otbulY,\"In her grief over the loss of her son, Rachel is comforted by Angus as they make love by the fireplace.\"\ntt0412798,PJjFb1RSFdw,Rachel stops by the lighthouse to have a tour led by the mysterious Angus\ntt0412798,ExGQSMWhujY,\"At the local pub, Rachel has a creepy run-in with the town psychic Morag McPherson.\"\ntt0412798,tQPd0OAV7yk,Angus shows Rachel the breathtaking view from atop the lighthouse.\ntt0339091,UL-ot8sR0P8,\"When Maria sees Malone tending to a dying Chastity, she holds him responsible.\"\ntt0339091,wANxoR0GtCs,Kim returns to town for her pocket watch and falls prey to a bullet from the Black Haired Woman.\ntt0339091,MOO9hFCMw7Y,Maria disposes of the Sheriff after he reveals the location of the gold.\ntt0339091,Z_OVcsaEOXA,A gunfight breaks out when some gamblers refuse to give Maria her poker winnings.\ntt0339091,HueqqIRaOQA,Rachel gets revenge on Little Suzie and Left Eye Watkins for killing her sister.\ntt0339091,r9RIcLpGaHY,\"On the hunt for a criminal named Left Eye Watkins, Rachel and the gang hit the jackpot when they enter a saloon filled with eye patches.\"\ntt0339091,mVNG6xFwq2M,\"When the Sheriff pleads ignorance about the map, Left Eye Watkins shoots off his finger.\"\ntt0339091,ub-t6RcoeTU,The gang saves Kim from hanging with a little help from Jessie Lee.\ntt0339091,ODZ_xokDAc8,Left Eye Watkins intimidates the Sheriff while Little Suzie shoots a can-can girl in cold blood.\ntt0339091,KqAGFmus6_M,Chastity shoots Johnny when he tries to sneak off with her money.\ntt0113074,inmQqyn5fhE,Kenshiro defeats Lord Shin while Julia takes out Jackal.\ntt0113074,J2k2CQgmaWo,Lord Shin beats Kenshiro to a pulp while Jackal nearly rapes Julia.\ntt0113074,ecuuc8AsMjg,Kenshiro wipes out some thugs after a meditation.\ntt0113074,XHiFqBo1rWI,Julia is forced to watch Lord Shin torture Kenshiro.\ntt0113074,MOuSrB5BYJM,Kenshiro plows through dozens of nameless thugs on his quest to save Julia.\ntt0113074,lrZAnOGjydo,Lord Shin tempts and kills an apprentice just to demonstrate his power.\ntt0113074,LPe-N0frxvU,Kenshiro cures a girl's blindness during his travels.\ntt0470761,RQmCVPN6V-s,Laura researches witchcraft while mice congregate around her baby.\ntt0113074,MUVukUuF9tw,Kenshiro kicks ass and takes names when punks try to rape a villager.\ntt0113074,vA8oTgiA5WI,Lord Shin's thugs attack the peasants and villagers of the realm.\ntt0470761,Yrph2A1xc94,Laura discovers that elements of her terrifying nightmare may have come true.\ntt0470761,bB-OwUZc-cE,Laura gets physical and defensive when she sees Mrs. Kasperian with a knife near the baby.\ntt0470761,Fsy3TtA-3NI,Laura forgets her baby in the back seat of the car after grocery shopping.\ntt0470761,6KgxpUSWsoA,Mrs. Kasperian describes her experiences with her first born to Laura.\ntt0470761,IthpPqgEteI,Laura gets trapped in the basement with her baby is out of reach and her husband off at work.\ntt0470761,yBrv-a6Nxuk,Laura discovers she is pregnant after a recital.\ntt0470761,L0oNukxzH4o,Laura makes an unsettling discovery while extracting her breast milk into a bottle.\ntt0280605,XiYDPHi7Acw,\"Barry has Sal and Tony arrested for shooting domestic pigs on their hunting trip, which Barry surely tricked them into doing.\"\ntt0470761,SJhnQPZtv0M,Laura and Steven work on getting the nursery ready in their new home.\ntt0280605,FptZhFrVXAY,\"Barry orders Darcy to kill Hollywood, but Darcy refuses.\"\ntt0280605,11nfPZqT5c0,\"While teaching him how to make a pizza, Tony gives Darcy a reality check about the life he can expect if he gets involved in the mafia.\"\ntt0280605,zAge7cKvs9s,Darcy comes through in the clutch when one of Barry's enemies threatens their lives.\ntt0280605,h1UDUqeJh0Q,\"Tony takes Darcy under his wing, advising him to be aware of the mafia's practices before getting involved.\"\ntt0280605,PJeobOT-LGk,\"Darcy and Margaret succumb to their feelings for one another, but must hide their tryst from Barry the next morning.\"\ntt0280605,iucMQPRSNDg,\"Barry lets Darcy, Margaret, and Tony off the hook; the three plan to start a pizza business now that they're out of the mob.\"\ntt0280605,56fdoTQTfuE,Sharon warns Margaret to stay away from her husband.\ntt0280605,1Wk9V6yqmZE,\"Darcy takes a stand against his uncle, which spurs some risky consequences.\"\ntt0914364,0bhCbZG80HE,Father and son - Col Willets and Colin - take a moment to enjoy a cigarette.\ntt0914364,1LDL6H_on2g,\"Grubman explains the origins of Gunther Neumann, a Nazi captured by black ops, who was the subject of scientific experiments to create the ultimate killing machine.\"\ntt0914364,VfrbOQ4q_Bc,The spirit of Gunther Neumann inhabits several men like Lt. Swanson and Grubman leading to a killing rampage upon the boat.\ntt0914364,9qzxNMENXJE,Col. Willets and Colin interrogate a suspected terrorist and learn that he is only a decoy.\ntt0914364,lnNbDaNP-yg,Grubman escapes his cell. Gunther Neumann resurrects himself and kills the medical examiner using a specific cutting tool.\ntt0914364,08_UIVttBK4,Gunther Neumann throws Col. Willets to his death. Traci electrocutes Grubman.\ntt0914364,XFYNHsSzMOo,Lt. Chris McCloskey hears a rat scurrying around and attempts to track it down. Bad idea.\ntt0285487,N6pHjvoxDI0,\"Dr. Adams discovers the truth concerning his patient \"\"Satan\"\" and his new psychiatric ward.\"\ntt0285487,Cra_JviE1sk,Parker goes too far in his questioning of Dr. Adams' family.\ntt0914364,mefq68nHSMk,\"On a U.S. Naval transport ship, the crew is mysteriously and gruesomely murdered.\"\ntt0285487,-9FxcS46YmE,Dr. Adams and Satan battle over the soul of a troubled suicidal patient.\ntt0914364,IAx_10MJbfE,Colin must electrocute himself in order to destroy the evil spirit of Gunther Neumann who has possessed his body.\ntt0285487,OB_iV-135-k,Dr. Adams and Satan discuss their beliefs in a higher power.\ntt0285487,BuoqHpvCzq8,Satan threatens Dr. Adams when he isn't acknowledged as the Devil.\ntt0285487,moxAGYR4nYY,\"Dr. Adams has a session with Satan\"\".\"\ntt0285487,qMthVugT2wo,Dr. Adams meets a new patient who calls himself Satan.\ntt0285487,IOECGWT9KwE,\"Dr. Adams is introduced to the film crew and their director, Parker.\"\ntt0285487,1VXH6jctlV8,Dr. Adams is introduced to the inmates of his new psychiatric ward.\ntt0285487,AAmxzswlvIE,Dr. Adams meets Dr. Delazo about his new position at the ward.\ntt0337879,NIOWsdgnNiI,Cliff has trouble adapting to sports star status on the set of a Diet Coke commercial.\ntt0337879,wm0fKKHMUJI,Cliff bowls for the win against the Australians.\ntt0337879,sBACvIGmLh0,Cliff gets back in the groove of bowling after a dip in the lake with Ray.\ntt0337879,tLujRN5bxVA,Cliff can't shake his nerves at the finals.\ntt0337879,uzDmyicwgnM,Rick doesn't know how to handle Cliff firing him.\ntt0337879,U7D-kOB7-PU,Cliff is introduced to his new sports agent.\ntt0337879,ZqOF2mZJ9t0,Ray forces Cliff to give up his trophy when he discovers an insult written on his scoreboard.\ntt0337879,FDfUBxkDaWc,Cliff plays off against Alan the Pipe in the first round of the bowling tournament.\ntt0337879,3e7JKCUfrpo,Two blackball champions exercise their talents in the morning English dew.\ntt5464234,Ly2Hr9qqp9M,Jacob takes care of Billy Joe Hill's evil ways in an old-fashioned hillbilly knife fight.\ntt5464234,CRuiuuKONUQ,\"As advertised, Jacob beats up Lazerus \"\"silly.\"\"\"\ntt5464234,JAG9oylpNiY,Jacob breaks the bones of Lazerus with a hammer.\ntt5464234,PYTXPrmSwmc,Storm tells a cautionary tale to Agent Miller about a cannibalistic-clown serial killer.\ntt5464234,BAG_EkEcofI,\"Jacob beats a criminal senseless, then kicks him out a building window.\"\ntt5464234,O5ExjpCtg0I,Jacob makes it a double play when he pummels two thugs who come after him with a pipe.\ntt5464234,zGDk38z2mbE,Jacob turns down a very fetching Celine... much to her disappointment.\ntt5464234,e8KqmFe953I,Jacob takes on numerous thugs at a bar when a suspect won't properly cooperate.\ntt5464234,CdwdX5PxF9Q,Jacob performs some aggressive dental work to Leon's mouth in order to get the right answers to his questions.\ntt0482088,WSFqs9iugBI,\"Irene gives Jean a goodbye kiss, while Gilles watches from his balcony.\"\ntt0482088,RWS6EzAkSiU,Irene runs into Jean at breakfast and realizes that he has adopted her gold-digging lifestyle.\ntt0482088,De9FeSg3WTc,Irene challenges Jean to continue supporting her extravagant lifestyle.\ntt0482088,LdEwXHHohHs,\"Irene follows Jean to the Imperial Suite, unaware that he is a hotel employee and not a guest.\"\ntt0482088,anAmUhhnwUk,\"When Irene and Jean are caught in bed, she discovers that he's not a guest but an employee.\"\ntt0482088,l-EWc6AcPvQ,Irene mistakes Jean for a wealthy customer at the hotel bar where he works.\ntt0482088,mtWSL_-mJaI,Irene reunites with Jean and they use their last Euro to pay the toll into Italy.\ntt0482088,f1gNWDY4gUM,Jean gets dumped by Madeleine when she catches him with Agnes.\ntt0482088,GkM4SQ--vss,Irene demonstrates her powerful techniques of seduction for Jean.\ntt0482088,tSrLgG6rOrs,Irene and Jean meet in a dressing room where their respective dates are buying them clothes.\ntt0832266,MFd88DSTPgI,\"When Maya figures out her parents are over,\"\" her father tells her that the story has a happy ending.\"\ntt0832266,KJFbhzrJxg4,Will's marriage proposal to Emily goes terribly wrong when Emily admits to sleeping with Charlie.\ntt0832266,7OXf2fFCRB0,Will and Maya give April one last chance for a happy ending.\ntt0832266,Fg9aUVqD1K0,Maya tells her dad that she's figured out that Emily is her mom.\ntt0832266,uE-l84hG_BE,\"After Will confesses his love for April, his drunken honesty takes a darker turn which leads to him getting slapped.\"\ntt0832266,GARQJHyaBD0,Will practices his wedding proposal to Emily on April.\ntt0832266,804UN9XPV44,\"April challenges Will to a \"\"smoke off\"\" during which both learn something about the other.\"\ntt0069704,QOgqUHk-zDY,A drag race between Milner and Falfa ends in a fiery crash that reunites Laurie and Steve.\ntt0832266,J_oIvRfVXoA,Will returns Summer's diary and they make out.\ntt0069704,99z-H_NEccU,Curt visits the radio station and gets some advice from the Disc Jockey who turns out to be the Wolfman.\ntt0832266,GkPbF_FJuho,\"Annoyed by her political apathy, Will challenges April to care about Bill Clinton's presidential campaign, but his point is refuted by the Gennifer Flowers scandal.\"\ntt0069704,z2OoxzYqgNY,Falfa finally catches up to Milner and the ensuing trash talk escalates into a street race.\ntt0069704,CgZTVkjQwto,\"Faced with being dragged behind a car by the Pharaohs, Curt hooks a chain to the axle of a police car leading to dramatic results.\"\ntt0069704,7Z1PBPrjZPQ,\"After Carol gets hit with a water balloon, she convinces Milner to help her get some payback.\"\ntt0069704,-SKfkvvtqN0,\"After trying to pick up on some girls in a Studebaker, Milner gets stuck with Judy's little sister, Carol.\"\ntt0069704,6e3dn30X5D4,Toad tells a bunch of tall tales to Debbie and gets lucky in the parked car.\ntt0069704,7GLhXtUgUg4,\"Embarrassed that he's stuck driving around with Carol, Milner tells his friends that she's his cousin.\"\ntt0069704,j1q-QWHUU0g,A snowball dance is led off by class president Steve Bolander and head cheerleader Laurie Henderson.\ntt0069704,L8TDBSlgFAw,\"At a stoplight, Curt has a chance encounter with the woman of his dreams -- a mysterious Blonde in a T-Bird.\"\ntt0125664,4Te3H4lBaBo,Andy's funeral is held for friends and family and a group sing-a-long brings the attendees all together.\ntt1210801,NlqESIU9i3E,Joe fights Oleg as President Petrov tries to remove the bomb strapped to his daughter.\ntt1210801,301qydVqZzM,\"Just as Oleg is about to execute President Petrov, Joe bursts in to save the day.\"\ntt1210801,9yoRcn3UcyU,President Petrov creates a distraction so that Venus can escape and find Joe.\ntt1210801,DaR6i1hQWfo,Joe plugs in a guitar and uses the feedback to distract the terrorists long enough to save some lives.\ntt1210801,QunxdSWz-Go,Joe and Kapista locate the security office and a hidden stash of weapons.\ntt1210801,mBLotJEfjDg,Joe fends off a terrorist but insists on giving the machine gun to Kapista.\ntt1210801,ZVpdb1HxgEY,Joe exits the bathroom to find that terrorists have seized control of the concert venue.\ntt1210801,B7t6KoVULDQ,Rock drummer Joe meets the Russian president and insults the music of pop singer Venus.\ntt1583420,jTLsI2Z9GiA,Mrs. Tainot and Larry catch up before class.\ntt1583420,--jPdm57jQs,Talia helps Larry get decked out in some vintage threads.\ntt1583420,RBBmO8dhn-I,\"Talia shows Larry her new tattoo, which doesn't make her boyfriend too happy.\"\ntt1583420,yidXeyTFM48,\"When Mrs. Tainot complains about the voice activation on her GPS, Larry wastes no time in fixing it for her.\"\ntt1583420,fgq8TsyNTXM,Mrs. Tainot is this close to cancelling her 8 a.m. class before Larry bursts through the door.\ntt1583420,5nvZCMkXEFw,Lamar and his wife recommend that Larry return to school.\ntt0955308,zjwBNUXCA-M,Robin get's bamboozled by the runaways of Sherwood.\ntt0955308,SmfPtEWejs8,\"Robin, Marian and the people of Nottingham fight Godfrey's intruders.\"\ntt0955308,xTvdOjsJXRY,\"Princess Isabella learns being a queen isn't just about bearing children, but about saving her King from himself for her subjects.\"\ntt0955308,FbmnqGqWgc8,Robin and the English battle Sir Godfrey and the French on the shoreline.\ntt0955308,clr6zsehoTg,\"Eleanor of Aquitaine disagrees with her son, Prince John, on his choice of a French wife in Princess Isabella.\"\ntt0955308,if34bKbBqXI,Robin offers an inspiring speech to King John and the gathered armies.\ntt0955308,H07DuZQ-rLQ,Sir Walter tells Robin about his father.\ntt0955308,n75PgMSxAOw,Robin Hood and his band of archers storm a French castle.\ntt0955308,S44FXSiI--Q,Maid Marion informs Robin Hood that he will share her chamber as a ruse.\ntt0955308,wnfHqnaM0yI,Robin and his Merry Men hijack a caravan.\ntt0125664,_wpGttPSHdE,\"Andy goes on the David Letterman Show to apologize to Jerry Lawler. The apology backfires as Andy gets slapped by Lawler, and proceeds to throw hot coffee at him.\"\ntt0125664,VKbyotjwcDw,\"Andy gives a memorable performance at the famous Carnegie Hall. The act includes resurrecting the dead, the Rockettes, and Santa Claus.\"\ntt0125664,DdGZ4WYTdHM,Andy goes on the Merv Griffin Show to prove that men are superior to women. To demonstrate the point he wrestles a woman from the audience named Lynne Margulies.\ntt0125664,1ePe7Q_zH1c,Andy plays the character of washed-up Vegas lounge singer Tony Clifton. Tony picks on a particular audience member named Bob Gorski.\ntt0125664,HurQLHiIVcw,\"When Andy gets into a fight on live television, the network tells him to announce that it was only a prank, but he confesses that it was real.\"\ntt0125664,3Tqgp93zs3Y,Andy performs his Mighty Mouse routine for the first time on Saturday Night Live.\ntt0125664,lm7nrQTysm4,\"Andy as Tony\"\" deliberately gets fired from the show Taxi and throws a world class temper tantrum.\"\ntt0125664,jx8KlhQBsvQ,Andy does a comedy routine filled with impersonations such as President Jimmy Carter and rock star Elvis Presley.\ntt0367232,oIC-A9h4cfQ,\"Dr. Kipp invites Cynthia and Marlon to join him in the hot tub, while Christine loses her inhibitions.\"\ntt0367232,9nabHwRMjcE,\"When the interns discover Mitzi working at a strip club, Mike undresses to make her feel better.\"\ntt0367232,332NO4_03vU,Dr. Olson grills his interns over the best way to remove a doll stuck in a patient's rectum.\ntt0367232,oVzqiDMOlms,\"Mike and Mitzi are suddenly expected to deliver a baby, despite the misgivings of the expectant father.\"\ntt0367232,0cPmlvsRKhw,\"When Dale and Sarah find the cleaning lady unplugging the life-support machine, they report the problem to an unconcerned Dr. Kipp.\"\ntt0367232,YVrMyqmDg3g,\"After Mike vomits while cutting open a cadaver, Dr. Keller decides to have some fun with body parts.\"\ntt0367232,GfhTEwz56do,\"Marlon breaks some bad news to an amorous couple, and Mike has a mishap involving a colostomy bag.\"\ntt0367232,bbuElXPp_s8,\"Tony orders his students to examine their own mouths, and Mitzi makes an embarrassing discovery.\"\ntt0367232,SF887rPCz_A,\"An argument between Marlon, Mike and Dale leads to a messy organ fight, stopped only by Dr. Olson.\"\ntt0368688,GBV01HnuTz8,\"Captain Stone tries to convince his whistleblower subordinate, Frank Gannon, into joining his ring of corrupt cops.\"\ntt0368688,Epo3jDg5skM,\"Gannon takes out his corrupt police captain, and then testifies against his former squad and their nefarious covert actions.\"\ntt0368688,PBObihCz2L4,\"Gannon and Ross are betrayed by the highest levels of the police force in order to have them silenced. But Frank Gannon will never, ever be silenced.\"\ntt0368688,OtCu9saoxeU,\"Gannon and his former partner, Sgt. Grimes, rescue Grimes' family from the corrupt cops, but at the cost of the sergeant's life.\"\ntt0368688,PJFA-emTgT0,\"Gannon rescues young Adrianna from her assassins, but her uncle is not as fortunate...\"\ntt0368688,U4iAA0B9fJU,Gannon fights off his kidnappers with help from Ross and her little friend.\ntt0368688,R5b0a3b6XkE,\"In order to clear his name, Gannon has to kick ass in guns blazing fashion.\"\ntt0318462,KBh1vdpGWhE,\"Against Alberto's advice and better judgment, Ernesto decides to swim across the Amazon to celebrate his birthday with the leprosy patients... and succeeds.\"\ntt0368688,yFWgaAX2tCU,\"After Gannon chases down a perp, he confiscates a cryptic note from the criminal.\"\ntt0368688,gZwxRw15AdE,\"Responding to a routine disturbance call, Gannon shows his rookie partner Billie Ross how he takes care of business.\"\ntt0310924,SG4I8PHp880,\"Julien sacrifices himself to save Raymond, who then avenges his friend's death.\"\ntt0368688,eKHYnWepyRU,\"Gannon is ambushed and kidnapped by corrupt cops while his rookie partner, Billie Ross, watches helplessly from afar.\"\ntt0469062,OBd1rEo-iyM,\"While putting away groceries, Danika finds a severed human head amongst her foodstuffs.\"\ntt0469062,hVZ0Y8l14M4,\"After her daughter surprises her with some startlingly bad behavior, Danika has another disturbing vision.\"\ntt0469062,ksJuTetxrDc,\"Cornered in the back office during a bank robbery, Danika finds herself suddenly, and inexplicably, safe and sound.\"\ntt0469062,js-337d3gqQ,\"After Danika awakens from another haunting vision, she and her husband are confronted by an angry neighbor in the middle of the night.\"\ntt0469062,9ekHf_EMmSk,Danika reveals her repressed memories to Dr. Harris about the death of her brother when she was a child.\ntt0469062,CZ1wzoCOQ-Y,\"Danika has a fearful vision where her eldest son's girlfriend, Myra, threatens to expose her son to a life of drugs, sex, and STDs.\"\ntt0469062,ji8ZM5nKsik,\"While shopping at an electronics store for her son, Danika experiences a disturbing vision. In the aftermath, she finds herself alone in the department store as everyone else has mysteriously disappeared.\"\ntt0469062,R8Oo8hf_n9w,\"Danika confronts her daughter's English teacher about a racy book that was assigned for class, which ends in dire consequences for the teacher.\"\ntt0310924,LhVNDhQKhJw,\"When Elwood pulls a double-cross on a gun deal, Zero proves to be quick on the draw.\"\ntt0310924,Y4u6gpp399U,Marcel saves an innocent girl from the crossfire of a shootout.\ntt0469062,hjoORS_zVWE,\"After learning about her husband's affair, a distraught Danika drives through a red light intersection as her mini van is blindsided by a school bus.\"\ntt0469062,IEDhXioCYdc,Danika discovers that her husband is having an affair with their nanny.\ntt0310924,bU6ZsvCba7c,\"Frankie manages to call Joey while bound and gagged, but Joey mistakes him for a prank caller.\"\ntt0310924,OLjVIg8OTNI,\"The thieves realize they have entered the wrong house and are robbing Frankie Zammeti, the underboss of the Chicago mafia.\"\ntt0310924,PTCMc9G3bcQ,\"Frankie discusses mob business with Angelo, who is confused by Frankie's vocabulary and metaphors.\"\ntt0310924,8sQfEoUNxRo,A heist goes wrong when Julien accidentally sets fire to a painting that Daniel is trying to steal.\ntt0327643,7BapYJuMHMI,\"Rebecca, Michelle, and Carrie get ready for a night on the town.\"\ntt0167116,QCqdeiTnnTU,\"Around a campfire, Banks and Bennie get to know one another.\"\ntt0327643,9_OMUgTFQhw,Rebecca is in the process of buying tampons at the grocery store when she encounters a female emergency.\ntt0167116,EC64kf5_Ldc,\"At a gas station in the desert, Banks encounters a female hitchhiker named Bennie who is looking for a ride.\"\ntt0327643,qcZk7ketB4Y,\"During a strip search at the police station, Rebecca reveals her use of a giant tampon.\"\ntt0327643,IEcxOcj3LGA,\"When Rebecca starts feeling weird, Jake informs her that the ecstasy they took is laced with acid.\"\ntt0327643,65nUs0FyUys,Rebecca takes a date to Richard's fashion show in an attempt to make him jealous. Her plan backfires when her Woody Allen-like date vomits all over her chest.\ntt0327643,cqzRb7sAL9Y,\"Tripping on ecstasy and acid, Rebecca encounters Jake in the bedroom with a fish in his butt as some sort of perverted sexual fetish of his.\"\ntt0327643,Ls8-mu4kDpo,Rebecca has a public meltdown on Hollywood Boulevard after discovering her boyfriend cheated on her.\ntt0327643,YNdZAZ-SPX4,Rebecca visits Madame Belly who offers some advice on her woes of love.\ntt0318462,ypmu86_sKpU,\"On his last night in Peru, Ernesto reflects on the long journey they've taken and proposes a toast to a United South America.\"\ntt0327643,wyUDbbWIXS0,\"After being called a bimbo, a three-way slap fest breaks out between Rebecca, Mr. Hot Bacon, and his sugar mama.\"\ntt0318462,xKpYBStDLVA,Ernesto gives Dr. Hugo his honest opinion of his novel.\ntt0318462,OTfb7n61HIQ,Ernesto and Alberto use their featured article in the newspaper to try to get their motorcycle repaired for free.\ntt0318462,oOeGE7z8PAk,\"Alberto and Ernesto meet two sisters in a Chilean bar who provide them with food, wine and shelter.\"\ntt0318462,OEgLZ58Xe0Y,\"Alberto tries to talk a man into helping them, but fails when Ernesto tells the man he has a tumor.\"\ntt0318462,gL0Ph_x8xmg,\"A cold night spent talking with a communist miner and his wife affects Ernesto, connecting him deeply to his humanity.\"\ntt0318462,qSLZflG9sUw,\"Chichina tells Ernesto that she wants him to stay, but will wait for him if he doesn't take too long.\"\ntt0318462,MiT3ky_83Vo,\"Since their tent blew away in a gust of wind, Alberto and Ernesto must beg for shelter.\"\ntt0318462,QWlbUhsTD4c,\"Alberto falls for a prostitute on the ship, so he hounds Ernesto for the fifteen dollars he's been saving.\"\ntt0167116,2FtBOS5575I,\"Banks shoots an undercover cop in a public restroom, and narrowly escapes being caught by a young boy.\"\ntt0167116,1fbxiPh8RoY,Bennie leaves Banks handcuffed to the wall to be caught by the F.B.I. after saving his life.\ntt0167116,cLjX-SEPnR8,Banks's assassination attempt of Zapata goes wrong when he is double-crossed by Bennie.\ntt0167116,FNWBoJNTc1w,Banks confounds two agents chasing him on a dark two-lane highway.\ntt0167116,WpOPOQw6nqg,\"After an argument in the car leads Bennie to run away, Banks's attempt to shoot her in the back is nullified by having no bullets.\"\ntt0167116,rC0lnrzU0jk,Bennie tells a story to Banks about catching an employee whacking off in the back of a donut shop.\ntt0174856,rNAXkGt7rFA,\"With most of his life spent in prison and nearly 50 years old, Rubin becomes a free man again.\"\ntt0174856,D60dQGS_qNE,Lesra and Rubin form an immediate bond.\ntt0174856,wFPtFkZHpBE,Rubin pleas with the Federal Judge to stay true to justice and consider the evidence he's brought before the court.\ntt0174856,nQkiJT2MR4w,\"Rubin demands that his lawyers take his case to federal court, no matter what the consequences.\"\ntt0174856,4MzZD9mNlww,\"Despite dominating in the ring, Rubin loses to the middleweight champion.\"\ntt0174856,aHlMCu3-R3I,Lesra and the Canadians surprise Rubin when they move to New Jersey and vow to help prove his innocence.\ntt0174856,HzWikU7ir4Y,Lesra confronts his adopted family about their intentions.\ntt0174856,FPIgb9k3cUo,Rubin makes good use of his time in prison by exercising his mind and body.\ntt0174856,b9T64w0cdDA,\"Rubin destroys the undefeated Joey Cooper, winning by knockout in the first round.\"\ntt0174856,g5Gb7V5-pts,Sgt. Della Pesca and the police force a wounded victim to place the blame on Rubin.\ntt1478338,9pl_3xQBPLk,\"Megan thinks she's caught on to the fact that the gentleman sitting next to her is an Air Marshal, but the poor guy just wants to take a nap.\"\ntt0889583,1nqF0ddDc8I,\"Bruno consults a psychic so he can \"\"communicate\"\" with the spirit of Rob Pilatus, one half of the pop music duo Milli Vanilli.\"\ntt0889583,kV1j2VYi7ho,\"Pretending to be straight, Bruno takes a martial arts class so he can protect himself from unwanted advances.\"\ntt0889583,9da9FqZc8DU,Bruno learns about what he's been missing all this time when it comes to the virtues of the fairer sex.\ntt0889583,sc3H4UkkZgk,Paula Abdul meets with Bruno for an interview while sitting on some living furniture.\ntt0889583,36p5Jk_y16Q,Bruno's quest for worldwide fame begins in the office of this Hollywood agent – to mixed results.\ntt0889583,OhGVVnZZW5o,Bruno infiltrates a high-profile fashion show wearing a snazzy new suit made entirely of velcro.\ntt0889583,ik4LH5ksOn8,\"In his quest to become famous, Bruno decides to bring an end to the Israeli-Palestinian stalemate in his own way.\"\ntt0889583,yVRv5u36Huw,\"Looking to enhance his fame, Bruno recruits candidates for a high-profile baby photography shoot.\"\ntt0889583,0ofpRxc0GVg,Bruno explains how he got baby O.J. in exchange for a limited edition iPod.\ntt0889583,kq6E2hQ20wc,Bruno gets in trouble when he decides to spice up his military uniform.\ntt0101393,RLUhwGLJhsI,\"Despite Stephen's warning, Tim gets burned by a backdraft and taken away on a stretcher.\"\ntt1027747,kewajS6fh3Q,A rival gang led by Hector returns to a restaurant to wage war against Virgil.\ntt0455362,rRbF5cPxVIc,\"When Nicki discovers that the car won't start, the gang works together to bring her back to the house.\"\ntt0317198,smxGSlqjZNk,\"While Bridget is out with friends, she is \"\"jellyfished\"\" by an acquaintance.\"\ntt1198153,G0aJ4C7y9Qc,\"On their way out of town, Galia and Elinor are cornered and Galia has no choice but to shoot her way out.\"\ntt1198153,pwkzSfo-JA0,Galia defends herself against Roni in a brutal fight to the death.\ntt1198153,qU5QbKnQHak,Galia holds Roni at gunpoint and demands her passport and enough money to escape.\ntt1198153,H0UbjaTkx04,Galia panics and runs when one of Mishka's men offers to return her passport.\ntt1198153,fpdnG6Fm3LY,Galia gets upset when Elinor finds her gun and it accidentally goes off.\ntt1584733,dMg7mCGd3js,\"While looking for Fractal, a police officer searches the tent of creepy recluse Izzy.\"\ntt1198153,vinDi5O-fu0,Mishka tells Galia to stop spending time with her neighbor Elinor and finish her work.\ntt1198153,_eqtVKrH-f4,Galia takes Elinor to the roof to practice shooting under cover of rain and thunder.\ntt1584733,_jDLZyo3Kg0,The whole ordeal is revealed to be a hoax as all of the supposedly missing Suicide Girls reunite in the woods.\ntt1198153,oCayZiKmJBE,Galia follows a mobster's girlfriend into the bathroom at a club to kill her in cold blood.\ntt1584733,Cg5acxVn2KI,Amina and Joleigh disagree about the appropriateness of celebrating the end of the photo shoot when so many girls are missing.\ntt1198153,jocK7m_000U,Galia kills her first victim but Mishka has to help her finish the job.\ntt1198153,3jtF8hfimrA,Galia and Nina try to escape from a club where they are held as sex slaves.\ntt1584733,dX-C-8rzN7I,Rigel wakes in the middle of the night to find herself alone and Amina murdered.\ntt1584733,hyFgMOop-Mc,\"Two more Suicide Girls meet an untimely end when they discover footage of Bailey being murdered, while Daven is tied up in a bloody sheet.\"\ntt1584733,QR424o5Wch0,Fractal disappears when she walks off alone to use the bathroom on a remote island.\ntt1584733,wRRvq70yOt0,\"Bailey disturbs some gravestones in the woods, despite the warnings of the other Suicide Girls.\"\ntt1584733,YV-Ik4q-o4k,A police officer pulls over the Suicide Girls bus after complaints of public indecency.\ntt1584733,Zer3Rr4CwjE,The Caretaker accosts James for disturbing the graves on the property.\ntt1584733,HoW8jQX83Fw,Evan makes trouble on the first photo shoot when she refuses to pose with a bear statue.\ntt0455362,LO2Ej4_42xY,Nicki arrives with the car just in time and drives it straight into the water.\ntt0455362,j8Zucea5rlY,\"While John and Matt fend off the dogs outside, Nicki lures them inside to their doom.\"\ntt0455362,rOOymP2hx_c,\"Noah gets surrounded by a pack of dogs, and Luke appears with a dire warning.\"\ntt0455362,CCicXUbaalU,Sara refuses to leave the house and sacrifices herself to save the others.\ntt0455362,qhMhfHHeT_g,\"With Matt pushing, John jump starts the car just before driving off a cliff.\"\ntt0455362,l9MW39UXFmU,\"In an attempt to save her from a dog, John ends up shooting Nicki in the leg with an arrow.\"\ntt0425112,CsZUGoa3JHc,\"Angel and Skinner have a brutal fight in the model village, and Danny finds it impossible to shoot his own father.\"\ntt0455362,4VJrMSbPe00,\"When the dogs infiltrate the house and kill Noah, the rest of the gang heads for the attic.\"\ntt0455362,Ld6pt1jNCRw,Jenny learns that the remote island that she and Luke discovered is not exactly deserted.\ntt0455362,lD6hI1yKd7w,Sara suffers a bite from an angry dog when she and John search for their newfound puppy.\ntt0425112,CmkT8YU4jH8,Angel and Danny stage a raid on the Somerfield supermarket with police reinforcements in tow.\ntt0425112,pcV9ceH4UvE,\"Angel and Danny engage in a furious gun battle with the villagers of Sanford, including Rev. Shooter and Dr. Hatcher.\"\ntt0425112,AMT2RwFFs_g,Angel rides into Sandford on a white horse with only one thing on his mind -- vengeance!\ntt0425112,BavTQmiA9mc,\"While Angel is distracted reading the winning lottery names, the mysterious Reaper kills Messenger with a church spire.\"\ntt0425112,faMh6OYfuNE,\"Angel is promoted to Sergeant by the Chief Inspector but he is unhappy about his transfer out of London and into the small town of Sandford, Gloucestershire.\"\ntt0425112,Cun-LZvOTdw,Angel and Danny discover a huge cache of weapons hidden at a local farm.\ntt0116483,8QJiAK-s5a0,\"Happy makes the mistake of tangling with Bob Barker, a surprisingly bad dude.\"\ntt0116483,7BwxSHs9elk,Happy mocks Shooter's breakfast habits; Chubbs takes Happy mini-golfing to help his short game.\ntt0425112,fuEG_PSb_Ts,Angel chases down a shoplifter before Danny admits that he knows the boy.\ntt0116483,8qaAKxJp0EM,\"When he misses a big putt, Happy flies into a rage on live TV.\"\ntt0116483,3dluAhOU1cA,Happy ignores Chubbs' plea for more practice; he visits his grandma and her sadistic orderly.\ntt0425112,ir1sVy9JLyo,\"Angel returns to his room only to be attacked by Michael, a giant under orders to kill the policeman.\"\ntt0425112,0-lcqIuVaR8,Angel and Danny discuss the merits of police work before going on the shortest police chase ever.\ntt0116483,VyydT8dy3Hs,\"Frustrated with his putting, Happy de-shirts and punches a heckler; later he nails a hole in one.\"\ntt0116483,qDR_yTik_xo,\"Happy is approached by Chubbs, an ex-pro golfer who thinks Happy has a gift.\"\ntt0116483,GP1KHL0j0GU,Shooter McGavin tries to put Happy in his place; Virginia urges Happy to behave.\ntt0116483,0u5O2--9www,\"Happy gets cut from the hockey team and loses his girlfriend, but manages to charm a neighbor lady.\"\ntt0116483,z7coL1WcCoI,\"Happy moves his grandma into a nursing home, where an orderly mistreats her.\"\ntt0317198,S501ojiA52c,Bridget ventures to Mark's firm to profess her love for him.\ntt0317198,MGwI25DNrHU,Bridget momentarily spoils the mood when Mark proposes to her.\ntt0317198,dwykptqZBj0,\"Bridget is stunned — and relieved — when Rebecca professes her love for her, then tops it off with a kiss.\"\ntt0317198,GTCKAy3buxo,\"While skiing, Bridget suddenly fears that she may be pregnant, and zooms through a race before ending up at a pharmacy.\"\ntt0317198,kDeUWLhm-0g,\"When Bridget gets stuck next to a talker in coach, Daniel treats her with a surprise seat next to him in first class.\"\ntt0317198,j6oHprwdTeA,\"When her boss offers her a new television spot with Daniel, Bridget turns them down.\"\ntt0317198,LIIzjJjsW8s,Mark professes his love for Bridget at her front door while she leaves a message on his machine.\ntt0317198,Z743dOLiGQI,\"Daniel runs into Bridget, makes a pass, and then shares updates on his reformed life since they last parted ways.\"\ntt0243155,4YZy2deJstI,Bridget shows up to the Tarts and Vicars party only to discover that her pervy Uncle Geoffrey didn't tell her that the costume part was nixed.\ntt0243155,KusSGPyXugE,\"After Mark and Daniel duke it out, Bridget realizes she's not satisfied with what Daniel is offering her.\"\ntt0317198,mrx4SwMyGdQ,Bridget makes a slightly naughty call to Mark Darcy only to find out she's on speaker phone.\ntt0243155,MCXx5saaKOk,Mark catches Bridget just in time to tell her that he's staying in London for her.\ntt0243155,X3vQPmO3i7Y,\"True to form, Bridget's first news piece is a clumsy disaster.\"\ntt0243155,xfwBwk7k3Gs,Bridget quits her job and takes the opportunity to humiliate Daniel the way he humiliated her.\ntt0243155,F-LlyzCIG6I,Bridget tells Mark how she feels about him and his sideburns.\ntt0243155,tcIaT5D4Iwc,Bridget delivers a hilariously awkward introductory speech at the book launch.\ntt0243155,dhPSvTyGSgs,\"Bridget finds out that Daniel is, quite literally, hiding something.\"\ntt0243155,qNkP2Y5wme0,\"Bridget and Daniel go on a mini-break\"\" together and run into Mark and Natasha at the hotel.\"\ntt0243155,oZu2JfM2Aq8,Mark tells Bridget what he thinks of her.\ntt0243155,p7cYf7GaXgY,Mark bails when he discovers Bridget's jabs at him in her diary.\ntt0243155,tiYXgCsoqaA,Bridget cries out in protest at the mention of Mark marrying Natasha.\ntt0101393,2vV-8TyFBTI,Stephen has his final moments in an ambulance with Brian and asks him an important favor.\ntt0101393,BkvVBZwXVhg,Brian goes after the water hose in order to fight the fire that surrounds himself and his brother Stephen.\ntt0101393,PlBpNTEaRTI,Shadow and McCaffrey interrupt a press conference with Swayzak with incriminating accusations.\ntt0101393,djv5gGXEyXo,\"During a heated conversation, Ronald helps Brian figure out who may be causing the fires.\"\ntt0101393,qRnjswr1swo,Shadow shows Brian the ropes and teaches him all about the life of a fire.\ntt0101393,piOTzME87Dg,Stephen has a dramatic face off with Axe amidst the fire as Brian watches.\ntt0101393,61XUb28jkUI,\"Shadow reminds Ronald of his past arsons, exciting him and ultimately causing him to fail his parole hearing.\"\ntt0101393,qqX1d64OcvI,Tension erupts when Stephen is tough on his brother Brian during a drill.\ntt0101393,mtkuDgE-qOI,Shadow and Brian go to Swayzak's house only to find him unconscious with the arsonist still in the house.\ntt0101393,KrwlDh465HQ,\"Brian sits scared as Stephen charges into a fire, saving the life of a little boy.\"\ntt1027747,_rGPOReLRzs,Detective Hanover breaks up with Beck when she suspects that he's not being honest with her.\ntt1027747,uXGr0rSGz0A,Raina finds another victim in a movie theater and lets his date go free with a warning.\ntt1027747,5YqbUhVM6Jo,\"Raina tries to seduce Beck, but when she reaches for his gun he locks her up in the bathroom.\"\ntt1027747,biFZVekspJ0,Raina leaves Virgil and Beck alone and wounded with a gun between them.\ntt1027747,6xD1JRKscGM,\"Raina seduces and kills Krieger, a tattooed skinhead.\"\ntt1027747,CXoJegmhbI4,Raina kills Lee with a crowbar and finishes off Penny with her trusty knife.\ntt1027747,qIEDFvdDbVo,\"Lee tells Beck to follow him, resulting in a wild chase through the streets of Los Angeles.\"\ntt1027747,UlqSJeiOYPs,Raina infiltrates the compound to get revenge on Virgil for what he did to her sister.\ntt1027747,kal9JZpTFJ0,Virgil and Ernesto discuss criminal business at a bathhouse when Raina enters with her deadly blade.\ntt1423593,6vSWuFYVbE8,Some things in the nail salon are lost in translation.\ntt1423593,EtTIxHlaue0,Asya explains her paranoia.\ntt0141926,eLyhRYJXf1U,The sub surfaces and gets fired on by the Destroyer. Rabbit struggles underwater to reach the valve to fire the torpedo.\ntt0141926,7U3F1uDBXrw,It's discovered that the captured German captain has been signaling to the ship above via Morse code.\ntt0141926,rJCltwaUrXI,Tyler comes up with a Hail Mary plan to beat the German destroyer and Hirsch tells him the consequences of failure.\ntt0141926,3VKQkg9cpio,Lt. Cmdr. Mike Dahlgren gives Lt. Andrew Tyler some advice about what it takes to be a sub captain.\ntt0141926,2ed_jTFrZkY,\"A German U-Boat gets bombarded by depth charges, and has to make an emergency surface.\"\ntt0141926,VMU9Yos0mkk,The sub comes under a heavy bombardment of depth charges from the German ship above.\ntt0141926,K40Gt3dk1LY,Everything is going to plan until a torpedo slams into the U.S. submarine forcing the team to go back into the German U-Boat to escape.\ntt0141926,mI3QaSoJado,Lt. Hirsch gives the rest of the men a briefing on what their real mission is to be: they are going to retrieve an Enigma code machine.\ntt0141926,fUlMUkd7IWU,\"After their cover is blown, the assault team launches a hardcore attack on the German U-boat.\"\ntt0078504,WjyJ_ZUEMEw,\"Dorothy and the others are surprised by the Lion who tries to scare them by singing \"\"I'm a Mean Old Lion.\"\"\"\ntt0141926,RHUbiL36yjo,The men embark on an old submarine from WWI and feel quite uneasy when it starts to spring leaks all over the place.\ntt0078504,DHzx2P4x63c,\"Glinda the Good sings When You Believe\"\" to Dorothy\"\ntt0078504,pQT-QFy5Nig,\"Evillene sings \"\"No Bad News\"\" while her henchmen dance.\"\ntt0078504,3r1ssg1LIt4,\"The Four Crows torment Scarecrow, making him repeat the Crow Commandments and sing the Crow Anthem.\"\ntt0078504,dslpHxTuA-w,\"Dorothy sings \"\"Home\"\" as she reminisces about all the characters she's met on her journey.\"\ntt0141926,IV79EIZVuHQ,Klough gives Tyler some advice about how to lead his men and rise to the challenge of being a captain.\ntt0078504,zy8dUJEOqos,\"With Evillene gone, Dorothy and the others sing \"\"Everybody Rejoice\"\" while Evillene's former henchmen dance and are transformed.\"\ntt0078504,dk3BfcWrx8c,Dorothy convinces Scarecrow to join her to find the Wiz.\ntt0307507,tULIFKLFp_w,Natalie sews up a wounded Parker and nurses him back to health.\ntt0078504,oGxBx8RzzrM,\"Scarecrow and Dorothy find the yellow brick road and celebrate by singing \"\"Ease on Down the Road.\"\"\"\ntt0307507,eLrwCyXUOLY,\"While pretending to grab the money under the floor, Parker tricks Ray and shoots him in the foot.\"\ntt0307507,bIaFHqnx6ns,Parker has a shootout in the forest against corrupt police officers.\ntt0307507,VnrIuEa7ep4,Natalie is turned on by Parker's bank robbing ways. Parker is turned on by her.\ntt0307507,7n8QlEg1k8A,\"All is well that ends well, as the bad guys go to jail, and Parker and Natalie live happily ever after on the beach.\"\ntt0307507,WN_03KbkRdM,Parker is in the process of arresting Tommy the bank robber when Ray comes on the scene. Turns out the bank robbery was done by cops.\ntt0307507,-YjwJY6m9k4,The sexual heat rises between Parker and Natalie back at her place over a glass of whiskey.\ntt0307507,yTeJ-41Tl9E,Parker and his fellow policemen get ambushed by Charles's drug dealing posse.\ntt0307507,d-HW0aPbfIY,A drunken Natalie is forthright in asking Parker to come home with her. He accepts the invitation.\ntt0307507,7MQUQQkzNSU,Parker knocks out the power and robs the bank disguised as a clown.\ntt0119395,QB91tB_5u88,FBI Deputy Director Prest describes the toughness and integrity of Major Koslova to an intrigued Declan.\ntt0119395,Xdzp0AluNuQ,The Jackal gets a mission from his Russian client to kill someone high up in American politics.\ntt0119395,R1dILTUMJQI,\"Declan trades his life for that of a young hostage, but is saved from execution by Isabella.\"\ntt0119395,rJGOCtlPzUs,FBI Deputy Director Prest along with Major Koslova and Agent Witherspoon negotiate with Declan to help them track down the Jackal.\ntt0119395,AA4zkmfbFD0,Declan catches up to the Jackal on the docks in Chicago and gets an unpleasant greeting.\ntt0119395,pyXdB_AYiDs,The Jackal uses Ian as a moving target to test his new high powered gun.\ntt0119395,0gBKE5MUiQc,\"The Jackal first deceives, and then kills, an unsuspecting gay man in order to stay in his house.\"\ntt0119395,v3e2maV8MlQ,Declan and Carter save the First Lady from the Jackal's deadly gun.\ntt0119395,WEfVr2S8eo8,Declan tries to catch the Jackal in a crowded subway.\ntt0089755,uBFxCK913PM,Karen fights hungry lions when they invade her camp at night and try to eat her oxen.\ntt0119395,7Vl03BBrGEY,Things go bad for Director Carter while confronting Murad in a Russian nightclub.\ntt0089755,AP2kX2vE_L8,\"Karen watches as her coffee farm burns to the ground and takes with it, any chance she had left to stay in Africa.\"\ntt0089755,Xb6svoM3UWE,\"When they are attacked by a lion and lioness, Karen goes against Denys' instructions and shoots.\"\ntt0089755,-NtpPdMGluE,\"Karen is given a special honor before leaving Africa, and says goodbye to Farah at the train station.\"\ntt0089755,wYEn-ZKSg_I,\"During a dance, Denys debates the changing state of Africa with Karen and gives her a New Year's kiss.\"\ntt0089755,sRKtU9FF-8w,\"Karen is nearly killed by a lioness, but Denys shows up at the perfect time to lend her some live-saving advice.\"\ntt0089755,d8sDpSZeDBE,Denys shampoos the tangles out of Karen's hair and recites poetry by the river.\ntt0089755,j38t2lDi4GU,Denys takes Karen on a plane ride over Africa.\ntt0089755,Agic36OeXC0,Bror brings Karen to her new home for the first time and introduces her to her servants.\ntt0089469,DaMf1FF-iZ8,\"Lili betrays Darkness at the last moment, freeing the unicorn.\"\ntt0112508,JRpouK0KmWQ,\"When Ernie has an accident\"\", Billy makes it cool for everyone to pee in their pants.\"\ntt0089755,j91DsC7XvdQ,Karen gives a moving speech at Denys' funeral.\ntt0089469,IxjYJayuWoA,Jack uses flattery to soften Meg Mucklebones before chopping off her head.\ntt0089469,U6iLlH0l-4Y,\"Lili, who is under a spell, is awakened by Jack with a kiss.\"\ntt0089469,A9KjjvZE0Lo,Lili tricks Darkness into thinking she is on his side.\ntt0089469,cAePzEGsP5U,Oona impersonates Lili to try to steal a kiss from Jack.\ntt0089469,b2mm79vRuzA,\"Gump asks Jack a riddle, the answer of which will determine whether he lives or dies.\"\ntt0089469,8OTa_eNimUE,\"When Lili challenges him to find her ring, Jack jumps into the river. Meanwhile, orcs kill a unicorn which transforms the world into winter.\"\ntt0089469,5VMWNnFoi2g,\"Jack wounds Darkness with the unicorn horn while the fairies let the sunlight in, sending Darkness hurling into the abyss.\"\ntt0297884,WEQOeQBpxvw,Frank cheats on his wife with a man.\ntt0089469,QB5379zBbtA,Jack asks the unicorn for forgiveness and realizes what they must do to restore the world to its former beauty.\ntt0089469,X7futPJdeOg,The Lord of Darkness sends Blix on a mission to slaughter the enemies of Darkness.\ntt0089469,Ksk7wPX-MI4,Darkness attempts to charm Lili with talk of dreams and love.\ntt0297884,2wnVCoeCXbY,Frank confesses to his wife Cathy that he's fallen in love with another man.\ntt0297884,sHwRx4bc7fM,\"Frank accuses his wife, Cathy, of having an affair with a black man.\"\ntt0297884,FFtP2SGrQsk,Sarah is attacked by three white boys.\ntt0297884,EbyOz1yJgYs,\"Cathy runs into Raymond at an art show and spends time talking alone with him, which sparks judgement from the locals.\"\ntt0297884,kiW7cj162rE,\"An inebriated Frank tries to make love to his wife, Cathy, but instead turns violent.\"\ntt0297884,1E7f6xOPL3A,Frank visits Dr. Bowman to start heterosexual conversion therapy.\ntt0097216,4G7TTDEHl5o,\"Mookie throws a garbage can through Sal's window, leading to the pizzeria getting burned down.\"\ntt0297884,l84trT4b6yE,Cathy catches her husband Frank with another man.\ntt0297884,fbZelII-89A,Frank Whitaker goes into an underground bar full of men.\ntt0297884,uSNvF3CEzno,Cathy Whitaker is frightened when she sees a black man in her yard.\ntt0097216,TQ4y7GPeFBY,A confrontation between Sal and Buggin Out turns violent when Sal destroys Radio Raheem's stereo.\ntt0097216,qru3WdOfj8s,Da Mayor confronts Mother Sister about why she always is so mean.\ntt0097216,cMNvYJ6O_Ks,\"When his radio goes dead, Radio Raheem gets into a confrontation with the Korean storekeepers over batteries.\"\ntt0097216,zeyaRxHhVu4,\"Tina orders a pizza so that she can see Mookie, but refuses to do the \"\"nasty\"\" because it is too hot.\"\ntt0097216,pa-oUPTr9LI,\"Radio Raheem shows Mookie his new rings and tells him the story of \"\"Love and Hate.\"\"\"\ntt0097216,HbA1YOueC_A,\"When Sal refuses to put pictures of black people on the wall of his pizzeria, Buggin Out starts a commotion.\"\ntt0097216,jc6_XgtOQgI,\"A fight nearly breaks out when a white neighbor, Clifton, accidentally scuffs Buggin Out's new sneakers,\"\ntt0097216,gLYTObRhcSY,Mookie calls Pino on his hurtful racism and other neighbors tell how they really feel about the other races.\ntt0112508,ba2VaalmijM,\"Billy wins the Decathlon, but Eric freaks out and pulls a gun on him.\"\ntt0112508,YGeFi3Ap61E,\"After getting beat up by Veronica, Billy sings a song about how he's going to change his life.\"\ntt0097216,wCL3OtOzYuQ,Mister Senor Love Daddy wakes up the neighborhood with his distinctive radio sounds along with the day's forecast.\ntt0112508,KIAzalQUui4,\"Billy celebrates passing the 2nd grade, but gets in trouble with the hot teacher when he mocks a 3rd grader.\"\ntt0112508,aF3x3Bad2Wk,Veronica and the bus driver help Billy study for the Academic Decathlon with a stripping game.\ntt0112508,B0vKK-4qJac,\"Billy competes against Eric Gordon in trigonometry, home economics, track, chemistry, music, and drama.\"\ntt0112508,6vNGX3c03gM,Billy realizes that he is a loser at high school and is bullied by one of the O'Doyle boys.\ntt0112508,o7WSgC9oGic,\"In third grade, Billy is ashamed of his bad cursive writing and runs away.\"\ntt0112508,wf-gIUYRCyk,Billy has a bath and then ruins his father's business dinner with his terrible manners and gibberish talk.\ntt0127536,itHVWrhsRSc,\"Elizabeth goes to visit Queen Mary and beg for her life; Mary insults her mother, but agrees not to kill her.\"\ntt1133985,ZjPiVMyfJPs,Sinestro rallies the Lanterns and offers a brief pep talk as an unknown enemy draws near.\ntt1133985,ql_VifCJG7I,Tomar-Re welcomes Hal to the planet of the Lanterns.\ntt1133985,rukUxz5J7qg,\"Hal uses his wingman, Carol as bait during a flight test.\"\ntt0160184,aHix4qGIYHI,\"Slater reduces the macho Noah to tears, and then taunts Malloy.\"\ntt1133985,weCxCxIIjHA,Dr. Waller shows off the alien corpse to Dr. Hammond.\ntt1133985,LOACsaFA_FY,The Parallax monster makes its way to Earth.\ntt1133985,eKLKoFIrXgg,Hal recites the oath of the Green Lantern.\ntt1133985,mIZOUXRYVyE,Hal is given a ring when he finds Abin Sur in a wreckage.\ntt0160184,T4mRbRYaf1Q,\"Malloy defeats Slater in a duel to the death, thus satiating his vengeance.\"\ntt1133985,zWXZyd07k2Y,Carol gives Hal a hard time before his flight test.\ntt0160184,uCjC3h_Gc5E,Malloy gives Slater the slip... and some bullets.\ntt0160184,eE-FSOWD_ac,Doc meets his end at the hands of a mysterious intruder.\ntt0160184,aUhex6wK5rI,\"Malloy realizes that one of patients at the detox center is not a cop, but a murderer.\"\ntt0160184,PzZHiGYjhss,\"Malloy gives chase to the killer through a labyrinthine factory, only to lose sight of him at the end.\"\ntt0160184,-OOTo2P1ivQ,Suspicions and tensions rise as Jaworski is accused of being the killer.\ntt0790618,hBVvERsq-Kk,Julia lashes out at Thomas and surveys the aftermath of the party.\ntt0160184,chDaFqJMDeM,Malloy looks at the body of another dead patient as the specter of foul play hangs over the scene.\ntt0160184,eevdCdOddZQ,\"Malloy enters a rehab program for cops, meeting with the Doc and a couple of the other patients.\"\ntt0790618,k5oJnFivwSM,Tori and Sylvia struggle to keep it together when Mr. Turner and Mrs. Turner return and ask about their kids.\ntt0790618,3zsTC5aeypU,Julia bribes her sister Angie to stay in for the night.\ntt0790618,TBiLIqhNiAM,Eddie demonstrates to Riley how to pick up senior girls.\ntt0790618,cb9FUUFtJmc,Brianne and Dawn meet in the bathroom for a kiss and argue about making their relationship public.\ntt0790618,vYyz6nq1mBE,\"Tori arrives for a babysitting job with her friend Sylvia, who fails to watch her language.\"\ntt0160184,LaYpVhckcL8,Malloy is taunted by a mysterious serial killer who threatens to kill his wife.\ntt0790618,lnSoyix5fA0,Mr. Ford wakes Julia and Angie for their last day of school before summer vacation.\ntt0790618,4gAFIGnJ8zk,Julia drags Pete out of bed in a failed attempt to get him to school.\ntt0112431,LGoKKhQPggM,Babe takes the field amongst a crowd of disbelievers and attempts to take his place with the sheep.\ntt0112431,0zHmeTeLgMY,\"Babe uses his manners and polite persuasion to move the sheep to the pen, winning scores of 100 from all of the judges.\"\ntt0112431,MbFux7_RQpA,Rex convinces the sheep to give him the sheep password in order to save Babe and help him in the competition.\ntt0112431,83LNTbeatHE,Farmer Arthur Hoggett dances for Babe in order to cure him of a cold and wilted spirits.\ntt0112431,Z0pOWMHRgfI,\"Babe surprises everyone when he convinces the sheep to move not with force like the sheepdogs, but with a polite request.\"\ntt0112431,oKXV-XQzUrY,\"As Christmas dinner approaches, Ferdinand the Duck panics that he'll be the meal, while Babe naively celebrates.\"\ntt0112431,U1v_Ed4QFC4,\"Ferdinand the Duck enlists Babe for a secret mission into the house, past the feared cat Dutchess.\"\ntt0112431,KRBLeqsoRew,Fly the Sheepdog comforts the farm's newcomer Babe who misses his mom.\ntt0112431,CHnbS6ZthM4,Mrs. Hoggett worries about her husband's strange idea.\ntt0343135,nWWSMiBag1k,Reuben convinces Polly to stay with him by eating vendor nuts off the sidewalk to prove he's not such a square.\ntt0343135,JnBh7KBjgwM,Stan toasts his newly married employee Reuben and wife Lisa.\ntt0343135,2yhGVaVwceE,Reuben jealously confronts Javier and later tries to carefully critique Polly's graphic illustration.\ntt0343135,ddGwvveSXxM,Reuben clogs Polly's toilet with a very special towel.\ntt0343135,C7ke6vWUu18,Sandy advises Reuben to give his date a light spanking during their first make out session.\ntt0343135,enJJeOqHbqE,\"Playing a little 2 on 2 pickup basketball, Reuben gets a mouthful of sweaty, hairy man chest all up in his grill.\"\ntt0343135,bMVWECam8EA,Reuben is liberated when Polly encourages him to stab the decorative pillows on his bed.\ntt0343135,KOXE9k1TX-s,Stan and Reuben have a little heart to heart in the men's room.\ntt0343135,uDffmOSVnBM,\"While Reuben prepares to asks Polly to move in with him, she finds his \"\"risk analysis\"\" of her on his computer.\"\ntt0343135,hJckGOSkTG0,Sandy gives an impassioned speech on why Reuben's company should insure the dangerous Leland Van Lew.\ntt0114898,HOpLncx62oY,\"When the Mariner threatens to kill Enola, Helen offers up her body as a bargain.\"\ntt0114898,ZgsJGHxZxcg,\"When a seaplane attacks, Helen kills the gunner with a harpoon, but nearly destroys the Mariner's ship.\"\ntt0114898,LoSLZP0e-M4,Deacon's men attack the atoll with overwhelming firepower while the Mariner sits trapped in his cage.\ntt0114898,lZQF83kf-a4,\"Using himself as bait, the Mariner catches a gigantic fish for dinner.\"\ntt0114898,orgbJEoA7ak,Helen and Enola free the Mariner who attacks Deacon's men and steals back his boat.\ntt0114898,KOWckOfARBE,Deacon gets a new eye.\ntt0114898,xy6Ak1DYReI,\"The Mariner is sentenced to be \"\"recycled\"\" but the sentence is delayed when Smokers attack.\"\ntt0114898,0zJpr-bB1sg,The Mariner steals back his boat and uses Deacon's own weapons to destroy the Smokers' ship and escape.\ntt0114898,VKFsmZhQWtg,\"After he is ripped off by a Drifter, the Mariner destroys the man's mast, leaving him adrift for the Smokers.\"\ntt0114898,Fv9_YOL38MM,\"When the Elders discover that the Mariner is a mutant, they capture him and plan to put him on trial.\"\ntt0259567,W6GjHSOtv6o,Drew starts to panic when Julia mentions the desire to get married and have kids.\ntt0259567,0s0m7xO0S9A,The fallout from taking a pregnancy test pushes Drew and Julia further apart.\ntt0259567,dxmqqCK2FaQ,\"Drew meets the eccentric celebrity, Monty Brandt.\"\ntt0259567,AEMXmcWOnwU,Drew tries to convince Julia to drop her post-graduation plans and move to Los Angeles with him.\ntt0259567,03HGdrM25FA,Drew shows up at Julia's house hoping to win her back.\ntt0259567,Gq75bSHMKPw,Monty terminates his business relationship with Drew when he learns that he failed the Bar and lost his job at the law firm.\ntt0259567,YpIkOtgOdbo,Julia and Drew's quarrel escalates to where Julia questions the standing of their relationship.\ntt0259567,ZBLtiP24yTA,Danny graces Julia with his theory on how men and women experience monogamy differently.\ntt0259567,53GIt1w0LYY,Drew and Julia click on their first non-date.\ntt0259567,31KYorrCgag,\"Drew and Julia argue over the implications of the word \"\"pussy.\"\"\"\ntt0300532,sT-wJhtlMGs,\"Anne Marie takes another run and gets slammed again, hitting her shoulder on the reef.\"\ntt0300532,aRmaCLDJ8Xk,\"Anne Marie catches a beautiful wave, scoring her into the next round, but she gets dragged under.\"\ntt0300532,FFkQN5DyvXU,Anne Marie gets hit with a cold dose of reality when she hears the NFL wives talking about her behind her back.\ntt0300532,mwAlagYhRV8,\"During her first heat at the Pipe Masters Competition, Anne Marie sees her competitor wipe out on a huge wave.\"\ntt0300532,HKXId9qgGfQ,Anne Marie has a heart to heart with Matt who tells her to stop whining and just do it.\ntt0300532,ZTVR1PCRopA,\"While surfing Pipeline, Anne Marie is overcome with fear and gets slammed by the wave.\"\ntt0300532,3tSWRJ3j9fs,Anne Marie gets dressed for the Luau while Eden warns her not to get too attached to Matt.\ntt0300532,COGBbUM8F14,\"When another surfer drops in on her wave, Anne Marie is forced to bail and breaks her surfboard.\"\ntt0300532,PNJ_FxaMYUw,\"Disgusted by a very messy NFL Lineman's room, Anne Marie calls him out publicly and shows him how to throw away his used condom.\"\ntt0163651,Yjs3BLAsvOc,\"Sherman gets publicly outed at Prom as a virgin and a liar, and wets himself in front of everyone.\"\ntt0163651,FdxUNsKZ4T8,\"Straying from the party, Finch runs into Stifler's sultry mother.\"\ntt0163651,bQWaXlsdyko,\"Stifler gives Finch some laxative, which creates an embarrassing moment at school.\"\ntt0163651,sKfQGRwlm9Q,Jim sets up a web cam so he and his buddies can watch sexy Nadia undress.\ntt0163651,MH619vxtNdo,Jim asks Michelle to Prom as she spouts stories about Band Camp.\ntt0163651,8sClW0qW9LA,Jim's dad has a frank talk with Jim about masturbation.\ntt0125439,RESwG23_YGw,William gives Anna the reasons why their relationship wouldn't work. Then Anna shows him why he may be making a mistake.\ntt0163651,MvzZbUKxNdc,\"When his mom walks in on him masturbating, Jim tries unsuccessfully to cover it up.\"\ntt0163651,cgXTRSSX3cc,\"The guys are astonished when even Sherman got to do the wild thing \"\"all night long.\"\"\"\ntt0163651,NCAOKR1jpp0,Jim has sex with his mom's freshly made apple pie and is caught by his dad.\ntt0163651,BXqeQxRvQGY,\"When his mom walks in on him masturbating, Jim tries unsuccessfully to cover it up.\"\ntt0163651,zStjjc7SBto,\"Oz, in an attempt to put the moves on a college girl delivers the line, \"\"Suck me, beautiful\"\" only to get rejected.\"\ntt0125439,3F8oJh3J1T0,William realizes it must be hard on Anna having her life in the spotlight for all to comment on.\ntt0125439,hZ8PfLIc8MI,\"Anna meets Wil's little sister, Honey. Honey proceeds to freak out.\"\ntt0125439,JexO-N39Nzg,Bernie and Anna make small talk about their professions. Bernie does not realize Anna is a successful actress.\ntt0125439,PTjIRQU_HdM,Anna takes a shot at convincing everyone she's got the toughest life.\ntt0125439,_6O2sYLkuO4,William says goodbye and Anna spontaneously kisses him.\ntt0125439,-xQ5nH_-yyQ,\"William infiltrates Anna's press junket to apologize for his behavior, but the encounter is quite awkward.\"\ntt0125439,ArlsU2_cUbg,A thieving customer at William's bookstore asks Anna for her autograph.\ntt0125439,kxBu82Dte10,William runs into and spills orange juice on Anna and offers to help her clean up at his place across the street.\ntt0391198,6WWdim-OLok,\"Karen attempts to get her boyfriend, Doug out of the house before Kayako kills them both.\"\ntt0391198,T59ufBxosHI,Detective Nakagawa's attempt to burn down the haunted house is interrupted by a drowning boy.\ntt0391198,Fypw_s62Q0s,\"Alex discovers that his employee that has been missing, Yoko, has returned to the offices.\"\ntt0391198,uI8lzoeTASI,Susan returns to her apartment but finds no comfort in the safety of her bed.\ntt0391198,z1cXKdmKuV0,\"When Susan begins seeing apparitions in the stairwell at her work, she turns to the security guard.\"\ntt0125439,uJPI1qu9bE4,William justifies his decision to break it off with Anna. His friends try to be supportive but he realizes he has made a mistake.\ntt0391198,gI7UY6YCAoE,\"While tidying her client's house, Karen investigates a noise in a taped up closet, where she discovers a young boy.\"\ntt0391198,dfrZp14tFjA,\"Maria wakes up to see her husband, Peter jump off their balcony.\"\ntt0391198,mgU73GKlSFw,\"Having survived the fire at her client's house, Karen is taken to the hospital, but her haunting is not over.\"\ntt1645080,P653N6uf3Y8,\"George, a lonely and fatalistic teen who's made it all the way to his senior year without ever having done a real day of work, is befriended by Sally, a popular but complicated girl who recognizes in him a kindred spirit.\"\ntt1645080,bPavpV1D-g8,\"George, a lonely and fatalistic teen who's made it all the way to his senior year without ever having done a real day of work, is befriended by Sally, a popular but complicated girl who recognizes in him a kindred spirit.\"\ntt0391198,yiRcSZp7tYg,\"A social worker in a haunted house, Yoko, investigates strange noises in the attic.\"\ntt0391198,4iW0kneOMyw,\"Matthew comes back to the house to find a mess and his wife, Jennifer in shock.\"\ntt0463985,mFglGV3n5SM,D.K. chases Han and Sean through crowded Tokyo streets.\ntt0463985,fvoNncvOHfc,D.K. crashes and Sean wins the race.\ntt0463985,kvVlP50LSq8,Sean and D.K. duke it out as they race down a steep mountain.\ntt0463985,Kjv-HBYitgk,Sean and his friends build a 67 Mustang into a drift racer.\ntt0463985,Zml7qQpL8Yo,\"After an intense race through Tokyo, Han dies in a fiery explosion.\"\ntt0463985,926SVUFeJ94,The mountain race begins for Sean and D.K..\ntt0463985,qOKE4dxjayU,Neela takes Sean for a late night drift ride in the hills.\ntt0463985,UbTBbTDjjHI,Sean finally masters the art of drift racing.\ntt0463985,Y29DgVgmE2M,\"Morimoto tries to wreck Sean, but has a head-on collision.\"\ntt0463985,szpq76d4ipk,Sean and Han try to lose D.K. in a race through Tokyo.\ntt0414387,yElIQDAEtOg,Elizabeth defends herself confidently as Lady Catherine interrogates her about her unusual upbringing.\ntt0463985,iMP3uLZl6UE,Han takes Sean to retrieve some money for him from a huge guy with a paw tattoo.\ntt0463985,s-EheX9m-dE,Sean challenges Clay to a race and the winner gets the girl.\ntt0414387,bFsgLhx9dxg,Darcy comes to Elizabeth and asks her if she will still have him.\ntt0414387,ONaPfzjl8qc,Lady Catherine makes a visit to Elizabeth and interrogates her until she admits that she is not engaged to Mr. Darcy.\ntt0414387,z9SXvUdM_iw,An intimate connection forms between Elizabeth and Mr. Darcy as they share sarcastic remarks during a dance.\ntt0414387,LHv4eHp_gUM,The music and dancing stop when Mr. Darcy and his friends enter the room. He and Elizabeth share a glance.\ntt0085959,lhbHTjMLN5c,Monsieur Creosote underestimates his stomach when his waiter offers him a parting mint.\ntt0414387,DNZ5NXKtdxs,\"While arguing, Darcy judges Elizabeth's pride, while she tells him that he is the last man she would ever marry.\"\ntt0414387,8U56CTlGkx8,Darcy delivers a letter explaining his past to a catatonic Elizabeth.\ntt0414387,9yEylIfDkms,Elizabeth definitively refuses a marriage proposal from Mr. Collins.\ntt0414387,VSMKvHRbHC8,Elizabeth lovingly watches her sisters become giddy over the idea of Mr. Bingley – a potential new suitor – as they learn he will be attending the ball.\ntt0085959,Qbnv6eHKjCQ,\"When a woman comes to the hospital ready for childbirth, Doctors are more interested in \"\"the machine that goes ping\"\" than their patient.\"\ntt0085959,eyCCuHC08bY,\"Moments before he is about to make a battlefield charge, the Sergeant's troops give him an assortment of clocks as goodbye gifts.\"\ntt0085959,ucgU2DJlBiw,\"When the Sergeant Major asks his troops if they'd rather be doing something other than marching, he loses all his troops.\"\ntt0085959,PDBjsFAyiwA,\"A good Protestant husband discusses the virtues of being a Protestant with his wife, most notably, the freedom to wear a condom.\"\ntt0085959,WQEkAbLJ5L8,Fish in an aquarium contemplate life while watching their friend being eaten.\ntt0085959,kLNdMY1JlR0,Noel sings a cocky little tune for the restaurant diners.\ntt0085959,g8fheDIG_RA,\"Nuns, priests and Catholics alike dance in the street, performing the musical number \"\"Every Sperm is Sacred.\"\"\"\ntt0085959,Zx0ME65y72E,The good Monsier Creosote orders everything on the menu… mixed in a bucket.\ntt0085959,kntQNeSge5s,Graham Chapman and the troupe have a musical moment in the grand finale.\ntt0085959,UGBZnfB46es,\"When the middle of the film approaches, the filmmakers ask the audience to play a game of \"\"find the fish\"\".\"\ntt0132347,QXFR1L_gOg8,The team auditions a never-ending stream of lame superheroes to join them.\ntt1019452,6HJqPZ-KmZs,Larry dreams that he is lecturing his students on the uncertainty principle when Sy confronts him from beyond the grave.\ntt0454848,OS2udCdOuqA,Dalton and his team make quick work of the bank's security forces and take control of the building.\ntt0106308,pFriRcIwqNU,\"Ash blasts a sword right out of Lord Arthur's hand with his trusted shotgun and then gives a speech about his \"\"boomstick.\"\"\"\ntt1013753,B4zWUki6-WE,Harvey gets on his soap box and announces his candidacy for San Francisco City Supervisor.\ntt0120616,NW2QM6c1wAI,\"Evelyn tells the warden that Rick knows how to find Hominoptra, and should be set free.\"\ntt0209163,6nX0100wUB0,\"Rick intercepts Imhotep from killing the Scorpion King and instead, does it himself.\"\ntt0452608,uNE1lEBsBmM,\"After surviving a brutal crash, a conceded Grimm thinks he is invincible but quickly gets smashed and killed by Joe.\"\ntt0076723,Pdi_kASSsJs,\"After a period of Old-Time Hockey,\"\" McGrath fires up The Chiefs by reminding them what is really important.\"\ntt0096320,1kejVGS-5q0,\"Vince gives Julius a make-over, including new clothes, a new walk and shades.\"\ntt0315733,JzOSF71-kl4,\"Mary tries one last time to convince Paul to agree to artificial insemination, but the fact that Mary got an abortion while they were separated convinces Paul otherwise and he ends the relationship.\"\ntt1019452,3tfI9tTzlI0,Larry receives an unassuming call from the Columbian Record Club concerning a membership he never signed up for.\ntt0132347,m9rBv4Dn3Bk,The Spleen shares his farting power with the team.\ntt0132347,XFC2o44koIA,The group rallies together and decide to join the fight and leave the egg salad sandwich behind.\ntt1019452,lkq-Fd9TU8k,\"Larry tries to visit Rabbi Nachter for consultation, but is forced to see Junior Rabbi Scott, who educates Larry on perspective.\"\ntt0132347,eKeTSR1yYfY,The Shoveller and the team terrorize Casanova's car and his crew.\ntt0132347,VUG-5kLRjeY,\"When Mr. Furious's boss Sally gets mad at him for being late to work, he manages to contain his temper and not blow up.\"\ntt0077975,q7vtWB4owdE,\"Bluto delivers a spirited, if historically inaccurate, speech to the Deltas.\"\ntt0120693,H1JCgM_LHAg,\"Thurgood and his friends wear wires to their meeting with Samson, but get discovered when the police are too high to save them.\"\ntt0120693,dHPnUPFcxdE,\"Trying to make the most of his last $8, Thurgood gets creative on his date with Mary Jane.\"\ntt0137363,WtdVnmI_nYM,Michael learns that Grant has been talking about his deceased mother with Oliver.\ntt0137363,KsGS0BJ49LQ,Oliver defends his past to a skeptical Michael.\ntt1341341,_1F59-J8Iwg,Whit bares his soul.\ntt1423593,s4heu0mPm-I,The party-goers are forced to take two cabs.\ntt1341341,cLApJ5OJaLg,Sam attempts to win Zoe back.\ntt0467200,XjC8-nEGnrE,\"Consolidating her power, Anne tells Mary that she has been banished to the countryside.\"\ntt1341341,iGig4Dk3tXc,Sam and Marshall attempt to sneak into the party.\ntt0087182,aoPKajvq3gE,\"Paul challenges Feyd to a knife duel, and Paul dodges the poisoned blades in Feyd's suit to deliver a fatal blow.\"\ntt1175709,kvhcXo9QzqQ,\"Real-estate tycoon Sanford Marks and son David converse about how David met Katie,. Her blue collar background doesn't fit the country club lifestyle, but David finds her to be a welcomed breath of fresh air in the stuffy atmosphere that is the upper class.\"\ntt1175709,8rsx2IP3HWY,Katie sits on the couch with Deborah for small talk and learns about the previously unknown death of David's mother.\ntt1175709,mWblxPany0E,David asks Katie to come back home while she begs him to let her go.\ntt1175709,4t2pP2KLlgU,\"Katie and Lauren discuss Katie's potential move home. Meanwhile, the waitress brings Katie some bad news about her check.\"\ntt1175709,1YBkXbf8dg0,\"David preemptively apologizes for anything his father, Sanford Marks, says to Katie as they check in to the dinner party.\"\ntt1175709,D1Sh5qIqc7Y,David has Katie close her eyes for her surprise – a new house.\ntt0087182,TQeP6GWU0e4,\"Paul trains the Fremen in the use of the weirding module, a sonic weapon that translates sounds into attacks of varying potency.\"\ntt0087182,Bj7R_2WWdKs,\"Paul climbs on top of a sandworm and learns to control it, proving the legend true and inspiring the trust of the Fremen warriors.\"\ntt0100814,g5e3qoREpuA,\"Cornered by the smartest of the creatures, Val suddenly has a plan.\"\ntt0087182,mWq15lDh8yM,\"Baron Vladimir Harkonnen vows to kill Duke of Atreides, and murders a minion just to prove how ruthless he can be.\"\ntt0087182,bIVzK-h6qao,\"Paul discovers a hunter-seeker in his room sent to kill him, but he grabs the deadly device as it aims for the Shadout Mapes.\"\ntt0087182,1G5jMgx8GVU,Paul watches as a giant sandworm destroys a mining rig on the planet of Arrakis.\ntt0087182,AGqdE1NdMTg,\"The Emperor consults with a guild navigator, who orders the murder of Paul, the son of the Duke of Atreides.\"\ntt0100814,CfAS7ONO8OU,Rhonda comes up with a plan to pole vault from boulder to boulder to escape the underground creature.\ntt0087182,kJsYKhEV6o0,\"The Reverend Mother forces Paul to place his hand in a box which subjects him to excruciating pain, and he withstands more pain than anyone before him.\"\ntt0100814,qFNBUs7O-h4,The Gummers defend their homestead with serious firepower.\ntt0100814,u9O_Xs8wAZk,\"When a girl on a pogo stick attracts the creatures, Rhonda gets tangled trying to escape.\"\ntt0100814,mbKEarx9CCs,Val and Earl make a grisly discovery at a local sheepherder's place.\ntt0100814,LwbFwVf8yoE,\"Fleeing the creature, Val and Earl lead it smack into the wall of an aqueduct.\"\ntt0087182,KYUolurihOQ,\"Gurney challenges Paul to a round of shield practice, which ends in a draw.\"\ntt0132347,b5I94bT23cQ,A frustrated Mr. Furious confronts The Sphinx while sewing new costumes.\ntt0100814,Y3kXNEX1Ghs,\"The creature rams through the floorboards of Walter's store, wreaking havoc.\"\ntt0100814,7bFi99Kojrc,Val and Earl discover the town drunk straddling an electrical tower.\ntt0132347,9DJWMVR_yfM,\"The Blue Raja, Mr. Furious, and The Shoveller bicker as they order food at a diner.\"\ntt0132347,FfdJdZ5_guM,Mr. Furious defeats Casanova.\ntt0100814,kFhIMrW1Yk4,\"Ignoring a warning from Earl, two road workers meet a grim fate.\"\ntt0132347,JuhTQwzizDI,Casanova has a meeting with Captain Amazing and captures him with a drugged drink.\ntt0132347,aDFJMSlmxBg,Casanova explains his plans to kill Captain Amazing.\ntt1452628,7pDEOCYPRf4,\"Distracted by his phone, Luke misses the obvious signs that something is wrong with the world.\"\ntt1421051,f276MnhGqGg,The tension can be cut with a knife on the promotional set of Johnny Marco and Rebecca's new film.\ntt1452628,V80rHpEZCl0,\"Paul, a lonely projectionist, roams the halls of the empty mall with a security guard, wondering where everyone went after a major power outage.\"\ntt1421051,YjQP7xc5P8Y,\"After breaking his arm during filming, Johnny Marco is woken up by his daughter Cleo signing his cast.\"\ntt1452628,3-fzc0e4dD0,\"In a dark hospital, Rosemary comes across a light source which she finds to be a patient with a chest spreader opening his chest cavity to the stale, contaminated hospital air.\"\ntt1452628,WSyi9bIVryk,Paul gets trapped in a hallway where a shadowy figure douses any light source it comes close to.\ntt0021814,F5eqkWRWZ7c,Renfield describes in detail his dream about rats while Dracula watches on.\ntt1421051,fOgpQEngn0c,Johnny Marco and Cleo return from ice skating and notice a car following them.\ntt0021814,Bzb3rASU-pM,Van Helsing squares off with Dracula and scares him off by holding up a crucifix.\ntt0021814,dTr8dXob7YI,Dracula meets Van Helsing and charms Mina Harker.\ntt1019452,uvIZ4ST6HqE,Alren approaches Larry about his tenure review and Larry has a small breakdown.\ntt1019452,SAPKjWHikzM,Danny stumbles through his bar mitzvah stoned while Larry learns who has been writing letters to the tenure committee.\ntt0021814,o_N-H_5Pvu8,Dracula welcomes Renfield to his castle.\ntt0021814,KjDfOAhtWwo,Renfield meets an intimidating Dracula for the first time.\ntt1019452,uyj1CeZt23A,\"Detectives come to the Gopnik residence to warn Arthur that his gambling habits will lead to an arrest, which culminates in a family argument.\"\ntt1019452,TQSMmwQyEjk,Larry meets with his wife and Sy at Ember's to discuss living arrangements during their separation.\ntt0021814,F9b76RWM7qE,Martin tries to reason with Renfield but his obsession with eating spiders is all-consuming.\ntt0021814,665wQwXkq6M,Professor Van Helsing warns his servant that no bullets can kill the large gray bat.\ntt0100814,K5IU4bPS_S8,Earl successfully lassos an explosive as a trap for the worm creature.\ntt0021814,Tq8robO5eJ0,Dracula is consumed with thirst when he sees the blood on a man's hand.\ntt0021814,YSmSuiMNbDI,Dracula awakens his vampire wives.\ntt0021814,sbz_Xq2aEQQ,The townsfolk warn Renfield of vampires in the area.\ntt1019452,SGzmYFcravM,\"Larry meets with his lawyer who tells him that one of the firm's partners, Sol, has good news regarding Larry's property issues.\"\ntt1019452,b8U1na74Bcc,\"As Larry alters Clive's grade, he receives a prophetic phone call, while the Hebrew school evacuates the classroom because of the impending storm.\"\ntt1019452,aQQsBjOrNMY,\"Near the point of a breakdown, Larry tries to confide in Rabbi Marshak, but the Rabbi's secretary denies him the meeting.\"\ntt0454848,P90noIrmLZg,Dalton explains how he hid behind a false wall.\ntt0454848,j1C0Tw80Fgk,Dalton gives Frazier a riddle and then asks for sandwiches.\ntt0454848,sYNUp5rAZJo,Dalton hangs out with a kid in the bank vault and asks him about his violent video game.\ntt0454848,K-xthcJWXn0,\"Vikram, upset about being beaten and mistaken as a criminal, gets questioned by the detectives.\"\ntt0454848,4disuwEvw-w,Dalton makes an example out of one of the hostages for trying to pull a fast one.\ntt0454848,uzgQ_xwWlkQ,Dalton and his team release all of the hostages simultaneously during a chaotic scene.\ntt0454848,qCv3989nvog,Frazier watches Dalton shoot a hostage on the security camera then rushes over to discuss their negotiations.\ntt0762107,Tm3raIkeseE,\"When Larry agrees to let Chuck sleep in the same bed, he is awakened with a rude surprise.\"\ntt0454848,JB9rdCKgGuo,Dalton makes an example out of one of the hostages for trying to pull a fast one.\ntt0454848,NE0ne430gbA,Dalton drops some knowledge on what motivates him.\ntt0762107,Jc3GBDJ2sK0,\"The Asian Minister marries Chuck and Larry and helps them celebrate at the \"\"reception.\"\"\"\ntt0414055,sUv04cGjaDI,Sir Francis Walsingham reveals the Babington plot to Elizabeth.\ntt0414055,ofYq-2TXzTs,Sir Amyas Paulet accuses an indignant Mary of treason.\ntt0414055,CMvdeSxmPKg,Elizabeth asks Raleigh if he could love her.\ntt0454848,trGyimjcGRI,Frazier makes a dangerous tactical error when he tries to apprehend Dalton in the bank.\ntt0762107,TTX3bYbKAl0,Duncan tells Chuck that he is gay and asks if Chuck will help him tell his parents.\ntt0232500,hOz9L1KrJJY,Jesse is gunned down by Tran and Lance.\ntt0414055,WSUWoBeJ6dg,\"Raleigh tries to comfort Elizabeth with a positive thought about the human condition, but she laments that she has given her soul to England.\"\ntt0762107,seMHoTTskQc,Things get off to a rough start when Chuck moves in and shows Larry's son a porno magazine.\ntt0762107,K-cBT5AxRrg,\"Trying to defend his son, Larry gets in a fight with Steve, but Eric has no problem defending himself.\"\ntt0762107,isBwMtlWLeE,Alex changes in front of Chuck and then asks him to feel her breasts.\ntt0232500,UmmXGbFASC0,Brian and Dominic take care of Johnny and Lance.\ntt0762107,Su5vMTdI0yY,Glen Aldrich from the Pension Department visits to check up on Chuck and Larry for possible fraud.\ntt0762107,zdja5DSb2O8,Chuck and Larry find a chapel and work out wedding preparations with the Asian Minister.\ntt0762107,xw13vA86I-I,Chuck and Larry rescue an obese man from a burning building.\ntt0232500,B4xzP6H_N1E,\"When Brian saves Vince from the semi, his identity as a cop is revealed.\"\ntt0232500,kLJCWb1apYo,Jesse loses his ride in a race for pink slips.\ntt0762107,Dwnkxpu0l3c,Larry tells Chuck about his plan to solve his pension problem — Domestic Partnership.\ntt0232500,6hxOoM0-NJI,Brian meets Johnny Tran and Lance who trash his car because of bad blood with Dominic.\ntt0232500,WtnTZSJndPc,Dominic tells Brian about his father and the way he lives his life.\ntt0232500,nfV87TgYH78,\"Dominic challenges Brian to one final race, but neither one of them expect the obstacles that get in their way.\"\ntt0232500,pB-bN-RkJLM,Dominic lets Brian know what winning is all about.\ntt0232500,pZZ60jrw6cg,Brian experiences the rush of street racing for the first time when he races Dominic.\ntt0232500,sBDEE3_Z-cw,\"Letty races a guy at \"\"Race Wars\"\" and smokes him like a cheap cigar.\"\ntt0077975,pX71mALOPKs,The Deltas destroy Faber's homecoming parade.\ntt0077975,DZN4r8p6KbU,\"Bluto spits mashed potatoes on the Omegas, inciting a food fight.\"\ntt0077975,FMENQeCbxfI,\"Otter calls on his Delta brothers to empathize with \"\"total loser\"\" Kent Dorfman.\"\ntt0077975,18eaNSxhK5c,\"The Deltas bomb their psych exam, prompting a stern warning from Dean Wormer.\"\ntt0077975,0Dy2fo6E_pI,\"Golfing near the ROTC, Otter and Boon are outraged by the sight of an officer abusing their pledge.\"\ntt0077975,UKMuVFz3MOQ,\"Dean Wormer reads the Deltas' abysmal mid-term grades, then expels them.\"\ntt0077975,ROxvT8KKdFw,Otter makes a stirring defense of the Deltas' drunken shenanigans.\ntt0077975,EtSPFXj_eZM,Flounder accidentally kills Neidermeyer's horse.\ntt0137363,sarN01WcuZY,Michael is wrongly accused of bombing a DC Federal building while the guilty neighbors go unsuspected.\ntt0077975,1tfK_3XK4CI,Dean Wormer and Greg conspire to have the Delta fraternity expelled.\ntt0137363,ZJOTrLdxCPE,Michael Faraday and the police are lured into a federal building parking garage as a bomb is detonated in the trunk of Michael's car.\ntt0137363,nJ98f7z14WI,Michael uses force in an attempt to convince Oliver to call off the terrorist bombing.\ntt0137363,SgwBAXfvdFE,\"Michael discovers the truth about his neighbor, Oliver.\"\ntt0137363,j7EvXsSJHQc,Michael follows his hunch and researches his suspicious neighbor.\ntt0120693,1tBCcfkkDKo,Thurgood and his friends break in and rob the weed lab but get busted as they try to escape.\ntt0137363,O6ZWqQ53cJM,Brooke runs into Cheryl after making a frantic phone call.\ntt0137363,EUtdnTk7wIE,Michael pushes his university students to think critically about terrorism and its aftermath.\ntt0120693,H0AnJKKwhQ0,\"Scarface quits his job, Brian gets fired and the crew picks up a new member -- Jan.\"\ntt0137363,BROZYppqsf8,Michael Faraday stumbles upon a severely injured boy and rushes him to the hospital.\ntt0120693,XLScUvabSr4,Scarface comes up with a plan to raise Kenny's bail -- get weed from Thurgood's work and sell it.\ntt0120693,oh3KwtatlkY,\"When Mary Jane gives Thurgood and his friends a ride back from prison, Thurgood asks her out.\"\ntt0120693,uUPHlAbAf2I,\"Trying to kick his marijuana addiction, Thurgood goes to rehab... and gets booed off the stage.\"\ntt0120693,GDHVi3h6ZXw,\"Recruited by a Scientist to fulfill a prescription, Thurgood picks up a pound of medical grade marijuana.\"\ntt0120693,N3ug0dVCyeE,Things take a dark turn for Kenny after he feeds all his munchies to a diabetic horse who turns out to be a cop.\ntt0120693,SM0CkReuGMQ,Kenny is sent on a munchie run by Thurgood and his friends.\ntt0170016,y8MWkDexzRQ,\"Cindy Lou Who interviews the two women that raised The Grinch, and learns all about how special he was from the very beginning.\"\ntt0170016,Lxuqbh2tjTs,\"Cindy Lou Who catches The Grinch, dressed as Santa, stealing her Christmas Tree, and asks him to visit The Grinch.\"\ntt0170016,c8m6M4RV8p0,\"The Grinch dons a Santa suit, behaving in a series of un-Christmas-like activities, while singing.\"\ntt0170016,hE3jShGPscQ,The Grinch finds the strength to save the presents from falling down the mountain once he sees that Cindy Lou is on top.\ntt0115624,BVrhE9NOwww,\"Barb poses as a prostitute, and when she locates her actual target, she gets her client Ruben out of the way.\"\ntt0170016,p8J-YmVs1j0,The Grinch's heart grows three sizes when he realizes that Christmas still goes on in Whoville even if he did steal all the presents.\ntt0170016,C_4LmbuSmpI,\"The Grinch gets angry during the Christmas ceremony, mocks the holiday and its insincere traditions, and burns down the Whoville tree.\"\ntt0170016,0mGmEE20CR0,\"The Grinch is visited by a group of Whovenile delinquents who stop by as a dare, which inspires him to visit Whoville and raise a ruckus.\"\ntt0170016,0lq1JIWQSlc,\"Martha May recalls the time her classmates were very cruel to The Grinch on Christmas, and how upset it made her.\"\ntt0115624,eFs_YLy3Ld8,Barb gets the contact lenses to Cora and says goodbye to Axel as Willis professes his love.\ntt0170016,nBmNcy4zZNU,\"The Grinch is visited by a group of Whovenile delinquents who stop by as a dare, which inspires him to visit Whoville and raise a ruckus.\"\ntt0115624,cKewmzrevAw,Barb meets with criminal kingpin Big Fatso to broker a deal for the sale of the contact lenses.\ntt0115624,ct-PElgfWJY,Willis gives Barb a grenade which she uses to create a diversion to enable the escape of Cora and Axel.\ntt0115624,H6XIREQHU8M,\"Barb rescues a young girl from a strip club, but when her parents are short on payment, she takes their car instead.\"\ntt0115624,n9L9jMlulXI,Barb sicks her dog Camille on an irate customer and Willis prepares for an important meeting with some politicians.\ntt0115624,VVp0l2Vas2I,\"Barb blasts her way into the hotel room where Krebs is hiding, and some gunmen complicate her mission.\"\ntt0115624,Ws7Uj5D6354,Barb deposits Krebs with the bail bondsman Schmitz and demands more money due to the difficulty of the assignment.\ntt0115624,LSEkG5z7Il4,Barb has a fight to the death with Pryzer as Axel attempts to save her life.\ntt0115624,8ARqfD6Wm3E,Pryzer and his men trash the bar in search of the contact lenses as Barb watches helplessly.\ntt0314331,lxOV0MYBpeI,\"Colin decides that English girls are stuck up, so he is going to America.\"\ntt0314331,_ghkHlthIqM,\"The school's musical performance of \"\"All I Want for Christmas\"\" ends with a surprise.\"\ntt0314331,nKdSvhCg3VY,\"Jamie proposes to Aurelia in broken Portuguese, with the entire town looking on.\"\ntt0314331,2KtVKu9CfDA,Mark shares his feelings with Juliet via cards.\ntt0314331,-EuO6OFypLo,Billy Mack shares his feelings with his manager Joe.\ntt0314331,UCjoOOrgVMM,Sam catches Joanna at the airport.\ntt0467200,wF_UpYqYJuY,\"At the last moment, Mary learns that her sister Anne has not been granted clemency by the King.\"\ntt0467200,3XK2wqc1cr8,\"After learning that she will be sent to exile and her marriage dissolved, Anne lashes out at her sister, Mary.\"\ntt0467200,ZxpXrz-nEdw,Anne challenges her accusers with defiance as she stands under the penalty of death.\ntt0467200,pkfyn6mYlCg,\"King Henry makes an illicit vow to Anne, even as Mary gives birth to his son.\"\ntt0467200,wzIwPkZkSTk,Mary begs King Henry to spare her sister's life.\ntt0467200,xX08f3GV3v8,\"En route to her judgment before the royal court, the Queen stops to reprimand the Boleyn girls for their deceit and ambition.\"\ntt0859163,OksadMMuXQ8,Emperor Han battles Zi Yuan in a fight to the finish.\ntt0467200,TY2PGciqbg8,\"King Henry seduces Mary, beginning his affair with her.\"\ntt0859163,NTaSvSldlk0,\"Two armies of undead soldiers meet on the battlefield, with Rick and Evelyn caught in the middle.\"\ntt0467200,Kyh3foJVk2k,\"In her desperation and madness, Anne begs her brother to sleep with her in order to give her a child for the King.\"\ntt0467200,ok_8VGksYow,\"With his wounds tended to by Mary, King Henry is intrigued by her humility and beauty.\"\ntt0859163,GiRyIbJ7IFg,The Dragon Emperor finally meets his match.\ntt0467200,9wr10j2nUJ4,\"After returning from exile in France, Anne takes King Henry's court - and heart - by storm.\"\ntt0314331,yVcieIZb3_U,Billy Mack gets candid about his new record on a local radio program.\ntt0859163,gKY3ShRZPkA,\"After some early setbacks, Rick decides to take an unusual approach to fly fishing.\"\ntt0859163,5ITNMF0kSn8,Rick and Alex argue over the best plan of attack.\ntt0859163,PQ-8JIzjq_I,The O'Connell's have a less than smooth landing in the Himalayas.\ntt0859163,HTE6S6x8ixA,A pack of Yetis come to the aid of the O'Connells.\ntt0181865,0wsXkU-Crjw,Wakefield finally reunites with Caroline after a long and anxious search.\ntt0859163,JbrBIbtupp8,\"Alex and his team discover the Emperor's tomb, along with several deadly booby traps.\"\ntt0859163,DxguAU_KxS8,The witch Zi Yuan casts a curse on the evil Emperor Han.\ntt0181865,E41tGRgKxNk,Ayala dismisses Arnie and then suddenly finds himself face-to-face with an angry Monty.\ntt0181865,06KH47jZbG0,\"After escorting Ruiz from the courthouse, Agent Castro is mistakenly killed by an assassin hired by Helena Ayala.\"\ntt0859163,1z6MvVWZfuc,The O'Connells come face-to-face with the newly awakened Dragon Emperor.\ntt0181865,JjRx9IJSTMw,Seth educates Wakefield on the economic dynamics of the drug scene.\ntt0181865,8prXNxNfEpY,Manolo is kidnapped after trying to double-cross General Salazar. He and Javier are taken back to Mexico to be killed.\ntt0181865,g9Znovljrq8,\"South of the border, Javier Rodriguez and his partner Manolo Sanchez are accosted by General Salazar, who takes in the drug dealers that they just arrested.\"\ntt0181865,zy0HtNZgbjY,\"Room service turns fatal as key witness Eduardo Ruiz convulses from eating poisoned food, his death orchestrated by Ayalas's operatives.\"\ntt0181865,6U6MOfuFX-Q,\"Helena is told by her husband's attorney and good friend, Arnie, that her husband is dealing drugs.\"\ntt0181865,Lkxbuqvb5A4,Wakefield gets some advice on drug policy and PR from the Washington D.C. elite.\ntt0314331,DsugPaXH4kA,\"When the pages from Jaime's latest book are blown into the lake, he and his housekeeper go in after them.\"\ntt0181865,6_6Ml7hPZi0,\"DEA Agents Gordon and Castro meet with Ruiz under the guise of drug dealers -- when suddenly, the buy goes horribly wrong.\"\ntt0314331,cfNzZre-sIU,\"Harry attempts to quickly buy a necklace before his wife Karen returns, but the sales clerk has other plans.\"\ntt0098554,mzNUbT2sQT4,Uncle Buck is upset when Tia doesn't keep her promise to take care of her brother and sister while he goes to the racetrack.\ntt0098554,JOBYJrVQm3A,Uncle Buck tries to make Miles' birthday special. Even if that means turning away Pooter-the-Clown.\ntt0098554,OA-FmsSdSMY,All the neighbors know when Uncle Buck arrives at Bob's.\ntt0098554,xEt5dEOcW0I,\"Uncle Buck has a meeting with Maizy's Assistant Principal, Mrs. Hogarth and her mole.\"\ntt0098554,9sWnQ8y_M6A,Uncle Buck explains to Bug what he likes to do with his hatchet.\ntt0098554,PQCAqu6koEQ,\"Buck meets Tia's boyfriend, Bug.\"\ntt0098554,ghQOllvR2cE,Miles interrogates Uncle Buck in the kitchen.\ntt0098554,5ibO5kob3OQ,Uncle Buck takes the kids to school in his sweet ride.\ntt0098554,nggWTNLFifA,Uncle Buck finally takes care of the Bug problem.\ntt0098554,Hf6qAXWkX6w,Uncle Buck tries to convince Tia to go bowling with him.\ntt0314331,zcgxBHBsl-4,The Prime Minister takes advantage of a quiet moment to dance through 10 Downing Street.\ntt1478338,BP2zVb8Ufsw,\"Annie, feeling loosey goosey, visits Lillian and Helen in First Class.\"\ntt1478338,gnI8phF08PE,The ladies experience a wave of food poisoning in the middle of the dress fitting.\ntt1478338,iseaUTEhwzY,Becca confides in Rita about her lackluster sex life; Rita prescribes them some strong drinks.\ntt1478338,mwqxM-ccpNE,\"Officer Rhodes tries to cheer Annie up, and paints her a picture of what he'd like his wedding to be like.\"\ntt1478338,Kg0YrIiz7Sw,Rita shares with Lillian and Annie the disgusting truth about having kids.\ntt1478338,NL812ag82xI,Lillian tries to convince Annie that she deserves better than someone who criticizes her appearance.\ntt0477080,i9DMpMCCxuE,Will and Frank argue about how to stop train 777.\ntt0477080,zFuw7sB1zxE,\"Will meets his new partner, Frank for the first time.\"\ntt0477080,fKeNgrRRoN8,Frank runs from one train to the other hoping to slow down the runaway locomotive.\ntt0477080,mDI2nymYW1M,Frank and Connie talk over the radio about what it will take to stop this train.\ntt0477080,Y4ZHPeyJ4ss,Frank tries to communicate with Connie to find out where the runaway freight train is and if they are headed straight for it.\ntt1411697,SihfPA7vJms,The guys are chased through the streets while dealing with a troublesome monkey and a dead pig.\ntt0388795,DuyH1j2jMRg,Ennis and Jack become closer and more intimate while their boss watches from afar.\ntt0268978,CemLiSI5ox8,A blond in a bar helps crystallize Nash's theories.\ntt1411697,cxQuvLl2E-I,\"The guys wake up in a strange apartment, with strange haircuts and tattoos.\"\ntt0089155,2Ee6xrIGhcY,\"Dodging the police at a banquet, Fletch creates a diversion by toasting the man of the hour.\"\ntt0089155,Y-Mhn3xTlUk,\"While breaking into a real estate office, Fletch has to outrun and outwit a guard dog.\"\ntt0089155,ZY_uGAx3rxE,\"Disguised as the guy from Ajax,\"\" Fletch has a look at Stanwyk's plane.\"\ntt0089155,AJuIYcVnc2I,Fletch is caught snooping by a dim-witted caretaker with a shotgun.\ntt0089155,oK1X8SfGMs8,\"While impersonating a doctor, Fletch is asked to assist with an autopsy.\"\ntt0089155,pWGGQmeKdkk,Fletch and Larry search the microfiche for info on Alan Stanwyk.\ntt0089155,9-zf2UBp7fY,\"Fletch poses as a patient in order to question Stanwyk's doctor, even dropping his shorts to sustain the ruse.\"\ntt0089155,i7AUpGXLDdk,\"Fletch daydreams he's a Los Angeles Laker, playing alongside Kareem Abdul-Jabbar.\"\ntt0089155,2bx4g-8PY9Q,Fletch orders an expensive lunch on the Underhills' country club bill and has it delivered to Gail's cabana.\ntt0070735,EmDQiL3UNj4,Gondorff's and Hooker's big con ends with a big surprise.\ntt0089155,m1t9QOSYqYM,Fletch is arrested by a couple of cops who plant drugs on him and take him to the station to meet with the Chief Karlin.\ntt0070735,VYjyFQS3DWM,Doyle Lonnegan makes a half-million dollar bet at Gondorff's joint.\ntt0070735,kAi0cSCUWfg,Henry Gondorff and crew pull a horse race con on Lonnegan.\ntt1232824,M-rbVvVD60k,Linda confronts her uncle Donald about the horrors of her past.\ntt0070735,nby0t43dlIs,\"Johnny shows up at Loretta's door and after some convincing, she finally lets him in.\"\ntt0070735,f0eTISgJ3Io,Johnny Hooker almost gets whacked by Loretta.\ntt0070735,BAF9OAO4TtA,Johnny plays a street con on Mottola after he tries to take advantage of Coleman.\ntt0070735,tdCot34--pc,The feds make a deal with Johnny to bring in Henry Gondorff.\ntt0070735,773E6GPll3A,Gondorff out-cheats Lonnegan during a high-stakes game of poker.\ntt0070735,vw1dPsf0JgE,\"Johnny sets \"\"the hook\"\" into Lonnegan.\"\ntt0070735,Lh8dcvj-0NA,Gondorff gets to know his mark – Doyle Lonnegan – during a poker game.\ntt0099365,c9wVzDytTFU,\"Darkman dangles from Durant's helicopter, dodging buildings and bullets.\"\ntt0099365,G4YcCF8uLiI,\"Darkman bids farewell to his girlfriend, Julie, before disappearing behind a final disguise: Bruce Campbell.\"\ntt0099365,LSMl31b3OKc,Darkman fights corrupt developer Strack atop the beams of an unfinished skyscraper.\ntt0099365,lbdeAhpIPhE,\"Peyton wins a prize for his girlfriend, Julie, then flies into a rage when the carny won't hand it over.\"\ntt0099365,MuTaXwt02vA,Darkman dons a Durant mask…confusing Durant and his flunkies.\ntt0099365,f1fSmptANOU,Disfigured Peyton struggles to control his rage.\ntt0099365,fIT7VMVju0A,Darkman poses as Pauly in order to frame him for double-crossing Durant.\ntt0277296,W2gTKUd1gfQ,Mathayus works to save the Sorceress before Memnon kills her.\ntt0099365,hnNXvk6sLvw,\"As a doctor describes Peyton's pitiful condition, Peyton suddenly wakes from a coma and breaks his restraints.\"\ntt0099365,qXL3aXIGIKc,\"Darkman tricks Smiley with multiple masks, then whales on him.\"\ntt0277296,6Diop4IOk68,Mathayus is crowned king and takes Cassandra as his queen.\ntt0099365,bSDqN3UTrPI,Darkman tortures one of Durant's goons in the sewer beneath a busy street.\ntt0099365,3fwlRWBtHLg,\"Left for dead by Durant, Peyton struggles in vain to stop the lab from exploding.\"\ntt0120780,jutOpRQ7Osg,Jack remembers refusing the security job offer from Richard and confronting him in his office.\ntt0277296,rNPcxSp5a2o,Mathayus saves a boy from receiving punishment instead of killing Memnon.\ntt0277296,f4zl3CuJvt8,The Sorceress tries to figure out which pots are empty and which ones have cobras in them.\ntt0120780,y0iBQV-yyLI,Karen shoots Jack in the leg when he won't surrender to her.\ntt0120780,p5lEvn7ejJI,Maurice and his crew try to bust open Richard's safe…with their guns.\ntt0120780,Te4G4EGjidM,Karen and Jack realize that they have an attraction to each other even though they shouldn't.\ntt0120780,-RJ6USD2nEU,\"Jack pulls a scam on the Bank Teller, robbing the bank without pulling a gun.\"\ntt0120780,cbzBwleJnLY,\"When Jack Foley and Buddy Bragg leave their hotel in the elevator, they run into an unexpected guest in the lobby.\"\ntt0277296,llzXzUe2KAk,Mathayus single-handedly ambushes an entire group of soldiers.\ntt0120780,3ThrlTaPWO8,Kenneth starts to get a little too close for comfort with Karen so she shows him she's not so easy to overpower.\ntt0277296,A59SQO2FvPA,The sorceress saves Mathayus from scorpion venom.\ntt0277296,hlNvdfv76WA,Mathayus tries to capture the sorceress in order to escape the city.\ntt0277296,gAWrAQp7pWQ,Arpid helps Mathayus escape from the fire ant's pit.\ntt0120780,SZfw1S80QoQ,Jack Foley breaks out of prison disguised as a guard and takes Karen Sisco hostage in her own trunk.\ntt0120616,omy5TVA-fY0,\"Rick, Jonathan, and Ardeth get ambushed by Imhotep's priests who have risen from the grave.\"\ntt0277296,98NAf9zhIu0,Memnon begins his rule over the land by slaughtering all who stand in his way.\ntt0088847,S5IHNcpa7p0,Andrew gets sick of Bender's sexual interrogation of Claire and they get into a fight.\ntt0088847,Tm0oAv2moOw,The Breakfast Club discuss their parental issues and Andrew stands up to Bender.\ntt0088847,rnbDA4wKrg0,Bender starts causing trouble in detention and questions the value of high school clubs.\ntt0088847,bTeYncx1xmI,Bender challenges Mr. Vernon's authority and receives months of detention in return.\ntt0054331,w0cXyGVsUjs,\"Varinia reveals to Spartacus that she has bared his child, then she says her final goodbyes.\"\ntt0054331,FKCmyiljKo0,\"The Romans try to get Spartacus to reveal himself in the crowd, but then every slave stands up to protect him.\"\ntt0054331,6DI_C-xXcOQ,\"Spartacus gives Marcus Publius Glabrus an ultimatum to take back to Rome, then rallies his troops for the battle to come.\"\ntt0054331,tetwGGL997s,Spartacus tells Tigranes that the slaves don't fear death and that gives them the advantage.\ntt0120616,ARUzoPWS4Uk,Beni gets his just deserts… and so do the scarab beetles that eat him alive.\ntt0054331,AsBLdj7OyXc,Spartacus shares his most intimate dream with Varinia.\ntt0120616,ersxqFwDkWA,Rick tries to stay one step ahead of a giant sand storm chasing his plane.\ntt0120616,K58cPYCTiPM,Rick saves Evelyn from Imhotep with the help of the mummy's worst fear… a cat.\ntt0054331,lBeh1jkanrE,\"It's the first day of Gladiator Training School, and Spartacus shows real potential.\"\ntt0120616,pDWR5RkWRTY,Beni gets cornered by the mummy during their first meeting.\ntt0120616,GJP8XTzpOCw,\"Jonathan gets a scarab beetle under his skin, but Rick gets to it just in time.\"\ntt0120616,6J-PhFYNbOU,Evelyn reads from the Book of the Dead and awakens the mummy.\ntt0054331,zCLyLBrugD0,\"Draba is locked in combat with Spartacus. But when Draba gets the upper hand, he refuses to finish him off.\"\ntt0054331,YoQeksBRPLI,\"When they put a girl in the cell with Spartacus to watch him ravage her, he stands defiant and won't do it.\"\ntt0120616,u3XXKF0oDtU,Anck Su Namun and High Priest Imhotep kill the Pharaoh.\ntt0120616,YL_90r0J120,Imhotep and his priests are buried alive by the Pharoah's men for attempting to perform an unholy ritual.\ntt0338526,_oyt0p3Kikg,Van Helsing learns how to defeat Dracula while also discovering that there is a cure for the curse of the werewolf.\ntt0083929,A1HqjBc6LhA,A condescending customer makes trouble for Brad.\ntt0338526,jr60kvuKw3w,Van Helsing transforms into a werewolf at midnight as he prepares to battle Dracula.\ntt0338526,Y2y_dipI6_M,\"Carl informs Van Helsing that he must kill Frankenstein's Monster, even if he finds a way to kill Dracula.\"\ntt0452608,pgL4IvoR7tw,Jensen and Joe temporarily team up to destroy The Dreadnought.\ntt0452608,21Vohd23VMI,Coach leaves a parting gift for Warden Hennessey.\ntt0452608,R8-x5ORZe70,\"In an attempt to boost ratings, Warden Hennessey releases The Dreadnought during the second stage of Death Race.\"\ntt0452608,aaU-KRx8Zc8,\"Jensen finds a weakness in the track and with the help of Joe, exploits it to escape.\"\ntt0083929,bMtdrKIdDgE,Spicoli learns that Mr. Hand has zero tolerance for tardiness.\ntt0083929,hReFx1kjuIE,\"Brad thwarts a heist at the Mi-T-Mart, impressing Spicoli.\"\ntt0452608,JV8lJEE1p0w,Jensen finally gets his revenge on Pachenko.\ntt0083929,6J8__fWphE0,\"Deciding it's as much his time as Mr. Hand's, Spicoli has a pizza delivered to his desk.\"\ntt0452608,k8zDVhc4XPs,Jensen follows Pachenko to his area and gets ambushed.\ntt0083929,bc2muGlQIlk,\"Mr. Hand puts Spicoli on the spot for ditching class, yielding a phrase worthy of the chalkboard.\"\ntt0083929,YYV5f0Aqo4w,\"Believing they wrecked his car, Jefferson takes his anger out on the Lincoln football team.\"\ntt0452608,Yqf0AqAHhaM,\"Jensen's first race. After the first lap, Warden Hennessey activates the weapons, shields, and death pits.\"\ntt0083929,QN_Nod65e7o,\"Spicoli trashes Jefferson's car while toking and driving, but he assures him that he can fix it.\"\ntt0083929,sKrpl-KBTzQ,Spicoli dreams of glory as a world-famous surfer.\ntt0338526,bS9N8dEdZCQ,\"When Van Helsing and Carl arrive in Transylvania, they meet an unwelcoming Anna and her townspeople.\"\ntt0083929,9IUZkug8qo8,\"Linda coaches Stacy on bedroom techniques, using a vegetable for simulation.\"\ntt0452608,4MFzzWkl0_g,Jensen becomes suspicious of Warden Hennessey's tactics and confronts her.\ntt0083929,k2NaHBVVYzY,Brad busts Spicoli and his two buds for ignoring the dress code.\ntt0338526,JVWrVCLs8ms,Dracula hints at knowledge of Van Helsing's past while Anna tries to save Velkam.\ntt0338526,AD9YlbnGwpA,\"While helping Anna and the townspeople of Transylvania, Van Helsing slays the vampire Marishka.\"\ntt0338526,3kTQBCokfAg,\"Van Helsing transfers Frankenstein's Monster back to Rome so he can protect him from Dracula, but he runs into trouble along the way.\"\ntt0452608,jLvu6WNWzKg,The crew breaks down the rules of the Death Race to Jensen.\ntt0338526,QIBTN3qSB44,\"When Anna tries to rescue her brother Velkan from a vicious werewolf, it escapes from its cage and chases them down.\"\ntt0452594,yiZpb7GPLYs,Friend and realtor Riggleman encourages Gary and Brooke to sell the condo and go their separate ways.\ntt0106677,Ls_8cFgBUj4,Wooderson and the others give Pink their advice on signing the pledge.\ntt1201167,zLso3zVuBMQ,George tests Ira's loyalty.\ntt0452594,fZIWDis34Xs,Game night quickly dissolves into a fight when Gary fails to guess what Brooke is drawing.\ntt0452594,7Lv6KX12Fbs,Gary and Brooke run into each other on the street and catch up in a civil manner.\ntt0120780,pTptxpcYySI,\"After being kidnapped and stuck in a car trunk, Karen and Jack begin a slight flirtation over the topic of 1970s films.\"\ntt0452594,bX6BKxFkU78,\"Gary tells Johnny about Brooke's date, and Johnny misinterprets the story as a request to hurt the guy.\"\ntt1152836,Ywd-UZnkfR8,\"Dillinger and his men execute a daring bank robbery, making sure to only take from the bank and not the people.\"\ntt1152836,xx2qTUg_buo,Dillinger is ambushed and killed by federal agents.\ntt1152836,trgDVhZHIrc,\"Though beaten and emotionally frayed, Billie endures a brutal interrogation just so she can tell the the feds how Dillinger outsmarted all of them.\"\ntt0120780,eCQIRkboAM4,Jack and Karen play a coy game of strip tease before making love in a hotel room.\ntt1152836,U16anbRFRyc,\"A failed ambush by Purvis and his federal agents results in casualties, and the escape of Baby Face Nelson.\"\ntt0106677,d8WHOiQZGok,Pink' and Wooderson introduce Mitch to the upper classmen at the Emporium.\ntt0106677,Z6XIGZ51VMo,Juniors cruise around on their last day of school while Mitch hitches a ride with Wooderson and Pink to the Emporium.\ntt0463034,NjFLXuCHUiw,\"Carl walks into the bar to celebrate guy's night only to learn that Neil has to go home, and Dupree is homeless.\"\ntt0087597,ScHOVAo6tQ0,\"Alex receives a translator device that allows him to understand all of the aliens, and he begins to realize that he's been recruited to fight in a space war.\"\ntt0106677,I7MwxFdb0Ls,Carl and the other freshmen set up O'Bannion for a messy surprise.\ntt0087597,BYoWNwhu0DM,\"Alex questions the sanity of their mission, while Grig suggests a little target practice.\"\ntt0106677,Olm0KUtsFE8,\"Darla and the seniors terrorize the freshmen girls with \"\"air raid\"\" drills and condiments.\"\ntt0106677,NjN-PLW521s,The guys are confronted by the irate owner of a mailbox they smashed.\ntt0106677,MbRhuUtKHV4,\"Slater helps craft a bong in wood shop; the girls debate the sexism of \"\"Gilligan's Island.\"\"\"\ntt0106677,wknywxfcE5M,Aging skirt-chaser Wooderson explains his affection for high school girls.\ntt0106677,aF3BXL1cQYY,\"As the final bell rings, junior high boys flee from paddle-swinging high schoolers.\"\ntt0106677,rtkI87FeqOY,\"O'Bannion comes face to face with Carl's mom, while the senior girls lead the freshmen in \"\"air raid\"\" drills.\"\ntt0463034,sKFlL_G9S0c,\"After reuniting the two lovebirds, Dupree hears his calling as a motivational speaker and writer of 7 Different Kinds of Smoke: Living, Loving & Finding You Inner-ness.\"\ntt0106677,-CgUGjRFukQ,Benny and his pals threaten Mitch Kramer and the other incoming freshmen with a time-honored tradition: summer paddling.\ntt0106677,ANM7_NTFvE4,\"As Pink heads to class, Don makes a pass at the teacher.\"\ntt0463034,REzwusMDvzE,Rage and confusion culminates in a nightmare for Carl when he imagines Dupree and Molly on a boat together with Mr. Thompson and Lance Armstrong cheering on their sexual chemistry.\ntt0463034,SlyCtFYVQmU,\"Dupree goes camping with Carl's sock, and Molly catches him masturbating on the zebra striped bean bag chair.\"\ntt0463034,uAMrR05Xil8,\"When Carl can't make Career Day for Molly's class, Dupree comes in and teaches kids about the floaters in the world.\"\ntt0463034,DMo2qyKq4_w,Dupree makes a big entrance in the home of newlyweds Carl and Molly.\ntt0463034,q4RbzjuXB6E,Dupree throws seven different kinds of smoke at Paco as a distraction so Carl can get to the boardroom and tell Mr. Thompson what's up.\ntt0463034,Ig-Vf5-qTSM,\"Dupree sets up a skate ramp and coaxes Carl to jump on a board. Carl is a little more rusty than Dupree and both collide clumsily at the bottom, with Dupree wrecking his \"\"little duprees.\"\"\"\ntt0463034,KW23B9uZBVE,\"Returning home from sushi night, Carl and Molly find Dupree buttering up the Mormon librarian from Molly's school.\"\ntt0463034,bWaxWtgjY1g,\"Dupree talks to Carl on the beach about staying true to himself and staying positive, and to not let his future father-in-law get in his head.\"\ntt1152836,wTz_kSiZaIM,\"Dillinger escapes the jail in Tucson, Arizona with a fake gun and the help of another inmate.\"\ntt0475394,sUa29Kqpdn0,An enraged Messner finds himself in a tight standoff with Georgia and Ivy.\ntt0475394,c-tGV96ceBM,\"Shot and left for dead, Hollis has words with the last surviving Tremor brother, Darwin.\"\ntt0475394,biYVl18JAFM,Carruthers and Acosta engage in a very close-quarters shootout.\ntt0475394,kP6EOOdTQP8,Messner's CPR attempt on Carruthers is shattered by hostile sniper fire.\ntt0475394,y6WmWVpvGqo,Messner endures sniper fire and an elevator standoff in order to reach the wounded Carruthers.\ntt0388795,iaZzcRtmXXY,\"After their summer working together is over, Jack and Ennis say goodbye.\"\ntt0388795,wwE7qkkri-U,\"After Jack's death, Ennis visits Jack's parents and remembers him while looking through his room.\"\ntt0475394,ktrGDczwkec,Buddy rails on the dim-witted Hugo for ruining his expensive jacket.\ntt1082601,PkOIMjJrl3Y,Shawn and Dragon Lee fight. Shawn drops Lee on his back.\ntt1082601,TO0OWazmdc8,Harvey asks Shawn to take the fall. Shawn refuses.\ntt0475394,Xh1Ls7C0UrU,Dupree gives his partner Deeks the lowdown on one Buddy Israel.\ntt0475394,M1fnkYbVijE,\"After gunning down Dupree and the other bail bondsmen, Darwin proceeds to have a bizarre conversation with the recently departed.\"\ntt0475394,w6RItV0ZDgI,\"Dupree and Deeks meet with Buddy Israel's strung-out attorney, Rip Reed.\"\ntt0384793,KZtF_gT3Sgg,\"Bartleby argues passionately that freedom and creativity are more important than \"\"fancy highbrow traditions.\"\"\"\ntt0384793,lQfG0D7wPKA,\"South Harmon students answer Bartleby's question: \"\"What do you want to learn?\"\"\"\ntt0384793,eP52omnnZmg,\"Bartleby and Monica encounter Schrader, who's been forced to dress as a hot dog during pledge week.\"\ntt0384793,QZjmr4_K8To,\"Inspired by his students' feelings of acceptance, Bartleby makes the flash decision to proceed with the fake college and welcomes the students to South Harmon Institute of Technology.\"\ntt0384793,-w9kof4SQp4,\"At the frat house, Bartleby insults his romantic rival, Hoyt, in front of Monica while Schrader also tries to fit in.\"\ntt0384793,mHJH39bjALk,Bartleby and Schrader recruit Schrader's Uncle Ben as their fake dean.\ntt0384793,e8HRcYG3Ftg,\"Playing the role of South Harmon's Dean Lewis, Uncle Ben strays from the script during his meeting with Bartleby's parents.\"\ntt0384793,TWjtzvFrA8c,\"Hoping to find a place they can convert into their college, Bartleby, Rory and Hands visit an abandoned building. Schrader, however, is skeptical.\"\ntt0384793,nGWtzmsCHgc,\"Confronted by his parents, Bartleby lists off successful people who never went to college.\"\ntt0384793,RehkdOxmytI,\"Thinking that Monica is inviting him to her prom party, Bartleby is disappointed when she asks him to mow her lawn.\"\ntt0452594,A8Tw5xASluI,Brooke and Gary argue over whose family has more problems.\ntt0087597,Uvtt94Oz4N4,\"A stranger named Centauri comes looking for the person who broke the \"\"Starfighter\"\" record and takes Alex for a ride.\"\ntt0087597,MLNvUsTBGyE,\"Alex and Grig attack the alien squadron, bringing the ships all into range of their secret weapon -- the Death Blossom.\"\ntt0087597,nLN36pgwS5o,\"As the Kodan ship locks into the moon's gravitational pull, Lord Kril and a Kodan officer prepare for their inevitable demise.\"\ntt0452594,RP9ywTd8bRM,Gary's brother Lupus shows him the ropes at a club.\ntt0087597,U4D0HSqKiKU,\"Alien mentor Grig introduces Alex to his Gunstar ship and its pre-flight checklist, with the casual revelation that Alex is the Last Starfighter.\"\ntt0087597,pkk8WIkTJPA,\"As Alex prepares to leave Earth for another adventure, Maggie decides to join him at the last minute.\"\ntt1152836,_D2USWrWBL8,\"Though in a jail cell, Dillinger still expresses confidence as he talks to Purvis about their talents and the future.\"\ntt0268978,keQtOFycgPs,\"Distracted by a hallucination, Nash neglects his infant son in the bathtub. Alicia reaches the baby just in time.\"\ntt0087597,i9dK32LLtY0,\"Alex's brother, Louis, witnesses Beta removing his head to fix a hearing problem.\"\ntt0268978,lplDv1m_Zhk,\"Nash tries some romantic straight talk with Alicia, yielding positive results.\"\ntt0268978,H7Y_mHNgnpA,\"At the Nobel Prize ceremony in Stockholm, John Nash pays tribute to his long-suffering wife, Alicia.\"\ntt0054331,GCfWXNmFFbM,\"Lentulus goes shopping for slaves, and when he finds Spartacus he finds out that his bite is worse than his bark.\"\ntt0268978,86CKsczBdu0,\"As Nash is interviewed by a member of the Nobel Committee, his Princeton colleagues present him with their pens.\"\ntt0290002,tfX2C-Zewuo,\"When Jack tries to leave in his RV, Dina reveals to everyone that he injected Greg with truth serum.\"\ntt0268978,PMtkv1zgi8o,Parcher gives Nash a special assignment...and a radium diode implant.\ntt0268978,GvF4-C1EuJU,\"Dr. Rosen tells a disbelieving Nash that his roommate, Charles, doesn't exist.\"\ntt0268978,trn1aO8h9Uo,Hansen outmaneuvers Nash in a strategic board game.\ntt0268978,Vzpu-P2eRuI,\"At the Pentagon, Nash deciphers an encryption as a shadowy figure watches.\"\ntt0056923,c9O1VVeMzhc,Regina visits a rare stamp dealer.\ntt0290002,WMX_DNeziH0,\"Greg tries to use his CIA cred to rescue Greg and Bernie from the cop, but gets tasered instead.\"\ntt0268978,pYdjNeFh6zw,\"A beguiling math student, Alicia, finds a solution to Nash's \"\"heat vs. noise\"\" dilemma.\"\ntt0290002,frMMK_rKwD0,\"During an argument between Jack and the Fockers, Little Jack speaks his first word -- \"\"Asshole.\"\"\"\ntt0290002,qFc_0WXxOXI,An argument at dinner over Greg's baby book sends his foreskin into the fondue pot.\ntt0290002,1p8N6MlPDvo,\"Still under the influence of truth serum, Greg spills his heart on the mic in front of everyone, revealing all his secrets.\"\ntt0290002,x0VcDfDfx24,\"When Jack throws out his back, Roz gives him a very rough massage.\"\ntt0290002,Pm5gb2FVYRQ,Jack's shower is interrupted when he discovers Bernie has decided to share the bathroom to take a dump.\ntt0290002,fNqz4AY0pm8,\"When the Focker's dog gets loose in the R.V., the Byrnes' cat flushes him down the toilet.\"\ntt0290002,T2Lh9Lt3_w4,Little Jack is enamored with Isabel's boob job.\ntt0405422,Fa1IN1GN4Q4,Cal tells Andy that the way to talk to women is to just ask questions.\ntt0405422,dvm7mLmAtTM,\"When Trish comes to Andy's rescue, Andy reveals that he is a virgin, leading to a fairy-tale wedding.\"\ntt0405422,pYBo5eS5pW8,Andy's friends take him speed dating and we see all their dating techniques.\ntt0290002,g0s18i95JKA,\"Jack insists that Greg feel his breast feeding device -- the \"\"manary gland.\"\"\"\ntt0290002,x-A6zERn6yo,Bernie embarrasses Greg in front of his inlaws when he shows off Greg's trophy wall.\ntt0405422,OJ3gsR-DqAE,\"On their 20th date, Trish throws herself at Andy who freaks out, leading to a fight.\"\ntt0405422,7vjP2EKf7do,\"When Trish challenges Andy to hold off on sex for 20 dates, he is more than happy to agree.\"\ntt0290002,zXm6Bc3RuJE,\"Greg accidentally drinks Little Jack's milk, which turns out to be Debbie's breast milk.\"\ntt0405422,99UdqbS8q2M,\"When Andy gets a date with Trish, his friends help him clear out his house so he won't look like a freak.\"\ntt0088847,7OFROViP0J0,\"When Bender escapes his solitary confinement, the Breakfast Club protect him from Mr. Vernon's fury.\"\ntt0405422,Vn3IRHhPXMo,\"When Andy tells his friends some tall tales about his love making past, they figure out he's a virgin\"\ntt0088847,u3mupIlFIYQ,\"At lunchtime, each member of the Breakfast Club brings out food that fits their personality.\"\ntt0405422,oRKbez1LpWU,\"Andy gets his chest waxed, enduring mass pain, while his friends watch, laughing.\"\ntt0088847,Z2WZrxuwDhs,\"Mr. Vernon welcomes the Breakfast Club to detention, but is insulted by Bender.\"\ntt0088847,jsZkkqLDFmg,Bender mocks Claire's special lipstick trick and reduces her to tears.\ntt0056923,a8FA5zBHiFA,\"At her husband's funeral, Regina witnesses a variety of strange characters paying \"\"respects\"\" and receives a letter.\"\ntt0118715,vKjBFsyYC0g,Walter and the Dude are floored by the cost of Donny's urn.\ntt0056923,DXTLoQyijJ0,Regina finally discovers Brian's true identity.\ntt0056923,7xDTFtG9kYw,\"When Regina is attacked in her room by the one-armed Herman, Peter chases him off.\"\ntt0056923,01ZWXIY1mcs,Bartholemew discovers Regina's hiding place and is about to shoot her when Peter drops him.\ntt0056923,Qgsst15iI2k,Peter and Regina meet at a ski lodge in Megeve where they flirt and exchange some witty repartee.\ntt1201167,MMuen83l-Sc,\"George entertains an an audience of \"\"nerds\"\" at a Myspace event.\"\ntt0056923,gfLw0KJ6bLI,\"Tex corners Regina in a phone booth and demands she get him what he wants, or else.\"\ntt0056923,ziVJd7Fwzvc,\"Regina confides in Peter, but is warned not to trust him by an anonymous phone call.\"\ntt0056923,mRmLfuhXHR8,Peter and Scobie duke it out in the rooftop after Peter narrowly frees himself as Scobie's hostage.\ntt1201167,Q9vxnIGIFXQ,\"Clarke settles things between him and George, but Ira jumps in.\"\ntt0056923,NEYwJbjyF2M,Regina tries to find out who Peter really is behind all the lies.\ntt1201167,YBc362_R2pw,An eclectic group of friends and colleagues celebrate George's improbable recovery.\ntt1201167,0qWMjgpIECA,Eminem's temper flares when he catches Ray Romano peeking at him from across the room.\ntt1201167,p8CPTHEAfJc,George offers a sentimental and nostalgic Thanksgiving toast.\ntt1201167,XZzaK0UZJ08,Ira gets emotional when discussing the pending realities of George's illness.\ntt1201167,k4X42D5Gg7o,George has a difficult time taking Dr. Lars seriously due to his dubious accent.\ntt1201167,gW-Os5mjbGM,Randy warms up the crowd with his comedy.\ntt1201167,zeKb7O1KtIU,Mark gives Ira an ultimatum.\ntt0082010,_ss0nT5DGHw,David attacks a man in the underground subway when he turns into a werewolf.\ntt0082010,J2Ws0QEADsU,Jack visits David from beyond the grave to warn him of his impending curse.\ntt0082010,Hb7zhYzenhY,\"David and Jack run from the howls they hear while backpacking in Britain, only to discover firsthand what is making the noise.\"\ntt0082010,D0wShZqevLU,David has a nightmare that mutant Nazis murder his family… then his nurse.\ntt0082010,07FdVcspOfQ,David and Jack cause a stir when inquiring about a five pointed pentangle star on the wall in the Slaughtered Lamb pub.\ntt0118715,PztgWdMEJdg,Walter goes crazy on a red Corvette when little Larry Sellers doesn't give him the information he needs.\ntt0127536,TfN-0IJACLk,\"Elizabeth visits Robert for the last time and spares his life, despite his acts of treason.\"\ntt1127896,euV2U_M7RMI,Cross-dressing Vilma convinces Elliot to bring him on as security of the El Monaco.\ntt0082010,LLs-Oreo_bk,Undead Jack introduces David to some of his undead victims who encourage him to kill himself to end the curse.\ntt1127896,omTBgliYDKM,\"Walking through the festival, Vietnam Vet Billy remembers a great day that took place on a particular hill.\"\ntt1127896,X9yDWojz6YA,\"Vilma introduces Elliot to some \"\"very groovy people,\"\" namely his parents who are high on pot brownies.\"\ntt0082010,SQoNv-hzC_Y,\"Werewolf David goes on a rampage in Piccadilly Square, creating havoc as he kills and runs wild.\"\ntt1127896,3p1rb_t2Jg4,Michael negotiates with Elliot to rent out the El Monaco motel for the season.\ntt1127896,IN5zv7oMwwg,Michael Lang and Max Yasgur negotiate the terms to hold the festival at Yasgur's farm.\ntt0127536,jniUBhuJSuw,Kat cuts Elizabeth's hair in preparation for her crowning.\ntt0127536,9mnLbhHR6-g,Elizabeth has undergone the physical and psychological transformation into the Virgin Queen.\ntt0127536,sEnFt6neTu0,\"During a lovely evening boat ride with Robert, Elizabeth is nearly assassinated by an arrow.\"\ntt0127536,MHzcc00ZXCM,\"When Elizabeth finds Duc d'Anjou in a dress, she calls off their marriage publicly, for the welfare of her people.\"\ntt0127536,u-BIr0fW5cU,\"When Robert pronounces his love for Elizabeth during a dance, she reminds him that she will never belong to a man.\"\ntt0082010,Z1bYkHffGXI,\"Alex speaks with the werewolf and confesses her love, but the police shoot him before she can help him.\"\ntt0082010,WRjPRZEg7kM,\"When David wakes up naked at the zoo, he steals some balloons from a kid to hide himself.\"\ntt0127536,nx002D9N6qU,\"Robert and Elizabeth dance a Volta, which their only time together to flirt.\"\ntt0127536,yBS-MktwqgI,Elizabeth is uneasy about being crowned.\ntt0082010,Rngpf0Yluog,\"Jack visits David from beyond the dead again, looking a little worse for wear.\"\ntt0388795,44ZZN9BqlEE,Alma is shocked when she sees Ennis kissing his friend Jack during a long-awaited reunion.\ntt0388795,tzKEAdJLRfg,Alma tells her dad that she and Kurt are getting married and he decides to support her.\ntt0127536,iIUzHUOdLhM,Elizabeth's faith is questioned along with her loyalty to England.\ntt0127536,nxdpR5oyCOs,Master Ridley and two martyrs are burned alive for denouncing The Pope and the authority of the Catholic Church.\ntt1152836,MAvccNVx9tE,Dillinger tells Billie about himself and tells her she's with him now.\ntt0388795,Wl-C_I-ZhRI,Ennis sets the record straight after spending a passionate evening with Jack.\ntt0871426,op6H61wRi-Y,Kate's doctor drops a bombshell: she's eight weeks pregnant.\ntt1082601,-i9Fv-znJx0,Shawn fight Evan at a roof top party.\ntt1082601,sUa9WglkKCI,Shawn explains the one reason he won't throw a fight.\ntt0388795,g2KF7DAlM4E,\"Ennis calls Laureen, the widowed wife of Jack, after he finds out that Jack has died.\"\ntt0105323,F2zTd_YwTvo,Frank teaches the beautiful and charming Donna how to dance the tango.\ntt0086250,958GzzqgWnw,Tony takes out Frank and Mel after their attempt on his life.\ntt0086250,-4GsCEopbd4,Gina comes to kill Tony for killing Manny.\ntt0118715,_4ezPvzKe5M,\"Walter and the Dude eulogize Donny, but an ill-timed breeze ruins the scattering.\"\ntt0388795,KVK6yLqY54w,Jack and Ennis discuss their life together and the pain they endure when they're apart.\ntt0268978,BKV1SxfmeYQ,\"Nash explains to his roommate, Charles, that he's chasing an original idea, not popularity.\"\ntt0091225,VUChuDMVqvY,\"As Howard dozes, Beverly inspects the items in his wallet: photos, credit cards, and… a condom.\"\ntt0091225,LwpaOr1hVZk,A depressed Howard tells Beverly to leave him alone.\ntt0091225,5ZXyC0SDHNw,\"Beverly invites Howard to her place, but he has an identity crisis.\"\ntt0095489,fEcClEBT6QU,Littlefoot helps his friends escape the tar pit.\ntt0095489,weHHBdmI_Jw,\"After the group has a frightening battle with Sharptooth, they think Petrie is gone forever, but he finds his way back to them.\"\ntt0046876,BmLPVUYQM34,A mysterious fossilized hand inspires marine researchers to mount an expedition to find the rest of the creature.\ntt0095489,2t2iFLshgWQ,The friends meet Spike for the first time and bring him along on their journey toward the Great Valley.\ntt0411477,s-rl8q9jezU,Liz saves Hellboy by sacrificing herself in a deal with the Angel of Death.\ntt0076729,dX762k_3zWg,\"Bandit and Cledus begin the bootleg run, and are chased by the Mississippi Highway Patrol.\"\ntt0411477,bg5SLBapMiI,Hellboy and his team battle The Golden Army.\ntt0076729,jcNFjpxU0E8,Sheriff Buford bullies some teen car thieves stopped along the highway and receives information about the Bandit's car.\ntt0411477,VSDqDOLupNc,\"Johann gives Hellboy a little honest feedback and gets \"\"smoked\"\" when Hellboy punches him in the face.\"\ntt0411477,7oQ-Usd7Tes,Liz blows away all the tooth fairies in a wall of flames.\ntt0871426,KBUVZlTNj_8,Kate and Angie listen to the stories of other surrogate families.\ntt0411477,DY1HyTONAT8,\"Hellboy fights Wink in the Troll Market, taking some lumps, but ultimately beating Wink down.\"\ntt0870111,wNbKp6IGhrc,Nixon is extremely open during an interview with Frost and admits that he let down his country and government.\ntt0388795,zmRPZJp1pYQ,Ennis finally opens up to Jack about his life.\ntt0411477,9_sNsOl5uUI,\"Hellboy crushes a tooth fairy inciting a whole swarm of them to attack Hellboy, Abe and Liz.\"\ntt0870111,FUR11zrrNb0,\"Frost stops by Nixon's home and says goodbye, while Nixon talks about their lives that could have been.\"\ntt0870111,vFHYiOfBRng,\"Nixon gives a passionate, defensive, and revealing interview with Frost who pushes the \"\"cover up\"\" issue.\"\ntt0478311,_qG67vGwgcY,Ben and Pete bond at the couples' double dinner date.\ntt0870111,pT9GPloXjA8,\"Nixon rambles and rants when he calls Frost in the middle of the night, intoxicated.\"\ntt0478311,fsaidN93VnA,\"After having a family breakfast, Alison and her sister watch while Ben plays \"\"fetch\"\" with the kids.\"\ntt0478311,WjQovCr8Tgs,E! finds out about Alison's pregnancy and her bosses offer her a new opportunity.\ntt0870111,gTAMKrPh1AE,Nixon storms into the room to meet Frost before an interview and throws him off with an inappropriate question.\ntt0478311,BYXLKRNCVrw,Ben goes home and finds out that everyone has pink eye.\ntt0478311,yrLutFhQLgE,Alison gives birth to a baby girl.\ntt0478311,FmiVlyAfTnw,\"When Debbie and Alison try to skip the line at a nightclub, they are rejected by the Doorman.\"\ntt0118715,1M6oW6a0iAw,\"Walter clobbers the Nihilists, but Donny suffers a heart attack.\"\ntt0118715,7L2qP-xQ_7o,\"Before recovering his car, the Dude is visited by the Nihilists and their pet rodent.\"\ntt0118715,F1SfzV67Bqw,The flamboyant bowler Jesus stops by to threaten Walter and his crew.\ntt0452594,bBil15ORYI0,Brooke questions Christopher about his year-round holiday spirit and flirts with a customer.\ntt0452594,8sJaglGoByg,\"Gary and Johnny share a classic baseball rivalry, and Gary tries to impress Brooke with hot dogs.\"\ntt0087597,AJRmY9VXf1g,\"With all his neighbors watching, Alex destroys the command ship and beats the \"\"Starfighter\"\" video game record.\"\ntt0452594,nn3I6-DBLJM,All Gary wants is to be left alone. Brooke gives him his wish by breaking up with him.\ntt0452594,1wc_mZ86ypg,A fight breaks out when Gary brings Brooke three lemons instead of the twelve she requested.\ntt0870111,t6wgyc8p_hY,Nixon distracts Frost with some off-handed pre-interview banter.\ntt0870111,iOHElDaRs5E,\"James interrogates Frost about his intentions for interviewing Nixon, and makes it clear that he wants Nixon convicted.\"\ntt1152836,9_4S_-cr9Rs,The FBI raids the lodge Dillinger and his gang are hiding out in after a bank robbery.\ntt0870111,2DPSnOrJaXo,\"While Jack debriefs Nixon about the upcoming press interviews, Nixon makes an off-handed joke about Watergate.\"\ntt0388795,_IIp0gq_Jek,Jack's playfulness with Ennis quickly turns into a bloody brawl between the two men.\ntt1152836,IZhBhfty0LA,Dillinger assures Billie he will not be caught and they will be together for a long time.\ntt0086250,Yky4QtRX_DI,\"Tony has an argument with Elvira in a crowded restaurant. When it's over, Tony continues his rant.\"\ntt0087597,Zowmpbv1za0,\"When Alex survives an assassination attempt by a hit-beast\"\" from Xur, Centauri warns him more will come.\"\ntt1152836,gRNkQRhMUiE,\"On their first date, Dillinger tells Billie he is a bank robber.\"\ntt0086250,a_z4IuxAqpE,Tony makes his last bloody stand against a well-armed hit squad.\ntt0086250,kg7goEASO5E,\"After watching his friend carved up by a chainsaw, Tony is rescued by Manny.\"\ntt0086250,TKpXTy-sCxg,Manny tells Tony that he knows how to get women. But Tony has his own plans.\ntt0086250,ZcQtUdZ5Afs,Tony refuses to blow up a car when he finds out that there's an innocent women and her daughters inside.\ntt0091225,NXwxYIjqocA,Howard fights the Dark Overlord.\ntt0086250,kZgE_sUrXFY,Immigration officers probe Tony's criminal past.\ntt0091225,seqBLjTfnl4,Howard defeats the Dark Overlord.\ntt0105323,RUE4v1rUpSM,Frank decries the charges against Charlie and makes a scene in the courtroom.\ntt0091225,xkNNB9f_3Mc,Possessed Dr. Jenning blows up a highway inspection.\ntt0091225,xb8n4wftl08,Howard and Phil elude the cops in an ultralight aircraft.\ntt0105323,WZ6p4t3StSc,Charlie speaks man-to-man to Frank and talks him out of shooting himself.\ntt0105323,S-6xoT5Z2nA,Frank educates Charlie on his favorite attributes of his favorite love in life... women.\ntt0091225,ZIOCaOpBGpE,\"When Howard tries to seduce Beverly, she calls his bluff.\"\ntt0105323,-EZ9f-GgWVQ,Charlie meets Frank for the first time and is taken aback by his crude demeanor.\ntt0105323,hHVZ_viVD9E,Frank shows Charlie how to sell a salesmen by successfully getting them the chance to test drive a Ferrari.\ntt0105323,P_gn8RkrNAE,\"Frank keeps his cool while Randy tells a degrading story about him, until Randy mocks Charlie.\"\ntt0105323,Itr0jcR0S4s,\"When a hesitant Charlie lets Frank take the driver's seat in their Ferrari test drive, he gets pulled over by a cop.\"\ntt0091225,2mz3oytpugs,Howard the Duck protects Beverly from street thugs.\ntt0091225,zAV44x9vVrk,\"Phil, a scientist, attempts to analyze Howard.\"\ntt0046876,YAlZyCUJKt4,\"The Creature attacks David, but it is killed when Lucas and Carl arrive with guns blazing.\"\ntt0095489,I9uVquExMi4,\"When Littlefoot thinks he will never find the Great Valley, the spirit of his mother guides him for the last few steps.\"\ntt0046876,_mpyFEkzhoo,\"While Lucas and David are preoccupied, the Creature sneaks onto the boat and snatches Kay.\"\ntt0046876,q_wefCacDTE,\"The Creature takes Kay to its lair while David chases, close behind.\"\ntt0095489,hR1XzVQnfqY,\"When the group manages to find some green food, Cera is too prideful to partake in their meal and finds her own.\"\ntt0046876,CApLHv_NrAw,David and Mark hunt the Creature underwater with scuba gear and harpoon guns.\ntt0046876,ariuokNFhSw,\"While the unsuspecting Kay swims on the surface, the Creature stalks her, swimming just below.\"\ntt0046876,A8wAYZAwQFs,\"The Creature breaks out of its cage and attacks Edwin, but it flees when Kay sets it on fire.\"\ntt1013753,Bw5UwRasras,\"In spite of death threats, Harvey gives a speech at the Gay Pride Rally and challenges the people to stand up and come out.\"\ntt0095489,FnjrwacqDLc,Littlefoot and Ducky meet Petrie for the first time and ask him why he can't fly.\ntt0046876,iiA0J5rKoE4,\"David and Mark manage to capture the Creature, but not before it kills again.\"\ntt0046876,pNJRoSfVZxo,The Creature enters a camping tent and kills the two men inside.\ntt0046876,yMqQUG5t0js,\"Dr. Maia discovers the creature's hand, but there is another creature lurking beneath the waters.\"\ntt0095489,QL7Qq67AJrY,A despondent Littlefoot's spirits are lifted when he meets Ducky and invites him on the journey to the Great Valley.\ntt0095489,hLQQfSmgoGY,\"After a few little flyers fight over a cherry, one notices a sad Littlefoot and offers the cherry to him.\"\ntt0095489,WbW8GgAWKi8,\"When a great earthquake strikes, Littlefoot receives some final words of advice from his mother.\"\ntt0095489,kJg3GP4tH94,\"Despite a rocky and dangerous start, Littlefoot finally breaks free of his shell and is born into an adoring family.\"\ntt0478311,4wVmrgVqQlM,Ben and Alison visit the OBGYN Dr. Pellagrino who confirms that she is pregnant.\ntt1013753,DZwnFcKAt30,Harvey debates Senator Briggs in front of a supportive crowd about the causes of homosexuality.\ntt1013753,wBLliPipoYI,\"When Cleve tells Harvey about a revolution he witnessed in Spain, Harvey challenges him to join his Castro revolution.\"\ntt1013753,9VAkRDPA2fk,Harvey pays a visit to Dan's office to try and find some common ground.\ntt1013753,rh1lZYqwJAQ,\"While registering people on the street, Harvey meets Cleve who he tries to talk into joining his campaign.\"\ntt1013753,wOlCQYZWJRE,Harvey strategizes with his team about how to pass the Gay Rights Ordinance and how they can get Dan White's vote.\ntt1013753,C5x9bD6aoss,\"When Harvey loses his campaign, Jim maps out a path to victory for their next campaign.\"\ntt1013753,jl0ny6ij7jg,Harvey rallies the troops with a rousing speech to stand up and fight.\ntt0478311,VepWTt1DzTA,\"Alison and Ben tell their parents about the pregnancy, but have wildly different experiences.\"\ntt1013753,_GxSQs0FNN4,Harvey and Scott get a threatening welcome to the Castro by a neighbor who tells them of God's law.\ntt0478311,FRhGCEIB-4Y,Alison is offered an on-air position by her bosses who not-so-subtly tell her to lose weight.\ntt0076729,JVKMNw0uUGw,Bandit and his friends get Sheriff Justice on the radio to wish him a special goodbye.\ntt0478311,rpp930f_fhU,Ben wakes up naked in Alison's bed and they go to breakfast.\ntt0076729,XqtjMtEkDhY,\"With the State Troopers right on their tail, Cledus barrels through the road block and completes the run, delivering the beer in style.\"\ntt0076729,fygiSfJjTLc,\"With Sheriff Justice hot on their trail, Carrie accidentally drives through a kids' football game while making an escape.\"\ntt0076729,OYlBy85zxdo,\"When Bandit comes across a police roadblock, he runs from the Sheriff and escapes by jumping a dismantled bridge.\"\ntt0076729,dIgGZA4qQoc,Bandit makes a deal with Big Enos and Little Enos to make a bootleg run with 400 cases of Coors.\ntt0076729,S-pHuT2666s,\"While chasing Bandit, Sheriff Justice accidentally drives under a semi-trailer, chopping the top off his car.\"\ntt0076729,XbSfFmKJJ3c,\"When Bandit picks up a hitchhiker in a wedding dress named Carrie, he learns that she is running from her own wedding.\"\ntt0076729,Jgmk5D4a8K8,Bandit visits Cledus and convinces him to make the bootlegging run with him.\ntt0118715,VLR_TDO0FTg,The Dude shares his theories on the kidnapping with the Big Lebowski.\ntt0118715,dQbpx5Be5rI,Walter and the Dude bungle a phone negotiation and Walter's convinced they're dealing with amateurs.\ntt0411477,yAvJkoCNthU,\"Prince Nuada unleashes the Forest God with one command — \"\"Kill Hellboy.\"\"\"\ntt0118715,YedqV4Gl_us,\"When rival bowler Smokey steps over the foul line, Walter goes nuts.\"\ntt1532503,LnV_NPHo7Kk,Oliver and Anna flip through a sex book at the bookstore.\ntt1532503,jAZRevRbGME,Hal gets defensive when Oliver tries to give him relationship advice.\ntt0118715,r9twTtXkQNA,Two thugs shake down the Dude for an alleged debt.\ntt0118715,xJjCnWm5cvE,The Dude asks the Big Lebowski to compensate him for his soiled rug.\ntt1532503,-Y1lyQpBVJI,Hal gives his son a call to share his newfound appreciation for clubbing.\ntt0118715,4Wu598ENenk,\"The Dude's bowling buddies, Walter and Donny, weigh in on the rug situation.\"\ntt0411477,wEUwtFg7PeI,Hellboy rescues a baby and then kills the forest god with a well placed shot to the head.\ntt1532503,4pYu83JHg0E,Hal advises Oliver to put himself out there romantically with a personal ad.\ntt0411477,w4liPmQEPEU,\"Hoping to unite the three pieces of the crown and raise the Golden Army, Prince Nuada kills King Balor and steals his piece.\"\ntt0411477,yMjMgMaakMY,\"Prince Nuada stabs Hellboy in a fight. When Liz runs to his side, Prince Nuada tells her how he can be saved.\"\ntt0871426,Dnfl290-aIY,Angie's labor begins and she's rushed to the hospital by Kate.\ntt0870111,QxXRhbuqFEw,Nixon charms Frost and Caroline with an anecdote from past and says he looks forward to their duel.\ntt0871426,z0BandJg8y4,\"Barry, a self-described great man,\"\" promotes Kate to vice president on the conference table.\"\ntt0871426,IMSd1IbxmFA,Barry rewards Kate as only he can.\ntt0871426,VUGhvs8zMZ8,The birthing instructor recommends an olive-oil massage to stretch the delivery region; Angie suggests an alternative.\ntt0871426,neVOaWPM_Mk,Angie is stumped by Kate's new toilet lock.\ntt0871426,6-wvim2zLFw,The fertility specialist gives Kate some bad news.\ntt0871426,HSh7FRalwdg,\"A birthing instructor identifies Kate and Angie as \"\"lesbian lovers\"\"; she frowns on anesthesia.\"\ntt0871426,Ol7EpMrfbGQ,Angie struggles to choke down Kate's giant prenatal vitamin.\ntt0871426,kK6QQIvO9gE,\"Kate overshares on her first date, frightening off a potential boyfriend.\"\ntt0412019,73LReedA7N4,\"Having planned out his itinerary to a tee, Winston instructs Don to visit his past girlfriends to figure out which of them wrote the letter informing him of the existence of his son.\"\ntt0412019,YhK1fYhl5dg,\"Ron shows Don a photo of Dora in her hippie days, unaware that Don was the photographer.\"\ntt0412019,wqj7Q2jOTc4,Don visits a hostile Penny.\ntt0412019,dl2NG3vkMTk,\"Frustrated with the shallow stasis of their relationship, Sherry breaks up with Don.\"\ntt0315733,jPiotGz9O9s,Jack returns home to his wife and kids.\ntt0412019,b95SzqTrjRo,\"Don dines with ex-flame Laura and her daughter Lolita, who clearly doesn't understand the irony of her namesake, as she tried to seduce Don earlier that day.\"\ntt0412019,tZ97edZTrHQ,Endearing meddler Winston and Don have a conference call about the list of ex-girlfriends Don will visit to find out which is the mother of his son.\ntt0412019,kRg5-TIF9LQ,\"Don visits Carmen, who has opened a business based upon her ability to communicate with animals.\"\ntt0315733,A2QayxN3z68,Paul struggles with his weak heart as Cristina apologizes for dragging him into her revenge plot against Jack.\ntt0315733,OoKpYXTmYak,Paul meets with the detective to obtain information on Jack and a gun with which to kill him.\ntt0315733,GnbUZqkXBQM,Born-again Christian and ex-convict Jack tries to steer a troubled youth in the right direction.\ntt0315733,3MzOdxCbTgU,\"Paul tries befriending Cristina, but she makes it clear that she wants to be left alone.\"\ntt0253474,TgBLraZlGww,Captain Hosenfeld asks Wladyslaw where he is hiding after he performs for him.\ntt0253474,AkR9wDct-0o,A fearsome neighbor demands identification from Wladyslaw when they hear him in another flat.\ntt0253474,-Hk2z0z216w,Wladyslaw's date with Dorota takes a new turn when the cafe excludes Jews.\ntt0253474,pV2XJZjCvP8,The family discusses what to do with their finances with the Nazi regime gaining control.\ntt0340855,yvcHCRvP3Gs,\"After failing Selby at a life without pulling tricks, Aileen confesses her true reason for leaving prostitution.\"\ntt1226229,C4Y-l40swH0,Record company intern Aaron unveils his plan to executive producer Sergio.\ntt0097351,29nIXG5KJYw,The players invite Terence to follow them into the corn; Ray feels slighted.\ntt1564585,pXEqXWfzyBY,\"The group tries to escape the aliens by car, but are thwarted in their attempt to leave a parking garage.\"\ntt1564585,HEU-JXcdfIY,\"Jarrod and Elaine signal a helicopter, but an alien grabs hold before it can rescue them.\"\ntt1564585,0NH8i-Q5Nck,\"Ray, drawn to a mysterious blue light radiating outside his window, is abducted without warning.\"\ntt1564585,rPTis4f5DG8,The group tries to evade a giant alien by the pool.\ntt1564585,FJBpmWxw3o8,Jarrod and Terry witness the ships abducting people in the city of Los Angeles.\ntt0100301,1YCz4y8b58k,\"After breaking and entering a posh home, Eddie discovers that most of the appliances can be controlled with a single remote.\"\ntt0100301,e8Bn6XVv9ew,Eddie answers the car phone with an Indian accent.\ntt0097351,cz1TJ4r7bOU,Ray meets a young version of his father.\ntt0100301,aQ5PyaHQWVA,\"When he realizes the man he's impersonating is Jewish, Eddie has to prepare for a Bar Mitzvah.\"\ntt0097351,7SB16il97yw,\"Defying the threat of foreclosure, Ray listens to Terence's dreamy prediction.\"\ntt0106308,wP3H6lZ_mt8,\"When Ash says the wrong phrase, he accidentally raises the dead from the Necronomicon.\"\ntt0106308,6iW8MoAsz9Q,Ash defeats the Captain to obtain victory over the army of the deadites.\ntt0106308,swhep7_jkeY,\"Ash is attacked by devious, little clones of himself.\"\ntt0106308,2gSf5UMZ8ms,\"Ash blows away a possessed witch with his shotgun, then builds himself a new hand with the help of a blacksmith.\"\ntt0106308,2xB5GBvOqEY,Ash is forced to choose the right book of the dead out of three possible choices. Choosing the wrong two books have evil consequences.\ntt0106308,KIxetRsd_2c,\"Ash grows an evil twin, but promptly takes care of his double with a shotgun blast.\"\ntt0106308,xFkARs9CHaE,\"While stuck in the pit, Ash fights off a witch and gets his chainsaw hand back.\"\ntt0800039,oBoPQUIowHY,\"When Aldous snubs his demo, Matthew launches into a quiet rage.\"\ntt0800039,reYcW3bp8gg,\"Resort waiter Matthew slips Aldous his demo CD, adopting an unfortunate accent.\"\ntt0800039,np-ndDy9YJ0,\"His bags packed for England, Aldous tells Peter he's through with Sarah.\"\ntt0800039,RvNuTuiKyIo,The two couples' parallel intercourse gets competitive; Aldous dumps Sarah.\ntt0800039,PKIpCPS-oZc,\"Peter takes surfing lessons from Chuck, a beach burnout.\"\ntt0800039,P8Xg1vVkIh8,Chuck offers Peter some questionable life advice.\ntt0800039,b1Qxbu777zo,\"At breakfast, Peter encounters a newlywed couple, recovering from a night of inept lovemaking.\"\ntt0800039,4Z3s1fJgCEE,Peter tries to explain to Rachel why the hotel keeps getting complaints about a woman crying hysterically.\ntt0800039,FMFJli50jdY,\"Peter stalks Sarah and her boyfriend back to their room, over loud protests from Brian.\"\ntt0097351,HQv0WWhoZnI,\"Ray does something \"\"completely illogical\"\": He plows under his corn to build a baseball diamond.\"\ntt0195685,8Kx0qYRv8XQ,\"Feeling that Ed is trying to finish the case without her, Erin gives him a piece of her mind.\"\ntt0113749,C6k9TFjWiGs,\"Brodie and TS wreak havoc at the Truth or Date\"\" television taping to get close to Brandi.\"\ntt0195685,0wVgg5t2LAM,Erin shocks Theresa and Kurt with startling key evidence against PG&E.\ntt0338013,Sy7YnrVXudg,\"Faced with the memory when he walked away, Joel makes a different choice and goes back to Clem who whispers a secret.\"\ntt0338013,lFHLE24hDQY,\"As the world disappears, Joel relives the moment when he first asked out Clem, and she challenges him to \"\"Remember me.\"\"\"\ntt0113749,XdlIQCbOvrw,\"Jay and Silent Bob rescue Brodie and TS, but have to use super skills to escape Team LaFours.\"\ntt0113749,1vJpAXf5wyk,Comic book legend Stan Lee gives Brodie advice on love and relationships.\ntt0113749,CAeFPZ-yXYM,Brodie introduces TS to Jay and Silent Bob and asks them to sabotage the mall game show.\ntt0113749,xA5QELbB-vU,Jay and Silent Bob beat up the Easter Bunny in retaliation for Brodie.\ntt0113749,dQRfWqSj3Gw,\"Jay presents his fool-proof plan to take out LaFours, but a little kid causes the plan to fail.\"\ntt0360717,diLE4umndNM,\"Kong escapes the theater and goes on a rampage, destroying the city while he searches for Ann.\"\ntt0360717,yNyLTVFv8KQ,\"Searching for a place where no one will bother them, Kong climbs the Empire State Building and shares a beautiful sunrise with Ann.\"\ntt0360717,DTWYQhTT388,The film crew is swarmed by all manner of giant insects and Lumpy gets eaten.\ntt0360717,ZYZsJYZVt5g,\"Trying to protect Ann, Kong fights off a whole pack of T-Rexes.\"\ntt0360717,F_EuMeT2wBo,\"In the quiet before the storm, Kong and Ann spend a private moment together skating on the frozen lake in central park.\"\ntt0365748,fbrN51dPm0I,\"When Shaun's mom goes full zombie, he has to make a difficult choice.\"\ntt0360717,b-f5iMDXvcA,\"When Ann is trapped by a T-Rex, Kong leaps in and saves her, killing the T-Rex.\"\ntt0360717,8LFQun4HQj8,The crew gets caught between stampeding dinosaurs and hungry raptors.\ntt0365748,HmyQDH_PSC4,\"The group makes their way to the Winchester, cleverly disguising their aliveness.\"\ntt0365748,gz_dPVrciwM,\"Defending his mom, Shaun kills a zombie attacker; he ascertains that the coast is not clear.\"\ntt0209163,RYHaarxQTFk,Imhotep tricks the Scorpion King by saying he is his servant and sending him to attack Rick.\ntt0209163,6XyUIXqIoAM,Imhotep uses water from the river to create a giant wave that attacks the blimp carrying Rick and the others.\ntt0209163,y8svNN8saeU,\"Nefertiri battles it out with Anck Su in front of a royal audience, with Anck Su finishing on top.\"\ntt0209163,rxZc0tyTqEg,\"Meela locks the three men in a room with the Mummy as it starts to full regenerate, and attack the men.\"\ntt0365748,uLquz4Iz-30,Shaun and Ed ward off zombies with kitchenware and an eclectic record collection.\ntt0209163,qs1QcRTOMEg,Rick and Evelyn battle the Mummy on a moving bus in London.\ntt0365748,JF4EyXhZudo,\"Shaun and Ed confront the \"\"drunk\"\" girl on their lawn.\"\ntt0209163,i3JbGwGNRI8,\"When Alex annoys Lock-Nah, Lock-Nah becomes so irritated that he pulls out a knife.\"\ntt0209163,Q720Fe7IDMk,Evelyn is surprised at her fighting skills as she and Rick fight off Lock-Nah and his men.\ntt0209163,cgBAJefErZY,Rick isn't pleased with the idea of taking a double-decker bus throughout London to evade chasing mummies.\ntt0209163,EoBngEuWM_o,The O'Connells are chased by waves of water from the Nile after Evelyn disturbs the bracelet of Anubis.\ntt0096969,irCUvLD1t5U,\"Stranded and irritated, Ron and Charlie exchange barbs as to who committed the most atrocities and hence suffered the worst after combat in Vietnam.\"\ntt0096969,aBADjCeFnuU,\"Angry and helpless, Ron unloads his pent-up anguish on his mother.\"\ntt0096969,9fpDYMwJXQQ,Ron is pushed through a crowd of reporters on his way to deliver a national speech.\ntt0096969,ZsRDr3miUyc,A bedridden and angry Ron protests his poor treatment at the VA Hospital.\ntt0096969,HhZ3H18ynTA,\"Ron delivers a patriotic speech to a large group, including his parents, but suffers a war flashback and has to stop.\"\ntt0212338,6_-kw-0PvJc,Greg is exhausted and irritated when a perky ticket agent makes him wait to board the airplane.\ntt0096969,Xk5epHF844w,Ron visits a family to tell them that he killed their son in battle.\ntt0212338,SxJvnJyF7xA,\"Responding to pressure from the Byrnes during a volleyball game, Greg accidentally spikes the ball on Debbie's nose.\"\ntt0457400,OxCVucvlF1o,\"Rick faces off against the T. Rex, as Will and Holly watch from a safe distance.\"\ntt1078940,wbt-sAOjnQQ,Cynthia and Jason give their friends a presentation on taking a group vacation to a resort called Eden West.\ntt0457400,-U_IRXhodds,Holly films as Rick and Will are chased by some hungry dinosaurs.\ntt1078940,Fgfe6pufnLM,Shane calls upon Dave to co-sign for a new motorcycle.\ntt0457400,VMFwVNGGfBc,\"Rick and Will pose as Sleestaks to rescue Holly, but their success is short-lived.\"\ntt0457400,saBoM7O_imM,\"Rick douses himself in hadrosaur urine to prevent another T. Rex attack, but Will and Holly are reluctant to follow his lead.\"\ntt0457400,0JXwzlRcYWk,\"Rick, Will and Holly encounter Chaka and save him from other primates.\"\ntt0457400,bllBC-ThwjQ,\"Chaka warns Rick, Will and Holly about the army of Sleestaks.\"\ntt0457400,LuQ6qCNwWY8,\"Rick, Will, and Holly follow Chaka across a bridge, which they believe the T. Rex is incapable of crossing.\"\ntt0457400,KLoOI5Laplo,Rick gets into a fight with Matt Lauer while promoting his new book.\ntt1078940,7hwkR_wvrM8,Stanley lays down the law about mandatory couples skill-building.\ntt1078940,4hkg3Zut97U,Joey gets a little too into his massage.\ntt1078940,3SiGgXIYppA,The couples learn that there are certain restrictions at Eden West.\ntt1078940,rl6SpFVJoUA,Salvadore leads the group through some questionable yoga moves.\ntt1078940,BG6uMsq8PPs,Dave freaks out when he is circled by a school of sharks.\ntt1135487,c-unYxWW6ws,\"Ray and Claire reunite in Zurich, unsure if they can trust each other with the formula.\"\ntt1078940,zVwWDprMFiI,\"When Jason and Cynthia make some progress, Jason holds their therapist up at hypothetical gunpoint to tell them if they're going to make it as a couple.\"\ntt1226229,UKGE05RbsV8,Matty and Kevin brag about their night at Jay-Z's after-after party.\ntt1135487,cgBz4BKSLRQ,Ray and the team search for a photocopier for Claire to transmit a copy of the formula while Jeff is blindfolded.\ntt1135487,cYjv9uWxW94,\"Ray and Claire realize that if they learn to trust each other and join forces, they could make lots of money together.\"\ntt1135487,0fbR1RvOCQA,\"Claire accuses Ray of sleeping around, until she reveals that the mystery thong is hers.\"\ntt1135487,iX-nnY0x-SE,Ray runs into Claire in Rome and confronts her about seducing him and stealing from him years earlier.\ntt1135487,GfoSukpWVos,\"Howard gives a rousing speech about a mysterious new product, as Richard reads the exact same speech which has been intercepted by his staff.\"\ntt1226229,55X_DAk6K_k,Aldous Snow and Jackie Q go on Showbiz Tonight where they have a very public breakdown.\ntt1135487,CtIhkGu6ahY,\"In a hotel room in London, Ray and Claire reunite after simultaneously quitting their jobs as government spies.\"\ntt0096969,f8_4uckfT8I,\"Recounting his experience in Vietnam, Ron reveals to Timmy how he wishes that he had his whole body back.\"\ntt0372183,NzfSLgWkTlY,\"Jason and Kirill chase each other through the streets of Moscow, ending in a spectacular crash.\"\ntt0372183,Nq295Mg6PHg,\"Jason catches up to Abbott and gets him to admit to murder on tape. With nothing left to live for, Abbott kills himself.\"\ntt0385267,mVv14yZ1c44,Alex takes Carter back to her dorm room and seduces him.\ntt0119528,87w655s3xKc,\"Desperate to delay the trial, Fletcher stages an assault...on himself.\"\ntt0119528,X6YLAmKFpRM,\"Putting his bluntness to use, Fletcher delights the partnership committee with an impromptu roast.\"\ntt0119528,pDy41hvdq4s,\"Dealing with a highway patrolman and a tow-yard employee, Fletcher's truth curse gets him in trouble.\"\ntt0119528,dAE7uOO_4v4,Fletcher puts his curse to a simple test: Can he lie about a pen?\ntt0119528,geiS49_p84Q,\"Cursed with telling the absolute truth, Fletcher finds it hard to do his job as a lawyer.\"\ntt0372183,JdfCyow-Tiw,Jason eludes Pamela's agents and captures Nicky who he interrogates at gunpoint.\ntt0119528,IsBB4i4k2PM,\"Max makes a wish that for one day, Dad couldn't tell a lie\"\"; the wish takes effect, binding Fletcher to the truth.\"\ntt0372183,ql0DycjR8wQ,\"When Danny tells Abbott his theory that Jason Bourne was framed, Abbott kills him to keep him quiet.\"\ntt0372183,jyZU7lfGjyk,\"Jason and Jarda fight hand to hand, close and dirty. Jason strangles him and escapes, blowing up the house.\"\ntt0097351,Y9yrupye7B0,Moonlight Graham describes to Ray how he would have like to have batted in the major leagues.\ntt0372183,OwaxFAC6rzk,Jason escapes CIA custody in Naples and learns a few things about the agents on his trail.\ntt0212338,117FZnev4Os,Greg and Jack engage in a street racing competition on the way home.\ntt0372183,DxRzEdg0p4Q,\"Their cover blown, Jason and Marie are chased through the Goa streets by Kirill.\"\ntt0212338,jgyZ7yb2mmI,Jack gives Greg a late-night polygraph test.\ntt0212338,a5SoIFm-SrQ,Jack gives Greg a final lie detector test in order to marry his daughter.\ntt0212338,lJDRkVKjMOU,\"Greg tries to sneak a smoke and rescue Jack's cat from the roof, but he ends up destroying the wedding gazebo.\"\ntt1226229,LD-DYjqW7HQ,\"When Aldous asks for a truthful review of his latest album, Aaron goes a little too far in giving his opinion.\"\ntt0212338,5dSvsp3dxvc,Jack confronts Greg about a marijuana pipe and warns him about breaking the circle of trust.\ntt1226229,aTaX_L7msxs,Aaron is worried about the consequences of sneezing after being dosed with a muscle relaxant drug by Aldous.\ntt1226229,4_Anuo4_Tlo,Intern Aaron Green is thrilled when he learns from Sergio that he will escort musician Aldous Snow from New York to L.A.\ntt1226229,6ZcNHOP3wdw,Aaron is alarmed when his girlfriend Daphne proposes that they re-locate to Seattle for work.\ntt1226229,CQcGrzmNihY,\"Sergio explodes at the A&R rep who signed the failed musical group \"\"Chocolate Daddy.\"\"\"\ntt0440963,4hQ0ILw1P7o,\"Bourne returns to the place where he was \"\"born,\"\" confronting Dr. Hirsch and learning the truth about his past.\"\ntt0440963,JRLNdcmRcFY,\"Bourne calls Vosen and uses his voice to open the safe in his office, stealing the Blackbriar files.\"\ntt0440963,lnYzb6P_1Wg,\"A thrilling car chase between Bourne and the assassin, Paz, ends in a crash where Bourne gains the upper hand.\"\ntt0258463,3jLbKr11l20,\"Bourne entraps the Professor, who reveals their connection.\"\ntt0440963,uLt7lXDCHQ0,Bourne catches up to Desh who is chasing Nicky and the two fight to the death.\ntt0440963,3TmzG_fqqU8,\"When Bourne calls Pamela to tie up some loose ends, she tells him his real name is David Webb.\"\ntt0440963,LOVgTjeg4fY,\"Bourne pursues Desh, but Desh has a deadly surprise up his sleeve.\"\ntt0258463,UFnmq5PPScA,\"Bourne wins a well-matched struggle with an assassin, but Marie's hysteria frees the man.\"\ntt0258463,txHNcE_d7ro,\"In a safety-deposit box, Bourne discovers his identity -- all six of them.\"\ntt0258463,2ETruidd5lQ,The cops chase Bourne and Marie down one-way streets and staircases.\ntt0119174,hKSscAR4cS8,Nicholas forces his way into CRS headquarters with a gun on Jim in order to uncover the mystery.\ntt0258463,HSckms_rfwY,Bourne asks a cash-strapped young woman for a lift while Conklin musters all of his forces to find him.\ntt0258463,IjrWOZby8s8,\"At a roadside diner, Bourne shares his identity crisis with Marie.\"\ntt0258463,JmxK_pBaG4E,Bourne escapes the U.S. consulate using a map of the building and a radio.\ntt0119174,z0ZnN4mivGw,Nicholas finds out that the game has begun when the news broadcaster on television starts talking back to him.\ntt0119174,BFUVGfsVzhQ,\"Unsettled by a conversation with his lawyer, Nicholas passes out after drinking some coffee prepared by Christine.\"\ntt0119174,TfzRP1tCmsk,Nicholas goes for the ride of his life when his cab driver locks him in and sends him into the river.\ntt0258463,SHgs3LFLBzY,\"When a pair of policemen roust him from a park in Zurich, Bourne swiftly disarms them.\"\ntt0119174,M57AIegsBz4,\"Nicholas gets Christine fired from her job at the restaurant, but he also receives a clue about the game.\"\ntt0113749,wqwUdp5-2D8,Brodie and TS discuss the philosophical ramifications of Superman's baby and if the cookie stand exists within the parameters of the food court.\ntt0112641,jFPV16f182w,\"With Nicky playing a round of golf, an FBI plane lands on the course just as Ace meets with the Control Board.\"\ntt0329575,AuYaiXT_1tM,\"Charles gives an inspiring speech about Seabiscuit, and the fans start to form, helping Seabiscuit sell out the infield.\"\ntt0112641,b2dewDwIQyM,\"After Ace tries to get Nicky out of town, the two meet in the desert as Nicky gives Ace a piece of his mind.\"\ntt0112641,gcAaILQ0ATo,Ace confronts Lester and a humiliated Ginger at a coffee shop. Two thugs beat the hell out of Lester.\ntt0329575,KSRWc7zwzC4,Charles rallies to get a rematch with the owner of a horse that Seabiscuit beat in a recent race.\ntt0112641,KYa1IsxGVuc,Ace catches a pair of cheaters at the blackjack table and doles out some old school gangster justice.\ntt0112641,k8Pku1zXM5g,Nicky's crew goes on a robbing spree throughout Las Vegas with no law holding them back.\ntt0144528,rFvaTVV7yO4,Granny Klump tricks Buddy Love into giving her a long passionate kiss.\ntt0112641,ZN6mp2NjMhs,Ace and Nicky describe the inner-workings of the casino and its corrupt cash flow.\ntt0144528,vkmf3Hbnh_4,\"At Sherman's demonstration, Dean Richmond is attacked by a giant hamster.\"\ntt0144528,-JbSkxI2DrY,\"Sherman exposes that Papa Klump got laid off, causing him to choke on a piece of food.\"\ntt0144528,FFUPB-cVozg,Sherman has a nightmare about dooming the world by farting his way to a detonator that blows up the moon.\ntt0112641,aIPmu6bYZOs,\"In a casino, everybody has to watch everyone else. Ace keeps his eye on the casino manager, and the eye in the sky watches all.\"\ntt0144528,1sO7SyT9mS0,\"Sherman tries to serenade Denise, but ruins it when Buddy Love takes over his body.\"\ntt0315327,n0cG11lTS1E,\"When Bruce finds that answering the public's endless prayers isn't so easy, he devises a computer system to answer them all at once.\"\ntt0315327,nhTupXSJkYQ,\"Bruce breaks a story about the discovery of Jimmy Hoffa's buried body, repairing his reputation as a reporter and securing his old job.\"\ntt0315327,CO5K227sues,\"Just when things look like they can't get any worse, Bruce meets with God who offers Bruce some wisdom and takes his job back.\"\ntt0096734,_b25Fbg8xqU,Ray and Art are swarmed by bees on the Klopeks' porch.\ntt0087065,tB6Uj2RGhPU,\"Davey takes the mysterious cartridge he received to Morris, his friend at the video game store, who makes a surprising discovery.\"\ntt0360717,HdXfVjRZ0yU,\"Mortally wounded from his fight with the airplanes, Kong fades quickly and Ann watches as he dies and falls to the ground below.\"\ntt0192614,zJO4Chs7-lg,\"Luke and Caleb go through The Skull's initiation rites where they are branded as \"\"soul mates.\"\"\"\ntt0192614,d63s74ijwb8,\"Ames Levritt makes Luke an offer, which Luke rebuffs.\"\ntt0192614,TWJEVnNwAtk,Luke gets a mysterious phone call and begins his initiation into The Skulls.\ntt0087995,Q4HY544URjA,\"With everyone watching, Miller and Otto get in the glowing car and take off on a cosmic ride.\"\ntt0087995,xcJXT5lc1Bg,\"Bud tells Otto the secrets of being a good Repo Man, including the \"\"Repo Code.\"\"\"\ntt0087995,sAO0owc4xeY,\"Otto discovers that his parents have given the money they promised him to the TV Preacher, Reverend Larry.\"\ntt0098067,jnA7jmNVYFs,\"When his boss promotes a co-worker instead of him, Gil quits his job.\"\ntt0493464,37KddyjUxnQ,\"Wesley runs through a factory, shooting and killing everyone in sight.\"\ntt0195685,AZMg4vFcRQs,Erin defends her research and puts Theresa in her place by displaying an impressive amount of knowledge on the clients.\ntt0315327,qSYAT8jpqgk,\"When Evan's story is chosen over his for sweeps, a discouraged Bruce gets a shot at his first live broadcast.\"\ntt0350258,QxPA0i_TVvk,Margie is drunk and bitter during a recording session. Ray sends her and the other Raelettes home which allows him to experiment with the way he records back-up vocals.\ntt0385267,aKIM6q3awws,Carter stands up for Dan when he's about to be fired and puts his own job on the line.\ntt0493464,YDmULxspTJM,Cross chases Wesley and Fox in a high-speed chase.\ntt0097366,NDXWV-mGlPE,\"Posing as the owner of Everest, Fletch visits BioChem and gets a crucial piece of information from the manager.\"\ntt0120735,kATiU-cZCPc,\"When Tom shows the lads the shotguns he's bought, Soap says he thinks knives are better because they are silent.\"\ntt0430922,N_HXTmS-AF4,Danny and Wheeler meet the little kids they are assigned to help.\ntt0118689,TyDE15kKDpI,\"David thinks he's about to take a nice, relaxing shower but is unexpectedly joined by Mr. Bean.\"\ntt0118689,VTyBpsX1TdE,Mr. Bean blows his nose loudly in a stuffy waiting room.\ntt0117381,iQISI7DOVCY,David follows Nicole into the bathroom and violates her.\ntt0096734,Xpga1vtS3tA,Ray and Art discover hard proof of the Klopeks' misdeeds.\ntt1486190,TtHffqqdh1Y,\"When Andy stops by to invite Tamara for a drink, he is unaware that Nicholas is in bed upstairs.\"\ntt0338526,9C2L5v6BfLE,Van Helsing and Anna discover Frankenstein's Monster while they are trapped underground.\ntt0338526,VUgsvd3ZjvA,\"Van Helsing transforms into a werewolf to kill Dracula, but at the same time, kills the love of his life, Anna.\"\ntt0096734,bwf_EFTMZ9k,\"Ray dreams of chainsaws, ritualized human sacrifice and soda jerks.\"\ntt0475394,yoWz1IdoTIg,\"Sensing something amiss with Buddy, Ivy decides to confront him face-to-face.\"\ntt0096734,PPO1EQmj05I,\"Alone in an ambulance with Ray, Dr. Klopek shows his true colors.\"\ntt0096734,1nVThHLqda0,Art reads from a demonology manual; Ray drowns him out.\ntt0096734,eCfvE03ufF8,Art and Ray bicker over which of them should greet the new neighbor when they spot one of the Klopek's coming out of the house.\ntt0132477,CGivL32FazM,\"While collecting scrap railroad tracks, the Rocket Boys get a scare when they hear a train coming.\"\ntt0103850,Z9agItiMEEk,\"Bob meets some fanatic fans, including Mrs. Davis, her son Roger, and his two friends Calvin and Burt.\"\ntt0212338,XHrw3AFW0Z0,\"At the request of Jack, Greg delivers a strange version of grace at the dinner table.\"\ntt0252866,eC_Ua1svsSE,Jim and his dad have a heartfelt talk in the van.\ntt0993842,zNvYQ2ILSCo,Hanna's first kiss is cut short by her own killer instincts.\ntt1034389,wytwlFfk5dY,Marcus wants to take Esca with him to find the lost eagle; Aquila strongly advises against it.\ntt1578275,t6bhgzR3gkY,Beth and Nick try to convince Ronny to dance.\ntt0970866,Juv96hHY62A,Jack disagrees with Greg about letting Henry climb a rock wall.\ntt0970866,JtHq6vKm3WU,Kevin meets Andi.\ntt0970866,BHBmOFFExso,Jack asks Greg if he is still attracted to Pam.\ntt0947810,onyfp4uSmcY,Miller splits up his squad for an attack on a safe house.\ntt1234654,srTcK8ybXpI,Roger blasts away at the young party guests about their generation.\ntt0947810,5oav3ZjdRz4,Miller attacks his captor.\ntt1234654,4wddfKqi1hI,Roger becomes frustrated waiting in the veterinarian's office with Florence.\ntt1234654,KWaZiVG1RfY,Roger runs into a friend and gives her the scoop on what he's been up to lately.\ntt0361748,Uoqe4phEwEY,Col. Hans Landa discusses nicknames given by enemies.\ntt1216492,TyoZkvsxrSo,Anna accidentally sends Declan's car careening down the hill.\ntt0252866,hEDeIvU1si8,\"In a case of mistaken identity, Jim is forced to play a trombone solo in front of a crowded amphitheater.\"\ntt0899106,oquM3yN0E4A,Marty points out Eloise's self-destructive dating pattern.\ntt1234654,NRqxxQy8sLs,Roger spends his birthday with his friend at the restaurant Musso & Frank.\ntt0361748,3YM3AYZaTZ0,Lt. Aldo Raine brings his troops up to speed on their mission.\ntt0252866,K8yeho0MbYc,\"Oz and Heather attempt to have phone sex, despite many obstacles.\"\ntt0252866,9oVoJMVsKtk,The men and women separately talk about the rule of three and how you can figure out how many people someone has slept with.\ntt0054215,f-PnGRaJaSA,\"Consumed with thoughts of her misdeeds, Marion comes upon the Bates Motel.\"\ntt0107290,YKRnEOUxZm0,\"While hunting one raptor, Muldoon is ambushed by a second Raptor and gets taken down.\"\ntt0083866,oR1-UFrcZ0k,\"Just as they are about to be stopped by police and government officials, E.T. lifts the boys' bikes into the air and brings them to safety.\"\ntt0073195,2I91DJZKRxs,The crew gets their first face-to-face look at the massive shark.\ntt0052357,4WAxDlUOw-w,Scottie has an unnerving nightmare about falling in the same spot that Madeline did.\ntt0096320,_WyD94vNqWg,The brothers learn that Julius was genetically engineered to be perfect and Vince was the left over crap.\ntt0083866,mGA_uH0-n28,E.T.'s magic touch instantly heals Elliott's finger as they hide in the closet and listen to Mary read the story of Peter Pan.\ntt0096874,5PT9OxwD6hM,\"After Biff is knocked out cold, Marty seizes his chance to retrieve the almanac.\"\ntt0096874,l9c1k_m6POA,Marty confronts Biff about the sports almanac he's used to amass his fortune.\ntt0131857,KPowlurwWzU,Coop comes face to face with his idol: Reggie Jackson.\ntt0131857,CsWFLaHiQa8,The Beers do their best to revive an ailing Joey at the hospital.\ntt0096874,S4m848bh1iY,\"Marty wanders around a disturbing reality in which Biff is \"\"America's greatest living folk hero.\"\"\"\ntt0131857,1Qb-2KSKByg,A very drunk Cooper tries to make three home-runs for sick Joey.\ntt0131857,6wN78_E4AAs,\"Coop and Remer swap apologies, and saliva.\"\ntt0131857,7WD9MVTfdjs,The song on Coop's car radio is disturbingly accurate.\ntt0131857,hXce5-f8mkA,Coop delivers the ultimate psych-out of clipping his middle finger with a pair of wire cutters.\ntt0131857,NZxjmhwogCk,Mr. Cain informs Joe about changes in the BASEketball league.\ntt0131325,yVGlKrziG5E,\"In a restaurant, Bowfinger plants himself next to Jerry Renfro in an effort to try and get his movie financed.\"\ntt0131857,RG9LKdqzru0,\"Coop and Remer meet Jenna, a counselor for terminally-ill children.\"\ntt0131857,B-tq7mbTvrA,Joe puts on an Eric Cartman voice from South Park to psyche out the other team.\ntt0131857,ztSSzTA5Z90,Squeak finds it hard to shut off the guys' gas at the house.\ntt0078723,m_PeQCPq8QA,\"Believing they found Hollywood, the Japanese fire at the carnival, making the ferris wheel roll down the pier and into the ocean.\"\ntt0078723,CPnwlNvwBLI,\"Capt. Kelso stops for some provisions at a gas station, but loses his plane.\"\ntt0091541,mT5NiDGbnVM,\"Walter and Anna have a huge blowout in front of all the workers, and decide to split up once the house is finished.\"\ntt0113360,IptkOvp53-A,\"Meeting only hours earlier, Paul and Kirina begin an evening of passion.\"\ntt0078723,NOVNs9sT32k,The United States Army and the Navy start a full on brawl at the USO dance hall.\ntt0103850,1ao1yR27lak,\"After leaving the television set, Bob Roberts signs some autographs, gets a kiss from a stranger, and is shot, supposedly by the poor crippled reporter, Bugs Raplin.\"\ntt0052357,B8cWjLMuJgo,\"Scottie follows Madeleine, but is shocked when she tries to drown herself in San Francisco Bay.\"\ntt0099141,idfa7VqkSOw,\"On her own in the zoo, Marianne faces some fierce tigers, armed monkeys, and the man who wants Rick dead.\"\ntt0103850,PxtuovqUgYU,\"Bugs Raplin tries to open the viewers' eyes to the deception told by the government to the American people, while Senator Brickley Paiste uses an anecdote about a frog letting itself die slowly in a boiling pot of water because it doesn't notice the temperature rising until it's too late.\"\ntt0103850,G99Olp16O7M,\"Bob Roberts goes on the local TV station, Good Morning Philadelphia, and has conflicting views with the news reporter, Kelly Noble.\"\ntt0056592,-x6njs-cGUE,Atticus points out the obvious inequalities in the justice system and asks the jury to look at Thomas's case with a fair and just eye.\ntt0372183,I3znSbbu9IU,Jason calls Pamela who thanks him for his help and tells him his real identity.\ntt0104231,eKrEVWGTuRg,Shannon gets jealous when a dancer shows some interest in Joesph. He demands that she say something nice about him.\ntt0056592,C841wEogE4U,\"Atticus addresses the court and describes Mayella's guilt for tempting a black man, and the dire consequences her guilt has caused.\"\ntt0099329,A4DSD-ZbhoY,Fender and his gang crucify Gibson on a junkyard ship.\ntt0327597,oBO9Uy4uc_c,Coraline discovers where the Other Mother has trapped her real parents.\ntt0112641,1FZ2FA-epcE,\"After the Kansas City bosses are arrested for skimming off the casino, Remo puts a hit on anyone, and everyone, who may testify against them as witnesses.\"\ntt0023969,VKTT-sy0aLg,\"Pinky pretends to be Firefly's reflection, matching his every move – until Chicolini ruins the effect.\"\ntt0322589,XOnuxo70q9Q,Chaz saves Honey from BB when he tries to harass Honey about Benny's whereabouts.\ntt0088763,AM5EYO5wWMA,Doc risks life and limb to get Marty back to the future during the lightning storm.\ntt0218967,aZV1XI9qZUc,Jack uses his knowledge from his other life to ace his interview at his old job.\ntt0101921,934iAVn9CKw,Ruth passes away while Idgie tells her a story at her bedside.\ntt0218967,G36NDRDO6L8,\"When Cash pulls a gun on the Liquor Store Clerk, Jack diffuses the situation by making him a deal.\"\ntt0218967,a2dHmOQuDaQ,An argument between Jack and Kate about an expensive suit escalates into Jack going on a diatribe about his pathetic life.\ntt0101921,lx0z9FjxP-Y,Evelyn Couch is waiting on a parking spot which gets swiped by a VW Beetle.\ntt0076723,VHMi-j7W2gM,The Hanson Brothers get things started with a pre-game brawl before the National Anthem even begins.\ntt0099141,nJ04J0TWD1I,\"Rick asks Marianne to look at the gunshot wound in his butt, setting her off on a tirade about how he's done her wrong.\"\ntt0099141,FNHM2JEA1qg,\"After roughing it through the woods, Marianne enjoys a hot shower until she is surprised by a very large bug.\"\ntt0166924,1g4V55DSrbg,Adam is pressured to cast Camilla in his film by a man who is very picky about his espresso.\ntt0340855,ruN_KcF-Ouw,\"Aileen attempts to get a straight job, but is laughed out of the room without experience and education.\"\ntt0340855,WVx0SlYmaxs,Aileen wakes up tied and abused after picking up a client.\ntt1596346,aJ_NWmLawAM,Bethany grieves the loss of the life she had before her shark attack.\ntt1232824,KMm_fkYUdo8,Father Buerlein hears a startling confession from an anonymous and unfamiliar voice.\ntt0382856,c6GEJoLDcAs,The survivors are saved by The Backstreet Boy's Nick Carter.\ntt1232824,LR6zTixElx8,\"Father Buerlein takes a confession from Nadine, a girlfriend from before Seminary.\"\ntt0382856,L0CGJL5SlsQ,Eightball saves the day by bulldozing the giant mantis off of a cliff.\ntt0382810,wwrzI3b5LxI,Brad lashes out at Lionel when he senses he's lying about how much he knows.\ntt1650062,9IdM84YVmV0,\"Perturbed by the line-cutters, Frank shimmies into his Crimson Bolt costume and doles out some pretty extreme punishment.\"\ntt0382856,dfT_2XRB8aU,An angry giant insect snatches Carmen Electra.\ntt0340855,Hws-ExO9fhY,\"Aileen brings a customer into the woods, berating him and ultimately murdering him before discovering he is an off duty police officer.\"\ntt0382810,HDxqSt_Ctbw,\"Tracy, Jonny, and Ray arrive at Stephen's secret drug compound and discover Lionel after he's just ODed.\"\ntt0382810,Lsm-snDPXnk,Janelle dredges up the past in an embittered speech for Ray's birthday.\ntt0382810,W4_F1oMTEFc,Tracy and Jonny kiss sober for the first time.\ntt1020773,x2BuNuwZ9mg,Elle argues with James over art and the nature of relationships.\ntt0340855,86F-fpdTJg4,Aileen puts her situation into perspective with Selby.\ntt0273453,efr5PYBNZCo,Peter meets Malcolm while seeking a doctor for his wife.\ntt0273453,tAp6HB4WAdg,Darla freaks out and maces Peter when he approaches her.\ntt0340855,-3cmJe_Kw30,Aileen makes a final go around with life on account of five dollars.\ntt0340855,5TcimuSgJoI,Tension mounts when a suspected client turns out to be a decent man and Aileen gives him the same treatment.\ntt1486185,YNN09xbsN1A,Valerie's confrontation with Peter gets heated as she suspects him of being the wolf.\ntt0382856,2nC7GyHvy0w,The gang of survivors escape the crumbling mountain.\ntt0382856,IiD7lmQlL-0,\"When the survivors come upon two giant mantis battling, they soon discover the two are actually \"\"making it.\"\"\"\ntt1232824,7TcMmmC-PqQ,Linda runs into an uplifting homeless man while John wrestles with the notion that he may have failed her as the day comes to an end.\ntt1232824,QsCPatNIpPE,John seeks forgiveness from his friend and fellow priest Ralph.\ntt1232824,maaoRjQN42c,Father Buerlein gathers information on prostitution hoping to discover a path to his confessing stranger.\ntt1232824,HZ1D6bBiufI,Father Buerlein's searches Linda's apartment in hopes of finding her.\ntt1232824,u0Mz_e_TQCI,Father Buerlein preaches on the less famous saints in Catholic history.\ntt1232824,AsKzZqVhH88,\"Father Buerlein visits his friend, Father O'Brien for advice.\"\ntt0382856,qaK_jsGvz6Y,Maddy uses a bit of the old possessed magic to boost the morale of the giant insect slaves.\ntt1232824,3z637yWEmHs,Father Buerlein consoles various members of his congregation.\ntt0382856,jHZLatZGr0E,The group find themselves in the chambers of Dr. Harryhausen.\ntt0382856,DO50JhaRp4A,The gang of survivors encounter a monster praying mantis in the woods.\ntt0382856,pZE1CyPdDMo,\"When a monstrous swamp monkey attacks the survivors, Dr. Harryhausen pops up to save the day.\"\ntt0382856,OJZGgPoJ_u4,Josh tries to gather the partygoers to rescue Carmen Electra\ntt0382810,3FgbU0ZZzQY,\"Steven tries to steal the money from Tracy, Ray, and Jonny, but Tracy holds her ground.\"\ntt0273453,Y7LbtFY23wo,Malcolm visits Peter after getting fired from his practice at the hospital.\ntt0382810,V3EpNkdgmyo,Tracy's temper flares up when she is rejected for a loan.\ntt0382810,dp6WEWGtqRo,\"Tracy helps Lionel through his withdrawals, and is shocked when he asks her to make a drug run for him.\"\ntt0382810,65L7TzsFaD8,Jonny offers to help Tracy get the money she needs to be a partner at the video store.\ntt0382810,LdnaptnNXbo,Tracy confides in her mother about her crushed hopes of being a part-owner of the video store.\ntt0382810,91wo3olctwU,\"Tracy finds out that Jonny lied about being a stock broker, so she confronts him at a restaurant.\"\ntt0273453,E2VBcVxwUqM,Peter loses it when Tom gives him his eviction notice.\ntt0273453,jGWM1SoLAm8,Darla asks Malcolm for some advice after she sleeps with Peter.\ntt0273453,m8RpGUXeHFQ,Darla and Sam bicker about their kiss a week prior.\ntt0273453,PHcV9HUfr0c,Lucy's eccentric family visits her in her moment of need.\ntt0273453,xeE4wGavBhE,Peter recalls a psychotic episode with his wife.\ntt0273453,Gxd-OPuy2tA,Peter's new quirky friends and his sister-in-law come to his aid when Lucy's condition gets worse.\ntt0273453,1xqufX-xMr0,\"Peter tries to ask Darla about his wife's situation, but it doesn't pan out well.\"\ntt1020773,GFB8DiM-SLQ,A woman in a cafe gives Elle advice on husbands.\ntt1650062,44rUlHYg-MU,Frank is touched by the finger of God along with slimy tentacles when he receives Divine enlightenment.\ntt1650062,yu2VrqdOVdw,\"Frank attempts to rescue\"\" Sarah from Jacques.\"\ntt1650062,aP1FZToPFxA,Libby tries out for Frank's sidekick.\ntt1650062,tVl78xgPyow,Libby shows off her costume to Frank.\ntt1020773,soTciHbL4iA,L'homme de la place gives some fatherly advice to James concerning Elle.\ntt0340855,qZfK-VnxBSo,Aileen embraces Selby before she leaves.\ntt0340855,JcTBwzDucE4,Selby is forced to confront her father when she comes home after running away.\ntt1596346,exclwIbllXQ,\"Cheri is weary when Tom says he was approached by a TV show that wants to give Bethany a prosthetic arm in exchange for an interview, but Bethany quickly agrees to do it.\"\ntt1194263,yzGKgnbclz8,Frank and Felix negotiate the price of holding the funeral.\ntt1194263,Ppa4gvsZHDE,Felix tries to convince Rev. Jackson to preach at his funeral.\ntt0119738,FvJMbz4vgNY,Michael opens up to Julianne in what might be their last moment alone together.\ntt0119738,WlB-BbWBzd8,Julianne finds Kimberly in a restroom and tries to convince her to reunite with Michael.\ntt0119738,9ExnVKy8hao,\"Julianne works up the courage to tell Michael her true feelings, but chaos erupts when Kimberly sees them kiss.\"\ntt0119738,vGgdg2q1eig,Julianne tries to explain to Kimberly what Michael really wants using a dessert analogy.\ntt0119738,YKjzDMrSX3w,\"Julianne tries to tell Michael how she feels, but instead tells him that she's engaged to George.\"\ntt0119738,QAsI8z9qfKY,Julianne uses a baseball game to start making the moves on Michael to steal him back before the wedding.\ntt0119738,A9qAaecuaFk,\"Julianne introduces George to the wedding party, and he quickly makes friends with Kimberly.\"\ntt1743720,GLQd8ZTeYlI,Ralph Nader tells Morgan Spurlock of the challenges ahead in the making of his documentary.\ntt1255953,oAFVhwUVJt4,Jeanne discovers more clues about her mother.\ntt1119646,6I1qP8w8DxE,Stu is shocked and upset after discovering he got married to a stranger the night before and implores his friends to help him torch a police car.\ntt1423894,zNyykRpFBQY,Barney Panofsky and his father have a less-than-appropriate conversation over his deceased mother's grave.\ntt1282140,TjpkMfTBVQs,Rosemary and Dill explain to adopted son Chip that they are a family of late bloomers.\ntt1194263,GaBjbzvkxNk,Frank and Buddy stop Felix from shaving off his beard before they can get a picture for their ads.\ntt1149361,XQLKAVpgHQ4,\"As Bazil studies the film noir classic \"\"The Big Sleep,\"\" a shootout occurs in front of the video store.\"\ntt1038919,-UAV4O9oZy0,Nicole pretends she is seducing Milo when he wakes up while she is trying to get his gun.\ntt0762125,scEuS9-TozQ,\"Rover overcomes his fear of the rain and \"\"dances\"\" in it.\"\ntt0762125,gB1LgDhJQMI,Lem and Neera have a brief moment before Rover returns and they go to find Chuck.\ntt0762125,mkNO5Y4LOMs,General Grawl explains to Chuck what will happen if he tries to take over anyone's mind.\ntt0762125,gTLqDBbrmPM,Chuck and Lem have their first encounter and are surprised that they speak the same language.\ntt0762125,kqc4KyCYA0Q,Chuck first lands on the planet and wreaks havoc.\ntt0762125,sNGlmsj6C-E,Chuck and Lem have their first encounter and are surprised that they speak the same language.\ntt0762125,c3uOWTAuaTQ,Skiff accuses Lem of being a zombie alien; Lem accuses Skiff of being a paranoid nutcase.\ntt0849470,TDo2llQRSOw,Mr. Rigetti makes Principal Dickwalder suspicious about the timing of a student's funeral.\ntt0388182,XVEnOs2HVlY,\"During the gold heist, Charlie ties up Miranda for her own safety, and thanks her for all that she's done as a daughter.\"\ntt0323939,Ezy42s9AacE,It is revealed that Vernon and Dean were in cahoots to take down Miller and Tiffany.\ntt1020543,zrECNEIUFZc,Mayhem ensues when one of the prisoners at the local jail mutates into a human-bug hybrid.\ntt1501652,nhUW_MrQGTY,Dylan pays off Charlie's debts to Mr. Brennan.\ntt0284929,77LZW5N_Tic,\"When Ted Bundy is sentenced to capital punishment, America rejoices.\"\ntt0242508,nKIH1LgVMpQ,\"After a shoot around, Marcus becomes frustrated with Alan's lack of effort on the basketball court explaining that he plays to win and to get girls.\"\ntt0242508,A-3SeVkGrjE,Alan and Marcus walk through Harvard Square discussing basketball and how black people neither skate nor swim.\ntt0413466,AekHQpGS_AQ,Kico tells Nikki about race relations in South Central Los Angeles.\ntt0242508,dpFSms_kfQo,Chesney lectures her philosophy class on fear versus dread in the work of Kierkegaard and Heidegger. She also has an affair with her student Alan.\ntt0413466,FUL6DhVU7E8,Jonathan tells Spermball about the awkward way he lost his virginity in sixth grade.\ntt0070047,-qK58CZslAs,The discovery of a Ouija board in the basement prompts Chris to ask sweet little Reagan about what she's been doing.\ntt1242618,oirwXF98wo0,\"Alice watches home movies shot by the previous occupants of the house, David and Lucy.\"\ntt1242618,2X80aLjCncQ,Alice spends her first night in the old house and is unnerved by strange noises.\ntt0405163,zQPE6MCV2jo,\"On the first day of the porn shoot, the crew is surprised at the lack of girth in their three black leads.\"\ntt0405163,R1hGaVoYZxo,The gang gets together to go over the re-writes on the script.\ntt0405163,fA_1iRByNFw,Andy and the team brainstorm the necessary scenes for a well rounded porno.\ntt0405163,Y2u092TuA8g,Some Idiot makes his case to Andy on why he's the best choice to be writer and director for the porno.\ntt0338075,_P4YRqZPT54,\"Larry goes on and on about \"\"yin and yang\"\" to Phil, who couldn't care less.\"\ntt0338013,hZdl2FFp0eA,\"On a train ride from Montaux, Joel encounters Clementine for the first time.\"\ntt1411704,z1hgz7vgIt4,\"Sam cuddles with E.B., thinking he is a stuffed bunny.\"\ntt0446029,30iTy8ws54M,Knives attacks Ramona for stealing Scott.\ntt1092026,SlPGQ7r0f7w,A humorous note leads Graeme to believe that Paul can read minds.\ntt0102175,Bu2PFyl689w,\"Strung out on drugs, Gator confronts his parents for money… one last time.\"\ntt0350258,WgcXxTUu0aM,\"Della is astonished that Ray recognized her by her voice. He explains that he hears, much like other people see.\"\ntt0097366,Ru2Mvkf9dL8,\"Fletch returns home to a party, a new office, a sizable insurance check, and freedom from his wife's financial yoke.\"\ntt0350258,tTVFP-9AdMk,\"When Ray hires on the Raelettes, Margie negotiates their weekly pay.\"\ntt0340855,st0h6-5fVtw,Aileen stands trial as her lover testifies against her.\ntt1013752,jTtTZjp9ViQ,\"Dom confronts Fenix, the man who murdered Letty, and all hell breaks loose.\"\ntt0350258,9nFrp7Z9wEU,Ray stands up for himself against his corrupt managers and walks out leaving Gossie dry.\ntt0337721,dXQq9Y7KnmQ,Charlie tells Kanaalaq about adjusting to life after returning from war.\ntt0100107,8q8m4-7ciaE,The Maniac Cop blows away the entire police station.\ntt0100107,qDF1YfpUaNs,\"Cheryl is stalked by the serial killer Turkell, who in turn in stalked by the Maniac Cop.\"\ntt0100107,kDHxHA2RzJ0,\"When a deranged robber wins an instant lotto ticket, he also wins some quality time with the Maniac Cop.\"\ntt0405163,Ux_ruB_nt94,Andy argues with Homer over their misunderstanding about penis size.\ntt0100107,D407HWykw6o,Turkell cryptically teases Susan about something horrible that will go down at the police precinct.\ntt0405163,UBvArq7u9N8,Andy bands the town together to make a porno and introduces his friends to Emmett.\ntt0405163,AqutucmM6S8,The town gang gets excited at the idea of shooting a porno.\ntt0405163,9uFe61ebm30,\"Andy attempts to buy a pro basketball, but finds himself short on cash.\"\ntt0323939,QeoL6G4bW4U,Marlo reveals to Larry that he was conned.\ntt0104808,xDwT7-3BQ5c,\"Despite being set on fire and blown up on a number of occasions, the Maniac Cop still lives.\"\ntt0104808,qq8xAukB-xI,Detective McKinney blows up the Maniac Cop by throwing an oxygen tank into his burning police cruiser.\ntt0378407,pSQkW5soVhk,\"Brian and Drew click while discussing fate, her fan club in the '80s, and Grease 2.\"\ntt0378407,H3plWCGH4wM,Drew compliments Brian on following his dream and the two exchange gifts.\ntt0104808,kkZWXM6mShg,Detective McKinney tries to stop the Maniac Cop from transforming Officer Sullivan into a creature of the undead.\ntt0378407,K_31ZHeMlB8,The moment has finally arrived for Brian's date with Drew and they hit it off right away.\ntt0104808,EbU1vOVwnOo,\"Detective McKinney disguises himself as a dead body and then makes more dead bodies by laying waste to the escaping criminals, including Jessup.\"\ntt0378407,5klqA0K7K8k,Brian's family is skeptical yet supportive of his goal of getting a date with Drew Barrymore.\ntt0104808,dyb4ztHMFf8,A nosy cameraman is the latest victim of the Maniac Cop's rampage.\ntt0104808,hf4KXHSvKD8,Dr. Powell meets his untimely demise at the hands of the Maniac Cop.\ntt0104808,YSrDBY0Tmdc,A city official negotiates a deal with Dr. Powell to terminate the life the comatose Officer Sullivan.\ntt0378407,PtozHYwIkNw,\"Brian and his friends pool their resources to make a mock movie trailer to send to Drew Barrymore, and end up scoring ultimate-movie-trailer-guy George DelHoyo to do the voice-over.\"\ntt0378407,3wtgdxKJI_A,\"Brian and his team promote their cause via radio show and website, but they encounter setbacks when the website malfunctions and they find out Drew is engaged.\"\ntt0378407,8Px7Lr7VzvY,Eric Roberts advises Brian to get in shape if he wants to land a date with Drew.\ntt0104808,JtyvQx-YiCE,Dr. Myerson meets the Maniac Cop's electric personality.\ntt0104808,CbF9_x6zFYo,\"A comatose Officer Sullivan has a bizarre dream where she finds herself walking down the aisle with Matt Cordell, aka the Maniac Cop.\"\ntt0378407,APsmTB3F7Rs,\"Brian meets with Drew's cousin, Stephanie, who is shocked at the amount of body hair he has. Later, his friends give him a taste of the horrors of hair removal.\"\ntt0378407,M9nDop-5T0I,\"Brian is delighted to finally receive a call from Drew's business partner, Nancy Juvonen, who tells him how much Drew loves his idea.\"\ntt0906665,2P6sN_5eM_M,\"Mortally wounded, Ruriko watches the corrupt and insane Sheriff die by way of crucifixion.\"\ntt0906665,7cTI5pyy3Fw,\"Ruriko gets her revenge against Kiyomori for the death of her son, only to be double-crossed by the insane town Sheriff.\"\ntt0906665,MrfsbtOOdGA,\"Seeing the rival Heiki clan in possession of a Gatling gun, Yoshitsune, leader of the Genji clan, employs some incredible trick shots to take down his enemies.\"\ntt0906665,9k3swSqYKP8,\"Ruriko, aka Bloody Benton, dispatches adversaries from both rival factions with tremendous style.\"\ntt0906665,xl_aSDYuXhM,Kiyomori welcomes a pretty wicked Gatling gun into his life.\ntt0906665,tIypF4ODIsM,Yoshitsune learns rather quickly that his subordinates are not the fighter that he is.\ntt0906665,r51WXifMsZg,The Gunman negotiates for the services of a young woman by kicking ass in a barroom brawl.\ntt0242508,cPa929v8Hps,Al Franken and his daughter approach Alan who is clearly tripping balls from ingesting too much L.S.D.\ntt0906665,331wiVQINn8,\"The mysterious Piringo edifies a group of bandits about an old rivalry between two bitter Japanese clans, before dispatching the bandits in a brief, but violent shootout.\"\ntt0906665,Jjq8Ng6cjxE,\"Ruriko protects the wounded and the innocent from some Genji clan thugs, revealing herself to be a lethal weapon.\"\ntt0906665,_Pbi5kod89U,The Gunman and Yoshitsune fight mano a mano in a duel to the death.\ntt0413466,Q0Eh0iTF2Bg,\"The guys are hassled by some gangsters on their way home from their crazy day and night in Beverly Hills; upon parting, the guys finally call Milton by his real name.\"\ntt0210070,GuEFmBxmIT0,Pamela gets excited at dinner when signs of Ginger's late blooming menstruation appear.\ntt1095217,rCg9zLCbhZ0,\"In the aftermath of the shootout at Big Fate's mansion, McDonagh finds himself the recipient of some very good news when he returns to work.\"\ntt1095217,f27cck3Bl-Y,\"Teetering on the edge of madness, McDonagh threatens two elderly women as he searches for a critical witness.\"\ntt1095217,Vv0aAv0lJ3s,\"During a stakeout, McDonagh suddenly has a vision of a pair of iguanas resting lazily on his coffee table.\"\ntt1095217,6uHak2M7cmc,\"After shaking down a couple for drugs, McDonagh makes out with a young woman while forcing her boyfriend to watch.\"\ntt1219289,swOuQBjbiLU,Eddie calls upon his memory and drug-induced powers to fight like a pro when he finds himself threatened in the subway station.\ntt0118632,v1Qu3dZlRGE,A local troublemaker cannot bring himself to knock down the church when Sonny blocks the bulldozer with a Bible.\ntt1294688,yuCbYNe3aZY,Joanna begins to question why Michael never mentioned Laura was attractive.\ntt1294688,NamXvlffiog,Joanna is pleasantly surprised when Alex shows up unexpectedly.\ntt1294688,56a5meaLhBM,Michael introduces Joanna to Laura.\ntt1294688,qrzj1uVO-Lc,Laura and Michael talk at a bar; Laura suggests they keep the night going elsewhere.\ntt1664894,x7j4IiO_6RI,Cave paintings that have been preserved for thousands of years are explored.\ntt1743720,-szJznl-3UE,Morgan Spurlock meets with media executives in an effort to get financing for his movie.\ntt1743720,ZIc7bCHSmKo,Morgan Spurlock makes deals with all kinds of brands to be featured in The Greatest Movie Ever Sold.\ntt1743720,S78_9yWvSi8,Morgan Spurlock interviews New Yorkers about how they would describe themselves as a brand.\ntt1596346,eLW6uxK_MOI,Bethany surfs a high-scoring ride at a competition in Turtle Bay.\ntt1596346,W_7_2Uwl2uc,Bethany and Alana hunt for a bathing suit.\ntt1596346,LeNRbtWgero,Bethany tries to see the bright side of a grim situation with help from Sarah.\ntt1596346,jeoUH00woxs,\"Bethany confesses her concern about her future with her mother, Cheri.\"\ntt1596346,NqxvezqrvQE,\"Tom doesn't want Bethany to quit surfing, while Cheri doesn't want her to become lost if surfing doesn't pan out as they first imagined.\"\ntt1596346,NvNkGs5bFtA,Alana visits Bethany at the hospital.\ntt1596346,pZNQ-Jo7nsI,Cheri helps Bethany filter her commitments with surfing and friends.\ntt1564367,KgSTMVwRSiI,Eddie represents yet another fictitious element of the story that Katherine and Danny have woven.\ntt1255953,GpD2-wZnpO0,Simon meets with Wallat Chamseddine to discuss Simon's father.\ntt1564367,Eyokx50Jhrw,\"Considering it part of the deal, Katherine starts to get a little demanding of Danny in the shoe department.\"\ntt0990407,kwdRauyX_Sc,Tupper is unintimidated with Chudnofksy's suit in comparison with a grown man in a mask.\ntt0990407,vFqitPr_Gpg,Kato derives a strategy by evaluating the weapons of his opponents in an uneven battle.\ntt1341188,7MF2IgjAjjA,Annie finds it increasingly difficult to contain important information from George\ntt1126591,CdUzUdaC8tI,Ali auditions to become a dancer in front of Tess and Sean.\ntt1038919,PyeH_sv2TEY,\"When smoke starts streaming out of the back of his car, Milo opens the trunk, allowing Nicole to escape briefly.\"\ntt0913354,qi_t-McN6Vk,\"Baines wants to burn the armored where Ty has stowed away, but that would mean burning the group's fortune with it.\"\ntt0844471,F0wFS45JjWA,Flint shows off his many failed inventions.\ntt1136608,_U-WwYlinTw,\"After an alien spaceship stops over Johannesburg and sits motionless for 3 months, investigators cut their way into the ship.\"\ntt1596343,vf6nfEZgorY,Brian and Mia are chased over the rooftops of a Rio favela.\ntt1596343,0dlFAtbte0c,Dom and Hobbs come head to head and duke it out.\ntt1596343,ifG_E9BKfuc,The crew reach a stumbling block in a required palm print to open the safe.\ntt1596343,3u_oizn3fg4,Dom and Brian drag a giant safe through the streets of Rio while Mia guides them.\ntt1596343,UCh-HA6pIA8,Dom rescues Brian from a sticky situation on the train.\ntt1596343,vQdFnS_u8UM,Dom and Brian lay down the score for the crew.\ntt1596343,dobHtRTf5rY,Hobbs chases down Dom on the streets of Rio de Janeiro.\ntt1596343,7ZFGP8b4Nz4,The crew make a million dollar bet when they realize their next job is an everything or nothing deal.\ntt0324133,4rJ4een9CcY,\"Sarah's publisher, Charles, instructs Sarah to stay at his summer house in France for some solitude and relaxation.\"\ntt1240982,7Q8m_vs3HzY,Isabel gets some questionable advice from Thadeous around the campfire.\ntt0993842,Km71QCX39rQ,\"Hanna gives her friend, Sophie, very clear instructions before exiting the van.\"\ntt0993842,4iaM0-kcWtc,\"Hanna, who is under psychiatric evaluation, has only one request - to see Marissa Wiegler.\"\ntt1411704,ILJTdnLyUC8,Carlos threatens E.B.'s father that he and the chicks will revolt.\ntt1411704,QY11UyRZBM4,\"Fred discovers that E.B. has demolished the \"\"forbidden room.\"\"\"\ntt1411704,tH4JJtuyLp4,E.B. describes the ungodly pressure of being the Easter Bunny.\ntt1092026,sFjraGFeU-A,Clive and Graeme try to get Tara to open the door to talk about Paul.\ntt1229822,BkO51g7oXnw,\"Impressed with Jane's artistic abilities, Mary shares one of her sketches with St. John.\"\ntt0881320,TnniBE14vQY,Frank and Josh discover a WWII-era tank buried within a sinkhole.\ntt1385826,R9HPdX0TZAg,David tells Thompson he is choosing Elise.\ntt0102175,mnuJ_YVLL64,Tensions rise as the cops misinterpret Flip and Angie's playful fighting as an assault in progress.\ntt0102175,WkOLYUmITfc,\"Gator is taken aback by the sight of Angie, the new white girlfriend of his younger brother, Flip.\"\ntt0102175,0l8mYfrxpTw,\"In the aftermath of her husband's affair, Drew commiserates with her girlfriends.\"\ntt0102175,CKJSr3Uw-N0,\"When Flip learns from his bosses that he will not be made a partner in the firm, he offers his resignation on the spot.\"\ntt0102175,jSidQZzJfcc,Gator coerces his younger brother Flip into giving him money so he can continue to buy more crack.\ntt1013752,1t867tCFccE,Dom gets sweet revenge on Fenix Rise.\ntt0102175,mTfTGanKAJs,Flip and Angie succumb to their mutual temptations.\ntt1013752,NoRnWATJPrA,The sexy Gisele tries to make a move on Dom.\ntt1013752,g-gebDSBFkY,\"When Dom discovers that his deceased girlfriend was working as an FBI informant, he takes it out on O'Conner.\"\ntt0328828,dFAd35ck7hY,Michelle talks about sex and love with Jim's dad.\ntt1013752,x_errHqd92k,\"Dom and O'Conner drive drugs across the U.S. border, evading the authorities by going underground.\"\ntt1013752,FD3Xh_Qez_Y,\"Dom beats his rival O'Conner in a tight race, winning first place - and the eyes of a new friend.\"\ntt1013752,hK2bLlVeh-w,\"In search of the same informant, Dom and O'Conner have different ways of dealing with their anger.\"\ntt1013752,ZXXpX29Xt-U,\"When a daring high-speed robbery goes awry, Dom must save Letty (Michelle Rodriguez from certain death.\"\ntt1013752,wNWaYfZI3Ak,\"As he surveys Letty's crash site, Dom reconstructs just what happened.\"\ntt1013752,t1JsC1ur2X8,Dom tells Letty that he needs to move on in order to protect her from the cops.\ntt0872230,HegpqudDvwE,\"Jean-Baptiste tells Det. Frank Paterson about how Haitians don't believe in multiple personalities, they believe in multiple souls.\"\ntt0899106,FIekWUU704U,Eloise gives Burke her two cents about his life.\ntt0350258,UOVyhaDQNfw,Ray has a hallucination about his mom and brother brought on by the trauma of his brother's untimely death.\ntt0166924,nzWDzGxqqa0,Dan collapses when he finds the subject of his nightmare lurking behind the restaurant.\ntt0887883,8Ufi7Z8OokA,Harry and Osbourne have a barbed exchange at the cocktail party.\ntt0350258,LakGqZmF-Gg,\"Ray gives an impromptu performance at a Seattle club, and chooses a crowd-pleaser by Nat King Cole.\"\ntt0350258,5yGuDDemqaw,Della lectures Ray /*259*/) about his drug addiction in a way she knows will get through to him -- by putting it in terms of his music.\ntt0350258,riYhck-Z9tw,\"Down in Georgia, a black civilian protesting against segregation has an impact on Ray, convincing him to set an example by refusing to play at the segregated club.\"\ntt0350258,_T7vEyicx6Q,Ray drives Joe to tears when he confronts him about stealing money from him.\ntt0350258,MLrd4hKTVLQ,Ray breaks the news to his management at Atlantic Records that he's been offered an amazing record deal elsewhere.\ntt0385267,_5TCxc7G31Q,Dan leads the way in making an ad sale as Carter watches and learns from an experienced pro.\ntt0350258,Q-R4SPTgjmI,\"Ahmet confronts Ray about his drug use, as a friend, rather than a business man.\"\ntt0385267,FGiocp7_jE8,Dan interrupts the big speech of Globecom CEO Teddy K to question his business model of synergy.\ntt0385267,Y_RUAeNZs44,\"Dan interrupts Carter and Alex at lunch. When Carter confesses his love for Alex, Dan punches him out in the restaurant.\"\ntt0385267,VFqbGbU8f8o,Carter gives a motivational speech to the company about the idea of synergy in advertising.\ntt0097351,v6bD23vEigE,\"When Ray's daughter stops breathing, Archie Graham morphs into Doc Graham to assist her.\"\ntt0385267,cOE2gQrXchk,\"On his first day of work, Carter meets Alex in the elevator and admits he is nervous.\"\ntt0087995,lKeaVq6fUpw,\"Otto hitches a ride with Parnell who goes off on a tangent and then passes out, crashing into the curb.\"\ntt0087995,vRJ5cCP0ZPE,\"While burning clothes with Otto, Miller shares his philosophy on anything and everything.\"\ntt0493464,iK0-76FChfk,Wesley reaches his limit in the office and tells off his boss Janice and friend Barry.\ntt0114746,eb46yXP211w,\"Jeffrey lectures Cole about germs, while Cole swallows a spider in order to bring it back to the future as evidence.\"\ntt0329575,5ecF_TOyhfQ,Tom is furious when Red confesses his secret that he's blind in one eye; Charles says that it's fine.\ntt0324133,oXybPR2g7VY,\"Sarah is surprised by an unexpected house guest, Julie.\"\ntt0324133,9tzlsm5IvIg,Sarah tries to exert some control over Julie by inquiring her whereabouts the previous night.\ntt0192614,pLpIARbS5Xo,The Revealing Process proves to be quite uncomfortable when Luke asks Caleb about Will's death.\ntt0095253,cqpvoIx9wbw,\"While Chet and sons burn up the go-kart track, Roman hits the driving range.\"\ntt0192614,CnSvI5JxRC4,Luke and Caleb get a taste of the privileges that come with their new life.\ntt0324133,yGbG0TmmRDg,\"Julie asks Sarah what she thinks the consequences of her crime will be, and is surprised that Sarah is willing to help her.\"\ntt0842926,Z8auSdJSusE,Joni connects with her sperm donor by phone.\ntt1385826,QQWyeLLMwmo,David and Elise flirt on the bus over spilled coffee.\ntt1092026,WL56IXifi9w,\"Waking up after a blackout, Clive attacks Paul, assuming the alien to be dangerous.\"\ntt1385826,1hw9NF3zzrI,Richardson reminds David that Elise is not in his plan.\ntt0970866,-aKc2aFeCOk,Bernie and Roz give Jack a present.\ntt0970866,9Qesj84cHLw,Greg introduces Pam to Andi.\ntt0780653,UtIr2Cpk2c4,Lawrence warns Gwen that she is not safe and should leave as soon as possible.\ntt1385826,wbVpwsKbFCU,David and Elise run away from Thompson.\ntt1385826,7XFAamm-SE0,Harry tries to help David understand what is happening.\ntt1092026,QJZ83TqU_x0,Paul stuns his companions with his healing powers before disgusting them with his appetite.\ntt0881320,n86XlheDzhc,\"When Judes's air supply is suddenly cut-off, Frank shares his air with her at the risk of both of their lives.\"\ntt0881320,s_j4-cVHFH8,Carl pulls a fast one on Josh when he makes a bet on who can reach the bottom of the cave the fastest.\ntt1229822,xTseWiI_yns,\"Jane proclaims that she is leaving Rochester, but it only prompts him to propose.\"\ntt1240982,y1tx1hn8Pwo,Fabious explains his love for Belladonna.\ntt1240982,1eyMnUczVLY,Thadeous meets Isabel and vows to protect her with his manliness.\ntt1411704,kReNcBdLDa8,Carlos tells E.B.'s dad how difficult a son is to replace.\ntt1240982,HLO5LmnO8gM,Isabel wants to work together with Thadeous for revenge.\ntt1240982,BWnG6--TRYI,Leezar wakes up Belladonna in the tower by pretending to be Fabious.\ntt0993842,JuPSeaf--7g,Erik tries to help Hanna out of a tense situation.\ntt1240982,6439wcfAL-E,Fabious asks Thadeous to be his best man.\ntt1034389,xMdDeWfS3O0,\"Marcus orders his troops to retreat, but ultimately takes a shot at his enemy.\"\ntt0993842,HUrzvLhxA0M,Hanna escapes from a CIA base after killing Marissa Wiegler's double.\ntt0993842,nPjlPgeaD_M,Marissa solicits Isaacs to track down Hanna.\ntt1229822,LLyS4KzDsQ4,\"Jane learns that Mrs. Fairfax is the housekeeper of Thornfield Hall, not the owner.\"\ntt0993842,dazYs4DgYtc,\"Erik coaches his daughter, Hanna, one last time before parting ways.\"\ntt0118632,weDm19eMl8Y,\"When the authorities catch up with Sonny, they wait to arrest him outside the church during a service.\"\ntt0118632,Jfddc8LwQL8,Sonny gets into a scuffle when a passing stranger interrupts a service.\ntt0108052,jri0U57iWWM,The Schindler Jews are liberated by the Russain army and walk over the hillside to start anew. Amon Goeth is hung for his war crimes.\ntt0118632,TxKxj0ZWEcY,Sonny loses his temper at his son's baseball game and beats up his wife's lover with a baseball bat.\ntt0118632,xt0TyfTl03Y,Sonny brings in some of the children of the neighborhood to work on the new church.\ntt0118632,fDx628jn1YI,Sonny and the fellow evangelicals preach together during a revival meeting.\ntt0108052,qIp_8RNNX4k,\"At the end of the war, Itzhak presents Oskar a gold ring with the inscription \"\"whoever saves one life, save the world entire.\"\"\"\ntt0118632,q5v5DOEF45E,\"As Momma Dewey explains, sometimes her son talks to the Lord, sometimes he yells to the Lord.\"\ntt0118632,pwdhau_agX0,\"When Sonny drives by a car accident, he approaches a flipped vehicle and attempts to save a seriously injured man and woman.\"\ntt0108052,CmyP-ljev68,Oskar and Itzhak write out the list of names of those who will go to the work factory in Schindler's old home of Zwittau-Brinnlitz.\ntt0108052,ZKie_34cpJI,\"Commandant Amon Goeth chooses Helen Hirsch to be the housekeeper of his villa in the labor camp, then orders the execution of the Jewish engineer in charge of construction of the barracks.\"\ntt0108052,7mJ0HSLMba0,Helen Hirsch describes to Schindler what it is like to be the Jewish housemaid to Commandant Amon Goeth.\ntt0108052,veztNJQyRJg,Rabbi Lewartow is miraculously spared his life when two guns fail to work in the hands of Amon during an execution.\ntt0108052,j1VL-y9JHuI,\"In the middle of all the chaos during the liquidation of the ghetto, Schindler notices a young girl in a red coat walking down the street unharmed.\"\ntt0108052,5yR0wlrq_h4,\"An S.S. officer plays classical music on a piano, as the liquidation of the Krakow ghetto extends deep into the night.\"\ntt0106770,lGqBJx2xbqQ,\"While shooting The Big Boss,\"\" Bruce is confronted by Johnny Sun's brother, Luke, and they battle in an ice factory.\"\ntt0106770,G4cvTaP7RS8,\"On his first day of shooting The Green Hornet,\"\" Bruce spices up the action to make things more exciting.\"\ntt0106770,OC195SrxRmQ,\"When the Demon threatens to kill his son, Bruce finds the power to defeat him.\"\ntt0106770,6Ewhxrht6cg,\"Bruce demolishes Johnny Sun in under 60 seconds, getting his revenge while proving his new style of Jeet Kune Do.\"\ntt0413099,eBE2Wgz32nY,\"While Congress decides the Public Land Act, Evan crashes his Ark full of animals straight into the Capitol Building.\"\ntt0106770,tr4beSTsJ1E,\"Bruce defeats Johnny Sun in a fair fight, but he is injured when Johnny kicks him from behind.\"\ntt0413099,PnUvSn9pVaA,All of the skeptics on land rush towards the ark as a giant flood surges towards their homes.\ntt0106770,lbiymQJsC8M,\"Bruce goes on a date with Linda to see \"\"Breakfast at Tiffany's\"\" where they are confronted with racial stereotypes.\"\ntt0413099,g_U9jZQ54LM,\"After dozens of wild animals enter the room, Evan explains to Congress that God has warned him about a disastrous flood.\"\ntt0106770,VzonTHZSaq0,\"An argument in the gym over a weight machine turns racist, leading to a showdown between Bruce and some jocks.\"\ntt0108052,BRZh_NO5tic,\"Schindler makes his presence, and stature, known at a nightclub while introducing himself to various S.S. members.\"\ntt0413099,GNTdNXkhZ8Y,Rita and Marty are in shock when they see Evan's rapidly growing beard for the first time.\ntt0413099,V7bO0UmtpFs,Evan is about to have an important meeting but his office has been with birds.\ntt0192614,nmldcHUthLA,Luke crashes The Skull's party and challenges Caleb to a duel.\ntt0413099,FHohKkrVoMI,Evan is asked to read and sign a huge legislation before he can go home and be with his family.\ntt0087995,ewvHk1nM5u0,\"When Otto shows up with a black eye, the other repo men won't let him go until he tells them who did it.\"\ntt1294688,H1t84X0iHTY,Joanna is strongly attracted to Alex.\ntt0192614,3fXPZqrKduQ,Things take an ugly turn when Luke finds Will hanged in his dorm room.\ntt0413099,3E-C9PipmaA,Evan prepares himself for his day in Congress.\ntt0087995,HZjZbJuhPAo,\"When a Motorcycle Cop dares to look in the trunk of Parnell's car, he gets the surprise of a lifetime.\"\ntt0413099,eHpBhm4LMfw,\"Evan meets the people he'll be working with, including the new kid\"\" Eugene.\"\ntt0087995,fN2AXsF-kwc,\"While driving in the LA River, Otto and Bud run into the Rodriguez Brothers who race them up the banks.\"\ntt0101540,ctyDL-6f90w,\"After a savage fight with Sam, Cady sinks into the river.\"\ntt0101540,Z7xJxo223YA,\"Cady stages a mock trial of Sam, serving as both prosecutor and judge.\"\ntt0101540,BDiB3XcDsT0,Leigh makes a heartfelt plea to Cady to spare Danielle.\ntt0087995,76Dbf85Vo3Y,\"While trying to repo a car, Otto gets shot at. Lite shoots back and they complete the job.\"\ntt0101540,CEuqveZyuQw,\"Dressed as the housekeeper, Cady garrotes Kersek with a piano wire.\"\ntt0101540,tBSbjKyamRo,\"Danielle hurls boiling water at Cady, but he demonstrates a superhuman tolerance for pain.\"\ntt0101540,6vO-XDUiRqU,\"Cady survives a hospital job\"\" by three hired thugs, then taunts Sam who's hiding in the shadows.\"\ntt0101540,-5798-VRVYA,Cady seduces Danielle in the high school auditiorium.\ntt0101540,M6HxD6sZ-I0,Cady's crass behavior at the movies -- smoking and cackling -- annoys Sam and his family.\ntt0026138,o1Izq-E3o7Y,\"When The Monster realizes that his Bride hates him like everyone else, he blows up the castle.\"\ntt0101540,POR5t4hjtPg,\"At Sam's request, the police haul in Cady for a strip search...revealing a body full of tattoos.\"\ntt0026138,3zhqCccFsGc,The Bride of Frankenstein rises from the table and walks. She's alive!!\ntt0026138,g3E69dpurZA,The machines are all activated and the sparks fly as Dr. Frankenstein and Dr. Pretorious begin the re-animation.\ntt0101540,FQqo-w1qvws,Max Cady leaves prison looking mean and motivated.\ntt0026138,yQ8PoAkZnew,\"Dr. Pretorious tells Dr. Frankenstein his plan. When he refuses to help, The Monster persuades him.\"\ntt0026138,3rcxMDaDYL4,Dr. Pretorius tells The Monster that he can make him a companion.\ntt0026138,cS3cT6vgiT4,Dr. Pretorious blackmails Dr. Frankenstein into helping him by kidnapping Elizabeth.\ntt0026138,xKdtuwTr-iM,\"The Hermit teaches The Monster about drinking, smoking, music, and more.\"\ntt0026138,Fe4JvbxKwR4,Dr. Pretorius and Dr. Frankenstein realize they need a young woman's heart to continue his experiments.\ntt0098067,7_WLSh7GE9I,\"Trying to protect his sister, Justin interrupts the school play, creating chaos.\"\ntt0026138,K7AKLKQqfj4,Dr. Pretorius shows off his specimens to Dr. Frankenstein who is shocked to see their small stature.\ntt0098067,5XW-Nxfx5Nw,\"Kevin makes a spectacular catch, winning the baseball game.\"\ntt0098067,0t6IIdmOIOQ,Frank asks Gil for his advice and the two have a frank conversation about what makes a good father.\ntt0026138,xwffHJ_pAM0,\"When The Monster sneaks up on some gypsies cooking meat on a campfire, chaos ensues.\"\ntt0098067,dQUjkTOrAn4,\"When their son loses his retainer and goes into a fit, Gil and Karen realize they need to make a change.\"\ntt0098067,vO2jvLIyIV4,\"Trying to help her husband Gil relax,\"\" Karen creates a car crash.\"\ntt0100301,UX3HxJ3eTd0,Eddie mimics the first President Bush in an attempt to influence a client.\ntt0100301,OBp-kKju0IA,\"After a tepid start, Eddie rips into an inspired version of \"\"Born to Be Wild,\"\" at a karaoke bar.\"\ntt0100301,7QZB_cbjdM8,\"Eddie moves the sales meeting to a place where \"\"major life decisions are made.\"\"\"\ntt0100301,Y-CJgOlRfkE,\"At a swanky luncheon with Annie and her parents, Eddie tries to bluff his way through the wine list.\"\ntt0493464,uAphWDkKWcg,\"Wesley discovers that Cross is his father after he shoots him, then Fox tries to kill Wesley.\"\ntt0100301,GxznDWMsp8E,\"Attempting to impress Malkin, Eddie fake-translates for a Japanese businessman.\"\ntt0493464,_xHw_zAJRDk,\"When Sloan goes to Wesley's office, he discovers the decoy just as Wesley puts a bullet through his head.\"\ntt0195685,kDfvxJUxL10,\"Erin not only gets her job back, but a raise and benefits too, when Ed comes to her with more questions about PG&E.\"\ntt0118689,E_Rabq4muu0,\"Trying to make a turkey for dinner, Bean ends up wearing it on his head.\"\ntt0493464,FARSnLU-NJA,\"When Wesley gets attacked by The Butcher, he fights back with his gun and The Butcher's weapons too.\"\ntt0430922,SSk0B0dVq4g,\"Beth is fed up with Danny's miserable disposition and ditches him in a coffee shop when he refuses to say \"\"venti.\"\"\"\ntt1294688,nIYAfX4gYO0,Laura and Michael get to know each other.\ntt0118689,5SnIUYLRXro,\"After accidentally splashing water on his pants, Bean dries himself with the blow dryer.\"\ntt1294688,yde2ib0YiVQ,Truman pries into Joanna's relationship with Alex.\ntt0195685,BGX4nMrnxg0,\"When the PG&E lawyers present an offensively low settlement offer, Erin makes them wish they never opened their mouths.\"\ntt0195685,5Jdk3riKKwo,Ed mocks a PG&E lawyer when he presents an offensive offer and denies PG&E's involvement in the famlies' health.\ntt0195685,kFCUCnNKmmI,\"Erin and Ed discuss taking out PG&E corporate, but consider some very real outcomes that could destroy the case.\"\ntt0074281,fXXmeP9TvBg,\"The \"\"Car Wash\"\" song plays while the employees at the car wash get to work.\"\ntt0120735,-Mmq6Kmd75I,Rory gives Nick the Greek a choice -- tell him who stole his weed or die.\ntt0115783,_d4H6lx9-Is,Keats and Moses steal a Ferrari and try to get away. Then they ask a cop for directions to Disneyland.\ntt0129290,jNN6FI1Gcr8,\"When Patch confronts Mitch about telling the Dean that he cheated, an argument ensues.\"\ntt0132477,8ZezvNWgi4M,\"When Homer's dad shows up for the Rocket Boys' last launch, Homer lets him push the button.\"\ntt0112641,-riX6Xbvb8w,\"Ace looks back on being given \"\"paradise on Earth,\"\" the chance to run The Tangiers in Las Vegas, and how it all came crumbling down.\"\ntt0117381,G2bsYSfXO5U,David tattoos his chest with a blade and some ink.\ntt0117218,7IrB1OE9Blo,Buddy Love impresses Carla by heckling Reggie on stage with jokes and throwing him into a piano.\ntt0132477,DY61X243BoU,Miss Riley gives Homer a book to fuel his dreams.\ntt0824747,2r8yw_fjoHA,Mrs. Collins tells Detective Ybarra that Davy's story gives her hope that her son is still alive.\ntt0315327,yOgdjlPRWMg,Bruce gets a final lesson from God and leaves Heaven to be with his wife Grace back on Earth.\ntt0824747,S7vH1F6nnug,\"Mrs. Collins goes to the train station to be reunited with her son, but she does not recognize the boy claiming to be him.\"\ntt0824747,vn6qlQGDOIo,\"Under interrogation, Sanford tells Detective Ybarra that he helped Gordon to kill twenty kids.\"\ntt0119643,USKDdEg8N3s,Susan and a young man share a special moment together after meeting in a coffee shop.\ntt0315327,iplfWUtKMzI,Bruce uses his new powers to sabotage Evan's broadcast.\ntt0120669,m6kFCNsnQpQ,Duke takes too much Adrenochrome while Dr. Gonzo gets rid of Lucy.\ntt0315327,-Bprg2_s9mg,\"Upon hearing about Evan's promotion to anchor, Bruce has a breakdown on camera which causes him to lose his job.\"\ntt0117218,2O-CC3IVPVg,Klump gets a visit from Carla and gets caught eating a candy bar.\ntt0117218,74Ern74xGsQ,Professor Klump watches in astonishment as hundreds of hamsters break free and create havoc on the university campus.\ntt0110950,9FLLYpUnuwQ,Troy comes back after his father's death and professes his love and regret to Lelaina.\ntt0360717,NoD85qZhkWY,Kong climbs to the top of the Empire State Building and faces down his attackers - a squadron of machine-gun firing airplanes.\ntt0365748,mqQ8Y9Sjp7o,\"Shaun staggers through his morning routine, blind to the evil in his neighborhood.\"\ntt0110950,HvhH6_TMxWw,Lelaina lets Troy have it when he comes back to the apartment with a girl he picked up at a club.\ntt0110950,nII3ya0MuM0,\"Lelaina gets back at her evil boss by replacing his note cards with inappropriate, embarrassing notes as he reads them on air. The stunt causes her to get fired.\"\ntt0365748,kXjKUXgoyL4,\"As the Winchester is breached by a mob of zombies, David is gutted alive, and Ed is bitten.\"\ntt0096874,TkyLnWm1iCs,\"Marty borrows a hover board to escape Griff's gang, but loses momentum over a pond.\"\ntt0021884,nur4g4r1LN4,Dr. Frankenstein demonstrates for Dr. Waldman how the Monster understands commands.\ntt0052357,d-kcczAff40,Scottie watches Madeleine at the museum; she stares at a painting of Carlotta to which she bears an uncanny resemblance.\ntt1294688,uYBZAS59t14,Joanna Keira Knightley) gets suspicious when she sees Michael and Laura chatting alone on the patio.\ntt1294688,AK0MPlMNHQ0,Laura asks Michael about an encounter they once had.\ntt0099088,JEsQCm9Q3pk,\"When Mad Dog shows up early, Marty forfeits rather than getting shot.\"\ntt0099088,LwuZzh79ds4,Mad Dog's gang drags Marty to a hanging where he is rescued by Emmett.\ntt0095631,r9nG9RByMRI,Jonathan has a panic attack on the airplane which forces Jack to travel by train.\ntt0120601,009tNfQRd4o,\"Craig, bored while watching an orientation video about the 7 1/2 floor, notices Maxine ignoring the video entirely.\"\ntt0099329,JPEmc2HcMmY,Cry-Baby challenges Baldwin to a game of chicken with cars.\ntt0104231,PXW83EUbeTM,\"Joseph surprises Shannon in the barn and gets more than he bargained for, but he still tries to kill her father.\"\ntt0087065,in-1BIg_Mec,\"Davey makes a trade with Rice, but when Rice realizes he's got the wrong cartridge, Davey and Kim run for it.\"\ntt0099329,fZt8dti-r14,Cry-Baby and other prisoners sing a sad and tearful song in their jail cell.\ntt0218967,GP5ss2lYb3Y,\"Cash tells Jack that everything has changed, and it's up to him to figure his way out.\"\ntt0218967,lp6ibYQN8vQ,Arnie gives Jack a pep talk to motivate him.\ntt0034240,MtTE8aWCe9g,\"In a church filled with convicts and the poor, Sully watches a Mickey Mouse cartoon and laughs for the first time in a long time.\"\ntt0119174,qf-4TDEpycw,\"Nicholas pulls a gun on Christine, but when she realizes it's not a prop, she tries to prevent him from shooting Conrad.\"\ntt0118928,9JQRMnxE6No,Harry saves Graham from being burned alive when he tries to jump into a hot spring that's become acidic.\ntt0119174,hYQIObd_bog,\"When Nicholas gets a flat tire, Conrad panics and accuses Nicholas of working for CRS.\"\ntt0082200,ZcCHgCXxkgs,\"Ernie rides the train back to Chicago, but not before marrying Nell in a ceremony in Victor, Wyoming.\"\ntt0119174,E_tY5yc-yWU,\"During a reunion lunch between Nicholas and his troubled brother Conrad, Nicholas gets a mysterious invitation as a birthday gift.\"\ntt0087065,AjZ717HtRy0,\"Davey witnesses a murder and receives a video game cartridge from the victim, but when he returns to the scene with a security guard, there's no body to be found.\"\ntt0118928,joAodEzeK34,Harry Dalton tries to get Marianne out of harm's way as a nearby volcano erupts around them.\ntt0082200,iYP5-Dl3rhg,\"Ernie attends Nell's lecture in the city, and the spark between them is still hot.\"\ntt0082200,C-PxIfoch_Y,\"When a cougar wanders into the cabin looking for food, Ernie tries to convince it that he's not dinner.\"\ntt0082200,Upr2DiiSRDE,\"While hiking with Nell, Ernie loses his footing and goes tumbling down the mountain.\"\ntt0082200,pZJ7QK2d5-A,\"When Nell's lover attacks Ernie, Ernie is delighted to learn that the man is football legend, Max Birnbaum.\"\ntt0094138,LUmqBuS8GAA,\"After Buddy knocks Jerry down, Jerry's friends come to his aid and help set Buddy up for Jerry's knockout punch.\"\ntt0094138,BqV0lNOqaPA,Jerry gives a sexually charged book report to the class which ends with him kissing Miss Farmer and passing out.\ntt0094138,iqyFc90L3zw,\"After Jerry is found with a switchblade, he goes to see Assistant Principal Dolinski who doesn't believe his story.\"\ntt0094138,nQYsHLwXnMc,\"Jerry convinces a football player to confront Buddy in the library, but Buddy knocks him out.\"\ntt0096734,EECf2o9Ivaw,Ray regrets tormenting the Klopeks.\ntt0338013,Qpux-Drk6EY,\"Joel chases after Clem and tells her that no matter what, he wants to be with her.\"\ntt0473464,-NzSDbGmTpA,Shay turns the tables at a photo shoot and forces Jordan to open up.\ntt0036775,_m9qecEehqY,Keyes tells Walter that people cannot get away with murder because they're stuck with each other.\ntt0096734,L6g6fH2ev40,\"Ricky shares his gateway to hell\"\" theory with Ray.\"\ntt0091541,nJPju1f6p0E,\"Walter gets distracted on the way to fetch a bucket of water for Anna, resulting in a series of disasters.\"\ntt0091541,FOM6rvU9xN4,\"A raccoon attacks Anna, and the staircase collapses as Walter rushes to help her.\"\ntt0091541,wBxRwF4qnhU,\"When Walter gets stuck in a hole in his dining room floor, he inadvertently insults the inspector, losing any chance of getting his permits.\"\ntt0212338,bXNwzKo5Yps,Greg tells the Byrnes a story about the time he milked a cat and then destroys the urn with Grandma's remains.\ntt1095217,_bsnYbe6Dp8,McDonagh threatens to kill Big Fate if the gang kingpin doesn't accede to his demands.\ntt0276751,GtYAzKwm-R0,\"When Christine and John ask Will to be the godfather to their baby girl, he assures them that he would be a terrible choice.\"\ntt0363547,UWGtZ9Oqcwc,\"As CJ watches T.V. with the other guards, a televangelist explains, \"\"When there is no more room in hell the dead will walk the earth\"\".\"\ntt0363547,TS6_Y6r5r-8,The gang is up on the roof watching Andy shoot celebrity look-a-likes.\ntt0082200,XNAVsV-Jqfg,Ernie follows Nell into the woods and spies on the secret rendezvous with her lover.\ntt0363547,pv6EZGMlgX0,Ana struggles to escape from a sudden zombie invasion of her home.\ntt0082200,cqOc4yl1bIw,\"When Ernie and Nell come across some poachers shooting at a bald eagle, Nell beats them up and destroys their guns.\"\ntt0082200,u1pJJOaKdiQ,\"When Ernie finds himself stranded at the cabin, Nell agrees to let him stay for two weeks on the condition that he does not write a story about her.\"\ntt0082200,Pf0COLjWys0,Ernie lets on that he's a journalist wanting to do a story. Nell takes him to a grand mountain vista.\ntt0106770,zxqYjEzGEPs,\"After being hassled by a bunch of jocks in the gym, Bruce takes them all on at the same time and beats them.\"\ntt0106770,H2tltm5wUCs,\"After a fight over a waitress in the back room of the restaurant, the chefs attack Bruce Lee in the back alley.\"\ntt0106770,yb7aNfMvRy0,\"While at the 1961 Lantern Festival, Bruce Lee takes on sailors who disrespect a girl and try to ruin the dance.\"\ntt0413099,80x9FmKsyg4,God tells Evan to build ark to help him change the world.\ntt0413099,l8aozWddbPA,Evan gives congressmen Long a phony excuse for why his office is full of birds.\ntt0117381,GnjxY_zMxOA,\"David uses the alarm code that Nicole gave him, but still gets locked out, making him very angry.\"\ntt0824747,C_2-E5uR-k0,Sanford shows the detectives where the bodies are buried and digs up the bones of a child.\ntt0322259,1SOZ6caLdUk,Roman ejects his passenger from the car with the push of a button.\ntt0120669,ObbLapUaZd4,Duke and Dr. Gonzo attend the DA's Convention and listen to Dr. Bumquist's bizarre speech on drugs.\ntt0100107,vfNW11vcewM,The Maniac Cop gets revenge against the criminals who maimed him and left him for dead.\ntt0100107,VhtJpZkTZ1M,The Maniac Cop has a flashback to when he was attacked and beaten while wrongfully thrown in prison.\ntt0100107,rdFZAYliCgE,\"Susan survives a harrowing experience in a runaway cab, but Teresa meets her demise at the hands of the Maniac Cop -- literally.\"\ntt0100107,9rstlW2YsmA,Officer Forrest is killed by the Maniac Cop while at a newsstand.\ntt0100107,EdEl2_GReMY,Officer Forrest helps take out the Maniac Cop.\ntt0230169,piOK9oDxl2w,Ed's confession to Pete is interpreted as an odd joke.\ntt0081505,AWKQSDRekBM,A deranged Jack hunts his wife and son with an axe.\ntt0081505,optHzRmqdFk,Hallorann discusses the power of the Shining with Danny.\ntt1664894,ZJxNwE6H1SM,The mysterious Chamber of the Lions is explored.\ntt1640484,M6aKImtVams,Jason's friends weigh in on what his next move should be.\ntt0978764,aDdBoZOylmo,Oppressed robots rise against their oppressors.\ntt1743720,A2WV257yma8,\"A documentary about branding, advertising and product placement that is financed and made possible by brands, advertising and product placement.\"\ntt1596346,fyI46_cfTW4,Bethany and friend Alana ask for more wave time; Cheri asks for more class time.\ntt1255953,3dnf7FK-BPk,Jeanne finds hostility while searching for her father.\ntt1265990,bQme3XqjpCk,\"Rebecca stalks Sarah's boyfriend, Stephen, in the library.\"\ntt1265990,9Oi7sZ13tNY,Rebecca gets testy with Sara when Sara doesn't return her calls.\ntt1564367,yuklnScufbE,\"Danny tries to apologize to Palmer, who isn't having it.\"\ntt1646111,rJSnxSjZIcA,Chanda walks alone through the South African terrain.\ntt1646111,dB2iZKhWArQ,\"Lillian connects with her daughter, Chanda, by sharing her personal experiences when she was young.\"\ntt0824747,MgBCnwI_Hq0,\"Christine tries to reason with Captain J.J. Jones and blows up at Walter's imposter for calling her \"\"mommy.\"\"\"\ntt0824747,oZePQEUplJs,\"Christine receives a visit from Dr. Jonathan Steele, who gives her false explanations for the discrepancies between her son and the boy the police returned to her.\"\ntt1588337,-QB2gXiOAKc,\"Luc tells Christian that he does not fear terrorism or death, that he is a \"\"free man.\"\"\"\ntt1588337,iKw7Ndv4bRM,The monks realize their responsibility in Algeria and the gravity of their choice to leave.\ntt1285016,6bahX2rrT1I,Mark asks for recognition from the Harvard board instead of hostility for breaking security measures.\ntt1285016,A6f-6l0W-0o,Mark explains his frustration with the deposition to the prosecutor.\ntt1285016,-wc5S8xwxJk,Mark and Erica discuss the vanity of rowing crew.\ntt0990407,gkJAPsQ2YHE,\"The Hornet duo reveal themselves to Lenore, who isn't very amused.\"\ntt0990407,nMtW7uy5RrQ,Kato uses nunchucks during a high speed car chase.\ntt0990407,9n27j_fe1yE,Britt boasts about the notoriety of the Green Hornet in the press.\ntt0103850,Dei-j4tWI0A,Political debate between Senator Brickley Paiste and conservative folk singer Bob Roberts.\ntt1243957,ZrW0Vk-Y_TU,\"Frank is captured and put on a boat with the undercover police, including Inspector John Acheson.\"\ntt0298203,iOMuP1qEKUc,B-Rabbit battles Lyckety-Splyt and shows him what he can really do.\ntt1220634,JaIhQFDdcJM,Alice attempts to land the plane on a building rooftop.\ntt1282140,KDKB37gY7OY,Rosemary and Dill are worried about Olive's sexual appearance of late.\ntt0249462,HuKVUxMpoCk,Billy's troubles at home interfere with his concentration during his ballet lesson which leads to an argument with Mrs. Wilkinson.\ntt0971209,v5ueLuyLWn4,Cliff and Cydney discuss whether a grainy photo of the killers looks like their hiking partners.\ntt0971209,_c7XtFcDfX4,Guide Nick catches Cydney when she slips while trying to follow him and Cliff across a narrow trail.\ntt0322259,JXQWJ63fico,\"Brian and Roman pull a \"\"Dukes of Hazzard\"\" stunt to catch a speeding yacht.\"\ntt0322259,aSxScp7zUpY,\"With the police on his tail, Brian must rid his car of an electronic harpoon.\"\ntt0322259,2xxZ6kju6xo,\"Racing to retrieve a package, Brian and Roman outdo each other on the freeway.\"\ntt0491152,3mieBC6wlbs,Rachel helps Darcy write her vows to Dex and gets caught up in the moment when her own feelings come into play.\ntt0078723,nMW1Rfbl0tE,\"Moments before the Japanese submarine submerges, Kelso breaks in and is promptly captured.\"\ntt0078723,j7O-SUEh-54,Hollis is interrogated by the Japanese Navy lead by Cmdr. Mitamura.\ntt0078723,jJZ5x-zUx28,\"Lost in flight, Kelso drinks a Coke and goes into a barrel roll... or two.\"\ntt0078723,FcqC3ZIsQRM,The United States Navy and Army continue their brawl on the streets of Los Angeles.\ntt0078723,-v93NKIFBBw,\"In this homage to the famous scene in Jaws,\"\" a woman\"\" swimming in the ocean is attacked by a Japanese submarine.\"\ntt0070047,OCGGXaMANys,Chris tries to yell some sense into the doctors that cannot look past their own knowledge to find a solution.\ntt1664894,asxNFYNfOWI,Cave paintings that have been preserved for thousands of years are explored.\ntt1640484,toq0HYc9mmg,Blythe and Chef McKenna get caught with their pants down when the smoke alarm goes off.\ntt1640484,xHH-tuDq-T4,Sabrina and Mrs. Taylor get off to an awkward start.\ntt1640484,q-kLlfq4JpU,Mrs. Taylor gushes to Shonda about how she feels insulted by Sabrina's text message.\ntt1640484,k7o8U7h_YHM,\"Mrs. Watson presses Sabrina to spill about Jason's family, which forces Sabrina to admit that she still hasn't met them.\"\ntt1501652,JtBmjD4WDnM,Dylan and Natalie reunite for the first time in ten years.\ntt1596343,byObeFcFXmo,\"The Rio police are introduced to Hobbs, a bad ass Federal Agent.\"\ntt1596343,J_i4XvgEVDg,Han and Gisele use their tools to get Herrnan's fingerprints.\ntt0421238,gAxuiJdRBjQ,Arthur questions Charlie about Mikey's whereabouts and Charlie claims that Mikey met a girl.\ntt1095217,_nFXFkb8i0Q,\"McDonagh bypasses the need for overt conflict by sneaking in through a neighbor's house to arrest his suspect, a man by the name of \"\"G\"\".\"\ntt1743720,wGvGiFhbmwg,Documentarian Morgan Spurlock pitches his idea for a satire on the process of cinematic advertising to film executives.\ntt1095217,QG_VaTDn9Uk,\"McDonagh shows off his lucky crack pipe\"\" to Big Fate, the concept of which perplexes the gangster.\"\ntt1095217,cczh1r-Mb9o,\"After McDonagh roughs up Justin, one of Frankie's clients, he receives a very cryptic and bizarre threat.\"\ntt1411704,vsevdTMBfC8,E.B. tries to prove to Fred that he is the Easter Bunny by pooping jellybeans.\ntt1411704,j_2-8115ZAs,Carlos rounds up the chicks for a revolution.\ntt1596346,TpwYtP4Kzbs,Keoki has a talk with Bethany about surfing.\ntt1092026,KSrAg-DG4Xs,Haggard and O'Reilly search through the RV of Graeme and Clive.\ntt1219289,1LatwDo_ZL4,Carl lectures Eddie about how his powers are weakened by the fact that he hasn't had to work for them.\ntt1217613,cnvdC5TGc3g,The unit tries to sneak up on the aliens by moving through the sewers.\ntt1229822,TotAfd4ercA,Edward professes his effection to Jane.\ntt1265990,lScMakd7h6w,Rebecca is not receptive to Rick's advances.\ntt1564367,898OUCyBulM,Maggie negotiates a deal with Danny when he asks her to act like his daughter.\ntt0881320,6a9lq0bPrLU,Frank coldly informs the group that rescue is impossible -- only escaping matters.\ntt1578275,lWqHayjaOxo,Dana uses sexual metaphors to describe her enthusiasm.\ntt1578275,TwTQUFCYFsc,Ronny confesses how he was able to get the big meeting.\ntt1174732,jmOvg7JKjVI,The headmistress at Jenny's school has a talk with her after Jenny's engagement is revealed.\ntt1243957,AqtOrW-wiZ4,Frank goes to report an attempt on his life and finds little help from the authorities.\ntt0989757,zsgAfhsQkYU,A distraught John tries to figure out the right thing to do to get Savannah back.\ntt0249462,8TOTUOFMjuo,\"Billy keeps his family in suspense regarding his letter from the Royal Ballet School, and eventually reveals his acceptance.\"\ntt0780653,5MC-cGN0bw0,Gwen consults the gypsy Maleva for advice on how to help Lawrence.\ntt0762125,yQ3jp-a5JK4,The dog gets revenge on the mailman.\ntt0098067,pKNsKKRGrzs,Gil daydreams about Kevin giving a Valedictorian speech at his college graduation.\ntt0249462,uDISBx2Ry7s,\"Mrs. Wilkinson offers to teach Billy one-on-one, in the hopes of qualifying him for the Royal Ballet School.\"\ntt0450405,d6NOGc2Dymo,Mr. Destiny stops Darren and Steve from killing each other.\ntt0338075,docSqZBVEUY,Larry and Phil are nearly caught when an officer questions them about the coffin in their car.\ntt0450405,UWyz-yfEIN4,Darren moves in to Evra's pad.\ntt0450405,Amjfc9pRatc,Murlough attempts to abduct Darren in a cemetery; Larten rescues him.\ntt1136608,VGqjv_CkCXo,MNU relocates aliens and studies their weapon technology.\ntt0098067,Pf5mDMWYRmE,\"When Gil and Karen put the kids to bed, their daughter Taylor throws up.\"\ntt0112641,0KJ7l4gy4oo,It is love at first sight for Ace when he lays his eyes on Ginger at the craps table.\ntt0450405,hwc74Ns9EZI,\"Larten flits\"\" with Darren for the first time.\"\ntt0074281,7phF0rMpBiw,\"Stuck in traffic with a very talkative taxi driver, Marlene the Hooker sneaks away without paying her fare.\"\ntt0118689,7P9EEB9Mr18,\"When the Airport Police see Bean reaching for a \"\"gun,\"\" they chase him through the airport but find nothing but his hand.\"\ntt0117218,EeyNlzFdjtc,Klump and Love have an all-out battle on stage in front of a large audience.\ntt0089560,G_0ZVzUO3Os,\"After Gar gives Lorrie a ride, Rocky lashes out at Rusty for getting him a prostitute.\"\ntt0132477,Vq1W_C-ft0Q,\"After the Rocket Boys win the local Science Fair, they learn that only one of them can go to Indianapolis. They choose Homer.\"\ntt0315327,A4k_HCZNCgs,\"Bruce goes through his morning, experiencing terrible luck at every turn.\"\ntt0824747,gtKp8oxOzAU,\"When Davy tells Detective Ybarra the story of his escape, Mrs. Collins finally learns the truth.\"\ntt0119643,BXvryt6UCC0,\"Joe is surprised by his feelings after being kissed by Susan, and she reluctantly decides to go home.\"\ntt0119643,5Xk31NpUX1g,Joe tries peanut butter for the first time and decides that he really likes it.\ntt0117218,BIfyebxopuM,Buddy gives a dramatic apology to Carla in front of the restaurant.\ntt0120669,P2pgWsYSyUA,\"Driving to Vegas in a convertible, Duke and Dr. Gonzo start to hallucinate when their drugs begin to take hold.\"\ntt0021884,v5FtI472Q6I,\"After a gentle moment between the Monster and Little Maria, he scares her by innocently throwing her in the lake.\"\ntt0110950,SQVw58aDt3Y,\"At the gas station buying snacks, Lelaina, Vickie, and Sammy just can't help themselves as they dance to the song \"\"My Sharona\"\" on the radio.\"\ntt0252866,DoUYnGrhxi8,\"While waiting in the hospital Emergency Room, Jim's dad stands up for Jim against another nosy patient.\"\ntt0079367,i5jTH89HjTA,\"Navin invents the Opti-Grab, inspired by a customer's frustration with his flimsy eye wear.\"\ntt0079367,FCJx1uV38ZQ,Navin catches thieves with a stolen credit card and holds them for the cops by rigging their car to the church next door.\ntt0021884,1qNeGSJaQ9Q,\"As the Monster is struck by lightning, Dr. Frankenstein exclaims his achievement and his God-like feeling of creation.\"\ntt0114746,wcztDZ13TLI,\"Cole finds himself institutionalized with Jeffrey who explains the workings of the institution and the \"\"system\"\" to him.\"\ntt0079367,lKv7aGku2RQ,\"When a dog appears at the front door, Navin misinterprets his barking for a fire warning, creating a false alarm for all the neighbors.\"\ntt0095631,Gokkl2br7G8,\"After evading the cops and crashing his car, Jack nearly escapes with Jonathan, but loses him in the end.\"\ntt0114746,9rDK1qdc9-Y,\"When Cole tracks Jeffrey down at his father's mansion, he learns that Jeffrey is trying to make Cole's apocalypse real.\"\ntt0120601,25_F9irGdow,\"John Malkovich leaves his career as an actor for a new life as a puppeteer, affecting the community around him in the process.\"\ntt0204946,B0YqZqU_z0Q,The Cheer Squad auditions new recruit Missy who more than proves her badass-ness.\ntt0120601,DSGYElDi38s,Dr. Lester interviews Craig and apologizes for a speech impediment that doesn't actually exist.\ntt0120601,OpZknAZxSjU,A sad man is ecstatic after his experience inside the mind of John Malkovich.\ntt1095217,--VWN_KTxzE,McDonagh tries to browbeat Midget into giving up the location of a notorious crime lord… all while smoking one of Midget's joints.\ntt1743720,KN2W3JON7Y0,\"Damian Kulash and Tim Nordwind from \"\"OK Go\"\" discuss music rights and endorsements.\"\ntt0324133,HxrS10Oa4qU,Sarah gets worked up when asking Julie for some peace and quiet around the house.\ntt1092026,sPQLY7niQC4,Ruth and Graeme's intimate moment is interrupted by Paul.\ntt1092026,qB2H-Gp0nlE,Paul introduces himself to Graeme.\ntt1217613,b9WFVLRPOJI,The unit get unexpectedly ambushed when they come across a dog in the street.\ntt1229822,9DKqoFCTC6E,Jane and Rochester share an intimate moment.\ntt1385826,HWDBMnxAk0A,\"Elise challenges David to a race, at which they both cheat.\"\ntt1385826,XwQuM34oBkg,Richardson demonstrates David's powerlessness by revealing that he can read his mind.\ntt1034389,QNUzcLPS_LE,Marcus interrogates Shaman about his father's last moments and the whereabouts of the eagle.\ntt1078940,0TmugJo-c9Y,The couples start to open up in therapy.\ntt0363547,SB4SyMKugU8,\"The survivors escape the mall on two souped-up buses, ready-made to slaughter zombies.\"\ntt1034389,zATlpF_gylU,Marcus and Esca's argument escalates into a fist fight until they realize they are not alone.\ntt1564367,T5pFuaH_A98,Danny has Maggie and Michael fake laugh with him in order to impress Palmer.\ntt1564367,5KsjPjE-sTw,Katherine and Danny take cracks at each other in front of Palmer.\ntt0881320,8D11eYo3bNY,Victoria and Josh are washed away by the power of the waterfall.\ntt0114746,cu_A-aG8G7U,\"Jeffrey gives Cole a key and creates a distraction, enabling Cole to escape from the mental ward.\"\ntt1646111,b1vFQilhgrY,Mrs. Tafa gossips about Esther's short skirt.\ntt1255953,W03miqzGMcc,Nawal returns to the orphanage which has since been destroyed.\ntt1255953,WThlmxAdynQ,\"When their mother passes, the Marwan children are given envelopes and an important task as her final wish.\"\ntt1578275,pPZ7eetT6oI,Ronny and Nick use football terms do describe their business strategy.\ntt1578275,FBWubk2ItBA,Beth and Ronny discuss their maturing relationship.\ntt1588337,zPvglo_VB9g,The Trappist Monks relay their unease with Christian's executive choices for the group.\ntt1588337,QRGusFszwdA,Christian is confronted with the dilemma of Algerian Muslims in need of medical aid despite his monastery's lack of resources.\ntt1285016,5_2gW4c8hZ0,Sean inspires Mark to follow his dreams and confide in him.\ntt0990407,3_U1GtNY5xQ,The Green Hornet and Kato suit up and pimp out their Hornet ride.\ntt0990407,No7DllIwA3w,The Green Hornet and Kato evade a police officer in a high speed chase.\ntt0363547,IC8xA-bOXOo,\"When a far-fetched escape plan is suggested, CJ goes on a cynical monologue about how foolish the plan is… and then he jumps on board.\"\ntt0095631,stSweLZol7U,Jack tells Jonathan the significance of his wrist watch while warming his hands by the fire on the train ride.\ntt0970866,14bY6pwza-Q,Greg talks to Andi while Louis distracts him.\ntt0363547,S2LkKVM-dRo,The survivors use teamwork and quick-thinking to light a slew of zombies on fire.\ntt0363547,DNt7PNTuePY,\"Fear takes hold as CJ abuses his authority, forcing Kenneth and the others to remove him from power.\"\ntt0363547,Ybfc9RkRUY0,Michael and Andre help rescue a new group of survivors from a horde of zombies.\ntt0970866,FaYvxUgA4cw,Jack and Greg watch Henry's admission interview.\ntt0363547,RZvwbfpE8CA,\"As Michael battles a zombified janitor, Ana saves Kenneth from a hungry security guard.\"\ntt0363547,qeZ0SIG2eJY,Ana witnesses the birth of the zombie apocalypse right in her neighborhood.\ntt0363547,SNrMqIrtbmw,\"A recently-expired woman returns as an aggressive zombie, forcing Ana to go from nurse to executioner in a nanosecond.\"\ntt1341188,WT2D-ZhTkqQ,Lisa's first meeting with George ends up with an awkward argument.\ntt1341188,EOwmzfyF1oM,\"Charles approaches his son, George with information of great importance.\"\ntt1341188,5K14lfXCgco,Manny catches up with Lisa on her way home and a decision is made.\ntt1545098,0IVFxW63RxU,Kenny Chesney thanks his fans with outstretched arms and a frosty beverage.\ntt1545098,P9iflgkOO-E,Kenny Chesney fondly recalls a rainy evening in Dallas.\ntt1545098,KVIXNJIaQBY,\"A trip to the islands inspires Kenny Chesney to write his song, \"\"Old Blue Chair.\"\"\"\ntt1423894,sallI5PomoY,\"Barney finds his wife in bed with his best friend, after which she tries to twist it around to make it Barney's fault.\"\ntt1313092,jvZk0rzVeBw,\"Janine blackmails Randall into helping her grandson, Justin.\"\ntt1564585,spVHsj3_MEY,Jarrod and Elaine encounter an alien in the staircase whose serpentine arm attacks Elaine.\ntt1126591,NACwfzRou0w,Tess gives Ali a lesson on applying make-up.\ntt1126591,5vKDb4dLu0k,Tess catches Georgia vomiting in the bathroom and realizes she's pregnant.\ntt1431181,xI836Tp4cq4,Mary flirts with Joe before she hesitantly says her goodbyes to Tom and Gerri.\ntt1431181,au_5dPh_Dm8,\"Mary feels the sting of jealousy that she is single and alone, while surrounded by happy couples.\"\ntt1119646,y_5YoG-iXjQ,\"As Stu and his wife finally sit down to commiserate, they are distastefully interrupted when Phil, Doug, and Alan arrive to him up for their trip to Las Vegas.\"\ntt1423894,v-tma5YRyGg,Barney Panofsky pulls out all the stops as he tries to sweep Miriam off her feet.\ntt1423894,RpKQ0AC0p9Q,Barney Panofsky and Mrs. P. try not to embarrass each other on their honeymoon.\ntt1179056,JMt6zz_dYWI,\"Nancy stops by the grocery store to see Quentin, but finds Freddy Krueger instead.\"\ntt1179056,JWGVdLHio5g,Quentin tells Nancy about how sleep deprivation can lead to waking dreams.\ntt0775489,hSgNZ6R5Rbg,Alice takes in Edinburgh while the Illusionist lands a new job.\ntt0872230,KMnK0as4TSc,\"May gives Bug a birthday cake, but Bug gives May a start.\"\ntt1226753,U6X6o4CAqL4,\"The young, fearless agents train for their mission while getting to know each other.\"\ntt1285016,6HbrQMgOUFw,Erica refuses to accept Mark's attempted apology when he approaches her in a restaurant while she's having dinner with some friends.\ntt1226753,zYRqTV7WyMg,Rachel Singer sits in the press conference crowd remembering the evil and torturous deeds of the war criminal they helped bring to justice.\ntt0775489,5RmABh8MCpE,The magical illusionist takes a long journey north to his next performance.\ntt1371155,DkyCu7ryu-w,The world-wise Albert gives Rita the courage pep-talk she needs to kick some union butt.\ntt1371155,Rv2hRfqlJaE,\"Women's Rights activist Rita O'Grady is shocked that the woman she didn't know was married to her competition, Lisa shows up to give her some encouragement.\"\ntt0775489,Lmsukmz3QQE,The magical illusionist plays to a less than enthusiastic crowd.\ntt0804497,1RbdA_geYpU,\"Craig gets a visit from his parents at the psychiatric ward. Despite showing some reluctance to stay, Lynn and George think its best if he follows the doctor's advice.\"\ntt0804497,Ci3uRpwFlZ4,Craig receives some words of wisdom from Dr. Edna about his parents during his therapy session.\ntt1285016,LkdJwYQIR2o,Dustin's inquiry about the relationship status of a girl leads to an inspired idea for Mark.\ntt1285016,bLsM1z8lX_A,Mark needs an algorithm from Eduardo for a computer program that ranks girls' attractiveness.\ntt0804497,J196d5nLSYA,Craig gets a surprise visit from Nia who's recently broken up from her boyfriend.\ntt0804497,6fXGKCKcXk8,\"Bobby impersonates Craig's crush, Noelle, so he can practice asking her out on a date.\"\ntt1645089,sSk2SvdopGY,\"Despite campaign promises about Wall Street financial reforms, few reforms have been enacted during Obama's administration.\"\ntt0493464,qD6IXIE0cok,Wesley goes after Cross while Fox crashes her car into the train they're riding.\ntt0110074,2bcSpgxPG0g,\"Norville finds himself once again following in Waring Hudsucker's footsteps. This time, out the boardroom window.\"\ntt0117128,Puh__Ef3KkI,\"Cal and Ruth try to escape in an airplane, but Exeter pulls them into his spaceship and heads for Metaluna.\"\ntt0117128,v71Epv4g6jY,Cal and Ruth enter the tubes to prepare for landing on Metaluna.\ntt1486190,QtBnuCwAJeQ,Ben gets pushed into Tamara on the the stage at his rock show and she starts to interview him for The Independent.\ntt1486190,MAeQV2NBbhM,Ben proposes to Tamara in bed.\ntt1486190,JUGSh3BMuaQ,Beth has suspicions of whether her husband is having an affair with Nadia.\ntt1486190,cr13B4L-5-M,The writers sit around the dinner table gossiping about Nicholas.\ntt1584016,yGzCkRwbFII,Nev composites a picture of himself and Megan together.\ntt1588170,EYn7ZmFV2eY,Detective Bowden tells Ramirez how he lost his family.\ntt1584016,SnXhWbEfDNA,Nev talks to Megan on the phone for the first time.\ntt0944835,QlT6RMtJb6s,\"During an interrogation, an informant reveals the name of the Russian spy to be Evelyn Salt.\"\ntt1440728,m8hsAr5C2UU,\"Jack asks Clara to run away with him, while stuck in the crosshairs of a fellow assassin.\"\ntt1440728,ClylV3dp-Ok,Jack receives instructions to leave town and some advice not to make any friends from his contact.\ntt1440728,XvvzZUhRSbI,\"While on a motorcycle, Jack chases down a moving target.\"\ntt1282140,oTzTcic-1qs,\"A mother & daughter chat reveals that Rosemary had a sexual relationship with a homosexual for a very, very long time.\"\ntt1220634,zG0CfU1YnNQ,Claire battles the Axe Man in a one-on-one showdown.\ntt1282140,n3K6Fkd5ri8,\"Overhearing some sexual innuendo, Mr. Griffith runs off a list of cliches to Olive and Rhiannon.\"\ntt1135084,w5EQRIoHjQg,Jack leads a chase after Jesse through downtown Los Angeles.\ntt1126591,Jina0muBqRA,Ali Rose sings and dances by herself.\ntt1135084,wJnVVC4784c,\"During a heist, Gordon is forced to make a tough decision with John set-up as a sniper to take out Ghost.\"\ntt1135084,roeLoZuFI1I,The bank robbers make their getaway in a helicopter.\ntt1415283,I6RwgD0b9xA,\"Nanny McPhee explains that when she is needed - but not wanted - she stays, but when wanted - and not needed - she leaves.\"\ntt1415283,jNEnqzkT_QU,The children watch the pigs swim and perform a synchronized dance.\ntt0879870,bObjXY24Ei4,\"While eating pizza, Elizabeth declares that she's no longer going to feel guilt or worry about gaining a few pounds.\"\ntt1415283,mzP8haJXI5A,Nanny McPhee uses magic to stop the kids from fighting.\ntt0879870,vHbBhI0xLjA,\"Felipe invites Elizabeth to the \"\"best restaurant in town\"\"...his place.\"\ntt0879870,AhpGExo2hbs,David spots Elizabeth at a party.\ntt1438254,u8oHCJ8LxtY,Charlie tells Tess that he will not let go of Sam.\ntt1438254,o6zEapyz33o,Charlie and Tess talk about boats on the dock.\ntt1438254,m5n7XpAv46A,Sam gets angry at Charlie while playing catch.\ntt1313092,P0ojZI9qBPc,Leckie reacts to Janine's cockiness when she spots him in a grocery store.\ntt1313092,O5W1OfGz3es,Det. Leckie brings Josh some bad news regarding a murder.\ntt1313092,IH6fifC3qSE,Barry talks to Pope about living a straight life.\ntt1386588,7RS4PfQHCX4,Hoitz meets Sheila and has a hard time believing Gamble is married to such a babe.\ntt1386588,mFXxro8aD3A,Gamble arrests David Ershon but has difficulty remembering the Miranda rights.\ntt0842926,jwmRNTTDOw0,Paul gives Joni some advice on growing up.\ntt0944835,yp-LFlDEVdk,\"In her attempt to escape, Evelyn drives the NYPD police car off an overpass, crashing down on a taxi cab.\"\ntt0842926,naI0OgZq73M,Jules and Nic tell Paul an amusing anecdote on how the two met in college.\ntt0944835,rQ7oKh5K7K4,Peabody sends out a tactical team to take down Evelyn.\ntt0842926,adT3VQ_Krrk,\"Nic and Jules misunderstand their son, Laser, who they think is in a gay relationship.\"\ntt0117128,P3jRjtbkmq8,Exeter helps Cal and Ruth escape from Metaluna but a mutant stands in their way.\ntt0117128,nBQDz9PiMDU,\"As Cal attempts to land his jet, he loses control and experiences a series of strange green flashes.\"\ntt0117128,FKu9sUXtjpI,Exeter prepares Cal and Ruth for survival on the alien planet of Metaluna.\ntt0493464,XJTXpItCqFU,Fox stands in front of Wesley and tells him to curve the bullet around her and shoot the target.\ntt0110074,dXngQtk0BCU,Another Hudsucker executive tries to follow in Waring Hudsucker's suicidal shoes.\ntt0493464,B0cuLHkQDcA,\"During a high-speed chase, Fox performs unbelievable stunts in order to escape.\"\ntt0493464,q2pzOimT9so,\"Wesley is approached by a strange woman in a grocery store, and suddenly she starts a gunfight.\"\ntt0493464,lf3MqrE07I4,\"Mr. X performs superhuman feats to kill four would-be assassins, but is then gunned down himself by Cross.\"\ntt0110074,pbmU2wMnuI4,Norville saves Sydney by the seat of his pants.\ntt0110074,_SwvSu3jxAA,Norville pitches the dingus to the Hudsucker board.\ntt1375670,Xf_j-iNi9CA,Lenny explains the purpose of a bug zapper to the children excluding the fact that the bugs are being killed.\ntt1375670,jz4VT9zHLTU,Eric pees in the pool setting off the blue chemical dye.\ntt1375670,wVsMJ0ntvmc,Kurt is astounded to see that Eric's son still breastfeeds at the age of four.\ntt0110074,WhyNjvISFac,\"After graduating from business college, Norville looks for a job in New York City.\"\ntt1155076,qiVy40O1_Lc,Mr. Han trains Dre in various locations including the Great Wall of China.\ntt0094138,5T607c23L8M,Jerry approaches Buddy in the men's bathroom and gets himself into a showdown at 3 o'clock.\ntt0098067,Mn5ayQd7Y0Q,\"After Kevin misses a catch and loses the game, Gil daydreams a future where his son becomes a psychopath.\"\ntt0106308,Or3okI_mad8,\"Ash returns to the S-Mart store in the present day, but he is not alone, as the possessed witch returns for one last fight.\"\ntt0098067,sTYIlyRGrA4,\"Gil tries - and fails - to break the piñata at his kid's birthday party, and Grandma takes a mouthful of helium from the balloon tank.\"\ntt0338075,PPAe_7EK5yQ,Larry panics when he finds out that Gram Parson's body is inside the coffin.\ntt0338075,idqhhcppnUY,Phil says a few words of remembrance prior to torching Gram's body out in the Joshua Tree desert during the funeral ceremony.\ntt0098067,58YNYqN6lko,\"Kevin entertains his family in the van with \"\"The Diarrhea Song.\"\"\"\ntt0338075,ORrQYZCdCwI,\"After they get pulled over and the coffin is discovered, Larry and Phil concoct a plan to escape from the cop.\"\ntt0118689,Anue5RDt4Bs,\"When General Newton presents Whistler's Mother\"\" to the crowd, Bean admits to David that it's a poster.\"\ntt0118689,rWqVoaYxgRs,\"After staining the Whistler's Mother\"\" painting with ink, Bean tries in vain to clean up his mistake.\"\ntt0118689,zANq9Dusk6Y,\"When Bean shows David the defaced \"\"Whistler's Mother\"\" painting, David freaks out.\"\ntt0118689,fkHlhiG0h70,\"Bean amuses himself with his reflection, unaware that he is being watched through a two-way mirror.\"\ntt0097351,Yxzq9BLE5Hg,\"At a baseball game with Terence, Ray receives another message.\"\ntt0118689,68pN_c7DGUE,\"Trying to hide his still-wet pants, Bean displays some rather unusual behavior during his meeting.\"\ntt0338075,9plvG6cSgVk,Larry introduces Phil to their new yellow hearse named Bernice.\ntt0020629,nMlDPsRwZE4,Paul is shot by a sniper while reaching for a butterfly.\ntt0020629,mw96cSYo9dU,\"After Paul spends a night with a dying French soldier, he seeks forgiveness from the soldier's corpse.\"\ntt0020629,jsLOtv4yqIM,\"When Kat gets wounded, Paul carries him on their way back to base, only to find that Kat has died on their journey.\"\ntt0097366,33MiJMF5z7U,Calculus and Fletch infiltrate the morgue by pretending Fletch is a corpse.\ntt1226229,0N-cvihnyqg,Aldous calls up Jackie and learns that Lars Ulrich of Metallica is in bed with her.\ntt1226229,iOGo0EHHtCo,Aaron freaks out when he can't sleep after Aldous injected him with adrenaline.\ntt0097366,MMSpFkvPOAM,Jimmy Lee Farnsworth calls Fletch in front of the ministry where he confesses his sins and is forgiven.\ntt0097366,CS-nCS9Az94,\"Fletch gets thrown in jail with Ben Dover, a man who was arrested for molesting a dead horse.\"\ntt0430922,Cnh4Vr0UruI,\"Before Wheeler dies from his battle wounds, Danny admits that he still is his friend.\"\ntt0265298,VjfjS0R1bdk,\"Jason gets Marty to confess on a rooftop, then surprises him with a dozen cameras catching the confession on tape.\"\ntt0265298,fki-LTswICw,\"Marty discovers that his car has been tampered with, and Jason and Kaylee remind him that everything can be fixed with one phone call.\"\ntt0265298,RGl3Y1gvv5g,\"Jason and Kaylee pour dye into the swimming pool, turning Marty blue in the process.\"\ntt0265298,2u8m1yeCoyM,\"Jason sees the trailer for the movie based on his idea, but his parents don't believe his story was stolen.\"\ntt0430922,OP4zJ101EPY,\"During the battle, Danny stands up to the lame king and ruins the day for Augie.\"\ntt0265298,GNWJFqW17yg,\"Jason sneaks into class through a window with the help of his friend Kaylee, gives a theatrical excuse for not having his homework, and successfully fools his teacher.\"\ntt0430922,HAF359uuWUo,\"Danny and Wheeler get kicked out of \"\"Sturdy Wings\"\" and fight in an elevator.\"\ntt0265298,ZbPoAOc_iKw,\"Frustrated by the experience of acting with a chicken, a former child actor abruptly ends a scene mid-shoot, much to the chagrin of Marty.\"\ntt0097366,A0WEpT1SKV0,Fletch learns that he has inherited his Aunt's estate in Louisiana and promptly quits his job.\ntt0430922,iwfU4ei5gWE,\"Former drug addict Gayle Sweeny gives an orientation to \"\"Sturdy Wings.\"\"\"\ntt0430922,w29PG-8Tywo,Danny has a meltdown at a high school where he and Wheeler are promoting Minotaur energy drinks.\ntt0195685,j4yXEmQRq34,Erin flirts her way into accessing - and copying - PG&E water records.\ntt0097351,5Ay5GqJwHF8,Ray hears a whisper in the cornfield urging him to build something.\ntt0329575,jlUPc1tu64s,Red and Seabiscuit take their first ride together.\ntt0329575,U6fx_zJtL8I,Tom does everything he can to soothe a lonely and depressed Seabiscuit.\ntt0329575,yJzn9MhJxRM,\"Tom tries in vain to pair Seabiscuit with a jockey, but his hope is renewed when he sees Red fighting a group of men.\"\ntt1470023,4xdqgzNNHn0,\"MacGruber, Piper, and Vicki plan their next mission.\"\ntt1470023,aMQysPMcE4M,Vicki infiltrates the coffee shop dressed as MacGruber.\ntt0120735,VHJ5pzTGtag,\"Big Chris finds Eddie and the bag of money and steals it back, but Tom gets away.\"\ntt1121977,DJnKxIj_D6A,Paul interviews Elizabeth for the job and learns about her background.\ntt0338013,EQCf1YAzPsg,\"When Mary sends Clem back her file, Joel and Clem hear a disturbing description of their past/future relationship.\"\ntt0338013,3et9liRrywY,\"Joel tries to hide his memories of Clem far in the past where the \"\"Eraser Guys\"\" won't find him... and winds up as a baby.\"\ntt0120735,I_e8l4Lj8OE,\"Eddie and the lads rob the thieves and take the van filled with weed, cash and a traffic warden.\"\ntt0120735,OvRYeeFT7BA,\"With Barry the Baptist feeding him information, Hatchet Harry raises Eddie into a no-win situation.\"\ntt0113749,05O77oX6bQE,\"When Brodie and TS are revealed on the show, TS has to win back Brandi.\"\ntt0120735,PoBD69ANBUg,\"Gary and Dean come for the guns, but get Hatchet Harry and Barry instead.\"\ntt0338013,RwQVsB6k24Q,\"After being ignored by Clem, Joel discovers from Rob that he's been erased from her memory by Lacuna Inc.\"\ntt0129290,hXWDSeVeaAE,Patch passionately appeals to the Med Students and the Medical Board and is surprised by all the people he has helped.\ntt0074281,rwd5hlQnu0I,\"Duane threatens Lonnie with a gun for the money, but Duane talks him down.\"\ntt0129290,Pr9ruvxA3K4,\"Patch gives a speech to the Medical Board saying that doctors should not only fight death, they should fight indifference.\"\ntt0074281,8h6r3S5zjtk,\"Unimpressed by Daddy Rich, Duane likens him to a pimp, which inspires the Wilson Sisters to break out into song.\"\ntt0036775,7vZy9ra8kdM,Walter confesses to murder on Keyes' office recorder.\ntt0036775,1WRLqzGkzNw,\"Walter confronts Phyllis about her manipulative ways, but ends up on the wrong side of her gun.\"\ntt0036775,8nYPCDXHuPs,Walter tells Phyllis that he is done with her and will not be taken down for her crimes.\ntt0074281,XbTEusaf2nU,Daddy Rich and the Wilson Sisters roll up to the car wash in his Cadillac and holds court with the employees.\ntt0115783,3nydBUSR08o,\"When Moses proves to Keats that he was telling the truth, they hijack the car and toss the FBI agents out on the street.\"\ntt0074281,zcDoyBvCyF8,The other employees trick Irwin into walking through the car wash.\ntt0074281,Ye4fqNh_vbs,\"T.C. tells an unimpressed Lloyd his dreams of being a black superhero called \"\"The Fly.\"\"\"\ntt1194263,zBErHC42Gzk,Buddy has a chat with Rev. Jackson in the church that Felix built.\ntt1194263,aRgUxpmvZpc,Felix gets fitted for new clothes for his funeral.\ntt0115783,8WfKSXftr60,\"After escaping the plane crash, Keats is forced to lead the chained and chatty Moses through the desert to safety.\"\ntt1121977,784nv_NRf4k,Prospective adopters Lucy and Joseph are grilled by the birth mother.\ntt1121977,_zlqhZOE4yw,Elizabeth comes on to Paul.\ntt0115783,GLfcxIq-zmY,\"When Moses tries to escape out the bathroom window, Keats sticks his gun up his butt, freaking out Charlie.\"\ntt0129290,eQ87hBFrS_I,\"Patch greets the visiting gynecologists with a larger-than-life, yet intimate welcome.\"\ntt0115783,VjlGOec7RVU,A couple Arizona Highway Patrol officers find Moses passed out in the car with beer bottles scattered all over.\ntt0036775,hjuYfeA2prM,\"Keyes tries to promote Walter to claims, but Walter prefers being a lowly salesman.\"\ntt0129290,byPJ22JDFjI,\"Patch brings joy to the patients in the Children's Ward, but Dean Walcott isn't laughing.\"\ntt0036775,LJq1auJq_gc,\"Walter realizes that Phyllis wants him to kill her husband, but he's not that crazy. Or is he?\"\ntt0036775,ZKdcYnlkhx8,\"Walter makes some passes at Mrs. Dietrichson, but she rebuffs him.\"\ntt0096734,jal6Pf2DFlg,Ray reveals a damning piece of evidence; he plans a raid on the Klopeks' house.\ntt0117381,tSXp2wB6kXQ,\"David follows Nicole's friend, Gary, into the forest with the intent to murder him.\"\ntt0117381,a5BtDmdw708,\"Steve and David battle it out in Nicole's room, with a grave end for David.\"\ntt0117381,UI6mgCAcXzc,\"A security guard shows up at the house and tries to help, but ends up getting shot.\"\ntt0117381,5qfoeuQFFHw,David professes his love to Nicole and apologizes for hurting her friend Gary.\ntt0129290,bKLQBuSPVwQ,\"Patch has a conversation with Arthur, who gives him his nickname.\"\ntt0117381,tumI28B48wY,David and Nicole's roller coaster ride turns sexual.\ntt0089560,1KfyTORRMXk,\"Rocky is humiliated when Diana introduces him to her parents, who cannot see beyond his deformities.\"\ntt0089560,aFDFSGAIrxs,\"Visiting the cemetery where Rocky is buried, Rusty remembers her son as Gar and Dozer stand nearby.\"\ntt1121977,Ig8UNiVUfc8,\"Paco tries to make amends with Karen, but she will have none of it.\"\ntt1149361,Gor6z4YDPhU,Bazil disguises himself in order to spy on a meeting between arms dealers in a department store.\ntt1321509,1sCRrXnBTZ8,Aaron and Ryan tie up the little person trying to extort their money.\ntt1321509,o3aqMjrFf5k,Oscar believes he sees the coffin moving and dumps the body on the ground.\ntt0089560,4snGt8OzUV0,\"When the blind Diana asks Rocky what he looks like, Rocky tells her the truth.\"\ntt0089560,fc0uxTiUDrE,\"Rocky gets a physical and Dr. Vinton hears about Rocky's \"\"lionitis\"\" for the first time.\"\ntt1321509,OhOvnL8Q03c,Elaine is alarmed to learn that she accidentally gave Oscar a hallucinogenic drug.\ntt0089560,_2WBjBnwlUs,\"When the arrogant new doctor, Dr. Vinton, explains the test results for Rocky, Rusty tears him a new one.\"\ntt0132477,CzOH54GemVo,Homer invites his dad to his last rocket launch and let's him know who his real hero is.\ntt0089560,C1kZTfHldfY,\"When Mr. Simms tries to prevent Rocky from registering at his school, Rusty plays hardball.\"\ntt0144528,bxgZWv4Db5I,Sherman gets Buddy Love to take the age reversal formula by playing fetch with a formula soaked ball.\ntt0132477,h1F9-NKqDDk,Homer tells his dad about his hopes and dreams and that he's quitting the coal mine for good.\ntt0132477,udHB3tftPz4,\"When Homer proves to Principal Turner that his rocket didn't start the fire, he gets re-enrolled in school.\"\ntt0132477,cP_OM5VVcSo,The Rocket Boys test and launch various rockets as they try to perfect their design.\ntt0132477,TUlYMYQD3ZE,The Rocket Boys successfully launch their first rocket -- straight into John Hickam's office.\ntt0144528,jFoUWFmM-NU,The Klumps have a dinner celebration for Papa Klump's retirement.\ntt0144528,c0RlK3VAmzg,Mama Klump is disappointed in Papa Klump's lack of interest in sex.\ntt0091541,i6OCtSqrOQ0,Anna arrives at their nearly demolished home and finds Walter stuck in the floor.\ntt0091541,9CJ9EDtZ2p8,\"Walter flips a switch in the kitchen and starts a series of electrical fires, and after the turkey nearly hits Anna, the bathtub breaks through the floor.\"\ntt0091541,3LY5dV3xghY,\"Walter borrows $200,000 from one of his clients - a child star named Benny - by using a little creative persuasion.\"\ntt0144528,9fwBPbt95vA,\"In the middle of Sherman's session with Dr. Knoll, a little bit of Buddy Love slips out of him.\"\ntt0824747,Gm1BZxc4tmk,\"When Detective Ybarra asks Sanford to show him which kids he killed, one of them turns out to be Walter Collins.\"\ntt0117218,iB25eDhWImc,Klump brings Carla home for dinner and subjects her to inappropriate conversation and bodily functions from the family.\ntt0824747,pOPWdQO9bK4,\"When she won't sign Dr. Steele's paper, Mrs. Collins is forced to take sedatives.\"\ntt0824747,edX09NFZ3oc,Captain Jones accuses Mrs. Collins of trying to perpetrate fraud and commits her to the Psych Ward.\ntt0119643,sxNHNxmgzJU,Joe and Susan share a final kiss.\ntt0117218,cZP4yFO6l78,\"Professor Buddy Love gives the \"\"rich-dummy\"\" explanation of his revolutionary research on weight loss.\"\ntt0117218,al-tdoT3gL8,Klump literally jumps for joy when he looks in a mirror and discovers that he is thin for the first time... and he can see his...\ntt0824747,FlxXhrDycHw,\"Mrs. Collins is visited by Captain Jones who tells her that they have found her son, alive and well.\"\ntt0119643,Ae-mN5aD8Qg,Parrish meets Joe Black - death personified - and finds out that he is going to die.\ntt0119643,K8JhJPro-1c,Susan and Joe Black undress before making love.\ntt0824747,pHvNvYijtBU,\"In his sermon, Reverend Briegleb uses Mrs. Collins' case to blast the LAPD.\"\ntt0119643,DXief-vtjIs,Parrish gives his 65th birthday speech and breaks precedent by telling the crowd his one candle wish.\ntt0119643,YF-7cPk04OY,\"Susan questions Joe about his identity and purpose, but he's unable to answer.\"\ntt0119643,G4RvOmNedls,Bill finds it difficult to introduce Death to his family at dinner.\ntt0120669,BwDlobymMk0,\"When leaving Las Vegas, Duke gets pulled over by a Highway Patrolman after a high speed desert chase.\"\ntt0322259,gJ_cx3AmCuI,\"Carter tortures a detective using a panicky rodent, a bucket and a blowtorch.\"\ntt0322259,RL_3JEsg994,\"Brian and Roman race to pick up a package for crime boss Verone, while he tracks them from his office.\"\ntt0322259,LGnYM0wT0t4,Brian and Roman compete in a race with high stakes -- their cars.\ntt0117218,B52L95xRYFs,\"After a family dinner full of food and farts, a depressed Klump is reminded by his mama to always believe in himself.\"\ntt0315327,bjAM2J_D4UY,\"When Bruce meets God for the first time, he is offered his job as the Almighty to prove it's not as easy as he thinks.\"\ntt0322259,qaBlaPsuHQw,\"Brian tries to flee the cops in his car, but is stopped by an ingenious device.\"\ntt0120669,gP8_w1J5raY,\"High out of his mind, Dr. Gonzo loses it, forcing Duke to kick him off the carousel.\"\ntt0120669,uOmtVFQ3WF8,\"Hallucinating on acid, Duke checks into the hotel with Dr. Gonzo.\"\ntt1038919,L98X2ESOWU0,Nicole and Milo join forces in a chase across a busy golf course.\ntt1053424,jocnzvDLA60,Remy and Beth attack the airport cops and run into Jake.\ntt0947810,ji8jpGMlBE8,Journalist Lawrie Dayne questions Miller about his mission.\ntt0110950,9oTVECouTO4,Lelaina gets reprimanded by her boss Grant when she forgets his coffee.\ntt0117218,LsaLeOKK-EA,\"Klump shares a romantic kiss with Carla on the beach, but inadvertently buries her under the sand.\"\ntt0120669,BmylCJhL-5Q,\"When Duke gets a call to cover the Mint 400 race in Las Vegas, Dr. Gonzo invites himself along.\"\ntt0110950,xNHt_KWKMbE,Vickie complains about men -- and AIDS -- at a diner with Lelaina.\ntt0110950,AgB4n-1-_BY,\"While Lelaina breaks down about feeling like a failure, Troy comforts her with kind words, and a kiss.\"\ntt0365748,t--mSXDeETc,\"Pete has a question for Shaun about their sloth-like roommate, Ed : \"\"When's he going home?\"\"\"\ntt0110950,b_BA368IluE,Lelaina gets irritated when Vickie tells her that Troy is moving in as a roommate.\ntt0110950,YVOKgKYJB2E,\"Out on a date with Michael, Lelaina gets uncomfortable when he gives her a compliment and asks about her friends.\"\ntt0209163,2W5dr790cKo,\"Rick isn't too happy about taking the group on a blimp ride, but Izzy insists that it's the best way to travel.\"\ntt0052357,CgU-5WQGClY,Madeleine shares her deepest fears with Scottie and he promises to stay with her.\ntt0021884,qLvGnro4Cgw,Ludwig encourages a mob of townspeople to light their torches and go after the Monster.\ntt0021884,GbZMFMSKQ2s,The Monster fights Dr. Frankenstein and falls to the floor after Dr. Waldman injects him with a sedative.\ntt0021884,A4Ntv7DJURM,Fritz breaks into Dr. Waldman's classroom and steals the brain of a criminal after dropping the pristine brain.\ntt1053424,zPeqoWzZE5I,Jake explains to Remy that rules keep the world together.\ntt0021884,96sUPxlIfx4,The monster reacts violently when he sees fire.\ntt1053424,iCfjoSbWHZM,Jake chastises Remy for coming to his aid because he loses the commission.\ntt1053424,HXRuqpUG9RI,Remy is attacked by a woman while reclaiming an organ.\ntt0947810,J1668qPavto,Unit leader Roy Miller questions the higher-ups in command about the authenticity of the intelligence.\ntt0079367,rSWBuZws30g,\"Navin hits rock bottom, leaving Marie at the house, taking only his chair... and paddle ball game... and lamp...\"\ntt0252866,0XOzPjsD_ec,Jim accidentally uses super glue instead of lotion when pleasuring himself.\ntt0079367,kBJDz4ylQO0,Navin gets angry and uses karate on some thugs who use racial slurs in his home.\ntt0079367,Tcwz8-EfFYE,\"While working at the gas station, Navin gets shot at by a mad gunman.\"\ntt0079367,3ohBUYQJflU,\"Navin gets advice from the family as he sets out to leave home for the big city, but first, he needs to hitch a ride.\"\ntt0079367,ahuPW6_t-z0,\"Navin, ecstatic about his name being in the phone book, randomly gains a madman stalker as well.\"\ntt1078940,Slf_2J57SyY,Marcel leads the group through a therapeutic strip exercise.\ntt1743720,lEPfDu4pVqg,Morgan Spurlock gets Pom to sponsor his movie about product placement.\ntt1588337,Tb6dbNhFk7I,Christian and Celestin are persuaded to head back to France due to increasing terrorist activity.\ntt1640484,FSSlOmgUf0Q,Reverend James tries to give the blissful couple a wake-up call by warning them that life won't always be easy just because they love each other.\ntt1240982,hG6DmzzU8m0,Thadeous demands the compass from Isabel.\ntt1217613,ucikAqewZL4,A newscaster delivers updates in the development of the ongoing invasion while the military prepare to engage.\ntt0095631,Xlj9wg9q6f8,\"The FBI stops Jack on the street to interrogate him, but before they let him go he manages to steal one of their official badges.\"\ntt1285016,o6TYEHyv00Y,Mark explores the idea of putting the social experience of college online.\ntt0095631,T3Xlw651IoE,\"At a pit stop, Jonathan steals a plane and tries to escape from Jack.\"\ntt0095631,W3GsHtZu0Bw,Jonathan and Jack have a discussion about denial and how it has effected both of their lives.\ntt0095631,Ppj45Ai524s,\"Jack and Jonathan sprint to board a freight train; Jonthan tries to keep Jack from boarding, making him furious.\"\ntt0780653,rbsrjcXynlg,Sir John protects Lawrence from the Colonel and his men.\ntt0780653,lfJ7WzyoZH8,Abberline and Carter pursue the Wolfman through the streets of London.\ntt1174732,0SwgAb1effg,\"Jenny tells David how boring life was before he came along, and they end the night with a kiss.\"\ntt0989757,t4_obOCNYls,Savannah and John kiss in the rain.\ntt0989757,Qxa4zjRostg,Savannah is reluctant to let John go.\ntt1174732,C_dc5WzLq_c,Jenny meets David when he drives up to her on a rainy day and offers a lift -- for her cello.\ntt1243957,xUp1My_eHn4,Elise picks the handcuffs off of Frank on a solitary boat.\ntt1243957,V4qu6AJNBQ8,Elise reads a letter while police watch her every move.\ntt1243957,JhSRGLe18OI,\"Elise scours the train for a man that fits what she's looking for, and she finds it in Frank.\"\ntt1545098,G4_3pzwFYKw,Kenny Chesney and his band sing a tune about hard livin'.\ntt1545098,riicefV6xiI,Kenny Chesney performs a sentimental song.\ntt1545098,aF4En8CIaNk,Kenny Chesney takes to the sky.\ntt1545098,_WjIlCZJtLk,Kenny discusses reaching each member of the audience.\ntt1423894,z6aek_pwEGk,\"Barney turns to his dad for some paternal wisdom concerning his love life, but is disappointed with the metaphors his dad has to offer.\"\ntt1423894,ECoL3IaXgRI,A note Miriam has left Barney has made him certain that he is in love.\ntt1423894,rP0QURktz3Y,Barney refuses to accept that he and Miriam's marriage is over.\ntt1564585,V3Av8JD__sQ,\"Jarrod and Elaine watch a jet make some progress in shooting an alien, only to see it crash before them.\"\ntt1174732,IsskB0D2GC0,David meets Jenny's parents and convinces them to let Jenny stay out late on their date.\ntt1174732,Pz0RfOVm-So,\"Jenny admires Helen's coat, and Helen encourages her to have David take her shopping in Chelsea.\"\ntt1135503,uhpknFQJ7G0,\"At a Valentine's Day dinner with friends, Julia and Paul are asked whether they were spies during the war.\"\ntt1135503,Eg8MVTZ12pE,Julie reminisces about her mother cooking Julia Child recipes and has an idea for a blog.\ntt1135503,YsrQUrJ7AdM,\"When Paul asks Julia what she really likes to do, she immediately answers, \"\"Eat.\"\"\"\ntt1226273,TBiqsgxbxLA,Jedburgh tells Thomas that someone considered his daughter a terrorist.\ntt1431181,m03MTJCH0Ns,Mary talks about her taste in men over a glass of wine with Gerri.\ntt1126591,w0AliJi4npk,\"Ali performs the number \"\"Express\"\" at Burlesque.\"\ntt1126591,athtiym8OYE,\"At a party in the Hollywood Hills, Marcus throws his best pick-up line at Ali.\"\ntt0385267,coeU38xEhVU,\"In a company basketball game, Dan's competitive side takes over leading to an on court injury.\"\ntt1126591,PWTptbb0vB4,Tess talks about her favorite love affair with Sean.\ntt1126591,K9T33H_h0Yk,Ali asks the bartender who she needs to flirt with to get a job dancing on stage at Burlesque.\ntt1431181,xeSDsBS_cvo,\"Observing the blissful marriage between Tom and Gerri, Mary guzzles down a glass of wine to hide her jealousy.\"\ntt1126591,BvWSMD2FIpU,\"Ali walks into the Burlesque club as Tess performs the tune \"\"Welcome to Burlesque\"\" on stage.\"\ntt1423894,tM3Zg8m373Y,\"Barney Panofsky ties the knot with the not-so-shy Clara, to his friends' delight.\"\ntt1423894,oqKAuNefcSM,\"Barney Panofsky makes it on the train to tell Miriam, whom he just met at his wedding, that he is madly in love with her.\"\ntt1285016,8eu9yZ6pWjg,\"In the morning, after a one night stand, Amelia learns that she slept with the founder of Napster, Sean Parker.\"\ntt1179056,P2A2nKAbQqI,\"When Jesse visits Kris at night, he finds out they are having the same horrific dream.\"\ntt1038686,69ux9TSbEKk,Michael shows up and hands out guns immediately.\ntt1038686,KPwY1uEFP-c,\"As the group drives down the road toward large clouds, Audrey points out that clouds don't buzz.\"\ntt0369735,NYFI1-FTw94,\"Viola and Charlie come to blows over Viola's dress, but Gertrude appears to provide some perspective.\"\ntt0369735,ndItN7hhtII,Kevin proposes to Charlie in front of his disapproving mother.\ntt0361748,PolzQMFju_s,\"Although she asks Frederick to stop pestering her, Shosanna becomes curious of his status.\"\ntt0369735,MHpyl6uVPrw,Viola spikes the gravy with almonds to make Charlie sick.\ntt1216492,y9jS6a7rIVQ,The innkeeper forces Declan to kiss Anna.\ntt1216492,YCIqymquy54,Anna catches Declan's lie about the coin toss.\ntt1119646,dAOw8dXcMpw,\"During their interrogation about the police car they stole, the guys have the audacity to tell the officers that they \"\"found\"\" the police car and deserve a reward.\"\ntt1119646,OkIYOU1ObYU,\"When Phil discovers they valet parked a stolen police car, he urges the other guys to act cool and just go along with it.\"\ntt1216492,9ZY9i9-hoQM,Declan agrees to drive Anna to Dublin.\ntt1179056,1QjC0jXb-9k,Dean is stalked through a burning kitchen until he wakes to freshly poured coffee from Nancy - and freshly drawn blood.\ntt1119646,vjvHNXSWvPs,Alan makes a very heartfelt toast to the boys on the roof of their Vegas hotel.\ntt0775489,7d7OeDwkfTg,The illusionist follows a tough act and is bothered by a drunken fool.\ntt0872230,VvfRXzxBe68,\"Brittany runs from the all-knowing, all-seeing Ripper in the forest until a phone in her bag gives up her hiding spot.\"\ntt1226753,F44mBbuqA2c,The stone-faced Rachel confronts her former colleague and lover about what their daughter does and does not know.\ntt0775489,4xh-Hz14AA4,The Illusionist puts high wire flare on billboard art as acrobats wield paint brushes with expert precision.\ntt1226753,j32LbrHGak0,\"Complete strangers, David and Rachel must fake a false reunion to keep their secret safe.\"\ntt0361748,7Xgj1Csnr_w,Col. Hans Landa explains how he finds hiding Jews.\ntt0249462,FboJePoCAb8,\"Billy says goodbye to his neighborhood, best friend, and family to leave for the Royal Ballet School in London.\"\ntt0913354,dnThWk9ib1c,Mike tries to usher away a cop who comes around the warehouse.\ntt0775489,oZ868onS6YY,Young Alice gets a new pair of high heels and takes them for a test drive.\ntt0249462,U0tTT_87Hh8,\"After giving one-word answers in the interview portion, Billy finally opens up when asked what he feels when he dances.\"\ntt1371155,M37QsnD6nZ4,Rita stands up for the rights of female workers in 1960's England.\ntt1371155,r0cRrtcU5X0,\"A female politician tries to hold up the grassroots effort of Rita O'Grady and her group, but they will not be stopped by man or woman.\"\ntt1371155,UJWni94vAAU,\"Putting her chauvinistic officers in place, Barbara Castle fights for equal pay in the 1960's.\"\ntt1371155,BbjSOt7NxIY,\"Eddie tries to apologize to Rita, but he doesn't understand what she is fighting for...equality.\"\ntt1371155,KMD8yO3iM-E,\"Lisa takes a \"\"very progressive\"\" stance on why the unions are destroying Ford.\"\ntt0804497,wq26A_QK4So,Craig tries to explain his feelings to Noelle by unintentionally quoting lyrics from a Bob Dylan song.\ntt1285016,bXt-KqvrSh0,Mark waits at a law firm to give a deposition with second-year associate Marylin Delpy.\ntt1285016,nHCEOK9n5z8,Tensions rise as the Winklevoss twins and Divya believe that Mark stole their social networking idea.\ntt0804497,5hXXFQLDsoA,\"While waiting in the E.R., Craig meets Bobby whose opinions and line of questioning don't seem to be one of a doctor's viewpoints.\"\ntt1645089,5msVl3oZl4U,\"Frederic Mishkin writes a study on the stability of Iceland's financial system, but he has conflicting interests that tarnish his conclusions.\"\ntt1645089,xy8a0GKO_Ek,\"Allan Sloan, senior editor for Fortune Magazine, examines the calamity involved with sub-prime mortgages.\"\ntt1645089,xxbFPdBBjc0,\"Financial institution Lehman Brothers goes bankrupt, resulting in serious consequences.\"\ntt1645089,vdbQpDHAq5U,Author Charles Morris explains how a bond trader became rich in the 1980s after the banks became public.\ntt0899106,MPOPd2RNLko,\"Burke tries to pick-up Eloise, but she shoots him down by pretending to be deaf.\"\ntt0844471,mSa_kUf6cxs,Cal and Earl ride a sleigh down a candy roof.\ntt0249462,qyLJCNyRov0,\"Billy is hopeless in the boxing ring, distracted by a neighboring ballet class.\"\ntt0103919,vFAE-ZIntVI,\"In order to prove her innocence, Helen summons the Candyman who promptly kills Dr. Burke.\"\ntt1136608,54A7W6eEBnw,\"During a search, Wikus finds a canister of alien liquid and accidentally sprays himself in the face with it.\"\ntt1486190,Xon0bfX3L1g,Andy is unforgiving towards Tamara when he learns she's having an affair with Nicholas.\ntt1645089,QO9r8aO07YE,\"Jerome Fons, a managing director for Moody's Rating Agency explains that the investment banks all had good ratings prior to the financial meltdown.\"\ntt1486190,aRcxYPkFjh4,The arrival of Tamara Drewe at the writer's retreat turns everyone's head.\ntt1486190,bJgem6Xc3TM,\"Tamara checks into the hotel for the evening, followed by Andy.\"\ntt0298203,F2hiFbuQ-Qw,B-Rabbit battles Papa Doc and blows him out of the water.\ntt1584016,Z4vn4UWaeZU,Rel asks Nev about how his relationship with Megan is progressing.\ntt1588170,X1u5iUcD0Ag,Tony and Ben try to get the elevator doors open.\ntt1588170,Po_w8OmTfoY,Vince is blamed for cutting Sarah.\ntt1588170,1q5Us5iVWNI,One of the passengers is attacked when the lights go out.\ntt1584016,LiHKY-bG36E,Megan sends Nev a drawing she made of him.\ntt1220634,nkVK4JHRQfk,Alice and her double shoot their way out of being trapped in a skyscraper.\ntt0298203,ByNjiy8-j8g,Rabbit catches Wink having sex with Alex and gives him a beating.\ntt1440728,sxI6RnTFj3U,Jack hunts down the hunter in a snow-filled landscape.\ntt1220634,5CdiJbnuvYg,Alice goes over the roof with a bungee cord as all the undead topple to their doom.\ntt1282140,NYTS7NBDKKU,Olive receives a musical birthday card from Grandma and can't stop listening to it.\ntt0298203,0ShWGyC408I,Greg freaks out over the eviction notice and Rabbit beats him up.\ntt1282140,LUV0AjnjaT4,Ojai High School changes their mascot from a blue devil to a woodchuck.\ntt1282140,71qm5ZOlpAw,Olive helps out Brandon's popularity by pretending to have sex with him.\ntt1282140,CEtLeoXjttY,Olive receives some religious judgment from Marianne who overheard some gossip.\ntt1135084,VC0uIqac2A4,Tensions increase when Ghost unexpectedly enters the back room where the bank robbers are hanging out.\ntt0212338,ETC82KEplac,\"Greg is a little too impressed with Kevin, Pam's ex-fiance.\"\ntt0110074,DQYjgqnTmJ8,\"Norville's invention, the Hula Hoop, becomes a sensation.\"\ntt0110074,fpiyrd28vfA,\"Amy successfully convinces Norville that she shares his Muncie, Indiana roots.\"\ntt0098067,RF0YXIambdI,Susan discusses the perils of parenting and the thrills of marriage with Karen and Nathan.\ntt0298203,vt0hblIsHiY,\"When Cheddar tries to help B-Rabbit win a fight by pulling a gun, he accidentally shoots himself in the leg.\"\ntt0110074,hLCjV1eOAoA,Sydney introduces Norville to a roomful of disgruntled shareholders.\ntt0298203,8bY4qPadkSo,Rabbit's mom tells him that they're getting evicted; he has a rough time at his factory job.\ntt0879870,NBQAXiZ7KG4,Elizabeth hears some worrisome news when she has her palm read in Bali.\ntt1415283,aYKt-7msPic,Nanny McPhee hides a baby elephant from Mrs. Green.\ntt0879870,yGgOimJaqT4,Elizabeth becomes frustrated with her meditation program led by Richard.\ntt1415283,JPasKum1U9Q,Nanny McPhee arrives to help Mrs. Green with her unruly children.\ntt1438254,bCaHwP04KK0,Charlie recites some poetry to Tess to encourage her to take a chance.\ntt1438254,VUvB-jPvVuw,Charlie kisses Tess as she tries to explain her route.\ntt1438254,U2p88URI8lg,Sam reminds Charlie of the deal that they made.\ntt1438254,Uu31b0VHCc4,Charlie teaches Sam how to hold a baseball.\ntt1386588,5PKVmzdQGwg,Captain Mauch takes away Gamble's gun and replaces it with a rape whistle.\ntt1313092,mK8ad1nYFQA,J' gets some family history from Aunt Janine.\ntt1313092,5sFu4iEF8dk,Craig puts pressure on 'J' to intimidate a gang of local hoods by pulling a gun out on them.\ntt1386588,WzTIhm6YMQk,Police partners Gamble and Hoitz spar verbally.\ntt1386588,7GIxoAbxvQk,Danson and Highsmith congratulate themselves on a job well done and announce a party in their honor.\ntt0944835,LlRHSFVV8cY,Ted gets in Evelyn's face when she is arrested for treason.\ntt0944835,NG5ijPnfYV8,\"Pinned down by Peabody and his men, Evelyn makes a daring escape by jumping off an overpass onto a truck.\"\ntt0842926,P1_QqWRpUQg,Jules keeps seeing her kids' expressions on Paul's face.\ntt0842926,HPwD7sgVtkA,Nic is surprised by Paul's blunt answers to her questions.\ntt0110074,zU3Hs36FIrw,Norville gets a crash course on protocol at Hudsucker Industries from a motormouthed manager.\ntt0110074,_6dtasEqpLM,\"Waring Hudsucker interrupts a board meeting to vacate his post as president of the company, effective immediately.\"\ntt0842926,xxFSUgehWbk,Paul and Laser discuss their preference of team sports.\ntt1375670,zrR9re9NV_s,\"At a family restaurant, Lenny needs to explain to the children what \"\"wasted\"\" means.\"\ntt0298203,LRPEYUlE8rU,Wink tells B-Rabbit all about how he's going to make him a rap star.\ntt1375670,IG4FAGxZvtU,Mrs. Feder shows off her rock skipping prowess to the children.\ntt0106308,Rf9V-yzCzR4,Ash hops in his battle car to fight the army of the deadites.\ntt0118689,NNzMjrJQKsc,\"Bean gives his expert opinion on the Whistler's Mother\"\" painting to General Newton and the crowd.\"\ntt0338075,7_hS3YLPHvI,\"After engaging in some small talk, a cop reveals that he's on to Phil and Larry and cuffs them to the hearse.\"\ntt0338075,lJ9V5BgkzKU,\"By opening up and confessing years of drug abuse, Larry convinces Stanley to give them Gram's body.\"\ntt0338075,GRG-2ocGGnw,Phil shares a drink with the ghost of Gram Parsons.\ntt1155076,Rdb-5NHyGOA,\"With Dre watching, Mr. Han tries to catch a fly with chopsticks.\"\ntt1155076,7rlvmkQy4hQ,\"Mr. Han teaches Dre discipline, focus, and flow of movement.\"\ntt1226229,zyJgcHwLP3w,Aldous and Aaron are chased by a crazed Sergio through a hotel corridor that goes on and on and on.\ntt1121977,lAklD2ULzh0,Karen learns some hard truths about her mother.\ntt1470023,qDc-OGF_NJ0,Vicki and MacGruber get intimate in her kitchen.\ntt1470023,WDiwa8H0DTc,MacGruber gets thrown out of Dieter's party...literally.\ntt0800039,T4Sk7RsIQd0,\"Peter bumps into Sarah at the resort; her new boyfriend, Aldous, searches for a stray shoe.\"\ntt1470023,5MBUVKzIyPY,MacGruber and Piper are attacked while Vicki is in the coffee shop.\ntt0020629,0wFkRRILnPo,\"A wounded Paul is briefly allowed a trip home, where his spends time with his ailing mother.\"\ntt1121977,yb_-UHyPC8c,Karen's mom tells her to be wary of her new crush.\ntt0118689,yLrN6wSSGqk,\"Trying to entertain a sick child on the plane, Bean pops a bag over a sleeping man. Unfortunately, it is filled with vomit.\"\ntt0020629,_SQr8I3lcW8,\"Franz discovers his right leg has been amputated, while Mueller tries to convince him to give up his boots.\"\ntt1121977,4MG5Dy0gFFY,\"Karen has coffee with Paco, but it ends badly.\"\ntt1194263,-v-KiIuYkCo,Mattie visits Felix at his barn after hearing him on the radio.\ntt1194263,nHKJaG3sXMY,Frank gives Buddy a pep talk before sending him on his first solo sales call.\ntt1194263,ZgngBG5JX_M,Felix proposes his idea to hold his funeral while he's still alive to Frank and Buddy.\ntt1194263,NVR6-HnKtM8,Frank complains to Buddy that not enough people are dying to keep their funeral home going.\ntt1121977,f4ojzsvQhh0,Karen explains to Paco why she treated him badly.\ntt1121977,fJBrWMxc_P4,\"Paul admits that he has feelings for his employee, Elizabeth.\"\ntt1121977,8WqRrq_lM14,Paul invites his employee Elizabeth to a one-on-one dinner.\ntt0265298,OseaEf8Qy8Y,\"Stranded in the desert, Marty accepts a helicopter ride from Vince, but it comes to an abrupt end when they have to jump out.\"\ntt0430922,RH0zWG3Crzs,The L.A.I.R.E. battle royale commences and Augie takes vengeance on his betrayers.\ntt0430922,p84uEGZqFlk,Augie faces the evil King Argotron and slays him.\ntt0265298,LJY_pChREVY,Kaylee and Jason crank call Marty's assistant Astrid in order to sneak into Marty's office.\ntt0265298,-UAElWXbk3I,\"On the way to turn in his assignment, Jason rides his sister's bike into a limo, and movie producer Marty gives him some tips on lying.\"\ntt1321509,8oi8aVwb_Tg,Aaron informs Ryan that their father had a gay lover.\ntt1321509,yywHSkFkfU0,Elaine tells Derek the truth about their relationship.\ntt1321509,WJeOTphX47E,Aaron is distressed when he doesn't find his father in the casket.\ntt1149361,32JbDv50hFc,\"A private collection of oddball trinkets is on display including Winston Churchill's nail clippings, Marilyn Monroe's molar, and Mussolini's eye.\"\ntt1149361,obDVqhso9l4,Bazil is surprised when he finds a contortionist hanging out in a refrigerator.\ntt1149361,IPEX_RXRKgw,Bazil plays a whimsical game with some street kids to get his hat back.\ntt0361748,6QoON2Vq78k,\"General Fenech gives Lt. Hicox a briefing on \"\"the Basterds.\"\"\"\ntt1038919,oqAu5fVDwAM,Milo captures Nicole and puts her in the trunk of his car.\ntt1038919,7nO7han5KIg,\"Milo finds Nicole at the horse races, where he tells her is a bounty hunter and that he is taking her to jail.\"\ntt0020629,368Nrtkmrls,\"When only half of the soldiers come back to camp, the cook hesitates offering all of the rations for the whole company.\"\ntt0195685,mKgy5W3S6nw,\"Erin argues with her boss Ed over her bonus check until she realizes that the \"\"change\"\" he made in her bonus check was a good one.\"\ntt0195685,D-5P2iMf_ZA,George consoles Erin who is despondent about life after being fired.\ntt1053424,rZ-_UsEBT5E,Beth tells Remy what artifogs she has.\ntt0020629,99odqGVYe4g,\"Hearing the whistle, Second Company readies itself and anticipates the French invasion.\"\ntt1053424,OSca1EnBNJA,Frank sells a customer an artificial pancreas.\ntt1053424,UHqUN3um9Bc,Remy gives his reclaimed artiforgs to Frank.\ntt0947810,HvJTquFs5Zk,Poundstone and Briggs track Miller.\ntt1234654,u3M_YKjLOkI,Florence admires Roger's ability to do nothing and asks if he wants to spend the night.\ntt0947810,qO_4Up5Q5ns,Wilkins tells Miller that he can't go with him on this mission.\ntt0120735,14HerspIb_U,\"Rory and his boys get into a firefight with Dog's thugs. Dog tries to escape, but is robbed by Big Chris.\"\ntt0780653,kQQfoIy7SNI,Sir John watches Abberline and his men take Lawrence away.\ntt0113749,ZbKU3_H3FVw,Brodie and TS encounter Willam at the mall staring at a 3-D painting of a sailboat.\ntt0780653,B_4YNm9mMvo,Gwen asks Lawrence to stay with her so she can help him.\ntt0120735,u3UyGrnv1-A,\"Plank and his boys try to rob the weed operation, get shot with an air rifle and return fire with a monstrous Bren gun.\"\ntt0120735,PGqBHvtmtgE,Things come full circle when Big Chris brings the bag of money back to Eddie and the lads.\ntt0780653,Dl4hTIp8QbM,Sir John locks himself in and Lawrence starts to transform into the Wolfman.\ntt0989757,RK27DwSEetI,Savannah meets John's father.\ntt1174732,bQqcnMHjxvQ,Jenny is enthralled by Danny's talk of art auctions and decides she can rearrange her plans to attend.\ntt0989757,mudt7nvWwo4,Savannah tells John in a note how she fell in love with him and asks him to write her while they are apart.\ntt1174732,0GiMAf9q3hQ,David's infatuation with Jenny grows as he watches her enjoy herself at a party.\ntt1174732,MCwQ4tdtev4,Jack and Jenny discuss what she needs to do -- and need not do -- to gain admission to Oxford.\ntt1135503,DUhgY4ohhQA,Julie and Eric watch old Julia Child cooking shows.\ntt1135503,aURe7hHL-Dw,\"While Julie has another meltdown in the kitchen, Eric takes a promising phone call.\"\ntt0335266,G2UTjomYxkc,\"Wandering the hotel, Charlotte overhears the press conference for ditzy Kelly's new action movie with Keanu Reeves.\"\ntt0335266,lpOdAHwRnXY,Bob gives Charlotte a secret message and kisses her goodbye.\ntt0074281,UpLg7Ma-c4g,\"Thinking they've identified the Mad Bomber,\"\" Hippo and T.C. try to stop him by stealing his \"\"bomb.\"\"\"\ntt0120735,4HWP1l_KtTc,Tom hears an anecdote about why Rory Breaker should not be underestimated.\ntt1038686,dgJKcCZkXxY,Sandra snatches the baby and decides it would be better to give him up rather than resist those who want him.\ntt0129290,kx2FhY_akDY,\"Patch graduates from Medical School, receiving his diploma in his cap and gown and nothing else.\"\ntt0115783,iXfhOj2PobA,\"Assassins nearly kill Keats and Moses, but they are rescued by Charlie and his amazing backwoods driving.\"\ntt0074281,OHAVcgjGDqM,Marsha is all smiles when she gets hit on by the ultra suave Kenny.\ntt0335266,eNK7N3AwVFQ,Charlotte asks Bob for advice on life and marriage and he is brutally honest.\ntt1038686,jj6ECLiWbxo,Michael explains what is happening and reveals why he is there.\ntt1216492,JxL2yg_bRnQ,Declan mistreats Anna's designer suitcase.\ntt1216492,FHmPBAJK4CY,Anna pushes the airline desk workers for a flight to Dublin.\ntt0335266,kPLNO4WfFJw,\"Bob experiences culture shock when he goes on a talk show with \"\"the Japanese Johnny Carson\"\".\"\ntt1216492,8dhvm-ph88E,Jeremy gives Anna a gift at dinner.\ntt0361748,ezRPVES1oQs,Aldo and the Basterds break Sgt. Hugo Stiglitz out of prison so he can join them and go pro as a Nazi killer.\ntt0361748,XmYC9RAMVeo,Aldo gives Werner a choice: spill the beans on his fellow Nazis or die for his country.\ntt0335266,vGvDCmuDKKE,Lost souls Bob and Charlotte meet at the hotel bar and get to know each other.\ntt0361748,qhAYzFv4HYc,Bridget von Hammersmark tells Aldo that Hitler will be at the movie premiere.\ntt0335266,i86FbeyKK1U,Charlotte and her husband run into airheaded Hollywood actress Kelly.\ntt0913354,_xNB1WCQ5NA,Mike explains to the group that they have 40 minutes to get Ty out of the armored car before the plan goes south.\ntt0335266,4gjiQwh1p6M,Bob performs various celebrity impressions during his whiskey photo shoot.\ntt0913354,uj8ftsuP8T4,Mike and Ty play a game of cat and mouse in armored cars.\ntt0913354,4J_8tpDzfAk,The guys partake in a little hazing with newbie guard Ty Hackett.\ntt0335266,FiQnH450hPM,Past-his-prime actor Bob Harris experiences a language barrier with a Japanese commercial director.\ntt0335266,wixLlPFJgyQ,Bob has a run-in with an evil exercise machine at a Tokyo hotel.\ntt0335266,lPQ6VQzuyxU,\"Bob has an awkward encounter with a \"\"Premium Fantasy\"\" girl sent to entertain him.\"\ntt0074281,Lw0Nn1xSMHk,\"When Duane insults Irwin, Lindy puts him in his place.\"\ntt0115783,Obey6WggwjM,\"When the plane's engines go dead, Moses lands the plane on the edge of a cliff.\"\ntt0115783,ZVuhyX3w4Yg,\"The final showdown between Colton, Moses and Keats.\"\ntt0115783,fImqZCIebuw,\"When Colton's guard tries to shoot Moses and Keats in the back, Moses shoots him in the eye instead.\"\ntt0115783,p0-xbD-mRLs,\"Keats and Moses are reunited, this time with Keats as a cop and Moses as his prisoner.\"\ntt0762125,5RbN0rjWBAg,\"Lem attempts to hide Chuck in his room, but his brother and Skiff both barge in.\"\ntt0899106,ujX0y3zcvP8,\"At the end of a good date with Burke, Eloise struts away down the sidewalk.\"\ntt0899106,uMH_Ajdp3E0,Burke explains to Eloise that he hasn't dated since his divorce.\ntt0844471,fLvEcBoOpnQ,Flint climbs into and out of a spaghetti tornado in an attempt to stop it.\ntt0844471,bbJEqSj7Wkk,Flint realizes that his invention works.\ntt0457400,L24hGLbmNrw,A large mosquito-like insect drains Rick while he serenades the crew with a banjo.\ntt0114746,HigxGvmHEdQ,\"On the cab ride to the airport, Cole and Kathryn learn that Jeffrey's plan was to free animals from the zoo.\"\ntt0114746,C7Rmtxf-NVE,\"Attempting to send Cole back to 1996, the scientists screw up again and instead send him back to France during the first World War.\"\ntt0114746,q74RKOmIjC8,\"Cole explains to the panel of doctors at the institution, including Kathryn, that he is an observer sent by scientists from the future.\"\ntt0129290,G0yU-YJ6sjY,Patch talks with the distracted Dr. Prack who never meets his eyes and doesn't hear a word Patch says.\ntt0117381,0wC8Ab5AZeE,\"Steve meets David on the side of the road and tells him to leave Nicole alone, but David bites back.\"\ntt0129290,Sk9mR3zjrkk,\"When Dr. Prack brings the group session to Patch's room, Patch mocks the process by including the catatonic Beene.\"\ntt0114746,9l_U2xXb9VI,Cole meets Jeffrey Goines who shows him around the mental institution.\ntt0114746,e4yCxKv-2qw,\"In police custody, Cole is visited by psychiatrist Kathryn who tells him that they are in the year 1990.\"\ntt0129290,MKl8s0EO5T4,Patch discovers his calling in life and checks himself out of the mental hospital against Dr. Prack's advice.\ntt0120601,CDywMUdVPqk,John Malkovich performs the Dance of Despair and Disillusionment for Maxine and she is quite impressed.\ntt0120601,oMx6C31dCeo,Craig convinces Maxine to have a drink with him when he successfully guesses her name.\ntt0385267,quJX9XLQe78,Dan meets his new boss Carter and is shocked to learn he is only 26 years old.\ntt0120601,meSIVfOyerg,\"Disturbed by Maxine's behavior and his own growing suspicions, John Malkovich confides in Charlie.\"\ntt0120601,1itYlP2GpI8,\"In order to get Lotte back, Craig leaves the mind of John Malkovich as others file in after him.\"\ntt0114746,TpGPSRGrL3s,Cole comes before the panel of Scientists who offer him an opportunity which will reduce his prison sentence.\ntt0120601,Q6Fuxkinhug,\"John Malkovich discovers the portal into his own mind and upon his exit, confronts Craig, demanding him to close the portal.\"\ntt0120601,T2Y7oo3iB40,Craig has his first visit to the 7 1/2 floor and is introduced to Dr. Lester's unusual executive liaison Floris.\ntt0971209,HQYiGnCpZa8,Kale and Cleo angrily refuse a ride from Cliff and Cydney.\ntt0099329,6_nHubnKxqg,Allison convinces her grandmother to let her ride off with Cry-Baby on his motorcycle and have one night of happiness.\ntt0099329,x_75yMOHMiw,Allison swoons over Cry-Baby as he and his crew terrorize Mrs. Vernon-Williams on a country road.\ntt1136608,1TNL7KlEI8g,Wikus fires an alien weapon at his Nigerian captors and threatens Obesandjo.\ntt0971209,XDXuWwNXAZM,Nick confronts Cliff about Cliff's suspicion that Nick and Gina are the killers.\ntt0099329,iotRit7KMDc,Cry-Baby gets a motorcycle as a gift from his family and announces that he met a girl.\ntt0971209,9QWRxT9oHYI,Cliff and Cydney discuss whether they can make an excuse for leaving the group early or must ride it out until the end.\ntt0099329,XMrWXjOuv0g,Cry Baby sings a song and does a dance about bein' young and doin' time.\ntt0118928,zWkNT5A3wIk,\"Just as a town hall meeting is being convened to discuss the threat of an eruption, the volcano suddenly erupts, triggering a mass panic.\"\ntt0118928,jn2weAEOp4Q,\"Harry and Rachel dodge people, cars and debris as the volcano destroys the town.\"\ntt0089560,DsYP0ql5mzM,Rocky tells his class the story of Troy and is rewarded by applause.\ntt0132477,IjMTiKtwyKk,Homer and the Rocket Boys win first place at the Indianapolis Science Fair.\ntt0117218,i9NIwHKBqy0,\"Depressed about his weight while eating and watching TV, Klump dreams that he grows larger than buildings and terrorizes the city.\"\ntt0132477,ynGvGgy6K2Q,\"With the whole town watching, the Rocket Boys have their first successful launch.\"\ntt0052357,d6HReoQl6Mo,Scottie takes Madeleine on a trip through her past.\ntt0446029,R-aJ-2y5ICo,Scott has an awkward moment with Knives.\ntt0101921,e62uLLsvUzI,Frank throws his pregnant wife Ruth down the stairs when Idgie helps her leave him.\ntt0450405,3rYbV-Q-VFo,Darren and Steve acquire tickets to the show.\ntt0101921,yedsblplSMg,Idgie and Ruth have a playful food fight in the kitchen.\ntt0450405,ypvrfx32T0s,Madame Truska falls into a trance and tells Darren of his prophecy.\ntt0450405,QFOHhusNwtw,Steve asks Larten and Gavner to make him a vampire.\ntt0076723,6oyxLFD2IIw,Braden takes a love not war approach to win things for The Chiefs in their final game.\ntt0076723,_XbL7lG0Su8,Lemieux gives Jim Carr a live televised lesson in some of the things one shouldn't do on the ice.\ntt0450405,LxnLNUq0abk,Larten and Murlough fight in a theater.\ntt0101921,ADMAw7UKLsg,\"Evelyn's goes to marriage counseling and daydreams of wrapping herself in plastic wrap to \"\"spice things up\"\" for her husband, but even her daydreams are nightmares.\"\ntt0249462,jmgV3OFn0aE,Billy is pulled from the ballet class by his irate father.\ntt0249462,Q7wHV0r256A,Billy dances for the stone-faced admissions board of the Royal Ballet School.\ntt0249462,CH8HV5gXQB4,Billy launches into a spirited dance for his father.\ntt0249462,69RNNex-sig,\"Under Mrs. Wilkinson's stern tutelage, Billy works on his pirouettes.\"\ntt0249462,i0p2X2rQ6Ag,\"Trading his boots for ballet slippers, Billy joins Mrs. Wilkinson's class.\"\ntt0068699,VcV-ZLbd-pk,\"After The Stranger is chosen to protect the town, he appoints little Mordecai as sheriff and mayor.\"\ntt0249462,TLZClsaDEw0,\"Finally believing in his son's talent, Billy's father returns to work at the mine to help Billy realize his dream. Billy's brother however, is against his going back because of the strike.\"\ntt0119643,9EV3DKPo-4U,Parrish encourages his hesitant daughter Susan to be open to finding real love.\ntt0117218,BS8zi7Dg8TM,The Klump family eats a hearty dinner as they discuss weight and formerly overweight black celebrities.\ntt0076723,En1SvG9tOSg,\"When Reg tries to whip The Chiefs up with a pep talk, the Hanson Brothers prove to be the ultimate Hype Men.\"\ntt0068699,2fc36Hc2n2s,The Stranger shoots down three henchman while getting an old-fashioned shave in a barber shop.\ntt0322259,tCb_6mO6CmE,\"Brian edges the competition, accelerating over a raised bridge.\"\ntt0034240,5aBsRxccPJI,\"Deciding that the best way to get out of jail is to get his picture in the paper, Sully confesses to his own murder.\"\ntt0034240,9ofxELr5sa4,\"After embarking on his experiment as a hobo, Sully hitches a ride with a kid and together, they ditch his entourage.\"\ntt0076723,c7tvfdSjRE4,\"Reg gets inside the opposing goalie's head, winning the game for The Chiefs, but getting beat up in the process.\"\ntt0204946,a0QpNMW2kws,Whitney and Courtney talk trash about Big Red while Torrance tries to defend her. Torrance is voted in as a captain of the Cheer Squad.\ntt0492492,2ah3GNQL6x4,\"After John shares an embarrassing secret from his past, Amy comes clean about the incident with her dog.\"\ntt0034240,m0z6-iFR-S8,\"After his experiment ends, Sully decides that he is too happy to make \"\"O Brother, Where Art Thou?\"\" and would rather make people laugh.\"\ntt0492492,6NRK8ai2U0Q,Amy and John have an awkward dinner with her family and her brother's dealer Randy.\ntt1112782,--RFXQ-Xlac,Gabriel is shocked when he discovers what is in the box he risked his life to steal.\ntt1112782,1g9QEQrHOMw,Gabriel eases his way through the security system while Keith guides him.\ntt1112782,D5Oc_sYmlt8,Tension mounts when Gabriel has to make his trade.\ntt1112782,hcqpyBBYg_4,Gabriel and Keith break into the first level of security.\ntt1112782,5gV4JcPhi9I,Gabriel double crosses Keith and reveals his true motivations.\ntt0079367,yJJA6WRpvlg,\"Navin loses his virginity to Patty, discovering his \"\"special purpose\"\" that his family always told him about.\"\ntt1112782,h30PnSefeZA,Nicky shows the ace under his sleeve.\ntt1112782,APS_K6M4Qac,Gabriel sweeps Alex off her Chinese-food-hating feet.\ntt0492492,M94-kf_lXUA,\"Amy professes her love for Ed, who claims to have figured out her dark secret.\"\ntt1112782,bd-fVqwNZaQ,Keith and Gabriel plan their heist.\ntt1112782,ClehpiAu764,Gabriel and Keith scope out the vault with the use of a secret camera and an i-phone.\ntt1112782,7tmC9Qq5RjA,Gabriel evades the police on the roof of a subway after robbing a Wall Street yuppie.\ntt0492492,zZGqwY_J8Vw,Amy makes out with her newly-single coworker Ed.\ntt0492492,kmYAgJwpE-k,Randy brings some casserole over for Amy after her mother's death.\ntt0120669,1RBwoUbvxx0,\"Dr. Gonzo tries to get Duke to throw the tape recorder into the tub with him when \"\"White Rabbit\"\" peaks.\"\ntt0095631,mO5UNbKzcpQ,\"When Jack lets Jonathan go, Jonathan gives Jack a very generous gift of nearly $300,000.\"\ntt0120669,GmXGVDnPU9o,Duke and Dr. Gonzo take ether and stumble their way into Circus Circus.\ntt0360717,IxnZIoP_5J0,\"Ann is offered by the Natives as a human sacrifice to Kong, who makes a grand entrance.\"\ntt0021884,SoL6a37d1Rg,\"After Dr. Frankenstein is found injured, the townspeople trap the Monster in a windmill inferno.\"\ntt0492492,8C9qRHJxOO0,\"Amy and John make up, but he struggles to get a certain disturbing image out of his head.\"\ntt0492492,hFICuHeg-CQ,\"Dougie spills the beans about Amy, causing their Dad to fly into a rage.\"\ntt0492492,cH3mtHI91Sk,\"John asks Amy to tell him a secret, and she invents a story about sleeping with a female friend in college.\"\ntt0337721,lK93bvZ_fTQ,\"Shepherd reads a poem for Charlie, who builds a stretcher to carry Kanaalaq across the snow.\"\ntt0492492,6f_Z5OBzY1k,\"Distracted while at the dog park with her boyfriend John, Amy recalls a humiliating mistake from college.\"\ntt0337721,joTY2Wir1w0,\"Charlie and Kanaalaq return to their wrecked plane, only to find no evidence of a search and rescue party.\"\ntt0492492,exVcH3m_G5c,John proposes to Amy via the newspaper and she happily agrees.\ntt0337721,YY5cUX_o770,Kanaalaq gives Charlie her boots and wishes him well on his journey.\ntt0337721,jfk6JSgLdQQ,\"Charlie searches a wrecked plane for scraps, but Kanaalaq refuses to disrespect the dead.\"\ntt0337721,Ixj8eXcClLE,Kanaalaq nurses Charlie back to health and reveals that she knows a few words of English.\ntt0337721,TzHrqDQ1OJM,An ailing Kanaalaq teaches Charlie how to hunt caribou.\ntt0337721,vjeGS4bwPX0,\"Kanaalaq teaches Charlie some words in Inuktitut, along with how to hunt and fish.\"\ntt1151359,JMIukdtLDt8,Ken arrives at the Kincaid residence in order to blackmail the brothers.\ntt1151359,nNLvDIcBtz8,Bill's negotiations with Buddy don't turn out well.\ntt0337721,_wD15vBDzgs,Mechanical problems force Charlie to crash land his plane in the remote Northwest Territories.\ntt0337721,54LTsr8IAU4,Charlie refuses to take the ailing Kanaalaq to a hospital until he's bribed with ivory.\ntt1151359,sfzVAilcMAM,Accidents happen when Ken doesn't go through with his blackmail plan.\ntt1151359,Mb-3XGFTpLQ,Brady's crime is discovered by his family.\ntt1151359,A2Eu5xmslWI,Brady and Bolger try negotiating with Pug.\ntt1151359,4WuZapvSL0E,Anne attempts to seduce Bill.\ntt0079367,O7why8Xo_RQ,Navin gets the shock of his life on his birthday when he learns that he will always be white and that he wasn't born into his family.\ntt0095631,HUmelrncGRc,\"Jack, Jonathan and Marvin get chased by gunmen in a helicopter while driving.\"\ntt1151359,3hwRv9BXdOw,Bill visits his mother Daisy for the first time in years.\ntt1151359,6q5a0W2pxS8,Brady shows his brother Bill his impressive green house.\ntt0120601,9V_bukpqoPY,John Malkovich finds Craig and Maxine running J.M. Inc. and demands to be allowed inside the portal.\ntt1151359,Lyyc9S3iufk,Bill wakes up to find his presumed deceased brother Brady alive and well.\ntt1151359,PTENrQnBtXc,Bill meets an orthodontist on the plane back home.\ntt0849470,XVINVuRkUFg,\"Lionel corners former classmate Principal Dickwalder, who doesn't respond kindly to his threats.\"\ntt0884224,DbqqjC92PP4,\"Walken attempts to fight Hauser, leading them to interrupt the wedding.\"\ntt0884224,Fi51abVO4ac,Hauser and Walken exchange threats before a revelation of Hauser's family is discovered.\ntt0849470,CaHL7bVTtQQ,\"While trying to track down the party, Principal Dickwalder runs into some scary mafia guys.\"\ntt0884224,8S62emxyIEA,\"Marsha gives the media a progress report while the rest of the journalists observe the battle viewer, which keeps reporters safe and offers the corporation complete control on what they see.\"\ntt0849470,xEU2YTN-svo,Principal Dickwalder turns to drugs when Ms. Minn tells him that his favorite student is hosting the party.\ntt0849470,HKpWEkSUs9U,\"When Cathleen and Ellen come home unexpectedly, Adam takes the opportunity to apologize to Cara.\"\ntt0849470,BFeuE0wAHnI,Principal Dickwalder makes another house visit and takes a beating from dancer Uncle Todd.\ntt0104377,e0WpcoS_fU8,A evangelical sermon is led by Preacher Hank Fulton complete with serpents and all.\ntt0849470,pieqR7-byq0,\"Ellen comes home while Adam is preparing the party, but she's surprisingly proud of his initiative.\"\ntt0849470,ByExQg6WGeE,\"Principal Dickwalder announces that the Senior Skip Day party has been cancelled, thanks to Adam.\"\ntt0884224,mZ-yMd-bmCY,Hauser rescues Natalie from terrorists.\ntt0849470,0IL5GIcAS70,Adam saves Senior Skip Day by telling Principal Dickwalder about the untimely death of a student.\ntt0884224,hrVLeHMpsDY,Walken gets hostile when Hauser decides to leave the life of political espionage and assassination.\ntt0884224,Zvbwq_7AeU0,\"When a group of thugs break up an interview of Yonica, Hauser cleans house, exposing his trained talents in assassination.\"\ntt0101921,BAXWxuKhcTc,Idgie yells at the defense attorney and Ruth defends her best friend Idgie's reputation on the stand.\ntt0884224,OPC2Ahuklt8,Yonica confides in Hauser before her fiance bursts in.\ntt0362590,L897JSOP21U,\"David notifies his sleazy friend, Jack, that he got fired from his job.\"\ntt0362590,p1YmfANJdDA,David tells Whisper the story of his past and how he got where he is now.\ntt0849470,EC3EYlsUiAo,Cathleen and Ellen encourage Adam to attend Senior Skip Day.\ntt0884224,bmgWabhgTyI,Hauser meets with The Viceroy at a discrete hidden location under a Popeye's Chicken Restaurant.\ntt0884224,j6IS8ftaiKg,Yonica attempts to win the affection of Hauser after he throws up at her rehearsal.\ntt0362590,EXmDxa_WlbU,\"The partners turn on one another; David kills Jack and shortly after, Wendy kills David.\"\ntt0362590,vU5Weh2-5Ow,\"Two days after the bank robbery, it is revealed that David, Jack, Wendy, and Eric were in fact the robbers.\"\ntt0884224,sF6TDdShI-U,Hauser enters an Eastern Arctic pub and assassinates Germans after downing a shot of hot sauce.\ntt0362590,v9vgJaU3g1Q,The bank is robbed on David's last day.\ntt0362590,_x4ZoZAzlL4,David gets back at his boss by urinating on his painting and threatening his life.\ntt0362590,drdEb-EYhHU,\"Distraught about his split with Sara, David confides in the prostitute Jack sent him, Whisper.\"\ntt1186367,jYLZsEioFig,\"When Masazuka destroys the antidote to the poison given to Namiko, Casey channels his anger to defeat his enemy.\"\ntt1186367,pGeODfpFpUQ,Casey single-handedly takes on a team of trained killers on their own turf.\ntt0362590,n9r_Sd0cy6Y,\"After being fired, dumped, and having his car stolen, David snaps on his last day on the job.\"\ntt1186367,E7kK38uDEeo,Casey follows Masazuka to the roof but he is unable to rescue Namiko.\ntt0362590,Gh3l6sVwMlI,\"David goes in for his review hoping for benefits and a bonus, but gets fired by Mr. Gartin instead.\"\ntt1186367,EW4_qWWvxfg,Casey and Namiko fend off a vicious gang of thugs in a subway car.\ntt0362590,3eGHDodwIZI,David meets Sara and her parents for dinner and is ambushed with a break-up.\ntt1186367,cKFA0tZIc5w,Masazuka infiltrates the police station to kidnap Namiko.\ntt1186367,u82elZ1sGVk,Casey and Namiko are ambushed by a gang of thugs searching for the Yoroi Bitsu.\ntt0298203,KQOWuUy-7qE,\"On his lunch break, Rabbit takes a rapping co-worker down a notch.\"\ntt0298203,uMb3tldMyn0,\"While B-Rabbit's friends burn down an abandoned house, Alex shares her belief in him.\"\ntt0298203,DHMF-bVxlkc,\"B-Rabbit gets in his first rap battle, and chokes big time. He gets booed off the stage.\"\ntt0118928,8bQQIy5TKZE,Harry and Rachel are terrified when they find out her kids have gone up the mountain to get their grandma.\ntt1186367,tRT1ASnVfmo,Casey and Namiko find themselves surrounded by deadly enemies on the streets of New York.\ntt0101921,AWMxhZbiXLc,\"When Klan member Frank wants to see his child, he gets stopped by Ruth and scorned by Sipsey and ol' Smokey Lonesome.\"\ntt0101921,4LaL9XB_Cx4,\"On Ruth's birthday, she unwinds with some booze and a game of baseball.\"\ntt0339727,w9pEL5BVnH0,Mrs. Hengen lectures Mark on his destructive relationship with Dori.\ntt0339727,3RWATaK6rC8,\"Overcome with her schizophrenia, Dori writes a break-up letter to Mark.\"\ntt1186367,OwBlTJrvL8Y,Masazuka returns to exact revenge upon Sensei for expelling him from the dojo.\ntt1186367,Sn25NmBKxSU,\"When Masazuka loses his temper during a fight with Casey, Sensei banishes him from the dojo.\"\ntt0104377,s-DcMXlInkU,\"Howard takes some target practice in a junkyard, as Anita undoes her top.\"\ntt0104377,X9f_YUaQGWw,\"Howard shows off his skill with a pistol to Anita, but fails at pleasing her with his love gun.\"\ntt0339727,uwstRxD2BkA,Dori sings a song for Mark.\ntt1186367,mQ13lRBge64,\"Sensei explains the history of the Yoroi Bitsu, an armored chest containing the weapons of the last Koga Ninja.\"\ntt0339727,pDv-C_TpyG0,Mark makes a surprised visit to Dori.\ntt0339727,idr40IexHQw,Mark brings Dori to his home.\ntt0104377,_OabFZytcp8,\"Anita is raped by her mother's boyfriend Rooney, then gets her revenge with a gun.\"\ntt0339727,V5B75zKswc8,Mark and Dori go on their first date.\ntt0104377,vgEI-Zu4GQE,\"When Howard is pursued by a cop, Anita makes sure the cop will never pursue anyone again by shooting him in the head.\"\ntt0104377,3fLWNvP8V98,\"Howard and Anita agree to share their darkest secrets with each other. For him, it's being a virgin. For her, it's killing her mom's boyfriend.\"\ntt0339727,KcG5AQMRFVU,\"On the eve of graduation, Staff Sergeant Skeer offers a brief sentimental moment with his Platoon.\"\ntt0460732,Z41Lvaw_W6E,\"Rachel tells the staff that she got the new job, and Dylan encourages her to forgive Charlie.\"\ntt0460732,MOJFi9-64Qw,\"Mike admits to Danny that the gun incident caused him to soil himself, and then he runs into his ex-girlfriend, Laura.\"\ntt0339727,ILwsJ3_o4es,\"Mark gets special treatment\"\" when Staff Sergeant Skeer finds out he joined to avoid a prison sentence.\"\ntt0339727,s4iqKjufJe4,Mrs. Dubois and Mr. Deloach confront their children after an accident.\ntt0101921,4lzhxfuOW-A,\"Buddy Threadgoode bonds with the young Ruth and his little sister Idgie Threadgoode. However, when his foot gets caught in the train tracks, he has little time to escape.\"\ntt0068699,AjeO7aL1efU,The Stranger leads the unskilled townspeople in some moving target practice.\ntt0204946,fWLdsqhYVxM,Torrance dreams of being chosen as Cheer Captain during a big opening Toros cheer number.\ntt0097366,mVbGpzsuNjE,Fletch makes a fool of Jimmy Lee Farnsworth by reading him the wrong notes.\ntt0118928,n_c7JtDNNUo,Paul decides to get outta town when the volcano starts massive mudslides and flooding.\ntt0104377,n57MunvVpIU,Howard sacrifices himself in a shootout with the cops to save Anita from harm.\ntt0104377,lfrEnzxJFps,\"As the police siege the house, Anita and Howard blow some cops away.\"\ntt0460732,hXCnYkU0Xy8,Dylan swings into action when Lucy fires a shotgun in the cafe.\ntt0460732,09iu9EiAtKA,Charlie returns to the kitchen as Dylan lashes out at an irate customer.\ntt0339727,qgE9Lbwyzc0,\"Mark is framed with \"\"dirty letters\"\" at his Catholic High School.\"\ntt0460732,2cSY9R-ka5o,Mike tries to approach Gloria but Lucy accuses him of being a pervert.\ntt0460732,d2vcACp2hNw,\"Vanessa reluctantly tells Rachel about Lucy, then finds Mike and Danny smoking pot in the men's room.\"\ntt0460732,a4-FtMD0_sk,Angela is disgusted to learn that her fiance David dresses up in her underwear.\ntt0388182,Q7w2V95g5ew,Charlie recalls an absurdist story of naked Chinese men washing up along the shores of Southern California.\ntt0388182,A0FU6cYM9Vc,\"Despite Miranda's insistence that Charlie is having a delusion, he goes ahead and jumps into a river of raw sewage.\"\ntt0460732,bOPnZZMObXU,\"Mark discovers that Gloria was a porn actress, and his tirade gets him thrown out by Vanessa and Dylan.\"\ntt0460732,3nRy9hw7tr0,Danny tries to convince Mike that fellow customer Gloria is a porn star.\ntt0388182,5DefW3MeD_c,\"Working at McDonald's, Miranda takes the order of a young female customer and picks-up her Dad from the hospital.\"\ntt0460732,n_6sNnucN9k,Vanessa criticizes the lasagna made by Tom while Dylan suggests getting their old chef back.\ntt0405163,zP0dxHW41kg,\"Andy works up the courage to ask his star a favor or two, which ultimately ends up very much in his favor.\"\ntt0405163,Rr_zj8D511s,\"When accusations of being gay overwhelm Moose, he decides to fill the role of V's partner for the porn.\"\ntt0388182,-fJwmmnPHok,Miranda opens the refrigerator left by her dad Charlie to discover the lost gold.\ntt0388182,1eH4YUzgfN4,\"Miranda is surprised to learn from Charlie the meaning of the word \"\"swinger\"\" and realizes that her boss is a \"\"swinger.\"\"\"\ntt0448564,qSU0iCmocCE,Sophie frantically tries to connect the dots of the odd occurrences to Craig.\ntt0388182,VIp_DOwafcg,\"At the barbeque hosted by swingers, Miranda navigates the terrain of avoiding having to get into a bikini by fake vomiting.\"\ntt0097366,38PbAk_SMdo,\"When a police office catches Fletch at a crime scene, Fletch poses as an exterminator and talks his way out.\"\ntt0097366,hsBtuhWw7RM,Fletch's fantasy about his life as a Southern plantation owner leads into a musical number complete with animated animals.\ntt0329575,CqgXhXx-EAk,Tick Tock McGlaughlin predicts Seabiscuit's first race at Santa Anita to be an utter failure.\ntt0338013,sYEGcfDCysI,\"Hoping to make up with Joel, Mary walks in on him listening to his tape and they are confronted by his ugliest vision of her.\"\ntt0097366,k1z5PejkIyY,\"When the Ku Klux Klan comes to drive him out, Fletch and Calculus play a trick, sending them fleeing.\"\ntt0329575,AOiL4JRqh7c,Red learns to enjoy his winning streak with Seabiscuit.\ntt0388182,ct9y-srjYjk,\"When Charlie sells his bass to help Miranda, she encourages him not to give up his dream of finding the lost gold.\"\ntt0800241,AdiEXXKIcpM,\"Jessie admits to Grinko that she killed Carlos, just as their train collides with another train.\"\ntt0388182,muBDF7g_mXY,\"To the incredulity of Miranda, Charlie discovers the location of the gold is buried six feet under the ground at a Costco store.\"\ntt0800241,9Xy3PgufXHI,\"Roy and Jessie escape via train, with Grinko and Kolzak in pursuit.\"\ntt0800241,IHDv7SriHB4,\"Jessie and Carlos kiss, but when she tries to stop he chases her and she beats him to death.\"\ntt0388182,Q3QqG1UavAU,\"Stopped by Officer Contreras while looking for buried treasure on a private golf course, Charlie makes the most of the opportunity to deliver a pick-up line and get a date.\"\ntt0800241,gL7zD3RjgTg,Kolzak tortures Abby to make Jessie tell Grinko about Carlos.\ntt0448564,S63g8N9Wb5c,\"Away from the party, Mara expresses a deep interest in Sophie and divulges her own past.\"\ntt0800241,jmCn-jfg8Jk,Roy and Jessie discover the train empty except for Grinko and Kolzak.\ntt0448564,-a0vqBmrAh0,\"Sophie tells Craig about Mara wearing her missing dress, which leads to the revelation that Mara had been to their house before.\"\ntt0800241,Oa1LpwUBNAA,\"Roy assures Jessie that confessing was the right thing, and Jessie discovers the train is suddenly a lot shorter.\"\ntt0448564,tdmGoIYtHzg,\"Mara cuts out the photographs of Sophie's children to replace them with her own; a flashback reveals that it was Kate who was Sophie's daughter, not Mara.\"\ntt0800241,Aow66vqHkmU,Jessie and Roy come clean to Grinko about the heroin Carlos planted in her bag.\ntt0800241,arbY3Yvs_Sc,\"Jessie tries to dispose of the Russian nesting dolls Carlos hid in her luggage, but Grinko keeps a constant watch on her.\"\ntt0448564,LNIKYmO7noI,\"Sophie visits Mara in the hospital, where she apologizes for being absent in Mara's life.\"\ntt0448564,DGhV02r8Vq4,\"Sophie attempts to calm Mara down, but Mara is ruthless in her attempts to harm Sophie.\"\ntt0448564,l_nlMehIAqk,\"While locked in Mara's basement, Sophie makes a life-changing discovery; meanwhile, Mara seduces Craig at the office.\"\ntt0448564,MFx343hujgA,Sophie flees to the basement when she sets off the alarm at Mara's house.\ntt0800241,PBXIOvTSzao,\"At the train station in Irkutsk, Roy opens up to Carlos about his marital difficulties.\"\ntt0800241,CUJJdnMG7VU,Roy and Jessie befriend Abby and Carlos on the train to Moscow.\ntt0338013,dpAoVOU-q60,\"Reliving the day they first met, and knowing that it will soon be gone, Joel and Clem decide all they can do is enjoy it.\"\ntt0329575,N1xvQ7iLD0I,The narrator reviews Seabiscuit's troubled journey before he meets Tom.\ntt0338013,v9kQdDFUWuk,\"While revealing her love for Howard, Mary recites the \"\"Eternal Sunshine...\"\" quote by Alexander Pope.\"\ntt0338013,3lX50Lh2Iec,\"While chasing Clem through his disappearing dream, Joel starts hearing the technicians talking about them.\"\ntt0330181,ClBUr1FFo4U,\"John murders a kid selling a used car, and then sells the car himself.\"\ntt0448564,5F8dAQs8Vo4,Sophie is swarmed by wasps she finds in the ceramic owl Craig gave her.\ntt1020543,a_OuIUbxu6U,Cooper destroys the Bug hive and the Queen Bug using his father's C4.\ntt1020543,y6daxZDW37Y,\"Ethan holds off the Queen bug, allowing Cooper and Sara to escape.\"\ntt0330181,CnT7g2Dit2A,The scenario of Gacy's ultimate apprehension plays out when a bookie comes to collect his debts while Gacy is in the middle of a murder and the police are scoping the residents out.\ntt0330181,fD1FCHmu2as,\"As detectives discover the horrifying truth hidden under Gacy's house, flashbacks play out of his macabre murders.\"\ntt0448564,AQnQ6irZyFk,\"Sophie tries to convince Craig of her suspicions concerning Mara, but he becomes angry and tries to convince her to leave the matter alone.\"\ntt0330181,NAymJ-WVGOI,John hears voices in his head of past victims.\ntt0330181,ptj6u-cdPEM,\"When detectives can't get a warrent into John's house, they let him know their presence by camping out.\"\ntt0330181,so4D0cpOaUs,John shows Tom some of his home movies.\ntt1020543,f7oHNrQzfis,\"When Cindy loses her wits, she lures the giant bugs to the rest of the survivors; in the chaos, Sara is taken by the foul creatures.\"\ntt0473464,EmRlXmyl54I,Detective Griffin threatens to implicate Jordan in the murder if he doesn't come up with one million dollars.\ntt1020543,gs_g4ai4m3Q,\"Al suddenly mutates into a bug hybrid, scaring the bejeezus out of Cooper and the gang.\"\ntt0330181,tTtKhD_s3mA,\"John shows his new tenant, Tom his room before eventually confronting Tom's girlfriend.\"\ntt0330181,yjFU7KJH8AY,John picks a gay trick.\ntt0473464,rGw2mX72ytQ,Jordan considers a new life with the money he stole from Shay.\ntt1020543,Fjb55wq2xuI,Cooper makes a sincere connection with Sara when he reveals that he has also lost a loved one.\ntt1020543,iNqWC_4LooU,Sara dissects every aspect of Cooper's upbringing as she shuts down his attempt to hit on her.\ntt0330181,LlUWLkrBL_Y,Kara confronts John concerning his homosexual porn stash.\ntt0362506,EFmvTRmRtms,\"Chrystal asks Joe to relieve her pain, which he does while continuing to share his feelings about their future.\"\ntt0036775,SojaL9M5Pqs,Keyes stops by Walter's apartment to tell him his theory about the murder and almost sees Phyllis hiding in the shadows.\ntt0036775,-r_jjQ_idz8,\"Walter tries to convince Keyes to not call the cops and let him escape, but he doesn't have the strength to get out the door.\"\ntt0096734,KPpwiCStA54,\"As the media descends on the neighborhood, Ray and his wife decide to take a vacation.\"\ntt0329575,4Os7yk5rXtY,\"Seabiscuit and Red take their final, victorious race around the track.\"\ntt1020543,Pn4mA5BIzxg,The gang's attempt to make a run for the north is thwarted when the bugs show up and wreak major insect havoc to the max.\ntt0473464,8KjvR8FpYaQ,Jordan gets grilled by Detective Griffin about Shay's disappearance.\ntt0362506,h75sq4lELLU,\"Having been in prison for the last 20 years, Joe asks Chrystal where their relationship stands.\"\ntt0473464,tUmKlW2VmKo,Jordan meets Shay in the library and they make an immediate connection.\ntt0473464,WUJNkDE4d98,Jordan photographs a confrontation between Shay and Wade that turns deadly.\ntt0362506,mpMweFgS2cg,\"The cops come to arrest Joe, who sacrifices himself for Chrystal's eventual happiness.\"\ntt0323939,L5-JXPcM3RQ,\"Dean catches up with his old flame, Eve, and confides in her that he's considering retiring from card-playing.\"\ntt1501652,IFbKYqUofRs,Dylan runs through the stages of grief at the empty memorial service of a stranger.\ntt0242508,8CsWUwcJgHA,\"Trapped in a car, Teddy and Kelly interrogate Alan who is clearly tripping on LSD and having strong hallucinations.\"\ntt0099088,tu-cxDG2mW8,\"When Marty's return to the present lands him on the train tracks, the time machine is destroyed.\"\ntt0105435,pm7LihLP7kQ,Bishop impersonates a private investigator in order to trick Elena while getting radio feed from the group.\ntt0089560,kearXmroxUM,\"Rusty brings Lorrie, a prostitute, home to sleep with Rocky.\"\ntt0087262,p1lnXM7l2_g,Charlie gets mad at her mother Vicky and accidentally sets her hands on fire.\ntt0105435,F5bAa6gFvLs,The room heats up when the team tests the black box and discovers its powerful potential.\ntt0105435,3obteqT0VJU,Bishop gets paid to rob banks in order to increase their security measures.\ntt0105435,oG5vsPJ5Tos,\"Donald gives Bishop tips via radio to get through the secure door, but instead of a code, Bishop kicks the door in.\"\ntt0099088,0c-UIkfsk1U,\"When Marty stops Mad Dog from shooting Emmett, Mad Dog sets the stage for a showdown.\"\ntt0088128,eq5NSAyQEtI,\"Sam's sister, Ginny, is on too many painkillers at her own wedding and barely makes it to the altar.\"\ntt0087262,dCRen85hQ7Q,Andy dreams of the experiment where he first met Vicky and gained his powers.\ntt0099088,yo7C-Sp_-MI,Marty shows off his impressive shooting skills to a pushy gun salesman.\ntt0099088,wEByIZn5qeU,\"When Marty accidentally calls Tannen \"\"Mad Dog\"\", Mad Dog makes him dance.\"\ntt0099088,63KOboifCig,Marty travels back to 1885 and finds himself in the middle of a tribe of Indians on the warpath.\ntt0087262,hPmV9DBCrfQ,\"When she witnesses an arrogant young soldier blowing off his pregnant girlfriend, Charlie sets his feet on fire.\"\ntt0088128,Uv4YAx1nqDM,Sam and the Geek have a frank conversation and the Geek tries to kiss her.\ntt0088128,Fjh3TxOHCxE,The Baker Family finds Long Duk Dong passed out on their lawn and learn that he crashed Grandpa's car in the lake.\ntt0088128,ACiCfGoVIJA,The Geek holds court in the boy's bathroom where he displays Sam's underwear.\ntt0088128,FWvAYNw8r9o,The Geek ambushes Sam and tries to dance with her.\ntt0088128,JyJBz7Z2EWE,Long Duk Dong eats dinner with the Bakers and Grandma forces Sam to take him to the dance.\ntt0088128,EhAiY3hTPpo,\"After Sam's Grandma feels her up, Sam is surprised in her bedroom by Long Duk Dong.\"\ntt0113360,K_LGi3aiF7E,Paul creates a distraction so he can escape a ninja assassin.\ntt0113360,W3IgFbCSqSs,\"Takeda duels with a man he believes to be his nemesis, Kinjo.\"\ntt0104070,sOA84te9mAw,\"With newfound looks and confidence, Helen seduces her ex, Ernest.\"\ntt0088846,3ZPlgOWbkcY,Sam tries to save his dreamgirl Jill from the Ministry of Information.\ntt0056592,ojydQ3_FDqI,Jem is terrified when Bob Ewell sneaks up to their car while Atticus speaks with Tom's family inside.\ntt0023969,fHmesxUDVz4,Rufus T. Firefly springs a sudden proposal of marriage to a nervous Mrs. Teasdale.\ntt0128853,EVlaur-kEds,Joe Fox contemplates the future he could have had with Kathleen Kelly if they weren't at odds over their rival businesses.\ntt0128853,3TA-GALQJfM,\"Kathleen tells Joe that the man she's been emailing is caring and sensitive, and that Joe is a soulless businessman.\"\ntt0322589,tjsQP94DIfM,\"While at the barbershop, Honey gets asked out by Chaz.\"\ntt0396269,sdtIgE33BvQ,\"During the Cleary family football game, John flirts with Claire while Jeremy gets sacked.\"\ntt0396269,1KbamNWEfdw,\"Mr. Cleary reminds Jeremy that he is a very powerful man, and his daughter isn't just another notch on the belt.\"\ntt0034240,02A2a-aEvmI,\"Dressed as a hobo, Sully is shown compassion by a beautiful, but disillusioned young woman (Veronica Lake.\"\ntt0817230,mX5Vqy1ETgM,Grace opens up to Estelle and Edgar a little more so than they had bargained for.\ntt1302067,8qohrMCMzLc,Yogi and Boo-Boo build the perfect contraption for snatching picnic baskets.\ntt0446029,qSE4dF_Feng,Ramona warns Scott about the perils of dating her.\ntt1037705,t4zyH4BsmgQ,\"When Carnegie's crew trap Eli and Solara, George provides weapons to fight back.\"\ntt0128853,8yX0E-XQcms,Kathleen is proud of herself for finally speaking her mind.\ntt0128853,yRPwDJWhqis,Kathleen and Joe try to guess the meaning behind the screen name that her love interest uses online.\ntt0128853,2cjvwTzhG8g,Kathleen finds out that the man she fell in love with online has been Joe Fox all along.\ntt1130080,J0WkBVu2C38,\"Over Chinese, Mark reveals he's been receiving cash kickbacks from ADM.\"\ntt0396269,YnpzAImvPsc,John interrupts Jeremy's wedding with a confession and an apology to Claire.\ntt0167260,GhF060VmS1g,\"Gollum talks to himself in a pond, plotting to reclaim the ring from Frodo.\"\ntt0396269,Amd3bMqEdjs,John and Jeremy fight over the rules of wedding crashing when John tries to get some overtime.\ntt0396269,3kaShGPva2Q,\"When Janice offers to set Jeremy up on a date, he proceeds to say no by listing all possible perils of dating.\"\ntt1020543,Bu3n2LEcUbg,The survivors visit what's left of Cindy's family and encounter a freakish human-bug hybrid.\ntt0473464,b3DNx3kLY58,\"When Detective Griffin tries to double-cross Jordan, Shay shows up to save him.\"\ntt0473464,v8YgSZAbKgQ,\"Shay takes Jordan to the money, but he has second thoughts about their plan.\"\ntt0330181,ccNvps_rac8,John slams a hammer into Dave's skull after hearing the voice of his dead father.\ntt0473464,HJhNgjVydac,Jordan photographs Shay as she plays the cello.\ntt0473464,yyYfKxW1T8Q,Jordan learns that Shay knows about the photography scandal that got him kicked out of his last school.\ntt0362506,Wc2CaWm1Gno,Joe recounts to Chrystal how he saw their late son in the woods.\ntt1020543,8nHwpjCIJqM,Cooper awakens from his cocoon and suddenly finds himself in a struggle with an enormous and ugly beetle.\ntt0362506,kt5pjPdRDVU,\"Having run Crystal off the road to a dead end, Snake instructs his crew to gang-rape her.\"\ntt0362506,F9ktw07IEr0,\"Charlie reveals his romantic intentions to Chrystal, but she tells him she's still holding out for Joe.\"\ntt0362506,SL40LOsREzE,Joe saves the day by shooting Ned and Snake from a hiding place in the trees.\ntt0923671,yAbQlHZz4tU,Tension mounts at the radio station when Nina discovers a bloody tissue.\ntt0362506,KMUDG7AOw1w,\"Told by a psychic that her deceased baby is figuratively stuck in her neck and therefore causing her neck pain, Chrystal begs Joe to cut it out.\"\ntt0280609,CoHgpkuV1hU,Cooper defeats Ryan in werewolf form with a little help from Sam the Dog.\ntt0280438,EEGg9AZmHZ4,Francis confronts Callie when she spreads rumors thats Francis' dead brother has been walking around the neighborhood.\ntt0280609,P5ooU8rf1f0,Wells forces Cooper into the cellar just as he begins to transform into a werewolf.\ntt0362506,oEOsbgXpiNg,Snake and Larry try to recruit Joe to join in on their pot-growing partnership.\ntt0230169,-nXBi-mtvR8,Ed shoots and abducts Mary Hogan in her bar.\ntt0280609,bw0-q-wjSIM,Megan admits to betraying the men and transforms into a werewolf.\ntt0230169,_SVlezvh3zk,Ed dances in the moonlight wearing the skin of dead women after Collette turns him down for a date.\ntt0280609,UaqCBqd8NcA,\"Confessing that the others were bait, Ryan transforms into a werewolf and escapes.\"\ntt0230169,EVdo5BfJMCQ,Brian threatens to kill Ed in cold blood before the Sheriff intervenes for the arrest.\ntt0230169,JhtaGVmtcwU,Ed loads a display rifle and murders Collette in her store.\ntt0280609,qemi7V4jUjk,\"Spoon creates a distraction as Joe hotwires a Land Rover, but a werewolf awaits him in the back seat.\"\ntt0802948,MYpqwTSpp_E,The jury renders its decision on Gertrude's fate for the torture and death of Sylvia Likens.\ntt0362506,fuJceBJIp8k,\"Joe settles some unfinished business with Snake by slapping him silly in a \"\"redneck fight club\"\" gathering.\"\ntt0230169,5GlQJ1kKxMA,Ed fantasizes about having dinner with Mary.\ntt0230169,_Gm42rDEb38,Ed explodes on his brother when they are talking about their mother.\ntt0230169,AZ_MUktgWxg,Jim pays a visit to Ed's house after Mary's abduction.\ntt0280609,Wjm3qeQvGxs,\"When the werewolves cut the power, the soldiers defend the house with every weapon at their disposal.\"\ntt0280609,Z0092DSphF0,\"Cooper and Spoon return to the truck, only to find that the werewolves have made it inoperable.\"\ntt0802948,Yhiy0ZHMyik,Paula helps Sylvia escape under the cover of darkness.\ntt0802948,iJsNpzHlrgs,\"Unable to handle her eldest daughter walking out on her, Gertrude takes out her inner misery onto Sylvia in a most brutal and inhumane manner.\"\ntt0230169,cqeUgjPpCCM,Ed gives Virginia the full tour of the first floor of his home.\ntt0280609,-oWSoBQzQNA,\"On the run from a pack of werewolves, the soldiers are rescued by Megan in her truck.\"\ntt0802948,Htt0B7bZ4tI,A guilt-stricken Gertrude confides in Sylvia the hardships that she has gone through in raising her family.\ntt0230169,BlG0jGX34i8,Ed's terrible secret is discovered when the boys he is babysitting find his room.\ntt0280609,QMDO-3fqU0c,\"While retreating from unseen forces, Bruce gets impaled on a tree branch.\"\ntt0280438,uHEG_fTDZss,Uncle Handy sees Sean for the first time since his supposed death three years earlier.\ntt0280438,c8pZIocR-lQ,Moran and his men confront Francis at his bar where a shootout ensues.\ntt0802948,zlRuCc0kYQ0,The Baniszewski children and their friends testify to their willful ignorance in the abuse and torture of Sylvia.\ntt0280438,n3TNGpjl-kM,Jimmy Burke and Red Kelly chase the Sullivan's when they pot them in Brooklyn.\ntt0280609,32me3lMxEDU,A couple meets a grisly end while camping in the Scottish Highlands.\ntt0323939,Vy4OBSqz5dw,Charlie and Vernon invite Larry in to be their third partner.\ntt0323939,60Sc8RmA458,\"Vernon visits his old mentor, The Professor\"\" at The Magic Castle, where he is reminded of what really matters.\"\ntt0802948,wY6sZJKyxo8,Sylvia is violated as she endures more savage abuse at the hands of Gertrude.\ntt0802948,eu2OiA65JOA,\"Suspicious of Sylvia's whereabouts and actions, Gertrude resorts to cruel and ruthless punishment in order to make an example of her.\"\ntt0280438,cP95rCyLijI,Francis confronts Grace after she discovers the truth about her husband and his brother.\ntt0323939,JpYjN3cZR3U,\"With everyone in a stand-off, The Dean and Vernon reveal their final hand.\"\ntt0280438,dKMVUS6TC2A,Father Manhoney tells the truth about Sean to Grace.\ntt0323939,lIOwxzY4M6s,\"Using his juice-tagged cards to see through them, The Dean shoves all in; Vernon's accomplices pitch in so he can match The Dean's bet.\"\ntt0280438,_5UWCkgkSzA,Francis scolds Sean when he discovers his brother snuck out the night before.\ntt0802948,wrAksGY1TSk,Gertrude forces Paula to punish Sylvia for the supposed lies and rumors that she has been spreading.\ntt0280438,3VgqDRrUIOo,Moran questions Francis about the rumors surrounding his deceased brother.\ntt0323939,d_8TCN2wA7s,Charlie tells the team an anecdote about the legendary Dean Stevens to demonstrate what they're up against.\ntt0323939,2XgWUoUe_lw,Marlo warns Charlie that the money he hustled from Jennings belonged to mobster Malini; Charlie thinks he's settled the issue until the situation escalates to a shoot-out.\ntt0488085,mlpWVL2gHG4,\"Agent Hymes shoots Gus, but his escape is cut short by Josie.\"\ntt0802948,Ny1Q4bR5dMc,Sylvia and her sister Jennie are punished by Gertrude out of no fault of their own when their parents' boarding payment doesn't arrive on time.\ntt0488085,DfDQo7Gm8CI,\"Agent Hymes accuses Josie of being a serial killer, The Wyoming Widow.\"\ntt0488085,f-ZCZ5BNloQ,Agent Hymes examines the body and determines her to be another victim of the Oregon Undertaker.\ntt0923671,kMjUZodyvtA,Sarah ignites the bunker after zombie Bud attempts to aid his human friends.\ntt0323939,c0pmWNOt3fM,\"Eager and overconfident, Jennings bets all his cash, and ends up losing it all to Leipzig.\"\ntt0488085,-aH-cLQqwHQ,\"Gus fills Josie in on what happened, and Josie finds a bag full of cash.\"\ntt0488085,-W2T5Gm7i74,\"Penelope arrives at the crime scene, unaware that Charlie is hiding the body of her deputy in his trunk.\"\ntt0488085,ZhzpLQbMNjQ,\"Mrs. Smalls pulls a gun on Gus and Charlie, unaware that Josie is waiting outside.\"\ntt0488085,1_NERqSdt9U,Charlie arrives for his first day on the job at a call center and quickly befriends Gus.\ntt0923671,YBEUHTsxyXs,\"The survivors are led into a military bunker, where they plan to escape trough a missile silo... but not without splitting up first.\"\ntt0488085,PnjqfWEL6bc,Charlie learns from Gus that the priest who he just dumped in a septic tank was not deceased.\ntt0488085,fr_9D8OREfk,Charlie asks Penelope what she would do if he turned to a life of crime.\ntt0488085,LVt7Zvxk934,Charlie gets fired on his first day at the call center when he accidentally tells off a caller like his coworker Gus.\ntt0923671,YH7W2AR9b8w,The survivors discover that the infection retain aspects of their previous lives through Bud's behavior before being overrun by military zombies.\ntt0284929,XtadtlSUNQg,\"Ted lures in a woman under the pretense that he is a police officer, only to have her escape moments later.\"\ntt0923671,FhAIXOkAUhY,\"The survivors of the hospital massacre escape through its parking lot while disposing various zombies, including the jumping variety.\"\ntt0284929,cvvweP3N_f4,Ted makes up the decapitated head of one of his victims before Lee comes over.\ntt0349889,OhYlQ6kSQFs,\"Agent Junod tries to convince a confused, hallucinating Dean that they are on the same side; Amy cuts in and demands answers.\"\ntt0923671,2x5L2L4XZng,Captain Rhodes [not to be confused with the character of the same name in George Romero's Day of the Dead] chases the survivors through a ventilation shaft of the hospital.\ntt0923671,PcRJie18fYs,Bud is bitten by the zombie Captain Rhodes.\ntt0923671,k5kTx_bZznU,Rabid zombies take control of the hospital.\ntt1187064,OH_cAf9RFSU,Jess makes a horrifying discovery while trying to start a new life with Tommy.\ntt0923671,y69ebASPg8A,Patients begin turning into zombies at the hospital.\ntt0923671,ekOi-hwWNoM,\"Sarah brings her mother to the hospital, only to find it completely overrun with sick people.\"\ntt1187064,H7H1eydzTCY,\"Greg realizes that the masked assailant is Jess, and she tries to explain why she has to kill him.\"\ntt1187064,1-G0Fxf9IYU,\"Jess returns home to find an alternate, abusive version of herself, and sets out to destroy her.\"\ntt1187064,M_beJ-qJlQo,Sally tries to defend herself from Jess by crawling over countless dead versions of herself.\ntt1187064,iyPGMUFQiW0,Downey and Sally fall victim to a deadly alternate version of Jess.\ntt1187064,GK7IQ-raJOc,Jess tries to convince Victor that there are two versions of everyone on the boat.\ntt1187064,w-4XyyU2w9g,Jess fails to determine the identity of her masked assailant.\ntt1187064,Wa6au8A-3Zg,Greg orders everyone below deck when a freak electrical storm threatens to capsize the boat.\ntt1187064,G_0o3NoEXJQ,Jess finds Victor bleeding and ready to kill her.\ntt1187064,EN8q8mJrAZY,\"Accused of shooting Greg, Jess declares her innocence until a masked sniper opens fire.\"\ntt0491152,ndrLDbtM-CY,Ethan takes matters into his own hands when he threatens to out Rachel's secret.\ntt0491152,umOy9nT4Wpw,\"Ethan urges Rachel to put herself first, but she pushes him away.\"\ntt0491152,dM6waznJ7No,Darcy and Rachel share a sisterhood moment by dancing their sixth grade talent show routine.\ntt0491152,GhaxB8afkj0,\"Rachel announces that she's been called into work, so Dex offers to give her a ride.\"\ntt0491152,6svLqrJqoWk,\"Darcy opens up to Rachel, which prompts Rachel to tell her something she's been keeping from her.\"\ntt0491152,ihyRhFcUVto,\"When Dex shows up at Rachel's apartment in the middle of the night, she lies and tells Darcy that it's Ethan.\"\ntt0491152,fuOY4W9QFNI,Darcy crashes Rachel and Dex's one-on-one time and starts to flirt with Dex.\ntt0071230,DNC3OciAF3w,\"In the town meeting, Gabby Johnson gives an unintelligible pep talk.\"\ntt0491152,wp4tgWYqjyw,Rachel sadly looks on as Dex and Darcy canoodle across the room; Ethan comments on Claire's blatant attempts to get his attention.\ntt0071230,t9P2B7NUPfM,Infamous thug Mongo makes a big impression when he comes into town.\ntt0071230,NzbhbetwYFU,Hedley Lamarr manipulates the idiot governor.\ntt0071230,4w36z7XnwOM,Bart finds himself stuck in quicksand and gets no help from the bigoted Taggart.\ntt0071230,s9JqbCH4aVw,Bart is seduced by Lili von Shtupp and she falls head over heels for him.\ntt0263101,OwB1Fd-IeS4,Kong takes on the mob in a shootout at the water bottling plant.\ntt0390468,DR91SIIPCkQ,\"The Al Qaeda terrorist films Lars with his own camera, but when a sudden explosion erupts outside their cave, Lars gets a chance to escape.\"\ntt0263101,_DK3DYHAQvc,Kong and Aom try to escape the mob through the streets and alleys of Bangkok.\ntt0390468,yE_JbyAR7qY,Lars is taken hostage and Sonny is murdered in middle of the night shootout.\ntt0263101,VN8DStEDHd0,Jo finds himself a victim of a double-cross when the gun he was given for a mob hit turns out to be full of blanks.\ntt0390468,vWyTTJE081c,Al Qaeda members raid the camp and kill Wali.\ntt0263101,5WuZvuZjk3o,Kong avenges Jo's death by single-handedly taking out a roomful of mobsters.\ntt0390468,UzBE29ENnjA,\"The crew and Babak's team escape from Al Qaeda, who chase them through the streets with a rocket launcher.\"\ntt0390468,zoK9i_LiB5s,\"When the crew arrives at a faux military checkpoint, thieves intimidate and rob Wali.\"\ntt0390468,FonBCrV4Fqs,\"While following the mercenary Babak who is on the trail for Bin Ladan, the crew fid themselves under fire from Al Qaeda.\"\ntt0390468,Til9ScLdyv0,\"Lars and Wali are introduced to black market arms dealers, where the situations grows tense when Wali has reservations.\"\ntt0263101,s0RwiqEDRbM,Jo takes revenge on the man who raped Aom by brutally shooting him in a restroom.\ntt0263101,VgyyxiZGzNo,Fon runs off when Kong brutally dispatches two potential muggers in the park.\ntt0378407,MosezS_qfk4,\"Brian, Pam, and Lisa, reenact how they approached Drew at the Charlie's Angels 2 afterparty, and Brian cringes over the limp handshake he gave Drew.\"\ntt0390468,JlpBRPIgoIk,A murder occurs in the streets in the middle of Lars' first interview.\ntt1501652,A8CNtor4BPA,Charlie finds peace at last at the foot of her tombstone.\ntt0390468,Cer8qtPJiaI,Don Larson arrives in Afghanistan and meets with his guide Wali.\ntt0263101,IGtoG5BnW_g,\"Kong travels to Hong Kong, where he kills his target on the subway.\"\ntt1501652,-p3FtQtQ6q8,\"Dylan finds Charlie on the ledge of a rooftop, threatening to jump.\"\ntt0263101,onD3Eppv3EQ,\"Jo trains Kong in the art of assassination, until Jo's hand injury forces Kong to work alone.\"\ntt0263101,6lzU26KS9yw,Kong discovers he has a knack for target shooting when he realizes his deafness prevents him from flinching at the sound of gunshots.\ntt1501652,iOb_w3y2stg,\"After Natalie confronting Dylan, the two reminisce their high school romance.\"\ntt1501652,C8IBujBZjaE,Decko comforts Dylan when hope escapes and all else fails the boy.\ntt1501652,nXqdGyqR82Y,Charlie recalls the accident that involved Dylan's parents.\ntt0263101,3gt4aiQrmb8,\"Even with a little girl watching from a balcony, Kong carries out a hit with ruthless precision.\"\ntt1501652,5B5VRYzzz0M,\"WHen Dylan seeks out Charlie, he finds himself facing an armed thug.\"\ntt1501652,h3Aam5h7qAA,Dylan plays dead while the only two guests show up at his memorial service.\ntt0473488,1qbYMSC8ggg,\"After many years, Dito finally visits Antonio in prison.\"\ntt0473488,KuR_Z_vRD2Y,Dito and Mike try to get the money they're owed from Frank.\ntt0473488,Vbw4I7BhEBk,Dito breaks down and asks Monty if he ever loved him.\ntt0473488,_vjn86zTNVI,Laurie tells Dito to be a man and take care of his parents.\ntt0473488,hUz7Nan8kpM,Dito has a falling-out with Antonio and a run-in with Reaper.\ntt0284929,QSWGpf7NQ7k,\"Lee and her husband watch the evening news discussing ed Bundy's execution, which leads her to question who the man she once loved was.\"\ntt0473488,sY1NGOTGpUs,Dito returns to the old neighborhood and sees Laurie hanging out the window with her son.\ntt0284929,U0sp1K-D1RE,Ted gets a pleasant visit from Betty in prison.\ntt0473488,6OofgRuJnIE,Dito returns home to find his dad unsettled by the threatening graffiti sprayed on the house.\ntt0284929,n5YGsbi7BNw,Ted Bundy makes his infamous escape while pretending to be studying up for a case where he'll be acting as his own attorney.\ntt0473488,2eqWGVKtm5w,Antonio intimidates the little brother of a Puerto Rican gang member spray painting graffiti in their neighborhood.\ntt0349889,jnRIqedIizM,\"Sullivan and Peterson bring a drugged Dean to Dr. Collins, who estimates he has six hours to live, while Amy questions the thug who injected Dean with XE.\"\ntt0473488,ShqQo3JOdew,Dito runs into new classmate Mike on the subway and they decide to ride to Coney Island.\ntt0284929,fBkFWhWXWuA,Lee severs her remaining ties to Ted when she finally suspects he could be guilty.\ntt0473488,y8Jqk1kPtQI,Dito brings his buddies Antonio and Guiseppe home to see his mom and dad.\ntt0284929,eswi0L8WNzs,Ted gets arrested for the first time and is questioned by a Salt Lake City Detective.\ntt0349889,cZP3u5XAeHk,Agent Junod and Agent Kennedy step on Detective Amy Knight's toes when they try to take control of her case.\ntt0349889,-uU3MTcwg_s,Peterson and Leitch taunt Dean as he hallucinates the memory of his best friend's execution in Bosnia; Amy breaks in to save him.\ntt0349889,3sDL4LJUc_c,\"Dean, waiting for Amy at a diner, is mistaken by thieves for a CIA operative with access to a stolen military experimental serum. McNab injects him with said serum.\"\ntt0023969,m9Wh66FXZJQ,\"Just as peace seems like a possibility, Rufus T. Firefly works himself into an indignant stupor and triggers a war with neighboring Sylvania.\"\ntt0349889,AO9pxLEHVfI,\"Once Amy injects Sullivan with XE, he becomes desperate to find the antidote. When he finds it, he attempts to shoot Amy, but Dean shoots him first, allowing Amy to obtain the antidote and give it to him.\"\ntt0084787,hqVbOSEsJNo,MacReady administers blood tests to uncover who is infected by the Thing. Palmer is unmasked as an imitation and transforms into a creature that kills Windows.\ntt0284929,QQwJyX56Z6o,\"After flirting with a caller from a help clinic, Ted breaks into a home and assaults a sleeping woman.\"\ntt0023969,5mEsXz-Bpog,The Marx Brothers rally Freedonia to war with this rousing performance.\ntt0023969,q9OUIk4Oaq4,Chicolini and Pinky harass a hapless lemonade vendor.\ntt0023969,qSabiG8q8-k,Rufus T. Firefly meets Mrs. Teasdale for the first time and runs circles around her.\ntt0084787,JjIXwkX1e48,\"Dr. Cooper attempts to revive Norris with a defibrillator. Shockingly, Norris has become inhabited by the Thing, and as his chest caves in, Cooper's arms are ripped off. MacReady uses the flame thrower on the creature.\"\ntt1212419,P4KH_RSZyl8,Dr. Rousseau describes the experience of death to Marie who is beginning to realize she may have experienced it as well.\ntt0023969,AFk0BnxndMA,Pinky says a whole lot without saying a word.\ntt1212419,q-1DREuXwjc,\"Melanie learns of George's ability to do psychic readings and asks if he'll do one for her, putting their new relationship in peril.\"\ntt0284929,jJze-x__3o8,Ted masturbates to a girl undressing before a disgusted neighbor dumps water on him.\ntt0349889,uIJDIumyakw,\"Peterson and Leitch try to shoot Dean as he clings onto a speeding fuel truck but end up shooting the driver instead, sending the truck off the bridge in a flaming heap.\"\ntt0349889,mlAtuy15iIM,\"Dean, whose hallucination has inclined him to think the building is on fire, throws himself through the window and flees the property.\"\ntt0242508,MflY-IYl0Bk,\"While taking some photographs of a boy and his family, Alan has an unexpected acid flashback.\"\ntt0349889,Utt18i8DSSg,The drug Dean has been injected with makes him relive his memory of Scott's execution.\ntt0242508,PSe5x7y-kVY,Alan visits Dr. Reese who specializes in cases of L.S.D. overdoses.\ntt0242508,cx_45Z56ZQA,\"Still tripping hard on L.S.D., Alan runs into his friend Sandy who cautions him that the acid trip may never end.\"\ntt0285728,NF-httKm7RU,Dahmer picks up Rodney at a hunting store.\ntt0349889,KThMkPl6q5A,Amy coaxes some information about the drug XE from Agent Kennedy by threatening to inject her with the lethal substance.\ntt0285728,0j4aiJowI8I,Jeffrey asks Lance about rebellion and homosexuality.\ntt0242508,lgwJVRwJn3k,Alan struggles to hold it together on an airplane after consuming LSD and having strong hallucinations of the passenger Teddy seated next to him.\ntt0285728,2GXdTkYEPm4,Dahmer discovers Khamtay wandering in the street with some bystanders trying to help him.\ntt0285728,aqbP3OofrHU,Jeffrey is pulled over the night he dismembers his first victim.\ntt0242508,S32b64ns3fM,Alan is paid off by Cindy to throw the Harvard/Dartmouth basketball game to the disapproval of fellow teammate Marcus.\ntt0285728,q2nChVvlZ8w,Jeffrey seduces Rodney and then chokes him in order to keep him from seeing his other victim.\ntt0285728,k7GcyfPypGY,Jeffrey troubles Rodney when he accuses him of harboring anger.\ntt0285728,2V0WuzhmAjY,\"When Lance decides to leave, Jeffrey does his best to keep him at his house.\"\ntt0421238,Ddnox9DoK88,Charlie interrupts a home invasion by shooting both Samuel and his brother Arthur.\ntt0421238,NSsW9EXadik,\"Charlie rescues Mikey from prison, while Arthur and Samuel stay behind to finish off the guards.\"\ntt0421238,HEGucJf9y-w,\"Arthur saves Charlie from Jellon Lamb, and Charlie shoots him in a mercy-killing.\"\ntt0421238,quzMffZuuCQ,Charlie sits with his brother Arthur as he takes his last breath.\ntt0421238,wLaXJWcrgzM,Martha tells Captain Stanley about her dream and the curious effect it has on her upon waking.\ntt0421238,lWTyXHZu09w,\"Arthur steals a horse for his brother and kills Sergeant Lawrence, who warns him about Charlie's mission.\"\ntt0285728,PT3GmTvF9t4,Lionel asks his son about a mannequin he has hiding in the closet.\ntt0285728,0642x0-QL0Y,\"When Lionel demands his son to open up an old chemistry set, Jeffrey fervently attempts to keep its horrifying contents out of sight.\"\ntt0320244,JbI9xgX8H-8,\"James discusses his book with a documentary crew while getting a call from Michael, who is in jail.\"\ntt0320244,0SXgXYo-Vk8,A talking rat shows James the truth behind Angel's death.\ntt0320244,sh8VHDoEDik,Gitsie and Michael reaffirm their affection before being carried away by the police.\ntt0285728,Tg_qXTVaZSE,\"After drugging Khamtay, Dahmer carefully drills into his skull.\"\ntt0320244,EOCgXlRkmKk,The Club Kids visit Dallas where Michael meets Gitsie for the first time.\ntt0320244,vvWyQxD3ZmI,The Club Kids appear on a talk show while Peter wonders if the success the Kids bring is worth the trouble.\ntt0320244,4VfWFRMVM_M,Michael gets upset when Keoki shows up to his birthday intoxicated.\ntt0320244,p0WBxRosKq4,James teaches Michael how to be fabulous at a donut shop.\ntt0320244,QRHGpNm96gY,Michael's truck party with Christina tripping at the wheel is cut short when the cops break it up.\ntt0320244,j1CC9YKFpXA,Michael has Peter over for the Holidays while James tries to get into Leoki's pants.\ntt0413466,xEQ_h9zO4II,\"After a maid tries to help the guys find a way home, a drunken actress takes Kico into her mansion and makes him her bath buddy.\"\ntt0413466,jC5O4or6dB8,\"Jonathan \"\"and thens\"\" and scratches himself through an introduction to his life.\"\ntt0320244,G7GXq4M7SuI,Michael steals the spotlight when James has a bad trip.\ntt0413466,FBpPaF5Kg_Y,A couple of Beverly Hills girls take a liking to Jonathan and Kico and invite them to their house.\ntt0413466,meBbz4hop-w,Nikki and Kico quiz one another about their respective lifestyles.\ntt0413466,eOgMuHykBAA,\"The guys bemoan the loss of Louie, who was just shot by a resident as he was hopping a fence.\"\ntt0413466,lrvMjEmOFhE,\"After the guys are done bagging on Rosalia, Porky solemnly reminisces about the girl he impregnated.\"\ntt0413466,owJTZiiUoUQ,Rosalia freaks out when she discovers Porky trying to drown himself in the sink.\ntt0210070,nU1jeDXloRs,Ginger beats up Trina as her transformation grows while Jason copes with the side effects of his night with her.\ntt0210070,A7UHJpZ4Jrw,Brigitte's final attempt to save her sister proves fatal.\ntt0210070,Wmu-F4mJ-eI,Brigitte attempts to make peace with with beast in order to save Sam.\ntt0210070,4CgNb8LRtng,\"After terrorizing Trina, the sisters deal with an accidental death.\"\ntt0210070,GwYqUTPQT-w,Sam and Brigitte plan how they'll handle the beast while hiding in the closet.\ntt0210070,EMga19u0TaA,Brigitte and Sam race home while Ginger transforms in the back of the van.\ntt0210070,11TGIP2Kouk,Brigitte and Ginger buy tampons when Ginger's infection is mistaken for cramps.\ntt0210070,FrisJJ0G4N8,\"When Ginger's transformation is mistaken for menstruation, the sisters visit the school nurse.\"\ntt0780608,YpkqDHGJzJ8,\"At a meat factory, Jane goes on a pro-union tirade bringing up worker's rights and class struggle.\"\ntt0780608,pnqh4SI-E6c,\"Jane idiotically stands-up on the ferris wheel, and stumbles, which leads her to dropping the valuable communist manifesto.\"\ntt0210070,oZrpLQFH960,The sisters get separated when a lycanthrope attacks Ginger.\ntt0780608,HiMImmy3l5o,Jane reaches a momentary state of tranquil bliss as she rides the ferris wheel at the Santa Monica pier.\ntt0780608,O73Q7jd3VkA,\"Jane finally makes it out to Venice Beach, only she's too late for the Hemp Fest, but does run into Carrot Top.\"\ntt0780608,ca_Ac4lF2Vk,\"While stuck in traffic on an L.A. freeway, Mikey imagines a hot and horney Jane seducing him in the car. The dream is far from reality.\"\ntt0780608,ViZ5qXg5xQA,\"Jane hallucinates a smiley face in the sky, then tries to grab a ride to Venice by calling up some old friends.\"\ntt1680059,bLqwpb4eDeA,\"The keepers stay with the baby elephants all through the night, comforting them when they cannot sleep.\"\ntt0780608,a2Nw8Hen7Bo,\"Brevin, a nerdy friend of Steve the Roommate, admits his romantic crush for Jane.\"\ntt1680059,S7C-PTowNSU,Dr. Birute Galdikas and her team of care-givers act as mothers to the rescued baby orangutans.\ntt1680059,RpatQWLKfAE,\"Dr. Daphne Sheldrick assists in the feeding of the elephants with the formula she developed, and applies sunscreen to their vulnerable ears.\"\ntt0780608,XZT1cB8KU_I,A stoned Jane bombs at an audition in front of the Casting Director.\ntt1680059,ugXeKGSjvKw,Birute Galdikas releases the orangutans into the wild.\ntt1680059,dfFFgV624TA,Dr. Daphne Sheldrick gives a tour of her elephant nursery.\ntt1680059,gXv4mbv8-cE,The Orangutan orphans are tenderly cared for so they will be prepared for adulthood.\ntt0421238,W1Ipb0WpoGI,\"Captain Stanley tries to protect Mike from a public flogging, but even the captain's wife Martha is intent on revenge.\"\ntt0780608,SAo2EHsCPn8,\"On a ferris wheel, Jane talks to herself in the voice of Roscoe Lee Browne\"\ntt0780608,VWELyY3orwI,\"Jane eats the cupcakes that Steve the Roommate was saving, even though she considers him a crazy, weirdo roommate.\"\ntt0421238,7L2NhtAzHYw,Charlie encounters bounty hunter Jellon Lamb and knocks him out.\ntt0421238,_DgOdOLNiaI,Captain Stanley gives Charlie the option to save his younger brother by finding and killing his older brother.\ntt0929618,solCkKfZObE,Heath and Tyler meet with potential new roommates to replace Kieran.\ntt0929618,mIM8G1SoJAc,Kieran says goodbye to Heath and Tyler as he moves out of the penthouse.\ntt0929618,Q8IqpcS31Xo,\"Trista reads the short story that Kieran wrote about her, and they kiss.\"\ntt0929618,tbcg51lQx8Y,\"Erica finds Kieran in bed with Trista, which also infuriates Trista's brother Tyler.\"\ntt0929618,JgIJDix2oy0,Kieran and Erica suffer through an awkward meal with her parents Nicholas and Frances.\ntt0978764,_3EcvKXH9zY,Baby Doll's dark family history is explored.\ntt0929618,3ZuQQQTv48I,Heath has an awkward first day on the job as a male nurse reporting to hot doctor Mitra.\ntt0929618,_mVMG_Rbk5w,\"Kieran flirts with a cute girl at a bar, unaware that it's really Trista, the girl he's been sent to pick up.\"\ntt0929618,6IbECSkNmiY,Kieran and Trista debate the merits of staying in the penthouse or moving out and growing up.\ntt0929618,0eBehC1Ky8c,\"Kieran meets with his agent, who motivates him to get back to writing.\"\ntt1231287,Zf_Dt4lo_3c,\"Thea goes on the t.v. show The Vista hosted by Claire to promote the pregnancy book \"\"I'm So Over This.\"\" At the taping, Nick makes a heartfelt speech about love.\"\ntt1231287,Ddet2d9EtTY,A fight between Jerry and Nick leads to Thea's balloon fake baby being popped in front of everyone.\ntt1231287,xLL3-fP9NAw,\"Thea and Emma have a sisterly cat fight, with Emma tearing up the pregnancy pillow.\"\ntt1231287,2UCoVnTjV4k,Emma throws a baby shower for Thea to trap her into admitting that she's not pregnant.\ntt1231287,l29oT_LWdfM,Nick surprises Emma at home and then takes her on a date in the park.\ntt1231287,U0Sk5u00YHs,\"Thea leads a pregnancy focus group and receives a surprise visit from her sister, Emma.\"\ntt0929618,ROO66Mi8gTY,\"Erica objects to the plan for Kieran to move into a penthouse with his buddies, so he considers breaking up.\"\ntt1231287,DOtd-mykOhE,Thea and Nick pretend they are a couple at a perverse birthing class.\ntt1231287,zDYk7hXvQ0Y,\"When Thea is about to be fired from her job, she blurts out a lie that she's pregnant to her boss, Jerry.\"\ntt1231287,dOObdbjoJ4c,\"When the office learns about Thea's pregnancy, the lie expands as co-worker Lisa adds that Thea is also engaged.\"\ntt1231287,SmLwnNTfwHI,\"During an office meeting, Thea watches on powerless as Jerry's dog becomes sick and vomits all over the boss.\"\ntt0363143,b5jr8NxFS-E,\"Ben comes to an understanding that his former lover is dead, while the body of Charlotte is discovered.\"\ntt0363143,VT2pepdAtJo,\"Ben convinces Charlotte to swallow a spider, only to seal her mouth shut.\"\ntt1242618,3JO11PBdCAo,\"Rebecca returns to find Alice in the tub, muttering about David and Lucy.\"\ntt1242618,IFTHxZ22woc,Alice watches the last home movie of David burying Lucy in the yard and hanging himself.\ntt1242618,BX91rzHyMv0,\"Driven mad with jealousy, David drowns Lucy in the bathtub.\"\ntt1242618,Xi3ymXEMyjU,Alice is left hanging when the home movie ends just as Lucy works up the nerve to leave David.\ntt1242618,H1SvA7bU0oM,\"Alice discovers that not only is David still alive, but he's still in the house.\"\ntt0363143,IqqznoT4Jb0,\"Ben seeks comfort from his estranged, presumed dead lover Elisa, but she offers only a reality check.\"\ntt1242618,0a_HvCBSa1I,\"In another home movie that Alice watches, David becomes jealous of Lucy.\"\ntt1242618,utKueh6Yj9Y,\"Alice calls Rebecca in the middle of the night, convinced that she's not alone.\"\ntt0363143,N5i6B7WyZQE,\"Ben has a nightmare involving a mental ward, ants and his presumed dead lover Elisa.\"\ntt1242618,FDxm9DsmBk8,Alice and Rebecca explore the old house where Alice is staying to finish her screenplay.\ntt0363143,1Oge9qUat-I,Ben's illusions get the better of him when Emery gets confrontational.\ntt1334512,ij3HAftwQQ0,\"Wooing Naomi proves to be difficult for Arthur as he still has a nanny, but Naomi gives him her number anyway, sort of.\"\ntt1334512,B6E_rp80QMc,Arthur and Bitterman dress up like Batman and Robin.\ntt1334512,2NnR3gblKYI,\"Arthur meets a radiant stranger\"\" who gives tours of Grand Central Station despite not being an actual tour guide.\"\ntt1334512,XsdRpsG43WI,\"Arthur tries to worm out of the sham marriage that Susan has planned, but she stands firm, explaining her motivation.\"\ntt0083658,5dA3DePirsE,Batty tries to stay alive long enough to kill Deckard.\ntt1334512,-3mo5CqjvWs,Arthur offers up some reasons as to why he and Susan are not right for one another.\ntt1334512,eX3czjlDO5w,Arthur tells Hobson about his aspiration to get a job for the first time in his life.\ntt0083658,5lPsmFSNWc4,Deckard returns for Rachael and then finds an origami unicorn in one of the most debated endings of all time.\ntt1334512,w_tQqymkPdA,\"When Arthur asks Hobson about her love life, he finds out that she gave it up for him.\"\ntt0083658,e9t5ikxjAQ4,Deckard battles Pris to the death.\ntt0363143,__yiHzuT3ig,The Medium scares Ben when she receives energy from beyond.\ntt0083658,KcJs4qJPQ_M,\"Batty confronts Tyrell and asks for more life, but realizes that it is impossible.\"\ntt0083658,yWPyRSURYFQ,\"Deckard concludes that Rachael is a replicant, but a very good one.\"\ntt0363143,mvBtzXZWWG8,Ben takes Charlotte to his old research laboratory.\ntt0363143,FuXl-Pmr5kc,Ben explains the anthropology in entomology to Charlotte.\ntt0363143,0NtiiKd1HnA,\"Ben confides, albeit reluctantly, in a mysterious presence.\"\ntt0328031,IlIhWS7-x1Y,Susan confronts Sean after discovering he murdered her late husband.\ntt0363143,Bl6Wk5M1vjk,Ben meets Charlotte at a gathering for a Medium's telling.\ntt0328031,CaaKsf8zOyA,Sean cleans house before igniting it.\ntt0328031,B2TqswpzDlg,Sean chops up Duke to intimidate the other thugs before they arrive.\ntt0328031,g4-0zhNcrnQ,Sean starts losing his sanity as weeks of routine beatings go by.\ntt0328031,_MlQzLtPA0Q,\"After murdering Duke, Sean attempts to escape the shack.\"\ntt0328031,PzocCTnSU3w,Duke unleashes fury on Sean when he finds out Sean murdered an associate and wants compensation.\ntt0328031,kqVqHxVJCaA,Duke introduces Sean to Ray.\ntt0328031,VZFMY9mYu4Q,\"Sean murders Eric, but the ordeal is not as easy as he hoped.\"\ntt0328031,FNaOG7EN5jE,Ray and his goons imprison Sean and begin systematically beating him with a golf club for weeks.\ntt1233219,bgCUriRuVx8,Brad and Ingrid walk through the park as Brad gives away all his earthly possessions.\ntt1233219,Lt3HDRrYt9E,The standoff ends when Ingrid realizes that Brad has been keeping his pet flamingoes as hostages.\ntt1233219,a6kk9d5OQ-c,\"Brad travels to Machu Picchu and a central Asian market, and wonders why the whole world stares at him.\"\ntt0328031,GO4D8MjC6xU,Ray tries to convince Sean to assassinate Eric Gatley.\ntt1233219,vHIbZ0uOAL4,\"Lee tells his cast the story of Tantalus, which inspires Brad to pick up the sword.\"\ntt1233219,GTv9dFFHtW4,Brad and Lee visit Brad's Uncle Ted to obtain his sword for their Greek play.\ntt1233219,1zOSmScTr_w,Ingrid suffers through an awkward dinner with Brad and his mother.\ntt1233219,gyUrAK47OY4,\"Hank tries to get Brad to come outside, but he refuses to leave the house.\"\ntt1233219,czIb_WZRk-U,Brad decides not to join his buddies on a fatal kayaking trip in Peru.\ntt1233219,XmhfuDf1hZI,\"Fired from the play, Brad attends a performance and recites his lines from the audience.\"\ntt1233219,zX2LRszGCro,Hank shares a story with his partner Vargas and they get called to a crime scene.\ntt0978764,spwoWkSEmsE,Blue lectures the company about loyalty and trust.\ntt0978764,oJFKZnePh3k,Blondie does what she can with a machine gun against a fierce dragon.\ntt0978764,KV143Jx9hFs,\"When Baby Doll conceives of a plan, the rest of the gang agrees to join.\"\ntt1486185,uwV4iMoc7xg,Peter and Henri create an unlikely alliance in order to help Valerie.\ntt0978764,MMeHpxjiU0U,Rocket takes out a baddie in the trenches.\ntt1486185,BT7WTaXcPLU,Henri accuses Valerie's grandmother of being the wolf.\ntt0978764,UrUNUzp14Bc,Madam Gorski lectures Baby Doll on self confidence.\ntt1486185,piFTKwqrqYA,Valerie confides in her grandmother that the wolf has spoken to her.\ntt1486185,DYsJH2JWJTY,Father Soloman warns the villagers of the impending doom a blood moon brings.\ntt0480687,3cnhsHMhVZE,Grace and Maggie discuss their husbands and sex lives.\ntt1135487,Dl8BO_ZLdEc,Ray and Claire cope with the realization that they have been double-crossed with a bogus formula.\ntt1486185,iI0hgr8Kff8,\"Unbeknownst to the villagers, a menacing wolf among them turns and attacks.\"\ntt1486185,jkHrHAKwPZk,Valerie pleads with Peter not to leave her.\ntt0480687,u17vCX9koaI,The guys discuss strategies for picking up babes.\ntt0480687,4j9EwcO8tDM,Fred breaks the news to Rick that he got a hall pass from his wife.\ntt0480687,CxxuM1HCI-8,Fred takes a moment to capture Leigh's beauty with his mental camera.\ntt1135487,UubHqEOLd8I,\"Ray threatens to expose Claire as a spy, so she reluctantly agrees to work with him.\"\ntt1401152,uSkVR8Tbu8c,\"When a cable snaps off of a truck, Gina and Dr. Harris get into a serious accident.\"\ntt1127180,KNyFPVliMEE,\"Christine goes grave digging to return the cursed button to Mrs. Ganush, but the old gypsy proves combative even in death.\"\ntt0089560,yXl3ENKGAUQ,Rocky arrives for his first day of school and is met with uncomfortable stares and a few mean jokes.\ntt1401152,dSpTTf_dzDI,Dr. Harris and Gina evade men chasing them in cars through the streets and on the sidewalk.\ntt1127180,quY0mRlL5FQ,\"Christine and Clay reunite at the train station, but when Christine realizes that Clay still has the cursed button, she falls onto the tracks and into the path of an oncoming train.\"\ntt1401152,FBV_POzEeks,\"Dr. Harris reconnects with his wife after his coma, only to find that she doesn't know who he is.\"\ntt1127180,L_NfCmTkLPQ,\"Christine and Rham Jas participate in a seance in an attempt to draw the evil spirit into the body of a goat, but the spirit inhabits Shaun first.\"\ntt0094138,wReulnRQA-Y,\"Jerry makes a run for it, but his car won't start, and security officer Duke drags him to the office.\"\ntt0056869,qMwvHLe5m3g,\"Mitch leads Melanie, Lydia and Cathy out of the house and into the car.\"\ntt1127180,pE4-ePx_OAI,A dinner with Clay and the future in-laws turns awkward when Christine sees the gypsy's eye in her slice of harvest cake.\ntt0094138,UW-Y3QyK-aU,\"Rumors about the new kid at school spiral out of control, and then Buddy steps out of his car and intimidates everyone on his way in.\"\ntt0094138,irglc0zZbvA,\"Jerry gets nervous when Mr. Rice introduces him to Detective Mulvahill, the cop investigating the school store robbery.\"\ntt1127180,8tanKqukbfM,\"Christine watches as shadowy hands creep under her door, then drag her around the room.\"\ntt0094138,QAUmchzQJAE,\"Jerry turns to robbery in desperation, but he has difficulty opening the cash register in the school store.\"\ntt0094138,8DrzN7pcJpI,\"Jerry attends a pep rally, but the brutal decapitation of a dummy by cheerleaders only makes him more worried about the fight.\"\ntt1127180,c27gUzZEjvA,\"Christine tries to make everything better by visiting Mrs. Ganush at home, but she soon discovers that the old woman has died.\"\ntt1127180,Od1ZBTstSHg,Clay tries to console Christine after she has a bad dream involving flies and Mrs. Ganush.\ntt1127180,v0KOJWyR4SU,\"Christine is attacked in the bank garage by Mrs. Ganush, who puts a curse on one of her buttons.\"\ntt1127180,SI7LDY6E1Rw,Christine snaps at Stu and suffers an intense nose bleed that gets all over Jim.\ntt0095253,8W4DxSCopj8,\"Roman grooms while attempting to make a call on a primitive cell phone, and Chet struggles to drive Roman's fancy boat.\"\ntt0322589,9r4784rihOc,\"Bitter because Honey turned him down, Michael changes his mind about having the kids dance in Ginuwine's video.\"\ntt0322589,tkN8fCU-rzU,Michael tricks Honey into thinking they're attending a meeting when he really just wants her to be his date to a party.\ntt0087995,ewwKExvkqXQ,\"Once he's paid cash for his first repo job, Otto opens up to the idea of becoming a repo man.\"\ntt0096969,UephHvStdWw,Ron and a group of Vietnam veterans protest the war at the 1972 Republican National Convention in Miami.\ntt0322589,eeGuOguh33o,Gina and Honey get in a tiff when Gina feels like Honey isn't being a good friend.\ntt0765443,QcubF7zXxwo,Nikolai meets with Semyon to discuss the behavior of Semyon's son as well as the diary of the dead Russian prostitute.\ntt0265298,ClQNLSnl1ow,Jason leads Marty on a wild goose chase all over the backlot at the movie studio.\ntt0765443,m_xLtlNx7Io,\"During the game of Chelsea and Arsenal, when Ekrem takes a moment to urinate, the Chechen hitmen enact their revenge.\"\ntt0765443,fOHbTh1Wo4o,The Senior Officer of the organized crime unit at Scotland Yard meets with Nikolai at the hospital to pull him from his undercover operation.\ntt0765443,4rJgIW-Qwzk,Anna and her family meet Nikolai in a public restaurant to exchange the diary for the prostitute's address.\ntt0765443,Whw_HyeXyCY,\"As Stepan recites the diary, Anna and her family discuss how they will deal with the book and the baby.\"\ntt0206634,-WW51YaWO-4,Kee opens up to Theo about the experience of being pregnant.\ntt0765443,fRdo188PjXA,Nikolai is given the stars of the Vory V Zakone through a ritualized tattoo ceremony.\ntt0765443,bBg5uLCQrbU,\"Nikolai offers money and prayers for the Vor V Zekone prostitute, who he later rescues.\"\ntt0765443,cyrDoGdif_o,Nikolai gives Anna a lift home when her motorcycle stalls in the rain outside Semyon's restaurant.\ntt0206634,EddCNkvpmjw,The Fishes argue about what to do with pregnant Kee.\ntt0765443,t5CxCy7VC7M,Nikolai thaws out the frozen corpse of a former employer that Azim's murdered in order to cut him into separate pieces.\ntt0206634,8K84sx9EJzc,Theo overhears the Fishes' plot and finds out that they are the ones who killed Julian and plan to take Kee's baby.\ntt0446029,5HaKHp8glPc,Scott and Knives team up to finish off Gideon.\ntt0446029,_7vyrudcgOQ,Scott uses his second life to redo the episode at the Chaos Theatre.\ntt0446029,N13WI3oVda8,\"Scott catches up with Julie, Ramona, and Envy at a cafe.\"\ntt0446029,ILwoKfeDJO4,\"Scott finds out that Ramona dated A-list actor, Lucas Lee, the hard way.\"\ntt0100301,JcuE90flGj4,\"At a bar mitzvah, Jonathan tries to lighten up Annie by displaying his moves on the dance floor.\"\ntt0276751,NZ94hNaoyLA,\"Marcus comes to Will for help with his mother, but Will refuses to get any more involved in their problems.\"\ntt0446029,dLpCZ8g5uK8,Scott tricks Todd into losing his vegan powers.\ntt1161864,US9enXEHnR4,\"Michael stands up to Father Lucas, but Father Lucas believes the devil has fooled Michael in to doubt.\"\ntt1161864,SzO7T8P4_JA,Father Lucas responds peculiarly to Michael's appearance.\ntt0472062,fZXtCHoRb50,\"At first doubtful and offended, Charlie listens to the advice of a young genius weapons expert brought in by Gust.\"\ntt1161864,1NQhKtWHtmQ,Michael can't make the connection that Father Lucas has about the upcoming exorcism.\ntt0472062,-c_ctZ4lUCk,\"On an airplane, Charlie tells Bonnie a childhood story about when he first realized he loved America.\"\ntt1161864,WjJQ6L_BS58,Michael speaks briefly with Father Xavier about Father Lucas' exorcism techniques.\ntt0472062,SuRxmapiDeU,The men get distracted by a beautiful and tempting bellydancer while trying to have a political meeting in Egypt.\ntt0100301,NJ8rJ-i-OKE,\"Jonathan enjoys the amenities of a furnished, country club bathroom, yet forgets to tip the bathroom attendant.\"\ntt0110950,LdsaucLvRb4,\"When picking up Lelaina for a date, tensions rise between Michael and Troy over who is the right guy for her.\"\ntt1161864,81hWxoHF1uA,Angeline asks Michael Kovak to record what he sees during an exorcism.\ntt1161864,zCv0AZeyCaQ,Father Lucas Trevant expresses to Michael Kovak his personal wavering doubts of God.\ntt0078723,zIJgAMpRG-k,Warren sets his sites on the Japanese sub while the Japanese set their sites on California.\ntt0276751,xg4OR0Tpy6U,\"Will spends an awkward Christmas with Marcus and Fiona, and it gets only more awkward when Suzie shows up.\"\ntt0078723,p-YvF5eXwYM,Sgt. Tree informs Ward Douglas that his property is strategically advantageous for Japanese defense from the Pacific Ocean.\ntt0276751,iBbWqmzzKMU,Marcus confronts Will about his lying and tries to blackmail him into dating his mother.\ntt0078723,4qMv02zxgdM,\"The Japanese infiltrate California through a clever Christmas disguise, so clever it gets by Hollis.\"\ntt0087262,VsdeqOdkdTY,\"When John threatens to shoot Andy, Charlie pretends to join him, and Hollister intervenes.\"\ntt0087262,pPZMrs3QGug,\"Hollister tries to calm Charlie to get her cooperation, but she refuses to start another fire until she sees her father.\"\ntt0117128,_cZZ4xkgUBg,A mutant stowaway appears on the spaceship and terrorizes Ruth.\ntt0117128,NpiIAuEOzmA,\"Cal, Faith and Steve attempt to flee to the airport, but Brack puts an end to their getaway.\"\ntt0117128,m2giPgQXSn4,\"Cal and Joe finish building the interocitor, a device for communicating with intelligent alien life form Exeter.\"\ntt0117128,0EC3NTMOF4Q,Cal and his assistant Joe receive a package containing an instruction manual for a mysterious device called an interocitor.\ntt0190590,_dl2L4v6ecM,Pete forces Everett to pull over when he hears the enchanting sounds of three lovely sirens singing in the river.\ntt0117128,Vd1j1GAExH0,Dr. Cal Meacham answers questions from reporters and boards a jet to return to his lab from Washington D.C.\ntt0076723,FRdIXmfm6PA,\"When Reg learns that Anita refuses to sell the team, he hurls a stinging insult aimed at her son.\"\ntt0076723,fxWE6pnuPzo,Team owner Joe McGrath forces several players to participate in a fashion show despite their lewd protests. Reg and Ned are interviewed by Jim Carr on the radio.\ntt0190590,9RTPdAAdw30,\"Pete and Delmar interpret a religious meaning from the flood, while Everett insists there is a perfectly scientific explanation.\"\ntt0052357,ZruKu2N6nQw,Scottie tries to find out why Madeleine through herself into the Bay.\ntt0190590,WsrIYleq2KY,\"Facing the hangman's noose, Everett prays for forgiveness and is miraculously saved by the flooding of the valley.\"\ntt0052357,FZ65jfSwpAk,\"Scottie meets up with Madeleine again and she allows him to \"\"wander\"\" with her a while.\"\ntt0034240,tN4mmLewz_E,Sully is disappointed by the impression his movies have made on the girl.\ntt0190590,gLvcrsbliOo,\"Everett, Pete and Delmar infiltrate a Ku Klux Klan rally in order to save Tommy from hanging.\"\ntt0073195,rW23RsUTb2Y,\"After witnessing a shark attack firsthand, Brody is left helpless during the ensuing panic.\"\ntt0034240,FKDCoc_i-ZU,Sully is disappointed when the studio bigwigs force him to be tailed on his journey to find trouble.\ntt0120669,vUgs2O7Okqc,\"In the early morning, following a drug-fueled evening, Duke recalls the brief magical time and place of San Francisco during the 1960s.\"\ntt0073195,u9S41Kplsbs,Quint reveals to Hooper and Brody the chilling shark-infested nightmare of his past.\ntt0073195,dPi40lQetew,An ornery town hall meeting is interrupted when Quint takes command of the room.\ntt0350258,ayl2X5zfUAk,Ray's mother helps him adjust when he loses his sight.\ntt0023027,q4Qlk7sfZfQ,Pinky reaches into his bag of tricks to lead Huxley to a come-back victory.\ntt0023027,0lCPmaq960E,Prof. Wagstaff and Connie attempt a romantic afternoon on the lake.\ntt0023027,nP7OKtlMO2w,\"Three's a crowd when Baravelli, Prof. Wagstaff and Jennings show up to Connie's apartment at the same time.\"\ntt0023027,OjS7LxDYad8,Learning is not a priority in Prof. Wagstaff's classroom.\ntt0023027,3skIjrkta2Q,\"Yes Men, booty calls and bootleggers: Ii's business as usual in Prof. Wagstaff's office.\"\ntt0023027,j7PgnjEiMcA,\"Prof. Wagstaff goes to the speakeasy looking for a couple of ringers to play on Huxley's football team, but he recruits the hopeless duo of Baravelli and Pinky instead.\"\ntt0023027,i9Iy9amffa4,\"Frank serenades Connie. Meanwhile, Pinky shares a moment with his horse.\"\ntt0023027,PUV_2cqbrbo,Frank informs his father about the importance of a good football team.\ntt0023027,29E6GbYdB1c,\"Prof. Wagstaff, the new President of Huxley U, addresses the students and states his catch-all policy.\"\ntt0020629,Ciq9ts02ci4,The soldiers of Second Company await the attack from the French on the front.\ntt0020629,er2a5WhYU-4,\"When French soldiers cross over his trench, Paul stabs one. The soldier slowly dies with him through the night, despite Paul's attempts to save his life.\"\ntt0020629,rSPj_G2yVz4,Paul is asked by his old Professor to recount his heroism and patriotic acts of war for a young class.\ntt0087065,8cp_Be49Tyk,\"Davey is relieved to find his dad piloting the plane, but they have only a few seconds to escape before the bomb goes off.\"\ntt0113360,kPsFoudYVSg,Takeda makes sure Paul knows who the real samurai is.\ntt0113360,RY-4FCh9UFY,Takeda finally gets his long-awaited battle with Kinjo.\ntt0113360,qdK7QVuaSlM,\"On the bullet train, Takeda makes short work of the deadly Junko.\"\ntt0113360,YGf3jBzkUeg,Kinjo makes his cronies pay for their mistake.\ntt0113360,3fbtYisNC7c,\"Paul returns to Kirina's to find a gang of ninja assassins, led by the notorious Kinjo.\"\ntt0113360,Sj8eNDOZAAk,\"Lt. Wadakura learns the hard way that there are, in fact, ninja cults in modern Japan.\"\ntt0040068,qhquCQirt48,Count Dracula makes his first casual appearance to the party.\ntt0103850,QRizQTLmAMU,Bugs Raplin makes his final interview while the Davis boys wait vigilantly outside of Bob Roberts' room on Penn State campus.\ntt0040068,RjYsIv90zWk,\"When circumstance prevents Chick from seeing the monsters, Wilbur tries to show them to him.\"\ntt0103850,-h62m4d4MmA,\"Bob Roberts goes on the popular TV show, Cutting Edge Live, and plays a new song the show didn't pre-approve. The Assistant, Carol, is the only one who will stand up to the politician and shuts down the set.\"\ntt0103850,VE6K18Mfln4,Bugs Raplin talks about taxes going to covert wars Americans don't hear about through the media. Taxes are used to bail out savings and loans who misused their clients money for drug smuggling operations.\ntt0040068,88HW9wtz3F4,Wilbur loses his balance on a crate containing the sarcophagus of Dracula.\ntt0103850,1Oetxnq_OG4,Bugs Raplin interviews Bob Roberts as he tries to find his way through the underground corridors of a beauty pageant.\ntt0103850,QJFwZP8DgVE,\"Bob Roberts, upset at the sword fight he just lost, drives off on his motorcycle and slips on the gravel. He throws an immature tantrum at everyone around him.\"\ntt0040068,x0YLLkr7VfU,\"Chick & Wilber attempt to evade the Wolf Man, Frankenstein's monster and Dracula in the mansion.\"\ntt0104070,Er54USCnsds,\"Ernest runs from the crazy, undead duo of Helen and Madeline.\"\ntt0104070,ZpXzLVGlnc8,Helen and Madeline settle their differences using garden tools.\ntt0104070,D_A6gdlNh00,A reinvigorated Madeline puts an end to Ernest and Helen's scheming.\ntt0104070,ycpEjbV4KRM,\"Despite the gift of eternal youth, not much has changed between Helen and Madeline.\"\ntt0101615,KZ04pEN715I,Johnny shows us how it's done in his final rap performance.\ntt0104070,03a-vG6wHDI,Neither the doctor nor Ernest can wrap his mind around Madeline's condition.\ntt0104070,ErqotNH65_E,An argument between Ernest and Madeline takes a deadly turn.\ntt0104070,BWWFJ2yjQGE,Helen tells Ernest the details of her plan to kill Madeline.\ntt0104070,yqTTejoQVXw,\"Hoping to regain her looks, Madeline drinks Lisle von Rhoman's magic potion.\"\ntt0101615,zJ5Nxx3H-Tc,\"Basking in the afterglow of his heroism, Johnny decides to teach Nick one last lesson in awesomeness.\"\ntt0101615,Y1aP-YyBdIw,Johnny leads Kat and his buddies to rescue young Tommy from the kidnappers.\ntt0101615,b8oFKKPfgi0,Johnny and Kat get closer.\ntt0101615,8aW-vJWY87I,Nick picks the wrong fight when he goes toe-to-toe with Johnny.\ntt0068699,NaGkSrOXOp4,The Stranger surrounds Stacey and his henchmen up in the hills blasting dynamite and taking sniper shots.\ntt0091541,fr5rDEInWQA,\"Walter returns home from a business trip, suspicious because Anna spent the night with her ex-husband.\"\ntt0101615,MqMD1DK0CTQ,\"Kat's little brother, Tommy, is kidnapped by a couple of wiseguys who want to use the boy as ransom.\"\ntt0104070,s-pgK_Rvuwc,Helen has been eating her feelings.\ntt0068699,Zd17-69y_i8,\"As Stacey terrorizes the town, The Stranger begins the reckoning by whipping a henchmen to death.\"\ntt0101615,0yOwWkbamyM,Johnny drops some funky lyrics to inspire the listless audience at this dive bar.\ntt0192614,bsBxt2RpiIU,\"As Luke gets closer to becoming a Skull, Will expresses his concerns about the organization and its members.\"\ntt0091541,3dMF8cHKHZA,\"When a strange man tries to put the moves on Anna, Walter sends him out, and then they realize he's the carpenter.\"\ntt0101615,HBdaCz2BeoY,\"In his search for Kat, Johnny befriends her little brother.\"\ntt0101615,_ElAIqSBTKc,\"Johnny uses his epic \"\"charm\"\" to get Kat's attention.\"\ntt0887883,j477dAxaeck,\"Ted Treffon breaks into Osbourne's house, but things go very badly.\"\ntt0887883,z09OYmZg6-Q,\"Harry has had enough of his fling with Katie and wants to get back with his wife. When he sees a suspicious car, he expects the worst and chases him down.\"\ntt0101615,y7gfbVpraWw,Johnny's attempt at showing off gets the eye — and the ire — of a lovely young woman.\ntt0192614,lxQZQ8uXBwg,\"Despite the danger surrounding them, passion overwhelms Chloe and Luke\"\ntt0192614,hOgBvXEmScc,Caleb lets Luke know that The Skulls mean business.\ntt0103919,c6dmj-WpTW4,\"Furthering their research, Helen and Bernadette go to the source of the Candyman lore, Cabrini Green.\"\ntt0103919,Zo3a3XvzTaA,\"When Helen wakes up from a trance, she finds herself amidst a horrifying massacre at a friends house.\"\ntt0117381,8x_8B2imlgE,Nicole and David share their first kiss.\ntt0118632,-yZVme3ToO8,Sonny and his congregation welcome Thanksgiving with some good will to the neighborhood.\ntt0118632,z_r6KUYYO5E,Sonny takes his ministry to the radio waves.\ntt1302067,4uHWjeoTol8,Yogi and the gang attempt to evade danger on the rocky river.\ntt1302067,g0AMLVSBfSs,Rachel sets up a hidden camera on Boo-Boo to capture nature without human interference.\ntt1302067,Wy-H77tovC8,Yogi and Boo-Boo get in hairy situation when their flying contraption stops flying.\ntt1302067,xp7F-8G_bPI,Yogi and Boo-Boo chase down a train to hop inside a boxcar.\ntt1302067,fwI7COVTitQ,Yogi lights things up while jet skiing for a crowd.\ntt1302067,MalJ_GPU4vI,Rachel introduces herself to Ranger Smith when an unexpected visitor drops in.\ntt1302067,sJwgNs3BWYY,Yogi explains the wonders of the picnic basket to Boo-Boo before his daring jump to snatch one.\ntt0020640,Dbz02p90CV8,The Professor and Signor Ravelli get into a scuffle with the ladies of the house.\ntt0020640,ZuVe3leQQgE,\"When a priceless painting winds up missing during the party, the Captain makes a point to message his lawyer through his secretary.\"\ntt0020640,_YrNQaXdOxU,The good Captain bursts into song and dance for his esteemed guests.\ntt0020640,T6RkPxawpY0,The Captain imposes his charm on the ladies of the house.\ntt0020640,cvmcGY_VwvU,\"Signor Ravelli asks the good Professor to pull out the \"\"flesh.\"\"\"\ntt0020640,5xUMeF5rgQo,\"The party is given the honor of the The Professor's presence, who makes a grand entrance.\"\ntt0020640,1m9DjG3QRzs,\"Signor Emanuel Ravelli is caught in the act, but has a few tricks up his sleeve.\"\ntt0020640,B9nqewDmx2U,The Professor and Signor Emanuel Ravelli pull the deck out for a game of bridge.\ntt0020640,FZUfhfHbjE4,Captain Spaulding recounts his voyage to Africa.\ntt0102175,5WuYr3fFNFg,\"As Flip tries to re-adjust to his shaky domestic life, he has a disturbing vision of the future…\"\ntt0102175,-sv5DJfslVM,Flip makes the break-up with Angie official.\ntt0102175,Cgd47hmpvE8,\"Having learned of Flip's affair, Drew throws out his things, making a scene in front of the whole neighborhood.\"\ntt0119567,cVIS31ghLNQ,A very pissed off T-Rex wreaks havoc through the streets of San Diego.\ntt0119567,w7tqVEdyteg,The T-Rex takes a night stroll through a quiet San Diego neighborhood and terrorizes the inhabitants.\ntt0119567,AL7UDurxc3w,The baby T-Rex gets its first kill… at Ludlow's expense.\ntt0119567,9t8iEpdabms,The T-Rexes continue to stalk Dr. Harding and Ian.\ntt0119567,2h8rH8zxA64,Kelly uses her gymnast talents to save Ian and Dr. Harding from a deadly velociraptor ambush.\ntt0119567,p8fPj1-nKw0,\"The Tyrannosaurus Rex awakens from its ship ride and is very, very cranky.\"\ntt0119567,LpxwR_9EhlY,\"Ian and Nick work to save Dr. Harding, who dangles perilously as the research trailer hangs over the edge.\"\ntt0119567,mZ2kxdQf3t0,Eddie is ripped apart by two hungry Tyrannosaurs.\ntt0204946,eFqD0yeyGTs,Torrance listens to a mix tape made by Cliff and it cheers her up.\ntt0204946,HqT0L6jFMNs,\"Cliff comes to check out Torrance at the car wash, but is disappointed to see his sister Missy in a bikini.\"\ntt0119567,CYGtLUZg1xA,\"A pair of T-Rexes track down their wounded offspring, putting Ian and his team in mortal danger.\"\ntt0119567,8NaBHCuxqhA,\"InGen's para-military team of experts, led by big game hunter Roland Tembo, begin their invasion of Isla Sorna.\"\ntt0096320,69vn_WxKBUs,Marnie joins Julius in his room for the night.\ntt0096320,pJJjycrT0RA,\"When Marnie brings Julius some cookies, she overhears him singing in the shower.\"\ntt0328828,hgzSTQiMxj4,\"Stifler unknowingly reveals his true, raunchy persona to the lovely Cadence.\"\ntt0328828,0tjKGAwyCIY,\"Michelle freaks when she realizes that Stifler's coming to the wedding, but Stifler helps Jim with some dance lessons.\"\ntt0328828,4lat6XqtJ0A,Stifler is pissed when Jim tries to prevent him from coming to his wedding.\ntt0163025,Du95opzY8qg,The raptor eggs are returned to their rightful owners in this tense exchange.\ntt0472062,-WmDszVxti0,Charlie gets more money and weapons for the Afghan struggle against the Soviets. The Afghans begin shooting down Soviet helicopters.\ntt0163025,cVA4BO2v7zs,Erik's reunion with his parents is interrupted by a hungry Spinosaurus.\ntt0163025,Q-LFUnE8zzE,The Spinosaur makes one last attempt to make a snack out of Dr. Grant and the survivors.\ntt0328828,-T16rxR-nCo,Michelle gets excited for her big day and Stifler gets excited for the bachelor party.\ntt0163025,KFJmxST-xRI,Billy glides in and rescues young Erik from a horde of hungry Pterandons.\ntt0163025,2vOhL_Hw-gg,\"Cornered by the Raptors, Dr. Grant is rescued by young Erik Kirby.\"\ntt0163025,TTLjOAdckzM,The raptors set a trap for the survivors by using Mr. Udesky as live bait.\ntt0163025,jT8TUowrkLU,\"Stranded inside their plane, Dr. Grant and the survivors must endure the onslaught of the menacing Spinosaurus.\"\ntt0163025,trPOKL7Nguo,Dr. Grant and the survivors discover a deadly surprise at the abandoned genetics lab.\ntt0163025,n7cRx_7umjE,\"Realizing that something large and deadly lurks nearby, Dr. Grant and the rest of the visitors attempt a desperate flight off the island…\"\ntt0083866,gTVoFCP1BLg,E.T. elevates the bicycle and takes Elliott on a ride through the nighttime sky.\ntt0163025,M7tNqjsclhs,Dr. Grant and the remaining survivors are trapped in a turf battle between a T-Rex and the ferocious Spinosaurus.\ntt1231583,eKJv3dWsZ7E,\"As Peter and Ethan make their way back to the Impreza, Ethan decides he needs to stop for his \"\"medication.\"\"\"\ntt1231583,k79KJYXrBkc,\"As Peter and Ethan become acquainted, Peter can't help but ask why Ethan is carrying around a coffee can everywhere they go.\"\ntt0328828,O5Dec6RdFzw,\"When the engagement ring comes out in the dog's poop, Stifler passes it off as chocolate.\"\ntt0328828,nqaJ3f0z3Lw,Jim's shavings end up on the wedding cake.\ntt0328828,nqz6wwDRWiE,Stifler pretends to be a polite preppy type in order to get into Cadence's pants.\ntt0328828,O5tNdOzsbvQ,\"Jim brings his fiance's parents to his house, unknowingly interrupting his surprise x-rated bachelor party.\"\ntt0084787,w0Z44BIDPPc,\"Bennings is taken over by the Thing, but the process of imitation is incomplete. He stumbles out into the snow, with claws as hands, before he is immolated by MacReady.\"\ntt0328828,9blGmvMjHlk,\"Jim is about to propose to his girlfriend, Michelle but it all goes awry when she \"\"services\"\" him under the table.\"\ntt0023969,td3p2XKHP2M,Chicolini and Rufus T. Firefly make a mockery of the court through some wonderful word play.\ntt0084787,JVgqhPqHPa4,\"Attacked by a giant mutation of the Thing, Macready blows it up, and a large part of the base, with dynamite.\"\ntt0084787,GA4Ozqt7338,\"With the polar climate closing in around them, MacReady and Childs acknowledge the futility of their distrust, and share a drink, as the camp burns.\"\ntt0084787,ZH7hyzPIbp0,\"In the event that no one survives on the base, MacReady records an audio tape telling of the strange events that are occurring.\"\ntt0084787,oZzS9hBwaqg,\"MacReady, with the help of Garry and Nauls, decides to blow-up parts of the base in an attempt to not allow the Thing to freeze and hibernate.\"\ntt0023969,uSsUoxlSADk,Rufus T. Firefly lays out the strict rules of his country through song and dance... much to everyone's pleasure.\ntt0084787,YDDzjijc6jY,MacReady administers the blood test on Childs and Garry. Both are found to be not infected and demand to be untied from the couch.\ntt0023969,FNSNLXNnx-o,Ambassador Trentino employs Chicolini and Pinky as spies in order to get dibs on a political rival.\ntt1212419,gP2sCE166o4,\"Billy subtly tries to convince George that his gift is not only a viable source of income, but his duty to mankind.\"\ntt0084787,ZXHuGyv1KXM,An Alaskan malamute dog runs across the wintery landscape of Antarctica pursued by a Norwegian helicopter.\ntt1212419,5cqQdDitGuA,\"When George is confronted by a neighbor who wants him to do a reading for her, he retreats into the safety of his apartment.\"\ntt0084787,NtgFKdWcKXY,\"While locked up in the dog kennel, the Thing attacks Clarks' dogs. MacReady uses a shotgun, and Childs brings the flamethrower to destroy the creature.\"\ntt0327597,i8WK-3pUpwk,Coraline and Wybie get strong-armed by the Other Mother's pesky severed hand.\ntt0327597,HOp1wRImIxY,Coraline sees the younger side of Miss Forcible and Miss Spink as she attends an outlandish play.\ntt0327597,91nfNp7MVIw,\"As Cat warns Coraline about the Other Mother's motives, a spy trumpets an alarm.\"\ntt0327597,avt_f-TaDBs,Coraline discovers a magical garden in the Other World.\ntt0327597,2hcVZo8jP6A,\"For Coraline to stay in the Other World, she just has to do one tiny little thing...\"\ntt0327597,w0C4gjdag8o,\"Despite her early suspicions, Coraline is mesmerized by the fantastical new toys from her Other Parents.\"\ntt0327597,wyaGIaJsmTg,Coraline meets her Other Parents and notices something very striking about them.\ntt0327597,rx1TXzxMEfo,\"Coraline meets her nosy neighbor, a young boy named Wybie.\"\ntt0166924,R_VEQI2nS48,\"While holding actress auditions, Adam spots Betty and then, as instructed, chooses Camilla Rhodes.\"\ntt0386117,NMaLs9vr7ko,\"Max formally meets the Wild Things, who act weird, according to Carol.\"\ntt0386117,kA10xksmpCI,Max meets KW and she asks him why he came to their land.\ntt1058017,jwrWJXtNYWU,Mark's receptionist Shelley tells him he's about to be fired.\ntt0033804,U3nWo59iBg8,\"With Charles under her complete control, the Lady Eve reveals a long list of past suitors, much to his chagrin.\"\ntt0327597,rkrnVkFn59c,\"Awakened by some noisy mice, Coraline follows them through a mysterious tunnel and into the Other World.\"\ntt0033804,1T53iV8HKXQ,\"Charles finds himself reunited with Jean, never once making the connection that she was posing as the Lady Eve.\"\ntt0033804,I8ilwspLbDM,\"Distracted by Lady Eve's presence, Charles falls head over heels -- literally.\"\ntt0033804,9VEScwL3KGQ,\"In memorable fashion, Jean foils 'Colonel' Harrington's attempt to cheat Charles out of money.\"\ntt0033804,JZhLiJowzNY,Charles is taken aback when his father introduces him to the elegant Lady Eve.\ntt0033804,RBrzUwP2whM,\"As 'Colonel' Harrington plans his scheme, Jean reveals that she might be falling in love...\"\ntt0033804,dOnoBJvtVMU,Charles finds himself in an awkward position as he and Jean discuss ideal soul mates.\ntt0033804,Y3Q6BzRtl5w,\"Jean meets her match when Charles introduces her to Emma, his pet snake.\"\ntt0120188,vkoJH4fum58,Amir tells the soldiers about what he'll do when Saddam is gone.\ntt0120188,jL6oromerXE,Archie and his boys try desperately to get the refugees across the border before their own government makes another brilliant mistake.\ntt0120188,9acYlZC9RLI,\"The soldiers distribute some food and water to the people, but when things get complicated, they have to leave everyone behind.\"\ntt0033804,Q_aPecwFK08,\"Jean flirts with Charles, giving him some new nicknames.\"\ntt0120188,qhH634B4jGg,\"Soldier turned thief Troy finds a cell phone with enough juice to call his wife, just before he gets pinched by the bad guys.\"\ntt0033804,fZ7X5JDKmSI,\"Sizing up her mark, Jean makes sure that she's the only girl for Charles.\"\ntt0120188,MEl5g32bzMY,Vig apologizes to Elgin and wants to help Gates finish the mission.\ntt0070047,5xiAs8GGqD8,\"Father Karras tries to talk some sense into Chris, but a mother knows her daughter...and this isn't it.\"\ntt0070047,PcBKId4l6LA,Chris is shocked by her daughter's cry for help and what she finds in her room.\ntt0070047,g5m411zcNA4,The psychiatrist asks sweet little Reagan if there is someone else inside her and her answer is yes.\ntt0070047,Nd5HqEJuY1g,Chris MacNeil doesn't believe Dr. Klein's diagnosis that her daughter has a rare brain condition.\ntt1055292,swpveBgb0Zs,Holly is taken out on a date by Sam and Eric acts a bit jealous.\ntt1055292,ZZGHXZmxlZA,Holly is impressed with Eric's pick-up lines as he totes the baby around the grocery store.\ntt0070047,C_4mdGA9ehk,Chris MacNeil comes home only to be visited by Chuck with the untimely message of Burke's death.\ntt1055292,DnYv2MyCXss,\"Needing a babysitter, Eric tries to pawn off the baby to Walter the cab driver.\"\ntt1219342,9CmgJI8aGDg,Ezylryb trains Soren to trust his instinct when flying through a storm.\ntt1055292,W6IeoTNRVf4,Eric and Holly change a baby's diaper for the first time.\ntt1055292,4Albtnu3zyQ,Holly and Eric try multiple tactics to soothe a crying Sophia.\ntt1219342,HWFpzw87VZM,The Echidna helps lead Soren to the Guardians.\ntt1055292,8YSVapFtvtU,Eric and Holly are surprised to learn that they have guardianship together for Sophie.\ntt1219342,80ZafDq4xq4,Otulissa instructs Soren and Gylfie on the rundown of basic training.\ntt1219342,p4SqclCqxuU,Digger introduces himself to Soren and Gylfie and leads them to his hollow to rest.\ntt1219342,OBWwzOCkE_E,Twilight brings home a loud mouth snake named Mrs. Plithiver for dinner.\ntt1219342,5ZzIGV7JAwY,\"Soren plays around with Eglantine, breaking her beak in the process.\"\ntt1219342,wq3EAVEnW8Q,Nyra gives a speech to the new soldiers and banishes Soren and Gylfie to work as pickers.\ntt0840361,zFgFyCSZUvU,Doug and company get into a shootout with the awaiting SWAT team.\ntt0840361,paNPEeQVCTc,\"Krista begs Doug to take her with him, but he insists she stays.\"\ntt0840361,uRxCU1MW8B4,Doug visits his dad in prison and raises questions about his mother.\ntt0840361,dLjnIpWhLZ4,James lets Doug know that he'll die in a shootout in the street before going back to prison.\ntt0840361,BJ3BAzRulPY,Agent Frawley coerces Krista to snitch on Doug by bringing up her drug dealing.\ntt0840361,NrDO7L8jXWo,Doug tells James that he's leaving the criminal life behind.\ntt0840361,t9eDVFrQDXM,F.B.I. Agent Frawley intimidates Doug during an interrogation.\ntt0840361,FnmVnBcfpWw,Claire tells Doug how she was taken as a hostage and released during a bank robbery.\ntt0840361,-o1N2unFkSs,James expresses concern to Doug over a potential witness to their crime.\ntt1322312,Ya00KlBMEyc,Corinne questions her sister Erin about her dating life and the worries of a long-distance relationship.\ntt1322312,JMBzKJj-nIE,\"Garrett has a private talk with Erin's protective sister, Corinne.\"\ntt1322312,mm93ELyLN1w,\"As Erin and Garrett begin to make love, they fail to realize that Phil is eating a late night snack.\"\ntt1322312,hERyYjy3O3U,\"Box explains why he sports a mustache, namely to attract older women who long for the 1970s or 80s.\"\ntt1322312,eK5PghRFnBI,Garrett uses a tanning salon for the first time.\ntt1322312,unl0GXfJRLA,Garrett catches up to Erin at the airport to express how crazy he is about her.\ntt1322312,ftAorMqqjy8,\"On a romantic date, Erin and Garrett share a bottle of some really bad wine.\"\ntt0979434,lhHv2EyaaNc,Kevin learns that Reverend Taylor would like a piece of his winnings to build a new church.\ntt1322312,MfBkwdh4GU4,\"As Erin and Garrett begin to hook-up, Dan plays some loud make-out music.\"\ntt0979434,OkvebeqIrqk,Kevin realizes that someone knocked him out and stole his lottery ticket.\ntt0979434,hW1KqOVCeKw,\"Kevin receives some much-needed advice, and support, from Stacie.\"\ntt0979434,wV-0rTzEedk,Jimmy takes Kevin and Benny on a shopping spree.\ntt0800039,hVQT9mDDeJo,\"Peter has some awkward encounters in yoga class with the instructor, Sarah and Aldous.\"\ntt0979434,X-_LZp9jUgQ,Kevin and Benny are introduced to Jimmy the Driver.\ntt0979434,6bANKvFGxGU,Kevin shares his concerns with winning the lottery with his friend Stacie.\ntt0979434,P9Fg8M0JCHE,Kevin and Benny are frustrated when they learn that the lottery ticket office is closed for the holiday.\ntt0979434,oNGklu1muXI,The convenience store clerk makes fun of Kevin and everyone else at the store.\ntt0097351,b_wnD6jxREU,Ray's dream comes true when he gets to have a game of catch with his father.\ntt0979434,kGpNxt3bD6E,Kevin and his Grandma can't believe their fortune when they win the jackpot.\ntt0979434,9sx5r-n9uYE,\"Kevin learns about Mr. Washington's boxing history, including how he got his unusual nickname.\"\ntt0979434,0RlJNtKi_Pc,\"Grandma asks Kevin and Benny to play her lottery numbers, which are divinely inspired.\"\ntt0817177,x0Fnxdv5rJ8,Bryce and Juli find it hard to ignore one another while at lunch with other people.\ntt0817177,nOQCz7STLIY,Bryce realizes that he really doesn't hat Juli.\ntt0817177,be-Ou9Xkh48,The Bakers are not thrilled about going to dinner with the Loskis.\ntt0817177,M4UpIJYB9Xo,Juli's dad asks her for some details about Bryce Loski.\ntt0817177,QfVKP_ibzsI,Patsy tells the family her plans for a dinner with the Bakers.\ntt0817177,uNPU0cPPsmA,Young Juli reflects on how she met Bryce Loski.\ntt0817177,5aa_kvfMxBs,\"Young Bryce meets Juli Baker, who holds his hand.\"\ntt0817177,CdQ7AbtXZaw,Bryce and Chet reminisce about Juli.\ntt0446029,mRoffE53BJk,\"Scott meets Roxy Richter, who fights with Ramona.\"\ntt0817177,UgFBbUinHSw,Bryce tells Chet about Juli Baker.\ntt0446029,XjTFVcgR0qE,Wallace gives Scott some love advice. Scott receives a call from his ex-girlfriend.\ntt0446029,IRvVdVENFmo,Scott has a distressing phone call with Gideon Gordon Graves.\ntt0446029,vqqGZBRBLcM,Scott is threatened by Todd Ingram.\ntt1287468,a88BNDMlPSE,Diggs confesses his crush on Catherine believing that they both are about to die.\ntt1287468,n4Mohc3SrHs,\"Peek shows Diggs his latest innovations, including a cat mask and a dog collar.\"\ntt1287468,05nQ6FtAaYg,Kitty describes her plan to drive dogs mad through to a tied up Diggs.\ntt1287468,Dj8hhzx9Sfk,\"The dogs seek out Mr. Tinkles, an imprisoned cat, for advice on how to stop Kitty Galore.\"\ntt1287468,gGKNhGbPp6Y,The dogs intercept a transmission from Kitty Galore declaring war on dogs.\ntt1287468,uvPjPzmUC7w,Butch gives Diggs a tour of the dog headquarters.\ntt1287468,GLH6JPoOLJY,Shane has to lock up Diggs the dog and revoke his police privileges.\ntt1375666,yycyKndEWcA,\"Caught in a gunfight, Arthur is given some advice from Eames.\"\ntt1375666,9U7_NBIHsQk,Ariadne experiences her first shared dream with Cobb at an outdoor cafe.\ntt1375666,RMGsvyrEB-E,Cobb goes to his old mentor Miles to find an architect who can help him on an extraction job.\ntt1375666,fpXngRB-VTw,\"Cobb explains his role of extractor\"\" to potential client Saito.\"\ntt1075747,uySQvxQHbdI,A train heist is led by Burke who blows up the passenger car.\ntt1075747,T04I6guPabI,Jonah and Leila shoot their way off of the boat before it blows-up.\ntt1075747,EY2tpd1CejA,Leila picks her way out her handcuffs impressing Jonah.\ntt1075747,bNkeBqdWGzE,Jonah Hex blows away a bar patron who insults his face.\ntt1075747,wuZwdLfxTQ8,Jonah Hex takes on eight men by himself.\ntt1017460,qdrvmgnw1YQ,Elsa is trapped in the lab as the newly born creature runs around.\ntt1017460,2g7MZJfmBA4,\"Elsa tries to show affection towards Dren, but Dren has other ideas.\"\ntt1017460,On364s5HiSk,Elsa disturbs Clive when she treats the hybrid creature like her own child.\ntt1261945,DCSeUhWzdBM,\"At girl's night out, Samantha schedules a late night dinner with Rikard for the following evening.\"\ntt1017460,KdMZwqYiRH8,\"Unexpectedly, the hatching fetus grabs hold of Elsa, forcing Clive to break the incubator.\"\ntt1261945,eolBcBPpwyE,\"In an Abu Dhabi marketplace, Carrie has a chance encounter with an old romantic flame, Aidan.\"\ntt1261945,2ovvUa5WXU4,\"As the gals enjoy a desert picnic, Rikard Spirit catches the lustful eye of Samantha.\"\ntt1261945,nImG5bpVpVI,\"In the Arabian desert, Samantha complains about having hot flashes, and Charlotte is excited to have phone reception.\"\ntt1261945,PnMJqjE52VQ,\"At brunch, Samantha invites the girls to an all-expense paid vacation to Abu Dhabi.\"\ntt1261945,rpvLdqBrY8s,Miranda complains about work as Steve provides some supportive advice.\ntt1261945,YHJnS2dsT-Q,Samantha lists her expanding vitamin routine to Carrie and Miranda during brunch.\ntt0480255,3oLuIPYxGpE,\"The team calls in an airstrike, but then discovers innocent children at the site.\"\ntt1261945,-qG1Hke8w_8,Carrie and Big exchange anniversary presents.\ntt1261945,JCruFiGN5h4,Carrie and her friends have a laugh as they hunt for a wedding present for Anthony and Stanford.\ntt0480255,9Ihxdc2RbIE,Pooch encourages Roque and Clay to apologize to each other.\ntt0480255,AoRafeVBNvc,Aisha's cover is blown and she fights Clay.\ntt0480255,ExI6DdBEu4c,Aisha annoys Pooch while taking the armored car airborne.\ntt0480255,7hKcWzt4rBA,The team finds a creative way to get a helicopter.\ntt0800320,9HGMxZEl60k,Zeus unleashes the Kraken on the human population.\ntt0800320,vvDkLhvUa2o,Perseus and his men take on Medusa.\ntt0800320,oD4UHPNEZek,Perseus gives a rousing speech to his men before entering Medusa's lair.\ntt0800320,k1pv94Y0fbw,Io preps Perseus for his confrontation with Medusa.\ntt0800320,CJBoHk_Ld1g,Perseus battles Calibos.\ntt0800320,KbKQQZsQJwk,Perseus and his men battle a giant scorpion.\ntt0800320,YIZlw1Ou77Y,Draco attacks Perseus to reveal his God-like abilities.\ntt0054215,Nv88ASiLmgk,\"Norman debates sending his mother to the \"\"madhouse.\"\"\"\ntt0054215,I9mJ2oBONug,Marion Crane gets to know Norman Bates.\ntt0800320,-98BSUhcZtY,\"Perseus refuses his father Zeus's offer of sanctuary, opting to live, fight, and die with his fellow men.\"\ntt0800320,A-FV2T68Bz4,Perseus learns that he is the son of Zeus from Io.\ntt0800320,82KgLj5UKUc,\"Despite Andromeda's plea for humility, Cassiopeia cries out, \"\"We are the gods, now.\"\"\"\ntt1385867,Y3Ij2iWHFV0,\"During an emotional victim's account, Paul can't stop himself from eating chips.\"\ntt1385867,rm49NpSVgo4,Dave gets under Paul's skin when he begins to repeat everything he says.\ntt1385867,ozAXbxleK-8,Paul confronts Debbie when he finds an empty champagne bottle.\ntt1385867,-C7Fcg58rZU,\"Paul loses his cool when he stops a very young car thief, Tommy.\"\ntt1385867,DWl0gnig_X8,\"When Laura hears the news of an intruder, she decides to take matters into her own hands with a really big gun.\"\ntt1385867,sUhg39GEqGA,Paul interrogates a suspect using movie quotes to the chagrin of his partner Jimmy.\ntt1385867,ZKDQJGSNJag,\"While Jimmy is upset about being suspended, Paul is excited about making it on YouTube.\"\ntt0817230,4qg64Ml2OdE,Jason and Liz try to enjoy themselves while being sardined in at a busy restaurant on Valentine's Day.\ntt0817230,NsQ4dm3q8f0,Kara is in deep despair because she feels she is the only one that will be alone on Valentine's Day.\ntt0817230,35RzyYwEnH0,Kate and Holden get to know each other on a flight.\ntt0817230,E_wUrAXTbPo,\"Paula meets the new temp, Liz, and they realize they might just get along.\"\ntt0817230,_Xe_d5rtWpQ,Felicia tells a TV news reporter the story of how she got together with Willy.\ntt0817230,mTVRho54mAg,Morley accepts Reed's proposal.\ntt0817230,dSRxB66FLV4,Morley tells Reed that she would like to keep their engagement a secret.\ntt1226273,WMhx09c4TcQ,Thomas and Jedburgh discuss theories about who may have killed his daughter.\ntt1226273,7eng0FHSiNk,Thomas reveals to the Senator the facts about his daughter's murder.\ntt1226273,M1VNPTj-1uc,Thomas turns the tables on two men following him.\ntt1226273,udn4UB_EZ1E,Thomas Craven investigates the company where his daughter used to work.\ntt1037705,aZiDvfhRpz4,Solara makes the most of her resources and is able to flip over one vehicle just before exploding another.\ntt1037705,vdpUDOxQ0ao,Martha and George show proof that they are resilient.\ntt1037705,mAs4z9GV84Q,Carnegie and Eli each explain what the book means to them.\ntt1037705,BW4-PA9Xksw,Eli barters with an engineer for a charge but doesn't trust him enough to leave the device unattended.\ntt1037705,ZERmWM-OrK0,\"Solara wants to see the book, but Eli isn't having it.\"\ntt1037705,DqHxOQWW_Nw,Carnegie explains that the book is a weapon.\ntt1037705,fvuqUVSwpPY,Carnegie wants to recruit Eli.\ntt0988045,jb0Cjzd2lKU,Holmes and Watson try to save Irene.\ntt1037705,FRaIvI54IOw,Eli warns his enemies in the room of the butt-kicking to come.\ntt0988045,1WybekasErM,\"Irene tries to make her visit with Holmes a social one, but he keeps it all business.\"\ntt0988045,3-EGP38lS5E,Holmes points out why Watson should be more concerned with a dead man's reported reappearance.\ntt0988045,7RLU1N4-8SM,\"Watson voices his frustration with all of Holmes' habits. In typical fashion, Holmes turns the situation on Watson.\"\ntt0988045,fbYS5f3GFek,Irene asks Holmes for help. His suspicious nature radiates through.\ntt0052357,tesqTwX7cpc,Scottie convinces Judy to do her hair like Madeleine and is overwhelmed by her appearance.\ntt0988045,YjaEc9KUlBI,Blackwood reveals that events to come will bear more gravity than Holmes is expecting.\ntt0988045,mkn6s-f8PqM,Holmes calculates how he is going to pummel his opponent before doing so.\ntt0988045,DQO3aIpmIDg,Irene mugs her mugger as Holmes looks on.\ntt0322589,0lNb6NAV6jg,Honey slaps Michael when he makes an inappropriate move on her.\ntt0322589,aPvptS4t6RA,Honey is shocked when Michael gets her a gig as a choreographer.\ntt0322589,3KNEj-B5HB8,Missy Elliott laughs at Michael's choreographer and tells him to get Honey Daniels.\ntt1057500,KE-ok-meF3E,Francois gives the team a pep talk during the game.\ntt1057500,0Z286w5pRSo,Nelson Mandela and Francois talk about what inspires them.\ntt1057500,zH57XU378EI,\"Aware of media presence wherever they go, Springbok team members play rugby with a group of children.\"\ntt1057500,yFMFSxDF3uU,Francois admires Mandela's forgiveness.\ntt1057500,Xekcysu64Rg,Francois sees the world through Nelson Mandela's eyes when he takes a tour of his old jail cell.\ntt1057500,3m1JShNLCYA,Nelson Mandela talks about times when the outside world makes you expect more from yourself.\ntt1057500,25Lb1YpSEic,Nelson Mandela asks to be trusted in his strategy.\ntt1057500,_fibH0WUWYg,Nelson Mandela sticks to his decision of having the Springbok rugby team represent the country.\ntt1057500,HHqi6ZB_F0U,Nelson Mandela shares why forgiveness is essential for the country's future.\ntt0878804,rzXNFMVS7PM,Sean and Leigh Anne Touhy discuss becoming Michael's guardians.\ntt0878804,9DaWcHIGk7I,Leigh Anne hires Miss Sue to tutor Michael in spite of her confession that she is a Democrat.\ntt0452694,o8ETRMZt6kg,Gomez recounts how he found out about Henry's ability.\ntt0878804,1OCmZuUVZfA,Leigh's friends heckle her over lunch for bringing Mike into her home.\ntt0452694,-85ubSkzSWg,Henry comes back with some future lottery ticket numbers and he wins five million dollars.\ntt0452694,eVarVWL4PwA,Henry asks Claire to marry him. He no longer feels alone.\ntt0452694,givOs4_nb-I,\"Claire shows up at the library, but Henry doesn't know her. He agrees to have dinner with her so she can explain.\"\ntt1186367,8WraflY6rl0,Raizo and Takeshi face-off in a burning building.\ntt0878804,bQzBPo2qRuk,Leigh gets Mike set up in his new room.\ntt0878804,TipOwV7y_q4,Leigh gives Big Mike a place to sleep on her couch.\ntt0878804,pPjYhPGkhGA,\"Leigh, Sean and S.J. spot \"\"Big Mike\"\" on the road and Leigh offers him a place to stay.\"\ntt1186367,RoCmHW-wdtE,Takeshi and his ninjas chase Raizo through a busy street; Mika saves him with her car.\ntt0362478,s_PLAOcbbzI,\"Ryan says he had to kill his wife for his daughter. They stop in front of a man dressed as Santa Claus, and are hit by a truck.\"\ntt0362478,mV__PXYxQYY,Arlington calls Norma about police involvement. Danger seems imminent.\ntt0362478,QbVzoV4GgM8,Steward explains that if the button is pushed than someone in the word will die and Norma will receive a million dollars.\ntt0362478,yaGbKy7gAkM,Arthur and Norma are given one million dollar and told that the box will now be given to someone they don't know.\ntt0362478,6HT1K-XoREU,Arthur and Norma discuss weather or not to push the box button. Norma suddenly pushes it.\ntt1186367,mVcHdILwsXQ,Takeshi and his gang attacks Raizo on the docks.\ntt1186367,EU70jtTYN0E,Lord Ozunu teaches Raizo how to fight without his sense of sight.\ntt1130080,IgBQwCBi8vI,\"While planning the FBI raid, Mark thinks he'll still be working for the company afterward.\"\ntt1186367,SjNu8J7JQMk,Mika frees Raizo seconds before a ninja attack.\ntt1186367,t6FIm6TCkCE,Raizo practicing at home.\ntt1058017,kYcvOPf4GqE,\"Mark tells Anna no one should have sex until they're married, just before opening her \"\"birthday coupon for sex.\"\"\"\ntt1130080,ST9DTmR2xG4,Mark reveals that he told a lot of people at the company about the secret FBI raid.\ntt1130080,uAS_k95ZRUk,Mark inspects a lamp for a hidden camera and adjusts the recording device in his briefcase while a meeting is going on.\ntt1130080,yVE7YDYgtHE,Mark reacts to the decision not to work with the FBI and then takes a call from the FBI.\ntt1058017,1JVewdBZyYA,Mark's co-worker Brad drops by to say goodbye and tell him that he hates him.\ntt1130080,D_Acqs7T5-0,\"Mark thinks that after taking down the company, they will make him president. His wife disagrees.\"\ntt1130080,FF9t_GekWjU,Mark meets with an FBI agent and admits to price fixing in the Lysine business.\ntt1058017,VpehD7unUGw,Mark calls Anna to ask her out on a second date.\ntt1058017,gILsE7uSUkA,Mark's boss Anthony reluctantly fires him.\ntt1058017,3DmchoOLczY,\"While Anna is on a dinner date with Mark, she tells her mom her true thoughts about the date.\"\ntt0386117,wz_y0fibuQE,\"Max rallies Carol, KW & Douglas for the dirt fight; Alexander attacks.\"\ntt0386117,f58Ba78abHg,Carol and Max talk about the sun dying.\ntt0417741,Doq_EUCSB5k,Ron accidentally eats a love potion intended for Harry.\ntt0386117,RQH_q5kOlCE,Max first meets the Wild Things and Carol invites him to destroy stuff with him.\ntt0166924,je6L2clZOGM,\"A singer collapses during a stunning performance of \"\"Crying,\"\" but her singing continues.\"\ntt0417741,KM9SPmAD6M8,Ginny helps Harry quiet his Quidditch team; Cormac steps on Ron's turf.\ntt0417741,kI9rnng7ns0,Dumbledore shows Harry the memory of the first time he met Tom Riddle.\ntt0417741,AXukn4q48sY,Harry confronts Malfoy in the lavatory.\ntt0417741,V-GgWCBVhrg,Harry and Hermione are forced to find back-up dates to the Christmas party.\ntt0166924,6DZ7DfrTDds,\"Rita and Betty attend the eerie club \"\"Silencio\"\" where the MC explains that there is no band.\"\ntt0166924,aeevxJaJl1U,Betty auditions for a film and knocks it out of the park.\ntt0166924,rNjX3tQMygk,Adam meets the mysterious Cowboy who asks him to cast Camilla in his film.\ntt0166924,e4pMjAtdmO0,An old lady comes to Betty's door with a creepy warning.\ntt0166924,Sk990pKn7vY,\"When Adam catches his wife cheating on him, it's Adam that gets thrown out of the house.\"\ntt0103919,1atAz0BIlm0,\"Helen discovers Anne-Marie's child, only to find that Candyman wants both of them to die in a burning fire. Helen sacrifices herself to save the child.\"\ntt0103919,TrqpRcocmrw,Helen is seduced by Candyman while inspecting his lair.\ntt0103919,B3rFARaSAws,Professor Purcell tells the legend of Candyman.\ntt0166924,yusKlHgtvIE,Dan tells Herb about his nightmare involving the Winkies diner.\ntt0103919,920BmIe4nN4,\"On her way home, Helen has a visit from the legend himself, Candyman.\"\ntt0103919,vG6bW7_-CRQ,Helen investigates the site of an alleged Candyman attack in a public bathroom. A swarm of bees are found in the toilet.\ntt0103919,77XaekZUvL0,Helen notices a figure in her photograph before an encounter with the Candyman.\ntt0887883,7JlG7q-ld8M,\"Posing as Mr. Black,\"\" Chad meets with Osbourne to make a trade.\"\ntt0103919,3mycwnQWlug,\"Researching her thesis on urban legends, Helen interviews a student who recounts what she has heard of the mysterious Candyman.\"\ntt0887883,c38HJR-9vhU,\"A hidden Chad startles Harry, who reacts quickly.\"\ntt0887883,7kMyom2sHyA,Chad is fired up about his coworker's discovery: a CD with classified information.\ntt0096320,EnFcN2CMNps,\"After ripping his shirt, Julius tries on his first t-shirt.\"\ntt0887883,hSe6p6SLuvI,\"Harry and Linda bond over Japanese food, then head for the bedroom.\"\ntt0887883,mO8roISHjJo,\"Osbourne is ousted by his higher-ups at the CIA, allegedly for his drinking problem.\"\ntt0887883,q6zi7XGjQQw,Chad drops in on Linda with news about their top-secret CD.\ntt0093148,PJkmvYEqRVE,\"George gives Harry a proper goodbye, and Harry returns to the woods to join his family of sasquatches.\"\ntt0887883,LUi7mkGXDRo,Linda undergoes a head-to-toe evaluation by her cosmetic surgeon.\ntt0093148,1d8oqIXtjdo,\"Desperate to save Harry from hunters, George slaps Harry and yells at him to make him return to the forest.\"\ntt0093148,qBFSCbptrJk,\"Dr. Wrightwood tries to convince the Hendersons that there's no such thing as bigfoot, unaware that Harry is right behind him.\"\ntt0093148,x421Na9VfNE,\"George finds Harry in a dumpster, then uses a garbage truck to escape, unaware that Jacques is in the dumpster with Harry.\"\ntt0276751,euorMDBYxrk,\"Fiona confronts Will about his after-school meetings with Marcus, but when he promises to get out of their lives, she doesn't let him off that easily.\"\ntt0276751,gWB-uAtqUIs,Will admits to Rachel that he misled her about having a son.\ntt0093148,nfk-kn7YP04,\"George attempts to teach Harry how to sit, while Nancy just wants him out of the house.\"\ntt0093148,Y5drWYjmJFY,George and Nancy try their best to hide Harry from nosy neighbor Irene.\ntt0276751,CJGNkuaveUE,Will meets Rachel at a New Year's Eve party and encourages her assumption that he has a 12-year-old son.\ntt0276751,42ikB9YlkW4,\"Will confronts Fiona about her suicide attempt in front of her support group, and she mocks his pragmatic attempt to fix her problems.\"\ntt0040068,kZQwVWTB2hI,\"When Chick & Wilbur are cornered by the Frankenstein Monster, Dr. Stevens comes to save the day.\"\ntt0276751,74256F5BtiI,\"Will describes his strategy for getting through the day, and Marcus calls him out of the blue to arrange a get-together.\"\ntt0093148,fpKl9lrLfx0,\"Sarah is furious when Harry eats her birthday corsage, and George protects the family by locking Harry inside the house.\"\ntt0093148,BxL5O2tuDtk,\"George straps Harry to the top of the car, but when Harry wakes up, George slams on the brakes, launching Harry into the air.\"\ntt0093148,yJBIO7B_XI4,\"On the way home from a camping trip, George hits what appears to be a large animal with the family station wagon.\"\ntt0040068,_KpSBVJq7jo,\"While looking for Joan, Wilbur attacks the wolf man thinking that it is Chick in disguise.\"\ntt0040068,19q6jSWFPCo,\"With Wilbur tied to the slab, the monsters wreak havoc in the laboratory.\"\ntt0385267,Pqw0GsAAzEo,\"Over at Dan's house for dinner, Carter ingratiates himself with Alex through his unfiltered honesty.\"\ntt0472062,3FWjipa2Ztw,\"Charlie and his friends watch as the television announces the end of the Soviet Union's reign, due to his success in Afghanistan. In a private moment, Gust warns Charlie of the implications of the Afghan victory.\"\ntt0040068,C3W5kkZLN50,\"Wilbur drops off luggage to Mr. Talbot, but he doesn't realized that Mr. Talbot has transformed into the Wolf Man.\"\ntt0472062,4t7GADjRIuA,Charlie and Bonnie are completely overwhelmed when they hear war horror stories from the refugees in Afghanistan.\ntt0040068,l6NIVn6_m1c,Count Dracula rises from his coffin.\ntt0040068,l5s3_XV1rkA,\"When Dracula wakes the Frankenstein monster, the monster is frightened by Wilbur in a trance.\"\ntt0040068,Kr9_dJ6TPPQ,\"When Wilbur answers the phone, he mistakes Larry Talbot's wolf man transformation for bad manners.\"\ntt0472062,OHNZUmdqdv8,Charlie gets upset when he finds out that Gust bugged his scotch bottle and listened in on his private affairs.\ntt0472062,wJmIEj-uVYk,\"After sleeping together, Joanne tells Charlie her plan for Afghanistan and convinces him to meet with the Egyptian president.\"\ntt0472062,sQ_4m2ocxhI,Gust throws a tantrum in the Director's office when he is passed over for a position. His rage leads him to break a window for the second time.\ntt0131325,pcqaeLRop58,\"Bowfinger films Daisy saving Kit's character Keith\"\" from Slater's character.\"\ntt0131325,NQFMeyWVe3g,\"Bowfinger and company attend the movie premiere for his latest film, \"\"Chubby Rain.\"\"\"\ntt0131325,wMgKj3QGv2o,Daisy tries to get Kit to say the key phrase of the movies while cameras are secretly rolling.\ntt0131325,oFwbpFJpQbg,\"Kit gets pulled over by the police, who begin to melt, but Daisy offers him an escape.\"\ntt0131325,Q0i1ldFm-oI,Bowfinger directs a scene in a garage where Kit gets followed by a dog wearing high heels.\ntt0131325,9cb5Ka9SqGM,Jiff is painfully terrified when Bowfinger makes him run across a freeway full of fast moving cars.\ntt0131325,E6yFlIQxp8g,Bowfinger shoots a scene covertly in a cafe with Kit and Carol.\ntt0131325,Yrx2bv_LoG0,Kit gets angry when he thinks there's a racist conspiracy against him and takes it out on his agent.\ntt0131325,SoP7TLCtylg,Jiff is giddy while acting in a scene where Daisy takes off her top.\ntt0252866,0fwudBWsw9Q,Jim sneaks into band camp to get some pointers from his ex-fling Michelle.\ntt0252866,KKjCm_IoPRQ,\"Stifler prepares for a kinky champagne bath, but instead gets peed on.\"\ntt0252866,Z7RKrb4jLOU,\"Jim's dad tries to surprise Jim with some beer at his dorm, but accidentally walks in on him having sex.\"\ntt0252866,NlSuj6YIG94,\"Jim returns home and while looking at an old picture of Nadia, his dad talks about \"\"the one that got away.\"\"\"\ntt0073195,FpxOLhuNXfM,\"Chief Brody targets an air tank in the shark's mouth, blowing the fish to pieces.\"\ntt0096969,r0ladY1kwco,\"As chaos erupts around him, Ron continues to fire, but is shot in the chest and falls to the ground.\"\ntt0073195,pmLP0QQPqFw,Quint meets a horrific end in the teeth of the great white.\ntt0073195,cW7Q7UySxRA,\"In his underwater cage, Hooper struggles to fend off the shark.\"\ntt0107290,gTWo9oLJOWk,\"Trapped by the Velociraptors, Dr. Grant and the others are saved at the last moment by the sudden arrival of the T-Rex.\"\ntt0073195,CwdGYMM2bHM,\"To prevent the shark from submerging, Quint harpoons it with a line attached to a floating barrel.\"\ntt0073195,dLjNzwEULG8,Hooper and Quint compare scars they've received over the years -- both in and out of the water.\ntt0107290,dnRxQ3dcaQk,Lex and Tim outwit the raptors that are hunting them and safely escape from the kitchen.\ntt0107290,nM-RPO10aPY,\"Dr. Grant, Tim and Lex run from a herd of small, birdlike dinosaurs, only to be surprised by a much bigger threat - T-Rex!\"\ntt0107290,PscRUlsvhtI,\"After being ambushed by raptors in the power plant, Ellie manages to escape. Mr. Arnold isn't so lucky.\"\ntt0054215,m7mbDPykHoc,Arbogast interviews Norman about Marion; Norman grows increasingly jumpy.\ntt0073195,yrEvK-tv5OI,\"While out for a moonlight dip, young Chrissy is brutally attacked by the shark.\"\ntt0054215,iTLUzEjV3Bg,Norman bristles at the suggestion that Marion fooled him; he won't allow Arbogast to question his mother.\ntt0054215,iPt2PNpjOq4,Norman pushes Marion's car into a nearby swamp.\ntt0054215,ghew-s2zPjE,Norman watches Marion undress.\ntt0052357,P-sWReV2DDQ,Scottie accuses Judy of murder in the bell tower; they are surprised by a nun and Judy jumps to her death.\ntt0052357,O888bu0QrMg,\"While attempting to rescue Scottie, a police officer falls to his death.\"\ntt0056869,0fTXzdHoip8,\"A frantic mother accuses Melanie of starting the bird attacks, and Melanie and Mitch discover Annie dead on her front porch.\"\ntt0107290,d921M-ACMM4,\"While attempting to make his escape, Nedry encounters the poison-spitting Dilophosaur with tragic results.\"\ntt0052357,GjPCk494e5Q,\"Scottie chases Madeleine up the bell tower, then sees her jump to her death.\"\ntt0056869,pwOhqGhP-mk,Melanie is overwhelmed by birds in the attic and nearly killed until Mitch drags her to safety.\ntt0056869,D15HPy4x73g,Melanie takes shelter in a phone booth while the seagulls attack all around her.\ntt0056869,M0HjlCowwuM,Lydia finds a dead man with his eyes pecked out.\ntt0056869,IdOF7xg5lug,Melanie watches as an unfortunate accident at the gas station causes an explosion which attracts a swarm of seagulls.\ntt0107290,v5Co3A3fLBo,\"Dr. Grant helps the children escape from the T-Rex, but the lawyer, Mr. Gennaro, is eaten while hiding in the outhouse.\"\ntt0107290,JylK4HuKMvQ,Dr. Ellie Sattler examines dino droppings in order to decipher the animal's cause of illness.\ntt0107290,PJlmYh27MHg,\"Hammond leads the visitors, including Dr. Grant and Dr. Sattler, to see their first live dinosaur - the Brachiosaur.\"\ntt0054215,0WtDmbr9xyY,Marion takes a shower at the Bates Motel; she's stabbed by a silhouetted assailant.\ntt0054215,dYDxxHrlmUg,\"In Norman's twisted mind, he is Mrs. Bates; her thoughts are his.\"\ntt0054215,xWHYmNrAFlI,\"Lila comes face to face with Mrs. Bates; Norman rushes at Lila, but Sam arrives just in time.\"\ntt0054215,5bieIiX5KLQ,Arbogast enters the Bates residence to question Norman's mother; she's been expecting him.\ntt0054215,dyxcQ4FV6KM,\"From the Bates home, Norman cries out in horror -- \"\"Mother, blood!\"\" -- and races to the murder scene.\"\ntt0056869,hplpQt424Ls,Melanie and Annie lead the screaming schoolchildren away as the murder of crows attacks.\ntt0107290,n-mpifTiPV4,\"While on the guided tour, Dr. Malcolm flirts with Dr. Sattler by explaining Chaos Theory.\"\ntt0056869,Fe3c7Txx0Sc,\"When swarms of seagulls attack a children's birthday party, Melanie and the Brenners usher the children inside the house to safety.\"\ntt0096874,9tGWHkKzeeI,\"Speeding through a tunnel, Marty fights Biff for possession of the sports almanac.\"\ntt0056869,ydLJtKlVVZw,Melanie smokes as flocks of crows quietly gather on the school playground behind her.\ntt0056869,Xei_IKhp9tU,\"Melanie considers leaving, but her plans are cut short when swarms of birds fly down the chimney and drive the Brenners out of their house.\"\ntt0056869,eHh6bwuPShw,Melanie is ambushed by a seagull and gets a gash on her head.\ntt0105435,74ocbvwam7c,\"The team makes their deamands of NSA Agent Bernard Abbott, and Carl asks for the female agent's phone number.\"\ntt0096874,-zIzLRgwdxA,Biff gives Marty a choice: suicide or lead poisoning; Marty jumps to his death...or does he?\ntt0105435,lNWV7T5KlRE,Blind Whistler gets a driving lesson via radio from Bishop.\ntt0096320,0sNSVtTcxpo,Julius and Vincent are re-united with their mother. The brothers go on to marry their sweethearts and have twins of their own.\ntt0105435,KuIheGaiFLM,Whistler helps Bishop navigate his memory of sound from the night before to determine where he was taken.\ntt0096320,4EUsnCqqc9s,\"In preparation for his date, Vince teaches Julius how to waltz.\"\ntt0096874,WlcH-5LQbhA,Marty passes a car occupied by himself and a teenage Lorraine.\ntt0096320,Ky7ncpdpMUc,Julius drives a car for the first time and learns he has a knack for it.\ntt0105435,3VlyZIywY9c,\"Bishop makes a risky call to the NSA about the box, but hangs up before the call is traced.\"\ntt0088763,pLRk4xG-JCI,Doc Brown reveals the DeLorean to Marty.\ntt0096320,uGstM8QMCjQ,\"When he walks in on Vince getting beat up by a thug, Julius teaches the thug a lesson he won't soon forget.\"\ntt0390022,W0ZgTVoA0eY,\"When Don fumbles the football in practice, his dad, Charlie, takes the field to chew him out.\"\ntt0204946,GCPMRHNwR8E,\"Faced with a difficult situation at the coming Regionals, Cheer Squad discusses the virtues of cheating.\"\ntt0087065,gkfAyFT8xGc,\"Morris achieves the required high score on the Cloak & Dagger video game, and just as he sees the plans for a stealth bomber, Rice tracks him down.\"\ntt0390022,K0qG34a5oqY,\"When Charlie catches Don with a girl, he takes the opportunity to shame him for fumbling the football.\"\ntt0390022,oHJVJ_MEyQI,Permian loses by inches; the coach and players absorb the loss.\ntt0390022,o-iPiN_YHjY,\"Coach Gaines redefines perfection; he urges his team to \"\"put each other in your hearts\"\" before they take the field.\"\ntt0099088,1AtE54HpXBM,Doc Brown and Clara say goodbye to Marty before flying away in a train.\ntt0105435,coDtzN6bXAM,Cosmo discusses the power of money and the consequences it holds with Bishop.\ntt0076723,GuuUX-4_K-A,\"Reg arrives at the train station to meet The Chiefs' new recruits - the Hanson Brothers. Owner Joe McGrath relays a story to Reg about a \"\"terrible masturbator.\"\"\"\ntt0390022,8CZ-ICxcEYg,\"In the team locker room, Ivory makes a fierce speech.\"\ntt0096874,Km6bFBSVty4,\"When future Marty is goaded into a shady transaction, he loses his job.\"\ntt0099088,8ktMe0xclxA,\"After Marty helps Emmett save Clara, he is pushed by a train into the future.\"\ntt0099088,zJiCswIaIkI,Marty tricks Mad Dog into thinking he's dead... and then knocks him out.\ntt0096320,Mw1Z2Jlp9Qw,Julius meets Vince for the first time and tells him they are twin brothers.\ntt0087262,FHNT4E_55jY,Charlie destroys a cinderblock wall and melts the test room in the hope that they will let her see her father.\ntt0083866,75M1XXEZciU,\"Elliot says his final goodbye to E.T., who reminds him that they will always be together.\"\ntt0096874,5ztwns5PkJY,A middle-aged Marty and his teenagers eat a pizza hydrated by Grandma Lorraine.\ntt0083866,6xZif3WmG7I,\"After Gertie teaches E.T. how to talk, Elliott learns that he wants to \"\"phone home.\"\"\"\ntt0083866,a-9990dlfvo,\"Just when Elliot thinks that E.T. has died, he suddenly sees the flowers bloom and rushes back to a revived E.T.\"\ntt0083866,VrVEHszxL7E,\"While trick-or-treating, E.T. sees a kid dressed as Yoda and thinks it is one of his own kind.\"\ntt0083866,TaLsQSCK0Jo,\"While drunk\"\", Elliot gets the crazy idea that all the lab frogs need to be set free. Chaos erupts. He kisses a pretty blonde girl.\"\ntt0083866,0xWMqsZOYWg,\"As E.T. raids the refrigerator at home, he starts to drink beer and Elliott feels the drunken effects in class.\"\ntt0088128,GzeNMZcP8Xg,\"On the bus ride to school, the Geek makes his move on Sam.\"\ntt0088128,NWcBwgxUyuM,Sam is upset when her family forgets her birthday.\ntt0080455,2quc-iQ96R0,\"Jake and Elwood pay the church's taxes, but are eventually caught by a storm of armed officers.\"\ntt0104231,jFrVoG-edFc,Joseph and Shannon achieve their dream of participating in the Oklahoma Land Rush for a piece of land of their own.\ntt0080455,LMagP52BWG8,\"Evading the cops, Jake and Elwood cause a pile-up of dozens of cop cars.\"\ntt0080455,EHV0zs0kVGg,The Blues Brothers play the big show and bring the house down.\ntt0088128,0IWdfqsImMU,Sam and her friend take a hellish bus ride to school.\ntt0080455,eGu2camh0WA,\"The Head Nazi catches up with Jake and Elwood, who pull off some defensive driving moves to escape.\"\ntt0104231,SldtDNNTA2s,Joseph declares his love for Shannon and they stake their claim together as the land rush riders bear down on them.\ntt0104231,WULhkipzltU,\"Joseph fights Stephen and goes to claim his land, but he is severely injured.\"\ntt0080455,RdR6MN2jKYs,The Blues Brothers play a country bar and have to adjust their musical choices accordingly.\ntt0080455,qdbrIrFxas0,The Blues Brothers stop at Ray's Music shop to find some quality instruments and get a toe-tapping demo from the owner.\ntt0104231,HlXsMMnAlmU,Joseph is upset with Shannon dancing. She convinces him to fight for a large prize so that they can achieve their dreams...and be together.\ntt0056592,FROgIia2cb8,\"When Jem and Scout get attacked in the woods on Halloween night, Boo fights and saves them.\"\ntt0056592,iRmIef02Ajk,\"Scout meets Boo Radley for the first time, and they are very happy to see each other.\"\ntt0080455,ZTT1qUswYL0,Jake and Elwood drive some Illinois Nazis off a bridge.\ntt0104231,mHh8PKWMQEw,\"While snooping through someone else's house, Joseph and Shannon pretend they are the owners for once.\"\ntt0056592,44TG_H_oY2E,\"When Atticus cross-examines Mayella, he proves that Tom is only right-handed, and Mayella has an outburst.\"\ntt0056592,q7CX_5D6y6E,The black audience members in court stand in respect for Atticus while they watch him from above.\ntt0088846,aErDEFpoD_0,Sam is brought before his friend Jack Lint to be tortured.\ntt0056592,8MmtVx1A8BA,\"In his closing statements for the defense, Atticus, tries to convince the jury to believe Tom Robinson.\"\ntt0056592,oaVuVu5KXuE,\"When a mob interrogates Atticus, the children show up and Scout's kindness and innocence convinces them to leave.\"\ntt0080455,IIdGxR-aU6o,\"Looking for a shortcut, Elwood drives him and Jake through a shopping mall, demolishing everything with cops on their tail.\"\ntt0099329,3Nzc3Rezt3w,\"Cry-Baby and his band rock on stage, and he invites Allison up for the big finale.\"\ntt0080455,ujxDA9VsQG4,Jake and Elwood meet with Sister Stigmata and get kicked out for their bad language and bad behavior.\ntt0083866,ewkroL1cP_Q,\"Elliott and his family wonder out loud what the creature might have been. When Michael's teasing goes to far, Elliott lashes out.\"\ntt0104231,20M_teQf-l8,Joseph becomes a prize fighter in order to put food on his table.\ntt0088846,olXUIcb80N0,\"Harry disposes of the vengeful Central Services techs with a creative, though wasteful, solution.\"\ntt0099329,sTDhNLLglf8,Cry-Baby and Allison share stories about their lives growing up as orphans.\ntt0119528,pnaWqq2eRcc,Fletcher tries to make amends for letting down his son yet again.\ntt0056592,guMVb47aD-k,Bob Ewell confronts Atticus and asks him if the rumors are true - that he believes Tom Robinson is innocent.\ntt0104231,1O7AX7tqEHE,\"Shannon explains why she is going to America and invites\"\" Joseph to come along as her escort.\"\ntt0088846,KyHilwSRo28,Sam and Jill fight at the lingerie store where they meet ailing Mrs. Terrain.\ntt0088846,mS5WLkb_Cxk,Sam is baffled by the moving desk in his new office.\ntt0088846,SbYzo8L9DLc,Sam goes through hell to convince Jill that he loves her.\ntt0119528,1jQP0Y2T2OQ,\"With Mrs. Cole on the witness stand, Fletcher proves that her prenuptial agreement was invalid.\"\ntt0088846,dht_3NziwSw,\"Sam Lowry has an illegal visitor, to fix his heating problem.\"\ntt0088846,0B61_5sRoBI,\"Two technicians from Central Services pay Sam a visit, but are foiled by paperwork.\"\ntt0322589,f_GI8syIgIs,Honey listens to Benny talk about his lack of hope for the future after she choreographs Tweet's music video.\ntt0088846,Bnx95KyQEAA,Mrs. Lowry undergoes a bit of plastic surgery to Sam's horror.\ntt0119528,Zh6NzOHOU8s,\"Fletcher steers his son through his law office, lying to nearly everyone he encounters.\"\ntt0322589,fbbatiKJ6rQ,\"When Honey comes across some kids beat boxing and break dancing in an alley, she invites them to come to her hip hop class.\"\ntt0372183,DrIsPRZL578,\"Aiming for Jason, Kirill accidentally shoots Marie, sending the car off a bridge and killing her.\"\ntt0352248,Dk7DE4FghW0,\"Jim Braddock is named the new Heavyweight World Champion, defeating the reigning champ Max Baer.\"\ntt0352248,HGU3PRBxQiw,Braddock stays strong as he fights the champion Max Baer while his manager and family nervously watch and listen on.\ntt0206634,SMJqQ3VrcCA,Theo gets Kee and the baby to the boat.\ntt0352248,83Jr_6b9pHA,\"While Braddock prepares for his big fight, Mae makes a surprise visit, offering her love and support.\"\ntt0206634,YBzWTIexszQ,Theo escorts Kee and the baby out of the building past soldiers who lower their guns at the sight of the miracle.\ntt0352248,JCKh3Jsge4E,\"In a press conference, Braddock keeps things lighthearted until a reporter asks Mae about Baer's dangerous past.\"\ntt0352248,zpmLSGixYwM,\"Braddock watches the film of Baer killing a man in the boxing ring, and despite warnings, he remains headstrong.\"\ntt0352248,G-ZJbAdw1Rw,\"Braddock nearly loses the fight to Lasky, but finds the strength to continue and win.\"\ntt0352248,-3ywc_7_IE8,Braddock has an impressive defeat over Corn Griffin.\ntt0206634,ioTMlrCoU2E,\"Theo watches from the forest, unable to help, as Luke murders Jasper.\"\ntt0190590,IZocpwWLsyE,Everett and Delmar share a picnic with a charismatic bible salesman with a hidden agenda.\ntt0352248,lNXTKVxOmfk,\"Braddock in desperate need for money, asks for help, and is given the last bit he needs from his manager Gould.\"\ntt0206634,-LjxKR0q7Yo,\"When the car won't start, Theo, Kee and Miriam slowly roll away to escape.\"\ntt0190590,p56k6QCjJnc,Delmar panics when he can't find Pete and tries to convince Everett that Pete has been turned into a horny toad.\ntt0206634,XoWvE383hm4,Theo helps deliver Kee's baby and she gives birth to a beautiful baby girl.\ntt0206634,VJivXSErhB8,Theo leaves a crowded cafe moments before a bomb blows it up.\ntt0206634,NdVRDlmWhg4,The stakes become clear when Kee reveals to Theo that she is pregnant.\ntt0218967,N7UtdTiuO3w,Jack catches Kate at the airport and gives her the same choice as she once offered him -- don't get on that plane tonight.\ntt0088846,nSQ5EsbT4cE,\"To the horror of his family, Mr. Buttle is arrested as a terrorist on Christmas Eve.\"\ntt0190590,apq46lA0uSM,\"Everett and the boys meet George Baby Face\"\" Nelson, who joyfully shoots his machine gun at cops and cows alike.\"\ntt0218967,5tbx8osZ87M,Jack tells Kate to remember him as he is at that moment and she promises she will.\ntt0218967,jxsvzuRl1O8,\"Jack tries to sell Kate on his new career and life plans, but she is not buying.\"\ntt0218967,n0ZGibTDo9A,\"Kate tells Jack she loves him and that if it is important to him, she will move to New York for him.\"\ntt0190590,fgcWfVvT_UM,\"Everett and the boys pick up Tommy Johnson, a guitarist who sold his soul to the devil.\"\ntt0440963,DUd5RPVDjPY,\"Bourne coaches Ross through the Waterloo Station trap and takes out four men, but gets ID'd in the process.\"\ntt0218967,BCTFuIw1Bv8,\"During a heartfelt dinner conversation, Jack realizes what is important to him for the first time.\"\ntt0088763,S1i5coU-0_Q,Marty introduces rock and roll to the young people of 1955.\ntt0218967,aGMhMCHyM3c,Jack tells Annie that he isn't her real dad and she decides he is an alien.\ntt0218967,SOcgrVL8Dg0,Jack's anniversary surprise to Kate makes him realize how much she really means to him.\ntt0440963,Mwmy0awMZXY,Bourne barely evades the Russian police while experiencing flashbacks of a mysterious program.\ntt0440963,tXp79rAS5JQ,\"Vosen shoots Bourne who falls into the river, but the damage is done. Blackbriar is exposed and Bourne is not found.\"\ntt0190590,tPImdMknAO4,\"When Pete's cousin turns them in for the bounty, Everett, Pete and Delmar get cornered in a burning barn until they're rescued by Boy Hogwallop.\"\ntt0258463,XhpJ11dNp2o,Bourne rides a corpse down a stairwell; Manheim assassinates Conklin.\ntt0088763,zZJ7cq6T3v4,Marty punches Biff and gets away on a skateboard - that hasn't been invented yet.\ntt0258463,PeGDBR0Ej_0,A fisherman tends to the bullet-ridden body of Jason Bourne.\ntt0088763,QzklMXES1BU,George saves Lorraine from Biff while Marty tries to get out of a locked car trunk.\ntt0088763,f-77xulkB_U,\"With Marty's future knowledge of a storm, he and Doc concoct a plan to harness 1.21 gigawatts for the DeLorean.\"\ntt0088763,SR5BfQ4rEqQ,Marty needs to convince Doc that he is from the future so Doc can help him get back home.\ntt0101921,w-VBcSukH_8,Ed comes home to find that dinner isn't on the table and his wife Evelyn remodeling their house.\ntt0088763,95_DB6GgLQs,Marty meets his young father at the diner and watches him get bullied by Biff.\ntt0088763,f2c-tMZSZtY,\"As Marty documents Doc's departure in the DeLorean with a video camera, the Libyans find and shoot him.\"\ntt0088763,KPeHFDxKUP4,Marty gets in the DeLorean to escape the Libyans and goes back in time to 1955 when he hits 88mph.\ntt0190590,drvaZz3FWOI,\"The boys make a run for the train, but when they don't quite make it, Everett elects himself leader of the gang, much to the dismay of Pete and Delmar.\"\ntt0099141,QAygM0YfY10,Rick and Marianne must escape by plane when they are attacked by Rick's enemies.\ntt0099141,V3RHvyrqTak,Rick helps Marianne /*259*/) help him by tempting her with the promise of marriage and children.\ntt0099141,kxtAmNDjfj4,\"Rick visits an old flame who removes the bullet from his butt, making Marianne very jealous.\"\ntt0099141,jlFLcKaBLz0,\"When Rick and Marianne share the single motel bed, their platonic conversation takes a romantic turn.\"\ntt0099141,1VEcaRh4c1A,\"Rick is embarrassed in front of Marianne when some old friends recognize him as gay hairdresser \"\"Mattie.\"\"\"\ntt0099141,ex6X6rXcXKQ,\"After escaping the cops, Rick and Marianne find themselves in the railway tunnel in danger of getting hit by the train.\"\ntt0099141,N9hJ6pUeqxQ,Rick and Marianne embark upon a clumsy car chase after ditching the cops.\ntt0099141,-rq6IBVPcBU,\"Marianne thinks Rick is exaggerating when he advises her not to open the door to room service, but she soon finds that he was right to worry.\"\ntt0068699,o9splceYBXQ,\"The morning after the nighttime reckoning, The Stranger rides out of Lago as mysteriously as he arrived.\"\ntt0095253,q_215iQ7KDs,Chet gnaws and sweats his way through a 96-ounce steak.\ntt0068699,sOLnb7BrMC8,The Stranger gets his final revenge on Stacey Bridges as the town of Lago burns around him.\ntt0095253,OBJ-MpPBDug,\"The bald bear terrorizes Chet and the others, till Wally arrives with his shotgun lamp.\"\ntt0095253,yuI8BfvTwfY,Chet mistakenly pulls the bald-headed bear from the mine shaft.\ntt0095253,WRR4iYRRBLk,\"Chet and Roman do battle with a \"\"sonar-guided rodent.\"\"\"\ntt0095253,1VZzulIl0DI,\"Chet and his son go bear-watching, but their Zagnut bait draws the bears too close.\"\ntt0095253,I3K8xBfywg0,The tension between Chet and Roman finally boils over.\ntt0095253,PAC3F5dQufQ,\"In the middle of romantic role-playing, Chet and Connie are surprised by Roman's camera.\"\ntt0095253,FvYtbd7YE3k,\"Misreading a signal, Roman yanks Chet across the water on skis.\"\ntt0118928,D7P4FYWHVYQ,Harry hurries everyone out of the cabin as lava devours it and puts them on a boat to try and cross the lake which is now acidic.\ntt0118928,S1EsCWrUY84,\"Paul tries, in vain, to make it over the bridge in his van as a torrent of water is sweeping it away.\"\ntt0118928,r421zjv-hoE,\"Harry manages to drive his family in a truck across a large patch of lava, and even make a rescue.\"\ntt0118928,vfIUYDjo8WM,Harry drives flat out as the volcano finally blows it's top and the pyroclastic cloud chases them into a mine shaft.\ntt0076723,IUbn5ss8j9c,\"The Hanson Brothers show the audience a violent, hilarious disgrace on the ice.\"\ntt0119174,dXBUdCvqpNg,\"Nicholas jumps to his death, only to land at the birthday party Conrad has waiting for him.\"\ntt0034240,W7WmhkO_GWI,\"When Sully pitches his movie about human suffering, the Studio Execs challenge that he knows nothing about it.\"\ntt0034240,zhnB6vIifkc,Sully comes clean about his experiment and the Girl asks to come along.\ntt0087262,nyn04CxGBLs,John ambushes Charlie and Andy and shoots them with tranquilizer darts.\ntt0096874,fCjsUxbNmIs,\"Just as Marty is readjusting to his romantic life in 1985, Doc whisks him away to the future.\"\ntt0087065,L-IoFdCv_Hs,\"Jack tells Davey to hide in the trunk of Rice's car, but Davey gets scared when he finds Morris already in there.\"\ntt0087065,duT6QvbGAls,\"Davey finds refuge with a kindly old couple, but soon discovers their true nature.\"\ntt0276751,KXYxfwVioeE,\"When Marcus accidentally kills a duck by throwing a very dense piece of bread, Will steps in and saves him from the law.\"\ntt0390022,zi-vtjCN9Rw,\"With Boobie out for the season, Coach Gaines has a frank talk with Mike about leading the team.\"\ntt0390022,WOjsnY1P7lk,\"Star player Boobie suffers a dramatic knee injury, worrying Coach Gaines.\"\ntt0204946,Mo_AVIt369k,Courtney and Whitney tell Torrance about cheer sex.\ntt0204946,9UMX4dGRYEw,Torrance and Cliff brush their teeth as a way to flirt with each other.\ntt0390022,_2LMj-4PtdU,\"When a doctor tells Boobie his knee injury is career-ending, Boobie accuses him of working for a rival school.\"\ntt0204946,Nj-F4OvzyLM,Choreographer Sparky makes his grand entrance... and promptly insults everyone.\ntt0390022,f_Pc2_cTQnk,\"Boobie says goodbye to his teammates, then dissolves in the car with his uncle.\"\ntt0087065,AOh4PeDIkWs,\"As Jack provides a distraction, Davey shoots Rice.\"\ntt0087065,MDC-al-lnoE,\"Angry that Jack tricked him into shooting Rice, Davey smashes Jack's toy and Jack disappears.\"\ntt0390022,GD-EP3ucPNk,Coach Gaines feels a not-so-subtle pressure from the local team boosters.\ntt0204946,6Wx2sfjX0qs,Torrance tries to make things right by getting Isis's team sponsored and is rejected. Both teams agree to bring it!\ntt0096874,d68yRIE9OvQ,\"Marty surveys the Hill Valley of the future, marveling at of its technologies.\"\ntt0372784,Uk280jVuH1w,Henri Ducard teaches Bruce Wayne about the power of will.\ntt0087065,Kmn7tIRUImY,\"Davey catches up to the MacCreadys at the airport and exposes them, but gets kidnapped in the process.\"\ntt0096874,59BWCEaowC4,\"Jennifer finds herself in her future home; she narrowly avoids her daughter, Marlene.\"\ntt0131857,xtRnl5zHKxc,Remer distracts his opponent with fake breast milk.\ntt0087262,4sRzks3eR-M,\"Charlie unleashes all her power, destroying everything in sight.\"\ntt0087262,q5K1fm56gI8,\"When Agents from the Shop arrive and shoot Irv, Charlie loses control and sets the men on fire.\"\ntt0087262,LixsNtGM8tc,\"Charlie aces the test of burning wood chips, much to the excitement of Hollister.\"\ntt0045152,TklrBmHo7Do,Cosmo Brown sings about the merits of being a comedic actor.\ntt0081505,4lQ_MjU4QHw,\"Wendy discovers the results of months of Jack's \"\"work.\"\"\"\ntt0045152,HZNy5irM2YE,\"Kathy Selden and Don Lockwood argue the merits of their respective media, stage and film acting.\"\ntt0324216,UWjXERbOr70,Erin hides in an old locker and fools Thomas in order to cut off his arm\ntt0324216,az5NDvQ41ys,Thomas chases Erin into a meat factory.\ntt0324216,cAM7skQKVk8,\"Erin and Andy encounter Thomas, who tries to kill them.\"\ntt0266915,LmrLiS3ZWxo,\"Detective Carter fights Hu Li, but quickly gets in over his head.\"\ntt0266915,5kI7hvWF_BM,\"Just when Lee thinks he's safe, he encounters the evil Hu Li and she comes very close to killing him.\"\ntt0266915,YFTbj6DJbGQ,\"Lee and Carter try to buy some suits, but the overenthusiastic salesman mistakes them for a couple.\"\ntt0266915,2qKoFdPJ4rI,Lee and Carter are surrounded by Chinese gang members in a massage parlor and have to fight their way out.\ntt0266915,EvCuX-oY4_c,Lee scales a bamboo scaffold to catch up with a gang trying to escape.\ntt0425061,I-AhUVGpGoU,Max has a nightmarish experience with a miniature crossbow in the airplane bathroom.\ntt0425061,SDls-ZJDLXE,\"Acting cool for Agent 99, Max accidentally swallows a blowdart.\"\ntt0332452,pLKZ0Adi70c,\"Menelaus refuses to let Paris turn his back on their battle, but Hector steps in.\"\ntt0425061,6GN20jud6MI,Max nearly kills the Chief by driving through a golf course.\ntt0332452,r2ucpHgHo1g,Hector mistakes young Patroclus for Achilles in battle and brutally kills him.\ntt0425061,HG8iPGFvfxU,Max barely navigates a field of laser beams when a rat gets into his suit.\ntt0431308,f8zZksymCzw,Daniel reads Gerry's last letter aloud to Holly.\ntt0332452,-BiLCJxpqi4,Achilles defeats the giant Boagrius and claims the first victory for Agamemnon's army.\ntt0431308,vTp6sSlv_aY,Daniel finds Holly hiding in the closet and divulges the events from his past that have led to his unhappiness.\ntt0431308,d0xC6yVjU9Q,Holly meets Daniel in a diner to discuss her progress in getting over Gerry.\ntt0431308,Fz9HnTVx52g,Holly receives the first message from Gerry after his death: a tape instructing her to give up her grief to celebrate her birthday.\ntt0758794,dAzXib-thq8,Nate Ruffin cracks under the weight of his own feelings of guilt and obligation.\ntt0758794,LkyMbgKtCAs,The students and supporters of The Thundering Herd make their voices heard.\ntt0427327,MDwNSR0QmBY,Edna Turnblad celebrates her figure and sings proudly on stage.\ntt0427327,hL71tkydKPM,Tracy Turnblad makes a surpise appearance on the Miss Teenage Hairspray special.\ntt0086200,rRLP7r6OuYE,\"Miles tells Joel that sometimes, you have to learn to do things you wouldn't normally do in order to fully enjoy life.\"\ntt0086200,6NvDZa8hWSs,Joel introduces his father's Porsche to Lake Michigan.\ntt0086200,I5cS0_op1IE,Guido has a little chat with Joel about stealing another man's livelihood.\ntt0427327,tdcUxHh3tAc,Edna and Wilbur Turnblad sing about their devotion to each other.\ntt0427327,1B8juGIsDl8,Tracy and Penny dance to their favorite show's opening sequence.\ntt0086200,8O8_FMhW9dY,Joel races his dad's Porsche while trying to escape Guido the pimp.\ntt0427327,UhkYrd0Sg3o,Tracy's mother disapproves of her wanting to audition to be a dancer on a TV show.\ntt0070034,mCdbIDiib5U,\"After Han offends Lee's family and the Shaolin temple, they fight hand-to-knife bladed hand.\"\ntt0070034,wxrmK9esHpc,Lee fights several guards in the underground base using a staff and nunchucks.\ntt0070034,1R5Li-f1IP8,Lee soundly defeats O'Hara in a tournament fight.\ntt0335438,P9pa_8-WdlU,\"Starsky solidifies his undercover persona with a cool voice, but Hutch is not as creative.\"\ntt0468569,6c_H45kt1_8,Gordon explains why the police have to chase Batman.\ntt0335438,uBX2b-zback,Hutch convinces Starsky to jump his Ford Torino off the dock.\ntt0335438,E6N0yJRAAAM,Huggy Bear poses as a caddy for Reese Feldman to get information about a big drug deal.\ntt0468569,dJma8pVAvH4,Two-Face exacts his revenge on Batman and continues to torment Gordon and his family.\ntt0335438,Wj6vEYwwJFI,\"Starsky busts Feldman at his daughter's bat mitzvah, but ends up killing her pony.\"\ntt0468569,Fzx9OpDH8HY,The Joker mocks Batman's false victory.\ntt0468569,HIcIIBTJA6o,The Joker manipulates Harvey and gives him the chance to exact his revenge.\ntt0335438,2-1pev4OEJY,\"Starsky and Hutch break into Chau's apartment, but his son throws knives at them.\"\ntt0468569,0uSOiu_WUDw,\"Under interrogation, The Joker interprets his and Batman's relationship to society.\"\ntt0468569,mKl11EzMTAE,Batman's limits are tested when the Joker confronts him with the chance to run him down with the Batpod.\ntt0468569,Wm_Z34Fyww8,The Joker intimidates Rachel with a knife and tells another tale surrounding how he got his scars.\ntt0468569,jrIc1SlA7O8,The Joker explains his scars while threatening Gambol with a switchblade.\ntt0468569,f_XHjqABQQA,The Joker pitches his ability to kill Batman to the mob.\ntt0209958,RNP4caHnknA,\"In Stargher's mind, young Carl saves Catherine from harm as a horse is vivisected in front of them.\"\ntt0428803,U5VW0XTFBZo,Baby penguins start to walk.\ntt0455612,Ae_PWQfCW1Q,Mother penguins see their newborn chicks for the first time.\ntt0428803,5FtZqXd6IJo,Mother penguins return to the water to find fish to eat.\ntt0428803,LGAfIx5VQ_M,\"Penguins take careful measures to keep their egg incubated, as the freezing temperatures can quickly break the egg.\"\ntt0825232,uiy-sT9JgRo,Edward gives a heartfelt eulogy at Carter's funeral.\ntt0496806,dnIPfZIKYPc,Willy Bank realizes that Danny Ocean and his crew have sabotaged his chance at winning the Five Diamond Award.\ntt0825232,iioBwO6vnEs,Edward reads a letter left by Carter.\ntt0825232,oOFm9UaRuik,Edward explodes when he learns that Carter contacted his estranged daughter.\ntt0825232,1RIOFzhufm8,\"Carter and Edward cross \"\"skydiving\"\" off of their bucket lists.\"\ntt0083658,fOSuCsgJ26M,Roy breaks several of Deckard's fingers as revenge for the deaths of Zhora and Pris.\ntt0496806,UKAi_Zpp0_E,\"Terry hears that because of his attempt at a double-cross, his share of the casino heist has been donated to charity.\"\ntt0083658,HU7Ga7qTLDU,Roy speaks his final words to Deckard before dying.\ntt0083658,L1YN9QMKpBo,Leon corners Deckard and tries to kill him.\ntt0083658,4lj2ISTrfnE,Deckard shoots Zhora in the back as she crashes through storefront windows.\ntt0083658,NwJEb3vJvWY,Deckard makes Rachael cry when he proves she is a replicant.\ntt0187738,Qs_PHrILn6k,Blade slices Reinhardt in half.\ntt0187738,EFpsSudUhQU,\"Blade and Nomak have a fierce battle, but Blade gets the upper hand.\"\ntt0187738,uU6LIbi7NZQ,Blade battles with two motorcyclists.\ntt0496806,EmkAdY2AT-U,Linus gets arrested while seducing Abigail.\ntt0120611,KTuGK7Ob2QI,\"Inside the vampire club, Quinn starts a fight and demands that Blade be hurt badly.\"\ntt0496806,j1tkwdfz7n4,Basher is sent in to distract Willy Bank while Virgil and Turk hack into the FBI database.\ntt0496806,nQZd4bNOSAI,\"Rusty is shocked when he finds an emotional Danny watching \"\"Oprah.\"\"\"\ntt0120611,jRYdVUtQs-8,Blade uses the serum to destroy Deacon Frost.\ntt0496806,fFan929BTPE,\"Rusty visits Willy Bank, as a geophysicist, to plant a hidden camera in his office.\"\ntt0120611,PTEskprXZOg,Deacon Frost has turned into La Magra and fights with Blade.\ntt0338751,NAGgo5AtHzE,Katharine Hepburn matter-of-factly announces that she will be leaving Hughes and moving in with someone else.\ntt0338751,oXjCj86GB-I,\"Hughes makes the acquaintance of Katharine Hepburn, movie star and athlete.\"\ntt0338751,KH5Q12Yb5u8,\"Hughes struggles to keep his airplane aloft, but crashes into several Beverly Hills homes.\"\ntt0338751,C3Um4x6M8ew,\"As part of his worsening OCD, Hughes obsessively repeats himself while talking to Odekirk.\"\ntt1000774,tYRzkKtCRuY,Big off-handedly proposes to Carrie.\ntt1000774,Va4gTqyLJeQ,Big proposes a second time in the closet he built for Carrie.\ntt1000774,Bkwke3UCbCQ,\"Charlotte sees Big as she is having lunch, but her water breaks before she can escape.\"\ntt1000774,mnUfDpO87Y0,\"While in Mexico, Charlotte contracts a virus and soils herself.\"\ntt1000774,H-O-z5gELUY,\"After Big doesn't show at the wedding, Carrie hits and yells at him in the middle of the street.\"\ntt1000774,Tk5XmgEEHoc,\"The girls talk about their sex lives, using child-safe words.\"\ntt0450259,mXp99jJtyII,\"Danny calls Maddy, asks for her help at home, and says a peaceful and content goodbye.\"\ntt0450259,ygU3F1ho3gg,Solomon convinces his son Dia to put down his gun by reminding him how much his family loves him.\ntt0332280,ielkiD8w-M8,Noah and Allie lie down one last time together.\ntt0332280,3nc6Tf26afI,Allie reads Noah's letter after she leaves him; older Noah reads the same letter to older Allie.\ntt0332280,E1I0hAxGFXw,\"After several amazing days together, Allie has to face reality and leave Noah, again.\"\ntt0332280,EemLsTG5fX8,Noah and Allie finally reunite in the rain.\ntt0332280,OLSHQCAncC4,\"Allie and Noah have a fight, which leads to their break-up.\"\ntt0332280,d7_F5P5PygM,Noah and Allie play in the ocean; she tells him she could have been a bird in another life.\ntt0097958,9hT-t19CJ4E,Clark lets his neighbors know where they can stick the Christmas tree.\ntt0032138,vQLNS3HWfCM,Dorothy and Toto find themselves in a strange and wonderful new place over the rainbow where they meet Glinda.\ntt0032138,aopdD9Cu-So,\"When the Wicked Witch sets The Scarecrow on fire, Dorothy accidentally kills the witch with water.\"\ntt0032138,z2itQkiQUOE,\"As they make their way down the yellow brick road, the group finds The Cowardly Lion and he joins their journey to see The Wizard.\"\ntt0032138,4IErqIMLwtQ,The Wicked Witch warns Dorothy that she'll be back to get her and retrieve her sister's magical ruby slippers.\ntt0116529,N7LxzkB0imk,\"Bill and Jo attempt to seek shelter from the oncoming tornado, which takes their truck instead.\"\ntt0117998,bhGWWY1nCWw,Bill and Jo drive through a house in an attempt to escape the tornado.\ntt0313737,W59U7VWHZ1Y,Lucy tells George some of the reasons why he has caused her to have an ulcer.\ntt0313737,aG55Y-zpxyo,\"Lucy becomes Loose Lips\"\" when she's had a few drinks and tells George what she's like under her \"\"lawyerly exterior.\"\"\"\ntt0360717,Lj4adAAHa68,\"Alonzo gives a grand, arrogant speech to the people in his neighborhood and tells him that he is in charge.\"\ntt0139654,oY7QReO1WOQ,\"Alonzo tells Jake what will happen to him if he doesn't go along with his plan, but Jake fights back.\"\ntt0313737,fMxA90YU2Jw,\"Lucy gives George her two weeks notice, but he doesn't take the news too well.\"\ntt0338348,ib3Hn188Jwc,A boy who's losing his Christmas spirit gets invited on board the Polar Express.\ntt0338348,77tn-KPS334,The boy reminisces about his belief in Santa Claus even as his friends lost their faith.\ntt0338348,dofECCtTfaM,Santa gives the first gift of Christmas.\ntt0338348,uKwwpmC02IQ,The children find a lonely boy singing at the back of the train.\ntt0338348,Cht63QybtiA,The crew of the Polar Express fight to get the train back on the tracks before the ice collapses underneath them.\ntt0240772,HFduVeNEWSA,Rusty picks up Danny from prison for the second time and has someone special waiting in the back seat.\ntt0240772,Qb2tjzecJX4,\"Rusty gives Terry the terms of the robbery over the phone while in his casino, then bumps in to Tess.\"\ntt0240772,bCIXKzeaAAs,Danny surprises his ex-wife Tess in her new husband's casino.\ntt0240772,1mJf24luhuo,Danny and Rusty recruit Reuben for their casino robbery when they tell him who the target is.\ntt0240772,m6ux3-Z03B4,Rusty teaches his friends how to call a bluff but is served a surprise by Danny during a high-stakes poker hand.\ntt0212346,DCnvuyK6ur8,Gracie and Eric try to deny their feelings for each other.\ntt0212346,kdW1wdpEP4Y,\"When a loud sound in her earpiece causes Gracie to scream \"\"Jesus Christ!,\"\" she hurries to make up a cover story.\"\ntt0212346,9pXTSPcZEWE,Gracie Hart thwarts the plans of the terrorists by disposing of the bomb in the Miss United States crown.\ntt0373889,34Rit1AnlVg,\"Harry teaches his classmates how to summon a patronus, a powerful magical protector.\"\ntt0212346,j5B70NEq_fY,Gracie Hart defends her fellow contestants in the interview portion of the beauty pageant.\ntt0373889,hw6GwhfNl7U,The love of Harry's family and friends gives him the strength to reject Voldemort's attempt at mind control.\ntt0212346,aEBLrCGhTVM,\"Gracie Hart and Eric Matthews duke it out in the gym, while the other agents place bets.\"\ntt0110148,OsI3mSgTFnk,Claudia presents Louis with the woman she desires to be her new mother.\ntt0373889,u8QMY9JKlDk,Voldemort and Dumbledore unleash the elements as they face off in battle.\ntt0110148,c9cV7bFKMNQ,Lestat gives Louis his last chance to choose death or eternal life as a vampire.\ntt0110148,5xzDAgFrnf8,Louis and Claudia discover that Lestat is not dead as they had thought.\ntt0373889,eFKh6cYmQ4M,The Weasley twins disrupt the students' test-taking and terrorize Professor Umbridge with fireworks.\ntt0110148,LIm8HfwnmVE,Claudia struggles to come to terms with the fact that she will never grow old.\ntt0373889,8_MpC8PcPQ0,\"As Harry writes lines as a punishment, Dolores Umbridge's magic pen cuts the words into his hand.\"\ntt0349903,fzAKSbtYBMU,Toulour proves that he is the best thief in the world by avoiding roaming laser beams in a museum.\ntt0349903,3lfTLYMECtc,\"Tess and the crew try not to blow their cover when Bruce Willis visits \"\"Julia Roberts.\"\"\"\ntt0120888,ifYK21xsVtI,Robbie confronts Glenn about his cheating ways.\ntt0120888,TPsW2FYprfI,\"Robbie sings to Julia on the plane, while Billy Idol helps keep Glenn out of the way.\"\ntt0110475,_HCS9AJ0rEI,\"Stanley, as The Mask, saves Tina by swallowing Tyrell's bomb.\"\ntt0110475,YGEL2muzPEE,\"When frisking The Mask, Kellaway and his cops make several interesting discoveries.\"\ntt0110475,W_gYRFDb8_A,\"After being shot, The Mask gives a dying monologue which references several classic movie moments.\"\ntt0110475,T1TrFjLKryc,The Mask distracts a group of thugs by making them balloon animals.\ntt0110475,QP2uPNypJlE,\"The Mask dispatches his alarm clock with a giant mallet, waking his landlady, Mrs. Peenman.\"\ntt0120812,bgXlHdBRpjs,Carter saves Lee's life with the help of a giant banner.\ntt0120812,-eIH1jFAGlY,\"When Lee and Juntao fight high above the exhibition hall, Juntao falls to his death.\"\ntt0120812,mwHOh0YPpBU,\"At the Chinese exhibition, Lee tries to protect priceless works of art while fighting off his opponents.\"\ntt0120812,OofNBvo-ABU,Lee and Carter have a tag team fight at a Chinese restaurant.\ntt0120812,0Rl9Cxc7uZA,\"When Carter picks up Lee at the airport, Lee pretends he doesn't speak English.\"\ntt0330373,9eGwOuyKu1U,The Dark Lord's return is confirmed by the tragic death of Cedric Diggory.\ntt0330373,2bujRZhOt9w,Harry battles Lord Voldemort for his life and sees the spirits of his parents.\ntt0330373,W7Ic9rZ9OQw,\"With blood from Harry Potter and a little help from Wormtail, the Dark Lord Voldemort rises again.\"\ntt0330373,wsl5fS7KGZc,Mad-Eye Moody demonstrates the mind-control curse on a spider for Defense Against the Dark Arts class.\ntt0330373,leQiIU7fzPs,Harry tries to evade a dragon high atop Hogwarts as part of the Tri-Wizard Tournament.\ntt0087363,_3F3eCypuko,\"Gizmo races to stop Stripe, the head gremlin, from replicating.\"\ntt0087363,KBaCHull47I,The gremlins wreak havoc on Mrs. Deagle's stairlift.\ntt0087363,sz8itUBsCTk,Lynn is mauled by a gremlin in her Christmas tree.\ntt0087363,u1QIbENq66w,Lynn uses an assortment of appliances and cookware to kill the creatures.\ntt0087363,o2vw_iYBAyY,Billy and Pete watch as a wet Gizmo spawns five more creatures.\ntt0087363,kgfgiLlW-yw,Billy opens his Christmas gift -- an agreeable furball named Gizmo.\ntt0070047,Au-u9RWe0Jo,\"In a final attempt to oust the demon, Father Karras commands it to enter his own body.\"\ntt0070047,lpyg94OzHK0,Fathers Merrin and Karras battle the demon with chants and holy water.\ntt0070047,sZazSFEHfg8,A pair of doctors are taken aback by Regan's condition.\ntt0070047,bSxuXQCEC7M,\"As Father Merrin attempts an exorcism, Regan's head displays remarkable versatility.\"\ntt0070047,8QjrBjdb2T8,Regan spews a foul substance at Father Karras.\ntt0407887,WDTRyjMnDOk,Costello believes there's a mole in their midst; Billy gets defensive.\ntt0407887,Ocr0aNwQvVg,\"Billy arrests Colin, who insists the charges won't stick.\"\ntt0407887,gsGm2Ohl7x8,Queenan is thrown off a building by Costello's men; Colin loses control as his cops respond.\ntt0407887,NEwspgySg5s,\"Madolyn asks Billy what he wants out of their sessions, but flinches at his blunt reply.\"\ntt0407887,qVwoeNk9554,\"Agitated by life undercover, Billy comes to blows with Dignam.\"\ntt0071230,bcokL59jeqU,Hedley Lamarr deals with a gum-chewing henchman.\ntt0071230,fLpmswBKVN4,Hedley Lamarr dictates a list of the types of criminals he's seeking.\ntt0071230,IZT7xLjxuhs,\"When Bart rides into town as the new sheriff, the citizens are stunned.\"\ntt0071230,qVhCNgct9JQ,\"Standing down a band of thugs, Jim shows his quick-draw prowess.\"\ntt0071230,VPIP9KXdmO0,Taggart's men eat a supper of beans and suffer the consequences.\ntt0145660,WSS4dOe8Ul8,\"Dr. Evil has heard enough from his son, Scott.\"\ntt0145660,g5AixBKy7b4,Fat Bastard makes a surprisingly heartfelt admission.\ntt0145660,bu83p1i0D1A,Austin is attacked by a nimble Mini-Me.\ntt0145660,dzvTHhWDjIg,\"Snubbing Scott, Dr. Evil delivers a hip-hop ode to his clone, Mini-Me.\"\ntt0145660,z-5iCygFd9M,Austin discovers Mustafa's weakness: He hates being asked the same question three times.\ntt0145660,fBlAMqoJ5BA,Dr. Evil and Scott are reunited by Jerry Springer.\ntt0145660,LXekH_8vXnM,Fat Bastard has a hankering for Mini-Me.\ntt0118655,2NdymhVOFF8,Dr. Evil finds out that no one followed through on his request for a tank of sharks with friggin' laser beams on their heads.\ntt0118655,EJR1H5tf5wE,Dr. Evil learns that a million-dollar ransom isn't as threatening in the 1990s as it was in the 1960s.\ntt0118655,pYwgIQaq9qY,Scott and Dr. Evil attend family therapy to work out their issues.\ntt0118655,ZywVV0T5DcA,\"Dr. Evil meets his son, Scott, who is not quite ready for a relationship.\"\ntt0486583,onK1BeyHSZ4,\"Santa's Secret Service elves mistakenly attack his brother, Fred.\"\ntt0486583,OfsHMuWn95I,Stephen Baldwin takes issue with Fred and Roger Clinton has some inspiring words for them at a brothers therapy session.\ntt0486583,3a49kwfRAtI,Fred Claus draws the ire of a horde of Salvation Army Santas when he asks passersby for donations.\ntt0486583,bD_rWCvgDy8,Fred Claus tells a little girl that his repossessing her TV is going to be beneficial to her in the long run.\ntt0122933,fmT8JstRohg,Ben Sobel introduces himself to the lords of the underwold.\ntt0122933,GXwVNAl1fN8,Paul Vitti turns Ben Sobel's therapist methods back upon him.\ntt0122933,ShQD76s4WZk,Paul Vitti is unsatisfied with Ben Sobel's therapy.\ntt0122933,zEE7xzwogMc,Ben Sobel helps Paul Vitti control his anger by hitting a pillow.\ntt0416449,cDpI6Zzy-vo,Leonidas gives his men a stirring speech before the enemy charge.\ntt0372784,TofiEsdr7YE,Jim Gordon explains to Batman that there will be escalation in Gotham now that he's around.\ntt0372784,EGWfothiSU8,Batman has a final battle with Henry Ducard aboard a speeding train.\ntt0088939,5v5JjUZpAPk,Sofia explains to Celie her unwillingness to take abuse from men in her life.\ntt0372784,WJB3hqUsHDE,Batman races through the streets of Gotham evading police in the new Batmobile.\ntt0088939,SH4PhFHyC5s,\"Walking through a field together, Shug explains to Celie how everything in the world just wants to be loved.\"\ntt0088939,yqmreq-dV84,Celie puts a knife to Albert's neck and curses his future.\ntt0088939,bQbH32KcjG0,Shug watch as Nettie reunites Celie with her son and daughter.\ntt0367594,HcREWDplGBo,Wonka meets each of the contest-winning kids in turn.\ntt0088939,Iy2GKyD2IoQ,\"When Sofia is slapped by Mayor on the street, she fights back and is accosted by other white townspeople.\"\ntt0367594,RmISVHxjcAI,\"Swarmed by squirrels, Veruca flunks the nut test.\"\ntt0088939,yY8Pf2rgP5s,\"When Albert drags Celie off of their land, she has an emotional separation with her sister Nettie.\"\ntt0367594,ckjDSzjU-cQ,Charlie's decision to remain with his family baffles Wonka.\ntt0295178,MLZZos7_fYo,Austin and Foxxy meet Number Three and his mole.\ntt0416449,nHByIEUb37Y,Dilios delivers Leonidas' final message to Sparta.\ntt0367594,MUn6X9lpOZE,Violet's three-course chewing gum is delicious fun...till the dessert.\ntt0416449,kmgRv2V_7P4,Leonidas and Xerxes discuss the conflict.\ntt0295178,z4nPyI-zA74,Dr. Evil and Mini-Me bust a rhyme for their fellow prisoners.\ntt0416449,uBrvKhAs4S4,\"Leonidas exhibits his prowess with spear, sword and shield.\"\ntt0367594,MAviyhpn7Lg,\"When Augustus drinks from Wonka's chocolate river, the glutton is swiftly punished.\"\ntt0416449,4Prc1UfuokY,King Leonidas gives the messenger from Xerxes a powerful message of his own.\ntt0295178,NIaiW1XrzxA,Austin and his father speak off-color cockney.\ntt0096895,JaBh-B6F2sk,The Joker demonstrates his joy buzzer on an impudent rival.\ntt0319343,cQ_dL_IMPP4,Buddy insults the diminutive Miles when he calls him an elf.\ntt0319343,cbQZ8GK2usU,Buddy protects Michael with his super snowball attack skills.\ntt0096895,RfvKvTlQHuw,\"Just as Batman prepares to finish him, the Joker turns the tables.\"\ntt0319343,9tIcnydrwFY,Buddy denounces the Gimbel's Santa Claus as a fake.\ntt0319343,fNMtHosai08,Buddy meets his father for the first time and is mistaken as a Christmas-gram.\ntt0319343,dJU1SZIfK3Y,Buddy overhears two elves talking and realizes that he is actually human.\ntt0295178,EFkIZ-Zf32Y,Scott Evil mocks the name of Dr. Evil's latest tractor beam.\ntt0096895,9OufCgFZCyU,Bruce challenges the Joker in Vicki's apartment.\ntt0096895,wZ30Qxv0vtI,Batman dispatches the Joker's goons while Vicki snaps pictures.\ntt0295178,9XoPQEOY7L8,Austin takes on a fembot version of Britney Spears.\ntt0096895,63iuB-cSY7Q,Grissom finds that his old henchman Jack has reinvented himself.\ntt0372784,iqLDCIZ1DIs,Batman breaks up Dr. Crane's plan to contaminate the city water supply and gives him a taste of his own medicine.\ntt0372784,ZmdWPv5R_J8,\"Batman breaks up a drug shipment, terrorizes the thugs, and kidnaps Falcone.\"\ntt0089218,0atATbXbQ9g,Mikey gives a wistful speech to stop his friends from abandoning the adventure.\ntt0089218,ROhFRFmHexM,Chunk tells the Fratellis about the sickest prank he ever pulled.\ntt0089218,kr_z37TgQO4,\"Before Chunk can enter Mikey's house, he must perform a time-honored ritual.\"\ntt0109686,Ku1Xc6NT6m8,A busload of bikini models stop Lloyd and Harry and ask them if they want to come on their tour as oil boys.\ntt0089218,OnrORwEG4lQ,\"Mouth grabs coins at the well, demanding a refund for his unanswered wishes.\"\ntt0034583,rEWaqUVac3M,\"Rick prepares the travel papers for Ilsa and Victor instead of himself, and says goodbye.\"\ntt0034583,k_uINM_XI6I,\"Ilsa pulls a gun on Rick in an effort to get the travel papers, but ends up confessing her love for him.\"\ntt0109686,6AVMcJa77PM,\"After Harry drinks laxative-spiked coffee, he has explosive diarrhea when he arrives for his date with Mary.\"\ntt0034583,mK10Ze-mcQo,\"Ilsa tries to explain the past to Rick, but she has secrets to hide and he is still too heartbroken to listen.\"\ntt0034583,buRR_o85qhQ,Rick makes plans to flee to Paris with Ilsa but she is overcome with sadness and fear.\ntt0034583,IBJGHvt7I3c,\"Captain Renault tells Rick about Victor Laszlo and his female companion, and warns him about helping them.\"\ntt0109686,ylRqJapI0wQ,\"On a dare, Lloyd and Harry eat atomic hot peppers, which turn out to be hotter than they expected.\"\ntt0109686,RD2YJrvd71Y,\"After Lloyd and Harry get pulled over for speeding, the policeman drinks from the beer bottle filled with Lloyd's urine.\"\ntt0109686,-9IgLueodZA,Lloyd asks Mary to tell him what the chances are that they will end up together.\ntt0097958,TQXuazYI_YU,\"When he doesn't receive his long-awaited Christmas bonus, Clark loses it and gives an angry rant about his boss.\"\ntt0097958,Jdyo4evwMxU,A squirrel wreaks havoc on the Griswold home.\ntt0097958,qTwXudZTWQA,\"At the family feast, Aunt Bethany recites the Pledge of Allegiance and the main course withers.\"\ntt0097958,LSqb4e8mUd4,\"To Clark's horror, Cousin Eddie empties his septic tank into the storm sewer.\"\ntt0097958,bSdm_eA1Css,Clark's toboggan ride on a waxed saucer goes horribly wrong.\ntt0097958,fKncYRJQRC8,Clark entertains Cousin Eddie and his repugnant dog.\ntt0097958,GxGkcC1VrhU,Clark gets tongue-tied with the saleswoman at the lingerie counter.\ntt0097958,gTKpKBzd7jg,The Griswolds trudge into the snow to find the perfect Christmas tree.\ntt0097958,ozksR8QLWzM,\"When Clark plays road games with a truck full of rednecks, the Griswolds are nearly flattened by an 18-wheeler.\"\ntt0396269,xkzkmyOln6I,Jeremy asks John what he did in the bedroom with Mrs. Cleary.\ntt0133093,zE7PKRjrid4,Morpheus explains what the Matrix is and offers Neo the chance to wake up.\ntt0304141,VKhEFVAoScI,\"Harry, Ron and Hermione are terrified when a Dementor of Azkaban appears on the Hogwarts Express and attacks Harry.\"\ntt0348150,9-DOuX-Pi6o,\"Lois Lane's fiance asks her how she feels about Superman, and she has trouble answering.\"\ntt0107050,ePRYhNNdzwk,\"When the IRS comes calling for John, his neighbor Max enjoys his distress.\"\ntt0107050,kTnEyRLMvqk,Max pranks John while he's watching TV.\ntt0107050,KTyLJftgoc0,Max and John rumble on the ice and bring up their past issues.\ntt0107050,WcZ62d0PATY,Max runs over John's ice shanty with his truck in retaliation for stealing Ariel.\ntt0109686,S4AmLcBLZWY,\"Harry and Lloyd pick up a hitchhiker, but proceed to drive him crazy with their childish antics.\"\ntt0034583,5kiNJcDG4E0,Captain Renault and Rick strike up a beautiful new arrangement.\ntt0338751,br-ljup5Bow,\"Howard has dinner with Katharine Hepburn's family, who make him feel quite inferior.\"\ntt0338751,giEV8fvrDd8,\"Howard Hughes achieves his dream of flying the massive \"\"Spruce Goose\"\" airplane.\"\ntt0450259,lW1vzy6psfE,\"While trying to rescue Dia, Danny and Solomon are caught in a massive airstrike.\"\ntt0450259,82IXVFuJllI,Danny tells Maddy about life in Africa and the death of his parents.\ntt0335266,_j9qAhXfNAU,Linus messes up Danny's coded conversation with Matsui.\ntt0118655,E-PIidaqCyU,Dr. Evil reveals his blackmail plans only to discover that his threats have already come to pass during the 30 years that he was frozen.\ntt0031381,yNvuIuWY3Sw,\"On his way to join the Confederate Army, Rhett professes his love for Scarlett, but she rejects him harshly.\"\ntt0031381,c8EodW2ossg,Rhett reveals that he can see through Scarlett's act and that she and her family are in dire straits.\ntt0031381,M4-DIldIX6U,\"Scarlett and Rhett tease each other, each trying to keep the upper hand.\"\ntt0031381,2zomyWfPgjE,Rhett Butler shocks the crowd at the benefit auction when he bids on Scarlett.\ntt0031381,lrhNPS4nbmQ,\"After Ashley spurns Scarlett, she meets the notorious Rhett Butler.\"\ntt0031381,GQ5ICXMC4xY,\"Rhett leaves Scarlett in tears, but she still finds hope in tomorrow.\"\ntt0102798,NJk-yQadw_U,The Sheriff of Nottingham is enraged by the people's love for Robin Hood.\ntt0120689,8ucelPNuKdk,The guards rehearse the execution of Arlen Bitterbuck.\ntt0120689,xqbb1FCX6wM,Paul shakes John's hand before giving the order to execute him.\ntt0120689,083OMBnPA3c,Paul worries that his soul is in danger for participating in John Coffey's execution.\ntt0120689,rRNj9qpTgOc,\"Infected with Melinda's mysterious illness, Percy kills the deranged inmate Wild Bill.\"\ntt0120689,pLbS8f9IplI,Coffey heals Melinda Moores by sucking the illness from her mouth.\ntt0209958,22gw_64AGKM,\"Catherine is brought before Stargher, who appears as a demon-god in his own mind.\"\ntt0209958,NlP9f8i-4c4,Novak pleads with Catherine to wake up while he is tortured by Stargher.\ntt0209958,nCuYBELZjpY,\"After escaping a dream version of the cell, Catherine encounters Stargher's dog.\"\ntt0209958,8G40_afpkGA,Carl asks Catherine to euthanize him to protect him from his darker side.\ntt0325710,12DQN8oxKTs,\"Algren, Katsumoto and the samurai make a final charge on the Japanese Imperial army.\"\ntt0325710,IV7jcaXQgds,\"Using his skills as a samurai, Algren successfully defends himself against a group of ninjas.\"\ntt0325710,A-Cj7v3rTWg,\"Algren, Katsumoto and the rest of the Samurai defend the village from an onslaught of ninjas.\"\ntt0325710,rSB9VJcwQsc,Algren's determination and strong will against Ujio impress the watching villagers.\ntt0234215,KY_pTVfz3gU,Neo flies to rescue Trinity.\ntt0234215,wSPAPeO17Zk,Morpheus protects the Keymaker while the agents steer their trucks into a collision course.\ntt0234215,_b6S8tpQtdw,Morpheus and Trinity protect the keymaster during a high speed chase and shoot-out.\ntt0234215,x1srznPx1qA,Neo battles the Merovingian's men with a variety of weapons.\ntt0234215,GSprkzio_pE,Neo uses a pipe to fend off the horde of Smiths.\ntt0234215,FRvxzdkj_YI,Seraph tests Neo with his own unique method.\ntt0167261,l8WyXv7hQvE,The Ents clean up Saruman's stronghold of Isengard.\ntt0167261,sL9vUjm2mIE,Gandalf rides to Theodan's aid with the help of some old allies.\ntt0167261,k72rrPUEDdk,Orc soldiers climb over the wall and begin to infiltrate the keep.\ntt0167261,F3GFYKIwJ9Y,Aragorn and company fight off a group of Orc Warg riders.\ntt0167261,O_aziIIp8U8,\"Smeagol defies corruption by the ring and his alter ego, Gollum.\"\ntt0167261,Y6wE2W3ag1g,Gandalf breaks Saruman's spell over King Theoden.\ntt0167261,ExU37Xz5Q0Q,Gandalf miraculously returns as the white wizard and recounts his battle with the Balrog.\ntt0167261,uFzAxAEMwrY,Treebeard reveals himself to scare off an orc attempting to kill Merry.\ntt0167261,ePzOShBS9uU,Frodo and Sam meet the creature Gollum.\ntt0167260,rBtzudk40pE,Aragorn honors the hobbits at his coronation.\ntt0167260,Y0F2c4VgxW8,The Ring of Power sinks beneath the lava and is finally destroyed.\ntt0167260,yIUdnWv0MP0,\"Eowyn, defeats the Witch King of Angmar.\"\ntt0167260,6vry0ijbJVE,The Fellowship watches as all evidence of Sauron is wiped from Middle Earth.\ntt0167260,132WIdxvgdo,Legolas single-handedly defeats a squadron of soldiers riding a massive elephant.\ntt0167260,dwT9BEh7qZ0,\"The Rohirrim charge, breaking the Orc ranks.\"\ntt0167260,NQp6RWrHxRE,\"Sam battles Shelob, the gigantic spider.\"\ntt0167260,ySQ8WJNGp0U,Elrond counsels Aragorn to enlist the army of the dead and gives him the sword that was broken.\ntt0120737,mxJtFvNByKw,Gandalf counsels Frodo not to despair the responsibility given to him as bearer of the ring.\ntt0120737,0L-Zqr0eyDg,Arwen conjures a spell to drown the Dark Riders.\ntt0120737,iBSLBl-64fk,Aragorn swears to a dying Boromir that he will protect the people of Gondor.\ntt0120737,VlaiBeLrntQ,Gandalf sacrifices himself to save the Fellowship in a battle with the Balrog on the bridge of Khazad-Dum.\ntt0120737,Vi5pdd7xHNI,The Fellowship rallies to bring down a berserk cave-troll.\ntt0120737,bdFKfRmmbk0,\"Despite disagreement, Elrond convinces the council that the ring must be taken to Mordor and destroyed.\"\ntt0120737,2L0A2D7zV7A,The Hobbits have a close call when they encounter a Black Rider on the road.\ntt0089218,qFUISvEZ3aw,Chunk and Sloth bond over a Baby Ruth bar.\ntt0120737,x4QJwGTOny8,Gandalf and Saruman engage in magical combat in Saruman's tower.\ntt0348150,XUxAGsL8b0o,The people of Metropolis watch as Superman falls back to Earth.\ntt0348150,C2gQo-0VW5c,\"A man with a machine gun shoots down several police cars from the top of a building, until Superman arrives to stop him.\"\ntt0348150,jP8dC8E6Emk,Superman remembers his father's counsel as he watches over the Earth.\ntt0348150,6aWxJ0cxD8c,An airplane hurtles down toward the Earth and Superman struggles to save it in time.\ntt0295297,kb7T9oK0tF8,Harry slays the basilisk in the Chamber of Secrets.\ntt0295297,BfcfTmh8RKo,Harry finds out who Tom Riddle really is.\ntt0295297,rwzNpFWiOTg,Professor Lockhart foolishly unleashes pixies onto his students.\ntt0295297,cPsIU9BTbcQ,Harry and Ron try to catch up with the Hogwarts Express in a flying car.\ntt0295297,w3-V_82VwQQ,Harry meets Dobby when the house elf shows up in his bedroom unannounced.\ntt0241527,f1N8-L5cuWQ,Lord Voldemort tries to tempt Harry Potter to join him.\ntt0241527,F3YR1-gJjWM,Harry Potter wins the Quidditch match for Gryffindor when he catches the golden snitch.\ntt0241527,_v5g_GFm1W0,\"When Hermione is attacked by a troll in the girls' bathroom, Harry and Ron come to her rescue.\"\ntt0304141,FeK3AM7NZzQ,Harry has a terrifying ride on the Knight Bus.\ntt0241527,50N2eB0JI80,Hagrid bursts down the Dursley's door with a birthday wish for Harry.\ntt0304141,GVhi1qkt5I4,Hermione impresses Harry and Ron when she punches a smirking Draco Malfoy.\ntt0304141,TsNv4tohJ7Y,Professor Snape catches Harry sneaking around Hogwarts late at night and compares him to his father.\ntt0304141,n1TqCGEBdLw,Harry and Sirius are saved from dementors by a silver stag Patronus.\ntt0241527,9JVNdsyjU5A,Professor Snape is not impressed with the famous Harry Potter's knowledge of potions.\ntt0122151,4NcH64kh_24,\"Lorna won't give birth until she and Riggs are married, so Leo asks a Jewish rabbi to marry them.\"\ntt0405159,DlwuwiBLAmM,Maggie sends her family on their way without signing the legal papers delegating all her assets.\ntt0405159,EOyH6NwoQL4,Eddie tries to reassure Frankie that Maggie must be satisfied even if she is dying.\ntt0405159,o4SUU7XoRl8,Maggie remembers her journey and asks Frankie if he will end her life.\ntt0405159,jcXErUFrA68,\"Maggie fights a strong opponent, but knocks her out in the end.\"\ntt0405159,Utz-RZwQpyE,Frankie makes a deal with Maggie that he will train her.\ntt0122151,A_S1oRHSH80,Riggs and Murtaugh pick one last fight with Wah Sing Ku.\ntt0104714,_P9ZorzeECg,\"Riggs accidentally busts a movie set, thinking that a robbery is in progress.\"\ntt0177971,kNpbZ_oVHxE,Christina recounts her dream: that Bobby is able to say goodbye one last time.\ntt0122151,u-bWIkGa0QA,\"Riggs, Murtaugh and Butters take a few liberties with laughing gas at the dentist's office.\"\ntt0177971,CeSQfi3eLhs,\"Billy suggests Bobby swim to the surface, but then stays with his ship to die.\"\ntt0177971,W9Tdw5nG4dQ,Bobby struggles against the storm at the wheel of his boat.\ntt0122151,WsAVIpTwAP4,Butters and Leo Getz vent their frustrations about using cell phones.\ntt0177971,FM-wfXvcbAY,Billy scales the ship's mast during the storm.\ntt0122151,8jd1NKyFQJI,Leo Getz angers Butters by suggesting he's a criminal.\ntt0177971,O-ydNrUWOik,Billy expresses his romantic notions of being a fisherman.\ntt0104714,3A3iNVaLod4,Riggs and Murtaugh threaten to kill a jaywalker.\ntt0104714,cy-OKLuMikk,\"Riggs snips the wrong wire, but he and Murtaugh escape before the bomb explodes.\"\ntt0114369,hImAmM5-Fpg,John Doe strolls into the police station to turn himself in to Mills and Somerset.\ntt0114369,lWZU3pPZWig,Somerset bemoans the apathy of the world.\ntt0114369,VN9icwiN6io,\"Over Somerset's objections, Mills empties a clip on John Doe for murdering his wife.\"\ntt0104714,K49NaFf6i_E,Riggs falls off an overpass in pursuit of Travis.\ntt0114369,8vq_k0yqq88,John Doe explains himself to Mills and Somerset about his criminal motivations.\ntt0104714,cNOsA4nH8yE,Riggs and Cole compare the scars they've accumulated over their years as cops.\ntt0114369,h8m69o_1PoQ,\"Detectives Mills and Somerset discover an emaciated shut-in, the victim of prolonged torture.\"\ntt0293564,smHHU_ONdGU,Lee duels his brother with a sword.\ntt0242653,FXKx1sX8ESs,\"Agent Smith absorbs Neo, but is shocked when his duplicates begin to explode and he is destroyed.\"\ntt0242653,9rySfLgqHJc,A dying Trinity says goodbye to Neo and they share a last kiss.\ntt0242653,RP7pZNhYm3c,\"The Kid, Zee and Niobe work together to stop the machine invasion and save the dock.\"\ntt0242653,jk3Z-MVoUg4,\"Despite the Kid's heroic efforts to reload his weapons, Captain Mifune is overcome by a group of squid droids.\"\ntt0242653,YBQLEhzlYX8,\"Neo enters the Matrix, now totally taken over my Agent Smith, for a final battle in the rain.\"\ntt0293564,Pry7CGd09jU,\"On a harrowing taxi ride, Lee and Carter get rid of the final motorcycle thug.\"\ntt0293564,7DfNc-wxnBM,\"The Dragon Lady tries to kill Lee, but Carter misinterprets the sounds.\"\ntt0293564,kmjblNu2_6M,Carter and Lee are beaten up by a kung fu giant.\ntt0133093,aOg9IcxuV2g,Neo leaves a threatening message telling of his plans to liberate the human race.\ntt0133093,r_O3k-RpV2c,Neo's initiation into the world of the enlightened begins as the crew starts the process of disconnecting him from the Matrix.\ntt0133093,j6oBbBfhgYE,Agent Smith interrogates Neo about his dual identity.\ntt0293564,HQkSMJFJu4g,Carter is confused by Chinese nomenclature.\ntt0133093,DMx-Az5Da4M,Neo takes on Agent Smith in an abandoned subway station.\ntt0045152,-wI4jJq98tU,\"During Lina's performance, the men open the curtain to reveal the true singer - Kathy.\"\ntt0133093,73ytL_HAwt8,\"Neo takes on a group of agents in the Matrix, demonstrating his unique and innovative fighting style.\"\ntt0133093,ZQaBYT4MxWU,Neo and Trinity face down a squad of Matrix-spawned soldiers with a combination of martial arts and fire power.\ntt0133093,XO0pcWxcROI,Neo learns a lesson about the Matrix from a wise child.\ntt0045152,_UmaFTEIZ84,Don Lockwood dances with an umbrella in the pouring rain.\ntt0133093,O4yuhvccQog,Morpheus and Neo spar in a virtual dojo.\ntt0045152,B0asbGJbLKc,Don Lockwood's love for Kathy causes him to sing and dance in the rain.\ntt0102798,Wg-UpYglAEw,\"The Sheriff forces Maid Marian into marriage, but Robin Hood shows up to defend her.\"\ntt0045152,qu4v5hB1dKk,\"Kathey Selden, Cosmo Brown and Don Lockwood sing and dance after staying up all night.\"\ntt0102798,m_1yILWMqFA,The merry men use Sherwood Forest to its full potential as they prepare for battle.\ntt0102798,fLWrnVuT4Is,Robin tries to inspire his band of merry men.\ntt0102798,B42mhJ4DY4I,\"The Sheriff of Nottingham threatens Robin of Locksley, who manages a heroic escape.\"\ntt0045152,YMzV96LV6Cc,\"Sound problems in \"\"The Duelling Cavalier\"\" cause the audience to burst into fits of laughter.\"\ntt0081505,WDpipB4yehk,\"Jack forces Wendy into the bathroom, but she finds that she can't squeeze through the window.\"\ntt0045152,OTFCctdiS04,Roscoe Dexter coaches Lina Lamont through the technical difficulties of sound recording while on set.\ntt0081505,FLjixsUEj5E,\"Danny, having been possessed by his imaginary friend, recites the word Redrum\"\" until Wendy awakes and realizes the word's meaning.\"\ntt0081505,yMRmV1Sj6j4,\"Jack, now slipping into insanity, confronts Wendy about her decision to get Danny away from the Overlook.\"\ntt0081505,CMbI7DmLCNI,\"While exploring the hotel, Danny encounters the ghosts of the murdered Grady twins.\"\ntt0324216,mV5UHLHdkY8,Morgan is torn between shooting the evil Sheriff or not.\ntt0324216,PRtTmayVhKI,A distraught teenage girl commits suicide in the back of the van.\ntt0332452,NjIszoXfvUQ,Achilles succeeds in killing Hector in front of his people.\ntt0332452,1SnPHdvPPxM,Hector faces Ajax in a fight to the death.\ntt0758794,EEm8IXm88Tw,The new Thundering Herd beat Xavier with a dramatic touchdown.\ntt0758794,I3wUstDFDN0,The new Thundering Herd are inspired by their coach's rousing pep talk.\ntt0758794,xM311HohUzA,Jack Lengyel delivers an inspiring talk at the memorial to the fallen players.\ntt0032138,BZSb0JCWcXk,\"Dorothy wakes up in Kansas and remembers her wonderful adventures in Oz, but tells her family \"\"there's no place like home.\"\"\"\ntt0032138,louBM-Mix7s,\"Dorothy meets The Tin Man and oils him up so he can move again, but she quickly learns that he's missing a heart.\"\ntt0032138,nauLgZISozs,The Scarecrow tells Dorothy through a song all about what he would do if he only had a brain.\ntt0032138,PSZxmZmBfnU,\"Dorothy fantasizes about a land far away from home and sings \"\"Somewhere Over the Rainbow.\"\"\"\ntt0117998,dYg-LtUxhcE,\"Bill and Jo escape the tornado, which completely destroys a barn.\"\ntt0117998,eFU730P9f54,Jo reveals why she is obsessed with chasing twisters and does not want to leave when Bill tries to reason with her.\ntt0313737,2cDcwnVNoGc,Lucy and June get into a stapler tug-of-war at Lucy's farewell party.\ntt0139654,82aLTSlTL44,Alonzo doesn't believe that Jake has what it takes to shoot a cop in the back. Until he does it.\ntt0139654,IIjzneqtAZA,\"Smiley is about to execute Jake in a bathtub, until Jake tells him he saved his niece from being raped.\"\ntt0313737,ac9w0rKTRPM,George puts his foot in his mouth when he and Lucy interview for her replacement.\ntt0117998,2dQgjrrEeHA,\"Bill, Dr. Harding and Dr. Reeves witness a cow being picked up by the tornado.\"\ntt0313737,K53sv3l9DB4,Lucy walks and finds June and George playing strip chess.\ntt0139654,Hy37hjPUFWo,\"Alonzo and Jake uncover a huge stash of cash in a house. Jake thinks it's a bust, but Alonzo has other plans.\"\ntt0120888,Nfrk2UdEOcQ,Robbie sings Julia a song about his failed relationship.\ntt0120888,C_SFevIz1FI,Robbie negatively babbles about Cindy and Scott's future as a married couple.\ntt0120888,wAjHfBk-ZeY,Linda tells Robbie why she didn't show up at their wedding.\ntt0120888,lt9IJX0qI6o,A drunk best man almost ruins his brother's wedding.\n"
  },
  {
    "path": "data/metadata/durations.csv",
    "content": "videoid,duration\nPK0i_dyx230,83\ncGTn7aRFttk,119\nLf6fX3bsCxA,76\nzXBPTIjfZgA,132\n0JmETteiVzo,133\nCqXatBg5LtE,124\npw5Y_7wtJmk,100\n_PZ_LyJfYe8,125\n-4Q-MS_oFkw,128\nRdIAtsbwb00,116\nVYQoxBs5N2A,135\nmgSQQjO5pwI,65\nu73HoUZD7tc,131\nMx9z99YJ_7s,32\n8E033uMGU7A,48\nTWqf3iE2Gk8,128\n7keYfMMBIws,112\nIpQkAn4FnkY,70\n1-lFBwn6bKg,131\nOSc1_gfVfCc,132\nYYc1h1Pymto,115\nIhZrBku_eCA,143\noN832LNaq4w,127\nV5xN-xNvwsw,82\nf3tseBsU248,105\nLd2g77JckSk,133\n_8GB76HyNNU,132\n-TzrPYcpPvY,133\nelvtIj_sPwU,133\nOYuE4tFH7lc,122\nXINddkzfTzM,225\nlpwrDEfCESg,132\nqdy5TZDOwm0,133\nzZi8n49RMGE,123\nIuCIhvIAn44,129\nxehwopjgKGU,119\n0TjrNjcFv_A,133\nZ6oLbpQ0S0c,4\nViai9bgo5KM,132\nt0R7IRtvvFA,129\n9enPC37mHrM,125\nqnI0g8RD7Bo,4\n2ZiKO3NtZiI,105\n0N9Fzv7bYCM,110\n8D2TivUo_zU,81\n0nfoP3bmd1c,121\n9j0tqkW7Bd8,124\nYCPDVVLUw-4,132\nxaOERHG7Qr8,132\nmGf4oL6RLGs,132\nBSuaYQdLqV0,102\n7tFLFMyA0EI,133\najvCMC8Na3M,133\nxHrOaF4Dq5U,120\npDcPRvZ9sDU,132\nj19-hpjJ4ok,133\nO1-lkTgl-ws,133\nzBjq9UbpCtQ,115\n9hEYOiPK79g,260\nDebtnaQFX7M,133\nYGlqg2jC3R4,197\nDwOTJvwKKeU,133\npi6SInyE0sw,128\n9mE6UqKoe5Y,105\n8WrFOPPepCk,103\n0VIefkYf2Rs,133\nAJ4edZsgJAk,85\n6ZZI6-zh0GM,133\nYc81Un8ltS4,133\ngnz7BQ7lxJQ,132\nll5qiWa6YDk,133\nsOgO4lPPK1U,132\nxSmmiAl9ZWE,132\nYd8gK6EgpLM,117\n9CKyWqb5-sw,132\nEYKwSLZPwV4,98\nPZalnJDYFDk,130\nYP-rmIcxn1g,113\nIdEekLJJc0o,131\npKN_6Javjnc,132\nipc4KfTrRZs,167\nb3Aq5Vc0Ics,95\nL-sb2Xeqn14,132\nK7vOjKOdMNE,133\n5pzJ6qzeXlw,133\n3cqeNsSZYh4,130\nvmnZ_-Mqb-c,102\nLiNFLOs3BfE,91\nCXJ8c0rWJsk,132\nBpV5wTbvq8M,131\nVrRhpEc9Ivk,91\n02064E1SHtQ,132\nCrMlZldzxSg,166\nRGuY5r-7ta4,130\nEmeHbU_s7Cg,90\nOLhu6bw5EYc,92\n2Q9h-B9OVVA,132\nZvMDRj9jFaE,131\n8LhpYfjGZvw,128\nhg27lxt2IFw,122\nJ97c0nWkJT4,99\n3T-VAi2Xqq8,140\nlJiMlgvygvc,132\nUOOGD4DLy-0,126\nGCOXBnHRdmc,124\nuD2mdsAwJBA,132\nsqjS__9_Irk,131\nW9SemYK9HEw,132\ni4h9xcdtyrE,125\nch6zVPr6lWM,116\nJbNo_tlgYfs,96\nn3_noySdJVs,120\nEinsfcAsUoQ,177\nM-APah17AQA,133\ncACQ2548i0o,132\ng5lJIy5IcWc,126\nRrrQxZ4j7t8,132\nIZGhNReGZTs,128\nHLIVYHitYPw,125\nsNcBUOlGBcg,133\nmAtSvxJe6Yw,147\nFekzb5yWBZk,130\nnkelgV49oGQ,123\nks32K99a1RU,91\n7E8rxZMCldI,166\nTW8ZML5OvXs,85\nCTCkd8aEpZ8,168\nJZtErr7VLKE,131\n94mvgpMi-rQ,178\nP6fVrC-RQLg,108\neSBnFu1YnrU,133\nZ-GoRxX2exA,132\nn9-Wk6ulBuA,77\nreIyMTBfEwQ,130\nYlwAVV3dC2o,181\nplovZLxlpGk,129\nTlfd0Y0SjgA,127\nE8LQ1SmVO2M,106\nfZAksSuI1R4,99\nm9vRMtJDEVU,133\nMoInDyDrLKk,107\np8wvEC_cBU4,109\n76ftznPZmgk,103\n39gtT7pdMwE,115\nDWa1IsbsiY4,132\n9zUaNKBQ04c,133\nDNWODAIBs7s,191\n5y719xX1I5U,133\nisyFunAeYnQ,119\njepTSaMF2ZM,125\nBIPpar64F5o,97\nxQOZMIbnpMc,124\n_k6CZ13fAMo,21\nZKTMxF2PrHM,128\nQHUcubYTt0o,214\ncNLFuTms4go,127\n2nFh-kxiEng,133\nUSGs4XhdI6I,133\nnQunClrM4co,133\nBNCwxQQcXv8,107\nqZmteh2hT9A,125\nqwsrKRo5gdA,138\njxkpgzL06B4,21\nB_DMSu-NVZ8,133\n23ZWuWe2riY,130\n-dzyuUNTwUo,122\n1Jaq36snpLo,175\nw3HklXic1eY,133\nGlXLG_rF9lg,155\n_OpCOSHbqiM,84\nxSnraJOeOyM,130\nvEnbBgByg98,133\nyHox089rkmM,15\nygOrLkyfHsw,125\nDTXWi9iR2F0,76\nvETxuL7Ij3Q,183\nNDW6AQjK3Q0,176\nV67ozonzKRQ,131\nZ2ixl9gb0uk,133\n717gDCZQsdc,134\nBVs5TFKigUw,122\nZ8E9FEaEm8A,134\nqcFM5Xhg8W8,181\niamsdf-VSQI,131\nWRtOCCfKEvQ,127\n8wDlH8jWxYk,165\neveUzWmTxl4,132\n2XuJzaDhV50,130\n-7-C6lSAfOs,126\nrypwboimK5k,138\n-1gCG8m1SHU,131\nKOGjVUa_iIE,173\nyd13zj2PC1g,135\n4XhNhG_zq-A,182\neQ9HJXZI_qU,130\ng4v51XeJnkw,128\n6NbgGhD4tdk,90\nFhDi_WF5uOI,133\nVUsdbeBqeeo,84\nrNOZMZHDVB8,134\ncLmDqUnUEE0,95\n0zVmdCICQok,143\nk2C9QOtoreY,114\nNmNveyfhpBg,84\nl0n2Od6zG58,147\nP9aAc9ibVWM,132\nrpUPWSqadTo,100\nLHrkO46ERP8,132\nOp0qrTGRcxk,127\nqO1-at2DUGU,132\nVGQWULimSCg,86\nHGdt0QR55Ko,128\nFXcu4V-8-j0,76\nyO4oRzCAc4k,144\n2DM0pOmClOg,132\n5nilVcDLNYs,99\nJNLW2R5dYOM,164\nmIJdrHpr3_Q,77\nn7KKfjFRw8w,119\n1JDAa0BvD68,122\naxqYHL-KPRk,101\nqRGre50eHbQ,133\n1BUBVkpQQGA,131\nemVaK5MoPBg,133\nntQrC5iclmI,132\nGB7Cq_W4-U4,132\nC4dkYaeNLuc,109\nsrR56T9-j5M,133\nDLuROR8kLy8,118\nHznAlPzscvY,15\nPykWxPq9JEE,133\nYJnneXfx_q8,101\nPEnOSwKyrb4,168\n_deZCO2ojAo,126\nLlQXhEOzLW0,92\nB1kQLmi0q5U,132\nf5f86alm7jk,130\n7qPmEvrv3HQ,132\nlk1As4QnaCc,76\nOjHsjB_foZI,134\nOd2dajJAbEE,78\noRMqBipT26M,130\nRYlj-btwi6o,86\nx6FDJAu5yMc,141\nu0kF24ceZMI,90\nlDksLpsqHwQ,160\nnOFfrd6bOh0,112\nXSa0_MGO8bA,123\ncysxO5Z-0L8,110\nok-pfhEHoE8,102\n6VUfXGlADjU,133\ne5uhElLMLbA,131\nYC65XWrNn4s,77\n2Ji7Coh4O7E,113\nmM2Tc_tYYKk,133\nV9aRvKzTOc4,80\nGLZXGflTTjA,133\nZh_r3u2RK1Q,133\n5tpVvZo9hus,98\nyIF3Vr_at5I,122\nTyeZy_UPYKM,129\n029Mdp9jYiY,139\n7rN0Kk3eUSo,127\n1Dhr1yiV7DI,21\nRywZwxSQcvo,110\nWRslUrt2NBg,114\nrF1vfMM3W08,248\nNeciZ5_hFTY,107\nVHSoPTJNfPE,180\n5AujBlOtU88,62\nYj-a2zT-r88,133\nIelhpK-eDh0,177\nr9z4qCu9sTw,127\nFc7bVIA-b1k,132\n-YTLGLeKoJQ,133\nD8V0rLDKZL8,132\n4ca0T6jbhHo,136\nLOb8UYWDz-0,77\nxxfZmz7TxSo,123\nnjHGa4f1LwY,134\nTIvNRHR6GbU,113\nzhH9GJ7lpGs,168\n3zPrtRFOZQY,128\nMUQbmDMySpw,42\n_3-cN9Bhxls,230\nxQGzDvZq6v0,122\n7AOct3hvL-U,21\n40cOkf5fT7A,108\nmydc8K7yaZI,117\nBfHSald-ypM,143\nh3VZ6IRrVlI,105\njJiKYmmWiCA,64\n24qcFHAk1Cw,126\n0I84IUKomh4,122\n_frVHCLECNQ,166\nJAiuiipD6Wo,126\n9OFoTABYnY0,61\ndJQGkx5LpuA,131\nzB-hQWVCwwU,120\nifM0qy83_-A,132\nI5TzyLhwKKY,127\njN_ftt-J7S8,132\nR0k1CGlHAtY,117\nwACyqCoTTno,123\neP2aBRb6geI,50\n4Xvu9fzPGhA,133\nIl5lC0E0nqM,128\n25D3SlGLFKg,131\nJInEj95yoUQ,192\nWO-1MybFFvI,131\nxu0p6CtioZk,74\nIypE3rPP4sc,132\nWXDIkldSPqI,103\n9-Kvo3-7OZo,121\n7ghEs2R68XE,130\nrAKR-BBQY2M,74\nWEszqunyV0M,62\n6Vj6Up8OaFo,141\nBoNAEfrI2oQ,171\nk4DsinIrAjQ,113\nOf8JOVXYU0Q,116\nOQrJfULly20,198\n1F-LMCJ2n4M,130\nhLUSwJuMjWo,131\n3l7-8yvdTLE,108\nqlwQsJOKoIo,102\n40CUuyOxUZs,132\nVa6oQ_2-jh8,168\nxoqU0B7BGQI,139\npuXEHhZgXaY,163\niZ1_8kpRnW8,133\nVNQP-pvNK9A,132\n4vOHfYUUCJk,90\na4WffLH9UMs,132\nqPpMWDyyHy4,127\nDG5ZouipJNs,61\n8rlohOLUi9k,133\njavEwwHaNa4,126\nTrxSTI517Iw,133\nohwhcMgHUKs,133\nI1xQMJjTMLQ,129\nW8Iw5W2_bbM,133\npgk_j6ehCEA,132\nP3QI8hTpxl8,107\nAYQA7kCTPN8,131\nbNbi_KLd_Uk,130\nqZubhGcnsHk,133\nOgU8mEFGcfA,120\n4dsgQb3jkk4,122\n3rnomffKi0I,180\nO1p6omIzsuY,133\n20tvG54uZLg,173\nbN3U1IwMvhI,128\naGMCd4SoXk0,133\nrW7WlT6OJxE,129\nqFWptPtHG78,107\nuyfrK4LrXaQ,132\nwpA9m3t6bNY,174\n8RRzvri051s,122\nABpeiNlMOHU,129\nt8yv6xn2HhQ,56\nUsbCX8KU7jE,21\n-Kd5zqw24S4,167\nlsgl848rea8,127\ntJimPUh3vmQ,126\nhSUo-HJ01kY,128\nX-S296ENSIo,129\nc__26Uyp5eU,117\nr8XE2-HpGuk,155\nI0YUjv1u-Gw,125\nlkMilWJJR_U,113\naKgha2AsDNc,133\n0mwMM8VrYmw,133\nJv_AlRfm998,127\noWr69u4tLoc,72\n7W78nWDG95s,126\nXwl5DKs5HL0,99\ndaUvbGlC3CY,132\noIu0P3gXxsI,113\nShCVyu04OCc,131\nVs2DOfnZ2vg,89\nsuvJai5IC6c,125\nbE0mQSaYaNY,102\nTJf7vDKfuFQ,84\nh__j2aPe63w,133\nzMwLa7IR2tk,4\n2RXSVTFM3hQ,132\nGk3MgTTHdLs,132\n08NGebwIr8Q,130\na4wb-xmYM50,78\n6lw33XpYhGs,132\nIVxzLITK1YM,82\nlYGDkN8xPt8,111\nWzlAPD4Ttc0,121\ny47SwwfaTBk,122\nwXnYmZhdm04,132\nQoh3YkxuwVo,132\nh-a0Kx3RlIg,127\nKldCgijNQyg,133\nDS1YYtQ_LLY,106\nnS-l7xvs5ew,120\nSuJOuQ9PJ_o,127\nYXjqTyQuq4w,129\n0I7GjbhDYtM,96\n1Z-MzwPzpBk,121\nQBvJoXAu2zM,94\n8aYUJSDZHKw,130\n3qMNxVVQhzM,132\nsloo9PMVoRE,127\nt5qkPMvpDfg,133\nluylsO8UlhE,148\nc3nJu9SBkis,136\nEqzhYb-Ey4c,114\nJxZHAMfuwsA,126\nGSR6orbPFjo,131\nT7eWdvyCHyI,97\nX1DvoMiJ6n0,126\n20zF8Ug0MjM,80\nSkEOY1s78e4,127\nqGrKwxglKJ0,133\ncJYwpfA3HWY,131\nkU5tlt5wTcc,133\nEKd7hAoXDPU,188\nBg5ll84eQTw,174\nzS9ZrFqMchM,97\nOwzlxG2_8hA,127\nimtYtoHzPJc,138\n9dCHSNdHZQs,129\nJITv11rctGg,209\nnCK7A5Zp9I4,99\n04xSMg03sZ0,144\nLCt7YtB6P7g,82\na72FDTElH9g,141\n4IOwJNyILNI,132\nTfWrCqaIAtE,83\nOFlIZu9exco,80\nsOesH75ggbQ,133\nh5jZBcDev1s,132\nLei-isBr4ag,21\nPlkdsidJA38,135\nf8znwPYsuFE,120\nkXvfBvua7GY,67\nZiO-hWU7IZI,133\nA_6e5AilC6k,132\nUx1Er4tflxI,119\nGUw4Qqh5Th0,127\ngvoBpSAb-vM,96\nBvwCwDf6J3w,128\nJhvq7EGVtUg,123\n76S0ukfD8YU,132\ni9upvWNN3P8,79\ndfhICMh9UFI,21\n_ASByCtlV_o,84\nsBpNA3HWj6Y,107\nOMEv7FPE7CQ,133\nG-_QYRggMwM,175\nj2lG-WtrrsA,183\n9ZM4N1bdm4g,94\nmFj1lf3ECK8,107\nIsof3ww1UPs,168\nsrDyToPqozI,129\ngdJC7j6maRs,131\nMALjtjcdmt8,109\ne0qpJCNLViQ,120\naNR8SIVnHTY,125\n1KCTiqj_-tg,95\nUt_lRQbeQcU,132\nGJ1KcXeNstM,102\nY6CMcllU8J0,138\nlOaaPz6E6ms,129\nbnitvEUDaBE,133\ndcsByxGdYO0,108\n5_npi1WISDk,162\nFOzub_ghAbM,129\nev7an6-CYpc,132\nxvi62S5Ou_E,121\nPnFxS6a2aPU,132\nb7Dxy34dFyY,105\nT7-sw9PhQec,156\nOkdLWuCRe0c,133\n_c7cV5_jU5Q,133\nFM_KxbSOjJk,131\nEN0JaJN_fwU,69\nXEQJU3VPjHU,128\ni1Nh_3JCFj8,103\nfpLdP56W3do,127\nyoFS6X0RKkA,102\ncHEoEuY_mTk,141\neZ64IFqMQuQ,111\n4a55PnIKoz0,87\n-e6lEsIUf3U,124\nLBP8QDlm6OA,121\nrxKp6tH2AKU,131\nQSVX6S1zbjQ,75\nMUFqS9iKzHw,145\nwk34RXMFgM0,119\nnNLk8GMdFd8,116\nE2syhaH4Qgk,131\nPz3SOdEw0LY,86\nSMCsXl9SGgY,132\nX-w-beB9r3M,135\nuY9VcYt2bKE,128\nQfrPUNMOS6E,127\n9Okpnw0Ktt8,121\nVG7JAM6DQnM,133\nw71n9tHYuIw,133\n67cxJ9EynG4,132\nxaILTs-_1z4,112\n4gh5B_Uezmk,126\nk1_OK7cug8I,131\nyZvx9PF3NAU,127\nypf6WHYpeRU,127\n9bvxJlLfzGw,129\noJHp0GrlX6M,74\njsL4-BxsZjA,69\nWg3iwI32C5Q,77\n2djG7snKS8w,133\nB1Q2f338TJU,131\nkXuzMpA9MaA,71\nvWokC4nx7PA,110\nJl4L_RREcpQ,132\n_BMYVDOOQ0E,130\n5nIwJTUMlE4,110\nhM33ekZw3yQ,129\nNLIbv_J5E0M,110\nUa3NXljreQ4,132\noZQ95ON2X-s,133\nKdfwchgYp-U,140\nU-JAuw8FsrA,102\nJhGjwr3rLtc,131\nKNmmwUDi4I8,103\nqkvQOEJKHNk,180\nLVkOD1Uy_9k,133\ndvT333RoCrw,131\n4YdP5YLuJDc,126\ns2U0dL0k9s8,130\n_i9YzGZS0I8,129\nYOxfSSv14CM,132\nr6Lf8GtMe4M,172\nnAq5GhiMdSA,111\nCgfw3cjfO6A,116\nFh1ZUliQDFg,174\nJly4dXapR9c,132\nC2NxwHIDTUA,133\nHWe802TQAG0,129\nM2V8jSFKVw0,217\nS4YcLymVzXw,132\nrcgygxfcywM,132\nKhfsAokR-D4,101\nJwaw24W2bW0,127\n4t94x0N3AoU,134\nfuAo0q0a_Ww,180\nxWpMF_EFqyc,131\nB3oSlrpSf8k,157\nqbIEepu8Z4w,133\nu7kInn-7hcA,128\nfhUXu7x66BA,129\nhW0V7kZHRSA,128\nrWYSBIpb5aY,21\ni7hk-TupE5g,133\nAIPb1OMTZ0Q,97\nnRSaxtoy7fo,114\nwVTFBeiqCSE,120\ndF_BTmsWZXs,15\nw9yRZoY0stg,134\nMTGOnbJkILg,109\nDknDCyfSe8Q,136\nvW4TOsL7e3M,119\nMA6g7AEH_kA,133\nOfifxt45nfg,101\n_Rnaa9qtGgs,130\nvjplEkEo_H8,214\nBL-Jg7CyqLQ,127\nM6gOHxwffBg,111\n7Xuw-XKP1sI,182\nD8aAHxbYCCs,106\n8z7YDo44-xE,121\n-WOw8ePUCEo,123\nd51N1kUa4lw,128\nHynidUYa_IY,10\nbYVsnJR_f80,157\nfjzcBqz2Cpk,127\nNd8HPu7y8qk,119\nLkBmLiDPbxQ,108\nS8mfOyCySKg,133\ngec4_X9J2K0,130\nHvDFdi92GUk,21\n3VfuSHP-57o,104\nD93lQnQlJcg,39\n_8LrZ4NhPmk,124\nEG4CMYnxQAE,21\nH-5mWBsCOaw,114\nIP0UFkE-Nng,160\njj5CG9kzDYY,112\ndKFZ4T_Y9Pw,72\nHWAQ8rTBLUk,131\noqCHL75LG3Q,131\nuXyvjZa6x2o,132\ncM2U8v8OuLo,125\nb9qMqGTi1uc,126\nf3z_ene1G6c,132\nmFRhtRctzBQ,21\nAQ0P7R9CfCY,131\ngbbbs1uWxvo,120\nnF2xGs2J6Gk,80\nVcVDBbEpQx8,131\niClIIg_YtAk,130\nCf3YdE-vMyE,105\nOf73UiXUvjA,123\na6uHu-9c23c,96\ntvIE50OJfxM,130\njVxyX7FcS4Q,109\nIWe5PTNQ6ko,131\nnLeZGuvX7D8,125\nwFSWmfqMp7o,126\nMXYUFlvaGpk,78\nZpDnHh_JmQE,64\nTQebazOCP4M,40\n30QzJKCUekQ,254\nexE414Mp-gA,104\n-TAp26oPrvE,116\nTvFwTMU0vyY,128\nQsXsfrk06-I,105\nIBUOACCdZi8,136\n2QGI0KdwW8Y,121\nKWKu1BbZhkQ,130\n8NFxckpb-CY,61\nGjB8z0Bvi14,170\nQKEMn5rTRL4,118\ntYPUzX8KTXw,119\nOOBt6EktEVg,132\n5_B-hXtddxw,133\nYXmD6qdDCDE,104\nYo3qKhfO_V4,97\ng6sSw9vrO0s,80\nIXdycEK_38Y,133\nFj7KNHxzYjc,125\nG8c6j-LS-ZI,91\njG2FwGoAPNY,86\ni8oGdak7vN4,159\nOeE1spoom58,143\n5oOK3e53elo,133\n8BgcozieWuE,132\ntvRH4kLj-Dk,83\nGKh4VG9YQ1Q,147\npl2HDVRj_4o,126\ngW3KZsBwQzw,126\nKek4f12wu3o,129\n8F8MBp-GBKA,125\nK-Tad1Lgw7k,103\nVKaGKi9OHQI,99\nIzr-5yitrb0,123\ndLLkOjKNanY,130\nTbdjQ6LLFsU,151\njd4tpvAcKYA,161\nWxy1loV9jqc,117\nENkEuLrzmnc,118\ndw4cZQicaVo,71\nqIOC-6zluBQ,110\njr_bZ2gzRIY,126\nPVuB1pBFA5k,133\nr4SF22qFxbE,130\nUCehCmHzBzw,116\nW1p7SP59Vkk,123\n2HgE2gZhovI,133\n_U8k98LPpjg,211\n6J3zkkpEkWg,152\n0eC9f13FIJ0,119\n72R97Mzaey4,132\n0s_EWjNNgWg,164\n-gkBCCbycmQ,132\nhfW-fzTbpRg,117\nUU8yY3gkZZ0,133\nV-SMOiDv5pA,132\neRBI1VSO7hc,130\nKUBIJLp4W2E,21\nOuH_qx192js,129\nYetxvEnpKh8,133\nqKj2c67Ht98,116\nYgqgSaDCgC4,148\nz_eg2OjO6uM,147\ncdkS0TgEG30,133\nRAvoR20o9s4,133\nQ1jBnVYmvgE,20\n6SyjoKS9CXM,142\nz5S3e6sCBV0,143\nHL_VmoAOZtY,134\nXkGVykfJIts,136\nPn_XD7jDwFQ,132\nurWMTYuDxME,133\nLntFGGP92xQ,83\nrtqgJvhrswY,112\nQnyzZbrrh9M,133\nIl1j-dS5dBs,118\nSMQ6aga9mI0,136\n_AA7Q5bWirM,117\nziF1CU69IEA,138\ngHfRl_ZjHj8,132\nxrgGccehkKY,133\n1IZtDOuubT4,129\nQL412_xWtT8,132\ncfDwQbxRoEo,128\nGH3WNYCuRks,133\n6BDzGP6HuGE,133\nRuw9fsh3PNY,146\nG9puHtVcU5o,104\nPZPOGfNlJyo,132\n4Ufv8hcJZ_A,160\nktGwZKWClZg,75\nxPLtxTJnVOY,103\n9Dka54jH9po,131\nJU189rHBIIQ,92\n39vZZiM3kIA,122\nUOdl87tD-58,124\nacO1g9PEIBM,125\ng7QBS0O7gT0,125\ncYdScH3BmBk,90\nJ1rrdlXZ-pQ,133\nSJeCtS4D2HQ,133\nalziIIbUN9o,143\nSEaGeyLjBUU,127\nIqefatGKx68,130\nASVUj89hyg0,92\nsZ0nA_2qOWc,82\nYCSbEzI7Nz0,92\ngKGmO34XgMU,132\nCx7ip9cWKJg,102\ntBNjWDkNbms,119\n4TSoSMLHTi0,133\nakYf73cUU6U,117\n9DlWhZ45k5w,131\nvVjfW-P5yZY,94\nuxhJ_E3LuNA,113\nrs1V8Sxp3ZY,134\nmjdgDECpWr4,136\nf2ugRkVMOuE,131\nvEv9tQL3b-A,132\ne6omnFC9jC4,133\nVSjHX4LO35c,106\nzstIMA6K-Ws,107\nH7XEyuPBE48,112\nhHZs6i30Xr4,152\nSvVYUW8r_Dk,146\nT5d-R7FDG7s,120\naTPdWYo9zhQ,132\necsPydUbYGM,133\nlAhQbCN-Zvg,120\nRxe_run_cIU,35\nQSQTYxhlIog,129\nYiD9zhs0Lt8,166\nGETldyxkTEI,133\ncUQZVnerwI0,130\nNCqhkbAkzug,127\n-gD05qjgKN4,126\nUlsRjhvfKJY,130\n1fscFQfphvE,130\n-I5e_GXU4Zo,84\n3Bm1V7eZBR4,132\n7H_MQ4OSwPM,74\nRMRT3_djqqw,104\n7WqzJvhR9Fo,141\n6jBoRcyfSlg,31\nbIbxR_KN2TM,124\nmjbxL_v2DPk,100\nWCenGKkj3YQ,127\ngG5kz32ot20,139\nZAMQGIx3JKk,130\nnukRk0WMspo,174\nxCI_stZgRHc,85\nKkLV3MzJM_8,122\nWEScYukcD1Y,108\naJCCUdK7PiU,103\nqb00B8U8UBw,131\nqcP3rt5etd8,65\nioznxKkY_IE,70\nurdf4g-LXk4,132\na7K1xgoi_c4,77\nkVPIOjjbIpY,147\nMGy5sF8PhRQ,109\nuEJ_Ak34ias,128\nJ97F53CAA1I,116\nXAWdzV2Bafw,131\nLVt8wEpPgPQ,129\n6uaqkS1AiS4,120\nIqenc7PJze4,121\n2-oMhYVEk8w,124\nv-OP9DnMN-w,132\nDsLk6hVBE6Y,130\nRD6BaHKMTXk,130\n6QcrQ_TIoKw,127\nqZIIx-X5Bbc,129\n9N9BwAElBiA,132\n3PHLmv4Zzu0,112\nJpE65kS0aIo,128\nPBF9pOAjXt0,130\n3AD_sQbn9EY,121\ncQA8oY5pwJQ,256\n_lykwQIS_3w,140\nFs1k0EMYydY,108\nmSD3SFHaqwg,129\nwYMfDxQdnUc,87\nwf02wZ_Okw8,130\nx1brwiNhp6Q,131\nAkl5BAnhh_M,72\n8tp5RSId2g4,124\nFiAJpDiz6Kw,121\n-sq1AYZOWz0,127\nVfXFbuW47kA,133\nvXLLH1eSOZE,114\nWgLyqfSdbDg,129\nXGQpnngBL_g,140\nQae03boj7lU,129\nXGZ0K5Rpacw,116\nCCPDUXbLqVk,36\nNaKBQWLRJqw,131\nmszANpbvdM8,179\nGSw9sjqYK_I,247\njVLk2tqreto,146\nnFYtmrhEBZc,118\ntlSZa51g_rc,125\nMZhNDpll2Vg,179\ni--0u4m_zZg,124\nfqYue6YJVSc,20\nsdNPmpfgOMw,92\njqyhGCHT-v0,74\n5wUu-cKYMgI,120\nVs2Nq6isib4,133\nRSEMLDUOqe4,130\n2Jq7xgVqPYA,127\nXMmlJnxP7Y4,157\nar72efkbkSo,131\ndwecZ5D3tFY,128\n03NoI9KiZOk,121\n2IVX_4BG7m4,183\nzQLLIxNky50,118\n6u79wLUXGPQ,104\n1g82D68N-ys,127\nkSyIRLpdmlA,134\nTfGmV-el44k,126\nh_N5IH-bWNE,123\nuDr8qT3BlHM,132\nlR6vy0i_rRU,133\nX1JIzLmbkA4,204\nsKrqOTg_FJY,103\nA4Sywg8Yw4Q,132\nOXpqA3BvLLg,127\nRineREyWP-4,133\n2nChsqAPyHw,122\nZ6E9SQ_ZLkw,129\nTg4_lfm5VrQ,99\nTNsEK_IIs9U,104\nOB4ppp4EAAw,109\n-Ixi48TxkaA,130\nI4ktnP8eOOY,89\nfbmyMs5HAR4,141\nE3LODyZSXT8,85\nwa5asCQrdPE,133\nvLAQiwEGGKs,132\nbW0aNTB523c,79\naWinsyIVC3E,132\nBi2CHeMhNyM,98\nR1ejcTtTPTY,162\nNRjWEE0hmjQ,134\nScMlNpnLI3U,107\nceTBcVLeUtI,127\nrYjtudWe7O0,132\naoZDSctyBE0,116\nW3HDdYjGDzg,145\np7zF3vZL-4s,126\nYSQ_eohNRrM,131\nqHm2lHzV7tM,105\nkRWvfBinmWw,133\n7qVgjGI6Lsw,54\n3_dGBLwXBIE,124\nlh9z3hPGqgM,132\ntcCo38aP8qc,133\nWwoxu41UkNw,122\nnxTEOyfchP8,109\nFIo18XdSuLs,133\nTSaB7Oltgwg,123\nrm2NO3Nr3hA,101\nFGcla1_O220,131\nfARjlj6q1uU,105\nojiHA64n6iw,109\n3Cp_-nl5jEs,71\npv7Y9z9ZvR8,99\nXYZ_oLTFzSA,159\nUDqKtqsOwBs,116\nwLTKQ-uXH1o,49\nM0TjT53qpFY,131\nsgzxcBufwS8,108\nBSBKmD2TRow,129\nKZrcqIvvB_0,130\ntqjyFalTkw0,130\nU318Nwim78E,132\nkHFzcXAU8hg,132\ncZwdCa0ynEw,105\njiP6PiKJLUs,131\nMAzasda1GUA,124\nt1x6i73klIs,115\nMCo6TtUkCWc,123\niIeyS_5sJHE,108\nZWeqx9VP2zE,73\nZjWmPRPNWKw,21\nG2un8xvArsU,128\nfoyloa1KiVI,126\nrkuhTjnuQZ0,130\nJrlQ3NAcPf0,132\nDkj-8VuWNJk,91\n3XK3y_S1kP8,114\naf_J2e4r328,120\n4ImW1F6LyHE,133\nLg69Gwv4tOM,119\n0aMQUngLy1Y,206\nftst7XzK21Q,51\nxPulA49aBZU,132\nR5SlDq1oRYA,133\nBCHi6DrWgjI,103\nCcPqBfuXdCo,132\n1OcqJdBrRpw,132\nnDbBWcwu1jM,133\n7TBwFfjXd3s,76\nmW42lBPbuTc,128\nfnF1_aVlIio,133\nJh1ujB4gFv8,101\nzXnWUj1a8Ss,87\nd7pioagkX5k,96\nM9yS_RvQ5AY,130\naTsjwO97Aow,132\nMsSPAEtYaZE,110\n1U9wqQ9a8GU,122\nLoT3AimKXmk,131\ntenCir3A3cE,128\nYOO8a-wBTy0,142\ngKGOG-Pr81E,129\nRtWkewqIFDM,131\nWS93LMcRGRk,90\ngvJLNa16cdo,133\n6zIWcCvQNqQ,129\nsheRsZ2HOYI,133\n-nkxnc1C6rc,133\nki8KblCCOuA,120\nEL9EJL3O7bU,107\ntiIiyG2Yebo,115\ngiegMz7BBPQ,122\ns5XdRd5SQIw,132\nZDgFAFQGZbI,124\nb9oREoCw3ew,132\n-FGNt71n2oA,125\nwFSW1l-Am_I,91\nqIV6K8OOvYM,79\nAD5N-le_1es,92\noXMUkgWoMlQ,73\nqDJg1qnedF4,130\nTUbgKkn9qFw,159\nA_lu5jmaUbU,130\nNjlzpbwMsz8,174\neh_vTiBMvpo,180\nZczgtOsK7WU,117\n0EKDRD2sHI4,100\nUJ36_9oVTO8,97\nR_shARjqjLA,89\nPu5OjNuJl30,178\n9KwuLlQrkVI,135\n-HTF_tAUtkQ,129\nIEfj3lH-scU,185\nrOTyj0-PRRY,132\nmsKXGrgvzP0,116\nQ1WdHuNv1uo,131\n1dqc9SW9OFI,121\nPJo7WdHSxoI,131\noviA5ncbmc8,139\nLmZV7WtCRi4,138\n1Q67bMYOm7E,127\npcMXFYqwPGI,132\nuy8_ARH8yyM,133\nIYju9ObPTTw,113\ngLEioQymzKc,101\nIwzcDydxQyM,118\n0RWk0XTaEX4,133\nO1fxGIiCt1E,103\nHZCaSyid4m0,132\nt209ljjmTqg,129\nmPoxI4PmAl8,115\nC-Ad2a7UD0A,132\njowNLHQCAAY,69\nbLjFBMuBc68,84\nPhBZ50d6Btw,115\nd7c4TXqkMso,118\nptgpK6nH-5g,113\naYuatR0B8Uc,96\nrhQ5dWLFLPM,114\nye_E3_ik9gQ,126\nPuFTYd0b6n0,173\nx0yNzsNUoK4,117\nnTBBQQRE0Z8,145\nHbdxvncHvCs,135\n7hrG-FtbWsw,125\nYdiAV1mo4ck,77\nhMW3GQ2x79Q,132\nrku6u5PmiZ4,107\n_fPBDSFxGq4,123\nnHpuQMB2pVU,120\niJMYIXoFGcQ,132\nYOtz3kdBKW8,134\nS7ZhqwAzKTQ,110\nHwHADsTOVMs,101\npBq_lpX9LTw,112\n_W5MVZjoNwc,132\n45wce6oSr0M,104\nCLZUz1TwsDs,133\nSJB5InL3g7I,132\nyvcIugB8yt4,117\n_mwKm8tpz-M,131\n1W4y_8Eu38Y,90\nqYufeLaIggU,133\nd3P2O-Up78Q,119\noJ3bzg-Tvt4,116\nq7QxVddVEW0,133\nhgCr8TOxcCo,133\nwRLLMDtKPvc,111\njQ903giVNAg,111\nQJYrz4jET9M,128\nqjbkmhtAsJo,133\nRNRZxWxgQlg,186\nbZ0jZaH48b8,126\nUnSxnVp8FzM,134\nfp86WZ7Jn5g,115\nsWs843kQxaM,132\nOXcI5qu76jY,133\nvKePn-57zAA,238\nMeypYa863r4,146\nQ-_d7CI08qc,129\n3rd1U7VpPgI,4\nx9u_a8eEPlM,132\nzVeJ5F26uiM,134\naNUs1A_sUCc,122\nBxFaosg1mV4,104\nTernps0JFwo,133\nRZziZRbaCPc,126\nl7unT_lKtGk,15\n1LYn1my4jbc,112\nrtVhMrgtcq0,109\n2KuNMLOKUXE,131\nx1BpKIb7Ces,131\nLk9wSrZ0fWA,133\ns5jDTz07buw,131\num3tlxmK7Cg,117\nAqqc9H83ECk,132\nJvVSTmfQJyk,126\nYMhAvAFZ8js,130\nAMtKsDnOw_0,121\nSY3nCdfnsCQ,49\n6QYrOTw1Y4w,130\newGC9K-7NXg,133\nVpOmvE4sLUY,132\nbOKID-aX3z8,132\n5LZfv0tLZKE,132\nS7h60nfyg3M,125\nbWJkPbBOXL4,132\n4EfmKXE-Li4,132\n9CIAkk-YENU,130\nLYtSsBCYByk,102\ncvakyq_EaWY,84\nu3A8DoRXiSI,132\nXARAo5zXJsQ,131\nZqTzBhLdJO4,134\n9hbBpOHXAkc,149\ngHfTsIMdlPg,72\n5djUDJaY7Ig,133\n1tZ2EZXxU6w,130\niRrAI8tl8d8,130\nTXZ9nnOteV8,119\nZCYBYZDrmWk,132\nZ18eK57wD3k,96\nHHxezNV6ntY,133\n_vxVcxYCyE4,122\nt0Yf_fvD-lY,133\nfk2MU617-Bc,74\nO4itfvSP7-c,191\na6oC5iQB4u8,132\nIBeMUoMTeZo,133\nqU0H2mmgsjM,128\noK4FZ3ks17M,105\nWje5oR4NqYI,105\nuxvN1tNASYo,132\nCwowG9t4bPU,133\ngAN-yHGtbY8,126\nXGgVzfEptX0,129\nYOcfHxXt_aA,111\nIvWyoUACISc,133\nJeeZA4B1qyI,131\nhVZ9AGQL_oo,103\n-NW-w5Z_vpk,123\nMRmFis1ZxUE,132\nbQzh5ugYzPg,117\nmdYIqSZblv0,107\nffR1X6gndvo,132\niZxNbAwY_rk,442\nte366vMoW0E,127\nzCpJ5qcmPnY,101\neAJLWSg5PIY,131\nQecVEAGoQ4A,132\nu0ttQ8Dn7LM,178\n-cOOPGQGqh8,113\ncB0p96nOXjo,133\njw41pJtU6eY,127\nMMiicN9p8a8,133\n9z6_GAPIkTU,129\nJBLwuC2gHVQ,129\n9frZAZs1Cqo,162\nHGCOxt0M7cE,131\n6w6aNHXW93o,133\nwwe_yos_-ew,145\nLmCGd9zuFTs,117\n8ZYQejxdHdc,131\nvXmHNYtFll8,122\n3CR_U8066OY,129\ndUYCIwyMZTQ,125\nR2n0ZDq1N2c,133\n6zlY2XVDl0E,73\n4tTTXKxHcKY,133\nD3tnuA1OazI,91\nM9MvIL2FDaM,122\n7sUwnda1FUs,131\nFKj1vfHB2i0,117\nGa9YztTUYaU,133\n-JeKHhnEcw0,200\noR_XFDHk0Kk,134\nPRKag5krnfU,133\nRZ-__QD99DA,132\ny3zcF3YvK-o,130\nbXRv0TjJQZ0,104\n50cIB7qKfnk,82\nFZ1f-u8RqBU,105\nVlBUPtKIoHo,125\nbHoYO8b2xOU,21\nYaLewAfBoU0,115\nh1KasQ7pdL4,131\naM4Gyz0kd3Q,121\norGDoXo7xKA,108\nIAYQUTYc_tA,173\n_lSzhjggxjI,129\nZRJ_tgwyLUM,110\n0S5lIhsh2Rc,156\nUBMs3lfRim4,133\nzzjFcjSFoqs,133\nDXRDZkTNEuM,122\nXObhhoFp6G8,83\ncgogH0SylMc,82\n6nvQySlxSWY,132\nPRximULrt4g,133\nG5nY_snMhic,99\noWuYilt9hX8,133\nGP5MbvcXb0E,106\nlp0FOpFdWi8,113\nk7OWfTv3Xr0,130\nRSvx75Md5l0,204\nAr-hnj5Zsk4,100\nxPBBnS4br9w,117\n89lwQxQm5co,62\nm5aE6rnmIwg,186\nYzPOjXIwbu8,131\n2Yu7LGZcPus,116\nfQJzgovGkSQ,170\nHIf2wdbacpU,79\nkZGlMOfzhC4,133\ngqxV6mOE2L4,164\nX9mTMZF-CTs,155\nV4aBCK2UWpQ,120\nm7_LwdyNsIQ,109\nJcO_Cs2WZLU,127\n4ZOT0aLogWU,131\n6s8ZEFUSYAI,131\n8kiNT3_17i8,112\nHZJ7Y5JooZM,132\nIYBAPVjJykY,133\n27gWbiG9w5A,132\nb0dtzloyP6k,113\nJCLLZQFyGGM,75\nUBbsHeltzEE,132\nil4NFf0V_HQ,77\n8N6q0Yprfwk,67\naPElaYUCTmA,124\nfUxg-0j1Ijw,130\nrILBK11XLA0,132\nNH5fod3mC7c,97\n6XWpPwp8p_0,133\nBjbnFg5KBwI,130\ng0mHVE8ebqA,84\nFsqymfl2Q_A,129\nQikcO8tlmOI,144\n-Y3tZpAdWTc,127\n5UnFOqWJ5SI,59\nVjlGwSBvL6g,131\nksFNCZ951Oc,146\nM8LDQ6M_CBs,133\nVf2TpWsPvgI,214\nSZDFWDc58TE,117\n4hgt2hCDgr4,95\nujC4W8hJ4mg,131\nU6uNt6h3_bM,163\n_56dNRLXn8Y,131\nMxtB_Ri0q_w,117\n8JkLimZnZAs,76\nWdehPsCJab8,122\nQA029M9LIVU,107\nzgEYrXfWhWs,123\njD4Fh0LsvjM,123\nOILU3oEYu8I,113\nUXCzmFHm3EE,132\n32XOkSNoXdE,118\nQ-xBDej7O6M,121\no-Hcz6we0mk,131\nxa-P9llTLM4,133\nQQ6SadUAXWQ,123\nVyMHLfAg9bI,133\n3GG_4UaCD8E,133\nF9fEIstp82g,126\nyhaoJxQpRg0,149\n_r-R-b72rL0,112\nFQunyqgIksc,120\nk0tc08W_t-Y,85\npS2a76BS_bA,140\n7r_DI5X5ROs,131\n0R1F6r2-ngk,125\ndQ0sgbvSQAk,127\nFYh2_trJNiA,108\nY-N5lfNPLnY,117\n93uAmv9qwNs,104\nWPPUUvcO43A,124\nLmiHjcCiYwQ,129\nYGFrKow2KfA,85\nsmtDfh1TXe8,88\nKNip2ZamrMc,127\n9oDHw4wwTQI,102\nXAm-zfxcktE,118\nNcYbRZdgLik,139\nbANgFADltvw,128\nwAE0vlaKvkM,123\nLwvvOrYPcuM,132\nNGceQLxvFNE,131\nD4QyCdRvXr4,113\n1iFQ6IvEQXg,97\n1hMMUJ2Gn7Y,133\nrFXajFXNWQw,133\n6ygujqr_JWc,132\nDTJii7bLit0,94\nxwRlSxS2azA,130\npe8vv-fGpWk,69\nyPbgAbAimoA,133\n42sANL2ap9A,181\nJoNeXThhiqs,90\nlQCPntZhPPk,112\nmFBIlYRQBLI,132\nuvQFoM1fj0E,95\nDhGaY0L1lLY,84\nBeRTEiGRbw8,91\nqC7yIu-ZQZE,72\nsxtENaaaPpQ,121\nP749Vnd3WSw,133\nBuwF3dRJiS8,111\nrWvIBJO8T_Y,94\nUJ9Q1b1FwKM,130\nDEHpRuG-P94,80\nAOKzlx8p6yM,133\n-7krYJUfFv4,129\nK_jwfCn9X6E,115\n04RW0CPquaE,85\ncqlk4EfEDJQ,110\nwx2g7H8UvrQ,133\n-Ml2V9Mos-4,81\n2LWGe28axmg,43\nV3s3OXOzoH4,115\n_ewnZCc0imw,133\ngvbI2bHohQ4,132\nPjBQfqlstnw,126\nQC6Sk0ysBm0,10\n2z4o-jBlqq0,85\nESjSqiHhL0A,85\n-jdRfe6f9YE,32\nc9vl9Rurcc8,133\n2vL7DtW6wGM,177\nfniTZP_4V1M,106\nJMa1f4jyBa0,128\npAs8uvKNkcU,112\nDPksJcC1e_c,133\nNpI0s0ky53I,133\nC-DCupYm66Q,130\nvXsKVaJTQCA,129\nCmCNWoo1TD4,124\n-sYKI4A3uhc,180\nyu_9eQXlsVQ,131\nrUmzIsaHTY4,24\n2Bml42cWPpo,91\nnic5WxX4BCo,110\nAgJE212GTcs,133\n2nmGS8rVuIM,242\nAJqxvDQIwIE,21\nonbiOVpX0_w,133\nn4hHWb2UUQI,135\nsa2TE--j394,145\nqizUajHk7r0,139\n1UeNQlmxEkQ,115\noFon0yFgldk,172\nZ6bU-bOkm2Y,193\nm6NeY3rTpJU,170\ncH8W_cTQQvw,126\nJPHzPWffUCc,62\nFY2kKLvUL2c,131\nZfCZwP2Qe60,93\nnIJQOFSGKks,95\nt-T4RYRUNWk,131\nLhbHp9ey_sU,97\nOCXvMchSYX4,133\ntjYSxlqLOew,131\n6G7J6lZDW3E,133\ndRwiGgbaM84,133\nOboAFE4Tr8Q,65\nGrMoki4-weM,133\n_RVQuAICxc0,84\n3CAQ0iZKP08,218\nye-S7zxbv9o,114\nsLECDbDoXaQ,116\nmoYhss9sP94,132\nZFt3xJ6DvVE,124\naZe77wShCbE,132\n7sQ6ktZxmYY,133\naTTbCJmc3Cg,114\nT6QO7UyB5tI,133\nzQydroqGFbA,133\nJuvJl9iwKb4,133\n5rrDUgMfVuo,225\nB0FZhLeHy7A,132\n_8s4_Nabo4E,131\nKzWronMcXR8,125\nEGX-t_U6vkg,128\ndxsVIClobT4,122\nWFsMguGrUVo,220\nQV6em4mxnE8,125\nkBJD6iSkqxw,101\nBSy7Wzj4OCY,116\n3hcmGG6VUsU,130\njihDFIqNz1s,130\n7HHCL1eRdVo,129\nwMvTR012Dmg,133\n8yOBCGwMpeo,133\nSmFDafzmklA,126\nw7mr-fVLqis,83\nlChJz2DSpsE,133\nsehGLkGe-iI,125\nT6QGAOSIE-o,128\n6_Onrl4g6H4,171\nomYsWxT4Mbs,125\nW3-UIdApbyw,231\nfa1DuNjhWOk,130\nWgBb0YoMp1g,133\nMlRFw1CvPd4,134\n06yqAuIbuVw,126\nSxgfSDgHGYw,133\nK8qQO5DvYhE,128\nd-nJUGK8ABk,123\nFXZ3JnwIph0,124\ntpyZHmGRPuE,128\nx5Nu0PPrI-E,128\nrCn7orvs0Ws,170\nH4XqH0FHGc0,68\nMTX0Ig39Nws,133\nSHdKVf4jA0c,112\ngQ3YdU0WlPw,123\nE-dMy3oJGT0,70\nI-xbToSaaPU,52\nWA-A3QhXx30,171\nZWSHjks0ESI,133\nnejXDl9BPbY,133\nDsKfkkrTLMg,127\nQZq0zhzgres,115\nJWUrJ-zH7fw,133\nVWJfmCFQjAk,133\nFIaxR4Z1jVY,119\n387KRtYq2mE,133\nC--iuM8NcQc,133\n5R7pGpChUVw,109\nGwkD7itIsCM,103\nwVpIChmQ7dQ,127\nZKIiHz62TR0,91\neensusNo-jE,111\n2VKpd3XEbD8,77\nCf3RfidFKBw,128\nLwioGjicbRw,132\nDpz8L-thRmc,133\n3vi7043z6tI,133\nDPPoZpw3NOg,126\nZARAldXlSyA,215\nfnl5_3zT1d4,130\nQD1FH9vC-q0,132\n1yLt0kzJIUQ,130\nu74DpEZeHbg,113\nWkFdij3Wr9M,139\nOFZS03hWtlE,122\nBLHc07GYSVE,85\nFOAj7BE1VEg,137\nkROlgEPoSVA,133\n1MnPXQSWAJo,103\nwOzRG7N8_Ic,119\nAYfAyTEVnVI,131\nB7FkLh0uqdc,133\nIb8uNldNd-0,179\nSoQzCG8nTbg,124\nlufECeWtN34,112\nx3jT6tQ_gJk,124\n60ldo3xGfGY,177\nCfcaik7bDyg,135\nYE0WStB-1cc,119\nI2UTg_bYu68,131\nBQO5Xy2ebhs,129\njrH2FZC1Z_U,149\nv91LBP6w4aI,131\naqa74uEbtDE,131\nJMWhU1FfqP8,132\nIvPewzBKqYU,230\nP38cMPv-Nag,107\nysIsqzXZyN0,134\nuw63_YyNsF4,133\n6wa4qfLmyoE,121\nsdfDF8OuPPc,81\nrBZQHST6BQQ,130\ndOzJKThxL-I,21\n30shqA196uw,117\nNnWIRGdMR44,148\nUvMusa65chI,79\nwlhtHcN0wo8,114\nrhNty595BeI,84\nZ-Vnk_VTtzk,100\nrGR6aO4JsH0,133\nkTZLHA6zbnM,97\nzmxWCJ8iM_8,105\nabhF5CFFW4s,132\nq-StMfE8NrA,133\nLKR2bN9V2Bc,208\nk0aqHfvHcsc,126\niGk8yvyixvY,185\nKe7vTfbeH0w,93\nyjF_gSu6xCQ,131\nEaPpa-eoxi4,130\nKf5iT31fZN8,133\n5mAO3eeRP84,124\nuJMPom6-xmA,128\n0awcEOEug5c,116\ntQkTtnCV1n4,106\n_UZxXUwQX84,138\nnYoAZo7L2w4,153\nyLPFWQ0NcZo,129\nKRhnyD4ZLkI,132\nncOY7vtsY8I,96\n21mtTvR21Ts,125\nhFON-hiGW8g,118\n2lavod63XMI,128\nnjlI82MV0gk,133\n9aPhLF7yfU8,131\nm_7Bm1gyq2c,132\npz0R9XJciO0,132\nIYuknBe73ik,109\nsOpJs8Licp8,135\niNgDtwHreZM,133\nF6AdQghTUis,79\n5PPQutDwpmw,131\nOmBxRiaJzFg,76\n0iSD31ToSC8,120\nlDduI2NkIsQ,82\niONYYY7lHo4,45\nxTdNSA_CWvc,147\nJhE3o7EwmEI,140\nA75AgrH5eqc,121\nlnf-VO8gIGg,133\nBcW6m0Rg1-8,131\n8TG4sr_y-Ys,132\nfMI2u6Jp1FE,130\nxaBIju-chWA,94\nAcuaoDtYcUY,129\nfTb9XrbAMRs,133\nCKJcpp8ff44,132\n7v6zdWNRtLI,110\nXoW9HJEDk5E,132\ns3TkMEuXaqs,72\nJrvr-VIymgo,133\nRKBZx9XsCuE,99\n9Jwm_LHAwVo,133\nmbPEuV3NJIg,114\ny-TUmx2Ow74,79\nRVGyvDhPE3k,128\nM_ejjr2-4WE,129\nQbLPQWZWXjs,34\nQUYNJvRn4jw,117\nojgy7kyNp5g,128\nwOp2t0IKnUo,106\nx883mrwYjDM,125\njqdKv0Vz0sU,117\nbuoodeEt_hM,151\nrnlyf0wk0ic,154\nEPtxN1YoQ3k,98\ntX74H9IuYdM,70\n8T6_bpLwTrc,95\nejJIihkZTGU,127\n5sEZmMeH96Q,157\ni1lkrSFlpss,88\nKihpUEKi4TA,128\n9lInNK2jtx8,133\nxZOMiFk2ThE,182\n3e-DXYUvxys,125\nzE9G5pK4774,29\nJQRV5_auS_Q,103\n7kTGVJ5OKDA,133\nGNQ2LOxMi9Q,133\nIlLYqvnCs0o,133\nKfprSGvOgpI,133\nB1WG5mK06fA,130\ni_Y5UB3xxW8,120\n0zhatVdxShE,127\nhQCG2AwzTxA,133\nx1gEy9LSa4A,146\ndcO8blFBl8g,117\ncE71I4X9hWQ,160\n84VVZEw9vBs,132\nfaZ88f6Gfzc,121\nDERds8rPSi0,97\nKtBMZ6VAZyI,131\n-5Pku48YPFo,125\nHp7zxA4BsKg,132\n1uIPM6h1gDg,106\nl4bCchzGpkQ,125\nTqL70V8rn9I,131\nq-y6JBpCFtI,123\nWg89Bj_9Wg4,131\nawYi2rXf1Ws,133\nHOoHh7wHtvQ,131\n39zzDqksCHc,110\nu14YNz-Ym2c,133\n1kAtlL7cZOg,132\nJbRDwutWOng,119\nLs5834hbssM,95\n5eSrShL8dt8,119\nb_jYYdrSYBg,109\nqE9eKngduGM,159\nvdq609Xci-g,131\n5d0GYRAD_aI,132\nlfCVS3HWdjg,158\nITSOiqkDzrI,133\nYCN_nis2E84,109\n-L3D0BL9ieA,132\nlU2FHV2lr04,113\nTGyqMjtaZiw,145\n8SqhsheKNqg,120\nZW66_8a4rqY,132\nydMwnnhLnLU,121\nXbf61_Fgldo,133\nHDUHC--wGt4,93\nEFgCZDRkacU,98\nbXq3dytL6ZA,132\nlDFltuNEfts,103\nDZ2_coKUWcc,133\nFRogQQGQn1g,106\nfarC0cWkpvc,121\nLgwj8KoDshs,133\nHK4eFj52f1o,134\nR1JHZFJyWds,87\nac6FZ59tna4,126\n8Wg3WYlR2M8,114\nl0VX6h8lP08,133\n-zoOpeF5Yzc,126\nIzkrKfk4kYE,102\nix0_IOPyX2g,149\nqrCkASenz7I,182\nFTgzyx6931A,75\nTJj7YqhNxiw,125\nEETi6NJFRjA,130\nsPZUh1YRnDg,130\nVCghHER3cOU,133\nt4DCOpG1oNE,102\nzAc3K7mjlxs,105\nOp9k4MLjKSQ,97\n7_wMbTKsnvQ,97\nTyPhgetzMfY,119\nNoiLYCUpS5A,131\nWzBS3IIb-vg,132\nW3c9wtbQTZ4,133\n9BHXzftnFGA,118\ne2FdM0YQSHk,66\nFEddJ-WcZfU,92\nfX4XAbCTdYs,118\nLDnFpgimHH4,130\nuFHReMA18_c,130\nmWquYel6AI4,131\niX1ha-hADlU,172\nQ9szFqOlDJc,118\nvJFN-ZPqCiQ,128\nJomrLxDiT5g,124\ngvKBHCBBdf0,204\nRfKKArjmRHI,125\nKduMYNqIGBA,130\nxknWZIAzBCc,133\ntifUOGFTOBM,47\nz6QWyZYi8ZU,131\nlEiwqEMhS9E,128\nMcBW00qkAlY,126\n3WscLkiiCts,132\n4dp5Q3B20aE,123\nqCq0IXXi_2U,133\n9jI5AN2KZJ0,88\nnNXxlYCU0aY,132\nufaAnz9XmsE,222\n-fMCqLBMPPo,130\nXFmCXGXAZ5A,54\n3teArKtt1PQ,117\n885EiuL9GKg,114\nhp3inTPISwQ,96\nURHjEpowEcw,91\nYg1izGf8EFQ,131\neoSPKSIxeek,122\nmPxTwqzr1sw,148\nFyS7kFIZJ6k,116\nUqvuJLOCSxc,154\ndoVYFjIJcfU,129\nAyrP-pwDayE,112\nSLkR7mzysAs,109\n7-59dVoKmik,131\nv-UIgJgiPJs,130\nie7XVOuzf2U,125\ns0bxFcZV40A,129\nYFUCezoyzyk,103\neKbXO0f-mvw,102\nsMt3SzAH_i0,119\n0SMMbr2kXc8,139\nfZzxZa0k7II,112\n6M6cpjP7GIo,118\ny7wj3bB6OU4,121\n6f5ggdRQuB8,132\nnd3MVcbnfAc,131\n_oBX12cEu-w,129\n-tlRw45_Ftk,127\nZGNoXIhKTLw,98\nOXaqam1ZdZs,129\nIxWEtRxzzhI,129\nbnIEGNhW3ZY,133\nVHLbq6oeSyw,133\nMTJzGzdA3c8,73\nRMd-tHAtdoY,118\nwwwhtUdGOVM,120\nGAEBkpl1cIQ,133\nCmpDJs0Mjj0,118\nlAgPsmTxBfc,130\nId3vqOPHk-4,133\nCjIU-zqxJEA,141\nRlPaVTRPVLI,130\nKgqzMdBg7ig,126\nWgFa1bVTQEs,130\nq3OTEdZkBaQ,92\njDjZ_Dh6HSM,133\ncfM9_PduF3M,115\nwMZ5UJRpxfk,87\nDtTgHuGgW-c,122\nWdDUhHl-BzM,125\niHllnWESLvY,132\nLwNWzSruov8,53\nA1MEIKVyYPk,130\njr0JXSM_0Nk,133\nMiPH7hknJ8k,173\nukvZvl0GElQ,179\nNaFy_SWmRlI,116\nU2iJ1VmhksI,133\nc1nmARXTuvE,94\nnr037owyBqM,105\nAZIk5wIq2Qw,134\no3fUAorIxss,133\n6-RSVTLojGU,133\n1VkkHqm3q14,144\nylDhWZKbCrc,132\neKKd33QEB3I,58\n7Qe11Thhwvs,131\nvWyPfvAbUOQ,59\nep7wuwsdgqA,230\nnuLPRAvxkDo,88\n_FyezVyMFJ8,125\nraLZ6l174_k,107\nk8QQCwXyVbI,173\njTGak1m5o6U,68\n6FJfcqLCkIc,133\nQWMVhLtFtNI,217\njKu10hihpkg,130\njK0s7zfdDOc,95\n-JhgmAgoDBg,21\nR-PAimSAL08,108\n2B4dnGQc9wM,86\n6u14pLHV3Vw,133\nMR93FRxKjTQ,123\n1XBwwSzLqWA,155\nZYq7Q_UW0Vo,98\nBJHzyg9AOsY,120\nOyH39BhKP2g,206\nSzfQ2Bwhkcc,120\njv2MsLBMi9U,111\nJqDOosChydc,115\nAqKpGR4EocU,128\n6JSqeViZRU0,105\nWqNMjZpSbnU,215\nN-PI5nIwciE,129\nx1DLLAqLiAM,105\nQiVfqVQ5t9A,120\nLBU5Yu6RFBY,120\nPII5jcf950Q,130\n8iqKSKK9_uQ,105\nZEqt7tr41Mk,133\n2sY8MYUTfiQ,131\n9wQHMLWpVLk,91\nzcZJF81jt4w,106\nWlHZBcuKDb8,139\nGc8MuT6L4Nw,131\ndMJolQgBp38,133\nSnJzOrHZwk8,189\n78RKzUAQD40,63\nCGzMqCfxpPs,121\ntvCjr63AgtM,129\nOsJKdxPwZdk,131\nmJFvqNOorTs,121\ndOTGLArtfrQ,126\nIrDrwaot490,127\nvyMggFe9WRQ,99\nCuscvBChOqM,125\ns3rv0BdxWfM,102\niptTDWFBsGQ,123\nANZUU_ev5HU,79\nBZwbVffx49M,169\npXIcjMT1SUg,131\nQ0wlGNISV18,21\nyIzzVRK8u9A,21\nKiOiYYsMcM4,133\n_U82hhWfDFY,98\nHqS7VyuD_Mg,114\neEUulOnl-n8,123\nq7qwqVbZSqE,132\n50j2eckQ1to,120\nPTg0wFv6dZ4,125\nbRzQBGwfMkM,72\nyX5LfZK1wTw,133\n0sdIO3lVTWE,159\nWeVMy5j7ykc,119\ncUnb4UuUS8E,111\n_kocDBoWDcU,174\nNyxW1SxFqzk,104\n24QQqGjDEKM,129\nF4vBy7g5vpo,130\ng46IxT3MGP8,123\nq4G5hUvL-wI,115\n_K6U3FyJBv4,114\njgcD-DHpPR0,132\nMdMVzxis5vs,132\n2Qfa77SRZkc,169\n-33sUQVbQ24,123\ndNK-wsUHMvw,58\n969gXtFAcZU,133\nlaQz2eLj1-0,146\n0SYBBmzZPOA,150\n0yYUlLFlw1I,119\nDdqQsOC-A2w,118\nSDS5UH9Nnus,112\nJkJmzgDiUtw,145\nYuuMHvaxXFY,91\niBaUUJOO6V8,132\njvCmoJHIm-A,127\nbpcwhWgWfCc,62\ndaPR5OjY6bI,132\nvN_HrPvTVIk,91\ng0CFQF54ePo,120\nN72sZx-UMlg,132\njXGV-MT-TmU,133\nFHB3oMNWk1g,103\n23x_B3MpUH4,132\n1UybDydQpNY,83\nLwgcvZ0z430,150\nfgq0ecMHfzc,133\n-bG0iKaxQYM,148\nLNFINZN0KXY,132\n_-xCcoG6Wlc,110\nU2Eff0vnE6s,59\ntskuP_9J2RY,142\n4zhGIlO2Lx8,141\n2vjWxyJtUdo,119\nWhZEKkpf3CU,119\nnATapY005XY,192\nMjOXPVmOBSg,133\nYJbQz3bTn6I,122\nniZKrt4XAZE,130\no2jtBk4B-hE,122\nvj6kMfad_2E,133\nrRUuycF5FTU,132\nisgx4Srs9t8,132\nETrY43GsoHY,119\neqk4fOK2VU8,133\nUZqpweWv5_0,130\nBWWfy9YSQmw,132\n1cFyFvO56Sw,131\nx90GleSXqIg,128\nUgxCAQEI16o,133\nGg3woGs9ZGY,113\nwYSIce1SzFU,115\nYa4RBKamUqU,131\nEdxnFXQId-0,107\nVCRyYN8DfUU,94\nxSTf5WyBUQ0,132\nZDYLUH3BImk,133\nGwQdBsTpmOM,111\nRnTG-5XU49o,132\nYOkboxqOKBA,102\nqgmcXs02URY,133\nue0MJQmrIlg,101\nKq3nRBxVD3k,123\n1crhwQPKr7w,133\n3FDh8EtZETg,130\njlYY8xkTXOQ,132\ngmYSTObayoY,132\n59E_IDXFWuY,133\nMDdgxMEIYFI,114\neLOVOy0CCv8,39\nymzHr_Uvp7w,131\nPv4M77BcywE,132\n8fIL99qy9HU,118\npqDU_EJrb2g,133\nhdIXrF34Bz0,99\n8TIqqUbWUTI,100\nCidMyd_Dz_Y,20\nUgjmE8BWps8,122\nc17KWinVFss,86\nvnQ9yD_IIwo,117\nhUAGX1IOMr0,123\nn137CIxjKTA,104\nNGtMNsci-zk,128\nMlb3avSMD_Y,112\nNc_b69ag6Eo,120\n6Dye05tvSoo,103\ndMOQv0rb6DY,123\nrTCi5UsRudE,129\nujFUQwcAQ7w,106\n9bHnSNlLZh4,115\nOJiaifxaWCY,121\no-e8eejeHLA,102\nhsE1N5mfvmA,129\nShB8ZLISubA,137\n5otacrrli04,177\nPbwgDqZazAU,90\ngpytphKy7a0,125\ni-6UVTMiDm8,193\n1RTpXJVozSY,126\nv6Xbfyz0aXM,124\nsLlQvz0y7QM,132\nvHmyJqXxmL8,150\nJsJxIoFu2wo,133\nYShA_c8OUl4,133\nAQC83SamleQ,141\nLcX1BSUZVpg,134\nZFwI8ujpT0Y,137\nvqOByzMoS_A,162\nTx59CHKUgjs,133\n8TJk9N4RrNM,180\nGUyIWu59kig,155\nPJot4Pv7dFI,119\n3RgRVQqUhhM,133\n10GtbJs6GEw,127\n9qEoK4PYN5I,132\nWEnGy2hTHgA,62\nf9_1eujdVpI,132\nOhtKiOEZBJY,109\nO_GMXI7Pp6c,180\n5WIwlJP6XhU,133\nCWnDVW07_1c,133\nvNrNofWBcas,131\nFHs_-lvHG4E,107\nKMsryQSdT_k,68\n4cbfnH5APuE,147\nyjdZhknwl2E,148\ntAH5PR2SvXM,130\nV7u623DEJD4,124\nkW7IPAaL7I4,133\nBhbazIuvUCY,124\n7wLSkQOkAGY,133\nJOQoxkx9uS0,133\nnkwyt0ytVJI,133\nTT8o1fvTB5Q,129\nUchtzdG8HdM,131\naDUZ8IC6wco,132\n-WN4uZXOltk,209\n-uhpev-dp2M,133\nLcf227lWEek,114\nxAV_XfpHSr4,118\nWXsTZ7eUpBE,106\nZRdLFB-SJpA,133\n1cCEE8-jhus,103\nuLkxV_gyYbI,62\navXk2EamFs4,127\nDdDl6mbcGtc,104\ngEOOc_mt_bQ,21\nUQDSN9a_Zgs,122\narQDNf6cjaw,108\nRhUPit82Gm0,133\n0QbMWpwr7FM,116\nqAteApi_4IE,76\n0PcN_4_J6b8,103\nSzzO21mg8yA,90\nwK0m72Rf7tk,130\nk6v2NnHxYPk,91\nVc7HzKwZ55Q,88\nDKMzt447niI,137\nh52UYfkLhXg,129\nEtvbEtPIGiA,155\nXnJvHpxr1Lw,115\nL6YJkhVYUXs,104\nfSqvtspQonw,64\nl1B1_jQnlFk,132\nBtn6OKhfHHk,124\n3bo6h-7ryfE,125\nDPRsafiw4vQ,131\nCttvEq-ypno,131\newVwSrVSKS4,104\nRkxAAilnLEI,104\nbqxDIHYcp9g,132\nNz15PudXkXM,139\nRXC48uE7UzM,90\n5ntVWRhfqo0,132\nmTx6_XT9Hns,132\nZcvlWuqqv48,133\nbw7GnKjkThQ,133\nhcvAwHA7usc,126\n0UlzQ-bao3Q,72\nd8FIxfJaAYM,118\nZGF2551BMIc,109\n7_HpQA3rLWw,124\nLC1Sb6tRr4E,132\n6ohgHjQvK5g,134\niC-oZZbET3I,180\nDLasTex8Vnk,132\nQDeWmH3M9-M,100\nS-PPQ9aewqo,88\nFE8xpnLMZlU,131\nIs9bN_cdTMo,132\n_B9xQeIvdHM,124\nhvvTxyks7L8,106\nBn0-7zClnWA,107\nvAyq-3z1SYo,118\nccX1d19hmc8,130\nxDvdVxr48UU,204\nlRjxk7z0kOQ,148\n_y5i94TfOxw,120\ncku1N8eCUlo,81\nLzdoMQL_jR8,132\nDzUc3Eqzzos,133\nEbarO9zF81Y,132\nas_lXF3HqCY,82\npCQuhXDlfL8,95\nTgLe98ts0QU,133\nVEGSjiQq998,45\ngv1nYk_OJjs,123\nDZpfEy3OsrI,132\ni-f0M5TqmsY,132\nE6jJUN52anM,180\nrKV-U-HcGVk,133\nMpXp07KfSFI,133\npXe74ckEnME,132\nufcsS9E-JVs,158\nTpXABjbV9cc,127\nlJIPM69YQNY,133\nXZWz-YlVw5c,129\nK2JtNouF2rQ,72\n0klA5lTNwyY,203\nph2dq-pPBnA,131\nrllKhsQXZXI,103\nLlWcSO9ok9g,88\nrS3VUoThFBw,142\n381Di8Cw0-I,133\nxWTQN9bqbws,132\nbvjLvggrYUo,123\nWjY6_V2EM04,108\n6H72hXsLZ8k,141\ncuK7JbG06ho,109\n5k_LOWBvWCw,45\n750pEcgJqGg,131\nr0Iq2_euH44,113\nD8yY16GX9t0,132\nT_ZImfAxOu0,78\n0q3BH18BmZI,133\nLUQGBGUI64E,116\nK44KlE3sSMM,133\nghaZWnGSgMI,116\nAP3GWf3p4fQ,133\n5p9rqqJmDaQ,132\nIwcQ6LDdW9Q,129\nlvyRzKr6Bkk,110\nEa5k9eZg7rk,92\n8Gu2ouJNmXc,125\nASnNWCK3kiQ,129\nBVwLpNGBqqY,129\ndbE2-VU-4SM,128\nuE_EjcgtiVI,124\nvLXjWGI8sfw,133\n88fxqiFGNXY,121\nqUiptlAJcyQ,131\nrVEFouzc6LI,131\nMy4ojpQzoWY,178\nmhPPLQqVP0c,104\nprGnVwLgxPc,88\nZMHEIVKg_iQ,191\nr3eNr-xxA7s,133\n7vRhOdf-6co,133\niRdTetA_Dqo,102\nQxXbtzn-6PE,113\naVCOzbRPapo,131\nKJpaul2yTOU,133\nsQolThygoGk,104\nHSh63MNfwbE,133\nw_BL6gnrtDg,126\nJoPPsr14gRk,146\nI6mpHW3SMcc,90\nUZb2NOHPA2A,106\nm_C2cbqPkx0,90\nOPQbpZwpLtE,131\nzmqhj8EOLBI,131\nvm8sOhr-0lA,122\nBSEx_EMtQW8,133\nTdRbjlsp7uM,62\ngdbIINpktOs,45\nGiOE_3Smoqw,30\njxIm__RPZuw,128\nNhpvvobULYA,133\nhVGcbaoRtqk,129\ns3RNsZvdYZQ,113\nTJ9f2rnjB84,122\npEa07GOtQs4,122\n9J0DZojg6-g,133\nEr3iFTlMpmc,107\nTiCSS1zLCCI,96\nJeT0XHFyAU4,116\nIrptxQD55zY,146\nWTi7v77XZYs,83\ni5znTCoKLPI,113\nhks2iXeaxsk,61\n-hl0hUWyqoU,130\nI-xX6foX9zw,133\nKvWWoKcefWo,129\nQ3kOA_8ws6A,133\nXm6JHSUoLpY,132\nUFXtRWVYQV8,132\nBIt9IYPOY2g,133\nHnqkmLTgv78,132\nk4YuBxpQwqA,122\nYBRg2qsJ94Y,131\n7UsWapAIMGo,128\n8O97aGzvU3g,121\nH2iK5QHr3Is,144\n44RYxAPH78A,127\na_7a2sP4WMw,116\n9Vve6PAxRpk,132\nz8fwAxhgA-A,158\nS_PvnzDlqmI,109\nxUAn-hrMa0A,133\ngZaagSRp8F4,92\nV4jg8o9wXys,130\nMAu2e0VbvY4,117\nvE0nmQGO4Hk,124\nsN7zJBjZgHU,140\nQlNXJ4pAoZc,126\nPwmNvgd5kNI,212\njaSs0dUv0zQ,91\ncfILhtwu9S0,116\nnLKymV5rwAU,169\n7-C1cpG6TLc,124\n-L9EZRMgmXM,132\nvFSAQ1Nj7fg,133\nbKy6BtAbTU8,180\nCcrrepikVtI,133\nP578OPOe02E,102\nx9U9Xi1yQMo,127\nwbccgEaJudM,132\nHONa-BdZMA4,88\njyerVX4GpBs,168\n2idVkpn0YAU,73\ntPgwaQKNKRk,133\nJSHPdnYixNo,133\n9Dv0rOjEVIw,133\nGiG3ulYg9MI,21\nYa7Qs1NHepQ,48\nxi5rxsY_Nsw,138\ngHf9n0jhBdk,29\nzK0JaEde4VI,131\nog1c8h2UyE8,132\n0xPu59_MHQ0,114\nZI63g64kDgY,132\niNSN6QhIWeA,133\n0999Zftz6-w,135\nn1pSObsJ_hk,132\n1TroueqxAtM,124\nOELFAF76DEU,133\n9H1gvvzRk9o,112\n0xjYQiEDbj4,166\nphzJ2Iam214,122\n9dcybKF8Pjo,123\nAyodiwWneu8,133\nttJzJtRiN60,10\nhXg2LXOwsoA,133\n1pq96OQlUWs,129\n_v-_KbjVPxg,180\nGx7y8ecslp4,67\nf4wQCy4xIyY,129\nAYZZV6qazes,121\nqckVPZkmiNU,128\n9_VgSGZxWlg,15\nVYMQZsZUxeA,119\nrM3mP-39_is,136\n5RPUchAlppA,118\n0tRSAQUheo0,112\n_XriL3ARav8,105\n6MbOPK4TCB4,129\n_eruoEC4LsA,63\nxtz6dAjWz3g,133\neZe4RbiIBpM,121\nKs2IFhAqBSE,128\nKJmWpR-4AIg,99\n21q8w_kAtkU,145\nmmuJb30cigQ,110\nD8e-_q_iG6Q,112\nVEwLgrpyamQ,127\nlHodSSB_YpM,133\nlClRzGmpFrs,105\nzMEjTw82zDc,132\nvtXNIF662BU,152\nbrTGAgUYnIc,91\nkF0JER-KtGM,4\nOjHAZWyckMc,127\n7aW8oyTgA60,99\nQn6tLR3RGgE,133\npOgf3IaWlgU,193\nk3rxddIltIA,91\nvBVkz1xSKFc,130\nnr7ui14-O_Q,130\nDt3n2LVD4q4,95\nFRLcggpffDk,101\ntTbqVFrvn0E,102\nwX2AeW_M-xc,180\n1cekfpK8mZQ,133\nLWP0KujKOKY,131\nTaOTPhkNkbw,115\ni5Y6BTlx37s,79\nebNbXsFdz9w,180\nKF-wcaGD2UE,108\nsOGhuhC4AF0,132\nGpNzlh5ALRA,201\ngQAZdGaMHu0,80\nsW-ddNOh1hk,169\nmMyrxQNItpY,87\n6Wmzed6d0Jo,47\nsQFqzFD78Ck,132\n1FkVXCCfg2A,94\nTzMC8kgib3c,133\ninDZp80Sq6U,102\nNvuCGs9iYSk,104\nq_d_fgqJna8,133\nNn6y3CUpIfA,174\nKAPU1-0hGRE,110\nVz0R6lgYJb4,129\n2RQNDXuAIJI,129\n90rIOemL6Xg,82\nPIwZVG5wMi8,133\n7xWlr8_R5YY,136\nKJnIgY7l_nk,132\nv4kXrblmBE8,131\nOGKPmBtBpBo,101\nVzZJ9-El-a4,132\nR7stiKJsGjY,124\nCe6jdrqyW0U,129\nIinUDFR7Sr4,113\nMZW-4d7pvoA,21\n9GYgmwMfGXU,133\ncEafT-GQfv4,94\nqOeMwWgruZw,106\nI2jetO_ky7U,143\nEG_6BpNd0Vw,124\n-9Cf6w28dc4,152\nuiWL3bxDifQ,94\n0VRTOfZePkM,152\nujEbejephNM,119\n-Zr-B5aIEvE,186\n7lShqpv3i24,180\nAf2wrig588c,94\nyQi_ZJp9_jM,90\nau5XE48PEeU,112\nPOEUgs1Shqw,217\nPiyaX2sq_wk,133\ngWyMDfvXfhI,21\nzj4oU-cUE9E,124\ngqU37m6uoFw,132\nlfXtePMdNMk,133\nG3iPKcMjGlM,135\n9WY5gDBR0gM,130\nYIw-r1yjxMU,100\nYXzryi4HrVs,114\nW7Dq7vqpGCM,133\nXS4s3XXNLiE,133\n_tVFwhoeQVM,162\nPLBt2zwq_vU,133\nhRRvrXxGJjg,128\nm2REqMDEXNU,131\nBuutvk0mHXY,133\nriJRHpcshE0,125\nHhbADfa8rmY,102\nYKRFlNryaWw,124\naogWdNKef2o,201\n_hMtM3QndW8,132\naOAgGeW7abs,89\nFqeo-bUOueA,133\nV2wuTBrkBpU,133\nEPDoc6alrlE,95\n6UvEeQC0Odc,133\nViUbA_O3N5M,118\nAVEnTcDIo0A,118\ntIB4z4uMeNs,126\nJmElZmlYkHU,133\naisjDMTWr2w,133\nSYOiDFKwCsA,85\n7O6j3eHsueM,133\nlL2AwD_4G8w,131\nfOv_N9k5im4,122\nTr90d0ZcrCU,61\nCftR-xOfXsc,88\nUC2zyr54O2w,111\nd5jxXkpstv4,129\nzVIDGJxo238,126\n_OFfuZY_Pvk,118\nWwHpeDtSMmc,119\n_Nd7VxsQIGo,114\nl0-EYjaAurE,122\nZXgyS34Zpto,128\n0SHMCN-6-IM,109\npVZtw0LrIX4,133\nukmrk8JdGxk,69\nZ7KYTavLTBo,131\nuu-RxCqop98,110\nBLNQrlY4HMY,106\n2FKPDOpKzDo,129\nHk3IpNbltyw,131\nSfL4U_bOGvc,133\nd3-AXjkz3Pk,116\nWo2ZCh7vc2E,150\n06lJhEc7zIo,125\nvfW0mLeRXe8,111\n9o8gzua-K_E,180\nnZq8AiBXhiI,118\nNY8m6lManpQ,130\npMSrolUBGRc,173\nyNs0hmNinA0,123\nilZqZaSUC0Y,132\nIo0PZTAcBes,177\nZCoJgCHXXK8,118\n6M8szlSa-8o,109\nkdbGqJtHWQg,133\nYmIShBpwLPk,142\nWBHjaRXCINg,125\nfGV1kmATl0E,135\nedVZXNgaYbE,73\nIESky9kgqi8,67\nJnN-SR_2ovA,119\ndO_D5ilNoZA,139\nibeJlYiMz9w,132\nlDa6qc93nNs,118\n4M1mi7Ommbg,133\nUpww38-2fyo,130\nZkynnGqL7QM,131\nsogf5QgMqJs,148\njFP9_AxrurA,158\nMg7YM02K5ek,74\nXGmHx9PAaeE,107\nLR6C2oVQr_I,133\npMTlNUKE7yg,113\nhN952f_jn8E,127\nr0N4KlcTSUQ,133\nC_uIIZdNVwk,124\nQn336Lxy1TQ,125\nmFcz_U62r6s,123\nv59kIbs3gDY,132\nBT2RBCEH54M,133\nw13ky72PcKI,121\nZNn6J56J5HE,133\nBdgWnY2SCq4,131\n2xUynRdzzsM,123\nUEr47WrS7Ys,87\nKLJ4xbE_j94,112\n1H0J9VhDCno,137\nY55tkTIy5sc,130\nA6CTejBh5QU,124\n317Fhd1UwzQ,120\nt1gkRAWvxOs,131\nSqISCN4gNNA,118\n9AyPzu3JmSE,99\nysFpoWSlo7g,111\nIP-NM6Qdrl4,133\nOkVJ0KvOV60,70\n3jEZ_y7_kfs,110\nI5iG5NitBgI,134\nVo5ycPggsGY,180\nI_xrNryhq1Y,132\n_QXyyj1RiCE,133\n1qamIJWkKi0,79\n_5qVrmBANTE,130\n3TeYtmJXgQE,102\nMjFgD2yLBI4,131\n1ESVngpn1aA,141\n_z5tcqcVgvA,133\nlPrOstRqB1o,133\nxvf--4i6NA0,84\ntRHVMi3LxZE,130\nQtoKDVTZfSE,151\nJZZnBoruCik,119\n5aXmi3hKJrY,105\nWrnyKH7u6DQ,157\nimyD8loUM-g,127\nrqWU2zS3rJg,173\nvD8p7k2-_zA,205\neqIkFkmb054,116\nim1ZK1WNBZs,132\n5uVVWV4FnVU,132\nlS1KFyakAPE,119\n-Nr56-RD_g8,68\nViPVPgUJUgM,106\nnuPd4L7_0uQ,132\nfsMC6d8DeMo,132\nA4ktp_9Q5Es,133\nUJbqnbXI0Po,120\nZHNyG9ykGDA,131\nkgSDN6_VyR0,149\naARaYjgm_rA,130\n84ybwb86tKs,86\nQ8HMk-QX5hg,102\nyq2t7SjUSoI,133\nL4fJ1ht5TJM,130\nNf1uvt0zKFU,133\nV5qEU07yVnI,132\ngeh_Mu622SY,130\nxfIJV6C9-fM,91\nzdyBsGHbs4k,73\n6BS2yXD9Ggo,126\n1TeoyEPmuzA,132\nhgGf5X8-j1s,169\nXSVzRBiiTxA,126\nWFOM58iTTJQ,94\nTY0LUIIwo8k,131\nAV-IMZo2EII,10\nShdmErv5jvs,120\nUFlhVGogIRg,120\nkQUXf8oO73I,155\nDDfuaxazcc4,107\nxam8pRUej7A,98\ncHQcdgc_Whk,128\n1bZ_L0GOaYw,133\nuOsxXi-tu_U,123\nnshLAILEN4w,103\nJ_uWB_m7ML8,126\nUD_gJShgozE,127\nnHyK6uFdDWY,133\n9nqpOwh4N_Q,150\n2ObQm0XBmgI,133\n80UzhoD-RBs,132\nrAULcuSAZeo,70\ntlNLhuxeDJQ,132\nSF24fZvfoHs,101\nwbMLxj0lKAU,91\n2sROc10VoBA,88\n0CixzvwslvI,10\n0adv8zQsa9I,133\n24kOoUWjz5Q,109\naESwFtEWnpM,108\njJ-o9HHw-_s,114\nCaCW78inauI,182\nLtCy6T9d6-s,113\nnxRZisFQdTE,107\n8Nbbi16tvYA,133\n4qW3YcXJeyg,149\nv5-gQQunvJw,133\nHCMMbtnkRHM,29\nc_BMbnWPWnU,123\nJ0lof7tFKtE,132\nW3WRCxy2ZaE,133\nCApovMdNxw8,144\nDA2JIQh96iI,133\nJ0MXhoaoPy8,108\nhuE8fA3Ln18,128\n-NgmhVRFApQ,93\n3qZAvmpNfaw,133\nw8td2mMGYjo,75\nCMcqNCzUlGw,164\n3cZIoQWyBCI,104\nhQm-djU00DQ,10\nKoNukbGYfFY,101\nyqtmypCco-I,132\nlA2ubmfr6Dw,93\nc-ecbGNxEHM,117\nqaQUmqNJTO8,107\n5znSACsZMa0,132\nLoZtHl2YXAo,129\nWI00FLWTRrY,120\nRC5ZiK6o7uQ,130\nhKvpF7ACDBo,76\nOeLnS8O08ng,132\ndkB5SsVVlOI,103\npaCyf1IAKug,202\nasySRpuqnTM,133\ne3siZO79KrM,119\nRkc09sTiS7g,132\nbIHeoOh2F7o,128\nxfxhI_l9UYQ,106\n_h2BB1vo27s,133\nhC6jyc9reW0,87\nxLz4trRoHeM,127\nHOr8EwpHNwY,131\nPaYl9YVeXhc,133\n5k5l5PQJFrE,167\nQttI1akIG_4,110\ndjAkVv3P_pQ,80\nHQK5uM8tokE,115\n-rtUvlR1pZE,131\nnKCIuHUFJnY,131\n7iBFIlHDZx0,131\nJ6JcrLIvKUA,132\nk7koR5o-fUM,130\nYYlvedJn5W0,94\n4pmBvrehyTk,97\n2KGv86GLvXo,133\nxdgjUPMiiEc,87\nf_BcfyJea_M,112\nn3F7_uaZUzU,120\n3i76M1f3nB4,130\nbQInfO7fE-s,65\nc77JrXbqqV0,114\n56fngopihOo,131\nFK2rc4NbKco,140\nwmbt1RjPn4M,88\nys3a4yA-5Eg,106\nq9iIgRYUyA0,126\n5GWj9H4JId0,76\n22aRiNlHhaI,130\n7gYbpM0GWTs,121\nr763LgcxCyM,132\nKGKqdRDo-N8,132\nFdgyK4SErpU,120\n58qDZgvh3jk,83\nyJ5tQQhl8wc,165\n-SJAzpHg4s8,78\n7_PX1cVuaVA,28\nfXwVoMcZa90,176\nidKzxvXO9_8,93\nLXM383MIFYY,146\nD6uIONVMTxE,133\nN4fylYYIrUc,128\nNq1D205cXss,131\nFDGyKHeU2Es,120\nWkfpLz3XMOI,110\nNyPF-BmNQjQ,118\n6_CtgelI6xU,87\nkwMI7WIHREU,21\nUgU1ALnQTFA,149\noXRixZ82ZqU,131\nV_i1yhjzdgI,109\n8JyxfJo-iiA,134\n-i9mrpATCms,133\nIomS4eaONdg,132\nBWw0KCLcKHc,128\n5IFvZMLDqXA,133\n5ZHYDynRjV4,167\nejUWeYTslb0,131\nH99XlWQ9KsA,55\nmeDRW5WV1R8,125\nVB3awTlgRFk,131\nK2vOPpJFstM,129\nO7VH8LKDnr0,122\nKRMxuHWOcTI,118\no2wVetrydrY,133\nyie3IIh0HiQ,132\nkglWIEtKSXY,132\nPmvZQglWfJM,133\nHtxIqa2mXaA,263\nFFWLkCnT50s,130\njBYxPuIGu_o,132\n51pdEOruyWY,131\n5gN8YA_xeY8,73\n9-tYZkJ2p54,100\nuBiewQrpBBA,133\nYfualY_RvlA,153\nbVZ_-0df7XE,107\nP9e_I-fkJ6c,86\noOl1Kvh2Zwg,132\n7fYY9Fk5vg0,131\n2baUXj3vrEs,131\nV8Dm3OfSn4w,133\n4Sl4t9JNnuk,133\nXSUU-_0cWn4,132\npV2y0et0TT4,133\nQaNag38SNno,176\nGtARiQO8ljE,141\n2CcanSjYzlM,133\n6_0y_BGIZSU,132\nJOidGUY4Dm0,176\n4NES9LMRqAc,133\n7VTsFtwO0u0,92\nld9ehvuVu-8,106\ngpO1qCdOHGc,106\ngaoBscEDdzM,131\n6JynBr-1sSA,77\nT0cNy3l6Zek,125\nGpEhxhSoFAU,133\nVAp9p0U1r4g,154\nBF-sTHMVoOc,109\n-vCVptWV5UE,131\ncCNhONF1lHI,127\nNELtiWqsHY8,89\nZG4DMIhSIZY,80\neC2O1zsfn2c,132\nBBWQchYpjqQ,131\n0S7olzuojGY,81\nxEtptEM2_mg,132\nri8eqhvUN78,10\nQNv1frrhj4s,122\n-BOt25-zf8Q,117\nlB6Gk5EtunI,212\nBiO01_Fe6To,134\nhAUbdHw8QG4,113\nw57ga2Yiic4,136\ndXvVa-6BDWc,47\ne8J56HbIyvc,113\nTsCTF8rAkqk,207\npuwOGUjUKz8,87\nq15Yv0rZXqs,115\nc94JyVrcWwE,131\nPlTz6i4z6xU,112\nlDDtJ_J_hhw,125\nvOnWEmbW3OQ,121\nTB8q78FEwE8,133\nUtRR6sLexR8,124\n78xJ5ZYPQnc,119\nRcqR5cnQyUo,119\nArSEv2hjwzE,132\njrLVuKks6lE,133\nzzt_urtTkG4,131\npUtdFHAAGhE,125\ndv0-EuBX490,102\nyF0WIBF4lBw,133\nDuvGxB60xCQ,115\nLpPNvHq9rKQ,124\nzDmvCNfvt5w,133\nAI9AcMtuqsU,88\n0BF9MkmTBjk,104\nyy7H306nKaY,108\nJnFHE_crn0o,102\nypKY-4583qM,103\n-5RW2xQ9pNs,123\nkjRTvd8QRJI,161\najMVBGbsL_E,131\nMG9L-S6J_18,126\nvG8-BVdJ9_U,130\nU0get4DzXqA,138\ngK06H6EpKP4,130\nJRQJyeZ0wkY,131\nfIZiQDCK_Ng,116\n-wX6_qCCnPc,133\nTBS2UeiR7Mc,132\nzlgStW-zp74,21\nTVAhhVrpkwM,129\nNWfz4zLi640,133\nnINkPmHZfRc,174\nEXTklH_oTI0,136\naUWOzyo-Kec,131\nHEnmNkRRmHs,133\nJ0IxGD8-6Cc,131\ntfvptl5VS08,100\n19WT40D513Q,129\nOdlFHPM3A2U,133\noFEEoG2s_04,91\nPiJ5Ef63OwY,124\nlMy-kxTpXKA,199\nFZJK7bi2mWU,110\nz54CDMBPKu8,89\nQOCLLi8inz4,91\nk8Tw4JhzORM,90\n4aRryzzZLTI,105\n4j7zD5ydpUo,114\nMOKKPloglVE,101\nzEYkLkJs5g0,129\n5EN8IHljaaE,131\n0wMU9XDIm4g,112\nf2nODbzvaF4,21\niBSRk-DbhRw,136\nNqYAnj6YcLk,115\nOlqErSr6Rjw,112\nTgIB5Yl4sBQ,133\noh8pzfm5QF8,126\n3Vimb_RuN7c,114\nWyjaZFv4lgI,127\nCKGHiP4bs84,129\n2QGYIM-8y38,126\ncMbUCMRhH9M,133\naJh1RC2Z474,79\nQH8uHNGEvbg,59\nOLtnOGTdLO4,116\nF5ZP1m4J0H4,85\nqu1F98-YEz4,259\n2wEjsHggyII,133\n5Rp-dpnsqUo,75\noHpI2u95uUk,143\nYwrX990kW9k,126\n_k8uSp3-900,86\nVDm_Pg2Cdsk,132\ndFwt1vL1JOg,153\njlwA_X5iyBA,126\nuvbOvG1gCj4,129\nfPWCnwZEOqE,133\n4IGM36KWmh4,29\nyp6SO-tZpJw,138\nCjg8Hj75FPQ,149\ncJti4-26uFE,92\nmvkHPUZnww0,133\n_kqyM33kijU,179\nGjtM8XhcA-M,129\naQ6ZzIC7OZk,133\nAA_yIRZNg1s,95\n08iCLTmybXM,133\nSESbcd2bp80,133\nTOrEE5NeZ9w,180\nBLVhog_zX68,160\nzLBEFvMkQCo,131\nG9u3Lbli8Uc,120\nZa9pPzJJcYg,132\n8qQg4bvTlho,181\nWASIZITWvZs,128\n8lTcU_MuQGg,126\ncwprGyncs0A,131\nL-HEnOelh-k,116\nMoRaxm7lK8g,77\nrMdZw9aBmnY,133\nyWZtEE8C1x4,133\nkaJv6L8vF-Y,133\nVhRkUhY8MlQ,178\nBFanCVteXfw,126\nZiXcZtfAbf8,133\nQLAYw0vM-bw,114\noLIwz9gn00g,130\nYRG4Q2gIWjo,131\nFyCJ-hUXQ7o,124\n61xq5Kja1Uo,122\nF5g7u8WRwqQ,125\npexcH4Ffi8I,117\nWQ71crXovIk,126\n7UhOWJw9eys,96\nudHPeemZ8zE,90\ng0TZztZJGRo,72\nzJZiy6BuuLY,189\nrFuhmG2wUXw,113\nqXTTXNZucIU,133\nV81lVBQ8TCs,132\nBWWTObc0KDQ,88\nnZSxvozKoeE,132\nhweZTM7VPbk,128\nRairI_NdWQA,143\nnp_HgtPXDXE,129\nHiNWDfHz8Io,132\ndz6QtPfCmrU,141\nJrPj-b18Lt4,66\n8wTnBC7doPk,128\no9zfxe4JVlQ,130\nr8zjtGUA6tU,127\nXEsZK8pvveU,124\nfPk-Dms1rJc,122\nus54vk5--jM,113\nFEdL1_zOyz4,130\nMVy9DFwT-4o,196\n7jVsQToSfag,129\nGq3WJ-sJj7I,133\nGQlizbovQAg,149\nMEYAoMSfCQY,129\nne4ZgnPn9Ck,140\na-KQ5h6WmJg,130\nEP6Qb7rzBmA,149\nFQfb9ayuY3A,110\nV1wAemvxNaM,132\n9lro80T1eV8,132\nNFwg1siPn3A,180\nEPBcADfQoJY,121\nYe-GPGstKFc,133\nXmGOiqQm9B0,125\neR_BcTP8HOM,133\nSKEvjOq6L6o,132\n8c88JWPmDrA,158\nDB5H2QGFFwU,119\npbI6qTih2TI,94\nQKRPgJYHblo,163\nV7N7EZ79mvM,105\nak4mtSDwxV4,90\nuEchpjUjGPA,120\niTlkXQH-sdg,132\nSgbe_owOvEI,140\no1JgvBy3_cA,96\nSPrK-BvZA9E,132\nur0U4xN0d_A,131\n1tpU-Kt97Rg,55\nfvYD-2ggmcc,128\nSSgDunmuSAA,132\nXS1DdZzYIik,130\nQnaTtsClgc4,136\njyzhfamiaQc,110\nRJACPfUU3nk,66\nWA3_SfMxtN8,114\nyOMv5lJpHwY,61\nyehCJ076_zI,115\nq7DHkw_5Wzw,252\nZynRcyXIGKM,76\nZz1Lypwfwug,223\n-tuNR-uD_mE,128\neLLzlb1SN2M,131\n2m_lqGnLtWA,132\nA2Ey-t8Ic8U,4\nn16wkJDq2VQ,131\nOwCO4rmsct0,133\nTdQkBU9p6Y0,106\nKRCwsXtAeKQ,133\nWB9uluVLP9g,129\nQ0xqrvefO7Q,119\nAhPCRPmHcxE,133\n8csRJcVDQdc,109\nbdm9LVNbuNg,127\nH6DqWP733F4,130\nHG3e03wWQu0,131\nYkpHalgTqpw,129\n4oY9E3_6jlY,128\noRh8qQyIngg,133\narfamPuUOek,133\nWRdy4CcRchU,86\nohMzC_1W0ZY,109\nROYuupoGarQ,175\nVgKqo3TvZoI,122\nZ9GVG_9yN7M,200\n78IG1HROeoc,132\nrWGj8MCBBnc,89\n1ubs6iUMdyo,131\n1kk3Xvw7jn0,216\nvg6-AbLe5nM,101\nMrL_uWnwPq0,100\nM9CkGS1O5WM,111\n3FPsMeQ6Ra4,166\nz6GmZrBKW98,88\nS-0prbWRAUk,126\n-yx9JK_HeQc,94\nkq0YESApfvs,126\n39-n35p2juk,103\n32OtN3z_DNs,95\nAf6v6H6gvcQ,133\nY99ODe7GzfM,169\nmbkWniWSpR0,133\nHHlf5HhqdOs,104\nDsVUFXVx2pQ,113\ntAp2Z3-zx9k,131\nsCUSUl7-4Qg,105\n_AUvAyx_fwc,133\nk2VevzNW4AY,88\nTvetwclCFq4,100\nbbqRezPHMDQ,133\n2gaEkPaykJo,187\nCZaS2CCnFYs,134\nLKpCK8OtA1s,133\najcVgbrSIWk,144\nw7VbNRVbRQY,155\nUSKy5QYNY70,83\nI-kLvrKYP4w,127\nAkEnbYvJGg0,132\nhKoYPfcWpcU,133\n1Pcd6RZexJI,79\nJBOq0nY1rQE,132\niYsOzr1hPl8,108\nX3aJZU6rInc,117\nkzUfGDKepCA,107\ni2uV68pKreU,146\nNP7_SIRfo-c,133\n8HZ56REwh3o,122\nSmmKg3VG2jI,117\nDEX-5gM0P8I,131\nfzXK1hDkqYc,133\nJGnxWlhfrrM,125\n4B0FFnkSCuM,85\nrDIF3XhXTT8,194\nx4utH5uWK6c,130\nupwUN92OAQU,115\nsR4iKRfUwOs,133\nq8_R4AG2o1w,130\nkh1sYuFgUAM,85\n3OHisdS9LXs,117\nMjsSG8pPTy0,138\n579nK0yB22I,130\n46-oS8F8_c8,156\n7SU_ZshgGro,125\nE49Wkrqw_DQ,75\n3QYGPGwR4x8,4\nWkm_Bp6pG9k,128\nU3qhoY13AkM,131\n8kIsYLV8bE8,129\nGlHL_ippO8k,133\n3Dit-yAwTgY,133\nOaFB9lMthfU,122\n-xX0mOMuxyI,132\ntQkepXxAGq4,130\nMIexe6aa14w,134\ndf1mSOyvsXU,132\n4zT8gk15yrY,186\nD4dT2eBWI2M,148\nsSvxvpY7PZM,132\nY3WWNavHXSA,162\n2WZCKiDOQ9Q,138\nwzYht_EEf0U,123\nQ7-BibZkYxY,113\n7zwPRGbmrow,133\ne0wRbbzTdhQ,171\nNQdNfhG-s8k,143\nmoJvW1-7_Cw,138\nzriRtxv9jf0,133\nF6y4B_BFrJ4,132\nlTc8TxNTh6I,126\nP0ePytsVcpI,78\nyly_wF8DyE8,132\nfls3z7Me2Dc,131\nOkphsYRRJ_0,111\nKwnTYy2p0AE,124\nC6hmQwfEmzc,133\n7_pR6mUYtOo,93\nUMlZ90ZNGJI,133\n8AZk-d0z3ws,122\nP1xdGCvNMEY,133\nJqoH6dDyZmk,131\ny603mzYAcas,85\nbBzNPO001NU,124\n9e-6wOwlHmM,133\ncGbTf-FgG-M,99\nEVGsdxjfeO0,153\nJSyZq8Eg5eg,121\n1YGyKYK1HuY,133\ncIRL7jMVh8Q,174\nvn9awsg8BjA,181\nnwBlOt3WDUQ,152\nxw5Iyx5ejO0,81\ngj-Rl-cgKxM,122\nePUgjJofgq8,128\nrn4Ff3MpiRc,121\nDwKBxabn4QY,132\nWzDlb8zf7gQ,90\nV82hFRJcrj0,142\nzZaA_9hN1Lo,97\ncjyqWsrpQAA,54\nKVyRBCk_V1s,110\nZErJ-R9PLFA,132\ndjMYTM1p318,132\nQXB9qatHDSU,109\nt0Hr0YA9_H0,132\nZ8leMw24Nbc,74\nsVbhGDytHk4,92\nryKepaMME_U,132\nDq6jS6uazUI,133\nVyS-apNPxUI,123\nI54GtHWXwpc,133\nT_0IN7mMXZI,67\nD4rlczOezQ8,113\n8UMJAkQqhcM,128\nZI1jKmWANP0,132\nWQnFe6vuWq4,108\n5oAIVuFPUdQ,133\nlSTkEHpkMf8,133\nPyHK6QRniQ0,95\nOIl2sEhU24I,133\nodEociFdDN4,115\nwRUXdHtHe8U,131\nPUo-B7AEAWY,164\nc_69KA0PKYI,52\nKLieNRvLmd0,149\nWhGFwk58h34,132\nI1OmcMDFR0Y,96\n05nRqVJlunA,100\nzCz-i5sPrBo,126\n5jAVjQh9S8A,131\nU2g825zrVA4,119\nMlhH_sjxXaA,136\n1ODVyWqW4ps,160\nbENL5AzvP4w,126\nBYwC-WJQKd4,82\nTuiyN5O4Q5k,115\nb_BJbecP-Xc,168\nmvgKGY5m71w,129\n9GF-YNA-iTM,133\ninAlpz8a0aU,130\nNUAs-J9HatA,133\n8Z60zTp6Izo,180\n25_Kvrl7agM,167\nNARUgQRZhL8,108\nwweMxbvl86Q,127\nRupELElQj6E,105\n5ohlA__xABw,101\np6LXVK9rPbw,70\nK8nX2uH-h-M,90\nIo7wUtei6BA,133\nrC6WAAlNHt4,180\nj0sbjGj7ONo,131\nujhXgFBjcZA,128\nOXvNnV-cwFQ,120\nd6E6Pu3a5qM,105\nUbxMhvcxJJc,126\ne2xiwiWd_sM,132\nV6I4cJ1kJVc,129\nDHVyayHXOdY,132\nxSyvjgWMsKc,97\n1xI_CHaHWmw,124\na38HZFbhB-M,128\nmTHQ0fQXf-0,124\nrFHh8MTXs5M,119\n8I5_zsRI4Zo,133\njJ_p_xhMEvU,89\n4k9WHvF1QsE,132\ni3EF63p3v-I,61\n4xcqyJwEdd0,109\n0ROplAtLJvo,125\nLhc_xw9cQ6I,133\nH6kYdOSKX3I,21\n3ema7lfEAMk,178\ngjWdFgV-Vz8,105\nOGpGO7K3aBo,110\nqpZBUlqRoeA,125\nLnqAE4Rjdqk,111\n0xo0KxL_21U,184\nO4di7-6b7eY,133\n7bmB4RhsYgQ,133\nFWx6IsqPUKk,258\n3r2JiHZVEk4,180\nt5KEbS5soMA,130\nURt8hBsrHFI,133\nMievQTukqMM,133\n3SGIHbvcTRc,97\nV1l3TboL5MI,132\nSJHWGDkIxNM,133\n34bCs92ACpk,113\n2xfrmlcIQf4,120\nhSLj5cQaXM8,125\n9LvdctnZeWE,133\nV7-kCVemvVI,133\nh-Y7v9WyBug,152\nfHYuhwnlTZs,112\nqcMHKqF91tM,132\nvnRi28Q4THo,10\nsp4A_jU3oD0,114\n4Qrs43i_S50,132\nzyTCACwFsgw,132\nmTr1vpzU00Q,133\nnRTjNEP6v2U,72\n215DJ7KbNsY,95\natpbdTo9nno,113\ntXmgYy1D5MA,67\nVrMWnHwh0z0,133\negC34ixXtos,65\nBPvZa789l5o,132\nmIqXkwxzUB4,130\notQNGe5sWaQ,130\nLbMpSo9yvZo,126\ncSUVLAM8jx0,133\nUEndkOUG9M4,130\nnSJxx_KUEes,132\nFMcQ9qdYBUI,131\nqkTP21NTcgM,133\najE9h1zUbMs,125\nh4wnyCRRi0o,100\n1ZeDq4Yo6Jk,147\nD5E23GxcVHA,78\nxj04uvQx9l8,133\n_gScnxmM2no,140\nmTr6qV4PiMc,126\nofIzQbTGQ2E,114\nCevDWRn-3-s,130\nqUKBDcMN7tg,131\nNsNN1eHv7MU,126\ndwMz7K0kr-M,152\nuE0DBpw09SU,133\nmhaxNZs5MGc,175\n8391icf7iLk,123\no4U1GZcMmn0,196\nq9n96my-QzI,182\nH46x8fD7WzE,105\nJYKlYHwUiac,93\nujH4hnVthhM,130\nzJfuNE2rsPY,132\nr7k9mkm0TKU,124\nL6IPj5zl9oQ,151\nXPUqjed6k4s,132\nCxCjXAy6HQE,150\n1G9ED_K_IAQ,98\nljzkCBZuHM4,119\nv8_v3EaYE6A,133\njq2tARSds7M,133\nZzuc4RiUjJs,128\nex65__9m7f0,90\nyV5JUYhnJQk,133\nfWPRhRM1V7I,128\nQflHaPOXcA4,117\nOIXDhgqDYV0,88\nV0BHKgbef9E,112\n8uHpWrtDfAU,131\nJlbIb4XdF4M,119\neqYhouRLYis,228\no3uf4YSwY9I,130\n0M6PP32wggM,121\nSELIbxPbbh0,133\n03Rl5exupSo,105\nEPmNA1vLOH4,129\nC-qXt_tIUJY,92\nFGqPDYzAXdI,167\ne2-VnrdN_Ng,130\nyosiG9eEEHA,133\nKUnaFhIJ17Q,103\npU4SIxi3iow,21\nv-fwHV86PgY,42\nfvVBKWMTSRM,76\n4amekKHX28Q,73\nicGkuwUzbGI,128\nmX-qK4qG2EY,131\nx3SUKG6l6FQ,133\nsTI1U2BiTNk,128\n_4jtkw-qFms,125\nbWyLG7CWLjA,100\nmXXucVAQdf4,131\nZCz2Ob5_-bg,114\nvVRPMleD1SI,148\nntC0xJo2bSU,121\nLrSA5tw_KSc,132\ngvGNWLszAQA,106\nnyKJeXDoqnw,129\n-J_tiDK1tEA,116\nwiA6bjzz-CM,102\nQDYx2BOuAGo,110\nYonDo9SCqII,129\npxHoR9Cc6Rg,65\nrroHhssQbok,112\nHJU9-MJ4oEc,86\n-sJezi3j7O8,123\nHxyKbR3GmsY,151\nXLSkfVJxbwo,112\nQKP-AZKNl9k,180\nJqDoUCcJHPU,131\nFM26ZXjPL_4,86\n54kfWG3V-IE,100\nvrCmp9js4YI,114\n8zUemCOntvo,104\nf9vhFEweovc,119\nI_vzG5nYk1I,141\ni1n8bNgTUTw,98\n0EnNdIPjl6E,4\nwur5ljnTCzQ,127\ng2atr8aQ0zg,133\nwJRb5MKvouw,132\n4XpFpGcTh1s,127\nxuUtu2xRGgY,234\nb7lV6-iKiwQ,133\nnjFOIvoN9pc,132\n50YQeugOMOw,133\nSEM1DDRM5r4,76\nAF9cqjNt9uc,92\naUIjcrHyvHU,93\nwCDAFiLrHE0,117\nghwBg2RgBJM,128\ne4IJ2LyK9cs,105\niB8YcYRzDdE,105\npFxOuE_0wqc,133\nsmVge5w077g,126\ntBeJkq_by_8,132\nOxqTSDSxRwg,133\nNtkLxegTLPU,132\nz1bpjIkTie8,132\noZEJTJSZQQs,159\nJQwmeTKQLo8,52\nG6EPGcF9mW0,63\nTgZwFvKRqK4,131\nFjr5MSmxKJ0,131\ndPXGowa6p3Y,84\nCW_yC7l6PO4,111\n9t2_DjGU_Qk,105\njJHNJjwNUWM,132\nTtLvNyDGUg8,128\nw6n3WpRNWTs,70\nwPT49WXC0Zo,135\nyrZ7CsXcTrI,89\neQMofmwnt6s,202\nn2lTpPptOWA,112\no2joReiVA1A,161\nqhzCkJXZVJg,129\nSLNBos63EkY,133\n_r4a-vgIqgM,43\n2hWZyDGHNxI,133\n9R_jeIGgaa4,94\nB7zXxCAZjK4,123\nSu6H2_SrpOk,162\niNxUsONmig8,96\np-zGZTYN9nQ,100\nyUd_E5dnVx0,128\nOE8Tc1cvSYM,133\nJQ8nLSXGWWE,131\n6Bk2AsTcdbE,133\nk-mbJhVl2Xc,101\nwrrxHvC1J7I,133\n6GfFdTJiRmo,189\nHa4SHiHf8Vw,128\nzPv0S1-ETdI,133\ncmtXA6x6Jm4,72\nR5409gLbXuw,237\nQjCxoikhxSE,119\nu1_fdJ0f2iQ,93\nR7cqvLTR0vA,124\nBF4-iXXZE-s,121\nN4x1K97JZG0,68\nj8yAjWvAqyM,48\nvq8OmtyOsR8,133\ncETZjbXsUog,109\nVdhhi9nYLTI,109\nOUo2Klpa8AU,110\nqlwxaCiNZzo,82\nei2dYpiS-Us,108\nlyCbXVV-PAY,131\nxLMzMKlv_Ao,130\noqyRFXXwB48,126\nqdtCFKVtSls,131\n-k34FungG-Q,137\nGFLUYlb5jj0,21\nhQDDQV-oCsE,109\nFhBm4kprCkk,129\n9lj3ebVWDUw,131\n3H9TofuarsE,119\nqb0Vd5ac82Q,133\nNEg6faTj_co,133\nyAXioyO-acA,85\nAdJe8nZ8crs,132\niMzGaN5Sg3w,133\n-_HlyIgHUa0,60\n3-Q6PbschQI,60\nXXVbPZX6qz8,76\nwvPmP4xTruI,110\nuECrYxTF-pU,132\nRVevBZFMkys,125\nv3IyV96FX74,122\n92qwWy1aKH4,132\nkKlihXmSqPE,126\nQbfEULz4z98,132\nFmiBHWtxHLA,72\np_-Zm_G8cBI,79\nvEDyFvKFcoQ,122\ncIE1fT395HM,128\nMNWmA8mmbH4,120\nw7ZY9tqDsEc,132\nXq5Wz1yJhqY,10\nqeY1mkXqKgk,131\n2LeVu2F6s4g,134\n2tI3Dz2Ic2o,172\nVFDN2EOGyDI,99\nCiprWUwJX9A,21\n9GT5Hc4NdNw,21\n1iiGGpwLdQc,107\nFnmbPDYmz0E,179\nMiyfHiRy_tI,116\nDSBU1YgGyt0,72\n-F1-sTyGvwA,133\nrHPTGJpgtFU,188\nVAC6RfndhMQ,133\nAoAK1JNNKR0,129\n7vp7Lpjl_vk,125\nZEOI34R4iw0,173\nkdj7BqZQfaQ,172\nEHmjP1BExPs,148\nz0j4sVZHUdo,97\nc2TTFWzBuE8,129\n2mezAYW6Qiw,117\nZRkiBDXDT5Q,119\nYY4kKO6wfyg,156\ngMPr9rchJMs,126\nweTmdGoN_SQ,111\n3MDpQIx8VPU,20\n8d6AniF_vxg,81\nTpp5oqIzQL4,177\nxSp5QwKRwqM,103\nWLSQERsdER8,132\nep-ieEG06qg,125\nR57cfRscNyM,131\n1fdta94pfxc,122\nEePcWVFtRCU,134\n_T7T-0iR2Sw,92\ndwMoiBGmH_4,126\nKDyJYLDyBzc,131\nEHeR5XCO3uA,133\n6dgUAqGqS8Q,56\noEtIf_2mzJc,133\nBFpoIHexhKQ,129\nH4zYhsldk8M,122\nKJCvbFLtRB0,199\nj3k3xWKZIn8,132\n5ud6mZ5SULk,133\nSWEbahhZEyA,129\n9ac3upRnOl8,111\nTV9GpnvWxgQ,131\nOGbya9Fm_Ns,99\ndC1bJ1qmOCo,128\nSRNxRvPSscQ,102\nrmqvWkh45gs,179\n8GbzfsvSY7I,59\nfz19xrc_99o,130\nQE78itp1Jn0,126\nN9uT3yyoaGY,135\nfyIATgssVJw,149\nVOVOizcl4Gc,134\n3VVxzAw0hzk,83\nXF0e2BjTDh8,69\nuWalH3hnCyY,121\nDTpEhN9pzbs,92\ns1Y023ZS4Ms,84\nWvgG6VNS2J0,130\nETkJs0Mhnmo,133\nn-G24ROD5g0,142\nky1W2n5RilM,133\nangyfkPmHMo,131\n2K-ihnb5kho,130\nEV5W98Ql4vQ,129\ncktXSK7io8U,195\n_MeA5EW8FdI,132\nM6mnrzwTxVU,58\n2xRNmBGvfSk,130\nQDs8PuzsbIk,21\nvsBwRV2b3LY,93\nIuFESp6a8hM,159\nyBwa0z0kCrg,125\n6ylO7RAbApc,109\ntGDO-9hfaiI,104\n3MK7O6w2Mz8,114\nFxjONf9AXEs,129\nc7StgLYxbPU,145\nYd1ndA1_G_A,133\nsoEFK6PSKEY,129\nTnUS6tDANfc,119\nQQyorpxZ8rs,158\nzhXaZ2a1NcU,132\n_-jXE-VvZqw,75\nfb8Xk2_yqps,124\nXIQbAhdlZt8,98\nvE8mFDabqD0,109\n4SWqNoW_zI0,133\nK9ITp_xSaxE,132\nFIGm0YdXotI,126\nv4Zjie4qH04,132\n6Tjcx6B5lbA,133\nlAIJ6Twk8aQ,133\nH8Ancd0WztU,132\nKuXeOs4oOBw,127\n-4_rMqeyOJY,131\nkEKqDuIl8Wo,129\nCw1YwZlfijg,130\nC7_7Wco4SWY,132\nVKu1354bPug,126\na6mkbps0BmY,132\nap9g2vR32Vg,124\n6e59qLPJxgI,96\nWTs3TbtIwUA,133\nKa-SEhfCAUY,121\nHj9WsioJbJw,133\n17MyPrAEQ28,131\nSYHN3rt-R5Y,97\nfnH1ZtugoqU,115\nyl0jujA2jLw,139\nqSbI8KRB74M,132\nnDw_DOEdai8,126\nYg95nS9poCw,178\nz-oaExbr_58,21\n0bbWQy30oc8,102\nQJ3Z0TSIpE0,227\nizxDdUcC3Ag,144\nkmGvvAof2Ww,162\njr7HNZg0ljU,128\nkp3HaaTqYP0,128\nsJusqH8NxP4,133\nFCcdMEItd-U,121\nFAWPEOWyWN4,119\nppUBsedlZVY,20\nI2yuo_5AkCs,131\nCO6yUpPvY7s,109\nZ_0TQHoV_2I,131\n5CrufNJ4A_Q,133\nJ511q05SReQ,132\nr_a34DBcwCE,131\nCvK9ZJVsiPM,110\nRkH6Q6d8ihA,122\n-pVDJkIp5sc,98\nLTqaoTSCTc0,129\nCmhinct9OGE,149\nZSKSNo2z8AM,127\nGd6aLnPHqeE,72\n3NCw83LVWFo,113\nOdL9R0ZODYs,133\niCfBiIzWG9g,132\niGU6Zqxfw5s,107\nK7Dd88h25kU,132\nFYo6dKubr-Q,180\nxiNxK0Xiv2E,95\nntgrRUML2ic,176\nnhKgGtFIqXY,133\nUGKRVSevWnA,130\nxfwm9CY5dao,45\nEMOE8Ub7-zs,89\nV4rNLT7N_VA,117\nRjKNbfA64EE,144\nbIcPNZlEW8w,174\naFqlaPLvkw8,165\nQz836czauEk,92\nLCxS9lUlCmE,132\nvMC1uXWmVCI,20\nqNCFZLQOj_M,132\nMeTuNES82O0,133\nKVDtV-uVRq0,119\nBAqabMWnAmk,170\nfY-Aprk4mtY,127\nwHSH-NpCQOw,129\ngHAJY34g-LY,123\nwsvdvNRcUVA,120\nXNfCPe5SGbw,86\n0vVy9NBehoc,97\nNgUGViWp3tg,166\nKVt9YlotsuY,105\nG_2PNOH_j6A,132\nu9R34QNUy1g,89\nYieQdHA9uIA,104\nfO8nqGKrtDI,154\nAWJPmyL5uHI,132\noCjXFnr826Y,102\nEniROJmSS8U,134\nqBWbxMv6v_s,132\nV2E341Ilexw,132\ngOb8HH2oKcE,130\ng8YFtf6tfRg,83\n6f2-XlVHGcc,132\nPypxQNMzAHM,120\nYdaeVone5qA,130\najBK8B_kYO0,132\n1UWy_6S-ZfY,78\nud1zpHW3ito,132\npKWLGY2fwZg,132\nFVfoce-wfgI,77\nhEiI72hLQX4,124\nPTG0z3VWa8g,95\no2VM3B_izXw,92\nBZejgesCJhE,125\ns122VhgDbEY,10\nS04ArwiZwjE,130\nbKOW66PVjvA,128\nIBN5GruNnME,181\nQN5dfOs4TMY,104\nf3u4j0hVy8c,133\nD83XRiOVARQ,124\nL7GJ018Avgw,124\nLFhlnBzdOtk,119\ncyEwqVnXGU0,134\n0njU7LPADwY,98\nAKpSGtlsBws,128\nvEt5MqYD_3s,132\ntrLRP0-zvtU,77\n3kfnzu3RrFM,129\n2wTJfcaezu0,129\nvykvU-52g6w,132\nbU6V_rkvECA,152\nul_HuCZxxNU,62\nnYkD6bPe9Ho,133\n5Ipcnz96hE8,105\nOAZo5VJVZCY,124\nUd5-cq0a1sU,177\nCg6X7ukYzTo,125\nP63QUmBOP08,103\nD6XLyg5wBHU,123\nUg0QqktJ5tc,106\nSFHSKaQESeI,125\n8XkrkBt-8LQ,129\nnALXcRjbVzs,98\nLN1WX6JkYaI,132\nCcKPNcDGDLs,140\niYU7ltkHYXM,125\noa1LGWv3zkA,140\nGfX0WTR-kNI,208\nL38yiP7vLwM,149\n4cZQOWaWYj0,154\nRh4ap8LIbtw,121\n-NeY5tqk1N8,115\nrojN1eCJgiA,149\nrYXDky5UYks,123\n8fvhchY0UmY,127\n_SR4O2gcXYA,131\neqdLKw173WI,125\n0r4uUQBLokk,127\nWF724QBowDo,121\n8MW3KJUa8FQ,125\no50HHf9f_SQ,132\n47jfeR1H65g,128\nTlcxW8KUzks,106\nB8CGtuR9FnY,126\nLpBQ2Q6GMlM,75\nUNlo03HucLM,123\n0MU_p9wU5kQ,133\nfTEPaF5TjWU,209\nGHRFqRbAx1o,130\n-uQOkA8zuMk,126\nDDv-GQjcZDA,128\nC_QYZUjx7rs,120\npMoxr-jgd58,103\nNt3KcuHdwDQ,10\nUJhTR5FTd2I,135\nmeN82_c9J_U,121\nvRaCv5oNQ3w,133\nmq2cz9Xvzcw,77\nshO2tSVK0IU,133\nnE58ZtIpNSo,116\nuYV11ZwpaSQ,109\n9FIHPZrHVGs,131\n7dHg_hYZDCw,132\n1G3a0mUEz5I,132\nqq4gK8PkKNM,127\nGDrnSzfL-aI,142\nxVc_GWABEFk,94\nMpGCnuiCSuU,101\nLHpto8gCOso,229\nlNHheEljm5s,130\nHBrzlqErO_E,129\nOuE_YH1pzC0,129\nmQ3tgtzkz_U,108\n1DANEtz59KA,132\nv1ordVEmJQQ,183\njfbbUufb7jM,97\nFvka6JcREsY,133\n35LPE5SjhiI,133\n3ZQFpUxopm4,155\nmUtHkSw9nEY,128\ns4nMGnlbq9I,167\nyeBqf6bYZak,56\nGU6US0VlAio,124\neMuBBjnM4yo,103\nVz04LQ7GGzc,131\nonxbHFyNqGw,133\nlPfrzsQ2-Qo,130\nWIrebinrQH0,107\nd6Jy5tMv0GA,110\n-lAXOMpPqYM,133\nhWRG6Oar-aM,103\nmcWrZOrafnA,133\ntoAOUXtlXXc,133\naHJKwOGb7MI,117\nlhAQ43EIZ-g,233\nTp2V6oAgYbw,132\n55wIwwmrHxk,254\n_6AGOfGHzeg,131\n7iMvnj_UBqc,132\nPvtJeQ322eY,131\nr2xpAXMPRHc,97\n3V-kJbW3b54,132\n1c15w3kCHkw,161\nc5ZiiE8fyGk,123\nU6xq6u7vv0U,133\nPW-RHrX7Fnc,113\nMEU2EJBkJcs,130\naZtlkGEwfSA,132\ndL2_nbhJaTs,114\ns4AzrUO3D1w,133\nMqQ9-AP36z4,105\nBI0lsk0EjfE,144\nLEdvMVoFgro,50\n7nUDA-4vD9g,77\nRv1LUObd720,133\nnvdBfpA8r4o,219\nuykR8csyO-w,170\n_RYBglsS0tg,110\nw4o45-EnPrU,123\nXqSYC_vwhDg,120\nohgN4PexEv4,234\nGvYsdMFsHuE,115\nDtoCw2iOTSc,132\ngzQt5VctFfI,131\nckAD2sg5SxQ,127\n0QTBwHx-Wuw,125\ndTllG2KdPMQ,131\nBkGbYdSwFCU,106\nXU8Xdt7tSyo,88\nNAZYmJ_bVkw,107\n8TIPGj4-f-M,132\nrz41nM47q7Y,111\n7OARf8dNLBc,158\nvR3FPplcJGg,130\ngINx5_Hs8C4,104\nNJF70sHMFN8,129\nva_wuPBP5kA,180\n0v7Ea7kg2gA,130\n0Nn_t_RfYS8,131\ntcfI_6ZMZQo,133\n2QCUgqD37fk,92\nBrRdy4BAYp0,63\nX1rnBQJxfdk,113\nPGy7bpf9ibo,133\n_nngOtRHAK0,130\n0AslM2bC5DY,125\nHapeoGg80EA,123\nqvFduxMK7zo,86\nUu77LGPAlPA,131\n5ai_pW6LPpE,121\n0x05PrIasjk,122\n7PcolFECV_k,143\nCztbQ4Fgv_w,162\nx9L9S7jEv_M,132\nr0-vDDcDUMo,133\nltdgreWmnSY,121\nEwdFmqEvG7M,121\n9Hn60TQSyTQ,124\nYJBNE7F49Aw,181\njbh5Q-eHULU,131\n1niI0J4kdI4,114\nMa6SDu0V98Y,98\nbW3ur5td00I,133\nVR78Ss7yoio,103\n89OOSFlcy98,89\ncOe_8-IWvmY,97\naDm4L7gjYNs,184\nqokWn0jfbM4,129\nwAuzCjipF00,127\n8BI5jFyAdZ8,131\nre0xt6hDdqE,131\nf5lTRa_ZJn8,212\nHYFQ5Bx0tYM,21\nMPQvVBaOx2E,133\nDYE3nm9voUk,125\nfsTh_5x_2ms,10\nnLcCOlgev3k,126\noNI9u5Q4TLQ,131\n50ZwjmYsIcY,142\nLyfG5cnkuEI,119\nV1bgBW9xx40,130\nkELmSLtEiiI,90\nhA1BikUzBKc,130\nDM7JBXzCP1k,115\nMoPFAlf393g,131\n9leTC1Rk2bc,123\nSUoTL5GmDGc,10\nMM0kq3y2AMk,128\noJGQgAniyho,133\nUpHWJ6959yo,134\nrenIgi40w5s,128\nPaei6bi8XBo,159\nHdCdfehvlN8,21\nEj9siBXzHzY,128\nHsi4X9MxtkY,133\noEODtP56lBc,141\n8upFfAQcfEM,212\nKHPPeGoWDEU,77\nIYqE3JfSbzA,80\nuU59kXuJHhI,129\nic5tRp5nKOE,122\nRUvQEHa_lZQ,114\nyxVC4lfxHGs,132\noxjeihyxCnY,132\ns0_sBamhlIs,129\nRLcngJeCHtg,122\noN2S394WfuU,138\nj6_umKYN_JU,133\nDK7-VL8Uxxo,123\nnbvrhb33Ggs,22\nzJ3ZcmivZhI,180\nacs2qgkCHvw,83\ng8nPKVElb88,133\nhYq75Gm4UdI,111\n2mXAB3HO160,115\nenY9iKZ8mDQ,130\nFmG9SZNVpmk,121\njbCyTUSQ6fY,120\n0pxJFZ8HRV8,133\nZQzBHnXdPY4,130\ncxgg3KTdRcM,96\nX2YdsIm2Pj8,132\njBajVRGElXY,131\nCSwnlwsBAFU,132\n_fap4qRqTlk,179\nRv6_mS8l48U,133\nj2e41FeccuA,132\nHD8tSGHYaGA,132\niv2j0CJkzbM,115\n_7Y_OCGOKTk,126\nPLtPPtaCZQA,130\nZmnzw-Dxym4,133\nrm6i_YfioZU,130\nh4eOGlJpLYg,101\naQRjyav-x8o,86\nqqWVQuCaB6Y,132\nqZPjRshIz4s,121\n8fbZvje4A58,99\nAgZGoFX8xWY,121\ncmYsRcLMvO8,180\n6bRqnek7R6E,117\nSs7i62FguNY,105\nhkHrNtJHbRQ,86\nP5Mn2YHVg0s,70\nb8SJezYEQHA,124\nAfyZ1bWv7Ls,133\n-swpG7VRhpQ,132\nMtWRq5FXCbo,131\nj3MZdcbv-ew,126\n2QLbTjd693M,135\n_U_s1OKHnlU,165\ngtHSeq99_l8,132\nfJ0myLkUGjk,144\nKVy9rgFD5js,132\n9fuapCaufd0,116\n89c3RqTIxws,129\nGp22ZHf0_a0,128\nx8kclPvcsTI,133\nQihI3ORsFn0,130\nQz1-NSdsqNE,67\nPjJzOpe9xEg,131\nUEemdeEfw-Y,133\n2BtZY3z72jY,69\nW-OzWbkk5lE,134\nDgd6gV5Z53U,132\nL_QCioSGgwU,85\nQpxdbtnTXXY,124\nDW3d5hYgV_Q,152\na861J6gxqmg,133\njj7BRKHml8g,103\nZ9BefcGEB10,155\nr-briQqhGZY,132\nW1fv8bPOwGk,125\nDCT__l4_m4g,133\nAQ_Boszvgg4,128\naE4h5rX9u3U,128\nTKVyyEsA-so,133\n8VI6vvaZxbE,132\nOK7Hm5IztPc,133\n5clBF38sqqw,133\nHaG2Mm5K6TE,89\nRjdPAElUs9E,130\n9M7i6Uaf_f4,139\nl_7z4h0soHg,99\nFdvsQb7f7uM,194\nRWwhA2v9UFQ,118\nWSIS3ZUDzzY,97\nUy5uLy_cpwc,176\noP43IvevmjY,191\nb_HhiU1mOwU,104\nuIl9IFcIXlg,156\nnLTcdOr66lA,133\nsCiErOySQtA,133\nn1rhiQzW30k,131\nD3XYhRv-rBU,132\nq46jifWE-uo,28\n6XFzJ3WtYPo,125\noXouSM2JOZk,186\nd5lyojjyMl0,139\nYklwFCfEEMM,120\nbkxVMf2ozrs,166\nl59t24vh3QI,133\nitIDxKxfGJI,121\n3gCyObtqSEo,130\nHNfciDzZTNM,110\nwj0aH_PiAnI,90\nhEXsOOVWuGA,128\nyfrnQMbd64w,133\n75A7PFuBqFk,132\nnq382fby2yU,125\n0UBym5z6rgM,64\nlBSi1KKCRQY,154\nHYkSzS4v_sI,64\nuAtcsqDjOr8,133\na5PoLM_QBuo,108\nVWb1z6ZwUoY,97\n-jiHKFt981Y,120\nLOxqK6o4NN0,130\nxEIhAu0v-kU,105\n7SQWhD6OeRk,105\ne-KbcJI8Rl4,159\nqPZWb3abC9I,133\nNSXcYEFY_ao,142\n27CB8wWJt94,132\nYMb-AODYc6g,129\n5dxhOkrjfuA,119\njCatADs_uW8,143\nXFOoJ3gwplQ,124\nWcZSEqj45Ws,75\niD4lY0brr60,127\nvrujU3pc7-U,100\n538H6EYp_ZU,131\n_MLgnDZguM0,84\n1i2_WXJB6wI,93\n9FnO3igOkOk,129\nCYgJjicx0yI,128\nCeMiILVlZgo,107\nNOadx4ZICaQ,251\ncJeYngoI1oA,130\nCwLcHWwjkV4,210\nV9jD7kLAmPM,120\nRW4ADt4YSy0,131\nZ8vCm7TUK8c,123\nu_Bfpbz3owc,129\nTuQLFcJ8Eyw,111\nqTIc6y5mojw,129\nsEaSAJgaLtQ,125\n3bdQlGt3cEA,101\n0lR2P8Uy1M4,20\nQns26Wdvph8,133\nFL1acMVcHGo,140\nxZYfE-65U3Y,100\n3rtbO9uOirI,98\njgdFx9Epf78,122\n8kBKeCR4xiU,133\n9MyynB2RnZQ,137\nJPofeRImxv8,111\nmO2W96NCiRc,133\n8CCo0EI6zIM,103\nBjKq059eG6E,97\nhACnmen0sGY,53\nG3N_ELEBvH0,172\nVtEOGd7tD9o,105\n7ynMrmloUVA,124\nc2TcT9JairA,77\nlJVIu_wNm4g,133\nrXqRZvG5LAQ,133\nAiJP0M-5Mjc,133\nqDTmyJdVAF0,118\nV7yhBe0E85E,72\nbAyb9cEDh2E,127\nFjj4a3zB1ag,131\nwNqqn5NPJ8k,50\nwQ6wc8oc_E8,133\n_EZCG2Ex8Q0,133\nMC2MLmGhc1M,43\nQKKrwhcVEJA,131\nWxo_5gNakBA,133\nbXZFFinWVYw,46\nvILYE9lG3Aw,126\njcp5lTiZEUY,133\nhdVQlYgFRuM,133\nZN9EtTazTl0,130\nF6RpbWC4-L0,169\niqH7W6dLTZY,119\n9a3z1lvLLng,83\n0A80j2BuMaU,176\n1i8l526qhzY,103\nI4hc-GcHCsE,81\nX7U_RxbkaIg,121\n-5H-4fyylEQ,21\ni7KcAEPxDwQ,80\ncvEJy_9hy4o,120\n1DnnWl0Qkts,158\nNVB5kj4k6O4,113\ngRxu0ooBrPE,125\nV0MF8uNW_gc,127\n5Q-wdaxsAac,65\n2u1RrWj4RDk,132\ni94ldGNNSQ0,133\nWQyUUpQzdto,78\nNxnXB1ViFEk,126\n9aaVOicCVcY,120\nsPS0cKOGZO0,80\nyMiGHGsdikU,131\n0GH64kmHZvs,67\nCrKUXT6JZ7M,115\ns109ZEZXQJE,56\n3JLDAyAEaqI,131\nDv6rmmAk_Es,122\nVlGVLpW7Dsw,132\nJc0r-WTEnzc,131\nZTGK6ChH494,123\nfCQb93-RrZo,128\noJ_2e3gdfNQ,132\nNMrgITIzg2o,71\nJQXj8pF6Rx4,100\nLj7OCHi8x7c,71\nRH4cgOQjITc,119\nOel3rZOooFc,73\niTwIwfvNJLk,131\n8_2fitdIp4c,106\n36WAEsNsfng,158\nZqp8_F9EXbw,115\nJ2ZnJvnPgRY,132\noYcKftzUS_Y,130\n2mSiP5Bbdxw,129\nZPP70vRDmzM,88\ntfL5f6cZlk8,131\nljdH53Ro0xQ,124\n47ptIuV4NLo,97\nlCs7qjJzoDg,132\nYnpV0k673Ug,135\nAwh5WP9BbGQ,120\nMG_o8Id_UCU,122\nn_Zor8p_ZsA,129\nJ4yrUjXQJdQ,128\nKuoC25LQrdM,73\nQ7spsnpuZQ4,151\nlQWvCntonxE,90\nfeHbFy5zPNQ,124\n-5Rohhkg-7k,113\nYegA1WNRKnU,131\nkF-KLIi97Uc,122\nDHUSpAtemfg,130\nOSfjh0d3RkA,131\nHkfaRh__E6U,133\npxy0q9dp1GA,85\nmQAlpiB3_FQ,120\nypKSbnYOrwE,65\n-vE1JNGKvxQ,92\nJPoZcvcPtIA,127\n2OOUlE9F190,133\nqSnUywWS9xs,125\nx7CXlwS73iI,103\nMHfk4edzvnI,131\nTs4u--T-fDc,118\nf-zgBlWksMc,104\nuCXHj1i42KA,142\nAIkEAcjhQOA,133\ncWYIlga8sas,166\nHaTAZMTwVoM,100\nj42TrAVceCI,160\n3I6s_-Q_2kI,121\n7euiG3tT2R8,98\nUYOH5SCstlI,103\nwdAXjMj6mfU,133\nUONfi1pwQzI,103\n1EnGKC9Lk_Y,132\nZ7C6L3yRYGM,100\neDblDj6BISo,188\nLozIIWJG9Fs,123\nJet1_E4O1MU,176\nOgEr2VRg6n0,106\ngZ9nPV_stFA,109\nPKr0pj8Dw6A,130\nhFqDZ3vzyRw,95\nVF609NvGcCM,206\nTHLll7d7Dfo,133\nOFmxUUOxZl8,132\nCXacLvKGrQ0,128\nXClRjF_xBj8,128\nHgTsJ7hBQ-4,98\nDZfq30VdBqU,118\n8XglzsFYAJU,116\njMv808xIuwg,133\nS__SZwFn0Rw,65\nPd8RaVEZlyU,133\nYv6L4DunPDE,132\nKD5DVxqmjRo,131\n-opqUSOUDQY,211\nJtqEy9DW91U,133\nhV-f5LD5aeo,21\nN6ffGVe63c0,132\n0_pN-X7Gew8,132\nNOphOh3EqKI,112\nu0N4nuBY2a4,45\nY7y8tLgvpCY,131\nWSbK1kJvTkg,117\nC2db3UusdPc,114\noQAqWa_86vg,124\nnTz_lWcgDhA,123\n7ZnhCcj4sXg,131\nZtahDAhvvSc,133\nthOz5eO74hE,85\ngmo_PhSftuc,128\nu7tSASIBz4Y,128\nMUeixjmY950,116\nbBBV7uUGER8,111\nYorm8_AGu10,133\nPPMM8VRgEUk,106\nddm0aMIKiqY,122\ntPJ9WsQhpMw,125\noN-Ck_140ko,114\nG4BGtSvviS0,132\ng2h8xRzMxtA,67\n-AlKOlUgzaI,149\ncFzsm8tKWU0,130\n1Mx_jHNEBtA,76\nxVpk12wYQ5g,115\nT60vdoUUk_E,132\nANYJbKdMHk8,115\ne4RGh5iAykY,153\nltMrjNiI340,187\njFKbSAjlJY0,115\nnjP__lsFwE4,133\n4gbvjHb0ZUA,130\nQUVhbRmhn_w,115\nLnDG46BruE4,104\nClrfnLtqXYo,111\nEy7El6aRRH8,10\n2hlDkSg-Ycc,119\nwXYRFo4rrrw,98\nw6kumXHaOeI,132\nqlUmBE6uGu8,123\nYALDmRKFYSk,129\nAO_t7GtXO6w,195\n0oDBrYgawmI,147\nRVDyoCWz0vM,180\n3aCT8ZhNBrA,133\nt9f5FmSQeB4,133\nmflonVbY9gw,133\n-KOG8edoC00,124\npoxW5pFQVEw,132\nxR9HuRUUTbs,128\n_qJp9DwYgck,132\nYldUEtdvBZU,131\nTnwtTQlfaQo,126\nUyVSJcL-7BA,185\ny-4yAOPVjZA,125\nOeEa3gTsVDo,168\nMJJ8AJUn-p4,154\nQhVuXKypPs0,132\no_vwPlWTrgo,147\nCElBVpRFk4Q,24\nE2U5HXLiy90,128\ncQhgVl3V1Rw,166\neGJqzSFW9Zg,114\n7FN-chIhcNM,150\na7qRJ9T9TPg,128\nqYf35nBq8Oo,119\nOg_AVlwo94I,120\nDvTSWj2tgnI,99\n2cExWs8VUN8,128\npYXkfLVbLIQ,132\n5XINVbpWRmw,125\nTgOGj14T0M4,152\nFYcrFQ5boyA,132\nCVyeyli6gzg,132\nFVJX6ODlvFY,90\nz7vdutawe8g,121\nRslDexUKDB4,85\n3J2Hm85PD2E,127\nQ9AIDn-w3EM,119\nsiTZSTZwJ0E,78\nHuzpoTGja5M,113\nHv-n7C1EU3U,130\n0AUpWC9Whfs,133\ntff_EEQt79s,133\nbuGiJK-dXss,159\n-A-fBbIXbPo,133\nq-5e6U4CdbU,136\nGIiXwau_5iw,90\nL-iyxIincCI,135\nB3nAwyocJs0,154\nP_mbrROQcME,131\nlWflJvuYww8,65\n_OtcwxERu50,112\nH_SgDfv61O8,115\nhZqVpO3_MP4,164\nf3XcExCD3HM,134\ncudAGo1nSKI,117\n5Z8LHf9J6PQ,110\nBl0c_aXJtUc,133\nirQ89Ny0HkI,105\n-qs8tLNcMVY,123\ndu22ttQhRhA,217\nsx-obtKU1jM,132\nCYF7eLv3hMw,132\nLfDjQe0B7Tw,108\nEqoU4-wHxDU,84\nyPQQzJGKOvk,127\ngJCMd15eaW8,129\ntv25UVPcgxY,123\no_49_kbx9yA,126\nU3lA1kS-XKA,56\n_Cr0nP3k_p4,133\nTsT0ExNMK3I,133\nG9wDgZk1s6E,117\n_RUjbQGPytY,132\nICC99mWSW1s,130\nZQ-8RqS16uU,117\nq254XDNZ2Ao,125\nLQFM8e6gQRg,81\nOinSJLNXgA0,129\nDdZlmK8Xxsk,98\nJxk0QX01quo,109\nWGBw3zwzqwI,161\nNAH_6By9C7g,65\nT-m_67AX5Ms,121\n6BGmQ21EekY,132\neI8o5C5l9J8,76\nqL1WqN1XKK0,122\n_d4WkQci7zw,133\ns2pqELFTepw,122\n6Qhj03nCJn0,105\nkRCO31JfDck,86\nRh-nBzPUoOk,116\nZhMpx9aeefY,131\nF7UEddgJxrE,132\npZXuol2q1Yg,93\nuFzV6DktOzg,147\n6JHAWVBOq3M,127\nGeYJEkN4fao,119\nB7ZTNm5o780,96\nWpen_d9INlw,83\nIqycJpRdVaY,98\nvqlURGjq4AM,83\nnhwtMOjWerg,130\nGmza139ypxw,108\nfuCEfNfuoiM,203\noyaud2-X1QM,132\nKuwa9UzfMGg,132\nc-f0DwbNF08,33\nl-vk0fgFGd4,92\nA1Tgrq5wLAw,83\nzPa3qf25T3s,133\nOnYQyspzLEc,121\nglz-J_geNNI,125\nuQ84SYJmHYI,112\nOPmVkpUsbz4,89\nETqX2DZqAN8,132\nZkpC7VsyqaE,108\nXWI8ugmXnwM,130\nUyUcpWaa_p0,21\nZMb-qj1X1do,133\neYJYW_9mFVg,132\nyJS6icRaOq8,131\n5kmgUtppQP0,132\noBw2yV1ZvUw,20\nTsBMOksruxA,124\n78VWWyPDmss,133\nyn_iiD8lxZQ,72\nNfah2Cy_mwU,131\nf39I-UCl9Qo,132\n1kh5X5CJAOU,179\n6oUQEh-Xji0,133\nBd1CBat6DfE,21\nbHPmA9JEEQs,79\nb0SfZ4LMV98,73\n5JLr0XUrEF0,130\n2HTHPtoNJLk,121\nBMVmbqSR668,122\nre8jdVlrltA,132\nmkYNhZvlHv0,126\n5BKMV5PyjDg,126\nH3E2nY0djIQ,120\nLCEr8N9zXy8,132\nB_CRLQ8VXAg,144\nySu6q4ydPZQ,164\neug4wbPSykc,131\nBPrF_0Bg6iY,99\nQEkSX1S4kwg,180\npw46kpxHbls,123\ny7Ynxoqo8gw,150\n8osn-0mHqC8,121\nWU1F3XLgVC8,20\nX7KoVUspHys,135\nSMChQJPhzfg,50\nDTXU2pMEZeA,109\nR06Ujp-UBx0,117\nEmUIfX9TSJs,132\nHYvwDxWCSwM,120\nNG3ru8QGwl0,114\nISTPRoBW2sc,129\nzTueXqC-xfI,133\n0AspXDFcGlw,129\ngz-Uv494KFk,131\n-o8b7tsVH64,130\nSGbvYkCLZ9U,111\nDHDOgbfwSlY,107\njmjcKSMwC1Y,128\nbbTgmSIDyn8,133\nDfNfg963uEA,133\n2wOJBjpLTBA,109\n4aI9-g_n_OE,131\noOFNIMMfTUg,117\nHmGeJVIfb1U,81\nHnnBvemHrWA,132\nt5xpX6krGmE,122\n6IPcEITrktA,118\nQsQAo97BaBA,70\nm5rfQ59cc0o,110\nS_fzdjP3jKg,90\nT3dPGXTusv4,128\nG1IQQRRhI5M,193\nBckPa2_A8gI,205\nGCEBqhWnUDo,130\n_th4Xe6Dsm4,123\nvz2RAznAy9Q,133\nDhhKbHpvGwk,113\nwnosQPQgvTs,112\novy6F76ip3M,92\nKISK76nF-XE,131\n7X3WSQtviJU,133\n4pOlBSLt5cg,42\nNQobuzmBNXo,127\n5GL9pbYS_D8,98\nz3GNhBE2yhM,91\nJXnNKqu3N3w,125\nycKGXmtM6hk,101\np_UeWtpIW08,133\nNjN_jPTXHys,133\ntqfFZYur4sM,82\nM9m4XUd6x98,132\nv5wBisDJJ5A,128\nTb6tz6ohprw,125\nbxegamvM8ME,128\nGJz6eFgwgkA,131\nRxjCZxfPA3U,114\nffPTYWq1YAY,132\nIOmR8ZCYhzc,131\nuc0l3djxQ5Y,129\n7lKWPxDej7s,112\n9h_-TIM3kdE,110\npbSX1diNIlY,125\nJJAByeqjimo,91\n081zoKkdEYA,133\nixbStXcVqW4,132\n0BozXvlwFCk,133\nrZuHQ94ES6U,116\nkCqEADYRg8g,126\nHSWtc01BlqM,258\nshIHmOihazQ,125\neopKHS8iM5Y,133\nZryPGAMBuF4,112\nIeMmE7HvO40,153\nRvQ1y_CPuDw,130\nopCf3mp24dE,133\n-kRGB8yBnrA,94\nTkX-TPaodoM,133\nGiom5_byviI,126\nmaWXwv9cBS4,132\nXobjkWljkXw,131\nCjfxDT4SSTE,21\nBZ1KEaetIwM,131\nfjVyrWdUy0c,129\nLnuqPEIHL9I,166\nEb3oEMSXPnc,127\naiilV691CzY,81\n-2LmKW3TtuI,131\ndYvCGjka2-s,185\nWj2sfYCpHOo,119\nSXeiM5hAWvA,132\nHYtuw0c3dJ4,130\nz67cBIaUOzw,130\ngZGFF-UGRuQ,21\nDEDWjeRGMks,125\n0I1Vh-Ru1z0,125\nE6SfKJ0TmXs,132\npe1z-Tdk36M,67\nMuBwxePS-s0,125\nvYafR-6wNGE,132\n2TWpil1VJ8I,55\nxy2zgeQ7ECg,224\nxG6V0I6_ZP8,119\nLc1MmNI8jLc,60\nfWxKQF17YHk,157\nNJJDRmtivWI,128\nC1ZrzzP6tSQ,143\niMA4bMMh44w,92\nfjsZJkL1lB4,177\nhrcFkSMZBng,124\n70yAXCvid4k,84\ny587UlBV9jg,83\nNVBPoGcuLK4,42\nEcffcR-lgtc,96\nah7mS9H_TOM,132\n_3CJHN6bBzk,85\nVX5XAwBfy1w,131\nAbI_r4kXbcQ,132\n_RsQsYJ_oWE,91\ncbzkmMaYSNg,130\n4FsDFOIWiHo,179\ncPYdLs7RRRc,126\npUNArJgkB2U,128\n-c9-2KcnLXI,133\nV2r-pCAO4rw,154\nWo3XrThPZzo,137\nx2wH5RS58lo,217\nqYgpnWoRbXg,107\ncjS-Y6WsWMg,133\n8FysZvGGiz8,133\nMKVy1bpJCi0,132\nuAO727Dw9hg,112\nr_3r5f1W1Oo,133\nfltSq_QHbbk,119\nA27nH_TtN3k,104\nERw4l461lhU,179\nHre4nTAQcIA,79\naj-OpTHixpU,124\nktrHO9uETjk,118\nPgeCL2KdU_I,130\ngU8Ksz47C54,96\nfhO2QtGb8tY,71\n9ouTUr7L1oQ,10\nuNsFppO-q3g,79\noHyebwN9XXU,103\nWlaQZKko8bk,114\n4F5sPA5E27o,131\nkQoFdaWI4h8,132\nx6oaXdPsiN0,132\neL9aiYpAyI0,133\nbH5GtRBsss0,132\nsfHaTenaRBI,124\nzTX_mBbobME,109\nMM01XhEgcF0,112\nB_PvKCOXdiw,133\n049R_wOazQI,98\neMFxQti1xHU,131\n3SNcyADMY8k,132\n1khqylEN_48,69\n3b00UbIxbCc,131\nCekWztEL504,129\n3fjlQw23hd0,132\nLTgahyvBMk4,128\nbSW_sW_A8pg,143\nGofDgoM13BA,133\n7rDK27McgEg,120\nCj-H4ZcfVU8,113\nrB0t5juhYkw,21\n_qit_nq-jUk,130\nKu9rtTERy1A,133\nF_HKGZRUroE,116\nh0i97SWIdLU,131\ndbH4Amzn-Rk,132\nrTCpK6ONu9M,133\n9SomT1Cop8A,117\n7_OHC_nqFQ8,122\n4sJi6VExXuA,158\nbzRUc3Zrvfw,175\n93tR96egox4,131\ncjFIi3PC2cI,174\nr8cegnOVDjo,140\ni7vKbmKF9VI,108\nh6M2ZbuGfYc,103\nAHudLuix7As,101\n_9JONJG6KSU,132\ncidI_7BQUJE,133\nDX5KZHeK3bw,159\nBWm1l21hBb8,120\nULp3vJ6Dme8,133\n-eocP3-Ifag,133\n-heLeiCeD58,106\n7khCMEgY5wc,130\nORy5ULEbQ48,75\ne1NkoFF-13U,137\nHKrJ0cZ4nDE,93\nXtTVNCZEcAs,133\nEOSJ6vijGyo,130\n5aLrRe3K_6I,154\nhTzqKlFConk,129\n-dkz4Sk6UuA,132\nMI0gOipkexk,133\nd3hs2M_0vLE,122\n1DkaN1nDQoY,133\nVtVq2S8qp1k,95\nB3v1kEzT4bA,152\nH44ZLiOlN0A,93\nHC9BNtZrnIc,123\nOT-cPtnytxo,129\nSDAdzb9IeGU,126\nY_bIzO41o2c,149\n41h9uoNt6F4,128\nhcUVOlbNb30,105\ngknxRGof8Pc,143\ntwkjN0xQsWw,118\naW_qXKNDWtU,114\nt8Ql94ApRSI,99\nRCptP8ItWmw,91\nm4VP7c5UCdE,51\nnDTVpRRoqcw,143\ngZbzZaYK3Zo,127\nz8lDbb_76Ug,103\nWdfgoDKArzM,109\nE0NZlvha-KQ,132\nrb7z1bFt79k,130\nJR_bnlkaEss,97\nSfQk_TF9KJ8,133\nPpUWjff_OcM,140\nL5Yu-IGx0-4,173\n9lTKjTuPGEc,129\nvgZL3KUbu8I,125\nQq2TXAE-Ih8,130\nSZKLpJzv5JY,72\nVwP_-8SCu5s,133\n3y4KK8Bd5l8,127\nOdaMqivNKZ0,145\nA-BrlQ3h1i4,132\nTBBN6WvPavY,126\nSAYvv7GeSSE,166\nlhhxZt-oU38,72\n5WaI5NdGVw4,133\n8rF5KWQw6YE,119\nHJjBZoopPXw,122\nSWjCrhbuvCM,130\nUqbTLJ0U84M,101\nHiuPgdW3E9g,162\n7ycl6niFTsM,132\nZbeXU9FIFw8,104\nesXVSyflpDU,133\nAQAQUyNnXms,115\n7Ro8QybNKu8,119\nIXgeL39PXAE,71\nRtabrwMvAuY,78\nmSd_B5ZTP3s,107\naV2eCTRFJbY,122\nxHlaIIyiRSw,224\nqcFVUGNUWuk,118\ncNkof76o8P8,84\ntmwSUyoEItk,81\nuOmPHEVoSa4,129\niwXsuJXUau4,133\nRemcXMCCQVk,127\n2AHC98YRBKA,132\nMVSH6eiGvSM,130\nmSeeLOr1GKI,128\n0QeOXuuFo4g,133\n4R-cTX0i2hQ,132\nz8jAdF6Oy5Y,46\nF5mTt2atvVk,133\neW4DpZkOe1g,133\nljK_2ZT44jA,126\nw-jFuEpRFOM,145\ncLYCKmqJApw,121\nb2WuWXRVdfk,99\nFXPNIj7q0lU,99\n9d4Zddhcqbc,133\nnkcLf1CH_MY,132\n_VIWqtzAHQ0,151\n1tdZ_k0eaHo,133\ngzTzSOHP_HM,133\nBPUpzQ4vX_o,131\nqBGFAnbZS_M,107\ni3jmM-Fc5Nk,111\nKOV2C0jVS4M,132\noCE8jHLJe3g,130\na46FsHMRPkc,130\nwz4HLeURVOQ,131\nnXIu-RlvPJM,122\ncUknJlnzdLo,135\nlQoMIGl_NTU,80\n2_fDhqRk_Ro,119\nk26hmRbDQFw,163\nLVC2uynUn8c,132\nAmACeERgRA4,140\nvTeY6H581pg,180\n5nyJNNk1jCY,125\nSiUT8u1LckQ,131\niCp3nEO3ttU,112\nAEEf_00tNos,126\n8YkX-DZDB4o,96\nr-Pl3TQJqhE,132\nWj-RYFPvje4,124\nlqA3TgVtN-Q,130\nCXYlv-z_xHQ,118\nHnZw65gsesw,177\nrBgn0IhMEBk,123\nD5a4_a3dIK4,133\ngUrSHyV7Opg,118\ndFIsw8XfF30,129\ngNtGI_D85mQ,133\nAWLkXfNg6ek,132\n8Jd-gAm1wMU,149\n6whKr0DDbdY,129\n_C672_Fkzms,140\nNjpz7jWgB04,133\npPDz5TWc0Zw,128\nqSmjZYAZQp0,130\ndZ-teGgl2tw,130\nodWPv33yKAk,104\n01qhgR0WsnA,176\nG9GWMbrEu_g,132\nQeydehWrRu0,126\nFy_utfWemC4,132\nUkYl0Qxgkpw,97\nCZVsWzIb6Vk,130\niMJnr5bhQUI,178\nBKDnwX9P7vo,185\nPo1GiAYyjIc,133\nS4PYI6TzqYk,131\nMTRBtcsZwjw,112\nEm8I02rqbhw,123\nsGuNGXmQZSE,152\n5AwBYVybnY0,131\nU_0oVOS3LC4,128\nZ5DlqH0klZU,134\ncPooLABE6Js,113\nBpnXXI34rSs,83\nEodapLIzTnk,139\nFnRp0n0RhDM,181\nmha0N1Cx1Ck,119\nDN3iIszMnI0,111\nS02T1j9qzwg,132\nh4OULP90F0c,79\nq0DZLuG2FiI,130\nmD83kao4Q60,131\n01X3KxC5GfM,138\nzHzbei3YeFs,93\naJl8UJ7-JiI,127\nI0jMv9vF9MI,95\n-_YHQheqKxE,131\nTj9M34DzAKo,131\nj67MZXY33c0,151\nrlX19RmlimM,75\nghn35eUPiIc,126\nwQhcRCuORak,61\npyyquXhcSk8,114\nKE6dEjZ8qmg,122\n-9P7Ge1KmTY,123\nMyvEWQL7veg,111\nHzCGd_bsWns,135\nmLcwaMW919Q,123\nIV40w-OYo0A,133\nn86CV7VKvfE,133\nMEOPA4dzK2s,132\nDTkzFvyvzkk,138\n9lX00rAetvU,93\nAedxe7JThh8,114\nxamDprXBtBg,133\nNCm1lI1L4LQ,129\nD9lmk-9V_sA,21\nhol98WRZtz4,142\nDu8HRf6pRVY,136\naCEjVC3Dtn8,129\nsqmzvduQ-JY,133\n1lCWhKWBjbc,132\nJvFNTD3NhH8,133\nBo47QGYq-LI,149\nGv_SuIRPPyQ,74\nBQdE0_Hy10M,132\nVBeTTZ4QBoA,188\ngA9Z-Irh_Y4,132\nFFVuNtZytfU,21\nXwob-vrMkz0,96\nVNJehwzHpe4,163\nt1TC-pegncQ,133\nOzCu7Cvdsjc,133\ntcQAs96Z290,21\nVwfXJVjptt0,115\nnIhrGSxslzQ,132\nBuRr2uMsGTM,156\nQXqBylUsyzM,93\n7BEpbVXCbvo,107\nVglR1HaNlV8,108\nnaUJM6Dp7qk,120\nerILyrdpSqs,133\nAL2Qj_h_d-o,128\nI_X0TKL3bqk,132\n2fEZc4acGC0,111\nXFoP9Dy1jNc,122\nTksvZdrx9_A,160\nziPAPWBYU5A,66\nT_igwYlgnZ8,133\nZpJvQAs3_98,121\nRfqBp4LFuIQ,114\nji4pvRXDMOY,96\nxLU_GvlaTtI,123\nAmd6hjScF58,81\nf8Cjlv6nBTg,131\nMBopFmu3yAg,110\neLFf1LzuM1Q,127\nFkDrbUQLuHY,131\ncCtn7_K1GZM,155\non6B12rsn9Q,123\nOGEmY8RCF40,133\nWrs-qNpKvbE,133\nB2I2s9rEOCA,133\ndAc1rDS3YhQ,126\nZ8lnce2Ij-4,118\nn8yUoQP6Rwo,97\nS_QFbRtEF7I,116\nrdWIo5R10CM,148\nj_txRPwTvpk,103\nXkNQZg7yTvw,154\nNTne-1oUAZU,203\nqwblOHgiG5E,107\nXHuewsIKvP0,129\nqLFrdv2R8ng,129\nvWkJPL2Dt9A,116\nkTtxe4pWpfQ,133\no2YKoT7jL4M,126\nXIJ-TpmNlI0,132\n-zOoQRf6DNw,176\nW112SAzt_FI,162\nbMblXxTNWQg,183\nJAd3SSNqZlI,142\n757qJxO5D6Y,117\ngjuizikJ2bk,181\nRcccijujIjE,171\nFz43jl18aiY,92\n7AnDGdVit4w,157\n3U7pCM576i4,132\nMY-ZusWqyqs,196\nY--v_LdWlQA,181\nw_ZDbyiJlF8,177\nxHtAfA2ctBs,131\nqlUJueukntw,136\nCm6FChNhtSc,133\n2k-G7TPLUfk,140\nPibr2kMG1HA,137\nqTwgG6t94Ko,167\nNggy-DIaf-0,113\nRsGRrlK84zM,177\nS_rNBw8E98s,109\nBshBOgRLN28,166\ngBRwHB9FSas,101\nbqUmYcmLCMI,157\nYPIfHEdHjHI,160\nKTIw9F3TY88,130\nHpGmAvMtScw,135\nMuG157PWMWI,170\nLn55e0EyX6E,178\nddhfpfnwgRI,93\njQp4IlURoNg,142\nX55PmVk-KvM,128\nMkn0Iji6g9w,134\nEHOt9vYunt8,145\n3lxLsyE0CRo,127\ni_9mM4F_JVI,112\nzpvTZ0G0UiM,120\nfD3pjFbgcyc,88\ncSjzA3Wl6hY,200\nQ-D1e1u4ufk,136\nLWtB2BdJ3kk,140\nctjucF9fiFw,127\nYG-plVmM7O4,140\nFbI1dmDdLg8,141\nCKtUpbJ30Dg,115\nqaQQ3LLyKvo,123\nUZ2IjJCsxxo,139\n0tg_TU8EfCs,179\nMZaX-RbQ7ic,130\nBfj5GHwgXno,132\nqW7LtKsIfHM,189\n7UANVfaybow,98\nOiJ8mt6Nn5s,170\n25UN_cgKaxc,130\nx7TNrjPLDBs,179\nBrGfzBJW-Do,240\n8Q2WgdOSfms,106\nbvl-DxX9N8g,139\n2m2vmTtcCM8,133\nXC0h9nx3Pw4,173\nmZYTLYXT-CQ,180\nTXlioVAN41o,133\nD1IshjFWDJk,122\nwAJQ-yWgSJs,133\nFo16J2G4bvU,115\nR4JJihSXMRU,184\na_VIjZa76jI,162\noSEQnREqfF4,233\nsGPeVmnAFAI,93\nS76Oq-NDyvw,95\np6IvB-2jYtY,133\nL6w-80CFfAs,296\n3Bz0cqx4ZyI,172\ndfoGRpHc4qA,179\nQjZUS2455z8,107\nmI6O2d4Ieok,225\n0Dp--gKKMJ8,134\nOvQctA3xsoE,119\nPTOkGaI3ZAE,132\nUa4pj7Sxy-8,103\n74DUcGnFH8g,280\nEYvn7xDKKtA,128\noiQPOmrEAxo,195\n6AE1I5edCfQ,130\nb_fKzher8QQ,204\n6tVC53rH37g,153\ne80EOZnHpLQ,162\ntktoOXBmflI,141\neXHKngWBha0,137\n-ON8ZTCiuYo,94\n6DlOr1PP0Fc,220\nQh5tZM4ybhI,208\nnB9rg6sxHhU,254\nvxFr0xNspFU,108\nSDIk9DOro4A,202\nPrBVgtAeNhE,135\n1EkjxpUe5TY,184\nP430SxnueE4,207\nwLuRwDl3MrE,172\nQABInjYQVes,157\neFF1grhBvsE,155\nStoThowf7Y4,143\nnQ2Y1gm0fRU,167\nIFETv7hMlqc,142\nCa273QV9ik8,216\nt6UyEPrqaQI,219\nMzzWzX-HGbA,170\nVGcOGt-OV7s,109\nqI14dmYhHGE,169\nvBtG9eqgf2Q,205\nuDAIoSeEoZA,64\nv3E4s7VN4xE,125\ncqJitdI6d24,179\nyQXi94aNwBU,180\n15lEWX16LV0,281\ngFJT9ziRAUI,183\n3w6Z_-R4Kk8,196\nxsK7WF3jWI4,133\n_-6IvJMziRc,293\nGRpcj2aG6MI,214\nSkefiJco10U,105\nGeAcikP5N7M,199\ndX0dcSJE7ek,144\n8rX7fkDLEx0,133\nWItFgdMdxDk,159\ngWHvF157sFI,179\na6QMSQ9NtGM,174\n6RbMqRpNqmY,122\nZKxqB5gCX6E,121\n_PXmVLPkYVo,176\nDqOU6NcRVe4,182\niJrgXYnUVe8,131\nhtWhh0DIFgk,134\n8zYGzyIpue8,164\nNX12Wu1uqbI,134\nlGQFgsEBe4M,210\nNkzG9RZBERE,154\ndfK91HGGVL8,207\ng05nAeO-uKY,133\nKuStVllxFuI,140\nSw4pvbkQ-jk,169\ndgyue1tT-uE,144\nmpG7K909Gi4,165\nCwqmd8pSkEo,127\njM2drh7uhsw,206\nfIfQbocblZc,132\naa0NlkF7Rug,131\npo0Gj897Tmk,257\noJT7pQyq63M,125\nE1u3lo2EsMg,164\nkf1bu5sUXaU,132\nvozjOGBUz2I,153\nq9X6tpvxZyE,235\nuwta-bET3aQ,191\nhM3nn30NxCE,165\nswn9_FjwmJo,127\noH5Dww7Umog,104\nSf47YRUStx8,132\nhT_G4j4nI-8,134\nt6plGJhbkgM,134\nfvXLs4FFSJc,142\nuioT_3dqzXc,134\np9W9PhaNGOY,105\n6JIY7mRvsRE,133\nUVOJk8TFwpQ,133\nlKBbFHMEvDc,131\nqkHBpSypnHI,137\nmPDFATjS8l0,133\n7mm8aQCp_oc,143\nKD6FsEaD-3U,130\n83BVVnFnQkA,182\nQ4B11j9T3hE,141\n1ZVcZnWu57k,128\nTJa_A5cVd-w,174\nckSC7ZLyGG8,94\nEfX6L0wDT4Y,141\nw_iXru-XxwU,189\n40CAAtSZsbw,112\nnTAYbwY6oeU,132\nFHiB0ZTO8fU,148\nvubylfvbMhk,124\nv6nkTlU_iT8,184\nd4QJy7RMxok,173\nPDWuHeevSAk,130\n1RwwTgTVnJs,123\nYeDjVvr-6Zc,215\njBMb3PU-2-w,154\negwR6gS9UMM,131\nPXSMKQqZjaE,139\nLbxeyn5IS8Q,151\nZzkELXr8siQ,154\nTcBlM3VLePM,132\nVuGGlc9x5PE,164\nwuM_9dYtRwo,123\nMrrYu07MIbk,121\nQxrBZStJOGk,173\n5CxYctMSiw0,136\nWO0KS0mbu80,79\n3reg2k9xS9k,103\n4ZiwLxnl_9k,146\nw80ZSg7kNbE,131\nfvHgXzOY12Y,149\nd0hM2Ekkk-8,144\nA5CndWt2xrY,77\n1J3WNRR4O60,211\nocDL_b6BRE4,208\nU9qK-5bDP4A,143\nbQObeZ5R0mc,122\npHH7NwBwxM0,164\nJJwp_lEoOuI,116\nW1w1qcvdTi8,134\nJe3Vjos0TlQ,232\n31LlQhZmSYs,94\nDbJ1V4yEZP0,137\n7F1OGZeeva4,216\n3K0KQCvu2Xo,140\nVLx6HcJ7sas,235\nv0xXbyXI6YI,169\nWtVDF5bNkqM,156\nD_N9S0bAiWI,132\nbTJAIONGv0Y,214\nTMe71Lvy1lA,178\nyWP5eC822Ac,209\nrwDDgGuCVS0,131\nE0og5D_sPpM,133\nkoZie6TLz3s,178\nzanh_ElKfdI,239\nx7TPeGns0N8,132\niswgTDjihrU,190\nYPXkzktz5oA,96\ntNYSeyXRkiE,127\nEE2FUs9iI0A,112\nANEr1fSCLFw,134\nO4PP1tdCHJA,113\nTSnlLU5k9lU,133\ncSO2u-StPbY,90\nHNPRZ2M3h-M,177\nsw1tJoYrs7M,231\nXlOaSZy_S50,57\nF3yawE_0QaE,125\nzhaVycw4FXI,201\nw01pKxgINao,149\nMgL18hwJZ0A,212\neAVgMr_VCH4,217\n6sfgXGPtVQk,107\n282_VCffiTo,131\nTzRrEgkfhG8,162\nR81ZAKQzJ5Q,117\noyU6En9HN8E,179\nnF74obZFKp8,175\npt94aydCMXg,169\na2RgwHcY9ZM,119\nPWz21cujw28,141\nDVQQY4-us8k,129\ngK6JyAanVNE,134\nCYO8cs7VRMc,191\n3Cf6HfBCcso,133\nG3qOB7PGBXE,133\novmEekx3IcA,238\n40NyqKryTUU,171\nUCGdsPwcKKg,235\nJPjeOAVkSe4,133\ngwGqg69sqi0,158\nKcmz-QxexRo,116\nUWS3FOpdFMU,83\n40p6dkKil_8,132\nqRQu4tZF1GA,150\np2QiCFAQ-qQ,143\nRu_KziPyopw,182\n6I5B0jyLBUg,172\nPxr_FzpPM2Q,133\nCMMXbRt2zLQ,226\nCvnpRyO6pH0,156\nNBfCeTdLDbQ,92\n0quxzV2i_gQ,119\nStUN1G5filU,134\nYQxXtdN7j4U,105\nQB9AY9Em4To,236\nR-ciRNPLhWE,99\nV6xx32EGypQ,173\ntyXI3CQSQJE,168\nZCU-wmL_XNw,173\nyMyXgCLhAXk,149\nI3G-1_l97K4,138\nAjh84X59SH4,132\n7yg4b79rNQY,175\n_wkTjOjTafw,147\n5Tqsh3b_lb4,174\nz82GwvEQ3Vc,102\nLMcBi9a8_RQ,152\ncIEPiYHzTto,111\ncE2bc0vU9pg,160\nq_tMagfE-nM,134\n06qgu4XoNL4,162\niK03b228mmo,180\nu_jemmhoj0Q,123\nc9YJ-KJZKyY,226\nPe5eL8LQdY0,129\nHFTqyXV9Vio,127\nVHkoII8ewWk,99\nOBXQr25dHQE,125\nU0HHhK_MrWg,153\nP3Mo5t61kO4,105\n0aKB_Qm-z6g,121\nmeVHiqX5mb8,152\nxAlCbE-yCTw,134\nsfgNK5f04iY,128\nATNjQgr7LXc,137\nmpgaMjGOeJg,226\n3wLF8oDA3ZM,124\nn6zlrCAvNRg,181\noyXKvCRzYz8,114\naPdxMGV1Y28,163\nSZnZMhfusbA,171\n6BBGO5M_2A0,126\n5UjmbtIRvLY,190\nuw7rRlJvEl4,133\ngnbjy2tWfd4,91\nNWNMrmwD7Xo,146\nW7BLikBY5Ak,176\nPiL1okP-jbc,168\nESUdqZoRu3A,194\nj71oHN1i2pU,147\nks7pfp1_V-o,128\nt794eVHOIvo,22\ny64QBxHJiqI,162\nlCL7DI3ah40,98\njgBGoS4a5rc,189\nsRGrUQRVPoI,137\nS6rgOlhmAHo,212\nd0ZOz1i5-PE,133\n0bR6pUOhZo4,173\nx1YvX61qS0Q,78\n9nwSOUvKyys,123\nISKL5Sy_Mt8,134\naoc1wqaK8cc,135\nEp30EE2v0mU,128\ngTKqZp_fABE,110\nzgEsN9EckAI,73\npRwRO-DTniM,171\nDWFZ7v72HjA,98\nqIhQJubhA_Q,211\nMGJlq-gjQj8,234\nEZaYMKD6Iqs,133\n1kuNl2T_mjQ,133\n7_ClXAzhDQ4,157\nFtoH7NJV5Go,170\ntaOda6ZwWyw,121\ngi9EwdK-6L4,154\nWncnbHD-JXI,111\nWCf36CQxBfY,130\n6zx4HGKU2E4,126\nFJnJJOAN_PU,246\nrYS9mUCFOAk,127\ns43ARFFNrz0,134\n_X6dHrTceEE,172\nVeh9KV9fm6s,133\nSj3sHAe1bAY,178\nzvy5tDkETfQ,130\nR8r9iHY2pCw,217\nZ0sFhnkRCsQ,148\nL4MyGhbXKZU,131\nZQHhiZUNM3Q,198\nV3aM1IFedho,178\na_hsjTExzbw,157\n92eioWPPuOI,230\nkevJJDQloNE,257\n8Lv0BuXTgoY,134\ni3yO0OagpNY,159\na2xcMwtUQFY,96\nyV5w71aImSo,158\n5QJGkxbb0wE,110\n_qxAcodjpCo,49\nMDv-LBBUkVA,88\njyDUZd-Orlc,180\nEBLS3sCB4rk,134\nueMuCbXkDhw,92\nCyGOqLQTww0,112\npOlGqiWm9yY,174\ndSOFfyFdHXA,135\njlCEAJXSwJc,134\nz7J95xF4vW8,94\n9FcSX6y6OCA,230\nlISiW7wcIVc,230\nHbWD-eclNf4,151\nF2GgBAXj69U,116\n0tro-o0fOk4,134\nPl8E_9CTS1Y,134\nhTpVCu5DzpA,182\n6q5DmJCpaC0,167\nZyXHxrg-zTA,263\n0qzRQ3qxv5Y,145\n8TTWKlJdWVE,223\niG5M3WSF1DY,156\nEj1lqvtmcMg,70\nhJ9hMyqKcg8,192\ngA-VU0mczSI,130\nSVTxvLaac6A,153\nC9PYzGyIfF8,125\ncMwOJoesx8M,156\ndtIqkgW18-0,113\n0QLGAhQDgsE,196\noRX8ramIWwI,120\n480Hw45m9v8,167\ngnp7Zn5t9uc,149\nK93YrK48ZG0,210\nI21bX4cEhRM,155\n8v7xHt-CJZg,133\nDdpMl3_vPmQ,91\n-ZxtmDbqDRc,180\nSaRtVS1Fx1Q,131\nGuqCibVW5wo,106\nLOIF-564wKc,168\nh41ylpWhV1I,118\nr28aUcqqgbA,114\nV9GnOAfI4w4,158\n-fRY1b6WAx4,178\n7cZ3I9Bn9Rg,133\noTd-6xia-xY,249\nDyo5g-ozH2c,173\n0X0-NpZpx6U,122\nVD704T-c64c,177\n4N_0iP8TSRo,133\nhwQWBQjvbgM,88\nW-rC7PEsItw,113\nfWYs-bFK9_s,172\nGZiLvbk8fL8,109\nH92n6qsNHbY,134\nrhFw9HYTReY,108\nT16_n7praO4,226\n85cnCW_4LIc,133\nAryZBe8C69U,173\nNhj2rSOUjwU,131\nMevYeKlyQM8,171\nBGOL5YmTrAY,184\nLTESHXdMyQg,175\n5dCI82ffuIc,174\nIsZdfna1LKA,176\neUogxXRPC7E,112\nviJsUgnT_HY,157\n2DpotjffI6U,108\nGdp4SEfQzy8,62\nWGRVxwlEoio,190\nD01cKQMu5Ew,106\nMfV5DOQ9zac,68\nh5f5GgqVWes,193\nrFbe4I4SXGg,90\nJgAmbGwTMbI,176\nS-pmcO6U8eg,140\nxxGmwvrt4ZA,162\n22xJjwTRC10,145\n__bdFiweOJY,104\nV6SMgd9L6Z0,169\nH6pjCQosMxk,139\nB3bUD6nAKvU,180\n6ya9GVSPiXs,177\nY7DGxkezqSc,134\nnqEL7fP4Rvs,91\nVh7XH68xWKw,136\nXa0JBPt2cGU,121\ngMdTl2R354A,249\nH6jj52hYXeQ,147\ncW7AkQihsa8,187\nN26K5UeOTPE,125\nUPAs32xduAM,140\nI8-3VpZrBww,120\nw6ivjvOqBy0,173\nmycAsRhAr_M,71\nzqv3YesdtRU,241\nA3yrtArn5zA,151\nwTf4njh9TnE,152\n4F5AGPMRwgw,187\nt-B2zR5O5Ys,134\nUepHO767tO8,191\ng1bhGNv0Ei4,150\nOwG27DvQf68,167\nFloKMOp4wN8,197\n0p2Oyd040pg,263\n1jEe_vPgNJE,179\nCtcQNdbPsSQ,144\nfKaiHVTL5nQ,101\nH4hjg6jAhOY,153\neqarJw8A2YY,67\nclDZPzwANeE,125\nv5oVPhcW9nk,173\ns7kCd2kuoME,111\n3aBcNzAFnxY,79\ngPJFxEvmHpQ,204\nNPmAEqlzKqE,108\nkhX9fjqlf40,79\n4YW2E3yaMjc,135\n6LyYxpkxILE,84\nqjJnk3MgNgc,149\njwjCPSUGPXU,105\nvKuvku8JEq0,183\nZCrTaNYTk_M,140\nBuPdA_CDITw,81\n9eI4mt_lKTw,166\nbCZRAcsuRgY,167\nE-F92GOLVcU,173\nAHLo7Vs6drM,136\n8kzZwPsHkfo,127\n7ygAdJYS9m0,177\nHDOGthpW1Hs,125\nMfu_iFS-UY8,133\nL6f07_-wG9o,161\nJcAdeY9KlpE,168\nRSl6bwZabjA,129\n7dgOcvrxxac,91\nkAKY4ZkKIPs,147\nfOFGL7-qmqs,102\nw6YTq-3hmnA,128\nOm-y-goxpYc,134\ny-qCvfXMTlg,105\nBHJTeH6TLx4,163\nUd8doeLuJWk,106\n_ZjTuvkIbcg,107\n536GqWYOHdI,179\nFeLR7tVzVeA,203\nhudgzkYfSvU,132\nVln90evTYog,104\n5gOfKFlEJvo,148\noUKw4qcGHZs,172\nHVgu-41adSY,169\nQ7r3HIkBJcg,212\nJmf4o8UalVM,183\nc5JH3hyjFcY,192\nRWYM4Npp9rI,209\nyOrYFxd4En4,93\nNBxg8a4TAng,83\nMtyfXKbZUus,105\nKoY720x5fuw,128\nzuSBq10_5go,227\nFX1FiZxQo7k,130\nmXvst0jlR9Q,133\nb_Wpqni4yMQ,105\nYIhMJMRdGGY,84\ncpZIiyp8juU,210\nDpA2bMJlDpI,196\nTNPMRbIE9k8,197\nwVCf-70SKKg,163\nN9d-c9ooO7s,176\nrdc5PXKBFdE,109\nS0pCBDjC9Wk,87\nIspZWYlmYZY,177\nG8FhdcsVB_o,107\nOfkb_7EnunM,164\nDqSBqfDgOsQ,73\nySINkZRkHi0,107\nJv7PzcVfULc,134\no5NPINxrB7g,290\n6puVCaR2E7M,141\n4A-hmyHNaxM,173\nfwITaMQj7S8,69\n-BgZFaMJRxM,206\n_ZzKJflnVHU,211\nzZg6j228i3A,228\nlJ7F2kWLGuE,213\nlb6nAmbkk9Y,159\nchvjkV0jRh8,183\nef7rQniaz5c,134\nNgAjrtEmWxI,174\n4RBnTZELQX8,154\nyU6yKmqhhp8,100\nhwI9jLgUnbI,267\n70tY44WxygM,179\nv9VqcsF7s5E,166\nDawumJOyTOU,150\ndPaM45IreF4,141\nTcJjhnPrM9o,146\nfxff52VbAa4,180\nkT_dXxp7eAo,134\nB_JVGEptSOw,151\nV9LA86HF3i8,157\nvT3QXNKoZKw,108\nR0CN7Enq4Rg,207\nYLhHH7GXdkw,159\nVbQOa65nKqU,166\nfBpNFLngzT4,134\n7szH-UZx2JU,184\nqYZw_tL0j9U,176\n6ikH1EFDm6A,133\n-Ian949JzDw,195\n3zgwoTgXXuc,181\nWcPbZiPqUlE,151\ny6uK9wxhl_w,134\nWcmMx1_lQmA,97\nzn9D_4bE0hM,142\n2qqJr7uFeTA,106\nlVSMG8FTnpw,171\nJzJ0EVqZAzU,85\n39471A71y3w,128\nnsp9ex69rQQ,209\nd7WraA-roN8,118\nwwnqJH8OF-I,161\n3kEL1doAC4M,178\nKOuClUYl0_U,229\nlyM65FpQLlM,182\nzZLAinjBShg,178\nzGXxYW_Zisk,81\njME-000LFNY,131\nkARcfM_M6VE,148\nzdF8hHVUzM8,186\n7DnCFrbE88A,162\nu-PbWxhmJto,204\nxYHBAXUJ-Zs,121\nG1uBkHVIGfc,132\nMGuKcmxMPQk,124\npPnfIsbcwfw,129\nqMaZAi73HDo,123\n_mnvg-i4Qks,108\nM1J7yqXNItw,154\nIqJWWBRnrH4,107\nqURMZDMKpxY,123\nZMIGwSNQA4Y,181\nI-6xj25pOP4,151\n_iinqPkm6m4,223\ni3ywt-oTQv4,245\nzvGA7DNmxmw,133\nn3L8UVTe6Ak,200\nWbFri7eX_YA,123\nmiE1oJ9ysUs,71\nK6Kkwi0nfHg,176\nibcYEwzgai8,134\nDfKYwoHHceM,92\noX3yOgEmFOI,180\nntKYG1LdbV8,131\nO12Ve5AFu7o,116\nJqYtHZw-M8c,119\nYbM3eHylkqY,215\n9aIOR7dl2CY,184\nFVRaOepQ02I,133\nUo1FfULMJ5E,97\ntKeJ34qjORQ,277\na88UYg3uwZw,220\n9JVQzj-iWI0,52\n56v74zFOV58,178\nneH8cVDLuac,104\n0z9b9_n8-Ek,150\naQ2aje8PZz0,181\n6w4Chzgna0c,142\neLKbRagkB7M,133\n_65de63xao0,237\nEoikWLSsmRk,119\n3_SZ0F3VTVU,185\nzhhLFNr_Jio,167\neO-4vwbIJR8,68\nDPU8L2vJvsc,128\nEL-Zzx9ZrOw,185\niVzz5FIaCkA,109\nBL-fRfeQTNc,179\nXRtuUFYTctA,87\np1k68Ri9DKg,141\nHIOSYqainIs,131\n11-AlLawdeg,155\nWAX89Cuk-Yc,168\nQQsg9djZsRE,179\nRYP_NSi9g3Y,136\nLzJ1fo-oUpk,201\n0kM0c3Q-hHQ,186\n585p7sJhiFk,133\nbxEqg39v9Ec,177\n6SLhTIdGfhU,72\nhH3peh07eq4,153\nis4ZtB0U7Vo,237\nL46gYnVmYY8,233\n5MINtb6BV6Q,176\nTpNPIxWdZgY,185\ngxuEGIzZrGc,169\nPl1dl--4OBE,134\n-ZJZF6PuwxE,173\nNxCa0cVaxQo,165\neiqBbLVXbQg,229\nwn_8YBvVugo,122\nwNRvgeiaVXA,156\nq8HcMk_IimM,175\n7C-aB09i30E,83\nMvrl3jeiJlg,162\nSemxtZJHxEQ,66\n7uSfWo-jr8o,175\n27ARVhE-a58,154\n1aZDrjQGvIU,104\nshE7b_6NNpU,129\nN7i4yZhm6V0,138\ngQgdweybPwk,116\nLn91UqmKxwI,113\nerX0T5r5xbE,192\nqHizQ-En6Tk,136\nvppCnOOwS_4,202\n71pIZ76YvR4,134\nkvzzBebEAHQ,134\nxqeAW5qAHNQ,90\noPPxArk70IY,152\n5TG1Wh04D1g,133\niJDnG2RAlzk,127\nsZdVc2KAfWQ,123\nioUedV29CQE,160\nAp8p92HCAbg,146\n4hY7f4nOQtU,152\nk9DO26O6dIg,155\nnPJFSx8RTzo,89\nUWtFueVeqHc,150\nCpcopOQAWWA,138\nPIHPbvviS2w,238\nIXyMkCDTmfA,153\n2W7WM3CuXPU,111\nXTjTXskLQO0,156\nMVxXoBHtBfs,186\niPcAns5pKVw,134\nNMbSKSzRvF8,106\nnKkgc9WTY38,187\nybF7eOf_n4s,164\naRav_8OWESA,157\nbKbZTFrWing,164\nI-Iankzmv3I,133\nXv9ME0TfQjk,133\nEGbVLHy9Lvw,148\nRbdGl6wRKDc,179\nVUljC2ih5YY,178\nrmE6nTzmDqI,193\ngC6gD7Qzry8,211\nw0dNGg0OiAc,118\n6_Ed23ettio,116\nVro5qtVA4PE,151\nvId4AoKDg2s,118\nEEaUjfxQQFI,162\nq-kSu3KWfEI,161\nKfzxu_SIzGo,171\n3D0gGgMTylk,134\nZrPvUd7E9HU,71\nS5CmrYAWxh4,114\nS_7ZwIV43zQ,98\n7H3XPETdtmc,126\npUPliO3qy04,102\n9qNFpkUBSro,155\nBUqJMPAtmdY,169\nz6JcuVWaVfQ,121\nDh3WAI9JeJw,150\nGklme1-eQGE,134\ncrKAy2dGX_8,128\nIGDViR244hs,216\npM87ObBNOk4,101\nvV30irsal-w,133\nQpmECKEHSQs,87\npuyN3edOOUY,132\nf96ppJ3DSGE,199\nzeGRvFbWbz8,205\nSWlYiOtP5mI,130\n0tnKF_qcXTo,202\nxI9CLKI1h-g,112\nqCjSApp2o1E,101\nQ4r4jGPegHs,111\nHTFjrXA8bFI,115\n-7cV5cWQmxg,132\np9Bo67_slJY,129\nlfUlATBIer8,133\nLCj92toBBBE,145\nY5Y0SYRZRtM,128\nvm-rgqRKqz8,131\ni6AtG8BdONE,130\nDTqY1j7wgD4,131\nIQa9PQO3jhE,234\ny_LVaQiyLrM,113\nwaeNIUB5wz4,132\nR2lhQCxKx_Y,223\nH2hbov4Rb6g,130\n2hs-yt-Pmk0,134\nQR6Ds-Tvd1g,113\nMOLAFbjjOl0,196\nBYrS2k5nPbw,210\nq7V1sM0VNaw,133\nhZvud4MnaQ0,154\n7HEi1kmCzEY,158\nJYymQ87_t8o,156\nFYeKDtzDy60,166\n1ovQhqQy7bE,124\nvY9yCPmqbc8,139\noT_RsXOPjTs,129\n9nc12yOA4jM,191\nIBwJ7rFHpE8,132\nn0PS-QVcoJo,133\n7fOizvx1cUM,128\npQv0ZtpRdNk,154\nHHRCWQEM7UQ,133\n96dlvQbYEds,92\nePgiRqRIdwg,111\nAajX1xvWnk0,152\nDL-fT3OymQI,152\nDu5YK5FnyF4,127\n6KYxDFGC2hE,151\nQsSD6_V2IYk,134\nSpg3JX8dRos,145\n-ecKc5pOEWk,207\nn0QO2xOuqp0,170\nj91qPMHaqbg,148\nMWc0I1-Sfj4,117\n7wgLb8Ykb24,177\nWQP_cY7FAyQ,184\nGOwehDo9xYQ,128\n3hPy770hf_s,285\nUvRaab90nQ0,154\nCYs5HBcQBNc,179\nfp8Ob7kBqJc,106\n2vIINq7m10Q,132\nZNQVHnzKvjg,181\nFzemDO1TITY,263\n-mexzYsMSro,94\nlQm7hpsJsPA,256\n-1W4xHNKvAk,217\nNQbCRZG4-jo,154\nWzmAy1QyIH8,166\nr0iSxOsPGl8,134\n1jjQuF3a-7U,111\nQxzrv4GCwo0,190\nyprYw3FQUpQ,133\nRF_7uvTh-dI,236\nrNxqb6KMtkg,88\nYpa0nma0aSs,149\naNA-hjvEyUY,194\n0aX79Yt3Bno,134\njW2zOdceqr8,154\nwkqss9zZOhc,183\nBiPY5_H9EIw,147\ncIesHaxakmU,110\nrKQEYi53rvQ,159\ng_fIDwoORl4,179\n2-1_64NeG_E,159\ni_zdyGw0tEo,214\nIFBAXbrw31g,206\n3hOO0D1rH-w,118\notOIqHsnQZY,90\nOBQcsOUZ2u0,169\n1HBiMXpncto,181\n0z-FtAMg6Vw,70\nurk-FzNJvzE,153\ndaVOnsL2wkU,132\nRxyMbaDX22g,133\nVkD1dhWMYts,175\ndOZndhz24OA,192\nITaBaJEJLaA,179\n5lekLtatLl0,129\n2s7POrgTTzg,171\nVAmXYYSt6TM,233\nUWlxRKXD6sY,168\nvejLIHky2HE,129\nSe2zCvUqqWw,163\neclUi6kVFcM,133\nJnuYlFhXWsU,156\na3HOCIXroqQ,132\n-AZg55qXj7U,196\naUSko3Om3sI,83\nq2YwvMc96VY,129\nCo6hnyHm9FU,202\nfEsN1FMfBvI,223\nvo0cUbT4Lh4,75\nOAqqb5FC_a0,149\n_AElcgYtxpA,167\n7h-q7bXYD1c,182\n--hendERqm0,88\n-wci2oycOQA,132\nG-I4i0ClrmQ,205\nbDW3OVitFE8,165\nC5o1JYo-4pU,168\nag2wbvh5VDs,170\n2GvyC7s3RpU,177\nXDO8OYnmkNY,182\nR-wQWw1geBM,126\nANTOMowTXZU,133\nQ9Vl1VGj0LE,190\nPBeP9JUk5cM,279\nmlHF0Vv7yEc,183\nEzjFE2CnTBQ,132\nUHwiWw0vfps,187\nkXXnZuu72DA,116\nIfO6AIsvlKw,137\n8zdNf9EtW-A,68\nJWrDT-JGDug,138\ncbEbCrrgWiA,184\nLahMUQTEbcY,180\nmjuNE5wyMzY,180\n14pZQ6VASRI,86\n_0gn0zQx4_s,120\n5Io8n3JYNUY,168\nan5-b_99zH0,112\njFjy1RkmXUg,133\ngQMtp2WxEA4,197\ngSG9bZu1NtM,188\nARQrc5qPDPE,172\niw-0Y6HWb9Q,133\nnjz1p35e_EU,133\n8p1gevM0y-I,123\nU7jlC1QNaUM,217\nMFN2fMP05CI,132\na1dqJn-r0-k,174\nGdpx9aiEtmg,206\nOFJKL2POF5I,121\nt_JOKNfSn1w,188\nce5cnb_5dVk,156\nNKewr9uDDck,192\ne9_4oS3hTPk,158\nghUFMbHmw8s,231\nsxGRFqybDw8,198\n5BL8zybMd-M,182\nThWvubM3qSs,106\n1R4FATHHlTU,103\ncqUpOLpJ1iU,148\nedQy5jBxhV8,175\nvpEAO0gIAxE,129\nY2ZU8ZjyzoA,108\nvBAK4o8zHF4,144\nsRR3ukzqiGs,148\nVIA2wUCj36Q,207\n-19d_T472co,215\ngnlvKhPzx5A,145\nljOOPtZAk2c,134\nMTSpAVqgSso,204\niWHYx50w6ts,238\nzvn05TBxdUo,129\n8kcd603M8vA,230\nZgeAaV-OFvs,149\n5zzYjkS_iMA,167\n_i6Du5s9Il0,135\n0N7ilB9wX3o,133\n3WmyeqVxCV0,159\nqC_pkxnYQfk,138\nUGfYt2Ufipw,87\nqTjz5LJwnOw,179\n8n6mcd5Odj8,126\nzZoxnqqZpDQ,298\nMBgPSe_p1fk,204\n3Sot46WTjcY,101\nr5ilcq9hUZI,219\ntDD6wnNN-IQ,123\nz8XPccwMkKE,98\nfr_ciJPUO1k,206\nsneQ02FCals,165\nRq3xZDyJtMk,81\n-ZRSgs6PHaY,146\nwQ0QXBmaY58,177\nmNd16XocjBg,197\nKJ_8vD4Rv9Y,114\npf4EjhjgisM,143\nwzlxR3dKjrg,126\nipt7yPT4Lkw,262\nJIMykDzqRbY,151\nluE7cUCzQK4,171\n891-YR-fgsk,223\ns6moLb_ieqA,133\n1GYZPg_aQdw,216\nY6CLpg06kFE,132\nDVA8vzEbm9Y,168\nQaUjGv3GLeg,113\n2vi_VeRSHbM,145\nhN5We42pLhs,153\n788ZdV-LT0U,233\nQWiJ8VQXJzY,204\nf8Jf9xoJQwI,113\nbTpRY4tkyio,114\n4RrAmzAYCQY,134\noNuGwa5Kd8E,139\nWavZVQM3U00,127\nPeliEV1oD2A,141\nlTm0Gql9HME,137\nAq4LMaeZAns,174\nEqYD_u86J8E,122\n3FKMUa7vCZU,123\noSIR6UvH1G8,170\n5tZeutuxfJw,149\n2dn_r_sgBEE,81\nZufljc_8uLk,131\nbHnpX4LBdGw,179\nxcYhjlyrjfc,118\ndbX-ekoWGWE,133\nbYt5SAF0M3I,63\n1s-qZUCH3xY,76\n1Ylk2e-x--8,178\nkZRq9scxIWM,187\nyJ_3DswWIeI,121\n5uEViMQGON4,171\nV4hv2OSD3s4,256\npgkcX22u0SI,151\nO4brzUAaTS0,233\nnNGz1GspkbM,260\nglDG7hJd9Hk,207\n2GFzqqC8iUg,134\np-tvo3Hz3nw,122\n2jqk0yyPkrY,211\nrOu9FD63Z68,118\nYI8DWdXhg5Q,133\nMaqzxDPwOB4,141\nWcsyV7eMrGI,96\n2k0S-F8VIhI,208\ngJDpyQ1Efto,128\nvGqM44xx4zI,194\nqN_sGdVG0Yw,134\nA_R76lKU0DI,134\nRruqW_fwhEg,125\niFzuPtVopnE,219\nCMfYaFpa3nY,167\nunWr90pLIvc,206\np2CR0S7DHyQ,126\n1eg0tbBF6eo,141\nl38Qliee6VE,161\nRaicjdiN8ag,227\nmyZDn8fFRLY,133\nDotrfvKEyiI,130\nTm1fX-cqfxk,156\n8Q0KYSXhKMU,217\nuI7ijvSCHcI,185\noUrT0qTcHBE,178\nyebKBYB7rEs,81\ndbGs2OWRYqM,212\nGJE9jRmD3RE,173\nUhL24j9G3tc,167\nbtVoaFC1Aqk,106\nCTRZgOL-vA0,148\nLB08HHk7Ssk,214\nWl6COOA3V6Y,113\nvdZ7vQG2hzI,77\nc-ej3IOxBno,113\n36FYEbRBy48,127\nhaSWFp-ToRM,202\nwWHOsR_cHt0,167\nUHaEsAcQQ6k,134\nf6Dan7z0p4c,93\nKjbNSIIOEo4,129\nIorAYhFwGII,127\nG5aoRyZ-QtM,192\nyAEUVz16MY4,155\nuy4F1IeShVA,137\n3hUkHF18IrI,88\nouQG7Pcq1S8,160\nFJ_NU1sSk5A,184\nr86n2JRUyRc,160\nFLPGiFhKS28,154\nVchw3dbVeUo,127\n2UOL-ZHUOC4,206\n03uEq5dKcFs,145\nN6SPrarFcBA,165\n31fx9aF04ww,179\npwidWMvvsVc,153\nm7HLqZP-l7E,189\ngs0WQmW1icQ,117\nUZ7PTLCQZwU,188\n9hPgjW2ou9E,216\nFZOF6ePjVcM,158\n-t06SZje8O0,125\nUsNnkax2wNA,228\nbD8bl3omDIU,138\nlJf8EW9800o,179\n2FlG1Z6jY-0,178\nyGrvM8gN0w0,196\nj9FpQjinKMY,186\nM16l8dqWTuI,127\ndJBnRYy3mFI,52\n2jzlSeFLr7A,156\nqDQo4nvQ2yw,191\nHceqAAw60vQ,124\nar_o_qS68oA,173\ntF3eceBqcik,126\nlUPTOiM_7CM,255\ndeUgUoJ4z5I,190\nfHerVxCsbyc,106\n8xorDb45ajE,103\nYmC-BayMaDg,133\nwR_e9lxh7Ds,134\nZKuscOD0LOM,133\nM32XWG0NQPQ,156\nkU74wgKk8lo,134\n-DqmTaUK-Ow,119\n-dlOM4ocKUM,212\nt3gqjXINvac,194\nUovtut2ckMg,131\n2WF0XgWQles,113\nSmMmQHR_F4Y,184\nTIu_CYwemFo,102\n1zQvfrTK6Y8,219\noK1zfJausVM,71\nW3x0ZxDSF38,133\nbCtvFlr2hHI,231\nGuAHdW8FdLs,168\nDKtupzAQYv4,127\nEDywdraYOBA,157\nDSyCwx2AlQc,134\nW_aGbCWYX2Q,183\nyn2p3AV23-Q,173\nIXl4S2_5sX4,77\nMZG1HbQ3KCE,191\nvnh7gxa0z4Q,133\njjPq-r91oB4,205\nd6263F3UkWo,199\nBFWChdiNlEg,161\nwLhu6Zy6ixo,109\n6fs-P3Vq9BI,131\nbHW5h5O-e5I,169\nBpAvVBwO8J0,163\n48DTcfNRIoM,125\nvizu1RigaBI,200\nGC8KstVPxPM,134\nJL_tj5M1o-c,134\n18ARBQLResg,117\nrPh94cOW-MI,123\nv00zKyXbfD4,179\nXnvMGSn4KHQ,164\nQteR6PIwTNk,132\nXurw2Ar9NNk,120\nSKTvxXjJ_MU,181\n_X8bBE1M994,134\ngSepgtf10wk,136\nE9smjLi8m28,148\n6AJH6b91rF8,96\noGFkOiYpEeE,148\nr2fHzai5ih4,129\nIKa2Mr-yHnE,130\nbRehxlYZ_CE,114\njXReN1Nzlws,163\naPFbf954LJ0,177\n1N81Dwye3VM,132\nUX1-VvE01iw,182\n0T3hXtyuX0g,145\nyGWUHeP16Zk,142\nBSWKnZ4-2eE,138\nfKyoILW1Npw,166\nQB8ken8pZ_s,205\nMEYupVDPDRE,157\nSRy397r355A,169\nIgKQ8z_xNhk,86\ngoEiURelfsM,160\nweEay_Y4EeE,232\ncXlRo6pJ9ig,153\n6oxCZ2CyGII,124\nh3AqOR2Ru1s,217\n5rQD746bDOc,143\n0IuOpt3p3WE,173\nLiogBSpbSE8,142\nuqfD6UPvkR8,135\njo-aQkgNMKQ,134\nepupZLvDDts,133\n93U_80mhzVk,101\n7bFIUJ_voCs,139\ne_fI5no9SKk,132\nJye1gDePzgY,154\nW2sUalav-ak,174\ntXhTaL04ByA,116\nrIGsI26-Bg4,147\nc2ecZiVEs70,148\ntEs0OuspG4w,159\nN27ZYQKRYnQ,133\nL3gtPb6y2xg,128\nVBOg6u6zNUI,163\ndYNP7UULtwM,92\nEr_oU3Sl1GI,131\n2NNOFLGL_VE,227\n2kt3CmzYGu4,133\nsjmh7BViBtg,113\n7AajEaNH7g4,152\njH07BdMRP0g,137\nvEWPq-4sa3w,183\n2Y_CzHI89mQ,172\nML4CcaTFsZE,151\nd7-pWfZgFKU,130\nbfgJbZHRes8,133\nup86hjG02yU,114\nh5UGcMYOaaU,168\nnHcRQhadzhY,214\nb8Dp_WyoPSU,148\nSHaByZZvfFE,131\nUgSVWM44JBE,170\n0frXMGxB0Ko,134\nPOpYt4cHlFs,192\n9F3iBMYvQOs,226\n4xLa-Rn-gdo,149\nJ7kO-7jEveA,133\nXqqckmSFUwo,132\nrlMANFZdCkk,128\nFlCzygStNzM,113\ngHJwn_JEazA,135\n91Z-_ujQGik,120\nJ-fa9awvFBY,217\nCjXwJJQ-8XM,77\n7hDIu_ZNkbk,154\nGZauEya_plU,120\nPY8WEjeHGTE,201\nqLCy66eZrQs,101\ntSpOMNC3WtQ,81\n4XSuEmqtnRw,111\nvLt5ei598CY,170\nGi3K-CApAS4,134\nOqyvMY1fcr4,134\nNa9qhz28ZWQ,175\nZw7lsVV14Yo,152\nz1PcJZEi_js,154\ngaz2wRxRZ7s,191\nTUmckZQBzvk,131\nuh4bsAP7K4k,175\nnpaLKZ0Egus,195\n-FQOaUEE69I,186\ngs6FcpgTCqE,121\nF5NFCYDB5hI,165\nK3OlytfxzHU,154\nUoDOFJsC608,94\nrgmKJYrtmkw,158\n57X3MgtTMfM,214\n_i97zAZclkI,76\nKv9ygN2B8WU,201\nS7A0JYPGklw,108\nMASZNTnZals,111\njJeed7K-6fQ,151\nNEDEjJ5FyS4,124\nA4g68fTngpA,139\n2SJ3eoUGXy0,126\nZR9qd2jynNA,188\nHC1LN5AgjRU,177\n6OKt2CZ4ULE,63\nL9reo1mJVMg,186\nmlc2UyZdalQ,135\n4ak8huhsVKc,133\nPlKDQqKh03Y,173\nSrvRkUwIFfk,182\n0NAWQvMZpO8,147\nMkkd7taPqEY,116\nLiA9AsjqVWU,225\nrsi2WcPIcQ0,183\nFG31-KlqhCI,157\nsCSTQpBwqqs,128\nhcWY1CYRCsw,109\nfhK8qpO-iD4,132\nv4U2mAwO6-4,165\nUsM7OBEMqnk,127\nrA8NAlaMgPo,147\nnqzkyfeS2Oo,185\nQAO6uTkGpjM,182\n9jfaSZXLxGQ,244\nkdrPUm5zBqA,164\njEeRRb8wnqQ,143\nqVhR3cLu_zY,107\ncfnBcA2ckeQ,171\nx5Gwzy2FY10,127\n2C8fB8p6crY,200\nu6W5OFK9jpU,94\nxjYdRu4FiyA,150\nUU_Ly8gXV6M,168\nzQf0jUhqJYw,269\n8fHMMPXUE5I,168\n4CmmKmlXD9I,109\n2JweD72Ains,104\nE7fMOxGw-dw,177\nruwbVFvdfco,145\nacZDS8WDtHs,119\nF9vKkW_NNjE,134\naHI-JX6Q3Xk,103\nxnv86GOjJz4,176\nGM59PdNB7FI,193\nrhnCmErsnYA,160\nYKvG96jMVWE,173\niXo8qxLvcSs,174\n1JLugcZa7kw,172\nkoahs44agqU,128\nYU_Sm_2vH5w,129\nPlJ-x-JNEj8,134\nN5oKlOWxzio,55\nMaSm7idHMtI,216\nFJWgF5XnVLY,77\nM4LidfkbW68,197\nnXSfDMvXAxw,86\n02AyhONR_DQ,126\nkXvNxXDDHSY,176\nX4lUmgN_ByQ,231\nO0fQ_rrQedE,127\nMyzSuy1v6DM,147\ncJyhEAxnQ-U,129\nVTTj-7UumYk,87\nfzG_88hJcqM,180\n6PrFocPT-Rs,176\nirnju0G-lBg,252\nLaajQCWsyzE,172\nXLi1XYfldbg,220\nyi2YuSALRzs,188\nzErzJxN84iw,79\nWK0fQueuPoI,119\nzsiYUAF5Xtc,163\nzfyDw7VR3Hg,144\n3S35Cy1GMMU,138\nZsf-encTJXk,207\n6JfQ82WowC8,133\nYsCeolAfbLw,106\ngCE5175IkoY,188\n3s2XMsUdd1k,218\nWLKpgzXHKLA,106\n89HcLOHubgo,111\nLZ6HA66dXVw,173\nMcmlPCS1kHc,136\nIuiKCwrTYO0,78\nKtumRXjIzQY,94\nAySMP0SgVFY,167\nfZB65wj9nz8,126\nMO7Sa_dI0SM,179\nWeMJebErzLY,165\n7UQAjKVyjIs,164\nbu5m4sr6e6I,133\n4vekUOykIvw,162\np70o9g5gcdY,132\nIm39PGAb82I,104\nD56dpMQVGTo,194\nq0k-b9FeGFU,127\nSMd0299YDac,171\nE3yX8lT2UAI,71\nnxDhsiiBH7Q,106\nTiQaVmutQwg,93\ntY5el7dZ9H0,179\n0OppC7vTtY0,164\n74ZjOVz3gs4,142\nj0c_RQDfjSM,142\nJftv5w9B3So,173\nZyMP_jN2Veg,65\n-sD2jY0KMA8,131\nzUCWPJk-XHk,141\no-HlGWzIqec,208\nY3gJGuQQPnw,202\nQ-ABzsALkYs,133\niH-ioakPz6s,149\nKxOI0mEOHsY,132\nx_3EEWK-YQc,203\niVXVD0KxSug,166\nc6pX60F0bsI,126\nMHPp7bN1kXI,112\nNYBMaVtMaEM,134\nhCCpL0zgYoc,98\no6synmrDXqU,170\nRuFd7DELPYc,134\n4kAViGVuLmM,107\nCYGCwkmaa1s,95\nBN-FwrjSrFA,104\nBiVnGF_72u8,185\npTxj-Dks1Mg,89\nvxEvNuW12dk,164\neRNCIg86DKs,128\nb5Q6A_1YyHg,125\nX6zbmAt0YwI,111\n8tFrGaU6p5U,149\nrLj7k4gxnRg,112\nHsMVFxZ43iU,133\ns_SM1Hly-uw,176\njkmyjHYMH0Q,176\n5Fa3enGmEfA,140\nM06KzvYxlsc,212\ntsCGLuufHvk,207\nX8w0J4y5X4g,118\nLVbkD8ZogwA,136\nX3WA8eZ4Q_0,92\ntRuqSw7mX5A,152\n_YMLnL33X78,132\nVFWn3fpVdEk,176\nC1MsPeGKyMs,190\nw3trh6DMpHI,114\nvPpNgsJp4DA,189\nR5h3Pynz-ts,101\ncv8yjJQg4Nc,79\ndRVq4Um7E5Q,184\nYoI_YkIGXXs,126\nv9UIDDlnSgA,129\nxY6bhYtH8Pw,300\nR8JjTOsPHo4,214\nCq2Wzdd_PYs,142\nYfKjUgN_RcY,173\n2F4ExP0q6RU,133\nh5OjSHDUn8c,169\n14I9e5jH9bw,176\nVb9wR2ibCRw,161\nkEL5reRoNk8,96\npaPWv3HjXAI,134\nDp8y3CiQDgw,292\nZVLaVxPjPcQ,159\ntVxYCeRXzGo,130\nM8K1rD4PGkI,154\nHGZotWs54rU,169\nWkEK2NyGq10,139\nreyTknNqDjA,98\nM5ny5tMsxrs,145\nj0z0V2JJ5II,125\nT5k1Olhmz_E,141\n6eW1ht2HbtQ,160\ni4NIiCSEiTg,135\nDU8nLYGOMIc,99\nuCG1EiqEAEg,130\noZ1Mz78d3wI,190\nWOnHL_mSXRY,133\naP7GTu8tbvQ,94\njY4nU1rwWv8,149\nvcdDRblTOmM,158\n08rJmhhQHtY,133\nYtceTJF_VhM,156\nIoeYkolhKYM,100\nuL1Q5YZ0Ejc,129\nwxhUTK7xbz8,144\nNInjsGq2yCA,174\naJgS31WWIG8,138\nZD9DyYVR3BI,135\nPmYdvwAqwDg,133\nGlP6emuR3z8,141\nsxY6Jc1MZSE,197\n86xtQC4rp98,123\nGIASYqV_Xds,152\npHBKmT6eNGw,119\nfpJjOz1Yy8c,168\nMuW72eVCQno,204\n6q2aPotJP7w,163\noexJPg9rZqo,128\n9We9JImjg-c,163\nIQVt4ZtUzgc,147\nUBWIoJF2X4A,81\n4YPxIpLpLRM,133\n14t7g8Yq8vE,144\nINGcULi_c2U,168\n7a3vbSR4qWU,106\nk2s7U_7gHtE,161\n00QMS3Ldb20,218\nnogLQrWY-bM,257\nKLDQLqzbrPE,146\nJrjycvHR0iI,243\nISXVGrqvV1A,198\nukNsgDQKqfY,130\nliRaKtnWUAE,72\nG6PcFmNCQpA,156\ncZy7qSG8RHQ,134\nxzPgefI2u9k,161\nzbHFgQ419Qs,134\nEelncXXu150,77\n5WvXdaXIbYw,133\nda1prguylik,174\n-pXlicO85dk,133\naYbKjHmTdMw,113\nOmewqh9iivg,108\nwmm6PIPCg9c,166\nrXxBQRh89AA,153\ndP5e3MxjRiw,166\nHZbYIyL-tUQ,135\nf9wFKCfic8Q,111\n456ZpoRaRWI,194\nU74NUVSKuP0,134\nNI9Na7U8cTQ,102\nE4rFRdmeWqU,132\nqv_DJYvELTQ,179\n_iUWKODwAN8,187\n5zileWIEgoQ,160\nKuy5Qgp5pvg,187\nFGWPKiI0YJQ,89\nPI8G4wCa8m4,125\n0ONU_H0EjIg,195\numKFAbLoUxQ,103\nnX4t6GMjNqg,117\nKq3ZaI7ccrM,62\n_qw-Blkf5zU,149\nmBiT0g4TIYc,158\nYqNktpnzIf8,154\nqQjdOtebYns,133\nJV05-E5FF2g,159\n8NZ9CLszc_g,134\nccr0gfJ5q0I,134\n8Ds9R9puftI,166\nHbgLp9_yU_c,173\nngLX1uDh-eg,177\nvITX2N0hpYE,145\n7mO_TD_Co1U,156\nAVHPmsWZnb4,109\nOSEHYgl2-_M,178\n_NEfPBtUqS4,98\nX2X3DxFAFlQ,127\ntgBurIq9lGE,123\n0BM-Q3BDrkw,186\n8C3n6k49Dmg,212\nx_6ZpxB4xIc,145\nM_h6qdnNiNw,128\nqUammhHxd1k,239\nfgDgZGePcwk,125\nNIDabDkcS8o,133\n5IzNXdsZUHk,133\nRHlGpxG_-wM,136\nF2UxQiUoCD8,87\nKMkdp0Uy8t0,170\n3mNDakZu1JA,137\ncrI67brUX84,139\nymmlNaUhZE8,221\nb8bioz2Eb84,180\nz_98hXRRn2A,171\nhIJ0gMDZT_4,195\n0DPfRUFGaLE,146\n6A7uz7Orp_c,147\niGsce-w4TtY,130\nBc_4HO3jI1g,211\nC5lMZZxrewE,134\n57VO_eSiDG4,152\n9fFbDzUOD5o,130\nnuhGjqaBzes,155\ngp6FX1H99NA,133\nAQfWibFXtO4,96\n3Avu3KdHGdo,104\nxL3ZOCRgJZM,187\n7ZEqMqBLOOI,181\nJXyisZLObHc,157\nT15XvRqmhqU,157\nwmu9xg12xuc,113\nQBUTO2RVjXU,146\nSmrdaRhZJt4,120\nR_4_btP862g,168\nFz7dtq-saJo,265\n4x8o78xHel8,148\nI7pEk2hB5OQ,117\n8tAKeZMOFHc,178\nQc9eycqDJKk,132\navdSnNmqs7c,232\nVBpCoOfLlgU,216\nr3BS4jKjRkc,137\n2Qz0AREgsdQ,176\nC_Emdu3KwHg,115\nf8dkNziRlHg,133\npVB70-zPv5E,102\npDzvia9Yuk0,278\nw80bZTK88mc,55\nY1RH4S7GPLA,114\nj_sD0t5L8kE,171\nZEXNPj-4clI,87\n6dA4C1NKChE,133\nRuOjVbqLiZU,131\nE_TbL7vdWGo,134\nGP8HnRCjLGg,125\nH_hW3ML6Ips,283\nKToHdILd_p0,149\nyUVhyWMVx-A,138\n3i-ooDJMOzo,121\nEGt-Nk6a1UQ,102\nMLv1hfiUaNk,127\nHUPoWdZ1ZdQ,117\n5D20G8qe4Qc,181\n2UBYT9teTIs,162\njYbI8iVYCpc,122\nNzCTDwlquaQ,134\nl12dwyHThc8,138\n8OilisaAv0I,134\nNc6K_D4rtGU,131\n6Ua_T32yaic,195\n_nnGxztgrQk,244\nsZ6t_-wKImw,86\nzWW_SH8IFnI,157\nc5IXZhctoV0,155\niLN9GLRC5is,231\n2zHHkSu1br4,148\nC4DPvNXtOzA,134\nUIxwyNULzdk,241\nHR2kbOK8i6I,131\n79PCtxPbMlc,179\nAhZw2QXKT1A,195\nVK2Bz9yq2As,191\n88T3elu2wfE,221\n5aY5jTL60pA,188\nHQrM6Rk7WWE,240\nrCRl3aaJEdI,178\neb1AjU67W2s,226\nVz1MWTi13qA,133\nKBmsdzLFpvc,104\ngjmt7I1OJfw,111\n_5kQ0ekY5l8,151\n14zxmnIDoLs,101\nxjAHbBY-UUM,186\n5LdmmsMZU-I,231\ns9_C0lmrp1M,135\nzpmd0YiERdQ,149\nHiPRBsFF-zU,174\nfBXXvn4s-74,219\nPBMH9WdsHDc,150\nc7cm-r7oJ2E,207\ntc7rC53gLUU,133\nlFyh5QCd6kw,102\nzBLsO7BKVHw,157\nb_kHujzG_w0,117\nxsHxWhCydMI,148\n6_BnBOUwAPo,114\nxBI5Rk9qYjU,189\n2gzVWIUhUOg,149\naOCAfIWw2H0,119\nMybqJCvM1z0,200\nyEqjnlWEIcg,148\no6MDdOWCCT8,119\ngeiub8WP_XE,177\n30VlDItRAVk,176\nNRYvrDdntjA,105\nQ3JqdmUTsLI,125\nCgwNoOUtr7s,182\nYvL_-Awg2gg,135\nKH9yFcfLfOY,199\nljzeZK56UeY,78\nl3H-hjiT6wg,144\nwQR6vm3kDSI,163\nnl5l8Vn3Syc,178\nZhGme4W06Kk,88\n836TMubeCfo,121\nwTqLwoaEUmU,134\nt7LH7bMQgDM,179\nIEaqLI9HAmA,160\nS8avj5d8G6s,79\nAfwy5S9__0E,108\nciue6Puy53s,130\n3XX9d9BO5qs,172\ntCDK-8hzqYI,161\nQ0gx_D--iDw,218\n4Tb7SrDUXWo,140\nszqlpf28SRM,114\n8wduU3eU6XQ,197\nxSJaxpJHf-s,254\nsbM9An15WNQ,126\nHMyfwfUs64I,106\nhaX0ACElUQc,116\n4IHDSpacpbc,224\nQsP5Y1-eUIM,189\n-nswXtzrfQU,108\nyqVb0Ten3G4,226\nN2s_Iij3Xfk,158\nos1x0te4Waw,129\n-_2TyCKWCcc,123\nDys_AAhlGqU,133\n9TwfC7_M2b4,173\nllTSaDl6Pcg,202\n9JQEbj0uh0k,215\niSio5xjSYqs,133\nxDkXQ7uBr5M,170\nGHKfMt_4V7U,185\n_QKwR14HKf8,165\nx4IKGG_2L6I,183\n-pKrpqoPu1o,129\nPoAxZJMYRWE,191\nDjlih7ELcTA,210\noQnm8w8f-lM,73\nEBu9PvRBPos,220\nXGsmIO5GUZI,150\nALO5aag-ZIo,133\n9sVpipEqpD8,135\nQDARBy0jCgs,172\nGSkbcI9F5ec,217\nGyM8LvY5RW8,132\n81oozSLS2CM,134\nCoXniP8kldY,133\njP6-fvz9W04,133\nVMGKsJi34Ac,166\nqrONj6Srq7M,121\nXPsddyf2EcY,128\nJCT1VtaBpqg,180\nZ_WhAyucr_E,182\n2MyJctzA-4s,99\nAVxDyv1h9Pw,265\nuzhsjyHUBt8,134\n2-L4tBlUJos,86\nsAvGdule3fA,189\nq3deD1S7v5I,130\n31vkz05skoc,139\nM2UIT2nHDaU,125\nF8UwjJzF4LY,167\nAxGMySJ6ySc,102\noKdCaLj8b5o,115\n6rVFFaIyfH0,182\n9mwgsjG2Vtw,115\ndwK_rODYMrY,179\nyWeMWD-Yagg,131\nXUyFzVAKCm4,165\nEnt1UQJ4mdU,70\nA1GJyyJzpCo,156\nQ1khILbP8yU,170\n0h0FeEzxCaM,205\nBPuGsFSTy0Y,162\nX2YJECANG6A,73\nc_SJMeRltkA,102\nde1vEYiEMro,159\nyPD2Vq50JlQ,102\nCeJQF4L0hx8,132\nDkd1ak3tQ5s,110\nWmzictYYVj4,185\nNuwu9VTP3Ak,135\n9cNdat9JJuE,133\nM93XQJPV51c,197\nVDCoR_PxceY,114\ncV9dlsOzyVc,165\nj1DtkoNFVHY,112\ngkeddnrEeV8,108\n4OyCzhF1A8s,239\nXMGoOSCbul0,132\nGfLc8Z4_lFw,176\nDTWggpNq1a0,109\nlMZzHaUh_Bc,176\njpeq9SWXrQo,178\n3PoW8y_3rzU,157\nROqfvY68ijM,132\nVohdBtnMchg,74\nvbJsLuL2YzQ,131\ngDtB0Sr8sbY,204\nWgeM95snEhU,140\nkurx75GAz74,141\n6IXjYpPtjWk,150\nxBr1UV3kWqA,130\nCmUXU3VLgGI,125\nDXFN60x3vP4,182\nmBdWBpsA5eQ,134\ni07yEczcujQ,112\nIznFYCiGAPA,145\nzwLOflhZOBg,60\nFbY1BfonRu4,96\nGNSkaIuTNao,104\nG1Q68kAK4qc,162\nyJ0RpuixpT4,143\n-krDTO77jrY,174\nYvoy77W0Ofg,209\nUwhUd2cPOYE,132\nRA0xUXiz_dc,143\n9FAeJgWLKRo,166\n2cxG6iiqEdk,165\nhb4N2SJjXRM,137\n75EThT2il7k,103\n6WKFs4PhRkA,146\nLJym4mTtLRY,108\nPurV6BzV3fI,132\nu6HHla9ApmI,142\ncPVM14Bnf5I,168\n7KByxGMoiO4,124\nMi6CrAUhnzE,162\nLZ7Thv4ztjg,102\navjdKTqiVvQ,152\nBgxPmLpvxzc,148\nhw3lBV-89M0,100\ny8cL18qVz6E,140\nSDNStLatNk8,169\nqiRW4OvzELU,193\n71ZR5BcX-Pc,172\nPe3mEnRE-EI,89\n1Quc4FFOwBM,165\nujFOaYo5QME,219\nCm5NLiqmVtk,133\nwZWNmL5VsIs,206\nGNAJWwqr8cM,177\nSv-BxH3SVS8,211\nqDBjp7fdIVw,134\nbqy-R0SemoM,100\n7ZzaLI6n1pU,168\nwTfbHs4HlPo,146\np4ylvDhfiQw,190\n7Ev8Q9RDC8k,156\nuuNy1Ibdk_Y,165\nFovnKIV3VD0,239\nqO6AV-o8fuw,204\nlG40tBFlGMQ,148\nfKTTAEY4cuo,157\nwIloYFMzS6M,202\n4EEMDr8l_gY,191\nTWUQypjv2Gw,176\nI8qfzVFTQuo,269\nOVSaW3-ehsQ,217\np0cf4-1zuOk,137\nJzmD5wQpm5c,209\nxPk6RGGwQC8,134\nIXep9SfBhrg,166\nPf9UUPDJl9k,224\nDIkKczv9Eo4,189\ntFkpixS3QZQ,145\nsCsMjWjftZs,143\nGuqaloLJNJk,217\nfXn18S0O52A,120\n5MpwO0oMUBY,118\nS3MGT2fahAY,172\n5NlQiQfC4zQ,66\nu4gz2yNW_Go,199\n5RUWalajNYE,181\ntBOZNOYMHEg,83\nb_aJy2SE60E,144\nep-ggf8CcX8,222\narzwnRoAQP0,105\n1SEsxhvzzT0,135\nCpA9NJEL2EM,104\nhIUrt0AsTjw,133\n1LoGtPIr2-k,90\nGr9p1MnLMj8,120\nc_5924m1jNM,233\nMUeKujlb6gc,207\n9zbF578--dE,133\n8cjxrd4MMMU,230\n801rBxBY-5w,134\nWafr97M23uU,89\nFXeNdV-FTjI,191\nNipqouLNqAY,186\nBEKzJzaZ0Fk,106\n_w2nm32Dbg4,185\nWq8gxNsz9ZQ,106\nMDG6JsXqaRA,192\nVlqxnvmTcAk,173\nSaUYfjxV8Ic,145\nqFKVhx9wBZ4,111\nXnfiKz-Zk7Y,214\n81MNbVi5a64,212\n0hNbRd78jOE,139\nij-qB9jrMnY,92\nWPggG_9I20E,133\nq7S2ckr4IkM,91\nn-2Lxsj7sf4,133\nyXDgPREBssw,182\nbK_2x293Urw,98\nUIkY2KKWmdk,290\nBCC8LOkisAI,128\nJ-D8n4_fd6Q,116\nVNI6movTCuQ,134\nW8fjSVywGGk,137\nG4DcKX_XRA8,176\nQFDZTfWnWGg,224\nSEzrTYKabwI,130\n4XHwJQfIyTo,165\n1rKzD4yNMoc,115\nCeX8drgioLs,131\nw_ZzqN2TWTI,119\ni7zzhK5XoAI,204\ngOeKwFPUA50,205\nElidXD2F2eo,134\n0ZkuRt2ZKRE,137\nDZlM8Wm7OKY,187\n4LCN8__54AQ,119\nuabEMv5Sr68,172\nnc0LwkqYGpM,102\n7vWLiI04VCw,82\nwzZ3S0ZC1Is,163\n75k4CoAyT4I,126\noEHayxH_YT8,152\nKdBP8sYgMT0,161\nPvMk6sjZlTU,145\n0uyVs4iKp_E,229\nWZ6JK1mPT-A,129\nYOCEHKSgwlQ,133\nNpQNeUSJLjI,148\n4c_4MGTCgHY,83\nqIsyU3MH-Zw,241\nj2JFTz9KQhk,146\nfoQnR1eZO-Y,154\nfpwM2-jDwQU,158\nIKnygn5ysHU,103\n8bJzLt9AYqc,176\nGEB8rnOevpY,152\nqOeIJ8YVJeg,155\nCEwyZcmwNiQ,88\nxg5ZJAo_1v8,110\ngvTCSxLPy0Q,173\ncGDwEP-RWHo,181\nq928Wa_h_gg,106\n9tDGIpP7Kfc,161\nns7B5fzH11c,178\n_f7p28YFgvc,80\nyWSRVYU_JMo,90\n_-9wCERdcog,154\nSuSUwDgtq1g,156\nwsooQlbj934,219\nHCGVmIe_V1c,133\n1d-Q6pT4pxo,130\nr12JlwSBvVQ,134\nGXZSat3AqwE,134\ns8tXE43jYho,118\nRZM3dVWNLG0,177\nIyv1Br-dG8Q,184\nUNLFpS_xEZI,92\nvrEjev5DoXc,134\neAx_rXKiO48,135\nO9Q_5-rAw_k,177\n9ZBPZ4b5LRw,141\nK2NNznJJadY,125\nw_XUAmQdKJI,142\nVP8hyYS5WjU,82\n65pGOp7qa_s,167\nZbL_db16k0w,98\nV-hOCaVISok,180\n-8ajIeIeJpY,94\nmAB-hSPmzjk,134\n_pZJUgFokcw,185\nZreZzV7y18Y,152\nkVujmsfAIUk,141\n70eKt79PSQw,131\nNVSG5djzkdo,92\npvACjy-tYFE,141\ny8i5Nwg_TqU,113\nbvnOqxRHjuc,133\nOypxsTReBOM,124\nJHAtw0HRhho,144\nOkBaZLq7gnU,143\ncbN7TQSGYlI,196\nh08whCp_tL4,115\newiNzru8Kek,146\n8myhALdcfvI,132\nza8FVqsMmZ0,208\nrTy_mgJIIrk,204\n948o2mF4QAs,164\n1afS6fOeldc,172\nCToeYdx6SsU,186\n4WNq9Yy9m_g,187\nkxGdpZ6GCcs,150\nhktlkG0QuKY,133\nTAN8GthZg7s,124\naW3-E3My-kc,198\newbUaMvCaYg,133\nWNU59WxKw-g,226\nDHzeRLN8UVc,114\nWgCQS7EllP8,201\niNQYIdE6DOg,133\nevM3k7ep4wo,148\nfR16yYVpcPw,159\nQQaLVYSCwrc,111\n9AEbJDyNTSo,143\nE9uah5ldjvo,150\nVqZAfqVCEnk,130\nhDA_Bn7UhlA,80\nX3XwuyPljm4,190\nuckdiNJ10LE,189\nwLGpzRMJsVE,142\nUVDRpF027l0,208\nt5nBikdQ1kE,124\n3v9Pfg4Ocbg,56\nEIHtZl__2tw,137\nDyUus5cUe08,132\n0GEynXlmNYA,134\nk8Vn9zLollY,110\n67dyb52zKRs,64\nLrQqG7HxUao,243\nKBLBKR6bQCI,129\nm7xTE3rvkDk,204\nRFBlDixa33k,185\n_v0aLo9ualA,199\nP9jJ6Bejayg,143\nyr5x9xFoI04,72\nAZxn9md_aZI,191\n4UC_5gXVXUk,145\ndb1o8mTCBXU,131\nwsFQrTAEs7A,121\nYq9fKm8q0iY,130\n7I6z51iYFg8,134\nfRF7InV7TfI,82\naFz1y45KaHA,128\nQxReNyiIprw,212\n13h4zTXEjvw,211\nwM5rRXQZvjU,131\nkNtopT3-5t0,183\nUadRg4D-PNI,170\nOxEcQFG6U4g,168\nmr0RZ7hUrpU,178\n4a_1wkseCkQ,226\nS-WVZ-d28yg,147\n7sXlyaQ_ZHs,182\n5SRxYONb12I,190\nNPY5Iq-tCvk,143\nzDQHwzF1n4U,191\nHiavOVW1Iv8,132\naFIOmbHlYo4,127\niQxa0TuKY-c,159\n0yAYgv2YQ5k,74\na_DkEkfAO4s,235\nAXZhl8klPfM,143\nPx2L96GVrKs,131\nYRDc9SZWuE4,128\nPc4vZPJ4AVs,215\nmNCLMfXv7ek,185\nADqmUtPjP0Q,142\nq51BSsTrN_I,132\njq_tO6NAlPI,184\n3iJ8esboOjA,168\nnAuz36A1zG0,94\nT69FlogsAGI,129\nyLm_tJ-ZrNc,150\ncslI2draO_E,143\n9ccE4YIG76Y,133\newANNniIEhc,137\nofrL7_UA04k,148\n93qTzU2bNh8,157\nEn7TapBA84M,169\nDYPR82c0v00,150\nr-IE6wNNbAI,155\nf_tfaeFZePo,163\nxE4RRKaCifU,134\njWtYVevvApk,149\nkdbRwpxZHJY,97\ng2cIMCa6N64,79\nGpMfzrGJvZY,177\nN7wkGjBcjp0,209\nGcs2QIB_X5k,127\ngnfp7yyQgH8,137\ndaJzFEzxXos,181\n5oHNA8muC4I,182\nhhjLmbn5YoM,185\n-1zLU5N6uBU,170\no2gmatNTH1Y,134\n5hriUO428pw,142\nDk2BtXCzdzc,148\nJj6H6tJvRjU,154\nOjkIBSE3yfY,126\nisQIyXfV6Cw,135\n3UBXU1m7rkk,74\ntMcUZSJ3xDY,158\nBkZ6lFCzAwM,109\nYoAV0xF7A2U,152\nyqlAjK0PVsU,112\nAvNNkDEqjdQ,132\ncvPIBkkwvD4,82\ns6JmX_n5oeo,119\nATid397QdsY,195\nPyK__VjhdEE,161\nemW6qKMxIUU,129\n9BdW5LHQvjM,122\nqFnqH95k_rU,171\nIHDzQ29EgsY,136\n4IbNz68R49c,112\nLF0dTioXk3A,133\nP7-rs7H1CAE,127\nZo0d4xk3BXw,197\n8a2aEHT7v54,71\nqnFWCagTOtw,173\nx2S78gnCkRg,163\ngp7K6ZwuDow,87\nR1eDE5bXCds,113\nwpci2WuWy4E,225\nZCdhsYpdRck,125\n9zZLmOA4OsA,205\neOYwXi0B6KQ,141\neQSqgubHzn0,115\nM9CgWWkwvdw,151\nyLx3CabUdoc,122\no_3BdeGhzrs,209\noflbCHWZCBU,194\nKUdG72N_mek,129\np7zS671gCo4,170\nZb10goz7guA,133\nAl7y7aRrASE,160\n0J4K03Owgwc,216\noMpbWgx0Cdk,170\n9_n15K7rv1Y,131\nqL5_xmtFVDo,222\nAszdXufdl3E,118\nvL21VCK_zLk,167\niKp5ARBBpyc,130\n1-WimijgGEU,241\nTuceg816_j4,146\nxwfJyzB6dow,90\nMVRR0XlqA4g,134\nWQth5UmIAbI,88\nB-S7jkgEC8Y,141\nrcIfzdLjjxU,105\nQUgviX8jMaY,71\n2lh1uIhuujc,128\n-pq4FpNnvcg,182\nq9jTg_91KxU,144\nViQZwRewYl8,189\nd35M7d-E_PY,140\ne70y31Gbhpg,198\nRKlctKGIpsA,178\n-uAEWFPmAwU,221\n4fwQKF64AWY,218\nuciRaLsFmfM,146\nfrZrAIZrOI8,71\noflnRQP6Woo,196\nR7P5OWV436c,89\nVLm7BuSsFK8,207\n6nSu2qhTmNU,158\n4MWlfC7QTDs,213\nvh7_WKODlE8,187\nysRnmU7UZLA,215\nIgeW0MPX60Q,150\n6HboqAtIPA0,134\nNfQcD7ZLWL0,134\nGaUGoueAS4Y,188\nO-W3C2RQduY,127\nNqt6-rPGGEo,134\n9EF7lRxLbtg,144\nYeqQ-Iae_VI,126\nWgMhaDEPGXo,102\nsvwcgrDZVPw,199\nMVo83HAnysQ,122\n-JhNO_E3aEE,221\nbEpL6Mt_jrk,131\nS5Y83cDu8II,161\neVmYZJQxawo,192\nNRuVbAAb_FU,199\nGif5ZnaOOQ8,132\n9_SMqU969fw,182\nWf-GYKvvI58,133\ncUFdtdKFaOo,139\nEpCp0rAGDNo,73\nw4TCxFKaqIw,116\nlGAADj8laqo,141\n3WIjC39hJF8,156\ntr8peYDm1fE,179\nIZxYRZdq2P0,71\nujA70PK6E7U,236\nNiQGOyewakw,252\nwS93oTI5JY8,160\n11MponTu30M,166\n9uXRIrNj_z4,129\nSUruJPHdHUQ,102\ngFX14TEiBOw,170\nWzAHXnFWd5U,111\nhlWL5Az4pow,200\nIT4vcwIvSCI,121\nebkY0u1-NKk,125\ny10ao1Tib8A,175\nszIOuIIbVfQ,77\nPUFwiKDWxUo,110\nQH2Z3rBA9C4,133\ntEyY-ijoyaQ,195\ngoRmKynyjqU,94\n0IWmniYe7aI,135\nNwru3-Uif_Q,173\nspy6L78o3-A,199\ng3kYdbqIwBE,107\nh7iSkEafJ0o,184\nHliXkWOMgaE,158\nPP4-LYtVpRg,96\n1VEMit7JERo,154\nJf7jVM7NoVE,211\nRf02bF9xoaY,159\nWUgVUfYuEiQ,238\nPq2Z7Qf45gM,214\nGpLeHrROqRE,127\nZgAf9AuNc6Q,184\ndapP5W153YE,212\nF9M5eGoCnO0,220\n9cw9NI4BKnQ,205\nAxxKJ2QgPtY,173\nxUHjhz5U1bA,132\nDhn_1iKEsQE,237\nPu8AnCsWdiM,98\n7RBqyBb-MlU,114\nFbDFmWdG3NU,186\nk6dRH6fO3Xw,156\nl1X4RDCFmsE,237\nNCi4QNKpVB8,132\n22LBB9jJG60,121\nRRDbQPvtAxY,133\ncrSg7r225Hw,172\nE7XIYOvcjuE,131\n7rYqBdJdnqo,176\ncH8ebYzr5f4,118\ntJ1uXsPXyao,152\nM7CL4l-bu68,207\nYHvTfLaOREg,131\nAcvWJ8bgA8w,163\nTmALN8vdU0s,134\ndhJPm7NolLc,150\nUmynxNlSRaE,121\nfM3FUot8TCY,129\na8mImo0aNDo,144\n-rsImQShehk,125\nG8_ch6wsWjs,78\nnNtl5Hv0bv0,126\nYJjM9EMhQ1E,152\nO6Ap5AtXFbg,125\nMDxkA-Msgdk,178\nThIBEo7fsSQ,174\nP4aGofKtJsA,134\n5VmWe3LyUDM,184\nNieC8KA0EvI,274\nYIg4Pcmy8ww,146\n2kdSBZ2QieY,173\nYpFmmzisOy0,174\nG4ENL-T7Dyk,165\n0XLEGFSKVhs,92\nsjEDF282UvY,134\nq9sjo2J6hIk,115\nx6PMTIOZY4A,202\njcmTZfv5z-k,123\nGqa-biM6qKM,201\nHsh6n5RfCoc,108\nclN9kykVhOs,163\n-vT2ztIXioo,130\nr8SqKn2AmKc,163\ngWGhsJWFOrU,101\n4XK1zU7zhkI,123\nqTj4aSPwTBk,169\nxI-ehlRwN8o,230\ngDVYKkvkguQ,134\n5h2uLkqpVV8,97\nowUlPwoEfaM,131\no_rv7bmEDm0,121\nu6IAct0ow4c,146\nyV5UTHVjMME,219\nO7s-DtIX_8g,176\nhYIWCm-Lpj0,180\n9sSxcSntcyE,161\n5arl-jbtz4I,143\nxDZfwTsiLrk,104\n86mBBMobUdY,77\nLABMISLl7Y8,188\nE-EDJ6Z8mS8,126\nekbIXnK0_ek,131\naoBeDwBxv04,98\nt9XjAhGr8us,128\nRwMgEM9FNhE,118\nK_NTydd3MqM,153\ng2tNQ_6-kpg,126\nmT3_2sDEBJQ,77\nhD7KaqFoSq0,133\nCsOM7mptOLM,82\nogUC0Fcvh7g,121\nKVV02IJlGCQ,112\nkCrtP_gPMwk,256\nCRu7V9v8Nnk,134\nHzvL4MonF-I,150\nwWRnv1V8iUY,163\n1a3iljVEif4,128\nRVVBffj2v8o,197\nE0BY209ZNEY,131\nlunmhq3ZejE,130\nyjw_DuNkOUw,198\n85A2rWA5O3o,173\nNCs2AelYw_E,535\n1D8CfzvSy7g,115\naGMiaQISzq0,67\nf06qimixOOI,96\nLK-4Dmq6Hs0,113\nZCTCHQWhYCA,149\nCVjRQMnURtM,192\n5LvcBgWzjwc,183\nY6hHVWwwfPA,133\n3GrjR4Fib1M,109\nRtRffVRFz6M,166\ndSSXODCgJOA,261\nE5M67kHOzyw,159\nc6EhzIb5NKo,180\nFPYjy-ZWB-c,121\nghfqnmL0d_A,131\n2LwWmJojqvM,169\nQbthrROkWXM,196\nmr1bVID2qao,147\nS71iST-01VM,212\nPSW5cd8WVwM,147\nE-Ts3DuFLDg,179\nA3Vm7zSOm7M,180\niGRj7rfPdQc,151\nC2KN6BHuPWA,133\nmcerWHb94yo,232\n6CmxSs6Mmx4,141\nyNmBX5mZvRw,136\nfar9-9beq-M,166\nBCcw2q6KbbI,173\nKNQpMgWWB5Y,207\n1M00J5Q1Vv8,179\nA6d0qIZY3Hg,138\ng511NYTRiOE,207\nQvMf6_foftw,258\n485KJTKt6RE,146\np0CQcDumPh8,167\nQbOo_FctFu4,81\nN3_pKdxk5OM,131\nU8fgto8IZLM,168\nyQ62WM_w2iM,178\nOAtwRoFSlOE,166\nSbtm5uE3cCQ,159\n-Nzbwerwks8,123\nM_TCpfWTFjo,183\nZ9h-ht1mVkw,225\nKXoFUS5Dzto,173\nr3_IvtMPIi4,193\n2Q7wnttjQgw,162\n0igqAlu8Oqc,152\nh36wtoBcAS8,117\np5BfdwK92UI,135\nPbCNDD4y-Zs,106\n6VvluTE_w14,99\nkgwjR-pQ29o,159\n3ReLHqluiXY,68\neS-f-9meg9E,298\nWc_pikEIkcQ,146\nXHEs28Z99so,123\nz7tcVyV7wjw,180\nXvyf7ml1ndo,131\nWgXQnXPb-TA,157\nXgGyrrzTBz4,122\nKGwANfqAjNY,138\nQ7r5VtqG7cE,139\nvU1mJ4LF3u0,129\nI4tqrGqT_b0,83\nGU1zIn2BRN0,207\nruCFlIoCpJ8,116\nNQBMjZqgGEI,101\nQwx9wZgxUoQ,123\nhxi06yeErvk,84\nzquC4ky_d6M,162\n2uVdxC_gCro,120\nHhmpYA22oio,160\npR8Lt5DyU88,142\nUayJYYeMANA,132\n3EdXrMS1gJc,79\njtSnHOkSJxM,128\n_myZeGUaveU,144\n8QbFslYlKIk,134\nCwgIvhYyeTc,155\nlLgOrvsA9tw,143\nuEW0FlmiNec,126\nlXKwuj1pqrM,130\nAoHVBb8Bc_4,172\n6rHHZ3hiwcQ,189\naR4h3HHzqlE,151\nY8AM8s9zoKY,261\n7PI0v2ZWDl0,162\nRcjY_I91okg,214\nhCZqphs0Suo,114\njMxYv05A7B0,131\naZJG26fSy94,126\ntekVuL2mT7A,239\n1Oxtu2-DlI4,150\nR9l_adCi74g,134\n5ZCaXimXaxo,114\npXGsio9H1xs,214\naB6Tdk6f2Lw,160\nM4fuweiQQCA,133\n59-Yznur6tg,218\nte4DfoUHm1s,282\noMH9kIyIl1I,121\nQ7qNk9dKVpE,146\nrQABiLDqdVc,130\n6bO4ZsAMowI,62\njlcZPO2FhGE,128\nOpCXQJyiXQ8,119\nHUZ-rA7L0uk,213\n05s6W7dLEbY,136\n3jEDXJvOCs8,157\nMfM4qCHUPH8,151\n_klWa7UqpwQ,204\nex2RuacnG5M,183\nA949a8j5Boo,113\ncvaUo282fEg,195\n1zl35F7uPoo,178\nnpSYPN8LXas,172\n5RFz0uu2ZuA,272\nqrIt5BPvCv8,135\nUFFaqQYlg0E,132\n6V22uyjiMpw,105\nQtVEk0oKtkM,180\nfbDgv4huUp4,144\nXDlC8NyBBro,199\nuQ_nGVp6x6U,135\nAL5i8ko_Blg,172\nRMWfAkUhGCM,139\nPlPRa95iR3k,295\nV9E9Nce1dC0,142\nRJePUClQaCA,168\n08cPFt1GzBs,132\nNIZSw5HFr60,150\n2qyJ5r7Wink,141\nuTOoWlYv95w,159\nqpxUYzNSGn0,133\nOk3_qMNWAo0,134\nNQcQ3bA_NXw,179\nfaUJYzpcDec,177\n40vMiKmqaCk,142\n-jYZCqfUfVU,198\nKhS2-vKr1JY,213\nGxDvAEsMvoc,144\nPWebnyN1kSU,173\n5Svd15hqUfs,162\n7ML-9r4M_qk,144\nA_HjMIjzyMU,251\niGk7QYThMTk,183\nH4YWQ0uEY2U,119\nCHOpoOnkRJE,125\nJd3GwwxFDPY,175\n-a1FAp677Vo,97\nfRNR8-FqzM4,120\nBCSe_CsI75w,118\n4kaYp9uUNgw,141\nM47Aq3yj_NQ,148\nsw52VLDCFhk,132\npWREOi5GPZ4,228\nhF_9GQFISow,131\nKq3TiuRC-VQ,226\nQ_UdYBBk9XI,119\nVlMy5-BAjzo,126\nwnmtGj0vBo0,139\ndcR7fdkLhJ4,300\nD_D9eQtLpCI,125\nr67faKKQyO4,206\nOj8S0fNum9g,126\n-Kztqrjp2yw,202\n6nmLldKD8fw,160\nS1UpuPvAUss,123\nOlLMqN-vjKk,101\n41v_zrra00A,155\nnAqJV2olXN0,114\n7oDSPSwMw5k,110\nhonAzu3xOP0,202\n0D35LZ4UBX8,175\nh846tnckLFE,134\n5noS6qGxcbM,136\nxfF-ZL3xvxw,171\nW18J6bcq9YI,162\nPFjN94zKbc4,126\nUUAQ3T09_os,70\noefn8TJ3_H8,92\nv8CflcvxDJo,156\nWsHqQAfZvc4,156\nPdYD2Sdt8s4,161\nXNwDyM81lSE,104\ng1r-B5ZGZWY,204\ny5ysUSgyVqs,164\n1sz2oWajICY,83\n62Zbtotq0B8,161\nYNBtb-8zpko,126\n44MohOiWwnA,194\nIpoReT0HjsQ,91\nfuCe9uaRx_0,114\nuSLscJ2cY04,184\n3mhdNBdzHO8,97\n5K6sh7HZri4,129\nPmxzK5IzcaM,176\n96pSGRvBg3I,147\naL4dQo8iBLo,218\nHudtZNmmVwo,118\n0C-qxjiDP1o,55\na7t6tQVX7T8,165\n8uLL9nYu9YA,135\nuD-VMe03AdY,172\nPNwyZMNu1gA,130\nCflcJ-HSA_Y,131\nZRdnTHyJQQM,177\nkSaOMRXiLVA,127\n6PAMZYS1Fqk,189\nZOfisAF09AA,146\nFqbR0-PbFOo,105\nUpgP8aA8ABE,166\nplkfDAtzmjE,177\nA1-XFXX8rU4,197\nwEvSZB_Dhqc,230\nP-mT2D6iM5k,107\n6QfunXjWCpc,103\nrQ3Qokn9t_w,132\n_rCRxCR06UY,144\nyPJlBsQE96o,133\nIKo0Eu-Xk_0,129\nVRuV5oMqkDg,121\nUvm8N3wQDTo,179\n1CTjGKT-hDY,167\n157mo2VaYqc,146\nZvvQ3CLveAA,119\n8510wKZLa6g,137\nm07ShpSpKJw,227\n6SDs2BTqYpw,102\nq5eGg_CgBPk,166\nMjrbUV78y5A,78\nGfje9_QRQbk,167\nU5EKQ63wREM,152\n1bpUlGBdKyE,171\nmFA9-zsFtt8,197\nyRpnEq9A3vo,229\n_4oM1Sa1Pb8,143\nR_moIp38Fk8,136\nlFGfoPuKx9o,134\nT_Kn_D-zfeg,185\n6DxeFNOzuWo,154\nS0X0KScmHvo,122\ncLomnZIvoFs,215\nBT_QpciXdcI,133\n_LNnkttaKXo,118\n5jsb1xN8byg,199\nVs0CShp6HFA,155\nXF7nz6p4H9U,179\n2_8IxyDXT8k,145\nszVtrq1Wt8I,106\nSbP_EGRp9Kw,203\nCB5qzQrDnZE,224\ncRj9pF0YGT8,190\npHXL7yantDY,220\nTVSr02WLC4o,194\nEq4GnUgNeMg,94\njpEfgrff8z0,185\nOeknFyEHaMw,118\ngbIKuFaDbV8,130\nMlUEy_9s0D0,157\ndmy8Lcf_TiE,177\nByRUwa_QiaE,158\nCnrR2upI8Jo,151\nzjXn9UGZt4o,158\nHOjApJYsWC0,164\nt09QqjBkg0c,174\nEc2ek8MmHRA,155\nO7S9X8e2uhA,130\nN0V-2VgCwxk,122\nzg0bUxwdano,162\nwwHjdOzIloc,149\neNCK08cInIE,126\n6kN5IkXFwcQ,130\n9dqOdoFtNcM,177\nHCNwZZ3Baus,158\n7d4Sd1W25xs,189\nkg3erAXOz34,170\nLWoKa0wYTJk,88\nss7eqc_SHsg,87\na-CS6CjnEw8,162\nxVANxG9gI6g,173\nv5YaaXLJw2A,262\nUpsprkCDFOs,140\nhck3C2VMRzk,133\no6Jkz5TQv84,175\nqvvcVzNqXVg,134\nadxwpSdHj90,162\nN1UxH6P-Fgc,160\nBzKbRv8tcBc,151\nMuYLaaVqJf0,102\nzkRkL94VQxY,180\noWjtcWh-gyI,148\njGXpyMDIZ_U,237\ncglsMVVevx8,183\ni_Rupd9NU4E,128\nR1zRKVLsmrM,106\n0yDzNGZc9DI,133\n0osA8jKKotc,215\nrWlFWMR9MfY,258\nAvIUAlTg5J8,134\nes2xkV9Be20,190\n8d3LDYM0GF4,116\nZjPPfwVPTDE,157\nHrFlTjySp8E,135\nU5nphwXr8VY,122\n4psRZr3sxHs,133\n0gKYY9NCTvY,265\ntHHqfGeeXps,134\nKiw89e1mHpM,197\nAsfxK5fWMu8,192\nt1V-lbe6gII,145\nl753e8ClbPI,170\nr3L0e0izKG4,255\n7_UHtWGKsuc,287\n2Ht6646WCMU,163\ndvlZ2PtH_zc,192\nSdSQJTSYXJY,192\njjwg2PeDUxM,186\nUpWvuwMabSA,163\nTuBXSOUS-U4,129\nmS4njwcS4dw,134\nPvva0sdUEkc,173\n0oFdsgLP8n8,148\nB2KSjVAskxM,91\nJkrovwTh2rw,101\nv0gGWiRkjYM,146\nOo67jMp9UbI,180\n1xccuQBsJfU,124\nByIEbq6tv6g,147\nwCmL4G9TYMk,74\nTYJXBdLgPks,240\nK3jk2RjLJ3c,173\n4mYsa1t21Mg,176\n2i8C-GOsHo0,148\nIhkrc6Srv0Y,195\nrhfBzC5A79o,129\nIRycPfFjVBI,182\n29YDqiuyaOU,157\nkokQDLJ1104,168\nrsnLwzzkF_Q,159\ns37owQJdelU,166\n8c-NNYNy5Bk,102\nbr2rj_3KW1A,125\n8xgUm0plA8w,107\nysudBGghmnA,191\nfO8fKHbg4kw,67\nZ0AxmKelYrE,148\nS6yZ-K4SHJU,64\nI7-GvXsr40k,122\nFMbSH8g9vsU,116\nDC_6r5VR5_U,112\n5k-dlqqHE2M,249\ncnM9pdjp5o4,102\njs11RqXLkZg,174\nhMYdeT6aOnE,130\ni4NRgUeziqA,127\nt5vDcrQIig0,165\ngQ48-nl8wwc,115\nxW4xczuVMq4,212\niNg7uRYtqLA,200\n5W19mLb-9JM,213\nJyTf7wR8vWI,177\nJgTgQvvqRqE,300\ntjRgzcM2HoU,121\nmpDGnFwbw0U,150\nxYfxboRtKJE,138\nsSRmhI94MUs,147\nq8Wj4buHUtE,175\n8ISsNLwwmXg,123\n-7-2-088LnM,112\n7S2ffMUk7iI,177\nNqJ6llRZg-M,130\ndzGkUGKULRI,108\nnCm4_MJstGQ,114\nbyUbi9hlirE,148\nlyd4tC8LH1s,131\npJFZLCoqB9w,134\nf0ui8NJnqN8,127\nKU5yx6v_Jr8,148\nXWgSKXw8ZwI,148\n3RWHkM-krJA,150\nKy6GupHDuOw,90\nmos7tNLWRz0,92\n-Qq6ZZy0yGg,170\n1UbxL1MVZ7o,117\ngH1kstAfb5g,135\n1pzV9GoSuys,64\n3TF7zAiuX1k,254\n4gftIIxf7B4,164\n4HgHU5fVqbI,178\nGQYCNF_zoDM,100\nsJsCKwZLztk,166\nVez07Q0O7c0,128\nmS1u_E53e10,123\nbH3ulIPKNrc,123\nkQnmD2gLRVw,157\nXUcN9bf_jP0,135\nCXdc2L3QH9U,137\n_5IVdeFrhv4,111\nO0PDEEFMUB4,145\nIfZmBGcWkLI,201\nGczlfeOFPDE,115\nenG1CfTbT08,137\ndTIoEMxqckg,134\noNpeuCWJgCc,124\n2T51K4xsBjg,196\nbIpQoVucszI,161\n2c3-0yhNlfI,140\nQ2x3eUH0ytI,121\nDRtbf7iG8Nw,124\naZbGlkGWiZc,125\nDznDZ_VH_2c,155\nsqLiTaVHPdo,159\nfkiY6TBT4mo,86\ndoKP3Il9R1k,109\n9lOj8ThRAWI,168\nySC245RIiD8,66\nzyaOnPSzcPE,125\niwryTZf6bA0,192\nM-HysTegELs,187\n4fgrzQIolcc,205\nJy8mz4gu2oQ,133\nArOB5wVIf-Y,115\ntJ4H77qrLjI,212\nL8JRx-zXz7w,90\nTrWMrEKpT7M,141\nYzIWoPLLktE,123\nob2QomOgStQ,239\nKtwPWWCJHAE,176\nNadEkwOLA7k,205\nsWgPWKj2G7I,125\n1rVMJNSZHZg,157\nJKPRgXq8K1E,142\nFvN03fXmnQU,141\nPYkBs86HnUc,143\nRRDzDy5wLh4,201\nmHGHJwXWh1k,174\nFuYjhxmpoOQ,132\n1SPMnqTUu1A,227\noc8bWybEFFI,188\nWy4EfdnMZ5g,130\nIoQ4G5p-Z-g,135\nupPFFVaVSY4,96\nO75p8X8YBtw,161\nrjnLGy6uWKc,144\nbuIXWAgTUIU,118\nmpfBH5WLlOA,154\nNg06lmNU4K8,131\n1EtA0HrUrYM,117\nr_tl6PA-Rd4,127\nZ37CyC5UB5Q,157\nrS_HIFTV7wM,78\ntQ_Ry1KTluA,206\njL_AtO4yMio,285\n3kvqIswrPhg,124\nvEOtK-qX4kE,148\nQKbA0PxeoaM,81\nzSh-Wy2vvHY,133\n9aR0JkmZLk0,215\nQbJIRG4T680,157\n0ov8ekqSAOU,130\n7RSJehegfZw,126\n1JJjo2GcRrg,143\n8TcZDzWEVDM,133\nplu5YA3t2l8,116\nE9B65UGKQ5o,127\n4WXN2HQ7PQ0,122\nWLE2QEOBde4,109\nM669rZIUGIs,140\neB-ldQkL--0,245\nyyPkV_leKEY,163\n50CeayOz-rs,184\nb0p7_jQ8HiE,97\nRKCrqtbqvio,141\nhIokX-nhQd8,133\nskrnn_M3e9A,238\ncrbN4daV5IU,130\nDbcOnkSMGK0,118\n8nSGhJRDjX4,160\n9dN7jGSbsVE,85\n5EN4MulDX_A,156\n9Wy-6pabUwU,129\nKVnOa_HhgX4,206\n_0FLP8sxv2E,164\nL1AHpY6Gcbs,125\na_iEYXLXbjY,156\n7iajsLA5MKM,134\nqhGsK4yvxmg,131\nH1IhRMtTUno,169\nAaMkmiZ9bMM,165\nGqGPu-X3cv8,119\nbYO_AhZaG24,167\nJcF3Ay4sjss,185\nqQgyoHsknIk,191\nM5DZzTtbV1g,147\nLWz_6w0paEg,100\nk67i1cISzsI,188\n3cBAmkzKEBU,109\nyISManYcWqU,152\nt45uy-QuRDU,73\nGr-s1mxnwM0,203\naG8bSNpEGoE,178\nqrd5QtOa6O4,90\nfyOv0TB4lXU,195\ngH4dw-S1esk,179\nlIbBAWzE6H8,211\nrmpFmJfEZXs,212\nZXkKHnmKWoI,146\nZPDbP3gms30,111\nOoiw8ZYnzdU,195\nHNPPD_4oD9M,128\nSLC6o6KPuro,123\niKi2wYZNAnE,126\n31G0GtKW8iM,139\nXyrvvPsVxWU,134\nWn02SYyYhRA,128\npsA_jrGe1PY,140\nqDjmN1TyJAU,126\n_oOULG_nhEc,167\nGsP6mQAcxj8,101\n-kKqgjrbb6I,74\nukXfvR7wi0U,134\nD1YHdHw-doQ,167\n0PPstocAAAo,225\nMg0bvyIEHcs,133\nwTzfJT3zGz0,187\nktCIr_DMGOI,131\nUIpSn7Kma80,174\nlnPDc4XE77w,204\nR3KOKpvoLIo,133\n2nCjaCV1v0U,131\nULu38sbUDdA,128\nCvLrYbRzjAE,239\ngnallHWgupY,224\nl94geYuwNJg,52\nZeg6dl4L60M,159\nLVvJj9sDilQ,141\ncNjcecvssqE,178\ncOy7yCnHMAE,144\nQPDuZ_Wq7ZA,155\naD4ZPXHAVCA,133\nSeiUW113A_c,119\nHeRIwSpHZCk,177\nzOvMmwnFVa0,155\n_ZwkQIBp4TA,157\nn1VEmXiaFY4,168\nOVCIGGHelu0,109\nG77jx5jd2-c,171\nb2P-oU216V4,134\nYSN08rz66zE,259\ngAI36zhS84Y,190\n_3bYh7CffIQ,74\nH5LLqPyF11w,133\nm43-bLl6ZwI,182\nTF2BDWsAg2U,199\n56_IiZ3k0OY,202\nN7vSJzq1zAY,180\ny_Zo1Wg4RAM,134\nl8L0q_dnoKA,165\nJYwvFPjJ7dM,144\n6hUiaXXj_Hg,153\noH-kAHKtbTE,175\nB_cE7WEW5gM,104\nwnvRIdndQdk,150\n8coCtKWysGk,176\ntdDDMrzq9lE,147\nLJgqSSZpdns,162\nnS4Zfx9BSX0,125\niIPeQxzLVlY,126\ngcoKGdZcf7A,71\nge9ahoqNSLE,91\nKiwEFBgGh-o,159\nFIGj7z-7olo,169\nST9ouIvHftA,145\nLeGBkG_sRNc,133\nshal5AF2Gxc,132\nePtwxRF1WZA,174\natBUgwJAD0U,189\n3lQ1fd0hBe0,144\nauNkHDpPil4,178\nqabChviGItk,119\n6PEQcK6G_4M,182\n4VDry9fy8UE,129\n4d9fx7umXgg,286\nij0JLKDJOrc,109\nz7siqPhc1qc,211\nyCHoWsMt0LY,263\n3tuV7dBxBPU,80\nKe-MYW3XORg,127\nb31BhA8om1E,161\nBc3PB049HQc,121\nde_Dik7HT6E,132\nQC5re6k5nLk,58\n6nrumyJrmZ8,178\ntnZ55SLhan4,197\nsrpM16MbHAE,123\nwB2w4t9dr0Y,57\nABLVvVkVtHo,169\nK2bk8aUwIis,229\nEOX8-c-_uVY,134\nD4gPEFccxPk,115\njUkqho3OUos,123\nHV6s5JiA82g,139\nxYIhxXt58uE,185\nDIlHR2SWW9E,134\nkzxz5xezOAI,86\nCFqO1y01qjs,195\nJ03m0CzUvJU,177\nHfEjIU7Qbj8,211\nVmCRT88HTWE,134\nQS3UyqLs5KY,196\nFVgkuDNTOa0,202\nI9NGZteE31I,167\nSyKWZOEqhzw,115\nruaqMoxwvjg,120\n-nk6Gs6Z_Bo,189\n1UN6pgpke7o,179\n2w8LYlDlls4,125\nkSQaXjYkZpc,179\n1Igt8Zl7xwM,173\nphGwatUEyzc,170\ndes_yFi9fiM,115\nKJtfL83FLj8,215\ne5gfRaN5gaE,183\n4mfQVFVg16s,125\nedaHyeIxzcI,133\nufllQr0ClXg,217\nz1hLLDMkdlM,252\nMm9Y9JEmekY,116\n0zsUFpPjt8g,134\nwuRzu_xHPa4,276\nm3XsVwEuULw,148\n1TX6svl0Qjc,166\nnEGbOGGiENU,123\nPui9t9vPUTc,135\niv_Q51lofKM,157\nxhj4CAFsPt0,180\nKaVglFjQynk,135\n6Dg0qouE5Zo,182\nnf_4vFdS80M,293\nxc_90HgCenY,185\nCARc1uUq1lA,148\nFFnyDGETjzA,206\nP_zAPM1cQdM,82\negTtyS-PlRM,184\nHNV5ksTBzLk,131\nXkvSrgngUrw,167\nHxfzrUYFsLk,128\njhMCxDi0Xs4,237\nXP2jPEAalOw,113\nA7mWnsrRu6w,242\nooS5gVdYgRQ,143\nrHIIMIBMvng,177\n9jfRE_FljrE,113\nXq5eXYCKUF8,167\nvI_kMlvUWDw,120\n_t4L-ZdoEr8,206\nB5uw3qZ04NY,84\nyHo2Yx50F8c,140\n4GRGY20zWkU,161\nOroiRWIR2gQ,195\nTzAEE887L_g,105\nZhbolQxBK2s,220\nClUoUHjr-zE,175\nMczK8n5msJM,180\nzUtw46VWtVM,268\nVk2MgC2loOo,164\nIqsvjhHv5wo,113\nh5dCFGJp__0,122\nJuxyMqr7FNA,74\njatrkHMHR5s,172\neGXnEeW_KdA,133\nrOzJnj3UmNE,153\n4vJ6xB6ctaA,134\nd0c6KWKMAF8,120\nph7amveyJHY,109\n6EFzoEVp65w,176\n_OaOalM_tcY,79\nHPcr2gT_cnA,216\nxoTuKbJE9aw,130\naNv_E1Gh-1k,158\naG3Oc5TNd-Y,152\nHXmru6NrSAY,246\nwBq7RLGDqKE,206\nSN8buDY-7LM,226\n2WDIu8XbVD8,126\n_0vYFxJJcB4,84\nQ1CJv_8XbmU,180\nSroZoan9faw,259\nGq43zgK0T94,93\nKMOr9s3kfM0,133\nvAfD-vF8yss,133\nytEsz9ZEh_g,131\n_UvKhc0wVU8,134\n0WKopiIhAdI,136\nRS01myY24NA,179\nHJKL8Ta-kt8,177\njxEVFU6EN_k,99\nL91dx9ovcz8,133\nL9wacy030Kw,177\n5W_sktmZuzI,43\n6TOx7qsyaxU,246\nl4S4IBACQCM,152\n-dWENMR2aag,127\nsQV6nuap8WA,134\nmiJ26dYcbBw,89\ngs3GHB24IaM,133\nqybKU4uNtV0,157\np7h8oBhP_lE,188\nG7gklW3Xbn8,172\nTd3qZIf5Swg,175\nfPQJBHWr8zI,133\nBL_RaZ6VCgo,232\nigmlE2TDEyw,135\nAVzJme0mGY8,134\nZrDL3HQCwE8,134\nyZgf5wSULog,222\n49BRJlMRZ18,98\nfgbjvvCPa88,128\nmPWo1Dsti3c,86\nHm8hcRPGyME,236\nBGGyUpO3W-A,130\nD4sj2Yq5bnU,122\nwVFNjHAnpcI,99\nrc5v5EODszE,129\ngeGO_emEsqs,174\n3WksbH_r10U,105\n3lR-s-Q5XsQ,241\nnLDgcHxJ4Sc,213\nqy58BaeEMyw,182\nLv41GcKWfJg,168\ngCRokIMgn1A,148\nCl5eAgx8K8Y,279\npoTqVcSgFRE,265\nlS9V0oDrPfs,129\ncg49Y3jpZsQ,125\nFFU7WJWXrvk,156\ng6DnsZvudTI,69\nj7m47I9BuuY,225\nBSmKQGvL9ho,213\ngtHhlD6p8BY,211\nS1Xm1jBc84U,119\nh6klN0zNh64,166\n3ZL5il1o-AQ,215\n0zHERbRFxTU,153\nIiQlYWhL_UI,160\nJhzm2AvUGHA,179\nXstux7DlrgU,136\nVuUzda9kvJA,152\n3yqsR2cziD0,180\nMnTKULzMhMs,110\ncnwddNSgakk,181\nhYvxbtiGvrk,145\n4QR_9BehbWc,134\n3gD5egw3-Lg,139\nOE7aSKZDjTo,180\nW7_EwytEz4w,176\nMmKlIGkxGyM,150\nvpqzFo0aD0c,81\nDQjDI3NorAY,213\nMXa-QNQ1zfE,174\n2Pl7zNuA-vY,235\nPomVYrPHoAg,133\nrbhNKSWKWwU,169\nhoWEYBSlctc,153\nukWCpVUXs_E,164\n3IZVz7ukKyU,193\nInHZNhmQyd4,215\n1bBOUr7rAHw,172\ndKX4NN38vpc,277\nw86nTX6Iixo,157\nDmXp6Pm-uLI,177\nvtdnjV0Q2fE,164\nQSqUVzkUvj8,198\np2zDdb_MqmI,195\nimITvYE-QBo,134\nob_6XAhj_1U,150\nGALfESO3afQ,180\nL6HWF_-Vmbw,78\nzzabhummvzk,100\nQXeYlaZJ64k,157\nhcb0vROvmWk,127\nDka4AUVm_j4,153\n2aFfcz677qk,187\nAv0pWtQ36tU,150\nD0bIbyAa_XE,132\nXgZDk5PcLYg,158\noJITCthevTE,169\n5H_MyLSpRSs,117\nW_fixpI0BL8,134\nNCjjqtamXzU,132\n6efkIA6C2h4,185\nnvAZrrDwecI,130\nRM0NW8MF9wY,162\ntPJJlCdrJ0M,133\nL38j8UMd4oM,124\nXFu7Fz4g1VM,124\nJnjO0v-AYFo,134\nPJze0WsDW8o,227\nW-7hoLpXFXE,118\n1DNNWWORGo0,117\nFcSSNKWcReg,172\nyjrvJkWU_5k,89\nrpqgDDBcmcI,164\nwQj8uFwQP2A,131\nE-mnMI7Klyw,140\nFubpK1Tho6M,300\nvn-PJRh_nFQ,134\nhqslb1FVoQQ,122\nYo8mYWU0oTk,164\npQwl5G0ZHdY,206\nQ37sWrXU39s,204\nIBsHlPPeaY0,161\nBmuWHveTicc,214\nBfF5J0uSC3E,207\nr1md9sIev2M,162\nQqFuGUbvgnQ,181\ngq1gSTF2oyA,133\nesg4w4b2xvc,122\nfqKdFZ1jKMY,171\negC6XhnfuZk,91\ngwdClG0txYM,142\nMGIjofJUXyo,134\n7Wyjo_hrIbM,167\nROf2H0OX39s,171\nnRkXwphpaQ0,133\nl0zmCUVB0Yw,181\nJXRw_5ug68w,196\nikcKKvKkf4Y,163\nk0LLcRLSSlE,203\ncj5Mp68u2tY,132\nTfKw3gvxff0,134\nItkWLEWFjVI,88\nkvEgzOjGpoA,153\nZVlfttyv5js,145\n96IU0EisCes,174\nZ9vRmexWHUo,116\nTvFCzrDQrD8,119\nIJvZL-7xeSc,145\nfV4ApYBVa3w,158\n73Pm3rkTzb0,152\n4-3B-Y9bM0M,180\nNmSNUylSNvo,133\nPMdokZIn2_s,129\naTxu-zthTgs,137\nJrn-OprEMLI,74\ne_S58iPZYu8,126\nc_ByO08UsWg,124\nS0LBIxKRCHw,129\nojoC-Kbzpo8,180\nIagCGWtNyTQ,213\nEG9eUCA_MxE,104\n8gUP_uUpmSw,141\nBMlHiDzHkSk,133\nHcjPZqjGuFA,196\nKfxQi9_BfHI,120\n1iEOBKuW9TQ,179\nPkO3bgn-Qgs,148\npsDtqypK3hI,186\nC05qUz1ukWo,134\n9qdMVMCGr48,108\nY69UrBaCUAs,138\n7-5kYQLJnFw,130\nKqdi0X9vJ0Q,171\nbCYs8v0Xji4,76\n_613foTYfrQ,425\nwgkxKdTVrHo,99\nsDEWZnPJGRU,186\neUGtEOY5ZLE,161\nlryUDOG6bS4,191\nSHwGQTJ73Mg,186\nIMlPpjJlzFA,127\nnoakeL8pCX8,219\nKekChFdIe00,197\nwYumvThtFrc,229\n6ZUg51T5ly8,165\nJ9Sz39odDjw,106\nYYZSg-BBAmw,86\naEIaR1nlEoo,89\nvXQlXYcAksI,123\nV-vgoh3ukPc,165\n9YJRtvamIjU,128\nW-KxBQyVfc0,166\nv0AyEpFDi48,267\nNTdHPAY7rOE,207\nC2IvmQI_efs,133\nF7FEV8M0ZZQ,152\nKMcBrs0aWbo,102\nYprQvoOj6wM,169\ngQ8uzN8MSfM,239\ngq6JKq3Q_uw,104\n8zqwJl6lq-4,132\n61nCIyBCmjg,141\nC_fhEQGp9Hw,159\nWuvoHScKCR0,167\nRXkLf3ucqIY,190\nCaQWWTLOzhY,185\nMsIWigAwas8,121\nZCZyxZYgKIg,136\nsG8uXeC_jNg,173\n4gO9OFumO8U,123\nuifDWAJ6rBY,94\n0h0S6EmQWrI,130\nkJVKPHBFNF8,164\n87IqS4kQqgE,194\nS1NFRvZE3FA,132\nHpJfIRs8rfc,105\naNbtnYXp9-k,118\nCqsCkhbCUr4,222\n06L5y4Z9KcE,169\nxq5lZuN6geo,240\nUAoJ_mv0Pqo,153\nqcaVM8TcZbA,142\nS1C8tqyy3oc,107\nuydWF18xoCQ,138\ndwufX9GKI_4,166\nwq-H7qGfF68,156\neng2A_NwG04,154\nQCkiT56VSR4,128\nVKl41s51JvE,191\nqOeZ9TL0wHs,126\naNDj-H1jxV0,181\nmZHlantNtwg,168\nhT_CiaTcnN8,108\nsOHoeZYeAeM,126\neK20uOpc_AM,138\nCtdPDTJDsGQ,175\nsMLop6XZBEw,161\n0L1sL54G45Q,137\njsbjmWo3c38,132\nQymZP9taonU,179\nBtywn5TiBNQ,130\n6tAbZpduDLM,71\ndJsuwhIpSDQ,95\nLrDnPOOQ7mg,142\nAupnEJf5ZNw,193\ncm1NBLlRxy0,230\nwoSj0M9Decw,133\nq3Vvto0REuc,230\ni44zbRoYBtw,204\nI51Z3trNfZo,73\nsUQ9cisQpaY,178\n8VZctic_uTI,196\naX9m-xzauMw,124\nVfzZIM_Mq54,164\nAf-N8CLLoqU,176\nlJmafWivAtQ,216\nnsDjpgWu8F0,197\nGM1x6UcMp0Y,242\nX36kqKTClAg,182\n1Rhs3PVAP4o,87\ndXNu5a3KmMg,164\no2GcoDvPVuA,158\njFWnVdsSgxs,199\ne3A2rtsjJV8,95\nUSjNhsetZWc,157\nZ2SdWJJWe4I,174\n4ZCtygwf67Y,176\nVO_llDPp0kY,210\nBkNCfTfR6fQ,131\nPyUqYOB4ey8,76\nY9Nt3hlMUUI,175\naH6N58NST30,113\n5VgRuLQgeSE,162\nV0sQmOr826A,132\nr1N-Xby5AnA,71\nWgRUpptAcAA,164\nJfsgeCwAYEM,133\nyR3zsO8pCMw,106\nUSWXF1XW2zo,194\nYUF1PIe1RVY,156\nUgiK8333Np0,125\nMpPwsiwPhF4,75\npAwdeWy9yYM,207\n30IrWTTMWos,128\nopXI29YEI5s,238\nJ3Dc6UV1ML4,177\n1IaDQdo8x1I,202\nhfzsR-3PLcg,89\n3rb5s-BoCFM,131\ngap2gWQy77A,167\nr5zhPLNGAOE,186\nqTey0qxMboA,155\nlv0CgSfmWxc,118\nES496lmmGcM,100\nU_MNiopwFxs,124\nSjF_DpHczjE,93\nBDvjjQvM498,175\nPFG8nJ4gwvo,203\nhv_mYkUEGko,86\n0WRtWiz_Xvg,200\ni71zp2X4XDw,186\nYn8Or4O6_9U,152\nWgxNguNEMpE,125\nXA0J-wn1Esg,178\n7p0J9wVGwZ0,116\nOmdvu0f-Wuw,174\nIRdxr5ilGfw,171\n_EjWpjky5lU,132\n5RKld6BGJA4,215\nW4vPyEk5UK8,158\nAAN85u-udis,134\nnD8KtgWozeM,160\n-VnQ_KpOBm4,110\nGgASWe5c8kE,196\noNWAiWBup2Q,225\nMuLtmNixbdw,90\nNdbZtOpgsUY,135\nCp2KrXtWwAA,140\nIxRCDx-YV4I,157\n164eTBYcySQ,151\nki5XFDm1ufM,120\nW4zjAZcHUaE,134\nxcTK6uPPiAo,170\neeWPnGsY-Xc,151\nQmSSFYFSA00,92\nY5B6H8G2WcE,155\naoe4V2f2AHg,145\n9qtw3cXqWfw,96\nsVfmACBWnIY,147\nkvtsZ1Edkk4,174\n4fKRyf8BI-Q,189\neVzxDwu506A,121\n95jCkyuV0VQ,183\nwMclAYZ_6kU,262\nWsgkiKu7AO8,144\n4_SBdgdCwDA,139\nZ6cDbMLcxQI,165\nxRShAxpUZ6Y,195\naFQabbA_FMs,177\n0OmDcj8U3Xs,207\n1gj7X8C31Tg,173\n2iF-cU-qnbc,156\nbEBQWhgGM1g,268\n9zcAqShAXPo,133\nL46syxgju18,147\niaTG4JflfqM,103\nobn9BZj6V-M,232\nf-DiniX_1mI,83\nH_pmwvIvi9Q,155\nOuQTes47k14,153\nzHwUR2EqUO0,209\n1maNhuFVhmk,92\nYNZmZ4ARr38,179\nxsM9jr1e4F4,197\n9nOc2GqCQ2Y,174\nKo8vqBmZRfE,175\ngRP3sdjszlQ,159\nTOzf01qWO-Y,231\nWBY5O2nTvSU,175\npkogDQ3CK9E,169\nUwN27CAbgFQ,257\nlZ_r2Q0FQ1A,203\nLGL0Gz_QgDk,134\n6Mr9bQJEuN0,180\nieXrbTpZsvM,150\nJFAAK6FfOSA,128\nOCYRGGLywdQ,195\nu_G4el-62Ik,134\n1xUVBfQ-Bq8,180\nurr-Zn5nq2w,127\nrpPm4pAJQbc,119\niGawlpfe6a0,109\nxxl1Hrw2eQM,211\nK6O_Ep9bY0U,151\nntqVq02V2v0,142\n1Aoukxd0GvI,289\nIIJZj1M4tN8,122\ndUMW1YRsWcY,166\ntw84SFLxC_o,144\n33uE1YctOf4,178\netixMqUt8Ak,81\n7R9gbSQenqg,110\naOX72bZr_LA,201\nXOfjQQT9O08,134\nvuvmITfWFuo,121\n-FU65KX7aJs,177\nHnhM0M5UzX0,151\nOe_cBDzqBUI,130\nR76ux4iCRzI,172\nWjWpGhzYS6o,134\nSajgVNIRdn8,196\niNiZJmh1ALI,252\n_ZA8FE-nu3E,84\naKFriCo_HWE,219\nL-zzxADqlu8,159\nqSd4Q3GY7dc,180\nyriA_JXQ8dw,179\n4xtCQLbXDqY,162\nESEKkJNt1P8,143\nsJsHcwZsNnI,180\nKVvqRC018VA,202\n9L-HJ7BVR6A,254\nCA66So14ydI,155\nYk2ZbS2FKe4,128\n5AMX5PaikhU,209\n24adocMDT_U,136\nwCFnoBDeauY,145\n574oBJ7SR_8,180\n_bJYiiCvPW4,150\nDNHmujbuC74,212\nhA063IaOHyQ,144\nzuFtCz663GQ,169\nRe6AZiB6JQM,146\nL9EPJ7ZYjHk,129\nFqtEB6j5jEQ,199\nvlTPIYTd32Q,224\ndQlExOgF5eU,133\nT6GiDpoGg0k,120\nAxrQtWFF91k,131\nFTO-jtC7Hf4,101\nuyMQqUwKVBY,134\nAD26OcrFQOY,167\ntNvDa9kTDUw,64\nPjYVxXOmsrc,137\nqwgO1dNfBl0,218\nR0fmtWlMpHc,114\n1lxY4Sc9eNg,150\nPLOSA5L0dxE,170\nvNk30YAdCEo,154\nwQS5Cu_bGs0,292\nhegwdxt_FjA,177\nUBNLrL7RvJM,114\nVhYxVXimdIw,133\nexu61pb5X68,98\nkVbmTKqZ31M,133\n32pZcw3acD0,109\nbICHpdNbsmU,71\n0qkVyahL10U,164\nA_bC8fF6WZE,134\npDdLHI3b7lI,181\nsdkgpg4Plxo,116\nGpc4_pqXMVo,136\nlKXUBB09y4k,170\nywlNZzvlaKE,195\nBUB6TUH7N0A,179\n8zomTUuLank,115\nQ2GegbPq3Lg,115\nVwkGKFFk-F4,281\n6Bg6Zpi59CU,161\nUECge-Vi8VA,220\nmqkYeGeQ1f4,130\nec9h1IjltJg,145\nnxKAr1Gebjk,138\nOd3sXn4mOF0,292\nPkUS3Y9bR9s,174\n7sQRpVCnRto,124\nkMcvRpOOIwY,186\nFpFqjfqGyRE,189\nBiXpNk-huqQ,103\nPzTICfN0A-4,188\nrS-P78D5US4,139\naEG9dwOsAAg,141\nGdMQOwEnATM,169\nX5dtBoyZ33o,165\nzbAsqngq2qY,118\ne198XToyAkk,150\n7aYOGUPabd8,176\n4Fa5YPKxwRU,181\nYTdTD0TbEp4,130\nGJleW4TCQM0,179\nVILmrL5jP7s,104\nvlK8CMKzWUY,212\no6tz9pga4H4,117\n15MbDpZad74,162\nvmWm02fUJ-o,211\nvwrqj6aqJAw,109\nWCB6zM_9DQU,101\nSiY9kPYOZuM,131\nENEIHMJjims,179\ntMB7LgnO2Wo,112\nPku1UxtmkLM,82\n9EFxRx8EbDk,105\nNdaWQm_UAF0,129\nN7itFdNE2Qw,128\nvJhO79OGi20,146\nwyQmO-LFF4M,157\nsF-j-GhV6xw,207\now3Pf0LSXwc,107\nI3akC_INsFc,175\nfrV4tvni8H0,103\nCMMzjgpnLGc,133\ng_HrR50Z5LM,278\nqgm_ou3TsIs,129\nUeq8bUwdm80,199\nj76FbuAQUsc,261\nqp-uFNB9jYo,245\neG2Yo0l78tM,163\nFGwgHAqBLDY,156\nU7HxeKhKgwM,167\nKb2WClrbrAc,262\nDq7TcTBsAJI,203\nfluKR9XbEjQ,121\n3Y-pMJ4IcTY,212\n5lgCxWubUnU,134\nRdpvBc4bahI,149\n4cl5cWYmvgc,187\n__7NUrkFirA,127\nh7ZUKB_zYQ0,132\nb8t5kX7k0vQ,128\njfhEIIK-jB8,250\nsgs4FFD0oH4,212\nU59aJCoJLRU,139\n1rd6owpXoC4,216\nPhQsxcbo6gk,237\n9tx1z5_iVeo,188\n5XnGKA75dtI,62\naRJXM-rYZQM,251\nMcQ2XFcPCys,140\nIg6hIs0jsjg,133\nwJROB9vIUFk,189\nVhzodI8yBUE,123\nXr9GABUefT8,149\ne2FPI_ylwJg,224\niTH2RpdXTBA,99\npy7xqlpvCIk,111\n0g32SegeaTw,100\n8D7EY0zKevM,151\nIrBymbqWH54,106\nCzbL7AJIhJI,132\nIrq818Ek0Ro,123\nTRCSLhYz9CA,134\nD2JzjzTWMxw,119\nPKKSqcq9iGU,133\nay1hpFWZQnI,123\nrUbY9uikvWc,123\nNxrAVHpoBs4,167\nPOLkdKBw3LM,96\nNL_vaHjmqC0,148\nGFpm2LR0sGQ,125\nWT6DQ_NO5zw,105\nYJV5WB1wxdk,134\nDa02cZG3NDI,113\n7qhNVDPZ-0I,208\noo7VlD66ISM,128\n9uGuf4e252w,131\nsT7Xef0oYLU,128\n1eP7huR6T3U,152\nTrvXqosqkls,289\n0k_yjEiPLoc,151\n-G7OPYUlnT0,132\nAAByjopE2GE,111\nDCF_BXNE3oM,132\nWhUvsKY-l28,103\noY31D4QSB-Y,125\n944BOVL_y_U,189\n3ge07nbMna0,113\n__zoXOgNRvk,217\nAhcxeUrWTRc,237\nk6pHxD7qB7k,97\nP3imZIQJez8,134\nG6uZp-33qcY,134\nS_lcxLCaxAw,76\nrMH3omIA15k,166\nRyQUewFDEx4,112\n2xbv4AnWS3Q,128\nsWqTiz8caoM,105\nHYWSAtLFgXg,128\nClOGZ8IiO90,172\n23uAYGDpS_I,128\nC3TAMx8Gqro,107\n0dmwDGkQJR8,96\n9lqv-q15y1c,145\nvjDxkz5LO7A,180\ngcqk1NcWIGQ,151\nMriW09XMJeo,207\nBYN41wGmP8U,98\nElkY5U7WSiA,82\n7tXcQ8BBqXs,185\nREkL4uLFnPs,166\nrC3OdZQgztY,175\nfutultLrWms,219\nAJhPYwtbCo0,158\np74VOGdtMTw,171\nsFRjPMAxn1k,155\n4kIbIjoVakQ,131\nhSBoEivF-hk,144\ndeUroRuOCwM,156\n7YpyRO7N1YI,127\nUPIr8vb7OeI,196\nYIfrX-BJbgA,99\nR07vQvbALWk,175\nq_Gp2jL-V6I,148\np4Pq9aZVV9Y,131\nTd1oEs-H3QA,218\niM0XndiNfd8,191\nWhT70B0c7TE,126\nkDTjN5dVCzg,125\nt_9GTwEOdkY,180\nO2yNsybczj4,107\nrzuN9uvnsZI,273\nqNXYR0fe1Lk,117\n0t7ZsuI05Uw,219\nBM29Ze3d_cs,229\nXrujkDtd0iY,121\nJ90JKBCDzSs,147\nBSXK08_Ivac,137\nFaX0hq8BZc8,135\nZwQuo7dY_Dw,104\nkPiMgLB7S7c,169\nqULlmr4lxb0,119\nZ_5l0p0gmvA,105\nPdmlJSk6QAk,181\naWjBDI02kSE,199\n_GjXqTtZjDg,173\nbocu5uL8siM,78\nBgCgiRitEmM,150\nVq2YQ_fXZoA,93\n_t38ENQ9jlY,134\nNohgrc3m3z4,181\ng2ElfIY2zfQ,281\n29Pg9Oo6P2w,248\nCBUtXwZNA8Y,161\nYr1quUpD0Y0,138\ng0nhEzoCkJo,134\nE-fSwxZNG-0,127\nFFnlaQlI1So,149\n-c5QAS76N_A,178\nPldJ3snU1C0,115\nScJijQn6RyI,126\nZhqHIrO4ePo,142\nIOV2-bbOHts,178\nnXait2wHOQc,184\n042B8vTl0ig,116\nsMrjeejmCpI,185\nPniQ5j9ZqQk,168\nm-3Ohq-bVFA,113\ntRtfFFE-bzU,160\n6F_Wp3IlryI,127\nAbb6BQgz0N4,201\nCtBWf0Oq0bQ,129\nw5oWgKtku3Q,133\njUYCTHwAQvw,133\nljMuEDlInLo,73\nTirgk-Is0QY,154\nvi9m0JRo71I,154\nhR4oc1us1aU,111\nsuYDvQwikn4,190\nfAaVf_wel0c,135\ntxybV-1ao_Y,183\n6qXs7Yp75M8,172\n0pUMzDEV-DE,133\n6pUt6xlMorQ,171\nrelfjwjhscE,102\nT4WNCHc_MmQ,181\n-H6l6-_elF0,164\nLJye4-HVyCU,192\n14drcivv0CE,160\nHh823sEeCL8,189\n1wWk7qN62dI,171\nUpYME9Wz8Xc,174\n_HgOQNBkVvY,100\nkQosO29X9Bo,131\nRkaM5GL1LTc,131\n6-s02HyO3XA,115\nQfSL-PSHTkQ,133\n2HuQzKat6hU,192\n4lWui2b5GBI,163\nsxKLANwXzzg,131\n5nWugkh7A5U,176\n_XuDmoP5scY,172\nhgLkypdC6wo,125\nCw7Ed1B3g18,252\nNZuXsiyF5Bk,271\no561o4AQdXQ,145\nr5ia1XDzIAU,111\ns039YJGaP-Y,185\nC7vyta1sCfU,178\nZ1DO7_hHqbw,201\n_Hxk9-WNdGQ,135\nxaIlgOMjspo,125\nVC0PPBrYBco,152\nnfQr0dDL8jg,120\nDRTuzzBTrGs,130\nnloEs-bbjXM,162\nLN8iHxuFSts,157\nVCJrgPb3y80,205\nqoXJJin1e7g,167\nerE6UlOi3E0,125\nsOBIrjgDZr4,178\nzXR_4li9ZnA,139\nvyb2Imfghkg,180\nNirTc-GvKLk,61\nwuzbUsy6snc,128\n4bT5OwL1UnY,139\nvEaLVMOwHn4,103\nThBbbiT_cCU,152\nfo0KBFhChFU,183\n2ADaXnuG-YM,162\n1TY9TWCU1z8,218\nXAIeh0YarFs,113\nbPZwO18R-1Q,172\n4hA7ILi4l68,144\nkLjET9nE2dQ,88\nLjSeILLCe2M,129\n-5twCD8tAMc,125\niN0ZnG7yo6o,134\noAjKMLcDlfc,134\n4JjOrujlaLg,154\nrwr1IzFzjqA,131\nxC3PGTTjX7E,133\n2eltEasOEig,150\nNjUtH1NBFyY,144\n_xUiCNlDeJk,161\nedhJGqAjG7s,122\n55uK9Lg3TaY,133\nDECG3af2qh8,70\nyId_D0rOn8Y,197\nxNNd9Uc9J_8,134\nQXruKKf3my4,134\n5QMsr3UxzPk,125\n0zuW4KMG7XQ,147\nAKXKkeLQWac,117\nWHcarLLrz9Y,134\nu4NTe-ZIrGs,201\ntuusFUTcCO8,133\nirxaBbMXsUk,132\nc3vmsUcknhY,131\n8mDtsn0yrsA,119\npxQ07GfWFjs,162\nvi8Kaoib33Y,124\nNpjcjrKoeBs,147\njG7W6jwCSd0,126\nW2UAnJuDL0A,213\nWDAIccQnnV8,104\nmsWWI02CG-o,89\nJivWELi2rFw,113\nXMKKYshEbzM,171\nAX-qpuOuDVg,105\nI8yvHZ7de2k,135\npWfB7jrCgxk,133\nLoBAmFanDhY,105\nn_z0TcZkPzg,131\nAbV04B_yV34,281\n21Vg94SOqk0,103\nvqGsQEGHl0w,148\nW9Rb6wHuQXU,199\nALWV_EA6x8I,160\nLJvCFAHRAFI,146\nANigqhwwafs,159\n0cQThjQfEEc,136\nZKgJtlJDPcc,131\nyKw8Cw13NmY,142\nr76peMNNiyw,66\n2UuM47BOqNA,178\nTllGibabkYg,242\nFC9AZFwoLVg,146\nkyfMjDlcisQ,129\naSQrrou9CbU,152\n-r_-EnupRXo,126\nNxnafGrvcqU,126\nZxw1Z6pzKvA,166\nsVc3ln7vaig,164\nB4D0g5tfp7A,93\nOunFjTXpbMY,89\naKE0S2gCOfc,176\nriSEerXD6nE,130\nrd1w9BCiy1M,271\nR5wXxo6yIU4,134\nsyjdYGc2A20,131\n_1tCmEtAbnw,127\njL6rrLaw6rc,171\nl18i2Kxo8o4,107\nLAajBhbC5Y8,107\nlYu_8OE3sCE,132\nMcv-560wn_s,178\n9FA_bAXW-Y8,106\n-iqoJicDe48,144\nvaJ2yQC_ktY,279\n4-BWFsE_TQE,217\nJPbZNEly1N0,197\nGlrYbmdZk24,161\n1ZJEtM585x0,65\n-wwDqsmUkxQ,198\n5XQqslDEoeI,201\nTxy4-5uYN0M,172\nWhsSP-hValQ,82\nD7gk8nagjHU,106\nn3tXVrGw3kY,133\nbgZWbi1o8bY,176\nGOYpqqTsO-k,232\nIzp0m24gYRU,147\nuxj3cKArYDI,247\nHH37JTBpi2A,197\nGfpVMjrhYQg,173\ntdzX5AKWiDw,191\nuIsdG0ydS5o,233\nTe32eYR3jo4,181\nES20xt2nU10,149\nRd_gE_G9R1k,134\nVHj96nAjRn0,110\ni23d4uqAG80,129\nAcSDeQhGGFM,208\nb4TJqx34ynE,145\nBIg5_09Tcf8,134\nTC41JxKq_xQ,139\n1eoKvx5X9JQ,133\n8fizKw4z9fI,172\nO3TmokjuQR0,217\nurbo6F_qD5k,162\nNYRHTYWWiGU,150\nazRJpVsJ7AM,138\n22Xiae6LXdU,185\nIy2kMtJa2q8,223\nWC7TpzxGktk,122\n0gouIFYgm2k,180\nGwLec89XpYs,175\n2NA_wZ2MWBc,133\nhq4lKhTXzXQ,127\n8tLhtdDVqzg,185\nfn9gU50qXvU,164\n5CO6DsmrIDw,123\ny41KY83U1VQ,217\nEodzQpkDFYo,125\n3dJLDhRGBpE,232\npmAZlEkONa0,187\nnxc6kwBYFSM,133\nSTfoetR9Su8,133\nDLzp0YkZnRc,130\nfrwyMLRko_8,119\nfin0EY5-n_s,105\nx24Olya2NLk,197\npikL2Z9sykc,131\n32OSGQmjP1Y,133\n2oFTDbVMd18,212\nnEAgLZRGV98,244\noDjuY9KCsI8,187\nhOH-oOCfsX4,174\nXvnWjkHgWEw,97\nrglfoXHFty8,171\nkcrHhDoUS1k,179\nKbb4g4m68sc,130\nPW20LbwAmng,213\n4RPigjaVctQ,200\n6R2Uu5x6Imo,182\nY0IXtktHTgk,116\nT0gaeDWYHr4,167\nulJXiB5i_q0,274\nVbAh3UbaGHQ,93\nSqFAf6aGTtw,60\nuAroGB_YCmw,132\n7uOhTRONUbY,172\nF0xKJcGIQZM,70\nj4onAJ-3FAM,85\nngdsRt31sIc,119\nwBHZhBnXRew,180\ngTkzaR0pGgE,152\nV-uaIme1eqw,138\nabyQFrI-BTE,186\ntbty8Ao7_IE,112\nAyYlJ6YQp3I,92\nsWjVe9dMRHU,225\nbwKwR3hV0zA,224\ntfUt-J2GCmA,214\ndXk2wGeBUHE,181\nk9utcDoerr0,186\naQ8UQmMypws,147\nnLlnq5zJKvo,153\nusoH9GnfJrA,131\nRWfQwm_BgZY,190\nHFAGAjkDaOU,131\n-cdk5mhKuWc,152\nF0VmzZy-AF4,203\n09zP4iK6QuI,122\nAqV77k80Iw0,206\nHZQlFhnFVjg,177\n-jg0_iXfTE4,164\nX0uMMVqQgeY,226\nHummNgSGn8k,130\nZbmc8C3GaC8,123\ne-NMI6o5ynk,66\n0yngsYrBCLg,67\nsg39yDRzklg,127\nuZ_X4w_9lgk,99\nG_ee7q8w-PU,86\nsJALMf17QBg,183\nmxIe3BjQYq4,134\nP0yhCqbwnsU,120\nymoeXOQLtGY,86\nd47y-Jm4m_o,140\nVmT0mZH5ivo,252\ngIZ64_sZbCY,146\n4SDOcUPE1GI,132\nTBLYqmHXPk8,142\nS4WqfcnVT2g,212\nVJECUbUadpg,191\nxlTl5F96ZVo,154\nZoWhq3dNFn0,182\nXq4HZGi38qo,137\nuYV3p1yRHyg,137\nFETaRGJH_JE,179\n12iewuXNhbE,123\nUvDzmAFiUj8,174\ns8gCo-QjtGk,154\n9xp2WW4VPnI,213\nmfgrntgrWTw,187\nze8D_5hdmTE,185\nLUjMzKQtq8U,182\nA-Ckh0slywY,184\nrRUVmTXpPyg,170\nmsSsPzKVzW0,120\n6mooNp4aWBo,118\n0iUKZskQEso,181\n0y5KiKKCD7A,197\nEd8T-GzBcIY,103\nUxVY9CTaNNQ,93\n9J_YOz9jvG4,136\nPWihKQVb_aY,91\nvAO2D0riCDg,197\nffmSFNEG6pM,187\n8b1jfsKFu2w,132\nvcURIKX8710,126\nJHvgBh9ZC3I,255\naXYTDZr_rmU,142\nAdmsyTzM7YY,80\nYlbjPR7t1IU,125\nGDpzofT_Pdk,181\nT1IyMJOC0JM,195\nBf0HvoLXWdU,253\nQwr539L6kCI,84\nDX1p8C_FuxU,156\n9H8h3YZTsmg,190\nN25MiYpmMVw,124\nwX06J0jh7BU,234\nPEg46xyJNPw,183\nZc61Xb1A3R8,224\nYqkDor9GqqE,202\nbbnkw5RyiCI,158\nWdS4ZMa6tXM,184\ndlzBcCsKQXY,66\npLqoZtmyxxk,137\nQMBLWE0pu8U,171\nYduLKKYfgSk,179\n2sX5DMSCipI,166\n4kmeixKc9yk,184\nLJK2Ox4UlM0,219\nsa2LecdGh5Q,122\ndvIzAdqrb4U,132\nKDXK5R3f01I,134\nx4L81QLGYuM,221\nMM1no56lIjw,133\np3zb4fwFd3E,208\nTgujxmrRUlw,131\nFSXijk37oNs,152\nbOge5t77CLw,272\ns7ougTo-pGg,162\nfnV93ymcOME,113\n-1eKufUP5XQ,133\nSW5_v_8r9VA,134\nDed2FG1gA0c,135\nZauzaj2bpvM,113\n_BK3aiBX43Q,207\nlLScgb8ZP_8,83\nXAVgIM5X42w,133\nkFuzbEylajA,141\ntbWLF2J10xY,223\ndHXVvD4FFas,220\n_vwllSx_Ew8,133\npppK-fl9a2E,152\n4EWgdeVQzEk,159\nH6XWqMB-Ow8,126\n-2QFIXEHnOY,102\nbxs77K1DkD0,212\nUkPkaNawTUw,86\nXDnXI6KXoeg,134\nKTxT13DzNsc,175\nh36L-NdLDhI,165\nE2wr_tRqNZQ,131\nmKLjOr5M5zg,161\nNQgAVrZRz3o,118\nIBTpVVTZJ5c,124\nJyEYiaZW3Ok,172\nb1MxW8nf_lU,87\nfV-wb1gZOyo,92\n8DrF70mcr38,149\n2VgamrBe_vM,128\nL9x5p-s4zKs,130\n9LvgzVmAFxo,96\nqIs2PMXvAmQ,138\ntG2qsoC_-hs,127\nbvEJjjYbgtk,142\n0_UCPY-mSZU,165\nTeSzBaedb2Y,172\nBJWR0io_SuE,180\nqG0W2UhUKRc,108\nZLjp7ahdbWc,124\nCYTRQAy2o4E,181\ny2_oXPF2b3Y,161\nXeGGNf_-nYM,159\nv04j4-SBv9M,95\nFQoR9fu-CIE,183\nh5nhyFFSweU,202\n7wniAznxp08,107\n6nZJPF_VgIQ,176\n6ldKc6yXTyg,140\n_mPOfQw2fmY,175\nhsK4vleN-fE,178\nkUMB4-8MTio,82\nWQwgtpaIVkE,123\nbmYXbieirM4,166\n9Ou3nVQc4V8,157\nCKIh_vKo7Fg,193\njirWCRbgK8E,132\n7eYTzvoxmk4,174\nuta8BACjLNk,147\nnDrjVVyUjZo,179\n-7Sow81yi24,131\nIfNo8NJyy8U,162\nBrWwVhnztcg,112\nQMmxxD7h5-Y,156\nNvKYxRmWYEs,174\n5ZT2Mc8TEIY,185\nw-6lVMklaKY,137\nWxIgfDZXS4k,160\nmwMmZ8dtWNM,210\nteoyewW1bUY,177\n4WdyyPhh4-k,158\nut_z2-96X0o,127\neFs__fovQyk,164\nIii55E60gfg,129\n2CY78EjBHIY,173\nJd0XiJie7Lo,79\nokdTt3VfJ6s,117\npHrp2OM19t4,180\nE-MOzwWySaQ,208\nbCD25qkPSwQ,117\najm_632U-Ac,101\nWCaRP0aT9CU,54\n39Bnk6VU53Y,172\nup79gU3V8sk,121\n2bdQKmp6hc0,141\nR2DhcfXooy8,179\n60V3JFUPvIE,176\nZF_2tUzPnvw,154\n4_mFP5qAVqM,124\nXYD3ysriZ3k,108\n5lCObNv4T5M,264\nGbvml-bH5Uc,147\nqPVePtS52Gc,183\n32Fz-BBjVXs,94\nGfBsuOuUdoI,104\ncfB1QaweRKU,136\nANXSdv-KaCQ,172\n1Y11eIVNgQA,133\nPPhGRj0W8e4,177\nbCAXuyqUJzs,116\n9hMrzEWpZM0,162\nYWJMmQUGP00,112\nnf1DA90KAIY,177\nenNm82zd1Ho,177\nVh4rJorGhHQ,178\nHYzSQZdBWVQ,95\nFgIgeE7C6bU,178\nE6AQQLVI68g,177\n5GZbCRzKoTQ,179\nrX6oUNKUbI8,176\nTgfJD9geSac,191\nVVvKuI8oK3c,105\ntJPokP3FVl8,152\nR_qiBsGsQfI,179\ngDOSJkcKPbo,123\nVXDHzJ1LYRs,164\nic7g820jOqI,114\ng3FFfmWvyAk,115\nOcS7veELZ0c,124\ndkAv65bo8a8,172\n193KvPnLO4I,133\n-xZKHX91z9I,148\nvF-tPvPAqhQ,142\n-45cXUSpOw8,139\n0E1TIcc29vw,62\njmC2y7EsXqk,69\nGV_pMBUT-24,121\nUBmxdy6C4JI,177\n4us4K3KLRM0,130\no0HHjpIa8fw,88\nTYiEofdhOgQ,158\nDJZqFXSHyvc,176\n_8hB8umrGlo,145\nrYHCZi-tmTE,147\n7OIn2KFDWjM,114\nuPS3iKFXKR4,178\nIXSNWvdkkic,173\n-MNpOKICOx8,161\nzeV1-Ito9HM,101\n0IyuK069I-w,185\nOliOEVSIsmY,163\nwySz6ysIDhs,130\nXBz2wuGU9Cs,132\nBo-2-sJi7Uk,153\nwHqQzF4JXdE,178\nxkjfSZtHBXc,169\ng1jO4_HQQX4,156\nJ66HeAFlMV0,172\nlPYFkRoFM-A,173\nQwkW-Rbo3kE,117\nnqK7Kk3ZKvY,128\nXtduKM28ohU,160\n8AXEzcuMQp4,174\n_qbp2nGRp1Q,132\nY8eSWYGZXe0,211\nvOfFVhSiwiA,172\ns_7PfocHTmc,174\nwx-HWqbwssg,150\nMsKaN_QrVT8,126\n13UIqhovLmI,130\n_t1yxHW97xE,144\n6-_tIPShuwQ,176\nhfCRzaZuY6s,165\n9xp2F5kPbRQ,117\nvlg5VPKbGQg,90\nAe3HbC1X-_A,144\n5AstACoPo9w,114\n4DD8QRsms1s,179\niPgcg3DVoUY,133\n_4juqo20ABE,178\nan8Z9J29zWo,154\naHQQs4D3krU,136\nxcfYbwSXFVw,221\nAoWXSOx502Q,100\n-E0UUIoS5xU,127\nadjuOPzkpw4,192\nqqZPej42OkE,84\nI5ohJ4BBHzo,136\nO-Odu2P8X1M,179\nCFOC-_DYKXk,151\nOt5G0Nh6EyY,126\nCh1DsDy-osI,167\nyzwheD19-PQ,174\nDTexn9N2HMI,182\nOdJlNbw8ru4,119\nRDBywHkU6Wg,183\nPkCxda_9xRc,190\n2X8O8PN7GOQ,182\nopyh8AAgisI,137\n_x3KSXMXzwM,130\nlEykI65QtSQ,108\nt9SNzY1Hq1k,178\n2rFXR3_DeMU,114\n95N85bGdzw4,163\nYSrOLez2GbE,87\ndQNrOoc3NTA,157\nQRwiLuz2olI,147\nkJEvR6GEb7U,152\nuEMTQYe1ro0,266\nfuwfQJrMgLI,161\njKIG_-544gY,177\ntOcnYAE2i4Q,121\nrW59kLTHdBE,130\nOv2ErYiFemg,142\nq30Pl1M6_DE,138\nZG60oroE7AI,86\ntRRQX1SXcMM,118\nehxd3S2foDg,180\nKgbASFn2Pv8,161\nsLLp4bO6dDI,188\nFk69RQS7D8Y,126\nmnXN-mRFoPI,175\nRN-F41EZQK0,118\nbBjLUZgx4WA,173\nQHcl5XE4XuM,138\nB9pucpn_NOE,156\nS04wIhoGYQY,197\nmBdFXXV9hwY,154\ntjpRBPJGPjY,170\n3FeBwyb5g0U,139\nq8-xQspXFag,181\naDJgv1iARPg,122\nnkuKrymtuCg,111\nVRN37FGgEic,162\nQUI-9FAwA8w,125\ncmJRHlOcTVw,174\nV0qYlLqMPNI,176\n2ZyxEFqlA1Y,170\nIC21keB1yaM,157\nE7AA7Qv9LkM,154\nJCo3QW-S310,166\nSb8ufI6z0zM,153\neWP8JMcy3O0,152\nhQIL99lP484,135\nb3IInexeGWE,80\nE67jk75CRWM,179\n5dE-JjnKznQ,103\nT535zq4Kpt8,86\nfRhJPuDCXRk,144\n_aj999HtbtE,177\nxhgWGU6cQ00,91\nh9HV76Jl2WE,124\nTAK8DeL_w00,176\np9XIPtizl3s,147\nuPcTCWfQbzQ,113\nf4LEgmt0roE,111\nhjuvr5uGA4s,139\n4JE04So6OqU,200\nca3ejioEyiE,70\nNRBLTtDkQXU,128\nof7H9H_aPxg,121\nHwaqZA54GTk,179\nXiXa1C9FECU,98\nraGaJdEHjEI,127\nC-FH-TOuFpQ,172\n1EcAcWe08NU,193\ndfofju459FA,110\nJX2gQZj3-NI,169\nWQXNChLdnvI,179\nXocJyNxHsW0,180\n3vjTjf7m3Bs,177\nBg17-zWqpkU,179\nhN-1U-g15NU,179\n9qorxa6iMm4,123\n5_j3NrcDiS4,174\nEAKyvP2Rnqc,181\nqo1cSaFhPiQ,91\nukzIFp4Kj90,87\nVAaeEoQq6jY,122\ndfWdmxCHwfc,212\nYDBqQMQB_ls,147\ncWKL1gFCS54,165\no71CfblYCqI,120\nb58Zg_TRqn0,173\nwdlhhgAT1EU,132\ntImxhYu2PG8,74\nhTzUYt__ogY,159\nVCLJGenGyB4,180\nVflasoWmuoA,130\nn59mG9_X35Q,135\nSrqVUFbk_sE,178\nfuXPZqYtnjo,121\nhdQOL2aFufE,150\nsvAY8Rg8HFY,101\nBnnkcdH5v14,150\nAMHSm2gTUmA,175\nkbVtjc-ygTM,114\nusImFOQQEIg,94\nZJDgkjbsitw,164\nJdWS7JkUno8,176\nUUDv-oUehMU,134\nhM1OunX-QBg,135\nQGRAdMGb5tw,179\nfFE8_U07a5I,127\neZHlWaIYjNE,193\nM3Jts1DPcWk,127\nWm_7niZcI1s,107\nqFvJloqBYTQ,164\nB2zzhcU9f9U,170\nieVPPV5S0Ps,136\nwJeeueogQQ4,196\nZKfVrsrm_ac,91\nGZxal1kvCfY,105\nnSCUWDt53fw,170\nXQO-ftv4ePQ,145\n99IsS-uXJzQ,93\nOQjvys5lLk4,148\nCEO9YAsxMfI,102\ncorlGzKJqAc,155\nfmMPmWO6b4E,165\nUK0wGi3JHrY,65\nMMxE41xM9ic,175\nitIt0nSWDGI,46\nf4gmgTebHog,187\nYihADAPOCWU,67\nmt6D8QQ-nIY,165\n0pRYoClF9w4,137\nJoh9cLv0bp4,148\n-yPwW5V4mhI,121\nwTGRsKLqkGM,178\nl7X3t5SOcFY,148\nQS-7heS_70c,132\n3k7E9zkTPLA,156\nbFfnDQ3bDfA,116\nWIZlfA5kV7Q,76\nMIZSWO65BXQ,145\n6WX8Ct4xMvE,181\nB1uklxoaP24,179\nRPXI3xQ2aus,148\nMvIqR1cMbv0,144\noKW6UxOdICg,145\ns0rlNw_cXqI,146\nEeQ_0rq-z1M,167\nPj5ds2Q_tJg,181\nDpQHj1R8kXk,172\nPq9kAmZ3X_k,178\naVUhnzQmx_A,166\naB0ABzNHvAE,151\nAEYh9Sh6kk8,138\n5KgptmAR3KM,152\nFhXn_kxlWno,119\n0qzhcuRwBnY,112\nrMczYrlPwaw,105\nlh8UIXq5ELc,177\n32iBCneCYcI,168\nVNLN5xyxwAY,188\npfPBf3mKwFc,139\nzkX8cKUFOvk,131\nYptUTTJjUVs,131\n81XTZOlNHEU,137\nxM4-RnBk-9Y,177\nFNKYIVZOjqs,126\nTXRHf6Hzg0g,127\npdmo-_KXg0Y,146\nHAal8jdk5gk,213\ngsG8sEK2md8,192\nqQJmr9kI9uw,181\nio-hA6pxffU,178\nzm44ZmISCac,175\ndZmGh0bXqqw,179\nfwkB6wAxNVM,127\nCoQM9K_r3kY,166\nV11YeYfaxv0,159\ncNMRDmf3000,89\nmfP8p7raf0s,154\nHR2-PHuh3W8,128\n5ZUgU9CsjDc,104\n9C0B94fFZkQ,157\nDvMB2pgYRMM,172\nVcnAtRLJS84,47\nWFdOIU2jKpo,156\nZMlGZcr95To,150\nkZz5k_xsG0Q,134\nway2bfS3z1M,138\nTktPJgdwMtQ,178\nZNo6GHJYrFc,178\nHVlrXQ3qWqo,176\npf0erXl4pwQ,178\nN45Gbn2AtWk,71\n5N86yJbOjYM,130\n_CuZqXrhEZI,179\npfOJfhbqJhY,131\nW8tB9ZTiPpw,62\n1WlF1nxQKgw,82\nHtp6crkePuw,163\nKXXwH7C3UjE,169\n7dtQiqaxf_o,158\napasYYh6nEA,152\nra9UQb-OVqQ,80\n8M0uWmbBrCc,177\nodvIh7iwK2E,184\nSZ3oe7dJdMc,233\nvn8YIDxEGrw,219\n-2KG4lLGEl0,119\nRwN3A9iBARI,184\nCyetT8hwwtk,125\nKOBGjFHXnqY,155\nFBpzRIzISeY,62\nYauDSh8CfwI,178\nV5hfxgrLuoU,79\niz3ETniN1NI,81\nwAzEOzfIX_0,167\nsqZ6ZrVIemM,101\nKSZN8iThGZ8,118\n2rJqM-hodGQ,169\n8zMlPNdRRLY,162\nwoLbaFLoJI8,155\nfuyK26nKaPw,111\naEfAFo99jEs,123\nOSeQk_f4hSY,178\nPHJisUS7KSg,214\nPPl4KzH-bGc,87\nY6jBV4wDoO4,210\njDD8IQgUPEU,154\nKaLpXs1SDWo,134\nKw6gubNxWQ4,113\n-Koj9hvcBMk,105\nXkYj78aDy2I,178\nKKsVK5R9q80,144\nGGVL7N6Wz8I,179\ncUT0WQ9cTrg,175\n0YOmyGX2kmQ,70\nvagva7xKyE8,103\nv4X6u53WL0U,158\nq_y6O1yflZI,158\nrezZBgaJGoM,120\n3_2F9m4Rvw4,132\n6bxX5ZV1qn0,158\n5QEWc2zmxGE,112\nSe38Z08pYS0,118\n_eyLdmCxtPo,177\ngOw5myC1PBI,178\n9D5WsQNIAcE,117\nSormU7hbgk0,178\nGrWc2UKDo-s,174\nS989EXPoZKs,158\nCeE4xdFmuVs,114\nVVlECM2KyYg,73\n9Eont_yEGZs,56\nxKrzCRKABjY,65\nwrRy2TR4WtM,108\nVM8ViJw7uNs,188\naDZSH05DM_c,179\nvKcEalTIwfQ,106\nNbSduHWUQDc,155\nLdRoFo6JuNs,157\n-iK4M_EFvjc,131\nZQfZtwole3U,111\n2MFlcONJD-A,158\nL6ayQbTmoxg,183\nWShQx7lNPi4,171\nEiYxgC78ScI,148\nBuN4WOVbk7s,99\nQrj9qKZCuCw,153\nylvh800i85I,165\niP7_QcV9Q9s,154\nuB6JMgU50J0,157\nogW6YDmEb1M,146\nlcIuJs1vHrg,174\ndh6yBmJDLpQ,124\nsLKnt2jBax4,87\nf9Wq05WVXiQ,167\nc7-u-fyUSkM,108\nV4rzoRzqmyc,150\nlFet5R_g-vY,146\nxchco5BLMQU,180\necRAEoKp51M,155\nFkjBXGnq8Jk,174\nuJ_dVRo08Sc,179\nv7QfNBfZT3w,149\n2DdCmT_j5nE,193\ne1FWoMLjAU0,99\n5Ackdv3pgmU,122\nKh60xjnuAhA,132\nBTeAQ_QLObc,148\npmU6-1I7eyQ,191\nUkF508FI9ws,104\niI5M8zwvki0,164\n_eHwoQ4VQ1o,134\nENC7ueK93Ow,152\nmBAPx0F4e4k,140\n-a4N0JuAW8A,120\nKS1iOmeMGEU,164\n5c3tOFFEcU4,172\nMa_h1r7VTME,150\ne1BdvP4zenI,154\nzgrvS0PJDrA,137\nbBHFfXCAPLc,132\nry9yNbMVeMQ,149\nhQm4WGUJtQo,114\ndyXlsD7Gx0Y,151\nki3zzZ-GsGI,176\nI3XgtCzF5UY,137\nJzr8lXSNRA8,151\nptAdtShJa_0,178\nbpNxVXA5dcQ,143\nB493yqCgpZQ,180\nUeeK-Fgup9w,182\nqyZXW5Md1HM,165\nObCiRECeCdM,158\nvkXY0EqahbY,94\nECDKjStq8Eg,161\nVonhME1FiMk,154\ntuh3yZXagYE,170\nXu0QBBxHZWs,166\nQN8ln3Hx1mc,153\nXRKrwa_--2U,173\nPm_7ga5bxeI,134\nbnLhMGzgfSM,169\nctDyR3Nosis,129\n3ghKgAcPBC8,124\nAutuCkT54KI,176\n8qWfNcUZoW8,93\n-vNo9qyUHho,152\n3OFda9AT-U4,107\n8tdYFT9BIuE,148\nrDpyBEorPeY,181\niiYX4JT6C_w,179\njTz_VNAGqog,157\nLKrcDYvwV1Q,143\nOF_frDHo_nw,155\nMWAMJWYNpK8,191\nj2ZsEQ4Fr4c,101\nfZMKMakjV_A,99\nHyY-bOuj9SY,120\nBhHv3Yxcuro,178\n8wx1XlXs4Ss,154\n3HMU2k7i59M,200\nDooTtUcpKM4,97\nXQEr5FlhFDc,175\nWeSHSxMfC0A,152\n8z4QVBaCAJM,178\nSUVN09kOsAo,98\nelcYyXvJF7U,152\nqMMl8NYzcNQ,198\nTjMQwe-R_5Y,169\ndtgOzzBMl2o,135\nArGWpUHkEmc,179\nYpDpOphD1zo,195\nKusz_-SyLfE,179\nHHc1myygH_A,131\nM89zKEGFuME,173\nGCc99Gh-IEM,138\nGGK2S2wy9sA,148\n0LwM6-xXVQU,174\nfLFf012Auvc,160\niAzMFB3QaBk,155\nmTYe5PvlRno,135\npUtBYdlwUNA,119\nhwb1MK66new,130\nSWrq6xYYIbs,145\nYHirkSmJcEU,159\nuB-53DTWD3k,105\nk5fJmkv02is,184\nieoN6CC-9ns,178\n5U72xvlbn-k,55\nRjyCXfloRJk,126\nnlJqcYb65o0,178\nadatkf9XY44,115\nIT236O8f-J8,173\ndluHLk1Hm64,144\nLDmKhGcB0Xs,175\ntD3vc9KZ9lQ,137\nPdzjDn5zVXo,176\nKmuxPl7RkK4,179\nSV6R0ym_s1M,133\nEXwr6U_YypE,158\nD8Cra7i2kGc,179\nOlt04UetqMA,124\ngQO9bgOLhmg,154\nUA1QG3_VoQ4,109\napJLTO5T430,104\nq1SFvQhjK5I,132\n5d1P50L28LU,168\neYrt5n8DA2M,177\n5WT1QRZ2z6A,126\nZQ0JJpvMq-g,153\neT4bhNABlYM,83\nkzxSZ5zCfXs,147\nSD0eJL4D6q0,159\n_9qsxe5kHdo,155\nfNjMYPeG8IU,128\n26nqXIUqVhE,165\nHKJOcRnkRQ4,177\nIvAjNuhubIM,145\n6qxQ2l1DC6Y,170\nRsd5rA1MJSw,129\nTHuOIvlbIjM,179\nRZdQIbRXNCU,137\n5kQCpsPnnew,183\ntbMeRyWgdW4,136\nhl1z_vp3kXg,123\n2jHKPubCPDY,173\n-U9v7Nz6hOs,167\np_jspptikh8,100\nGa9WsLD5LV4,170\nKk3XhT9UJAM,180\n74Od5-Fmf60,153\nKNwhBAOLCXQ,140\nkm_nixuzb1A,135\nGAozArqKtGQ,141\njpTj6qTyIwY,177\n4VaSyU3yfMw,90\nbxxHPYFtbE4,81\nY8ML1TO5-JY,144\nP2eknXZ8aLk,137\nLBLIa7bqcfY,143\nj21idqW08wU,177\n2AoKTalyiUA,156\nyr-gQl9CKIU,193\nBKkw8FslzOI,158\nf-3Bldu8BJ4,173\n-v_2hFPseDg,135\nHGL0CEjSHog,95\nOxKXKwijH_g,106\npoU8QxFJjbo,175\nvhhiJqQBMMY,140\n6Tz9krF1K68,156\nn9hjsuaj448,165\nvyVGOQCHbTA,179\nXi3P8vUveVQ,176\n7tb3_GWTIaU,180\n5S8moDSqK0U,124\nDjypYuuAvDY,181\nN-ZFty2-G7I,127\nx5z9VZO--G4,114\nJzVCSXWeNnA,100\nHKRXTzENFa4,150\nxof2LkhAFGU,143\nI8-FxxgRACE,176\nD7tCnGstwcs,120\nRmkFsYUz4cs,165\nuqn1bgQX1lg,178\nLtjiyd-THC0,136\n7MWts8-_LUo,139\nKW7bMwCb2_4,176\nlGTsRcHaMic,122\nJV2dQauaWCU,136\nYqRwOf0XHUg,146\nwpxS1xSxUDY,167\n0_0U4bhe6ag,119\nzadI5ngwLsM,176\nbtk4Wp0RssY,115\nizLhF-Oodrg,179\nADy7gUvipWw,173\noIyXMnHWjIE,126\nPSDHvN95YgA,129\n4mMrCXPCZAA,129\nPDnA3LOm-xY,183\n6PPNd2HqmoA,179\n3TzAJdCNpZw,128\nYb9EnN_gvu0,151\nFHeC_tenzrw,156\npJImKCcPIsU,152\n3jWrsTACVn4,99\noqquLzHmH5k,134\nBtvvvXRUks8,143\nAE4RhPMAtp0,110\nfXElquKFrMo,168\nHln19l9RtWg,172\nwmXFSQdF3PM,175\n7doKgPFilPg,191\nSwOfGb9QwTc,163\nVXlMfWObFCA,61\nvnL8uiqp6_k,179\nUBOcWFBBB04,99\nxAf9G9cqQbw,179\nV2RKM83CQ_A,150\n6w5n1TfIFjk,104\nt-t8eVDckH8,220\n8QNDAaCu9dI,151\nJkC83ugjyNw,132\nrA6AZeHyw8Q,180\nYEv7cVW8hBA,144\nYzCruCXU8Xc,179\nIBdgRBvFwlM,123\nT2ph28ghuEU,221\n4pUi3hbXF2c,112\nCdppQAIYPzY,179\nXlEkeUg2z8I,118\nu_n1SEwWmYc,156\na7dRLlirThw,174\nP2qz2B9snxE,178\nvzzuOkCkHlQ,92\nnwt-V8xfwkQ,163\nduEErwP8eds,122\nzOHL9JZPELk,181\nvUzF61mtilA,199\n7-TZCEyok_o,178\n1y7cZSWu93k,131\ni_uA0oZ3xnI,180\nkYFrx0jdcoY,120\ne7uz82t68To,151\ngLzsj4U96oM,132\nIC-u2-aQXS4,159\n6x0i-FfeA44,123\n_P97eUT7NH8,171\nyaoCvjqu_co,162\nP8ZCZJpluDA,136\nkYlPBN4yMe0,173\n8j4k-10bZC0,125\n6K-d8DN3wDA,179\n5VSg6c8TKNc,178\nKarwL_yYLcY,178\nV300Gtn8NVs,177\ngNbqn47rt3M,130\nBEsaqfzc6wQ,122\nUmRkYrYgnN4,163\n8Qw1dYiaCto,79\naSajnx9QK-0,151\n7ZUVMim8ebM,159\nabXL2HrEjyE,143\nwxiEJrmUlL0,158\nE1e4f8YdkLg,141\nqlk05SwGu10,174\nswEgflM5Ol4,198\ncfB9siDjpLk,103\nW6Y6riI56Dg,179\n_j0onVyO18I,153\n12KcnPMV3OM,83\nNpoB6-TCGWw,165\nSW-1sk_U8vU,205\nZfyjpKP8zDk,95\n5asGTRoIqCw,77\nCVxgFZixwlg,180\nJxbvOwAB-xI,144\nyDxNlPIFWHM,171\nuuWIaDATbnE,136\nYfqg-PxRCD8,179\n1DgOAPBMXws,96\nraDWhK7iSqU,155\nvVaBlzQzmjQ,132\n1AhrD2-cvrw,171\nZYaLloEakCg,132\n5c1qYWHkPEc,61\nNufzJ2YVJB4,179\nVGhUlUHKv7s,183\nzaHU1FW_RZk,132\nJdZHXwqDXB4,163\nTctmuish8xI,124\nrZpeepxXh7I,80\nGCSbGFMWzC4,170\nipb0Bfg_FTs,142\ncRZ7bc3nqwA,185\nuKtbfkmIT-A,155\nGeLDjQIIkdI,179\nuX7CAoxBNOU,164\n2onL0hkBVJc,153\nKdOgihoZjZY,158\nbI1MOyt8dXE,165\nehyYdjaZnoA,177\nkZCgrTDVRbI,146\n7014C_6ABAg,192\nxuhl1rceZdE,167\nEVvEtTyJYCo,169\nONBLhIZCtQU,189\nv5nIRiA5W-E,106\n088CLxgnr8w,146\nlCcWPDXqKi0,82\n4q5rmjaO9Cw,175\nNgLepPDh5tY,140\nf8-6UgJ6dSo,128\n6xYx1k3O8X8,159\nz4NqFwQCHQg,172\nHYog4UvM1zI,177\nn44APWaJZ58,104\nyg42xdVf9mM,109\n8lsl4cNrpzI,132\nCDQw1Ez9yOs,171\nP1R_JOEIMS4,146\nYaUe_zBgQ9I,140\nbwnrdj6zZfQ,179\ndUbNFv_h6Kc,119\nByPtVBI4_MI,112\n96CVkRhfoKU,179\nMrhV0mA-bWg,204\n6vAYIYN2Iac,220\nh6usdPpiqho,109\nNa3loD5Xpew,181\nWThmGeHf4hA,64\nHv3mUXCo46M,164\nORQ7CGUilMs,134\nVIxumCmygzw,116\n7ZTCXQOU5oM,146\ndY9zZS6BNkU,179\nbY-jTccddQo,100\nhvuQCnADQRM,108\nXjYQd3hE6xI,179\nP2NiGznbIcI,102\ngfXns_cU8I8,112\nV32SkmBB1KU,224\nyRlyvNmVWK0,181\n2heRUn56wrg,79\ndTQORe5M1tY,149\nSqQmfQfAzzg,103\n13wgcygv86Q,69\nQnX-Xgbi37I,167\nZT0-DtdC93w,141\nOyziGbUQBIc,146\nH_sYBmKxmvs,50\natQYOl5KL-o,148\nvEj9ZwIzk44,174\nhoe24aSvLtw,95\nvXXDqjLe4Ls,185\n6CBfg5X9Z3Y,108\n4iLKU2WRo4k,173\n00I2Ofraf4A,156\njmwfCk8MBhk,132\neDPbu2vNrWk,160\neU4-wIieuWU,171\nz3H-ozBnwQ4,113\nHOY92xiGY2M,178\nSJ1_epc6q2E,108\niQrYqaPeMlc,208\nxerkgvDm4Ig,147\nTc7e-4kbDto,115\nLrsnIyCjvB8,175\nCRPf4U_MRVw,179\njCh_3SFr7M4,90\n5lPGiKG9VI8,87\nJx-I8OfW0GI,113\n4qdHRWWX2gM,178\nKblaujDjQ4g,222\n44zsdC87LJs,175\nAnJm-acXQCo,171\njzhXtCHYrAM,168\nZIdKsGWToLo,42\njNIMe9C25BY,151\njJnJFGaJwV8,142\nvJ6XJtlqqZo,179\nxPwAEt1Ajmk,126\nFKeJtRtug4Q,187\n3WAg9OI2wn8,140\npLra48c-SuA,93\n4E55_uKSR40,131\n-05NPfkubKo,123\nkZcr7bw6k_k,110\n94J4AzRTLE8,178\nI-6XHJFUBDI,207\nkL8e9CEgm6A,153\nkRuKg_khl8Q,149\nJ96X6ei7LRE,187\nbGXeYGkiQDo,179\nFllAsMCrdJE,172\nUQmQ7d-wXQE,90\nZxlo0xmD51Y,105\nGVGyBNIfPL4,128\nBcRrXppXfEU,179\nSzVC7ErC8RY,175\nmlkWgiyQ-8g,178\n3uUUeNqdMMU,119\nUiHAMypGBPo,180\n0lCR_c5Su1M,153\nS0IfbNVCoCE,183\nqHA5R-Q1Od8,127\nZ2eTW8qZBtk,274\n9gEtABdjiiI,128\n1tryt4ddnWw,178\nJbuGOroCWaI,167\n8IJEqeoPPs8,131\nN8QzCj1RdpU,157\nW6KRJEKYY7k,119\nQqmSUjxUg1M,119\nQvdszN3x7M4,146\nlkoWhWGcVR4,160\nCtDBcCXiE3M,170\n5H7YGAM9Na0,161\nrCLzT9M7rCE,113\nYnnxVknsLk0,146\nrgd8TC1Q09g,74\n1UXl3LGnRR4,209\na46m8g3grB8,120\nLiAiWknkwcc,131\nICRVd--TY-U,180\nYZrVYAXYyws,85\nB13fDbQ75Sk,118\noEddtexPCso,147\nv_lHiT6UVCE,129\nlkT9aqC6Tqw,116\n4KICpbB5YQY,181\nb9pr0K7SuYk,142\nfB_fwuJOx7I,131\n5UnmqCr95HI,134\nkKBsDfBDmG0,168\nEeNJbbrT8e8,162\n1rowOWuYacM,175\nBK5ad9GV4NQ,131\nf-EjBwpuVFI,199\ngsVcJ5gGsE0,106\nMZIPOu6WeGg,163\nd3HAOZbAj1Q,121\nrqKaJ4Yp_oU,117\n1eN1O1j3LcY,117\n6La5YCYlMZY,148\n9i9S12dwwKM,107\nssxqmxjrx2c,157\ncjy-8dXBljk,155\ngjODxXACjnc,165\nIeCZqVq7_pY,178\nYg1qC5VGoLw,115\ncSWMU_rISfw,127\nIMQADg1Dp9g,157\n05foBuX_brU,87\nWGxfP216OFI,177\nx0rCYl4e1Lw,171\nELAfnYfUaAI,179\n5K-YqPyi3BA,178\nm_udTXudsnM,123\n9O-NfAWrkDM,191\n-ryd97UQcrI,129\nTfGXctZRcLg,148\niLFMRsi07_I,179\nlPB6exj8Kgo,198\nv9Cq9nThaNs,179\nFr1A3ok_kfw,159\nYZ8k016_bvc,111\n5-Xw_z9dODw,202\n0vcXvLUt1E4,154\noOWl14GlJx4,126\ngSsaIqwGR1E,112\nWsaXEsBV6b4,135\nFAAKfmF5Jl4,162\nePlb7b2nQm4,144\nGbCytLu1-3k,79\n9tli2kwH5mY,94\nXhWl0YaZKfY,170\nsnTvACYp8NA,167\nyLFZcXeZymY,127\nwmbN_BXQaho,179\nUb88RPZnHQM,137\nOvyfd29a1ik,141\nVb6cuUI7B3E,153\npsW7sLoNutA,64\nXP0SZTwlmMk,99\n_oLBVF_VYRM,183\nf6-8wpMn_8I,129\nyFSvuz5aHy8,69\nHuUhj-abydY,173\nMgYmK3cDFq8,149\ny1OhC9h3flY,137\nvZHS1nXJaGU,174\niKscMa0XRXo,166\nfbkfr-S420o,98\nOjmXuqNMrDY,177\nd1ZUnCbVoZQ,165\nbPiv1wP8q7g,179\ngBdbUMTXKIA,135\nZSQBKh64SJA,125\nZ8JHamH3gW4,100\nhqhm_-sWbFg,77\nXztayplmOsE,85\nvPYiq9JNq_c,134\nCWwcW-iuP6c,123\n31ZrzeS_ymg,199\n5Wpy4Luh_uY,119\n-u0yhzYlhFA,178\nBS8I9H07wKw,121\nTXLZrVcUcq4,146\n92WjYrR0PEA,85\npmuDcYB17E0,162\npNRl-3kZPzY,172\n1eSURYocFiM,152\nvjmHq57MZso,198\ni5dTE5dgWOw,212\nLQVzgO14oIU,130\nboGgXcQIe-8,124\nMR8hXM7_6EQ,100\nZpmCdIS3TKc,132\nFmEHRr23Hro,179\nf6F6MzMT2g8,153\nDubYVqV92OQ,87\njF0RYgX6Hgo,130\n3J0d3ZwHy-Y,209\nYM4Of8J6gLE,119\nq_v3jNjwHNQ,179\nI7pOcssa5uE,176\n_sMqmGJObDU,180\nv8kB6cqv8qM,129\nfwkzz6A_Qv4,119\ne0HzBST_794,163\nvZqr-1GJIAk,138\nmbTKo5Ylypw,131\nEduv1gpvg6w,180\ncgoMJXAmLdc,62\nXeasXb98akc,152\nQfv31xWBgGI,124\nwn-e7FlYRJU,125\ng9d1TR6Lb9g,186\nyHw5A9BAZ98,137\nJq0iZ5okXgU,112\nMVZn5gTph6M,126\nlHqGIe8AZ1g,96\n0EQXnRlIbXs,153\nR1hh6MVyQYg,182\n7Rx90r--Xss,153\nxHDeLp0sWBc,130\nwa1uJbTy6XE,173\nrQWpTKfljVg,130\njqzTeVVmTvc,155\n-08xWZTUbNI,179\nKkl4-30oHVU,150\nwXDgyuxBuBU,115\nLoRpJTD3HFY,174\n6rvbWWlv_qY,103\nXqwQlCAM3P0,121\nbN1E4vf9FlM,176\nDC2QaWmat7A,101\nvfc3TGvcjEY,204\nngRthItc3Yc,168\nd7Aot4Wr-Yo,184\ntXrxBy-CDPc,153\nNJQz-0F61yA,103\nTEvVc1vsO2U,174\ngSZ82TOHWc0,147\nG3TWgClyD9E,170\nopSAGkaqx6Y,186\nLfL_KOOZvLw,198\nBQl4CNHsgvc,129\nYXzjSJDDRIc,119\nqZk2O6OlYJo,182\n-GRPXrEaqn4,128\nOBErTpjVCQQ,132\nBvcBo3De8Hc,151\n6iGsAYTmnLg,110\nwDfgx1Cj97Y,172\nrqdEaDM2PWM,146\nRbU9NjiFLV0,180\nxxxnlkTZlCk,166\nKAByPJJecxQ,175\nEi9RooSCn14,168\nvw44oj_STSw,160\nhRfF8Kes77E,150\ngkStl7MVRnU,179\ncil6HFXlccw,54\nORrQKFliVLM,268\naSwH4lpuKE8,72\nezOyoEG6GW8,99\nffxg6IB27GM,179\nvLgTWXjMlWI,109\nD-9zx3m6lLU,129\ngm-sqEK2InM,77\nfEA9BJfaaYA,189\nn3YqrYcnfpE,123\niqZB7SIbeL4,176\nDV5EHuaa23c,87\ncKUwdiog-n8,180\n2IIA6TYZynQ,181\nYtWJKXNMmhI,177\nlMXVWQCa_MY,129\n4cH4xyezQv8,83\nIYfuTlTiixA,131\nQ-X3-JDIQLM,177\nI0jOVXcnjdg,122\n_4otc_6WtmQ,172\nbJ63bxSclsU,102\n4Mzzy3KQNoI,179\nSLC0omm3N98,176\ndN1RMOrtK7A,203\nJkW-iBe_WyQ,102\nf86_fLGHu6M,133\nNS8z60XHJdk,90\n8CcVO0mQ1go,173\nonesjJyXdFQ,119\nhJ6_nbGdWT0,153\nnudL_t9u78o,177\nBDZK9B4Gu6g,149\njsUGvhq2MLM,178\noq0Aj9JsmMQ,139\nEb9WH9OiKn8,179\nYKYtIhbcyuo,128\n7qi8llEviYY,170\nGVzyzXZuzOU,129\naSwi8mzc1gA,206\n-mlfefNP8cw,153\njk1IJ5ggyQs,108\nFE42Xc_laYU,147\n9j3y-J8IzYo,178\nDcpIpj7RbxQ,128\nCKtSDzT-SOo,151\naBFi3S-t9R8,132\ntIj1luuOfO4,152\nAxBkurGlhHg,93\ne4Dlc6yqJuA,104\nN-v-x6qmtcc,159\nxXLQhqwMT3A,84\nR0HGeVmyI5I,172\n0mPTGVoG248,166\n4F_jLtYFT6Y,134\nXvOKgNVwLes,172\nzZcYZmsSGs0,126\nf2Hz2k2PcfI,173\nIqiyy26sW-Q,115\ncPfMxQLlirI,134\nuwkMYWXtFu0,142\nmEmmWa3xK8k,95\nkg2o35acq4c,180\n9fHiacvqXLY,126\njVu_cuFHZnc,152\nFAnP3FAu5sU,127\nFEiK98h1IDc,193\neRITzdlHJXA,93\ngZ-QU3KT1PE,164\n7qjZeHpcVtI,149\ngyRxos8xOyM,164\n6ya4pGA6zPk,139\nVAfaWTc3WlQ,179\nI_X6zWElJdw,106\n9di5MvVZb1k,108\nbuDmlhm8mKE,148\nXarGS1AeEcE,169\nOe4jP8WV9lQ,60\nagzK8ig7rR0,175\nS_l6py_n6RM,165\nlfObLA5H4Rg,150\n_06GrnWiGqI,178\nk7_V-3ApEiM,161\n9VY3OKScxP4,164\nIH8u5eKHNhs,176\nebHQ50ZRvM4,182\nZ4G5St8apOQ,177\nAx83IEcbUwU,179\n2nJCpOeT9x4,179\ncOXVnmVPdtQ,153\nfqnhqkXclUk,178\njR_kxdUm1bc,90\n1DSkJxktHFY,78\neA-V5wUcWos,164\nIae-A9s8Nk4,176\ngj2Y2uEcubE,179\n6rNaFgA6YlY,146\n8_oVkRFKukY,169\nt5zrRGTShZA,177\nS98AgHKyX8o,173\nk3KR3Wz29FY,167\nVqYLWPoXeuc,75\n_LzgxVd1wF8,148\nEjAwbjng__4,138\npLlcwabi5AQ,138\nD_FRoxgOUNA,168\niBptyagVaEQ,159\n9qwsfjnC0kM,100\nv8UDjwdqzKY,178\nMkKO-Z_Sjm4,176\n7ezYV1mOdh0,174\naBxlJkcHDSM,168\nXssDZqS6WzE,130\nVD-_YgrNOk4,171\nwKiW5OYjels,154\nZ4nVqjAr_n8,136\nnW92suQFQ5c,116\nkPXFWplmSyA,179\n1rJ_NvTBOmc,166\nfQWMKUF7dvA,125\ntDlL6QWvKNk,134\n4NGNbrLnvhA,161\nx7yAcIuyOb4,176\nHl1iN3hP-60,164\nqv4BPYX4B8U,152\nuG_KHjd_PSc,182\nSplRDi4FOfs,132\nX-VYaCvJwxY,169\nM8yhM7zXdSI,163\nj8nLPMys3b8,192\niYf3nqYQXDI,158\nBSQeVY2fdL8,162\nnD6DMtXc3mY,179\niAlU6xt7Y_s,158\n_RHrQlqoTTA,173\ni6oNzS6kCR8,105\ny3L-a3R9OQE,165\nFnFMS11g4fM,181\nBxB1Mpj8NiM,123\nUy-L94Tio9w,180\nQHU65AAx6uk,176\nT4v_27FwSbc,178\n7OsEWB35fPE,133\nBr0BUZWEDQg,136\nzd6ZUTrW5b4,131\nr8-BFx3xFJ4,183\nLKeegFM5SdU,114\n5JCbdlUra28,161\n8RGjds-aK00,168\nUbb88WMrdmo,176\nWrY9UuucSUs,132\n6xCIhFtDtx0,159\nH3jNVPIi5YQ,179\nmFH_r2w28rM,150\nXtL5tGpGIN8,147\nNsRhhZPAGLI,108\nY9HqtZTcTJk,141\nmjbU4wy8VwE,157\n2b-ip6hZYgE,136\n1m_aN2-vauc,147\n0i1ihIW8eCY,137\nxLLOmh2nxWQ,174\nFRhbIIkLlFI,101\nzb5RJyrk4gc,178\nIsG-jJcrlr0,183\nKAE8h2rqA6g,131\nuqS2-v7iZr8,136\nGYh7IHTeLus,113\npvNA2JkMfSI,184\nQPaP-XRQeM8,175\n_Vyg1SVaZu4,181\nahCOQjOPTZw,177\nI_TkNxwnJiY,113\nZ0FKMJQR9RU,140\nbLX_zt_MhW0,188\naKidFnGJDYA,113\nylzTTNLGlD4,141\nQiCNpDYavbg,227\n76pNjmVp58w,101\n83Lfw7BxsQE,112\nkcniTaNYikg,175\n6_u456zQtkY,116\nEwpzngfnvcc,174\nfZflzybv5T0,88\nRgaUubM7yyY,122\nnqJIAz0C5Ig,176\naViOusNEtoU,116\n0xHe1zkABYo,103\nIAb5uq3GzZI,105\nmCSno4xODKY,87\nohZ_J5yHSkc,179\nVpmnPgUwVO8,136\nfkQHKvo7ZAw,174\niga0_T5B8dU,111\nYKZRedzkeU8,143\nJfEde8D6XE8,109\nKY-bRBsLLtA,175\n1mLEN1SN9Eo,121\noRe8EuewinY,93\nI8_tVvzJ1xg,95\neuJyO4E3FzE,147\nwbwXHxqxDwc,173\nRJEoUwZdwfk,160\nRpr0n3A3_BU,176\nyBd_y4V7vtc,138\n3kNqc5Hrh0M,177\n2_BwhA8M9-w,154\nqgRXFJqB-9Q,178\nIYHAqyiQ2i4,136\nWlvCTpjwaXE,112\n3tvpgXQ4y4Q,177\nkHAHQMb4Lmc,155\nmymHgUYBTfk,136\n-DXU2ZHuiTs,74\nbwH_nxsCKp8,174\nRdG9KwpjxA0,170\nUJ_zLBr1NxE,170\nKW1fyTqH0oE,169\nvW7-H-GGYwk,142\nm1p-vJzqPKw,165\nNkhIROsY7Pg,113\ntdfhiqOFtjk,142\ntgpGrfh6gM8,132\n6LBW-X4DnSU,109\nte2WMrdJ3yQ,184\nCtux2wyz_W8,130\nH79X1JQ_S30,132\nLl-Ff-PIPOQ,159\nUuuzF8Pyh0s,169\nJNkxfdR9dXk,129\nrxC2ZWU4IPo,155\n5wcg-4j9CZ0,159\nh5WL8to9Gq8,164\nyYQtZCaPFaM,152\nYxQJTlFyebM,150\nsu9foi8t6NI,179\n6rGBqovePfY,174\ncMPXArN7f9k,122\nZle2EnAj0Ms,95\ny-m4KWfeyvs,153\nJcRuXU7cvmo,111\nLxKahh3H-3U,128\ngmJtNjLjsNQ,170\nmsoyjm3gCBM,168\nSHIG5bfYTs0,124\nguEyoPzTkQw,106\nN_3_HB0AfdY,175\nDNpBEvHATIs,132\n9_T2VQgL2XY,184\n_sHXbqFJCr0,164\nlfKcANi5Zrk,140\na81pNygdAXw,128\nPIeiRgfL9e8,121\ntnwarNcu3fc,151\nulALOA2LeNw,161\nlRlgx_GFwyI,181\nZvytnyM6lRY,164\naRPInpAD3_o,138\n1_CfcecGCVA,178\nlPrJqB8ljAE,118\npQX-KEXTwmM,173\nu3oi4L5tWQg,94\nD4HGK-_5TkY,153\nB1uEaZ1xSaI,161\nBVrhwsgCuFU,84\ndH3dqXHH0yU,167\nAcOMZUiVuJM,116\nVU3Tu4K4MOo,143\nx39ZG34sn28,130\n1CXkATQLZGk,192\nptOc-HdvEW0,170\nGKAPU5e7miY,132\nwH-i4ImreXs,134\nos7KKfG3QE0,176\n1reD-PYDpvk,104\n9oiFkoROlu0,178\nqjqJtri_EG4,152\nz3t0ltbfMJ8,119\ni4l0vA9bzaw,166\n1iOnKJA2H7I,183\nGMnwXB4A1iI,80\nOTAO1MRbmNY,143\nT31h3L_egm8,189\neGLC0vhemeA,174\n18Qa__JYKdc,178\nFxcIBbXalVg,172\nQQFxcGwtEBY,146\nANAUjvgYxjQ,192\ndcCsAQTY9lQ,124\nIQuxKuLkByg,117\ntGg3h7NtiXs,52\nywcKkb5buJI,131\nr8uOQupi1iQ,119\n1q-FL1Wd0EE,145\nbdJPnMKhsnY,87\nYb4Lrplxq_A,42\nXPhVzIgYjhc,178\nuqA0WkLSyKI,179\nx2jLrsMN6YY,146\naJZL2uoPRZg,183\nk7oRzwLIgbo,84\ndTVEd7WtyAw,193\nsfCQQLSwz3s,128\n8OS1xorvbAs,131\nTv5BC6yJ61o,201\n056HlHORCIU,136\nOTjYvVfWORo,139\n0ACTvENkyD8,124\nMWxa84PirUc,113\nuUA0a8U7PdY,96\n81YXRcpQSpE,123\n8DkbFJ3uz54,163\nQ3n3k6XRQ8s,44\njNNX5a8ogr8,172\nv757jrOBkng,122\nz7gYF5LF-ec,101\nvhv17audEAo,166\nYjJ2tMg4tTA,174\n2NR-tebGw3U,160\naiJtAU0V_60,116\nFz2HMTuqy98,162\nCiqtsKGMblU,182\nZmKECCbMc88,141\nNkmUIQL4spM,130\nwIC34lZi_NU,163\nUZVhwFUQwcs,175\njz6VC23rVTE,135\nPS2CC6WdNMk,150\ntOeINWwKvoA,180\nnry9GG4Z0CY,175\nmxz_RfabdUo,145\nYQJoemnpWaM,172\nUkH65BsZg_g,168\nDSaBwTpdfkQ,104\nzmdsY7PIJDg,165\nuSZi8oPRUkE,134\nj-TPDJFWErg,178\nSK4l-e7UvRs,46\nTtALqoM5hkY,173\nQw9ltquDJRs,125\nnoAefY8KRoQ,131\n4Cw7JHJuTt8,125\nIWZLSjyJPsU,141\nAsR-WnELodI,155\nf1mbRj3ejAk,94\nz1RLdJwkFZA,115\notsIUxrcoXQ,177\nbtfIH4Q2BQA,120\nnA1lAszNSoI,165\nK2hcF1oOHb8,169\nzjm_GqK-Kmo,83\nHLTpxttylTM,179\ni3VHMIy8wHI,116\naYNntWtMi24,181\nTFDiCTUAJuE,89\nBxvRz4RftFY,116\n13YnorzVWTE,64\nEOQeU_6vbeg,246\naWUJI1UPuHs,128\n9smHLhj75CU,106\naPUaHUwJJk8,176\nl8MFxT9ILKY,171\no9-cFlOdXn8,134\nQoWIRCVeXBc,131\ne6B-T4KYIFQ,146\n4JtubCgodCE,118\nqS1MeoM8iA0,149\n59wvo9e2XQY,255\nOXUmjMKCR_c,179\npzG1ckuBqpg,173\n97qWmPkODZA,181\nAoB_mdZxNlY,195\nFNX19RFNdGk,164\nkNAO6eHuCjY,175\nzYZIHnjnGSQ,124\nUyOxOyfX4uM,92\n_O9lT22rCj8,118\nuSCNsJDEf1M,139\n-LCqZeb1de0,140\nVMteZw9UU-U,158\nzU19JLG88tA,137\nYygwTWUI8vc,84\n29D9SkdtVBU,150\npb8pWn_yyF4,169\nsISJ7r3kERg,128\n-bYLI4I8vkI,121\n3lex4AAgAfs,184\ndZb8CGMC1zA,206\nZFMSluy-4gE,147\nl6TGERgrXmA,159\nXYc1XujRb1w,123\nL7YVcnBbeeI,136\nm8KBXUCttEw,178\nq_VK4zsJWNw,154\nh0i2KfT2SB0,179\nUUD5-dcDdBw,105\ng_TTG6vhg_4,130\nU9t_bzEKBnA,120\nQsCBiq5cET4,76\nfDSyuyOtPRU,120\nnJIecTXKUrc,175\n1nwaifplKCI,128\nC3rDWENRI7c,130\nSBW3d6oYdkU,149\ni9OLZ8rhtlk,119\n32I5RODje3o,75\nXFKhIBH23-Q,183\n9JTGNwLdSDA,149\nGYexCnV6cLY,180\n4k1Vx0equfE,186\nu_nHHDkfBWQ,181\nG7_Mq3-ivsM,158\nEntbO16GpNA,107\nRt3u4bU6EMU,98\na2qE4hG9XCk,158\np39lIRTEPY4,133\npizMaFdtY-s,179\nVMhwOytHUsU,165\naBACy7VwhhA,204\nA_n2FjVMiVY,120\nvpTj6-4d5qA,174\n4m15WAC5khw,122\nBANrqTBnEy4,100\nsIY7BQkbIT8,224\nQgx38Vxw7Bc,85\nFTGtcjSMjy0,128\nj0IXQIUh3jQ,183\nXQ0Tlb8z3ow,104\nu3xIs0aajN4,113\nv5llnbqhLZM,179\n4GlXOOYL_5I,184\na1DuE8E4DpM,158\nqV0h46fpZeA,86\nRybQmyBoWEQ,109\n0_-45EGFtA4,98\nkP5GKIrGoeQ,153\n1xhIWaxWINs,205\nmRIaK9Vf0Ns,189\ntD9DfbbK6OE,170\ntpsGUGc8Ri8,178\nKTVlvs7mtkM,168\nFkEU_g5u_1c,154\nN-dpQITO2fo,172\n9KkV_swvE2Q,176\nvKhAdR1G9io,133\n6VhCGQODB5U,165\nM4YhJdAsgdU,175\nkJKWjeMtEDM,171\nMHyA5fJ18HA,179\ntru0WMH7yic,180\nDoVnHRhvtKI,101\nvk5Kr-zV8AE,133\ngm5nPntwGQA,121\nF6dN5Kq5NZ8,180\n_DtsWj_e2vI,120\nxz3nif1TPDk,188\nz2PH2-yl5Ho,180\nQRWluPmgyow,178\nQUtc_tjyrsI,132\ndfALZ10xUyA,138\nOYsV5RbHvA4,97\n10khF4-1rbU,145\nkgs8NvXfI9c,179\nrp07bmYWtog,178\nS6iFW-HoFwc,115\nCt-zGV4TgKY,184\nYYo5jJy61T8,186\n6-IGOKWYCDc,141\nUF2c01_glHU,172\nA8BfSnbFxj4,163\nnKuJ6UvlGek,119\nkVQN0ZDzIqU,166\nJPA1TtBEIbc,179\naKtrjeCFCAg,179\nDdj5oGNtezI,150\nrpy7vhvX8jw,149\nKuLvoPT5PQM,130\nI4mtL3Zs0Zs,156\nt5nPC50ST0A,90\n2zSE8r8jU_U,170\nEvUbi66AGKI,184\nkHQq6ri9MDI,146\nn03zeBpWC0M,134\ntNheq6EGWuU,173\nH7zXX6EqGbI,159\nt9vWi2ItxMc,127\nbSm3d9ftiJA,168\nrdCzBg9Xw8A,177\nkzf7hr9O00k,143\niraWz0XdffE,114\nS1_AkfEVPpI,96\nrM5Bg89j9qo,86\n2EQCpQbUrzI,207\nmN22-ZrX-tc,160\n0dGLAOaTgyw,163\nJZzbTqTLiqU,131\nJhMWopjJiI8,168\no-cA_1F05bU,154\nYFnErcVxB-Q,133\npoVn84doiN8,179\nUjm2mTIaGC0,137\n_4DRXSdPuCo,184\nWJOMiXmwfYE,167\n4cyZctbdFik,174\n4YuwbC-9aDI,105\nisct-XNu38E,192\n9ukjNhwdbGY,127\nqWiGcXSaKUc,156\n0H3xMXZWU78,120\nwI1LRBDvSFs,152\nAHjOZLikqoM,195\nfVoHEZb6imE,96\ngeoi6Sxyg7g,176\ngxacglqQMqE,91\ncrZlpaRXKFE,82\n636QHxJvvjc,119\n4V9xYmVeNL4,178\nMQ1YkJX4SJM,91\nfJV0KtMZ7x8,99\nAoKtg7t1Y0M,127\nTEtlsYtj5-s,147\nijjYDSqZOyA,167\nisFVKJA4E-k,147\nrA69NDoXRhI,128\nByRXX8KHS5o,177\nbNiztacMAJ0,166\n68av2-Ti-GU,171\nOyUea4_exRU,171\n530g3-fuGGU,140\n1vhyMvNS3Ek,191\nrKUEBIPe5F8,179\n-utei4CzIzc,186\nCfaPUQMa1gc,116\n3fotxrK_Spg,104\nDkpNYjgUlhw,177\n6Kfqy-8C3o0,173\nAks95ziAQXU,183\nt_GWHV52Tds,104\nwkoHQdbhfOc,173\nUyKyxHFIT3A,153\nAYQjmj7cSM0,173\nQ93k0-I6RC4,128\n7WkMxJKKITM,177\nr2C-3xQskdg,68\nBcdz003oBg8,142\n0mmSi-63Y9U,130\noZlQMLXqw0g,131\nwzYPC7FOJtc,142\nssS5S_E37G8,147\numcyzRBeJtE,129\nSSY6_T2oAow,117\nodNZhZSydNc,129\n6T_01swH-OY,131\nwJzWgX63LRs,132\nLSTU_JJcJxQ,180\nKzw5aWCSZs8,177\nXLAGTl0Nnws,122\nPXMASW5YQl8,36\nLKVJLiiBlOs,171\n0Ij2veeSsE4,162\ndhNjb67EpIU,179\ns_h-ZXgEtNo,119\n0K-qOSq4vz0,178\nTt2oL1sVVhM,139\nxPwq9go3HDc,184\n-whQdRI7wUQ,110\nH4d8EcquSUM,114\nMhCI7MtnO3w,130\nSdFZEeR8a2s,179\np4lBFrh79OI,177\nOaGLdGjlV7Y,124\nntirWguFrfM,178\nhqqlSTB5CfU,81\nAapjOgixmfQ,90\nDHnwNo7Z6Ts,75\nakSjCFfKAMo,107\noHAtHxDF6DQ,137\n4-hiooEmi-I,172\nDd0f82f8ymk,148\nnifcKdVjpbw,194\nw71pHLUz2i0,148\nVhdCpMoShM4,164\nLiZ_h3tUmMs,158\n2anI_i9YYf4,153\nMdp4T_G0Xsc,178\nx_Gr6RT8Aho,67\nqLBpHZ9dUZk,114\nYvNjJgJM728,64\nK3VNZOc_Wo4,108\nNpzigSg-YkI,104\npKHAhc31MOI,157\nxM1MNPKYl5g,151\nqCYYMqHyPKk,147\nGH-oJGZKmq8,152\nIk8q8LDqWiE,130\naazXc06Oycs,153\nPIfFHypWnf4,174\n5Ka1bqIBXH0,173\nkv9QW8UYCDE,128\nnKDUDF3cgRA,138\nv3bWb5qZMu8,179\nZXyLYqWUffA,112\nAjAJNPCQ1Fs,86\nujgbo-_khSM,117\n4TsgjtL0Qx4,186\nxGeYzlEV5KY,142\ncTQRH6MPV3A,112\nBGlWalxUId0,142\noeF5tq_zeqU,172\nn6mWh_43Azs,98\nns3j2exbdbU,173\n8knM2DiWkUk,177\n7SojZ1TuMsk,229\nMGRJhDyY9ls,133\nuWY60oFlfxs,122\nw-juhvM7yug,122\nbp_GxHYCq90,136\nq9Wip3v8h40,85\nQ2P2WsgH6mQ,118\nlQr3va8emXg,223\n_TmztVM7Z4s,180\nyvzmLB30MwM,172\n_0No4OkGHt4,180\nzElzcOQWLLo,177\nG_Rd3TcODj4,178\ncEezHIqQrEw,121\nE-NXKcnsDJ8,146\ntxQcaXvbRB8,120\nukZg66d96_Q,115\nQO0K8wfZrHc,136\n516x-cH_Cpk,160\nb6vOp7_rI6Q,192\n5oEUU8YjUkg,121\n10f-q34JJZs,161\nCvoAG6pgdC4,99\neKCkxzJFP5M,180\nWqWefwlmFmI,127\n1yi8Mc-5kLc,129\ncazTXFYZ9gw,151\nod6IxUWPMcs,174\nZ6SklaeTne8,215\nxQyVBxABGxw,162\n5Qfba1tSw4k,132\ng7bQ7ynurn8,75\n_2vMtzWb6q0,129\ndf2QdWqKC6Q,176\n7D_6z1EnSik,144\nye38FmLnLBo,168\nQAJTgMZpigM,114\nO3-W1ng-UWI,156\nAtWL0iQxE7U,161\nalE17GLFoQE,171\n_GAA_LvDQMQ,153\nZBqZpBkiLiI,115\nkxvkI8K7fTo,149\nvJv647j5Ig4,168\n9Q2UjqahNSw,179\nwzkoiXWdFzw,99\nTBHjt3AyALw,111\n7Fj5JAYfWVc,171\n-Bxv4jtiR-U,99\ng4FOpeshqA8,132\ng_O0J66490k,177\n5qKySTAWpiY,123\nppaA4P4tr88,174\nQQe-fCLVBVU,174\nD6MN7T-tnDw,183\naYSdnLgl-FQ,181\n2cJGGVlQ8X8,148\nmr3L2D4yv-0,126\nBW1kpbOz5Eo,53\nP1bTMEsYPug,179\nxGAAMQLb4ZE,104\nkjMmwtxIRbg,177\nBf6FD5UbSns,168\nz542q4dYk-0,124\nKMI-Sxq9Npg,123\nLbCGyHkR0ko,179\nXlJpElakwP4,153\n3a_nj9e_5bs,165\nl3acfaQKSnk,172\n0zQAUQGwv4A,183\nb0KSEziycmw,158\nqItvl5cX4-A,89\n_a9IqPr1kdg,129\nK8PDbQK7Jro,261\nMAi6B_AFhH8,105\nbubK4ybEy-Y,124\nz-4DtLFGzG0,175\nexCuIisMWl0,145\nGCdylltS-m8,177\nECirl_sSf-M,132\n2LhsuPLvtFk,177\nTg_Z2u4GShE,168\n3yjYPrkMGdk,178\nC5UD270jxfs,118\n_ZLAt3zwEpQ,127\nZJ1UwZPZN6A,154\nXc3bqi1G5xk,184\nDJWKWwfURtI,117\nrZyjko9lXo0,171\n9I-FCJRX2Cc,175\nCTpAikAZ2aA,162\nw01G5wVBQKs,98\n57MtQQ5sm24,197\nLlK6pn4qyrc,171\nPdgSo4Ts7D4,177\nY0uLpcThaeU,151\nZp6CvBIvqZo,134\nEXUzqVIocHI,186\noeQ4HWhPEdA,155\n5M4VIDlRYjQ,147\n9_LX8b0kmiI,175\nmelCNhYmwII,131\ndCyrhdW9e8M,162\nFMDgoOi_HLk,164\nYRdXmtGnwCI,121\nPywpJSG1dTM,180\nmAhhCpdnVkI,166\ngSpHZ8Kuh4o,177\nOwfT8yTBPYs,120\nnLpJ76VuXsA,130\nyQVdwJcerjw,171\njVH_NN7phnA,121\n2G5KN2wt048,157\njra4awMyUr0,156\ngXVvoSa1xBg,176\njKPc2IbQQOQ,167\nG6f0w5BRasw,177\nK9z6npGGZAM,142\nw9-ylaUijdc,176\np6oIR31ZgyA,143\nvFPRSImZev4,170\nDV_eqkGxAa4,139\nek0jTQAdN8Y,143\nj4W7FAGrpiQ,167\nzNMpSVorNr0,171\n7n9xJpld-0s,118\naBMH3MEYNIg,171\nEPj1eq1csm4,178\n3tMHSQGSUzc,143\nbOqZC-DXvk4,196\nLwSsrFFa2Wc,176\nBCGzM3s9-1o,162\nrb_iLvMVihA,179\nl0CbM-jK_eI,132\nx2K8I28zejw,167\nyJTucB8fH04,177\nQ2gFrTuZhFM,115\n6eV48Ir-RYc,177\nS3-atF715Mg,123\nMqIJKnUkGLY,228\nuFTd09NNJzo,177\nih9NffWqWgM,148\nmkIwuziqr0k,163\nKKDCqTCoLQ4,119\n3oqt6V9aJIM,179\nmu9cObUl8Gg,153\n2yZlrJWBLac,156\nPX3By_Y0jTA,156\nmSsrdFBpuqU,138\nkwvSRZG285g,194\nslegOy-GQMc,161\nN9v6VJLZ8_I,157\nn_lSwXF8wfw,130\ne0xPCas2tHQ,125\neaFX0rKv2Fc,167\n0ePC0mh4rCY,127\n9UslcBJkmyc,179\nnI6agjxMa2s,132\nRbsNzYdNM5I,116\noeKyva3fU1c,149\nN_aPyfiVWEE,163\nTU_iltXEntg,111\nXNUers0BuD4,118\nk60eGmxn7Rk,165\nslDxIGhBuIE,137\nBOKbcDdlAAc,175\nDVR6p7Iopec,118\nfAdsL7AXW6A,157\nYvT0GTWPw0M,109\n1SkWbujEeLM,205\na7lxoNJJYEc,177\n2_W3saVv0qw,152\n-48m6UiKt_0,137\nT3zIklxWw44,140\nGuMg7x6_8No,177\nucYwV7EWIRU,99\nsbIfW_Pf9vk,150\n276AIPEK_JA,202\nPSpIMEVCsV0,176\ncvvBpQoiZpg,132\nxm2ztDqbbZE,133\nL3aF2hwu8yE,176\nfLswSc81mw8,126\nwEPZVYQqdMY,179\nsf1LMw0a95g,137\nWOSAa_l3azw,125\neMgfTq1Z2n8,157\nyLtC-gH6ktw,178\nGZACBCZQFt8,132\nqTANCNgUW2Q,163\nWsffSfKc-mw,137\nMrWZWfsif3E,131\nzpCCg4DtXCU,175\n3wXG_J4cPpg,153\nhZPz4w3jLXI,156\noe59hoX10vU,131\nDGQkgqsHQns,47\ntK4GDziddRU,180\nybRy055wBsw,179\n-QZzReak2Ck,159\nKm2lbJKGAqA,136\nPwgxGA6pLhc,136\nNLfY3XAZ6c0,90\nuQR_i0ydJik,87\n8_4rJG5TmBg,172\npjKnwaYJi6Y,131\n9vn3DZZHC4s,105\n8JhRzlsZPas,142\n2vbGcYm8u1o,98\nl-GbvgBXi18,148\n0tq44zxA0Ao,153\nfZNHk9DKvtM,183\nxMoCoTO3d-Y,163\nik-n-L9UNTY,179\njEKFfdQEbcg,171\nBbyMGiPjDOw,90\nHNajZgCe5Pg,157\nLurs1FzrSio,231\nkqFgnN10khg,198\nalYZ8jQ5L3A,129\nvrluM6pe89w,174\noyqIjdFcJVg,67\nH9bQdTtfGCU,140\nVAb8s41LLCs,126\n90EupUjxPIM,142\nwdLfTMSAErQ,82\ndjTx7slpfHI,158\nQzf3SFbaODw,143\nqfq5VozCshY,192\n0wTKzzRtGqY,146\n3nVP-DM1egA,150\nUYYIYehBS_s,134\n7EcK-LuhzAA,198\nynG2qpTbFP0,209\neJPXQfvokV8,158\nWzUMVMrEGnE,158\nbqwH3cQUlNA,160\ndbnWDDp4s1c,179\nLmK0bMGzHpU,124\n-s52VEAQmKc,172\n9h6w198Yg_Q,52\nhH1TgDvC7sY,190\nkt1aHAlXi4g,102\nkK6P8gN99eo,131\ndDqhjzd8wXk,165\nVR0NIF6PbCo,144\nHMUbL4Vgb2E,135\nPMLfJk1X64I,120\nr_3ofu2x8qM,130\nDAPrbiJaej4,157\npadXZANlFwE,159\nNXTrMtrTjlI,133\nKCg0cDrNQvo,154\nKKD0B8uROMI,121\nNclH5qEfL5c,178\nMsHusoTYzTA,132\neiuVC_cdyIA,125\nOr4t1d_h0Y0,172\nNVXDwL6XG_c,105\nt_FRWUPcR7Y,46\nZlFVmr9iJjc,141\nFPpYxPOjtsw,134\n6GpeTJqqtG4,128\n2HwVVwlGHU0,147\nvtu0TbT35UY,179\nn2YCseaZK0Q,131\nOt5T_oe47Xs,136\nDKqFCG3UTEs,143\nLE0TUN0Po7I,145\n5YbynyAXAL8,174\nXIhDPwuwQdc,170\nTiz3eN3KJRQ,166\ngLWaU-LKIwQ,128\nJ_hkf20P6FM,80\niv8bdd2-Y0w,171\nZQ6XwJOrBiE,107\n-4Qk4eACpXI,179\nkpFSJhQ_30c,144\nvdwWjsJLaJQ,153\nq6ObhNBURyY,172\nlV2XAU1JzuI,95\nvMs9qHAQaZE,156\nCpIgfRGUpU0,134\nFYDEheLGrKw,111\nmRwKWTGCd7Y,122\nC3lLA69xOc0,181\nWyBvHGU-djg,178\nFYUDzpVRYio,167\njiHXahhmzjw,121\nG9D_0pXaM68,130\nxDe-990DWEw,69\ngAbn72Nu_MM,100\nJwAVnG8iemw,196\nXWAuh7S1zjk,148\nKsimmeikE7w,130\nNy0jtHcjrbg,133\nS60NRfBYTl4,92\nj_z70ZaqWUE,100\n6j-vjtJ7PRI,151\n2BQoPPpt_9o,174\nonO71_aItKA,161\nW1c-QSe7uU0,109\nyWu4GUFpwWo,96\nlLbWBsRVUAU,146\nIoRpcIVgtUc,174\nU-Sqe0DN_E8,175\nnS1ePEA5XeQ,129\n0_s8rbNokS4,162\nIyFhDTUhX80,115\nn9uVWlO0GAs,87\nzjdesHuied8,177\nTt-GdLwV4dA,133\neNZnCwkHaDM,175\nfr93wwtiKQM,140\neq3vD93GgLs,116\nPhRyzmcEOVA,149\n1J1osn73VYs,122\nbf0eKlTbGtI,131\n2thZKjnQnK4,124\nghZ6ntXQp3E,83\ntwPxMYSEJ-8,179\nNP2fSxIpvis,110\n5rOdGpkURD8,155\nfB5HTcFhCso,188\nrlXKgVlILbM,124\nR5a3sZiNuu4,181\n5vY-zNTuq8E,162\n1rP402h6Euo,112\ndLxHFwfWIcQ,181\nHsg_ZUoSlCs,127\nnjnCT6sD1Bk,59\nvD6FkjOtIIs,143\n3yVGaKmJrUY,172\nJWXgBi3HDac,32\n-uPSVWxV6d8,153\nsfqjgFBIBFQ,63\ng_wEMoy_wi0,154\n9MhRoo23Wak,187\nsSLdFuRVlmc,178\nQ85twbu-Vvk,163\nVPOd_Y2qFJk,132\nXKlt7H8_De0,169\nVl3IiVDwgpY,135\nEh_0E0UdJcc,71\n_-4Xy6CjAbw,147\nTqivtOAy2No,128\ntpmqajLJQz0,162\nzjQSWtB7Kp4,110\nTLOD07LZw90,162\n90j6V8EjSuI,145\n4At_9_s2lDY,141\n_jF3JZMHL30,102\nkidICVXLnRY,112\nddVQoF2TvNQ,113\neTGHFj1kdsI,167\nlsmWjQdGHMI,163\n0dC7aMWCULU,135\nmAD2gJTRSbI,133\nMzvFEBBZuwA,145\nQzgJIF00Xdw,261\nPZeVTlloWxw,172\nDjNVqYjp3E4,89\nJo1OjI4Yfv8,188\nijaNlufpcMs,144\nSzlHzRvw-MI,95\n4TBnG3RuU88,155\nUxjYMYu0F8o,111\nxax--zcAdss,112\n16op1FeUX1A,181\nXz-BR8gyPhg,154\nEy-zuaZV8pM,87\nSNHn_jgFxIA,177\nSJdUJZ7odoU,134\nz-fCbA2aAyg,174\naex6V8aGvxY,176\ntqTDKWhqvn4,82\nGJwsVhQHggU,162\nEom_iOkd0-I,179\ngw4boF1v2YI,118\nWZrXR5HAEVw,121\nSEtuhB8LEZU,166\nQlYSFCvUGoI,159\nrGAjkzbV8zw,74\nacVDpeSHw44,176\nGI67NK5cmxk,135\nuJDmoisR-28,153\nbeearAU0yn0,152\n1O9BbPEZRBs,155\nDsSvkC4X4Ko,141\nTlyHBaAJVbk,167\nc4w-IE-Hsqc,124\nr3fnCEjvPCQ,43\n--QCZKgJt6o,176\nlensYsrpsVY,131\nXC3h9PPpQtI,134\njTnDuMlebNU,172\nYdcWFWm4n6g,114\nBtL6iIh95ag,98\nvA1fVHBWuBU,156\nr8swYmKUGJ0,73\nRV0EbFEZpT8,134\nizP8mDH8XOc,169\nVXx_DVHO0go,120\nLk2gIdLgwz4,127\n9QHYm5IVhHI,125\nfWRkpKq-9f0,201\nn1GlWng3oOQ,179\n4kRRDuR7OBM,176\nCYQXYJIN3Jw,177\n_XSFVQhMC5k,103\nIL-_pNnEuk8,179\nsR_tidD4M_8,195\nKsmXx3hB968,179\nE2WZXK79_d0,180\ni2xyQnF1kro,95\n1c5xWXSWSgo,203\nmuMv1K99l64,155\n6O554p-ovsI,176\nNWvUNDAsYqE,72\n-arTRBtT9d4,137\nQoT8ZUDDmKs,116\nr0MABEixxRM,121\nXh8fDMTvNew,104\ndbGKS4GQbv4,179\n58pw6PJAqZg,149\nMki2fo1Ou-s,140\nVP5nSFxqyxo,79\ngj_BH6Suku0,153\nFrxenZhf78I,136\ndIx1J8hHVkw,180\nNGkLen8TbHc,92\nGo55LztXeQA,146\nP4KHpL7ZHlA,179\nDU1C6QrVmuU,166\nxV0HfZSFsiE,125\nJjqnoH4D3mo,111\nS9EIFSWUoOc,114\nKwZmZ6mybdo,120\n5ODDHpmqyWE,123\n3v-e25d34pY,183\nM9FAInQwCm0,170\n-XggDv2QdHg,159\nFOeyhFQK19c,164\nsoynQCpGMz8,185\nzjdTL3Z77G8,140\npUmu0VJuwOA,97\nnJ1hrmVHUJg,151\nd_A4tfEukp4,175\ntvxjJd08MMc,132\nR6nZpcweYXw,191\nCyhOZgd8ahs,96\nC83hfoyHHHk,184\n0xSSnfRYBQY,179\nvwbryjr2BKg,175\n-OUuZojE3aM,171\nTr_OzL7mupk,164\ns2QlioAboes,181\nzYTsJkuEPWQ,63\nblQ8Wi0VAn0,144\nMwcXLL103vE,178\nC0gEMF9Tx7o,149\nDUiEMltmojE,172\nVPeXTe_6uOc,177\nuE8yYJmpxeI,152\njPgV4d4ZmZo,141\n4tMdFDBXDpk,181\n21b9Nr4VIcI,70\nZLmRWzBjbtU,164\noG-MKxVWwi4,135\nO4fYclm_0As,117\nXqtGRpyXGXg,123\nGUw4G1lDGYE,133\nEYHLDJuEUoc,166\nu5hpQ0KeRgY,148\n0y-Y83y4kKo,168\npQ62TmdWnyI,189\ndBif8nb20_g,165\nwOSP7YOuOH4,177\nMGGGksL1ziM,130\nJjfbxBMmXTI,72\nlwH4vtb9GA0,125\nRY_D9rFoWLo,161\nXLqh2vpx6BI,86\nYke_Lkmm5Bc,94\njSnvLrw4YR0,128\npikAt8prREE,146\nrDnazOBaF1U,167\neret8dNSTqo,88\nXFHh8V9eIaU,178\n5tz8013avVU,98\n25_58Uww0bc,178\nHp93d2bsfQc,133\nFBhqtV3pVe4,170\n7LxG9WBUbf8,177\neFrS6uCoMsw,154\nq2EU-k9I5yg,134\n6KHyMISpE18,180\nytHR10ZesTY,165\nTSAdyzdX4eA,168\nVpBuUC1P2jo,121\nsTcofHd5IlE,103\n3WfRT1c7Tz0,159\nmEv2dXzZTV0,97\nocXYjytHb40,110\nvgEq476aHxk,178\nKngGYZgu02o,177\nNz4zu_fSHYY,157\nz4cGnSZQni4,177\nIMTJSKr7yJA,169\nttEZ7b4Cf9w,180\nTmnPP66kwwg,168\nHLlaSoozZbM,131\naDq_JsN2Y6c,95\n08NzJRNAFGc,130\nROlSjAgE93Q,98\nyKv7A92MoBY,148\nZbi-MbMsnIM,161\nJ38c6k11K3U,149\n3KdgZgQRDU0,124\n10TW3rcKMtA,106\nCu5F2Z9mKmo,177\n3oFSNCmEZyE,130\nTq9zhCo-PTQ,204\nC0H2SnzitoM,109\nVAnkBQ7eWyc,133\n1LwSe_JnByw,151\nTp9iK2u30qQ,173\nsL6gDhH7FpE,195\nUjjSZfAe8sE,171\nZFGBlZw2kIM,166\nqEH9lnYIndY,162\nnToATRUkpMI,158\nyMe-7hW4evU,176\nMpaMbLDTxyY,119\nuZpvHkGMn5k,214\nXCJxGxYDjQE,170\n_pe3ht3F0A4,115\nGylxYHpdxVQ,164\nZuCKjnYIRYQ,124\nHrYK4U_a6y8,153\nxD9G6rUq_5I,171\nAAE6HOrW3rk,132\no9dLO77OSao,126\n_VEDJMixt3c,147\nqIalODmFrZk,197\nFecoe2kJdD0,178\nZPjREKxiNsQ,177\n_EpizUY_las,172\nY0TF3T90a8U,147\njy9IGBTGVRQ,190\nQiK2W8YshS4,105\npJIGy4zHo6E,126\n27moTiftkCc,43\nIJe-gy5sR6I,118\nnpvFfvyT8Pc,95\n3A97Vc1eExE,131\nymShdFJoqiw,177\nsG_cgDlDyEg,122\nPVEIr4MGaT8,182\nRWm6781MWb8,122\n2fbk5E4JTkI,210\nf6Oo9vLtKtA,134\ndK2oGZK490w,174\nw8mbmSijd4o,186\nilCjx9gigWI,103\nfq5JFon-LOs,181\nHRJ1g7i0Ob8,130\npQZkA0jRiKo,123\nHYqSugRiG5Y,158\nV_dtlMkvp2Q,186\ntkNKZ8e4aPc,114\nUtyiyBw401w,167\nO4TI2Nx8RjQ,114\nSVQDD7TK-qA,179\nS-M0BOzttdg,164\nCaIXZsmUl4I,164\noOBu3uqpW1A,152\nltcp0jylvgQ,161\nI8gdjJYDJ4o,170\nqB311wvyggM,97\n_qh-4JFLd-s,158\nmbRL9NE5NXk,180\n4_p4EAmMa-M,163\nItHtrNSJwDo,127\nnBGdf1uWu5A,145\nbugH1m4LteI,126\n-Dny2rWieIA,84\nDI5t1Bxfy90,73\n213l0Kv26uQ,114\naZGpjXdKQXw,153\n6VUothtoSeM,138\nwjVPv5aO_no,137\n5yGE_RpI45U,148\ndgM9V3lEZvE,137\nToF0U78xIyA,109\nMvkN3003iU4,100\n9PLm3XZsotA,154\nzS41k2xmQUI,114\nT5p0IaOt3tQ,156\nCOSkA00zJlo,111\neMru-ZnAzUk,169\nPdKfp8IWgGI,167\nKPOx5tioLeY,168\nFGLxQHJ5NEs,111\nzKATih1nvVo,89\nI6JIv4ht8OU,179\nGRrLWGMz5XY,150\nA0FwoprE1cQ,158\nosLhRtHZ4Gw,179\nRcC6K2k6cwk,169\n14Et05Okf8w,129\nyEKOx9OHEz8,100\n3snpAmY2xeE,161\n9LqrBRqFxmk,179\nUc2sp69O0uU,147\nJb2egULZePg,138\n1BS3mo_yHvY,163\nkGQbCYm2kx4,173\nOui5yj3OvxQ,179\nPI35KfPB7nM,123\n2NkV6POGLOc,126\nh9GHe5K0kOI,91\nZ4ScRG9SDSI,179\neiKrNt30jS4,139\ndVFDYCPO19A,109\nG2EcYJ6Zjrk,180\nZ_7N4TS_AzA,176\n7_G8cPqQwEM,158\nXO4HxR3dPsI,170\nbp0aVPeUCrY,131\nab4MM9cHidM,137\nvAYzTJIog1U,48\nONRzdzRMVsQ,136\nwVC_xkrm6kU,162\nU-FFwUkA2QU,179\nhK62U-Gm_hI,125\nY3NbUilKutU,132\nB46nugc-4c4,164\nD97vMpPHzDg,172\nhRg2HEpwD5A,179\nzATNPZTinmM,177\nh6iHbAju1cI,89\ncP63R4QwDFI,122\nc4X58OjlVPo,63\n01Im5dacdqE,169\nC-uCzmnXn-g,179\nd2uvpiz5up0,120\nTrx5K54MNp8,176\nt2NytKIhd68,161\ndudDh8KZiTE,174\nlP-A8UaVbLE,179\nms_ERfOYnqI,104\nmbBhikLj86Y,126\nyt1pZiuyKJE,192\naCqeaDIGLD4,175\nVlfBJLU-8us,213\nU-R21NaE91o,179\nuUEpwPiiGco,175\n8YUnOHihAU0,131\nfvNfhUZ-5z8,170\nNrhBIkWlIfA,179\nSuEt5n-k0e8,124\nPhkGK4ga-Gs,174\nN13exKaQgXo,98\njRSw_0zpNE8,83\nIXmWL4J2wwI,178\n5dlDHt93ng8,179\n1O9Sgq0FK4c,145\n79WfcpXDbg4,154\ndYafG2EuZjs,146\npS-KE1LXpXU,74\nR7qVgpQEVBM,174\n5bWanpZTnSQ,173\nTSxB1wKzjhE,175\nw7DIFgkIh4o,160\nBWR9aK0vAAY,171\n_6IlaKlrXbs,132\ntrKur9bR2aE,147\nIurXrQqZufM,221\nSqSZ5RSaT8k,215\nzUhsEXaj_oY,156\n5i-LMWpJ_E0,116\ndAlYuokC9R0,138\nAwr5m5-ocv8,188\nAi5tZ8_dQUU,152\nDuYmyHWZqwE,92\nmGAaR9KKszs,79\nz23vdob1grU,180\nD8gSV_8abXc,177\nqPkKjKAyJ8I,167\nuQpHx3lBGms,108\n8xZ0jOhAHMk,156\n1J-U8tLUlsg,155\nJmls6360U9Q,87\np6HbXVaNFfc,221\nVXPxIwL1e5g,143\na_DO8nd7FeA,125\nR1GZ5ajb_xc,189\nGy9Wan4jskg,176\nYLjwEodCmT4,174\nhAVDAEaxv_8,138\nB5goHV7tFnE,168\nrGtJbW9sRbo,131\n912ib1YghJ4,169\n7rJZx_l_h1w,169\ngrpGRWYL6mQ,157\n6UNDrO9PrzE,63\nlOJnFwgpcMQ,174\nlMtWWls4oas,180\nmj04qm_DEp8,129\n64-EdvBcZYg,176\nMxMpRqQQ6o4,124\novPXL1WPTMA,85\nGbOXTIymvqc,164\nrrMvGHoW7aw,153\nxXi-6s-qrQM,115\nL06qVvXrJus,91\nEuZM3sfjqno,179\nTmTq2M6xgEs,134\n8rSdR6dU7KA,96\n7DP-JKwZrA0,132\n5SkzHjQrCXk,152\n_oEolYMce4c,77\nrW1_EfZ2pWU,153\nIvgFrEk1JqA,171\nPcyonXZoHfQ,151\nRa7oqFqj9uU,137\nx5ajdqqytyA,177\nJLvkvjU_iyY,120\nJf_AooayjPw,188\ntdADTzvJtSY,121\nVZM1S9VcjAM,167\nXuLHSjIXpJk,131\nPXmtu0Kd0ms,161\nByN3jkG-PzQ,179\nqFprLPWDd-Y,176\nUczxnDAsQjs,166\ngJvoeKHjuvE,104\nyq571gv49HQ,178\nw2z6YPTKVsA,119\nJSX5qtBpL2g,153\n8o1QfQXKstU,142\n8i7z8cEA4IM,135\nDDaR9vzYJWA,134\n4aKmbFnV-mI,178\nAxhQq_-31FY,178\ncwOh20xN82E,138\nPzk9hsEacmQ,175\nQQAd5xx0XHc,185\nVJgFWMPoK1M,115\n03jGqiF-0Gg,179\nDwiczhta4e0,163\n5sNY4Rn7bYI,109\nbwj9ig-venA,155\n_q1BSBGTR2M,101\nU714emx9EJQ,119\nqyXpj-yVjVg,147\nxd9K2o_ZDdU,147\nFdq_l2-C1wg,168\nU3ua5aIvPNg,113\nV5P-1Vedt5E,191\nh1aJoWg4vGo,143\ndR0_tMYKwXE,161\nO4TmwflckcU,167\nn3D3JTzaiwA,118\npz6wAzZlnhE,95\nLszhBmIWjeE,178\nrKwnRWbuCx4,136\nXf2ZsLFeD24,149\nm3UDahZjiK4,129\nlYCq6x3AHYw,165\nCj80JkVCCpg,83\nNQtL20JoP3Q,74\nY4SSkX4sRMQ,80\n3a6TxHEyLdo,65\nyxlXYm5Uo08,105\n1WwlHv69kik,127\nHlsvFTNrKK8,179\ngFDIKfe91mg,126\ny5_Q3HufngU,148\nzJ08DhVEAiI,137\nC2JaJ_FLYiM,166\n6xmaoTphmLY,130\nUCCkKfTVEy4,152\n0I8xeAEpb8E,179\nntnqp7-SG7k,113\naTc9vNCS8vo,190\nJ440ql0zXuE,201\neAC2kNiKuEg,139\nfyl1lmsVuQU,128\nDUU7WFTBgBM,177\nQCsjm6QI4WM,180\nC919Gt7Yd2g,163\ntStZuBeyeok,167\n2GM0LKQ-ml0,176\n4WibEcqn1c8,231\n7j5VT6oDcVw,106\nhzmZJcPlJlE,187\nlKqBsgfSSU8,149\ncXm_h4Zdwpc,131\nlzo2hgdDUDw,114\nuXG9v1_X8jc,178\nliDkvm3hMtw,130\njV76HSEeAPQ,157\nPv70ImW-l3s,180\nHBPQtYCDKrk,176\naPdLYN69cfE,190\nFb3LibJlRdM,179\nxkzlZGohQ_4,168\nkzVO5JrnEJ8,160\nT2SlDOf410Q,177\nFt-7riREEaA,176\nVfi1V_SL9H8,180\na6--cEjo3bY,179\n6PumiBR18C4,147\n-wBOjw_08o8,180\nmPxP11XFKcw,136\nQHjr51lAne4,179\nQx1wXZHymV8,177\nLRGzyb7-EeA,106\n8KuNjb2xEoM,186\n5YEw7F6ri_0,174\n3EeGyS1BOGk,222\naucs5KRFzhE,206\nEpzv2FLSjhk,166\nRdTIzSuw-nI,81\n07KUTJpbNAQ,103\nX1ByBEw-WxM,148\nmMG-Op_PPEE,162\n3BIyw7X0j74,151\ndWWjjk3Ody8,76\nUUSLRRjc57o,151\nP5kDAUzl-T4,129\nKnXZP5yMlgw,136\nKVbBkEyaoT8,185\ngA3wJRuClks,158\nwWpNqaKrq8o,144\nYgnhijYmavY,116\nvYtc_bS47oM,98\nv4tdwXAnFnU,164\nPvqQnJ7Fvz4,91\n2BaBf4EEO10,73\njjDuR4d7Iik,181\nWUVa_vf09dg,112\nFH6ODEaH5hI,198\nQ54GdrlgRoQ,170\nHj12WETYG0U,174\nBG3bNlh0qiU,140\ntf_RRItKJm0,150\n5V-C6ziFKMA,66\nbDcFILIfHU4,174\nMucDLDFYNDE,124\ntBVoGbg2ocA,179\nZ2-9fWRAwMo,173\nXMPTy7Iaw9s,173\n91nX46JsnlU,162\ndw95Qsj59NA,179\nVlSkPA60ujQ,166\nDLb9vR3Zu3g,179\n8BplQQtTt_A,89\nY4XiKFvQ1rM,186\n5ArOFrHp9Lo,144\n7jXZpvSkCaM,159\n6lv7o-rzkWM,111\nPX5QjCErMgU,115\naaaPoObIxrM,131\npPcxCk8YBVs,164\noIymf1Bgmqg,121\npiJUrPp2U2Q,177\nTlxOj02Wodk,125\nmz6dgt11n-E,78\nTn44a8_14LU,159\nODeWs0Eu8n0,160\nDE6io8Y3FQQ,153\ntlJM0tgXu5Q,114\n6rDCHgWk7dI,179\nu-z5139CW1I,118\nb-w1bY8qhnc,178\nsWCjRo30-Ls,179\nSAQN4EyLqZk,142\n9hNNrKNPGVo,167\nvndiMloYcYU,169\ncMmi5sRe8wc,211\naRMHp-wDvnE,100\nedHmOaS0lRU,177\noP07gJASrGg,98\nsG41m7hVl9E,171\nqzQdwPNUcME,167\nB9oxe-Dvvj0,148\nDefILRrX77k,181\nKrBI7YdIPYk,201\nMZXC37sbqUM,132\nA7gKFleV_JU,134\nVvSlUEWVleo,163\n57u_LsqMoys,128\nwvknCnZ8HJ0,145\nE0i4dabbAcI,126\nH85jp6COWak,178\nkpufOE3FIXA,122\nekakyXFzHwM,101\njmuC1ebmYQg,132\n5Abq-DZrjB0,149\njakEl-SL35c,187\nDzQjdpw73ZY,115\nJ3J92iSdERQ,129\n5wErjt1ukFE,160\nCfsveeSvZNw,179\nzuqEfWjAAEM,129\niTQ4b0d3HxM,122\nGLeGjBbLSJI,133\nGJVYWd_3tzU,95\np1e3NC3IIF8,192\nZtHl67Oeb5I,107\nGoDxjaW2if0,179\npCFld9GCy_Q,155\nPXEJAEDVUkM,154\nt8VC4GBHwds,106\nptJ8x9AERwA,127\n3l3rJxuxpDo,127\nfWx9V0xoYsI,110\njojFdN-oysU,135\n7fduMinwJZ8,137\nnhDX2exjhGU,145\nahxDiseuAak,118\nxgA6VKUVRWY,179\nZlqovh9U5v0,148\n58BDrZH7SX8,193\nV8M4lPWWr3o,108\nOppcXf2Vp6g,62\nEwsHFGh6fkE,130\nK3dG3JrXAJc,177\nfS4vBoC4Di0,131\n0-Whu5Hlbz8,154\nMviysUwcItA,142\n2rPDGz_0qvw,166\nhOB4Qm1IiOY,144\n9zdo9xIvR9M,210\nrzCeSHk3aVY,147\nVHF31ybakiM,133\nEML4kWiax44,178\nqe8IY41zyCc,140\nuHuDwL4XEUE,139\nnwQtd7csTKo,135\nwz0UlSqctTI,138\nTt7LWRxtRcE,119\nw8mpECLURqk,127\nrbYJb_i2czc,98\nALYPTuyCxqI,167\nVnLaIBz4VMg,175\nFJZR935H0hw,190\nwdVtcHMYAM4,152\nvk3s_WgZl1M,139\np_wCMFyHeUE,128\nBi8Spey13uY,216\nm2yxUTpM3IQ,173\n_J6ipSZnD2c,147\nBiuCpXg_jgU,169\nsaTBYjmhcok,164\nbzSIHZcXwvQ,131\nFw19beLDqn8,113\nZ2xooz6844k,152\nh5KBS20Ke6U,147\nAZ0AsuZu4ds,164\nbvITByUy5fA,154\nb4vpGhO2LwA,113\nhkEXnpQ_c5I,141\n-LfB7USrdis,180\nPvoBUI7uz-w,176\nUFFWH8N9SLk,159\nfpOQzt9NtX4,147\nccH057kbWTg,204\n-Ww_Bo5ghiw,147\nk6kWvjAJHh4,179\n0pPOxAQwRgQ,169\n-V7_zk4wpQs,178\n5sMFxEL3zhw,179\nx17F1j6spHw,178\n6f1VnWuk4C8,150\nbhEMe--tKlY,177\n8lnd2BulFkU,161\ntTlhLBjQdPc,174\nV15AidhVCSw,192\nJVo7oslbnjA,131\nSk0iV1R72OM,154\ncTR9Hnxfk7A,127\nyGYPTb9T3MU,171\nLd8KOUtkHHY,175\nwPmgfWpamb0,141\nd82uV320Fzw,91\nEtKt8Q32_Rk,160\ni7Y0sXYRwhg,178\nD8NMSoCRPV8,144\nnTs76MbxqEM,167\n56o2aefvmRA,173\nH_xWhF2sSb0,91\ngc19hOdR99c,109\njvBp6TqoHWw,158\n3x0UxzeZBso,196\nLagXmjL6EeM,178\njFQAy28o7Kc,140\nY9H1jFdPzD8,124\nFSlLXYohrJg,104\nQiT-jk74QMw,134\nDEeqxarMzg0,126\nuzeSNmjxyNg,99\ndgdEr-mXQT4,136\nykBG9mW1yC4,120\nZd27SaRdxiE,117\npkwGEagSVT0,179\nKvfIsbhIQLA,107\nRsJmRjseSzo,121\nNulXXh0cw4c,179\nbplKA4fZ8dI,98\n8yACSHANED0,161\nhbDdiPNS3ck,64\np6AK2S2N6hA,153\njjpQORCD0ZU,131\n_9lOz8mySPk,110\n68CXG6t1mxU,172\nyw2hoxOuiaw,116\nwTLo8CdhxGs,133\nwKPbi9oL5xU,174\nwBM9Aa_HG8g,124\nRVu3EPJ4-jA,131\n0mjSZpCpsdc,167\nSaz3f-zPYeI,109\nHthNICfVKS0,163\nIORWBsyIivo,174\nTt7qQmpLA2U,136\nHDPj29dAC-g,141\nRHmp-rhCrLo,131\nJ8hfrE2LBSk,179\n24B-_HU7NLs,154\nfm12-rhW8cU,170\nvP7uKAQLwXc,112\nqC7HofT0v4g,200\n2vJOE2qvIEM,44\nvsU27J8K3Tw,134\nvhfk-aOAgIE,103\nxcc3vzgR9QQ,152\nAl3TIVxEPm4,165\ng1lpI9wZtiI,179\nNjfviAKKVj4,179\nsdvrA5qnZo4,132\n8QPhWhQ6zS8,106\nCnyvrkabX5U,160\nF8Y0hCMWyFg,157\n1YsmGZIZG0U,180\nItMY_4RobkM,132\n0djt409Dqps,163\nHwZeiTzih4Y,169\niIP23U3q5FU,116\nkKUsYDTykUQ,166\nZLIY6uk1pxI,128\nwfq7O3AgXdE,177\n3Ks6tKs541g,176\nPbC7alhpFBE,137\nlxlwKE2-3fg,143\nbKWBb1_NJe8,178\nw5mtX7FnO3M,177\nIE_d_MBVR6s,173\nCBbH4CVp1S0,117\nDYt__vjvf9s,132\nFnT4pAV1Cg4,173\nengSFG20kaA,155\nqY7EPDCU5hc,146\n_WE7Il9dZCE,152\n99kt5BrTa4Y,135\nYOlt7yp_QIs,169\ny9NhqnuoSAs,160\nOqgFY6ZhOfQ,144\nh7i8GGtWf_E,154\nG8r48HzrYHE,88\nOnJAp2emJ4U,122\niypUHnZ-9TM,155\nUDhWyFDDrUg,145\nWDrQaK1i_9U,151\nBmd8v7RypQk,177\n7oqRCOYvOS4,183\n1I2xNdoQXM4,132\nSWKDbfvyZMU,166\nkSmAfIP9CoQ,168\nlKzUGYETlU4,153\nuA1Kloz4Ics,155\nyuQipNK_BiQ,148\nZWe2pwIiWsk,210\nl081UdHizvg,177\ngHluHS9kX5A,181\n-CSIqCS1WIk,132\nNCUOJMkDAyI,85\nRHVyIHN6qOE,104\nk6u3YvvvgjQ,97\nUg6yhGuDcUQ,129\nk5bN73OnGmo,126\nk62E1AtOYnM,157\n5DaiI6epRCU,156\nQc3voNxG1NM,82\nS3Po0Tld8Po,184\na6XtVMtUZI8,131\n8RuMflmyF9k,177\naBxruaQibgE,132\nL589GA-KKq4,179\nMNQQS7QR9Vo,136\ndkDGK_eFw5c,177\npkqyDC9YnfM,186\n_RWkRZDPnao,172\n7HlSKPTYZhs,170\n3UbNdsZot98,154\n5Y7gOcsg0Xk,177\nzNSDAaeIh7U,170\nJu6_z5Wx9iY,129\nMUvtyyo1vdc,106\nAkjImI2Qpew,165\n-KW0wz1xBfw,139\nUAa5Lw5lseQ,181\n_txmRGsX5ss,146\nm83iX-zbiGU,170\nWefEB2u3fwI,91\nsVZLKLWFDYs,98\nHGrPKwsAvqE,71\nJaMejPOFVCc,213\nSfMSiaxLslA,118\n1A08em6Y-kk,179\nfQ09ePfYLpU,168\nWmo60ltq-TA,104\nGn7MHo0ZZg8,133\nQft-ZvHFfmE,193\nPXaE-weoKCo,79\nMh51HEise7Q,173\nbsbgDqKys5g,131\ns1-5EZM82lM,179\n6XRJuEv5Ya4,130\nJrPRGahKOoI,131\n198uP07pieE,118\nI9XmewMPVdo,139\nkd01w5eLVwo,171\nqiDGtIbWRVY,89\nYz6pNUcMwzo,123\nnq33k1fFyK0,96\n81mLKFXLNSs,148\ngTt8yvw4MJE,108\n8INjmc-WWSY,174\nk_pB_zV6kVw,110\nNj61hQhTwW0,156\nD143VuAxr-k,172\n-jtzzs0_bM4,174\nT5rzOU-4Bkc,163\nJey2YsDSyoI,157\nUkZVQNNzUAA,109\nxkMijsfMZBU,163\nVPXd9ANX3Bw,117\nG_5pbKwl4hE,134\nwZl5uWOpepU,82\nxAkmG6uqBd4,176\nYdowX3H-hGo,100\nL-5U2tIfxAg,161\nhfXW-z1-aUY,179\noRRupV-lwbU,104\n-FDEcmWJ2GU,180\n7LraDj4Pjgk,179\ndpKQxs7ashU,169\nrcWb_qea8Eo,147\nbwoxnQ4eLR4,129\ndVzFy-4c-AY,159\nqJznSue3tEs,181\nIrU4ze3VfD8,115\npbv02n_zKvo,133\nPJTb9EdYZDg,120\nYr3YqpkoN_o,150\nFq5yX9ENZh0,180\nERlyrvQbqP8,124\nETC85CgzTHM,150\n5RGxUKhhRWA,183\n54CMOjYbovs,178\no33ZCLXEHIU,73\ngW7ozVNSL8k,161\ngt6_2qd75F8,200\ndy3yjv2YLh0,148\nb2jnKIitsx8,126\nVBTrQhEwFqA,149\ndjpX32_UUvc,68\nbuqRQWuVcw0,172\nV25QF11MwDU,152\nnJwGWiuonws,146\ninMPeTx6hoA,172\nMFUZGrdKqtM,131\nKccpJ0xD-7E,179\nbdJcCwoJ4KQ,176\nkbb1MUQmusU,179\nOPuOk309lSE,121\nuTIfsQ15LPM,96\nvTTzWRdAN4M,148\nq_u6njqBaB8,139\nNdGB1rnPcR0,132\nLauRAuoFO0U,147\n_KzpueROmto,255\n0o9Fm3hnpYQ,179\niwGU5hY6stw,162\npmqBmTWq420,191\nqNOk4yyxE38,94\n7oi0cS5tNRg,126\nDxCjqhDD7X4,169\nmqhpZ30uNic,190\nKlvWPWFYvo0,110\n-Kv4O5dyrzM,133\n1C84oQva04A,157\nLNPf_P9svHQ,116\nxNwPw7mQnpo,117\nKVWBllfyysk,159\nzt4ek_5zQgY,145\nBGHB4Eyjqt4,102\nS88bgODlrbk,108\n8oq28m4uqe8,170\n-Lrndfrc9yU,175\nCE8VRLW8Zw4,130\nRo4xPHjRH8k,137\nccJ95yYf3Ms,93\n1ccMqOW6LMs,146\nOosAKayGMj4,116\np6SMuW5b91o,152\nqL_XE00jzXM,172\nYg6sZ2htZfc,264\nFoiZPbPUnlc,123\n5OGX-e6WT88,102\nyYUtAKXuicA,139\nVbBi8ZIWbUc,52\nfzRvMylDVi8,149\nZPMDA9N1itk,137\nV9JniMBfW18,118\nWa3l6Q7e5aA,137\nmbKiHp_ljJY,76\nKUMoWS98jXM,182\nhKTAeQKaKu0,178\nehv1cHqfQ-U,126\nBxne2K4K5GM,149\n-QfKnft9uWY,151\n1m8Ac21hxO4,159\nry55--J4_VQ,65\nR0jAHXVoZ4E,138\nlbqDuUjm4aU,130\nGfUqvGxa6YE,151\n9OMdSRrUdy8,166\nhxwuvmJyM8s,179\nN7CWWZi58bI,148\n2BbpnPOIKIM,178\nd5gSQLPcya0,168\n9F5v795Cfo4,163\nmmdPZs0Nvvg,102\nGfhCds4VHbo,143\nwdwd_fCVhFM,171\ng2GlXX8nFHg,131\nD-gTnaF9LVA,185\ntm_W36kWahM,176\nBdZN3EJVjo8,78\nh7NG9ZEfyKo,171\n9riBff-h-hM,156\nIQWtTLEslg8,174\nlQdx2baN7Co,100\nfQy1yr_K_L4,195\nlMiVewLfZKI,165\nkaJbWpMZdwM,171\nyywlulXZ0ls,76\nmz4JJWjy-Uk,167\nsX8SScsA8TM,98\n-r_EtRqgj_o,164\ntvxi9MyoiGE,110\nGlVzp0Ldv4k,185\nPI6Q87pjO0o,80\nqnD5qOyIonw,179\nXR7br4b3gsg,165\nA83gS4JJXXE,132\nQP3Pzr7UFE4,173\n5gQ3nWBmAak,186\n2MxnokvI6c0,198\n4ri_ybNiTPU,116\n6FtMdJEg2ak,107\nuBP8cPLPWrQ,175\njW9JF2lCjqg,163\n1ugiiAH40_w,128\nE-gwIn1O1pE,216\ntpnUv93AAp4,135\n4w6WN2_l0wA,181\n7A6HQOrRDiw,150\nr_SuoUET-ok,179\nmCfKPXX19Gw,169\nIvGwIRIYlBo,178\ngwEoo0r_8EY,163\n5qWIaxikcbc,72\nk96h1dYQrj0,162\nA8nTO1XWlME,118\nUnllAPMRnKE,132\n8FJZS4bwRrk,145\nMBNiDwytFow,156\nw_92-vVfgrw,134\ngQNFCRom7c0,159\nMhS1b56Koxc,94\nDGpJ1ndBxOA,117\n0GYwcr3RD_k,75\n-GThoBQbPjI,113\n2rSnCcaMDdg,159\ntlLSqeVA_no,160\nHxtm9DG4k4o,127\nk01VcZkKDME,112\nOpwYfz6uFaQ,83\nLyhRCLswT6A,139\n6nfXJd8nV9E,131\nBl6M9MfRbcU,129\nPBVW7az0PkM,71\nWG_LG1CfsCE,173\nd46cDtFv_Rw,122\nJOXYV6UN3S0,177\nuHd2oehKwuA,179\nkpYZ4G1AQ0c,83\nB0vxLqX3oAQ,179\nCpAVT7Y3vpM,181\nnfteV9Dkml8,170\n-cPDC0me1iM,170\nPzjOxjO_LuI,156\nbgoBjzXp3ww,132\nKXMOURHEMpY,90\nBKYpzJIAkeo,178\nQHTbbfdmYuc,154\nu1Pgftn5H94,157\n6DmSVYtMoyQ,152\nWoN5cCs0l2M,177\n0RDDbfd_K74,135\nDaWi5EoJVGA,172\nSrNNEi50cl4,128\nbkLs-xLbpNY,190\nDaDZptGm6nI,195\nFQLXXM-nktc,127\ns33dP0ETrCo,131\ntNuPwipxx94,97\n9VsHtn_RSHY,227\nsMjmQzP9D6o,179\nz1e_c3E9ZR4,134\n-v8l6cCrf0w,104\nF1nejgJdusQ,179\nSWl87YF_hHQ,84\nW2gWVhYRyXI,176\n15bAAD-awjk,119\nrCUNazDU2mg,183\n3XD34HIx-00,139\nh1wWMu4nyRE,176\naIKVAAfZZeM,133\nDEmZWy1aDuo,165\nJWbqI-m3A3w,163\n__f2KtcXAxI,117\nf5RQrcIrlBA,178\n6e4xlcfKHxY,146\nosFbJZfBOyA,132\nBZTDkSXwBD4,146\n7RJnMME0XAw,119\nuFNIrs3jtEQ,158\ndHaZflS9Qag,165\n8SvHSEy3xCs,83\nPENNRVb6OBM,154\nglrsnwHe_ng,100\nSDq_ZTxHLh4,94\niDnE3PV4YNc,183\nlKh7qSp6zIc,97\nbIfMAhK7Boo,230\n9ltpGvaDfBM,179\nNFgP1bVZCy4,158\n5W60oPaZOIc,173\nxk9PtV1-Dl4,176\nnjq3H2iy2X0,121\nLLeKCWFnlW0,131\n_g-f7cZGqJ0,132\nEMKD4L6Peto,187\nE1k9eRHXFX8,161\nV-mlZvBRoOQ,135\no3ya6zEv3eM,174\nC77hQJ-zDeA,128\nZ2-qppnyM3s,165\nqLoufJLKN6Q,170\nX-lp4KfK9Qk,126\ngp8OWUqg4r4,124\nS3phStzHz34,96\n0v4aJAsXjCA,132\nGjhHy-kMAw8,132\nRmxqK1np7rY,163\n1gjaw2BNg7U,179\nsd2pBde6gkw,221\nqtRfpAJHi3U,123\nyzera03y4_0,87\nnVvMBs0TFWA,179\nTyS98_jQIA0,132\nGr18osLHHsE,133\nLEq4-b61Hoo,135\nV6WWK1gvpjc,130\nxTKfpU41hbY,194\nHIBYaeYQF0k,126\nUeV6eAtHp0M,110\n32QcvEuJYFA,120\nQeWifFsvr8o,163\npZRDwBXv7T0,179\ngzPiBOc_Nfs,172\n1HfZYZ2sDwE,148\ngkqqhFre2RE,195\ntMQjzrxE2Kc,179\nuhkfz535fR8,198\nXndQbcPIsI8,132\nIMr_irerhRE,125\nt-5usV6m4J4,117\nb8Dv782UIb4,113\n9cJ1ZWXeOXg,152\nAxUh8zdgPeM,112\nhG2yx-PTxys,145\nzFIHYJAp2rc,179\n6rbUAMnadso,173\nFN3SPnr9EZg,112\n07GcBnddoMU,178\nmtZ90MN57TE,176\nobnODOdLD7k,128\nIZ-VZCROw_4,152\nEm-hPjFyY-w,104\n2LX27W51kB0,126\neFzzQuYRw34,119\ncSOwRJe9hSs,130\nez6GguY40SQ,105\nCQ0Bt9PxosE,126\npRlsbwGqx8g,179\n4HB9b-ttI3I,131\n0cWnOxMXOEo,196\nx3Uw69aKF-Y,183\n2uZV27BttLM,170\nGLBlIYIlND4,171\nekqjBZdbYJU,121\nsm5Zgj8kjD8,175\nDv-ibHmFlS8,156\nnS-0lfCTcrk,160\n7hacgmRbdMM,128\nmbl4cWCn6z4,182\nEqW_b9Ec75w,106\nZnxMS3Nf6Ws,150\nBFaqEfhGj4Y,127\n1Dvx_8APGEo,45\nkzh2pWa1lzk,79\nT4ZusOrLSoY,80\ntwdd-yhC2vw,133\n3YGQ4oen7gM,174\nRbI_bPsWnmQ,178\nKlC81iup2Jo,177\nbx50ueZJgns,210\nAgCF4dXv2JE,41\n--ifbq2xY6I,176\n0KZ6EPv2Gio,96\n5X_ZiFC5RMg,131\n8fzGR29bKjY,142\nrDTZ6A5zsYc,155\nlMmTZ7oTDRI,108\nYH_vICd0WQ0,131\nMODlCaeiT0M,256\nQmEz0udgJsA,165\njvh9Kw3NbMs,169\nhQUBid6LIPU,201\nRZieTQla0dM,132\np9d7IXlAVUo,154\nGrJGkWkkHZo,140\nLJQAKDbq0hI,134\nocqy8r8rDI0,180\nWYi4Bp1hmC0,145\nHPir9pU9shw,78\nHwczxp7h7Gg,164\nMmtvzIGaH1I,162\nWmFiW2CSiO4,87\nCW2M1ZyYArk,144\n9DmxaUyjKTk,164\nkOe-yLCbA4E,159\nxR6jSh2HrAA,179\nyygNdTxoHus,198\niRIIcZuSiBo,102\n8wY9r2cpbxQ,100\nY5L_REhifRg,181\nWurqpe5tNjA,105\n0mRRULBvuj0,175\nYnfvc7uaDMo,107\n0-vcQg70AX0,172\nZP73cUcxidQ,190\nI30x5dMvcA8,171\nkFbDy90VZQY,134\nSBIKhBgxq6M,54\nXJsuAUwGz0M,188\nd9TdwetEIQ8,175\np1dzglJEqac,183\n6oUzjN26DoM,176\nyzTbstnZYro,140\nOJyRbpjlrmA,158\nW2QDEiF7SGU,155\nfY1s5Sn-GDE,129\nbdFo-WtjOmA,138\n-wSqiksvdD8,142\nLyGXFcfRyAQ,148\nF55uFHs0d-o,150\niJ_DrM05hp4,177\ndjTKMhvuXGM,93\n64cRTXIxwws,180\nOT61p6s77_U,194\nav2VWuMUFCM,128\noS3Bld83J_o,108\no6FUdj0_fGY,160\ntIy7sQGKtJA,107\ncqHKducp4MY,87\nqfKQJyqMnvw,174\nFT1C1QdiMhw,146\n15wjOeT6Qo4,181\n3hcHRAFPBVY,179\n25UjaIMN-rY,169\nYXFkCH90yYQ,178\nzIKq7DqdZa4,178\niG5oSrAW9FQ,149\nKaqzKhM9-nU,151\nYGwPTU-SvbI,183\nWLq3zSm5SkQ,176\nEYKOpaD_s1U,131\nQ0IQ3GHGXdM,180\nvOoyaqLrZnE,150\nFZlm1ledK-I,233\ne96_1NxL9no,180\nVBahsJrr01E,131\nMX7c3F1q8UQ,198\n7x43p4KHLLI,144\n6OYZi5KUFzg,95\npzZ9UdUTRNA,152\nRZvJ5MoPjGs,169\n20Q3Qa51MUs,179\ngjjJePytKig,171\nfnpUxSXWy6I,165\nUFo40MSG5Ss,180\nnCWBxPh4dGo,167\nQvfcWxGZv9M,173\nMq3CFDYCWfA,100\nHdbL45I6VqM,147\nHLw1Og_JXK8,174\nkhK3EggW2DY,177\naiiJ0fBFjCQ,165\n5enqrVvjxg0,149\njsyzJJFZzsg,124\n6QYw68kf4sI,126\nuV-0kDRYYbU,176\nJyQczb2eCf8,127\n0_7vIOvdKqY,131\nlZltw3ubrGo,170\nN5fCeYm3-rQ,154\nlg0P7zox2V8,109\nX2aVRBuYsNI,64\nG629a_3MkkI,150\n_41AKvC_uGk,138\nhMCFlfCw0HA,186\nq5_LSGwd19k,119\nBXNuNJhLWyw,146\nGwdgbTQ5cgU,173\nP_Iz-WhpmXY,131\nc2v3ZXKLzh8,136\nQk1y1yVQkJQ,130\n218nJYQ3oMI,134\nHl9OzCY9fVE,131\nbd0IiiCDDGI,128\nPpxLYsi1Yk4,95\nXc2OmGesDgo,125\njt2BPBAWiEQ,99\ndzzijuZof1w,166\nLFg8eGuhlak,179\ntUiVEKK8rWM,207\nB8dPQzwGcZI,202\nAOv5WvKX57s,156\nGdrUYcOTUvY,158\nm9Gg_VQP2zw,180\nkC1Q45BQbY4,178\nL_0imHGhC3o,126\nrGnXd_krGA0,61\nCL3IXUZKbto,212\nu7DV5coBXSA,114\nh3g5B5JhFcY,139\nqA_zzk2c7G8,107\nsL0fO-3JquE,164\nYACsFmbB9Ok,137\nAIQHqvG9Ql8,177\n7UnKOlleCCw,127\nw_5OidjXy5o,162\nLYBdGadPNz8,144\novxjAnlr7qg,149\nRFAiq0Qr6uQ,138\ndBbxzOOGUqA,147\ncCwn-ROhwyo,257\ng3WSsm57iVM,97\n_SdYxgbXnHs,42\naDvjCbdyEHw,186\ndi3Xh95aXp8,130\nVmo12BffgQc,148\nA6oAEu3DbKk,178\noMt4F9ELo3U,176\n-rMac-9Z66w,179\nMQ2PrvpAT-k,135\nFcqJ2a3Dazs,125\n5Ugqj1RATYE,125\niddBzE3syI4,91\ngm0I_zdgs8o,153\nty_jbbvZDkQ,111\nzkWthOfGYgM,86\nti3HSBmEoVU,142\nyYCVu5ZSki0,122\nCrlVTZFPnzA,179\ns6QIbe248NI,179\nu7IXETT9OEQ,95\nJ7_oE1uN1pU,136\nlxl55rsNihE,178\ncMFosgxgPAs,144\n1Dd5HFJn88E,157\ncNuHBU3DIAk,172\ntF6XBuvWdPs,98\ncmlELkvVPeQ,150\nS1sbKYDgyWA,121\nUDq-H6B36g8,140\n40JQrUnvKUw,147\nPsRTAWDrNYo,179\nDTNDgoCP5TA,170\nKMr9bWPy7u8,179\n8Ojsvc_KsDY,145\nFnPOuK9RHH0,126\nX4jdgckXC9I,111\nyIG_egCmhTw,130\nFRvhNHgU6fI,171\niwZN1N7Denc,102\niyVCFSW_W1w,178\nEfHvcHYz-tY,172\nQj7OIg9Vc-g,172\nDlkXnN0cENI,171\njdYgR4Vqwuw,164\nbJbTcRnSFAA,175\nrx4sKoITt-Q,148\ngxhMfM0QlwM,116\nfPcbyFeefXs,125\nntVZPACMOYA,169\n74PUHyVj4BQ,180\nbWQ1ekGzhwU,116\nhKuh_h2nzN8,173\nFtPj029E3Qk,130\nNTvvUL9OgLU,165\nBB3VbfL6Xyg,141\nMeyU68qSBMI,66\nxLZDij_-ZRw,144\nVkldXV8Pgi8,138\nIVRy-Jac660,56\n5hocAgn07-U,108\nbaNc64S4DHY,124\nmJ7S9aUZgZA,153\npxSjP6JkAis,130\nr8I0oejVPJI,168\nAoPqvTGZv6g,142\n4GYKaKvJ4Ng,137\niJKQl3uGg0I,157\nWla8a89Vm8I,179\n6GhSM3Gu9VU,177\n-QdBG7PfFeE,83\nSlwofvltpRw,178\nHCRagorblVI,180\n2yWYCKoqKmE,127\n21aXGNHDBWQ,168\nmvgRi4K58U8,134\nhEZcqWRB2iU,165\nmExTnHwAcYY,148\n3NpYTks1mDI,140\nzLkNUykewic,87\nSTl0s9g_FwA,101\nVBHqNEADzfY,156\nN9EnEuH0Tgo,52\nJOw4LqyJKyg,136\nCony281khiE,111\nVCLL9aD-VKw,146\n3rlz8tdE5Mg,179\nnXqveIQdCvE,81\nNONRLC7wAlM,77\nRuZhnKanGQ4,165\n772oaU4DFTI,108\nSF5EacV4NI0,125\nra42YS4NRlY,138\nZ9zrMe8Gn1E,161\nbD8jQGwyuBU,171\nUfoHq1-vpss,169\nFYnYxm5Awfg,190\nUJQvNi4m4LM,159\nCsn39S3c0kI,107\n4UOnDFoEPUQ,178\nIwOoajZyRZU,161\nMkiewChfW9k,136\nlsSC_8Aqums,99\naELUig9qu3w,83\ngvaa1ZpqoUc,148\n8MSvuqf--9o,141\nH0-STiAQTqQ,165\nrZs0ZkhzpsI,135\nKUMhlMS-z2I,191\nLgKIQbxZZgY,198\n5-2eKvFCqw8,101\nGzMBisWrn_M,180\nXcDzb6AeAI0,190\ndIy6QpVNPuo,132\nM1hXX6aq1wA,178\nqV6EOCw8Zu8,192\n5Vo99FUjbrc,65\nFU0HEv8SNrs,154\nNOACyJ1CYfo,162\n2tqG6KMgyv8,121\nyB1w-AypA_s,168\noY1tp2HG06w,179\nyijQXDtxgic,118\nudwKI7oFT6Y,124\nzMbx4rZOMig,151\nGrCmVFX9tyQ,124\nSOR9UOc-alI,155\nZBvJyUTIU0k,179\n58DPO_8Bd88,177\nZH81ElJu-Jw,132\naL_6-dQCzwg,134\ngv0zKrCQscA,114\nB0nhCPv8VB8,148\n8-S0Drs1N9Q,165\nDCW8XHP8ap4,154\nP7J3raOVLNU,165\nlLItY-Oyvt0,212\nzY2G4v0b5IU,178\n9RpdDbHL550,152\n15WevUMiJI8,182\ncWiljyh4NR4,178\nVvfIdmaKwfQ,149\nn94um7eDILg,119\n3uIw6INr36g,149\ntFBSGc3v7BI,142\nykcCGhbl1H4,127\nn0Cg6MnUw20,144\nOzliqFzK36E,121\nBwpvq4JhqY4,171\nGvDcscZXfl8,139\npXrMAjB8ka0,159\nQEv3zzKyiFQ,188\n4OEhuma-rrY,116\nPQbyl1vsn1o,180\n1asspYdV3as,106\nb5I9yFdAMzg,117\nTDsPAXyCA9A,178\nbqvMCDQ3HEU,155\nSwarL21fqj0,128\nMcf2hNBzwqg,160\nppfnHlRju7Y,184\nvWNDTaQG9jE,162\nmhCiFB07I2w,154\npLooDtjrhv8,166\nI0E-0kTdg-k,126\nwXQ1EhVW2xQ,165\ngq5WIcSz2ko,114\nYqRnYf2cyI0,186\n4QYYeDp44H8,131\nBf6I7N-DC7g,78\naUAVPdrvwoA,111\n2OrlbOFhcUs,179\n1kPvrYaCi4c,175\nPkLpd8Eaah0,163\nnaPW3XAHz0g,174\nAwtSK1gLBBk,192\nfYNZsz9o3Sg,154\n-ZTTZtzzbmI,150\n6AWo-9MFBug,178\nBLejeXcxLdg,163\n6FxHQNSukfM,92\nPXokYGWGASA,178\nW95X207kQxU,154\n5NTDlhH174M,120\n-QT_Af7RLjU,136\nd5Pc-tNsvT4,179\nCujcdaQpYWE,177\ngiajSDY8kCs,177\nw5WmCh-cRCA,179\nLK5QIZgbfZQ,170\nz-p4LnzhnvE,150\nOwDRBPO9eKw,119\nr_ckU9PkTbM,119\nC0vM89y4088,186\noiYBUM-EE-w,134\nF1ZPE23KT_4,150\nnWd-gLPa5fs,179\nx9mLSJS0n3Q,99\n8gIZMane5sI,175\nBr9zd0KkFTU,168\nbZhBhpm6m_A,176\n3xtKas3-ctQ,156\nY9b8tw9TR2k,195\niA_KZwlnrcI,131\nBXXY48jjLtw,104\nukOx2hZvXkE,151\ntG1crFI87ro,179\nrjc3Et5D-2w,169\nKmnf2USgtiA,155\nlhzE7_0RSow,171\nSUfo49TsWOQ,136\nIS-TH-YQbL8,98\nhp3n_sA4Sqo,128\nN6bOUves6hI,129\nqYCEXS6Ws_c,175\nB-Wf5QOHPxw,194\nh5D7aOzmDec,147\nWFAu7jYslik,94\nZti44ptZTrc,179\nx1FhrhoudSE,148\n1Ltz-vQPqgo,108\nNePF08sMSDA,124\nTSCcj7mYuhc,131\nc_u4oXd_Lfo,200\n84WvFryk-1E,179\nabgTPYfdbOE,118\nKzUKcXxbU4U,105\n0W_kwmGYIS0,143\nhM6KNsz7_mk,148\nz_a4zak_zk0,107\nvwrWW26_JHY,155\nmsqRzlYXXQE,86\n9GBxXdJBSPU,77\noToIYlwJY9I,150\nFAhcPXtCykY,128\nxeLH_cCCgr0,107\nS0wF9tshsyk,149\noUXKSovzDMw,194\n4I9-0dipqo0,167\nhdnrorjl0WM,146\ntEWLG9sG1VM,116\nxJb5tOlE1Fs,147\nJYLVFSmlNFs,176\niGVsptoMsKE,176\n1Kk_oah-wCM,86\nTYA75RnDMGI,175\nB0sO3FekHUU,140\n1xXjjahIwr8,177\n_cZ-D5Q-26M,136\n415kITLNgvg,131\nXwFR9NZfhUI,198\n0ekAvNp_F9c,179\nqzjPtczHQkU,257\n07I2_etOYhM,105\nWXUGWaYOnUs,183\n85O_vS9vSCA,128\nbWo3nlFcH5k,112\nIrf50_-vVtI,158\nLFVi_krq2PM,162\nBQ8vGslccwQ,154\ngS5vt3ZE-jI,177\naYTP2-S8fxk,175\nnPGxeiD4mgM,152\nMF_RlYTOmco,157\n2iMVLR9jP1E,149\n4XKZFS7EoCU,136\ny3NLNK72mzI,147\nFbV4VCCk3Sc,225\nZDbWeYRT7wo,142\nVZRUqjnEPSk,156\nDBooQQKsDac,110\n7AB4ab4LtFo,176\nR4ZGoNehEp4,94\nermD7PGA3Do,173\nzIWGx1aneus,140\n8UscACJkVxY,173\neKxv7whkFMM,85\nXuGD4tGeLFc,180\nToI9OHLE068,184\nSuoDkikuZjo,129\neYt5GYOLjNI,149\n_B6AZdgQbeU,122\nQhZbpE7mdoU,91\nRMdS3Hi-rMA,175\nrjLuhEOhj-I,179\n0GGOfY9uE1Y,112\nSM2LxRKqYR8,180\nhotQs5eawqM,158\nTvxfLhFGRzY,170\nRPW4sx3UYjU,172\nt1SbH-c0m_0,170\nBR-kA4Jnn8M,69\n1X2YeXs8FE4,123\n19h6CYFMUBU,178\njcjMYkD-e80,215\nftOTPUX7vss,179\nN35FsMxEmSc,197\nZ4RCK8LAFM0,164\nUNYBtjHAuSA,78\ntKei1kTWmKU,140\nhwTf9WurF4U,166\n5xnSzPHjw10,163\nEnAegC2mT8I,148\nEDq1QNZ_JJo,166\n-YiImyOVCj4,134\n98O6geBet-w,177\nTZ9xan53wuA,149\nBF6tMv04X9M,109\nhIHC635Q9dc,143\n9EOazpvA7-U,208\nUJ12I9sHqK8,175\n9d30_Y2bF64,176\nLZD-86lIgYg,139\nTMeiAg1kXKs,165\nWOBy9Q8Gf9I,71\n2QKuy-mlQfI,132\n7XaThsXXj_M,176\nqIAWFde0FO0,176\nTA4zkT8ov_Y,160\nnO7qxQsQK44,166\nx_BYzj4jQEM,149\nXa36SdTlCZE,167\nx_-G1IuNv-o,163\njPRiyRmsLBo,92\n4FkUmPvbDQs,185\nwZcRiRs1x-8,144\nbm3QkHapg3Q,114\nkbGvnI1qIz8,131\ntaL06OVt4kQ,164\nfBNzgfFkvEo,156\nEx-eX7zpZno,132\nox1SVCutwv4,181\ndkjBBdHZNUs,84\nuPFxRUeRfu8,129\nPZBy1m-MmlQ,103\nqbRoK8WhJQQ,170\n_iMsHacXWd4,136\n-PzL4MTu3to,168\nfR8fl1fJftU,102\nwRN8Q_Lts7k,126\nTXAJapM6E-U,142\n1x3IKujLO-E,191\n318L0jBVIKM,177\nVSdIYNSkQL8,136\nVEsvArkVtYQ,209\nfB8_lNQJ-JM,116\nybFMkEvDx60,128\nb3lOpSXhT0c,154\n2NNTVLRN-Ms,157\nPgotX7s-2YY,165\nyQ7JLXkHq2M,164\n1DTrvZ3wxy0,146\nARgghWSmq7Q,86\nrRlfzy7Rxdo,177\nHCtR23MGwn0,65\nYR4qgOi7VQ0,118\naf1gSplQfPU,95\ntS36ZnWoR70,124\nzksgFqKxbVY,127\nKx56Aefjn7s,148\nQ49KVa7jotI,155\nHj52vD7KGxs,136\n_Mr6MQB8vRg,186\nBNgJCuwM7CQ,169\nAC9URVogG3g,153\ngTakZ13l8xY,120\ntqmbgqyc1bc,180\nVq5QdeqLYOw,173\nxqb_BP27cMo,132\ncBFrfA6TrB0,168\nOSkFsRL177o,177\n1fp6lBNB7aw,142\nJEbShXn2-Vs,164\noS_Iap5D9jQ,218\nMFbZe0ZJn04,127\n_s3bHABazDA,139\nblGRLfNok3E,94\ni7Jg_6-fYF8,159\nG1OstoTh_Bo,121\n7S3biRDwbAc,171\nmXz39lQAEmY,140\nG8_iVf44j-s,156\n68igl3sbzFI,177\nb2hhdMiOTOE,158\nUoMiVPjDb10,153\nBjsuTimPBAM,220\nUk1MJFwGMjI,150\nmHgXG0tmomg,149\nPg_mCxaEa10,180\ngtngV41jpcw,81\no5CBItcNkFs,132\nGl5GVViqvjo,115\nHo0k513yN6E,185\n7oOKwZlj4VE,77\nzsmP1h809F4,181\nMnLvPe6VSTM,131\nvmOBZjVBCUo,114\nDCThJoIT-bY,162\nqqSS99m2dQ0,165\np3ZnaRMhD_A,224\nnm86_ZWeUzk,147\nj8cGENcePl0,131\nSNwh7RP56S8,117\n6VeUp8hdqj0,133\niMaL4la2Q78,162\nsk0mjld_eow,177\nZ7QbvD-gd0s,139\nQLXSp9erPv0,170\nGUDrinKzSus,147\nYCiimJ7d2Cs,61\nDII9AQZoUTo,74\nTPDKmRQddq0,191\nHlyzLOPYuKc,117\nhKH27VchVb4,177\nhf1wQVWs0DA,42\nFr6fIMIc_Jo,117\nfC1zzL9DjdU,177\n8PB5sU_QcUc,167\n5jv7TlhbjAQ,138\n1zi4R4EklsI,181\nCJGeUFtiJP0,134\nKAT5h_fimTM,133\nTVViHShXqC4,119\noGV14YsOvWo,154\nQPbUj6Ks8j4,112\nCLWCgMVf6U0,176\nCOy16bTI_zE,151\n43nQlnNaU-8,178\niqZmwwUvgVU,157\nYwUShaY_lew,197\nIgs1WM2pA54,152\nSq7RMukT_sY,130\n8YQZMbgpmIo,181\ngIaqrkn0ymo,134\nfhCVsKgC12w,137\n_BjawJWZIxo,183\nvBLcmGPbryg,184\nKEwC94CY-Go,131\ng1axUa-NsEE,179\n-SkeK7t74oo,133\n4qseBKnxIpQ,126\niaxDwgBzVFk,169\nwUVJf2CkNNw,131\nPW3WxPo74c8,178\nbqwS3qz3GhE,169\nlQLchoQRlZk,169\ne5cg1EeFISo,134\nI-93Ijkhy4I,75\n5AQC5oeDhDg,154\nei4m-fQ0bak,134\nsR0wCC271s4,124\nCn_nTq97C7Y,131\nMP414NY4kfA,124\nhgQC-VGKUHo,159\ncGd2BBjzb0Y,56\n4tVEuWxns6g,178\nziue9g2nXZ0,172\nDxdOJYRdABY,143\nyk5d161ytXE,205\njHw_p75_LfU,177\nFiVYtNf5Hos,94\njc2T3qbPJNI,127\nPI82pNmQodk,148\nQqQYNj15OfI,168\nAvDUQXknug8,177\nKsYil1zPabA,175\nBX-hxkRsaT4,144\nqEb51O12XFw,120\nQch6oK4qX2k,180\nMBDyD5A2mQk,165\n326RvY72nmE,158\nY4-vFWxvdjs,138\nnepc-GLWtfc,86\nSCR9s8egrmo,99\n8QzFJA3QM7E,176\nzYeRo6OtrYU,99\nxwjw5TFPKwA,140\nw4GgZsdpMDA,180\nnM0h6QXTpHQ,89\nUK-vT8iapA8,178\nv1ef0grzZWM,97\nUjOJ-AMtAzY,172\nie6rKW_Giqc,129\n1jK2Y8vAM1A,108\niVsfWht3zmo,115\nNXedF2XcFkA,176\n1psPf8n2AKo,176\n0LArIo7OUJ8,180\n9-_TcYrv2YU,128\n688uSEwvYnQ,100\nL7rGRnu-2UE,133\ncsRJ-T2LNI0,162\nItDFQOAqEuA,130\nkheP3iy8-6E,120\nmHRbCgVCbIA,140\nfN0w62AurJA,166\nKxyzb8LbVKQ,203\nMw8bNmfoC48,168\nN0gOaE92ogg,150\ncn35LhT9zBg,134\nq_xuviCDyCk,212\nYRCIuvKg4tc,179\n1Zwl6vfqjNQ,176\nn7l2RLvI7Ss,157\n7fxvOlQLJWo,157\nKnPfaGzmt4M,127\nNvvU_4PsiKo,107\n4wv_1umbZ-w,179\n8QcReRkM8wQ,125\nkS_QskTI8WI,148\nIMPHXKW9ntw,124\n9jL7oaQAPMI,130\nKQDbtR9Z-zo,74\nyoYPBCFehng,96\nU6PrB5bbWRM,69\n6Xn4tr2grtc,84\nNTUNJ7f0tHU,182\n15XqLhQ0_Oo,89\ngfmtB17vowo,151\nNTswp_20tsA,101\nfbR1gtlY7FM,198\n-Nj1XUtmKDo,160\ngnWkYf8Peo8,174\n_ODUt36beOo,132\n2EojVDDg3xM,173\nRMaNfwSn-pw,179\n9Pn6NgaX8I0,164\nr7aXjBDUk8w,122\n9Wy6ekMz_Yk,174\n1GfDQpfUaHQ,147\ncoDyfoCUaSk,178\nWM3TedgbwIc,185\nXIPjMKd3-1U,175\na2ZdXUZt3iw,125\nSNXqtm-WAh0,156\nPk_-jIncT5I,165\nTffPDHIwQtc,124\niewhzdra0DU,132\njHl4T9F9Vjw,130\nf03hKUGdtzY,172\nvLw24Xr1zKo,128\nxI4s1uyYIX4,164\nMrtT-vOpAfc,134\nB6OtAXBRTSI,180\nauMBMds7lQo,82\niUuWyMhkd9A,178\nryyEEyKD9EU,154\nWEfMDGtX3K0,169\ns3mwDA8sv8I,150\nVRXkf4--IXw,172\n0CYdSfhwWVY,113\nkgYskjeMVOA,96\noeW9lZBY-VM,153\nkbS0Wkxr49I,131\naiWJhEMskMU,99\nQy6dBc-9HRQ,169\nVMLlpJdCYG0,179\nFeaVbBKg8tw,124\niKQIxiobVGM,179\nT-ELiRFK_v0,58\nS-Io377-jmE,181\nZqCnbtz5IgI,179\nm2aC-nkV1Zg,172\na7Y0CTo21uQ,78\nwQFjbrojx4I,76\nUiQdZRBhBAE,120\nUVXRswx8I8g,157\npMFzy56i7RA,137\nuj0x3TbEE7g,174\nJjbIo_301ZA,153\nPt6VzQ_0k_I,212\nIN0Nrftr8a0,144\nZFXOR2yoWCg,184\n0GCwhGQEZ90,219\n7lL9YOO31Ig,174\n5gtFQegr2xA,171\nCUzNygPSRZM,182\nkIPK3l5gd9g,126\n14nilke-mtQ,117\neVJhlVgr9lM,214\nzSw2bGgrIQQ,163\nWL4kf1SZAE8,136\nCd1Q6LsOR8o,108\n7ktZEjwyFhQ,111\nab927ug4_xY,129\n3EIqxstBVCs,57\nlQhQeus0ItY,109\nThdpcnGKsVY,161\nZIHWAugnBWI,150\nzPWwORb6PW8,158\nvOJ1HPBID5A,66\nahCg__rBh1Q,181\nATOpJHEjvlI,144\nKbOr1buhh-Y,152\nGfc_7pOTR28,136\nNWdhUnTq3gg,170\nCHs36bNm7xk,179\n-fqOpmu8014,148\nAZfCHDSJc8c,135\n-vBO8PStfEg,173\nmClqKZl0KEs,178\n1dcHIATBkS0,137\nexFv7Srgwpk,129\ngQ5KDSBMFRU,175\n-KVNfZo-cfc,250\nAwR1RawiBU0,168\nNfDBhc__ntM,180\nppJ38u-KyYM,154\nQf_EPkVA31c,198\nPCn1uAs_0VQ,136\nVmZ1ni2IDdo,183\n8R8mxS2E_UQ,36\nu6YtIOaN264,169\nPk-vHw-mstI,184\nBbHxQ77anjQ,125\nExw1_k7Hj6o,152\nGae_um_eNZU,146\ntDzuDRGP0z8,98\nSeYgMYijdz4,179\n31XcssmnGvM,148\nWIBrEMlCGSM,174\nP3YJLGWoPL0,147\nYejzV_nWN1M,161\ntuXSqMrfVW8,159\nXBCML9xJI8I,178\nF58XJgGx3DY,121\nwmKfHN7NxeA,171\nJ5KvaQzBDoc,159\nZdmU6mM0Gog,178\nnQeov6j0bsQ,160\n06DLNzLaTlE,145\nuSMxnpecSZM,186\nMmBx8AMHTxE,178\nO7z6rV8Gdbs,189\nRn0Qk4aHYfs,115\nTzNPYPp_v78,115\nI5RKRQcsDKU,178\nWfCufFRo-hU,105\nG2ngOQwMMek,159\nmmSNq3ELTDE,156\n31sP1-4GgsA,129\n0noY-XrAJRg,180\nAH4E6mdxZDw,168\ndYaOu80atDo,135\nyTq_QU464Aw,252\nE_14d8dHpns,209\ntg4jLJ6OiDY,131\nj-7pVks8avo,172\ncE5l32W6Oxc,81\n5T4sIC7SB_4,176\nORV1uYzvZzo,99\ngCF11he-_iU,173\nbc4_fCULOKk,177\n1Qd2hicvxBc,135\n6U61OQAOe84,143\nD3fVS2I9ZVM,176\nnPRUkMAdukE,167\nzpSLlRt7KGE,136\n3bHDHRxatZg,148\nA2yqIm58ULo,157\nq289a8P8Ht8,193\nyat2WR8Ishk,104\nS5fwxvrutg8,117\nwZTaXoogvDQ,126\nhMbcMlAVxeg,144\nMfcqb8DD400,194\nIr4wUoK_-c4,149\nNtn3ksJwDpk,164\nTwnfJ8d9NqY,127\nim_-maHhOew,124\n8ilbyubEDhM,172\nDUYaGj7RBfk,182\nDSO1F6sM63s,171\nAPxaNrWnSq0,144\nsILyPxN_1Dc,74\nZhAeutRIUzI,170\nUCac6K5YWns,179\n3R7OdK-F91c,90\n1id63E3KgH0,175\noDcNKpBgd_0,179\nfcAhSCTiJm4,168\nU87C_o3_qOo,153\nXPsDyk5bJdE,171\npDj1GM3RRWs,180\n5DWrrqP_HNk,116\nZagt2ld1pwE,129\nNzJH4towI_A,170\n5Ii0_2kAYlU,153\n285xhqP7D_Q,178\nF-HZzW_NS88,123\njzxMo2UKUKM,163\nQ780MiOrLwg,168\nLWIAWDjHhx4,136\nwa_9eIwrEK8,182\n4Q0eWJZIev0,168\nM1TkG_zlh6E,170\naGE--b9ilhk,174\nlFzZCgFxUSc,176\nu7yQ7qs6Zew,168\no00oxyBzsb4,180\nvFD6BbYg0-0,135\nc_6SIVs_M5Q,163\ndFuy0W8-Wj4,179\nAC2swLcXfwQ,175\nTShV3gWFAIY,201\nxqmqskVELNs,175\nU-7MSowBlG8,73\nIPPeDiU4Vdo,174\nQfATkY6jMtM,170\nB1OK0eWfDB8,153\n6hfzPfOrftY,116\nzFxkzMB3qCE,63\ntfiIjZGirC8,126\nxKaCxkf1Ccs,157\nfi7cppyGPPw,165\nSs5HAL8j7p8,124\n9_yf1HCH5CY,129\nE3lprGIkEic,139\noNtGqOsseNQ,174\n0NXkZZqCGjs,134\ndDX_fyIlXXg,73\nkAFxKPtwYuU,142\nWInIV1tcI28,220\nh72ZN-oKzTU,126\nQDroSLQiSRI,132\n3oQd25IcII8,136\nj0cqqCpIZHE,164\n_zPImuBvnOA,111\nTd_5-DJdFQM,179\nSXVUCgoOcfs,106\nSVSzVDnvkHw,143\nwHfXZ9jcX3A,209\nsRUb0GR0ZiE,179\nlYtc2lvkpTw,149\niuPDl6n2vO0,114\nxfdye3eXF8s,67\nzEGnL7wKzXE,120\nUcEl21V2btA,119\nvmynulColPI,133\nlBIi9tKMz2g,179\nJZ5bvcWLEW4,134\nLfL2xCfIMIU,133\n7g5k1qwVLjw,128\nXjp16xSdsp0,176\nKGPW4PnJtoY,123\nFxvvnlcqLz0,133\nDlJKjlgWFu0,137\nALfuWSv9YVc,114\nVCDY6MTuU6Y,110\nFsIaDwn2EtQ,95\noQIubudKQQE,160\nuJw5rPEUblc,178\nxxulNn8UDtY,147\ny-gs5U3OMMM,167\n2ZO0CFb3eys,106\nNlPC4ag5S54,109\nOg1Ptc7w7GI,178\nH1TQv3qA7PI,150\nEpcWBu5f2uY,178\nkjo_zi4cLJo,118\n9v9MVT2X0_M,176\nN6jkWHo8D_s,93\nv9pZdy4lZ7U,166\nmDViU8OSRkA,168\nOZJUtFROusE,176\nqVzY2wmo8C4,114\nlJjxm4xTVKk,118\nBvS7NWvYZb0,177\np9kL3O1TuMQ,102\nejD-W0F0hr8,165\nkZg0_oypRpU,180\n1e_9GirqmoI,127\nrzC1mABvnao,126\nTx1mcALQCFg,105\njdd1py-ilwc,131\ni31XFSORRfc,166\nNpdj1jv8JKo,130\nUsBN2NyjX94,77\negB-SG97EcI,187\naENEFwxcrBs,86\nIegMpeJM1QU,161\nT6ji12DwRQk,106\n0IQgjMYWVGc,152\n8le-4mOgJco,172\nCY5X8DD0ams,121\n3SsvC_2wKI0,155\nx2EI9M1XFOA,176\nhn3XR4o8M4c,179\nVB_ZrC1u74w,64\nKHsn2smp4N4,203\nYs_zYL7K3KQ,101\nfCNsIYsWjXo,139\ntaf0MZ5VgDc,119\nsyM_HVHMynw,94\nlPFulJcbm0c,141\n_-GaobqA1LE,141\nO_rneC4S2G0,132\nQ_GqOe9HFRY,135\nhNiDZEwkT84,161\n6IM3wUpXVfA,128\nVlCkdkzOwFk,176\n_I_F4a-oUyA,153\nOqzgxMFTQfU,102\nvsQak7aKH30,174\n8jyiXMPl6EU,176\nSqnrzd0HCRY,135\nQt6F9WCle9k,171\nXF33SnFIDAQ,132\nZ9kPRWAjSNo,188\nkD0zHgK3BJ8,189\nM2AUEpmLf68,126\nJT_59yK4Gm4,179\nKdu22nQNZmQ,189\nCShX9zc_Zgg,177\nJ5K0XKyL3i8,88\n8dcA5NLO_GQ,179\nj_1k-SzcOrs,169\nRCp2lpFkeeE,168\n-2KGPYEFnsU,134\nYDkE97uXjRo,145\nPb1N5TcA5to,115\nIywRc7bHziQ,86\niCmT0IRM9Z0,165\nPOu3JnhEmT4,177\n9YgorDRKoEo,108\n2UK1aSp3bUY,179\nq6j_0vS_NNM,205\nQuZ_ak2qxeE,162\nnvCEzZ3P_x8,176\ntNnxJK7L3N0,133\n89FuExOuBbI,138\njaM0sgoi0vw,125\nKxyzb-o56QQ,166\nApANYuSl7A0,171\ni7QDt-z8ZjY,191\no-6E3Hd2OW0,176\n4D1OVjTF1E4,122\nyMiJp1nYlNA,166\noWSIUe5wYvc,127\ni_rch_cy7dM,118\nAqAm2IAg5Fw,179\nTeeNLFHot1Q,77\nYC0tFqipqpI,159\n8Cyv7f65bbY,170\nBwWzZtG_6fA,178\neI1dAmDZrZE,124\na7XZaIy4a9k,101\nhAbVFxYi_q0,189\nwSpvR9B8QXw,76\nqaAz6YklimY,38\n83Ax_EIMDVk,177\nwC4MzUvxVa0,95\nEYdIrPSIgio,134\n4pSAjI9lOGY,119\nC_TfdNAXOwE,259\nBefYI15la84,142\ntcgo6nFJXmc,177\nBjcu7KBoaNg,118\n7T5KMMZfc_U,115\n63Lf9kwyWd4,94\nUPhZaK9jxYs,154\nyRec3myBtsM,174\nhAU8AQ6xlw8,159\n_1fHeesAez0,187\nU1GUJMTmoMY,131\nHKcDfO71N1E,154\ns9TKR7rSFfA,122\nDHk_bI_wMcY,80\nS5EWvpoWIBk,150\np8zwrVyJHxw,59\nM4LzhjtD3YQ,178\nDTdDzcr-7UM,93\njY2PzzjO3zo,106\n9fUtcVIlocI,153\nIjGKv209gAE,152\nK2LCoTSVORY,179\nF9ScROJxATc,209\nChD8PRF0hBg,171\nP-M4AnVnnyU,176\nxjdKPS6-8XU,145\nCfRKGG52TPY,113\nSV_eLd8wm70,134\nnGx3WY944DU,163\nPSjEQHBkcq4,137\nM5mJMC_RpNc,163\nLW8M-U3Q8ug,156\nkoWhZSL1Kwo,135\nF6E2ojebPlA,178\n3i7EvW15Lyk,130\njMvR4K4QICQ,184\nkJnH45GslL0,122\nvh2wmVvFUZI,180\nA6b9rDbdOzI,144\nVD8UttNfU60,170\nEce-FTMuKFU,123\n-yyoLJuNIJU,179\nN_c0y8BcKBU,147\ntkWWtYRbnq8,157\nja00D_L5tm8,126\nibAU8weiUOI,180\na1ewWPS5ULg,128\nev-4cz3hlr0,95\nKyfXb39rGT0,155\nBH-EprDz8wI,125\nq8woScnBklo,138\nuuTeJ6tbyB4,171\nuMWI1q_J3mk,131\nMsUXCqHc8xE,134\nng95gpwSjZU,178\np-0nV3vGvTQ,123\nwxV84RoUr_U,88\nmlpkQuvDJbs,162\nLtFw6_YJiFs,235\nT6P6Jyhmj6E,179\nkPNy_yGvpKI,108\n2kV2EVWNqXQ,53\nZeuUMdNQTHQ,161\nbsoa3DBmelk,107\nh0aovIIojck,152\n8ZkCvzJqCUY,173\nQT1Tl6npLic,179\nabTZPgqiEto,147\nEMbzESGsxoY,100\n1CKEXvHN9es,142\nbCZVLjurkyY,118\nihJ8mtOVfmM,175\nGcgIg6HEB7E,124\nQAiVcQifKfE,164\nwnMPRSiIiUI,181\nKdr51Y91SQE,177\nufhTl0M3rn4,112\n6Gd4JbJxaf4,158\n2r_EHD8QVYg,148\n4o1O6Pt7zr8,68\n5cbim7n9ARs,139\n9WKilpdUoWQ,128\n0C4yBk6syOE,109\nhjhBzRH-plo,89\nlHgEqIvG14k,102\n5OfAMHeIr7k,158\nABrBbozUYaI,162\nQjEfREkwJe0,151\nFRSfDQyoav8,86\nOh0635HLx5s,146\nGoqDlg4px4M,134\nhV6I03_cIks,178\nfthLa-kq3WI,90\nfEwSNiZ3zn4,63\n_2gI4vpq9fo,101\nuHltDaQU1uc,178\nTYCfoxmY_vg,185\nMy8kfz_Ddqg,134\n3tbDLfgTAuI,175\nhHRWVczf8d8,137\n2WgBKaFO7wk,179\nxNzE5UoQmZw,129\nRcZo8hHZqkY,80\nsPbOZXWbYNI,178\na8EeFNXk1TE,70\nfUKoBAi7qCg,129\nRgubwsCVg1o,180\noYQWryzBuhs,139\nUfv54teYXAw,101\n2oDVJbZxmtk,176\nRIzrkbF1-SU,144\nFSj-BCOlGPY,177\nTht98G49dos,146\nATU0Znam5Pw,136\nH9PmpwhBg8w,121\nR66bHMRd6L4,70\nVXkEBRtERnA,106\nGY0btkKshOo,138\n_dEEXgs7T1k,216\nFu82oMZobYQ,138\nb74611maYgQ,116\noVLfIoIujHE,142\nxbhm9F1ST6I,168\np0Iwafu7J4Q,145\nlMA48vIxajE,149\nZdNa-FoYEo8,83\n-zNnJiwo_5Y,171\n6ZgWwouKUXg,122\n95fAKnIgqmM,174\ndjr5QNJG73k,71\nxdnibOE5L40,177\nPk-zBUDgesM,106\nJIRijCir934,187\nN5PNlMUcaPE,200\ntZ2yXL_RLEc,122\nWksivsiSF_o,120\nM3DlQK8xFBQ,156\nSV8jbzudYJ8,192\n1IyD0DjLrrc,143\nXfeN42X2UHk,101\nx9GGBivRItA,161\nrHYsSCKGZGo,172\nZsDOHhqqLCQ,165\nfPEGcx4MFHI,134\nrVQAt6GkMgk,179\nxME4tintsqs,170\nWK_rWzm86RI,178\nhY0SFHtFq9w,173\n9_GelFK6rdw,179\nV-9fQTUix6I,185\n6dDbnwQlCek,237\nQyeYgwO4ADg,132\nH0Bzz3gzvk8,129\nyjQqsPi138w,174\n75AdYZPT3nE,88\nVnp8CkPERus,127\nlR8KTwcC8fc,171\nwJZP20y0R2Q,171\nE7CPLxlfKaw,176\nt-lIuwPGT9w,165\n7uYoJwMuN_8,184\nMgc3y6p-Bys,181\n7-juqE5ASnc,155\nxEnYDuZSSy4,179\nDHYCHYsyqTc,177\npzE6SVUHAYE,107\nssK4Uc8SXnU,159\nNY9q_Vfbi5Q,178\nP1EIIQ0tZUE,174\nvUbnqySPN8E,154\nRgM_mn4oP04,178\n68SlAT125f8,146\njPH8I5QWFUU,147\n5Q52XfZ9no0,170\nCScFydObPJA,177\nSKDX-qJaJ08,93\nC1PilkENI-k,50\nCShHiYrQPGM,176\nEpCLoqVPwqw,116\nNWUxk3JPaqU,107\nT-OmaEI2xrs,179\n-Q6oYNUhNes,102\n_zHhry-Ot0Y,177\nhuxXgcGvTPk,177\nmkSxYpK4ALw,174\nt80UDdbV3Mk,205\na5AnZBVyCCw,129\nIfecgEak80I,197\nTSclZRaacyA,152\nbe9FJeol_aQ,153\nd_hNjBBdcyU,173\n9n23ISvkbFQ,166\nM6W-zjN_LYQ,175\ngxsDfmzU-Lo,133\nisY1TQ26Gnc,176\ndyupZilayXY,180\ncSSYFjtc4SY,149\nE6T4nHj8afI,156\nf4wmj-Nq9xA,81\n2dPi-jM7Jzo,174\nedjnSDwMFXQ,176\nRU2IP_oUqyc,171\n8cGUULb2K-0,186\ncRgXwpwVe4U,176\nO60YQRhi0s0,132\nmqYkD0nMs04,91\nlnfpTgAQ0Ys,163\nS52bKF-hXu4,151\n6iOxj7Lgn4I,177\neoffuyXUhLs,176\nrl6soHoCV8k,173\n9isn7V7c2gg,182\ng1R5DmGvMCY,132\nIrTJjUQ_xGQ,131\nEpzearSkgOM,63\nZoYZl8-VEGU,177\nTmFKGDfxH_4,136\ny87LPJHRfOI,136\n4Gs6pBwn5w8,93\nzJ3hgBFfQy0,56\n_6RI-8Ia4do,138\nyAmTu-R5MQM,151\nxIeyPrdc2Yo,143\nPqOlbM-zmuI,141\nah_Egywb780,188\nGusR6qF81kc,125\nYV-vi9NuyTw,126\nTgWu1QcM1Tg,188\n97gMDmQV_es,178\nCmMeT8MW1LA,162\nW4kci76gyn0,126\nczLSpZb6aWo,179\nQlZ28Do9WmY,101\niHkMTqikRg4,177\n9T60vF2EZNg,173\nSjbUk89pY7Y,87\ngM8trQSURdg,178\nAtcaQ4_DBOs,145\nWZNe0TD1E-I,49\nyK9Y-rD7XGY,105\nZJF_1LQbKiM,166\nSwCNp21CKes,111\n9y7hXwrVgpY,128\nTanjysfo1SE,129\nBWT3i-fgw0s,167\nd6N8yKrG2Ps,154\nfiP6h4VL-wE,65\nq42thgSKkpo,160\nT_pKvfMT5ck,137\nVW_Bmy2Cm2c,168\nTGqOd_3mrr4,183\n5yGKubkHrio,124\na7gZgEpgKiY,110\ngNCkFkii-tA,134\nrLZ5aVNxV84,152\nvp7r-h8OLm0,80\nktt64clTkj4,83\n7UQFQ-FyV98,169\nh0qniQTX3r8,177\nPoIuiCAepLU,113\nqKT2-0WUbGY,169\nHsRwyJw5o7k,176\n54x4n4FlV4U,147\ns8cVCsIcGAE,153\nEqNTVkdsTL0,143\nwqQYEQ-fsLA,147\nPf2LbcDDW5E,62\n2HMLj2siVxY,132\ncVGZCFgH-Dg,158\no-kmndqHfF0,148\negrmjjy2Pgo,114\n0PtKzdvq7bc,181\n_kGt7Vv2Pyw,146\nhE5rsmIsYPA,103\n7qNZYicSJPk,119\nKQlR_8YkRKg,132\n71kAAVlpENY,189\n6zfXkQ5QkrE,179\n8CZcZ_b-Cmg,99\nAgNH9Ktkrqk,158\nuhBhYnRrOg4,132\nnPeH0w6ZXZM,134\n7URRIBRCm8E,143\nZCTqZhZRYl0,181\nDflN8U5mO00,162\nstqgd2mbvlo,153\njH1hWH-WvLg,143\nOO4LqRUxinE,161\ne9nVeZ8UE5M,137\nJou60MhXBcw,173\nUwvIz7Vdhn0,169\n8Wgkpfa5HMw,161\nKkg6cnUZ2vU,151\nYDeGYXbeQV8,164\n2ZTrUc824oI,160\nkndeWhsNlJs,140\nC3ajmVuQPk8,178\nSOwJJPZKIys,170\nv2qDlGbaqSQ,253\nCyAW5eAhhPo,158\njn_D02Tvr4k,86\nXdzv5V4MVus,189\nRxEkm4dDAL4,146\ngpLzES4A7zY,176\nUkamBJTqN8c,176\n2U2zhXAXdhQ,172\nV6W8AZMUipE,168\nkn8k_ox5OXs,180\n15gPYqGlkwc,178\nUxHXWhEq5lo,163\n8p6L3Vl8ezA,173\nyEyQgxLmGmI,102\nZ-DbvvyH6Q4,107\npxQNKJWZ-t0,154\ntu6FDI4JBDY,104\nKJI1SIvGZEY,178\nmdgbtrpVBm8,151\nsOmJgmCvISY,123\nrF9Z6Hvmf5M,114\nzZTH3HdE8Sg,177\naVHgGXnna94,177\nMD9AvOexMWY,104\nZlzhOaHLFBM,179\nyVRmafc7cqQ,118\ncN2VCBTYgHI,107\n8oZJuop-N_g,166\nnBsxbjTIJxs,163\nABYeVd_JWss,178\nKeiJDMd8loM,134\nbHoe-hfh9WE,173\nsPHeq8OM-dU,139\nVWMSjhr1BZE,95\nNBY0l7A2uLA,179\nngSM_wxh0lE,111\nBL312TpdPQQ,139\nJtgnLYdR2ec,169\nRdl0ApAeczQ,179\n8jIPR2QUl_k,143\nVQjjlqVjiII,131\nDbUDOZoHYkU,82\n1D4VF4WqJSE,82\nX6keMEfkZok,173\n6fJ9PDZDS1M,176\nN_ooI6Wa0H0,176\nNuTbNeev0sk,155\nM9p2ix0s-D0,165\nz9OUZNicTGU,149\nSYffGozxMbU,127\nBFSjHBVx-xk,152\n2BofOahaB0w,99\nxD1OPkq6-Vg,117\nUvojHP56dnQ,151\nyZ773W4UICY,110\nbmIP1NM8GwU,172\nREwimg6y1Cg,120\nmZmMhrrh5vs,151\nFzlxL1f-E54,132\n7Q6ywfDSm_0,173\nzeSe5X9ALXg,136\nSe3ZAXB8sU4,181\nzXF0zcwPGuI,140\nVIlnM_wcw0w,205\n-Svsz19yyPM,168\n1fN7M_u4xt0,116\nEHUO2DqnD-o,181\nxRw3fodr6jY,169\n86sXLVakflE,179\nkZQ87E53U_A,113\npPCq9SIyHqE,145\npgDUFZ9TfPc,174\nryqyAX_lA7w,175\nP8RUrH3UmPY,179\nq-nQtR-WbIs,121\n59rdzSTXs5c,163\n9MSGSOjdViQ,61\nueC2ZLsV5DI,128\ndc8glsGbIus,140\nKJhlJ8p8v7A,194\nGKNkucKoryE,151\niRdSH-u1wWI,82\ne3BZn-XJ4mU,154\n7oczRhQvSlE,135\nZLhyjNnrb6s,229\neBVqcDJbl5A,167\njXKc-0nVIkQ,181\nS0ymo6QHMc0,174\nYtqU_6Imito,121\n6Nb7rSggCns,176\nm7gCydjomXE,144\n4A-T8umqRYE,179\n0xHPBlFPCwo,198\nJ329mOtIQ_Q,177\nYG0VNVGxyYs,71\noqQGFh5yiWE,131\n7LoHCPOvmuo,113\nVk1Ca1ruQKA,93\nqcYPASs4jMQ,131\nQtQpMjuyHnM,155\nRehVwEopIQ4,144\nfxBoqr7OicA,138\n81ZejwnzklY,181\nssZ1pf2Zuas,102\ns_cz5JFWpzE,160\n8VhgYX8xRuw,191\nuLhrOeavvOY,149\n7HWfwLBqSQ4,76\n6D64t1trSRs,176\nwytpJXfw86w,179\nvJZe9sHz10M,86\nh4lbn5nDXwY,109\ne1oUspIUHEw,100\ndjh21tkgGJ4,98\nGnpxe9kO_V8,154\nh4QvAd6nC10,140\nwIb3cRvQYw8,179\nvMWCg4TNWIg,104\nGzL4f-4uQVM,110\nTiQrmXZ_SZU,167\nmat5twjYjJ8,156\nBYmHra1d_Nw,180\n8M1kdeDluRE,164\n7InJqZBrCuw,105\nJU_Vqys3Kp4,134\nSccBZYmyjxE,132\n0vuS4vo4c94,107\nroLboEc4M-w,173\nZsqkTaYITKQ,154\n_g79FGuo2GE,175\ndXNmLJXEgQU,147\nBleQjp9zglY,110\ndwzoyEaHxSM,152\nETxIJN_avuM,186\nNHg_SEfj38M,136\noXpKBkMq_OM,81\nopWPxmr2h2s,150\nUC6sKTqfgg8,160\nElBy0fKa9Ic,117\nZWszIB0z50k,177\ng9hEJv2uZLM,104\naPDfc08u_s8,175\n84gYIl6Zjks,192\nlyvAjZw6O_Q,167\n0bw8UM1eLFo,206\nXaj3Ohn7YrE,132\nlwB834Vz_tA,131\nJvG1hHsOFUA,72\neQ449GDHSA8,177\nAV3CrPe-1q0,181\n3N5u8TKtmfk,207\nvZ3nHOtlQiU,154\nczJL-TPz-5M,178\njqpkvCebSmU,122\n_wAX37x54hk,165\nvrhgkmAzWvo,121\n8ILiVgno0_0,156\nxrO8AQ4CrKk,169\nBRBSfKmp3vs,136\nagrpQQWiX48,178\n8QDZKTF75Zs,109\n6AWMlRhBN5U,105\nTUMru_xqvMU,104\nprAOME_9oP8,179\nlUglQukweZY,164\ngO6qemCFhEU,163\n5rGPKIgdV6A,185\nFeETSw95wp8,165\nXftKutOVjQs,174\nw_e5kx3ONfs,120\nBLgX2oB_qn4,122\nnxmaYsZjnXo,134\n2hcGeToc17I,163\n7bCca1RYtao,141\n5UOJUZhe85M,132\nwdS1l__SWms,178\nklt86blKwaA,103\na7KgMV3DXw0,171\n2ycw0UUyCm0,171\n60QyvomMug0,135\npKsa_9TFG48,175\nnC2HOMOxdkY,86\nUc--n6RoIgw,177\nuJ2RTDbq1IU,178\nQrl_BpahMRs,172\n1AlMY9fDHu0,81\nACcJF4BpXXU,88\nJCGqUJddlS4,70\n44BkOqV2jDc,39\n5rVB1DFakzA,180\nAYy3qj5Y84I,62\n_XST7hft6k8,107\nPve6cemkiDg,178\n1YrP2ICd6ro,179\ncPBHxDtI3Ok,131\n71Nmq8VOKnY,155\nSH-HSmrjmBw,117\nm9aEg5dlFOI,177\nCYt5p4a8YzE,119\ndEqrnOk8P1Q,171\nL0PPveTZVsw,166\nI2v7jlIBL1A,153\n6EfYYxmfABk,178\nn_ci8BbMilc,133\nM4YOZHoDSyg,128\neBx_WJQ25Ec,162\n4LvvutsvgrE,144\nqXu7Ts5FWqA,153\nGhexrw8bpc8,132\nZN_59UzKu-8,153\nS1Kbym7WYzs,218\noOhFc0F3jVw,94\nWFUAl0Nly7Y,77\n2haHRRfKLJ0,89\np4HqnBtsz1I,109\nHgQDAW28DsA,152\nws5scfTVUA0,178\ncmgeSY8YdO4,146\nsjZ5I8l32CI,94\ndfrJhivMJJY,92\nKFwzRnTqgDU,106\ngDSrAm2CKdU,197\nPfBi1PAfWcI,111\nCsXhHyDeJO0,112\na66f39DMwtY,99\njQVO3AWAgHU,126\n2_ix6kre_tA,139\noezKQEF0deY,137\nW5-oHwzdWos,119\n9tHwS5Ymvag,144\nRZKKrQ8y_Uw,139\nIkVavN1lo9E,132\nG77UaCXuoOs,148\nYo3rEGWrlws,206\nRyZ-saoiIzY,178\nlCqHKRjIMu8,124\nsfWe6CUZUtc,89\nTSQ770iqDgY,190\niJGazi2EdrQ,154\nrsuNowyCF0c,184\naU9RYKxkRJk,125\nqjl77Gp88RM,87\nrnkIsbFHoB4,167\nP94mqkWtfxU,173\noLJ7246t3-c,168\nJOzVMqp3vMc,171\njBt5rfpIjws,60\nRAqYpOzllmM,181\nQD1AjTF83ds,181\novFDrgui4a0,104\n8HiCEPL6oa8,191\nyk73thpx_B8,196\nk_tU5DWlyeo,112\nMJ9QAW4LUEY,105\nVONBpGWaxL8,138\nWKoY2kS1UNo,176\nn6H7zga2Ks0,149\nJFeaWHDQzQA,154\nq5ZwRphkFuc,145\nVrXUYjVCX2o,90\nmVUQ88T2S6E,154\nx-_17t-v9dA,177\npwuNGRVWB9w,141\nMvRfyxGjA90,150\nqK-5zQpICPw,128\ngUKbFeHjYX8,158\nlGVU-OuhTlw,177\nbCOc7VCSox4,156\nj0iplsU1qa4,168\n4QCMLXFfJyY,174\nAW8Vxng7dDY,131\nW8EhiYDVPEU,174\nxW2pDmzhD4o,133\nIltqQORdPjY,127\nfmRWWrBqiJE,178\nBxIcBWi4ETk,133\ndry7kY2BMlk,172\njBotZTDEcP8,159\nheqpyT4kudQ,132\nX8qBorenkn8,84\nRNJ7CL89IFM,188\npduwe6sUsu4,141\nX0d8qyjQ20M,172\nGJ0-xGnrjBU,101\nxHTAYPp_gzs,134\nMBqT-UEySlI,178\nFY8vuvzZHl4,161\nm0DbfOnOBQo,191\nNOe3intBN0w,139\nRsSltFwkLPE,104\nC-NaBwskUp8,149\nyfg9cb_9NWQ,128\ncwgaR1xDiyE,133\nh9WDm1k4Hz4,165\nnfFsHF8guzM,115\n003kLKX8n3E,134\n84UF11bJDFY,150\nNIMWmy-1l4Y,211\nV26hcTgoDLY,155\nutYsQTUae5w,98\nJqwzeAkRcJA,104\neZc3GMgzwyk,101\nZW-xfRn8vFY,172\nQM8StMC7V6Y,186\nNSTXoI3j4ko,144\n5vFi7gu-g-w,119\nLEQ9ISPbfyM,218\nqodNg2Xr7mA,144\n7SBBMiyv0kY,107\nJ6osFXTp7WQ,172\nHUKu_iqYDOA,158\n6p-S9nS21Wc,127\n-wqnmuzG51c,162\nPAw7vAf6HMg,104\nFQwv6AGpdus,203\nmCO14xw1nJo,168\njWP3sgGz2F8,171\nHQCava8QqK8,120\naPcCjI--Cz4,159\ns6n8HGwboO4,169\nFWznyZ9Znuw,177\nfoPz4rJfgSQ,132\n0Cufl5Gao98,165\nV022pMeqRjA,151\nPSWgZzUr_Yw,162\nrtYKhaQStZE,171\n_92v2IFT7WE,145\nTr3_HOXg4Ug,64\nmG_G5waoSeo,174\n8I1qHr1kjF8,170\nvVbXluPyrTA,181\nLRc6Awco5aU,176\nGRADFiFVLJQ,105\nIFVWE5XHflo,163\nP-KZ7N30lFY,137\nAnGVJ8Gv8aU,217\ni-2kXcQgs_w,101\n1DGrM6qhZHY,115\nbn_Df5UNy3s,129\n2l_mfcc2I8E,105\n5NuvfSWbggc,176\nFCJSJ2xtky8,140\nuCsRqsNpF60,165\nXhwgtlCns34,131\n0LQZpUHbjDM,133\n8rlAQ3q4RDk,135\nVx3I6XjqCho,121\nv7Z3aLND9Xg,129\n1kNZdy-IxNQ,203\nrczP7CJB4Hs,121\nm0etOugqkPU,170\nrxno2wz0eKc,125\nMeHr3ZYy_g8,120\nsrLwGlDe598,124\n5LX01_nSeZU,147\njA83iWbczFc,172\n8ITOvb7Des0,102\ngFocZQa78ho,168\nOrHgSvrG8Z4,164\nRpt-fbpiTU8,122\n3B40Rhnt4PA,171\nMLaMV6zQND4,90\nJsdUzN20Sow,210\nLWvcLI0lcFQ,123\ngPAI19a84KU,135\nYiCzTGRqCQ4,126\nybDsC1DzIPk,170\nXB2CUyVSAq0,114\n0RM_Ehtb5C4,84\nyquyze0QbPk,97\nw9I7PBSMBZw,131\n1QC88NQZM-8,73\nuMx7RJLn08w,137\nMkNhAG2CUso,179\n77DXn43fhVw,160\nGEAh4nF90iw,132\nti39GhRZkrw,175\nIMT0EqTWI6I,207\nu_z2ttNkL24,156\n7SNohNGz_f0,170\nrvqm61CcOLo,163\ntXF23iSwW3I,107\naxWtCnuctw0,138\nPiMWCFay_sE,187\nO-QaGllHqN0,110\nPLr1f84fj8U,173\nVY50Mu29LxE,181\nL5Jg3OVjPoo,193\nImO-q-hTdAc,169\n6_yYxTkdIk8,173\nUIKJTZC53hY,182\n2oLedbPVWzY,103\nTprgpfkdiRc,130\nRvZfy1w-M7g,149\ncRuYB2gXpM8,176\noyZblWujofQ,112\nSd4y4XC-qvw,179\nlP8EYYjPEmc,85\n5QFZ_Kh7vP0,157\n45MzBLAUUpk,121\ngcGvs4dw9CE,177\nvNPCXKmF9LI,173\nFmYGC2QdXd4,118\ny04Q-2-ut0I,90\ntV7wQ19UBqg,234\nzPuVP5U-xag,97\nst8QRZbJdPY,195\nBbbXgjwlOpI,179\nUbwxGgR-EAM,99\nrC9MhZGgJy4,160\nNyamI2ALbIA,238\nglJzhylsfoc,143\nK1ubjdkdmkc,172\nih4MIVjS8yU,178\nZE5ddEN5Nbk,132\nyuQW4F1siis,179\nViF6HrzoOj4,135\npiTAjb8dd2Y,154\n2m-I23sWzEI,90\nfbnpdWhOwIs,179\n7EmNSHq1mh0,131\n2Dlgg0Yqsd0,177\n4sOjksh8vX8,184\n6Tax5ajZYsY,177\nknJ438gN25k,81\no-_ochO9CFQ,196\npiYwvMvqXPg,171\nJY4UoItJ_lA,149\ncT1iUwGGUAg,130\nKxcKAGtHl3A,100\nLpDRf3h6OHw,160\nXr3vKjP1PUg,177\n_AYtVmu9BkM,170\nGoQhe_ntnR4,178\n_GJG2JDvCes,129\nj4OMpEp-bFk,134\n271ymG6B7aw,162\nNKjZRRw3-Fs,178\nk8bJrJ7_LKI,114\ncY3aFhbBzoc,136\noymR3xfYh4c,179\nAJQd_pt3-pk,159\nQwjfMOhKcTw,127\n2cgMKpAGSQw,165\nw3hwZ-7CWeg,134\nbLqJo78X3OI,154\ncRc7p5HzKIQ,175\nYEdNAX9h_vI,150\nAk8uiLVkpy4,111\nvDL4qARSaBA,171\n35FF7e1-zCg,174\nPB-KpT4zhWo,195\n0EXwWYHzUNM,161\nQWPntJVp6cM,78\nnEf2ML7wkBE,130\nEsTniU7j_yw,131\ntFEKMdUMjEk,175\nmRXz6hTAW88,175\nwMa7Xd9GuUo,178\nCGwzaIS-tLk,124\nxlAwSNbAY8E,184\nhH0av1iDYVI,131\ndHSjJmNISjs,107\nQ2-4x2KuRqE,179\nilXtCX0-CkE,165\nzpccIJubm5g,123\nxqtbz-pVp2g,120\nIXwwGEJkx8Y,146\nAaj_WEYZJN0,131\nkr2k20G3hCc,149\nmdHpbI8Y7Oo,188\nrzIs51GUVgg,134\nGwowcP5KIIA,148\nczOgJJqehv0,50\ngrdxSWSHJaY,132\no1RMSG4bnrg,179\nm1JgMM8b9_w,116\n_sZ4U5aOee0,95\nafBwkWnwlD0,172\nXKNZy6gahyc,118\n9xbk-7HBIOw,129\n7Tx0kjtoAks,163\ne3RDBiiOJaY,129\nE7i4pNsqnls,179\n0NUDP-gxGyM,162\nnzglM3ROd_8,106\ni_3ktf3XwNU,142\niErVeElswus,133\n6ZygVYbMrfc,122\nsIDHrcDf-N0,221\ndDGMTl1Ya78,158\nf7l5I6ZPt_Y,118\nkBTPEpA8BzU,179\nNZ2qhFm6LO8,158\n7LmO5fAuT8U,178\nuzMEc37DGZA,103\n1mqubJrf6KA,172\nW09CmZtBFRQ,141\ni1igdJh44yU,178\nO_CorWKpGvU,149\n2dB26bOiT4E,92\n8gfk5E2iwdU,103\nEOyAHaO7lwA,134\nCECosJ9_6MI,102\nos6khU56n2g,162\npYaJ7p8RrzM,130\nmM5dRMY2u28,166\nPDVyr--ODQs,138\npa1ZFxgQmUY,132\n_4Od7V2mVG8,152\nMI0ZlakXWFM,171\nJnlOLl7Ew8I,97\n3wqXNKYn-fQ,173\nUwfFWXUEyfQ,132\nQggV4W5BTkM,144\nKgmFWHZXmiY,171\n6C3HDhgTv8Y,179\nYRruOzr9_w0,171\nFJStfF_7w9k,178\nlRpBlNgu8j4,180\nMe3eSvA2K9k,131\nQjJO-cEmxWg,124\nArnlIuuyPJ0,180\n1RsuQNxE43A,175\nhca09uawN_8,155\necmDPqCP8ms,140\nrNP5uIQxAfY,153\nVfos_yqayxw,158\ng0RJFzg31xY,133\nHPGSDBjsSWI,143\nh8wzJimC5Zc,96\nOS0rZQtDsoc,179\nYZ5Y_GhXMKw,105\nGx1K7ynF1JM,177\nqAfsU2gI408,168\na6cUudbbHl0,178\nWIQhvHsTDU8,113\n4koPfEQVo44,188\n9u6xaK00otk,178\nl_ZRivM0lSY,118\nheoNF-PyZ8Y,158\nx26Mst06IoY,153\n6oqDO7aHVFo,145\n3S5E22b49-Q,68\nSLL5ziDWc6k,115\ndR3cjXncoSk,201\n-kHMOXNsE2k,122\noZ28XpWmN00,130\nUISLDo5JtiI,138\nxs8jGY2dnCg,204\n--ABd2SeIGE,142\nmc082fyyMQw,128\nVOk7mIZRPzI,161\nDzqzlpAo9s4,96\nklnVwzouc_k,155\nbPH152eXEfU,144\nVCvOWhT1TiA,132\nAUPdPriOg6I,179\nTyo-f87JA38,78\nY15QXiFUV8U,153\nESv_Pi8qlE0,127\nQIIE8CobvEU,179\n9ZEUnzRzvGg,111\nCxrQd6Sn5PA,157\nPM8-Hmfy6OU,157\nE-wr7dD1n5w,173\na_9dO9k2TPQ,153\nGcVogDQ4VBY,149\nSCeW4Y-XPfo,172\ncrIlIvBYMoc,130\nhCN8UAdH55A,162\nMwdekXx-4ls,165\nUj6eiUsNwvU,196\nC3J1AO9z0tA,174\n8CouO6czPic,165\nVBLIuICtHuo,150\nxG6__eK9jIE,157\nfxVsGcxK1nc,131\nTy0O5WKbLkU,146\n7-H5Yu3_Py8,175\nTTOlRTmEdoY,157\nq5RSKejDWo8,101\nv6Tkyyi43OU,193\nIWmzBLX4j8s,106\nNhtvtnrHon8,123\n5A98txE5nno,117\nVV26lYf6VyM,178\njEveVtZmPu0,180\nT5cFTmim4Rw,120\nJIkmOqrneTU,147\n_liUxE_lefE,179\nP2rpcVDPZEY,120\nSUKdlcCiE60,105\nWNUJIR9y-N4,150\nj2MbvFYy_8Y,160\ncIscGgQD4uE,132\nwZj44nizNJ0,147\naiN0_53Rwjg,162\nH5pj6ZuBgeE,165\n0tVy79pRaBs,121\nGbQy-0SzshA,200\nJKbrP4cjzo8,149\n8Pd2fpoD0Xg,182\nCDwnIJ5ohu4,149\n961QhyKlg34,174\nS7iDxRJpDZU,124\nLRHNkBU6YWw,149\nSwjKQrYpe-g,178\nCf_0ggNhHMY,180\nabBd7mEUNwA,155\nDEcY6WXL6_Y,112\n4G6VXPkfDvo,125\nUkIwAAKv_iA,114\nA-rs-kWL5-s,94\nWnocz8UrhQw,133\nTvQmXzgtOeQ,132\n9IYFHAnqOKM,195\nmo2-63epZAM,74\nXLMDSjCzEx8,118\n_1rqGyHtE4Q,86\nIxoCv_JpQVs,118\nBGmXnidRtoA,209\nG64ubBUMVek,158\n61cBscxr69E,182\nfQEGMNLTYPs,178\nPzUxcPh1zPI,99\nmmCjPdu2TC4,171\njSStdc_wWV8,87\n_wU_3DGbYS8,161\nraM63LAHuwo,179\nPKG3eCpwYBM,166\nLr04AEabtnY,126\n4V4jhMSJRW8,177\nBy05PXEvGWA,135\nH6ImGh1Xolc,189\nCU7-qLo7GPo,106\nTGqv7BxCgYg,155\n9HRIGCog9UQ,97\no2wFqjb9AU0,179\nqXKeIDlP-ys,169\n22hhTrBAFRA,179\n1EJYZ1IlTF8,168\nS64LeYg3Tg4,167\niMPV0eFLxbQ,132\nphwcul7F-Ro,132\nwMAAK7i1ib0,134\n-u1uwI5qJ74,167\nrRuulhJ2ARQ,176\nCxQ4aL5IXZw,106\n1PkqpkQQmwg,121\ngtmmKXgSUwo,179\nRIInmRkYOXc,179\npuXiyRw_L6g,128\nc1K32XLhn1M,169\nFLjWVccRPOA,179\nXTCEl_MFfHA,169\nor6rCLpiS10,152\nlXS7GWgCBWM,180\nrcA0MBnPPM8,76\nyNhbLL3Xvcw,67\n8hWbptEarkA,156\nPF2hIgWupGU,111\nRfl2M8B9WA8,141\nLxAebgxJHyg,124\nT8KFieVkVkU,74\n-TqNDG7L__A,129\n-O7sJe9k8w0,163\n8tnIy3PuDiY,93\nPK14gY9Gn-A,113\nCzugC2PxerE,170\ntoiIOy7q4xg,96\nq9FYBjSc3cU,189\nk2-SBnbz7pE,173\nOOfMTt2XfWU,115\ni3VNgECX8Ko,130\nTid44iy6Rjs,120\nyCrq5v5cg1A,187\nevJPzjgv-2s,132\n0zImze5PCFg,96\n8gLOoFW3ke0,132\nYg53M7TYpuo,173\njeYdR_r0iGo,112\nP20hrE8pmoI,121\ncio6rIbCs-I,126\nFKW1h53hSxs,110\nWfAp-jZV5Bo,177\npN5RlyFWJBA,135\nF2AbEJnPRYM,133\nU4fnEAu1--0,179\nyEeyJzItKAg,199\nyunEcgw8va0,72\nMnMwbnAWawE,166\n2oFuSvs-WU0,151\nlUyHKva8Wfg,178\nYjbYhnnEDRo,176\n-7mzQx0ebqk,150\nW3u0prIyDTs,125\nzdHVp6JC0mQ,110\nhprw4GtCu1w,178\nrefu69Hu5R0,152\nGwM5LleRnAI,160\n0fAHVLBuwVU,179\nEnfAVLatlmY,117\n8_2tkIqD3Io,129\nptcDoIfzLtI,72\nNPYyV_mq97M,118\nNTTyF1mDtgw,80\nnqF0yFLjiXs,151\nwPw9GesZAcw,156\nvlwrxfIiDBs,158\nsidgUs-5R64,147\nY9OrRbeB-rU,134\niDTYtgkzpZo,145\n-p4TkuB20bs,129\nJyAbZxxgLw8,182\nEJOewEP6tKQ,175\nX67GWsa_NNM,149\nALw553euzsc,151\nMf0pWnkN_vc,152\nqHisKG66fLI,179\neL62rDiuqDE,149\nHxc048RM18U,131\ns_B1ul97bfE,175\nILwJA2feDRs,176\n5N8eh_84W4w,117\nSOa5HP_FHoQ,175\ng3vxfUb7Sr4,179\nrlaRlCFXUqk,179\noBURpv30IkA,121\nW3cldIDgcoE,169\nTR6tZ5CKRVg,179\nOUztRf_TSHE,128\nrTlfnymyrrQ,159\nMBSxl8y36zg,155\nioQQ3gbY0vY,99\nB3thiUpvzKo,93\nDkGLIu6lnT4,217\nwXzgVOU3Yrs,177\nm8lzyaMZ-mA,235\ntVBI-Fup8EI,171\n2DgFlZwrD-Q,110\nBjPUO_4HJeo,178\nGHZSYBkKec4,162\nsGLXpKnQfSs,172\nx7qvOFN1QZg,156\nrAdvJOAGEmc,157\nm-ETkZmPNiM,95\nv7tTCb-WU-A,161\nkswPGoPPdwE,145\nPD4Gq5GPcN8,112\nosE84bZ1jNc,114\nWRlIDIu2qpg,239\n06h5HJo7A6I,172\nZdv1_Iimmgg,145\nNlREC9TagHY,96\nAOVHdyazjWM,141\nvUrgn1Vm86I,144\nYaj2tnjamhM,180\nM0iif-dNJus,173\nhFZGh14H_J4,176\ngmSeaKdO9IQ,125\nKLkD0H3K5Zk,134\nJvclIUy-JlA,124\nHj9q4NlwcXo,196\n99IRJoGX238,162\nzT4OxEg_-cY,184\nmNUnCTKwS8Q,173\nHgee-O7ZAnY,160\n_yxKJaVk4kI,149\n_RG8hoGMxKw,148\nwC2iSGzmdKI,161\n6JIxbckE6MU,159\ncY8yXitzluU,188\nAHV1LepZ2KM,107\n1Jk8IZYcxmQ,150\nBxh85MB9FOE,173\n1NnwUUf3RMg,144\n9yDL0AKUCKo,195\nHhs2RLxDgok,165\nwfAfwKUkfHU,177\n9j3KAnX0Nhk,174\n5m9Bf48pWc0,185\nxc2Ctw8pGrc,183\nEqFFgltjVbg,89\nTYJ-1E4hKAU,177\ntQQ2Cp7xQho,171\ntb9kVTItw3I,177\nPlkvQ0NbjUs,185\nVDGE0RPwLH4,168\ndshJG5PEOqY,198\nkOfY6wIKT40,181\nWSYe57h6YUE,167\n0IiCOhajpS8,158\nmKrFcdRLGQI,157\nX4JETt9w9Zw,153\nkJg9uBKvDZ4,163\nwIuKvNAGsH4,171\nncErLtJBlHw,155\nsHjCcVC1uR0,104\nWrZN5ouSodc,167\npEJHzQIMH5k,138\nzFDNg1Swx0s,151\nVeGtHpQzC6I,109\n-wHSMnaUzWY,179\nOpAEdqIIWpY,179\nKXa2pXA7v6I,132\nAkaPD_qTmok,208\n97E7Kft_bno,130\ntbu7lOVTric,175\nYtktNetGOKU,143\nDj9G_kEq5W8,165\nXdp-MXh84BA,175\nttTyXqwsP0o,123\nv7r2OuigZoQ,64\n07mbIgWikmQ,169\n9glAGvMjZiw,132\nGC9MkHzTnRg,197\n2g96QnNekOc,171\nZk5K-Z2enGA,139\ngT7MQhe8gRE,170\nm3CMdoMIX2k,121\nXaI13YBdi_M,147\nwt0klpk3tBA,200\nvaCI48KHW1k,110\nLWCK6VFF6n4,210\nYjfLp0bll5U,133\nt8vRwv9kRjg,184\ncscOz4NHIWY,156\nJanwLiyFPAU,114\nAt_y4RGfW4g,169\n6wXeUrZ6p5E,201\nwyifbBO6sAY,178\n6loInvUSYEM,130\n3Iy44xwjtQA,156\nEFtdTsawXK0,127\nEHqjx0MHej0,118\nMdI5DrJ6V3k,92\noYet52yPgu0,130\nUbQlBLCvOk0,90\nkJ-UZ4DvYBg,103\npWt-GnERki0,119\n_EPtenKdrDc,110\n1GHCAqKWA58,155\nc0XTkj3PIWg,135\nUBnufwe-p_c,173\neTepvIyKhIo,165\nqlyJNTOwkAI,173\n8gvuU-U64d0,131\n51reM6wq2XU,129\nlzJV7k-LiC4,187\nt1Wk3H5Xur0,167\ngU886wmXhQo,113\n3cdlwCCzujo,103\n6fJNyx7kI6w,127\ncFl_xXXCo3s,160\n_pin0H9Udho,150\n_525BmUkPmI,202\nl0PUssYO5A8,179\n9CD23yDPEF4,134\nALhR_LDm5Is,138\nYn_W5-xgf28,148\nRY1FQGd1Bb4,135\nNZ-u1BXI0YQ,208\nZYB22miPyjY,151\ngmnU4tK8GOo,178\nuov-TD5osLM,147\nY2NT0jeoBXk,181\nUgtSRZHvyWY,134\nri8WqeTAUDE,133\nG76ThtqLvWk,209\n_PSEaTZSZEE,131\nnhvRzLcCk40,187\nc5ZISrFKFP0,177\nWv07oUFHGRQ,118\nm31MSgGEIAk,178\nqR9MgJkOFJ0,164\nsWCQm58jJsk,120\nnBZ39gX_FlU,167\nkn5Sc8o9YTM,141\nhjyWtmbAyco,176\nn4pUbyGBD18,152\nno7XR7s8Z7o,181\nIzFSwZqBjFM,149\n9ZmqIpTPFmM,173\nRmEZwxFSsWE,134\nF8vcszMAya4,175\nTZdCMfr0Um8,178\nJ4ZnYc3tNyw,118\nTknTP23YYFI,179\ndmfgNHfdn8U,109\nEur_GSTH4oA,105\nfcFKVVHQn7o,150\n3SKk58UngIk,65\npFXW-7VNngk,165\nt8_p_4sqv4k,170\nKbRMCmnLU8o,112\nI2s3FG8KpKc,135\nnkVUb4kdhig,172\noUo_8mKGHvY,137\n8e5fzbsfGCI,137\nQC0kTcAlf64,184\nxgkspBFxLi4,133\nlwruhQqFttU,151\nq8nzGlXDvO8,154\nkBwVWrBk_uo,209\nd5n-bZf3eVE,179\nzfUzaYV1xfE,180\nKei4Jlhhz-Q,120\nCbPAADCg6ns,79\np0vZhGqM_Rs,157\n6wyRTKGY2Tw,134\nz21tJkx07J8,131\nL6Z80A-avdA,177\niwxe2sIgQL0,77\nPkqrMMqSNaA,81\njgk96izcJbw,158\nOgqkqYeNbOM,137\n8Chr00fm6AM,145\nw98xbfLGWro,155\n9OlXAy0L0yI,138\n7vx5baLs0NE,146\n1UtDbLZsJ4Q,100\noxml1eY8urE,163\ntlI--ATerwo,93\n_r6i8Ae0cvo,200\npjHBTYOeSxE,165\ncibZY1GwVQg,66\nf0sDG0nnftw,114\ncvNjYmDiV0Y,182\nBSaGnAC8boM,126\nmCsu9hGvNEc,179\n8fBQzlJdubE,179\nYZGetnQQU48,130\nPxKcm6wWUJ0,85\nXuNDB-xL6uc,104\nIE9S8CehYco,146\n_4EkJkuiwIg,117\nmOicvmEloyY,131\nAtgkgRgn8Y0,63\nV4UM9BrSqos,81\nP13rZWwIXmM,191\nL1hEpMsgttE,172\nhQmDmh3qA6s,132\n_5uHK-fVMcY,150\n34K-mcoEFuk,161\nsp0O70Q5FAQ,129\nRf82VHBcoYY,131\nzN8bZ1JjWWI,173\nkqBMHRX-c-4,182\nzha1tYGnAC8,150\nayq1fVd6Qhk,177\nok6H1OFTmyA,183\nVA6nnlleAb4,138\ne4EL5s__uC0,179\nfZ99iSkvkec,123\nh4XKQMfI3B0,172\nwN1iAzPTBbM,108\nynC2_22yuGA,111\nMQ1E_qYia9Q,158\nHSjPTdKWcLA,153\n-7Qoxub52B0,133\nUinILaRACDA,195\nm2tk7RatWsk,132\nQO0gZrQw9KU,180\nwQc-GpTtnR0,126\nPs3MsEdfpAw,191\n6GEll0BI7ko,146\nFS3hFDdeX30,173\nxmzkZ12GMAs,178\n1dLZuGiJRXA,141\n6l0tsxNujWA,96\nf_8dti9p0f0,101\nE8x4G2WceJA,112\nMge3npvF4R0,142\nOYpO9k6l8Bk,178\nf0-Ea9Ki7YU,182\ntRx8N7mJU9g,192\nP27sTXSGrhQ,77\n9xS3XqTSRr4,129\nJ73K7gabt-U,180\n3XZ9vtsDiuM,35\nhR8yyXbTjNg,195\nJIvq1ObEOrs,179\nhgGi1ODlBBo,181\nP785O3-r7A8,117\n08zyIFMP-LE,131\ndACX3WiPVU4,138\nrLNN6Kef3Yk,186\nf8P51JbIp9g,122\n3pEtiCv07Yc,186\nr2RzBizjKT0,156\n2cg4S8JO_hQ,159\nFjT4_Bi-F0I,182\nkTUnQubJMoc,176\ns1QgQny2o5E,116\nRUUhcK3Pt14,101\n_5HRlIFjZiw,148\nEPFnZSvRq6s,176\nTgzbVMwrr7s,178\njS-7DpkGT_E,90\nc4ibjfBu1IY,98\nuU_ftZ6EfX8,178\nNawsWUndVQQ,173\nPt2wNC6SYnE,175\nm0FsyBlZtkk,174\nnLMkSN2F2xs,165\ns4esaE679Wg,182\nsN16d6mhe-A,188\ng_C56llGC1E,173\na4OWkIrQUJw,96\nkeTP_H6jqZk,112\nXM3MRt89zy4,146\nZkZvK6v-L7s,115\nNvUnzCHEfoo,178\nre_liKgRGew,164\nNqmZSSpvghU,134\nJAXij_5Rr0U,129\nEqRYx6Zgphw,61\nhY6HUmWzaO8,144\ns2Tpk6RnkaA,115\nm-PsCZ_57MY,180\njJvvT_Sb0jo,164\nR8UDjs0FAdI,153\nWDAlAqy9WUM,154\nIJIeGOw5bXk,176\n9z8uqVHf39M,171\nCXOjc3b_FZ8,100\njF6mqjUiljk,165\nm4SWkyqSFxM,69\nb7AjNXAF-7Y,124\nfJqWAvvKS1A,126\ngPjQr9sSrmQ,134\nFPtvpjBEEqo,245\np7CweK_hS90,130\n9f1adgpyRjM,131\n-Ok6Y77DeNA,204\ngC672314kEU,125\nJ_wbvP9hEFQ,155\nr1NUy3Rq8n4,111\nfF8O4drwH-I,177\n7taghufoJY4,131\n9SYhu10qJ-o,195\nj1eQNUaOfZ4,168\nWx98L_LssbI,111\nyvtb9A9ai9Q,153\nxMjEmE1YLSU,130\nSRlJ2SMwwYg,131\nV6B3elF2pYU,155\nttjmXS4de4Y,186\nWdzNa6wmtpw,157\nhoKvbJSMShA,125\nB7yi-MaUZaQ,131\ndAoRRTPPIys,164\nrz2FxTVVJi4,176\n2wN8f0ezRS8,166\nvqxbLAcIgiw,66\nbp4HJ3JRxag,177\nxSM_nz6gKOI,179\nmUVup2pr_eM,155\nwbWWF1RwQU4,159\nbkhUe1txLoc,159\ngx-03rUq-1Q,176\n208MQEPGWLA,172\nQyvbqZqQ0xI,193\nWnAVeKAUxPY,174\n-HjYVQXvxVk,175\n0vI1R3VEREQ,167\nyLJ5hUWH0yE,178\ntskpXGAJMhw,133\nXzUFmbuyrCc,81\n57eIYneEz7E,156\nZyHoPZAsm60,160\nvr2jJkcTcxk,128\noYuI54XUXkg,132\naWIcfkvKj9Q,125\nAbU-6GsTbyE,125\nMdfwpCH1Ksk,119\nVxKyoOxyrdU,106\n5PsKwqiRjEM,131\n3SVCkLf0NiM,142\nOstLbMEQM4Q,180\nCYgNbOsiKtk,175\n_pzN5x6Pepw,194\nMfKGLmjlyLo,179\nNUmE-c4ym40,96\nGokp5Aq-Yuw,206\nYYsdcBacV2U,171\nqeaiVveZWD8,140\niKS_327EF84,179\nPKnfWnfvSGM,148\nUfziV-fIbyM,128\nM6aKImtVams,52\nbTE69etu_fg,129\nKtn-Hd2BTzs,93\nFeoFv3dOeqo,55\nXon0bfX3L1g,76\nsFjraGFeU-A,49\nnip7ztfMngk,50\nnePEk4qB9to,152\n9GFz8aB2BVE,133\n9qzxNMENXJE,126\nm2Bf7Viheuw,120\n-g7jRpukoVg,133\nvPTTP3gSLJc,121\nHSckms_rfwY,130\nwek_o4V_T00,105\nDEJ_XECWRcs,119\nsT8wMBeVffk,91\nNpvlS6uBduQ,126\nuSsUoxlSADk,126\ny6daxZDW37Y,120\nba4niP3IwLQ,121\nUUB75dkgT_c,131\npSNop1XHhU0,62\nLhVNDhQKhJw,133\na5BtDmdw708,133\nj_2-8115ZAs,47\nAhHM_fCLsIY,108\nXPRFb9J1CvA,114\nOofNBvo-ABU,85\nTfN-0IJACLk,132\ns1vSb318d74,130\ngW-Os5mjbGM,73\nWm_Z34Fyww8,73\nIT-iX7o_ozA,131\nkeQtOFycgPs,163\nI70sIrfz0_c,131\nnII3ya0MuM0,174\neb6k3SU1T2E,129\nIIr2CCwrYbU,106\nYp6X2N7tcKQ,131\n1AU5OmlDrHE,76\nlWvb6U-KZds,129\ngWB-uAtqUIs,108\nV6aDrQg-WVU,130\nhXCnYkU0Xy8,121\nI3Mg_5wqewU,130\nurby-QPF1hE,117\n5abHHDWcRAQ,117\nzXm6Bc3RuJE,52\nJpYjN3cZR3U,123\nnWRxPDhd3d0,102\nf4M5MT96FwY,44\nbgCUriRuVx8,125\n2eqWGVKtm5w,94\noMx6C31dCeo,130\nfJBrWMxc_P4,79\nkk2HQ0hCGTE,132\nlKMl0NFXM4s,120\nuXU3BDvq-sQ,148\nORrQYZCdCwI,127\nrEWaqUVac3M,120\nCY1lL585Gjk,24\nLWxSBbBX4fs,108\nNr1FMis9MiQ,128\nvGvDCmuDKKE,177\nBYWVUvqDFh0,72\nZoFNL5lwimk,129\nv8MuNXR_lCY,109\n5Ei_2wS0U-w,108\nFe4JvbxKwR4,129\nMhGl83Qsi4Q,132\nct9y-srjYjk,129\neC_Ua1svsSE,57\nJina0muBqRA,207\nKFJmxST-xRI,143\n7XFAamm-SE0,44\ntlZsSLe35z4,145\nzDYk7hXvQ0Y,104\nxP_cM03sHgU,98\nA2Eu5xmslWI,133\nTsIQj8gZeo0,66\nqCpSqCKBM-M,133\nqaK_jsGvz6Y,133\nuUPHlAbAf2I,57\nHadRbtEI7KU,115\nkMjUZodyvtA,132\nC2gQo-0VW5c,116\nS1s9cXYpxNo,131\ny8Jkls3xgvg,129\nY4_1X9cpFWI,132\nio2eeYm9sQs,133\nN_20oqY8E2c,131\n3skIjrkta2Q,169\nWgcXxTUu0aM,117\nFboJePoCAb8,123\npu2ArBfwZcA,180\nl-uqZJwOieA,57\n5XiEDoHueUo,133\nYVOKgKYJB2E,110\nEd2KRddgv-4,114\ndRTxXWB-lpE,133\n4_4HFkbbbC4,133\nSnpNDM1XeZY,90\nnPH9cWTJgdU,132\nBYoWNwhu0DM,95\nihyRhFcUVto,51\nuKcFqL9-bHo,89\n3mycwnQWlug,141\n2elellCQiAE,7\nuYBZAS59t14,55\nIj79LQXZDEk,130\n4j9EwcO8tDM,39\nXeN0t2sZaP4,153\nZx8vIjEKvT8,132\nFmGg8C6mI78,133\n331wiVQINn8,128\nFosFEzsLKiI,158\nbk9oFLFDsfE,130\nWULhkipzltU,180\nkb7T9oK0tF8,108\nC_4LmbuSmpI,149\nt8dJFMMvNQQ,123\n2sJx9qbjetg,128\ns_j4-cVHFH8,57\n3fbtYisNC7c,179\ngkGFvtW0CSE,112\nShQp2Qp6o7s,132\nuEYm9Zm5zI8,83\nc6GEJoLDcAs,133\ncwJFMjOz_l0,130\ng9GBuciv20A,199\n70E-IYUdbZk,126\nt3ttyoPvivk,133\nIxj8eXcClLE,127\nuFzAxAEMwrY,113\nYDV8PMVi-fA,107\nBxQMT4R51Dk,155\nKS6f1MKpLGM,45\nJ196d5nLSYA,76\nBROZYppqsf8,118\nhcWo8KXmhLs,171\n5PT9OxwD6hM,109\n435mkg6_eGQ,132\n49LrC8wJLPU,133\nJgYPxPGfaRE,122\nHN-YqWQ3PEE,133\n8ZezvNWgi4M,142\nEFollUtH108,174\nUKMuVFz3MOQ,120\nAPsmTB3F7Rs,105\ngbu88CKkEzI,107\nFRdIXmfm6PA,128\n2eXbS-qG2GA,133\nSfaY0KH76nU,133\nsa8E_rZcXho,133\nwG6wio8azyE,99\nO4yuhvccQog,126\nSykyfXBJgNg,73\nmwAlagYhRV8,179\nl1NB8NQc7wU,98\nGDHVi3h6ZXw,155\nNUdeuIj-yKk,122\njx8KlhQBsvQ,171\n1EbSU5Zyx9Y,133\nhE3jShGPscQ,179\ncEjo0ajod1M,82\nsYNUp5rAZJo,115\nD9khHJTztKk,101\nYzu5yxVl3yQ,93\nsOLnb7BrMC8,180\n9iSVgAZ6bSM,131\n7nO7han5KIg,46\n_ptjc9Vono4,129\nytTswOdw54k,127\nBztqFxMXpTQ,133\nJhxb2wWFK4M,119\nqB2H-Gp0nlE,37\n95_DB6GgLQs,179\nPBXIOvTSzao,131\nMwk75Fek3qs,133\noqKAuNefcSM,52\nk-oVuQpjG3s,133\n8r_dXbWf2Aw,76\ncH3mtHI91Sk,131\njNEnqzkT_QU,55\ngnY0vVF0j60,131\niVpm6-9dPYs,133\nHBdaCz2BeoY,80\n132WIdxvgdo,76\ncqOc4yl1bIw,154\n6Wx2sfjX0qs,75\n8aRwEJvaPiY,121\nIlIhWS7-x1Y,133\nfbc0TS1kJ5w,105\nwz_y0fibuQE,89\nACiCfGoVIJA,67\ntrPOKL7Nguo,126\nnqz6wwDRWiE,144\nFrisJJ0G4N8,131\n8KjAsaJdi2w,133\nGdM1NCrxZvI,105\nyY8Pf2rgP5s,107\npsHsXebbbYo,131\nneFpFiuvYsQ,121\nuvFc0EPRSI4,126\n0x6LPfRGAL8,129\n5cU6TxpG_p4,95\nkt5pjPdRDVU,133\nzdja5DSb2O8,131\nDtou1hnP_Zo,85\nkJsYKhEV6o0,175\nm9rBv4Dn3Bk,126\npNJRoSfVZxo,65\nPTCMc9G3bcQ,106\n2IwV2bHqqyg,150\nWRR4iYRRBLk,126\nEEm8IXm88Tw,133\nBgDmIxfkPFE,127\n8IXVGrc3uOA,132\nfCXWwJcplg0,132\n9JVNdsyjU5A,53\nWpOPOQw6nqg,133\nZmdWPv5R_J8,129\n8NaBHCuxqhA,155\n1BRteOP9UL8,113\nUpj9_vP0WxY,143\nvG833_jH7eY,133\ndQSK2gmtNMI,133\nRWS6EzAkSiU,103\nGHZWWFmaFcI,89\nB0asbGJbLKc,92\ni9DMpMCCxuE,50\n--RFXQ-Xlac,127\niJKhynhnPyU,101\nPAC3F5dQufQ,146\no2vw_iYBAyY,124\nNbX7nS8SG7E,128\nq2nChVvlZ8w,132\ncVA4BO2v7zs,116\nQX1qfAa0np8,93\nOMzGVY5_gpc,107\nc9xahfssbQg,49\nPoIdfRnQZ4A,30\nxRtjf4AE2-4,133\n2CEYOnJqPE4,107\nCaAtavKP0-4,133\n86F-fpdTJg4,122\n9DJWMVR_yfM,168\nuBB3Cvxq5f8,132\no7WSgC9oGic,150\n-oWSoBQzQNA,133\nT9tQanQSgQM,124\nDXief-vtjIs,95\nRRJ1EPuYkZQ,50\nzlRuCc0kYQ0,125\ndXQq9Y7KnmQ,132\nu3XXKF0oDtU,156\n7trB7i2xpfc,97\nAk1dPU8uXiE,101\nV9K9m155U2E,133\n_YrNQaXdOxU,178\n3kX6rf9uw7w,133\nvPB2g1y2VFk,115\nDrIsPRZL578,179\niJ7r9jKl1so,119\nuCtMTbKX6_I,128\nq5BzDVDotzI,58\nJCnZaM2qKYE,65\nAKOtvcIssZk,90\nKDqz--u8NYY,131\nnl8PQAfhi28,71\n45mmWoSzIAY,133\nrnm2leIC_5I,130\nPfnAhUBroF8,133\nEiVRkqi02a0,122\nC3hCT5jijpw,141\nJtyvQx-YiCE,93\nquzMffZuuCQ,92\nuBf-pbxHb7Y,104\nZgngBG5JX_M,85\n7ZFGP8b4Nz4,47\ndKAvAAT2q_U,89\nDoq_EUCSB5k,65\n0MoJuaS5x14,90\nTiupPnshH-o,74\nH1JCgM_LHAg,177\nJxTMuhVED0w,70\nlWqHayjaOxo,51\ndw7d707e-EI,133\niiA0J5rKoE4,112\nfaaBOJDQ_Lc,133\n63exJW2rQdQ,152\nrqVI2DmLI2Q,117\n5Ay5GqJwHF8,118\nL0oNukxzH4o,132\n94AnEUa_z8U,129\nreYcW3bp8gg,133\n-TWsZukTS4Q,133\nx7j4IiO_6RI,48\nkcYN8phvjSY,126\nPahVp7p3XHg,105\nkGpNxt3bD6E,66\nQAsI8z9qfKY,85\nm7z0sOBPx3g,59\nwV-0rTzEedk,58\nKKW4wRDTI6Q,124\ngI7UY6YCAoE,106\n4C-aVLgAw8g,125\nI_cEoK1mXms,130\ngY7e586vhzo,105\n5N0ifKLehLM,122\nahkwQhQZWG8,125\n4QagAGmJcnE,78\nv71Epv4g6jY,128\nBahUC3EFWXA,133\n71qm5ZOlpAw,35\nCgZTVkjQwto,179\n1TCzcINB8HI,124\nHHqi6ZB_F0U,67\nGurNiNV5XvY,73\nWfUTDlmLMFk,180\ndlYo5IHqD80,133\nE-PIidaqCyU,109\nuI8lzoeTASI,182\n4jsUIgchHXU,79\n0a_HvCBSa1I,132\neFU730P9f54,65\nsRKtU9FF-8w,89\nFg9aUVqD1K0,129\nop6H61wRi-Y,85\nvWNDQxvY3iU,133\ndFAd35ck7hY,97\nAkR9wDct-0o,124\nFPc4QZqz4ek,95\necuuc8AsMjg,121\ngPadm1Ql1Is,134\nyy6j2LUyh24,133\nTxhfeY6M8lQ,133\nuSNvF3CEzno,75\nVC1_tdnZq1A,90\noBoPQUIowHY,160\nsrTcK8ybXpI,35\nHDxqSt_Ctbw,133\ne8i7WCXqJ94,63\nPSe5x7y-kVY,123\n99odqGVYe4g,100\nx2BuNuwZ9mg,88\ntXp79rAS5JQ,157\nROO66Mi8gTY,109\nGLPJSmUHZvU,95\n_5UWCkgkSzA,125\nODZ_xokDAc8,132\nylGIAp_-JK8,106\nRP9ywTd8bRM,75\nNBTLvFg_ve8,101\nQ6kNpNi_iJI,130\nBnZTj4nADDM,133\nRD2YJrvd71Y,133\nxs0lwxmTaZY,129\njPiotGz9O9s,58\n3FWjipa2Ztw,180\n7gFoHkkCaRE,110\nT04I6guPabI,58\nKRBzWtOy1PY,150\nXM3BsAAO8JI,131\n0EC3NTMOF4Q,178\nv-tma5YRyGg,27\n6BsWrEwtDP8,125\nZrW0Vk-Y_TU,49\nAWMxhZbiXLc,86\nAmjfc9pRatc,57\nQt8R3n5CP-U,731\nBWnG6--TRYI,35\nP_gn8RkrNAE,154\nrNoHdt36C7o,95\nPH8Gh-5lQNE,95\nCmyP-ljev68,177\nmFxrm9Q6E4M,96\nGsWZyvtX5tU,156\nmwHOh0YPpBU,76\nsYEGcfDCysI,164\nc7tvfdSjRE4,173\n117FZnev4Os,171\nLGoKKhQPggM,180\nMn6WC1pxVNk,132\nmxJtFvNByKw,36\nIB2eLqqkLaI,126\nqhquCQirt48,106\ncX0S8SN8Cmk,132\ny1tx1hn8Pwo,41\nrWeaYCoh1qk,132\nJBA3q4S1LE8,130\nvw1dPsf0JgE,115\nsd_I5ez3jwg,127\n7rlvmkQy4hQ,43\n_JZ7U3FsOJ4,97\nf1fSmptANOU,105\nzCB7RR3RaYg,133\nohz8_IafGwE,51\n7hY_dAeX9hw,129\nhGgWUKweXzI,128\nQX7j8pCeD7Y,119\nMEl5g32bzMY,114\nCMbI7DmLCNI,118\nnNXIh6RrvNw,131\nsNGlmsj6C-E,64\nj4ujHOSbQB0,112\nNzfSLgWkTlY,179\nBlG0jGX34i8,133\ndAMqMErPIIY,59\nszpq76d4ipk,102\nLt3HDRrYt9E,132\n-2kcu-IpfoY,132\nc8qfaEdYBJ0,132\nI6_C4fK94-c,129\nAA4zkmfbFD0,159\n_PGcaxxd8Yo,111\nOYwDIrdkJ3Y,115\nsu64KIPecuo,124\nWbW8GgAWKi8,184\nSQVw58aDt3Y,65\neuorMDBYxrk,179\nV5Rl2bVxD2o,133\ndslpHxTuA-w,196\nRNXEflQuWsU,129\n-CgUGjRFukQ,81\nx1ij_TEK_MM,133\n2Wlur8mxYP0,131\nj1tkwdfz7n4,130\ndI7M4Om2ITw,48\n_P4YRqZPT54,114\nB3rFARaSAws,133\npYBS9Sp0xU8,133\nkV1j2VYi7ho,153\nkmjblNu2_6M,128\n6_6Ml7hPZi0,176\n1g9QEQrHOMw,134\nhVxEoBe1UVg,79\nx0VcDfDfx24,124\np1YmfANJdDA,126\nghew-s2zPjE,38\nkxtAmNDjfj4,115\ns5D8jf0k_1k,69\n96sUPxlIfx4,38\nX-_LZp9jUgQ,37\nLEwJNM-Oj7s,131\nRoCmHW-wdtE,76\nWOjsnY1P7lk,161\nvAUB7dcUn8o,112\ns7EdQ4FqbhY,156\nK58cPYCTiPM,161\nSzJ6RfcDato,153\ngLYTObRhcSY,184\nEwYjmMjwF_M,97\nxLL3-fP9NAw,126\nlK93bvZ_fTQ,116\nKuIheGaiFLM,176\nY-9QUziXV1w,133\nqVwoeNk9554,101\nrJSnxSjZIcA,46\nyPBDhqwT8VQ,112\nPuVXyMNeXOk,132\nYNJflokcnFI,126\nKqAGFmus6_M,99\n99UdqbS8q2M,181\n0JXwzlRcYWk,172\nMDC-al-lnoE,179\npXEqXWfzyBY,42\nyGbUcqCXe14,133\n7ZkmgFpKdxQ,114\nDrva4gp66lc,119\nB4zWUki6-WE,84\noWBYpwZ5-AM,35\ncx_45Z56ZQA,118\n7uSz0mEtEsQ,75\nUv4YAx1nqDM,171\nO6IMaR_G_sU,133\n3gHqYddtmNU,132\ncsfyEVjimu4,125\nlAklD2ULzh0,136\n0wvJETrNQG8,132\nF5eqkWRWZ7c,94\n1NQhKtWHtmQ,39\nfnTckzsYgg0,132\nqPtAocA3m2Y,87\nqqATa_flYaI,131\n7UZpRynpUac,113\nAIcUKqhFp4g,31\ntlE5yK4l34o,55\nWK682NdLvS4,82\n1q5Us5iVWNI,37\nwReulnRQA-Y,152\n1KkrlhoFbBM,129\nL24hGLbmNrw,60\nJF4EyXhZudo,180\nO5tNdOzsbvQ,179\nHtagS7pfoJo,122\n0TmugJo-c9Y,147\n2GXdTkYEPm4,131\nq_215iQ7KDs,175\nq1Pz7ppcuJc,133\n_cYlrtZSG-c,129\ntUkE9qaVgmo,124\nqSLZflG9sUw,124\nC5x9bD6aoss,112\n4xLBhHfpKTU,118\n6GN20jud6MI,33\nSHgs3LFLBzY,58\nKcJs4qJPQ_M,127\niVoG7CivnH0,83\nctyDL-6f90w,142\n9GxFab5uMPc,98\nM94-kf_lXUA,121\n7oQ-Usd7Tes,133\n7SB16il97yw,179\n09idDzvkxZ0,52\nqM8jk56Vj9Y,132\nXcNYS8j9Qkg,91\nygU3F1ho3gg,95\n-meMCDrOmpo,125\ngTWo9oLJOWk,176\nyTeJ-41Tl9E,133\nLd6pt1jNCRw,127\n2quc-iQ96R0,177\nG4tfduPN3rM,90\nsmHHU_ONdGU,61\nQ0i1ldFm-oI,157\nUubHqEOLd8I,170\nx_errHqd92k,151\n0C6nvNlVx1A,132\nZEbN6Vnr1g8,45\nAdiEXXKIcpM,130\nvyQHWSbBCcQ,113\n1SnPHdvPPxM,85\ngZSxqyNDZvw,124\nnJ04J0TWD1I,120\nWEQOeQBpxvw,118\nZx0ME65y72E,147\nUWyzrr2ch5s,131\nMg7RrLU3Uq8,90\nX3mBsrFYwjk,53\nhiq_FE5dmWI,132\ncczh1r-Mb9o,127\nLUmqBuS8GAA,178\n30iTy8ws54M,145\nHMziYymVYMs,127\nxuQZJHfWf9U,131\n6EEradwg8aE,117\nMo_AVIt369k,133\nK8JhJPro-1c,155\njtD0Ml1CpAQ,30\nM9nDop-5T0I,122\npl3Oay3HDo8,133\nji8ZM5nKsik,105\n04s96zDt1RE,104\npTbelq2dtKg,107\nAe_PWQfCW1Q,113\n2Ee6xrIGhcY,130\n4NcH64kh_24,101\nTs5FbF_2Wus,46\nFPPdbapD_E0,35\n3LYT1O8DuR0,116\n1qQEd9G7f0I,103\nM-h1ERyxbQ0,133\nE4s5mJQr94E,30\nF9ktw07IEr0,131\nq5rs99ZpXCM,77\nu8QMY9JKlDk,98\nDKCGcHQSvHw,154\nf4ojzsvQhh0,76\nExU37Xz5Q0Q,99\nAd5ZJcmYc_k,132\nVvfRXzxBe68,58\n1sO7SyT9mS0,171\n29NsPLHISNE,47\nEcxB2iCU3w8,69\nHEU-JXcdfIY,52\nMCDerfZOnyc,122\nBhtHFyjXaXU,97\nsKFlL_G9S0c,147\n9QNXD_Col7k,120\nlC-DSaxzDzs,133\nyRPwDJWhqis,94\n2mmq2hx0tl0,215\nYlpN0wDqUx4,133\nvt0hblIsHiY,149\nl6FPyq4wvuA,131\nTEjRTNg51Io,126\nZOn8qKSFWeU,30\nMXkFgmQ2O-Q,60\n6hFxG-8I0Go,128\nV5ej5BJ55us,102\nFYDwyb7CJxY,120\nwwzyveUAS80,102\nLLyS4KzDsQ4,26\n51y64KtGGRI,133\nqOy1ncO2t8c,201\nDnfl290-aIY,128\nn7cRx_7umjE,101\n_1F59-J8Iwg,68\nfvoNncvOHfc,111\n63KOboifCig,149\nqVZ2CgLYKgc,142\no504Z9dWRqs,133\nbgXlHdBRpjs,50\nrpvLdqBrY8s,37\n_c_ufaxeSTs,132\nkJg3GP4tH94,132\n784nv_NRf4k,116\nw3-V_82VwQQ,74\n_IIp0gq_Jek,99\n29vmOrsOjvM,117\nS2XvxDaIwCw,78\nz9SXvUdM_iw,146\nq0yFqlPrLyE,131\nKr9_dJ6TPPQ,96\n_pEz5emBI4A,123\nGD-EP3ucPNk,98\nyiRcSZp7tYg,121\nAuWjXrFh1qQ,133\nmtkuDgE-qOI,124\nc5WfxwnLlLU,38\n4l1Yek0Z1FQ,95\nnJPju1f6p0E,173\n0iz6-4QxGnc,122\n0wNboYbgYjo,146\nkLJCWb1apYo,111\nyOJ1gWVYB88,121\nDei-j4tWI0A,170\nTyoZkvsxrSo,58\nH3ZYf8ECNWU,52\nrRbF5cPxVIc,132\nOCT_61zKMJU,151\nB64yKhFe5Lw,132\nDuyH1j2jMRg,108\nEC64kf5_Ldc,114\nEGWfothiSU8,133\n8cp_Be49Tyk,179\nYoQeksBRPLI,132\nA63kIf5CfgE,100\n4qMv02zxgdM,152\n4gjiQwh1p6M,152\nxCJZij74-J0,120\n1-HbIkCjDbk,128\nq06t8RTLqMQ,126\nJ0IXJNE0FXI,133\nYnpzAImvPsc,125\nR8-x5ORZe70,172\n_c7XtFcDfX4,56\nhZzQx9cEjhQ,73\npTptxpcYySI,171\nFK-mY_mZAzs,68\nkTk2jXiuo9s,37\nfBkFWhWXWuA,118\n9fwBPbt95vA,97\nOTFCctdiS04,127\nLBBni_-tMNs,116\nLNIKYmO7noI,126\n3cnhsHMhVZE,58\nU5VW0XTFBZo,61\n-w9kof4SQp4,176\nccAWioDHgQM,216\nkoWFIhw94xo,129\nsk3soFv1wHM,110\n3TWxK4Lb6ws,131\nrhtLoA3X21s,59\nCo2dpNsHMKo,48\n1SOZ6caLdUk,179\nq4lM2MGiS20,126\nfsaidN93VnA,158\nRkFcHUvyJ-k,133\nFlxXhrDycHw,91\n_9b7JgWu4PQ,133\ne2g4Wr81rz8,133\nlkq-Fd9TU8k,199\ni9Iy9amffa4,155\nMdTaJDKTgUc,133\nRESwG23_YGw,133\nC1kZTfHldfY,138\nNy1Q4bR5dMc,122\n303wyvo5Uow,124\n74256F5BtiI,150\n9yPj41sNdn8,131\nFv9_YOL38MM,125\ngj8H__MvM54,151\nUH_mFlx9LHg,134\nHIcIIBTJA6o,91\nfbNz1vlRSyM,123\n9fIrXo0raaU,104\nIdSgAIq22b4,127\nR9HPdX0TZAg,40\nbZq6Gv7rP0w,125\ndobHtRTf5rY,48\nFBWubk2ItBA,44\nVFqbGbU8f8o,180\nVyydT8dy3Hs,180\nPH5pgpWY1uE,27\nSAo2EHsCPn8,118\ncPsIU9BTbcQ,88\n-zya4vJ-kQE,133\nsw-oQlitqCY,123\nOIyluGsy-zA,131\ngRNkQRhMUiE,98\ngmk1iStpovo,133\nMQZES2Vkcws,95\n5FZ7jNq8A00,131\nUoqe4phEwEY,38\nC02zRnebZu0,132\ndMhT03nH_HA,157\nbBbLZ6m_9MA,133\nSnvRdPwoMRQ,129\nLUi7mkGXDRo,127\nx7CGZ5vxlLs,132\nz9lBvg5clr0,132\numOy9nT4Wpw,37\nfLxSRdnGucA,133\nYO2-9VWwiUI,131\ngfXVOCNMpMQ,122\nOQrzt7JI_DM,109\nylRqJapI0wQ,78\nNDw4Lax2j0k,131\nJJ83r886Kyg,90\n9_8nY_LQL3w,124\n9DKqoFCTC6E,60\nstSweLZol7U,168\nQnX_mQ9apu8,116\ngprLI38JwQ0,85\nQGNfrNJZin4,92\nJXQWJ63fico,182\nAo5TqA-l2cg,131\nXJTXpItCqFU,114\n5dA3DePirsE,133\nh8m69o_1PoQ,129\nPFsl1cGHzp4,132\nU72Ap0dAveE,121\nIAsBghop-hw,133\nNJmsKhstdgE,209\nZOoJoTAXDPk,132\nNXMarwAusY4,108\nbQutB3mYc84,132\nI42_ESLXfWI,133\ncu_A-aG8G7U,180\nonyfp4uSmcY,35\nJTu1R4b1yZQ,133\nJBGkwf707Ls,45\nMMeHpxjiU0U,35\nXqtjMtEkDhY,180\nlhZFyMTaIt8,133\nEajaioMj-NA,133\nRpatQWLKfAE,57\npkk8WIkTJPA,154\nsj93sTcEJYA,114\nw-4XyyU2w9g,131\nkRg5-TIF9LQ,66\n6uHak2M7cmc,126\neCfvE03ufF8,121\nXwQuM34oBkg,42\nbxgZWv4Db5I,174\nHvJTquFs5Zk,34\nEOCgXlRkmKk,131\nj1q-QWHUU0g,150\n8ucelPNuKdk,26\nIqc8WWvcTN4,127\n9t8iEpdabms,150\ng-GJDgd7D8k,131\n4rJgIW-Qwzk,157\nHQYiGnCpZa8,54\nnfJqMoCXVho,99\nSDesztIj8Kc,115\nyOoGw9aTRhs,97\nKjB6r-HDDI0,70\nHdXfVjRZ0yU,105\nwwLnrdD4l3U,133\noRKbez1LpWU,179\nJcuE90flGj4,174\nhjuYfeA2prM,179\nKrDck8ocFu0,133\n2YNlWDv95EY,118\nE1I0hAxGFXw,127\nyzb726TP-OM,128\n5ZzIGV7JAwY,54\ndpFSms_kfQo,130\nC0SqH_PRfGU,98\nMtTE8aWCe9g,159\nX_akiwYsyYM,133\nevoa_UWUobI,131\nNamXvlffiog,71\nW8_POt2KlfQ,54\ncS3cT6vgiT4,47\n-i9Fv-znJx0,45\nuGstM8QMCjQ,109\nJmxK_pBaG4E,164\nvtjCVRm2DAM,133\nsallI5PomoY,67\nXkasRfjEqFs,118\nHCqR0_a6_so,106\nathtiym8OYE,69\nYH7W2AR9b8w,133\nmnUfDpO87Y0,86\nE7kK38uDEeo,129\nELpItLsTKgY,132\nxs8k31_ucJ8,132\n9rDK1qdc9-Y,117\nZH7hyzPIbp0,83\n3o2ACEr9NmQ,124\nPuvONUFArdI,128\nifYK21xsVtI,38\nVZFMY9mYu4Q,133\nqzayNPEmoK0,87\nJPasKum1U9Q,58\nHaCRdT6wcyE,138\nPlO7gaalX68,123\nf0KpM0-h1CI,125\nQ4DEaXN6Dp8,120\n6lOPeGgf9C4,131\nsPdJwBfuEDc,122\nA_S1oRHSH80,136\n65L7TzsFaD8,94\nl8aozWddbPA,132\nBT7WTaXcPLU,91\nUaRyn-tb0U4,133\n2A-SOVQvPyg,108\nLb13v2-bBJQ,104\nW9Tdw5nG4dQ,134\nh7CBrN19OY4,156\niYP5-Dl3rhg,180\njsZkkqLDFmg,177\n8WraflY6rl0,63\nDF2dkoIOm0o,132\nWjQovCr8Tgs,102\nPpD6HmPdadI,103\nwVsMJ0ntvmc,36\nzFgFyCSZUvU,67\nXFrerPgK0kk,115\nnBmNcy4zZNU,133\na88BNDMlPSE,68\n_ElAIqSBTKc,104\nAkOcZ0S8vDg,132\nwxrmK9esHpc,133\nNrs-lyhcXmA,97\nu56OqFjs1dg,81\nyxnFEjVMK2U,132\ngqKobRWnvZQ,133\n_DgOdOLNiaI,130\naSUmLsp97mE,95\nvFAE-ZIntVI,110\n99PeJShwZis,129\nNdYmIIbYoH0,131\nMRSTpj2Z5cU,109\n1YFJmGH_fl0,150\nX-3TvjRKYPI,132\n9CmgJI8aGDg,71\nj6oBbBfhgYE,46\nqs1QcRTOMEg,164\nSmCSJ3akPIs,103\nEHJoH9IFboo,61\nuqMxfPMxW78,132\nnekzfohNwuY,116\nd_8TCN2wA7s,133\nj-OcaLECz1k,74\nTWjtzvFrA8c,145\nlNWV7T5KlRE,171\niqyFc90L3zw,164\np0qVhhIfWr4,129\nre5veV2F7eY,77\nyAbQlHZz4tU,102\n6X4Sukx3GsY,60\n7VO2NcQl2-g,118\nDTVnQBRfCAw,133\nrwzNpFWiOTg,99\nTJIWOgCUdGE,94\n5qfoeuQFFHw,105\nVUvB-jPvVuw,59\nWPYqRaOm1ak,128\n8COIJaMQGc0,75\n5GlQJ1kKxMA,104\nlPQ6VQzuyxU,140\nDWoQcfvV1Zw,106\nQzklMXES1BU,179\nzk0AexuAhlw,129\n9tzlsm5IvIg,42\nazvRjKHhpfA,90\nEZFLsjeeVmo,132\nmtuuOV4FtKY,129\njocK7m_000U,133\nlp6ibYQN8vQ,55\nuJNHr8QQVJQ,133\naTaX_L7msxs,157\nHws-ExO9fhY,128\nQQOWp3tLb2s,69\n3JO11PBdCAo,126\nbtWDXgrF-bo,120\ntB6Uj2RGhPU,141\nY9ewiC2bykI,125\nO5ExjpCtg0I,97\nMCXx5saaKOk,132\n29E6GbYdB1c,179\nZ8zeMXCxlmE,131\nNwJEb3vJvWY,133\nvoPBcugOZPU,150\nTofiEsdr7YE,62\nssukL9a99JA,132\nP53a6QG4jlY,89\nl29oT_LWdfM,133\nGbW8sknTWZ8,121\n58YNYqN6lko,40\nArXhfCr-vb8,132\nae-cYVuxBKI,131\nyNDm5IA6nQQ,127\nkxu97nWDapM,133\nSa6o9ovlX7E,131\nm8-_aJ1BiFE,40\n9JQRMnxE6No,94\nIIjzneqtAZA,26\n36IxAWko46A,133\n_WyD94vNqWg,143\nPNJ_FxaMYUw,169\nCnSvI5JxRC4,126\n6mreIgrIXQ8,130\nYYV5f0Aqo4w,120\nu3mupIlFIYQ,179\nlDRzG3mH-DQ,133\n9aCdzjCftgs,98\ngZwxRw15AdE,131\nNM_5sUMyd0I,173\n2KtVKu9CfDA,130\n-_XIgfmDa1s,132\nqi_t-McN6Vk,47\n1DA-nWsGNTk,105\nSG4I8PHp880,131\njmCn-jfg8Jk,132\nDoJaIZ2Sajk,109\np8fPj1-nKw0,83\neb46yXP211w,180\n8t7NUEm0mMM,153\nNnxcN2umAOk,87\nMicQ48AuWhw,117\nM4UpIJYB9Xo,69\nrzXNFMVS7PM,58\npq9dj2Q6edw,131\n_fJArvSVqEo,120\nmZwKEa09xTc,133\nEMTbkfgT_jc,78\nfNMtHosai08,116\nNFV2sZJrtDQ,131\nd68yRIE9OvQ,117\njHZLatZGr0E,126\n1CDlBLvc3YE,82\nuaSkuUzEuq4,132\np4SqclCqxuU,62\nkikLy1L-keE,133\nxx2qTUg_buo,167\nOofMJ6cwzLM,127\nFZ65jfSwpAk,138\nwwE7qkkri-U,138\nh7wEE6Yx7IQ,128\nTXs4RCJasOM,116\nTzMGDdUyHkQ,101\n934iAVn9CKw,177\nF85KoecJotw,133\n5sRrCX-pLPM,92\n7xDTFtG9kYw,164\nYIYJpbAK6MY,49\n773E6GPll3A,179\n8YSVapFtvtU,40\n-AlTccRsRsk,104\nf-77xulkB_U,166\nEFkIZ-Zf32Y,49\n0IL5GIcAS70,111\ntcR7LgBVTNE,125\ndMg7mCGd3js,133\nZoAlJJb4aYM,130\nNd5_lg9Ea0E,87\nWzCgOrQn0GM,133\nrylEfnxeUZo,133\n6J8__fWphE0,115\nAmd3bMqEdjs,40\nZJlmYy-mAZY,126\nI_e8l4Lj8OE,173\nrDXBM22wbrg,133\nbXt-KqvrSh0,45\n-9FxcS46YmE,132\nUfmdBPl48uw,123\nUEaKX9YYHiQ,123\nWSlojAguwGE,43\n8l4qdf_1nGM,131\nxM311HohUzA,119\n2ETruidd5lQ,180\nCzOH54GemVo,114\nl_OJuYjvKrM,79\nFe3c7Txx0Sc,113\n3XK2wqc1cr8,102\nqZBVXYYcCjQ,133\nk72rrPUEDdk,108\nIKiSPUc2Jck,130\nfBqbMZ23n5o,133\n9FLLYpUnuwQ,179\n1ePe7Q_zH1c,172\n8qaAKxJp0EM,180\nPnUvSn9pVaA,143\nAaHqtd4dUWs,81\nBoTt0juJio4,119\nn0ZGibTDo9A,107\nsBDEE3_Z-cw,88\nIQp7gtX4w0U,130\nIUodLjwwSBU,133\ncxQuvLl2E-I,64\n8c-Na7OHYnI,126\nlD1XDCbhtn0,54\nzAeofWDUArU,120\nBcufzXXaEoI,52\nO-__QzkIWOU,295\nHOpLncx62oY,152\n2mz3oytpugs,141\naYzPUa-6BLE,112\ndl1X9j-9Lbg,92\nzWjlFN5hO6I,133\nx0ce_01UW_Q,50\nolxqe0CQ7W0,99\nyAvJkoCNthU,120\nRVbEs5DBPlY,128\n36QmLon8dn8,133\nGARQJHyaBD0,178\nxeyFoIgQKrw,145\nCun-LZvOTdw,129\nzNvYQ2ILSCo,71\nhLrM7OaMTGg,132\npYdjNeFh6zw,131\nDKtjBqJ4NxA,90\nUUcH7wBp3G4,80\nLyyc9S3iufk,131\njpY79a30azQ,132\n_dE4g2x-Ing,125\nX6YLAmKFpRM,167\n6lGs-tXWpR4,55\n9Ihxdc2RbIE,46\nxl01-vBoHsE,123\nwwrzI3b5LxI,133\n7CEYqIjhTHs,127\nQL7Qq67AJrY,132\nVLR_TDO0FTg,133\n4SoC6atVsLA,149\nvjvHNXSWvPs,83\nAoWdk9CB-mU,133\n6EFjbeXuNCg,36\noiikIyodOAk,128\nOtCu9saoxeU,133\nvjkkbQy9fLA,208\nnYb42fv8pMU,70\nCEtViNzvgf0,645\nXmYC9RAMVeo,89\nvKEqdQhX4lo,90\nAMQgbNK7fGs,70\nxvvx-0G7XHc,126\nRwtay9w8axo,85\nhPmV9DBCrfQ,118\n0qWMjgpIECA,84\n3z0t0O6ZIPs,129\n0KA8Qkw3nks,134\nDz9YWjkw2BA,128\nYpIkOtgOdbo,133\n-FyVSeNTqJM,130\nsDKUL1YRZZs,110\n8l7LGK2hnQw,103\nPnpgz413Wpw,132\nvWyTTJE081c,126\nb_BA368IluE,107\nDPQ47h-k-nw,131\nQCzH42efniU,133\nddGwvveSXxM,138\nsHTeguzrPto,96\naU-Qp-5TsB4,50\n_D2USWrWBL8,170\nk79KJYXrBkc,51\nfeeIOZH7wr4,89\nMqMD1DK0CTQ,94\nhjoORS_zVWE,85\nKuR_Z_vRD2Y,127\n4pz2kXoDo_s,86\nriicefV6xiI,66\nLwELqrqsf_o,113\niMP3uLZl6UE,122\n8prXNxNfEpY,150\n4Os7yk5rXtY,133\nsRk8Aentzic,46\nLFinvO6-_T0,132\nhBVvERsq-Kk,127\nLekZbZ0ksyA,130\n--VWN_KTxzE,132\nC4Y-l40swH0,102\nCgd47hmpvE8,110\nasxNFYNfOWI,53\nSjNu8J7JQMk,62\n1KdjUNIcP8k,99\nq6zi7XGjQQw,114\nr2ucpHgHo1g,115\nPJkmvYEqRVE,135\nuC1Lmk5qK2Q,125\nkK6QQIvO9gE,70\nhG6DmzzU8m0,41\n9KstSfW1IAA,133\nsc3H4UkkZgk,97\nUmwLKU5DIGk,131\nlkmpm4TeOvE,132\nO5W1OfGz3es,88\nUrIcAAryafo,134\n7mtTvR0Rg_8,48\nILJTdnLyUC8,27\nKjDfOAhtWwo,135\nGrlUWh2ZlHo,180\n19q6jSWFPCo,164\n1Ez6dw3ywcc,178\n1OQl89ewXvc,133\ndS260nXz5d8,133\nC3W5kkZLN50,115\nMUVukUuF9tw,112\ntVRPz6-Tkww,133\nKNiplLivjQI,174\nJEsQCm9Q3pk,165\nYdzbjAEecWA,625\n6ovOboVwB7g,96\nz0ZnN4mivGw,176\nMfeSSw69cC4,87\nVYjyFQS3DWM,154\nOMhzAcofd_8,132\nyNvuIuWY3Sw,133\nGnbUZqkXBQM,68\nZ8auSdJSusE,60\nBHWGn9p_p4s,135\nx11OTizHwfE,108\nCnT7g2Dit2A,133\ndQRfWqSj3Gw,113\nxZ96tl5MrfU,127\nyb7aNfMvRy0,178\nxz3CYcjdSaI,130\nx-A6zERn6yo,67\nqAhaYHHcYyk,45\nrGS4bE0G3yY,73\nM4-DIldIX6U,58\nLdcIe3gGQHY,115\nMQEwJdhfddk,104\ndXe45jbpElA,122\nfU9nP5V2vw4,115\n_ZmzCV8muyU,100\nckjDSzjU-cQ,94\nQN7he2e5qq0,131\nvyML3Kd5wXs,149\nouppQFx3v-I,133\nHppKwvQMZ4M,129\ndPi40lQetew,134\nBGX4nMrnxg0,111\nqemi7V4jUjk,133\nETTsJggQl3I,133\nNYFI1-FTw94,132\n8W4DxSCopj8,173\n7xohWvO9i4c,133\nDMeR-bkC13g,130\n4K8M2EVnoKc,122\nDHzx2P4x63c,139\n57TliyF8MFI,132\nMH619vxtNdo,81\n10Q3mew9R6A,121\nDk7DE4FghW0,180\nEGa3R9VvDVs,85\nr96GiSht1uQ,133\nw5EQRIoHjQg,80\nFKCmyiljKo0,106\nM37QsnD6nZ4,127\n6YbTy5AvRP4,133\n9aHj6prYd54,97\ny8MWkDexzRQ,144\n34Rit1AnlVg,59\ngcAaILQ0ATo,170\nDaMf1FF-iZ8,135\njNN6FI1Gcr8,133\nnmldcHUthLA,118\nfCbf4DjlHuM,133\nlj59KyjwK3c,51\nTiHM7F5EUaI,116\n-eIH1jFAGlY,100\nYOrZHY_-ap8,132\nI9uVquExMi4,117\nOtNlrEBrp8Y,137\nbmdgHN34hnk,92\nm_PeQCPq8QA,158\nzk6ac5Amzr0,129\nnWWSMiBag1k,147\nEYn7ZmFV2eY,52\npCnPsUo_p9w,133\nEEGg9AZmHZ4,111\nQRizQTLmAMU,153\n6J-PhFYNbOU,98\njJZ5x-zUx28,92\nOksadMMuXQ8,73\nSoP7TLCtylg,122\nCer8qtPJiaI,132\ndQbpx5Be5rI,133\noXybPR2g7VY,47\ngXv4mbv8-cE,63\n3lGZmV8_XxU,109\n4Ky2p76AKSs,127\n4CgNb8LRtng,127\nyU5kwdXhSzY,162\nfc0uxTiUDrE,140\n4MG5Dy0gFFY,142\nvSt6OezOAwg,57\nGL2B4xLAjE4,129\nAupQ8Vm51OQ,38\n07FdVcspOfQ,177\nPUH2nHjBYsA,234\nTjpkMfTBVQs,68\nyGMaZgUHOQU,235\n0fwudBWsw9Q,125\njTtTZjp9ViQ,129\nzlaLlT-5Lf4,127\nyRLCUdWuyng,81\nKOXE9k1TX-s,102\nZr0xGlPjTHA,132\nu82elZ1sGVk,131\nKH5Q12Yb5u8,112\nZgsJGHxZxcg,180\nf8_4uckfT8I,186\nu-ApxFOpl28,129\n11TGIP2Kouk,99\n9I0E9w8Nqfg,121\nE1N0IvW6HyI,133\n_nFXFkb8i0Q,132\n5B5VRYzzz0M,132\nqbYHRU551nI,47\nlWTyXHZu09w,131\nVsLlPXjtnVs,42\nkGViaTOfSow,112\nkBEhz8vw2AM,132\nxwsTm8Xo7kE,132\nuwV4iMoc7xg,53\nfLvEcBoOpnQ,58\nCdQ7AbtXZaw,35\nQub35DMB63E,130\nkr_z37TgQO4,54\nir1sVy9JLyo,123\n0-0MyjmphsA,103\nlE4UQ5gh5Zo,124\nRd5dYQHoZS0,124\nCOGBbUM8F14,157\nZ2WZrxuwDhs,180\nFKu9sUXtjpI,84\nFNWBoJNTc1w,128\n0ZzNlA9uZ0g,127\nVy4OBSqz5dw,132\nfHmesxUDVz4,76\nfEEj6d3GTOU,98\nYNTpnxwyEg4,133\nTsNv4tohJ7Y,32\nDUd5RPVDjPY,175\n74Ern74xGsQ,113\nQunxdSWz-Go,81\nJWMjQEyfaQ8,133\nvkkM9YAJ-Ts,46\nyMRmV1Sj6j4,107\nzmicfGmQZ9s,70\nhyFgMOop-Mc,132\nyoeV1e8dTTI,132\nNoRnWATJPrA,115\n32iCWzpDpKs,101\n9vvMKxDvAt8,133\nqoWjU8OAUaU,133\nZdN6HbD0paY,98\ndjv5gGXEyXo,179\nvKjBFsyYC0g,117\n9VEScwL3KGQ,162\n_wpGttPSHdE,178\nUPkb66KjZc0,196\nTQezxXB6TYc,118\nIAqy_BtCqM4,132\naqbP3OofrHU,133\nMbrO-ZbuhIs,133\nvm4p1tZAmEw,131\nmRoffE53BJk,141\n7xOOk5w5dDA,67\nU6iLlH0l-4Y,132\nvecXbFwYvPQ,133\nru6jbod6hHI,250\nYafZPxB5DRs,133\njs-337d3gqQ,128\nKM9SPmAD6M8,56\nqBFSCbptrJk,179\nSmLwnNTfwHI,131\n134ua7rOS4g,88\nPlBpNTEaRTI,55\nQs_PHrILn6k,46\nGfhTEwz56do,132\nA4Ntv7DJURM,159\nuOmtVFQ3WF8,219\nnn3I6-DBLJM,149\nlbiymQJsC8M,88\n12Iosf6btzM,128\nlGqBJx2xbqQ,177\nzBErHC42Gzk,57\nocb7pXndlug,104\n1Oetxnq_OG4,180\nj4yXEmQRq34,157\ndKMVUS6TC2A,104\nDj3px5kc0_Y,96\nKXYxfwVioeE,114\nWzp2rpe06j8,91\nKThMkPl6q5A,133\nuLYYXvBlUgQ,83\nqskwY84EXkw,133\nCg5acxVn2KI,130\ni7AUpGXLDdk,68\nEvQmjnk86zA,128\nArlsU2_cUbg,132\nJZbJcEKVBqk,99\n1LDL6H_on2g,133\nbbuElXPp_s8,127\nB52L95xRYFs,121\niqLDCIZ1DIs,133\ns9jX0S7mvB8,122\nmRmLfuhXHR8,171\nla1tZNwaBog,131\nRL_3JEsg994,147\nClr9NbvwbhA,28\nbllBC-ThwjQ,135\nwdaFZ0seZBM,133\npsDnYKqgVT8,127\nEHV0zs0kVGg,200\nA-KN6ZbpIDE,71\nlHqpwH6rqOY,119\n9Najox-g4zE,88\ncz1TJ4r7bOU,178\n3jtF8hfimrA,89\nRmISVHxjcAI,67\nOBd1rEo-iyM,128\n6w-07V2q_DE,133\npgET7AHDk6Q,107\ntbcg51lQx8Y,133\nJ2k2CQgmaWo,133\nScHOVAo6tQ0,157\nQgsst15iI2k,110\n59R3QIB6NqU,129\nseqBLjTfnl4,180\n6c_H45kt1_8,63\nvJ3TMzKciS8,132\nn5YGsbi7BNw,131\nslW61xrU17E,133\nLh8dcvj-0NA,103\nxl_aSDYuXhM,131\nm2dMEucbXIA,132\n2bx4g-8PY9Q,128\nf58Ba78abHg,82\n8u_gSd9eIO8,171\ndxlbeqeGkQ8,133\n89AsctCHnVg,142\nkL4cEH2JdQQ,35\nXOnuxo70q9Q,139\nLkxbuqvb5A4,90\nFonBCrV4Fqs,132\nUk280jVuH1w,130\nM3jyyQMbJNY,123\nhnHERe72nQM,133\n-zLOrCQ0BpQ,130\n14HerspIb_U,156\n9wr10j2nUJ4,157\ng-Yufp_dafk,39\nYky4QtRX_DI,177\nG4YcCF8uLiI,153\nyuU67Mv4bFA,110\nfZXtCHoRb50,140\nVSDqDOLupNc,177\nR7CbMBUNC6I,104\n4lQ_MjU4QHw,116\nfC976fuQm4E,133\nX7futPJdeOg,127\nkghbSGoV1kE,113\nu3_3EUKbY00,130\nEzy42s9AacE,141\nRjYsIv90zWk,113\n2tmMMXTmM9o,133\n-fIi-c3tSig,133\np8J-YmVs1j0,180\nGQy5xztHVPQ,133\nbTdvsBKjlbE,113\nNHoU-7e_tw0,131\nH6NlpE8B0b4,81\nLJq1auJq_gc,152\nb3DNx3kLY58,126\nPTEskprXZOg,108\nMFZGTRWVOjU,122\nHvFU1MFkLm4,211\nkQQfoIy7SNI,49\n-riX6Xbvb8w,100\nk98tBkRsGl4,130\nI_yF6-3pXdw,77\n9r4784rihOc,128\n_f0TNK7fb1w,129\nefNMnSL6Wlg,133\nRMGsvyrEB-E,73\nADmX9eMEV9U,133\nT0QshoW8SQY,95\nM7iC24MaxxI,120\nNIrF-rsXWJM,123\nM4NDR6zyzkw,133\nZ0W6ufDtdS8,123\n6rTd81E226U,139\nx2-MCPa_3rU,132\nE6yFlIQxp8g,179\nfoll8sDGq4M,68\n-Bprg2_s9mg,180\nCVc6QvzHkk4,66\nzoK9i_LiB5s,133\n-UAElWXbk3I,180\nUPu0PU6sLxo,105\nztSSzTA5Z90,127\nxUp1My_eHn4,41\nklCemtBU1cg,132\nGh3l6sVwMlI,117\nal-tdoT3gL8,122\nNgEOTc2qgVg,118\nbcs2En6tGRw,115\nveN5fuM-AwI,108\nWBMHd6mCSP4,120\nvvd0meL8260,133\nLHv4eHp_gUM,180\nxg4OR0Tpy6U,157\niJsNpzHlrgs,131\nlFiX7y8KFoU,128\nXW9T7s1U_XU,91\nDONkgw00QSE,97\nYDDzjijc6jY,80\nKlWlhyX6rb0,113\ncvmcGY_VwvU,125\n1t867tCFccE,120\n2RB3edZyeYw,147\nOn364s5HiSk,46\n1iFLiN6E1qE,36\n5sFu4iEF8dk,102\nBl6Wk5M1vjk,128\nDcH_p1vfD1g,126\nHcHdy_Vc1DY,108\nY0FAYOIt-VQ,133\nWpCGV48yiNQ,58\nY4u6gpp399U,132\n920BmIe4nN4,145\nO-ydNrUWOik,131\nkh0exWqvxeI,133\nhP77V2X1Biw,132\nQynjN9Nzr7E,133\nr2NHTRgH3G0,88\nWy-H77tovC8,40\nk-Rg51azVlg,110\nl5s3_XV1rkA,107\nJJ5290-0lw0,132\nJaBh-B6F2sk,48\n_flZU87W_Rc,132\nbb_uXwPiNxc,133\njFPV16f182w,123\ny7m2AWevwoI,132\nGxGkcC1VrhU,131\n_eqtVKrH-f4,86\n-6OTbT0dkjE,97\ngwXzOVu0x-U,98\n4BRkb7LhkUU,133\nHDq2KcdmVU8,125\n4BXpDgTVN2E,133\nTt8DoNerIPY,131\npC76bYmEONY,128\ntUpC4nJKP9Y,111\n8_MpC8PcPQ0,66\n0RlJNtKi_Pc,40\niB25eDhWImc,165\nS9LRWazyNC0,130\nKBUVZlTNj_8,153\nqyLJCNyRov0,84\nAPS_K6M4Qac,133\nUTAZimUwzCM,131\nFa1IN1GN4Q4,179\n4YZy2deJstI,100\njs-kku6X7yU,133\nkTXlnI1XaSY,130\nuPzTQvSPsqY,114\nNAymJ-WVGOI,125\nZVpdb1HxgEY,133\nz40Tipkm4IA,177\nvj_NmzJ0mMA,132\ndJOMfmVs9Ag,132\nn4BJBz8GpzI,130\n1wc_mZ86ypg,121\n83twDFjlCjM,129\n5M4QWD0U8-A,104\n3VKQkg9cpio,115\nHzF_TbmDH5s,133\nFIKDkbVveeo,133\n4lzhxfuOW-A,180\nZjDB3Pfl3iA,118\nvRJ5cCP0ZPE,158\n5bieIiX5KLQ,109\noY7QReO1WOQ,85\nVMVzQ8rW53Q,120\nJVWrVCLs8ms,144\nqKut17314vk,30\n-nX_jQxWFN4,94\ncgGJhEgDgIU,129\nLUr7o6R4u8U,118\n-85ubSkzSWg,70\nD-UBJzXzoho,131\nRv2hRfqlJaE,97\nO47od13_x1k,132\nZ9m4hRQkVSA,131\n1VZzulIl0DI,176\npHvNvYijtBU,105\nIdEsGZhAO7A,132\nMGiNXAG0gjw,94\nMdwuW8n3JYA,132\noK1X8SfGMs8,105\nk6TPsaQRQus,62\nLORyEX_5czg,62\nKrwlDh465HQ,129\nclr6zsehoTg,109\nqOKE4dxjayU,92\nHGU3PRBxQiw,179\n2GMpuN48u5c,133\nVw_QOIebFpw,45\nHqT0L6jFMNs,107\npOPWdQO9bK4,118\nAd4VvlLYJ9o,132\nLe9uGkbtxHk,131\nKY_G2f2R1Tg,107\nDZN4r8p6KbU,159\nIOXtBc7CJI0,132\nBnx95KyQEAA,110\n9pl_3xQBPLk,41\n5oav3ZjdRz4,48\nkhz9zIg_2sc,100\nkR3VW07XfUo,133\nE16S5BAkzQ8,44\npnTtzyItCQA,115\nDsYP0ql5mzM,134\nSuRxmapiDeU,138\n1QDmLu5a0nI,131\nKv_9PD-_akA,127\nuONmjd_RGk4,133\nc-veUs6bPHY,133\nqqhQ9jN3gj4,133\noOFm9UaRuik,64\n1kj111rBzoo,82\n5xzDAgFrnf8,63\nCEuqveZyuQw,163\nGbZMFMSKQ2s,107\ncKewmzrevAw,118\nGKT1gsoVouo,84\nOYrxSQ_Y2Iw,63\nubgR8CKyzYw,122\n14Fq0FgsKfw,121\n6ibWJnY6Ur8,126\nQAztYUCEhzk,108\nRwyLbX4uOS0,133\nsTYIlyRGrA4,72\nAgB4n-1-_BY,168\n6a9lq0bPrLU,36\nOaSuSnUJm3E,124\njEHoNJLqbnk,133\ngKY3ShRZPkA,56\nt9eDVFrQDXM,56\nP653N6uf3Y8,29\nLLs-Oreo_bk,179\nzAge7cKvs9s,133\nPNOuZUHKneY,133\nYCIqymquy54,36\n_cZZ4xkgUBg,117\nMfmOj8Rqcog,130\nInDLvz0bN4k,72\nZMplnAKdBsA,128\nNpiIAuEOzmA,115\nqhAYzFv4HYc,41\n-qG1Hke8w_8,50\nbvRS9b2nhh4,68\ng4-0zhNcrnQ,120\n5uJV71s0r5Q,121\nyr8bdlI4Moc,99\n-WW51YaWO-4,111\n56a5meaLhBM,39\nG0yU-YJ6sjY,91\nN_HXTmS-AF4,178\nS-pHuT2666s,81\nBP2zVb8Ufsw,50\no-iPiN_YHjY,178\nFIekWUU704U,30\njYID_csTvos,117\nFcqC3ZIsQRM,94\nPPAe_7EK5yQ,133\n3Z2NklQONgc,129\nLYppdp_2GCk,133\nZ-5JqDEHfe8,129\nif34bKbBqXI,178\nH2UF-eI_dj8,126\n1JauH_EKpaY,95\nE6N0yJRAAAM,132\nM1fnkYbVijE,161\n-nIwFGmgYMs,97\nbXpq-sf0Drk,133\nr_U2p-bdeww,126\nI_kaUp8NDDU,106\ny8SLxD3ATw0,133\ntHdqS2Vda8Q,115\nQf8im5NX7JE,63\nPWTptbb0vB4,40\nTDecVpSLT38,110\nqcZk7ketB4Y,121\n5I-k7fSMhg8,143\nB9nqewDmx2U,173\nfgxnajrZN9s,133\nwbVpwsKbFCU,47\nT59ufBxosHI,92\n7OmBXWA0Rfc,133\nqmGHg5uJ7xU,129\nf1gNWDY4gUM,128\n3ArDaUOO6w0,99\n5dSvsp3dxvc,116\n7JlG7q-ld8M,133\nKgSTMVwRSiI,52\nVWELyY3orwI,93\neh3TXsx8B40,98\nco9SNfJNDN8,61\nmgU73GKlSFw,116\n05nQ6FtAaYg,61\nseMHoTTskQc,103\nf2ygGoHSuPQ,88\nZ5jvQwwHQNY,142\no-rVEtR9rfQ,133\n_zSpueUqvcs,130\nYW3MIixEps4,128\nlBS9AHilxg0,127\nHU3C0Vv0FeA,131\nYf7MT1p1VNI,99\niplfWUtKMzI,141\n6aWxJ0cxD8c,73\n5w8kGvQ2j5Y,132\nMwAV8x0J6DA,128\nfyI46_cfTW4,48\nc35RsjYzAhY,46\n32JbDv50hFc,35\nCs-L3psiK2Y,133\nRr_zj8D511s,126\n5_2gW4c8hZ0,47\nG_0ZVzUO3Os,119\n-e3HqC2rbQc,130\nfqM1ttqNA9k,77\nMP7SCUB0fWU,133\n7OXf2fFCRB0,179\nl8WyXv7hQvE,133\ndsCzZE_y0so,130\nz0s6zZJdsZo,132\nhgzSTQiMxj4,106\n6soXf476aV0,98\nObey6WggwjM,180\nI1L5vXswv0Y,126\nwp4tgWYqjyw,44\n7QZB_cbjdM8,168\nbIaFHqnx6ns,133\nYnKV34oNXiw,177\nA7kyMbwD9o4,65\n6mGJ0lFK8c8,133\nfy-Ocaxlk1Y,121\nnWAV_KcSkNw,132\nyIUdnWv0MP0,44\nGbLymMUHlXU,128\nbwcLwZQGCAE,132\nWlhyiskKER8,96\nQxFgIsrvJR4,107\n36T5BEpn3dA,46\nKJI8TYE7DtE,124\nL6FYDW1TC4g,122\nNXwxYIjqocA,182\nfVltuJq1SQ8,120\ng9Znovljrq8,162\nvbF4qz_-PCM,126\nR80X3_lPzoo,133\nW6GjHSOtv6o,77\nCS-nCS9Az94,135\naqIYxDk4vh8,128\nt4qrfjEgdt4,132\nRAQD0bY2_OM,131\nyMqQUG5t0js,90\n6rl0rXHWtbQ,118\n12DQN8oxKTs,133\n0tjKGAwyCIY,150\nUIfdjPDPM-I,71\nH0AnJKKwhQ0,105\nFi51abVO4ac,128\nxWHYmNrAFlI,102\n1Ej-iuKgmvQ,133\nYBc362_R2pw,170\nfgMlyvq2oNo,122\nLaYpVhckcL8,128\nW3IgFbCSqSs,111\n7-YQ7rO_JSg,132\nYMz-skgeUdw,133\ncOyt0_sRRvU,64\nw-VBcSukH_8,67\nxQvyGwbVWHk,125\njhFrFXWvnWU,67\nt8eNpwLPwog,157\nAwFtpeX3V-g,112\nIuz1irHmWLA,58\na4EqbYUl7Rg,133\nAdh_8pva10k,133\nmYZGSfnk144,131\nltO8_FJbRUw,180\nlGIEwdZTNRQ,125\nA7ZmPaAVJgo,127\nhXWDSeVeaAE,179\n_Er9cXkqWEs,70\n332NO4_03vU,124\nA0FU6cYM9Vc,133\nS2fxN2JZ81A,120\nC5LuP6tDw3w,93\nTURTkb6N_FA,132\nujX0y3zcvP8,49\ncZP4yFO6l78,121\nJyjlwpXupvI,129\n0cPmlvsRKhw,133\nOlm0KUtsFE8,170\ne6kJsyysbSM,101\nwGvGiFhbmwg,40\nlKE3zh_Hxqw,128\nLvAIBDGIYE0,127\nHXRuqpUG9RI,38\n8C9qRHJxOO0,133\n3VIKJMifm7k,133\nH0UbjaTkx04,102\ndarXVyyQUlc,133\n3uUlGkrzPWo,66\nGSprkzio_pE,99\nFNdcZckBm2Y,118\n42xTE_bzg18,118\n7BnAQgS15HY,119\nf27cck3Bl-Y,134\nuW8HDrKYisc,140\nrIr6rEndy0A,133\nXufQB4gbjdA,151\nWQtoXhnhFwM,113\ngQubL9r0qAQ,104\n5s6vEQzHOcM,103\noKcbalkmH_Y,133\nE3B_XdL7Z6Y,132\n0u0P8j4vLyw,45\nrNjX3tQMygk,201\nqrzj1uVO-Lc,38\n73ytL_HAwt8,85\nf0-GryhUnSQ,133\nLX_cW_dLweA,68\nsSk2SvdopGY,52\naUNq34kNR0M,53\nUdhn4vCPZ7A,60\ntQPd0OAV7yk,133\nfmT8JstRohg,38\nygVa2W2Qrac,107\niXyfNoBlpjA,96\nQoJ5JJ3keUw,131\n9w3E3eFMsLg,115\nXhpJ11dNp2o,177\nAZ042bsOWTs,91\nnMtW7uy5RrQ,51\nIthpPqgEteI,133\nSM0CkReuGMQ,137\nbWr67LK9-Uo,28\nVjiy9rCG-yU,130\ndyVMPRxN0FQ,133\nQ0bjuz5YBLM,133\nBj7R_2WWdKs,153\nFFtP2SGrQsk,80\nG2bsYSfXO5U,37\nQ1MHXYx2820,130\ni81cxbYNHks,103\naoXg7SSmGyk,102\nXi3ymXEMyjU,130\ndCxgKZ5QV5E,118\nutKueh6Yj9Y,132\nWYzUtZMt5A8,126\nLwbFwVf8yoE,174\nYhiy0ZHMyik,125\nlplDv1m_Zhk,106\nATGMbNOmAYs,129\ndAE7uOO_4v4,152\n9JHi4K9XfzM,132\nMAvccNVx9tE,87\npbmU2wMnuI4,158\ni7tGEEWQIhQ,112\nQpGGSlwgOPs,130\nz0ogqhF4ems,80\nMSVT6NNqldY,129\nD-5P2iMf_ZA,118\nSaWCkQzKopo,115\n8gc-RSAJpH4,128\ndIgGZA4qQoc,150\nSAUabnHZ6OM,116\n44TG_H_oY2E,180\nvQdFnS_u8UM,54\nXy-cq_YpYPg,129\n9Jt-bxV1gW0,102\n4lat6XqtJ0A,139\ntGs4xAZJkps,120\n5ps3fGNzpd0,129\nKusSGPyXugE,133\nYxzq9BLE5Hg,176\nTm3raIkeseE,180\nnrqxmQr-uto,126\nB2qVxDAonD8,91\njKXg2eMaNXU,133\nT6RkPxawpY0,173\ncglY-gszmNI,147\nQY11UyRZBM4,38\nS9eketMERqA,57\nX5wAXtQ0oDY,129\ncVIS31ghLNQ,176\nW0ZgTVoA0eY,93\ngsGm2Ohl7x8,117\nzrECNEIUFZc,130\n4jcflB38DNo,72\np0-xbD-mRLs,115\nYqf0AqAHhaM,173\nQrRTUOebEpU,87\njLPtdXAVuwo,110\n0SbVnjlPhjY,67\nk4X42D5Gg7o,131\nf7utYx1vcM0,129\nFQqo-w1qvws,78\nErQGXlQV6vg,133\n4t8bAQ-cGZM,60\nvTFuGHWTIqI,132\nPoS1eAVNXWU,129\nVlS-HHdayMU,131\nbWaxWtgjY1g,132\n-hDPK865N9I,133\nZ96Hz_Hio8k,120\n5XW-Nxfx5Nw,152\ngnI8phF08PE,50\nsAO0owc4xeY,126\nvvDkLhvUa2o,82\nDvD9OryD6mY,123\nI8PLjzTzy08,84\n0_ArO8UCfyk,109\nN7iMP1tPg7I,65\nqnPV_MLgiIc,140\nAHzW_z8rUyQ,91\nTfzRP1tCmsk,180\nr9aUxfTTLfk,128\nptiXfr5lJl8,133\n-3mo5CqjvWs,60\naXbf3X56rGM,122\nKRBLeqsoRew,134\nlScMakd7h6w,58\no4SUU7XoRl8,136\nXjC8-nEGnrE,114\n73LReedA7N4,42\nEMBCBSoE1rU,125\neXAvTZlmYF0,133\nv8c2XZdCS_A,121\nHy37hjPUFWo,86\nGpD2-wZnpO0,85\nW91BHqxJIRg,114\nem7EcaXPJF8,130\n8aW-vJWY87I,81\nHLO5LmnO8gM,46\n804UN9XPV44,160\nYTkSNIvrueA,133\n7Q8m_vs3HzY,41\ngiEV8fvrDd8,119\nragJxrFknuQ,119\nR0U9F4HexA4,107\npT9GPloXjA8,175\nDXjOOS4zAq4,78\no3f521sUTaE,130\nKQOWuUy-7qE,178\nTDoj_T5cYhE,132\nKerwQ_DokIw,105\nef77ViM-f14,117\nNW2QM6c1wAI,103\nTd8eEM9KDig,99\nExVWQ_I-elI,83\nucgU2DJlBiw,143\nTe4G4EGjidM,175\nHUNHxGDLfIE,107\n4tnHIQmcSHY,182\nrC0lnrzU0jk,82\nrZ-_UsEBT5E,61\nk8Pku1zXM5g,128\nV4705kE44Jc,120\nPQ-8JIzjq_I,84\nNI7As3rOogo,133\nJSetLbD948c,120\nLGnYM0wT0t4,155\n0hau_p3N-MI,131\naOg9IcxuV2g,53\nyuI8BfvTwfY,154\nduT6QvbGAls,142\nZlITgn8FjDw,133\n9eUWf_j-y7s,65\nVNtsVP42bOE,120\n7U3F1uDBXrw,24\nLmsukmz3QQE,64\n505KGEuKbNg,133\nFX3YO40UDHc,133\nxTyEZA6ILOk,90\n5vKDb4dLu0k,56\nOEgLZ58Xe0Y,135\n1G5jMgx8GVU,169\nsSx4IDKK6sg,80\ndzvTHhWDjIg,92\nf-ZCZ5BNloQ,90\nXh1Ls7C0UrU,136\nsWTHIrA5L1o,122\nKPgwj44PoP8,63\nJaIhQFDdcJM,66\nBPNUN_aCFAc,133\nMSIAnJPZeaY,133\nBcmM6kMxyBE,133\nRTCMHLpNi4k,133\nAEMXmcWOnwU,93\nqRnjswr1swo,127\n8WfKSXftr60,187\nGCPMRHNwR8E,88\n9-zf2UBp7fY,159\nwY6sZJKyxo8,127\n_E62a_RCtX4,124\noHJVJ_MEyQI,178\nNWsc8gC3nSw,44\nROUu-unQieo,107\nFpgyrIlhoyw,133\nqUDMInHr_wI,133\n3GoXAgg7rgM,130\n5Weaop_aiTg,133\niHWOj17ISfk,133\nXjTFVcgR0qE,129\nzZK_bkxhJes,132\npTCTgL7_9gY,133\nthG4yP1OdgU,118\nc38GMlPPCTA,121\n5kiNJcDG4E0,133\nnXJxxahiC3A,132\nYpkqDHGJzJ8,121\nOJZhDHdlk3w,180\nT2R4z7O4kg0,133\nDxTFwXcsctE,109\nOWYSE2bKbNo,65\ncg-wxqxxWs4,97\nVwYovLPAX0E,110\n1ycpmrEl-9E,126\nEmTXI8HV9nE,131\nLLjiVwzeDb0,130\n1_-RGLVHmOA,133\neW4wR7-iOMg,132\nAM5EYO5wWMA,185\n37KddyjUxnQ,113\nmTfTGanKAJs,125\nP0t4ruBVxSA,87\nOmQGN9X57Ts,131\nVtkM2SPaSJ8,105\nN6HCOGj1lNI,133\nbBil15ORYI0,123\noaVuVu5KXuE,172\nKMD8yO3iM-E,74\nC4MVQby0InQ,133\nlHtMdj1rZks,45\nVlaiBeLrntQ,87\nOjS7LxDYad8,175\nN7W2F1GcD-A,132\n9zYrXFG6zSs,80\n53GIt1w0LYY,131\nO5Dec6RdFzw,148\nfgcWfVvT_UM,116\nnS8tqsjySaI,125\nKNyFPVliMEE,180\nbc2muGlQIlk,149\nhEDeIvU1si8,171\nx0YLLkr7VfU,131\n0qvpcfYFHcw,129\nWJeOTphX47E,47\niPQfwmfRq2s,128\npmLP0QQPqFw,67\n_VA5a5QSYYA,133\njmgV3OFn0aE,153\nntxIBzJ0tU8,150\nMLZZos7_fYo,81\nypvrfx32T0s,53\nVwd5W0M3ZC4,103\nDZwnFcKAt30,63\nBsxYfYCbVC0,133\nA7UHJpZ4Jrw,133\nOkR9Bp19nKs,132\nVd1j1GAExH0,157\nvuuTS_WNw5w,68\nSldtDNNTA2s,180\nTReOE4LKcT8,124\nROhFRFmHexM,43\n-4GsCEopbd4,173\nt6wgyc8p_hY,157\nXgZihg6-VZQ,189\nvE_xjjCJWng,130\nQZO_QFM5j_I,121\no1Izq-E3o7Y,180\nU2ZOhOknNc8,133\nzyJgcHwLP3w,42\nuHEG_fTDZss,133\nMLNvUsTBGyE,170\nTi9VcWX0vEs,103\nplqzeUB9B-w,37\nxs1kML847Ww,133\nPLq5N_kVO5w,117\nunl0GXfJRLA,55\nAK0MPlMNHQ0,45\nTNQ76UyurLA,90\nR-aJ-2y5ICo,49\n8-IbFKbycv4,129\nXiYDPHi7Acw,133\n3yp-s7ia9iQ,129\nPXW83EUbeTM,184\n9ofxELr5sa4,177\nnfV87TgYH78,165\n1g4V55DSrbg,133\ntULIFKLFp_w,133\nZo3a3XvzTaA,90\nWqO6vJTUOkM,133\nx2WK_eWihdU,118\nb9abCIgGxT4,113\npX71mALOPKs,180\nyusKlHgtvIE,126\n5RmABh8MCpE,50\nKA-LkJdOzHo,127\nwEnaRGQc8Ls,131\noQAY2uslGuI,57\n3r1ssg1LIt4,229\n0WjELXl_6zA,133\nRn2-wALgmMk,113\ndp4qnnVSk8Y,107\ny6WmWVpvGqo,74\n5smoo7ipoc0,122\nd7V9liYn-IA,133\nVgyyxiZGzNo,133\n80x9FmKsyg4,134\nkBt6bwRR7ls,130\nvoNs3aHZmQM,116\njaiWxuKmaa0,131\nhDH1ilg9NMU,114\nBU6A7rn15oA,119\nFWrh6KWGFo0,53\nBAF9OAO4TtA,179\n92ygYJw9CSE,94\njMaeuWl4qHM,104\nG-ZJbAdw1Rw,180\nt9iFa_dTcN0,133\nLpk6lNEGrg0,132\nnfk-kn7YP04,178\nXtadtlSUNQg,131\nmaEC9NS6CkA,126\nE_tY5yc-yWU,173\n0xW-3QH_WGU,133\nFHmPBAJK4CY,28\n1QjC0jXb-9k,64\nqs0J2F3ErMc,133\nfvxvrapx3UI,131\n4D6bHTh4-tE,133\nahuPW6_t-z0,74\nmnuJ_YVLL64,163\nx2DospZTmUg,94\n_Mk_f75TS1A,133\nliJfZvXdiTE,115\nzJuMyRu4kkU,102\nx_H8vusyzN0,99\nRYHaarxQTFk,87\ncPa929v8Hps,133\nhOgBvXEmScc,121\noqDlKpTihNo,123\nXoWvE383hm4,126\nW_7_2Uwl2uc,24\nzEIqJ4321TE,129\n6ZZHQMtbhxw,99\nxxbFPdBBjc0,68\npnvy9q4UpZw,102\nANM7_NTFvE4,62\nVbfjIg31aE0,104\nL98X2ESOWU0,35\nDXTLoQyijJ0,130\nRJAU3K60wIk,123\n1JyApnR4o9U,132\nQzymqXvURkw,118\nPm5gb2FVYRQ,40\nxqbb1FCX6wM,133\nw_tQqymkPdA,56\noBtG0gj6MxA,130\nJlaTtF1rdVo,133\nd7_F5P5PygM,66\nRF9vhf_r81w,133\nQ9vxnIGIFXQ,169\njJ4zpJxcw4o,130\nnzyDm-J065g,123\nt5CxCy7VC7M,169\nLWWG1eKmylY,129\nHcREWDplGBo,54\nYFTbj6DJbGQ,64\n28wFNLwZpAU,131\nZKDQJGSNJag,47\nzCLyLBrugD0,131\nF_EuMeT2wBo,96\n4Z3s1fJgCEE,89\njQKx2XTcd_I,128\n0zHmeTeLgMY,180\n4iMFUxeKJd8,127\nkytDzjuBGJI,133\nNqxvezqrvQE,29\n5MBUVKzIyPY,57\nw0NWPKGGFiY,124\nig80r0pbEv4,132\ns-rl8q9jezU,173\nQ_aPecwFK08,153\nNOVNs9sT32k,89\n5gkiHLA4ZuY,130\naKIM6q3awws,150\n6AW4O4ohXK0,106\nmQ13lRBge64,122\nm1ef1Y2x8NY,79\nMsxXJOiXEW4,133\nGzeNMZcP8Xg,118\nMw1Z2Jlp9Qw,179\noZ868onS6YY,84\n3UALmd0PV6o,121\ndujvrGLRTlI,97\nG5qjWjkpUaI,133\nxTvdOjsJXRY,121\ngAWrAQp7pWQ,157\nvT6xS0mRapg,114\nqJodFL7bxXg,130\nqjKhJnrMamA,133\np29GuFPbzsg,154\n9cb5Ka9SqGM,189\n1BZoajBwbac,132\n1LatwDo_ZL4,57\n-Hk2z0z216w,91\nI2rWcnXUllw,121\nmDI2nymYW1M,37\nYSrDBY0Tmdc,121\nWL56IXifi9w,52\nYOLGp-P5QFc,133\nQCqdeiTnnTU,132\nBOaImgyr7mU,125\nb_uXZZRpO-E,133\nQvVoH-X-Kls,133\neltUh-VMAKI,133\nyywHSkFkfU0,41\nW7WmhkO_GWI,171\nCHPnFgyg064,118\nsjeIpuOhuPM,130\nV26Pogm8ktk,147\nqYbwQoq9XfI,133\nEYu1SK9XyP8,130\natzQpAlaojg,47\nbObjXY24Ei4,88\nXf_j-iNi9CA,39\nB4Us9Mq7GIc,130\nxrUEjpHbUMM,114\nt3TniZu-fk8,119\nV65b70nPU7k,115\nIGtoG5BnW_g,132\nNY0e-PQeJbQ,133\n_r8MRCkHY54,131\nXquwlFI-Ygc,132\nxJzCM_nI2mM,133\n_vW54lAtldI,45\n17gLdc5k_XU,133\n7JISgsyVgUA,58\nF3YR1-gJjWM,93\no3aqMjrFf5k,53\nLqQJOr4Rx5k,103\nFDxm9DsmBk8,130\n5F8dAQs8Vo4,117\nCZzW6_hR068,106\nzG0CfU1YnNQ,64\nuc7tYT1-Y78,104\npa-oUPTr9LI,111\n8LM8A67uo_M,100\nhdW1BlDtcyU,133\nlxOV0MYBpeI,93\nbS9N8dEdZCQ,201\nexclwIbllXQ,34\nIakgSRSZZ0I,75\nQR424o5Wch0,101\naAF6B3USip0,134\nneVOaWPM_Mk,74\nIqqznoT4Jb0,100\nMlfn5n-E2WE,97\nVrVEHszxL7E,147\ncP95rCyLijI,132\nrqT82hS-rMw,130\nEyXDqVQ7MBc,124\n3dnf7FK-BPk,60\nuNE1lEBsBmM,26\npFriRcIwqNU,104\njgyZ7yb2mmI,159\n1o56ZKPhPjA,126\nCIUpb2aQ5rM,108\nc_YHTdu1jFc,133\nuNJPSc_4RCI,125\nuvtLHXUjt_o,124\n6e3dn30X5D4,103\nfYvvenxELZA,105\nJe8n23QMWkg,126\nuMH_Ajdp3E0,57\neq5NSAyQEtI,169\nJ0WkBVu2C38,68\nTGqcz-Xtd6E,133\nC0mHRQn_YrI,122\nCzBxp4EtOXw,128\nwDZyu8jYw90,126\nGKt6dCi-LJo,133\nQWlbUhsTD4c,169\n_OMy1p_m3_Q,96\nQ0Eh0iTF2Bg,95\nortccjAUofU,133\n3TLYO2I5kgw,148\nKlNmtsP9OHQ,133\nTDMdoNM-pBU,39\nRP7pZNhYm3c,101\nti2qUYIgpjM,133\ncLjX-SEPnR8,133\neKeTSR1yYfY,175\n0GiMAf9q3hQ,97\nhXce5-f8mkA,67\niX-nnY0x-SE,149\n_OiXT87RhvA,133\nbkH0i7fGo6E,47\noEFPcljAXgs,90\nlEPfDu4pVqg,76\ntTtKhD_s3mA,131\n8DNqpUH4tpw,122\n9-qk52E7zj8,133\n9gQIJ4id6pg,96\naPvptS4t6RA,70\nbcokL59jeqU,133\nr_O3k-RpV2c,59\nPAcLQ7fRJlo,71\n8Ufi7Z8OokA,99\n0SwgAb1effg,95\n9_sNsOl5uUI,94\n_WjIlCZJtLk,53\npPuAKVnqJdk,132\nM1VNPTj-1uc,67\n8Qi3JERmk9E,133\nviCosY2u6YU,132\nQUtMJNJWcus,79\nsJU2cz9ytPQ,86\nTezfzLdFv7o,35\nYCIYe01lg1E,131\nBvWSMD2FIpU,62\nNJk-yQadw_U,108\nnVkMrqrZKmc,128\nA6f-6l0W-0o,60\nHigxGvmHEdQ,98\nk7GcyfPypGY,126\nTFmga8EIQpo,133\nEoBngEuWM_o,180\nvpJbP-sA1gg,132\n7WD9MVTfdjs,75\nxbga181nm84,115\n3e7wbs_xfas,132\nQ7w2V95g5ew,56\ni9dK32LLtY0,103\nKZtF_gT3Sgg,163\nWu7xiJ_HD6c,123\nu8oHCJ8LxtY,61\ncLTBa54o70U,132\nQJZ83TqU_x0,38\nwknywxfcE5M,79\n3zsTC5aeypU,129\nFWEQfN39sTo,133\nPT3GmTvF9t4,133\nj6IS8ftaiKg,133\nkgRlzeYc1nk,133\n1Pb1vdt-SnQ,114\n2ah3GNQL6x4,132\nKOi9hHjmYq4,133\nRs0tk-z4b2c,109\nTVfHmkZlp3s,88\nU16anbRFRyc,163\ng92cHdRbgag,110\nLRPEYUlE8rU,162\nsDsoiCkKuZY,109\nalQVZ9YxUJw,44\nqRAQivSrtm0,36\nlJxNtmP2Nas,102\nr9RIcLpGaHY,130\no3NneX3NJ-I,133\nb8U1na74Bcc,141\nrF6a1GG1taY,131\n1eH4YUzgfN4,121\nmdwLxOK7xLc,131\nmwqxM-ccpNE,44\nhVnFKJJYLPA,133\ndIUK_wn5If4,130\n9yoRcn3UcyU,119\n1itYlP2GpI8,133\nkf8NklFXAd4,115\nWd16x0wExDE,127\nGV9TBb-8Kec,133\nTEZtSPLrsiQ,115\nOMMs6m-HIxM,130\nA3oL7v7PLac,59\nkLNdMY1JlR0,46\nwF_UpYqYJuY,123\nLixsNtGM8tc,155\nPWN2ntVDwoU,131\nwrAksGY1TSk,133\nZTAVOF3D4vY,93\nN7hG6mx0csE,129\nnyn04CxGBLs,103\nrx1TXzxMEfo,62\n0vv4ycVEVF4,30\nNrriZYH49yE,118\nlQfG0D7wPKA,100\nRdR6MN2jKYs,169\n8eu9yZ6pWjg,76\njyqr-hGGpQg,131\nQpBfwsw4OaE,114\nQMDO-3fqU0c,131\nSlf_2J57SyY,180\naPrURpNEtkg,81\no4UVXgAzYb0,123\nPuK1rOn_8Zc,731\nnQZd4bNOSAI,86\nLk5QIK3_Cjo,150\nKejnRkhhY14,46\ntiYXgCsoqaA,128\nAAmxzswlvIE,133\npiOK9oDxl2w,130\nZzOzVT2o2BU,133\ndwykptqZBj0,129\nlZQF83kf-a4,102\nlD6hI1yKd7w,87\ng3hYbDHwBJY,133\nIWQriJ_Nebs,132\nlf3MqrE07I4,179\nqrCKDRFj-A8,127\nIT3BdhTyVXs,43\nqCpDKjDMo6Y,138\nPnMJqjE52VQ,57\n0g39c4d1fKQ,133\nW2gTKUd1gfQ,182\nkpsUc7HBCoQ,133\n5VMWNnFoi2g,131\nOr3okI_mad8,155\npv6EZGMlgX0,177\np2esJ_ypn7Y,133\n7DfNc-wxnBM,104\nsQ_4m2ocxhI,177\n4nJl2BZ6obg,132\nKQM0klOXck8,133\nOwBlTJrvL8Y,133\nWl-C_I-ZhRI,65\ncvvweP3N_f4,132\nnxHTPahkN6M,132\neK5PghRFnBI,53\nsLrDrvyhNDc,137\nHegpqudDvwE,41\nLWEklaaHGsE,117\nkewajS6fh3Q,130\nx0XE7KFZook,133\nnhTupXSJkYQ,180\nQsCPatNIpPE,111\nlKeaVq6fUpw,178\nPKIpCPS-oZc,56\nmNtK6UvRjO8,117\nM57AIegsBz4,131\nFptZhFrVXAY,133\nFjb55wq2xuI,132\n82aLTSlTL44,47\nfRdo188PjXA,195\n3Ag3aRRoPzk,127\nXkFE98rP1eo,121\nxIbilLMZLHw,72\n7eng0FHSiNk,80\niUZ3Yxok6N8,149\nc8EodW2ossg,147\nKNaj7uCVPCI,91\n4865Vc0ptnk,132\n3LY5dV3xghY,173\n26oRZCLHR1M,84\n0bkaFNVY2UQ,61\nVIJIbL0ujtk,133\n8x_8B2imlgE,129\nDaR6i1hQWfo,132\nttIN2nLcy6s,128\ny_7o1pAwhDA,113\n6IbECSkNmiY,127\nOhGVVnZZW5o,85\nZml7qQpL8Yo,98\nNL812ag82xI,32\nPcRJie18fYs,133\nxSQxtMWJzGQ,110\nglMgSCdK1xU,117\nqcE-e6xcfUg,93\nvpHEQqApoAY,106\n_KXS58EqEHY,107\nWRjPRZEg7kM,72\nV5B75zKswc8,131\nbNMFBgUFBpE,120\nYDmULxspTJM,145\nEOyH6NwoQL4,68\nvy35F-wk0uk,69\nUzBE29ENnjA,133\nltwRv-C1EFQ,74\nmGA_uH0-n28,98\nnSQ5EsbT4cE,157\nUmNPw-PeG8g,123\nm3QyTiNVwWA,103\nAEucDLp8RdQ,130\nOG-CQgtcbqg,92\nba2VaalmijM,176\n3B_rRmkbA9I,132\n52FdiECWnhQ,130\nWmu-F4mJ-eI,133\no5FT3IGXtAk,106\ntZ97edZTrHQ,67\nzxqYjEzGEPs,94\nK49NaFf6i_E,74\ncqzRb7sAL9Y,112\nPAxy4zrKs-Y,133\nzJiCswIaIkI,167\n8xf7Ee4KLiE,66\nQ-R4SPTgjmI,101\nbU0STezaOyk,150\nu9O_Xs8wAZk,178\nXI9RzX6Xvyw,132\n9ZY9i9-hoQM,44\nmT5NiDGbnVM,153\nixljWVyPby0,132\ngyUrAK47OY4,131\n1YBkXbf8dg0,48\nU2p88URI8lg,43\nNXqs_wYohxM,59\nZK4Ly7Ij81o,133\nHPwD7sgVtkA,75\ndShmoHD7PdM,133\nfvuqUVSwpPY,75\ntRT1ASnVfmo,130\nf_5nHV8FJyI,81\nVKTT-sy0aLg,168\nWZkuKkPQjbQ,130\nOORXuVmd9YQ,146\nVpehD7unUGw,64\nTlnLO-nYFG0,94\nqslhUrtrjXQ,132\nBnrKndkqLaY,116\nePzOShBS9uU,123\nZKtFIgmoqoI,112\nyNyLTVFv8KQ,137\nHO4TjpZw5zc,116\nNNzMjrJQKsc,150\nugXeKGSjvKw,79\nZcQtUdZ5Afs,180\nhu2AlkyvIe0,128\nhPF9nzzuMfo,133\nj5B70NEq_fY,100\n4hQ0ILw1P7o,180\nqvFBGYjAXW8,161\n54LTsr8IAU4,121\no1SrrJNjIh8,76\nrMWZUV287WA,119\nf3_39H9_3Qw,131\nrJWLdQ9vylA,53\nN_vildqkupI,132\nUS9enXEHnR4,39\nXgTtI5D-INw,127\nEmkAdY2AT-U,91\nLkyMbgKtCAs,133\nRlwhv7m3CSI,132\nRJsnx3Fqk6w,96\n7BwxSHs9elk,183\n9tIcnydrwFY,114\nwyKfuDzbbOI,124\nh1UDUqeJh0Q,68\nyWPyRSURYFQ,133\nM-FOqHC-G6Q,130\n_3F3eCypuko,133\nEdEl2_GReMY,116\n_s4J6vN1t9Q,165\nFYlySSs_-JI,131\n2u8cHrJvlHQ,104\nlc0UIhNuudQ,97\nInj01auwE9c,127\nmn60YWO218k,130\nZ6XIGZ51VMo,166\n6PpQk63iIWw,130\nAMibptRTFdo,142\nCUJJdnMG7VU,121\nu3UyGrnv1-A,133\nRLUhwGLJhsI,137\niD9tENbIPHg,96\nRiTXscx2pJY,133\n8QZgJWf5aqg,132\nFROgIia2cb8,180\nCGX5n1pvu5s,132\niNqWC_4LooU,94\nirnb55gfwNc,133\nrYGWG2_PB_Q,131\nNwl4xV6wuRI,177\nbwf_EFTMZ9k,199\nuFPINtBli58,131\nn16wxs5pgvk,132\nl_nlMehIAqk,133\nKtGm2OkQa3w,132\n2x7aG-JRlCE,133\nJe4QCA5KCuc,132\nQNUzcLPS_LE,67\nQRGusFszwdA,100\nDGhV02r8Vq4,125\ndoLHipw196I,121\nmw2AqdB5EVA,119\nDZqOhS2M-DU,122\niGig4Dk3tXc,68\na6kk9d5OQ-c,127\njA0RnDQiFbQ,133\nmWblxPany0E,42\nQPKFPLL4XQQ,132\ncDpI6Zzy-vo,75\nsjVgX0A8Jtc,133\n-Y2wqkD2KVM,131\nhuOZPQ6Hl2c,131\nUCd_bEZa6k4,132\n2yhGVaVwceE,127\nR5b0a3b6XkE,131\nW-T51n6etp8,210\nhd521kE7f0A,132\n6DZ7DfrTDds,132\nNJ8rJ-i-OKE,145\nkal9JZpTFJ0,125\na5WKH6TNlDw,132\nIIdGxR-aU6o,172\n6mBFhNSqBk8,133\n6QFgsy9R4uc,132\nlhHv2EyaaNc,56\n6AVMcJa77PM,133\nA0WEpT1SKV0,137\nU7D-kOB7-PU,127\nNvNkGs5bFtA,43\nN0gaRYJH5GE,130\nC841wEogE4U,180\nTpwYtP4Kzbs,34\n7n1uwzYOBa0,32\nrFvaTVV7yO4,172\nTSaU7qATRHM,121\n5NOmw_kzrJQ,58\nsT-wJhtlMGs,141\nxb8n4wftl08,97\nsUa9WglkKCI,36\nQJpRSf4q-hI,132\n3lfTLYMECtc,133\nidfa7VqkSOw,111\nReAGCpATawk,130\nqXL3aXIGIKc,70\nCqgXhXx-EAk,136\nXNAVsV-Jqfg,160\ntAp6HB4WAdg,132\ngTVoFCP1BLg,87\nxMdDeWfS3O0,64\nNRqxxQy8sLs,57\nPYLokGkYl4E,57\n85-2A0PHLIc,94\natGNvojXOvM,132\nB_YYf8Z4b3Q,104\nOOMIZUsKlmg,110\nFHNT4E_55jY,164\nu9A2CYMFfNo,133\nbdFKfRmmbk0,131\nPdi_kASSsJs,137\nx7dGXb7jrHw,102\nisOtwdqD3y8,132\n1n4wtaSq7AY,133\nbIVzK-h6qao,142\n6HT1K-XoREU,58\n3BB-PdHTQHg,113\nsh0IBg7GBeY,64\nC-dzbTNdd04,122\nditeeSODzTQ,131\nIHDv7SriHB4,133\ny_5YoG-iXjQ,139\n1nVThHLqda0,138\nYiMIAKXwHg4,133\nBRZh_NO5tic,180\n-tUodP_Wus4,132\nK1C2odNXI4E,122\npwr6OtkCTiw,133\np43EnAUd3-w,55\nXcWgeikhrOA,85\n-3ywc_7_IE8,180\nMBjVMydv63A,37\nqilGSZ9UWTc,133\nDUbplahEBfQ,133\nUW-Y3QyK-aU,155\nFuZNswuwAxM,126\nrngwd6ExGmc,34\nZywVV0T5DcA,95\nPEo3OnoPBI4,120\n-MG8-wCvzpE,132\nkI9rnng7ns0,89\nfq_QSi29iGQ,133\np56k6QCjJnc,143\nxp7F-8G_bPI,36\n4snGt8OzUV0,157\nD0vCzkK_AJ0,133\nOHNZUmdqdv8,180\ntVl78xgPyow,36\ndCRen85hQ7Q,177\nwsSlB31dwiE,132\niNUv6pnKd5s,75\nzLso3zVuBMQ,134\nR65UmAfIZpw,99\nQt5TuFHZh5E,129\nVToA3hOd3tM,40\nzPvglo_VB9g,59\nP0ojZI9qBPc,56\nwIrUoTYd9hA,108\n9-DOuX-Pi6o,133\nBiQ0NRRraIc,51\n_KpSBVJq7jo,155\np8CPTHEAfJc,91\nlv_LfXcjWew,130\nTBURp00dftA,103\nRNP4caHnknA,109\nynGvGgy6K2Q,131\niVhpg1Gvh7o,89\ng05Ja_89tOg,131\n0ZQln6DsWgE,127\n9PM9tDtmaaI,127\nd51kNuh6K-U,106\nlIzqZwDHis4,133\nBkvVBZwXVhg,152\nvWZapP8b11s,133\nRY-4FCh9UFY,175\nQ1vQUG6GFNE,105\ngljJhOFXrUU,133\nZUKCW08_8Og,127\nJUQS0Q_0aQg,55\nRehkdOxmytI,86\n5gV4JcPhi9I,132\nMp5IvPj4ay0,111\nkBJDz4ylQO0,134\na_4TTRfXkgk,130\na4-FtMD0_sk,131\nClehpiAu764,131\n7vZy9ra8kdM,121\nPgZp8EEzrJc,129\ndvm7mLmAtTM,182\nxMpgI4DCKyk,72\nViZ5qXg5xQA,123\nT50_qHEOahQ,169\nCaHL7bVTtQQ,131\nI2AjeXpxmI4,131\npr335ddgcuQ,132\nr1fR4JfojCQ,149\neE-FSOWD_ac,114\nLABD2un-vIs,131\ntMw_xOuU9DA,127\nWThlmxAdynQ,102\nnzeCMJw3Eo0,137\nrQ7oKh5K7K4,59\n-9IgLueodZA,56\nmTkgIN2TteI,133\nuCV1-C_0vC8,88\n1WRLqzGkzNw,148\nm8hsAr5C2UU,53\n5RbN0rjWBAg,67\nKg0YrIiz7Sw,32\na6DTqXLuu_c,133\nwWswgKOqkZM,68\ngz_dPVrciwM,168\nM--q4JZp5lE,131\ngRzjSsXw9PU,133\nvR_L-yH_3jY,88\nhBpNWBQZK4s,109\ntu-cxDG2mW8,78\njC5O4or6dB8,133\n4tKHdEaBlXw,133\n8ZDX262xJvo,130\nCRuiuuKONUQ,128\nw0AliJi4npk,81\nhhGSeFrYSyo,128\nnTOUiTegqrA,89\njzasSSMjsxY,39\nHOldh4ePgnA,132\n8bQQIy5TKZE,174\nws9--JaXKcg,132\nUtIr2Cpk2c4,38\nRwQVsB6k24Q,167\nvn6qlQGDOIo,110\n9EV3DKPo-4U,178\nzJO4Chs7-lg,177\nDvS7X6Zik1c,122\neX3czjlDO5w,42\njn2weAEOp4Q,149\nTAOUtgdcjik,129\nHdU-6bKqhzk,126\nmPoyezWAghE,132\ni8WK-3pUpwk,139\nb-4JObBlWC0,132\nfqtFUIQ7oWA,93\nrQVDhPVyU-o,48\nXdUKcQsnS4k,133\nqDR_yTik_xo,174\n2bkNfQBLCJw,82\nuhpknFQJ7G0,63\nnKIH1LgVMpQ,56\nKaUEDYWofJQ,176\nMnMZeDmfgmU,127\nTVBx0r_xPCo,129\n-A9rFt7ITy4,65\nwYEn-ZKSg_I,180\nlMrKsKQWrl8,123\nn3TNGpjl-kM,133\nvgEI-Zu4GQE,133\n1tBCcfkkDKo,179\nZ9mzzABiQUo,133\nva6nRaZ9eRg,120\nUWGtZ9Oqcwc,133\nOjZadIbLAIE,127\nciWBzhmOC_o,124\n1OCmZuUVZfA,73\nuEoCU5cuQA0,124\nwqvnT7u0mSg,132\nvqqGZBRBLcM,131\nAe-mN5aD8Qg,154\nsz8itUBsCTk,65\nIeqXtCC8Osk,150\ns-v7r3DxQ0k,735\nnnJW5FWg9oc,122\nME2mnzfCdug,127\nXTfUTOcdkqY,125\nk7VW1xNAn5A,120\nj1CC9YKFpXA,133\nXMrWXjOuv0g,143\nVPIP9KXdmO0,66\noLQsS64Mgjg,127\nEKd7z5CY4BU,108\n-sv5DJfslVM,133\nSlyCtFYVQmU,170\nU5418CiBukw,129\n6DI_C-xXcOQ,163\nZbKU3_H3FVw,179\nYGKJC22Roxs,100\nFEAmUOrMd3o,129\nnaTncfYgYtU,112\nETcMNeJTfOs,85\npqLAni94IEI,125\nXzKYNZY9Hpk,127\n89PPmxL-EVE,133\nxUllXfNznIY,121\nnNLvDIcBtz8,132\nZSoIlS4LQiI,133\n29nIXG5KJYw,179\nMAviyhpn7Lg,78\ndrvaZz3FWOI,87\nNG5ijPnfYV8,40\nG_0o3NoEXJQ,133\nMvzZbUKxNdc,83\nZiyuOaPD0eM,111\n1U_GoiFy6kw,133\n363ZAmQEA84,51\nKdNQBaLVGfI,94\n5K14lfXCgco,59\nsJ9nOmRn6fg,122\n7GIxoAbxvQk,48\nyDq42VIYVnc,69\nZCjO50QLDhA,124\nlWSPwOvJSNs,126\n5yUd7SXxXzs,110\n_syPeFclyN8,107\nPscRUlsvhtI,174\nVUChuDMVqvY,150\nNIaiW1XrzxA,40\nNUXt-stAcRw,131\n__yiHzuT3ig,118\nxy6Ak1DYReI,140\najgeUrUcqfE,131\n6HbrQMgOUFw,68\nHG8iPGFvfxU,52\nRntgG4p1m8E,126\n_U4T80Jv9h4,109\nzH57XU378EI,87\n3RWATaK6rC8,123\nOBJ-MpPBDug,164\nN5i6B7WyZQE,132\nhplpQt424Ls,171\nKS8wdVZqVrU,77\nSOBvUyimDo0,32\nSNruq88Dlpg,132\n3tfI9tTzlI0,149\n1PlNSLBuUQE,103\nmX5Vqy1ETgM,60\n7_WLSh7GE9I,179\nLXekH_8vXnM,45\n_nqoPInNcvo,132\nBbsJiMmpObc,80\nO6DFHh2XxLk,67\nXeZkZIt0zqA,118\nl7-rpI0RrQU,47\n_7vyrudcgOQ,138\ntcIaT5D4Iwc,113\n3GtWfPQ98Qk,127\nziVJd7Fwzvc,135\nvXvHja7vtoU,133\nXei_IKhp9tU,132\nEpo3jDg5skM,105\nH-O-z5gELUY,98\nYwM7NgPE5lw,112\nyuklnScufbE,36\nPcBKId4l6LA,35\nK3ucS56rrpA,102\nbu83p1i0D1A,97\nHFduVeNEWSA,104\nqIis4kiGo6Q,26\nnggWTNLFifA,68\ndSRxB66FLV4,54\n2GvL2DyMfGU,129\ns_hFTR6qyEo,130\ndsONBwWtAts,126\nYe4fqNh_vbs,61\naeevxJaJl1U,178\ncMNvYJ6O_Ks,75\nh3Aam5h7qAA,130\nsOxspReyzOI,128\nWN_03KbkRdM,133\n3zavgk2_BJs,106\njJMXxv-hYPo,127\nsmNgpBRjuFs,131\nGaBjbzvkxNk,49\nW0_4w6GsngI,125\nPMVqjEj9eKI,53\n-C7Fcg58rZU,59\nyjFU7KJH8AY,131\nk2NaHBVVYzY,65\nXbTEusaf2nU,142\nBSFgVoDNlG8,133\n8k_gzuVqZmk,131\nCXgaZeUY6fM,113\nL_b55QpXdsg,116\n0CE6iuIo3UA,38\nVrJiU9BOEBI,133\nCi82yWg-9Q0,123\nMaRBZ90WDYo,116\n8wh62mxbLy8,126\nAqutucmM6S8,97\niRmIef02Ajk,94\nOseaEf8Qy8Y,176\nCfAS7ONO8OU,179\n6QOqWyBhTVo,118\nkOS8g1D6MXk,133\ny8_oqgPwHfI,131\nAqTaIbDTNnE,107\nMOB7nv-1G3c,125\ntdcUxHh3tAc,131\nPLOMwlZsSYM,122\nxA5QELbB-vU,179\nwzIwPkZkSTk,89\n3et9liRrywY,178\n2I91DJZKRxs,86\nFOM6rvU9xN4,178\n8rsx2IP3HWY,52\n3kaShGPva2Q,57\nwPmTp9up26w,131\njEXEQRL2oQw,133\nF3FrLQdbyKk,35\nX9yDWojz6YA,70\n009tNfQRd4o,133\nswhep7_jkeY,166\nJyJBz7Z2EWE,87\nCIAyyugbq54,133\nE1BBS1rIgIw,127\nLAvuBfU6iSg,127\nbSDqN3UTrPI,90\npwdhau_agX0,169\n-NkNYd_ku_8,130\nEuSGUhhmYfk,132\ni16c8n45lR4,88\nh8QQbFolJZI,110\nEyokx50Jhrw,46\nK2qNJ7IzzqE,109\nGm1BZxc4tmk,120\np12OcbmjVgU,129\n0PraJ0mNgUs,133\nz7coL1WcCoI,185\n83AbvPYqIko,146\n9lTSqc1UnLU,162\nLlUWLkrBL_Y,132\nxKpYBStDLVA,111\n95XSvfimW_E,125\nNsQ4dm3q8f0,44\nrJGOCtlPzUs,142\n_mpyFEkzhoo,84\ni1ZUVkU_XK4,116\nu-bWIkGa0QA,130\nmbKEarx9CCs,147\nKnhDO1G0ieY,127\n2pud_rEsxMs,131\nSW2HRaFUXV4,116\nKmn7tIRUImY,92\n0xWMqsZOYWg,130\nPkOIMjJrl3Y,38\n1xqufX-xMr0,110\nMbRhuUtKHV4,138\nDnYv2MyCXss,66\n-l-VCl5kQuY,133\nhJVXg1AHQTY,102\nBS8zi7Dg8TM,162\nUi8Y0Pqlg_4,133\nkPLNO4WfFJw,93\nMvajGqWodvM,128\ndvmqIBOExp8,92\nuPAXLQIxBGY,100\nT4V4NqEU668,130\nUgd_VB9iVFE,133\n4xdqgzNNHn0,47\n61XUb28jkUI,112\njAZbK72VLFA,114\noqBWx58n1Yk,133\nH38XiM2EOnQ,146\nL-IoFdCv_Hs,117\nzD0YTr7ZF58,126\nj1dkwnqffaM,89\nRjcvXspLoyE,56\nyjm6WiV1bBo,133\nD0Led4y5r3I,133\n2lVRcI0zsvw,71\nnKdSvhCg3VY,160\nr9nG9RByMRI,176\nx421Na9VfNE,178\nXk5epHF844w,101\neP7VXLIgaIs,130\nlbdeAhpIPhE,151\nBS_wIUrlOPk,132\nARdTVbhhy84,62\nYa00KlBMEyc,45\n3F_Jlo1A4oo,122\nmOpvoWxjz90,126\nKZ04pEN715I,179\nz3dwJ734jbE,40\ntM3Zg8m373Y,40\nK_LGi3aiF7E,165\nZ5lyNKWvZfc,132\nTb-PscLsY9I,46\ndf0j-m8xV58,181\n2bcSpgxPG0g,138\nC4o-zcihGN4,112\nssM67LXOwQw,131\nDmokH6o-nKU,132\nMMSpFkvPOAM,148\nkmYAgJwpE-k,95\nnHKJaG3sXMY,51\nS1i5coU-0_Q,177\nAIw6mK0Ob60,133\n4wVmrgVqQlM,150\nNTd3y71iKqE,113\nYIZlw1Ou77Y,71\n6OofgRuJnIE,127\nQ0UDJuPozw8,53\ndKSAKBEI4w0,130\n6cwIlJvjP6k,126\n_T7vEyicx6Q,100\nwyUDbbWIXS0,59\ncSXgqTUqtOY,133\naRgUxpmvZpc,43\nc1gSDo9bO2g,61\n16N4rRovDzs,30\n_eZeYq2r3tM,48\n5R0vcopCNG0,140\ntKOX13gKlf8,132\nFXKx1sX8ESs,112\nJgacDwgKiZg,143\nuvIZ4ST6HqE,119\ns-DcMXlInkU,131\n17oDZd93a-U,116\n4zJ3a0K2DP0,123\nngV0RBhGZmE,67\nLwpaOr1hVZk,108\nLFwCy1HuMCY,85\nwEByIZn5qeU,135\nOwB1Fd-IeS4,133\nvXNr2xtv09Y,129\nrAu-0Ko7uBQ,133\nXHdmamu0zPk,133\n_6O2sYLkuO4,133\nMkMqRDBKUwM,116\npgL4IvoR7tw,110\nDlwuwiBLAmM,107\nrsHK7n7hVBQ,129\nkYlPy24WJzU,128\nUBU2McO7-GY,49\nb2dewDwIQyM,177\noG5vsPJ5Tos,123\nDl4hTIp8QbM,54\n_rGPOReLRzs,130\nQe_3aoChgwI,104\nGR0R9KfU4tY,114\n0zJpr-bB1sg,180\nKN2W3JON7Y0,81\nAO-VFDYy9Rk,133\nefr5PYBNZCo,130\ntdCot34--pc,178\npK_ffLZIOb4,127\njGWM1SoLAm8,107\nJVgqhPqHPa4,133\nvkmf3Hbnh_4,143\nPDBjsFAyiwA,149\nqDc-OGF_NJ0,55\nd-HW0aPbfIY,93\n9EBnUERX_cU,91\nIeRLdVndLpM,104\nB42mhJ4DY4I,92\n3nc6Tf26afI,65\np-echNQGbug,111\n7q-lFxf9-p8,80\nCW0Yfk66UxE,46\nt6FIm6TCkCE,66\nZTT1qUswYL0,143\nR5WC60UwB_Y,84\nxhcXLeRqsu0,136\nCr313z3sY6k,124\nuGsWYV2bWAc,133\nTTX3bYbKAl0,133\nNULabIAGubY,173\nrGvIBT10JDU,99\nlFHKj8M1maI,123\nLs_8cFgBUj4,135\nPZGS6N3zG4o,132\ne2eo-95zSp4,65\n5kI7hvWF_BM,71\nALImNM6jWZw,116\nBpw7M2Heuk0,72\n3pDOsNri1Ko,117\nKoEPdETXy4k,100\nYHKkh9b1Oi0,129\nmcUWG23hqvw,162\nqb4Rfj1wp0Q,99\nv1Qu3dZlRGE,180\nHUrzvLhxA0M,56\nNlSuj6YIG94,86\ni5jTH89HjTA,143\naDFJMSlmxBg,74\nitdD328hLuQ,84\nrP0QURktz3Y,50\neKHYnWepyRU,110\nroeLoZuFI1I,72\nnF_6OfgbF7c,70\nDfcpuhTr8R0,105\n-aKc2aFeCOk,40\nW5ATR6lZw4o,107\nsRqeX6qMlak,85\n3fLWNvP8V98,128\nbyPJ22JDFjI,179\nrdFZAYliCgE,133\nAP2kX2vE_L8,175\n8TOTUOFMjuo,179\nL5xFe4LFtb4,133\nEWBVJF9sSPI,132\ncP_OM5VVcSo,161\nI7MwxFdb0Ls,139\nNz1NJ3fhso0,133\nbQWaXlsdyko,151\nIH6fifC3qSE,111\nmKgy5W3S6nw,124\nP2pgWsYSyUA,145\nYKjzDMrSX3w,132\nAR4d7r6--I4,133\n1R5Li-f1IP8,133\n5CdiJbnuvYg,46\n8j-53yv1nD4,125\nZjPiVMyfJPs,69\nuopoXtR0Kjk,131\nHZNy5irM2YE,71\nnQkiJT2MR4w,142\nPTENrQnBtXc,133\n0KJ7l4gy4oo,175\nyiZpb7GPLYs,179\ncQ_dL_IMPP4,128\nD15UY1FXJpI,124\nqowk8kRtc8M,128\nPNzvucMz1t0,127\no6bYgD2JDus,133\nVJivXSErhB8,98\nmbTZ4ywa1Dc,119\nFKw0NTnXAMc,128\n9IMNpGeSLT0,133\nRpKQ0AC0p9Q,18\n_j9qAhXfNAU,133\nXyGbtYaVcaA,131\nUu31b0VHCc4,34\ndYDxxHrlmUg,103\nObf7CnOmBak,131\n1Gk_oU1m5CY,113\nEbyOz1yJgYs,104\ng5e3qoREpuA,176\noUQ9ZKUt2XQ,122\n5ztwns5PkJY,63\n0u5O2--9www,168\nQAygM0YfY10,176\niBRhat_CcQM,133\nbP9A87VOaYE,131\noiYIVQm-qvY,132\nTpOPvupzWow,129\nb0ydPnxtSKY,133\nMhu2Ij0rWCQ,133\nTumSHtCzjAw,131\nMosezS_qfk4,129\nDOl-8LrZapk,132\nH3plWCGH4wM,133\nNC756fAs0Hk,108\nzEE7xzwogMc,123\nz8oaq50tGRI,133\nLI-SbYy8hMo,77\nNXXS-UOKbao,123\n75M1XXEZciU,180\noptHzRmqdFk,147\nGo6nwid-CaQ,101\nAnue5RDt4Bs,117\n1JVewdBZyYA,41\n7-VAbEyf9V4,128\nOLSHQCAncC4,89\n9_4S_-cr9Rs,179\nzr5fCCcWRJ4,133\nkNepR8njvT8,133\nZsRDr3miUyc,188\n8ktMe0xclxA,147\niOb_w3y2stg,133\n-13ScnosXAk,115\nHfoa97N4-4w,132\n3WNqgV1M5Zs,133\nxKL_T4z0QX4,132\nnS0fxM7sCHs,117\nX6WHBO_Qc-Q,133\nDWl0gnig_X8,59\nvdbQpDHAq5U,36\n3Im7ZYrXCOY,133\nqLvGnro4Cgw,151\n-ArVBL8EgKU,133\nHf6qAXWkX6w,61\nkORHCVmSucM,82\nf4zl3CuJvt8,173\nJ_i4XvgEVDg,47\niRIxb6_ELNg,132\nbKLQBuSPVwQ,166\niKqGXeX9LhQ,82\n2u8m1yeCoyM,98\njtoYZoKsAnY,71\n5Rl0mFRWfzc,131\nkvHcswMy05A,132\nA9KjjvZE0Lo,62\nsM3PgyGpO7Q,131\nOl7EpMrfbGQ,61\nQZocvme6cYc,70\nS78_9yWvSi8,48\nu83fkqXPIGE,133\ntYnbJrIv6qg,159\nh1F9-NKqDDk,131\nNq295Mg6PHg,174\nSBLMTDMdTIU,119\nIsBB4i4k2PM,180\n2P6sN_5eM_M,120\nVUGhvs8zMZ8,35\nfZt8dti-r14,129\nwxlvZpMSxM8,132\nv2sqjebFODg,120\nZS0rEz8wR4g,133\nxEt5dEOcW0I,175\n9y-f9F8Hl0I,120\nEFQeLtT3Eik,148\n2cDcwnVNoGc,71\ntbjTxvs1nPo,118\n0yc0knpkAxw,130\nKJFbhzrJxg4,115\n898OUCyBulM,44\n7L2qP-xQ_7o,134\npiOTzME87Dg,138\n2rCTuXAbyTI,100\nm2giPgQXSn4,177\nNtgFKdWcKXY,133\n-EZ9f-GgWVQ,179\nVevqDJM8KH0,132\nD_Acqs7T5-0,40\nzWY-GWMn4Ig,133\nDO50JhaRp4A,132\nnBQDz9PiMDU,177\nca_Ac4lF2Vk,109\nP9iflgkOO-E,61\nTDo2llQRSOw,103\nI6RwgD0b9xA,47\nqo0uCiDpp0k,100\nV3Av8JD__sQ,65\nWuHkE1eU2AY,133\nc_TB7MkrGyc,123\nYL19Rvtea4k,125\n-ZODi5SGAyE,111\nmS5WLkb_Cxk,178\n56fdoTQTfuE,118\nrQbj9uvYL8I,90\nzmRPZJp1pYQ,122\nUOVyhaDQNfw,156\nRQH_q5kOlCE,91\n69RNNex-sig,132\nKVK6yLqY54w,174\n9rstlW2YsmA,72\nJ8tCOzttKMA,120\nexIGslwFcMI,98\nt7OQIn7Yuvc,131\nkSk0pCs4pGQ,123\neKrEVWGTuRg,180\nKm71QCX39rQ,76\nrbsrjcXynlg,41\nhc0o1zXNHAg,129\nu4T5X47MKm4,133\njPsXJlylRvs,108\nTJf9Pf9rjO4,133\n1E7f6xOPL3A,96\n2vV-8TyFBTI,139\n_6up-uz7Q9k,129\n0CZAYJ_sotw,131\nx4QJwGTOny8,66\nAlV_R7v4DFI,72\na_z4IuxAqpE,180\npiFTKwqrqYA,41\n8yX0E-XQcms,131\nFJU-pWka9lY,133\ni77quMJ5ihE,221\nxCQ2qh3Tu9o,130\na8DNOaAifkE,127\n1zOSmScTr_w,128\nxqD1y_cJAaM,121\ndpBTugwEdaQ,132\nntGBzcfpKYg,132\nH07DuZQ-rLQ,167\nna_Fzn77bBA,119\ndXj2MnkN2nA,38\nEmRlXmyl54I,119\n4U8n5Kjd0LY,133\n7RS4PfQHCX4,27\nmeSIVfOyerg,98\n3lX50Lh2Iec,118\nDdnox9DoK88,132\n_ghkHlthIqM,180\ny8svNN8saeU,129\nidqhhcppnUY,124\nClBUr1FFo4U,133\nEJR1H5tf5wE,49\nYedqV4Gl_us,141\nMKboBvadcD8,125\nhZ8PfLIc8MI,120\n5ibO5kob3OQ,136\nf0MBL-DyXaE,101\n398qkvR92GU,132\nk_uINM_XI6I,127\nesrBtSFDlEU,128\njdZ6RA_c6oE,72\nNUJVU87Qb7A,68\nuBFxCK913PM,158\nEFpsSudUhQU,133\n-BYVM9TrKzg,120\nACCoL8xk0Jg,130\n2QT4mFNVyzc,133\nwfbdNtfo7NA,114\nVWwkLEUn-a0,133\nPUV_2cqbrbo,134\nyKfQ_-lnMJw,43\nFDfUBxkDaWc,127\nD60dQGS_qNE,179\n9DLcDirhBAk,22\nbiYVl18JAFM,98\npDy41hvdq4s,175\nhwWsAUpr9eM,115\n_kItBZZK1p0,128\nNSsW9EXadik,117\n9XvQJ2Jbg8A,117\nO4aMxMg0Vn0,133\nrD3kI-nioGA,69\nSzVAyGry2Ic,113\nc8m6M4RV8p0,153\nFtZb1Kbh2qY,152\nw6v2DUJi-C0,132\n68XJpm3q2b4,133\nVJOO-fcRLzk,129\nobxWLczHe0c,133\nCR08UnlmGKc,121\n5gQUCqEQVLI,133\ng0j2dVuhr6s,130\nPUvS_htXD34,83\nxxFSUgehWbk,42\nEU70jtTYN0E,71\nrRLP7r6OuYE,50\nJhSRGLe18OI,80\nF1Bhl3yjzsQ,73\n6Z7FN-Ii1lM,60\nTyDE15kKDpI,75\nftmRf0AY8Co,133\n_7z8a8kTj1c,133\n3eJ8A1W3jqM,95\njanre4HxsX4,138\naaU-KRx8Zc8,114\nDUhgY4ohhQA,60\ngcu30p7VEKI,119\nSd6LBK8KhuQ,133\nPe7G8iCN_nM,132\nKyHilwSRo28,95\nZYZsJYZVt5g,177\n0wFkRRILnPo,92\njmOvg7JKjVI,130\nCJGNkuaveUE,168\nU0Sk5u00YHs,131\nyElIQDAEtOg,113\nhVQT9mDDeJo,179\n9QbJu_68yS4,133\nkA10xksmpCI,78\nhdlfKy3AXDI,157\nzFuw7sB1zxE,36\n-98BSUhcZtY,49\nFcvCuyT-zWs,101\nZZGHXZmxlZA,58\nTotAfd4ercA,96\n6wN78_E4AAs,71\n_mSvR3aQeWU,132\nFHohKkrVoMI,107\ndxqJ_k_uw5k,131\njmpuAz59EbQ,109\nB0vKK-4qJac,176\nbhGFCS11OR8,90\n0VYvdsrV6Lw,132\noTzTcic-1qs,61\nP1_QqWRpUQg,86\nM_MJrybDRKA,133\nNL7nLSSSWjw,133\nJtBmjD4WDnM,133\nMYpqwTSpp_E,126\nPhkCGApLP30,117\nAHHH770W4Wk,132\nUuVuFO1cCFE,110\ntPy34tjLOyk,131\nRlphfLO3MYA,79\n9Qrhr8MiuCU,149\nNQp6RWrHxRE,126\njj1lH26Ky08,128\nJUbVxse8ZrQ,132\nZpuHoppfsN0,110\no1nS19OOD-U,130\npKNsKKRGrzs,100\n_mVMG_Rbk5w,131\n_2WBjBnwlUs,88\nlqT20npvohw,133\nIZocpwWLsyE,146\nq5K1fm56gI8,180\nA8eQgWhFg9M,101\nCht63QybtiA,127\nwsl5fS7KGZc,108\nlIOwxzY4M6s,126\nkDHxHA2RzJ0,133\nN7UtdTiuO3w,139\njwrWJXtNYWU,32\n_3hajwRww6I,133\neuV2U_M7RMI,66\n9IUZkug8qo8,118\nkUAXs0LhD6I,131\nonD3Eppv3EQ,103\n6q5a0W2pxS8,133\nJ6Cg05MhWbw,118\nQXa6FXKJQpw,133\ndpAoVOU-q60,132\nNXG6CKgSNdc,129\nF3GFYKIwJ9Y,133\nGtYAzKwm-R0,132\nj6gLJ4_sfG8,133\nJRpouK0KmWQ,143\nAcEe0LbP2wY,109\nkHq3y20HhRk,122\npZE1CyPdDMo,122\n_ss0nT5DGHw,131\na-9990dlfvo,180\nZurT6BG1OM8,100\nuMb3tldMyn0,170\nJV8lJEE1p0w,66\nhh-qKqu3ZJ0,140\nFRaIvI54IOw,46\nba-U_sXRFqg,73\n0fTXzdHoip8,174\nMHzcc00ZXCM,132\neNK7N3AwVFQ,180\nFD3Xh_Qez_Y,163\nKAeAqaA0Llg,123\ns2wBtcmE5W8,128\n31lZFoSS-VQ,133\nbX6BKxFkU78,103\n3Tqgp93zs3Y,131\nb02H0dW2xf8,33\ngTKpKBzd7jg,114\nMnBarCQ9BE4,130\nmdcXOlUMfq0,133\n1KBWO9Js23k,67\nMvs2nUuXWLo,36\nvlynd7r6pLU,133\n-qq785V7JOU,133\nY2y_dipI6_M,112\nUhkYrd0Sg3o,39\n97ZiBty1eTM,117\nXO0pcWxcROI,69\nFUR11zrrNb0,174\n8AUEcXu2krY,93\n6kw3u6O_SxE,133\nVr9OaXD19JY,132\nr4IBPd7-LlQ,90\nuRxCU1MW8B4,76\nXKl9WKaYVRw,58\nDLVfYn9pvwo,132\nGSruhwZsc9c,115\nd1VyT4mI-8g,133\n901lYbPmqu4,131\ngeiS49_p84Q,179\noMLjP2ajXvs,132\nowJTZiiUoUQ,107\nWTW9la6_mEY,132\nn86XlheDzhc,62\naQ3LqlDbwOo,139\nzEdVDymxYQc,130\nFa1zCdRj3MY,142\nw5pn48wzBuw,105\nC-PxIfoch_Y,151\nQkAHUSwy8Uc,129\nPW2Wr4-2oyM,105\nUf0P-Ezxg5Y,92\nO888bu0QrMg,96\nO3P0SMpqK-8,133\nVz7PIPZgT0A,130\n4xLmxgd-AYs,76\nr4mQmoD72tc,126\nFvJMbz4vgNY,131\n3hwRv9BXdOw,134\nuBX2b-zback,133\nuj8ftsuP8T4,56\na8xs3O-NwsY,133\nYV2WQTL_45A,120\nEvCuX-oY4_c,104\nFgfe6pufnLM,109\nLs9p2CEVQMo,120\nWhw_HyeXyCY,147\nPvMxbRCBalk,124\nrm49NpSVgo4,50\nFfdJdZ5_guM,133\nzhWJUB-Sub8,106\nU9bgSiDUqtg,129\nLqneoJRRqbg,130\n6WWdim-OLok,166\nf0eTISgJ3Io,95\nd2vcACp2hNw,127\ntN4mmLewz_E,154\n8fbGbPwKbQA,133\n5aa_kvfMxBs,59\npwOhqGhP-mk,178\nLDsw5Fx76jI,117\nyO3eVly1GSI,132\na_6tguZWgmU,127\n3dMF8cHKHZA,154\n3tXDymBcnJY,128\nsqpSc2wwTaE,133\nPf0COLjWys0,175\nu17vCX9koaI,25\nvQWmd8REdaE,108\nMflY-IYl0Bk,99\nAjXl70vbOwk,132\nIqOqMdra3rk,133\nnH51jEGD7G8,133\nsHwRx4bc7fM,133\nZ1bYkHffGXI,97\nqDF1YfpUaNs,127\nrOOymP2hx_c,130\nWt5LAZa7LAU,123\nyOgdjlPRWMg,179\n1ZT_oKZGgew,129\nHoW8jQX83Fw,122\n9blGmvMjHlk,128\nCccXBzfhDVA,90\nU0tTT_87Hh8,112\nfh1Y30QwRGE,61\nyjlZPv-37h0,69\nsEnFt6neTu0,121\nZS9SXH3DfT8,80\n1rHtYKAv7Vo,74\nWv_JTjYYaQI,41\n1Wk9V6yqmZE,132\nQJFwZP8DgVE,86\n3JJaD_5oQq8,85\nLtKCcSEgPJQ,133\n2TTfvxYUBug,133\nKSrAg-DG4Xs,40\nuw9V_NayRVY,89\nfERCwTTOU3M,180\nRIN6AtTxFgE,131\nvHbBhI0xLjA,29\nQbVzoV4GgM8,50\nmFwAm6oIPtk,132\ndv7OKoxjLQM,138\nGh3AZit48Uc,71\nQ-LFUnE8zzE,157\nvfNW11vcewM,130\njj6ECLiWbxo,72\nrrbEQDRYpy8,104\nO_4Sx5NtOPM,133\ncagsLW2dKTI,118\nZ41Lvaw_W6E,133\neD4l8wpbrRI,132\nQOgqUHk-zDY,178\n7L2NhtAzHYw,133\nTZQWu0gDpO4,121\nMLxnvq1E-ag,132\nCbMYk-lCKOw,126\nyaGbKy7gAkM,38\nSqOnkiQRCUU,111\n764r3kF5tZg,129\nfpKl9lrLfx0,140\nzjwBNUXCA-M,179\n-fJwmmnPHok,131\nSgO2khv_SDY,111\nhKqQSFaX4NQ,113\nX3vQPmO3i7Y,99\n0tN0uV9DebQ,126\n3ZpmjPc9Vcc,105\nOLvz5E61UNs,133\nlWZU3pPZWig,127\n7VV6BZWittk,120\nwqj7Q2jOTc4,50\nm_xLtlNx7Io,81\nn9L9jMlulXI,106\ngtKp8oxOzAU,132\nMfRi-a8hPh0,131\nG7GXq4M7SuI,131\nzL0ipXUD-uU,132\n82KgLj5UKUc,47\nZThOaBpFIGg,128\nX4xJLbsa4PQ,67\nt8loKEw-wlA,99\nVepWTt1DzTA,131\ndOObdbjoJ4c,86\nmrx4SwMyGdQ,76\nariuokNFhSw,175\nl-EWc6AcPvQ,108\nqTUAF-_v55o,109\nO7dHybpZ7Mc,73\nPMtkv1zgi8o,83\nWzt_d8eA_m8,114\nt2QvuZpxmeo,113\nuBIAcBKvF28,132\n-L-z8VNbrcU,144\nBrXYAZzLZTg,133\n7Lsh9PH4cn0,132\nK_31ZHeMlB8,127\ncHUML0EZ1BQ,79\nfOHbTh1Wo4o,114\nGP1KHL0j0GU,78\nF0wFS45JjWA,45\nyQ3jp-a5JK4,32\n-BiLCJxpqi4,77\nn-mpifTiPV4,130\nbLqwpb4eDeA,62\nGLQd8ZTeYlI,70\n0woPxIfjVTk,133\nkgxhkCKXyRs,169\nRQmCVPN6V-s,133\n4PXcUkIkulo,56\nFLjixsUEj5E,124\ngkfAyFT8xGc,79\nO_aziIIp8U8,133\n5hXXFQLDsoA,69\nZI827BuJgx8,132\nilfv_YzaP0U,133\noXjCj86GB-I,80\n5L-JTSGZQ4E,127\n9eGwOuyKu1U,59\nU9nydZd_emI,133\nZRJgexzNOMo,104\nZtuLM666bLo,79\npnaWqq2eRcc,179\n-BhFk_mOlxc,120\n-W2T5Gm7i74,133\nYMzV96LV6Cc,133\nAysV4mGh4fc,132\nWsrIYleq2KY,131\npLKZ0Adi70c,51\nm5n7XpAv46A,55\nrSWBuZws30g,178\nNCAOKR1jpp0,85\nC_4mdGA9ehk,64\nZuqwMQTc8cE,119\nTY513V0RMgw,129\nZWrv3l_2tGQ,133\nTpGPSRGrL3s,109\n0SSgv8t0QbM,133\n6DU0mdThjg4,100\ntnhW2iYL25k,132\nCxxuM1HCI-8,29\nJB9rdCKgGuo,84\nkFhIMrW1Yk4,63\nayjftbSDeVA,132\njJze-x__3o8,128\nMDwNSR0QmBY,86\nJ2Ws0QEADsU,174\nb0xYU8jHaH4,119\nzPeqoWzZE5I,52\nMgtXKQbmYRM,44\neBE2Wgz32nY,155\nn_c7JtDNNUo,84\nmzZgTmwmkfo,132\nXrxIR2uja8w,180\n-UJ9K8lMxPA,176\nZur7hoLFsrw,104\nPtozHYwIkNw,133\nWEfVr2S8eo8,145\n5aBsRxccPJI,177\nK-cBT5AxRrg,138\ncXCMz340CRg,120\n-wSYsQS2-NU,39\nLeNRbtWgero,50\nTE95amqnEx8,122\nF3hX-mdx80w,113\ncg7wSv4ALRo,50\nyGbG0TmmRDg,39\nw0Z44BIDPPc,128\n36FJgdiYYs4,101\nY0p3egpGwAI,131\nOHAVcgjGDqM,93\nmHJH39bjALk,129\nvG6bW7_-CRQ,180\n9IzZsjED07A,58\nDYsJH2JWJTY,58\nCemLiSI5ox8,166\nuNPU0cPPsmA,57\njXb09CCPFO4,109\nEbxlqGXQeEM,129\nND-nldJc8kU,133\ndbgOACJpZg0,133\nOD69M9N_ihQ,95\n_MlQzLtPA0Q,104\ncW7Q7UySxRA,162\nt2RUtqJGxlw,133\n368Nrtkmrls,152\nWhyNjvISFac,73\nKMnK0as4TSc,41\nExGQSMWhujY,103\nDiNE5iYBuHA,123\nGUwhnO-nTLo,130\nSgwBAXfvdFE,132\n2jvtU-_WDUw,114\nsKrpl-KBTzQ,89\n5Ui9rRepv0Q,118\n7tmC9Qq5RjA,127\nPha96r6s_g4,42\nY1Q93Zi9_kc,129\nNj7HiMh778M,105\nUstq_iSIqgQ,132\ndLpCZ8g5uK8,127\nM0N1Q7Eav4M,130\nLiHKY-bG36E,26\nTCQQtdtZmv0,135\nyl_CgAqNvKc,129\nNEYwJbjyF2M,132\nJylK4HuKMvQ,180\ncDfQo1ANeLM,133\ngivOs4_nb-I,63\naHM8kYwl1R4,59\nuC74Ix65Aas,129\nd6ISJ_dN-80,133\nSH4PhFHyC5s,55\nW5PJrYN8lUU,140\nZowmpbv1za0,122\nkY4iDLi0pV8,122\nQFOHhusNwtw,37\nfi6U1d5eW4g,115\nAKONPxrqFxs,114\nTgXkBPFZZFY,128\nNP5IK_pn1eY,32\nHIPljGWGNt4,122\nAyNEyYnJ_ds,103\n0zyVlsLgJ8U,118\nJAG9oylpNiY,82\nPT-2kB0dajE,74\nYq5csaHc_GE,118\nY7LbtFY23wo,129\nprnQLmVg5V8,118\nGxQPnTqPeVM,112\nZpXzLVGlnc8,168\nTbI7_iOYJvg,129\n2TAOizOnNPo,101\ngsJlkWp0p90,131\nugw3DUIVKow,131\njsLOtv4yqIM,132\nhHVZ_viVD9E,156\ntp7ss_bTP4Y,117\nczIb_WZRk-U,106\nVqLghmct2i4,76\n2hcVZo8jP6A,85\nomTBgliYDKM,69\nDqpPwu8MQ2E,126\nGCfWXNmFFbM,180\nb1vFQilhgrY,47\nDXSoxAHjqRg,81\ntkN8fCU-rzU,119\no6zEapyz33o,51\n0t6IIdmOIOQ,178\nuuYTVl0iOkk,91\n6f1jYUTo7AU,133\nsEgsFoQhy3Q,133\nCxzCn3OZfeA,99\nA-FV2T68Bz4,51\nx2vfxsdVhaU,122\nFNLQdquN0-I,130\nP1tSxwpUz7Y,135\nWDiwa8H0DTc,49\nuSkVR8Tbu8c,63\nm-1vkYcqRRw,132\nAGk2Hr3GcS8,128\ncH80fIW-mrc,130\nzYRqTV7WyMg,55\nVWnIhMU_pRY,151\nLMagP52BWG8,178\ntSXp2wB6kXQ,130\nE_Rabq4muu0,122\nLPe-N0frxvU,109\nP8JnW9dWBRo,126\nU4iAA0B9fJU,133\nRHUbiL36yjo,42\nvlqQwxeYtr8,133\nOb_Sq__g01E,158\nWTw51Ynkn7A,75\nPBObihCz2L4,133\nrChS9MeLW-w,125\nFUbC8WBChng,109\n-MQNNzaEt2s,37\nCiT-XIWEC8c,121\nGrD-bVBIVTI,103\n9ekHf_EMmSk,124\nC8IBujBZjaE,133\naCqhUO76MTU,97\nV2Sa7ey52f0,124\n0dlFAtbte0c,36\nVnAR2qB24yQ,118\nYTds2jCQHKA,41\n_zlqhZOE4yw,35\niIUzHUOdLhM,132\nNo7DllIwA3w,46\nU6PfGIrWIak,124\nBw5UwRasras,171\n_KlpD6dr7Qw,135\nFuJ2soRp1VI,130\niseaUTEhwzY,38\nIOECGWT9KwE,128\neBU1T2DdLsk,97\n2xB5GBvOqEY,179\n8LFQun4HQj8,176\ncJBjSpKIRWw,131\ng0UV6ug96c0,112\nn8hmCcXvpz8,129\nrCg9zLCbhZ0,133\n5wThW2AGZw0,132\nNbl6Y076TeQ,69\nif5npkJHfik,125\nKBfD-4BCMR0,133\ntrP4BilUtI8,86\naGMhMCHyM3c,130\nhImAmM5-Fpg,51\ns3znWXpeLPA,133\nByExQg6WGeE,114\n1atAz0BIlm0,193\nPJ1i0HuBXPg,133\nYJPebmYS95E,70\nXUxAGsL8b0o,83\nvV3Utpy9vCI,132\naMBtKhTlQHk,132\nF_EJsjP26cI,119\nwCL3OtOzYuQ,84\nzdX69cWtu6w,133\nk7o8U7h_YHM,61\nGxznDWMsp8E,90\n1jQP0Y2T2OQ,178\nX7Vt8oHsr0g,132\nY4ZHPeyJ4ss,47\ngTAMKrPh1AE,73\nzyRjUeY6YOc,130\n9pT5FVBFunA,117\nAekHQpGS_AQ,143\nTDrGHP9Z8vw,118\nqEMbpl4V-eA,94\n_yy4qamWAmk,122\nL25W_b8Or5Y,37\ne8KqmFe953I,96\nPz0RfOVm-So,63\n18eaNSxhK5c,180\nrrejfviNpqE,127\nQO9r8aO07YE,70\nHpISLkb5L5E,131\nCG88PCHKwOk,130\nvQyK7Re2-Jc,131\nVN9icwiN6io,139\ncw1dB9PxWzM,107\no07ecRzkLuM,122\niTLUzEjV3Bg,118\nQXFR1L_gOg8,110\nwxb_X12HZWQ,131\nLmRLxta5-4U,125\naURe7hHL-Dw,79\ner2a5WhYU-4,169\neORAWRKW53s,128\nZOtIoBAxDUw,133\ntumI28B48wY,130\nGolLDhBuy74,116\nnGSrqmJr1Y0,127\nB8cWjLMuJgo,132\nHh-QeqsDXKI,129\n-nkqrSaJf1g,133\nirglc0zZbvA,66\n5WuYr3fFNFg,89\nNaGkSrOXOp4,180\nT2Y7oo3iB40,133\njUM7RRZWW78,132\no9guyPNZglE,119\nyu2VrqdOVdw,102\nUUiiyiX_STo,126\n5FgtVXFRyTQ,92\n4_9ZfH_x1hE,133\nCOhtZbBhOYU,133\nS7vH1F6nnug,132\n9pXTSPcZEWE,123\n-a0vqBmrAh0,107\n9QIPuX7vf1U,87\nphJJFbxyino,133\njrIc1SlA7O8,63\nd6mZ4guAJK8,120\n0atATbXbQ9g,42\nGG4VDjXtt7Q,133\nxfwBwk7k3Gs,86\ndcsVnpHXXX0,90\nLs8-mu4kDpo,106\nsu2njbUCQhg,133\nFhPUGeCMKCE,67\nLldAqBKjyJ0,133\nl83CcqhP-kY,129\nO6ZWqQ53cJM,90\nKd9_2TRib3k,253\n0nycksytL1A,125\nKwsyI7nWrG0,131\nEPweJNJOQz8,69\nCJBoHk_Ld1g,47\n9oVoJMVsKtk,71\nUyo69utc9bM,104\nub-t6RcoeTU,133\n6RAn28uDZHc,133\npB-bN-RkJLM,91\nTGWJfpAwlrI,132\n3sDL4LJUc_c,121\n7bFi99Kojrc,114\nkaZ87rTNkDA,127\nbg9SuuzPdVE,133\nDiAtgmRa6fc,122\nkg7goEASO5E,170\nJDN_C4L6Bjg,132\nU6M-YT5kkio,127\n4OgldRzYvD4,132\nCZK9pY1dA74,133\ny935w17KA18,133\nZF9RBPElv5E,88\n9vUcfymkjNY,132\nhpb2-ZOzc_o,133\ntxHNcE_d7ro,172\nBziL_wBTw6A,126\naEpa21af2j4,127\npEjOIBe21a8,126\nSk9mR3zjrkk,102\nBkO51g7oXnw,59\nNjIszoXfvUQ,129\nNEwspgySg5s,84\ni75piQgUKa0,74\nJL9cenVTdOk,133\nEQP-k2x6Yzo,132\nf2c-tMZSZtY,162\nEnrWZiqgv1E,124\n7Vl03BBrGEY,116\ngOx8scS9_sc,90\nlJDRkVKjMOU,154\nIBjrQR_1ef8,119\nZ519Bs2Kidc,128\nSQoNv-hzC_Y,98\naMQysPMcE4M,61\nxZXMOpt1jds,145\nmudt7nvWwo4,62\nVbw4I7BhEBk,119\n5WuZvuZjk3o,133\nv5FtI472Q6I,172\nHYUfT__t3jU,133\nbC2pBxh1LZc,27\no8ETRMZt6kg,58\ntMIO48oFmHc,125\nJIhx0f2y25I,133\ndHLDknvGAn0,129\nj91DsC7XvdQ,113\nOio9JPB1GzI,122\n8-UdwBkXJBI,108\nruN_KcF-Ouw,131\nP4-obzmm_T0,114\n139c6HgY7jA,71\njLwbUJiyc8U,30\nDY61X243BoU,68\nhFICuHeg-CQ,119\njc6_XgtOQgI,143\nXfBImxhVWTw,130\nU6X6o4CAqL4,53\nYjs3BLAsvOc,74\n44rUlHYg-MU,82\n8CZ-ICxcEYg,57\nb9T64w0cdDA,125\nRdp3LSS_czA,84\ndLcQb08EVvI,133\n7_OiqaOaeNc,85\nFzQ0GeLVLhk,101\ndXBUdCvqpNg,179\nWNnxjpBMF7U,124\nfF12SZcPQ1s,42\nC6k9TFjWiGs,188\nlKTGkLcn3yY,126\ngkEsrZpCdOo,129\n4sO94xn-C6o,68\nMwmy0awMZXY,178\nzZB1N4IMjlA,120\nmw96cSYo9dU,130\nCcfN7q8rN58,108\nUnXDK24wbSg,133\nyBS-MktwqgI,132\n67jgvKFBCsY,133\nifkYHEoe6_k,96\nLUDEjulbqzk,133\nI3znSbbu9IU,104\nToZx1LjLmrM,126\nhLCjV1eOAoA,91\nkWoC8yYqPJk,109\nDk0roE34zLw,35\nwytwlFfk5dY,63\nWyNGkhmkuus,130\njvZk0rzVeBw,122\nWyW86PD74dA,133\nDMx-Az5Da4M,133\neVUsVW87kSk,132\nVkGD-6ebYJ8,92\nUii-wMha6mE,128\nW03miqzGMcc,89\nersxqFwDkWA,166\n_wD15vBDzgs,133\n-9xP6hMwNy4,133\nSSk0B0dVq4g,119\nW7Ic9rZ9OQw,94\nyLrN6wSSGqk,59\nKdMZwqYiRH8,65\nIMo_Jx35SZw,94\nndItN7hhtII,107\nUCh-HA6pIA8,54\n74Y7PD_uBe8,103\n0N-cvihnyqg,43\nn4Mohc3SrHs,56\nM-cO3MLYOy8,180\nuDISBx2Ry7s,131\ngTLqDBbrmPM,43\nau_5dPh_Dm8,51\nxA57pKdLCbM,130\n7GLhXtUgUg4,126\n1nLc8ZZUKCg,133\n1DNyLD2SRjA,88\nr3TEbOR9SyQ,127\n0lCPmaq960E,180\nItr0jcR0S4s,172\nZbPoAOc_iKw,73\nWuwev3p4rKs,133\nTOUrLn1FFCA,72\nXZzaK0UZJ08,138\nx0KnLMaLLcI,129\nyFMFSxDF3uU,35\n-v93NKIFBBw,90\n8CsWUwcJgHA,133\nVE6K18Mfln4,81\ncoDtzN6bXAM,145\nPAHFNiNl9JM,180\nEHwxZtRyOok,64\nIToYFpzH0_U,42\nIg-Vf5-qTSM,115\nrhc_Ds85lG0,113\nTRAlGwGvlXs,133\nCeSQfi3eLhs,98\nCmcZU82YaEw,71\n0qeD9nc9nwo,72\n54A7W6eEBnw,53\nWwDJZhI5IRM,111\nZIOCaOpBGpE,152\nq5v5DOEF45E,126\nNlP9f8i-4c4,130\nrQknyebGfo8,126\nHQv0WWhoZnI,160\n8vq_k0yqq88,105\nGuuUX-4_K-A,143\nfBlAMqoJ5BA,117\nACV4Krf8JTQ,110\nEQCf1YAzPsg,120\nMb-3XGFTpLQ,132\nZf_Dt4lo_3c,129\nnImG5bpVpVI,47\n76Dbf85Vo3Y,3\nlx0z9FjxP-Y,124\ndLjnIpWhLZ4,40\nd0xC6yVjU9Q,133\nj84y65YfUS4,132\nNYTS7NBDKKU,53\nPHcV9HUfr0c,133\nZ0092DSphF0,125\nWS94fK4djqg,117\nxfTtfDBUrvA,124\nKKzWTwJwrGc,127\n53o7_NqrTQA,129\n0vI6TtIP4t0,111\nIxjYJayuWoA,132\nI3K8xBfywg0,176\nY-CJgOlRfkE,156\nZhzpLQbMNjQ,133\n8WqRrq_lM14,33\nDDYj5ChFwbU,119\n_kD54-q1uFM,134\nkEwJ2uBX7sQ,132\n0eBehC1Ky8c,110\nn3K6Fkd5ri8,46\nIEOqAlmq2NU,97\n8DrzN7pcJpI,143\nX9N-BROIbeY,132\n3ZuQQQTv48I,91\nb6W1FIgCADQ,111\narbY3Yvs_Sc,131\nD9FBXb4G4GI,91\nwBLliPipoYI,178\nf_Pc2_cTQnk,180\nji8jpGMlBE8,44\nchDeyAHI4ck,143\nYhK1fYhl5dg,52\np84uEGZqFlk,180\nEnIL4KXQI2g,112\ngiXrOAZtjaE,132\nR1hGaVoYZxo,115\ncjkkKO5Gsno,47\nvhQ4S5ajwDQ,126\nLZo51T6e928,117\nz09OYmZg6-Q,152\nHNrYPzxrG7I,91\nvb2GzRckU9s,129\nlyuwBW9lNa8,133\nTEodx0CTTgE,74\n7Z1PBPrjZPQ,107\n3c6F_0KpK3k,93\nSM-1QC6F1-k,133\naSxScp7zUpY,174\n4disuwEvw-w,212\n25Y5O97c1Aw,133\nadOO9YXZ9Ys,256\nHYOjY7JJDBI,132\nv6bD23vEigE,187\nFUL6DhVU7E8,137\nmHh8PKWMQEw,180\n8hJlwQwwCGk,128\nNjFLXuCHUiw,158\nd-kcczAff40,116\n6NvDZa8hWSs,104\nWjyJ_ZUEMEw,169\nmg5e_rjtHw0,119\nBb5tMhOeg5I,133\naZV1XI9qZUc,86\njzEhVsME8p4,106\n63lE3AOBgeA,82\nNIOWsdgnNiI,130\nNMaLs9vr7ko,91\npvni4Q-Xh7k,133\nwjHd0VWfuRU,131\ntjsQP94DIfM,155\nZlGg7QIlGp8,115\n-ikc2VldgSU,133\n_UmaFTEIZ84,132\nFRC8Nn6PREI,247\nSzQ4cDkdsqg,107\ntIypF4ODIsM,110\ndO7tQ5fXGCY,87\n_wfy0wdA2pQ,129\nx0Fnxdv5rJ8,76\n0NtiiKd1HnA,126\ngx9O6q0pDAU,127\nGNWJFqW17yg,179\nhVZ0Y8l14M4,125\n4LaL9XB_Cx4,127\nbBg5uLCQrbU,93\nYzW2OjTJc0o,131\nG4_3pzwFYKw,56\nCZrA-i6kOdc,130\nb2IWTMJV2cE,99\nehdAEyAGBEc,131\nCoHgpkuV1hU,133\nndrr3vif10w,132\nBkW-4CWw3XQ,133\nl4L9Yi-lXbo,131\nf783E8Zi8Q4,84\nzFo_QE8j1Hs,133\n6fXGKCKcXk8,44\nfuJceBJIp8k,132\nuyj1CeZt23A,103\nHo5a-qYCpQo,139\nBKV1SxfmeYQ,97\nAXukn4q48sY,47\nSY_94CSMlyE,84\nIy2GKyD2IoQ,112\nWVx0SlYmaxs,128\n6G6Z60EPieA,133\n3a49kwfRAtI,119\nxmwm0RH8i-4,103\nioTMlrCoU2E,98\nnauLgZISozs,132\nqPfLNjGXa2M,120\nKm6bFBSVty4,118\nwAjHfBk-ZeY,86\nPo_w8OmTfoY,57\nexcK59qpaOA,131\nGJP8XTzpOCw,60\nRObb2QfBnUs,133\nqCv3989nvog,141\nQtBnuCwAJeQ,47\niK0-76FChfk,176\nS48AVqtonXw,128\nTZAvqLk4o-g,102\n9pDIRuJt-gU,115\nrPTis4f5DG8,38\nzyVKJXfRm_g,122\nhZdl2FFp0eA,180\n_7dr6PCeW4c,129\nbd-fVqwNZaQ,125\nETC82KEplac,164\nHjhg4s4nD5s,127\nCQcGrzmNihY,133\nkvhcXo9QzqQ,44\nKPxDoFbsvWA,133\nuHmd86pWvmY,117\nML1_2lHFftE,132\nQZ4EwBtyfaA,142\nxsyNWPpAb14,104\nHRbf5iuWZt8,133\n4vcNnS9k884,132\nyE_JbyAR7qY,121\nXlj9wg9q6f8,179\niTiWC8GpOgM,75\nPnjqfWEL6bc,107\nphxMG8YZltI,30\njyZU7lfGjyk,177\nZ0pOWMHRgfI,180\nfgq8TsyNTXM,42\nUQzUOKKGfLs,111\nMFd88DSTPgI,169\noKXV-XQzUrY,179\nNvxttHABP1o,132\niOGo0EHHtCo,36\nGXwVNAl1fN8,41\nxPxs0Qh72kY,69\nhqVbOSEsJNo,178\nksJuTetxrDc,130\n91wo3olctwU,109\ns-EheX9m-dE,103\nQg4NBOIbwXc,115\nrV4DxcJOCLs,120\nS63g8N9Wb5c,127\nXQLKAVpgHQ4,84\n5DJehPkkRSQ,128\nId6oS3L-D9A,129\ndp6WEWGtqRo,131\nfr_9D8OREfk,109\nKjv-HBYitgk,119\nqUcMohewjvI,115\nd9-DFXwcmFI,110\n2Gd39qysshg,132\nBIfyebxopuM,58\n50N2eB0JI80,112\njHyXx_8HuYQ,147\nOvRYeeFT7BA,188\nZqOF2mZJ9t0,130\n1tYwDHxg60g,118\n9XoPQEOY7L8,60\nBWWFJ2yjQGE,120\nLmrLiS3ZWxo,109\nmaaoRjQN42c,100\nnOu9n4ulmRk,100\nVbrKHPGdDT0,125\nRf9V-yzCzR4,176\nr5X-hFf6Bwo,177\nJjfj3SkBkpg,133\nlKEihcQaa_g,119\nAzGePmv0GD8,114\nkwdRauyX_Sc,47\nrWqVoaYxgRs,159\nPYTXPrmSwmc,132\nCFstDwSYjkc,94\nzkBkTx-GL8s,132\nY9yrupye7B0,176\noqAu5fVDwAM,53\nxt0TyfTl03Y,65\nA4DSD-ZbhoY,166\n9plvG6cSgVk,119\n9V2nsuzAzb8,72\n02A2a-aEvmI,216\nn2A194yTWoQ,103\nd8WHOiQZGok,141\nKYUolurihOQ,128\nN9hJ6pUeqxQ,142\n8GPu-oZ4p64,108\nBFeuE0wAHnI,106\nqrKbJd8QR8E,30\noAb2_-uv41Y,120\nf7q5ce9Jwgw,44\nT4mRbRYaf1Q,133\nKUGH4XQ94tc,131\nRK27DwSEetI,69\nNOZMlcY9MC8,263\nIC8xA-bOXOo,143\n0ofpRxc0GVg,126\nbQme3XqjpCk,65\noh3KwtatlkY,172\nwANxoR0GtCs,131\n8V2XD5XS9Ys,133\n4weEXyoXZKs,131\nPtgGWFzIQq0,133\nsR528E5_8yI,106\ng1JAILio6-s,133\nTcwz8-EfFYE,169\ng9vPtCW9pJ8,131\nw6CQUyyPvAw,84\nXekcysu64Rg,72\nCGivL32FazM,129\nXlfvWdF-g_E,80\ny9DslHbBubA,130\n5nvZCMkXEFw,36\n4dWE_ag9W6o,110\nTO0OWazmdc8,52\n5SnIUYLRXro,124\n-yZVme3ToO8,92\nDl8BO_ZLdEc,177\nyJJA6WRpvlg,180\njA-BCSOaa4Q,133\nQ1IQ49BHkEg,133\nnRq905BT8HM,131\nBZSb0JCWcXk,114\nzP0dxHW41kg,133\nRBBmO8dhn-I,33\nmTysQF15PHE,110\n3MzOdxCbTgU,67\naxGVrfwm9L4,143\n-RhmDUj_GJs,104\nkPVaohv2-ZI,95\nqaBlaPsuHQw,98\nEv0Dm5qX0bU,133\nSihfPA7vJms,47\njb0Cjzd2lKU,75\nNZxjmhwogCk,82\nij3HAftwQQ0,80\n0668UNhYjXg,127\nqru3WdOfj8s,98\n-s-DjmXYEZQ,150\nq7CX_5D6y6E,70\n6z6MpYHnbRc,131\nr-zlkOg6_Zw,24\npZNQ-Jo7nsI,44\nbU6ZsvCba7c,132\nd2zY1WRtG94,80\nYlT7x_8VuMA,57\naJ_NWmLawAM,49\nfEcClEBT6QU,179\n2ovvUa5WXU4,55\ndfT_2XRB8aU,124\nIMjO-38v2cs,97\npDv-C_TpyG0,133\n31KYorrCgag,112\n0gBKE5MUiQc,109\nkflvHGnIkoA,126\nmO8roISHjJo,126\nfvBB1KK_VY0,133\nVUG-5kLRjeY,90\n5fLlgS6aO9k,121\nwYBcBpFZYF8,133\n5EFH9AmTg6c,123\nLuQ6qCNwWY8,111\nx_75yMOHMiw,175\nFuE5BaM0BdM,64\n1LxDWSYgiUc,118\nDoUYnGrhxi8,180\n8ce557hlgEM,133\nypmu86_sKpU,181\nHhZ3H18ynTA,115\nGNUP-so0ndQ,133\nBcRIvgk2USU,105\nKMm_fkYUdo8,134\nKeTBqolcrO8,132\nAu-u9RWe0Jo,94\nv1M3w_o7cOc,117\n1b_sbGJGx0o,133\nAw1mnorjq-o,128\n9VAkRDPA2fk,79\nKLoOI5Laplo,143\nxDwT7-3BQ5c,123\nGxKkfTq41zc,115\n4Wu598ENenk,133\npcqaeLRop58,180\nVrJMgYRC_ys,125\ngILsE7uSUkA,54\nTsz_tamjpmc,125\n6KgxpUSWsoA,128\nTbiSXYT1-SY,40\nJ07_XVy9Hns,129\ndofECCtTfaM,52\nQLNUIU7AzTg,133\ni27WEap2cLA,108\nR1dILTUMJQI,166\n-YjwJY6m9k4,127\nLQNKhY7ws48,104\nwzSYH0nT6Qk,108\nVw8BozG_LVA,132\nfbYS5f3GFek,66\nm_1yILWMqFA,82\n6u3GAQgZpww,92\nyp-LFlDEVdk,64\n9HGMxZEl60k,88\ngAVNayJY7Tc,132\nDBZUhOSY6g0,106\nNCgUx9-REsg,113\nn0cG11lTS1E,180\n06KH47jZbG0,178\nnMlDPsRwZE4,117\nJ8yKS1RRJbU,150\nuySQvxQHbdI,66\n7cTI5pyy3Fw,120\nZAerssgC4pc,127\nyQ8PoAkZnew,141\nILwoKfeDJO4,116\npDzkhDjTY64,122\nClQNLSnl1ow,139\n-yEB9DCX-Ek,125\n0wVgg5t2LAM,96\nXFYNHsSzMOo,131\nlouBM-Mix7s,132\nqeZ0SIG2eJY,118\nTfxoCicKvCc,130\nmw7xjHBJOvs,117\nb3z4_gJ5hGU,132\nTrqpRcocmrw,180\nCsZUGoa3JHc,179\nH2uHBhKTSe0,94\nmXEgUS1i_m4,117\nY937MAvxTZI,86\nlpPH-pYm7LI,67\ng_wc9JvTXGc,131\nNn4pMI2q_PM,132\nWSyi9bIVryk,51\n4Te3H4lBaBo,162\nYa2mPO0f-uk,128\nFuXl-Pmr5kc,122\n1iJNC4ty1Q4,132\nweCxCxIIjHA,30\naQ5PyaHQWVA,101\n3KNEj-B5HB8,74\nbSxuXQCEC7M,43\nXsdRpsG43WI,42\nl5KY5zpDGZs,120\nKKjCm_IoPRQ,160\nQpux-Drk6EY,71\nMHpyl6uVPrw,119\nnXqdGyqR82Y,132\nyFWgaAX2tCU,107\nc-tGV96ceBM,141\nHEGucJf9y-w,133\n5kaBIMuW74Q,133\nac7D9kcETUg,130\nv9qbXZZD-b0,125\nLldI0SRzJX0,133\nrW23RsUTb2Y,174\n8qohrMCMzLc,38\nFFkQN5DyvXU,175\n_g9RI0GgRIQ,132\n-aH-cLQqwHQ,120\nTQXuazYI_YU,128\nuvgBCv4v71s,124\nOnqbwlqk4G0,121\nKocw_F48CGw,130\nsrUhUPirCHo,153\n2ZhQWROtg58,132\nql_VifCJG7I,64\n1RBwoUbvxx0,156\nUCskICK1t1Q,131\nLzx24hw_K5I,117\neSlWWZpF2Z4,83\n3A3iNVaLod4,49\nmIZOUXRYVyE,58\nja4l7-L7n6M,120\neu2OiA65JOA,123\n2fc36Hc2n2s,173\nn-WzTlw0scA,106\nsUhg39GEqGA,63\nNAGgo5AtHzE,126\np7cYf7GaXgY,117\nJi28PrD7P-M,132\nW1Ipb0WpoGI,133\nMCwQ4tdtev4,56\nR9jMf8U74cY,65\nxGN5cFcaD5A,94\nfI-F18nRHBQ,133\nkzu2Gwn-sPA,123\ndyxcQ4FV6KM,50\nr2jbK6dGLGc,133\neFs_YLy3Ld8,133\nxWShDNB5XZU,132\nbcY4Lhb3yhI,113\nIoiZtWDO6CI,144\nrf5MnH9pG_s,133\nVKbyotjwcDw,180\nhL71tkydKPM,91\n3c5pbePUc2g,114\nfWqnZTTRkm4,133\nzMgKNI5A9ps,132\nmFglGV3n5SM,96\nl9MW39UXFmU,123\n9B7tjXbhnog,59\n_x4ZoZAzlL4,128\nFEioKHlkczY,92\nQmgPw34Xm3A,193\nGhSSEuAEcm0,128\nEcOENbnXxQ4,97\n9da9FqZc8DU,74\nHuYvFH-he5Y,131\nFJBpmWxw3o8,42\neQhNOc_Bo78,132\nH6XIREQHU8M,162\n98wG4OA6iLw,133\nRXvm3oOIG8k,120\n7Lv6KX12Fbs,127\ncbulyV4O3qc,128\nweL-NjlIQ0E,142\nzIC2aMlqEZk,72\nUKAi_Zpp0_E,113\nfNqz4AY0pm8,141\nzxeNP1dHgXQ,133\n5e9vyyrP4Zs,68\nBFTqHJw_Nmg,56\npPZ7eetT6oI,53\nMLrd4hKTVLQ,92\nBmylCJhL-5Q,126\naZiDvfhRpz4,73\nyxoE9td3Hko,133\ndfrZp14tFjA,79\nOa1LpwUBNAA,104\nZVuhyX3w4Yg,122\nYtDqlEcfr9w,131\n4rT5fYMfEUc,117\niMliaXlKxow,133\njFoUWFmM-NU,192\n0XOzPjsD_ec,176\nG4cvTaP7RS8,167\nT3Xlw651IoE,180\nLIm8HfwnmVE,133\n-Mmq6Kmd75I,79\nOxCVucvlF1o,157\nxFkARs9CHaE,180\no5l0Bw2jMO8,133\n9U7_NBIHsQk,83\nLkdJwYQIR2o,46\nppWi_bhS2eQ,125\nKPowlurwWzU,143\n7_hS3YLPHvI,133\n7phF0rMpBiw,97\nNlyai-wfZLw,132\n0L-Zqr0eyDg,47\npieqR7-byq0,120\n-NzSDbGmTpA,95\nGkPbF_FJuho,146\nGor6z4YDPhU,146\nOj7mIWCoE48,70\nleQiIU7fzPs,47\njri0U57iWWM,180\n_jFgF0gbIuk,55\nTzHrqDQ1OJM,132\nOBWwzOCkE_E,81\npnqh4SI-E6c,133\naopdD9Cu-So,87\ndJS8Umi2b0Q,129\nVi5pdd7xHNI,134\nxkzkmyOln6I,52\n6Q2rF2uAH6g,83\nhLQQfSmgoGY,88\nDnKAU918UaE,132\nJS6Gw6NVgRg,131\nU6Lt17rALrM,133\nKIxetRsd_2c,127\nh4SMndWj5To,128\nu9S41Kplsbs,215\ng-gebDSBFkY,117\no1mDknOtAv4,133\n1TNL7KlEI8g,44\n5ecF_TOyhfQ,80\nKBaCHull47I,84\nJ2_tJIgfnDA,31\ny59dykC47mc,109\nFCYA84FwbC0,116\nD1kIRqy-sbA,112\nVSo45ZD29oo,107\nTq8robO5eJ0,82\nbCaHwP04KK0,40\nN13WI3oVda8,117\nj0silSyYFPM,117\nxD1H-FIqeMA,133\nLIXJaTQTDAg,133\nBW5hIGrXcEs,104\nE2kt9XttAzU,99\nJMIukdtLDt8,128\nCsWFLaHiQa8,179\nFeK3AM7NZzQ,90\nExYO7B26kkw,104\nW4xO0k9LcIU,133\ncqpvoIx9wbw,34\nr13I-TuDcWI,147\nU49MXakb7f4,26\njk3Z-MVoUg4,135\n28C0A4CEUsc,114\nh1-T9LYq1hI,133\ni-VeLFEMeko,122\nCWN1xWdKbHY,133\nTxKxj0ZWEcY,160\nuqLr5PR6sbM,133\nh75sq4lELLU,132\nQbnv6eHKjCQ,180\n4uHWjeoTol8,51\nBXqeQxRvQGY,68\nAHyK8eTGHNs,82\nnfcci0C95tA,67\nhohZbtTAtRA,133\n9B3TN2rEckQ,113\njfgWw43Fcuw,131\n1UqJgV10-wE,133\nwEE-EVC0P8M,133\nA-Cj7v3rTWg,118\nlnYzb6P_1Wg,144\nhwc74Ns9EZI,57\nBavTQmiA9mc,138\nAd7rUGIPVqQ,130\nwuZwdLfxTQ8,68\n6vSWuFYVbE8,34\n_tpfO7RS7-U,121\nCApLHv_NrAw,144\nfbbatiKJ6rQ,112\n2dYyyQdjgLI,133\neZjR4aso7VY,130\n7wYMAJSnpVo,132\nKOWckOfARBE,58\n9CJ9EDtZ2p8,174\nPSZxmZmBfnU,133\n8LGY68ppqVk,132\n8MuZATnrE3Y,119\nHWrjBBXjjhM,87\naFt3FGQcyMI,72\n_ZJUuDLqjzU,81\nhvZiZFDE3A8,119\nCNH4A1sI_oE,63\nJMt6zz_dYWI,76\n6_KOLqpo7z8,112\nU8XrE0FSQv4,131\ngBjOW9luDWw,124\n-oheJ3ZSgiA,78\nCymY_Rl1fEs,132\n0SXgXYo-Vk8,134\nuLquz4Iz-30,152\ndiLE4umndNM,174\nLlRHSFVV8cY,53\nYGf3jBzkUeg,174\nZXHuGyv1KXM,133\n1T53iV8HKXQ,142\ngP8_w1J5raY,182\n9cTHj9NKHXk,131\n8P3Q_di3Lo8,129\nZ5KU79wCSzo,86\nGwFaz1nukyE,88\nt0qYTDYyNvs,132\nAZ2EPeq1TK0,29\naXg3HXlsdg0,126\nzS3qOr0zAJg,132\nZY_uGAx3rxE,126\nSB4SyMKugU8,161\nL7tWNwhSocE,116\nRH3I-IE0Xhw,133\n32me3lMxEDU,122\nVyEM6uxoo7o,129\niBbWqmzzKMU,97\nOk32VyEQYYc,111\nREzwusMDvzE,113\nMhWCHfeHWJE,97\nbBaNdHqC_Yo,125\nm1t9QOSYqYM,127\nkmU4DlO3wzc,131\n9_OMUgTFQhw,130\n_b25Fbg8xqU,179\nnM-RPO10aPY,110\nonK1BeyHSZ4,34\nQSWGpf7NQ7k,133\nBuoqHpvCzq8,132\nTYEvhdLuW-U,55\nNTaSvSldlk0,110\nRAKPzL6uNOg,101\nfsOsSaJWOBA,60\neVarVWL4PwA,84\n38ok415yQOc,133\nb0fZtW9Niic,129\ny8Jqk1kPtQI,133\nZx2SsdhKqbk,131\nONRLZIY7gbs,68\nM6HxD6sZ-I0,143\n4ZaIb1kBnX8,130\nHtpiEXXf7dI,114\n4SNTodFS0h4,96\newwKExvkqXQ,164\nzoFt-5SqUCs,87\nFNHM2JEA1qg,100\nuAERYfeiYBc,104\nDOtd-mykOhE,131\nPHcwHxzDQDs,85\nOP4zJ101EPY,180\n1kejVGS-5q0,92\ngcZPWkNY6x8,113\ny69ebASPg8A,115\n2TI2MT0eoSo,115\nDNt7PNTuePY,103\nMH9ZK7vSBYY,132\ndRTKQQtFoRU,133\nYzpjrMci980,38\nzZH3OD9d9Sc,45\nFxCpDJ1ZAo0,93\nLoSLZP0e-M4,178\nWUJNkDE4d98,133\n7LhZupa1Bng,113\n03a-vG6wHDI,179\nW2Q27LruEnA,133\nHBxcalnSzIk,51\nq-1DREuXwjc,58\nm0z6-iFR-S8,94\niGgiGgeCwM8,132\n86CKsczBdu0,133\nCAeFPZ-yXYM,175\nmvc_bbaLhSg,132\nSoL6a37d1Rg,180\nLxnLNUq0abk,38\nlAlJRP1W_rU,113\ncLm4oCbovsE,132\nE2VBcVxwUqM,126\nTY04QewafKc,133\nesHt1mAYF-g,130\njl0ny6ij7jg,114\n2Vam2a4r9vo,122\nqKerIOG7jdI,132\ntPImdMknAO4,144\nLdsaucLvRb4,171\n1edv56TCvxk,112\nZhjyZXJVm4w,133\nPhXFRRVBKus,123\nrp4nf7xR9Uk,117\n1LvSSeZfWmI,133\nSI7LDY6E1Rw,122\nkvAByCIqoOM,92\niZLnEfsXttE,129\nxNHt_KWKMbE,147\nACkEugMxFvk,116\nnoq0Lb6lVEI,136\nr51WXifMsZg,127\nBGnZognK3Oc,132\nw-DFg1aS_2E,90\n2vOhL_Hw-gg,124\n5v5JjUZpAPk,42\nfRCKKlTNxt8,133\nV9Ul46Dj3Hg,133\nhERyYjy3O3U,55\ngtb_4pNuYIA,121\nB2TqswpzDlg,127\nx1srznPx1qA,132\n05O77oX6bQE,178\ndGFrhVeMm6U,180\nBu2PFyl689w,177\nsoTciHbL4iA,72\ntrn1aO8h9Uo,142\nrrDG0rQCc28,86\n3fwlRWBtHLg,89\nmS-uVaGMOtw,71\nqdbrIrFxas0,166\nYmMAmPFhSqw,120\neFqD0yeyGTs,97\nCi3uRpwFlZ4,64\nQN_Nod65e7o,132\nqf-4TDEpycw,144\nTTLjOAdckzM,101\nmBLotJEfjDg,102\n1IlqRjk27JI,110\nlhQRz_BP1v8,130\nlh0yfYUCkIw,131\n4HWP1l_KtTc,74\nqFc_0WXxOXI,122\nhOz9L1KrJJY,113\nkaU2A7KyOu4,127\nAhpGExo2hbs,49\nSgwfvu6k0xs,129\ndk3BfcWrx8c,123\nchDaFqJMDeM,99\na_OuIUbxu6U,132\nXm-UligdIrQ,133\nyb_-UHyPC8c,42\nquY0mRlL5FQ,137\nK9WNBO3szgQ,148\nAuq9e3lBq6I,125\n4Albtnu3zyQ,52\nWSUWoBeJ6dg,57\nDQYjgqnTmJ8,125\nDmBEdpsTwxc,104\n6vg44SEEMmA,128\n9tkDK2mZlOo,115\nRUX-bx6rwdI,112\nV4qu6AJNBQ8,46\nO3CGLSyIwNo,104\nHzWikU7ir4Y,134\nX-RU-b4OyuY,115\nVHJ5pzTGtag,139\n_XbL7lG0Su8,118\nQxa4zjRostg,56\nobDVqhso9l4,61\nQAUmchzQJAE,124\nu2pu0m9iTo4,118\n-TPRG6Yqzf4,131\nW6IeoTNRVf4,53\n73ZsDdK0sTI,77\n3-EGP38lS5E,65\nLAd6SaXDdZ4,108\nmAs4z9GV84Q,86\nQG_VaTDn9Uk,132\nNWcBwgxUyuM,150\nTeGaTTIBv1Y,179\nMOuSrB5BYJM,126\ngLvcrsbliOo,125\nAuYaiXT_1tM,133\nB_4YNm9mMvo,43\nozAXbxleK-8,58\nBydT8m3NdRY,106\nBkwke3UCbCQ,80\n39M16Z2aYYk,118\ndAOw8dXcMpw,72\ndnThWk9ib1c,66\n5t_tgiWatvs,133\nIFbKYqUofRs,130\n1-G0Fxf9IYU,133\nEOwmzfyF1oM,50\n3z637yWEmHs,116\nQ8IqpcS31Xo,97\n0c5gYg3adeI,151\ncdVMT44nWzk,123\n3jLbKr11l20,174\ny0iBQV-yyLI,148\nctrJ0-TLUHQ,132\nYkjmtfQVzWU,81\n2L0A2D7zV7A,93\nqIxHb7cA6tg,46\nOUHFpvPxmRI,97\ngDymr00KVAg,130\nX6CEEc9g9vk,132\ndwT9BEh7qZ0,135\nFnmVnBcfpWw,62\nFEdyNyQCjwE,132\nwF6xVdnFJho,133\nb-f5iMDXvcA,102\na2Nw8Hen7Bo,98\ndSpTTf_dzDI,77\nG4RvOmNedls,113\nb9WFVLRPOJI,54\nOToWh3nrWn8,130\nN9vKzv8jLw8,132\n_kopi8gT9KE,133\nvgZ-MV0YbMU,119\nhR1XzVQnfqY,133\nGXZ-NAPnfsw,133\nuwstRxD2BkA,103\npJJjycrT0RA,91\nSy7YnrVXudg,151\nq74RKOmIjC8,119\nPpa4gvsZHDE,46\no9W8bxAxvvg,96\nBDiB3XcDsT0,137\nHKpWEkSUs9U,105\nbC3oNsbOyWY,133\n5ITNMF0kSn8,87\ntAOaV-CCaxQ,150\nSKMOhrpxUSo,116\noJFKZnePh3k,64\n6HJqPZ-KmZs,119\nJ7PnM3ji7uA,131\nbxAiioYl1bw,117\nnOLCO4_AKiE,110\nXP71dJlnLJQ,124\nyde2ib0YiVQ,55\nlFHLE24hDQY,103\nwq26A_QK4So,74\nBnjXFpoLJfk,91\nJzOSF71-kl4,73\nRG9LKdqzru0,123\nsolCkKfZObE,97\nLeh6zCbQDrc,132\nL897JSOP21U,128\nnsQtI33UbGI,47\nyrEvK-tv5OI,157\nsaBoM7O_imM,162\nPpj45Ai524s,103\n-T16rxR-nCo,88\nsZywE0AT1qY,62\nnCO2V7YS1nQ,130\nAoSA32zQ754,128\nkNpbZ_oVHxE,61\nv7b0_Z9dzoM,133\n20dudgZjeaY,100\nlAxgztbYDbs,108\nPJFA-emTgT0,91\nptj6u-cdPEM,126\nZTUXWwbqu-I,114\ngs_g4ai4m3Q,133\ng8fheDIG_RA,166\nuvPjPzmUC7w,64\n61AWnIZrT5g,88\ndTr8dXob7YI,160\nEXS5TiBYESk,128\nwJCqOhdzatA,130\nDsugPaXH4kA,148\n9AQGhFGi1dM,113\nMEdmiHCUvYA,127\nyo7C-Sp_-MI,75\nB1QVeR_p7WQ,110\nGq75bSHMKPw,112\n99h9RG7Rfp4,132\nUWjXERbOr70,132\nbw4xDTQYIfE,128\nAcNkJ4_bQ1g,132\neQ87hBFrS_I,179\nfPUJS7w4Dag,133\n6lzU26KS9yw,132\n3rcxMDaDYL4,140\nNd5HqEJuY1g,52\n9W7Ifu4OrvQ,105\nU2p1u13R-eE,149\nar0xLps7WSY,133\nU4D0HSqKiKU,153\nU3nWo59iBg8,159\nfA_1iRByNFw,132\niXfhOj2PobA,180\nrAchA32z2zM,113\n14t1taTBtmc,132\ntrgDVhZHIrc,137\nhQEej75JeUQ,72\nEtTIxHlaue0,35\n5dBd4x1yxaU,133\nJCruFiGN5h4,37\nY3Ij2iWHFV0,45\nuOnIqWuSCIk,104\nqopdYE3_QoU,119\nwowXQ9ZrN1w,111\nUaqCBqd8NcA,131\ns4iqKjufJe4,133\nmlpWVL2gHG4,117\nWsAVIpTwAP4,83\nSAPKjWHikzM,208\n5Jdk3riKKwo,128\nirCUvLD1t5U,191\nFfIAWygymsc,132\nVBR3jDS-Ad4,145\n4KJD4aP90YQ,133\nH60kzF257OI,121\n-lb8E3qQVKY,132\nOB_iV-135-k,131\n_5TCxc7G31Q,171\nbPavpV1D-g8,28\na5SoIFm-SrQ,158\n3lz4BuydE-Y,83\nLwuZzh79ds4,179\nToxlyJ4-zBM,102\nz_udbrboBXk,132\nJVjlqTOPdls,138\n7I7OErGVS68,99\njLvu6WNWzKg,178\nlW1vzy6psfE,132\nFjh3TxOHCxE,90\n6ZNNfq5l5Ds,133\nM9JQBS2Km-Y,116\nMxqsmsA8y5k,146\nc1HS49PeMUM,93\nHb7zhYzenhY,157\nKJ4q3cWQPsM,45\nkBifgLJF5og,69\n4iW0kneOMyw,130\noZu2JfM2Aq8,125\nT8QSGSX7joU,123\n-zPjGsII_fw,133\nIPEX_RXRKgw,58\n2N5UcZJHy4g,150\nAm-uvoQN72E,134\nXdMuekkeCeU,126\nitHVWrhsRSc,134\nslGnGr6kHIA,132\nTaLsQSCK0Jo,109\nAWKQSDRekBM,56\nEZ7HxkZKDuk,129\nfsWhDcon8aQ,41\nzStjjc7SBto,121\nXAnnWoXD2tI,149\nOq3cGgqbWG8,157\n0j4aiJowI8I,125\ndHPnUPFcxdE,177\naDwNCyqgVA4,129\nP57Z6LOoh_k,76\nEVlaur-kEds,112\n8D11eYo3bNY,46\nF1adM9oDbbw,123\nZuYoEtEI_go,126\nuBrvKhAs4S4,70\nwqwUdp5-2D8,105\nFCJx1uV38ZQ,179\n7RD-I8AOf10,132\nC1NgX-w54RY,133\nLp3r6mBRUXI,51\nbOR38552MJA,95\ni0p2X2rQ6Ag,131\nJfddc8LwQL8,152\nfMxA90YU2Jw,78\nVKFsmZhQWtg,174\neCR4DIi8SzU,131\nDrr7dxV6I64,133\nl4AmSVb6Hew,116\ndkCUjz7I36M,24\np0WBxRosKq4,130\nwuw6lFV1rRs,131\nJxL2yg_bRnQ,40\nSbTWLdT_tgk,90\n-Fmvuy-4U_A,133\n3H0V4XiAyv8,63\nKSZwlMDSOvY,27\nA2WV257yma8,40\njpPCVq8UmX4,124\nFI1ylg4GKv8,117\nBS-f_KwM81I,88\nwM2NQimHkTY,101\no4E-yb-1_FA,123\nHZjZbJuhPAo,124\nJsFO0ZY7whQ,126\nzxJQgYPXjN4,138\nuI4fVgVVpiw,48\nl4srSgqgncU,103\n3a3zXJ7biqI,109\n2l_IUAcvfv8,122\nfuOY4W9QFNI,62\n3Lq9NGTN8Pc,131\n9-cPWheNyaA,132\njniUBhuJSuw,130\nbg5SLBapMiI,159\nRrQppEXvRcM,110\n2fwZfyxiMFY,100\n_jDLZyo3Kg0,130\nKz234-_khjs,101\n8w_naC0saGI,96\nSOcgrVL8Dg0,106\n0Z286w5pRSo,62\ndXngQtk0BCU,127\nADl0wC_cAbk,128\nFz9HnTVx52g,133\nxeE4wGavBhE,129\ndAzXib-thq8,131\n_kz7e2_Gxoc,133\n_3K4VtyM3xg,119\nd1U3MyX0pmE,121\n_b6S8tpQtdw,133\nudn4UB_EZ1E,60\nSRWyQELLODg,116\nSxJvnJyF7xA,123\nX8gUgmkzHjs,129\n2jTjWGNMo4E,108\nnimkNFEKUkY,102\ncqeUgjPpCCM,133\npAZOyJPs5bo,114\nwixLlPFJgyQ,70\nlYa7NsegwsY,130\nXBZfsb7OO_k,136\ngPbn1uWQywg,133\nKsk7wPX-MI4,122\n_QE6prpcauw,104\ndH1SeHOpEO8,114\n41IWZRnmb68,113\nspvSw-wR6qg,132\nj7EvXsSJHQc,151\nuAphWDkKWcg,180\nb1eMAFWXZ4Q,124\nv-0Z_0SUtJw,133\nvfIUYDjo8WM,143\n6SEp2FQYS84,128\nIptkOvp53-A,167\nf_XHjqABQQA,133\n22gw_64AGKM,61\nLkqiDu1BQXY,126\nZ9agItiMEEk,125\nGA4Ozqt7338,130\ne8HRcYG3Ftg,117\nqSabiG8q8-k,119\nJC2eKssXavo,128\nHdRDCNtWUnI,90\nuDffmOSVnBM,172\nJcTBwzDucE4,88\nBG6uMsq8PPs,144\nxJjCnWm5cvE,180\nw7tqVEdyteg,129\nQEp-lhl5ImQ,133\n_z7q7HzR9G4,122\nkQ6BSOZ0VGQ,114\nZ09MpDVYWSw,122\n0_avQPM3L90,178\nX9f_YUaQGWw,132\nITszRkvBcUg,112\n9yEylIfDkms,139\nt9P2B7NUPfM,109\n0DFBoLZC3Bw,133\nyedsblplSMg,128\n4xh-Hz14AA4,60\nA3xuABrdKis,50\nix08f9qDkk8,129\njoTY2Wir1w0,132\nDyme80H188w,111\ndwIgQqWOKCg,131\nGanDtOcF0M0,129\naDdBoZOylmo,159\nH53kBYo1Jx8,114\ndfFFgV624TA,71\nI3wUstDFDN0,81\nD0NZyQWyZfI,133\n0ShWGyC408I,137\nQQJDkZZaA00,92\n82IXVFuJllI,134\n29KrhW9Ft4E,133\nZnook3DEEaI,124\nrQOBwQbssgo,91\nf1N8-L5cuWQ,85\nS6UlqI_pZr4,37\nc3uOWTAuaTQ,40\nzVwWDprMFiI,101\nQAFttSucKH4,125\naIPmu6bYZOs,57\nl84trT4b6yE,126\nmV5UHLHdkY8,99\nQZjmr4_K8To,132\n4xpGjslC5Vs,119\nd6NOGc2Dymo,39\nNrE3t6Pgps0,130\nFhAIXOkAUhY,130\nlrvMjEmOFhE,132\nyJzn9MhJxRM,88\nHrvHeKH9kLg,38\nGokkl2br7G8,180\nCvl0iKbdV6A,132\n9uFe61ebm30,134\nQ4-XxWqSgH8,132\nMNV86VFd4Zw,160\nKMFxz39Qhjk,128\nj38t2lDi4GU,180\nwLaXJWcrgzM,133\nY1aP-YyBdIw,159\nq2h6EFk36kI,56\neUNWIKp6nR4,119\nGjOcw8d8yn8,133\nlfJ7WzyoZH8,44\nnIYAfX4gYO0,34\nYgcSs9Qt2vU,88\nhYQIObd_bog,172\n2qKoFdPJ4rI,130\n8sHaAvi0SJw,133\nGU_FUlOapf8,133\nXmhfuDf1hZI,98\n0wC8Ab5AZeE,106\nXHrw3AFW0Z0,141\nTS6_Y6r5r-8,78\n0bhCbZG80HE,133\nEddCNkvpmjw,169\nCaaKsf8zOyA,131\n5KsjPjE-sTw,55\ngAM2Q7Sqlbk,132\nFRvxzdkj_YI,77\npwkzSfo-JA0,132\nZvbwq_7AeU0,132\nUBvArq7u9N8,133\nIRvVdVENFmo,133\nu7tXpBrpecA,131\nuAMrR05Xil8,133\nS4AmLcBLZWY,127\n1pJywLQLzcA,133\nqMwvHLe5m3g,178\nP10AWBi4-y8,133\nHbA1YOueC_A,180\neevdCdOddZQ,101\nr0ladY1kwco,123\nL_NfCmTkLPQ,180\n_ZfmXzIbHI8,128\n-oCLDHEt6Rk,145\nXkvIlrLiy9o,130\nMGwI25DNrHU,106\nfKeNgrRRoN8,57\nXdzp0AluNuQ,134\nG0rXUr-msX0,126\navt_f-TaDBs,109\nlnSoyix5fA0,116\nt4U-Q2nd6u4,110\nZ0JXPVm_Ohg,130\nB4xzP6H_N1E,180\ndOnoBJvtVMU,148\nZ743dOLiGQI,97\n2h8rH8zxA64,174\ngFKba_Esjt0,94\nqgE9Lbwyzc0,120\neN4fDGHpf_c,65\nFxx7g5nz4WQ,131\nKdNSlyrbcDY,104\n4mdd9P7Tn6I,133\nnJJ4eyDjlLk,150\nU1v_Ed4QFC4,180\nb95SzqTrjRo,54\nPRtTmayVhKI,86\nOKn00A40uWE,90\n8iCwtxJejik,148\nMgBCnwI_Hq0,126\nJc3GBDJ2sK0,164\nIUbn5ss8j9c,179\nSZfw1S80QoQ,180\nWs7Uj5D6354,110\nOC195SrxRmQ,173\nqMthVugT2wo,124\nyqmreq-dV84,47\n_4ezPvzKe5M,134\nac9w0rKTRPM,30\nivmjSqQ_7aw,61\nj1VL-y9JHuI,148\nsBjNpZ5t9S4,94\nGVVYB8gaSqc,86\nhW1KqOVCeKw,58\nKqAIrFLuymo,133\ngfLw0KJ6bLI,76\nPzocCTnSU3w,127\n_TRUBZVUg8k,43\nmzP8haJXI5A,54\nCTlALiQtH5o,129\nJoEU1L2kueo,132\nBHFoI47tc9A,106\n7pDEOCYPRf4,94\nQEcxsTjlIJ4,128\nQpbf9NUuuUk,113\nD1Sh5qIqc7Y,63\n_fibH0WUWYg,45\nIHPjxbcPnAc,83\nr1S-yBBZsDI,90\n9ExnVKy8hao,133\nAZLoDR3AjX8,69\nyGPikMkqr3M,130\nee6yIS-0NrI,97\nVwvlEZJMbg0,126\nPJpGMrH7RWs,132\nKTyLJftgoc0,133\n926SVUFeJ94,128\n0l5h8k9N9pI,133\noNGklu1muXI,76\nh30PnSefeZA,127\nH7Y_mHNgnpA,145\n4iaM0-kcWtc,24\nsf8rDpu1vCk,127\nxCnFME3JqIk,116\nkgdr5vmYZLw,122\n20M_teQf-l8,180\n_DK3DYHAQvc,133\nKAPjaNfNw-I,126\n7GF9Ic-yNcc,133\ne7X01_j_oDA,133\nnnESedN4vSI,133\nBQ42Z2UGeS4,111\ncIiMDK4UMQM,133\n_zlm3MXTK-0,128\nWjm3qeQvGxs,133\nqRAE0UOMyB8,133\nA-3SeVkGrjE,93\nE3bgtIIw9JM,132\n_OabFZytcp8,132\nwtMDZyMGKe0,129\nJcP-yeailEM,113\nfygiSfJjTLc,166\nS2LkKVM-dRo,141\nlgwJVRwJn3k,128\ny-qFqfSjN1U,111\nzip5M8y42fk,125\nvQLNS3HWfCM,50\nCO5K227sues,180\nbHSnlMlFC94,132\n9nrVYO6LU6I,108\nVT2pepdAtJo,100\nbyObeFcFXmo,53\nSCXs7OphbUU,124\nvkPx0oyfzeY,150\nl6SNAV2S5es,99\nzcgxBHBsl-4,72\n1VXH6jctlV8,127\nuDimGOcZ24U,59\njXA-4rN9-ds,133\nPmoU153vF3U,132\ndRQtjVzj1bo,132\nmqkqDSAIaBY,58\njRYdVUtQs-8,84\nTgBLraZlGww,92\nTPsW2FYprfI,115\ntkRvLFdrbTU,81\neN7zGm5KKrI,133\n94zjOvSzcM8,138\nxPnV2392Tck,132\nVN8DStEDHd0,133\n3nydBUSR08o,157\n1AtE54HpXBM,176\nOd1ZBTstSHg,141\nwbt-sAOjnQQ,189\nKcHfK9kvnvs,64\nyHBT_3vRbq8,97\nU15kcueM3Og,116\nLQdues4SA4w,152\nA9qAaecuaFk,107\naeneVqyoBTo,123\nk9gcqiIfw8E,80\nS1EsCWrUY84,125\n301qydVqZzM,94\nsdtIgE33BvQ,61\nKf-JPkSfjug,133\nYV-Ik4q-o4k,129\noD4UHPNEZek,59\njfk6JSgLdQQ,130\nqvDxgXX9lww,155\nZP0mhGmUbr0,131\nlpyg94OzHK0,126\n1qbYMSC8ggg,119\n3TA-GALQJfM,68\nYcbZKza_zUg,89\n9mnLbhHR6-g,122\nP5GNspEWA68,132\nswOuQBjbiLU,60\n0foXV1hWrx4,132\nALGW3PA12XE,113\n5TIiQZo6snc,125\nQHYccOE4h4c,118\nvQWF7zqozSI,133\nz2OoxzYqgNY,164\nCXoJegmhbI4,133\n2ZDDIJV5ypc,131\n6y0Uh3qzK-g,133\nnOQCz7STLIY,61\n4zULAL9VioE,79\n2V0WuzhmAjY,133\nHUwVxqQz25Y,133\nSZ5YPfWeYzA,130\nrOaNhtHWULw,130\nHtBebT-rKeM,133\nmwE7hDBei2g,132\nmqzu3AI7Dow,119\nWsPcC5TGxlA,73\nOTfb7n61HIQ,121\n_dl2L4v6ecM,180\nbXy8AgE7jBo,118\nvkdH0nuDWX4,132\n7IrB1OE9Blo,148\n0u_qMyWIZU4,113\nVUgsvd3ZjvA,147\nE8LYvflSTAE,125\ns-D79Y-gBrs,120\n9s-a1vp4LLk,133\nPry7CGd09jU,71\nFNSNLXNnx-o,95\noIC-A9h4cfQ,100\nZrF5rZ3FTbg,78\n3i8eIzSeC8w,132\nGwYqUTPQT-w,132\nW_gYRFDb8_A,57\nY2DV9PUx15s,106\nYYSAcTkd5B8,102\nfbZelII-89A,130\n8aXqgoiVb8E,81\nk9vHopyEtzs,133\nfZIWDis34Xs,123\nudHB3tftPz4,131\nPgOO8Z-FoKY,109\n2nC7GyHvy0w,133\ncyiC3x6-Kzk,107\n5AsYaSut428,72\nMUn6X9lpOZE,128\nZlEXOzC6vqE,133\nfXXmeP9TvBg,171\nE8eiFdoI5W0,133\n83Jr_6b9pHA,179\nPdjgdb-OxY8,36\nf_lRMCPHbuY,127\ntfvoOEa1OOI,133\nH5woQdVbaC0,103\nUI6mgCAcXzc,78\n938jCranAMo,132\npV2XJZjCvP8,62\n9BOOv6NNnP0,131\nv2va7CRda-s,148\nK8HgAzIL-iA,132\n2-1pev4OEJY,123\nZQaBYT4MxWU,135\nqj_NSmG9m5E,64\n63gchPBSN6Y,126\nS1waPNwf_ns,48\nxM2mL0y9i5M,101\nFNaOG7EN5jE,130\njuik-nkFIoU,125\nYGEL2muzPEE,44\nWSS4dOe8Ul8,39\n5FtZqXd6IJo,103\neFDq1K4ZTls,147\nFiAndeAR9wQ,72\nfzAKSbtYBMU,123\nySEkuf94my4,128\ngAKiWvjfCiQ,93\nfaMh6OYfuNE,175\nMFx343hujgA,129\nwjkdynBFHuQ,102\nKVIXNJIaQBY,43\n2_SfD5cdrnw,133\ny-HKigPxUi0,176\niucMQPRSNDg,89\n2NdymhVOFF8,38\n4hkg3Zut97U,161\n3zhqCccFsGc,147\n55X_DAk6K_k,67\nXb6svoM3UWE,180\nEMS4lYA-hEo,130\n7b3-D5qPBrI,147\n_eCWpUV7cOI,120\nsp8Ufx3Ej24,133\nsJwgNs3BWYY,69\nLHtgKIFoQfE,133\nkyY50rBet2U,88\nIfJuol_Q-jw,109\nu3M_YKjLOkI,61\nNKCskfhsru0,130\nmoiaW_zgh1c,133\nycpEjbV4KRM,78\nzeyaRxHhVu4,198\nznxRGH92XDg,128\nomiio7SJIOE,103\nDHkGu6e0R4I,133\nt4zyH4BsmgQ,76\nIfggccwQrcY,72\n35RzyYwEnH0,49\njlUPc1tu64s,131\n0-EcLwovpbU,133\ny7gfbVpraWw,89\nTZYf96eyE94,113\nyBrv-a6Nxuk,133\nwTz_kSiZaIM,164\n7d7OeDwkfTg,67\nPizeDn4baqM,123\nkx2FhY_akDY,80\nHU7Ga7qTLDU,130\n-JbSkxI2DrY,177\nTVaP9kEYVZ8,131\ndrdEb-EYhHU,121\noEOsbgXpiNg,133\neGu2camh0WA,169\n5pJOdrchPlo,133\nbFsgLhx9dxg,178\nCJHV8XKftbc,130\nmTVRho54mAg,48\nA8CNtor4BPA,130\n8tanKqukbfM,180\nHWFpzw87VZM,79\nhKNeFHBPgRo,133\nlCiravgbbJk,42\nJuPSeaf--7g,20\nNWuqkpD_A6E,132\nea2fcCJ0_u0,133\n_LvUmxUqPTo,133\nDnwnDFr9kOs,115\nAgbKPzg3rAk,132\nlYb1h0iDWSE,99\nzy0HtNZgbjY,173\nzAV44x9vVrk,105\nZtUB8XCrqPg,203\nExI6DdBEu4c,83\n1p3NnJ_oiE0,129\npLRk4xG-JCI,83\nMyKNmvJYO7o,131\nFlyWwjIuCeE,133\nmVcHdILwsXQ,55\nXDXuWwNXAZM,53\nJsUh_lfcyKk,133\n8KjvR8FpYaQ,121\nPu3BkumJXpk,133\nV7bO0UmtpFs,105\nndV1BsZ1q88,132\nYF-7cPk04OY,150\nGO4D8MjC6xU,132\ntYRzkKtCRuY,52\nsguNMcMJQv8,131\nCgU-5WQGClY,123\nqU5QbKnQHak,115\nJ8pmj6RkiQk,132\n8G0BVEIjGyo,61\nppjyB2MpxBU,133\nofYq-2TXzTs,58\n42asJ9x0-po,133\nkearXmroxUM,140\n1fbxiPh8RoY,133\nCWPoQO7bMRU,133\nxdXKP_4pbhM,128\n21Vohd23VMI,59\nHxrS10Oa4qU,36\nFzx9OpDH8HY,133\nt7S_kRqYshw,127\nR_VEQI2nS48,272\nARUzoPWS4Uk,166\nMrboCh44XGI,132\nZ89Q2fkgbRo,130\ncy-OKLuMikk,53\n9G4TzgRUKGI,132\nEMga19u0TaA,130\nc-zaHGYURv0,123\ndnRxQ3dcaQk,179\n6ZcNHOP3wdw,151\nQcubF7zXxwo,178\nQ1yT_LIMb30,133\na-VqYtkvmzw,127\nMKl8s0EO5T4,61\ntz56LhvDFho,132\nA1HqjBc6LhA,144\n8sQfEoUNxRo,133\n1nqF0ddDc8I,134\nIEVDBboDFcw,132\nZKie_34cpJI,180\nKMUDG7AOw1w,131\nBf4YINfjQaQ,133\nY9NVQr1r9nw,133\n1qNeGSJaQ9Q,171\n1p8N6MlPDvo,176\nJqyCEV_iACo,133\nRS9Z138meRo,133\nd76CwsWbV2E,30\nnKB-Ij0vyB4,111\nBCTFuIw1Bv8,128\nty5exYQi3wg,122\n8sJaglGoByg,127\n-szJznl-3UE,95\n_oyt0p3Kikg,188\nf-9ErKOlWyE,113\nEFE17jBlSmM,153\ngZ6x-hUpoPo,133\nCbF9_x6zFYo,102\npYBo5eS5pW8,174\nSzO7T8P4_JA,54\nG1JAVVZ_fMA,133\nhGOHE1zqEmY,133\nK40Gt3dk1LY,161\n6-2doIEpFVE,118\nwnfHqnaM0yI,80\nKsGS0BJ49LQ,154\nGPCN0TioP4A,157\nbOPnZZMObXU,133\n9hT-t19CJ4E,64\n-qK58CZslAs,66\nsSHxFSaOV-o,76\npSQkW5soVhk,125\nlcns0VMck7s,71\nVTyBpsX1TdE,57\n_SwvSu3jxAA,114\nEC3EYlsUiAo,94\nOzpkzjl-oCU,81\nGkM4SQ--vss,133\n91nfNp7MVIw,95\nWlcH-5LQbhA,108\nqdK7QVuaSlM,179\nFXy_DO6IZOA,133\nwm0fKKHMUJI,133\nmVNG6xFwq2M,101\nTbFYMfIpRss,104\nV-GgWCBVhrg,55\nnMW1Rfbl0tE,140\neHx-v7Xto7E,132\n0sNSVtTcxpo,156\n1H2xudG3BPI,133\nRu2Mvkf9dL8,133\nl2IJxv1lbAc,133\nNRd2gti9rHE,132\nxTwrrDANnoU,139\nfL4j9mZfUdg,129\n3rpHa7RLvc8,125\nAO9pxLEHVfI,132\n_SQr8I3lcW8,121\no69EA3eSDf0,125\nlJ9V5BgkzKU,122\n-SKfkvvtqN0,168\nqFNBUs7O-h4,180\nb5I94bT23cQ,182\nhoHyqSZGPt0,104\nOX02QBHid7o,133\nVrFey4EPA8Y,133\nfD1FCHmu2as,129\neBxVWEnuSC0,119\nkxBu82Dte10,56\nWBxpXxZqKms,133\nIjrWOZby8s8,83\nvkoJH4fum58,98\nfOgpQEngn0c,38\nk4-CQXg0Z88,105\nS9RbwDvpqD4,133\n70ut3wLkQmo,130\n7UKx-6P2F-k,128\n0eJpmeoLXLg,116\n1eyMnUczVLY,33\ndm61r3qnPKQ,131\nX0NIR5-QiAM,132\nwdTbkO_9HrA,57\ndYQpJJySnwU,130\n00pBYZ1yofs,133\nkaQPejxLNRw,133\nAoRafeVBNvc,81\nKWaZiVG1RfY,27\nqhH634B4jGg,140\nhAoYV0HwjDo,72\nSGzmYFcravM,118\nbmgWabhgTyI,132\nrh1lZYqwJAQ,110\noFwbpFJpQbg,100\nL9x9zuoAEl0,111\nROxvT8KKdFw,169\nWRx0b993Lj4,123\nHzAlqdHBZzs,133\n9k3swSqYKP8,119\nDSGYElDi38s,143\nvaIRRbuiarE,129\nP-4jKZ3X1zQ,106\nH7H1eydzTCY,132\nSN8hW7AeoQI,210\n7ZhnS45Zexo,132\nAnPDhq6O8jo,69\nuYIe9o2jMSE,66\nQ57LY8NI6xQ,30\nJdyo4evwMxU,133\ni_sT5Jl3qM4,121\nClylV3dp-Ok,77\nDaz5Pc5rXPA,177\nbd0ZO7Ewiq0,123\ng5m411zcNA4,83\nDcaV2VQgea0,133\nJZhLiJowzNY,118\n2tKQW10sje4,133\nBYXLKRNCVrw,74\nF3H_X9-yFZA,132\nTkyLnWm1iCs,174\n1RbdA_geYpU,68\n2C6FHPmqETM,128\n6B6yElrEeKM,78\n2mo6oM4vnWY,127\nJjv5GQtJTEw,133\nEQG3I5efwWo,132\n7CkTYPnJS0E,100\ntLUrEgC-Dd4,121\nOhOvnL8Q03c,36\nbSdm_eA1Css,134\nGH4IhjtaAUQ,122\nA9dYo-Be_ZM,112\nIN5zv7oMwwg,68\n1z2AjhGr9XI,132\nMRs1EBoZQ7c,128\nevzxQrEfIG8,133\nqwMmxh3r8YM,131\nw4liPmQEPEU,170\nIdOF7xg5lug,109\nMKbX6ilLdRQ,130\n5paBdZiLhqQ,132\naRM2YcGpmxg,131\nNYefwzfGRWA,128\ne2RQwVyRSGU,108\nIiD7lmQlL-0,130\nK-xthcJWXn0,91\nE9wcK6qvCqI,110\nVIp_DOwafcg,67\nng9LMtcmqNs,132\neolBcBPpwyE,71\njz4VT9zHLTU,27\nG-FYkB9M72k,129\n-eXI4uy3Mlg,100\nbNkeBqdWGzE,39\nPOR5t4hjtPg,155\n_64Qv0jV_PY,159\n9BNJuZn72tg,106\n4t7GADjRIuA,180\nrLx1ABxely0,133\nVHMi-j7W2gM,108\nlfrEnzxJFps,120\n6oPn0DwJOZA,126\nUephHvStdWw,207\npLbS8f9IplI,136\nscrKz6PN92g,125\nK7AKLKQqfj4,165\nI_mYmJVMef0,115\nst0h6-5fVtw,124\ndyb4ztHMFf8,89\ndl2NG3vkMTk,48\n_Xe_d5rtWpQ,36\nHuKVUxMpoCk,129\nnVhrWyZtYFk,108\nCCicXUbaalU,129\nH07ghIFjox8,129\n28B_sZZ6km4,130\nBX91rzHyMv0,127\nUt06d4dptWo,144\nHEKPhSJ0PjA,95\nf_GI8syIgIs,120\n14bY6pwza-Q,46\nDiCQwUtulqs,125\nVsdeqOdkdTY,129\noozQe2Bk2cA,45\nKhjlz5bMb2E,132\nl-PmluGC2wk,54\nBFUVGfsVzhQ,162\nAjeO7aL1efU,178\nCH8HV5gXQB4,116\nP4KH_RSZyl8,60\nRUE4v1rUpSM,168\nF2zTd_YwTvo,240\nnCuYBELZjpY,103\nnby0t43dlIs,80\nDdGZ4WYTdHM,163\n3bgPH3rOWVk,101\nQJVsS-vIDdc,132\nbXEglx-or6k,63\nS7C-PTowNSU,95\nbTUrWYv2vtU,128\nDxRzEdg0p4Q,140\nr99wnIibUQY,137\njKCpGDv8vuY,73\nMiT3ky_83Vo,73\ngXQhdB1y674,36\nyDoaKW48_hk,133\ntesqTwX7cpc,133\nqTwXudZTWQA,128\n0s0m7xO0S9A,126\n7P9EEB9Mr18,121\ngJyibprvYQk,132\nnIsuwv3VfxE,133\nSUu7hWUv7f8,82\nZ4vn4UWaeZU,41\n-IZv4Jfl6ZQ,107\nfDx628jn1YI,111\nXdlIQCbOvrw,182\nKwmiEuEoY6o,129\nOLjVIg8OTNI,132\nsfzVAilcMAM,133\niN4yYrCgb0o,129\n4Q-Qs3loKoc,163\nJd1QPUL_EWo,53\nIHLzITVRlCo,127\nIeFdeC6ukDY,129\nm7mbDPykHoc,179\njr60kvuKw3w,96\nIAx_10MJbfE,133\n3nRy9hw7tr0,128\nLD-DYjqW7HQ,156\nVKhEFVAoScI,131\nbCIXKzeaAAs,129\nU937JR-ir5I,110\n9oTVECouTO4,123\ngYhC67R4g64,118\n20g3QIUnOgY,128\nU3sOMWjM7aU,133\nQQvcg1NNqWQ,130\nRZvwbfpE8CA,105\nEN8q8mJrAZY,132\nadT3VQ_Krrk,46\n0-lcqIuVaR8,60\nYK-ys6sY_q0,59\nHVyg4MchBYM,128\njxsvzuRl1O8,140\ncoeU38xEhVU,159\nNodMkxK5ndw,126\n06u-a5jmi6o,118\nM-rbVvVD60k,127\nPu54Ka5I6lc,124\nWQEkAbLJ5L8,67\n-v-KiIuYkCo,71\n8Px7Lr7VzvY,133\nFPIgb9k3cUo,145\n65nUs0FyUys,116\nVa4gTqyLJeQ,120\noCDk1jDXZnM,47\n7OFROViP0J0,180\nigEO_oyUs6U,124\nSk990pKn7vY,131\nOpZknAZxSjU,132\nEzW2MKQ5q4s,118\na_Txm9dQuhM,57\nGRG-2ocGGnw,105\nPaMAFPMi6cI,124\nQJfhiv1Te6o,107\nQVGOUxQrISc,104\ninmQqyn5fhE,133\nUdhxL9r9hkg,133\n4gAFIGnJ8zk,96\nBjCjlMXLVtw,110\n_MRTgD04QMw,151\ncxWRWbdsTjc,128\nJwfDV_Y54fA,131\nhuvEARIzQNc,128\nV80rHpEZCl0,107\nNZ94hNaoyLA,133\nLxuqbh2tjTs,178\nH-h_xgdM8FI,123\ngwnFTbQVOwM,119\nZruKu2N6nQw,177\n5lPsmFSNWc4,133\n9RTPdAAdw30,105\nwmFhHU38IhE,63\nqJKahA8B9Ro,127\nIIoBuBiTfS4,130\nWMhx09c4TcQ,80\n5T607c23L8M,177\n25_F9irGdow,133\nUlqSJeiOYPs,133\naYKt-7msPic,59\nqntho2Y9bLk,123\n9sx5r-n9uYE,68\nT7pci4SIGCo,105\nhUz7Nan8kpM,130\n39OHlSguIy0,49\nlIk-3o2CkM8,118\nTKpXTy-sCxg,180\n-QB2gXiOAKc,53\njlFLcKaBLz0,143\n_wAG98wcrYc,167\nQuVUH1lm8NY,133\nE41tGRgKxNk,179\nz8Z8Qx6-rPY,105\nqq38b_oRYr0,182\ngJvgjH9Tvpo,108\nPtwRKtvezd8,114\nAL7UDurxc3w,100\nUvtt94Oz4N4,180\n3Nzc3Rezt3w,185\nEtSPFXj_eZM,177\nuDJsCE01LYI,133\nrkrnVkFn59c,68\n7mJ0HSLMba0,179\ntK49SBXBK_U,132\n1d8oqIXtjdo,134\naF3x3Bad2Wk,180\ni3JbGwGNRI8,33\nJCKh3Jsge4E,165\nCEtLeoXjttY,43\n25Lb1YpSEic,83\nQv3wA3MJnJk,131\nC_dc5WzLq_c,120\nq85fsxWYG6A,133\nO3FndxKOnMA,124\nrGw2mX72ytQ,123\nTvTdzkWNq28,131\nm9Wh66FXZJQ,115\norgbJEoA7ak,179\nLO2Ej4_42xY,112\nhKBHte0cc_0,120\nnET7V9DsWgo,94\nj8Zucea5rlY,121\n6bDAYP4kpGk,80\nZbaW0HZ_Qy8,133\nkdW1wdpEP4Y,30\ngM4-jiKNuIs,106\nVpLXPIihj60,126\nnHByIEUb37Y,73\nQk_tn8K0OwA,133\nSmfPtEWejs8,176\nbjAM2J_D4UY,180\nuqeGxkIdBiY,119\n2eMqB3CFMkI,132\nsSkwCIpxqxU,124\ndgJKcCZkXxY,66\nnxdpR5oyCOs,116\nn9r_Sd0cy6Y,113\nR9goLghpPBg,110\nbXYobuaTjNs,133\nyVE7YDYgtHE,62\nKcINC5YSNbE,132\n6SLDMMGzkyI,77\n3oLuIPYxGpE,65\nkntQNeSge5s,151\nyRess0-DpRk,27\nPSd562J8ZFU,132\nrroMPRc4flw,131\nkvzIRuIg288,132\nkq6E2hQ20wc,101\n4qW5feZgSM8,108\nSnMSSAqPSaw,121\nTwTQUFCYFsc,47\nDY1HyTONAT8,122\ndZbWmnVOhbA,131\nK4czoAgsH-0,80\nPJjFb1RSFdw,133\nK5IU4bPS_S8,82\neuxVy9j6TTU,114\nC7G9Q9JcN34,131\nghQOllvR2cE,119\n-RJ6USD2nEU,155\npnjWGD-WW8k,133\nfkHlhiG0h70,100\nllzXzUe2KAk,190\nYNdZAZ-SPX4,123\nFF9t_GekWjU,68\nfbwsXqUpZRU,133\nY2u092TuA8g,122\noG58-Vs838M,125\nuCjC3h_Gc5E,108\nktrGDczwkec,89\nyVcieIZb3_U,154\nt5cn4BoYSEE,166\numIEp9WZI9E,37\nzVuuooZqVaU,150\n0uSOiu_WUDw,125\nWzeXsjGmkjI,47\n_6CT5p7fh9g,133\nWl_vyjME-ug,98\nNRQifnaioeM,133\nRBrzUwP2whM,148\nOw8mG8qutkw,91\nAzIQg6Ly_Rw,133\nkDeUWLhm-0g,127\nzqIOu4ki5-Q,128\n5mEsXz-Bpog,178\nena0xfW0_Lo,133\nfQBlpIivzY8,128\nmYqUdiWcOok,120\n99z-H_NEccU,179\nnvqUv0ROtFA,93\nqdrvmgnw1YQ,69\nEyh5RlXHBLU,94\nlllLnc58CoI,122\n5rEwN8tIRWw,36\nY_RUAeNZs44,152\ncb9FUUFtJmc,90\nVHVxpLDEAo8,132\naqvTaYLP8yc,109\nyJBIO7B_XI4,149\nqmBAF_JTwDs,133\nvA8oTgiA5WI,130\nbHjHDiu2UR8,79\nW4_F1oMTEFc,90\ndQoqvTs4lvg,37\nfN2AXsF-kwc,109\njDmw_MLAQSU,132\nkPsFoudYVSg,174\nPWU9g1Fce3U,133\nJOBYJrVQm3A,155\nJXEpQzze8Wo,109\nS4m848bh1iY,100\n22VmzX35pvM,131\npIWh28WPyxQ,133\ns-pgK_Rvuwc,114\nGrG6AZG-ZOQ,115\n-zIhorOBLZM,133\nkuXEfuC92Ag,133\nNfcmrwPNn7A,126\nJhtaGVmtcwU,133\ny69iLU9cSyo,119\nt8HQInlblys,102\nilrpqagxBf4,128\n2bujRZhOt9w,125\n57yGBikRJec,132\naHix4qGIYHI,127\nLR6zTixElx8,115\nW51M5otbulY,128\nWMX_DNeziH0,140\nnPWRoCkmaQU,126\nMPp_UJZTU78,72\nrvjVIwMPxqA,133\n6xSLNonQJSc,114\nfLpmswBKVN4,45\nPPO1EQmj05I,127\n33MiJMF5z7U,133\nayl2X5zfUAk,117\nkReNcBdLDa8,42\nKxMHqnKgF7w,128\nSNrMqIrtbmw,80\nL_TvaJulWx0,129\nhkuy44c0Hx8,90\nJR_yxYYp8NM,133\n9QWRxT9oHYI,52\nuPwo-nHWQaM,128\nkzw1_2b-I7A,133\n1KbamNWEfdw,48\ndLjNzwEULG8,171\nf890SC1schE,90\noBO9Uy4uc_c,140\nj-47cwN0w_c,130\nmVv14yZ1c44,172\np890hIa1w9k,125\nShQD76s4WZk,32\nPsqrgV2RCCM,132\nSWAJPB_5rSs,133\nexVcH3m_G5c,92\ng3E69dpurZA,179\nPoBD69ANBUg,56\nOqVyRa1iuMc,103\nCjYxp2UFfL0,110\nof7ZP6vXAPo,133\nOqCTq3EeDcY,116\nPb3txlrBZaE,121\nPzZHiGYjhss,128\nBeJMZm6DDtk,111\nUx_ruB_nt94,134\nn7DQNB_OKZs,125\nXNG8wW6Ffw4,116\nv5Co3A3fLBo,179\nGgYOGHU_IOY,101\nmDXU3KxBpCM,172\nFu6QrGkRdJo,98\nq2pzOimT9so,148\nxaCe8T1fXSM,133\nsxNHNxmgzJU,171\nC7ke6vWUu18,131\nJ8_CIsow_Y8,128\nvTbcPIKxmP0,118\nZxkxWhiTQnc,133\nmtWSL_-mJaI,132\n9nhbb-EhMYg,133\nQ720Fe7IDMk,178\nweHHBdmI_Jw,132\n87w655s3xKc,154\n6eWsFFQP0gA,58\nE_wUrAXTbPo,58\ny9jS6a7rIVQ,62\ngTTHW0Hynbc,58\nEHKfoWh8t6o,132\nwBxRwF4qnhU,146\n3cDavZFKopc,133\nBzb3rASU-pM,146\ncs7CW6xDbL8,74\nLwdlYGPcikE,127\nITfoGnAkw4I,133\npBNKarJukms,48\nlKv7aGku2RQ,92\nQwQ7gl5N41I,100\nTEAIVXJ1Qds,133\nVC0uIqac2A4,65\nqXJF21RuqlM,124\ndkdrbg4EwGA,123\nS5IHNcpa7p0,148\nKbKQQZsQJwk,45\n79LzBvBRPx0,116\nDSCWB4GqcFE,131\nZlFSjq7eU4Y,133\nDwnkxpu0l3c,174\n2r8yw_fjoHA,79\nG99Olp16O7M,170\n2_YvzQoCG68,133\nYgdWrHFx0I0,127\nLSEkG5z7Il4,150\nQqY-Ikm0kc4,115\nJcvSNsyvwNc,133\nD407HWykw6o,122\nfxWE6pnuPzo,138\nu6GTs78NHzQ,51\nCzaHTATaPAc,125\n1WybekasErM,56\n6QoON2Vq78k,27\njcXErUFrA68,120\nIMSd1IbxmFA,51\nri44Zx810p0,132\nBN8K-4osNb0,98\nqIleHfrMWWE,128\ne62uLLsvUzI,175\nMLFezSJBdC8,130\nQiymXl8HTlA,132\ntPnacrrdjIk,110\nqalHjNdHFJc,129\npYwgIQaq9qY,98\nnYhuIXk_CPk,133\nZNzVgqv5MtQ,124\noeCRY2mdih8,133\nYL_90r0J120,180\nCjyutBNjVns,133\nFWvAYNw8r9o,135\nPJlmYh27MHg,179\nfBaXUdPo_2g,110\nUrf145tA2SM,131\ngZY_zy2hAHA,126\n4wddfKqi1hI,49\nM_beJ-qJlQo,131\n4WNfrd5hsdI,39\nPyeH_sv2TEY,43\nByNjiy8-j8g,98\niI0hgr8Kff8,46\n82TS-sLA0P0,77\n2O-CC3IVPVg,138\nXyBWsO1gVTk,129\nYVrMyqmDg3g,130\nUtt18i8DSSg,111\nLdEwXHHohHs,133\nGjPCk494e5Q,143\nQvfJieP0KVA,40\nYc1M82PB8C4,132\ndejp7HK8Owc,132\nl9c1k_m6POA,183\nanAmUhhnwUk,130\nQwx74IfTNwo,131\n3XPzF1azIkI,127\nTIccuJuQg3w,132\nbLsM1z8lX_A,43\ndMxAYJDzSls,132\naKOmGhBOJZI,112\nDSuUJ-Scbeg,132\ni5j1wWY-qus,83\npyXdB_AYiDs,185\n8ARqfD6Wm3E,161\nVhtJpZkTZ1M,133\nuIJDIumyakw,133\nxKdtuwTr-iM,157\nOJZGgPoJ_u4,133\n083OMBnPA3c,98\nSn25NmBKxSU,133\nCmkT8YU4jH8,174\nVdlxHA_WLn4,131\nxHH-tuDq-T4,51\nzR7Zj6ZFyUY,132\niOHElDaRs5E,178\nmzNUbT2sQT4,146\n4_Anuo4_Tlo,157\nWd4DobcYu30,133\nwFPtFkZHpBE,121\nEg8MVTZ12pE,44\nb_uKO3N_JJQ,73\ntfX2C-Zewuo,162\nUYovQZUBzpA,133\nWlB-BbWBzd8,131\nIgBQwCBi8vI,61\nt6bhgzR3gkY,36\n6oyxLFD2IIw,178\ncYjv9uWxW94,174\nMrfsbtOOdGA,132\nCMvdeSxmPKg,50\nsIMxtj6czX8,102\nyqTTejoQVXw,179\nIaqusi3cAAc,122\nMV-KVBADWMg,133\n0DTD2i-pMl0,130\nZ_OVcsaEOXA,123\nZJOTrLdxCPE,177\napq46lA0uSM,155\ngZXv9XswYM8,126\nzNyykRpFBQY,55\ntFAX4TdV6ak,130\n6bANKvFGxGU,60\n2n5Jy27aVqk,151\nwsQJVAzezrc,45\nzWkNT5A3wIk,177\n7eI5BfzRCY4,42\n3JnxaZunOAo,150\nazYL1oPxMGg,46\nOCGGXaMANys,71\nAgLQ3qTL-t0,132\nHqAbjHKO5jM,62\nCDywMUdVPqk,133\nUo18enRpmG4,132\nZPk3nEFRuZg,132\nwNWaYfZI3Ak,115\ncAM7skQKVk8,106\nmMRQdL_xvME,96\nA59SQO2FvPA,181\nmNQx3KPxifQ,119\nl6NIVn6_m1c,180\nxo2meR8UHJ4,130\nISs3m1aHZxY,106\nweUbXakK6Fw,132\n9Oi7sZ13tNY,53\nymjvQZ6nSd8,124\nkDnCoiYKmtw,133\nE3wiJJOrgho,133\nkTnEyRLMvqk,129\npcV9ceH4UvE,175\n97QNsiDKamk,122\nCtIhkGu6ahY,177\n3u_oizn3fg4,56\n_qG67vGwgcY,162\ntUmKlW2VmKo,132\nriYhck-Z9tw,106\nWR_LpHsIp7Q,82\nQRHGpNm96gY,113\n1uLzZVSIo1U,102\ngtSXreFMPpc,133\nAFk0BnxndMA,102\n5xWrsFC7pG8,133\nFBV_POzEeks,63\nk1pv94Y0fbw,47\naUhex6wK5rI,105\nDq6dW6XbeLI,73\nmUP1a_bdFRQ,152\nKcG5AQMRFVU,133\nmYhkrT5de2Y,44\nvf6nfEZgorY,43\nBck7alQwzIs,141\nN5EYRBPqrgs,81\noZzS9hBwaqg,143\n4u-4PyidIeQ,133\nv0KOJWyR4SU,257\noj0LXmHzUoM,92\nG3xSISRjDR4,176\nH1t84X0iHTY,47\nsY1NGOTGpUs,103\n7BapYJuMHMI,97\nW1fkINKMwHA,132\nYBEUHTsxyXs,131\n9KhqPTmsCJU,119\nxkNNB9f_3Mc,95\npobSophb2UE,61\nOA6wpEFU-uw,132\ndX762k_3zWg,155\nh9jsnAD4aNw,122\n_b3_-pPzDVk,129\n9V_bukpqoPY,133\nrhTGE6TQdSc,72\nEe8NvgURCZs,133\n_vjn86zTNVI,126\n-Y1lyQpBVJI,28\nWa6au8A-3Zg,130\n0IWdfqsImMU,44\ncfNzZre-sIU,178\nb4teoyYZsYk,96\n6vry0ijbJVE,133\ndht_3NziwSw,128\n6xU4PZNn6RQ,49\nd8sDpSZeDBE,67\ng2KF7DAlM4E,177\nIjMTiKtwyKk,100\nkDfvxJUxL10,195\nNrDO7L8jXWo,54\nJbyemdsSfI0,130\ngP2sCE166o4,35\nz4nPyI-zA74,86\nPolzQMFju_s,100\nmIM8G1SoJAc,104\nShqQo3JOdew,118\nFaYvxUgA4cw,40\nTzatMfqIf3A,97\ny-79cpg2VC8,101\npWPn-C5l3Sk,133\nI-AhUVGpGoU,77\nHSfxl1KI6y8,133\nWZ6p4t3StSc,184\neWmiv9uIXQk,124\nfKncYRJQRC8,132\n-RBjiJto4hc,97\n9DaWcHIGk7I,53\ndsRTzhbsAmQ,87\n3rYbV-Q-VFo,47\nXTMeDBVknQY,122\n4G7TTDEHl5o,179\n8q8m4-7ciaE,133\nhf7_JChVnAQ,132\nEDyDOkeEge0,131\nafW8dxL3qZM,132\nGSSXEGoO53Y,133\no9splceYBXQ,153\n8-TDW9Cm3TA,124\noCayZiKmJBE,90\nDH80L45zXJw,130\nIFTHxZ22woc,111\nzQPE6MCV2jo,133\nqq8xAukB-xI,130\nJMJAl7PfSlk,103\ndhPSvTyGSgs,132\nvrf1MjmWFRY,105\nDbqqjC92PP4,133\njcNFjpxU0E8,140\nxftZzmdlCKk,115\nmWq15lDh8yM,170\nGLfcxIq-zmY,128\npQT-QFy5Nig,239\n6teHF2I4UuY,127\n7SZMEImptPQ,87\n1sCRrXnBTZ8,69\nnGWtzmsCHgc,128\nYBzWTIexszQ,179\n827EAYtM6XQ,180\nNQFMeyWVe3g,111\nRdb-5NHyGOA,46\nHZ1D6bBiufI,131\nYHJnS2dsT-Q,45\nV2j9MRkQE78,119\nql0DycjR8wQ,97\nCIRLLPa-j9o,84\n1KfyTORRMXk,127\nYf_toKBYCl4,102\nW-qUR8qovy8,37\n-x6njs-cGUE,166\nW6bT7Y-WfoY,133\nAU0NLheu8mU,128\ntH4JJtuyLp4,31\nIIn0MEHnMC8,133\na9eT3NaWLPw,128\nEsRoSsauhss,124\nBKyuT9l-iCw,95\npNRdxsTmV1U,92\n_42qmKBSC3g,173\ncHJd_bAK9C0,133\nGrWqq9ukRY8,128\n1VEcaRh4c1A,89\nwSPAPeO17Zk,92\nuZWDke-bpmc,112\njx6Rgn1ioAk,129\ngnaDj74UMqs,133\nD_A6gdlNh00,178\nBbjSOt7NxIY,112\nNj-F4OvzyLM,136\nQ3QqG1UavAU,133\nxEQ_h9zO4II,130\nEn1SvG9tOSg,57\ngMBEqbV0mw4,53\nAsBLdj7OyXc,178\nP8JW75Lv25k,60\nVMFwVNGGfBc,162\niF_053JQnQE,128\n3KoW7h3Auf4,115\nifG_E9BKfuc,46\nQTKNzDn8PzA,114\nrnnt0KYtwFc,118\nGQ5ICXMC4xY,133\nTBiLIqhNiAM,109\nOS2udCdOuqA,189\nFNvk5X4D7g0,132\naRmaCLDJ8Xk,178\nbw0-q-wjSIM,132\nshogibE67W8,133\nn7mEYDnXaMg,133\nlBeh1jkanrE,165\nbQzBPo2qRuk,47\nex6X6rXcXKQ,91\nLpxwR_9EhlY,176\nzHjeOiB-cxY,62\ncZP3u5XAeHk,90\nfMTn4M2qfNI,117\nuE-l84hG_BE,155\nwgHRj2-vvs8,133\nT5pFuaH_A98,60\n3ohBUYQJflU,178\nHJhNgjVydac,115\na0QpNMW2kws,126\n1BkNaaNscqU,46\nUJUWDZ9JUEI,174\nC68UZJevw2Q,132\nWc2CaWm1Gno,132\nZ58VID4Qjf0,132\niH9hjyoAugw,98\nUWyz-yfEIN4,39\nBvPVgwp_M18,110\nVcV-ZLbd-pk,176\ncCn4FUNWvQ4,133\niPt2PNpjOq4,96\ntHNjy3BH4qE,199\nnQYsHLwXnMc,125\nIzYmyWR3pJs,77\nFFUPB-cVozg,160\n1Zro4CfP9wY,133\ngL17bwbFDAI,125\n1mxednlcHSs,133\n0WtDmbr9xyY,172\nX7ut7L-X1NQ,132\nM-VdYzNgtng,133\nKDKB37gY7OY,26\nMw0IakmQri0,122\nZp4qkAJFHrQ,133\nrQP1duR2tf4,95\naQQsBjOrNMY,118\nXVINVuRkUFg,88\nmefq68nHSMk,123\nAyJIq_BNPME,103\nwP3H6lZ_mt8,180\nsIKTzEgkucw,64\nVgQOZkXg9t4,133\nDwDzyVvtR9M,130\nZuVe3leQQgE,173\nqD6IXIE0cok,180\nlt9IJX0qI6o,99\nEW4_qWWvxfg,133\nn1TqCGEBdLw,89\nmgyypjEpK6U,132\n26MkbK_C-lM,124\nkYcvOPf4GqE,79\nFePVICEsBZY,163\nXbSfFmKJJ3c,104\nJVZwoLZgrRs,74\n4EdkUt4f5wg,106\nJbrBIbtupp8,169\nN8f-APll5f8,68\n0EeL2FeI7NA,129\nl24yOwR9saU,105\nN1xvQ7iLD0I,120\nc9O1VVeMzhc,115\n_yYDzLUH1NE,116\nlBvrfWqCjYE,106\njnRIqedIizM,71\n7uSM1gbWQKo,59\nOJVDP7FaiqI,103\novV34LOq9Q8,111\n_c97olSX4hE,81\n69vn_WxKBUs,154\nXHiFqBo1rWI,133\ne8Bn6XVv9ew,107\nDqHxOQWW_Nw,57\nJgIJDix2oy0,111\nZHGLbVKq9T0,131\nBjMrxHxraio,133\nbj2JORdzs1g,177\ns6pAWtuEIR8,104\nIg8UNiVUfc8,47\nGTCKAy3buxo,174\nXyd6zzq97LY,99\nhw8D5KSx5p4,126\n3FgbU0ZZzQY,129\nUCjoOOrgVMM,88\nnHCEOK9n5z8,35\nxGvLjaA4Zek,128\nQAxmwbQ_7sI,129\nVgiH-x1eRpw,101\n-BUI1BdZz94,133\npKEwvDFqMGw,132\n-KvWckPXGIQ,121\nfyuoIqeL-bc,150\nv2pWzqZqTyk,104\npJ6XiEEJndw,133\nmqnB2ef3S6M,130\nAqtOrW-wiZ4,31\nM0HjlCowwuM,74\nmSa_kUf6cxs,56\neP52omnnZmg,69\nd6HReoQl6Mo,194\nn8mK-A_0viA,133\nNv88ASiLmgk,123\nu5AzB4EGGpc,132\nhIhe-VqMBVI,129\n6svLqrJqoWk,61\nyKwIEIVAMfE,132\nVtPoKS5cCL8,125\nNpOTp73r0Cw,131\nMLnzF5NcAc4,129\ntTc26ZemSGY,120\nYY5cUX_o770,133\nDedlZ0Es_dU,133\nWmD1a_N83ZM,383\nsUa29Kqpdn0,124\n6g2JN2PrHJg,67\nkFJm_Gedi7k,133\nOBp-kKju0IA,195\nvKLbd6LeUv8,35\nRxn-KDDZ8RI,100\n1z6MvVWZfuc,153\nnpwnO-yPp8g,132\naz5NDvQ41ys,128\nnr2mDvF5-DA,151\nIE0S6NNXiYM,125\nzy8dUJEOqos,167\nguq6F4Jm5Rs,133\nJO-L1PjLp5M,42\nz2itQkiQUOE,131\nzcDoyBvCyF8,109\nvzt7Yb_-yiY,133\n-o1N2unFkSs,51\nHurQLHiIVcw,183\n5LN23qErZDM,68\nVBA_fhQoArA,134\nb2mm79vRuzA,128\niY68ovrzfXc,122\nt4_obOCNYls,62\nF-LlyzCIG6I,132\nl6zm1uCb30w,29\npLpIARbS5Xo,159\nRH0zWG3Crzs,179\nbQbH32KcjG0,130\nLOVgTjeg4fY,160\neLrwCyXUOLY,118\nbqPbkGVa_wc,133\nMi3s2DWKiUo,132\nP9Fg8M0JCHE,56\n0642x0-QL0Y,130\nY3Q6BzRtl5w,96\ni86FbeyKK1U,132\nY9GAufJIe0I,104\ngADayU4DP9U,115\nxCtMlhZskDE,44\nPCID_Jg1Djo,145\n_NrqftLip64,122\nVq1W_C-ft0Q,86\nRqCVbiHCYAA,105\n2sFAyhjR8_o,127\ngecFWdSkng4,148\nOnrORwEG4lQ,74\nJdfCyow-Tiw,174\nccNvps_rac8,114\n1m9DjG3QRzs,139\niotRit7KMDc,73\nJELOhEjLgmU,111\nbMtdrKIdDgE,159\njK6suPB_vTk,139\n4eLsFtya4Gk,133\njYrKqg2TqUo,133\npHxvNgorTQA,122\nlIpUIAl6ltw,132\nOc2xTMnIwrI,132\nidxHUQY4aDA,124\nfOSuCsgJ26M,116\nN_HE8beijHA,58\ndtwfZd9KGpo,65\naIm1ZGm03WA,164\nFhODkuXIda4,124\nakyfR8zcmIo,117\n_yqWh3OBDEE,131\nYGeFi3Ap61E,154\nIiIwhalEAwU,129\n0wsXkU-Crjw,109\nA4k_HCZNCgs,180\nyuCbYNe3aZY,42\ngUpkU0-pS3U,131\n4p7hZ2WJXHs,124\naF4En8CIaNk,36\nxy8a0GKO_Ek,57\nsUkZFetWYY0,150\nB_UjiJy0t4c,100\nMYge4RghcNQ,128\nFGiocp7_jE8,159\n2LuJ9QU-6X8,107\nvU5Weh2-5Ow,129\nL9tK9HYspFM,130\nIZ3BR0J5vvw,128\nKJciGsgcYN0,92\nFRY9K78uDRs,98\nq7vtWB4owdE,166\nsxI6RnTFj3U,53\n36p5Jk_y16Q,97\na50LKwRt5CU,98\nZer3Rr4CwjE,132\ndgoDvnebHRw,27\nzZGqwY_J8Vw,132\nkqEj45pk6aE,133\nJRLNdcmRcFY,103\nmI3QaSoJado,114\nVSMKvHRbHC8,130\nAVMAbj_Pbnk,127\nPqw0GsAAzEo,113\nwAZPdmo7LVA,132\ntd3p2XKHP2M,82\nqDyiygLEd38,133\n4cAxmhotNbI,132\nS501ojiA52c,137\nQfVKP_ibzsI,45\nmpMweFgS2cg,133\nBxL5O2tuDtk,156\nGmslKQBmdzg,132\n-TogGxzlfhM,128\n28JhyDR8-5M,118\n8ZgKfSqsN80,133\nEemLsTG5fX8,116\nRSm6z78KnxQ,125\nkvVlP50LSq8,128\nIEcxOcj3LGA,116\nUrUNUzp14Bc,31\nU6fx_zJtL8I,85\nuirBWk-qd9A,106\nxI836Tp4cq4,75\n5PKVmzdQGwg,22\nRBvtPZ6zyHI,128\nm8RpGUXeHFQ,133\nIimC6oXVZpI,128\n_9ZdW3KXuMs,81\nwYwlDchIasw,123\nr74QbwaIWFc,133\nbB-OwUZc-cE,108\nIG4FAGxZvtU,33\nr9bfL4Jz-M8,98\nb1Qxbu777zo,70\n8QjrBjdb2T8,43\nKY_pTVfz3gU,126\n-rq6IBVPcBU,135\nWJB3hqUsHDE,109\nBogko_zvcaY,130\nnWVrZIz3Nt0,85\nmm93ELyLN1w,31\nHQkSMJFJu4g,38\nB00qOyB7CuE,133\nYjQP7xc5P8Y,58\nBGZZ7s7FJlM,125\nBmxi1VgTb-I,133\n1eWz6aeGexk,80\nEF6ss3d4GyI,133\nKA2ziAAXoqE,106\nkP6EOOdTQP8,82\n3VgqDRrUIOo,85\npZJ7QK2d5-A,164\nxPZ6eaL3S2E,93\nEeyNlzFdjtc,137\ntGYc5woadps,133\nJ_VTn3SAV20,117\nNXvcleOF798,126\ntB9_C5zQLZw,131\nnrizm2gnQBo,132\nnVrzbfxxcZ8,132\nT3tidwW1gGM,106\nPR9wl4Qve5E,129\n2dQgjrrEeHA,98\nJjRx9IJSTMw,113\nVv0aAv0lJ3s,120\naeavPOh2Wws,118\nsGh6m5Ilw_Y,86\nAwgrZd_BjtE,81\n4sRzks3eR-M,178\nS44FXSiI--Q,126\npZZ60jrw6cg,156\ntvGHSvfnlsQ,133\nKTuGK7Ob2QI,126\ngGKNhGbPp6Y,42\nIY3FRWcK_LI,92\nF_VIM03DXWI,83\nucikAqewZL4,34\nTtHffqqdh1Y,84\nuXGr0rSGz0A,133\naoPKajvq3gE,177\n2wCqM6rbeWc,133\nRn2_vtaTLM4,133\nFyuo3Z5ZTX4,100\naCW9NsrV6VM,199\nI8ilwspLbDM,65\nZERmWM-OrK0,58\nIdIEDlLAaJs,46\n3tSWRJ3j9fs,99\nesQgzR6gTjw,125\nNH6x4IDEGKU,104\nK61WsiAs4rE,133\n5LApVevs2II,97\nYwd-UZnkfR8,178\n39mBogAVAQc,133\n1bvaqpSmBLQ,174\nWcZ62d0PATY,133\n9y2y-Tkn7eg,43\nma_XNn1bwOM,108\nhTv7HXqqqXA,133\n83LNTbeatHE,187\n-ncFDuKdgNE,133\nqw0kuEG7NR8,94\nHzAzwbkW7tw,87\nD7P4FYWHVYQ,197\nNlqESIU9i3E,133\nWT2D-ZhTkqQ,112\nT2-1TBORh9k,126\nkXjKUXgoyL4,181\n665wQwXkq6M,40\nLjOibAVPQKk,146\nePRYhNNdzwk,132\nq9QJ_S62yVo,132\n88HW9wtz3F4,100\nWSFqs9iugBI,133\n5tbx8osZ87M,102\nkkZWXM6mShg,133\nt_lvc5iBnNg,65\ngCdXiOssbM0,132\np8Ejl4eeFXM,131\nHOp1wRImIxY,143\ndDDbmin38gg,131\n_SVlezvh3zk,106\nBw-Y1sEUlSk,133\neHh6bwuPShw,65\nv2KtG9kFZOI,131\n02Or-Hx3yqc,133\nz6aek_pwEGk,92\nNpwkIYB3ZEY,43\nHTE6S6x8ixA,103\nrCHGzxSBn-c,131\nlOoT4gTTMVg,131\n8KaBhZM-PTg,133\nAjZ717HtRy0,179\nGH-r4HXHcCk,133\nFmiVlyAfTnw,170\naLVn2GWY-Ec,110\ni6zGEBhJMHA,133\n_kV0xtzcwg8,132\nsNJmfuEWR8w,110\njnA7jmNVYFs,78\n4wvMWwwCRYU,133\nkye191FZmeU,52\nDNZ5NXKtdxs,179\nzATlpF_gylU,50\nlhbHTjMLN5c,179\nw42uRnJwoIc,132\nNXRbXCIjxR0,132\nQ4HY544URjA,171\nlscdNc0qTnI,132\nKW23B9uZBVE,111\n8pIeSYhipUs,132\nHmNJ03s2ZuM,71\nmkNO5Y4LOMs,49\npYI0bXZVZek,133\nOE5g_nESOeo,70\nnhUW_MrQGTY,133\nWjJQ6L_BS58,29\nvTp6sSlv_aY,133\nzeKb7O1KtIU,138\ncz4XgiXhVOo,119\nlrhNPS4nbmQ,133\nbSE3gq6Sf6Y,99\nLmdcbtSwX6Q,109\nS69qPup6hyk,128\neeGuOguh33o,112\nNVR6-HnKtM8,70\n7kMyom2sHyA,96\n9l_U2xXb9VI,117\nwUZxSf_P2r0,120\n4VJrMSbPe00,130\nBW4-PA9Xksw,85\nJwGZDfu-PZI,84\n4sMMt2M3RiU,89\nz7NxEj4A1Cg,132\nePU2Ux9JIMM,144\nRHULBucGlA4,104\nrJodsSNioXY,57\nBAG_EkEcofI,132\nCra_JviE1sk,129\njFrVoG-edFc,180\nnJ98f7z14WI,142\navB-gC3PO98,132\nF_qsH2om2VI,132\n4pVd11CW1qI,89\nhnNXvk6sLvw,179\n7h14GBiAZxo,133\nVyiCDq6Y0c8,132\niXSKAf6h5vE,133\n_akwHYMdbsM,118\nnur4g4r1LN4,167\n6U4-KZSoe6g,108\n-LjxKR0q7Yo,126\nfuEG_PSb_Ts,144\n458GisQyQLg,132\ntCb_6mO6CmE,179\nw6RItV0ZDgI,148\nb2B7w4Z3uOI,117\nGfoSukpWVos,153\ne77ybggTHHg,133\nZPKEtczECDk,130\nbd165_YTXZQ,39\nTQ4y7GPeFBY,180\nLSMl31b3OKc,179\nYPmYDxnmGnM,126\nOcr0aNwQvVg,72\ncyrDoGdif_o,190\nyXl3ENKGAUQ,175\nmzuVsHCLSOg,133\nxLxCXburq2U,76\nKS_Doe-4fkM,127\n6nWWM8tTn84,132\nVjlGOec7RVU,73\nrtkI87FeqOY,101\noZrpLQFH960,132\n6Ewhxrht6cg,180\neq3-F_738gA,72\nTQrzX_5FO1k,133\nmeBbz4hop-w,132\nbmHLulbWm74,91\nCHnbS6ZthM4,56\nwnrdetFAo1o,132\n_hyXwvNIKZM,104\nn1lbpj6868o,129\nEhAiY3hTPpo,159\nJUGSh3BMuaQ,70\nBi3QsK4sVVA,131\niBSLBl-64fk,80\nvFHYiOfBRng,180\nQxn6aafaNP8,130\nHAF359uuWUo,174\nqFcIW6TtVEI,133\nLMU895wYEDI,133\nrgQjzIVzoh4,118\nTb6dbNhFk7I,87\n_HCS9AJ0rEI,25\nt--mSXDeETc,180\njAZRevRbGME,38\nHUmelrncGRc,175\n9Xy3PgufXHI,130\nqhMhfHHeT_g,129\nZKdcYnlkhx8,115\nVt0rz5iPuaA,102\nzU3Hs36FIrw,192\nxeSDsBS_cvo,41\nT4l9RZRce58,133\nWtnTZSJndPc,148\nWj6vEYwwJFI,99\n4VfWFRMVM_M,132\n6vNGX3c03gM,177\n3WCcFVnEKh0,128\nTLZClsaDEw0,75\nsLB6_-ZNR6E,133\nswpveBgb0Zs,40\nVVp0l2Vas2I,178\nIH_dSlEAl0A,133\n3yqPdLURXjI,127\njkHrHAKwPZk,26\n0mGmEE20CR0,169\n_P9ZorzeECg,53\n_v5g_GFm1W0,133\nZJhHYsmJra0,118\nVZpMlm4xYG4,111\nmvmAa1cYZK4,90\nMalJ_GPU4vI,59\nvjeGS4bwPX0,116\nEmDQiL3UNj4,151\nFwfrVozwn7A,128\nqF0CMv413PA,33\nr0cRrtcU5X0,61\n7n8QlEg1k8A,132\nTnniBE14vQY,53\noGxBx8RzzrM,161\nJo4XXm8OUP4,122\n58uMOyQcvms,133\nKPeHFDxKUP4,124\n3F8oJh3J1T0,133\nlrZAnOGjydo,132\npE4-ePx_OAI,169\nJuv96hHY62A,41\nvnHkr84as-4,117\nt9BqiLLt9SI,130\ndYg-LtUxhcE,131\nYVz211iI26o,133\nqfym2Neaz4c,128\n93Z1sPjzz8w,125\n6OPp0MyQfoM,133\nzg4tFOmYKpA,133\n3eGHDodwIZI,130\nrwk6Obqrj9M,89\nll1H-9Qm1UM,149\nZSFCW8cDIU8,75\n0rgfZzE6Ulg,75\nTQSMmwQyEjk,158\nEeEhcPAOGUo,122\nmZ-yMd-bmCY,129\nf7oHNrQzfis,132\n-wI4jJq98tU,133\n41MHIJIg6u0,129\nRGvWYYCWFq8,75\n2NnR3gblKYI,68\nlMOS1ohLHMg,126\n5klqA0K7K8k,128\nWiMw3ttzVMs,145\nGFB8DiM-SLQ,166\nmfg2O0A6L4g,133\nWziC9cSTCWc,129\nrBtzudk40pE,56\n6xZif3WmG7I,170\nc9wVzDytTFU,176\np-Kyr2Ibq3c,56\nhJckGOSkTG0,106\niR-4e37VUPo,91\nv8YgSZAbKgQ,133\nkFCUCnNKmmI,118\nSDRcCeWRVRA,126\npPZMrs3QGug,125\nY-Mhn3xTlUk,180\ne0WpcoS_fU8,130\nM7tNqjsclhs,68\nfGJIFMA09cE,133\nJES2fQLPoGU,156\nDiIgAES9zt0,132\ns9JqbCH4aVw,137\nMwo-Wd__tTI,131\nv3e2maV8MlQ,132\ne1DnltskkWk,131\nASP2K-sFud0,131\n4jv8ZCoQyZE,129\ntzKEAdJLRfg,176\nwNbKp6IGhrc,180\ns-kucHjKbG4,128\nSF887rPCz_A,131\nJvtwIPa3c9A,129\navH2K1iR8Oo,107\nsKfQGRwlm9Q,109\nqIEDFvdDbVo,133\nsL9vUjm2mIE,81\nDjANcJEduN0,111\ns0RwiqEDRbM,133\nS8kPqAV_74M,131\nhSgNZ6R5Rbg,90\nQb2tjzecJX4,129\nP90noIrmLZg,92\nqN-_cZNDy0w,52\nzrR9re9NV_s,28\nkZgE_sUrXFY,178\nGJkn0wEMc4w,95\nAgic36OeXC0,92\nNF-httKm7RU,131\nc5Re3lGYUA0,128\nbiFZVekspJ0,133\nsAgSUFT4cVk,131\nJjIXwkX1e48,151\n8U56CTlGkx8,133\noquM3yN0E4A,52\nH1SvA7bU0oM,132\n7gdtw-l0GqQ,131\n_P3bnWz5GL4,133\nc9cV7bFKMNQ,57\n6zAcU68P0GM,133\neDhJ-xXsbHc,133\nQxXRhbuqFEw,142\nPztgWdMEJdg,142\n5e0cFUGyfzI,129\ng5AixBKy7b4,63\n4IErqIMLwtQ,110\n-v8C1H99O_s,128\nhlNvdfv76WA,200\nIHbIf3K5pdc,181\nGtV5-2QXj9Y,48\nMuTaXwt02vA,113\nHueqqIRaOQA,79\nC3Um4x6M8ew,66\n9nFrp7Z9wEU,138\nXvvzZUhRSbI,33\nn5_WG3WZqVk,133\n8DlxO2frMPE,142\njMTT0LW0M_Y,133\nveztNJQyRJg,180\n59BWCEaowC4,80\nFKDCoc_i-ZU,164\nRU3F4QPUVQw,121\n6_nHubnKxqg,131\nWK--S8kuxOI,60\nppGd-2nEOVQ,82\nW6U80LM5b1U,128\nvO2jvLIyIV4,92\nFOdizWKG4qk,131\n5yGuDDemqaw,141\nN6pHjvoxDI0,132\njGCY8thosNw,88\nZJJGXUlqb_k,113\nTg_qXTVaZSE,133\nId3Lr9GyGh0,126\nje6L2clZOGM,180\nf_G1oYcHFsk,133\nq7heVIEyvQ4,50\nAGqdE1NdMTg,180\n8S62emxyIEA,96\nNE0ne430gbA,57\ntLj_Bzw8n90,130\n2zZUujqZfQg,129\n9dyhBVEQi9U,70\nmkn6s-f8PqM,88\nGeOcsY8foxI,130\nDbz02p90CV8,115\nIK1HlBRMGwk,131\n69ux9TSbEKk,58\nt4k-USM30aU,117\n-6fuDrAmhNc,180\neLyhRYJXf1U,179\nrYD3-pIF9jQ,84\nJjq8Ng6cjxE,96\nN_YrFMAEKKA,151\nwPJE21U518M,133\ntSrLgG6rOrs,120\n_71L2__mFtE,132\n6oijcajbnM0,175\nzJ5Nxx3H-Tc,85\nIhd-NwI030c,132\n0IBCWdlr-fA,150\ndocSqZBVEUY,129\nRaDlQYFo7eU,66\nG2UTjomYxkc,109\nl0Io_aXWgkQ,125\ngRGbGI2-kPs,134\nClgb2YB9sVU,126\nfr5rDEInWQA,152\noVOTx4Lx3pY,130\n37oJqWp4rJM,117\nUL-ot8sR0P8,87\nXXLpjT6qjCg,133\nsTDhNLLglf8,129\n-OOTo2P1ivQ,111\nGvwHxn_ziD4,93\nUif48WrZza8,98\nrBsvuoQMmuo,112\nwEUwtFg7PeI,166\n6f_Z5OBzY1k,132\noGKr8bdx_5E,117\numjmV3SwDjw,126\nQHH9EYZHoVU,130\n8MmtVx1A8BA,70\ngiiuqTdBSTc,132\nsL6QJSdqlt0,133\nXpga1vtS3tA,150\naStYWD25fAQ,171\nRWwGXIjxbnI,133\n8lD16zBpcog,132\nqqX1d64OcvI,124\nFBpPaF5Kg_Y,106\n6nX0100wUB0,142\nzi-vtjCN9Rw,147\n4RI0QvaGoiI,127\n0lq1JIWQSlc,174\njP8dC8E6Emk,65\nVY6PAkLG2p4,95\nKIsAH4rSGNo,131\nimnkiyOsu_g,90\n4cWDWIgBXrw,132\n2Tjoz_0I4Gk,120\naG55Y-zpxyo,106\nR0zmkkcEdKc,121\ndM6waznJ7No,64\neg3LNIOchqM,719\n6H1AotVSFPE,82\ncgBz4BKSLRQ,175\nqbfjO2d2S4Q,123\nG45X6fSk1do,129\n1PKDDa6p-xE,132\nyGzCkRwbFII,43\nwJmIEj-uVYk,178\nTn6y5TARbnQ,133\n6ZMZYrdXtP0,123\n-5798-VRVYA,178\nKYa1IsxGVuc,181\nB-tq7mbTvrA,39\n81jCPIag4KA,95\nIZT7xLjxuhs,133\nl6StIaMaRsg,117\nAZ_MUktgWxg,133\nXVOsO0E1E34,133\nqAFgj8mqPk0,132\ntJIzs4CS-TE,133\nkzrHg5GOvXE,130\nOKjpAsVT-8g,85\nFiQnH450hPM,177\nlxQZQ8uXBwg,103\n68pN_c7DGUE,149\nUvNE2bjUfC4,130\nJVKMNw0uUGw,108\n3obteqT0VJU,178\njrf263yJwic,105\npdE83FX-Mto,104\nMLkaLveElpM,126\noowcsynjIwc,179\nTMUJpec6Bdc,132\nNEc_n0W4ans,133\n6Ocnj8-_508,147\n7MF2IgjAjjA,66\nAKMLjQycW0U,133\nVzpu-P2eRuI,140\nabh8wBYFeuE,107\nKyh3foJVk2k,157\nGVhi1qkt5I4,38\nKQ6EyoqFWQM,39\n1_NERqSdt9U,131\nOzP8k0R-USw,132\nNg7jUTiM21A,132\nTqB34Q7iy-A,112\n-CzO7z1dZ1A,120\n330mxTrSMLI,133\nwMgKj3QGv2o,177\nGEp_uGRMbFM,131\nqu4v5hB1dKk,112\nVje8Fp3yQFM,133\n4uuvZl95Cyc,143\nxr3TcE009HY,163\n08_UIVttBK4,131\nwRRvq70yOt0,132\n1B8juGIsDl8,98\necWhXP2jM28,89\nozksR8QLWzM,131\nzANq9Dusk6Y,116\n402xHwQGVsE,131\nqW7Nq2UBlbk,103\nqp27BT2g0BE,122\nC-iQldPiH64,133\nIV7jcaXQgds,133\nF2hiFbuQ-Qw,178\n3orSzPUIVJw,73\nrcJ5q5BdJi4,118\nLOACsaFA_FY,63\nYWmwAdK48vg,123\nc38HJR-9vhU,131\n8W3_WigxsXs,125\njfVzY0OTW1c,130\n2t2iFLshgWQ,112\n_bsnYbe6Dp8,125\n0c-UIkfsk1U,174\nv7FL42Fon3g,133\ngA8z3Yk3wWc,57\nkGVQE0m_V3A,123\noR1-UFrcZ0k,130\n5ECsW0x8svw,133\n-zIzLRgwdxA,100\nMGsGQAu3aNM,129\nAu47y23N-QM,85\nsOqvTLXZsMs,115\n4Prc1UfuokY,134\nlsxZwAnu8LQ,131\nlpOdAHwRnXY,115\nf6L3Ef1JCC8,45\n4t2pP2KLlgU,40\nFRhGCEIB-4Y,108\nsEXIC0OaQSU,77\n5a9WupjYFoc,722\nmklRbf1JoGY,130\nPUXpgitNeOU,115\n_U-WwYlinTw,54\nc_7V6VgIvTY,129\nErqotNH65_E,155\nQP2uPNypJlE,73\nWuntz3KDIAk,92\n5YqbUhVM6Jo,132\nS0IGwZy9_xg,131\n92fOw-bQ12Y,144\n-r_jjQ_idz8,174\nfFan929BTPE,117\n6vO-XDUiRqU,178\nBVrhE9NOwww,127\niaofBseh0J8,132\nWcRpuNfGtXw,119\nzV0rK6KXfwU,131\nzhnB6vIifkc,212\n6ooboieA_eE,132\nnLN36pgwS5o,110\n5ut37zda30I,41\nsOA84te9mAw,90\nDfDQo7Gm8CI,128\nmZ2kxdQf3t0,129\nb2zQmmYEDY4,122\nLsm-snDPXnk,130\n_d5jXDvrOu4,124\nhajGYP3CLKo,131\na5QBuJla5do,129\ncAEth6FATZk,190\nxtRnl5zHKxc,112\n1hw9NF3zzrI,37\nC2pUVmGEEeM,128\n5xiAs8GGqD8,113\n8nHwpjCIJqM,133\nILwsJ3_o4es,117\nECDGpYuMRDA,127\n2rha-6qG4OQ,71\niqRZb8tveM0,133\nLVt7Zvxk934,131\nQt1cF93u-6A,94\nMMuen83l-Sc,176\nFKov1lmq_OU,99\nBHBmOFFExso,31\nFh-7WQr_daM,131\neswi0L8WNzs,132\nBwDlobymMk0,179\nl60Xedjvw-Q,131\nfKoYXxN6x98,133\n9OufCgFZCyU,122\nHiMImmy3l5o,90\nWtdVnmI_nYM,101\nKKNUjL6oLeA,132\nUdZuHyttXbw,127\ndnnrhhZjTh8,115\n-W93ly0pQGI,106\nmK10Ze-mcQo,133\ndB2iZKhWArQ,105\nr5o-M7K5GFU,36\ntoJPUHh3EKI,144\nGyJGnNFU5dc,97\npsru6_9PPcw,111\nu1QIbENq66w,111\nlcDo8iV-rPg,98\nbtRNa3CItMc,114\nTVOIig2xLq8,133\n6-wvim2zLFw,153\njTLsI2Z9GiA,48\nU-XEvzDp70Y,131\ntTVFP-9AdMk,80\n77XaekZUvL0,115\njT8TUowrkLU,152\nMbFux7_RQpA,178\n4yZZbtwliVE,150\nDCnvuyK6ur8,38\neJ6y8TeIeAM,93\nKBh1vdpGWhE,202\n_xHw_zAJRDk,94\n_3EcvKXH9zY,389\nTBiqsgxbxLA,54\nGhF060VmS1g,124\nXwJGqNQapO8,71\nKYQjUOjBx0A,132\n67w5bt9eMtM,103\nZh6NzOHOU8s,127\nj8nZBlPfR7Y,79\nrxZc0tyTqEg,110\nyVGlKrziG5E,141\nsFW15hEqZQk,102\nSbYzo8L9DLc,180\n8j5sn2UyTp4,128\nDdet2d9EtTY,130\nXZT1cB8KU_I,133\n4W5KhfJHF_4,131\nI6f0U4QbrIo,90\n35fEjN5m4ds,113\nVK-GL8zzH9I,103\nrl6SpFVJoUA,196\n4rJ4een9CcY,59\nNQ-8IuUkJJc,124\npaNPEeQVCTc,32\nHZs_qERvDko,81\ndX-C-8rzN7I,84\nskuMakhGnn4,132\nSIQb3d-piF0,80\nq_wefCacDTE,61\nDxguAU_KxS8,120\nZ_9GcqiwxF4,133\n-MEOfLvOuas,95\nOB8uD8FaPXU,133\nB5FcZrg_Nuo,104\nxdPtumdfg9c,133\nkvbYXGOZHnQ,101\n9S44kVrFB24,132\ntB0th8vNLxo,129\n1rw_bJ8wFCg,59\nfDA85m3v2TA,133\nhSe6p6SLuvI,125\n10fKN4nHNd0,98\nhcqpyBBYg_4,130\nDR91SIIPCkQ,133\nHmyQDH_PSC4,180\njaRbZJBLIQo,105\nbQqcnMHjxvQ,130\n6af1dAc9rXo,85\nOfUV-F9jFro,131\ntoq0HYc9mmg,57\npwt49IF0uG0,133\nDMo2qyKq4_w,183\nyisFmY4OAbs,96\nxfoGEGTl-sg,69\nNTPT4BHAmRI,131\nVzonTHZSaq0,112\nV2weMKLFJLo,127\nEnGXNEEHPG8,133\nfPJQ4T2TQ0E,133\nDkyCu7ryu-w,92\nbbJEqSj7Wkk,88\nJu4vhscaYII,103\nJGV_h36uZ5E,131\nfpiyrd28vfA,178\n6XyUIXqIoAM,149\nR6Vbxei-TQc,147\nezj13E-cX9I,77\nEY2tpd1CejA,37\nAVKK_tDNQMc,132\n3gt4aiQrmb8,133\nB3fgBOG1fWs,105\nYQdnuL6YRBc,131\nxFfUAjUMVY8,130\nvz7jp6GiwTA,89\nHzpxTmlWOC4,129\ntLujRN5bxVA,131\nIEDhXioCYdc,132\ncdaDQcs-XNQ,133\nUHqUN3um9Bc,34\nn3SrAOdy-tE,51\n3p1rb_t2Jg4,56\nmCdbIDiib5U,123\nF6-7c3I_egQ,131\nAZMg4vFcRQs,113\nflvyCwagnF0,105\nyVRv5u36Huw,155\nndrLDbtM-CY,34\n0AmxnNxiNWA,108\nvsevdTMBfC8,50\nekOi-hwWNoM,133\n3wtgdxKJI_A,131\nWX_9RZSjar8,133\nLakGqZmF-Gg,140\nOH_cAf9RFSU,132\nq-kLlfq4JpU,47\nOIBtFHZy0xk,77\nT8oTlWwAPFI,71\nLUV0AjnjaT4,33\nYBQLEhzlYX8,85\nAD9YlbnGwpA,129\npm7LihLP7kQ,187\nYVHzS7B1NbI,131\naErDEFpoD_0,178\nhKNSpQwCIdA,131\nD_-VW2paVeA,132\nGd6ruQcgu9w,82\nctTSLWXE58o,100\nFZUfhfHbjE4,177\nl2K4Fw-pmLw,129\nUJWni94vAAU,82\nL8TDBSlgFAw,92\n1XkC9it8OPs,200\nDFEuw-bNldk,129\nqw6k-69hm90,132\nsGbVR3TgQUs,104\nWUApETooc_g,130\nZBLtiP24yTA,133\neLW6uxK_MOI,31\nRe5jTn8Cv4M,99\n-WmDszVxti0,177\nwkH0WdBYT4E,132\n3QCSrQEGvZA,54\n-AXjzZskE9U,132\naHlMCu3-R3I,118\n0c48KT6uWvo,148\nuJPI1qu9bE4,133\nJexO-N39Nzg,115\nnZE2tGoC0H4,89\nenJJeOqHbqE,157\nUneS2Uwc6xw,128\nzrIyn3yuip4,127\n_Gm42rDEb38,133\nEbU1vOVwnOo,133\nqsJ6BdQuUxo,133\nkLskn7jHXrg,133\nhA0OlCQLC0Q,82\n81hWxoHF1uA,46\n9IdM84YVmV0,104\n87idpAngKc0,114\nqe_BzGXRDzo,126\nHWDBMnxAk0A,45\n6c5Qlf1Fr28,37\nwaE1U01kwxY,133\np-Tjby4VNH8,121\nYbfc9RkRUY0,95\nwZ30Qxv0vtI,127\n2z8XAo4Lpuw,179\nsNom4k5Pwb8,82\nf9_akBxA4mU,108\ng5Y-PN_duno,116\nx-Vvl8gkZAw,133\nERmo8TmDYCI,131\nfBtPMUJJEg8,133\nc_a5Y18mdLo,111\nFCRdTWGdngU,133\nBsTrRttExpA,150\n6EP_KsI8k8w,132\nP5ooU8rf1f0,133\nLiYdMadk89Q,125\n5TcimuSgJoI,134\nBU6P24jMDLw,108\nnIGy0Jw96PY,113\nu0Mz_e_TQCI,128\nmjt0iNTJrWE,131\nbsBxt2RpiIU,175\nDQO3aIpmIDg,67\n8WsHwXs_aq4,131\nKNAgFhh1ji4,106\nyJ1hoVGPxCY,127\nYkGv4M2y3zg,133\n3si4Cv66RSM,133\nG5GJHYXrjhY,133\noOZ7KbI0Phw,133\n8nYPCDXHuPs,172\nGiRyIbJ7IFg,126\nV75dMMIW2B4,146\ndPpj1KEhwpo,145\nN785xynvkME,116\n4uVgjb0gO9E,133\npPjYhPGkhGA,67\ni9_lCyG67Rc,102\nuy3UaHILcig,55\nPr9ruvxA3K4,192\nlF_KpWfFyR8,133\nNBG53Xzikp8,131\nUpr2DiiSRDE,168\nUFnmq5PPScA,158\nmK8ad1nYFQA,81\nrwd5hlQnu0I,178\n72le_jwmXfU,149\nUGn03bNlFuo,133\nQaDy4LHwyec,37\n3kTQBCokfAg,155\n9f8liieRepk,121\nayTnvVpj9t4,150\nSL40LOsREzE,133\nTY2PGciqbg8,181\ntOZTZP_qzC0,131\nvHIbZ0uOAL4,133\nDNC3OciAF3w,79\nLTgOLHxQ9mM,121\nPqGuiXKC320,133\nxw13vA86I-I,170\n59ZcTCijizI,133\nytFFiCYItjI,133\nJzH1Z17c4yc,76\nO5ROhf5Soqs,86\npDWR5RkWRTY,97\nmbGDV3lPib0,131\nWUuTs5CXP3U,73\n4qg64Ml2OdE,49\nHsYC-hVEpQM,130\nv9kQdDFUWuk,133\njL6oromerXE,107\nXRz0pSQXTQ4,95\nk5kTx_bZznU,129\nJuQmiyLzHdw,131\niQISI7DOVCY,133\n_xJ1KmjXSYc,55\nZz-mpgYNUW8,89\nSj8eNDOZAAk,162\noxA2tQ6kfdE,132\nB0YqZqU_z0Q,160\nLPPEPzpSzwM,133\ngNCAj7eS07I,129\nbolHm17q3ik,133\nZWly042cYCo,138\nKIAzalQUui4,180\nJ_oIvRfVXoA,165\nZ-365iujWk8,133\nhzV5qSWRfKY,97\nGP5ss2lYb3Y,156\nC_SFevIz1FI,23\nQf9xTFEhRS0,118\n8NzL8n2GEC0,117\nkdTfLDIbwow,129\nm3TAK8ty_cg,90\n3E-C9PipmaA,87\nwALbxbEBLU0,56\nfwI7COVTitQ,58\nezRPVES1oQs,64\nqFUISvEZ3aw,57\ns_CwatXdxUA,46\n2UCoVnTjV4k,102\nqZfK-VnxBSo,133\n4dW0aROYEk4,127\nSlPGQ7r0f7w,30\nTI5XVZEwtiM,132\ndQTwbSY0z_Q,133\nFaSlQP79M-M,127\nexObFY-sHQw,78\nc71vLQPwjdU,123\nscEuS9-TozQ,31\nnV9U23YXgiY,132\n8OTa_eNimUE,188\nrxM8oCm4TnM,98\nIyOu9xCNMK0,132\neP7cLId4ocM,130\n1qO81pgfRVA,121\n6I1qP8w8DxE,131\nR1G5HwXEw9M,133\nnW-NiGp1gys,131\ncOE2gQrXchk,72\ngVgsadEybgQ,132\nBXvryt6UCC0,180\ng5Gb7V5-pts,120\nDF-ifsJZQEM,112\nwPSEC3PpLuM,129\n38PbAk_SMdo,128\nmXp99jJtyII,118\n3uHIpj5JpvQ,121\nd921M-ACMM4,180\nouDfr9Jh0s8,98\now9U0uWCfDY,128\n-UEeG5IIQK0,132\nYNN09xbsN1A,43\nJlpBRPIgoIk,132\nChIS70dX0eU,130\nsBACvIGmLh0,127\n6U6MOfuFX-Q,133\n8h6r3S5zjtk,178\nLsaLeOKK-EA,30\n_2iIyoxqN54,133\nuTW2Hrn49Yk,129\nIV79EIZVuHQ,36\nse9hqOIp810,130\nzX2LRszGCro,115\nk9pFp6iRVM0,133\n9Qesj84cHLw,40\njoAodEzeK34,100\nYFtHjV4c4uw,133\nc27gUzZEjvA,118\nRF0YXIambdI,180\nk59rG0r-sqI,132\nOA-FmsSdSMY,179\nr4IlzPnP7ew,133\ndhRABm5GgHc,131\nNnEKQD1fS20,133\nz1hgz7vgIt4,49\nO7why8Xo_RQ,149\n3TmzG_fqqU8,125\nLIIzjJjsW8s,169\nn_6sNnucN9k,132\nQlT6RMtJb6s,49\nY6wE2W3ag1g,133\nOhYlQ6kSQFs,132\njszED6T4Gik,133\n0IxeTLiovq8,127\nSooANfD9sWc,126\nmro3v8ZZA_E,108\nj6l8auIACyc,99\nwJnVVC4784c,62\nOYeox3LLQ08,74\npVjh7-4ux7g,52\nodrqxoaNPC0,126\nONaPfzjl8qc,174\nRt7_IUmuwHw,132\nc0RlK3VAmzg,129\nPf5mDMWYRmE,68\nao1FgvPnUWQ,149\ny0jPHehx2EQ,133\nSnXhWbEfDNA,36\nGKuQDM9OlAQ,122\nqSU0iCmocCE,81\nTWJEVnNwAtk,171\niKw7Ndv4bRM,38\neCCJzVqLBvU,132\nxG7kLQh4Qn8,130\nMq462kfFKI8,129\nvinDi5O-fu0,131\n5k2vzUZYdfw,131\nPuh__Ef3KkI,166\nW3GsHtZu0Bw,171\nUS6tvODNVu4,124\nspwoWkSEmsE,58\nG7HkBDNZV7s,137\n98NAf9zhIu0,74\nfpxPstb2DAU,223\nVn3IRHhPXMo,179\nVlmanKoPLyo,176\nYrph2A1xc94,128\nCWAAUSNLZXQ,130\ny2t3XqFAjt0,130\nkiv4EChGJVs,101\nKy7ncpdpMUc,165\nncDQvy5GoK8,109\nLnV_NPHo7Kk,35\nnkVK4JHRQfk,48\nWvyi2PEVFcQ,128\nE3WlOWMP9KA,37\nkATiU-cZCPc,105\n_GxSQs0FNN4,65\nq4Qlk7sfZfQ,175\nTipOwV7y_q4,25\nCKJSr3Uw-N0,162\nTklrBmHo7Do,102\n-3cmJe_Kw30,132\nmHa1zTLrXO8,71\no6TYEHyv00Y,46\nQXtkzFiGsxw,108\n_xiz8CnP1-0,84\nxQvaoRScND4,149\nc1EyN9xTK94,61\nh52b1cHKeJg,52\nb_wnD6jxREU,170\nqjhh_5PMBZs,38\nkC44tlr_KsU,176\nVc_4eoSHwK8,133\nD5Oc_sYmlt8,103\nv8OMHtUg9sU,128\nuzgQ_xwWlkQ,178\nO4qhT8oRvss,133\nntALVSmIUrg,119\nJHkM4OUkF8E,125\n5yR0wlrq_h4,161\nDj8hhzx9Sfk,52\nPD5Imb7vWSc,120\nvUgs2O7Okqc,112\nakrTlYc40XE,67\nHtt0B7bZ4tI,127\nomy5TVA-fY0,159\nIxnZIoP_5J0,179\n2MtY0yfM0nI,133\nXxsSp2qJIZg,133\ncNOsA4nH8yE,92\nQ7wHV0r256A,97\nfpdnG6Fm3LY,133\nqFL0bfzriR0,93\n3SiGgXIYppA,98\noDNgxbWzpf8,132\nlPe61El1_3E,131\nhsBtuhWw7RM,137\n1vJpAXf5wyk,183\n3e7JKCUfrpo,129\n-h62m4d4MmA,150\njgvj0XwxagY,74\nj7O-SUEh-54,242\nOsI3mSgTFnk,62\nz1cXKdmKuV0,183\nCTwZmJronis,133\nsvyPswixryM,70\n7jj-8TCQTXc,131\nTEmvPX06cJo,132\nIBPc_SnNPzo,102\n5OMaEgJv-KE,32\nik4LH5ksOn8,159\nSNdc9-hv8co,133\nIvZ-SaKeNuo,143\nns-qtoxnAS8,130\n2ikHoBKVlCA,72\nOkvebeqIrqk,58\nOYt6asKb5bw,131\n9ZvkGoQ1dSU,133\nAOh4PeDIkWs,141\nXYjynyKDAdY,133\nm6ux3-Z03B4,96\nusUO449hUXQ,133\nsceJ1R4JzMU,121\nUr4Pg0Jyph0,133\nZIc7bCHSmKo,47\n1c8XLJ9MEhk,133\ndcmwPYCUysw,126\nlXtrwkdSkow,111\n3_U1GtNY5xQ,50\n74M0hPAeFHs,72\neKLKoFIrXgg,66\nuW9Q1cm_Tnw,132\nUtz-RZwQpyE,77\nXoJN7k1BMYg,150\nspu_6dxLcok,132\n_undGtyUxeg,128\nhBlhWP2N4j4,112\n7Xgj1Csnr_w,77\nDe9FeSg3WTc,117\nD15HPy4x73g,97\nwgmwBXh6ExI,128\nhKSscAR4cS8,174\nxEU2YTN-svo,104\nQ-BviNtL0PQ,112\n9tGWHkKzeeI,175\nSyiA_t-8c7Y,132\ngXJH5jhO9to,133\nTBKiHfVkYCY,97\nEECf2o9Ivaw,146\nin-1BIg_Mec,179\nf-PnGRaJaSA,175\nsUv04cGjaDI,59\nj1C0Tw80Fgk,147\nfCjsUxbNmIs,146\nFM-wfXvcbAY,133\nkm-nbIRZJYk,64\nMWkN3akP3cU,132\nMd0LvQ9gANc,56\n3ssOgE8RWSI,134\n9OGKM_BI9zY,127\n3m1JShNLCYA,67\nAQnQ6irZyFk,119\nvc3mkG21ob4,143\n0LzZVYshI7s,98\niCfjoSbWHZM,42\nSMJqQ3VrcCA,172\nS32b64ns3fM,124\n2pg_Mr4lIoY,100\nmVbGpzsuNjE,131\nHSh7FRalwdg,69\neCQIRkboAM4,160\nj477dAxaeck,195\nDTWYQhTT388,177\nY29DgVgmE2M,40\n7xVN8Q0OIbo,106\n4J_8tpDzfAk,58\nK0zvX6AGd7Q,133\n5QYQS9SYa6A,72\nc2gZ4aOYOw4,130\ntBw_BTLbjJI,133\nD0wShZqevLU,85\ns66zFW3nogU,133\nPrpeARyTcx8,128\ncNqSc_WsRJ4,102\nHKXId9qgGfQ,181\ngL0Ph_x8xmg,135\nycoe7us5bbM,117\nTmoeZHnOJKA,57\nYbcfcgX2U3g,130\nEIz94vt-Opo,79\n4nrgeASou5Q,92\nWkOLYUmITfc,178\nL6g6fH2ev40,114\nS-6xoT5Z2nA,145\nkAi0cSCUWfg,179\nQF08ozhDX-0,132\nuCCrethRf3E,120\nxHO6nBc4YFU,133\nh7CCnLwD2MY,127\no_N-H_5Pvu8,112\nO73Q7jd3VkA,131\nV3RHvyrqTak,153\nhoSJVPaj0ds,109\nr9twTtXkQNA,109\noSvVjh93suI,167\nOPwRf_sD5fo,133\nkiW7cj162rE,97\n6LOwktvZlCc,133\nXqti-Sxsxk4,132\nd9N--iGGW3E,131\nRVFpy5UwsAU,126\nDCOm4osfWn8,79\noXDyQju8my4,130\nOJ3gsR-DqAE,184\neWgOjuLg5oY,180\n3_giBWrUYKc,133\np-mlLMZXqg4,132\nUqKkfcG36V4,130\nBu3n2LEcUbg,125\nI5kkwmOapss,86\n2X80aLjCncQ,131\nIvKzfpZ1GUw,132\ni9NIwHKBqy0,172\nRN7YPq8i4w0,42\nPeGDBR0Ej_0,179\nfn58yij7rxw,133\ntAx_zjVXTOs,132\ne1zZYMKGw2M,150\n3mieBC6wlbs,55\nNfrk2UdEOcQ,101\ns_PLAOcbbzI,48\nMPOPd2RNLko,49\niQpb1LoeVUc,141\n03HGdrM25FA,96\ns0EAZmF0k6g,133\n-nh3g6F63qM,123\ninrI2qvps58,115\nj32LbrHGak0,29\nDv52JE3zqzc,70\nmlAtuy15iIM,109\nkk0vH1qJPHk,129\n6Pkq_eBHXJ4,122\n8jd1NKyFQJI,77\n6iW8MoAsz9Q,174\nKZzmopXXE2k,110\nsdUbhlY-RP8,131\n9rySfLgqHJc,110\ndvodASNU58U,127\nP8Xg1vVkIh8,56\nQauBYsssnl4,133\ncr13B4L-5-M,36\nz-5iCygFd9M,97\nmKl11EzMTAE,72\nbXNwzKo5Yps,178\nUqPRk4oFz_U,133\ndmL4e3jljy4,133\nGvZLaCfU4PA,67\njYLZsEioFig,133\nn8JOgoI_2as,129\nn57MunvVpIU,133\n2gSf5UMZ8ms,165\nlI-ty9MfICM,90\nnp-ndDy9YJ0,112\nZxpXrz-nEdw,155\nweDm19eMl8Y,131\n5soOhh80bK0,132\nczzH5M2bUYc,133\nSXjiv_w2i3Y,42\nepHCMiCtt3M,121\nliK550asDSw,101\nDwrmKYIuYi0,133\nHvhH6_TMxWw,138\nJQc_dMcByUk,128\n_2LMj-4PtdU,169\nQB5379zBbtA,133\nw9-IJEaGhRg,110\nXLScUvabSr4,114\nPJeobOT-LGk,118\nI2eVbp_Jfc0,132\nyBBKcecvEcM,121\nQbSFxlfuf9s,79\n8dhvm-ph88E,35\n4unk6siO-tI,131\nFNkpIDBtC2c,78\nK9T33H_h0Yk,41\nW59U7VWHZ1Y,55\n2bMvW5QUMYk,128\nJ1668qPavto,60\n3ThrlTaPWO8,85\nnhomGXOMYmc,106\ngkEZQDlj6OQ,133\n63iuB-cSY7Q,114\nOxhtzzpoYBk,77\n60Sc8RmA458,110\nQxPA0i_TVvk,132\n4syHx4o_N74,50\ntippFPLwGgI,83\nzNkZr44VLFY,61\nCDn1rXzkBEM,133\ncbzBwleJnLY,173\n5cqQdDitGuA,48\nQiuXl1cPfrU,48\neyCCuHC08bY,170\n5l1VEIQj0vA,133\nWVLvMg62RPA,69\n7uqoIuB8zx4,133\n5msVl3oZl4U,113\nAJRmY9VXf1g,128\nbYQjcjDeGF4,89\nCgX4uJSj00Y,132\nRcPxPD4CcaU,149\noVzqiDMOlms,93\nZN6mp2NjMhs,180\ntWmPkmMO-mo,123\nib3Hn188Jwc,103\nF1SfzV67Bqw,116\nvZW4Qk-wqlg,112\nBRWeoTfbbbg,112\nxwffHJ_pAM0,58\nyZ1OgEqw2oc,133\nhK2bLlVeh-w,160\nKu1Xc6NT6m8,118\nYdF7wSrLk-w,124\n2NfTq7LPnXk,119\nFpxOLhuNXfM,180\ndKsDjpKr2Mk,132\nXawDF5UDgXY,98\n6y-pdLyZPJ8,69\nsPQLY7niQC4,53\npCHHv7ojfiw,133\ndJma8pVAvH4,134\n1Oge9qUat-I,128\nMdQC-DD9fz4,45\nQhDRkf_XGVw,133\nK1AMs3IPQJQ,131\nsLWhxB6QNrw,49\nKtekLRYl3q8,131\n3YM3AYZaTZ0,37\njaCofC2Bv-c,131\nn3PGfjyctSQ,118\nFMFJli50jdY,108\nwPJvAzfaqlk,122\njwmRNTTDOw0,41\nYfJc2bORFHs,109\nV3EpNkdgmyo,131\nyX0WnX27tJw,131\nxtXdKETotbc,132\n8O8_FMhW9dY,129\nzZJ7cq6T3v4,172\nWJlOBTLg4xw,132\nOoKpYXTmYak,71\nDurMO8Ayhn4,133\nWDAo_p8At-o,127\nSDls-ZJDLXE,60\nhQL6_NbLwtk,116\nydLJtKlVVZw,123\nTeL-XU97qyY,95\nST9DTmR2xG4,72\nGvF4-C1EuJU,143\nF4T2_xFNAqs,133\n9fpDYMwJXQQ,123\ncGP9TwLnG78,54\nT1Z39yM9AVk,125\ntr4beSTsJ1E,165\nYjaEc9KUlBI,77\n7MQUQQkzNSU,129\nIgzFPOMjiC8,133\nnr8nHHg80CM,133\nd4WJ0CGGXo4,132\nvdpUDOxQ0ao,62\nqfJfRx2IAYo,127\ncKADfQQILN8,133\nQ6Fuxkinhug,134\nEJXDMwGWhoA,153\nY_WiVEBST6I,123\nEXmDxa_WlbU,127\nirr4b40Ok7E,133\nIHR5ljAFCGE,133\nK3xHM2hrV6U,133\ncliSp3FNprY,133\ny5RFBLZV-B4,38\nmV__PXYxQYY,48\nrQvp_unbfFM,133\nHhtRNV2v2rU,132\n3VlyZIywY9c,139\nOkIYOU1ObYU,88\nLy2Hr9qqp9M,133\ngxAaVqdz_Vk,132\neKJv3dWsZ7E,54\nLK4c5TIKY0w,172\nsZTRUAFCzF4,86\nuZgo9g8v76U,125\nqhc9YD3ahAs,133\n-Pd-uuDi28U,123\nN3ug0dVCyeE,127\n2DPSnOrJaXo,130\nzGDk38z2mbE,102\nnaI0OgZq73M,70\nc0pmWNOt3fM,132\n9PpBLxJLihI,99\nhReFx1kjuIE,120\nGNw7aQdAfcA,128\nB0cuLHkQDcA,141\nmWdqcBWVurw,132\n2k0mUKGYUQE,85\nGZeehXqOYVI,133\npWGGQmeKdkk,54\n-EuO6OFypLo,150\nGQDLVpNKFhw,90\nEnFcN2CMNps,68\n5Gc9pviBlJA,133\nmuBDF7g_mXY,133\nxcJXT5lc1Bg,144\n2tQUU1c6MIw,130\nQse_uMLvdwI,112\newvHk1nM5u0,126\nMw9Dc_MJF34,133\nEBkacU72QM4,124\nFyvzidxs_SY,115\niwfU4ei5gWE,180\nsZazSFEHfg8,79\nKqpcmQhnl48,125\n0huG2wHLCGA,116\n6c4QghxZ3IU,131\neAvVe92mi5k,122\nT9sKhnO9osM,150\n4MFzzWkl0_g,163\nQELMO-GsxVA,133\n5Xk31NpUX1g,143\nsarN01WcuZY,164\nbwzuMk8SRzY,107\nqIp_8RNNX4k,165\nzUm6rC0o7Po,98\nedX09NFZ3oc,108\nGnjxY_zMxOA,83\nPQCAqu6koEQ,115\n9C2L5v6BfLE,173\nVMqDBkf__xo,131\niU0CuPH7akM,77\npMQxW1t8guI,168\naRcxYPkFjh4,46\n8K84sx9EJzc,133\nfgPFXXhzBCE,147\nuI-q42kRXi8,133\nc8pZIocR-lQ,133\nKlPjJx6pMNA,132\n6Bg4HfBsmAU,132\n0B61_5sRoBI,106\nqYXoNC_LbcI,133\nH98MLmW5tYw,131\ngywGZDlDv7U,132\nLGAfIx5VQ_M,94\nGxhXJGA32YI,132\nnPjlPgeaD_M,58\nroA5fvzJsho,55\nZXXpX29Xt-U,165\nf_xjQNnIcdQ,133\nfGkSjNHEecA,133\nc6dmj-WpTW4,133\nWpULGtEqNBI,133\nUX3HxJ3eTd0,165\nz_r6KUYYO5E,70\n4VWgFJUjmHc,89\ntUaOBgXp_Pg,107\nX7rfWPbEufo,127\netyH2OUxVuQ,94\nw0cXyGVsUjs,132\n8iQKnefUJNg,125\nm6kFCNsnQpQ,177\ncAePzEGsP5U,129\nBBYLOxitgIA,90\nq4RbzjuXB6E,132\nHbYMkY74ikA,133\nxJp2HXBJv_4,109\nCPnwlNvwBLI,104\nzlL7BbZoSAY,132\noAFVhwUVJt4,93\nqSE4dF_Feng,26\nSdNqYGbc0tU,95\nuzDmyicwgnM,131\n3osli3y94I0,120\nQ5wdXytgRLI,105\n_WF9UwKuitI,130\nFFJo3KhcZw4,174\nApU6H2gqkMg,94\nFypw_s62Q0s,108\nExG7Ut6DJ1E,103\ne50yvXvkaeg,108\na8FA5zBHiFA,207\ndazYs4DgYtc,27\nd63s74ijwb8,75\nfg58hVEY5Og,129\nPMar5oQ5Ha8,132\nsFW-yxe13lo,132\n9ZhgVCU6ehk,122\nP9pa_8-WdlU,45\n8BOU3JhcXIU,126\niioBwO6vnEs,128\nEUvgqItrt1c,132\nFvYtbd7YE3k,144\nm0uAIT2O5P0,124\nRngpf0Yluog,149\nA8Tw5xASluI,157\nuKwwpmC02IQ,124\nhFJlpOjXf9s,133\nvYyz6nq1mBE,87\nyvcHCRvP3Gs,133\nJUuQ3MggHbw,133\nAsKzZqVhH88,118\nRTObjnUfgNs,133\nkqc4KyCYA0Q,119\nuiy-sT9JgRo,126\nsP9ufyH-Pdg,133\n86RH1KAwM2A,74\nftAorMqqjy8,48\npW3peNmE19E,124\n9n27j_fe1yE,19\nzE7PKRjrid4,131\nwYrxIQf-s-g,150\n09iu9EiAtKA,114\n6bahX2rrT1I,47\nLBO6A4kU5Vo,130\nGVAVkeMQyKY,78\nt1JsC1ur2X8,128\nNDXWV-mGlPE,114\naFDFSGAIrxs,103\nUgFBbUinHSw,43\nNjwqb3iGNto,80\n31Q9JbHAzjA,112\nKajmfxivtys,64\nofxfYinuKKc,104\nqYW3MOezCc4,133\n1O7AX7tqEHE,180\n4w36z7XnwOM,128\nmoxAGYR4nYY,133\ng0s18i95JKA,82\nknL5zY1LRqw,133\n7C1Pr4AU2wc,111\nUKGE05RbsV8,122\nBNWvtfCdBcA,131\n2x5L2L4XZng,126\nT1TrFjLKryc,76\n5XP3MonWebI,130\nrVFi-yeTe5g,130\nOSca1EnBNJA,42\noOeGE7z8PAk,179\nCdUzUdaC8tI,95\nKPwY1uEFP-c,53\ngr_OpFxCx-A,132\noirwXF98wo0,112\nzd0FCDiFapo,130\nJtHq6vKm3WU,25\nGC_ehA6dd_I,118\nELzQ4OtDjrs,126\nb8oFKKPfgi0,151\nnx002D9N6qU,100\nbe-Ou9Xkh48,55\nE-TthagAhsk,88\n_6dtasEqpLM,168\nOuGSXflBoWU,179\nR9WGPRckS1s,132\n1jiv5JxmUww,126\nFsy3TtA-3NI,122\nB6E_rp80QMc,36\nApv7l4b68MQ,133\n2V5LfF6uxT0,121\nCOsMa1MQIVM,131\nrRNj9qpTgOc,118\nl_4wAj6Kx-k,119\nyGy0XuoyTvE,133\nPGqB6JIUzBo,131\n0lInUr7VgCM,133\nv9vgJaU3g1Q,131\nqO_4Up5Q5ns,26\nhV2om9YBADI,124\nW8AmENQ7_ik,122\ntetwGGL997s,180\neFKh6cYmQ4M,129\nMTs-HKiOQj8,34\ncbQZ8GK2usU,84\n2Fy8vK7IGIs,81\nbr-ljup5Bow,127\n2wwC9c3iYK4,93\n89hYiDNscBE,132\nzirtzDl2RH0,96\nk71x-TmobGo,122\n0m3w2NeEPY4,106\nsmxGSlqjZNk,117\nVDU2I4kxPY8,124\nGr6eFXNq5Wc,132\n48jtU38CZS4,129\nhHWcoaM_59E,104\nKV143Jx9hFs,58\ntO1oeKVFlPk,178\ndKMY0jcisRE,150\nPn4mA5BIzxg,132\nDCSeUhWzdBM,59\nNI4En1gLsXs,133\nZLFDR8pvkf4,133\ni6OCtSqrOQ0,163\nwVWk6IfRuEE,102\nGdrDuVImE2c,133\noW7IadnQblg,111\nKSc0srYx9-4,132\nFe2CpAhZ9w4,124\nfUlMUkd7IWU,178\ne7dbge0Zk5A,133\n3chYfqAbqow,132\n6EUxC78eSjk,94\n7hwkR_wvrM8,145\nNCCUGkrIfkQ,127\nA8wAYZAwQFs,80\nfpXngRB-VTw,55\nmVqKHUtKh8Y,68\nxMy-NiI7q-M,133\nNoD85qZhkWY,159\nvcsl8fSgqls,128\nnzjEYhUtRGc,132\nPI87-0g_SI8,125\nBEG66-Lro7U,105\n6n6RVIIC8SE,133\nkaXM8DMSm-g,131\nJxRj80eLkMc,133\nkZQwVWTB2hI,145\nxLq2eTiqbww,123\nw9pEL5BVnH0,132\nn1BXpNTsoB8,129\n8sClW0qW9LA,74\n6LFRQNH3BnA,144\n1Qb-2KSKByg,153\nAMuVqFvM2Rs,131\n2FtBOS5575I,133\nct-PElgfWJY,179\naBADjCeFnuU,247\nw0C4gjdag8o,133\nUGYt7xZWoPw,128\nfrMMK_rKwD0,141\nRATBzjmcbh8,133\nzIJgAMpRG-k,96\nAxeeO1qdrgw,133\nvKZhOw3Feo4,65\nyycyKndEWcA,71\nwUP31hGC1A0,119\nmvBtzXZWWG8,120\nyidXeyTFM48,60\nzsgAfhsQkYU,66\n0ynuAmC24_Y,123\nJgmk5D4a8K8,142\nc-unYxWW6ws,179\nidr40IexHQw,111\nSJhnQPZtv0M,118\nFnjrwacqDLc,70\n0lNb6NAV6jg,106\nZJxNwE6H1SM,56\n80ZafDq4xq4,45\nBAXWxuKhcTc,163\n4X5-zcyQc7U,128\nT4Sk7RsIQd0,126\nq8RTGMsDTiw,130\nO0gse4WDTrY,123\nRuC2eNMtAHA,95\nlQj-Xzr29VM,151\nHI_mwhUvqHc,102\nvgzM_Q19DUU,83\nkJ8_sMrSxns,133\nNL4WWmwdV6g,96\nOm3C1EpHLGs,130\nAMT2RwFFs_g,154\nAa4bjQGD6oY,76\nj7PgnjEiMcA,156\nxCMsK2duu2s,123\nF3peN7bOfOo,132\nb5jr8NxFS-E,108\nv5ueLuyLWn4,51\nOZLVlajiihI,133\nqUu8VHynw40,125\nlNXTKVxOmfk,180\nK-zYWpnMyXI,132\ngL7zD3RjgTg,127\numK3KRcg1V8,182\nP5EwYtPZxWQ,179\nisBwMtlWLeE,161\nwPvJ5OJ_P18,132\nKPpwiCStA54,146\nqBrEcM3NbH0,132\nVfrbOQ4q_Bc,121\nXvVhKYmr8cE,40\ngB1LgDhJQMI,44\nuqg7Ow4SNk8,121\nOwaxFAC6rzk,179\nfvptWDiYrIk,68\nmqQ8Y9Sjp7o,171\njPf2y2QGoJw,133\nyzGKgnbclz8,98\nvvWyQxD3ZmI,127\nF0-Ke_gCCNg,117\nCr04KncHozI,104\nQAJkvEJ2QjE,82\n2ed_jTFrZkY,98\nl6uaxfye2Ig,96\nWaF5AMiC4xU,131\n4WuZapvSL0E,133\n9sWnQ8y_M6A,171\npQEsnpbMwEM,126\n6-NRVtIrrEs,56\n-hRLd_jAOfM,88\nyOpsJ8dh5L4,91\n0fbR1RvOCQA,99\nxtyieNg18O0,128\ncXbzJ7xAVn4,130\niaZzcRtmXXY,139\nlbaWyJwff-U,116\nFPbDFxXU_74,125\nUT2YmXPRg6c,130\ndMCHG461B58,152\nbTeYncx1xmI,180\n0NH8i-Q5Nck,57\nmO5UNbKzcpQ,180\nc9FCOAEPHHM,131\ngAxuiJdRBjQ,128\nRvNuTuiKyIo,136\nF44mBbuqA2c,45\nzYySG-Bwo1Q,133\np5lEvn7ejJI,129\nfSeWHl1PaKs,149\ni2_F9kuo998,720\n77tn-KPS334,27\nLj4adAAHa68,81\nIZQFJ6hZNJc,95\nKPz_yW2gjmI,133\n4kQb8kUDq5o,129\n6wJXBUfcIOE,115\nEr54USCnsds,155\n8Kx0qYRv8XQ,103\n8sUWwozOFww,94\n6439wcfAL-E,51\noDeQU3l-JSg,133\nqiVy40O1_Lc,50\ngNGmuLYwd3o,37\neOgMuHykBAA,112\nOYlBy85zxdo,178\nP-E8ZrQ06go,130\n77LZW5N_Tic,132\nK53sv3l9DB4,99\nnTh9qpzhunE,54\ncgBAJefErZY,110\n5iZUg7tGlxM,133\nvn1ZcpwPlAA,127\n5ZXyC0SDHNw,135\nBkVDaT2FTM8,128\nVjlUWwstdTU,84\naAnJ9iO8DAE,123\nPGqBHvtmtgE,127\nEiATQ04pH14,102\nY_SP86WfXZ0,123\neeR4VQyoLdc,133\no_KXbKa2crI,180\n3B4fl7vqi5g,133\nKSRWc7zwzC4,132\nfmIaHAtabSU,128\nlm7nrQTysm4,118\n5dVpXj--7kY,134\ns4heu0mPm-I,38\nw29PG-8Tywo,179\n4lj2ISTrfnE,126\nPWvWrHzlfAk,131\nU0sp1K-D1RE,133\ncnvdC5TGc3g,41\nphKe4peWFG8,94\nLw0Nn1xSMHk,76\nYsrQUrJ7AdM,60\nIBJGHvt7I3c,76\n_d4H6lx9-Is,168\n01ZWXIY1mcs,120\n9c0szHKahlQ,133\nsdb8G26294A,132\n_Pbi5kod89U,123\nrG1qXTVH1t4,132\nqTUcFhCim_A,110\n0Z-o1RVdnHE,83\n6NRK8ai2U0Q,133\nTk5XmgEEHoc,111\nMteufVA29iQ,133\nQIBTN3qSB44,131\nDHMF-bVxlkc,181\nA2QayxN3z68,45\nFSSlOmgUf0Q,27\nwSKGygJ2-oQ,84\nLaIsEAR_R5Y,38\nrJCltwaUrXI,151\n9NCpU9laV9I,132\nTYmMagkfjfI,133\ne9t5ikxjAQ4,133\nrx4BjUnPGss,102\nADMAw7UKLsg,94\n4WAxDlUOw-w,88\nPYJFzOzpwHo,133\nR8Oo8hf_n9w,132\nWDpipB4yehk,132\nQxL3vcwOL8E,117\n28BXqQWqYJU,130\nMn5ayQd7Y0Q,108\noLnrsZa4EqQ,152\nGmXGVDnPU9o,104\naP1FZToPFxA,92\nIioYhtWTb9Y,77\nO6KVfajjyGs,133\nHduXGYkoc_w,116\nDIlG9aSMCpg,125\np8xEvj1w23g,123\n8QJiAK-s5a0,173\nxX08f3GV3v8,91\n1M6oW6a0iAw,130\ndMt-XLWY8-g,132\nUTIjIC00VwI,91\nHlXsMMnAlmU,180\nZd17-69y_i8,180\niOMuP1qEKUc,102\nielkiD8w-M8,64\nSojaL9M5Pqs,179\nolXUIcb80N0,138\nniFndjwElIY,111\nrpp930f_fhU,101\nYrx2bv_LoG0,136\ngJ_cx3AmCuI,174\ni9KJXFbkMH0,88\n0Dy2fo6E_pI,179\nrukUxz5J7qg,74\ngmpBzm5RknI,171\nBJ3BAzRulPY,72\nrRGfnT_LUBQ,130\nyjU5akwca64,130\nfD5ZHKN90hU,41\nwD8pQ5eDneo,125\nPTjIRQU_HdM,124\nfbrN51dPm0I,180\n5t8Utwa_YYQ,116\np1lnXM7l2_g,102\nw4RwU6t2rNA,30\n2wnVCoeCXbY,163\nCwdGYMM2bHM,180\n_xNB1WCQ5NA,54\nk5oJnFivwSM,85\nV8K5d3pEUl8,129\n44ZZN9BqlEE,154\ntrxN4ftuxKQ,133\njYnRBX2Trtk,132\n8oi8aVwb_Tg,53\nfZ7X5JDKmSI,137\njHessqORWLw,125\n2W5dr790cKo,75\n-ftyIj2_b8Y,132\nhf4KXHSvKD8,109\nqSYAT8jpqgk,153\nuwcJaUaVfR0,132\nOd4nSd9AVH8,101\nECoL3IaXgRI,66\nb4kKWa_hjCk,123\nG36NDRDO6L8,139\nQsaG8rJGlyQ,133\nNBTTipJX-h4,138\n2zomyWfPgjE,42\nEEjI0A9iMow,133\n8ReMLVUwKmA,122\n3cmp6g1fbhs,94\nF5bAa6gFvLs,163\nVzXjtxZaGS8,145\n5lqvuMwYODI,125\nP0GZAeKVtfg,77\n0pgWUvW97ek,30\nyknIZsvQjG4,144\nkdkVnZsOgJA,85\nGt_pfAghaHA,131\ngPamy0ygNs8,124\nK8yeho0MbYc,157\nDWjJlErBPX4,133\n8JfgfdHNkvg,133\nPCNdV_Du58c,132\nuaEUk3vFsss,133\n5MC-cGN0bw0,51\nVCfFCFkVSss,93\nGBV01HnuTz8,123\nYKRnEOUxZm0,65\nVi5nIuJQVpM,131\n-p3FtQtQ6q8,127\nSu5vMTdI0yY,171\nzGIIiQyyuYM,133\n0jzYpSrpVqU,127\nyMjMgMaakMY,104\n4EUsnCqqc9s,163\n6esR4uGEFCc,132\njvhap1vcLDw,133\nC7Rmtxf-NVE,158\ndiFDBNNmnnU,108\n3DmchoOLczY,62\nVnrIuEa7ep4,122\nEwSSmKP7ADQ,80\nexMmixM3b3Q,133\nEb5uCh-8rZ4,132\nUkdFtNyvsBM,133\n15s4Y9ffW_o,141\nQB91tB_5u88,98\nSlVK7ogwyUI,101\n8n2vsSHAs0w,122\nYSmSuiMNbDI,71\nkgfgiLlW-yw,116\nqNkP2Y5wme0,112\nKeX9BXnD6D4,110\nEVdo5BfJMCQ,133\nqFsoL6ed_2E,133\n2hs_qcU6410,123\ntrGyimjcGRI,179\n1MJg1718M74,132\ngkJAPsQ2YHE,53\nzCv0AZeyCaQ,42\nQQWyeLLMwmo,58\nX_SthyaIImM,112\nhRa-69uBmIw,124\nwcztDZ13TLI,157\npgMyGwm-71w,781\n7tNEvCdVtk0,133\nC5-RnOKEZ-4,124\nv3MPODJTzFM,131\nTUlYMYQD3ZE,99\nwq3EAVEnW8Q,52\neSm68IEDDT0,89\ncKFA0tZIc5w,133\nA3WUhMCsZds,78\nCZ1wzoCOQ-Y,123\ndxmqqCK2FaQ,98\nMCkKihQrNA4,72\n8Ppo5YIYwTM,109\n-xQ5nH_-yyQ,180\nvp94AFms0V0,132\niLYeR6v-fVE,126\nMfBkwdh4GU4,49\ne4pMjAtdmO0,108\nJuhTQwzizDI,143\nMsMsnCypMuU,133\nVcKVgWYkZa4,121\nl-byywMA3b8,147\n7e6DCyXotE0,94\nKQrBeGqz1W0,133\njutOpRQ7Osg,178\naAWIZFqE6L4,130\nFdxUNsKZ4T8,107\nWeZiTVev7vA,117\nNPgEZxjtt-I,150\n26-SvRLhthc,121\n1tfK_3XK4CI,107\nzySQRLbqyng,128\nqvwHppI95K0,114\nuvUH_niF-Zo,126\nqhxDQ1g964U,121\nBmLPVUYQM34,135\n57ge-WVuEY0,129\nQNVWY5jUIbc,132\nOkSIAlL4f-0,251\nbhGWWY1nCWw,72\n7msu2ugXGW8,109\nqnNr8etyi08,132\nH2tltm5wUCs,128\nifS04il68Yw,130\nX1u5iUcD0Ag,45\nyEQtrdTpJFU,133\n3RLPHNi_2-A,133\nk1z5PejkIyY,150\nFtM7tdP6UDE,133\nXYumOva6Xr0,80\nT2Lh9Lt3_w4,112\njal6Pf2DFlg,172\nN7LxzkB0imk,88\nUpLg7Ma-c4g,180\nmbWtLBLt1ro,14\nlYCBKgzuNak,119\nGLH6JPoOLJY,48\n1RIOFzhufm8,89\nlnNbDaNP-yg,108\ndJU1SZIfK3Y,68\ntdBNwAJMgW4,133\nnU1jeDXloRs,131\nUSKDdEg8N3s,180\nUlIBiZxArGY,132\nrNPcxSp5a2o,148\nEATS70yNA0E,133\n3ZPlgOWbkcY,147\nuIUCcORbMvg,112\n--jPdm57jQs,58\n1H96OfI64Fs,129\nYg3w_8_fwIc,97\nDVPGcQ1Ljgc,133\nP2A2nKAbQqI,98\nOqSg7WO4tT4,132\nTSKzL-8RHuw,141\no2Oev2LZudg,114\n-c_ctZ4lUCk,141\nVMU9Yos0mkk,109\njLo7tHDHgOc,71\n9NqWMjMX548,85\nNOMdMmQWgjQ,26\nuAS_k95ZRUk,65\n1YCz4y8b58k,135\nSyM4ctfYzks,177\n3F1uAggQmYI,122\n5xUMeF5rgQo,125\nb3EWsHg08x4,72\nmT1QTyuTr-M,133\nbHTWme5Ks9g,124\nSpl7doGUZTI,89\ndZgbeIE9Xbo,100\nAow66vqHkmU,131\naW4tjKzDEDU,158\nxE9YSmsKm8I,126\n8yDjtE3wmFs,64\n2cSY9R-ka5o,129\n-cBGthOZ-Ls,125\nf276MnhGqGg,69\nJMBzKJj-nIE,46\nrSPj_G2yVz4,162\nnqaJ3f0z3Lw,62\nJf3-qH7OhmM,133\njocnzvDLA60,44\nndfLW-xm9Xk,51\n-hqNz9Ve-Hs,58\nwOlCQYZWJRE,72\nngThTIjgCMw,74\n-wc5S8xwxJk,52\nWmeaAGe4uMo,133\nLdnaptnNXbo,133\nAjGIJPE8B8I,125\niyPGMUFQiW0,132\nCho039BrHpg,132\n3EIgmj6gp1I,60\naz-Q_fYNZrU,133\nZFofgS_iQ0Q,111\nIzOtTXOVc9A,133\nz0BandJg8y4,152\njn8SVc374U0,133\n2X_LdH71B6I,126\neG9QMl_w1pk,133\nrSB9VJcwQsc,133\nvGgdg2q1eig,133\nyhf9YADtuyA,133\newkroL1cP_Q,162\np7aigA4gPiw,122\nO71paEZERHg,131\nr421zjv-hoE,125\nGuEFmBxmIT0,106\nos1gnR5k3S8,118\nkoPEnaz0Qm8,54\nX11uEGRnCDs,133\nnzWDzGxqqa0,86\nH3Epwo8vFpk,132\nDYFQ9vVqiMA,114\nXVEnOs2HVlY,123\nFMENQeCbxfI,139\nNMi4ONkFym8,38\nvdHBsWXaHN8,51\nqlrpmMPkRUM,77\nKp6aaQEK5y0,130\n42ikB9YlkW4,114\nx12Dai43I8Y,131\nq3NI5sE3KeY,186\nTm0oAv2moOw,179\n-nzW1T89qH4,80\ne4yCxKv-2qw,120\ncLApJ5OJaLg,107\nkWmntegbxMc,128\n6Diop4IOk68,179\nL0CGJL5SlsQ,132\nbD_rWCvgDy8,61\n-qmkhAXmBNc,112\nNBQAXiZ7KG4,66\n2cjvwTzhG8g,109\n6_-kw-0PvJc,71\n6hxOoM0-NJI,173\nWcXt9aUMbBk,150\nRJjhiIlRzw0,83\nCYGtLUZg1xA,166\n3SLoG8B0HTg,126\nojydQ3_FDqI,133\nI9mJ2oBONug,131\nCb1Pbk3gQSM,129\nrRaHWuWTtG8,121\nViUAWLUF74Q,132\nuAgvdtpmXBk,133\nUbTBbTDjjHI,84\nd-ZaywYsJk0,108\n3dluAhOU1cA,180\nvjSMyoCFS_o,111\nUGBZnfB46es,119\nKKsEwCmjRP4,90\nyGgOimJaqT4,53\nnyExbZwBM2c,128\np2Md_248enw,133\nfImqZCIebuw,43\nwyaGIaJsmTg,97\n_m9qecEehqY,60\ngDwlbuyDPfk,131\nFAY2LYoYCAU,131\nspVHsj3_MEY,39\nkrqNvqvhvp0,121\na2dHmOQuDaQ,103\ne_hkxbNpQMw,102\nXFC2o44koIA,126\ndEjdEoovBR4,132\nJnBh7KBjgwM,141\nM4nag_xN0Rw,96\n1FZ2FA-epcE,180\n7vjP2EKf7do,181\n11nfPZqT5c0,131\nIZhBhfty0LA,132\nWMIho_dolCA,74\nVjfjS0R1bdk,176\n4WcOcgc3WN4,35\n6FRUFQXnhBo,26\nivchILnrn-g,31\nuV5YFJgGPNQ,101\nWzTIhm6YMQk,44\nTKKzI-DKhuQ,100\nfIT7VMVju0A,171\nfWLdsqhYVxM,140\nAs5-06N6Rko,158\nso4D0cpOaUs,133\nPqtjbWJPIgQ,70\nmvLpbHKV1_8,95\njei1Q_fP_Es,85\nEUtdnTk7wIE,134\nIZS7zpXftHA,54\nNfDUkR3DOFw,67\nhX5s15LBHqo,132\nWg-UpYglAEw,116\nVGqjv_CkCXo,39\n9UMX4dGRYEw,180\nbJgem6Xc3TM,67\nOPC2Ahuklt8,133\nuLt7lXDCHQ0,179\nDu95opzY8qg,161\nZTVR1PCRopA,173\nsdc5bkFd2X4,58\nY3kXNEX1Ghs,118\nkqVqHxVJCaA,127\na0uMay4ExT8,129\n6xD1JRKscGM,125\n-UAV4O9oZy0,40\n0yOwWkbamyM,178\nMOJFi9-64Qw,132\nsh8VHDoEDik,127\nBfcfTmh8RKo,43\nrNAXkGt7rFA,160\n2XgWUoUe_lw,132\nThzCQZyzCkg,85\nDnFk_dGSL5M,133\nWDTRyjMnDOk,53\nnP7OKtlMO2w,154\nwf-gIUYRCyk,178\nL1YN9QMKpBo,133\nxTseWiI_yns,91\n5gMuofAdW6A,46\nwaWs3T-HJas,131\nFwi0bsJ5F8I,83\nKaxcWDmXbBs,130\nfw_IEdXIuYU,133\nTscPOjzk0hI,122\nCdwdX5PxF9Q,77\noxLuG0BYYwE,133\nx5f6nNMdbgU,158\nkicjYh3v1FI,80\n3JXcqzJjHf0,84\nNBS7J3KHWhQ,132\nm03MTJCH0Ns,69\nrnbDA4wKrg0,178\nUmmXGbFASC0,176\n-3A2TNWXDXA,133\nGxd-OPuy2tA,133\ntdmGoIYtHzg,133\n-uU3MTcwg_s,132\ncacjl7UwuVU,51\nF9b76RWM7qE,75\nd5TglK8v1xs,87\niuL2loyB1bk,101\n_yHgZUYOYdY,133\nu1pJJOaKdiQ,159\nlW2JBJSaXUI,82\neHpBhm4LMfw,63\nOfsHMuWn95I,135\nfLWrnVuT4Is,76\n00rpUGdvcY0,133\n2HOwFvWBZ3A,128\ncgXTRSSX3cc,119\nl_a2GN0Ix4o,130\nsbz_Xq2aEQQ,128\nlYf4jdLpg5E,86\nY0F2c4VgxW8,47\n06B3m6L5fFw,123\nax5e-46rAwA,73\nH19uKs99vIw,122\n7TcMmmC-PqQ,133\nySQ8WJNGp0U,124\nvBH4Hv39SEo,136\nrr6eufh4DA4,133\n17dU___xcdA,53\nSakCFLhbAJA,130\nGK7IQ-raJOc,133\nXHHg1C8LGnk,131\n6v6C3lZ9Ic0,133\nGTv9dFFHtW4,132\nNACwfzRou0w,65\n8bY4qPadkSo,153\nY77zaw13B_8,132\nSI1K-_VTFrQ,78\nupyAJ-kEgNY,133\n1mJf24luhuo,125\ndQUjkTOrAn4,178\nb244Z-Otu4M,8\nifjmJHoUzc8,180\n3LEa0FN1bf8,130\nnVwOCEibZu0,129\nzpmLSGixYwM,179\nTQeP6GWU0e4,149\nyvv9DRyxTFo,133\naF3BXL1cQYY,137\nHZkrxGuKHkU,131\nrfYZT8xR1Gs,124\nu-BIr0fW5cU,132\n4MzZD9mNlww,176\nCWxkPQXZo6Q,106\nrxX-JLi1FB0,133\nK0qG34a5oqY,118\nAqWLMW73b6Y,112\n0IVFxW63RxU,48\nfki-LTswICw,169\n4pYu83JHg0E,31\nc5BJJbtFP4E,132\nlhsWHmJiaXE,131\nmFXxro8aD3A,37\n5P7bIH5iC7M,86\nZ7RKrb4jLOU,149\nMOO9hFCMw7Y,133\nLJY_pChREVY,115\nSAPvfHqWNFE,131\nOAhF3wWBxbM,127\nN3U5ed3dRAE,129\nNdVRDlmWhg4,65\nNadp60OP4D4,149\nNBh_b2SBDHs,132\n7_ip79SGVLo,133\ndnIPfZIKYPc,52\nf8zZksymCzw,90\non28B5qrgtY,92\na-IU2mBY1_4,118\n1ao1yR27lak,140\nVdG34y8kUyc,52\nyoGdST0RFuc,132\nP-sWReV2DDQ,123\njNuIn4T-CLk,92\nFYDrPt06XNI,125\nlPCt2BBqR2k,122\nq9OUIk4Oaq4,177\nar5YGIFyEUY,129\n1JMCvX6qXuo,150\nJnXi3SVJXbM,133\nbqOMJ-Qrg1Q,132\no4Dly22Kcfs,122\nup7I_0JGTgQ,132\n-xTty5scUwM,133\nREBkkS4Axtk,150\nJbI9xgX8H-8,130\n958GzzqgWnw,175\n2xxZ6kju6xo,178\nKE-ok-meF3E,59\n-U_IRXhodds,182\nkmgRv2V_7P4,121\nEA-9nqoIXs8,132\nPxtuovqUgYU,114\n6UV_5HvpmgY,83\nu3xawRs6Rik,131\np-YvF5eXwYM,115\nvFqitPr_Gpg,58\nB8dldLG_ZhI,134\nZ7xJxo223YA,183\n-NtpPdMGluE,167\ngoikm-zX9r8,38\n3OYeaLGRfug,57\nOxzfUI1wSwU,133\nJPEmc2HcMmY,169\nIkQ_uPNWp28,114\nQPzZIJ-4Cq4,41\nhnum8SxuVCQ,128\njeoUH00woxs,33\n7RLU1N4-8SM,66\nt15VVQjK16Y,33\n4m2WutlqBk0,75\nbuRR_o85qhQ,134\nOTq3-zG1lCE,122\nC_2-E5uR-k0,120\nGNTdNXkhZ8Y,119\nX1UmHfWCw-4,132\n3fXPZqrKduQ,83\nCiq9ts02ci4,179\nyrLutFhQLgE,163\ntBSbjKyamRo,154\nZcCHgCXxkgs,180\nLSqb4e8mUd4,60\nd7RrYVI3Xw0,128\nWZppJUaR7_0,57\naEBLrCGhTVM,126\nCblvDFObgNA,110\nY5drWYjmJFY,168\nv38lu0Bi0Kk,114\nObbLapUaZd4,179\nIsskB0D2GC0,130\nsF6TDdShI-U,129\npkfyn6mYlCg,151\nQQwJyX56Z6o,132\ndVCki9kwF_4,89\nguMVb47aD-k,72\nFbmnqGqWgc8,179\ntvKzyYy6qvY,110\nEFmvTRmRtms,133\nAhAHDaOGHFI,132\nFARSnLU-NJA,100\n5cKRTdQtq5w,130\nBCruokZzMXc,132\nqNk-kc0XH4A,130\nB7t6KoVULDQ,126\nsR22u1bgrog,133\nDvOrBPJGAnc,144\n3-fzc0e4dD0,79\n0Rl9Cxc7uZA,79\nbMVWECam8EA,101\n-nXBi-mtvR8,133\nTil9ScLdyv0,132\nuuUEqTKn5Ho,106\n9acYlZC9RLI,52\nl1GXJBIkb74,153\nSR5BfQ4rEqQ,173\nNjN-PLW521s,102\nfy-PoYl4bQI,133\n9nabHwRMjcE,132\nguQnnPJgtUo,43\nmE53H-ZbD7c,138\nYAlZyCUJKt4,122\nk8zDVhc4XPs,176\nreJAzTE980s,133\n0l8mYfrxpTw,176\nRGl3Y1gvv5g,177\ng0AMLVSBfSs,54\nok_8VGksYow,101\nsdLG_FvIvtk,77\nhrVLeHMpsDY,131\nVyLZlTLEY4U,133\npGeODfpFpUQ,131\nGhaxB8afkj0,38\nM-HCaHXzQRY,133\n2zi4N3_c4sM,128\nuU6LIbi7NZQ,66\nn75PgMSxAOw,134\n0kqn9qQZdOs,127\nX09M4YjeE78,113\nquJX9XLQe78,140\nL5-JXPcM3RQ,100\n136NiOTy4Xo,119\ng_U9jZQ54LM,175\nAEa9kbnyzEE,151\nXDZ_lSJjgvk,133\ngJOWAISZDhs,132\n8G40_afpkGA,132\n5zInmil5iT4,130\nujxDA9VsQG4,179\n2g7MZJfmBA4,45\nWH9nsFQH6KU,132\nmeBbBnp3FcA,111\nAJuIYcVnc2I,133\nP3jRjtbkmq8,109\nI5cS0_op1IE,134\nL8eQ78agzQg,110\nJ215p0P-ieA,133\n5DefW3MeD_c,87\n4cJs-f3NC6s,93\nOrjUfQFz_os,102\nDJnKxIj_D6A,136\nCnh4Vr0UruI,180\nw4iERLpYmzU,133\nMAeQV2NBbhM,46\n0cHePp1_EMg,131\nWUfY9jgSrLI,122\nhw6GwhfNl7U,122\n3XeLFSaoyAk,74\nj6oHprwdTeA,104\n5iKhN22wsmI,122\nQeoL6G4bW4U,101\n7YdgPy21hBM,133\nmCqrIptSd9k,127\n5rivvvWeYh4,132\n2v-VkDiUm0Y,56\nNzbhbetwYFU,132\nOjxvPz5T7YY,131\nBqV0lNOqaPA,167\njSidQZzJfcc,168\nqVhCNgct9JQ,85\nJWGVdLHio5g,49\nRfvKvTlQHuw,63\n7b9sNVUPFyM,132\nTrZuYfti-pE,133\nwXf_eaQcSdM,130\nAOiL4JRqh7c,130\nyyYfKxW1T8Q,114\nyoWz1IdoTIg,77\nNaf_WiEb9Qs,100\noZePQEUplJs,192\n2wy3acVALNI,127\nrt8L4_lD-_g,133\nKocHmCmLwro,115\nuB2eggtlTfE,124\n5HaKHp8glPc,161\nlRd5iD73g2s,131\nG0aJ4C7y9Qc,130\n1mJ49BcUM3E,133\nB6iOniIX5eA,82\n74ocbvwam7c,180\nsthFTs2gWeg,126\nzWXZyd07k2Y,44\nGUclZ3JhJoM,121\ntlhxBAhYnS8,162\nlLepw8cs6eQ,160\nykdrEYrEaZE,151\nx1H6pD3vNwQ,83\nb1jqSRnqLMw,154\nnCLxHi2oZVM,145\nLEDYzJazfw0,137\nfGiaJDWSWKE,168\nbluBJ-eeBBs,107\nD-QqctD6nCw,87\nvVTASz4W2hA,152\nBzd07cbr3y8,157\nHg_aGQjwjmo,138\nzKSDHbVKY7Q,133\n-ASYRiRflDM,157\nKNO5Mhxm8G4,139\n65yzqqmXs-Q,132\nBPWhOdRSQ6U,128\nLJAUOJDM88o,145\nRqAmUMayBk4,264\noJuU7gvcwdQ,143\nLWnHl2_xh4M,197\nxVT46mh22iw,96\n1afEpntCGXk,117\nAHw_6AOK7bg,148\n4SPwmO5wHjM,110\ngL3mN-UpSyQ,116\nACh4ghU9eok,71\n_TkhbfmrmD0,93\nF5U5PKWgHQo,92\n5D7JRwROZ0E,166\nCpxs390x5N4,73\nmtuBqolFOVs,64\nhwu3LxjW22o,127\nmGpalRiltP8,127\nc6TNgqIAYyE,140\n8djvfSfVPO4,69\nrlXL9FlYW8k,144\nFGwRe_5L1WM,132\ntjJPFWAtG4I,131\ncuMmCpE7-pg,80\nay13eiuH54U,140\nGgtGlyKIMh8,69\nh3QK9udRbWg,60\nDesiCKdiCDo,132\nUrj46blH8vo,132\nuKZQEDh_KAA,129\nRSUmB80GqDM,171\nymZFsUBiKJA,58\nOywTdKpHE8M,133\nI44NZgYW6_4,159\nclslrqHA26U,140\nQhZ86T_nh3Y,156\nxGj_wbPl-6w,122\nsfVRk14aLtE,131\nYER_g7jph94,117\nBGWe0FvWW54,132\nyw7tuJeWXlA,134\nvoYRf2GVXbc,71\na4DTqmln40c,76\nzvry_GtQIeU,100\nOvp4lQhkIGY,121\n2JHbw-BXN5s,139\naHw-fJZ7mD8,123\nDtgKqQkglyY,61\nvli6rJX8Xac,90\nhrZxBMTQO0c,132\nggEPIKZuPn4,71\nNrXQSp7Uz0A,133\nPWeRWbuEN7Q,180\nUniUFSan3Bg,130\nZ92aHy9-fkk,157\nAUqVNqZdqRw,115\n_Fw6TuACCKY,130\nSLgV3ynglzg,158\nlqbzUCMEK0o,123\nC7Y3b732UVw,91\nzH8ZeRDlyb4,71\nGPuCrJujOkk,130\n06gTnB_5-Tg,114\nl9k9_K8Tea0,88\nVB9pptEqFl4,96\nSIwi5PRNTfg,147\nChy1Cu5WOgc,200\nc4ux2NclHoE,137\nguK3fiVFU98,140\nKIqqvICYqUg,124\npu0pYw6lG_c,101\nlVMviKEztGw,133\nDX8o_ql6f-E,74\nOCDouPR9v9E,61\ntfqqS90iYKY,139\nQslzL-DhXDY,119\n8p0YBrmfLyA,229\nyThTYeRr5BM,109\nL0yOTA3Wq_E,104\nuq1JHKlUtOU,98\nJIHGn-BwZMM,129\nDAlyvQ1hNag,133\nv96ND45Aqmo,181\nm0gUcNGsGYU,85\nTLNhcMerK-U,99\n0vlBQqEc5YA,130\noIEtwZK04wM,187\nPB5bvrhHFIw,130\nBN4GI97RoSw,122\n1-rmOabireo,124\n7rTb-n96yS8,221\n8xsYjrLw-Qk,105\nyga9OU5yuKE,94\nLs4Ua-QtHYE,131\nsh7lb9j3k5s,122\n8_iFDOIkRFk,168\nWh4U2TtNn-g,149\nyDo7fA8sAlM,132\nh0z4HetQWME,130\nRnWxwJxpDig,130\neh4jLrZ2IK4,122\nkh62SjGdI0s,148\nTAkyNyQBnyo,133\ncR7GV9Fdkuk,256\n5-kyVZ5swXE,154\nBXmMRlQtnP8,178\nNgSS_lMllOw,110\nuztZUqKrHVo,143\nV07Z_XYMnmM,200\naBgs1Kxh9nM,114\nabyFD6LO05w,136\ncb4dxubPYEs,253\nyNkcLZ0BPuc,120\nk87Hk4JNqGY,151\nAH9_BGpsNCo,141\nIQQDJahY-Eg,118\nqPbOVPtdaZs,147\nobbz_0P1wVs,131\nyIGiGtjHUS0,154\naJY0vUsHL9Y,127\nrJ9zBV97d5M,147\neOcimzsviFA,160\nz-0rKpuvnT4,115\n1ISntRHuJ4Y,131\nwaOQ8ECkEcQ,98\nRAG1b0H8nv4,131\n2G4Vfuk1dJM,74\nJLWaJTCL_V4,118\nI2gqWarrj-Q,120\nWx7IOoX7l8Y,148\njE5qCSOAsXU,127\njr8BKtgMJA0,56\nXnEKbUbww9s,169\nafnlOjES53Y,123\ncLc_O-kQOoc,126\ncV0Db20loyg,191\nTdOMp1LuvJg,61\nxXTuhmtvXNg,146\nyrUXPvP3Gk0,153\nIBRvIQdd6UE,117\n3rFMyjGI4cg,139\n0Z9Pl7oF9dI,210\nfpqwsexDM0I,220\nJDxlbYa_THM,90\nQB4WFBsaeus,132\nKcLVm5KkTjk,129\ncDI9o67o7bo,165\nZreKuv4qWY8,119\nGBGdp2p0T30,119\ntp_djeJB9sQ,149\nzdr-f3MZgqo,133\nfNeCsZY7I9o,122\n2wctAnLU_cE,106\n2yXz1r5kn_k,130\nLZhbH4pHMQ8,107\ni2gVXd7FzhQ,202\nF4d_PYyHSOM,103\n7kikXTi4fFs,145\nw8txE148NNI,143\npeRHtqEZMLk,186\nsPZ2Ukl7EPU,169\nLcWRSHD3cAE,136\nD0rFBU7pVL4,129\nSt16P31BURU,137\nAHV2k4t593E,98\n_dm0Oj_fF14,118\nlu3fmlUJQsE,81\np7bpv3zs8Dk,150\nvAd0QlUaIBY,123\ntojv7SZkBOc,123\nZ7VT-r3RB-4,151\nrkD3FLsiUiU,125\nyZLkEOM1CQ0,87\n3CeKpU2WaBQ,194\nACdEiMqOVvs,204\nYBmz0YGT2kI,123\n7JICPsjLMis,100\n8GtyX55FtTs,78\nTc7H9s4PdSI,145\nIC2crLlclNA,131\nozf32hrXGiY,162\n0wAtjDAyv4M,132\nAXgHBzoymaQ,76\njF78Fs72X4Q,122\nz__IAJ1Q9lk,131\n1eQh2-2W_1Q,129\n6Cz2mIx0y5k,126\nFPDAxknJFW8,143\nE6gWFTv3xE8,143\nd5MJBYofzhs,96\njE5w-Jl5BSE,261\nuVXQWXpXmvc,130\nyjMXMAKF-Rg,140\n8X26PR7abAU,277\n26mzWqdJnis,173\nzRYmoB7ayDU,108\nTCrV8NUSTsc,104\n8_phNWJu9BY,215\n9cR2Rh00ndA,120\nKmlUAuGhy24,170\nAdGVl3AP7fw,124\nrbFIs5-Rn_Y,124\nbVAiU6Jp4FI,107\nIyT1ogi3fE0,128\nLyszyKhpc88,116\nToDDs9twuno,120\nP9clz3jnMVo,129\ngOJJm_cSRds,215\nDLf5iJ2jOZ4,123\nXjjZyyzdOvs,131\neTVHMQb2OyU,100\nbvuDpEE2MQM,131\n7m3Mv9f_P1U,127\nC1zseVrJQLk,161\n_epn5foR_Ts,116\n4pUPYVW5GWI,179\n7GDnbK8lTYg,133\n8FX2FZ0fFlo,104\n92h5_0bE8Nk,95\nJSmcnUcLVHA,129\nO5s3Oj2cPgc,93\nTZjB7MW9Q-E,128\njTHFCMuIrzQ,126\nWQnv22Qnp8s,118\nFyd8tAhnKig,131\n59ZImWWRR50,177\nV1dPrmENIVg,113\nIl1NzkQ3rYs,132\nLtkstS3KlIA,96\nYsdz8bIuyWY,123\nmKQYPa9Onac,105\nLdHfwFIuXtw,172\nBV1Nyf_u1AA,158\nPaut4zNx-3c,203\nlVmwqKY9BX0,137\nWOLfIBsXq4s,74\nvZ2jwhdnmw4,172\nRn2__xGApzQ,119\nT0StyKPJrNY,100\nJIfu8g9EUzo,133\nMoJqPqmjxUM,121\ngjliVll3Uyw,90\na3uqv0eP7Tg,194\nSeqT3GyDb2k,49\nBYh-iVr55EA,115\n9UtRH9enIUE,104\niLgMFwStTHc,128\nyfYKkvq5dow,104\nrKjMBYlak2M,132\nrZsLiY_Yyhk,116\nm8Mc-38C88g,188\nUwslgPscal8,133\nN204ncRytIE,99\nFjl9b_vVVnk,118\nQpoiFakmREc,179\nzTV295EGtOk,133\nr9ma_9tM48k,98\nHcD7driLtCQ,83\ng_tQ__pEoPs,149\n48kV7uKAzEU,118\nYJLeJG_bG1M,187\n2ceG37UZvzQ,144\nTbgusehY_sQ,177\nCrFsSJPnHj4,118\nAFBqbhNngJo,153\nB5D_aDaMqkk,133\nf08pzusjWTQ,138\n8G84xAalZiY,122\nBI5u7jAxIjo,133\nRDdc0-JD8Dk,119\ndv_26E-a_mA,141\n7iWEk7k_kio,185\nPXn6o5uTfEU,133\ncpdt1EljZp0,85\nR4cgP1_M8ts,90\nt4fqGbC2mQM,144\nL4TIQxyJEcs,160\nI2ci4vKm_cI,133\nRiOhh4AG0rc,126\ny3wTKua41bk,113\nTDCa_16CiCU,116\nKXo_Enhm-xM,123\nOL0I-Tf0QRU,87\n7kAoU7bwDFM,124\nltY3ZLA6dA8,133\nA6ZOCb2gaqs,123\nkNOz8Bcb9v0,57\naIZsVuaUWB4,159\nyQAICCf1oug,111\nx0D4unitqpE,132\ncYlCe0SYmWI,160\nDe-dBcPZlIM,204\nTfeZeRIdyNM,107\nRNMZD_WiAvU,148\nY6uj9ZZl2LI,96\nhTOzxqecG7o,74\nQsveFtQaP7c,133\nx1dA_SM1vxE,116\n5QFPjo1DGE8,164\nBL-d6jqZ858,126\nOCV4kaP_0-k,143\nhGuXSd2s0jI,108\nUOYi4NzxlhE,133\nUMjzEWOWXk0,148\nWJOL4xoamoQ,100\nYeNQ5WEKggc,131\nhRoE2HRnpkk,128\nLCsNRcdlAkw,125\nwAadouGkwMQ,131\nEgsFR3Y5XB4,134\n6krgl6GpIbM,209\niGAwKHHaRAA,125\nXQUKOgrir0A,139\nI3GuNWUhXDY,72\n_nrXdj11-MA,133\n8Ad8rMLFcRo,164\ndBal-Rb366c,125\n3I0AP-HwDnU,96\n2G-BNvZvz8I,86\nZ5Hmi5x6JA8,136\nclTG6sYtJig,91\nEzqRc-RLJfU,132\nR-chvFgDLnM,199\nSiLFLIp8I14,133\n13_ffd4CiG4,170\n0MUWDGcRCOQ,148\naWLRULhIyCE,142\n2aN2OU0pk-Q,160\n3SYMh5owQcA,138\n4Zb-n9MXbPE,235\npdYYAu24yVQ,121\n45RmWBZsU1Y,143\n7ikLl_nUM2A,153\nMRCXvZjeOx8,163\n26ISV0QFWPU,101\n-R2UHh9T0ck,90\npDEJr2Sqhxc,65\nMXM6Hz_ItMw,81\nD1hNiK3YZ2A,143\n_ysVoV3x5Zo,246\n3IAUIQJXHUM,150\nH63L0VBnCDA,105\nmbj-OpDla5A,125\nvsSTRzIow2c,80\nOS8NUnMpllc,118\nufF5p8VBsVk,157\nRmhSgZ106Wg,108\nLjKZiPNHRUU,131\nHFbgT-GSYhk,131\ncKw1b2-4aeU,141\nXrvB53IDIqM,120\nC7qekGisCs4,135\n6E26ye_66xE,138\n-WBeglzkZNQ,180\nSPSP9BHo1_c,150\n6J4faUNOGuI,74\ndAxijzivjlc,152\nw2T2xsIYH0I,135\nHFUCwBt4pK0,133\nIQ4Yt16z2PY,106\nEPCFcnp0R3M,170\niojZt-Ht4Nc,119\nxcYzjbIVlX8,114\nk0XGlpR6iLc,110\nZcjvH_shI5I,159\nlJuxU-aVeT4,118\nl063S2tqZSg,157\nIn9QzIAgiFE,119\n6cjNvLAvIFs,172\nv5qwMeiEF0M,133\nlQbw0_5O8CQ,142\nQU2qTjAFWKQ,117\nn5PnSNCFBYs,85\nfEZuzz0KmN0,131\nS3dCv5aTB2c,85\nj_UtDuZaeZo,172\nGWrQ2H3LhI4,82\nOEw-cBg0lJY,228\nQTHImytcib0,217\nBFkcX4Qi11g,133\nu8TwN5M1fEY,104\nqDAFxENuoCU,118\nXVNNkjY2YDQ,131\nVAh7ZGHEp-c,132\nIc5tk6Afu0g,176\nXLk_91MKjgs,125\nUneHDzMhbbw,132\nkPSk30qzgFs,210\nktXm7CRXbsE,134\nngeORuhnajc,133\n1AZuIPGAQ_s,129\nS85RSn20wJ0,107\nzn9pjQIMQVQ,153\n0E4d_pXA7dI,67\nbc6k19YKBN4,109\nT8X4r5X9c-Y,159\nKy7rHZmk9Yw,126\nLtFyP0qy9XU,192\nrpdnpip1X4A,137\nlTWY11J9Z3o,171\n3GcQp2JJvv0,125\nxd7SESj-nfA,116\nCQtbqB7NcXc,53\nHM1U0PSGMn0,109\n4xBY09_9H6g,172\nptBGusJjkTU,116\njTFSVXpq1Fg,133\nY4yQoJ-LBVE,130\n3pdDB7-UcKM,118\ngKmsNU2CWo0,131\nphWjHc6hsRo,57\nCAYHD5mAsfo,148\nJMpTeDvOnLA,151\nyJUGxCV5OiQ,75\n2A60QcsJtlE,111\nawHrfxqEofc,129\njU6nB-uJh68,165\nuF_721BvdJE,77\ncWuFfrettMY,96\nDsGsRazwHNc,121\nky1semsHhAY,133\nd9K2p6NtV40,133\nIwC3OUA8_s0,55\noYDde0u4TT4,132\nb3uEOvtuMyc,128\nyPHYjeHk1YM,153\n7EHVvWxKKro,138\nutJWIjtBBvo,65\nt9do_YtNsnM,56\nypvzo6iiM7M,203\ntJLdaKUBGzo,145\n-QWL-FwX4t4,119\n3UjujuY8fbU,144\n4bY-bFqj97k,124\neqQtfjs7YGg,194\nYh7Qz4fiKxw,102\nhn09SKCZgtI,132\n2H7XknY3PMA,109\nYUSxYNj_kM0,162\nbwTe_vZ_2dg,115\nQ3gK7Oe5gbM,91\nay1pxLNtdxE,114\nxwN0ZIe-cG8,68\naKUcMTQgl5E,86\nyqCFtEZRFPE,153\nSJZ_LT4GwQE,178\nkthFUFBwbZg,65\nnlOF6YhAoJQ,141\nQCrKGjDt00c,104\nJMmp4T6mbkw,101\nHFZSTBmWyd8,136\nG4Hwsz1sQmc,149\n34_4OMd4I2I,177\nKLYlTxCTu20,130\n-yvnWPZy1FQ,113\nfxriLTLhyyY,151\nTVtvBoELA-g,126\nUkObc3-RKYg,76\nic_89aGltSg,147\noyYuYNnSq9E,114\n1ve57l3c19g,133\nK5xM1SxgD6M,127\nFpKhobkTOyY,134\nWriOEr0A1tQ,157\njuw328OfWnM,90\nxGGRJg-EzoI,143\n847dUNGFwsM,130\nurN3pAtiXdg,127\n4SCJoMT1FCY,144\nCkNjOs-7Sv8,138\njgOMHLuBup4,111\nY-YsM2a_N5Y,105\njWt7wiLImmU,107\nF_3zkj4QVvA,136\nnkQAhpLBok8,131\nTzAnOnVKwzk,130\ncCoD237oWtg,128\nX5SaZ8EmSpw,131\n5oe8grtUxI8,141\nDH6S0wKKGBM,170\n1NfrTfIPl9Q,118\nQCTgWRNnfZM,132\nE90s7ZR3HNw,134\nhdt5QAIC81Q,166\n8NSR7Pod8O8,211\n5XuaulOD0ZE,132\nQRACf_ehgis,143\nbuNwwAximcE,113\noJJM7GnED2E,175\nx5bONeuC6BY,136\ndNwHQsv3tgE,132\nF8RkAzAX2-g,180\nGcSfbaac9eg,149\nF7bAUwj2HEs,131\nyr-HmSz421c,125\nXI12czsGYRc,126\nAO_944kf0RA,127\nGvRD2YqBi74,187\nfO8-yVmcQCo,208\nFvsbTxZZgxM,93\nS0_2LuMWicY,124\nanQHZRrZHYc,133\nJQAyLEhEoQw,239\n9NKu_Kyi1qY,121\nIRMNacEVuT4,137\nvqgb0X4uuEw,128\nocVeenCXGaM,109\nUlT2oHT2RGY,153\nDYOqsNNCOLQ,154\nRZ9Od4LBqDg,147\ns-te8zRj4WY,90\nvKEWdfB8yo8,195\n-0f67QE-HP8,190\nlVsH8dttw4I,127\nWqyvGyBJbcQ,120\nqYxJ5YvIJX4,207\nhm9ZzMSoPB4,70\n0_aAMNEqylU,164\nw1iNrckWufI,146\nA6zqLx8tii4,128\nfU3enCcXY80,132\nQp4Vo2bMgJk,52\nrGqSj0MA4eM,130\nnjPq0Ld041k,131\nCbijjb5aLYo,148\n8MnF5ok8llg,156\niaIYk3DZKwE,107\nVmwM9EXyczw,201\n_1A33xDs0lI,143\na75Ywerim8M,84\n0k8XW2V2dCg,117\nBNxai8Y9IXg,133\nbXtvpRR4VbA,128\newEreSjPyC4,82\naAg3LPuwfJM,137\nHKNo8yzXxyM,132\nVtpo8d2mME0,97\n8bAvbwlCsHU,133\nstoxd02ubG4,113\nfgp77jbQkW0,98\nYhYn-b84MvE,190\nVRxRsbDfLaw,103\nvNgB9PxOAdI,87\njvAZ0bjChvk,112\n6HXgPGZcXe4,154\n9lORsaux9Lo,133\nijnfTK6LgMA,141\na0n9iFb4i70,134\nmwa7-cCuwCI,266\nLFc-p5H9AJI,140\nFVoOLRhnkYE,58\ntVBVeXfbo6k,119\nf48wH7l3c5I,130\nRAapNGRfaBI,194\noISBveQNkzA,139\nCkem1kbmJdQ,165\nH-cxAVTmQ0I,95\nBjJxoKtYj_w,110\nCr-WWckkejQ,176\nf6DDYCf80hw,148\ncniwN1YsUW8,138\n-n3qpOM31Pc,128\nujwZug46-tc,182\nFaH-7N7iRjI,63\n3jBfvv_lBEU,95\ndKC2CPS9AFI,130\nNkaJFlr5Fhk,207\ngQRANiw4JLw,120\n4GraEwTsqFs,133\nvT3kQdSXrMw,132\nxcgOzHorYag,135\niK6cDwd3yH4,102\nE_UyAj2V4pI,132\n2P3uaREypD4,199\nR2zNRrOXbPY,192\nr1UKhlSdV-M,131\ncP7WEGuVwig,169\nVY4Bo_Mcws4,135\nLz-ihW8RXSM,95\n2nhZzcQBkp0,142\nLvtFcK8BaY8,124\nalmVKV4ywQQ,149\nbUWnZAFfxYc,207\nWy3IoFyvWOs,243\nvs6V8EILM0M,118\nAt6Q3fUFU1o,126\n1_7FYr4JsF0,123\nYDuDd4tmZps,145\nMOEy-Da4ra8,104\nH3h2opMD6rM,133\nEubG9_KSoGo,139\nqyMVXU7qMGw,144\nBbYPFSGnPZs,131\nLYbU_99u22o,78\nBXa-BfF9qGc,124\nVjdgqT_xtEo,87\ns4KQbOrnRYs,183\nWDq967Y_e3U,124\nw9SWbpW5bNo,133\nR7f2TkxM_rk,126\n_ZHytX1097U,131\nTVMg2iM-XQg,150\noCq7TUmVmt8,141\np5n3koQZVDY,175\nkM781iUqdrI,132\n-TuZo-mugDw,188\nd4MZPbERTFs,157\ntx8GFMF8Pd8,128\nkMkxtj-mu14,133\nuVNCyp4Verc,118\n_Z-tCU-sULA,125\noMvMqeThVPk,82\nhc51ExPQJcQ,136\neCu_yXPkwGc,152\nGukkVxrTLaM,117\nsRPTqsO_SoM,136\n1nIPSxCzfVY,105\n9uA8c4XGVxk,138\ncWMP0aAueQY,151\nBahgFrLFgpk,123\ntQlujXWP-5c,125\njXqcrXqphIo,128\nji9C_R6HLvg,137\ntjSf6v-dztQ,100\nvgGb9tSOKbs,123\nHzv74uI9Cr4,133\nNzzSr5StuCE,95\n2V6d3f8W-oc,157\nDkIr_I_E1dE,110\n4nGA9zBslBg,142\nog36vWGn5CU,153\nLkimMjwfjrQ,164\n3iZIOZrzbYo,132\nv8KA0GieSoE,132\nIfNhqLwtuA0,135\niWFpqo0_43o,128\nMNBd97oTtq8,131\nvpir9eGi8Mk,167\n-scWJO2h1ak,180\ndqbddxpASRk,92\nMlv16s4DxwI,158\nGTqz4duPdYQ,142\nHB7ienz0_IA,170\n4NLUpuo3HGo,85\nsdea5Iq5D_U,217\n7t7gG3XVqW0,133\n2Owa3LiOrOQ,88\ngI1_6ob3hio,136\nl1OgTkhFJn8,159\nb9KIXCf4U48,177\nDoKxkx0bYRk,133\nns_HTpxc-g4,102\nTHFVJBcv7W4,151\nQJOXvLGYEwo,184\nuIBDomdpK7Y,107\nXv_qHFUItVo,132\naJHRyOrRnQk,193\nSHvBT5RXeeA,114\n9WpVeYgwugo,137\nHO6yGAV4G0A,150\nqWlS0TrvHXE,154\ndkcsqI6hZz8,166\n3SIsMAk_Yhw,116\nRq4ucbgrV6U,96\n_nEWjcGHLJk,78\n_83-1qzRNpo,141\nb_W5rtfzadQ,148\nr1NHFfwmJZQ,119\nXYVKWFL9irA,135\nA8PVoyIiqrw,118\nzT639dQIhck,177\nSU6tW2cZQeI,233\naIekhk4NDA4,133\nvE3T2n8wX4k,133\n9XVy6vDxQDk,74\nzCfnEpand6k,126\nCVs-LAC1zrQ,105\nElyptgRxg0M,180\n7LBM8BX4UfU,96\necmRksfy--I,56\n8PDbRr_7bI8,147\nU0FBVju7fVI,203\nRotJK471KDg,93\n_zxlffOr1GA,112\nLVYMePfXin8,157\nGUoa3MFLEO8,116\nNwZlSjkXWnk,112\nBHZKSYLAecQ,186\ndzkjnPSbxJw,120\nwdrhl_I3-E8,149\nKCbte6Zhaqc,102\ni0KnbzRHwaM,86\n_gb6yX-Uiqk,191\neSeYw5yaU9A,106\nHUcO7rqSLEw,84\n6p6tevRcEXY,99\nCQlI4zJnxho,228\nhHibPPRQB40,118\nc--eNhRG5B4,132\nJnXCZbZipJg,106\nJPbkeLf4zU0,179\ncMWSTAEs-TA,178\npbd1pcdHRVE,220\npKdszbbvQGc,153\nEd5xIjGdqb4,181\nmvWdOSJ7l2c,132\nP9fOKOsEX8A,133\nBZVmJdnVVBw,131\nKZHIVNGrtLM,153\nG2SpqqxJiig,133\ntUZYyuHIbJw,131\nQNWXsYZWiiA,113\n8ypUiGzOsOs,133\nve1Brtly9Y4,126\nBLz2rixwPpA,127\nemda_fIsz2o,179\nccyTJYkiGqE,101\nM-_XQTwadHg,152\nnuVzF_r0kHQ,105\ni1jS0AMWtgg,163\n5ZjdYG61Wpc,130\nzx0PxIdo_pw,103\nPNRScegrA_E,127\n64Kac5hYLBM,109\nMjC0kVIUGYU,112\nAGCDh4gBj8U,171\nC8l7cD_YI4Y,129\nTv08VahBEBg,131\nag14Ao_xO4c,150\ncUEc9ZF3G3M,180\nydYaph8BQkE,127\nKhAtVQuAjVc,88\n_33snCsG6nY,132\nWSoMlpQ6yz8,130\nCBP-t2AJ8M8,132\n-UuYTHwZbOQ,247\nzKWgTSNMESI,152\na0dkF8CZxks,157\n4L62b92Prk0,64\nBUAUwc7g_gY,155\n4Q8CqPioUFA,122\nJ4Mq0xr4gwU,72\nrEAbZTpV47E,122\nukTcTd6wUD0,107\nCLAepDJtUJU,89\niReLGcSZtwI,114\nLUe27-RMDX4,171\nwRNOxvIxMpk,176\nrFPCkGmuUO4,127\nAhH1Yqw-gmA,179\nlO8EJQzkYxg,132\noY0IQEEQ35g,154\nd_t77ai5GEk,131\nYRi3-AbHXbU,71\njmFpZsBB53s,121\ntDpyGID-qHI,111\nHieAi6H3Gxs,107\nwavVceonMJg,178\nq40Kh2-q6X0,161\nW91ITNEiEF4,107\nW2o3KcKAldE,113\nsx_oR6WXO0I,108\nyYCW5Eo72VU,97\n5-MjWWLPdqE,139\naeF3Q6eTU5k,128\nVKE_B4jMF5Q,130\nHAqKJv1ndXo,184\nf3mAVsy7WbM,148\nWofqydeWMJI,131\ndzO8DzLZAuU,125\nettu4zJOh3M,102\nR4ODWXEmvKQ,115\nAuF1AN-ugM0,189\nDLyLE2LUpOo,119\ntc4zPfUtP8A,78\nLLrfSeyGCls,179\n0WY4XiwS8Lc,102\nUqStvc107-M,144\nbXzp-98u468,98\nEyzSRdxeqrU,106\n3FG9eGmAPeY,144\nhbki4pbNi10,104\nLWRuMnDhCy4,129\nQoSE9w3o068,128\nrHwc3Jc9rD8,117\nsjPnuqcrL70,127\nnuUuXO8D9mo,99\nfhsngAtICiY,132\nLEQNosAHrD4,118\ntCtZfBVS1Tg,108\n8kmCFBwTmGY,128\n-oRm-YxsEH8,133\nMmcr5WLNtZA,124\nsHTtCAH7l6Y,123\nLma2LDjYf5k,140\neF77Id3wbZQ,132\nFgF-RJYNzzY,122\n4gehr6BLqRU,127\nITN9541Gd8Y,127\nTvSS_-BohSc,151\nYlAmk5w3qZw,129\nTp84-New5aA,98\npVzqfF-qwlY,116\nAQa015gBmro,66\nHbWxE7l4F3g,157\nr6dLxmPng8o,133\nO66m3X5mYpU,128\nM5IO69jDb2M,129\nQUVXO7h3-mQ,114\nin5f7RMtnoU,126\nE6W4v8DYh4c,132\n-w4bcJF68u8,73\n_2EQFo-vIH0,80\nnfC8sEnM_5A,232\nBp9AClR8qCY,116\n9dnvta78Oc8,223\nTmNPJTt2ZsE,121\n0HSDU71_U-Q,132\n8b0SHCBsDRM,100\nxZw3A072F30,70\ntM4qhFW0FPA,71\nb1s-ewwrpQY,192\nxoRXgE6j9po,169\nygU2QenlIvU,118\nySpuo4tFo20,150\nlZ885HzflVc,136\nLxfe0cKOx3g,211\nNcmpDcaWa3c,124\nBaccIrZHkno,98\n8gGPt8Eg5lw,62\n5RMx6st2-js,172\nTYC_FD2YXro,95\n2N73a3SRqyE,132\nWTtAAYgzMjo,129\nEWvPNbC9KfQ,127\nOkrJTqGkSWI,168\nqb4e_GJzmrI,43\ncr-rgM1-wXs,140\nuuAGxjrG_gs,79\nF4-pp1JORFc,121\ndjIvmaYI9LQ,131\nEUC3JOXJBYw,123\n0p1fLn6_ExE,90\nrft59wPnoqk,149\nMmKjw9UGi78,100\nWrQdlQo-E5Q,118\n9_ouUNFC5AI,67\nBUKTDsI9Rbc,108\ns1hs62Is67s,133\n3D2hC2C_Wpw,73\nc-NDI-HvYd4,134\n01ovMSvDohw,109\nkO0kWTR_7tQ,124\nybbS5_qlkaQ,133\n71GRwoL1tdA,145\nAV5hAxICHsc,179\nLs2be_G7bHc,173\n3daIUo8UtM4,76\nGM0rZv1Lii0,124\ntp-eANZcnVQ,209\nxwMMpJ9EWmE,156\nXFoGxUA8btQ,114\nP7JKRDjM_Vk,142\npjmRcGHqKZ0,91\n2CM_ZbYvMDI,41\nBXloUAxs2wI,88\npoZubOWaras,116\neuffalJGKn4,130\nSpMvmtj35y8,134\nfHiIfSLjJE4,121\n55gq831fmzE,140\n_qqw8iHQASs,144\nDwyqcEjMMI8,202\niImMlbzg5Qc,132\nqGf3--y_rcQ,150\ntfsPfimgjFU,131\ndtVoa1vg8qk,106\nGU0BYEZb-Xo,146\nXUwybDr5HlQ,114\nFqJJfBeuxUE,133\nW1KhvPZmTgc,102\nn39lwOfvb2E,160\n5rKn9BNhQ0Y,189\nNCh2VGy8AR0,133\n0HjAT5lo4Ts,131\nZCYbGGfwbfk,131\nX0FxwPfYz0Q,121\nLU1A0sHWYQg,111\nRYlKhpi--QQ,124\n6CwHxJUF8DQ,100\nLqDoPnJn9vg,122\nZEshWoP9if0,100\nJuKhaVdSGms,151\nyUXdDmn9wP4,132\n7k9bFzgXeXE,133\nXr4ZDbix55Q,185\nbRilciIycJQ,97\nhsIdl6x2Lck,132\n_OzammfDblc,162\nEzocwDE3VK4,160\nV-PNT54Z2ig,105\n9ogtJYnjD1I,130\nal5NvjTtyTI,265\nOhH4bYnAdzk,92\n_NhQKmjXz7c,193\ne1bMBM_rgwQ,77\nvVzx25uDVaM,133\nIhTgiNhfF7k,143\nkzGR27NzXKA,132\nTArcc_WduhE,138\n2oWgJ75kqxg,114\nRitnM9n0jTY,128\nVsx0zX06F_c,179\naJoVRUNmqIY,135\nMbbKc8GJtFA,130\nAiqgMdj316M,134\nW26hbGkeEWo,103\nSG7voVeJRC0,149\nk3yUlJtCkJg,179\nVFPAH3uEo_A,76\nifDBVFHT1DU,175\nBBdShysGs4Y,249\nspI-9R3B6zk,111\nqw34BbyVK7c,168\nwUPc7frUlD8,126\nViXH47OcqYA,100\nCmKzzu5ELHU,131\ny1lzIInBQOs,169\nZ-Hyq9A4vXo,120\nM96f_K13joo,128\np9BRNz08eUs,162\nBRV1CDa5_Z4,130\ndcKdr89ngtI,147\nU1usNHIi-L8,108\nu0wNMcfOIXM,89\n3zW1STojfq4,154\nEmYyxwO2IJI,124\nsy7Lx7jY2SU,151\nAkr33uOKP8M,132\n5WnobKuNaO4,128\neIvl2bRW9S8,125\nWBuXu-20LZs,142\nG92KKZEiWy8,81\n9NErcOfza10,132\nPFbxA5HjwyQ,165\nJ5nmxHjPuvY,161\ngUccqktilDU,111\n9d8VhjIG6No,142\nHrK6dbGxq-E,160\nTMvi9NJlv_s,123\n4VFhBMwArqs,122\n8T2dOyo64Pk,121\nJx401J_oG2I,119\ner6wSXJC57U,127\nvAalnLmiZrc,123\nGVjV1SKLJ9E,117\nnEJKLKKO0uY,132\ngfF5C7j-2jk,129\nCuAXqRNpFdo,228\n3agyeKATELQ,148\ncqZVc6GtV8A,91\naMwqijj857s,83\nmx15l4L4Zlk,126\new5-ui5CvJI,127\nAB7mSGjpn8c,119\nsWEvLBzMpYE,115\nFEWZFq14JiU,121\noKWpZTQisew,169\nGeneo4_3VbE,68\nnDKhoXEpIq8,131\n8ExIPKUEZ-4,176\n1YXJuW9MNGc,230\n371S-YWcKFU,146\nYFWDhaI6BqY,197\nL4x1S9WYV9k,75\nO2VkpNsOM4o,128\n2tcG49k5vdw,125\nM3j9drozqlM,185\n73BHmDv4qYc,106\nhnXqavr1ZMQ,124\n4ln7gkWQXys,176\nVBgDKUVxAyI,130\ngozRrRCtj6E,119\nNJz68D8NcE0,130\nt_NZNgm66xI,132\nTFrdPPdwY2I,151\nD6_ZC6BywXs,180\nqUwfcycK5X0,132\nEYO__x8qn2w,133\n-ayGBx5Igyo,80\nnoLAdkr7WzY,110\nq14F8WFr7EY,198\nmxgE7XEbc48,152\nmokXxWsIsWg,156\nSRlmBs7EwMk,137\nAFXFoDiTtmA,114\nv75c0QugkBI,130\n7fOYHqR2Gyo,122\nbuOVuDwsbOM,143\nIiMacKBYPZg,126\nEI_QlYraNl8,99\nDfSToqJxCSI,133\neApCe2z67Gk,163\nFkoI5jde2es,177\n7X47UIYChis,141\nJEjsNsrZuHI,119\nBcCzxUMcrVc,121\nyE0aTqijR3o,133\nMnw2rmLB4_I,169\nGtg2d74VHH4,128\nLf1ORGBLKtc,108\nXF7QaSY-8lY,179\na_nd6odxaHI,130\nOs49ky9Aiqg,253\nOOGcesOHlDs,124\nnC-it_V8df0,139\n5u5ixEyjZng,148\nymWU7EuLXNc,126\nQgYPzXlF1xM,117\n5-Al98JQSUM,153\ntPJ_rBWLOxA,133\nKSOhzWTWuxA,63\nmTNkmMUcQfc,133\nx4CEkYJNir0,147\nV5U2yhrsXv8,179\n8svIExZz6Dw,129\nDDwsfoudwuc,133\nMxlTo0BbQlE,169\nIMF8PvqFN-c,113\nuNqwzdw5uKE,148\nE9v4TSOvOIc,224\nbzRIeXSIS_w,196\nQCXgvx0vPZk,180\n5AAni-jpFaU,133\nmCu3uKNGuZw,120\nynZqnGTUHcM,104\ngbPolHxofuo,120\nO2U0qOzibf4,189\neQBlcP9ENk8,132\n4_zn64bRf6Q,171\n3sr3yQ4mGbs,130\n4D20x3Pfg6E,132\n7uvW1U9UXKQ,128\nhYNYTcpIDSs,133\nL3eM2_0KE2A,132\nCgHWwYQ3XSg,128\nA7iVMwpaYmk,84\neXHdqulNiBs,162\nVtnxXJy01ag,132\n7_AiHZa026w,122\neCyr2_QTNVc,276\np2fHtpp_umI,121\n0Q4cKXYFIxU,124\nfv34SxLog3o,123\nVIVMDMDxnQY,97\n1US29KtfPrQ,132\npoQL9Yw2kNI,113\nrZAnSJl6VKA,136\ngd2-0TMNqZw,125\nmgr2tLYYha4,126\nPwuTr5z4Bec,114\nxsNboBgmN38,193\n2gKXgAzFV8Q,115\njthkBksMaXY,73\nWlwLa7Jh3HY,150\neuvUARojiiI,139\nNwqIdPSNr6E,93\n8LbCb592C0g,118\nlVg2pm0YdQ0,152\nIziNmIErmWw,132\nr9w5dIeVamA,118\nOEiioh2L3jQ,131\nSQGwcLUuQUs,132\nBt_VjoF2lGo,177\nXRxL8KW7dbo,173\nVSiiYMgJ3h8,128\n09MjH5hbF5Y,133\nQaKCmtbKf8g,127\niZx1W6cHw-g,133\nVn5ilm1jMgA,90\nTC_3tiLJC8E,165\nlmDII7sMIF8,104\nv98Rh9qzmPs,187\nCU0lA1M1_3I,131\ngaoMc6MgvNA,183\niD3pUnlGJxU,157\ntteCp4cbON4,152\nXmGKlWjQHic,126\najj5MxJEJ1Q,75\nEdDMvB9Y20o,131\nFSbcZ85iPvU,128\nIGlBlA7Vr0M,133\nABW5RN51NqA,177\nVkrb_0DiD4E,88\n5Gmliz8GsG4,63\nmVzdHEhC8YI,178\nzyIccO0lXiQ,210\nq3LxjwTz-b8,118\nAiaIf4aJgfE,70\nbuH0CUEx-_Q,109\nYbABtps7aY0,135\nTdPu6sQ9l4g,133\nbjqjgoiV6BQ,131\nkjx9LAJ6Wu4,114\nwmlNvVvfXNA,94\njSbmgZG-0Ng,107\nvTy2bx3jmrs,133\nCYP38A-nwLY,235\nl65KNW2ZGV8,129\nO7wmAaT-TBk,109\nGJgKIC581V0,133\nDwbFUmWjd3g,97\nmW3KEJNsT2Y,146\nDogM3vTZsuo,154\n7jO1tzRBFFw,102\nYGenu4ZFnmQ,215\nrsmsMeT8EYs,127\n6HwzVqcNaSU,132\nEgIkHYVwNrM,64\nn0Fz-ACCMHk,120\ntCDZOw9BoPU,132\nxhhfBsq7qao,164\nEMta7CcNgGs,124\nUcaPMGGla4o,151\ns_zget0Z7Xc,130\nM09CkmDfntY,142\nv_R9dxNFKWY,190\nGBDUy8au-_E,131\nbXq9Pa9Txg8,133\nxW1CrQu_H6E,162\nLva7xOJRRCA,179\nr8759Q-oR3E,121\nyDgZEL9-ITE,148\nE9yuGEux_OI,260\nvEfhLwt-8wg,103\nwEvrmiK_WlY,133\nkBgO6ctmq8M,90\n3_dOw0UilDY,167\nZiGf0aDV688,131\nSQj4HtDOjkg,139\nX6frLQWOSlQ,131\nLkLvZZiL3Vo,128\nFHSwbggymEU,126\nTmO1R-GqD50,92\nbMemNwITgjA,132\npwlgVnituhw,126\nRB2mOFx7jfY,102\nkFa1DI_4vEs,129\n4-Ml8OEXLbE,169\nLI0o8Nhig1Q,110\nF63pia00pLM,177\nMeQCLsUrCXo,80\nit_WqpOBfWI,181\nOC82kTAQZew,184\nbFWMtZmjwR4,131\nvMyTIoLhoZY,48\nueR0lJzIxWo,148\n_YYmfM2TfUA,164\naK1r7tBWnro,103\nhdhW0bChQwg,145\n4NKk7BYl0Rk,108\nz4QNCQD7LvU,87\nlRzsGDSofxo,133\ncGgPJKE_jSs,95\nP6PLrI4R4x4,102\nBoi5obDmX-g,68\nUXjZbdc79dU,126\nAIHlnQOkZiU,134\ntANIXMqv77U,175\no8A2gIt799I,130\nlPJzoxKtSxY,115\ncQHAH3t5oJI,238\nmD7NPkG9kwg,130\nqAdNnZqKGiQ,92\n-nboVp_nTkg,126\nVYZmHG6_7Rg,133\n3P4LUt0qcX8,202\n2b3mwmOTR3s,142\nnVpfljH55TQ,85\nGllksI139DM,66\njnuQMlB2uyw,177\nXAORGJKfEcU,204\nigD13c0l8Sc,127\nvMwPmm9UmtI,137\n7_WoelQbZyM,143\nAQaOCIrb9Fs,122\ngUjOiNR6HWo,124\nCmPZjdlK3Qw,154\nS76IuL89zVY,88\nUx4y_2RNi_E,72\nHSJRevnIGww,162\nk7WkN_gPNaM,198\nqLGjjHXyiOQ,155\nJah71XURbIg,126\nymA7OFZ9lF0,138\nbuVMAoBMl34,120\n_KpfRDVjsKI,126\nmXwYp2IwFFw,113\n4vOQu8rERuo,181\nqDYuDtyvVVQ,106\nGM5WI4MTXzc,119\nry88dGpJKZk,165\n6m5KyzSNu3s,205\n04tTXJeE8Gg,138\nHPeiybjTy3E,70\n6cwTpQj9E4U,124\n0p1OYPs14T4,117\n85CcD6t5cx4,147\n2p-FeYouCx4,101\nUSLznFhxNF4,202\n4KX9Ojp-yic,118\nwRbKDoyN5oc,128\n1HfdZj-RzI0,129\nzGrIGZifpwg,50\nEC20KdIDiEY,120\nx-HRlq5Oldw,147\n8XTt2uGxh9E,131\nKvVR17L6j0E,133\nIo8nlxyMTd8,110\nBaSoze4fhGA,133\ngMBkkaB0pp0,88\ntvaROfCgPPE,157\nfjnGwAftnDE,131\nc3zRfKmcqv8,133\n0uYmyOuu5xs,132\ny4nFzow4tLQ,65\n4EYZfAO5ZWs,155\n4SD245xSSVk,137\nGhisL6dCqV8,217\nA08XpT2q4Xc,197\nCdMDIBgp638,131\nqyj1tT-vqSQ,126\nDLFB0sj-xkc,87\n5XWG3eNY298,214\nEYoO_t1M-Sg,162\nQ1f_3XxcqKc,115\nYfUodLRuU-A,120\nXvs1TPM9g2s,144\nadFRKm9ezw4,182\ngacB8xCQ09s,105\ngN2ZP-q_qpc,66\nyFX-95l18ng,224\n1L-4-XQYxrs,121\nb3lLWO2d7b0,213\nNWO-iP_Sbtk,96\nhSAx87qd-fs,120\nIKrh9Q6RU8M,245\nsnqs566G_Zg,80\nFPyap6DbfHw,120\nTsGOIi6JI1c,112\nm5Qn-tIKwD8,133\nv14aCycvoYI,179\ns9IqypZYH6A,130\nZsL0rDZPGb8,132\nnIAzIbEBdeM,190\nrU8cUBCZn9c,131\ni5mSHPKEbas,133\nJVfMbJjbIpw,170\nRyObt_1eT8M,138\ndEfBtVYzWks,94\nPSNqibKHIys,167\nqHD4H60rCfA,174\nDVAIrYCyB1w,130\nDicBrlK4pEU,135\nZjC0F-xFL5s,87\nlyrv1rNWg0o,179\n0UrClwjpNA8,171\ntDVlpRBhtWQ,94\nUl0qToCSdfQ,100\nAdaRb_fg8dg,137\nkq-GLDVKqMU,122\n5hete-GzD9I,138\naJSh1zkPEvc,186\nC_L23E0FwCs,97\nGTRAmbo04JA,161\nhQogMjsahWU,133\niiMNb99KaYk,144\nPBAzBWYoR9U,185\n1fNnMtn7BiU,133\nVjo0hn0kAvY,124\nKoxDD5gYIYk,131\nUtS2awRAf5E,108\nxdQyp5ewyew,165\nzm2fF6nj6W8,131\n3qp3AeWmt38,228\ngMIvHGdpQpE,124\nXUxsLiSEi9w,156\n3bqc-TIPv4c,133\nEVPxub5VJMg,126\n7y8pbljhMQs,153\n6l60PJOMu3U,58\nqsdgNxuhPgc,132\nXX8y_mQIewU,140\ngX57uKMrxp4,133\n7qfgWGJpbgA,116\nBHx0kYdl9Nw,252\n26cjR330Ceo,130\njVsXMF9sbVQ,131\nhML3kvOUVZU,108\nmb63Ds-XWQE,195\nv4P4cS5jKmQ,198\nU0YkPnwoYyE,139\noUTQFpVOWGE,263\nMIxtdrML0rE,179\nCwBH6g7UEI4,132\nO3bTMw3bb5o,136\n5ijEAMP_zW4,137\njj0765rFtxQ,163\nQ92raMBaQ4o,85\nRf7NrtrHs1U,65\n43DN-b_k4ZU,149\nOLkKMHRUB9A,151\nmt0zR2uOAB8,172\no3sj7nGzC64,145\nzi7HyTbmVe4,90\ncKQf7jAt6xM,78\nCkW8xFVXPqI,98\nFsWEzJJlyi0,110\nIIGAL77OuM0,126\n_3wnaxan4qw,106\nah-M2AYI4Ac,100\nBgWOqRD9RPs,151\n2S8FhT1CLOQ,168\n7LFtoz9sERo,245\ntdMQZ0g9ykE,163\n2F64BSpClag,104\n_pWW7Xmat6o,145\n9oRspg2ktcI,108\nFdMEJqe55dc,125\nPFajeb2k24U,131\nsPgl1DyIn3U,110\ntgiPVB4iLMQ,131\nDBa4fJc9rE0,152\nyV0IgLYLoC0,133\nqFOp7gSiC0I,206\n0tyZ_m6t2Qs,126\noxxBXpnn2Jw,146\nZGcMRCaBh_s,131\nGVuaTdn9TnY,133\ntSJ3DYrCdNk,143\nVXobEyKCykQ,100\n0FNk4sNdPtQ,128\n-zXmGloh-P8,136\npjX20gL-rnc,122\nwZAxWIJZmo4,125\nOWXlfOnU6tc,106\nZ97maI23aNg,87\nR5YZoDFeQlM,72\nl6e1M2d4BJ0,179\nZIjuiq25Lzk,172\nQhYydmeQ2Yw,136\nJEcfknHqMyc,116\niBptW_7wlwQ,164\nAwUpqAQNZCY,146\nyK3DX2F0JWQ,143\nAy4MOACH9tQ,109\nk3sfGEvPoHs,150\n5-afmnViCr4,81\ngTgm44dkSCY,168\ns9k-uO50300,148\ncxFXMll7PWI,143\n4ot1Y-WYGCU,122\nIX3hYYzIyoY,120\n_gwHTYw2ThM,121\ni1hu0ErzPc8,180\nUs7XgnZ5OHE,155\nh8E3sSTc11E,137\nBdOG2-Gn044,157\n8xBrQp4oZs0,113\n38mE6ba3qj8,150\nTETjB2zHhAE,137\n944Xo94Owx4,73\nopxtApiyARs,144\nn2eSLdqwSYY,143\nSYM7Js4_I_4,110\nLGRbJ610dkc,177\ncv36jml_lAE,141\nzCu2iserep4,157\ngEw3FHiTb1Y,124\nkXBTh2sv4Lg,129\nlDWXlJG-FDI,181\nQW1kAlnQLd4,102\nfXcIZFeYivQ,124\n9B7Y2tMDlEA,143\nBNWF_QsuetA,109\nP2p410SndXM,123\nekwnp5L8shM,96\n-iM3hKlLS5E,161\n3mN85wFz_Vk,211\n1q15xQhI6Lg,125\n2RA-7QUYrHA,79\nNBRHljOdrh0,183\npkylHxUSxLM,129\n90li7tw4CCM,126\n_AdhEPNDxeg,164\na-SnsqKFHLY,114\nwrO6W6vTjV0,147\n7pk5PLxQXJI,113\n3izxrCNCbUQ,134\nB8rq--5MbZ8,134\nJd86VeZU89A,130\nypw7AA7tf-4,132\n1OUMXpkRHNA,93\nDYfo3nt-O_U,169\n6GC872xb5dI,118\nhU0v5lzJzXo,132\nh6nVYkTWTZw,132\n4OcM23Hbs5U,128\ng6mF_yokyiA,65\nNdDOmuWz92I,107\noTTfW63fY6A,166\ntSWhP2gwhms,138\nZM3mRir3-LE,211\nzWzRkf2uwQk,133\nNKaENwBlGFQ,176\nQK1Xnd7cPJw,189\nyzSfVpQ-1ns,89\n_58I2YrkKdk,125\nkSKnJn8gksc,132\nRsnwTCPo9RI,71\nh1q5X5asH7c,145\nvMrWJki0r8g,133\nMuFfh15AMLU,119\nlYxVM8oNxRM,133\nopyCsftx7D0,108\n6MrxdKGZaWI,91\nXbuSTq9TZSI,123\njK4lxjvrhHs,196\nd5bK1xSr2dY,166\nkGXKWSmXrEk,104\n-YykCz0f3Vk,131\nJpdTx3k0VoQ,129\ncBvFsIF5GNE,131\ngYTKHHhPk08,95\nB4ppeyE6UyU,199\n-PAIOy41SjQ,154\nXVePWDEck4w,133\nGNdpxi9F1AA,128\nqVNAGVSKEBQ,116\nRVM5hFMx2Kk,103\n2AeJ2VHssPI,151\nZqZZftydH0I,142\nIKFthgUbCdY,132\nIANjTUtZimk,145\npnzYOL2o_To,133\nRgofngIgfsY,128\n58C7ep68GMw,158\ngtHCnru414Q,120\n9LpOzLU5k70,180\nXw2cUrd_Zt0,143\nCHV9FhjbFLQ,115\nlLX3wpgs32Y,75\nNgcEbuMsrS4,79\n7uO7VSK2XMo,86\nlaWUdsC-3Pk,68\nKXIJv1NoXmo,132\neIo_S0aHyfI,151\nkjzRZCxQ1EE,115\nh8c0Q6aqZG8,56\ngm2PdV3UPfc,81\nq-H62GgHjeg,155\nvtxo451I_Qk,191\n1QJXKLwmN14,128\nYwzGw_SMwAc,97\n_JtPO8an9xY,94\nzQHhbhtpJ3M,131\nLS4oNHk0tlk,218\nuMug9lL1Sgg,96\n8TlVDn0j98E,152\nsvBPXPXgpqc,118\nUeIxzCUMEsg,135\n0Qkk8a1IVxQ,132\nTtWqejfxiVU,117\nqDkEnNVpn0g,266\nNEcaoimX3qY,131\nPioVmXuOv7c,87\nZVHIsLK07ak,127\nfSOh-vTjWk4,160\n-tXr3ask1fo,110\nxU61FGJ5aHA,104\n59Ntwoot4_s,136\ngknobwKAStE,104\nqX0rYjUdFik,129\ny1O2kicdfzo,123\nRrDdgbo_NaE,152\nUG7lwsjxwz0,164\nfqteEi-ypuQ,102\nctdY2KcX-lM,103\nAbRlLFpC34s,178\nEkRzpc98bwc,62\ntCjohxqJ-0c,127\nEcRdEs_Vxtk,60\nRxogsPx7JwQ,133\nfgDsOV1YKpE,136\nObAOGLArxGA,132\nYKce1fkBRrc,141\n06OkoPlUGm4,196\n7NReUd2_0u0,148\npyvthgZdQhc,132\nUqnjC1YM5pk,93\nweqGiMyn8AU,73\nQVw-cRLFWOI,119\n6bECCbRJ_UM,124\nnODBN75vrH0,129\nZC2SlM2Eqa4,132\nW_URoElm3Ts,67\n1VzqryDpBfM,51\nKK2MOKkkp4M,167\nAEhitq9yTss,147\naokJADOVMC0,124\nuki4lrLzRaU,154\n5tMAe05kTXo,182\ntvON7JZAqzY,186\nfrgfTkjkcxo,110\n4oJk7-aMiNY,126\ne0d5svC0xQU,93\nOrwz44-_XSg,139\nzGa7K2HO1-Y,75\nbOEcxxyOC-s,139\nk4WEx4-yh-g,99\nhLBV5Mj09q4,74\nVyq3eN0DUU0,81\nk1WKpdhcJSo,121\nX6UG7H2dcos,123\nalvAo3qQRQE,115\n-cvGAF7LbqE,125\nm6eVFDJA9EM,196\nl3vcMU002rk,147\nhpfufHZI0yQ,130\n_INsYrEpEFo,121\nGeqbeBDtYkE,131\nEwC2ZHxoDu4,133\nTMspI78Dptg,133\nBR2Bcczm9EI,62\nLzXKQvdRZQU,167\ndPfKQTaEcEA,66\nVKcpoyC6RMA,86\nrj7e6WvyClY,179\nnZy7fW9IO0s,134\nViRs8qaB5YQ,135\nou4WG7HhFZM,133\n5XU9Sz69aKA,75\nL-3Kx6xAUTM,165\n0vklrunpo7c,118\ncJEE1-5uQXI,152\nnEFAuOF_8YQ,192\np4t0OpJJ0MI,129\nAridlIyM9ak,122\nq6LqVs7P-pI,135\nFdVyibVMumc,131\nnfoIqJWYqX4,130\nbmIx71yf944,128\nd7ye5zFyuso,114\nJZsF7-7VBYs,128\noQotF_oLWTU,67\nsZI5ebqgfaw,120\nwbrTwrgyOrg,76\nX_KqKO48vwY,75\niFpB2_WOk0Q,133\nKAal6-tvckw,123\nwJJDM675Ypw,131\n7zDmlkn1gbQ,128\nkKHr9gSW7HM,133\nYI02lc3SxXs,214\nmb2bzOdITdU,126\nvf6PZfksmfg,157\ngif34AkAFIg,92\nmjPh_oYqKPM,139\nfhGy66B0CIU,139\nR66c0UiUCZ8,98\nT7uncpUQ4GE,106\n8QLB_CGDDPY,180\nDXT4GZfUONw,139\nqPVAxNvS1YQ,156\nhq-jlSdx5Ck,117\n2WGvnOdTfGw,132\nsEWuVNk2TKA,90\nrxJiE5EKnD0,133\n1YrG1iLwEWk,133\nmHA7T9yOI3A,133\n3rrfqXl52tc,164\nW1N-a0SDw0k,87\nbmmxeZEnsL0,138\nV53g8B7Ljqg,106\niYetsX9JdIU,130\nMRTCRVf4ppc,128\nG9VI6SExDms,124\nckremwNAupg,165\nr3Owzt1HZkY,139\nsDB0bxWhS4A,127\nb4CDHFMO1R8,112\nTlB_1W-qc14,138\nS9Wi3A3skb0,128\nrL1VrbSK0IA,152\nm4MdMCS5EeE,112\nbK3dyRu67A8,123\n3dzw4t_dB5M,107\nWTMcikRZcBk,213\nS-xuQp2fW7I,102\nWCbXSTBBueU,93\nR6-LDKl3FOs,154\n8DYT3ysI2UY,140\nO7LsLRMEg1Y,99\nNx0Qte8Wfgg,71\nm8oSm88EIhM,86\nQ5o7eYFRp_U,130\nwNWy3YmM3Kw,124\nbTuSlICST0Q,131\nKWWQP82Gqt8,92\nCB-a6fmj21U,170\n_gOQq1ygJgY,120\nmNcyNmX9B_A,183\nsytZ2amRbpk,147\nqF5BMKYv94Q,111\ncErG8_neSa4,121\nQfSjs_6MZOQ,237\nBlz6dosZ5oc,68\n2JA3UQCYkQs,120\nks2GU3XYXvM,180\nVQnDBor2tWg,108\nik_WAfUpVKQ,108\nedDfsrTAI1k,107\n96T06Ema-Fc,132\nPdmE-Ga0f5s,165\n8WQG1IHkv4k,116\nTgaoKPuLtpg,129\nkWrOmEtXk0k,179\niVojYtEpstY,133\nfJjBf7yY1P8,86\n7A8pZX7GjR4,110\nUPnwEYjEMP8,87\noaqTzvd4aq8,125\nwcenhpP37sg,171\nWTaUYNnX91g,131\nlj66AQ2uzug,156\n70NH2okaBY4,128\nQ3LcGb0DGM8,147\nJJ0PocoUWVI,131\nXlZUBUSKbFk,185\n2myyH9c7mYM,165\net7jz9CSPqo,230\nKGf_Z5s891U,165\nxRT4EyI63jw,144\nM7Bao8cJqWw,132\nzhGOkVH91z8,130\n7nHXSTzcVX4,132\nvKsWNzKjVEk,156\ndZushQttfzY,136\nqEJNox8TCOw,153\naKnvOP-1U00,126\nzE0vrRRohs0,116\ne6WyN4z0VGc,159\nf7131IkiSCg,144\nplGWKSHrzCk,157\n_P6ywXKM8kc,145\nzgXQFwcTJsY,122\njW9D4lY0TUU,86\n_pWx7N8gSoY,100\n7X59lLfqm3c,190\nH1_mdoiwhBY,80\nNV9oKGj_CcU,103\nmxnq8jkwttE,154\nhyopxkr7RuY,158\nyxOMkjGIZYI,169\nfZrN9LabLQQ,180\nMZq_z08pLqI,190\nFQH9s2dJe50,111\n8H_aePfIMzQ,118\n5bTmqPTQPOg,201\nMVY7ci-BTI4,166\nnma6daFY6b0,133\nSKC8iPeIvEA,163\nlsES3-QXzZQ,108\nxpQ1_5xZuKY,144\ncl3sud_uDhc,180\nL5Ub_8HT6HE,127\ncycPu9OddzU,186\nXsHBLhORcls,113\ndq_RCN3esGk,107\n-yMT2S8fJ9g,168\n2pw_36yxgXI,85\n5Le4OlAvuME,133\nQcFKRqQENrI,103\nwcN3fX7oiSQ,181\n3WlMSPpQlMs,167\n_pH9HcBNO2I,115\nA9QknjLLso4,82\nhAf3IBKWubo,282\nPmNdhL9_nPM,171\nK8yA801TQVQ,184\nnQuKmZkCDZ8,138\nM1dWcUcCAgk,256\nAN21TljYB8E,137\nWd5RTjtSSxk,133\n5x1FeyWYp9s,160\ngZE1B2zL1fg,122\nA_CGtuDwl-A,212\nnL3o4MGY9NQ,181\n0SNckpLgK_Q,137\nintjK7aTbjs,155\n51IaQuowCcA,218\nILkyIHOOoq4,149\nURDzGjLruJU,150\nl0IIvZcUH_s,203\nZtgEJOBzX6A,149\nfJDl0RSPWBg,198\nA8xy9h5olhQ,146\nZdhLQ1toP9s,177\nZFrDw6oQai4,210\nHjQPsZjrgkY,181\nov5KEgF0hgo,138\n8aK7LsC0G-4,111\n71_zrDEkRc0,78\nZOhpE4LjR5E,152\nVPaFRrTJZ4U,145\n7p9YNPcOJ-4,147\n8jfrU0a-Ayk,162\ncRpMdH1D55o,165\nHYctFVhe2Rc,135\naRK4YcnTtIk,160\nIqkw8K2hT74,299\nTKszvumsyFY,135\ngrwlYBNyMk4,199\n0QNpXi4k5eU,132\niLH6Fzd2V94,175\nSBIpGdJA_5Q,103\nv4np7L0aJd0,155\ndVLMfoIop9M,202\nDGOews8SVLw,134\ndjPS3AC9DKk,95\n_8w9rOpV3gc,214\nEOavA469Z24,222\nwbROoMNi8Ho,185\nwxlD2wwIgVk,94\nBpP_rFPFUPM,200\nF8q-K4BTbEk,102\nHRmLJScvW8M,146\nbN7jTZKITG8,157\n4dNwoRFjOkQ,131\n3IUoqFHJ6wk,147\naaGgRabJ0NI,159\nZDyEERuK31Y,147\nD6OAWdqi-s0,88\ntMYOmMWbUME,124\nefkuXTpfxhc,140\nUZnkAElIe_c,133\ne80zdJ6pWlI,136\n86Vd7XFiYZA,141\nrtn4-lDSB80,112\nykQ9g2HT2sU,203\nSUr7fu-LXj4,212\nj66Fsl_q5Ig,202\n-pix6UL8ONk,134\nsrpCm9gPmZI,145\n5Cv1ENey4yU,163\nULElX0fO5JE,150\nJvTQZxz-KBk,82\nGLQiaEzx03A,106\nA9MNy__qBaQ,135\nq4feCJ__GwI,177\nUvSGGd3ewFI,199\naDU5CcINqyI,176\njTkt23CfSp4,108\nXdtbL0dP0X0,156\nYRpgfi7L9Rs,121\nhp3HX9PAkcA,185\neYCV5Zm4Ov0,208\noNySP0X32eI,171\n2XYukLbcAew,145\n89RJwGDFpC4,178\nuNjrnjiEEY8,168\nKwpO_4Rq13o,196\nMPQojemDuDo,109\nceWNY5eNSWY,134\n1CjLSig2Hv0,174\nPahRJMVNho0,164\nwmBGdpkagEc,200\nOqvD4NC-s9E,186\nKkBUMdYMw-8,123\nQLkt-SfsCsQ,207\nMBeBFVoomg8,165\nAGi49DPszHg,174\neuCWQcrBwPY,148\ny0DYykDLU0Y,145\nMNmdm8voYFE,235\nHj7OFElSIlM,116\nOC6SxQVSMHo,173\nu3E23a-SpF0,98\n-XnDw75Lp1Y,68\nbJ09DFHWeXk,83\nyzSjRcABUBY,176\niropsnsCEjA,209\nGVqoyzJUzJk,133\nPJ0NkZgbrUw,205\nfb-9_MV15I4,65\npLXw-1RPsJs,179\nWiQ09XUO_NY,339\nU1_VGnnMle8,170\nAD3baa_nijI,200\nXEF8mU3Vanc,175\nwstckFfu1z4,163\n0nEWiH0pYR8,175\n29VjYkPPY2s,131\nUIRhpmPhehk,104\nPMFU8b_2cC0,140\nz79ikmr3JY8,239\n21rlL3oxEIY,169\nqlfI_AppyIk,138\nbCBpo6H97oY,136\nKEfLE_bvsSo,155\nVKonjShA8Rg,230\n6kktAYxwo7M,133\n2iD5pPwbDJ8,212\nRgPuswoKZtw,149\nAURxtujY4MM,195\nXcgNkFuPBV8,159\ng50ARHr0mkA,175\n88dS92rgWhA,134\nD93GR0PGUD0,139\n1mVk7wal9bk,177\nbtMisVovQKk,79\n1etjTR5wYhU,145\n4N-rVUkv-lw,119\nvTUM5grJwTE,184\n8sURhgulh7E,167\nRRfoHyYJnAc,96\nhFfQhVgQU44,235\nzDGDWdvLCrM,163\nFBpdDE96XhE,81\nDgpMTfkui0w,151\naWNJKbGrETo,187\nKJtmyW2urUk,135\nEWSHsRBP88Y,175\n_PSZEvsYD6o,76\ndroww43JVyA,79\n5T17qRlPIiA,214\nUp7TU2t7_8g,217\nwZ6Dlo8z04I,171\n5ve2E8iEbSQ,177\nLiioO2L5ZA4,75\nnLkmfL6IVQs,152\nWXeW1HiwAtE,154\n0B3lnfdJ_iE,155\nmpr3XG5Tzmk,171\nZ0Fm3Ym-aJM,89\ns5F51a7xkiA,167\nMFmLZibi7DE,179\nVn5WazNB5sU,169\nzJMCctR8ivc,149\nsB1jRg2iQsg,134\n8TwlBdCGS24,178\nfYVAGoTb8w4,179\nW9d9oZEjvGI,230\nvq6ofw0hqkU,135\nOv6nBKuu6pI,194\nSWgcv5EwMgI,132\nlz98akbX_NE,185\nAaF3SiD4IYM,177\nCt21N7taYlc,134\nAhbCYVILusc,189\nfdw_aFH3To4,151\nLBm4aJ0ZcqY,179\n0w8oeXvLXOw,174\n01rrDGEzBc4,130\nFdy2A4nbNik,103\nr9ae_frgcpU,178\ndSdY41CWixQ,217\nIXOq5goG2G0,186\nc0N60xOU9yk,184\nQNlazlRan6A,161\nKZJetTa4DjQ,104\nlp1s4-tc2U0,232\ny7-LHFxFS8o,146\ne56FOw5rIhw,130\nuzTuGHYRJ9w,166\nBrLcbi68R_A,240\nuPQcsSuWlB4,133\nf4GS9OS2SRg,132\nU4fHvCvrTjQ,155\nLw5Ss6z8IoM,93\nkKH0IEVUhNw,120\nxmbmcfVs1u4,180\nGBu5QE-EsSg,144\n_RG4iCmljGE,60\nVcH7mgvr2jY,194\nj1tXIl0snEk,125\nUQes95Ouciw,173\nOxLmmTv6CTs,178\nw294_yaM85M,147\nILbn3iOiOiU,134\n7CVfTd-_qbc,218\nrHvCQEr_ETk,168\nqj3TqaXp2Mg,133\nywRWNlbXD8s,141\nmXgY4vnucPc,239\nJKJsu3JatYk,120\nLbPm19yBPis,179\nawuqJuO5WOc,161\nWcmGju9lzAY,168\neWuiIzqZryQ,158\n_Du0A1y4Wh4,167\nvAaBuA-ZeuI,183\nH0uJcY_yylE,143\nqsyYw2x1-js,179\nijBU9q7fb3U,139\nnbssDN3Y75Q,138\n94pYLwdWTW0,134\n9Wfswn2lkAo,157\nuOHMPcGgInI,185\nnWwlcubR7s0,180\nApuFuuCJc3s,163\nJJrTnnaEZ_w,146\nEQWtaLTOwCw,273\nRHz9rXVt3cQ,239\nNJNAE_e-gM0,147\nbp5HRI2hEW0,164\na3bI7kbVBwM,122\nPBHYbeg2nao,178\nTvmzk3Ce8-s,166\nCMPJ23f8BeM,147\nGbZZ2TDY5dA,178\nLgNSetWhfhw,152\nt3nm6EPiuyw,153\nPPhxsJho48c,192\nHs8mVGI7uVc,167\nUiqk92r4luQ,208\nHl1mw0-APy8,180\nZ4kBo6FO8bc,120\nVbj9JcYGo_w,236\niy-SmSGYYBM,120\nHRkSVkOdXcU,93\ngdkJ2WwMhAg,177\njz7WEh-DK0w,129\nzNT4XSI1doU,87\n9g5pe-B6uL8,133\nTpz4Dl8focY,181\nk7ej9E5b8js,178\nF0ga5pmQjnc,139\nwUkrRABqkzg,146\niog7zMkTVmQ,227\nP6c_kQL3ZdU,165\nFgG9LDxHHv0,223\neCvY-ualWwY,195\nX_4WgfjyOyg,170\nDC3rYQXOTjA,51\nBVAo7tAxtVw,211\n2aKkSYvLvXk,178\nVDwI61e2_6I,129\ni_SnR25Zoho,208\ns55ay3OA1vE,188\nzA1afZS6G_c,149\n2h6NGVrMQ20,247\nDstF9Ge_6wI,142\nIGFdF06VVF8,174\nuKlIPUovwIc,151\nuETwKF_fgKw,205\nu_EXq_1slS8,171\noP_Y5LgieXA,178\nUX8ua4_z-kg,173\ng8hPeRFRiHY,107\n1PRZi8t38OQ,102\naB5g_U4qo_Q,157\nzllKdwaYi50,175\nSxJcAxTBKOk,123\njJ8rgMkWFWA,144\n9NTvToplMlw,147\nLSUPf57En54,152\nw0qfQaJtF2E,184\nKKsaYBeEr1w,172\nSCn7SurOKdw,85\nWrb8nkLKkxU,71\n23zu-1Nsqg4,178\n49rUb1-JaIM,148\nsohDA6TQuiE,175\nljifYuVnH1Y,144\n6O_dprt5rts,181\nACvjoLAtwnU,214\nnixHRzTvCUE,179\nA7a7RtpKzYY,156\n9T4kKk7zH34,141\nn_3Fsg5qGfk,133\nJfJSwQkRgbk,160\nu4T7slD8Mq4,134\nWDuIl_uPY_s,132\n_WUyZXhLHMk,118\nJn23_pn6aAE,208\nf1bk5a_jaEA,238\nZyirxKE2aFs,136\nKu3KKPEi-Ag,156\nKpxk3UkX5s4,119\n37O1H9YiBJo,132\ny1-gPBJ-C_U,126\nD1Iu4JKRGIM,96\nszDAoChHbrQ,134\nuhOCeh9oGK4,81\nr29P93wUiMg,134\njF6JN1VSpmY,74\nysLBlalu91s,239\nTunbuB_bBb8,196\nBznPcrTUYvg,238\niktC8imMBnw,175\nYwn0PmxYgGo,115\nYZN59OZIz30,156\n4xg-5TeGvQY,134\nzoo3aMvQdMw,162\nzvY-EPgYB4Y,216\nidvqLiOeLgc,199\nhhmPqQpJWks,135\nxA1Uz_TMzhs,167\nwDFOO-dC-Nw,167\n2GvL0jFY7u8,116\nMnosttqGIfw,166\nM-LhdLDYOps,176\n5nDwwq0ANPE,180\ny4fdm5gdvnE,159\n1-9573qxk5g,100\nT8qZ73IazvY,135\nsSu-nM25zqw,179\nGvHBefStM7o,136\nVJW2e8_cIfw,179\nXPKzmSSQ2xk,115\nX0vQQA32UAs,133\nRfGOwHvIyK8,126\nO6Stx_mwAVY,168\n9IVd9X91fiI,126\npJCgeOAKXyg,237\nXUSzvNtSsFE,200\nRGaBXM3EHUo,118\nBpnlB0ILpWw,202\njk2mjuWhQ_0,134\nDJTF3NmqF7U,125\nnFpK9Si2uUc,150\ngxqt6x5ThcU,138\nEVy-c7ZaMvI,112\nvVqCU0iWlFM,196\nGQM4dSjjQuE,196\n4UzVKW_Iqi0,131\nGW475l4IoyU,116\nw0A-YZ0Yd2Q,164\nENmpNBFdwFQ,85\nHBj5pxrFyE4,181\nFTzUto6toxY,175\ntB7Ml4tO7d4,171\nFpekkNyDPcc,202\nftDkeswkEYU,258\nxNSWp7Hb5tU,147\nFf20ZDSj7d8,134\n_gVrJIUmCqU,103\njZXuLQdIrEg,80\nQNUbwijCKfw,86\nzzkjLhitH7c,238\n5ckqhebte9o,179\nYmRuVv2V5Go,68\nWCM5kknf5nI,178\nkfdeG-hRX7A,141\nrvpFERo3ZnA,200\nC0NVo07t9UI,205\n6H6RGCBUcf4,159\nvaWlmr2BwuE,168\nxUNy6fZy4WE,178\nf2FzrfnfQPY,158\nOFDJnI4RczY,161\nj6kHHLVRPak,164\nubwNf0oYYZI,266\nNKhTArRP31Q,124\nJaTAjmSppvA,174\nTazw08OZpwU,90\niMlCK0hr8Is,105\nYAmnMBHMPso,114\nRG4exoyldqw,244\nBfRUV4g8sYw,156\nQS8fJMeJqsQ,166\nF70k-PX3p0o,174\nBLSFQUjyBQo,188\ne7qjmOp9G34,187\nwWKQ2aOTfN0,131\nF67qzjMABFQ,172\nT4wxOGDv980,191\nssgm3-sCY-Y,132\n43mOz_bosUY,155\n2bvUOFDgo_c,155\n2DCjXk4qpLo,127\nfWgpZ_2oYfE,135\nPxuQ1n3xaRQ,134\nDYAdSce8Rd0,132\nFVGKgrxQP9M,103\nkBErrmmqnkI,222\n2ReEFgaq_9g,171\n8PALGqaFoFI,154\nEzRtOVxgKCI,94\n9QJ2mqXdr5I,184\nPGbBz0m0pTc,170\nDEKdqE9W_i8,170\nz8NcTAIV0Wc,174\nsCr9YZRDsJA,235\nmWB4xc6-Pdk,179\nmFl8nzZuExE,217\n9svQ60inP0g,161\nx7S89GM5N7w,136\nE7mB8U4nCCU,155\ngQATrdAXELg,178\nndpVsMLr424,127\nwyRpsUOH4f0,180\nDbORPqtzyx4,175\n-XuS9JQgu4M,117\no6sD0PvhkWc,157\ng0PEGEYvZd8,79\nxFoBu7P_Kwc,218\nSBSzom7RbCs,160\nAALREbJZEZk,260\nZNzEreKcfUU,189\nQlDqtuo10fA,134\nrvQZ6MdHSEk,100\nhaeQVOcIyKY,175\nVh-olAK5vrs,134\nQP_o0yWJYKM,190\nwmEQUpu_zeA,176\nGh9kc9DiDnE,155\nbbX5KM0tFVk,178\nvhEOInyNr54,145\nH6ZNmRApuGw,169\nnIW73heJdg4,132\nLSD1fq3xDA8,216\nWQLTwtwUnEI,152\nQ0IHL6WGFY0,149\ndZjgSYTxWsY,134\n3gSOZW-vNFk,156\nY5EkcuhBwiU,219\nddGbf6I8UH4,167\nHi93mYJyO8I,88\niwZzRrzGLfE,155\nMuIkmspTRo0,224\neMyuRmZNaTk,220\nx91Nyuo55_c,176\ntp1eVLXEXm8,176\n2oLqQw8jHts,127\nCKc8xHhxP0Q,162\nh8Rxb-9snJQ,134\nleSpIIaEblk,134\nihKHvNOTcwk,177\nwO4P6Yz_LZg,162\n4g_oMoSgIas,131\ny3E0ot-4Egw,177\nNcMHcR5IzEY,128\nTfbuiIc3pME,158\n1cHRBd6l2UM,178\nt0tIXAlLX8s,165\nHexOzLEvLGA,148\nsC78ImgOLQI,110\nZ0k-0HG4fR0,142\nINrZ0l5JbrA,132\n9ecrIMjE4GQ,155\ngKJerAxfSzw,165\nfJlJX4Rj_WU,87\nICJi_nMcUQc,74\nExvYKH9z-9A,152\nyAo3144gBw4,133\n3U0EdULZGes,143\nDyCfCl46JSE,115\nGewQTlvA_3Y,103\nYOUt-qq-snc,111\n05qid4p_cfw,249\nEhyXopafOeA,185\nlpBYHa7VDRk,238\n7mPDafCQ5iQ,210\nLVGZy2YKAh8,192\nsnkc0SvbR4M,170\nHXubLg3o3qY,138\nEv2Z-YUO2f4,128\nKnI9MBbPCT8,168\nrCEbhr55ISU,130\nj_3wS3OIgc8,162\n9VwWPnHZMrs,120\nT7kklmGWLDk,146\nDUjB9LTtzGg,169\nJQOay4rjHas,198\nDdNfSuTpDbA,112\nLgpg6frCrvw,224\n9lnovJPbLTc,181\njaSSXV5AFHk,129\nYfdRr7MWax4,189\nUlxZ06150xI,179\nk3TpBfnaEmI,152\noIlpo2mj_qk,113\nQulj96h_-W0,143\nLmsnknGIx74,151\nDrOLHuvOMi0,119\nPLgNzEctkO4,176\nzDEPob22tHs,147\nwhFoAKQ10gY,69\npjF6bofXAvQ,171\n6HrTgWedKG0,185\nSQH8if7dbqw,128\nwMu4IBsX--I,191\nAUppZZuFnJI,135\nUYzF0CAcN3I,174\nYFIIcUg_C4I,152\nZrW_1_rFaw0,110\nQId6ztQeHCI,197\n0g2o-CfakW0,132\nnSH_S3LDUYI,164\ndye8cQvz0Kc,137\nldzjtk016bY,242\nF_cS_kmSiRY,170\nTRgkvisG4yg,97\nRQUwqHaBuOk,192\nnmaCobIvt2w,138\nIBRkROD4KAU,112\nTqRBV9xkrAU,82\nH-Mr-QmgheY,153\ny2wupV34DRk,160\n6qZZWAScCn8,295\nISQMNhOd96w,177\nCUnezbuG4fo,101\nR7vFG7jQZGY,155\njBMZnAIY_Ng,124\noo5SkNM3c1Y,181\nPjPEnXNEX_E,95\nmfCwgYR1yS8,120\nHavLrFJcqMs,109\nc9oE47YW6YM,148\n2WZkIK0cbLc,120\nThCnJ2m0exo,75\n_JoP_xhSETM,209\n-qGU1hiiJfU,118\nrPuW7T25Yuw,127\nfz_9uPJnGEQ,128\nSP8YbyZwVeQ,185\na87b-bsz1Mg,143\nJy2_J5WCzDY,180\nsVfuigRSl8g,127\n6R3tTi_m8VQ,133\nUYhBmdQ0VWc,169\nmQTPziHf9Qc,156\ncbH10o2VTXI,179\nCyJglP6k8lE,194\nIvFBobchMoc,192\ntAHCa87P8YI,147\nrxWQfQcLAUA,149\nAxGXZOLn-U0,146\n9tqaHOTOasE,187\n5qE52hylNT0,180\nnUpmxMzBCjk,128\n6IJ8LfJnJvQ,159\nCUYNZo-8cDM,140\njf_-d13-UNw,150\nWEwS34zf8mk,164\nxPI7JdEPCP8,160\nu1MRGbWEI9M,132\nsH8nzHarprc,185\nRi408Ie3zQs,179\n-7uYlaqkkzw,174\nBYQ0Q0oqYOA,178\nctLnaDxvAFs,465\nEHqhCxcRkwc,233\n1qYVJgixc3U,295\nG90tPiniLd8,179\nueeK1V8j-WQ,209\nLjKWOmIeSQs,202\nzm9XOZXVyyU,175\nOLZhL2R4cfg,132\nKhOfO0lI9-E,62\nbq5vS1a-smo,181\nVvNX7pOAK58,266\nOHCVQcnqGcY,169\nbmBh8DSdcnU,168\nPBaQezez_UU,169\n2nclzm_QlLw,155\nuqVEYJGg3J0,159\nilRq_PR6oi4,130\nPIAvGkpGZXw,113\nIB7BvgXIKOs,133\n5BLZxhN2lDE,220\n41BnkhKxWHA,123\npFmo1haIgtA,133\nGtqIqWKdlD4,170\nyHjejU3HvRE,117\n7l79p5apaqQ,170\noS6AtbHHjSo,134\ninfMR62l_dc,130\nG5_nIhUCuhk,180\nrhkkbjKcaJ0,183\n_RsxXzFxqdg,123\nXyEHIOZf5yE,102\ns2TbUio6uF0,175\n_H0EYJHeddU,197\njh_EME9M-mg,133\ndiNo0cO2Je0,231\n0OqXqd_s0ho,165\nCNuEnlaPuls,149\n0ERIepJUdPc,214\nUrCi_k2TXOA,85\n3NRVJdoihjY,115\nm_Wx68QkJSU,214\ntVubEM2oUj4,151\nXT2IS2dn8gM,166\nxKYgXZQuqm8,86\n89OqkIyNnfQ,154\n1Pk2FQUbnm0,177\nT2IZiCyLFmI,149\nGP9FOGsbYsw,129\nCre1DOpQFx8,278\nV9RhgEHIxkI,182\n-YaPh7shnWQ,176\ndj0MEV7d1NE,103\n0v74ANWBqv0,217\nJwlhFfOC5Zo,110\nmfkzA9zjRdM,181\nm3qnMx_kA2A,139\nPRk69Z74hPs,129\n8bZMd3JUu0c,87\ncEyfq9j80Do,173\nhtHKbsUKDDw,247\nCG2YRWPhfiA,183\n3gLxv0qizPY,134\nUxo5LmSDK34,71\nsIGoScxocUY,196\nXxWjAkr7ujk,192\n6_eBGV71X0w,210\nUqPsrqpwLmU,126\nVgO0K_0mi1U,165\nUsZNj9srzR8,217\nLFO-xqbWYpw,216\nrey_J7jIvno,150\n64tSUb_LTdI,148\n8DOn4fKtpEc,109\nRjDv_swo0rY,107\ngVdIiTE1ykg,176\noZVMUM4k29o,172\nJJ0IOFvfu3Q,143\nposwRRB_2i0,287\ntgHcYxKjwVE,102\n5XZcn9qR5SE,131\nLTyelOWIGh0,250\ncmkZeTX5fq0,210\nwSOMPH85zvQ,239\nKc2Hv1tPMig,145\ncgGOnelqMi8,186\notlsrvaxpdE,172\np07sXB8H3zQ,104\nnA3-p6SeWtc,118\nUP6UWl1Y1-Q,156\nDrrwX4AnbMk,119\nnr1sLngjJXQ,232\nvM7QMLTm1so,215\nXUnfvueexSk,172\nduU5cdQtpSE,134\nKxoJQx_MgAc,182\niQPvgoJ5l2s,187\nE-OEyIQ12Mw,196\nALSUu2CSBOg,155\nkDSiyU72RpA,122\nOzg8nU5yyWc,193\ndMri-2QuZtI,178\nS-2cloMm4Lk,190\nb60DLSEemEY,155\njCSsP6ooQf8,176\nOg88KQM5nVk,174\nty68MEZQPS0,178\nulFxMs35-P0,170\n4CVFOnmW6v8,98\ndcSalZZ5YjM,171\nln_5-pRR-HQ,148\nZbtcQZ1yDjc,142\nwIw19V0b390,215\nzpsNG-exYxE,102\ngvANfpQnohw,178\nnbxAMHD0_dc,177\nQrXSZJ3am_s,195\nc6mLa5_GvCQ,185\nfegOYb4_PSk,134\ne0UZ0rc0KH4,144\nIW3rXhNFyVw,98\nOArHd5pe8Ls,133\n_-9Pewr-JgY,167\nxVWAp3OLYTM,205\nAd2-FiCzJxc,293\nWu9dzms2w6M,158\n3sP7UMxhGYw,241\ng425SDBoDBI,212\nHGgfJkZAx8Y,134\nKQzNG70KguM,178\nFAK7ssvx3oE,159\nETu553EnTJM,135\nkIIY1-f_rBg,164\nPMjbPEGDJ7w,209\nQvVUxPcMZQE,97\nrSAWPBO-ewA,208\nc2k_kuU84ro,204\noNiW2ftWINg,178\n_bUaFRyP80A,119\n-OMiOIbouaA,114\n1didVrNjTpQ,123\nZUmTlIUmbmE,173\nM_7k0PCONF0,176\noXGJeQDRuxE,134\nH7tyPUAH1lo,180\nku4GcEUQ0TA,113\nG-lDaFtb7eE,102\nPj2K4FrqTmw,100\nDhUcvFP_Tas,198\nbY6jLt3owBQ,134\nKMHmLy9C2hU,135\nq7tLJC4pC14,180\nmIGCgzqFR0s,280\n880-MqUhhEk,127\nz08tZYDrY_8,137\n9v-2_YOVxGw,134\n2k6F2WITgac,168\nLh3y_KLTwWc,133\nan9Zfn3IZCY,193\nJNcNy7bJxDg,146\nCkAf_qzHNwo,205\npK35em6gl0Q,175\nXN7uqQnAxIc,192\n-0SHIbuEO3w,132\nL5jFIw9yBbA,88\nCtYTXG1RFQ0,148\nvvBW4Szes1U,135\nPv2MlxSgwv4,175\nT5KjTcbQVMs,210\ns0ADj-PzbF0,132\nYkfEc-PYJ8A,134\n1spvdwcb7jg,171\nQ2-Jg_2l1FA,172\niU908ncV2q0,80\neGtDmvtBZQY,154\nsxo7GjhsghQ,77\nGgnrvt77YOM,152\nnCw-UbptqD4,168\nuvZImlL51Io,137\nOtjQUwKlR0U,133\nJmSmZRCl6A4,127\nlHxzWs9NcS0,174\n8FHO7Ry4_Jc,96\nJ3Sl8B7RzUg,133\n2kK1wyTEMUQ,180\nCp3FHbNWi64,80\nLJl8SSI8MHA,87\nyadi1fTl4p0,181\n6moZJqA4iuc,168\nCyUZe8xRNnQ,166\nurNeTIDRg6A,134\n2FQ5suBkp6o,193\n99wezqewopU,127\n06456EaXTVM,226\n9UrJ60MVNao,145\na3GgzkKvBVY,113\nS0_bjXPRlio,152\ncvuTnguNL8g,173\nkgd0wuSVHXo,176\nKtEzZuRX23M,143\nr2GpJzIdoYQ,165\nG7RTm-c2aXc,168\n_uwVIMdk7hc,177\nBK9Rn_s8idI,163\nQQCv4rxlHVg,125\nXG3hNDnidfk,166\nCn_70ds_Slw,172\ntiu9_CUkGn0,152\nInkyowbQcIs,89\niLJtz-2nkGk,168\ncyUf4tLI53o,92\nccgVkEP4hLs,182\nUciEIYZ-Eos,175\nsPlsA3_6hB8,160\nnYvvM0FXKWQ,164\nMYErK-XLJv0,157\nPnNS71ethmI,170\ntaGt2UqFdm0,134\nW_qA7Xt_UPw,118\nwcjCEUeC8nk,174\nWnrOQRdqiQ4,133\nrsktGDtzKhg,176\n7Ecvvu9ovIU,158\nEPa8iQyK5mQ,101\nU_74PjS1Epk,189\nSZCtfLaCWO0,180\ns-vP7WgMkpA,180\nQYUhwlQe0IU,178\n38jXOaoZQZI,146\nYh03Vnp8pCk,137\n9T7zP4Ui9VE,136\n1JHqVsXnQxQ,134\nb0kunBGZmK4,182\nelpUGB9Ap1Y,134\ndtQLSM8VvfU,137\ntLXNDzc-2fA,236\nFb1v9LGaZ1w,168\nx35VnGsGrFc,133\nSEn179T1Apk,243\nD6XNq3CrDBU,173\nSCRZD2_Tkeo,168\n6QB5kS_JcuU,172\nzdOov2A4-os,115\nupoh7LbKZR0,153\njpoR10Zh0ig,176\nfYbbxzLGpbI,173\nAmYSeovvscE,169\nKD5-tY6m9Cw,208\n5U8scp5J9Is,131\nnP-P4IYLJWY,171\nxgX9WrVFO0Q,191\nX3nIJPj_7J0,126\n-QGGk3M5S3c,176\nCRjB5ImoHXk,140\nrxkB20Tpvx0,156\nDQU7X4QDX80,159\npXQjNz6Pyzo,147\n8ZSuFOPBDmI,162\nTChg5dQ36WM,186\nKgnrxjgHngA,132\nqYEOmZzqX28,242\nlIbKD5ovjok,167\n3oIQCt6GVcY,184\nIOUbfaHj2HU,145\nW4jxHLn-00g,173\n4MbRVVP6rPg,126\n9ykMeXdU_Ng,175\nB9SkWFyq-EQ,78\naP22KbKvaMg,179\nBXlYuaycRbU,176\neesYEZ3pp5Q,173\nxzBC35K-vug,209\n2WJjBuXiXK0,200\nF2V5i3EyRd4,149\nLQFc7IKhUuE,179\nyaWmlDjvMs8,179\nm-2WmcLl_PQ,193\nWBreuW9LLSw,135\nz2NhPvlzjcg,167\nWf6feYvdHs4,140\nDBUXGB_L5q8,249\nOy9R8mpKSmM,134\niaCvBhskyk0,169\nPwBs-mLkZyo,202\nXHuo5etrwvY,178\nOjDuQ7O9XUo,292\ngA0u3Iir0CU,213\nZPCSC8NM87k,231\nweDQxJm9K-Y,191\nQ4KRYWe3ngs,133\nYz7PedIGC6A,168\nxe6kO-SJYCk,103\nGgBt0TlbwUY,230\nmvH6IhKpehk,158\nNM0WEaC8LcQ,154\nPSWftrnsEcU,172\njMqI9UV3ob4,61\nb_SJOg2q3PM,178\nIGCJTr90IZk,291\nmkG2YdCogPY,187\nluF2eyiYlyE,164\nVjRhsK7p8gY,162\n9KYrqmQdvsI,183\nD7LCHE4pTe0,151\nTV1QrgMYa3M,113\nHOePjj-M63Y,195\nBFAfiz1daR4,80\nAWi8x9ctlps,179\nHkXGq2kJAlM,134\nOYSVICsTq78,148\nnVNjq6BS5c4,168\nQkrYlP8-Cmo,204\nN2Yk8EvrrBU,189\nsIbYUg1FKK4,94\n5CrXuWBxVVk,103\ne8EAVtsvfxc,139\nkTNDYiONld8,175\nqjUsrdzDbuY,134\nekSSp-zvdgk,134\nDOmIpiTMs2w,170\n94k4a1GI9rY,114\nMxDtKTClKGI,151\nQc-E0u_1Ei4,144\npBd7XYjjvRw,179\n0K6bVf4ra1w,134\nuXUPYAomwDU,154\nlKStI-3GHDc,134\nLehcJeNbFBw,198\nUqXJc-VxorY,145\nq8NwQoVkAr0,259\nODIZKyevVxQ,132\n7SZcDW_1o8g,197\nyMo3ISSjYn4,164\n2pCUsMk0Zs0,147\nz4216EVIfdE,158\nVv9KJYUnVvA,293\nZObhl67NCzQ,106\n_jl40Gzivhs,210\ny-1iNc7NzNM,176\nNFj82X1Fdh4,123\npl7JzW6eGZg,134\n285uHkPZOkE,142\nwgb4Fz7D7wI,98\nX7Jay8hlfHY,79\nmD5CrAC4LPI,76\nUs1MxXdSHw8,159\naSsFjcw8R3Y,152\nR5BlH8IPv9Y,252\nQsY1JHFo9c0,190\n4KkCEjawUHM,205\nDTZylvspsps,138\nLoCaeI5RffI,204\nchCsCDHJZtY,175\n7pzz0eGQdyQ,175\nRNPPrvhTKuc,131\n9YyC1Uq84v8,116\n-W_4EZvbrEI,134\nkWHOafRR0Sk,96\nSJSDO3IHsrs,157\nNqXxeZTvuYQ,87\nNO9Qt8NB7JQ,131\n8O9FIRPJRXc,159\nC9rUREflwDI,134\n8R0wW6GTMk4,119\n6i7cWj1WqDU,133\nPR1WWVvDs3s,81\nE6AYVGKx6Es,134\nlPOo7SzR7Sc,151\nB1bYkou_mnY,160\naak6BqNR150,172\nbNFWITNVAKU,130\nNqWsINBcm2o,181\nsbb9Re-KYlE,109\nEAd7cMSm4Ng,120\n-Xb-ryuTDlE,135\nch_JeDyNaFM,245\n2XmLLBZnvDg,267\n8wMS2SCtVM4,169\nESgYnVVq9AY,180\ndg6PaO0e6wA,225\noBeMUEkfDtk,120\nnBRbD7RKrK0,127\nlfeYgfKa2cY,134\nq1bV-D8cSz8,122\nkCxqmweKXZ0,159\nHcGpEScyT5o,139\nuraQr7J0Tlw,164\nLoG_2u-0rWo,175\nFOXEyMTnekU,134\nWXne2B_inx8,140\n4o1x3FxQLf8,148\nlNFbbWOM5FU,189\nUXldWskFeFY,288\nGwtcfnmV68I,80\nc95YKkIbTGg,167\n5-kt5Av0s2M,181\nqqAzmt1d8kU,75\nD0p6abBHjZU,210\nTp5Q4AyqFOM,143\nmpBQ883QIUs,205\nM2E0xzfvDMw,134\nkbpdM9ORaI8,116\nm-5pPy7zuyc,69\nxCvyw2bipUM,176\nmkbZvLfg2Yg,145\nAdKWXA8npgE,103\nwcYfLYh8ixg,197\nWS8Sc1nCi8U,134\n7SybWD4iYMA,193\nOxBd2RQI4eQ,134\nvYm_2A_cg0Y,109\nAUbfGwY4Fco,196\nwyHOKleZzFM,172\nVwlkxIN9tfQ,134\nkDDU-k-5v6s,172\n5Ehdu6XTlBc,118\n4Tu7_tAe2tk,121\nTHmBqW0zLuY,282\njXIFh5Gwqno,177\njEav9DdL4iI,151\n91GNWPp-a38,172\nuycL6ws3vMc,106\nCdVuOYKr2cQ,136\n-HwJeE-iuIY,159\n69v1tcsG6nc,194\nvRUQ_q5mivc,181\n9WpO5zPo8Dg,203\n1U146AYx6-M,197\npdwGNiv2q4U,79\nGOpFSBhGjuU,67\nYSOUTJUdTgs,263\nHBYW2199vpo,151\n3ND0jZIthFo,95\nSSQJIBb_9gw,124\n-agdK2N5wX4,169\nN_qIfvDbZjc,132\nql8RBlb-IJQ,189\n4DKTOdul0_I,140\nfLRlh8AHh8k,112\nZekXmBuhS5c,133\nqu68Gym5PvE,133\nK0QjNiVA6NU,160\nDrt2w_iit1M,129\nDRGjkQ_iBL8,135\nUW80kY7-HkY,166\nl17e0M4TTBA,179\nD4x3BaaJ2gY,126\nZiNx61K8QT8,178\nVx0MQxIFBW8,219\n9WQJxS6-2iI,156\nnpkzgnKAgXU,134\ndzabuGq1wIE,171\nAvPljYL3Sq4,240\na2H-pXAgx6s,160\nL_nh3Rtyj-Y,226\nctB6OIa3Pz0,161\niHQZhYadNwQ,147\nlLeY8-bhEuQ,114\n3QoYCS0iOq4,157\nH6Y2GNQfNo4,135\n-oL4NpO7eAw,135\ngGz0wTHCHK4,233\nCw9FQ_X-gP0,133\nIJnig4nc0xg,219\nlh5IiK9eQhA,132\nHgqmQ4RN9vo,121\nD0yfau4bAXM,123\ngo4K4rCFjMQ,230\nOhM4B8B6B28,100\neJ93IIgvVyI,135\nF0YzQbNdlpI,105\neHj2IgKYofo,132\nZvGaiZMBOOI,144\n2dOsofLx6jc,134\nKBCL6GBurNw,165\nUz6jhOP_nm8,179\n5eNVHUxlR1Y,161\nhwe32v3I7R0,192\nvdMEu03CjTk,162\n7yBBNmR1CLg,176\nD4E8UpMb8SI,133\n5Zpj9911g6I,145\nS-EfnfP_cGY,217\nWn73_KG11Wo,123\nTf9j5763-Gc,163\nS99xKAAo43k,134\nusmBCn2WxYU,167\nsYWS5RSmJ-s,102\nsbZB1drlKWI,97\nWo4U1SqnRpA,180\n99qifKCGPfA,116\neg8WzaSrZpg,134\nJZCM0ZW-GMw,138\nw-nqMWvpzY8,170\nnprJvYKz3QQ,126\nhIMv_pWXqFY,177\nnyJ00UjcA0c,179\n2T01Xm19LJM,155\njT09lgUTdFg,117\nKXTBm9eUiko,148\nbu9YxTb6gf8,146\nP9_EB2_tUGA,95\nUFiKhV_Ay70,146\n1GiYwJRA2NA,180\nQ7--4JW6y6E,160\nPuUMs6fNGo0,159\n92lO2Bum7v4,151\ndEAaneP7a3g,259\nQgqXAXhRvYU,178\nE_PIi8tRcCo,196\nCaG_6UWfyLE,170\n4InwO1SSp5o,170\nCLxHRE-Knmc,140\nddQe0gG79zk,178\nCHBydX2-I50,169\nb4kRHpvisxE,156\ne0oLpONe5O0,263\nSTqJ_Up4iFg,165\ngMCgkXpEOIY,211\nZUchY9Hw48A,178\n1DvFzLRPc_w,91\nfTIIhYZ_CzA,156\nHcrTqof683A,164\nAfNCKS2a3nU,145\nfwZw8vujVMU,187\nWNAjVd38Q1E,134\nP3WCkLjKW-k,174\n5PaUTnk9k9Y,133\nYn8ZE58MFEc,174\nYwnX8My7428,202\njgosH8zc83Q,129\nO0PAT4-kuY4,181\nD2l0Qk_lxo0,243\nvMzDPwqnJfw,162\nAmCR7Owu6R8,131\nDHXHxop1gPw,133\n-6IX1nWqW3o,174\neEt5ebZFVWE,201\n9UE8ospTDgA,180\nZjEnS3hA1B4,168\neAp8Vm19uQU,134\nLiODoFVKD40,180\nlGuivq-6xrw,278\n6IdswAQLBKk,202\n3MhzaQnLhRY,177\nL2inhzv1Rs8,209\nCN6dU8mcuMY,171\nMwjIdhPU43A,100\nEdiZzm9bA2I,83\ndnrJELv76n4,239\nvmpSyqa5kXQ,109\nW-phG8nc1Xc,173\nBTJ-smMan7Y,284\nXSX3JKL0DpU,145\nfn5dXUu_qxM,288\nbfKu5Jc8TjA,148\nc82FD6lh2LQ,117\noyuHdD6ORAg,194\nAvPVexWamGg,126\niKduvC0uNs8,183\n9fEMKGFr-Sk,157\nkPE7ZCGjw4o,225\nwXLFg03in2U,132\nHV_SMZR6gjg,159\n8N9oQUJJstQ,175\nEIrEOL6S6sk,247\nvtEw8hLJKzo,89\nkv-hhf-kPkw,164\nsa9AzlyS9h0,164\nHiwu7Hu2hAs,191\nskrdyoabmgA,286\nelR_OgHND1c,136\nznjpkKX6bek,176\nFNA0Ejpu22Y,151\nz9uP9znP-mA,206\nSnbbz0C_ZiA,131\nhMGHJFVuqpg,266\n8m3HqHIpcWU,159\nYe3l05tkIcQ,171\nOkZ0AKNb82c,131\nxIsVK254RXU,122\nkzZQYnvw-6E,183\nsgB8cpEi_zU,202\nhITWJ6vE1os,133\nPTQLBv8sgDI,194\nsr7zvUpRxIU,152\nKGV-R-dVuGA,174\nFhsFZDrRvoM,225\nI9r1j1ZKBYk,159\n-rkhqMzCUnA,110\nhX-ezXejcU0,166\n9C5A-YyMLnY,175\nt6w2XWv2A7M,196\n4zBMw2XqgWY,128\nBICqcEvzhVw,133\ngK9-i9Y6LQM,157\na-qtnTRl6HA,177\nUglfLjHUNbU,133\nJyEvCZ8kwW4,157\nTiJBxtM5iKw,175\n9pF_vfzjbpY,179\nKM6fEMvPvqc,163\n2UPj8FTPaXg,178\nFlQd5p9_XvY,183\n4t7oXxFAlHM,156\n6SAzrCAaFG8,164\nV3JGZdiYwIg,168\ntlSscKeO9Cc,169\npwSkfvXD_ug,188\ny5vxDOma1Ok,134\nrvYoAzmAcAI,174\nCDTnjLPgMKM,133\njorhoh0NNQI,177\n43OVm86-4rU,271\nuo6yyV0N7y4,156\nL_l2ii_25tc,292\nTs8WRHAQvk4,193\n2-qyN66Kr24,158\ntJya-fbl4R8,190\nAeM2PgL5hm0,105\nrbrIQjVNl0E,137\noJAYU5a8zTs,180\nk1jq4jHNYpg,152\nDyxkjYmlzhg,286\nJXiJ7GS-9aA,113\nCWS1CWSAmjs,177\nRFtZAVgf1Yg,98\nNC34ce5BkWQ,68\n7nWfsF7ThLw,134\nwXc9z1SmLJM,212\nMtRlOvoq9Ls,133\n7XBizI9jArU,227\nnXV8YHeJfOs,114\nEu1EfSDUKFg,157\nJSqbIAemGcs,148\nS0hTkEECANg,153\nDZuHwW24HUY,200\nHfgFZz6gCOM,137\nR_rN21oKxSE,177\nivG26TnBWGI,132\nxLdIkC6qcow,148\nUB1xsj0ZiKA,209\nlx420G7IDnE,135\nbhtJNsUfHIM,147\nqqhyIIZt87A,99\nV9mx4UV8DNc,116\nawhN-boYW_I,136\nbbtIanfT4oo,135\nMqiNJmj_ODg,261\naecYY1vUiDU,154\nIAaXyDc1gjk,205\npVqOcGEbZvo,136\nSTh780YGgIo,134\nmySMw3VkEBE,134\nevQcKvkQCl0,166\nPitkS4aYur8,214\n3K3KlDWq-qo,173\nlCF6_l8gtdA,194\nREWaiDiKDIE,147\nYtprbvdApU4,171\naqTS6jAqmUA,179\nhowhfMAoEt0,139\nU5XIY-s43aQ,171\nSEmSJCzcxyc,154\n76dXe1ePSrQ,92\n6MaOE8YiJy8,178\nGHpQUOP8vcE,153\n3IVugy6dK3E,145\n4l4OmZk59Gc,164\n6MIGRX1AVKo,179\nLJ8UoUA2_uE,179\nPaqNqocHJ-o,197\nGSrtUVzdt6M,134\nqB93c2JU4uQ,249\njwnPI-d36vU,159\nXUdBdsMc5EQ,133\nXlS3PKbK2Wc,173\nl46yjkR0SqU,178\nSy_thm1fviY,134\nRxLb-Iqyqps,127\nO7jHiw8IyxQ,174\n5YgMl4JQxKw,121\nJVRdRQaccL0,134\nfBTODK66ymw,190\nup1wTd5shfc,167\ngV6Y3OwR2n0,187\nX1SJgm2hIAY,175\nBCyz82L_61E,151\nvIgFGJRGlkk,132\nSiwL_3yOWRM,120\nfAiJAcgjWeQ,148\npE0vTejjWuk,105\nDtuXEqWdWCI,133\nt1RkYJaG9bo,251\nLHcbbXpKIrc,152\nrrWLFKZafAc,133\ndxzktMx1jbY,207\nQkKXJ82vfJU,127\n2AmY_TaUh8M,176\nbPL9A5VyKrY,156\n2aTxwlSE2mw,153\nWMFxWlrpnLM,146\nlqnKLTA2GVE,177\nB41g0ZjS8M8,193\nU9WHLcpvVz0,125\nwdcRrpMHIGM,187\nQ-_wlz6jYSw,159\nwpQ4R1jlFHs,169\nXF5omSq8eRQ,227\nDsMU1n2HUDo,174\n8O8gYNK3ULc,179\nUz8w8WHmWMI,144\nju9K6nk07iE,229\n_CuE3lto5XA,192\nJf8Sheh4MD4,131\nkjLqB63ihJE,121\nP-SVl6Ql7xU,180\nrLVwKpyUwWI,141\nio8KUjovuYo,168\n9w3jysNGqeA,179\nUN5YOny_U8g,129\nPQ3Qc8bOqlY,191\nyiPqxnLMKbs,110\nsYdqpWTQyaI,230\nUaCGeQifvdo,100\nws7Ve4mehqs,188\nNE6nLFq0eqc,168\n8ty1025m6XQ,223\n018kRNbZj0I,168\ndHxPxFeI6GQ,145\nxmcpR-iaa7o,161\nEaizaMokSqI,282\n9V_GlFhNX2g,194\nr2x4QueC2As,194\nW08YzBOfqV8,128\nnUxHF4O3GYU,148\ne2Cuc3oHb4U,166\nKC2YLhHiXv4,119\n4f7U_YO0fVc,159\nBLElh2JGufs,223\nalhVUKh36_Q,180\nnXrsB2RMo2w,133\nK2zen737biU,174\nStvrI9z9kLY,123\nRz8gvINyqvg,403\n4gSkh86zcaU,193\nRxPJd3_j5O0,179\nuhDhzHrffBQ,239\nDtH30Cz2Zec,75\nk3oMPqUTxCE,172\n0m5VGBc8VrQ,143\n1lt4euqZLsY,92\naF4SahLqcxw,132\nnAbqTdINpOk,111\nSMaYCguBHAA,81\nrJv6bP5Lvao,224\nOflOQW_pkvc,113\nQdgk7Q1dn34,101\nTZXt5K8U_HM,120\nEchEZ7BmRos,141\nUoNbV-qxEJE,178\n6o8Eq0LEpf0,152\nv8L3Lyit8Ro,183\nelmk8Hsbw_0,112\nvh-mdPoc92Y,179\n_OZS09-GVTg,176\nXNZRK35VNrk,130\nTKpYtp4Io9U,194\n_3v30bJGaCg,137\nDc-fBk3yoqs,199\nbTPrlCglvFo,187\nQm-fzB7OmEU,144\n4sNyWmYN-rM,172\ngzbYTUXZkSI,213\nroST4TM0ccM,196\nZcO9A2DK_8o,219\nea8yIgbLo7Q,151\nNnDKut3pxoU,192\n1YpDd1nVthI,180\nLKJOXcFUSzc,166\nNZzeLRspnMg,175\nvhmFJKHhdw4,187\nRf161T4RyxA,129\nUTGEXJSxPvY,155\n-EZS68nXwHo,133\nGZ3fgYIUrJU,166\ne48T01eVXtU,128\n_HoKFu0orAs,158\nEL3Ma917bug,134\nRtxMw4sua3Q,134\nuTUupV0ZfBk,160\nk6VGwPFIctQ,180\n_0X1jPgLo-A,175\nhV55sjy1QFI,179\nC_06Kac9rpg,185\ngDVyEzQNvhU,175\n1DDHNN3oums,179\nt5GdZx7AS-E,189\nmDdr_qQMu5Q,91\nXTtjLtf_Tw8,288\nfKpKz3dysY0,139\n1GbNS7IcCj0,135\naB6SfK9qD5Y,90\nacBlGJZCIiQ,151\nJpQqyJbdb44,186\n2Zi7Y1-rgts,137\nrTvJrOUuOTM,171\nqwwLKFCR4K0,94\nrt3FEbzjM3o,138\ngcPY3RIvtCw,240\nlNVb-ZNIO-A,199\nKjWPSq6-Ets,220\nAUCbYHVFnf0,176\ndShLedyR4eg,138\nvOQ211AFtLU,134\nvVmZO3W0I1A,162\nKfAm5nyHM3U,159\naQqAUXKn7t4,203\nU6GY91u1I_c,211\npDjY4qorZrg,201\nZoL1epfoq-g,137\nEd__PtLnaeo,154\ng4BV-MbeTjM,150\nOfnIw7Y8IUY,134\nduZLaW_6qLc,76\nQEfuINMgcnI,91\nHMQpYC2SMX8,99\n5uvhg1AtZlQ,188\nWka1m7CSEro,137\nSriHCm7dhyw,179\n4HOgujwklBY,172\nvDzbcWty6m0,129\nFp5iPmpZiNE,132\nK3Po5dqfTgc,122\nu_6tnXDfxBo,157\nmbzNdI-1iUc,184\nL90uDzDbdV0,172\n6EAVY3gCWpY,244\nTcnr8WoHAOI,173\nXGoagkYcJ38,135\nDGW436DH8Yw,142\nOByY45anMr4,164\neMHv9pPuDiI,140\nIaeWrM5PlmU,178\nwka4snE-AmU,216\nYIqAz8SfE2M,173\nUc0Cd3LErFs,167\nhfNlv4HLZ5k,109\ncWj-sdxFiY4,133\n7bCqTdKJPFo,151\ne5LZR3vCkzo,133\nkvBiMHIuFbw,145\n40ryheWGyZY,119\nWbcZ3k4Mr6Q,102\n80fHUAW_up0,126\nOTp5qNMBuRY,179\nOIf1BFh8UwA,175\njypAc6XYFfA,130\nSVtUDd2sBwE,124\nFFvaLp9s1p0,134\nF70EkgLs4DM,145\nTjvHy-IYET8,89\nvYH5urNq1Ao,161\n9oS260wm-UM,160\nlK8cWFLr5qE,189\nJhMO7RA7-VI,147\nC41s4A5Wq1Y,159\n0_1NU60qHWs,151\nuun8fsWOaeE,146\naFnS18LM8Ws,186\nOfXLQt6B8v4,170\nWyqeTjEcUTk,114\nUPBK16auS2c,248\nG61d-lcbLT4,147\nAX4i2YZqE14,164\ndwULCnXeEOA,177\nYmGBAiHnK0U,148\nMXcA1Ow7Lzw,127\nHT4kxxCpWYM,101\n2pOMv-jM5lU,115\nQnDgw7XXaOU,121\nxWYBaNVEpVY,239\nbx_rua3EXFc,208\ntt5BJlT7f6I,208\n9E1ulvRRYFM,107\njUgr32wtqiM,205\nyqvlrJQVAP4,162\nuNcKTuAqLag,100\nQeTaNmnwFHo,177\nTFfe7ZgIVUc,180\n-npMZStX7dU,109\nM9C1xAQdSKk,179\nExsSDD8Lpsc,132\nqiAPls8Te0k,164\nXHCai_8cuiU,102\nmmH76155CuU,114\n0KjO3YwlhEE,250\nwMr2d10-xf0,162\nNQw5e3HJgfk,98\nKekb8jHfDxI,150\naHoNp7pBeCA,198\nsIwsArbH5ck,170\nyiOUEU4KG6s,162\nBN8VnFVqRRI,106\n2Q0IkYxSo3w,182\nztbbFP3r02o,177\nYo5vlaDH-1E,104\nuAjGtAOqMQw,130\nmtsQ0CR4Z28,133\nGwvrEz7vTZY,179\n_7DVsN761n0,195\nb65C_muXajk,164\nfR-2fk_qusE,179\nBuQKVYgI8S0,106\nwHgeI9HnroU,128\nUDINZf4W4mw,112\nhFyZEmmngOk,103\nxxoeXvIeZXQ,171\nFE63fpN64EQ,116\nMLCZ_B7FKc8,113\nSpOd7BwzlMU,125\n5mcjt53aqlE,127\nBo8mRH33NCw,151\n8pDCGWKvBlk,162\nhgqJjr7pBa0,133\nKEc0SGkBDJ4,130\nzH80pWTYSLg,140\nTfsGgp4go6k,125\nH1sEkNAlW9w,103\nFYZrWswLpu0,89\ntD8f4Xk30bg,97\nn5tMCxz-9uY,159\n6hT5xOszncI,146\nWuer3mLqIxc,230\ndJltbkhK6-s,138\nCZfwkp00apk,100\n_ICXfAWaISQ,147\nI5RQnCgbn20,125\ndJhNjpuc9eo,91\npW-ZHlM3RxI,93\nZpwDcgHhFDQ,176\n1lVlP8o6t94,183\n6MJJXdBz1q0,135\ngpjYU0C2yrY,179\ngIig_bRnDz0,122\ntJwt-LcbRIw,168\nSY40M1lhknY,211\nkFhDGoJh4O4,145\nROXLPqlbJck,158\nJcC5XdvOWWM,124\ndfLN2aPZ5sM,145\nUu2u8T7tS9o,190\nVzXMcMcBwA8,169\n2gUFZCRHHvE,177\nxvZRXcg4iS8,171\nMc_zp1s60NY,118\nmIeU7y3CGKQ,151\nvcsbzGfvqJQ,75\nVqL0Mr9uNL8,133\nJJyK0EX6s_Q,86\ncj8XKnVdCDs,143\nm-L3k3ElIQE,195\nQe2m1wxb5_w,174\nizWrKfUUP9o,148\nuR7yS87K1tA,199\nn0MX1a8uh3w,88\noNoOFf527GU,106\nlZrD7xTi8Ss,178\n5aegHe2iS8w,152\ntr2hYRUEkHk,152\nE9pB6_WUR-U,202\nmji8ZFst3ws,158\nROeFmcvZRf8,196\n_y_We1FV_RQ,147\nxNc951Hq2WA,186\nEqiDQxAatPQ,186\n4Ls7S2nvf70,85\n7Mz5jmOePsk,131\nnvldRH4OC_k,134\ng3D2eGiLoeI,119\n--UgPWRVt8A,195\nBGZN_6xPw64,115\nOGEfW_fV9ZI,77\n_uXfbxevYyg,186\nsg-d9ZBsiWo,87\n34FTDewDftA,162\nn4bsNkDyF2s,92\nCsfBuhXV2lA,167\nV4SyBSgOIgM,168\nGaIcAaHFc0U,239\n7Z3ccysbMwE,150\nJIsrqAWzVoA,93\nPECLt8uCcRk,148\nfKGjSXtCou4,139\njkZtAzrw3Q8,241\nTcaAWs46kog,167\nvcw4b2U_0nU,140\nZ6cRw6CU7l0,106\naDcfm_9GTyU,57\nklg2YuapPFY,216\n7wZdMPB-O6Y,193\nEaCGKhxR0P0,178\nY_U49qqwDGI,180\nvJi3kGaAQfo,191\nTEZq-_XkcRA,130\nFgUKDQA1qFg,142\n9KTEYDd0F7g,180\na8cviBPaWJ0,124\nQRoWiTcO7dk,233\nMYkSUEjYLc0,179\nAEBd24_Uxfk,133\nqp-Jr4oEFWo,179\n5OkvZ-y_dgI,96\nTL91ZYSxoag,203\n_IwNoboTiHU,134\n3PhcsTMfqIs,158\nbC0vGFJbMjo,191\n-DXQJLwDAwg,121\n06qgPR9Eqww,155\nRp8A7gf0dZ8,179\nf9Od8yx9gmg,206\noY0spjrKFdM,211\nAQpPxTYahZo,143\ncINFeXqwbDo,178\neoREjwjeH30,209\nt3mwyiOBDrk,188\nhwevrtap9AY,124\n836dGO4v65I,191\ns_8zJYpN2mc,123\nioE_djgs810,175\nkE8qSUcrrmk,161\n99ziSsaLUpU,245\nvqPT1IbJrX8,239\njBxvOT0p-1k,106\nzHqM-oKCPBY,149\nHaK75RHhEEw,72\ngNdQdrKADh0,78\nfDcZoI_wy_w,137\nh3-FAzeYut4,191\n-Jf-E7oEguU,267\n8TbUl9dhTRg,153\nNGmtKz6HMkI,102\nffknf2fIpiY,112\nXMt98-MEWmw,111\nKFzIZnYLKSo,135\nrKh4muRk_s0,226\ngUeHamRZkSY,159\nL7FVtB7mKEU,163\nB9r99FImuSc,167\nPvEongWRs5Q,128\n1dwtsZ4IJQE,244\nsf2RRCNlz38,189\n104odr4s7Yc,91\nYlHQAbd3Pvc,182\nfoV6LGohzBI,232\n1V4SU2_-Ppg,149\nI4_AaEazcbk,192\n9QwQbE5Eu-I,178\nl2ATZgmj6FE,125\n8X5miLF1n5M,150\nprTlJO34AHE,182\n4FppyDurg7c,194\n8pbM30ZMO84,117\nY-rxY2LxPI8,235\nw5yJV_TKOWg,124\nNBYfDP0IO18,134\ngCHCR0wZclg,206\n-c6nNzrAqs0,165\nqULQCbfqJm8,165\n-nCYpOC-Gtk,164\n1OxDZKordaM,273\nt0oqEjxOUww,211\nHb8I1My6zOM,158\nMdoBOoR576Y,133\nlSmcbUFG-W4,179\nfDeQjTPTlDE,176\nHpeiPgkqEro,90\nqFH0mR6eVLg,143\nVdAC6kNpXeM,134\n0p9Q6tDJJ1w,177\nl2zrJ_LZrhg,175\n4T8OrSXKqVo,87\nLunIbcmUQtE,157\n95FV_p0Rivo,81\nFAmaskY8eXE,235\nYcv2RoyxW1w,133\nh4Zho4DUcXw,168\nnotFMAwEQeM,235\nsdwghUH-K14,160\n9Ro2O9YAkAo,149\nVqAqUVcgQdE,239\nr0eg-ieT77g,173\nOro8uCubA84,175\n_O8yGbcFmc4,122\nhFNZy6iBNVs,178\n_HcDe70cSRU,149\nozkF8KRjeO8,133\n3Blk7Vo0abY,134\nrilZTyv9RLo,142\ndaULewxdD8w,132\naxhUtepWokA,134\nJ4fNwWwH2lw,105\nikqLKMZ86d8,134\nx3OTeacsT84,231\nV3Gnq8VFai4,269\nu-eTCyG0jpA,177\ncgLMSMIU124,130\naTSa6E4_Zgs,162\nBzk_5Jzvxdk,246\nb6WK3MwYFSk,128\na7vAR-7YBWE,137\n5JjVwGi4aHU,282\ndp2MR9fswWk,187\nMPY58gIH65M,148\n4C7VpH9VvC0,120\nxmihht20Z0E,144\ng5-KsABvVzU,189\nSTcAVDuOkv8,196\nb3OlGLDk4pY,241\nU22aGOTlIy8,211\nBN77UGYk5tg,238\nem9lziI07M4,186\ntmUleIek9Fc,150\nVbP7jMN_v-w,170\n3s--5gsc4bs,106\ndWdQG4BEX3s,170\nZ-l7wGkNyko,168\nf1WnZO7NZDo,142\nyWGLNaCYevk,206\nlU3H9Nt3p_M,166\nvKT_HKcwxFY,183\nrBy7ZDob8a8,152\n2dvchK48Z-o,200\n-yzEjTjo2IA,114\n6TVik8mYxrY,150\nIGaJfcOD6gs,51\noB1yULtM2Mw,158\nLTfMvliqiGk,134\ndeth7hZBzxs,168\nHfFM7RZ5GxI,175\n4ozs0VI04xI,81\npAwoA-XPzsQ,134\n06MiYpKxjCY,177\nyQpFQFL-YLI,199\nraSWINBYtuc,176\n2rSSxAdDhuU,97\nYoIcmX40-_s,190\nsxyaSXAF5kI,164\nz5NuK6qTdBc,168\nLT9qOeKcL-o,97\n16xSXPPqBfM,95\nv2iOrjYQOHQ,176\nwV7vM4-FzJM,130\nlMYtQlLlu3c,113\nvq0OqfmArnY,132\nK4lTsRzlorA,175\nyuU4pFcEgWo,168\nJ9qv_a_s7Gs,148\n6P5yW3rYuMs,94\neIlzY-UcYZU,136\n-vvxRiJkXAs,161\njFQUE_6Zhn0,158\nrJ6wWIo3hFA,240\n2LsMNs4hW1s,181\n9C6DANHgdrE,174\nwNuVF4lnszE,135\nQzcXi2irovs,171\nbMjYOV8VnYk,133\n7VOpGn2RTP4,180\nxURDJ-IW5YM,171\nklpN-W3Z8Cw,124\ndmASD5tRwV4,175\n3jYu-qta0mU,125\nCkKUHwyFqJw,236\nnjfu6wuNC_w,143\nOqGw-1_vIWk,195\ngqe-oAUoEto,166\nwr5-v7rYg70,137\nctd3NPx1pdM,145\nwKIL7__ybL0,131\nIlH-egwG2pQ,186\n_OrEOa0TYTY,134\n1bKCN4B2g-g,106\nqVDMu-erGtc,225\nOEvu7pkH8o4,93\nWi4OhwrVwP8,163\nR4O0t9jkkUg,153\nWEvTEdLLa2s,171\nZ-WSedqa5zA,180\nxGon_kZAVtU,153\nYNAv6w5RDIs,194\nX_7TJFVH3R4,146\nZTsUO_9AT20,119\nDr6eV4y0atg,75\nJkQzE831VM8,196\nIgTIy5MUBxM,160\nYSfBTZfswSg,129\niQJh6I8kH_E,133\n3wjBPKUDk_Y,180\nC0KLb_v50-k,166\nTZyl-21DgPo,158\nXAa7RcPdE2U,165\nw424xCe0eGQ,164\nL0-Ye--I0Uo,227\nSndhPCSVtuc,132\nJlvCQXYfOAI,142\nDtV4RnADOeA,206\nV99QCtwXKsI,168\nKwfnVFtdn_E,96\nNizLAsFlvww,64\nbxPCTjukODY,87\nkFeduM49hBY,114\nyceziOf95-0,120\noR3h33DSGPM,146\nBdZgC84uYUo,150\n07kluxoO8j8,211\noZ-BCSM4O8g,194\nmce5xJi8uH8,70\nAZlZO5TT0wo,218\ndqfoyAnszH0,113\nCB73lI-OjOE,249\n_bS2cHSqgnE,75\noNGZFJUThHY,155\nJJeNvH2hmPM,131\nMH6W76ILmEQ,129\nBXveaReACHs,132\nw0ijJ45l-kM,179\nGZQMDeQs0-k,130\napo0KrJVXMk,101\nBtTX4ExS5sk,80\nsHqb1FwBP2Y,178\nGIa5OfDBSBE,131\nP04IYEOIr38,216\n--Jiv5iYqT8,123\npu523TrIMpg,132\nytd6Q9IxEzk,157\nf__qWwak6Zg,166\nBwnOv84Uaf4,229\nmEPcdSaEXEo,153\n_j_ufc9wHmY,130\njrhB_dBxc-8,131\nDMbglmaMzB8,193\nLTS4bKTgyik,125\n-8CnljMrH3k,114\ndEHht_iK6qY,120\noMWqB05lpRU,132\njhz2fVM1rMA,120\ncBzuWSSTTs0,142\nJGyNRQzR_Vg,107\nzVw5a4OjcIE,58\n7aW8QnLYxY4,132\n82dHCGddOSU,175\nifkFfWmEc_Q,169\nTUw1XgBLILA,108\nglkk39pJQQI,178\n2KvZqLVSL9c,87\nVuVAsd9jMjo,153\ne0lfNxwgszA,175\nuSO45koeLhk,123\n-fL94BTrFhs,132\n1adrUPgj7QQ,130\nxKffjQ-iU9E,121\n2wdQcUUgce0,165\nKU8y7u-xqHg,230\n6KqG8CYcMKk,130\n6wC2DqFJ7UE,102\nTKBQuK1988w,131\nataOtn-F5s4,125\nsenNDipdmPo,132\nd4Ljj8W1hE8,145\nwwQev_zC0y0,106\nI6uGId-a758,145\nEeYI0V2j12g,96\nz67zZuCIL-s,100\nCaGEzKJKMTs,131\nDvS1BdiVC7o,200\nzTlfN8HuEJA,120\n4akqi6YYIJw,125\nOic7kJRg_F0,132\nlUQJN1xzKpc,191\n2ad7SgwLNXo,162\n6vjDZQtAKuc,126\nI_4ZduVVJrc,171\n97hoM2qv05s,131\n3BSdoHadj2w,131\ncXjzLXjLBTo,130\n6Wk1Sob8Quo,126\nlu2-RuTwlto,178\nSVHcUk9WH_s,201\nljGqb2loshQ,91\ne7Efjj3_uME,119\nMfBr9ylnuX0,110\nPEU2sirKyiA,125\nQrmQqEg4isU,117\n4-8adc39DV0,149\nbvFHRNGYfuo,178\nDe2qscGlWX4,133\n0YzsWVUO-_o,113\n_tBJcD9jxvE,119\nQxcCdLaKhd8,113\nQcqrOIxjeOA,125\n3QWd5rCd-R8,150\nRbMtPUPVZ_s,178\nxSc5s5MKarM,175\nEMpPWRLRQZY,82\nPzuBG7VmIlk,179\nexsURQ8bUkg,138\nI1LFslpgsRw,189\n5f0cBrCTeis,130\n_q36_9BaH4g,126\nTabNBDP679U,87\n5HoL98HNOr8,178\n85RZMIAL7vM,124\ndadFHEMhfxo,229\nfSu5W0BtXG8,143\n8l7lDn2hUTw,128\n78WFIwR9FrY,134\n8fRq0mDBzi4,134\nN6CNJBPPVyk,106\np9shpHAh8uc,129\nIVhxiyqp4do,155\nMIjkFrmSCYU,124\nmqJxvhBThw0,110\nZ4tC4qfv92Q,168\nZpkIPtYw01k,132\nq1ogthNk040,100\nTx-kB1KKLJ0,168\nlrViTBpl8_A,95\nM_y-ZHpKCqs,182\npMx5aSV7qFg,122\n6xaUD1jKFWg,130\nN18AtSAxJ1I,167\nM7Ot2vswJLE,141\naHV7IUgaCy8,235\nOFPi1vG6A90,129\nWKDoWddM0vg,131\nrsyw13yrRoo,128\nQFzkyceRlW8,157\naq45c8eGVoA,133\nqFbjSxE1xzU,149\njZtlV8eroS8,122\n2oMW26rEZUk,156\ntQJTJdTM0Wk,132\nzD5BdMcO4yo,131\n-HPjEz0u-9Q,131\ny88S2uDB1ks,143\nZEwg4041Q9M,172\nyaxDM67F72o,109\no0Y7v_EbE70,125\nqZRbStnLn3c,153\nY-zjMdsTYyw,132\n2GSGR3yaFss,209\nebj_l5icPPg,131\nfdOrjwuILCE,127\nY--MuIgwfQ4,125\nJj0UuTkXIyA,126\nafifn22_IR0,117\nF5GWqOrzQ3g,189\n5NZXmq-E2tM,131\ng1RVgC8Vw0A,117\nfUnQuA1z_CE,195\nbMg6mfghJHw,132\nvZyIBlDO-E8,139\nrtQQwsPJeBY,120\nF37WD6OCu7s,169\nnDBs6ywP9ZE,159\nUUZsR3rFjEU,132\nTOSUY8Jmjzk,152\nzHoZ2Ti6xco,131\nSj_A7OZz8TI,132\n01tx72R0gP8,98\nBgUQldQC440,155\nYP2dblWITA0,132\nePhMSnfYanI,177\nMYv8K_joa6A,129\nL2PdSg-w5T8,132\noeGwe_Y07_k,87\n1y1cthozBuc,120\nHpmdYRs4lEs,132\nE5aXYsk787U,127\n7kihC0VFaQE,154\nJr9tBcUO68M,130\nhnsP1etZkr4,127\nkiEe33aAucU,70\ntgg-Fay2zzs,131\nAUDCrt3eXyc,109\n6ZSsIZ40GAQ,115\n46kWbFAMHoc,134\nbjqsWtO5Xjg,101\n-Jzi-2lYWEw,130\nurpXO9VLU0U,139\nyClVlc_niac,132\nUixHUUJXcSw,63\njWUnIBHVLYQ,143\n-dUYR2apxdA,123\nhfNvGT9X-7Q,110\nsKNAfihSpnk,131\nkHRe9qdfLsw,147\n_v1FiZlF3bU,179\nAs70qOtE3Cg,132\n9F_FhwkKdSw,168\nStnmzjqMKRo,131\nMJBoXI6pVQ8,81\n3jNEs5M1Sik,142\nWqYtAApeiDA,132\noDRFKZVZwcA,164\nLeVEbbheUck,121\nZhBCiQ49Iz8,145\nYpHAGZoV1ds,88\n1QvItdreFLk,123\nUY89o4QFvQM,134\nkG8GuXOjIPA,98\nIRZrsNC5jpg,126\ncGN5hLGphX4,114\nZ5nYySfvSi0,132\n-N2mhlvygq0,129\npqzMo6SfXX4,147\n1_BNy6W4sRg,183\nQ6luiTx1pM8,175\n--aqjaJyZLk,124\ni-9K5-x7_so,158\nqTa5iKsbAno,132\nC2ILSuQOmEg,127\n0IyGdSEdk3g,149\nJa2fgquYTCg,108\nVagrTsi5vsw,132\n8OWCY47wOAI,175\n1p8KG7IdzPM,98\nrKfcW5cTU6o,76\nnAZi4yusqlk,180\nyg6v5Ur4pcM,132\nHdcT33sKbn8,178\nqN7dJ2r3zoc,141\nOhO7kPNJJn0,144\nPuCu1XUGntA,130\nIYITxGniww4,215\nfgRFQJCHcPw,90\nkQI3S3inEXg,176\n3GlfIStWMSY,179\nxuVz2BPLRBY,101\nUwTKqqfS8FQ,141\nJD-K9Exe8jw,128\nLFN4NtioY8Q,102\nxuLi1MdUKQw,120\nXYiiAHc3CXQ,113\nrry383W_mJU,177\nYrtS2_TfbeY,132\n1hiv8o-SRZ0,195\nih0GAi4HWwA,162\nOf7LHW5cCBQ,114\nZXhrgVj--6Q,173\nBKR1-S8aRaQ,254\n5vvtNVnzxaA,139\nvsPVyvwwVns,165\nm5-bSlttk18,60\noLO_o48BejY,241\n4otU-hfAOO0,80\n-9T4jMND-4E,184\nnOpwufXdkIk,128\nxf3htc2iZ9Y,126\nWeBy3_xqYtM,131\nmt5IvL1Uw7g,153\nEiTYwecY41c,128\nzXmrYueNCC8,131\n5QGrgYkudfo,210\n9D9RXt18Qq4,96\nBDLvzvFFRu8,174\n35D2hJCrDVw,103\nr4vQbzdjQW8,157\nyg0yDvEqfw4,163\njZYr6ALcDy4,156\nthhYv6-lz9A,60\nQa_hiWmXFUA,203\nCRXyWtv-huc,132\nORQgPS4lxmg,155\ns6WV534Sfss,171\nkMRM-0GvaQk,218\nyc-qretrU8Q,84\nmw3M1fIiegc,114\n4RhqR2ZGkc0,132\n8jkM1zBTJIA,153\nFvEi2U7IKRE,171\nnLykrziXGyg,47\nwbfsRXuNwDY,107\nzW7btaVY-Lw,132\nIn_UKcRXzHs,86\nlNEX0fbGePg,155\nGQJMW4W_278,123\nnXmtkGrPEuU,78\nZYzQFudZ70k,142\nRe5WOfcJg5A,130\n4ipKK450XwM,197\n_gEt3iNmLyw,133\n-_HF-nKeabs,103\nDa7GSy-6mJY,130\nt8DHTGsC528,140\nRAFmFyb1siI,139\nlrGIfJdbUHY,135\nUBPOSCR4el4,102\nv5N1Aukm4Bo,177\n5SrayNqew08,131\nrUczpTPATyU,186\no0lDxz0-Ukg,171\nRCEgNkU7flA,131\nXsiXAckgh6I,98\n3OLIgEua4PU,167\nVfOrY7CidTA,140\nTz4liX-da7E,181\nbAI6N5Uo7SQ,130\nup5GI3Sp7Lo,132\nG2mYFXmFQPw,127\nDvoPZUYUdEM,150\njOAHxkUMseY,110\nRj9fUYRr81A,127\nxk3clsiBnRE,54\nHysSQiXYjdE,201\n5FcTzH6A4a4,145\nJY6N-tEppkg,131\nvUTQexv1mzM,70\n5e7c30eNNy4,130\nbNdddrIe6dQ,122\nYC-2vmyKkV4,160\nCR5Jp_ag2M8,106\nTxuEWb4b_gU,120\nccyYHEuCHKE,106\nxT7F0eKfctg,125\n8H9u7P1d87Y,52\nUqLq7sMS2sU,129\nH-xjMjmrdl0,89\nthyfYONK0Hs,121\nZObnyBWAZSI,131\nV9hO8rmmaXc,157\noLPTh_DaPa8,112\nb7fFwDI39Co,115\nkIrQoHQzxnY,52\nlnN9r-mmKXw,155\nFixQE61iSDg,132\nE6KKYD3eGlE,125\njpIVQIuoX1g,174\nCRnadHP5JOo,120\n_5p4QdtkbC8,105\nvuJrsCBt0rQ,83\n5s5GkWkrX5Q,111\nhnCQCX3AHzY,228\nFbt2UUthWg0,116\neeXePDLKsmU,131\nwW0WRqnLYMw,227\nIp7GGf2_b6Y,129\nY3Y3HySArOU,136\nSR6W8_yd3yM,140\n5EEMxJOxXr8,138\nvbbHaMTLrbg,172\ngJDosSrvlJ8,164\nYLID2odh-WA,86\niKY407VXg3s,81\nGsbHL_lQy44,172\nDGABqdbtQnA,116\ngS56O-aHEMs,107\nLruyfJJT7qY,157\nhD5eqBDPMDg,47\nx0Ev2qiY08M,84\nYWRzPLzHJl0,110\noHOnldgbjy8,130\nz7Zevt3riNc,128\nLJq_hnR6CHc,227\ntCFb_FossHk,128\nG1x0zmX-PEw,146\nZ6_Ti4ntV7g,119\nY6B9nkrSuMI,177\nlViscSQzK8Q,88\nnuVfizTRHZs,153\n5CuKjYdDd50,188\ndqG51nM9k9g,282\ngP_GbzDWoY0,117\n-Ot948zIr0s,131\ngPlxDB94t80,141\nEsFrRaMQMPA,130\nSEWMcT6bIi8,131\nu0fi902X3qo,147\nlM8xJqeAEGI,130\n2oGfncb2usc,207\nswo423cXQuE,195\nZlawibQ_QKI,123\nIixTpVt9Enw,100\njbeyKcGqxyI,178\nqLwEQ_18_V8,122\nLVflxqHuw2I,134\nGkkdbPYW5QU,131\na-h2glY0jyg,125\nRY_kXET2cyc,85\nz_gsKwtCy4I,131\nn1gQ-1zEljg,152\nwHNB8IHfHdU,169\nOuht1xip9NQ,131\nEIzFKMtPjH0,76\nhgAlSQ4Ckz0,134\nPz1OFqEVi3c,131\nJNPW2wZ4D2s,67\nfWcPwWR4C_w,134\nFwCOP-yKD5w,205\nKPAnWhVV5dI,131\n9lCBRKyCsVg,132\nfAenzYV3Cmc,132\nBr5umHOm3TM,126\nTuTOzEYtgzQ,158\nMh2Tf40llqw,121\nTa2vBD-qOwk,65\n2mbvrOmirQg,170\n-CyRDSP_b5U,117\nucQmXLgGIVA,110\noMpgPQbRt8U,132\ngi3gqlWetJU,78\nb60vt92AzKQ,131\nRB_-9bINJCM,162\n5dL4tZZ-Jq8,134\n421eYc8zCtk,132\niFm-KZgioX8,154\nzPtKevwg7Ko,131\nyK78AHB5dSs,162\nnBnICWrKboM,114\ndwD4JZsAuew,127\n7WdGe1bDiuU,122\nCR462LcwVBU,165\nFHL1AJ0wbck,124\nvbUTbqwKtEE,160\nzdSMdOcyfOU,175\nqA7XKmC5QbQ,136\npLm07s8fnzM,111\ny9d6Tblt1kE,146\nd0x7-oo9NAk,210\nYczVaT_czPE,170\nZzBJxdyktNQ,96\nHrztxo5t4Ic,121\nMhMqjcT7frc,104\nPwv4avomXYo,118\nb44FCgewbdc,147\nLVm_DbyklO0,106\nbTx918Kpg30,189\nxV-Sj_rjJjE,99\n2j6I87SIfbM,149\nvG_FLK4K_T8,136\n0niEZsahtEo,107\n23v-gPJiaZs,154\ngKEaLU9m0Gc,119\nDfW_3qH9G5M,176\n0quEnseH0zo,155\n2BuU0LMgxl0,131\nESkmmFHikgg,183\nuCZStp0Z_xg,130\naW4x-PAnrO8,118\n8XREKqJr9mo,69\nWjc5NqqF-1o,87\nXhxddKZYvH4,134\noZoXYuatXzI,127\nAwLRD7iEEKI,132\nsWKTV0ScR9k,131\nA4iXXQr7tqw,121\nNEJtJu--hto,132\nGt5xBpmHS5Q,127\nJghXTjexZpE,117\njxID8oHnCW0,120\nxpkA68e5HN4,129\nCBOzczGQh9w,132\nS6bKFjxPbC4,99\nPA3kETvUXJg,131\nFKwYBGdhUpc,97\n0R_0E-YNBrY,99\n7FkWC2S0MfY,124\n5PgAKzmWmuk,130\n0P4h2-R9Rak,124\nC6hIucqz4_A,178\nEANmB0vOPqo,159\ngxeIvClLpKI,135\nXadVTfPZ6yc,132\nk6YFnGzHfKk,105\nVsZ4L4HwUFs,125\npO09fucTEuk,42\nYkjS7wTVKB4,69\niKn6FEEToy4,196\nX32pSJrgF3Q,147\nG6zOqkX6qTo,293\nhtCHOTJBiSc,179\n0Tv6PQbWvJA,72\nBRHFpsNB1PI,125\nirkGAhW7wlQ,128\nryRzxiWudaA,179\nc_GNsQnPdi4,102\ntuq5JMwWRSg,91\naTUTnjUBitc,182\nsKnZBUh-Lx4,151\n0mtMkMvdwBw,104\nZ46LYLKuros,109\n5OZPyf-QseQ,134\nOtXieOlT7SA,128\nx8HjCP3LqHo,155\nbq_WJS_HlPc,161\nq437KEcmwmM,130\nCq_Fag11NRg,131\nGMCKHfREAPA,122\nf15ob_n_tfM,163\nw2eNQ75wdq8,129\nbNg1XX5ofhw,166\nm5p1wM1ZHQ0,104\nmYS3zyHIxqA,145\nLimvO4zrETM,132\n2EWQ4s0Z5oI,85\nC2s_9Cx4AG4,120\nqoxMZtAmAiI,107\n_ZrJXN_vrBs,125\npGhBFh0cXRU,153\ncnQEo4bazIo,101\nSLn4BL4gP_w,119\nV_tlFZCiIHo,108\nSqpBUHMR99M,142\nzlfMo6Qe2o8,128\nbPNkEztLgeo,173\ntLadr2v8AAA,162\nTxouT-qgqwU,171\nNOXp0ABEFC4,162\nyPg84oVPnE0,70\neYMbAHC6RxU,132\nv-WZINgHnFQ,70\nxMOzBw0mrcc,223\nMKf_SL_owsY,125\neUELANo1Fic,123\ncf_0FH_2934,118\nJfJVmzthD3Q,183\nD8e5MaEaWJw,155\nhEY2L9sXjwU,132\nHxdxfEN2v9s,179\nAQX2Q-V2Uh8,170\nXwmvrx1wq4s,152\nrjsre1tcGWU,130\nWCKRXHDI9Ro,178\nK0xpWKgNCk0,132\ni_FoR7ZV2EU,172\nY15DS1LKh4g,102\nqzkFTptrfbw,143\nRWIS7olVbGE,162\ndFxzdwS4yE8,140\n4zT1vWidAJ0,124\nzFxq7CCpzss,130\nD-NH8NiKb54,159\n8rNVaY7Stt4,147\nEJ5ywAAmiU4,132\nshj7YP98Yxs,127\nZVQNsHBi9oA,179\nINE0g4kvXLc,119\nHzLYedqOPIY,121\nzV3AZFuaJVQ,143\nmv3qeSxmp68,132\nOn6-ADTS-g8,74\n_nmYaR_ZllQ,162\n51iAljD9Q7Q,155\npytH_ezVouk,117\nd9ykU9FkH-g,118\nBl6eouVUsCI,154\n_ihVsEYQP8E,203\nP-GgTCUYjhw,191\n0W9jZQetuB0,156\nvj3mnCSJq7E,132\nzuKBp_n_o14,121\nYG_z4RpxKWA,159\nuwHPOHdscwM,112\nblWBATSOCtA,125\ngr_2UA-6hIw,212\nX967_4L8pmc,175\nhAiiaFAJ1mY,117\nls8-S57SGSQ,158\nlPMSGTfK4Aw,110\nMoOwbXap6LM,131\nAgsxHmawNqU,117\nESSsStp3pFU,149\nLW8CpOzdT5Q,127\nys16MvJ2XVU,158\naTJiK1i4iEQ,131\nx-FLqiu9nTs,130\nOwYH_j7c9gE,129\nM8gGpyKPAFQ,66\nIGVwlBTTqYM,160\n70kZeFs721U,174\npHQsot2suvI,163\nAqo9z6lp4GY,172\nhLbozjgBIE0,115\n_qVs22tSUnA,162\ncNKYmHmy9OQ,143\nA5xTu6AMxq4,127\n6kKCbDw7lR4,121\nZGFHY5JjTZQ,127\nBZjqqKqaw60,112\naKojFoPzQoQ,132\n5evtdZtPixQ,111\n8iQfU3VUrOs,143\nbjLdEjOL1s8,131\n1ZVwo_elP7Y,125\n0PdeHy_87OM,153\nMLZ4KzVPlHM,123\nkPHbIyDTPHU,128\nquaACkqyF3M,127\nRH3xL8H8tu4,152\nTsi-yH9juC8,189\nTIP0eokPc5c,166\nmsaelEZ_eEs,192\nFVg9En9jYSo,130\n3lkG_MD7T9U,131\nqjYP7J3oP9Q,131\nBXLhK4ra6tQ,131\nS58poUaNwiw,179\nxEvb7B4O698,131\nT3iSphEl9WI,115\nkyGcsRDBJLM,76\nx26YFcaLiNk,71\ndFIuG_DTVOw,176\np0BpMFTYFpU,119\nNW5u4cCsNUY,130\nJvZ5nh7sIzU,175\nvfutImUbN7M,121\nS7rZsWVUAFI,124\nZpX0rril7QA,131\nFm4WFtwxJ9g,179\n_QUAEFiNatE,130\nSippOkFBMAE,128\nupQ-MXF_ZgI,178\nQ16cb-O1kTA,89\ne9vPvHO8Kp4,152\n-it68CFJkNg,173\n36LnnBNcETk,126\nhEZKrsmIGyg,158\nuzcyJ9sN98c,158\nL3vbfkRB6gQ,144\nZptjN0wzIdA,116\ne72atw7hctA,131\nsAtsZPmjExo,164\ncNiuEFffzf4,136\nT6wetejGqh0,142\nyQ0FgE-WKi8,138\nGSu7BGbyJqc,179\nITMren3I3WM,128\nBKTyV8Msk8o,118\n-5be_UPkLRw,103\n51euUliFZ-w,132\nulGMlIZNr6M,60\nQHuTlVI2zgQ,185\nqmzYvuFtlM8,115\nfRQsuCJ-g4I,130\nA6Mwoov-lGc,209\nLmxUk-KxjoI,177\nlixII1thTO4,132\nWT1ae3uyKmI,134\nXeO3jMZphhs,142\namtxyPO7At8,108\n9Z3eCKZ69eM,86\nS8XR0_wlYUA,134\nZvvlFocf6LU,132\nqAZcl9BFd38,127\nel6nzbxrsD0,178\nmnEpL-H7pms,138\nEroyjPcw3sg,173\n1sE-YwK6_PI,134\neiLeBJUf1iE,129\naPeZmPcpiu8,98\n97wa5FUtuG4,77\n5fAASR7YMDE,175\n4lNoSUurdKc,116\nWLqx522tlYU,52\noL8QGyo50_M,175\nnxWj-7FF4CI,134\ndj5zbxA4bEI,129\nmDnYsc5SIJk,172\ndp_aLWPZY8I,128\n-IZLCY2_esQ,123\njKC6UsetwN4,113\nelng_KRvuqY,113\nxG4b0-DSLrI,128\nI6wRZCV7naE,131\n_uRGjnG3G3o,114\n4mC5CUTwjno,130\nbLsnl_fdBoI,161\nqDFzVZklg1Q,132\nHKUXzME_3ew,140\n9pX1hxYW3YY,131\n5pLpIsdg50c,124\nqcdR-kyqqHs,165\n-SXbmeFCnTM,135\nCHyJRCF3sEc,116\nUFcmai6iKzA,133\ntI4RvWvgulc,76\nhpaXyCsOZUg,160\n5JU326dvQ2g,121\nBRccUGaFz2s,131\nMCFqMGgv1YY,142\n9iPH8MXkPEE,209\nd66vE__YWME,130\nG5qPGKpTzXU,208\nLAmOoIdTjsw,172\nsOPwbePhOXs,187\nG_tk-vS61to,169\nU0s0czlJ4xA,113\nwGmDAjRRNXs,179\nqWsC4YHbOlw,187\nxEOHMxA4C-E,113\nn3BgbwW6PXc,88\nGacX6Le_uDM,123\n1rlSjdnAKY4,92\nkui9LWtON_k,163\ngSN6EodbL1c,151\nS7gyibsEUAI,238\nRUpKMSWPjZw,127\nsL1b7ZnItoI,91\nBQpfa9RZbTk,185\nynwah7YV2LY,149\nQOWkXpnwlek,142\nTdT_PiRLsaI,131\nyL3JcykFL40,74\nR84dKkPAVpg,162\n9cySKHPqIjw,133\nJH3ydCS19Ys,179\nD2HaKTqp4fQ,171\neqC9wr776KM,132\n4iNd-1IPrGI,78\nJipg0KQ4id0,131\nqSGfcCO_h4I,108\nz9P5NdzCcJo,153\n3cTyY36ENxY,129\nf_sRtGI7Y0g,100\nKrHaRP-Y588,104\n6UKeesKIuZA,81\nBGyfOMCRBn0,134\n9Eo8snaeDJs,168\nkWz4LQXH6bE,167\njm73CCe1e4o,129\n5ttoICpH0Vc,140\n6_5QkJsNCho,131\nUsJjfS-i2zM,129\nImZ2LrvQcCY,146\nm7aDde36EpM,158\njaA7_aOD2ig,134\nmFoZz6PG72k,129\n-mHhr-aaLnI,90\nHEMqddRGVBY,130\nPE-3JxqiV7M,132\n8YGn0l9zfew,124\n8Fgz5cARQZo,129\nIsG-tXSQRX4,93\nP1o2faxmQYQ,250\nXXk8J83A25A,122\nzB6pvQt0I8s,132\n8Kfr7BvVmlU,108\nmDUSjBiHYeY,128\nSpSnm6rxTqU,138\nfNxA27iQkGw,171\nUemGzlKVwsk,113\nzvA-7VuKQCU,111\nxvOaMA9l4Sg,171\nlISBP_fPg1s,159\nl1jCg_FmQmQ,100\nS_PMSA9fgiI,118\noh4GYHtq2hY,132\nlHNgUHi-WPM,176\ndTM13gYxkoQ,116\nOvE_mDtTj20,107\ntUuzV9kwSBE,131\nt3XiTgsmyZc,170\nUv4Wpz-N9Gc,172\nI-wCCN3yowU,130\n4kC1v_wKF7M,103\nHJV1Cqh8M5M,155\nCpFUyd_7XIM,130\n1idxZC0VSxE,132\nh-r9Q-YItnk,127\n5wS_6ok9u2c,119\nLVpnmOXvBR0,131\nx5m9etGofg8,184\nQjLwuMqSb7s,131\nFAaogkawcOk,143\nH8ToqWfFevw,98\nZ8GFmshpZ0I,200\nm2lBtBvgiHQ,165\nlJ83ILGA8yI,210\n5fg1GTRuYHg,112\nb854qv-Z-ZQ,178\nPmFEdtB8eNw,121\nGQmt9W6Ky7U,129\nb7NJkxnU7xI,132\n_IdlZCqJ8kk,159\npCiwEO_6xS0,129\nMpFrgOc9KLU,121\nXL4aLIj7q9M,127\nu-2jqTXKQyU,119\nic7F0sCFcZ4,51\nr-xcvVWqny0,187\n8R1OS5jPh2s,130\nJaGoM25tGVA,132\nDvSmeQSDTco,130\nQ0yQbpoQ0hY,125\nZTCtiADVAWs,130\n-ip57avHn8E,170\nK6qGwmXZtsE,131\nTUzp2XUhskY,122\n_vNaSVn6qSk,181\n09-K2ec8lyc,131\n8kaJJGWYXxs,156\n2bpkd6hwH6U,114\nNJIjNs_s2NI,102\nDruCG3LJiiU,131\n6RVyL8lNtj4,179\nxsL7T32XG3M,140\nsYk8M_ZTNlY,131\nNocIDIeLTqA,94\nzgYGbR8f1PA,130\n_qjEm2ll0qc,165\ngN1BjYlhKvc,153\nWiXoeYPz1LY,80\n_BeHUjskbZo,132\nTEpJFWUw2ts,74\nsrJAamXGepU,87\ndUi0j-vedRE,165\nLkWeBzzBUXY,121\nl51fnzJxYUE,160\n3ucBVz_IFGk,129\ngRLpvojaVBM,131\n01RWw-3AKaE,119\nEVmLV7swH2k,131\nEQW38-aU5gI,95\nhSdrwqLUpD0,130\ntSZtoveaa0A,179\nWSxjWLWu1WE,136\n4MyVJn56UFY,126\nz1F9D6LVTkA,126\nvRXk74BCp-Q,143\niz2ro0h_TmQ,95\nZc3wIAs3coU,188\ni60a-KYSCno,167\nLBTE3aH5gpw,165\nmphHRcrJfNE,94\nbbVqciFRioA,112\nfWa-h0maM1w,91\nrsT1bLR2sfM,163\n_kyTyYh6LZ0,132\nQhGtm2E07w0,101\nKo0E8tEu7HU,95\nuB4qHneHB1E,116\nXlvqgnIkzZU,145\nmp8chvACVBk,125\nhBXcQhkyRE4,143\nghDDdQxgXRw,74\nJtFkc9jD5KI,136\n8IG_Y8BrorA,159\n7_uvEuNwUj4,178\nofmssjTsGnE,132\nF12X8zh4aCE,185\nbnHKWNBCKQk,109\nq6XF66xysgQ,83\nS4p8_i1lcCc,177\nOViadirUIp8,155\ndZwnXa6XHSI,131\n7CmJFYoSgII,166\n-HwMH2_-oKA,97\nXECoJa7AU-c,115\nzGw4fC_Dxo4,123\nPoLLgzdPkss,174\nxRkZAfoaEw8,155\nJ0SN6An2yCg,147\nwUJccK4lV74,149\nm_KtsgEoK4Q,149\nmIpX6PnT9UY,182\nai1wUoboyNM,132\n5ogVT5mpg6c,130\nH4PpclIJZHA,159\nOgl0mA_15ys,121\nlVdSRz3Jsjo,145\nNDV-ryLLkiU,117\n5KnFcsSIzbg,157\nME2S71b553U,129\nter7pAZF_nY,138\njzeYdxu9S3o,160\nNweXJhbk9P0,97\nGO4ExuqatyE,134\nkxjwb5cXTI0,119\nzkTbNH79i9A,157\n7mGr4Uc7ebA,127\nPU4PQ3OJn58,129\nk2edI8Gu6k8,131\nxHd5cUGpJs4,101\nioCaBQBjEBU,163\nFz9Y72jbsxU,107\nFTV4FUlcIwQ,88\n_qfIfbYkBUk,137\nP3CF3QER_h4,145\nPxsbL4Q0Lmk,208\n09oumdE0UFI,210\nxfeLsPRl3so,134\nS5Y8tFQ01OY,81\naDCXE4Np1OI,172\ndcIVsX1-Aio,55\ndelffcg5VZU,129\nXPcqVHZo22M,179\nro74_tScvSA,123\npIPr7nbUCAw,85\nFVqRqUIDG-A,177\njVGX-_Iodwc,178\nc8wj-v1Jdyc,83\nahP1JZwHSh8,132\nHZEaFYQecn8,147\nuy_2GCNyzgk,118\nQTI8XMmOjE4,158\ntdXshjACQx8,84\nt-Ojbv20L80,156\nyLz4NXK6jkU,135\nqkHSTpTqlug,134\nMeRtEy1FVAU,130\nYADVuSMFS2M,294\n3ESS6HqOuoc,138\nyVlOitZ19Wc,71\nD1TC1n9lhXU,297\n7ke8XUZSYLw,170\n4cSZVMEi710,149\nLjiRvVUmets,187\n1MWZ3mZ-tUM,131\neMURCJgRJYM,133\ndWQ3B8qTpes,131\nsXHsY1eoIzA,134\n7s91-5542Zg,143\nJDbwEQG2cqI,121\ngFb8e3uaeIg,131\nEF2WHYOjGhE,154\ngAmo3FcaovM,121\nih_V1Ns2UFg,131\nedgiUq5ymRE,174\nARLZaZd3fAg,132\nAUBAs5rWsaY,159\nmGLXbK2XWMY,131\n0u0SEECyGlM,95\nF0uwp_eoMW4,141\n7rI4qKw_X5g,128\nSauYDhRS8qQ,157\nwoboXYiH548,190\nue_EAEC12X0,160\neKmMFRdNCEw,126\nfg-43OlaJtE,97\n7o40za1wAlI,117\npTvbSVyWP9I,116\nGyxw8a2hTMg,111\nhFH6FoRzSpM,131\nMXcxWsdjYHA,62\nFPBY03u-5Zg,166\n0_m8AmAm-XE,131\n8JoOpx6VwHk,130\nw3sv1-F1JeI,186\nrETUKp1A-xo,174\n5Mx0JL_2YKQ,126\nuiuioAkuDro,77\n4WfCOqrgbSk,128\nzzgvxdPlUwA,132\nqFiFKP6Jxoo,118\nf92X44rgum0,155\nILbPhe1Wg9U,143\nrxGjeoSRNQU,139\nI2JSXKFWqGI,171\nP_8O-iDvlmA,128\nqUi5Lo9SHTY,87\nF8QVrLcmRdA,126\nQe5bvae8I2k,169\ncAKtpCo8fPE,129\nmaWca5IRGt8,128\nAmAklov1ewQ,113\nRKui0n6Z7cU,130\nOI2JPJj1d6s,131\nntsuIs20RW0,169\ne2Odq49gEbs,135\nBOwOiWDD_SM,143\n1Up-oGfiosE,139\nEfT-5v5YIt4,167\nuCMat1QDt6k,114\nvjFG-4Ge668,132\nkJzOYZNQv6M,147\n_jru7QsVP2Q,122\niE9CEAzLPKg,113\nUuRb2YYEYfc,102\nd4ftmOI5NnI,195\njVS8e7I6Co4,40\nqjFCVTpsIps,131\nI5XMnxp2S9Q,86\nGt4t3ZZsAnQ,132\nSeOMiErBnks,133\nHa-aaENx0Fg,110\nrfeDWXk1jso,131\nb_FQEg7ScU0,190\nwYMJal35N0o,131\n4uDUNAPdYb4,76\n3vDe4jJvC_o,172\nVASm7dDXDcw,146\n21Dc8a8X8qg,131\n6hiEMyCIoQ0,127\nxrJkcV4DGZ4,124\ncgg9byUy-V4,125\nyJXZwWi2NdE,175\n_3w-4zC9FHU,132\nwRM5Flw2nXY,178\nuSYD6YSaKgQ,132\nMJ_32rbrHdk,131\nmu-YLZpB6is,132\nexl6XfbWP0s,131\noh2MX0EftaU,136\nBP6N_JrLUIM,100\nYwqlCZ5mCdg,102\nfCuS78YHrOY,132\nWkjEuV1fTrk,98\njsz79bztNJI,132\nuzHwlt3dmmo,139\nSRJsBidnCV4,105\nXCHKYNFH9Lk,145\niH0GlpUQYJY,144\nvMUONm4ihP0,151\nrZsQJGk__DQ,129\nxcSwBHs1uD4,131\neI4FXLtPBL0,131\nJjSpGeBqJR8,146\nXqmCa8WjX5Q,131\n5tSi-wyuccs,123\nXsa_dy0w84Y,133\nJXq2nnnhqRw,178\n7SZs2Qr0zvE,73\nIOK6qpQ1vg0,197\nF7_aagPOpUU,132\n-w0WPkB3XJ4,130\nZhdlKgAakHw,172\nDKQXxsio-Gs,151\nKnzWMPHQ7Nk,137\n3opX0w7T_qo,179\nya84jIkf3b4,98\n9EilqfAIudI,131\nCvuOZXVcCHQ,181\nzF-3wgcDRk4,89\nzGzurjIEhNA,104\n9rj02jWyo94,183\nuXsQ8IIi6YI,122\nunrqBYYTZI0,98\nhQD_fanPkns,120\n5ywvhn6Y4aE,174\nVEc6d81jgQ0,173\nW_hzD9mTSpc,148\nu2107BTcDbs,132\nTstteJ1eIZg,157\nFyo66z0NtHY,126\nqdq07pa6sPA,83\nDw_6CTZVb7c,146\nGXnlDTh9sCU,112\nRpbUeRN_rcQ,93\niL1JlXnbnt0,143\neO1Jm4N4rlA,149\nRlOcas4K61c,178\nIP7jsmECPbs,156\nnzz_3bQHyiY,132\nfFUR02kaGTQ,114\nCr4KHgNuxcA,132\nfxYkJbBKxZE,91\nJ7M8LuEC99k,148\n6ZGvkZAP4lY,129\nP8ROhP_3-Qk,128\nhFoLv3bTLSc,103\nw9WoH1MlgvE,114\nKmdBHOUCDnM,229\nLf93YLs4004,85\nYGQZwZadSfI,141\n5wRnpjDfEz8,171\n6WGP7utz8uA,148\nPrzgybNYBs8,103\n3GiWce_xXzA,168\nPruSWq_FycA,131\nkm3VtR6mqmg,177\np1tcs_fTz8k,131\nIIBg9UQ_mMU,98\nlwfuUyTMpVY,85\ny03ITmppyMI,86\nL0CL__Tvp-o,79\nVshyrsRdoF0,130\nWqFEn5wQhBI,144\n20IyieiS-TE,121\nlOwjq5Cuo-w,64\nvR3yb8mNLYo,169\nMjkt4UgcTmg,141\nI8xuqClrB3Y,205\nOaZa0tw3Fuw,132\n9UZ8XOTp19c,132\nvSLOINP7w0s,130\nyV8-IGY64pE,161\n0eQBa4JQzDI,104\nr1gBq45CkgI,135\nSfQAxD8v6Mc,194\nSXbUNuTQJds,96\njrPvugl_NVA,129\nbJNpX5bfXcw,132\nRGF6Qyvz2no,158\nLzKWVeX9qQU,146\nx7RM1MOhSic,132\nuO47LgAVYCc,152\nJDC1IK7TWZA,69\nO6Obigg85oo,157\n1wP9Mu1NKXk,62\ncH_nhvO8stg,131\nuopLUlluf-I,129\nq8sWDRO5C4Q,159\nUQRxN8qagG0,123\nTBRqPFkAQCM,172\nAjc5z4sg-O4,91\n2EKDKks9qtA,125\nQtJwMKMz6-M,141\ns6DlYFmuJXw,126\nI-RrVLbC-q4,130\nOqGUDvVYqlM,114\n-34RUyP-DH8,124\nLPPJdOGshUM,132\nT-KYqRfLg4U,149\n6F-zsgYCXwQ,175\nHpc8yqHTq-I,74\nlPE1uBdcB8Y,131\nYPZqfRINveI,178\npzeu5peH2n0,136\nVxwsEqiptwo,187\nJBNOsPP2yhw,154\n1x4SX6FUEUo,169\n-qdHE9-8spU,132\nSxCUyc_brKA,130\nG21su-YdW5k,153\n2kDPrNRTuQE,131\nnVRCznRsCgY,137\nuiik3zS4y4I,109\nbz8JoC9BpV0,134\nad65spfln8w,168\n18ogMe0oYvg,146\nAsm-9UXAOog,130\nGJdCx-hCKsI,52\n-QNxYSDdpig,129\nb5whTkIQ32c,227\nFr-ilDHT3gM,84\n3YTIMGmZUr4,124\nKhAs8aaZNok,184\nMd12rwlpeFU,116\nkpjWox_c9Ig,130\nHFWG8MMnr3Q,138\n5xIU6_w6ohg,131\n7dw45dGMGNY,171\nBLbh7T1mPZ4,139\nfIh6HDeXKGY,125\nxd1f5GeUWpg,115\nRxFBi3z1i3k,128\nxAPOeXEUwnk,156\niEV_pQIf3Og,113\nat0yN2HBrt8,225\nyqdfje9b9WI,131\ncTVafG4_CaY,146\ngmedATt5viM,132\nKpOUP8mC9fk,132\nxuaHRN7UhRo,119\nOH1mI4-LqHs,141\nfZPyHZo5oDE,152\nAbCowKGckKM,181\nOl5eFltyhLE,150\nS5-Beq8JVsw,186\nQU882zzREY0,129\nxK_P_l75a7Y,92\nm9pdH02FxPY,161\neN1XH8BQGqI,137\nUG215AsHyBg,122\ngGxrQOUaM_E,132\nAbyNlvzydeA,138\nbt6-F11LZsQ,142\nj-V12tL78Mc,132\nTPESLZ0sGak,214\nqraA12BrzVo,89\ngappVpWfuCA,178\nK6iF5sINVns,132\nZ6vsW2RH8kA,129\n7ppcbkjmuk4,184\nfWallK7KgrY,70\nHgmE4x7yg3c,97\nG59JnM4JKNQ,100\nSPiSR_YDfXc,132\n2I5V3zd1J8M,99\nhVPSsxFKDLM,139\n8uAUNIySn_4,154\nvUuAbRVVZwA,169\nlsOQqbPYVHY,126\nTPlxZPhOsQM,97\nhge2AkSJSIw,138\n5AZ2yDKNEXM,58\nKyR7XB0VBPM,131\nRP941IJJEx4,121\nXsa1B-RyyXQ,118\n18QXG4aUP60,131\nfjqjWC3Ycr4,93\nGOqTRPdrXgc,132\nRyotYUKsVyw,171\nyz8GjHOA2xo,175\nuZ0YGah7MsE,94\nlpgQU4piAYw,131\n1V-vD4bHKR4,171\nZh1yLx3srtQ,131\nQtWhkoqRKqw,113\nqG-B9IzugQM,139\n2NPSwpdx6iQ,179\nFTHoIehOkK0,96\n3E9TWmE3dfI,178\nhON2sYpnJoQ,91\ntdvq6Usjydg,132\n6CxSbcM0vw4,95\nG7Mvs5Ic8us,137\nw9KBOhPXhds,133\nlfrC_mA6o8o,163\nWCDmhXz9Gsc,88\nZS5K9DzFIco,184\neLdQluY23UI,132\nJRloSmzWBOg,130\n2Pkky-Dncw8,115\nlCUBQnsS9go,132\nITdkeKIFqL8,173\nAjmbgZ2wZvk,189\nARoB1nWPsxo,102\nJaeHMEw9KAg,131\nMQRZuEppgT0,163\n_qu4ZBCU6Fc,113\no2xprwwIMXM,115\nhaN_gCgewXQ,161\nH9PhEc4cgVw,174\nAePRD1Ud3Lw,119\nUgjzHp4TVtk,116\n1cNBL3OOMRY,132\nGhIDZhPP7d4,131\njawZFND4Bfc,162\npeUyLXrgYZ0,129\nZR2txV7X8sE,131\npf1K2ACmGKY,56\nDcETqjNSB4U,152\nTEq446woKOo,106\nH0BUIYk2irQ,130\n19fWdIvK9mU,109\nDZFydcYiOtQ,128\nR4vRfIL-Cv4,131\npU3klLr1CPA,162\n5EFY3vpKDII,130\ndxfqu-v68IM,161\nI0EUKDhQ7vk,184\nq5VokxxNaHw,90\nJC2TvxRIR4Y,99\ndObTXYa-_n4,120\n47IVX23yRyQ,127\n8KFPOKVSi7M,140\n2ATYV1LOIH4,137\nZypt5adu71Q,59\ngzRy-pvwdL0,130\nQKq7tIL9aOQ,212\nsv9XNFpRdhg,132\nx2vhOIjmS2s,132\nGqc-VRIHfuk,121\nsT47KfDlwI8,132\ndtOaXCoryQo,108\n8qyhhOM76Rg,132\nESmtdvc5zk4,129\nPvuv2sn5fDQ,129\niyHNryKojDY,131\n-DF-MgSuhQ0,177\nWYliK36fyCU,151\nusyxBVGLU74,128\ndLgbWZYjYfU,212\nfzRk8ovZ06s,136\naAMVebfAZ7I,132\nPtlmPi0DXws,166\noAJYONuey_8,169\n858FWgtLMZU,196\nI2E8wW-YGBA,130\nsBSibz9xdic,132\nYNaTu-8atDw,230\nnxvXYa6n0pY,141\n2zTqIJeCd3c,128\nXF-736UPy0k,90\nT4Z1mnjLwiA,132\nizxkFm060yU,129\n7AjmrbE-NTM,96\nVdXfnWThrek,106\nAWmHgNv0xUc,170\nGSQpio_F0Vc,147\n-rHnyOJuB0w,72\nW_Piq1uGGfs,165\nqkIEwsirwBU,120\n79tBbaqvbjM,146\nuAHjDGPOQEQ,186\nlX4H0NmDMck,184\n8RVVJmuoAQ4,130\nwlwh5x9eHBM,106\nHQSGHbbDR_Q,132\n5lkqZP5rBvg,130\nFtykdGuzX-4,136\nOA-SQ7lCV2I,156\n8wUtvaL4G9s,131\nG95g0vzTAKI,129\nCkqAe9DL56w,76\nyrxRCTUt6OY,132\nH02B31zvSKQ,130\n_-D3PfhuF5o,170\nUCYjKqnTM_U,170\n0wngG1BlZNI,120\nVSnBrgm2PM4,132\nsnpoOWqCy3k,204\nvbKfMbxFfJo,156\nABUroSunjEY,130\n9aqopEQr7wI,109\n9sAv5P29YIY,98\nUmpctrXzd1E,167\nqG8YoqrNMEA,132\nNiOPGDo5UJ4,181\ntmZiGfLVs8w,130\np5Lzdntomy4,124\nOdU3vEh3qfs,129\nDdG74P7j6h8,171\nDIt0_zQY00w,130\nNHRtlXDOqOU,133\nTTUvtnPvN8k,140\nVvcANYZCseI,66\njDMfIPRm7jY,120\n7UhFzTWxzBo,140\nbTrFBrULLmM,145\no1_U-Iem8fA,148\nNBJhQqGxJBE,195\nxIMi15Erjvo,148\n6sMjSp6yOBY,131\nL4_-rVenLVs,129\n7j9gs7xZ-9M,128\nAtb5LNPuxyU,174\n-QyAhZv-o_U,168\nRDnvXAkMnx8,126\nZ4DDrBjEBHE,192\nWEJZDUTGV8s,127\nfy9XNAkyfoc,99\nnAgSecmB9lM,106\nRs28rq81pGo,87\ntzybulrxn3g,73\nFPZ4yah3ROU,107\nPf4RjsdJE0I,179\nm1Q_m9pvy2A,131\nbpc3TKhS6MU,123\nCTVWHGj92Xo,172\nHEYktlQpnGE,138\nZoZ_4nNNn9M,109\nA65Jq6NKdeI,132\nOoSOmcTZ1ok,159\nBnmo8X2kwpk,119\nRd87CKvUHjU,129\n8KRzqPxR5zs,69\nXA62refAB2w,129\ndEgTjVHmjdc,114\npX0LbjUM5Uo,55\nH07vHL7APyU,144\nMnUGqPzLojs,109\nyAhuaFMTSKM,95\nsFJmNKLW-2A,143\nmL-M04A1D0g,128\nqU93Cguv4W0,130\nT_HWlDa9t6o,124\n6qIBzPrHoVk,132\npMPJV8sYt7k,181\nQXUXlzzOl44,113\nxGugDtX55CQ,132\nthSPQDFYyiE,144\n3wft012b2tk,178\nHMUnEpn0n9U,135\nXh-8LVuPArw,120\ndw9seHSkfw8,91\naJ7NA4hNNc0,132\n8TM2yB381fc,73\nwS9RtY8dVpo,114\n-CKzCdneg04,111\n8eC08uGwWiw,133\nroaWSb9xc8I,162\nN7FKW_RLs3c,169\n7lbPHodrgC4,171\n1k1r2zFnwQc,121\nEqDntjV9GIY,121\nhk6Vxhx28bo,132\nplUXguATsTQ,157\n4Y9X5wDG4Dw,126\noLLfx_GN73I,117\n4xVAvx5hTic,107\nY9nW4w5tHVM,169\nIsx0GBj1fxU,130\nvVfLenSAj8s,128\nEYh8GOoyv-M,132\n-QiOCO5-ZPA,132\n34c473tq72E,132\naQsyA4n7GZI,104\nnLXoZ69ce-I,131\nwE4I9l7Sc_o,146\npQeZSHyCe4Q,106\nagRBVqecl5Y,122\nHTbSaYy2Bhk,103\nfEocj1eLsmg,164\nkpzlCDIwzEk,93\nt5zLt-NZrtI,140\nTIQP5uv3D3Q,128\n8EcrxgHLhIg,126\nGBXYXp04Los,203\n_Q9JnjhXRyA,260\n5kopF-bCBC8,131\nCY2ruk5Vkq8,66\ngwY85_MC_AY,166\nECiut2qgJck,131\ndNlMe4kU9TA,129\nNH_wHu33CMw,129\njF5_WqbTmW8,153\n9O0D63xWNLE,106\nKoDrm4b6SH8,204\nfohry-3J4dQ,132\n-e_vbnd9bV8,234\nHSPYgwP9R84,130\nHTjeSsgZVW4,132\nmlcBwNHilHE,133\nhcIZa8FePZk,170\nats6Rg3WPbM,117\ntwPFRVuWNjo,127\n0zgTcrZ5030,128\n2R1lEWNNsV0,131\nRK-RPsc0czc,119\ngKRyD4CSjto,131\nhfKhRRdMrVc,191\n73b7dIqGdUg,89\njKyhNbLEKxY,139\nMeY7MlJJOdo,51\nBI_Vx6y7xG8,174\naU6KHvuvxBw,130\niGhEOyypT2A,78\nypEtxZjRJz0,154\nzE2-th0lNbg,131\nZSL_Z4FFmjo,85\nGhTOt1_Miag,132\n7Zx5tpFmv9M,142\njTNoDcmRc0g,132\nrZRX4JMxQMs,160\n9s84zV2VCgI,123\n1ZpqDhQJhFA,144\njWyeugspkUA,123\nYc9vYLgQb4E,128\nMq0xthZjW-s,179\nHuSM3bZf0R4,118\nMmIk10arVaI,131\nHnyvaqsAcVQ,164\nYOhPdUMzXjY,117\nt-JFogFsPHQ,238\nzQTDoxrgBeU,148\nNzbdfpYUxNM,76\noNmhgpAGlBs,129\nQwrGZWHTbt0,132\nyPAPYhU_zsQ,111\nQznOO8Oo0Aw,93\nspAkj5YYnIo,131\nuk04S-0HOXY,132\neFnw_27t9-o,120\n1iWqn89nvJs,106\nnRGCZh5A8T4,109\nOcoatqJqmX0,132\nQqVgAIcPfXo,219\npPkWZdluoUg,187\nWHFy_iSnR4M,241\nze-GArhI0iM,143\n0R3pEe2OW6M,126\nu4bLh7SN53U,79\nV2NGM0LYqss,138\nozpct8zUA_U,206\nfq-wBS0z4NQ,158\nddXUQu9RC4U,128\nlyQ1m8xbJW0,131\nxL-VX3WbA9U,91\ni2isplJSa8E,129\nJ7zl9A6-xHY,162\nBShi3Dn0cRs,209\nc_TXof1C-OI,130\nQhCISxbO7rg,132\nyuBFthJcBiA,148\ntqtqEZqGg5A,128\naU3KvhyJk-w,132\nJVg5X7dUlLM,140\nqNoGZiSKCaY,94\ncFjGykszgK0,131\nwKbZcaU-83E,132\nbDm5fnJ1Hg0,144\nvJCHzRIOOL0,77\nTAX4AOdqFD0,107\n9kJBc4o_3k8,153\nyDtGS3G3xtY,131\nCR8tgmpmgIk,107\nvmm8P0V1W4g,178\nM6rf7s7NXnc,170\n1lBbY5sLWno,116\nL08fJmbHcPo,89\ngYMmTK1rFvA,207\ndG6C9JuB4YA,150\n7PqjhsPYyy4,176\nZ0myXa48shI,115\nJ0uhG-I0GZ4,95\nRCzC3ZeMxws,165\n2OmHGM9zHqU,165\nJtW17JUoeUs,69\nL3VyRESBqek,168\n42YiyEjitsI,79\nQNpPmiU7BBs,122\nYmoTJu2iOfc,177\nKWK3PRNjZdI,129\nIsgHQHIeiBk,137\nDyYuDAmUqRk,131\nc0P_u-zs5-I,129\nPC4wbTAa5SI,96\nl3n95qTa5ko,124\n3lqYg7jpjfI,149\nLveQLUDjnaw,172\nLIIz82ZUCQY,127\nNbhfbT2aU0k,164\nX236AeHt5RY,116\n2-Y-e_9P8ko,128\nsTWdAdhTfYw,131\nfAfd4y1IY-U,155\nI0jSE4K2jH8,125\nOeSwSYmipqo,132\naQHOzbF0qH0,131\nujJJyIKIAjg,137\n-fQs640Ehfw,128\nZBRK8rVHVW0,122\n7ALP_3eWKZg,85\neCKRI2wEw7I,128\nJzPOYDni_FQ,140\nITu2LTUPniQ,132\nq-hS7nZ1Ok0,131\nc0JxgKT4jZc,86\n4rwJ3BnGrl0,110\nLX8mxeGuqi4,109\nKKOR6WC_fUg,189\nk6eXuHmQoiM,49\nVz56mS8Zz6A,132\nCWAYKPvjeHo,156\nJwgvbLF28fE,140\ncHT2zdQT3Ps,131\nFgYr00Scelc,70\nDTZ1bgOIaAY,34\nniul8Hy-3wk,193\nWi41GDMQxr0,145\noqwzuiSy9y0,130\nFhtwCGpDs-0,160\n-TLCaDbBv_s,98\nmDLS12_a-fk,132\nJPDhxTbWjuc,111\nUHPq25mUJwk,135\nzpFlShhUcIo,109\n2tzvi3Xp6sw,177\nPP9l4LP0WPI,199\nRZCFh9yDIOs,188\n-qSADHn4nqw,166\nli2zByHeanQ,120\nIA0v8pCN8cQ,133\nDSmDEMdKauI,174\n87YM78J6ebQ,149\nq2rT8XyVHhA,126\nkOBAOfh46Nk,108\n1j4ITRCTJL4,206\nNdcXHqLPufg,177\nRFTI9DnYSpY,138\nDTMVpuLIp18,61\nP0Tt7VUMLs8,131\nDh__Anjhn6M,146\ngUuOvBQoaHA,131\nwZaCK0PDUMI,125\nKqQ1UmDPvgA,133\niKqEJ2xeATo,61\nMgf5jaQO9sQ,158\n0iwVPWstvGo,176\nXeGQr6g1i9I,174\nDkMA0rGCU3s,115\nVqlqOiOST78,160\ng2iWVWVSb6Q,143\nv79foBIrar4,129\nIoavfE6TCbw,230\n1Yh8ZXaDY00,173\nS7OWoc-j8qQ,115\nifl_AGVJee8,95\n8DrsMeY29Kc,176\nPO8fJeJP8AU,113\ng6Hf6Wbk6B4,172\nYyWG5DAJc6s,130\nZgIp4Y5NoZk,142\nBHQdl3iBhkE,122\noDD1tW59Mjg,125\n0xWOfczSAe4,76\nww_lUn3jUoA,120\nUm-Nj5FvfE4,104\nGHWClE2g3Ew,179\nENRq7P9lAtg,114\nS_yY1PaFEok,119\nEEF7cXH7BWo,109\ni5ogNBaY2BY,138\nBrXDDicE1VE,79\na1YFvMDu0M8,133\nIb1awvls274,79\nKdkEzfozXss,101\nSyNzTdVQIno,162\nCZZEp8EaO6g,136\nXvGmOZ5T6_Y,131\n8-n-ybKQ_X0,135\nxn3J0iYO7sw,122\nWV12BpbBrro,158\nNGeFA2fWzX8,167\nkWjZx3bSDHI,150\nqc1k6uf-Mbg,138\n8_JPDEHU1ok,124\nyP5TAs29e0U,132\nuOPuo29uzFk,99\nNZJrGuC92U8,103\nuq4bRVYBdts,112\nNnxqVjeZzZw,99\nwdB2lzxIfGg,103\nvuR9pDhXPqk,176\niz3l5GLSWJk,131\n184hH4AknlM,117\ny1kqd_RgNac,129\nOUfJ9E9zfjg,89\n9FqZ2BMv_RU,163\n3ERuhks3GNk,135\nxUMqM8hl6F8,164\nqCG-yxYUgJU,124\njaIVHdFwqnQ,108\nGEDL7dCxWvs,123\n6pJC0FLA3Sk,131\ntNZKO_68_WI,130\nuUuTz9Hjc34,171\nouXz_ETh2eI,129\nwG5Lt-pineg,48\nSxztUnejrvI,164\nIvDNfFVpvZI,107\nlVZNAyNWcgs,131\n4F9i0gj9KKc,96\nIx8Gxp7XlDs,126\nF656vZAFGdM,99\nXQdE3ydNvCU,131\nPJ8v0jwQGXc,78\n4diIC2MRjiA,116\nvXrH5Nk8r0U,121\nKAEUeqJRxB8,175\nWpZ4kY3AJWU,143\nEuld6YN5liw,162\n5KderLI5hEc,131\nPnffktauNZw,157\ndo6yVKI5M-o,161\n1m3y_pIJ304,93\nGSwNuK9xedg,128\nTsyLQX9NH18,104\nrgVm_KasYQc,132\nk7Awv1n438I,152\n6DQTWY9wTO8,130\nU1ngzzlFqgQ,148\nIFTljGCli5U,137\npUO9-h182d4,119\nzRFatzj_5do,153\npWRCxdh4PTM,160\ni-2EJ-HDYg8,186\nbYUJuCsymVM,119\nJgqoFj8yVqg,105\nsXPBgnBxTFM,235\ncy2Xj8Pz2Tk,208\n70gIBwjO49M,101\n0VJnFDz4VP0,289\n-mjnbKL7fHQ,119\nrKHW39mShF4,137\nK5eVu2qDISM,136\nJ4ciEVJMzIE,188\nE_RNZFm1mls,125\n8Y_Vepe_rVA,90\nkk14nhuvBIM,101\nrcjujixxfdY,87\nGnWalWAmryk,145\nSAWm5lLfGZ0,151\nflWMIVVknEs,96\nLwXuIb6j_e8,127\nBdYd8q4jbqE,151\nVICyZk-XSLA,105\nHKDxpkV14IA,171\nJiI91igl180,129\n9RfC79nFT3U,93\nYk84fGy3q-8,97\nSXeVjXg9BFU,128\nTyB1CcaiPbQ,125\nFFGAP7FxZKQ,172\nv0i-Th0bvPw,134\nhlzm7-gvTRg,240\niB89FIStq7Y,164\nhwN_h9eiy_0,73\nT2Qc-56h_J0,103\nczU3M9Ye268,113\ntPgRnFg8ZTU,158\nfluJSCbNpDM,132\n676TpKq_6Ok,127\n4uRK1MPvUps,163\nw4RGgEi7T8E,101\nc0wH6YDfCzg,172\nWs4ETwvXFw0,179\nfqDTy6JWcqE,144\ncJOqz6CPxLY,129\neRRG_PNOQmA,121\n1nKBe0dzhvg,130\n1ccZkqYIluU,147\nKy5Y99wb_00,130\nTAZulrjrEDo,76\nfdrR3NbPARs,137\nhlKMLkrSrDo,179\nGuX7TUIGvRM,179\n0H0br7XdsYY,107\naqsJPtd8Cis,129\nf4-sMr967Jw,118\nDvcLVg4rz-c,146\n3HtWFx3oHTo,198\n_6FnlEiyZ08,128\n9M_shJ1_q68,148\nkGK73er3UdE,163\nqS2Np6zxXm0,129\nTU7CDejp6Lw,132\nfdSW39wQL_8,133\nEzxET3KpvSM,130\neurjNgZtg-g,129\nHc35xCKXOrs,185\nPnbVXrBlmJ4,127\n0jSVwZ8w3C4,163\n9j4v32pp0m4,102\nLt-Suz8LGEM,149\nMcIJxpY89Kk,179\nG-fyxbtiDDo,127\n45X0_m1KYQM,85\nhV9ArqfKqw0,108\n5HksV7ZFuhM,189\nEEPTRC2OP4w,187\n3nGQLQF1b6I,124\ns8WzJJoKq_4,127\n5USau0NMAxU,146\nm4a6jkZiOkM,145\nUfmbUwrXatE,176\nNQhm9xmVHdU,179\nwNibi-NWW4o,138\ncTOlg3u_fZk,150\nLoo5BhidY-4,126\nXh2kwqss0dQ,135\n6zquYbMbFNk,97\n7Vhxv6URu5I,140\n-4QqksHXUCc,129\nLMQd7xw1Wf4,175\neS47L5yU2k8,100\nR6oNHDPMOKQ,173\n11tbL8l5Av8,163\nyGUwdRBZ4-8,130\nqs0Fyp2bqsA,125\nVUNpJBzAyXk,70\nAAbtiIrTqCE,82\nX33UjqGVc18,119\nBvjorMEnuUI,194\ni7iLNcJKoE4,95\nmoYXL6hX8vI,77\nJjgKkluHXJM,88\nF1hMkfopHfc,144\nKJZLcsAmLbM,132\nYXQ11lY6v7E,173\nI-OaeRbZtk8,128\nVz6AlIZAe2s,171\n94cC4uVE_HI,138\n9l07Tr1w4Ls,131\n2PPNVF1tT6o,186\n7q5lFxaC2f4,138\nSwGjsWSn8ak,116\n0Wt72bHrHFo,169\nJkk2ai88ED0,158\nncnq2pu4PlE,106\nIYmiSXEQ7ys,172\nIlLkXPTm6ig,121\nCj71TWcfot4,134\nM3byaFhO18Q,178\nEzLXmzcs1Ho,148\nkFsoiAa-ulY,128\n1pJdFkkeu0U,125\nQCS1Gnwbtp0,131\ndHwJ6zB8B-4,130\nfYb0fQOH11g,173\n90KNvOsvEiY,109\nDTPq0mNS0-0,131\ndWJuJlmcabY,121\nLcjR2Z2iI-E,58\n80EaBRgGylo,120\nY3nUE1cWM8o,104\nlOmeZW0N10k,117\ncHRpQP_dp8Y,118\naCaTMqs_Qsc,150\nrrzV0FvYypE,104\nRHasf1LEG3Y,153\n1FXO-XToURQ,127\n4kVGdo53gwY,79\n1e7FILJsiZA,160\n4Vlw-NzSvoc,111\ncrZXwRmMq2k,130\nF7SNEdjftno,65\ntLiM-49DJ7k,147\noK_wtjlQcns,151\nuYWlWG9d4LE,81\n-nFHhXrXWzY,137\nIqX6z6djbD4,150\nB3ECx3J3LTQ,153\nMBIIKCaK5PM,121\nqeytg9JLx-o,227\ndGmuICb8a7Y,223\n7TG6R36bkgs,159\ngBxaGB65TB8,132\ntXDoydLr3YQ,63\nYAcZjKbm2tk,173\n_E84Vp8Rnfo,121\n032myLDgIqw,117\nEKdQ1jASEmw,169\n2XV-EU8JlNI,125\naB2fSWvsVt8,179\nwB-4zgJ2LLs,131\nGyaIF1iTs-Y,125\nrDbMqG0EObM,132\n88UgHHl7W7A,215\n4H1Lc_JHF7I,110\nNjjDcdIAK60,181\ndCCo8xDMsJE,143\n1YmOfCZ3ZIM,113\nR4lxBhDtvXQ,219\nWJs5SraEnMM,151\n7okueIbuBDE,201\n7WXKfXCiWW8,234\neRI0kASoaqI,161\nfa4IKrf2YHI,118\nz0MOAFFBXEM,116\nARTwLLhQZHw,105\n-iuSE7NVc8c,158\ndyaqk3LFlBM,178\nV0gKBcEoVdg,223\nQjLYqCsggvg,131\nTzmt5YLzDXQ,131\n87MO-gtYFT8,176\nkcONgsdSLq8,87\ndLl5PQg_Hag,178\n11Kv8mnxdCM,135\nkgNMy-k2VnA,131\ndvloIUSHogs,130\nrny3UdYPDn0,150\nfiqJGHbv3ys,108\niMOquId9FGU,168\nP4BRIozjuKg,118\nCty2dqTZSTY,125\nn3Ubm7iCzuA,127\nKXldzNF7Y4Q,143\nTQCgzi4j3eM,131\nlmlX39gM9-c,131\nJKD_ZN2VC3g,131\nKAOlo7Ijo5k,130\nyKguB1M0JFU,89\nDw5W0T5fV70,100\ntTsOHmaiMq8,133\ng9U0df6KJiA,131\nuW7Pev3qG1k,136\n20gzgK-Z5Yw,83\nTf7suGi96l0,131\n6rAcjVEXvSg,80\nF2Zm-637bQQ,132\n3smxtEacf40,108\novkiChacfc8,130\nQL__AjJr688,93\ncUX2Mj4SN7o,171\nFgrVh865bX8,130\nRPl5MeXIM8E,254\nKTpzQ8vWHTo,38\n95SKqMz1Wdg,131\na_i-mCZH5bo,142\nO10NcrfHaT0,128\nGPdEP_fFQhk,62\n8dXF7y1QUxU,123\nj3WOgT1A0XI,157\n3-16Bov2JfQ,119\nqwMUlFU1Db4,179\nI8ltv_SROgc,210\nhEzyoeRuxYk,189\na9biNJwX3OA,130\n2J8mkHUsiXY,108\nguWGxRXZbis,122\nRo_k0jgMvKU,164\nlI8p0rzq2R4,177\n0zuRe3QwPG8,135\nmJYE0HuKNfI,35\nD7Ax5jr6mDM,125\n7GRQKoapDIU,114\ngmbInMp4ioU,132\nwM-OyBwhuOk,122\n_Nz64htsk9I,122\nnhm5xXXqzqE,101\nba5F8G778C0,80\nUfeogSVgTsU,211\nRFjVbXNMsNk,132\nszLCkEBB6xs,132\nmVybomocIw4,130\nBZjSJ6AVd74,109\nWnZWACO4OOc,171\nN3qEvEGFdKE,155\nLh7bN_qJz8U,124\nJcWawUzwoL0,117\nTrjLNpfDTi0,220\ncKpV6Wb81Ak,176\n-kFJKQvCrkY,124\nYTcFsdIJ_Xo,120\nlPr_GBMu4O4,94\nLNqOTIBKycE,131\nMochwVdcaEk,175\n4Z5rOXxjRWI,126\nHehUdDtSt1U,136\nSrbO1c8QBSg,154\n5OZbydb0FdY,136\nkNrid4Vvxkk,155\nXeU6SJorcvw,132\nB2g2yYkNegE,115\ngLD9INIOo00,127\nk8Do9tamQSM,153\n9Hcl6jzgFu4,93\n4bAPlP2HX7o,132\nyeBM3nwwmlE,132\nsLAan2iZs_Y,108\neGoXyXiwOBg,85\nOxKtn3THP58,84\nnRLP98lG1YA,158\nFAOoSmjHsog,133\n2_pqFqYME68,94\nKfUxknvLpwY,168\n-64q4HpZyaY,132\n_GsQYT-btPA,131\nADRGgyhX4YE,124\n8myrr8HPt_I,111\nyFlxYvgV3VQ,165\nxi7nytFOO2k,131\n2_g-cXgaDhE,198\nFDDEVXimR2I,177\niedK7wzunWo,157\nyHf9QshbQeE,175\njMAy36cl6w8,86\nx_9lcdX85Pg,131\n0CrSOPGvblI,132\nhAnmYHMCkRQ,54\nVVxYOQS6ggk,96\nevCesc80vho,173\n-x8fqJDLsu8,145\nCF7-rz9nIn4,132\nQBip3RFko4I,168\nk2QekuUhgIM,138\neTeBFTlR0VI,177\nn5ArS3Got4U,132\nDuKvU5jh2os,125\nJqoqnJ6VNgE,179\n7m8_QLnRBFo,132\n6zFeIaPbJwM,131\nrqc2lyHj63A,124\nChPLYyubXiE,100\nYaSPWpKQzKE,125\nm99cHo5NBZ8,99\n4xcUJXRCRWI,170\nXVYzO4IEKro,99\nprLok_8YD8w,156\nipkF3xkP63M,116\nI2qyEk67i4Y,137\nWlS2xnW-LY8,119\n5FQ7xVuqOJM,102\nq3CTxWUxHUg,108\nrKfOjJJ1ql4,131\nN_xWF7HBpJk,115\nqAw0VczZGC8,120\n4z9TimZytDI,100\nu455yxBv35A,172\n1WnfdpZYp_s,198\n2L2dyDpd7LA,182\nKTHJmfCHWc4,69\nwXWoyVboDpI,132\nLiN26NHb4ao,130\nf20aUH5IG9s,151\nXBJSfGM5dGY,134\n-3upqhXz0nE,88\ncONYIjOytm0,108\nud1tMFmSp2I,131\n-edZKfoS2V4,123\n6cseBu1zBC4,127\npRyH7gS__WI,205\nIZcMgDET-fY,131\nLSlXOh60wk0,120\n-QOahlrO8Yo,159\nesJNnh-d2E0,126\ndt38_iS6u64,83\nhHC_R7ATGuI,88\n9W5MiCLa9DU,131\n3Ds0DRCNXN4,132\nmn5crhTusSA,143\ngQwpd1247J8,131\n02uIi7094E8,179\nFlaH13fnXk0,130\nuL2gxb-TcLM,132\nVtW2yWZHaO4,134\nrkaXuC5hrCE,132\nOp_fgLBxUQE,145\nmeEN8tfT7b4,109\nEt_Bdct1T0U,143\njOf4crp-WVs,133\nkS9NLX0pFVs,129\nZ1N_U1c-fUo,132\noz6wjc6xLFU,131\nQOb4mg7oXO0,125\nenLijb7P9tg,95\nFk_NuqIXhtA,180\n_m90Rm0RX-8,192\ntvy0nfXbStY,90\nZcD75L4QLrM,69\neXGYvqetC18,173\nnsyud-sEm-w,95\nE--mNnOvCm0,122\nZCphcTQguUY,179\n0dsEkpDiwBQ,87\nU-RYUQZFIhI,131\nO-LGISfFS4Y,176\nKAVqLKDwSOo,157\nxNGdLsWV0_k,113\n2FxpNCvBV_s,145\nSgqfufV0AL0,123\nhpDjzODXpBQ,119\nvCo2uqlAi4s,160\n14Mf_nTyWBc,125\n8RlDsORXN7c,131\nwgzxSr6l9Y4,130\nx2lBq3c3AIY,181\nIBqY6eBSQZw,80\nirNr2fMIvTQ,174\nK4j25DUQLgE,127\n8Qklz6BqVxU,143\noDA4sUtM9B8,168\n3w-MGV1cC78,92\njbdRO4BSXSU,176\ny4Eo2_YMZtE,90\no-0PQaLy0lc,201\nhM6ItEXb_Us,132\n2Y41IMoi1TU,158\nNae0ywUHE-c,129\nXGCcothBtRs,231\nseFIcguvgXk,148\nJFo6iLDNzX0,138\nQjUkgodriIo,88\nbI9CAfqY3hk,131\noceYG6ogT_E,115\ngrEV7MeCTsg,180\nN5L2PXUdQg0,155\nzh4yF8r5uJI,130\nQBps5R-4JrY,161\nD9MS2y2YU_o,138\n7T9nzAu7orw,132\nhwpHOq3Xbks,130\nPoaOwSPJPHw,265\nD2XKjKc8DKg,129\nrU3GNIhA7fk,125\nS3HubCxt0hM,166\nDcfEOMgI_5o,76\nnjyllF8b_W4,142\n0p9yD4E2hQw,125\nFhnVceTIOTw,167\nakMZQpIbTm4,109\nVDWYVgMxBss,150\nsf9038zMVgo,209\nJKMpRikJeLI,131\nD0Gxk6zCSFQ,69\n5rvk07eB9wk,131\nRH2IK1jcLuY,125\nLpOc7D4G1TM,162\nIHVBdcgvTaM,175\n13zrff9V3Tk,125\ntyoB7bjdzgE,131\ncBHvRuBtJqI,126\nIxi9imJZ40M,146\nGWL0Cj7bAf4,118\nc2HEnbmtknM,120\nW0ThLQIEwxk,133\nxsrkNeInaiw,115\n0SUcAyNL198,140\nF5XztYH-X-o,43\nDdktDH98D_g,149\nggC1uf1QTjw,214\n4uaPFQxS6pU,123\nAh5f0zWgfvQ,112\nSTrE338cTBk,158\nG2Mbj06Ns2Y,131\n5wxD59EtYks,180\nIs4mo3dbWvs,156\nQsuIp03FENc,198\nMuWwCUXGzWE,133\n7NjHdqTSahU,180\n0OdOZTw1sAo,70\noCHEAaCGj7k,60\nwqMPRiWvJEs,173\nXcFFaRpPdzs,128\nbb9m4vvEkHc,212\nWUujUq9VHVs,117\nOBuai_Vg6BQ,85\nzD_yR7ixRmo,154\n0B0YWUYWHS8,84\nfLjZJgc1nvo,114\nSrJEWL6QHzo,152\n0ay2sO6tWbE,99\nNyOTaHRBTXc,131\nW7uOKhmp00g,216\nVt-VF8GzQvU,131\naQq3mHLZ-X0,129\nvldYVG_5cZY,124\nJb0_V7JCbbk,120\nrCmp3o84w6A,95\nIayveLLh-HQ,132\nI68rpTRe8CE,66\ntOpPh1MQ9sM,147\ncAYVS8aRQ1U,132\noEPNSzLHZ2w,114\nE3RQVcNUcTA,129\n2PdWkXbnArk,171\nCqgTNaplJdg,92\nSxtPzI76s3E,131\nfcnYQxHinu0,101\nPvwjtOewYu8,67\njDP0UCV21Ew,139\nWwzmDbzboQM,154\nnZWo6dP2zVw,104\nFmOvzaWdpXI,166\nZoJqs349ahs,142\nM9phuyRknPw,111\nz2G1Ht59cpM,165\nTwgvEloIXVc,132\n7SU4vD1T4oI,130\ntAbYODvO524,123\nRL6JZfQq_qI,124\n_oSK6l24buk,142\nH8zCwVOT1U4,127\nPXEuRW2cOqE,101\nM2sjRRcONOc,129\nyk-b5jvZjLM,146\nxfnmRVym22U,184\nRM2N1w6t1KM,209\nnhP_9bFQvjg,131\nvOTtCjGqXYo,215\nxHCQd9zv3ak,106\nKEoQM4Q-FFY,44\nS8Vu6A9LW20,172\nq6nz3GR5Ano,116\n-YV8tJhGojY,107\nkk8MNQHBJkY,93\nY-4pm9C-jeE,131\nevY1lSaPyjM,182\nGHZnuSLPSG4,142\nUSD2Y7wRNgk,79\nU44_sEUJROI,142\nr449aYwQvE8,101\n-s0ov88pD0s,94\nts4gt7f_rek,130\naF_Ijr621tM,128\nsCG88QHentc,157\n0jxVnlRdelU,221\nGmvpP26J-40,131\nwoBSpMcgW4g,160\npMrk3l8El24,128\no2J59hT1Vto,129\nFuzefcAKLmY,122\n3MKwR7JipEc,132\not3mRlgseio,78\nDDueSsFUqc4,131\n9GQZ2hl5oQY,130\nmp_oRA5-HLM,125\nYsQEo4ja5Z8,174\nHUIP208nZZs,188\n63IwUcBK_Rs,128\ng6q_n-SZg-A,107\nYmbeYlShWZc,164\nDu82ML6YGRE,130\n4dm-ZfP3fbs,149\nd-RR_vV7qDU,134\n1ZA2qfP3oPc,132\n7hsAbjmNpKU,131\noknpBL5cNOc,209\nDJcTG-VnLrI,131\nD6DPbztWi8U,127\nqU0Y6zo68t4,148\nKGoS1jrmgHg,144\nVhc7iBAAawA,229\n5Ji_OS5Q17s,111\nVyrr1vSRYjs,175\nzyTVafoAylI,144\n1fsFQ2gF4oE,221\nV2j_JLlNU-I,169\nPGU_sBj_q5g,126\nY92N7SFJ0Fo,117\nE5vZWrsaYWU,146\nA0R1F_FhwRg,118\n93lz5IE7Z0c,147\n2fsMce1OvXY,131\nyyrC-l87Sdc,156\nRUJeDvZRsps,171\niDrYp0LApwU,135\nECfvSmDe_-0,131\n31t8eDmC1BU,130\nSyQSH3XmQCE,131\nRGdgqkgcvCs,50\n-XCvw6NPfVM,93\nXhrT25xehqs,194\nIBjOZQCPPXQ,152\n0XCqc9fIGJ0,132\nj85FRIQigrg,130\nzLKCXUGISSQ,104\ndezECMjxlCI,179\nYgJvgESR920,150\nyJlbyxOHrdI,175\nqj0L0g36IXU,121\nclP9p1ipHEw,102\nboaKhP_0KwA,115\nfIleQPfCec0,84\nILqwaOR70mU,231\nYWDTyG3z3VA,134\nwLPEeDsZwGs,119\nGPJNP0RvWHs,179\n0Ba6y1Y8JjU,104\nIthAv1JkF-0,131\nNTJXKGOgN-k,154\naJ67Fz1Jf6E,87\nh55rTtbCy7o,117\n12wHDwNXBL0,128\ndjUYiJu6K48,130\nRuPWLi5ifL0,211\ne3mwmwPhr08,165\nVkwwtlAGSwk,179\nCCGpFb4lNgI,161\nZyl9lO3o9_0,186\nEkptyQec_LM,158\nacnUb2KcgdU,131\nxqsDUwDwdUM,127\n5vecZ4JxUZU,127\nsMWnN_9GiX0,124\n5BkF6NzmHTQ,89\npGZtlbYLpck,185\nWbsZeLsYgGI,188\n2gzMbWXWIA4,144\n7O-kshviycI,131\ne6E5v6jLGpM,130\nQWepLWTflW8,128\nXgBvOoE5uG0,48\nn6rv6RO9ZFY,140\nHvIGrLYKRh8,118\nUTEUIdcqSfo,150\nHEB1OaFSaRg,65\nVbJgsN5PcyM,147\nHhFqWgJrtb0,109\n28MSXeKCm00,83\nJOD_65vh8GI,169\nVx9EOI4RyBs,178\nRTnR82EswKE,155\n268ZUL4dnn8,122\nUXK7kf1wmqI,92\nCpdolY2GNYI,133\nrYVsdfE_Wh8,169\ncAIHoTstrTg,129\nFDektpHARj4,131\nTD8G-aSlweI,142\n2aiVI2zBW3g,131\nryvvNrcMh-c,130\nxO7O6zwFZ1k,214\nv-8bLcH0iD4,106\npbzjsBcOuB8,171\nrLcAQVgMTSY,91\nyIj06I32Gao,175\nbDT3nUjN2fs,127\nGHKtN9jPK1w,131\nK7l3r0bdlms,131\nMneFTo1gRq0,171\nL1UxZJ9owXY,132\niEattbpjGG4,96\nmNVB-qi0qyY,168\nm1AuOoDw25g,157\nU89NOSQdgqo,235\ncDoyywKt1_0,178\nmFktba3DL8g,143\nI3hVaKO5olI,182\nSB_LjL0lUJ4,112\nWvITkVaOpUs,131\n1fxRMQLYRWs,156\nCatwTirgWZg,197\n4Iza5db5Zvk,132\nZD5vHtlpl3Q,128\nqYwrQOJ2eAE,121\n188YJIcBUkQ,118\nhmF_IO6Aiag,130\nsidn04cetvU,131\ni2MdefwrjCQ,151\nYsMdkGG2b0k,138\nxpXxwJNaZDY,120\nrVjV3FNsMtk,128\n--uyzf7X_0c,121\nghpYpbgtLIs,147\ndDQ0rUdj0KM,132\nGAsqObV4ExM,54\ndy9fKXNAhA0,116\n-9UJGi_b2UI,126\nSM-Y8FPMqzg,178\nrF2GB1UYxtw,121\n9I1aM1EQZ7o,226\nNVovWtkGbCc,135\n4x_MfkJvgbU,179\nG6tC5Mp9NVA,139\nwsYNpHaKJIc,132\nyZQYClpkJ1M,140\nl6qtq8aC2Cg,178\ntr97dNKSBao,164\nGmjAp2eRDH0,132\nVeghLYlAYxo,131\nfrE9rXnaHpE,228\njVGNdB6iEeA,214\nTXlHKTPfLVA,137\nm-Wccy-Mijg,157\n0yKd37DXIVQ,142\nt31U3QAkClM,205\ngBjC4SgMKDA,136\nw13Y3PHCqVQ,181\nvcxEgyiu16Q,137\n25yR3OUlVbI,156\nTrxJeKnKaAk,100\neNnr60_UZtg,118\nzS6OX5d-ZYM,151\nQErELQ48OOk,189\n9aldDI2WF7g,148\nDe2BarsD4jU,132\n7xSB_efH2N0,128\nOANpF6uHmBQ,132\nJ03lpGKZ0xc,132\nCDeNNNPzUlg,162\nF8dW1ddAC_4,120\njagJeaLXRRQ,122\nJQO8MTlO69U,129\npCQ0k_WvwvQ,121\nf5umSa_YYX0,117\n5s8dYeDZPAE,58\nLRD16Y5xR9Y,128\nHrRSo3a1ZYU,128\nxSVasSOEG28,132\nJYp5uIodwEE,217\nKi6bBFE0o88,45\ni7Bx0--TioI,178\npbWOEIzQ_r4,132\nfgJ2CaTfaxU,132\n5poOduTF5pM,125\nntNMz754DEg,132\n9OhIdDNtSv0,176\nui3pnIeA_HM,131\n63nDBr_Qavw,145\nIa8LqyDsdbo,134\nFKY8Wsd3fDM,210\nKFASQKT9JSs,95\nVdYPqVZIB9M,142\nAh8ALKwclVk,130\n92YrRetDlCg,70\n6R__cRZAVCA,218\njsLUidiYm0w,130\nAH25lc44Og0,165\nyclP414CLEM,129\nih2vstLiKps,168\nMAXHXJ2WgrQ,83\nByLhxX3WUxY,176\nvB-sBJ_DrGo,166\nb1KjK4fd3ZU,169\noTx_o5B0J1Q,126\nd_FUI6kf1b8,111\nQd4hB_s-GzA,178\nd90YEOlhtRk,59\nokiMnLyCMbA,121\n7tK-k8UURYk,90\nRsmcYTQsgIM,103\n88qGMm1AoGQ,144\nvAJAM1jm2xI,113\nMgFF-JBCHUg,132\nz-3ETV74ygs,147\nf2SskRLd4F4,100\n2kymD_HxRfA,105\nIYcgbsw7yc4,132\nkDtabTufxao,258\nNSOB8nt1Uc8,77\nT_SHaqh4NdQ,131\nCkgFvisOr_o,134\n38yH4yeJM2I,109\nZxhqyHBujFc,154\n6w0F9xVXn_E,98\n-4kio7152q4,85\nu9gzHfq9RsQ,174\nnpI-xPUygXY,111\nYMA_1YDqjYc,156\nQDdroG4R9hE,124\nZtrhzVGMWZc,185\nRyR51MqOl5I,131\nrGvblGCD7qM,151\nYcSXHU0zktM,127\nrdzVVp7e_0Y,107\n-G_I8dQHN5s,200\nAts9HUDVBxE,179\n4qLgo75Lfhc,132\nrMz7JBRbmNo,219\nBeAtRdD4roE,130\nMpiqRi2JW4M,179\n54jjaJTov6s,169\nFf_G9EYI1xY,132\nwIqMqkMIjEE,127\nIK5-KZnzxwA,86\nUKaGbPJZicM,79\nyC4LZXraLBM,179\n1w4rZE1A-fc,91\nyOItNhVYC3I,118\n6a0at61sWkE,80\nZ4wZt4J3Q5k,130\nQQq6L1Sw4Ck,77\n1VGOy2dylYE,126\nx2W8BqPt7mI,70\nJ2gKEelDYpI,168\n7VbYokM9dY4,107\nUp1eNda6Rt0,99\n2KOuM_aZ1-A,131\neWL0obbYYOE,117\n9lYe-ez83H8,194\n2j3adcbEwSM,113\nbfzJMOBenVA,111\nVsLUFKIRr1s,186\nET1bH9TqwCE,137\nNbT7rgb2QSU,83\n5eC6VCiJYq8,114\nTMVem9xHaHY,127\nCbB6CosDNV4,125\nhKr4-rNmLFo,238\n2xLWJOG7dO4,145\n0O5CcvLk-uE,121\nUhRriAA2Kf0,105\ndiX4myfR6vU,115\n2QD3ND3XiL4,151\nxOYb0ZdJCQs,105\nfw7p7tAdVuE,130\n_LKe8V-h7h8,125\nEm4igIXJRgw,109\nDo7U7AkA5jA,109\n2uRRExAY-8g,179\nCOqQwiq4uA8,146\njFEvKqbayIQ,135\neM3CovgD8Bo,134\nifPpI0fXMlw,211\nEBu1PyU04FE,120\nQimMZHQFaXk,130\n3iJMdVAsPpc,109\nhHsWQA500NU,114\nKTQnnwDN3eU,169\nyeMemdNO_2Y,131\nCCwUD5fwJwc,136\nsGCjNn2uJr4,92\ncNW7dRdPPC8,130\nKuMy7-yMXO8,176\nhiHZWeeoEUg,153\nXC3yGH4nETQ,111\n9l_USfDRi2E,102\nVqTMLtDj83c,147\n-gZPZLSUZZ0,128\n4bb7URQIpcA,77\nEQOuGXTYAj8,139\nN6mFvYxmiM8,104\n16hnbNPCFBo,278\nDk5SrjFVQIM,131\n0A0VANPUG-g,132\nxby81m1GtH8,144\nib-1a-0LHh0,172\nKzCVggIa4uE,135\naaGlVyyFOl0,129\nRtf8uPmgq0A,155\nIe6YmUGcPYg,166\nmEzXLJL48nA,136\nI7NtDM6eJq0,131\noIjgZ-i9v_k,132\nnuNQY06FEOc,166\nBbryMMaAUKo,179\nPhKy0fGOJz0,132\nq6HYlg_dJRI,162\nLDC0ii3Rwww,135\nUpsxCiyuxGM,156\nTLhaRe7Wvww,119\n7Za7WMgQqKY,131\njsGX_I6mFvc,176\n1u0rQ7J3oS4,83\ndKJa-KQNjQU,130\nAabFChK-X1w,75\nd9PlKlirxT4,132\nmGGwDmCTha8,67\ncFVtyYzs48I,132\nH44YauhtGPU,151\n5p8meeqGJbg,106\nybst6CAzXCo,111\nBctOA1EbnPg,111\nQkL9783wNOE,47\nGkTXRgNHzug,105\nE4e_QytNF4I,129\nF5gztKbIoaY,143\nUVmSx9Vv5M8,127\nz2y29L0uG-U,147\njnN4PnoJ1vw,164\nyth5JoZKnGQ,150\nY4g859J_920,131\nqxFHPIFGFmk,126\n1TqRcAl_928,181\nf5wOz-3L1jQ,150\noZ51e9IJjjQ,131\nmWqGJ613M5Y,183\nUB8wk3MOgVU,116\nTHaIWPlHvLY,177\ndp5dgNKh77M,131\nxEAsC8A1Ins,165\nC3ZMp57PKEA,130\nVkUKAtzE0r0,155\nBB_1LSxIC4o,119\nXzWlhLSitJ8,84\nvmyGlOoCbp0,179\nM7V-9UG5Pn0,32\nxx4t4fBIY88,179\nat6F59Zfqlw,176\nHZzHIl9mBsI,124\nSDW2CT5neyM,132\nVNBzjYyGcd0,208\nqb37bdNexuI,148\nKQt2qAPhUAI,112\nb2f2Kqt_KcE,113\ny_fgX9MUfVM,132\nsE0hL32wswo,152\nF-IumwPd6b4,135\nD_84bHFra4s,128\nXFdEntyO6TY,111\nEgXDPt3eW3Q,129\nNGhqTwxz4eQ,128\nZS7BASI6gpM,177\n4_hEef258iI,106\n2wXBmSecjDo,80\nT3nGqPQJqlQ,132\nsZTpI9Q71rs,130\ndCTd1XHbliU,86\nLkCHcg-UOfM,179\ntXNMNMLQzwg,174\nlgRkMyW_J5U,132\nDegHehO_nfc,291\nzrc1us4sDcE,155\nCvVeJJ-TnK4,121\nZIOGfLuHu3Y,152\nMTEXVT8P354,122\nIsGdB6a1Evc,137\n64IwbhFYuUM,131\nxTebNVZEvT4,184\nNHiG4hmxkjQ,169\n891M2sACu0U,178\nXpEtHWMpiFc,132\noSo9Wu-jAyY,173\n0FkeGnobtfo,130\nSlL11KaxU7w,151\nlNla5rf4idU,119\nsAwwDhNJJO0,109\nT6Lor5hg5nI,179\nBzEjGy7EPIc,159\nee6jqUkxkZs,179\ndME9-07ZvJI,134\n84k1F9o1g7k,170\n4nEpmBhIy1w,170\nMDJ7Du14G-4,118\n4ybEyyoBxts,134\n_z3Pfq49wYA,155\neVPIMety0MA,189\na2872XpfqKY,110\n441D9uXF1ac,95\nyCIgtidXAnQ,164\nGpQTd7WhT-Q,131\nPunAKEccqyU,149\nlCCeLue8owM,148\nvO6EKe8gVXk,130\nae6HngmeUq0,152\niOaD5cZNw0E,112\nTHPVDNnsVT4,101\n0PIbNyzb5YM,107\nG_OMV0N_Ls4,129\ntCLO2N6IqJc,127\nDDQzRai6Uao,176\nr-ddXOrPiZ0,131\ntURhk-5mDpE,131\nJ_L4nLBweuQ,118\nuh677-ClXCY,133\ntpfOhYRYv80,117\nOeA9yeqG91A,157\nnouLQZCXW4A,114\ndLxtD4f_DA4,164\nJgv93j5xcpQ,132\n8QMRQeYNd7M,120\nDp5YwZCGpm0,69\nJt0kFbvL7yg,132\n-9DrPi3ki0g,78\nkCb1R69h92Q,170\nQvKGF4DN9RE,102\nkfJINAKOgEY,179\nDDlHzP-SYFw,109\nS5jj3vqPau8,137\n2iWKnf3C8ZY,95\nGaNKOew-TLE,121\nfWP17t95S2k,131\nG-50M2Wex20,179\nNnrweogniK0,132\nA3WWrwBRH_w,131\n2-FvDteymnM,125\nZWLQiviq7SM,109\nwrRkC8RYqMI,166\nh5Qri9_giqQ,132\nN-MWa0s5iFQ,89\neUL9XgE3G4k,145\nn13FhFrtu_8,115\nflOMk-bWIxQ,141\nI64nwvRliGY,116\nWhWW2IXg_-E,64\n_YfbSVO6nz4,173\n_r-SkfDZphk,173\n941z56i7QJE,84\nHTa0oe5Ntvw,140\nPPNHvoOU1kE,104\n0PCcz5_8IEI,134\nwb1HDnYPPoo,129\nUr3JKxaUvUc,70\nB6-nYQbUteA,119\n0zfQoHORIFc,74\neiQD0Wk6Ekg,82\ngRyEkrwnyaI,117\nwWrB-Gbjnik,131\nYpa0vpmCzdc,131\nHur4Esxuurk,130\ngawe9W5HYtQ,155\nXPwdUzG03SQ,134\ndQGlAzHgPw8,169\nxQFsE2WoXL0,179\nlxKvt5Z9Bok,154\nGLQiskRb02o,131\naumRE2Eq88o,174\nvP8C80lIRt0,100\nPr6lspmWBQs,126\nj-a68r1d9iQ,104\n75PCq-Wcdhw,132\nspbfax8dOTk,94\nX8slBBJG-x0,117\n-kYzHmPDZwo,166\nDcwhTBEcbBw,101\nAClQyr2koxc,176\nhF4ErLUEW9E,177\nokGQj644_Ds,135\n6sQWxbE2RAk,150\nSMuET3l5cbc,214\nga5qeKd7oxM,94\nMY5NspwaVgk,54\nB1dK_oxzaX0,109\no2K5JzEAzcs,161\nt7DgbPjFOfY,131\n6p1EuLz9Fes,132\nAap_UtTuzYs,161\nQtrJ6ojRtik,126\nL8Ig4HbgA0c,139\n2-7Jdip2Pfw,132\n3aSdLAndoJU,124\njM8cy3uB5N8,165\nRb5mk6TfzoM,156\nGaGIb91Mi2w,117\nnR532k8M35g,145\n53uT454cHiU,128\nQoJrjjy0WeU,153\nPCXI31d3vlE,82\nWJXF9gcUcNU,197\ndlhTO_Pqq9s,132\nP4kQvkvGi9M,186\n1_GUmXl_dcg,116\nqvo_HDqOKww,149\nhcBF8zYH0s0,126\nZxcUzbEJx98,131\nzZab0Lq7_vU,109\nLKp3HoZGP2E,153\nbT6NizTtXug,249\nNus1mepMrDc,175\nkpS1Pghejt8,119\ndyqDd8esYdc,118\n0-HM2VCdrC0,132\nbbpQmRxCYUU,98\nFOYr5wApG3k,131\n8Ut9pZyyS44,88\nW98LPZXSzHE,95\njZiR9MHumCk,131\nDXA3GJb6V-M,122\n_NVC5g_Yngg,136\ng0yYxO89lQA,131\n0XjLzDVi03c,132\nqr7oBpkkxIQ,117\nBgfcwELYxUA,145\nQY3RIezZPks,130\noBfLI1WWrAI,131\nZEliNNDLyUg,154\nUCZNyjhoINE,106\nSv_GcxkmW4Y,177\nZ9mMBj-yFuE,166\nUeC962qKMrI,124\nbeAc5oqxBHw,90\n1UOLqmhi3AE,188\nlkAYkfIqivc,131\nFIyHh9pO464,84\nXIcTr-m-R9U,131\nlTiCL83_dR4,178\n1XqI8Lyp21A,152\n0Ihq2_hNnX8,198\nI73sP93-0xA,106\n62tZR_Z_y08,160\n1l7e9BD_gos,87\nNMKgdzm1pWs,128\nB96DjgGIxv4,109\n8-q2CNPDfOU,125\nAac0krsfzSQ,134\nzpdFj0w6Eg8,131\nPojd3KNQq68,113\n7tg6TqW7u-A,91\nXrnUNfRvAho,198\nbR4b3meiMlw,132\neCdRFMp8Xwo,131\nRjtmKIWa4tY,107\naLDrW2AXClk,132\n90vUFwUp6mw,137\nWCl3EnHnm_c,164\nIaOlL5WMFI8,104\nJRU1SrdXEZc,132\n-PxCqrjP9pw,145\n2PjZAeiU7uM,125\nKI-GzP94V8o,131\n6mQAgXT_lVM,157\nb8ZW-98Zn-w,154\nVGGxaRYEfO4,186\nCQ67ZyZtKjU,125\n-RuK7XKbefY,131\nKKiVFZcwx6g,76\nZTo-aIIxihc,139\nzBeW_hheeGo,100\nshehrh353Oo,110\nVP-S-KGKn1k,129\np6XV7oYBMG4,135\nWjDLin6Egyw,195\nf-DgdMpSo7c,126\n8EdOdfCM1hM,131\nIjtqQ-ojgcU,58\na1GeB9y9zzo,126\nb-QlCUByMcE,127\nvxTyxT5z0hs,83\npfLTbzU0FXo,124\nFstG27JuaRg,130\nJrYtD7gSWsI,79\nhXiTQfzucK8,130\ncqiQmO5frrE,229\nrSCm0viS2mM,186\nuYTl9G6HoW0,131\nsGS5r7NK5ZA,199\nCVdZXuc265w,169\n7enE0xOxDQ8,87\nBSRrzrQtmto,47\nF2Bw4OLZHq8,163\nPb3QUVXfKto,102\nJHACE2LTz_s,203\nzgQsfeosMf0,94\n___OJkS9RK0,130\nN1GwJt7fEGI,82\nhopRenk1oaQ,133\nX_nUklmV_kM,179\n1nmWEA68h6U,79\n6f24cpQ_Q3k,133\nvCuU2y6qR2s,129\nvSBQt-6fDr8,122\nAFMFZiFr458,118\nrv7NsGCDVDs,214\nLMT8UN9bSiA,142\nEqDd06GW76o,156\nwICMOVrSal0,136\nGNCOjiBvwCo,124\nHS7OG9zcV-M,124\nGRjqtMFumZk,103\ngrn62a_8fZ4,125\ntjrB1BtTnB8,172\nJG7S1-DC_KY,124\ngVseixK20cM,137\nrNmmNleiY_4,144\nDus8r5l5cys,122\na1REfTIc5po,132\nj9h6JvfCOOs,112\nGV3Rt3A7TAQ,74\nWRF2fIzwT6k,178\nkR8Xje2x0sA,113\nFCMMjNlNSuc,136\nG3BQd2K3maI,120\nH843vNJgIaQ,236\nrZlzxsrv4ow,129\nk95b72QHu60,89\ng-bxs_daoCI,122\nB-NhD15ocwA,131\n1AmiFfP9u5c,127\n1j8l24hHhgA,130\nTRHN5vxnZrI,131\nAo50y1xdfW8,127\nN2HtiOaOGx8,73\n3_zKy7ygsHY,124\ntGxxl7LOe_4,110\nrWvqkw0_xFA,216\n-BuN5efFTXA,82\n428tr8ixT3Q,118\nkHTAJHod8-g,132\nk2PsfXZ3wyY,153\nuu4tB54Uw5I,133\npZfva5xDNLU,102\n3JkBKGttM_U,131\n2UYrsFeBZoI,128\n_Ib_lBGuoUQ,132\nE-bYTMU6Dks,173\nytCAMgdi9sw,235\n613uBNehFWQ,159\ncFvxjIsjwoc,156\nG4WgfNcZgo4,179\ni6klSHVWbrk,111\nIicsG0Br1q4,139\n6mdAoQZkrjY,153\n4WizLeIdckw,128\nWpO_eNT9StE,180\nKNby2wixjzg,125\ndC1yHLp9bWA,130\nAYWEjOf5pBM,132\n2MdAw_f5pAU,179\nreKMIuxFqzY,148\n-rmALJkEprY,127\nuMp_5iP13r0,121\n1v38MMDYEMw,131\nqv-kBgAcyUA,130\nFDwpGLz3Mr8,152\nIFc2QKCnGEg,131\nUc6tQH8yHF8,119\nQ-bDppEz23c,105\nSswN494Jxr8,131\nnPXMny-9Ntk,131\nnCzYHB_8hXU,137\nhWRJQvuhs9w,123\nERvEZwe88JU,136\nnAp6q0q84vc,137\n0ROOrIJuhJw,155\nCn6TkV9mxmY,103\nixYWkDAPPzA,157\nUvJ8UDYipAg,137\nTqNaJxRC9NM,113\nTIbZNmvyLBI,128\nBFeySGJ75WM,98\nRFpNZ_n9rcI,202\nw78NFd5q_0k,149\n9k2nstrtUs0,139\n0Dc0Oj08S7M,102\nx1-axqBZdNk,136\nf-vA6GMMKgQ,131\n5tu_42LmfEw,130\ngNSs_gF1T_Q,133\njki2_TXdG_Q,145\npcj4boVT4fc,119\nDX3oTDhDOXE,112\n_yMeXMRn9KU,144\nJc_h1ufAXYs,170\nWy6ANzdhy1s,110\nG4lzPC22k8A,72\nElD6Vos6Jbk,130\nzJNfkO5ujy0,181\nwVP1wO_E4yk,157\n8jN4i-6ikWY,167\nrMlkN-7GRDw,122\nxsnWRnOdpS4,145\nGqECd_A7qhY,90\nITicydPuKRI,98\n_Zfqh2OxGFg,131\ngt3ntYidpvs,177\nxq1QFVrNxfk,126\n1PwmcgK9qno,135\nle6AAhqa_8U,106\nSnjxkiSs1Dg,178\nVmVWuswEBSk,204\noZnFQrIavwc,141\n0hL-fpCsGR8,119\ntoT3JGFEwmw,217\n5Bv5yv0n9Tc,186\nzBe5T01yBUI,112\nQBghpl5FZXk,78\nm8CkFFna7Ew,163\nfNNMKJ1f9JM,130\nxbhR3UYKLws,122\nA1mYM5yA6oI,275\nEPJGFrntGfU,184\nQR4x2_6qzXg,132\ngJGMeacAmec,163\nDNuzmKc7mq4,144\ngpCFk7jK810,124\nkjJUffVZtDs,171\ngeOqbM03Hf0,132\nJf8OtaR_9MM,166\np4IUUBVAUJA,80\nNUOag7luIOE,131\nUuuyzaRWiA0,125\n7eTl05KHwFI,154\nsEycv_wZaIA,218\nILLkD7hTxms,131\nEhsfKBbm1f4,123\ndxNL9-YlUk0,166\nkm7CMB9s8ok,128\n2TVyJ-51jzc,130\no2oR9qYeySU,128\nxqcSo_Yb7OQ,232\nsqhPvOlgzjo,132\ngh2apPe9pSI,97\nyooamJf-T_8,29\ntjRYZON0o9w,124\nwFBlmb2beQI,176\n4g4fmiFvXmk,130\nrClviS6MMvk,76\nKs2OUiW2_QI,116\nL1Z7sGSUhaA,149\nG8EUObgUFvc,121\npNo2v1jE8R4,212\nCQuB7dB-elg,110\ntXSER8y44do,121\nbHMka69DJZ4,117\nJ4LB77duP_0,108\n-yG7Wp5-8EI,153\nuNSSfdkcppw,131\nVZrBzpfh6hM,122\n9sngqjpu920,177\nqf2p-tkn7cE,172\noARVdCyRT98,132\nz39yOZpcji0,123\nfEpjHtkttYg,131\nXob7w4hR5Rw,109\n_v5zFIqjEZg,105\nbhGfpwfae-k,71\njbXNiAQHn_A,112\nxvQLAg16ZD0,124\nJmlx4p_9MfA,126\nmvTjdnz3s_4,184\nXhT1nAzegiE,172\npUWlaORsqw4,88\nKrIUn0qTaCE,165\n4gB-5OngLWQ,178\nOVXpH5cKWf0,167\nG1DG6f_6nZ8,132\nrviQWy48B_w,259\nYr1lgfqygio,102\nPehCORojjtw,127\ndIu418Y0TGY,126\nxN0R2xFmcYU,177\nbchPm7InHcg,130\nF4dOAIo0rrM,124\nQ1WdlXsvk3U,161\n10r3vyu-zDM,114\nJAHLYTVcm5M,128\n9MdivySyCng,166\n_yotZXdH09k,131\nurnRVr1P2bc,75\nqJkMktF_QUE,149\nL4PPqiuDNK0,131\nE303pbjYRdo,131\nzsqpY4w2e1Q,127\np0udEu1z-jg,80\niMIWQRhrAmU,118\n6OEA4J0sobo,74\nRiaUv2MwZ3E,130\ndxMTCKAWIJg,117\nv8pFeR0jO38,172\nm-OaVzrf_vc,109\ntNGuXckF_sc,178\nlGFrkYzbfoU,170\nSpZfI5x9PyE,107\nWVqv9kKOfvA,187\nNAWL8ejf2nM,177\n8O06gqOG3fE,114\n38nBkookHsI,51\najBHZKoKYbU,131\nh_bUcNjmuSk,131\nM2hhUTxFLWA,130\n-qVNWgbzbS8,178\n-UZY16_K3Pw,115\nbBLKvPSgQ2A,131\nZEfbID-2TlQ,118\nO5TE0yg-mEA,164\nn7mNY2F938Y,73\ne9LJG1JcXDE,130\nze-aAIzwD_E,132\nUyzhnEqtWAc,152\n9NG5mJgw6Yg,154\n3odMTPuzLwY,164\nt4WP3bODmfo,130\nBLFU01WKeBs,123\njKGudyrV0v4,93\nsYVz2G-r01U,134\nCsZmsu_-53E,152\ng-uc5_QEmuM,131\nB2CEGhwMjkQ,129\nZo70vB9nubo,142\nXrEpuPzxk9k,124\nCFQKJOXdXJw,217\nZZyXtEMFfaw,113\nsUxkumq9UJY,180\nfpE3kI1HOWQ,132\nujJ8talVp90,159\ns8jfw7FxNqA,129\nkQLYkEvyReQ,130\nhlx-FULnwJs,128\nRRcYHJ1uTro,80\nijrCSknWjeI,139\ncrB4KD3p8HU,117\nyfy4and2vPg,164\nGOjeFlHlPwU,131\niNvdewR9znk,161\nIThWCij8W0k,131\n8BNvCu2iqmM,130\nte-hhtqatQk,130\n_KCXk-BhTd8,131\naofM4j2teCw,132\n8pvAI1uDW9U,87\nPWjl2vignic,151\nFJv4vY954UU,132\nS_FAk6ykdvw,141\ndkErNkX2HKM,132\norhrsjDwamY,132\n8DbzvqOPUIk,172\nWmOiz8rBlmw,125\nRKn6FWvaVBM,215\nLXtVS8SFmJw,124\nLxMYNhlh0Tk,132\nBBkzG9_vrZg,98\nZ-hoEoga8no,192\nfkC99C2w4-o,132\nDz6Pe77tpPg,128\nb6X5bVMoCJc,119\nJ11TVWwQNvI,178\n1zWf02vGl3M,139\nBeYx_CBH700,137\n_32En06MgeU,153\nKvAVAKE_pRQ,138\naSZoCaL7HIo,191\n1BimnTWx1b8,125\nbO7iMQGQjhY,130\nTJmgMmjx2eU,113\nDh1V8GyyNYE,113\nWVE-c9ghcww,180\n_tYTcz52ZB8,249\n6T_cb2U5lro,126\n10fn13Q4wAA,62\njmmawolzwCs,132\nsXnYoBCJGwI,147\nkTsFXQ2Y_dI,100\njPF_mENo1Fw,131\nSeKVwumCmBE,102\ntg2X2RZsGy4,116\nrRWT4FRDq2U,133\naWyYZ3-8oAM,132\nXBPrLU4Zspo,164\nyvC60Y-AqLc,131\n2tVvgJbqH7U,133\nVN54kkl_nTI,131\nxPHXfJZpSms,56\n5Mb6xTtmtuA,167\nwCHqch4ILBU,125\nPZheNUuK8jg,120\nPlwmOgcEry8,206\nGeqKdTZugxs,129\nifFEIzFztAo,177\naNOmTuwnGYg,131\nhq-vTEalnj0,158\nryuW22MWnOU,182\nP056r-oeODU,143\nY-szf9FRi8M,170\nY6SIARg-j5c,176\nFgl7tImKroU,140\nRHMKRQocaQ4,209\nReFW-5bgoCI,77\nD9SLyzcYXw8,178\nIpW3QbVzNCI,84\nBoq7rlWzVRI,149\naN0alpNLQak,181\nsojzO-UWObY,175\nfsUKVpvzMHk,182\nYMwZaMNf3L4,132\nzFaEUnrsjL4,130\nej_hfok3bEc,123\nAqNEZ_QgvI4,131\nheeS8J_KFt4,162\n4pUeurfZ5n8,124\n8mmqyI9CVWI,131\nfRs243dwWkw,132\n5WGQCJmdEoM,109\nrbYJ1-y-sk8,143\nr_9PgiNuwDc,92\nC_BolURdHXo,115\nmR4FXksKdKg,124\n_CO3CMXf19A,154\n_s5fgacYzjA,137\nOF-1RqeBf7w,111\nCl-BpGO92Lo,155\nWC60ALoX_Nk,95\nX5Vb_FUuRDE,166\nYgXPN03oxkc,135\n79kT7fUtLD0,179\nM3u94uEBq9o,129\nSwtSrzKWoK4,99\nqVzfIUAzda4,198\nQAMDKK5sfd0,184\ng7yAbv_u-FA,125\nKYQELfxxAck,217\nz_Bx500h-DQ,62\nKWAQRU2PeeM,132\nzMFxbMh7JYY,142\nB2LLB9CGfLs,114\nkIFsRm_1G4o,201\nTKkrgiTpj1c,132\n9lCOuDWaGHM,138\nlssQ4w2V4XM,140\nwTk1noW_8Lo,110\nCqc48kDMG0Q,106\ncrPJvv2Y3hk,107\n56djkHojg2g,116\ntw6zV9CtczA,100\nLJhKwaZEEy4,139\nFccBG82Ocds,131\n-HI25-gfvxE,126\ndZt3TeTClV8,72\n9knEvoHQfEw,108\nHCLQRZmD1EE,156\nj3d3mrWBTpM,132\nU-mmbStFrAA,131\nCkN1FvtBg2k,131\npWhT-4m-4ro,129\nupGmHcSsGmc,148\nRcsaFXhuAwc,149\njQPhLeyzkLY,130\nmgSDir-wcGk,114\nPVMnl4sBl8A,128\nyBsFjC1fVx8,126\n6nTk0X-QW_0,164\nzPN9c-AIezE,112\n_snQsFAwjxQ,178\nLxmnOxCk3dM,194\n5AJvo1pc3sw,124\nF_NkBmFzs4s,143\n5KeGGAzEkNE,106\nTrwIvCFIMZA,137\nTNkvLDF7JOY,123\n4rGia6hIWmk,129\nPsWbydM-u8w,132\nytTSb8302aI,183\n85WDSyWnTZg,167\nAApQkNSViGg,117\nX8J0iWSsYV0,159\noKYBGq7pt3M,131\nmbFx0CbaIlY,129\n7s3dzArIVok,170\nK7p93XsmJ0c,132\nfmZhcaq6QV8,103\nM_bzbtdfaik,139\nLxWJ4QT74hA,112\nlA1bgUYjJ0I,173\nId0cqNWZ50Y,130\nbJuDofIoW34,157\nESvZ51pBN14,155\nOm_HVqAXZYY,132\ncG0ZIxenJY8,85\n--b-8xt2PeE,129\nC09knP1SAyA,179\n7Mbfa0caPBQ,130\nuZRTLpXXlds,132\nGnRb5AHOcuc,165\ns9prJba2vkw,170\nQMJfw8aF90Y,132\nej6dxNrh3Dc,88\nYSkZieDG5U4,128\ncoWFeBI9XoQ,153\n0MHIzgCZcxc,84\njzzrFFivBKk,130\nONit4ATZmhw,126\nMfHiFaZIc7Q,173\nX-HeG5tFKUo,60\n1l30kkPQfJM,129\nHraqSpgcdgM,154\nF2r8a3juyr0,147\nYfof0ch3R7k,92\nqH3jaW3YJ9o,148\n0U-kaLEaThU,170\nJg7LxmHGNd4,92\nIhdqG2gOvvg,137\nzmaZsAPGd5U,91\nW5_sieIOe88,173\ni0yWgvRAqTU,122\n8kssysjyPl0,160\nHwYyKEu2_Mg,208\nQxju05tBuLM,124\nkLovCSv9-Ks,129\n_vHFGZXqIis,179\nnwvUihSxHGs,210\nmILfbvj0xtk,178\nQ3znhTOUqi8,108\nK8IgSndDsjs,179\n8iI9iC2OgFY,131\nzbJwjn4p0cQ,132\n2pVPaPFm5iI,222\n9yHJcx89XXk,166\ndLXri8sYr6Q,138\nOurCnuyC8zo,134\nHZtQl0lF3OE,59\nfZNPbMu2Ge0,178\nqlJ2951IShM,82\n0oxx_2M6Ctw,114\n1Oq6vztcjgg,215\nwW0L86VZScs,132\nql5i_tg-wZY,92\nE25WrYP_1tU,84\npWYPN21XIEU,131\nWGxTMoDAI7M,87\nhRBkyOT8ZPk,105\n6qqJOQltyTY,198\nAok-54MlYFk,163\nZl9yu2xvv78,121\nz_hfmThW4fs,141\nSqb85Gfj0Fw,178\nGvyKxUL0x0M,116\nGI8Vrbnwre4,192\nzXroRe--2QM,129\nWwrlI3z89Pg,72\nSCiMcDcoi3E,100\nAYS6V3rDT6c,146\ndd_IWBNSKY0,156\nt78EgRBYIh0,129\nUsKSjKrIEq8,172\nUc21Z4ffSns,132\nFGSmKV6K__o,156\nkGot2YelCpE,125\nt9QcyYlB7Ac,146\nkmigfm9ZONk,161\nCglQW97hCe0,200\nchBVj94zYDM,132\nDI_2i5BZcwI,87\n7DmN0--tZcE,172\n8ltYYXhGCBo,99\nj9JfUXYQY2s,122\nBFaNTh5aqls,68\nepBGWHCrfr4,100\nOjIh7FHeH8c,105\nIs5sRHNIAwE,186\n_KinUMIS3Yc,85\nm3s7ZwpFCsc,129\nZHRWbydTGrI,132\nM4oJLImqZds,161\nDh0210A-VZo,117\nKBbowtlzD88,101\nVhCQj6D3JQY,138\nv_wQqiFXgkY,175\n9AmyJhS8WWc,128\nzqWR21AIFJA,134\nUmAVyowgDVE,131\n2bWostOI7uo,189\nkQrU0KRsCNo,171\nikqDLmNc678,164\n07rlBwvlBDk,126\n_DWgvYbpexM,41\nocyplDqvhuo,129\nFaLsWjMiIrI,94\nz2ZqFFFcXmg,215\ndIw0nCJpAqE,123\nVy-simXeFBc,133\nFcfsKx3pADI,131\n6O9GrKXP46o,177\nj-dYZPMpoqI,189\n8cLtNUD4Hcw,179\nSwITnQv183g,130\nscDWdIV7Fes,211\n80sCD2p0W1Q,131\nmmOGHo7MYK0,105\na2Th8JGsJuo,65\njX09Cesfxo8,139\ngbbnGtoH37o,118\nAQUEnmFhk7s,122\nJA9ZcCBGQ-M,179\nU7xQuGf5QHA,162\nUdYapy35qJ8,222\naeWbTffMq-A,182\nKd-81VRVQXw,126\n0JDyXQvCsOM,142\nElFzH0wPql4,95\nCJKeL-ziA_A,58\nJA4fL1qiQTU,151\nrzs0681gdf0,131\nK1YndrF8GiU,86\nkuVLtcqiPrY,122\nviSCkcVXoR4,181\nE4sgImaJTlA,52\nY1vBIQiyh80,122\nCE8HyH5ldEY,118\nZ0iCcI1Owys,163\nxCKGA9yDNgQ,127\nXh1TwRilcLo,130\n1tclZvb40QA,166\nZkPfZTLecL8,131\nA1p4HnyG3Rs,165\nTDhk_Xhxc3c,149\nPPwud5IUnYs,118\nRQV-8HxVB44,93\nqkfcZ4zdrfA,138\nbQyfZXYp7Mg,103\nBG59rpilakA,151\nkHk2-mOOYQg,131\nTRDdgGdGfbE,169\nxRFVqsmbLWY,206\n0NRYcIcHfV4,128\nALsbjcqNdRo,262\nGfHOoFVUk9Y,140\ncncKzAr-jis,132\nNNfMLLVwiN0,181\n-Cc7j0yr2BY,104\ntPkmKcc-LAM,163\nKi5TEx2nIHQ,140\nAhaulXxlqCQ,129\nDPl05d5mi54,168\n6z1TOMdI0i4,135\nAdBu6VAESeI,132\nV_qYvdPSRto,107\nf4vVtsfEMRI,80\nsBJ2jguXBes,126\nILfjXR8rMgY,156\ncv7_7dSbaOk,124\nax59TmvzCEg,183\nG-guv9Pd_RA,85\nPXetdfRsmwk,120\nQxK_EsMjCQE,190\nxs3_hNYAVRw,120\ngRadASOF2m0,112\n-3KCgSpt3hU,129\nTu1RZaFnkKs,170\nfYKLuSKW4ao,129\n0JnpUYMPEiw,127\ngGmzT-Km9-4,182\n_JuHsTbZKqA,99\n_p0nSJeyRcw,127\nYBgsfgkgtqk,102\n-37Mhsak-XI,132\nWEP25kPtQCQ,161\nVvH6ZeCJNHA,132\nFm7B7WzAA1M,132\nPUXHIqGfkXs,116\nMSIKLnc1CSQ,133\nQdDQrp0xXWU,119\n2hZFC6Q8zk0,158\nLxXjsQbCZR8,132\n9h9W4c2YLCg,126\nEgb6g_c7Nek,128\nVH6D36VQ_uo,97\nMUgLPMuwDfU,129\ngEqHJ1tomnk,132\nVVLlZy4m23c,122\nBHJ5KGh-Xnw,147\nA0mUARG3EzE,198\nYd1Bx8u7Om4,131\nhONljrAJrH0,115\n_3GmO3aiBKY,108\nMK1fYMxkkTA,150\nChcCflTm4-k,201\nFBi8SGpLTGI,115\n8V18ashYdDM,149\nhr0hb0gc2eQ,132\n7JOey0CIgMM,130\n0XesK2hB_Wk,109\nTVjIzlCjKcQ,118\nInIEECDCSYU,132\n-PWyO04IJYQ,117\nNrLSAjP5Ibw,154\nfrFwwg5GJ4A,122\n6GAilUIUtpw,193\nGqbrt_dz_TQ,140\nhuCdZLvSyBI,150\n75UHGiJjNuw,52\nAD3JQD0N_iA,77\nzvtUrjfnSnA,129\nQfS7XUWUgL0,132\ngEhB7HuQk7M,151\narJc5qABgO8,129\ncBiLSCP95Nk,148\n_ItWcGtaJro,149\nbGWyL-vJAn4,85\n_kz6s5Yi5Ns,114\n02DzpeBF4es,115\nDMyBC0gLSgg,130\nI7XHygPKbYI,164\nyM7iQ_plcpA,154\nIhJbjhlRPSk,127\n1orN1oGScbk,130\n_SVAzrGlEmc,150\ndzw9h7GnERM,137\ngwTTsc0zMco,129\nDMUnxdly1zI,123\n5yCSPi05MyA,172\nUAfx1pipLQg,132\n3JySRf9aTPA,160\nDomJHvbM7qE,71\nz2QvrmvECo8,169\nRdU8F4C9oDw,89\nIaAhl7maKhk,173\n6B-QUGSCV6c,179\ncNqstBuw5ZY,131\nhnfpujruuv4,107\nmj-34Q3fCHs,169\nSX9tVVvLb2I,244\nketh0g3CMK4,170\nrXs41JvueZY,111\neSDTJ1sE29E,159\nk-m4QOtv-rQ,148\nYVjyXY_mcl4,132\nfU-ICxohwSc,100\nNsjUpOTLrr0,111\nCJIECQdjuLU,131\ncZcI8QATy2k,106\no7_kf3hUg30,77\nEkl021fmWGc,112\n1XEn8W3UA3w,140\nk6_TBuGcwzA,132\n6NmCTA1AK54,128\ns1Qz6N4-tEY,122\nb58fAt0MdgI,129\nKaCyEft6EmA,113\nIrDm-HzK2y8,95\n88YBTmbAaoY,119\naVv3r2pUtFo,96\no36m-2TPwck,155\nUpiqcjnWZB8,125\nM49PmHt8PEc,132\na51EYR5AeNk,165\nVRTb5eck250,178\nqoVuQxxeAl0,56\nYkBuZCr1O4U,153\nCD0k2oB61h0,125\ny5oIDeR0YjA,67\niX5_-FORI1I,180\n-T0PH7Wv3eo,69\nF0KcFyR2uAc,200\nr4K7eNzseCI,82\nBHIg0d4KQMc,100\nR1k_1p3mitg,210\nJqa0bO9PSqI,131\nASsNtti1XZs,127\nIvagCOQJuYg,129\nBnPQSD0Pg4E,199\noPS8-oRvVh4,131\nbAjGVN4f6wM,193\nB5vXrSsvqqs,132\nj-v6XtJFNQE,121\nGY0xXOTwWoA,158\nvOaX_Naqxb8,170\n-QJsljIDKkk,126\nbHwiXFc9MOw,105\n0jTSJ6NK6-4,87\nURquvu9F3jo,131\nXG-c6CmPo4k,146\nP8zlYvk98gE,45\nNxSdB2L-Ffk,128\nUyzInzm8gW8,131\ngwjAFSu_VKM,175\nnEcnNSQZpoE,229\nrGDHR_rveJc,171\nYZ11hDE35QQ,123\ndApRtXZRw1Y,162\nh4u9pO-98ZM,84\nHprI62nr3GI,105\nmUxLZWWRKUI,130\nnoT3bA3Ibyk,110\nZ3m-Ht3_tFc,132\n9t1IK_9apWs,132\nFEEIJNnfoVI,134\nud421fnpmYs,149\nKLp6N46er6Y,178\nQ49LEs_bhaU,132\nI7nWj8Q_FgI,88\n1UbSL3Bri4E,189\nblbqbdPFfns,86\nFX4J_vERu9I,178\nBT5Z6_xe86k,66\nw5PGP9-_x5E,131\nQBMv724lzZI,116\nQo1WkD59F_w,179\ng-P53rME1xE,131\npTqtWm_DTKk,132\nwlFo4ydbP7c,182\nylvCOlF5RLI,135\nvIwfwyjbP4g,216\nvkj3RBOD3cA,215\nuIQL79UQG40,133\nMHpGJ-jtGy4,114\nEBPZaYv0_AM,158\nZCZDWZFtyWY,129\nF9ZeSn27MMY,134\nDXdQoyWxHZs,121\nOjxcWhQYMKw,181\nHjNQLXXwYfw,131\nbdYiJgwzumg,128\nPJ7W-dz1OvE,136\nP4fFh-wHWl0,177\nbdft59iqlKQ,132\nF9E_PTTHvgI,136\nsdNtnZbJBRw,173\noHeh8nSghcE,136\n4PcxtcrI9_U,132\nmKDqrUqOe8Y,132\nnM0u8GRt_hU,131\nSCcBom6117E,117\nNTGOA6lPP5w,150\nuen_1bL_TXc,170\nkQ65F_pf868,103\nPPKdHP8zWuo,129\nani6MlnXj2g,134\niv1eE7qxDXA,131\n9LiQ5MZKYUY,99\n0vXx2vS4iC0,132\nY10g9umKQcM,125\ngXRw45jyIsE,134\nfaX23LNpQGg,126\nSTKWsvhZSjc,143\nCg5dSosn_fk,132\nszNrOdjjhkw,113\nTiSGxWluH-g,131\n-n4RtjEtFUE,237\nXrZN8Sy-z6M,117\n-Pf1f0pZdnQ,126\nHLnNY2KiQEQ,173\nbCKgFFmf_iI,131\ngw_zwDaiuJs,109\nZHS4xXmL87I,139\n_BhAyhppOvw,137\nzal_hU83ruo,130\nd87eHGVaoc8,82\ntab4Nxd8GlY,122\nI3LIwgA7Qpk,176\nFIlBqZ0fksM,140\nk6TUgccyzNs,189\nquEBzmchcwc,131\nzR7e8cPlhzQ,175\ncKe4qiOYFyM,118\nwdWM3tzzH08,127\nwreBOqv-y3Y,161\nwUT5CpgYXMM,118\nyD3r8xx3iX8,208\n19qTZoeOEZg,173\nzOTlBEbI7eM,161\nc5aNkzn_8Bc,131\nRfltPijijjA,125\nEK9aDAUBBhE,170\nBevEBQsAoPk,131\nQCJ_a5AYVEY,153\nR01bex9Ejvg,116\ncZZJMc6QPR4,130\n9CjMbFa2Oj8,131\nc4S5JKBUYHs,185\n2BNVMvzHvT4,100\nVTZ0N7VTDtY,130\nq75FfwmyF4I,136\ngCnWKrvrCNw,62\nl97NtEMUx0M,93\nZAhwNITS1WQ,92\no6NxwI5Sbbw,179\nfjodt2JnWT8,85\nb_2-97kqlzs,178\nyKloyDDxo7g,167\ns9nYXJweTPU,176\nxAmgUnwxCUc,191\nHrIyLLIHrDA,178\n-IIHYIZSFbk,108\nfyXyDW0pU7s,128\nhggAh6GibqQ,163\nLydYnbMzIGA,178\nvxloU1qqM_w,107\n2Nd_TsVQwgA,146\nzzORtbUYE4c,158\nnBRTe09eseE,149\nUDcu3Pg8LiI,154\nbzoIipqEbXE,132\niWrr0qhRNaA,166\nbdJt1Mggjl4,129\nvdyYR85RNkk,122\n2pFBwbyyNac,174\nE81RLAQyhCA,179\npx2rxAmJNHU,176\n5ke6m-Y8DHE,107\n63KhwUcX8dE,132\nFARHf9b8zyk,124\n8rN5CaA7OUI,95\nGIKfEAF2Yhw,131\n4WCDgJSCQpc,196\nybq8gINMdBs,165\nDFgmFM-w0Rk,178\n0mwkZUkwEHw,132\n61ZwsdoEI9U,178\n85PpxPJ52us,72\nAbkZAbJqcIA,174\nICPNrxD783c,132\n0x6usdVsGbI,99\nViIuvUSF3YU,135\n2k2hQ4dI5Zs,137\nvAJ_RdlVzgw,118\nFSB26l-iDEw,54\nlq13hsPI-yY,105\nV0Y4f1UoH9o,129\nAtZDj7gset0,132\n-CXBIAH4Kgo,165\nsCSUnot0u30,139\nfI5qOb-otrs,137\nf187FGFi1AM,146\neqv02JDVQ1o,153\nKL5rXhSkP34,141\nma7zprvD7UA,171\nKY7hswfdxI4,143\nsorSQzGGdv0,106\nHdh3npiRip4,150\nbtwtChuzeaA,110\nJq19-ZzDlc4,172\neAvVsXliFxo,97\nTHe7-5-D-gM,155\nq1V_8cCX5Vg,132\nkb4jEHmH_kU,184\nX5HvuYGCyzQ,167\nyYhuz0q21_4,112\nRYgoemOYknw,92\nxrggI-ISIQc,151\nygNoJlu743w,132\nmn6Wmceebfc,148\n41VUCQfnnco,146\npfk_iBQzECI,129\nSjfMBu6JQ-0,125\nuzIEsj6Me9g,128\nMr7Ned_vQgU,154\nyWuZtDeeZmc,100\nYHTyGMYFsU0,125\nEjWWHD7bN3A,132\nQ1B3sGDIxtg,113\nCRXtW09cufc,132\ntDW4X-r1dQI,130\nBtEfmxkeEcY,131\nEuUUunxYat8,120\njKa9O33GXLI,131\nrasqcYuX80A,133\nf0wEV9jySXg,148\n2l1u5Q9AYjM,111\n6S__xAKQcF4,132\nyBM4SCBZ7qM,173\nuBAd6Nfv3uE,211\na4QlQy31HIk,164\n_XAKjc2gIfo,117\n_mzI1HQ0cYE,103\nE7fcdG_azPE,81\nRR5kEQ9LgvU,168\nAb3QDSj2ws0,124\nTd6UanhjhVs,132\ncr18oXaI02Q,129\nGCM5SoA82w4,113\nzSBXBMVa_Y0,105\nTGoICPqXjAY,174\nLbkjkJzREd4,131\nqerH8bjHVnI,132\nq_y1Qe8dyCw,43\n_T6r7w_m504,178\ns8hKbzuOAQY,160\nnIsM8bP-GHQ,170\nnB95pK8TgYw,101\njWHcIO4y8kk,110\nkEnK0ZdMThc,178\nH37dm_eRkLU,109\nkoWVPnRRGlA,131\nMvFkGlAqYYc,153\nTwQ1KE0CRrI,122\nGlCN1EPAoHI,179\n6_gHh5IEgi0,211\nH9Anw9hFNQE,67\nn0MW9qK_xlY,176\nVN-AkfFZwfI,122\nXX2EpE8SLK4,181\nTzpamJ6GsFw,172\nxWZtwOffj1o,171\ngsYcnpq1HBc,175\naBpwrORhKWU,135\n5EeD0NiVALs,158\nGYPwh07eWok,148\n1fM9KjHmVNw,123\ngNT4N5W81Hc,173\nGfH27NmFVSw,122\nml_zSw6yWOE,170\nZ4zy9tTPl2c,143\nJQoNhRN9CiI,173\nQPmSOAIRsj4,110\ndDH3nlKHRQ8,176\ndGVvqcGBn_E,134\nUStNNBG5K0Y,147\nd5nAgnojNgk,166\nY4fkp_IINqo,121\nt5eRT32QWdg,78\nwyzpqpXHcSE,175\nMp6aKCE3jSc,179\n8kAtef-L6do,62\nt-dJ4I7rGp8,149\n4oJlFH_1q3Q,247\nk39MKOaoDhc,146\nbtXmzToD3W4,177\noLQ5NOAIAw0,143\nwVAL10Zb9Q4,127\nrLtmIBRWQVQ,150\nDvi6n89JWUY,171\nI9npL6x8oFQ,72\nayplsqakP80,86\np8lLNtyeSz4,132\nqB26s5dx_sQ,151\nwEzZX_MFu4w,86\nedBNDiSwnlg,184\n846by3LOKlA,168\noDDexxBBWXQ,161\natNVzztHoUc,138\nUbrDTO9asW4,188\naj71pJABFFU,166\ngLLgGSdfy3I,196\nrITjAbXej3o,149\npDnPZ0Ccdus,159\nrTBkVOYzVZA,132\no3f8UMtGyoA,112\nP-3iw8l0lB8,166\n8aegfjXaTmY,160\n-PFdr0SiAEw,153\n--vFXH3mH3A,179\n37yJV-YPBJY,151\n2YbvpD3WQnk,83\nKpomd1Lwn6Y,139\nMOA_WeKu76o,118\nqgbSfZMR99w,133\nyuochlbdRmQ,127\nNFdvt3FQRoQ,149\n4HSdmiu24xQ,149\nKkV42m5wVTk,113\njv6-p4kphmc,139\n42tGOQelinA,132\nCgmI90T4Efk,175\nl4Ws4ou6UO0,167\nCtARWCZGiag,112\n2QRFeV4rPZE,86\n8osP7KRacWk,155\nLCljgWh4L8Y,174\nwi1iG6DIFOA,159\n1PoAz1WNBdM,132\nKpM_NyYKwkE,130\nQzzcHhFa66Q,104\nU8x2PcmL4pg,132\nJQLBuA1JCfg,103\nBktKAiQQ_tw,151\nuvAd-GbYBVw,178\nkBI3jfVTQ04,144\nlhY7RZxINlY,131\nqtKtxLmxl24,120\n1KBy8-7nc1M,153\nwQlyX4xKYeU,117\nHtC2c6DQvSE,149\nLxxFi7igv2A,144\nWPrJDDvstbM,114\ndvJqm3PFKLk,117\n_lJxUhMK4ZE,165\n9fs03_cdppQ,175\nAtJ5phl1iVE,113\n2as1htsiNxY,124\nPW-I6rrNzyM,123\n3AfqCkqJVt0,149\n0NHFYpXhiiY,154\np76b_u00SSU,116\nVjc0wdQtl64,148\nJ-OLwCyAtBc,177\nX9YOhb0FiIM,174\nrpZI9it2rJM,221\nQxNZJZrkdM0,107\nzt-zQ_EzPsY,178\nZMZxDJb5V8o,169\nmqpQgFfidcA,177\nu2D0kDFKaxE,176\nNpSkrZRlGbk,177\nJ9z4myiIVww,132\njnoCeqeNM3g,142\n7g4XFGQutFM,178\nN1Jg10AGbGk,117\nwUEYIhP_9ag,155\n-ZDt52_mxS8,179\nXVyVUZrzGrE,132\nFK7N96w_3FU,166\nW3s4HSqODSE,132\nlnQRXfjI664,94\nIMYTK5IyZ9E,165\nARSK76A2xts,131\nUzTveNwweRM,118\nSRoBDfwS2xU,131\ndWhFW021gwM,132\ncudA9HUl6AA,139\nFGL4-sXko9w,169\nWvJZlC93jVM,126\nFrH_IKiZTOc,95\nM5UXOwphsLk,133\nsdc-LNkYA78,132\nCDiosBMzR_c,199\nFYm6LTv7PKk,79\nm8LWjDS3IkQ,173\nhSe-_6hmDgI,100\nG0y14S8h4ic,153\nxJOME7D6-ow,130\nAC9SF7TOyHQ,171\nY7gTgzqJD-w,195\nXXcdcrn7usw,132\nCKMpPpuKLFI,172\nf-mlUVx01MA,179\nN1HQEIaRZxk,177\ngoKRpR4XNg8,89\n4hAjAP6kPg4,168\nAYxHnjsJOik,179\nVMXUsPGKzfQ,173\nyr923CbtKsU,173\nPwSihgp_iTE,131\nMMNICLfHE3M,175\n1LoKbaf2vrU,138\nIwye0A9pCVk,178\nkuAwUNzVX2I,148\n9LglzW3HFyg,174\nGMk7xOOzK4E,151\nLZcSMyk5Obo,127\nMJNG_rYJPV0,161\n_ia3xfBh5Pc,123\nOwQCAyUyuSs,157\nu5qpNA4ZIFA,162\nQjrvHsFzbvI,35\ngd9ZzDgPVFo,92\n7wSQMwlqy0s,132\nnFRuYV4QrnE,70\nJkeXMSrRsYI,179\nqlX5rnpp0iA,151\nB1Y4s89sBpY,118\n65N3OBBrImc,131\nRisSaXLB5ok,116\nEKLCchi0iCI,98\nKNh81oYmq7A,81\n4bB-IJBlZms,149\n9V8IRFmXcQI,156\niASBdbiKSHU,162\n8QYlXDYOhM0,77\n_S6GYF1B8Yk,148\npQOcRJKuXd0,79\nWSADpIlmqQ8,157\ntX3qqCP99Tw,226\nPGTXynHmp_o,113\nu-M2Zb_B7BY,136\nLtGQwP3jiUk,143\nRkINjKcnVuY,144\nbjUMh2wObW8,132\nCdHKXmEn4l8,147\np32OEIazBew,148\nF4QzrKakPmU,122\nFPgDrHxAntE,155\nm49ub45c8AI,146\nIqJSc4WySE8,131\nZGM5Y16SSb8,109\n6dySVi75n7M,116\nv3JlEi3CbGI,131\n_emU23tTUAw,117\nQfNYdXHjGV0,132\n_msjEt4-jZc,73\nW_CvL_fMIm4,153\n0Gq5R5ffrtE,167\nZTi7bZGkJk4,179\nriDe28hGBuo,186\nJXxF-_0u_qU,178\nOkiJH2Y4z08,91\ngbXZzvvp2uc,147\nZm0f0oFUxVA,118\n3JF7tS3pxmc,152\nxQ6yM4Dxpbs,117\ntxbmUDJcF6k,119\n5gf0f8WioTM,140\nDuGfgv_eDEo,129\nUZnEqDr9PKE,160\nmAtmopQxu0o,167\nxcqbp1ysN1M,175\nBUrDm2GmJ5I,132\nfw5N8DF4js8,110\nOCvg2G2SEhU,172\n2cRMH4HXfzg,82\n-pCVsB4Dghk,132\nBTbo7NyijNA,118\nXcMH5ntEWGQ,152\n8KJkEQx2lKI,82\n4GCBqzsWF_M,176\nm6-AzGII9Ts,126\nr1fp_NVGr6Q,129\nWoACzZ_FUzs,132\nyp1luet0nkU,131\njhvqJs7apdo,141\n7RAzClJ4XLk,155\nMUlVu0L0A0I,179\nf9qQfURhph4,150\nwAZ6dSIMivk,114\n_dVAPmlzo7g,121\nizbOPZezYiQ,141\nsNrOsj0xDPs,174\ndZtW9n3C2gg,148\nu5gSeZQbbq8,97\n7mwZYGcbQCo,188\nUY0nYr-dXEI,157\nf_zpkjkB8ac,89\n8mZEPgvvd4I,170\nn2GAcA_P9Tk,131\nsVg5_6gjzlg,131\noK0u0F_Y2EU,130\nhTdBkXMvY6o,179\nax3ZNv5jqQY,159\nyOWS9e_r5OI,163\nC5pZipJa09s,132\n7tUYeqOLuYU,159\nOqnFSU27fuE,131\nVbdaoAYveUA,132\nL5SM0HY5-vw,149\no02NQhYm4lU,164\nN92pfxjHXkg,129\nZMplRnotp8M,148\nGCQrTxMgMiM,95\ngiGWC-o1mvw,178\nddQniqjrVdo,58\nnaCL7BZb4Lw,164\nYPQJOKn0I0s,125\nEl0_VgXqgXU,186\nWZxFIAFTfEU,85\nLiI1LdPRcQM,171\nrnaCi4rBfqw,109\njB9WGpVrYBs,113\nMzFCoTidaDI,89\nIMzMccLiMIc,176\nbJXBNZ7FU40,66\nXTLruQ3tl4U,93\noX3PL_u2LbQ,160\nq38QzB5dw0A,163\niab2tzXfWsU,121\nlTyNEv7TXmk,127\n4gYG7purQPk,156\nEo87byVKgfo,140\nn5HtgUGCM30,144\n7moP2oVrQ7Q,89\n7NMQnDrBp60,171\nzDdHlO3v8Kg,131\nfXGEXg5q5HM,126\nU0xf89hs1Mc,170\nb-7IuyhoAxg,132\nOF22NIhPKgE,117\niY5fvk3H2Js,122\nSl1G9Jxc9hI,132\nttU5gs0lj38,183\nbzGDMtX1IU0,161\nl3zxPrDoN74,179\nPczVuk7L0MU,157\nHcpDdWIaAuE,145\nmdsLJ_ciPHI,105\nqZD-BA_Cxus,125\nRdxv6jaQZKM,157\n0dbyPr97N48,180\n4wPqQUl2y5A,133\neYR0zgfAcQk,141\no94LScznlmY,156\ns9FoorJGkrA,155\nUNvtKMt78aY,127\nU6CGGUJKymk,140\nfOONIlhXFh4,156\n5sr-kuYhYGU,57\nXtFr2BdLrv0,174\n93TnnyxGBqI,194\np_ixTZLD7k0,160\no2sjOBiBXSc,132\nq1D9i-d1m4Y,97\n_uhtsUzb7fg,84\nh0lUVSpj310,136\nJGB0ZvO8J5k,131\nqfwei0pOLVs,132\nh0qWin97VyI,129\nUx6L0eRqDGY,177\n9z5YYwpysWs,121\nOd9Z1C8dboY,168\n6qAar5htD0g,178\ntkj3klWMn5E,129\nBocJIlRPVvU,145\nNUdXYkBhHkQ,132\niSIDCcqERkI,128\nU6tzqlxOr2U,132\nsvXObgE9fXc,132\nNHDA6rk-bek,187\neRqgQiBel8I,166\nsW1_A07itgQ,171\nHJwSvsEaai8,148\ngpgsfivrruk,135\noQ39ssiQ-4A,129\n3O13oeNWWfU,62\nAiZf4-eJQUA,130\n7y9stFHCvEY,96\nKVGVHjX_bkg,99\nRonS_bJ7mcU,130\ntpkTStVMv_Q,171\nwAE_PelhISM,132\n5LXDBdoZfy4,119\nizRUBt3oeMw,102\nfi3K18p1Pww,131\nKbZQdFPxeXE,114\n8tnQxuIPgXQ,77\nGtt2ibEe1NY,129\ntdvj1iOOUE0,159\nSWnqUVFoQ9w,158\nEbMddMJU97g,178\nuF7ftHMCN1w,147\nsUad0ZL-nBU,180\n4kNNwEV5XJI,140\nVF_-AB2-Ux4,176\nRv1MSTB7QeA,103\nqzZegCkbJAw,129\n-WbsnXGKkIg,216\nTjGfTL6l-HM,122\nUEEIFRxwHSM,169\n76gNp5rkFX0,132\noc8Hm_t5BRo,164\n-cFW3A13o8s,132\n_s2FEVQePMg,119\nyPzAML0fs2o,132\nBvXUga4d3Zc,179\njm7zMNBEgmA,102\nHJK28cWPvH4,136\nPHFG3ZC0fZI,110\nEgkBHCLS0cA,176\nt1-maJWU3ag,132\nmwVsJoafaP0,80\n8qkahQVFzMI,183\nmvFQciz5wRc,150\nTZ2ryw04fx4,127\n7OpujffVbUQ,80\nP4JGOWnX9VU,132\nLgMEyrPhq3k,132\nSI_DOVqlJA4,127\nyX5TsLuIEy8,161\nsS1L9wZXFic,160\ntYf5ENc39dQ,124\n1-pgYgfRbZE,129\nGVmIqRcglvE,72\nNtxR-xgJWwo,127\nSRMuzjyoMRg,131\nxP7yIQladb0,151\n08UMKwdtWk8,125\nndZVwNuTYa4,126\n9P-MtbTe3O4,121\nj95Tk1SLXOA,131\np4z5ZU-dHr8,89\n5_C7GNWPinI,177\nFcEchaH6EJk,204\nqgv_7j1_CdA,121\nH_GApJWNWiw,120\nzUvgi8Rxl9Q,139\nxllpnvAmnHE,157\nt3XewsVnx9E,144\nYBrFMKQOqDc,132\nI5xqeX3lAgk,169\nIXXv4DMkBpM,99\nKQa_SiTfU34,175\nOGXdRrvCW2E,179\nyWGL8RTONpM,143\n7UvSGe2Md6g,121\n-dMBMU9FCQU,142\nXemAlj9_qKE,135\nObyANYT5y_c,172\nkTKIACVqDzQ,174\n8PzQmtwNeXM,258\nulLxPcOmDmU,152\nWD2I5Jpe9bk,78\nOvdQYzRHlO0,110\n2GLDqvA6tKI,171\nhFjIRET64r4,61\n8wyhEmMY_yc,178\n-zxyN9-P9_c,82\nomFpUjAzM9M,140\nX4b1jFHAC98,168\nEnBWc20FGuc,177\na_UjNi8M_bw,101\nrlXTyrGsiHQ,143\nucuU6zGryPE,131\nvtyIGp8uv8w,133\nHUJtn_Bwm-w,178\npxiwqleE9Do,137\ntBMAuUeeqdE,159\nLrIJa8zJs_0,138\nJ3Uq3-vH_I0,121\nBOo2x6MlAtI,102\njW1CeAVPhVg,131\nU-42oAzybn4,91\nzOiq-2Jpy-U,144\nKS_KStIPiwU,147\npgae5kDwHT0,179\nnwrLvq5W58o,176\nzU9rHffZVBE,117\niCfplC1mMoI,127\n5X_mnh-S0pU,167\n6cxpiPSZHmE,105\nooXE33T2Dls,100\nl9LOKUiY0Dg,162\nKGk6xZWTgBQ,161\nsvytEWJK6Qk,174\nJaTnlFHOkZ8,179\nOLgi3eAwNGE,132\n2ul7iwAUMN8,132\nFY00zwMZsqM,168\nJBc-gNIjGuc,131\nqr6vDBiESB4,112\nUeCpUca9VUs,131\nUlddepR-iRg,173\nHo-Sv55Yh20,132\noHB3yg1vFAQ,128\nQyOM1rQ7iT8,139\nCMFFeWPy-NM,85\nLPEVs0FV7Os,125\nM3FtlKHZXhs,71\nLCD5BDaqANw,160\nOe_sEQkEIZw,129\nmfqzWZW_kkM,179\nPZrRQrPE-Y0,122\nUdRma1qSMGo,91\ngCFBkXA374Y,88\nNr6NPOkDbpU,132\nqoftQY-P85o,159\npGxyOeypYFs,122\nC42zpLSVjCY,113\nDf3535-5wE8,134\nAY1ze9t3lus,141\n8-0dpreHXFM,85\nk-RHqxyYzMo,131\nV0UBmkWw5Oo,106\nz-glL87s5lg,172\n_6iwpd8yeQc,118\n2JMmof1eg1s,161\nNNouwnR8QQw,172\nKtZQO636AQw,129\n62z8SYqpuZ4,124\nQ9-NzGEY90w,130\n2AHF50fxTNw,121\nmoeAot5_Q_U,169\nxiVeUn1rF3E,137\nZDbhvMyusZ8,166\no3vv1SPEv1c,120\nKbaqSn9LDiM,102\n0pbdha7w0V0,132\nsT7nVSNlpTE,126\nXURWRujGTNk,175\np4TZcBFacUg,215\nWrGf03jRHSE,136\nevWlSySuiII,107\nwkyZ8pJD0Uo,132\nuU0DNCV22dU,112\nhhRIhD6BvMo,163\nBDYgCu8m5dQ,132\nVMkhYJEjv7I,131\nf5e73A39TF4,132\nsggwHnudtH0,184\nb10LyOeq5Hs,159\nsOxAN1jqfpQ,118\ntbdHhLOzT-Y,135\nH5I1DyJ3w1g,151\nxMJFie7JfbY,126\npxOZAWSn-dc,179\nxaYlkjfpdG0,156\ncjIv83h6Tcc,96\ntz-XJMspLOA,134\nTw_kFAuhkbI,161\nSWYmSp9wxUM,175\nJ9aEPBqeLr8,133\nWSBO1fuXCCE,127\n6s_lBln0kzg,121\nBIW6tF1dE50,123\nH177TSRFiTo,125\nrh8OdlSXiDo,114\nHfKAC6eOlXg,170\nEJFm05MPSDQ,122\ndLc8QqtMhYQ,165\nm5dfATd_ZY8,159\nUw1WGruy_KI,148\nkhfeRoRCp7c,147\nSKoj1Its8vo,43\nsQcgpyPhaIA,95\nztEcn3h90g0,167\ns8BQXJxRw10,101\nZHCd8doza2M,173\n8pEobIigs5Y,131\n_zFjP61xNb0,69\nvv84nq5_ZY4,168\n2xH234D7lao,130\nfCuYlKKFAO8,127\nCZO8Dh7dXvM,177\n2hqwpvVHly4,177\nU8VDmQw-FAo,110\nYxa48jQBfLc,163\nWFhKV35sbCE,111\ntcH0KwS_YEA,87\n0f2bU9SzCzs,164\n0JoIRmQW2es,179\nKtDkR9YdBS0,132\nkaPdOgl1s7k,164\nmIvQRRVbt9E,132\nTGAHQorruwA,132\njqvMzCLAE0g,126\naLVjmX-ottU,120\nEUB6R41g7cA,108\nsHt3TElCugg,182\nyq7rSvWzhNQ,178\nuQLeZO2Z1YQ,158\nl0RkrxY9mH8,138\nKwIg2QMWVOU,179\ndlxT9ot5Bi8,156\ns3PbszHh8vE,140\nISt_AN1f0Xw,132\n2Qx3hHEoqMs,177\nc_lWrv5E18A,117\ngMODOv68SGE,127\nw6zGX2qpxzU,122\nfQmbxg6z5ic,136\n0_hajel24IE,132\ntvj61hwINaE,173\ngIdOE4SoDfU,129\nh5RMM02YE3U,132\nqI-CTJnYdBs,170\nX2zBKcPda98,98\nhl31RQCC_Bc,156\nSD86_k19Rx8,138\nM5F8dw_FfPc,149\nQDurduePMWE,131\nhsxRROsF4D0,171\nXS-R1raNESI,179\nf6kcBGKxGtE,116\nhuI39DZ4b44,155\ns0eHgfzlrF8,100\nQNCuoEO3jFY,170\ncypqB_GKzjA,174\nZmOUutOuqn8,178\n06Its9LhIHQ,148\nD6AzQTg_bPA,171\nayLJJZh7RRo,178\nSBq1FLgZJug,128\n7iLdxVgHWlM,115\nmh7fUlkkX68,124\nJp9IN_iver4,81\nAxru07JeBig,157\nTggs6HJxghE,118\nvnJE2OLp55w,132\nz7OEKs7hAEk,142\nyP9sbfNwtv0,126\nyKNauUKkW9Q,133\n7WzJb1l2wtg,114\n7rGY9Tw2hSw,131\nBoona4-qLSE,184\neKCpwUXh_Qs,163\n4uc2qplSyss,225\nDNAwkyyq3kM,162\nw4-b-D0iByQ,151\n_Y8RUTZ6CKc,152\nAVpd8G_48FM,144\ni4zxmn6_aRA,162\ns2gjCGRLfKM,131\nWquPun-ky2Y,84\nCoFFpId2-Ak,104\nAMOb_w6Jfug,123\nYkYypI0-OAY,175\nzlwaUJzGqns,153\nsjWdByLxTuI,113\nycyXqWAMzZ8,171\nxP7ctkX_Nm8,177\njBuygQyZbf4,179\nlXy9Lp8bu98,177\nfn1dNeTNduk,66\nh9Rb7mT3juI,176\nxyiG9P_Vc7A,175\nlmqQPyNsXpU,78\nhAQ2xTr4U64,172\nz7_AwjQz_AY,111\n99dOPdlLIw0,126\n1SnNjUe_vuQ,167\nG_r06v8SswA,136\n2KLf6pNcizk,204\nTqVLkE4Lr8U,166\nsJOA_CvMqvg,177\ncCpDJlAnHsg,140\ntSYhESdFisA,179\ncyEqzALZmeA,165\nv3bQ1GiWhJk,91\nKcPIEP0GpSo,132\nOozc5zchP98,132\nPAkRrp46SBE,130\n0WwbRHBAg9w,131\nCQvEBaLYHJE,93\n854Zlz5-vXQ,131\n_7pkwL7yY5g,130\nMG_ZMkTJ1dA,134\nLxOEBk9PqQQ,178\nqVS1E2L7DYg,150\n8pi1bm3890U,160\nC0uo35iCk0A,103\n7478n46dKCg,144\ngwFW3icyEZk,178\nuV-u-N8RkKs,121\nsSMoOPktKsQ,168\nOhncteZCJWE,99\nK1R4hHq8yr4,132\naxcECZzlPVI,112\nVcxvmi26Kfw,128\nmEiLmu1IF5E,155\nI5tF_zv73vk,178\npuGracMskK8,173\nUr1StpqHA1M,159\nuZC4v8_fApA,178\nFInHKeP2UoU,210\nzZSiCTrPiXU,177\neB46dRO0YZ8,93\n5CgpROI6ivM,143\n4RKjRiO1FPU,155\n4MTf0k1vqTk,171\ndshmyllg2HE,169\nWHu2355LLQc,125\ntj3Trywp_zk,158\nJLTtgzY_7-Y,107\n8s4TDbX1B_s,125\nmRRLEgHhu3U,126\nEyexoSJ1tsg,119\nlLxVEs_X_9k,159\nzaYgv8likRs,132\noaSLgsnsrBk,165\nSczun-f_Uiw,145\nMB-oElVuFoc,111\nwtnRz9SIZAY,144\ngFES6-SLD_s,84\n4J0fchFqprw,170\niNLZ1J_Gslg,97\n5qzsQMiYINo,131\nzDQueu9EF6M,119\npbfBzWJVbX4,135\nj_a_zvQOrIE,213\nsKHJuOqcvOg,173\nbCLTAaa3qMM,183\nYKFQfaDL9gQ,200\nAtyyr6d7-u8,153\ntJBeQ9Ewo3o,130\nwJZHc5SJ9eE,187\nXS2yOMGv5to,178\nlAebdantAPM,114\nUV5zCTfvurQ,174\n7Lj3LydT1uk,131\nvHBKdIq9RGs,179\nmLKA_BX6xKo,136\n93njceSaOMM,132\nXrBTDbxOZE8,139\nRz0JV0WUjPo,121\nDFa_oIuRDQ8,132\nq4VIMzhfeYc,129\nuwEFn60u9SE,168\n1GvlSPJ37Hw,92\ni_qYwD16FXc,131\nd6zX6-Rf4JY,85\nAwH6-Yh7_SM,129\nADXqDq5zCTg,89\nNR-BaVehxrA,195\np8L6CtsqDE4,118\neT5XhG7qLcU,128\nG_v8xjmxtLY,169\n3T-wqo8lamY,38\nMLFzROHNLmM,175\nkbLP4mKMTYg,158\nxPYQOuxYES0,123\nL1bqqCJlCpg,179\nN27gumJNHP0,115\nCEvHsuyVfRo,138\nG_1jQkCRF58,75\nxB1tKdhnGaE,175\n4DAJ2QupBUc,105\nY0SFyVdPfO8,69\nEBnn_Y29Pks,183\n3IklTegWKfw,128\n9AtlQm1jVpM,176\n0eBDwVSU56s,143\nWOG22C6GDMA,179\nsh0UuxRgqgk,106\npVfx0OQcmBk,164\nUczoOVtUsDA,157\nzbZmKqU90pE,172\nQp3NWzLzaek,89\n1hag3avWVXs,66\n0zROMB5cxBA,167\nfhgqKH6V34k,173\nA9sd10CHAP8,109\nlwkdeQQiCms,125\n0JRdzrh9in4,179\nU6CQhcLjjfY,96\nW1W5JF4lRIQ,147\niIcbE_xFIuw,130\nMH7EgG6Y5kc,107\nWrfxIymvEhQ,126\nn1lQR-GjWYw,129\naDJJBMXiwiI,178\nS8aigz2j7-o,160\nP2oF9-9UpbQ,166\nZdhqVdIsBSE,168\nzUL_yawY6Ks,135\nUoM7CdIs2b0,108\na1Bx9nyw35w,193\njPfje0jZeMo,113\nQvUl28vA8oM,132\n5mAI-v1nfOw,131\nmA1FWjriD60,195\n0WOnDEx4QLc,130\nZMQCyJ2lhu8,72\nLfSLyM9XiCw,163\nFrwrlztd8C4,131\n00Tazm9Z6XU,86\nCiWjwS4lqLY,124\nv3H9-sHDZSA,141\nELqdLvz60zA,90\nX_VSJfHiNPA,177\nTSPaaPqteCU,122\nftNK4JPSoto,116\nLWG3aFFhg8k,181\nsWd44kgjkeE,179\nCjCmtqPIRp4,132\nFLCvFcaZW3Q,181\nGtSNSaW9IRI,147\nDoqPEhVHdBM,128\nS7yCsHLwg30,179\njNPBfvcLIMs,158\nMMcWHkb8Ank,107\nyB_0DHi3Z4k,132\nFjKQ2_lTY_c,174\n56F_nTxTQj8,177\ntsIYleoAQpY,118\n5cxSYatteJ0,149\nIqfczS-tx_4,109\nYz0YrG0oJQU,131\nyxiNPHXAH0s,134\ns1nXXro4Aio,174\nKJ7Fv2QvzpI,122\nc7RyGNzyGB4,117\n5NY_8ulSutc,152\nXO3-PumyjoI,136\nUOsM81pRVWo,179\ncIG0COsZmjg,152\nSKMgjxAgidE,121\n7WjOFzTTiHY,131\nISeGBx2JvGs,86\nDye66uJlLRc,193\nasNSRS-UbHM,123\nnW-iQzgmyeI,127\ncA-laLpcLIw,172\n2tWroNJp2zI,132\n2W9aISYBJXY,130\nL-y9V-gpj9U,97\nSH4vCrz5Pb4,170\ncP4Q_O_ZKWA,129\n8lRysx2QaZg,169\nyGGZUbqbTWg,204\nofWdRHOZpV4,33\n5ktmcS1L3-A,232\nNK_Gt07WU5o,174\nhZZG0M8zj_8,110\ns1s6SqHLUQA,176\nb0VU3j1hp70,177\nVvGhOtoy5iE,176\nmGq0iyW-f7A,170\nvT4HrbzMVgI,164\nn2ZkOcq4vWU,64\nDPmHrgbe3xo,128\ncmBN-X701Gg,117\nsZU26D42s2M,101\ny_3OE_uIS8I,121\nYrIvuBpSGio,128\nS2NZ6XCtqMQ,130\nXpy157qTtng,131\nAZtman1rdUw,142\n8R9KLz7qDIY,73\nrFBErC8napg,169\nAwXJIHFo84c,122\nJWLd18_ViOM,180\nZrCtTXl-84I,135\n_n3aOgYXQ6o,132\n1X1shl06ZPo,177\nhSwy6UI-djc,116\nZSrz2g2kmb4,235\nTTXjgOan_KI,125\n8APhdryZ6m4,131\ncJ4mSB-0OA0,167\nwojHQib2wn4,111\nD_xUviDPUOE,200\nudTmoc-i1Q8,52\nTolt_g4y_tI,132\nt_wR8zbM5VI,140\najb31pJMQmw,147\npHB8Z35H29k,135\nW2z88979aKM,131\nm1HazoM2hOY,179\n4QOA-TyD42o,148\nw9sO9o8LNvQ,131\ncUy-J4YGxcE,131\nF6mWKtfNVA0,71\nehNNyfvhcto,99\nZ1RHhhCqpqs,121\nC1_BoN9f1hw,179\nJaEv5uq8sJs,141\n293PMWaznLM,123\n0TvKsVxgbF4,175\noUleBi3j0o8,132\nC6MgTAuqpXc,125\n1MVR4GmqfHg,92\npVssi5x6rxI,142\nfxJ9dLfp9k8,124\n0j9yDnytwPU,94\nkAd-K7nteyI,133\nbyrLv_402BU,165\n38mMNp3gyYs,145\nwyuPoWs79fo,162\nV3Tlo0EutEQ,154\nbJSDrRcwwKQ,149\n5P2p_4ftJjE,148\nbfn9-AjAJCU,94\nCHz--mmu5RA,131\n_ZIpnWucimQ,146\nttOuvmYYeps,180\nCKQiEEWqW-0,104\nGk_2euKF9MY,160\ngvuZShYhzX8,160\nrXwdnHnLvms,121\nBLIuci6IBIg,132\nk4sAUqI-y8A,117\ndOzGnmkbahw,132\nBIdtUDoR5A0,176\nBKtBN0KHq5A,97\n0fBA7VUZEgY,131\nuvyPBpxL8ZY,138\nZAF804tkZ8o,133\n9VLcxXz-0w4,119\nXvZhDq1NRhk,178\n1lYlFbsVOjI,130\nOWRqJA31H_E,134\nJ2vVweGS13Y,97\nxCQ3ZdnptUM,139\ni5JmxPGoM7U,132\nHu-xJbVwgPM,79\nYqjCnk31_Ss,122\n7IsskjJnGN0,103\n7FK6P0sTBrs,94\nI6uZjdjkRVg,140\nLZDir3e680o,133\n-28eBo0EDDg,147\n79hXvDohqgI,173\n2ZGmI0V_Hgo,172\n_RD0zpFbSmY,94\n5Q8BbiDiI5c,120\niKzLZIbUM8o,142\nLIYNk4ARUR8,179\nJipo-s5DGj8,61\ntQl5ypxi69U,128\nt0hEHI9fcsU,126\nOJNBsuHFdM4,178\n5azSB3B9dgU,124\njQTtJ71PkKE,125\nZ9QsVa8r5Fk,125\nFxzaTk1VwGs,168\nQrbBBAXBPE4,138\nfbS0gOz76iw,132\nqWOQp-rJ0Vc,169\nBGyHgJ9DunE,146\nyrfpRh2SqIw,152\n-zEXV5oiWgc,171\ngjUN_o1mtW4,176\nhTF5JMKgI1I,132\nEegnTsyPDF4,146\ndWhKh27tEHQ,179\n19u6S4Fqnss,144\nlN4oFlIKm7A,95\nDxVqAcNKMNk,146\nMmPU9OjE2X8,151\nghtGcGtVtho,112\n6Cf1MeHEZn0,102\n-y6RPL5v1bU,197\n5BBhXUaqDZQ,179\nuTINsxfQwUw,140\n4IsISIQpKTc,126\nHhEyYbmTh_Y,138\nSqj803KC3T4,96\ncW23WpOvC6A,100\nf4D3R4tJNMo,128\nTaJeShUtQjc,130\ndIv1kqivuZc,187\nm0XrO4YJyeI,144\nZ6rYB0AOMjA,154\nTsk9gCcchg8,150\nwh9ZsEMo0-o,61\nM8s2txilG08,178\nLAk5KEGLzmc,133\nETchiCkaaYE,110\n9YFfoCKHAQQ,123\nzVzeXqLbqug,131\nEN7SYqdbsm4,173\nQ_j14lseORE,133\nTmdzJyoeQls,127\nLKXQQmMdiws,125\nMvDNoWSnSsU,132\n4tEfbGzxI-E,137\nV5Np7vmtIYc,189\nZ1Zrfm1Ylro,89\nWYY9Epog0rs,118\nGHOgErGvyTE,144\n8-9wlwVvR1M,151\njtHIEO1Zdfk,157\nqq3C3psItOo,149\nuhH9ewIEbnU,116\nGE64zY42bUA,155\nnKBE3U4mwuY,130\nDhW1_LX5xZg,113\nHcuptmqW_kA,90\n8MoQTjNnlmA,131\nrFy2252ierA,70\nZgbGOBeeaD8,125\nTeDEtT7YjYY,199\nYp2w2XxXKD4,128\ne434wHYilA0,155\ngRBOrpdfsiM,122\nM_HMbS9bEhM,157\nWk9-oZ9OGjw,152\neYx5m_iT-1U,122\nJhNznuSZ1n8,125\nlt3h5Ez9t4g,132\nuQlKjRScXww,122\nbGQ9QznPQ_M,139\nDLUx3hDY2wI,162\npDCzYY0bjbc,171\n4VKym1WU9go,146\nPTwqLCxIMiU,132\n69bd2hhDLF0,127\nYpnqA-vr53Q,202\nPC_O4NLvktE,173\nblWwfkSF89o,172\ntv_xMisf9oc,167\nWazcuKEk2to,140\nFIjtDcICyIE,178\ng3svdzmBtic,175\nBW3ZFYQQXb8,100\nBS82G9f2Xaw,141\nLxXrccK4S3I,179\n0x0muJjYzp4,160\nULCyXL8cTFU,144\nl7FkN4ooYvA,175\n0CQi2Bb7WE8,87\nnM1xpUM4uUs,118\naGActTYN93E,129\nGyhrH5E6B6g,139\nxGCLACE7SUI,178\n0kgLLa9gnsU,144\nk8VqG4ftlK0,160\nBgkEy5fF1rM,155\nC58_gjlogWY,178\n5LE2vO_aQgU,140\n-qijwXk_bnk,133\n9FKgmafi1p8,190\nUdZi8K3PLs0,128\n9qmOMFvxI2I,92\nFXhW_IAJ_Yg,132\nhYwxyijuhOQ,164\nn1X2w0tinkg,127\nYUaq56T5qSo,168\nUkDKxprXy_0,145\nZV7UY6RYG6M,130\n4YFz0PJernc,153\nr1mN6K60148,169\nMk_C5QH2Eb8,165\nYjewWZ3JWiE,129\n1iCqTxtsqvw,194\nhmYIR6v-oVE,126\nLFB_SKdGuLk,132\nO9zWwhJYQNc,202\nV7gceiThJ6U,134\n6FVwlgBDCo0,173\nUnM6dPbV9Ng,128\nJauxWp4eWnM,74\ncKJ6Jyo_9to,177\nW_0WRTR2vSc,160\ncYGVkLGyGqE,126\nLpP3_e3ioiQ,176\no3s4QiK4MSM,158\nyb5FDpFLc1M,116\nzjiAUjrvTrw,161\n_o490P6zeZ4,121\nlot6apnbKk4,167\nq2vaQZMf7LI,49\nsfh3DVzcGAI,130\nb-_C0lWgga0,85\nEauDkPyyz8I,181\nROzcf7QoDjU,146\nShCW6mr_rsM,93\ny03_LmnDaTY,169\n-lX6P0PFKy4,97\nmcp6KbG_5rg,128\nsfObDKSfaZA,131\n60gXuCsTsPE,134\nZQsCM4wE_es,176\n2RYNIbNVFhg,177\nMDsC2TNfF3g,156\ngvAl9GR1kDs,115\ndKPw9-jpA3Y,140\nP5Q7apxWucc,128\nruOXWHbyfjo,158\nNAEDVsrKk5s,114\n-1U0LH6dPfw,136\n2kLkwWVB9Wg,103\nilG8mzbHNNI,146\nyuvBcB1oLI8,152\nsnRRa2Z3DFo,36\nilYccsPDTXM,143\nCmssRVrBMxU,158\nGMXgGPnbnow,179\neiKSmbxn4UY,144\n4nSA_B8pC_s,129\nXe8LJ4g7Dpg,124\nFxwaraxX89Y,125\ndlwR6MhC2Hc,129\nrd8JDPjEoE0,181\n9FuvuHFUeoE,129\nSXOm6AEArjo,89\nDmDtPzG5aU0,120\nvkX9jHBsmwM,169\nKsZ3SpIoNos,177\n09m9ltjwuJU,131\naCx3jrZJjPM,168\nWCO594skLRA,159\nQJwdXqGBEPQ,218\nsRFINj9g1iI,171\ncwkEbwJR0aM,179\nVHsRuDuQKo8,121\nQEQp25xImoA,138\nTcndF9QpYAU,113\nOgaJLKX1sUo,164\nrXDhJmUGdiM,71\nW2roZO0kTUs,186\n5h5zurZsIQY,148\nDOeYRNcSjWM,177\n1_uvjP9QZcE,151\nxswJpwb7Afs,130\nSELFeneZL04,131\n_iw7PLtjjow,173\ncMxPAkZgoy0,131\nKQbGttprUMA,176\n_FurW3BTcjw,160\nNtQdJIeh2ho,79\nBWMFLJwEVyQ,178\niWII1mMM9HY,106\nEqu4D2mZDHc,182\nsXrZaiADkTU,159\nO5TthS_9-9s,130\n01ClRWyf9I4,258\ncVPTibn-ewI,213\nJIqfgLLZhAk,169\nrMS4ESFlfDk,132\nyan-Tdiyrig,124\nazkJMOVoNys,168\nvEd2sU65NQI,167\nrXpCjDg0RT0,127\nOrxsZHRGxRc,165\niZqKmtk6Vlc,81\n8mYlqWefu-8,136\nEdC7U0ZRALs,142\nj2aGGNQW_7M,132\nkZMKLwtkLrI,159\n19KoXOFVCCM,127\nKwWHPqidGuA,175\niFEr1xsuksI,177\ncU2j_kP6U0w,171\nwu-RfHKCK7Y,125\nIPdtCQV4Dz8,134\n9Ipb0xcxdqk,95\nQiVqI3oxdtw,102\n_WWIiTlGyYQ,132\nB_FpV0CZjxY,133\nxSNkZYKC_c0,151\nZwlQdSE1LdM,128\n3PBo1ef-18Y,154\niFKyzbCLQQA,132\nKcf2d8epCXY,159\ndpIyHx-GsbA,126\nVV97_cn54bQ,165\nNVCvHb1UK_g,129\nQ1XwIK9Ykvs,96\nzMzCxBRDhlA,140\nDUMW--Zlrcs,113\n6Dg8xn6Rdwo,179\n8cQVspzP0Ms,161\npeBuMWtkw8s,100\nGWxf8Hb-Xis,179\n0Cpa6Zn7ffA,148\nDslpNlhAfLo,73\nVnAmEovifpU,179\nXq_9TDk-hj0,138\nyTNjsgJ1wwc,130\nW-cZK60yWbY,191\nmszPMVP_qcw,171\n7yhDJzI-hjg,124\nuIEr1T_jZlQ,145\nuat-LZ3t7i4,120\nw0X84fml-Bc,116\nFy988XyqFhM,171\n3DsoxW8AUEE,166\nMnZJSCtPQtY,178\ni7hF7BAKV_I,164\n9dmlcGZta9E,170\njJ9VFThsqtU,178\nzaQa4ttIyNo,131\nATDt5EBims4,157\nLGmthB51XUc,101\nqwUgyrgP9H4,147\nCBS7b7HPuCo,174\nlwhQK2kDfBM,137\n4S8_1PIolnY,150\nJTgbdnNC5ZE,179\n-o-C21COWIQ,154\niOhZLY0cDV8,115\nLt7yltFpVyE,166\n-jFiu3zG8dc,179\n7iM1XM9SvdQ,121\nzie94YV7W4Y,149\nGiykTnvV8Mo,132\nErn5-LGeU50,128\nUsonrKXJoas,106\nCDbpKJDcbQ8,116\nmohoyRj_VpU,39\nRRLisRc0j1c,179\njsLRdkCMvxI,164\nvkFKHF9Fs_s,111\n7SClmJTqKo0,177\nXY2mzqw0vR0,97\n1w_JdfgygYY,107\n1WA_d9qBf4E,152\nvTSmbMm7MDg,165\n8jWoq1fTwJ8,117\nvEFoOcev00s,154\nUYpqBY5DTUI,177\nTAZ3_IuoGew,179\ntEptrqj1R50,131\nmyOTp1wr3Bg,96\nUfHqN7KPZ5s,162\n2nZBPdh9_Jc,132\n-JNyHnAi8zk,179\nKprKHSAAn7U,129\nwb8HFGVE218,106\nus_GLuu2SAc,145\nM8T58oBOsAU,74\nilV5Qt01eyc,117\nAQkLWa6J3dM,121\nFTJcaJziQ1I,118\nw2fpC1izWPA,178\nNeTnaYH-08o,84\n4LY3sXlBbk4,118\nqFbklFTJlCs,178\naIBT3l54BAg,125\nGrIJLWISdlQ,162\nEp85AkCkk-U,115\nCqHyrmbiD1E,152\nPP8BpNVk8JM,132\nXt0Fv0W-CSo,170\n7d7J-rlXWvc,132\nx6jUAU8hoBk,140\n7PfDjA-3RP4,132\njGAsihLnYqM,135\nutS5IxGpAPI,109\nj4mo1ywVR_M,128\ngQjGFMTbNxU,164\nzI6U8UWPhWk,164\nYiE8wDRFfvM,132\nkjtPUnPa0LQ,167\ng5wB0DNvM8M,86\n1Gnmq6nB1ws,172\nvm29fXJWuOA,179\nD0Rs2n8eCPQ,117\n4frYhsIGjJU,179\nkaWU7XlPxV4,137\nSqY9GVVUo4w,178\nAeZQ4Oi1wu8,196\n99-v2bOxnJU,102\nStS0_Y5Dh4Q,166\nGl4bRwYs1tI,137\nSQzC9SO66pc,149\n-3RMOO6mHr4,137\naWaZMXiimms,126\nx2yXtHyhu-k,130\nKLIB40d6Pz8,142\n_KC5AJdRgBs,166\nARKPBJdE_QU,168\nL92EFtI5VxA,179\nK0xwTAJROW4,131\niKRpMjVJKZc,183\nyodVQ5QAc88,177\n9-NoQwwRDJY,177\nH8nX1mhYFk8,131\nSnt_FLn3dwM,139\n6FqUyxVD4qc,132\nZ2yt_J6z2FQ,114\nMiBcK87oWBU,98\nsR_xG8DNCSI,132\nMMigS6B4t3Q,132\nGKsKm9KYbaU,179\nSVZubVb2L8U,159\nzlVbQsf7vpk,136\nfLWjUBClszw,198\niRLGo522K5A,179\noe6nOL82mmU,90\n3IiKTJztqFY,133\nQ6jbNsSNxf4,148\n2NhF6zphSx8,171\nR-Rc1lQMjQc,99\nVX3u1HUl2Zw,150\nHHSAml1BAR4,113\n_9xxKArFYfo,138\n33NlZaZVCgw,127\n4_23t4NzAMk,188\np4JPMo4bMa4,103\nKZt-mGmTpZI,179\n9ejzBYus8qE,170\ndLVgEWrfdSg,86\ndpg077fR9Mc,165\nzbkojhq6Ryw,181\nolTfms7kJIk,74\nlZ4ouD3RVKU,157\ne2dAiCB6igE,114\n41AhzyLUBFM,143\nE-g_up1kWt0,132\nWnBzLtUAnIg,146\nr9mcNXIJFbY,119\n23Xxotom7bI,189\nsHhFAITCEPs,153\n6df7al2Ez0U,132\nEw8AJsPAyLg,178\n9qrDi2o-eEw,177\nOTX8quF1g4I,112\noQjMZTetuEg,183\nIpW3LbAEypo,179\nB4jUZUgKhFQ,178\nq0YOdmVSceU,89\nA8WBlVOcSs8,121\naQobE1tPeGw,105\n7a-OSvw0tjg,104\n_9rqQ-bOcLc,124\nKOxmixap5yw,140\nAtDwOreXh-k,132\n9rTcIUk9Aio,157\nf_LDdElm9fc,149\nZLbDKSo2QLA,172\nm9PEvezB8Nc,129\n7ru6HnpJJP4,166\n5Q1f6Oij1NQ,179\nVe1oHq8JIwo,127\nIgrJkJ8NYrw,105\n80xURylcWpI,169\nnvnag6ta7LA,173\ngVIdf-kZJXk,163\neyvwHF7NIGc,162\ngzyR9eQJMvQ,109\nwhCKn6cV-0k,86\n74c-fV_AjAQ,39\nmkEMQ9OK088,179\n3GvvMpMUwQc,129\nDKp509HHG0w,125\nuRjbDsGz2tc,132\n07YuuA_2O9w,128\n_8dcjZCqilE,179\nKYeZm7yCOaE,126\nyVAFP91HfBs,92\ns1pDel1G9Eg,130\nodUsOcEqT4g,140\nFQjvyy8gOS0,207\nBhSNoxyn9ao,166\nbJwzDAtwJQU,104\nW6qWnmb_22s,207\nBnnCQlp2msk,166\nO87gR6xJ9Hw,112\nb56RExAdg7s,128\naPQcQ4IhHNE,175\nxXjPITaIjPA,103\nrvOq4hFIRJg,189\nC-c8T2hNNoo,126\nYOuQ9V-tzps,132\n5lBfYlWmDC8,159\nohoPpyAG0zA,148\nZmNGTR9Y7f0,178\n6NbloMPJuRY,112\n_7aTnDiBVEQ,160\nZnIkMhuNmjo,161\nUCgvftiw0t0,137\nFOWZ7B1QenY,148\nwTqPJaupccs,131\nr1scNthC8NI,144\niJiQsEZXz_8,122\nvrVDJcw40BU,162\n4RsVOfPT_is,133\nmQpZdtspStY,167\ng2py3Bx0Nr8,144\nXB401RfGMlM,152\n8Yqw_f26SvM,171\nRDrZm6eEY6E,179\nSPMpDCxhKGU,178\nEonKIlrj7t0,86\naaaIdkgVahY,114\ng9S5GndUhko,176\nEYpR4aksH3g,174\ndQQd6s5gYhk,102\n71cKzwJPI5g,109\nLHEPabAiiTo,129\nPHHgumL4rUI,130\nDZwobit-Zy4,154\n9Fj1STjqFDU,99\nRKcDDLS3aqQ,105\n41FRwoAJkpw,115\nBzeKxlcKil4,151\nPuI5bs7mZG8,131\nTrRogqsarno,130\n74BF0nnqO5o,178\n6yXY1OKtYPY,123\nct7Ox_OKe-s,137\nwt0_m5mUsbo,95\nkomxaWgJ8O4,177\nLoDGQLw_iLM,148\n1uX_OAhcgb0,123\ncxRYIDsZzuE,131\ngjRCN-nrEl4,104\nA6PpUgfZcRU,157\nPLPb1pB0vJg,128\nk9mzgW758k8,109\n0npouzhhZTo,175\nfG1_01gDUoc,183\nI_v5km4eDik,164\nS8HUYXl6grQ,178\nf4OPBNbNWnw,124\nrvImiPkES20,131\nxjCbC99HMdo,175\nGECuST_cjC8,109\nIwA5uSA5ZBI,92\nes83ejXi5wg,113\nUKvQEHlkqJU,156\nX9A5UFJ1iZk,172\nmLl9jkYywZY,132\naJVHnyq7Nz8,46\nciL0tWi56tM,187\nKhtepI51wuo,134\n5aBVbBiojuM,122\nIvwJ-KwPATw,130\nrdEbjNy5BNs,141\nUUzW7NqutUg,154\n1y20NC1_MGQ,126\nJHlNsy6rMUI,113\nOJiN41xn8iY,166\nkptIt3LwGWc,131\nDQaHIFC9034,193\n1S3Vom2V2lY,179\nrpWuKoDm_9o,161\n8VItLIW2D4g,151\nER6BpmtBLkk,129\nYCIt5jn2XPk,126\n1iwBRoAb_Cg,150\nimcPspMbcL0,148\nBVrZAIo3wX4,135\n0BXa52qz-kU,114\n8w4UZGP7OGo,189\nu1CmSdzgYiY,131\nkePIiYeH2Ko,132\nmCbY7cAv7r8,174\niQ-P3eRhpKI,176\nQYtcftNU7Gs,178\nWajS0jEmEG0,170\n8koQ3N3w7aw,107\nDgUvg4sBGcs,157\nCbM6muvlHOw,137\nGN1LhsTj5CQ,185\nWVDrmwtooj4,167\nwBIVUUflNb4,223\ntX6-gQGKm40,178\nm2cUbp6Vkfs,178\nW2EZOorGpI0,138\nu34dzFKx4Rg,148\nfcfYrTFbM94,99\nu31Fyx8g5ZY,129\n2dD7upKpLks,150\n0M0dGWXQt6Y,132\nH2cgoxJHSPs,130\nXS7Tpc7yY8Y,124\nRCzgkvkbVI4,131\n8_mRYeBdwcc,118\nxb4rFYLKzHA,118\ngHWnmlpmub4,121\nPbnhCazvuts,132\nqcGEIq1AEGM,166\n9MDbaBqAqMg,96\nGo6CJ0JVOUc,131\n1eTXG8FReno,171\nH6FYQzuVMfA,145\n5mMnqYaXDk4,132\ndEqZRPnfSqo,143\nKTes0O7QBR8,140\ni7eR-SzImZQ,80\n0GsFiFVwfBE,177\nxxmnK05iITY,178\n5Nw5r8_YCFw,132\nSWxdW9jlHqM,142\ncRoIsrSzapo,132\ntWHVvdPw2t4,179\nWXVmCSMEpP0,115\nYK7cNXMRifo,177\n598QZf6lkKw,167\ntaAwMJ4hsdk,85\nN2EC0gAi2lk,179\numIBbT6uwZI,164\na469ezsg86A,153\nFjr_CQHJiCo,188\nXq_a8AYpKYA,99\nya0uliWzUTI,80\ngusrRGgXCJg,112\njQPKeltJ-Vk,179\nBoGZH9krgjE,163\nzQX5VL1XU5c,170\nlntqgt5jbjg,115\n66f94DU8ab4,175\n5h9E5SmLCVM,177\nVAp8WVZm3cc,142\nSV6dKGbbkIk,95\nJupxjoCyrBE,132\nRmSIKuobH10,142\nw-A750XbFAo,152\ntWuBw5082gI,176\nA8GRnS_49gs,168\nCK3cE7N1pzU,94\nZe4qFn-a-2E,110\nayOLECuygTQ,120\nnXjnagPujjE,114\n11qpNfXStVI,172\n6SoBKiO5mlY,129\nOsgEdYjoqUI,163\nJ4me49IF70k,129\nh2Fbdx7N2Kw,112\nRxhenI5eUDI,164\nueAsO0Gq8vI,149\nvSa0UepuyTo,178\n_zjqM0Hmk2A,179\nlq2V4EnoY68,166\nzSd5uTUpuAY,137\n6OizpcahOZA,117\nmLk_txo4sYc,128\nTuOYe44bL0U,120\nXRx0KtjPoX0,178\no1DgvimHOvw,178\n8yXl1yKbBiU,179\nxdMilnKGJdA,132\nBNHVkYhC8Po,179\nEqEDcrYPp3U,170\nkKC8076NZOY,110\nd3GeSiD2HIs,179\nbKkJKMjnYf4,110\nR4CiWP08yes,121\nZvG2Q_KNCOA,173\nqYEceRHS8jM,87\nWyKHdjh7_2E,132\n07k4FaH9dTc,161\n69yTsxMTNnQ,131\nPw8FO7eRAoY,131\nvk9wMNmKk6Q,126\nIV0hoLATbJY,161\nvsfjzfGZVyQ,137\nZ1sTQ3g7V-U,132\nn5wiHK9V_ss,126\nI_oKf3IEGmQ,103\nc0-3FQ-_SAg,153\nawPDaFp70yI,115\nloVYzYPJBTE,142\ndGz9C2xMADc,165\nNJe9WplQKN4,132\nNYo4WkYNLn4,172\nkRwFOUeh-Ro,39\nP94WndY58eg,174\nd7vy5NkiJJE,134\n9b32VkOh2nQ,155\nJyVZgdLjGOo,130\ne9cysHm38Kg,99\n3wsMRsZ2Q3I,91\niX23r272kqg,171\nU2SdWVntd-o,161\nn-omBTsCIDE,131\nXiki4aOO4tw,148\nux9JHznPT8E,140\neX7t2x1F5wA,132\nBXq-jB4MZdU,104\nnxnkxubWt5A,140\nioKNba1RRys,179\naa2agiADM04,170\nZrKUk6S3XSc,129\nAP_hr5nmo9M,125\nek_w1fGGUT0,177\n1l1qpOrjsi4,186\n1To7zCTHAv4,138\nVx357DNh0vw,156\nKINtZPTjGOM,111\niB8eR7GugQY,142\nUrRDXFXZUhw,179\niJHyw2pjpWA,159\nXGg85Qv_gK4,121\nvR1WPNzcXHE,176\n6i0sEgnPLms,80\n4nSkJZ3i2-g,248\njMHH-fH6oBc,176\ng-g4vCbZsDM,123\n4VX7ZvbbLrE,139\n2MYB0Gp7RLs,157\n7yVV04Hi1Ms,61\nX7ME7WkPyC8,67\nzxO4SgwCONk,158\nKKfz8C48EJk,175\nrxCuYueuyxM,158\n4E_jCd4LZL8,116\n5ql5X72wS0I,165\n_lpIHzRR1xY,133\nWVed9LPelUw,179\n_08wo4Rxayk,127\nPEOiWoM2q6Y,179\njot1h4tgY6M,179\n7Dxxk1az9Uo,147\n8Dw3DomVuwI,132\notk_S_5inBM,156\nbLbLsjRVm9Y,145\ndb50XeSEtv4,109\nIcawiMd_kkM,72\nNPS356u_u08,174\nIEA7PR8i5Gc,155\nXN0tr43oqjI,129\nb_5M03JfdQo,126\n5mbqW5rZaCI,115\nGXumhcRLN_E,130\nTw99DKA5tss,163\n7rVMT0xklto,136\nohnkD-gjNVQ,132\nZNnk9L2LSZI,165\nc6XHLe94SJA,132\n8EUTXbhTFg8,139\nRq-hSPn_Elc,128\n4Em53e2p7HQ,166\nxMuWufwEZiA,105\nOE5CnBYFkZA,87\nPwfZYNFfEfM,93\ncbBTkI-JxVg,69\n5zXWLbr1LyY,132\nk2ih0cR-fEI,131\nqB78U2aWihU,178\n9Dd423YO56c,89\nbHGyGED8qCc,132\nUppZwnbIvZI,119\noI2bCE3FNZk,124\njYpYTpKuT_k,146\nEFhZ72P48bc,86\nqz0rKdYiqDQ,158\nJig6r9FAwAY,147\nPT3Wpc71ebk,131\nJ-7LezqtuMY,146\nYGOmoGwJbTk,134\nGnAKqKB8ryc,138\nQHYatXsRFEI,166\ncQigrDa8S60,99\ngbr7Qazpy2E,132\nrC9LfNF_CW8,130\nOEf-Lee0YnE,179\ni6XlRCrUvxU,133\nAebCDidbqI8,178\n86TpCwZ4FvY,128\n8jK3RW6rSCM,137\n0sUHxfXKUas,113\ne4-STTC0pNc,129\nVUZBpBTqRJY,135\nB86JJELi5Tg,183\nJ1wEoCLDl9Y,65\n7ELmyf41TnQ,206\n0mE11Cy_xAo,179\njla2i4bOfjg,132\np9Iw3217IRs,175\nk10DDJ4L2lc,159\nf57Vat6YZUI,151\nOIFEMSfu4pk,141\nFuJsy0k28tk,102\n7KF4iJzBVWM,117\nHqquGvHwicg,146\nme9Vweatkto,182\nAjXsoJGi1fo,140\nMb1kLqoiDuA,127\nEQDbDIz1Y0E,134\nM2_cj-txN9A,178\nuJlhwWFAAxI,53\n7lQT4xGTpIA,178\nMp1_PuUoSaM,131\nl1SZ4ccagFQ,130\naNQL0s6v8nI,154\nPSvMn5gSLWs,206\n0Y_kftjPpUc,130\nxzW255065XQ,162\nTNVwN7IfVAw,157\nLGnwTTGzjpk,135\n2jgk4c5V3b4,132\n4tehW9FH9aw,71\n-BNqJHOxNp0,161\noUpzcxwFI6o,141\nx4oAO_kDHTY,178\nwT2zu8zPXHQ,93\nnfzJCrxKVMU,186\nOAMxHdzk0EU,119\nRQZFCcsvtew,126\nO2hN7307Nio,147\nzdbOXyz1gpg,153\n6zqeWbDCXMM,118\nxbHSfACHWQE,181\nj2u3UksivgA,107\nT5CoWL_wdC4,124\ngDPJG9FP3iM,166\n3k9G5rq86PU,158\nlRAsSTNZD8g,167\ncZKYcRqPh-o,176\nE8MitqqUuBI,164\nvIrRt0vaySY,154\nbhYOGuozHd4,153\n204zPTniPrU,171\nqE_SJYfhUc0,124\n39HR8ZjQnYA,151\nutFeHmJ1iUw,123\n7Ce8fa-b_m0,176\nkIUgcwJeN5A,96\nvMwfVOf1-vM,132\no7zebTh4tHo,92\nTkjw0XB9Xuc,163\nooiimi7zkoE,156\nJfFRCGgpkSg,131\nfjAnmRjjY3E,123\nHycJFYsUxaU,148\npjJU7RkSrr8,125\nYCAW0hzka8I,165\n1Fxq_n8e1qA,150\nmryo27tUcJE,125\nIbkWZDej_v8,118\nGjZ2eEcUTrE,132\nm_adoXQ7GT4,96\nYd_u2G_ucCU,101\na4Td_W5dc1w,156\nYCleI91Af3s,131\nHOrCBUADkMM,164\nKVu2o2fTKlc,65\nj6qjibwpEzM,197\nkymk0SPNe7c,144\nrnTrWINYDsM,176\nAgZbPNlvHe0,117\nO31rBYqYkuQ,168\nLepvQqFvoWc,135\n_N1L7UsUeuo,104\nMB5PMwcYLqg,131\nVGA1SZwZC7A,135\ngnqyCM42fOU,187\nDeoXtC4c5Ck,132\ngpEiNwKpq1U,69\nLrr_z_4VLdU,179\nEw9wk3EGlJc,134\neIAiu9_4JDs,178\nW4Zj0uwpIwo,178\nmuVopS3Yn7s,136\n4KFtwqYA_kE,148\nSFEc7iy6zmI,82\nMa5iacR9d74,179\nGM8DRazH4ck,179\nZwVuw2rvu4s,131\nqy_ZclSCUwA,208\nXSTakNMoF2s,150\nOOgShYNNtn4,179\nLDDFccHEa3s,173\nPKLVAeI7MU8,132\nkFFuJQRlm38,133\nGe-ilEFgJ34,84\nFvUs8613_TM,174\nbfgRDarWFnk,131\n3ycDiqPVBqo,179\ny-PhkF8e4rc,125\nwrkeOayCv6E,154\nNP5PcpEDjS0,156\nCGHuALdM57s,181\nf505OHOUHoU,164\n0YDejqKggWA,146\n7nZ0VyXfpec,121\n9nvHAma_Lh0,209\nQhVvJyCaQS0,116\n1-70_Trz7M8,131\nZGha6pmwigQ,124\ngYdm3PIHyaM,146\nSNCyMweQ_8c,108\nP0JUY_IEZts,122\nVwB6p1A-FwA,102\nyXyrZImvR7c,112\nUzPRCUNCoIA,132\n-IV-ZZwXUkw,165\nZdkOLsRkjBU,128\nlKqS8lnlJsc,102\nLkkVEYz6y20,115\nvLxUYa47OXE,150\naKNOSJT3vCo,178\n2rq0nLbL5fg,118\niNa97wFdFyE,85\nFyuQ13ZZNIQ,131\n22bHxTTLcdc,118\nKbsi0KOunj8,189\nCZRn7cU3UsU,132\nRF2gzBNsZQ4,176\n4nEsHsxsjew,122\nietWI5HT_nA,123\nuEV9jxF2tOo,170\nRLsGDXjTW2w,121\nkgu59EAXbic,140\np6dUf7YRWao,143\nVaQo1PTIzXs,147\ncEJhVm0TJUQ,122\nuYDdBUasjxM,84\nft9XnHcLYiI,151\n6EM223j0wls,135\nIa7el1fEff8,149\nXAw8Qpr0NK0,162\nMPu6DXTG2ps,151\nEva9_scd290,139\nhVGl1d8hRBI,101\nN-2stIHQ12U,130\nOG9EDE_bnws,178\nZfcfpjiFZAQ,131\nyQYUTyaODfE,174\n6WArrD9VPJE,106\nS9U3ajjpH5A,76\ns6lrBldtwVk,170\nMEBibAHnEK4,85\n2PQw2qw3BDw,133\nNOVhlDQthwM,141\nip1igmoPSD8,122\nhRBRb2eiK4I,167\nXzSBAvxA5GE,139\nTxvqZhVwrSY,170\nwehE7YLFmGI,174\n6Knf2lu45Yw,179\nBi75jrN5yDk,129\nzVBa2vcgozs,131\nj6SBSViczK4,149\nnftQNmMRqG8,152\nCLfY0oLo7o0,109\nnna-IuI5SDk,132\nEY18WYrcYHw,132\nSVYv9SJAr2M,166\nQ9NJiwYZt4Q,172\nbcAACOrgVKE,131\na2_9fQ0U57w,178\nlOR8JBFySr8,175\nVLXwMhs4ODU,159\nSQrD5lkN18o,134\nlMilbGNSGtI,218\nEP74OZdI5d8,119\n5TSXq6wBPVM,133\n2GGLMLNbZpE,179\no36MJbiMMH8,128\niUi2XKRnJD0,103\nU97UagTDW_0,136\n-zD7CZtUNbA,128\n7ocMJfJATEw,106\n5vZ-SYX-4oY,130\nJhTVkpj8g_o,179\nw2XWa1XuKSI,112\nFTjFM9edoD4,88\n89qTnQ_TK4c,106\naPkfoqjZXog,177\nXWxNXRPHQIQ,131\niLBL-XeNrRI,77\nv53yiG9-_xs,137\nq3kcQHhvOWA,132\n8Q-DUxHMLvg,132\nKsU5oT6FhE8,69\nkYHCKF2WLA8,178\nKcv1B1aZIvs,174\nTnkyKOn81nA,168\nYDh2u5hneLE,147\nSCp3HsyGqeo,121\nFvJp6IklZUA,172\nBlC3yzpzATY,166\n0B1NRC3WYEs,153\nDdGYUf-E48g,117\noE_FGufcMpI,179\nRb3em4rmYxs,132\nt3dmXdp2O0Q,132\nSp_ZkjTIRiI,170\nWIr_dCgNAjM,150\nYAhyJTSt_9o,176\nTn1YK5UEr_c,130\nlWERfZYWdA4,140\nGxA7BICC_zM,179\nb8wlb-8zFSQ,75\nnPGxSotEa-c,132\nRQlXH-KzlXg,202\nUDSfJaVC0KY,171\nuaLxw2PDnmk,166\nKGPl7ahFDEc,116\n2foDdTT3cG8,134\nHnKmwbVpRno,129\nGLOcJyFEXIw,118\nlniVpfK5SW8,149\nFwkbHnPwEYc,110\nQ59V4qwZI14,112\nvQSkLuEOdMM,119\n1OV3T6GWhIg,260\nc4Wls5pZlxQ,124\n3TN3wohDAXg,178\nK4fpErUdp3k,181\nIsKNaQuuL1g,173\nr6AmK5ecvRE,147\ntIZfD-LANtA,179\nWMWI2FTLbhg,131\n53vQBW_4hzw,149\nx2CizSzk9s4,94\n1V53lOLjgiw,167\nTE4ZWi6xkZo,139\nDujyJ1EDft8,114\nTU00uzqJGKw,179\nHLpC0bnO5_o,175\n9UMiW3dzW8g,126\nQ-MVoUlU-OY,126\nf7vRR8-n_Rc,125\nYkYqKiASqJM,176\nIpf6Zg3UFTk,99\nhfOL-PefOz4,179\nXDI3snWDWuo,131\nson5FnMtr_8,148\nyKhHoh_H350,88\nJz7ZWKumqfQ,132\nV2M1t7HAj1A,97\n_V0CWwyrJUw,136\nmoH3FSt88FY,99\nLlJx0tWUuGY,108\n4pHgq_uwXjs,176\nXKrIeZTVBQ4,178\n_41uCWOabEU,179\na3Xm0KpUYj4,59\nZAtw0w5b_1o,104\nu-ywf1_Aqy8,132\nTyXD96iAjuM,131\n_WovFZ_MDW0,120\nYCIO_JbmcZ0,99\nmFkxrTfAkq8,168\nvjMRE5A5tVc,148\n8YzEce7XN_E,132\nIx8ShPSjmtE,160\no3w6MouV4NE,102\nu-LCigQRPdk,168\nyUrcH6c-FX4,133\nDHWbxxpKb04,179\nRzngZOLn-bk,122\nOlAEXT0Hg70,158\nTxHITqC5rxE,94\niGIooJXEu9E,128\nSfN8z2mHAmw,172\nDkVjSKOdczM,136\naIau-DQHI3Y,131\n746lMCHNZeU,174\nUIdm6BTefb8,108\nHSQl1nhi3N0,121\nAcJq5nGwm4U,127\nh_Awe6CI91k,123\noUXPpeE2pv4,173\nMUEhAUpa7iA,131\nKxRDIx23Xmg,119\nnBlkMaEmWeI,100\n1Wm5NiRIKB4,105\nuA7BbE1cF2U,231\nlGcW9Egfm2M,131\nlYZKtD3RwAw,176\nNUI_ZNu-GXM,90\nu54-0h7QZN8,148\nGexB78wQ6Qw,115\nF-gTRiA6Ncs,90\nyRhRZB-nqOU,232\nVIKvQVph07A,157\nwhEcud8GBTo,128\nWfQ8qbtS63s,175\nPn7M9PpQEgo,132\n9RrN7k_5fl4,140\nvBasqtPRco0,139\nIE1ZeXC4vtg,143\nVV55v_IKVJI,108\nHPjZKKV37do,130\n5xx4Ha3kGtg,125\nCRbtvxbu6fg,134\nmZzkE03B64o,131\nQrg2m5OnJT0,149\nr7J-Qx2InoU,131\nNp4OojYGixI,132\nvROih4weKoM,123\n6UY9MtqSMgs,132\nKNdmBWoCfAc,85\nQwi6MbaOBME,171\nnkmg10eebk4,126\nK7I9ERiBZrc,174\nNLDt8Iyh5f4,163\nFRP0MBNoieY,97\nUVGzuUm3uzs,149\nV8oMGhl8FFg,148\nVz2OwX1XETQ,151\nHNxe49fa2p4,165\ny1gkMNjkFiQ,172\nYYPpg3_Y4XY,147\n7ZbYv65cJ1M,157\nmvYdMO5ZfYM,122\n51t2_o_H_Rw,176\npsB3Ta-5XWY,192\nVBYiVoNwzQo,183\nyTKHZcQlMP0,149\nVOgIyusLSOA,171\nRUox4o5J5x4,174\naGcvpWAhP6I,181\neL2DjnXT4wQ,36\nXYwGKDK87DI,176\ntyyPSnHcthg,183\nctsrpWvUQB4,176\nE5KigabenVg,132\nr2e-9oBXk0o,132\n7fkatAePOnI,134\nPzL7MICU_OI,134\nnAK7Uyg_Y7Y,167\nr_Bdli4c8TA,160\ny9ZcKltnEx8,145\ncA9k-dz7Bqw,219\nitk5hcD2sFs,179\n5kvHTPJfo7o,132\n4EF1zYFHbus,167\nMIpPd7IhPNA,112\ny6i9UH65q2g,170\nudcb-kQs-GU,152\nIyN025OadaE,189\nSIgiRJmMz1A,76\nK_0hl7Yc0fI,132\nEdJRbvXr4zs,131\nbZ7ZsN1FXuI,142\nh-UqMU-MIig,126\nbLD14JwSiYs,114\nyvD3X3RcK3Y,175\n3gLU99wxUyA,126\n1vNv-pE8I_c,166\n3I44VJIIzKM,173\nJ8JhG2j8E_w,170\nRARFpfBt66M,184\nnsR0Z8f6QAM,174\nUk4tuWVB-ho,126\nIUBx1ZoP6PA,128\ngS6ibQuZIS8,173\nBlWpx55Mo5s,115\n_6G-jfNOkIc,137\nbFrORNp20Js,179\nujhnKE7fscw,146\naMOraCoYToI,129\nlh3WF7shhlM,174\ntMaXLU_KG-k,98\nUUnnQwVC0rk,105\nh-Ss_FvzZcs,174\noAheN_ARn1U,155\nF9puQXwExbY,133\nwOuk6V3Dj5A,133\nyCUaXGVdi_k,177\nSFy70juGAHo,131\nsQA199D8U2g,177\nF8lEfmjN9C0,179\ni6n8VyqaCQ4,125\n-_Bdf9C0SAU,131\nCdgq2SQcKcQ,196\nhK9v_6lK_lw,131\nd9YfIZP8qPE,144\nPnjkPSAncPc,160\nwRCiwDkYtVo,179\nJz0Ueh_tkFg,155\nFl9Cexw3ACk,74\nI6f8bYDvpKY,146\nVPXC2aQZyEs,161\nBH3ApQHJslA,178\nF-q3C6jSZYQ,119\n38AYeNGjqg0,63\nPbndU1PQlPk,127\nz6ViDZpVoYc,127\nP94nUxbIgs0,121\nqnyoHZa5rrQ,120\nYlF1gLpUZp8,78\nD3PcFuLPhG4,161\nKRyazQjCRD8,119\nHcadJjFOhcg,122\nBcfTPLZTAog,120\nu0c_2Mk4rJA,73\nYnsmoUntOzI,166\nvI48ZXLGoBk,148\nC73kXYUTC14,132\nQaSr6mpkTII,137\nGKNv1vjCnQI,45\nxpFArzEh9Dk,174\nxB-h2YkIP0Q,179\nesFVrrZCvwA,114\nfaEbd7LEDOw,177\nDXH2BXpwCAo,208\nAI752yUQd1o,138\npYhlVR9GzjA,130\nwyMDViXXXXU,155\nBr3e2gRhBZw,157\nQJX3XvkTJQk,152\nwwDCSzZx37I,135\nxZXOBmW-7Jk,98\nBx9JRDKjrwA,166\nXcE9IUjMtOE,116\nP-3Aca5nRn0,212\nzGdF6OXr6t0,178\nL2GbnErVDqk,145\nAUxAITobkNA,174\nwTP_SdjD5ms,128\ngu_ckpTcrBI,177\nnlH_5ejw7Gs,175\nK57aIbpF_Co,176\nawkGgPALfho,158\niso415ggxMg,127\nkRNhyHiBUXs,116\nElXKzY-3DoU,132\n8CCr6_Xqt1k,119\nkfYzoHzwZZY,106\nxZ_GOyfnTTs,143\nlKwghMLo0AY,153\n9WQnbIVJZjs,139\nkZgaz49f5aE,165\nyF0HUzSCd84,126\n9sSXNopytKQ,114\n6mtG2DSbR3g,109\nvSCT2CffKDI,98\nGLmTfdkWZp4,131\nACr98cpjXnE,179\n60d2lmx8LQM,140\n8s2lUiTRbpU,131\naGAInDBQOoE,160\n9bjpF066edk,165\nRwuhnfKnTYY,142\ntM47HMT8GGE,155\nkr5skPIftSY,105\nNvKOhmZA9bU,131\nu0aPph3nUwQ,133\nMlACEw_4JXY,132\n5CfzQ1956jw,82\ngHr0P3Px91c,124\nba9YG9xCC7A,157\nwBFzZM9YqEo,116\nLurparxqlNI,177\n8fGU90-I_H4,165\nEj_fgugvtRg,105\nmk2OptcsXuo,185\nAuGJ_SZEXFI,98\nyYF0oK8oXSk,123\nB9aW-CumBFg,148\neWirsPiHnA0,186\nvZKaVV0ZyFs,210\nqmJiZfD6n9M,112\nhphPtQjqfQQ,147\nt4M3hbVh3U4,124\n3bcNygIQfMU,129\np-5nqrOtaug,132\ny6u4QEi3n2g,165\n6kxFTk_Yoq0,178\niCTkYP-7by0,105\nAxpzOZT_C0o,179\nOMSkavUrzHM,165\nJFwhPbsr5RU,132\ntpzp6-BkkIU,179\njfA6jr-y7_A,142\nXt2JzDaHiNM,167\no6V1Ov1GCuQ,161\nZCMwz1K-Cso,85\nJTJKIuXBey0,125\na1iQDKCkh6k,180\nhvACHvnVCbw,176\nolg8NTkDXrI,131\nRPS05ujl9FM,130\nyhjD1CmE9gs,152\nNQ1-De19txE,130\n_azX1Pr0vkA,132\ngoAo5dC8P1s,174\nrLh0UcN75A4,119\ndP9mVoZ-cmQ,83\nOU4AuLhWTv8,120\nS9ryLG-cAHo,54\nLP22LQEq-tY,127\nTf3r8Bty06I,103\n3Sz7dbX2kTY,145\n9b1Ii-U2lao,177\nY9ajaBIbzYI,164\nrk0WkrT6L1k,129\n9dSVd8ISfl8,162\n4d-EYIZAqXc,157\nSAMMLF75HmM,90\nLX4AIei6zUw,123\nauMWOnofBSI,131\n5y_SbnPx_cE,58\n-yEE_toKFxc,117\n2tWRTtI7huk,90\n1OXNsIjuAnk,123\nzeTYlUcrfRY,175\nrtsis0lgx7k,102\nW9DAFX_ieak,99\nHdmi1UbW4Yk,123\noX5iDM-DnQ4,127\nHt3gFCqpFkE,168\n5wUezm-K0Bw,89\ngFsyI1eps-U,179\nEFlCixq_HEM,178\n85PCzIbeQGU,178\n82wvQMuzbow,130\nxihdBpPICZY,168\nTVPDfLM9zIw,140\noLUmNV0tmMo,179\n1hyzWfYu6J0,148\nXd5ESRqpz3E,186\n3FOUAKr22K4,98\nEGqPXMAThig,142\nQaxQWGA3wys,179\nsb8IU6c5obc,99\nxiwtX0NC0uA,161\nTjY8crETM6s,112\nTH0d-3NnNUM,129\n9FyqTQ9ywnc,103\nriXp9rJ90Xw,79\nZG5aSjd3ejo,178\nm8A9XOElA2o,171\n6Z5bmj561YM,138\nBfniNOclXKs,162\n6_ZBUhBx3w8,121\nnh8mjiSlAws,112\ni8BG2g9YJAo,179\nTdffyS619Qw,122\nsO6DX9YCIPw,155\n7xMhKadE7gU,174\nYejpJgtQtuU,131\nl2zPMIA3SYk,178\n7jrjZ5DIEzU,166\nno5XxM0OY4o,167\nQVNrihP8ME8,113\nCWBwJk1f-gs,72\n55d4Hx_kaGc,100\nNds71RtsnxY,179\n2V_LmUEtPMs,129\nRmqqNrg2cKg,167\nctU1dN0Js1M,169\nCjqKicoWqZ0,158\nficjws23Qjk,177\nsmwBZ-3HAPY,140\ngw4Sj4hJy4s,133\nucqBb8FMJ74,127\nT1jK-kQgdeo,156\nn-5bVE4K2Ls,119\nuZhJYIZthNg,132\nF_BH945RjPM,171\nEOO8TwyVFYI,132\n6uRycxZgotc,177\nFhhbua6ELxo,177\nhh7_pDbACts,124\nyygkcTQjw7s,178\no-OKsTWIVxk,152\nQ1Yz3J6OGQQ,161\nXFK5SV1-Pzg,205\nBTZArvbmG_o,210\nEcDcNDlil_A,153\neF9nKXO2Zdg,183\njJohoC479no,128\nKTugpKzfZJk,175\nTPgdAesH76E,178\n10X4Th3YE30,149\niHDhfU-N87E,117\nujcglOdwI1E,131\nOlPauBNIDAQ,127\nJNRFWtS0LlM,155\n77X1yGjjHvQ,149\n6hxZUTUMkf8,176\narf7Bi4CCmU,120\nTajTfrf2yXs,179\ncx2YdJwQaeU,122\nL9pxOwibtWQ,155\nivzvZlKaKAs,148\nY-cCAY2hGPs,116\nuYBCAaCGGcc,124\nI6KZlznXyiY,190\n2son-vLime4,70\nqRahFLj59bc,178\nm5Qi_YVxd5M,130\nXZXg3WkUGPw,48\nVPzrMnBW_JY,166\nSVUcZ0sAf9c,152\nlr7pyggTmmY,160\nX3Ujc0YaltE,148\n_UhMIImQ-Bo,123\noOp7Q_xw94I,125\ncighZsv-N2E,192\nuLtUl4pDmOs,84\npQ68ImO9dBU,87\ng95ZXrh2oK4,202\njn4Vhkmb4Lw,132\nGA_4dJb-nQg,138\noqEm8mihoA4,111\nS6Ze8IndlBo,148\n0ezPVizHpY0,195\nRsSl85y9JN4,89\nREXJhZBFD1w,186\nkO3MXkSKwZs,83\nZawJ9EBOLVk,89\nU1WzINCahpw,132\nGko7aal3o7U,99\nGcPyVMO8bcA,101\nFEAfMv14l5Q,47\ngSHomdp3o2U,132\npQ7F6S4FrdY,102\nLHTaiCLZO3s,143\nhW_NzisexqU,141\nKOAAIBdD3bM,167\nx63YlKqGZhI,174\nvdnA-ESWcPs,132\nu_4L7Dx1rIg,98\nfJpdVdl29Mw,156\nwNhse5NZgR8,144\nwnwsSOrmEKI,159\nOneax2fARKs,129\nuPQlrPGbD6k,142\nw-_BMZo7mik,122\nVkJAnikGNCQ,170\n_GksGDm__8U,123\ncneoNgk9dhM,131\n6R_37O7HwMI,176\nNuEXMD5przE,162\nx2cNjm0VUmY,95\nY91jebCjFBE,179\ns0vNsH81YeA,122\nyjuTLT5OWko,137\nluuYRrPaEpM,172\nsHAoAwDUkBo,133\nABAYY_S63CE,86\nK_a1_SO8hu0,188\n0REROw4SOGc,104\nBiukHSW8Az4,150\nr38fEGep2yU,119\nW1GrNDtRkgE,132\nwZUKOxIXZ8c,130\nCOZxvXx4bSg,179\nCyXxBjk4UaQ,151\n4331uXY0nxA,153\nUxIpYfsTkew,120\n1yMhC0o3y_0,113\nnELxnSK1SHk,201\nxpKYkGHWB7E,179\nzCttJu0ZFpw,179\n9UNV2c-A4BU,179\n2uyy1EOBBm4,132\n93Kzx7azL6c,174\nKapEcfMelL4,140\nBgvJlZKbqlw,179\n5DEINY4WTVY,127\n4GUliPk7fK0,121\nUTKrefMHcJQ,164\ntoctHJpW6no,177\nm3262E3sfb8,161\nN2IfyUBU9_M,166\nzFbHwupcqpQ,131\nO0Q3TOvvZNY,132\nmGJ-2YWYrgE,142\nbLi52djkRTs,119\nHkNa8r5E770,132\nHNPyZsPH8TI,122\n7jz_uA1dv9w,164\n8pUjbhH7A7M,130\nKz6J6Y2DpL0,171\nD_1bty7dttk,122\nev_UF24O-oM,108\nU45CzgrLE9s,210\nQanZzw7zh7M,162\nIerddGM-xO0,172\nEwWuQOBBcFA,174\ngQ2HC6eotDg,87\n1xFsHF8ZF2Y,178\nIhdEKY1b0tk,132\nEB74RP-oZqE,134\nLDWuu8GZnkM,167\nKc2EYuV33Ns,236\nivZaXeAv5X4,167\nH_CVt8o2GAc,127\nP8Cv5p0cgG0,172\nt-DJLPtSaHw,129\nPsAtoPJeiys,73\ncqD8XBONBHY,177\nxSvW3Gxd-h0,132\ne5SbxMFk6Vo,131\nJj6S3vtJPaA,180\nz6FcMyuo0R4,173\nf6hhVIV_LPs,42\nGDhe2vbzjwU,132\nK04WrySpUH8,145\nLYsdYDbW_Iw,94\nKGW0LbnEraM,167\nySwvsZ3KWhc,118\n9xEXh16KupI,114\nzp-g3uxoQeE,179\n_oFhIKlIBr0,179\nt7mMEDZkDlY,159\nueNjp9QfQFM,148\nIWpThrDfQEI,134\nsTbJQwezQZY,113\nPJYZAww0pgI,156\nCNuEPee1qOU,52\ngHQV6AMclGA,62\n0XZlgVrxKfg,132\n_d68kyNY0jI,174\nymbKDavsVaU,187\nxLD9iygFMgA,178\n5p9BA72SfkY,129\nhE7Nc_la-l0,139\navQ9Wvp5wZQ,132\nLoLBuoPL7nI,87\nT2jMiMTHY80,160\niI8w5AQJcN8,104\n70zF5FTAfAE,134\nNapj_I8kdHY,148\nJYVhLnjKKC8,173\n63fCYTWuVoA,180\nCNYtVjUf5uc,167\nkp2u8LURkgQ,90\n6MtwwUfJ8IE,124\nH08d5DSdT6U,95\nykeqEK7m5oI,192\nNiVB-n5b0hE,216\n8k9h0yE0XIg,132\nnpWeWCC06fU,179\ntp_TZ--JHEA,132\nIYVg4o3KVPo,167\nL1DsFsUlgwM,103\nEV3y3ehKePA,98\nfrxxz1Nx3x0,132\nPeFLEFUNxzc,119\nvQ-bN0fv4Uw,179\n-pEKUJ9MADs,113\nxW0Babu_t8U,176\n2fweZsmH4Tw,177\nSiOImcd9L2c,169\nQImoaNjTtng,145\nh6jcrXOs088,177\nA7HmqwyZ3oA,147\neXVVSJUhDmo,153\nvVPtQKHiWwM,143\nx22ZX9dGaKk,167\n3l4Uuh_byns,138\nVMO06PHDR9E,176\n3izQonrYukE,132\nBhWg1G0czSQ,94\nCy6I9ydBSWc,210\nP_VgDHPDtK8,114\nt75KclV8x0U,114\nDWyzPO2x67E,159\nSeiltyhdQGg,158\n6CO4uEdr8p4,150\npfVP6HBoflg,178\nK9Z6ZZIZPFw,124\n0bRr_MER6Vg,175\n5bBti58el_g,142\nJ-AftfYVSI8,111\n6VdHec3IAn8,145\n3ExJ909lWds,130\n2CxV_NKhsgY,167\nwwxjFuoLYzQ,179\n1UqGimF2hkI,125\nrqS6CaouXwE,120\n7HZj_fM4yTg,131\nl8kCCIoP1jg,138\nPWfgDuO0vmI,157\nj8Sb4-hMhCg,132\nN_O0XDnM2AM,179\nbtug5ZMTWuk,122\n5C7dB-dOS_U,171\nJZGQiDSJRWw,118\nbQXJoR6tLao,129\ne37vIq1VL0I,158\n9diokRIKGT8,100\nJ6i7WPT1cFk,145\npLC_hRDO7Hk,172\nDnGpfWa6FAQ,153\nvssoBfErh5w,167\nnvRcQGBL7Cw,152\ndyCbGaYPSIY,170\nMnIzvH5GvOA,114\n-ZlL0LLfjKY,151\nLPRHiok3nzs,164\nVcgn4EY5_S8,164\n1CJuzTFRGhE,131\ngpkncObsNqY,215\nT5-LhZ2YpGc,130\ngEdTciZtW4o,192\n2QB-g-9tuEk,141\nW9vPRj-c6VQ,135\nAUBx-geW0Tg,160\njCXcE6DvgLw,166\n3iZ1TVOskhA,119\nRj5XdwnuQ80,222\nopt5yQqMIdc,130\nw_V5UPmEH_s,92\ndH5RKJLZ7HQ,88\nQ1ACWidWmjo,181\nuf-v_lzbcp0,161\nFJ7rx8LeTgg,175\nkYA9hvcLekg,128\nbkeLkORd2y4,92\n9hXnvqJ7uxQ,176\nsl1Jjq82XUA,170\n727NnSLXsxc,130\n5rkVGXHv2Ow,174\nxbBD7VIJ4cc,132\nLalslCf2kLQ,164\nutHcPvSz6AM,93\nCYXBxG1COzQ,108\nzoSzqHlvN6s,134\n5KaMqmlEcJQ,115\nxsHeAaSmoe8,112\nH5ocMbhjb-M,123\nK6bTibRdNxE,115\n61LA1soyYkg,155\nWFGyCzl7_zE,130\n0BQZb44R_IY,131\nhVyVNcP83Sw,172\ng7kdpW2hZOI,130\nrgFfioIzPgs,156\nx8tbSHuoB9E,114\n25CbQ5zMNfU,132\nplEvMJ44Exs,166\ns0bZ80iuZdQ,131\nHhBAeTBIj0U,153\nKsmXgmhjUic,143\nPw0CzPQdaE4,168\nZQ146HsyzE8,126\nDd0PTNGBFUM,138\nB98YODkeEqY,170\nAWvRcWDr5y8,181\nR1f88CiYzes,140\n3Rayb1Y5SmA,123\nPBBZHnc8Jxk,99\nEBSjabRNztY,122\n_-JtvyLvSlo,162\n-WrDbBvPN00,152\nYmbXanCiB-U,215\nhSvJRk5OH_o,178\npIyrp5Aj7LY,100\noKCF_TzQ6Pk,98\n03WbdaZCGAA,102\n7kGm_xBgi1k,179\nF5Hme0QUyXI,113\nQwyo6C87zdE,155\ntdMF1i45oks,177\n04uN57jOg-Q,132\nTuafKNbgTCA,90\n_W1RJXCb0xo,129\nS7GMNTJa5zQ,188\npf2q0HemaFs,265\nTPdR8MCjRGQ,146\nmBUdGRqiIR4,144\n3ce2e-d1ZEc,179\nWNZNGn_nkOU,104\niwAciIQDE4A,138\nmgh0nSkIy04,127\nDOqHpCInxQ4,169\n4rzrz48Fa_o,130\nBzMaqlt74NY,140\n1H_5SNtiMIs,159\njm7xE-OyJUY,133\nq4FzgqjlrVY,128\nl94WdhJc8ZM,141\nLIhdfU4RIdo,123\nHJCm9e0Q2Yc,132\n8skrIns6h6I,132\nZ1MsMWSkKWE,121\nUFuxiZFwDPs,175\n6K7Xjdfc0bA,128\nCsOFvj63I2c,131\nAcmav3U4xOE,171\nvicOpIdpQVM,150\n9uRPfjWwOL0,178\n77326fqWeR4,128\nl-aUy9_L22o,171\n5y4ZUMVTGcI,104\n5D4D0Hby47o,132\nFHDq1ehz_cg,124\n52QPxxtu1-s,96\n6ljUgAVSu0M,115\nHx3l8vu5L6Q,174\nyShrBo6NiI8,177\nX-t_25jG36E,108\n41T9HTzQ92w,132\nkeumDslluNk,179\nePaK5-b1oec,109\nv7kRQXWpSdE,130\nKSfYdl24m7s,171\nzjFMyK_bRso,143\nrqWz0oKJQ5E,70\nt9_VbtJdDSQ,97\njx757TP9spg,177\nOKR7b6NL6IU,168\nW28kNzz50pw,160\npShuaMA2rY4,71\nh_htCIiCXfE,130\nYauy9nMQU04,179\nvKMMeOLK9Y4,152\nz_3ODalPzT4,156\nEkE_bNKYqCM,214\nRMRJQL65AqA,142\nz_G7CS4mJqc,69\nPnmtF6EqeXU,124\nh1vDFFr7nNs,130\nm6U7qRsCp6M,136\nQA34Dlela4Y,63\n104ZQtfYDso,145\nFmPwgLX9fAQ,164\nIo1xroeJoBM,124\n5kgYUoeOPj4,163\nBqcHbcPo7zk,107\nJj-mAiTMvX8,93\n19j24of8C_w,126\nXHJI9tya2cM,175\n8nOx6uj46XQ,154\nah6TYuJ1iQg,153\n-X9XaNXkvCI,121\nQU677HiXf6M,168\nSwPPG_B3ArY,144\neCXv9LnSKeA,176\n1fVPS7eLbME,122\ngvBe38KoiVc,96\now0vNLhDNzI,162\nHLi_w5rCH1I,132\nXm5eKjy5MTg,128\nA5fwu8OlNG0,159\nJhho1OqCSiY,127\nYdhnqI-beNo,132\nGltdSC_5Zzw,132\nf69ceThb6ec,211\ne3BQROKhvgo,144\n38jPEmoNjAw,46\nUeKhKcL5efg,177\n3mw9rXZv4tY,113\n5wAlQf4WdiE,163\n3Iambpg_8w4,164\n9kcwYNK9cp8,132\nk1MdKI8kiXU,132\n0DnThxPfhJE,125\nijkNii0A80I,130\nalh8b1lYuRU,208\no4ARk91_ptU,119\n5CS1t_QtZOU,127\nkrBjSShSxu0,163\ngx4ZNttML0M,119\nhqJxDiGXTWc,133\n6ObWyt4Hfaw,128\nqgcQxJuBfY4,153\nM1uBjOpTa6Y,154\nW4efgyM82kE,70\nLCWzLnaJqBw,126\nl6cFM5Ubilw,137\nyZWEB9JWLHM,162\nVDGKUOjQ-Zs,126\niMigt5aPvPQ,179\n_CWSn-Zdi5w,156\nHLJHW3slPW0,176\nzh5VtQ-x4QI,121\nns9WcZlqv_I,178\nVwSWeeg9RSg,175\nW_Aq6Mu-bQU,127\nVazRhsh6uys,161\n4rGu9dMtQWA,131\nQUP62JKYg2I,92\n0QoGNA_9zqQ,102\nL2ozJHHf1ec,146\n0vtLA9LFkSs,132\nYYsc7jslsc0,149\nBmz67ErIRa4,124\nsIPWv4xB9-0,131\n4WgLRH-FpWQ,145\ncZumS81KSw8,117\nAGY5gNpoPfI,176\nNJtOmLkUSKs,199\n4TgJgyypajE,152\nVScQtueKnXM,173\n71FkH7FwfFg,100\ny2DC74NT5G8,128\ndbu7AfaXHvE,104\nhiREoiox0Tw,146\nUa0oqZfJFN8,123\nLODjoHqYzyw,171\nbX-o8WaWp2Q,136\n75ovyrTzuYY,116\naDrR7riBeLA,153\n6QEYgLKNZd0,142\nnID1enI2xW8,166\n0GBAUGvKy2A,131\n-jiQdqoe1cU,135\nFnahBy4Od9Q,178\nsHFXRjwKOG8,163\nY9_k4iGJMco,168\nVUqea11tvH0,120\nVVAlND4mt5s,152\nTCK-ODyUwoM,126\nzz0w0KDwhWg,151\ndlEoKlncQsQ,168\nnpaJix_AarM,131\najRRS6NzMBU,147\n918j6y6IMY8,131\nOFcprqLHg-M,129\nSUQaxkWkB0s,157\n3YWCnhDDMac,173\n6MDRk-oDzAE,102\nE9paF0XzmtA,157\n7TY3DFSCrOc,167\nvF3sZj6ge18,154\nwr4rZEPQ09Y,123\ngaLJooLoKjE,120\n_nk2ZNKOxCY,40\ngEC1WbYzZYk,122\niIUhwUKRg28,177\nz5xRXKOAu-Q,155\ngIQWTB6lNlw,99\nQLTlJDjPfHI,153\nwDsYB_uRbaE,81\nnQBrfPjwAfQ,158\ng5iR3s9FA_g,131\nnSO22k4XGUo,122\n0JVZ0bE8hpk,163\ntYs7uguB_JQ,169\n0KtJi_MLKqY,162\nU2HWD9dymUk,172\nCgow0KNc4Hc,127\n4_3PUB38zJU,131\nti9jg0JOK2I,184\nzbN6F4tfbgo,124\n9dDKx-vREdQ,84\nk4Lpr1sqKbQ,163\ntKjyNywkBEQ,179\nq1QELI37duI,135\njR3JlEXdBIo,179\nYLjkzy7nhc8,165\nMPqg9uMHTDQ,176\njOLLiuCk420,179\ntTFOv5oFe3E,105\nf8a97iauRtw,159\nST7mR3xLdys,114\ngmElew2NIS8,145\nM6aTyZE_Zss,130\nWrCCnZaSlKE,96\nMBY84LUh7s4,122\nMFvi1YVig8w,131\nejRc7XEbAQI,153\nNXH48hZ6798,162\nPIAzmZ3FFy0,137\nQ0okgIEkRJM,174\nqJ_EsjyYevs,132\nKRfJqmecqUQ,117\njAwlK8vL8OQ,151\nyjrwCXMRh24,80\nLe-bfbn43WE,177\n-zAp8NOpVKU,132\nNgQmrSNWY0U,99\nUvFclgKfUQA,125\nSQ9JOrG0mUM,178\nRAsK38Vdep4,138\ndRz8OjNEtaI,84\nUwPJMQwo2xw,129\n2UrB8TI5El4,156\nhHKUBg_c9no,145\nQZ9b-TPTC_U,168\nswcFDa5jYfw,168\nqyvR5lglbTE,154\nlRQXQXsXIm8,88\nR8JhC8HArkQ,129\nyDd3xayehVg,130\nwyRq2S8BTVM,67\n7FGCTdYcdIM,158\nsS8ECvGKWT4,179\nh0w6WywbohM,91\nfTMY9OkzTBA,123\nH1rttoUCeUg,149\newvkTkHfJqQ,173\nZ0l0sXacQ9Y,177\ntoe0MwxNN1o,86\nc5zKpr5gmgk,89\nxCWkAXGz8W8,123\njM7Eou4bV-Q,148\n9pcfdiFrBEQ,125\nqnVGIFPFry8,139\n7SaFvv-XoIM,144\n3TWv-3cC9NM,125\nikWTYTomQI4,179\nw8IS7igzQxw,171\nltmHZiXkb9c,154\nHi_NmfSbE3g,178\ngPv4C6gIdOo,125\n0pfqzjPMnoE,138\n6mJk2i7Lfjs,123\nqcVr2eztQEk,130\nhdrvg0jmL8s,174\n4kQr8dkriIg,131\n5ACVz6Cmo3M,161\nlQ2RStfZii0,178\nk92e50obPsQ,177\nKtHucDG9t9k,132\niRd63BXG6nE,177\neuCE7LJZxvE,133\nb7C69HqnV8s,124\ntRwyOQw5zcw,90\n3ynO7Oaj2oY,88\nSUMtjCypolU,135\nPJQgGszBO9s,137\n7MJd-RSHTqs,74\nM9F-ZtKswww,174\nivGfI_8TE9I,150\nv-OKZSh7tQ4,126\n0isiQvOb874,76\nrWLEdpLkmrc,167\n2N4Tq6Zpx3g,105\nlpod4qQzO7Q,123\ndXqs6yH3KF8,130\nC1QL0e4B7N8,127\nxiXiMxTbu5k,149\n-oPHsR72Lfo,150\no0wTt_xDlpk,153\nZLJX6CEkgto,126\nnQLSbuSZzE8,165\nvwObck9twes,100\n7YYge4b8MBk,132\nvl5LaKMkhYw,135\nbQ9vlCKo04g,177\nlYEy4it6m3Y,126\n7umeeSjxQl0,174\nPlSt57BseA8,172\n4932enSiFRA,84\nZtQD3EqQAC0,126\n0slaW0ARW1Q,132\nDvX8DbtVspE,74\nSlYRjU2KBfk,104\nFPnF0-VdHNk,126\nmvbLx0pbohk,132\nlyuqs9s8134,118\nphOJkEJled8,170\n7cJS4h5_KJ0,128\nkJ-wkP8Xm40,128\nY5oZr-5C1eM,135\nPMmvUWqeS80,159\nI8yAmR1UymM,110\nBdc_wuMUpP8,131\nfoPh0pXXq-A,47\nYVmZ5gRR_zc,178\nkYA44FTePNQ,127\nHda6MwCdwI8,144\nVNUBj_27Z-A,142\ndTGuyNnJJFs,166\ny7T5Ea-WGII,149\n9hoSF_oY8Jw,132\nyLj0FvavCe0,153\nJduADWt0XMI,166\nlH7EYLWHT4Q,119\n1YklLet-e8s,177\nFi4ixdzoA7I,157\nz7fOP7aW1P4,151\nktEW65QQFgQ,95\nGVt3XFTYp-0,184\nrUW2mfL---k,160\ng2h4ycVI7AQ,132\nCdAJ9-36cAM,175\n_JcFaIDdphE,146\nvZlWLj1-eC4,178\nMVqK6wNkSxA,197\nHk-_1SD1pic,167\ndGIyVafU14c,171\n_ZiRPpAgOlY,132\n5MB15iYADy0,129\nwC-N_KnYNLw,131\nbVKJscj58DI,184\nnNKsj8rQGHc,179\nsf2eXsM6Kik,93\nwU7TupjcCbo,96\nGiQJxD_bQCI,101\nwsIybRQaDE4,131\nEi5IEWld1xw,177\nnuNIO9LLqYY,142\nDMhcIrShxec,138\nMCJcxb_RtII,206\ny6mlssn2bl0,71\ntn24Ca1sslc,166\nyc8UHdsuy68,177\nXfKq2_EzkE4,131\nElvTXO2A3Uw,154\nc2HZzrcEbZc,191\nI_Ld8Rtl-Gc,173\n1KPTpxxZJRs,179\nZMURdEkb_3Y,158\nL-xNqfIXuaM,97\nkJlqNXhZE_I,180\nwufYHJkbl7k,119\nFrGGFHPDN3A,179\n4a3OH0EcieY,204\nRqNXT7abtQQ,165\n4V7dPXjZJC0,132\nJtuMPxXQ2l4,151\nIwQVcVqDUqE,132\n6yuDWX2prJg,143\nrXyyr3kSB3s,165\nIUu1T75RjTo,133\nuGrrtkaWoU8,128\narsAllZIa1Y,171\nnKISdYhQcvw,179\nAFJ_QnfENd4,132\nRX4-U2r4lS0,125\nlEFx1qmW4ts,129\nzdKxziIlC-c,101\nzvdLSI3-j-A,132\nQQCeQOAVWFw,108\nHfiKoIVr3T0,125\nRlPspkeaFrU,179\nIMuAOVTXtLM,102\nKjdjDz8jhN4,132\nPhLfIqO2SLI,178\ni-VM7_DJlkQ,92\ngsXRITF5hcI,177\n1UpUjmKJaso,189\nY5pRDzBxZtY,165\n2COP58ej7QA,179\nUtSE9OXHIgw,122\nGJsTqU9Ujxo,91\nOzWA6M7VnGg,168\n0WoyXBXCqdg,139\nb-2p52a82UM,166\nYW6VrETYUfU,118\neKrrYByQTQI,124\nmXLSLzeu-mM,154\nc_k5BK-ONiE,82\n1VIBA_mPdPA,93\npR5to9mS2cg,173\n3a7e-npyunY,175\nWOcSwhJCnr8,111\nJLH_smT7Qog,104\nxnV6hJs2Zu0,142\nEn3JBEKvxr4,139\nqhgkpZecrTY,132\ncl1Yl57gCW4,113\nHmwZxnQbox8,179\n52sXSYdNPsg,159\n7GrURVFAC2I,176\nRKt17dM8eFk,180\nQ1-jHyQHGl8,127\nf6m4J0AfEOo,97\n5mL4wT8DEuU,132\nxHgLwzZ2_8s,104\nyayNXxs76vE,122\nF2CVL2cAV80,178\n0OKdy3Hpzp8,132\nolj-IIjnxLY,178\nJfk2QR-qyZk,93\n3xmFjLSU7MA,149\nRw-EoS3td0c,179\nihOU-LC0ue8,131\ndsTyKFkGPuM,81\n0t1TFwXKL2E,132\nAEocciZMBjc,132\nIR7xuySx1v0,125\nru_PLKD7w4c,179\naRAHfPrf7C8,131\nrWe5nzPq1JA,125\n0oHT-rtiFZk,172\np1aWpCsLn40,119\nF0tBvKtpT-I,129\nbDAdgXd7Znk,119\nOzVZMadRoSQ,150\nw0BK_hLT-Wo,160\nd-Sk3AvyR24,99\nzkR_E8jw6qE,156\ntUr2KIu-nvE,120\nPDSgyYfLpdo,154\nDHL2KTvQ_eQ,141\nAdjVK4hPaOo,140\n1u7U16N_yJg,172\nqe5s8UTNw4c,108\nGjJzcjwVF8s,179\nT37ezlBVMME,124\nnOkJXxd0cNg,68\nA_ry95V0zNw,114\n4x1rlz-IYUk,174\noEUB2LSsbe8,127\nwvVrDGmqHjI,126\nRJ2waor6V0g,129\nWGy01KGFK7I,154\n6bDF7ZQgkZA,174\nsp2FvfOi928,122\nHXtYMxtMlhI,118\n19moJ8AP49o,82\nOGG3HuI6HcY,166\nZ3yJF1FX9hY,131\ntkDK_YLfTO0,134\nydFjplhKYng,141\npesYeCruSyI,132\nAJWkS8Ja9YA,157\nzTh8P8BTQVE,109\ncK2a6BzrUO0,119\nZfKsbOpsea4,175\nOMHAwJjp-YI,114\nd5CmbbyeDco,179\nPkLE7uHqRt4,123\n2H2c3F_rzqw,82\nD4_CGzg3fmQ,144\nuxXMshs5exs,130\nFUWdPWW4csI,132\nEyqjJVgnJMo,124\n-D3PMCmZot0,132\nD6SVqGVTlFU,74\nQYLjbRd1_DE,130\n0H8EmzfVSbg,141\no6hrLFJq63E,110\nb_tZKOxNR7o,109\nXFTJJtOtFtI,100\nWxIIpvpAEEM,172\nSQNzOyXHbYY,114\n9PllxjcicFo,181\nGYJ-Z5o9gUM,125\nzct1tPK1Zk0,172\nN2A4tcaMl9c,165\n8YDVV75itA0,111\n-78FgmNwyD4,106\n5kGTDvVTAOw,163\nI13gMF50oqE,117\nfpK36FZmTFY,175\nnVKSBDddFxM,124\nfOdzgxEe1u0,102\n7pD2vZ28a3E,168\nvf2EeAvsHAU,176\nKQz3KBKMFg4,131\nIRRYuq7qYk4,162\nS5x3QGlo22M,193\nBdC4os4SOH0,159\nOr3JIDwWgH4,179\ngG1XmKlqhIU,156\nOtsMWS5Z2Oc,131\nB7rcsBCaMI4,128\nJr4HhX_kbf4,181\nMB5zQ9X-2tY,102\nCsukLjjPv-U,141\nLeA8ojVy8Fc,159\nDHww3Tdh26o,101\n9OhXJOQioeU,145\nmG1vn39lP3M,129\nV6TrgQxf3lk,131\nzdTmdoeLgAc,172\nGBTN4LA7pTs,129\nw6USFL0JYAU,158\ng7pwgA-oyYY,124\nsmUy5NzszX0,124\nvioUisPavvA,178\nGKuPSf9P3tw,162\nW1U_sJhDIXI,132\nViWgPQKgQYU,82\nBBXUqYlAK6o,176\nDzpGeXWsQKY,165\nn3Y6B_UKam0,128\nphTSTiwPBUk,179\n_AgBIeTHzTM,104\nxrbaFa8zV_o,155\nZ1Cv11vpjhQ,189\nJY9Iq3-iD7s,133\nexo_QZ07_BU,129\nt_BSGcc9XkY,131\nddrQKAMzUGI,131\niekeU-w3im0,92\n6n99ZpSgKg4,103\nsNi3hwriXyE,143\njS7XOEttewM,165\ndmqo-EuR8Cw,110\nhK2Em4D7fhU,178\nRl-Fx-2zzdQ,142\nxDC6IlQdTLs,108\nbc84pYZICbk,61\nucBnN5N2fn8,124\nkdDH7Ynw5Lc,97\nTFGYMpZUv4Q,132\nh_JeXTLSCQk,132\nt2ydTbUJ__8,106\ne-6fZ7wiPQk,155\nVA7J0KkanzM,132\n2f2hB_pRG24,130\neZXgYKx0aQI,97\nirhRobBI3BE,174\n1kAMrmDG-68,127\nDUJHFbmzhtQ,115\nLMGAxyUnURI,181\nA-zeWjOl0rE,132\nx94XSdW6eEE,99\nr7ApEmhlxro,150\nkAyPdsYr2K0,99\n4UgTUqi3Xxk,108\n_ilh4ZR3aUo,174\nfrIi1u8PAlc,126\nt3aYQKl1qbc,179\ntsQS1b-fNSs,143\n7yjowqaIUnU,117\n38tBs7AinQA,123\nqkVImymH0A0,182\nSEQuHP-wL5Y,117\n83xaGtnlvR0,156\npxWCOG2v42c,98\nPM5TJ6vZ9YM,123\njyNtMzHeJ6I,179\n2nrHffYUXqQ,131\nf5mcMmE3RL8,218\n0cPT4zspVc0,153\nkH6SUxCwXzs,120\niHheroBxkuE,104\neG4B_DIenu8,102\ndUoKiRrGu4c,125\nzkRC3GX5BEQ,164\nvapcFQlS6Qo,132\nhJErQ3vUD24,178\nZFuV5x1drXU,132\ndwh6SShhnVI,168\nic9PvDGkzf8,87\nnn1qvGiHvLc,126\n3nDCPEcEuPs,115\nQnMDpNk1DFY,126\nwk-P07PoFAk,162\njBxnTnikZEo,148\ndx07n7Eov0o,200\nkRZxEorotnY,126\nAqMWvk5DMcU,178\nOY5yOdITL-8,145\nazot-mIuW3Y,119\nbmeh1eFkyHg,183\nz0bO_2sgBZA,157\nD4TfTzW8GVg,132\nrDGRAHBojWE,141\nPHj4OVnU6EY,90\neCS7qPuOXQI,116\nMCN-beeZSKk,184\nv9AtWaaaShE,132\n-xCS0zZPAoA,116\nQbwYDkPwfUM,178\n5PikP1s15F0,159\n5A9D-XVmK10,147\nHhP2rEHWxCI,118\nAInSCWWY14Q,168\nglNH68Iaa3E,171\ng3a9qZnTzJQ,137\nuJnIaD7gDlQ,176\nEegoLE6n-Gk,178\nSoFgHbVPrSk,132\nG4OAR22W7Sc,136\ndgXARu_D5d8,164\n_AmKz3iZ1K8,171\nwxRSLer7VIg,176\nLQnfBdZnLmI,116\nEvWX1drAfhg,132\nfpgKY0I3taA,131\nCrYqMX-T7G8,157\nQ1ITCuUHAnY,102\np03u3v6GF-Y,158\n5ZxVaJcxkMo,154\n6Uz7wmX_6nY,170\nYjF4rd3J58U,116\nFqYJIUS39Ck,120\naGk88ZwiLRs,85\nJDnjiQCk2JQ,130\no4lq3SOB8sw,131\nBKgd8Q3X0AA,129\nEVIsqHrME68,100\nIMOAEKRuaeI,140\n-JERO2LQSKc,154\nROy7gCg3hJE,168\nemW6TopzEe0,169\nfQ5sMUzf2bo,190\nc7AescgZzEg,177\nEQqdhMcUSAw,156\n-fnJhOLKjv0,132\n2ZpWLuAc7LE,122\nZeMzb1DXoFM,99\nFKPNubrWp0A,167\n-i6m1i3JLaM,120\nW6aifznLeXE,125\n05GysooKs0g,145\nTvoWGxM8TU8,115\nFHXzsBsOVjY,167\nLMViEmB4_Fk,131\n4i3CEXiGKgU,186\noKTtRDYwIG4,118\nMoHQNC_-45U,123\nsQPrjgzEcAc,171\ntWEBbYoDaU8,144\nY0LuDSiX63M,126\n27U6dyYE9rA,136\nav5eE5HTVzs,179\ngijYgnVD9vo,99\n2-i06SAeWs8,180\nWJpSAnt7s98,119\n1c7FYxTa2mQ,157\nt4pLZtTuryE,152\n_aePd1mFn7M,117\nkzueHOeJk40,135\ns59yqpV0ICo,89\nwSdltnqDWV0,115\n7RsohcD0tS8,193\nHAW15MhSWuM,155\njsTtWLXjHZM,130\niuKNXP9LcSg,124\nY4HSQKUAPKM,122\n6-PJPTcT-o4,148\naRr8QkQ9Qrw,109\noA-dHypOn9M,160\nuO1YBHAbBSQ,177\nMPhIzvgB31Y,131\nNerShU5K9Ac,81\nNJzij2bw0f4,144\nPX-PzFNkU50,98\nTCIgI-AObzk,152\nHc6cJ6xmfM0,133\nplcl4YShR5Q,159\n38Zst1IDgIs,102\nGjA92f_iCHQ,167\nVQSA2-NbbL8,160\nCf5dlMw2d7s,115\nC4UKfmu_m8I,180\nesHXIrYgSzo,160\nBgjJ00HhyCQ,193\n5rkWzIzJiiA,132\n1PLIzuZNuJI,105\ndcB5igj1k6w,148\nsuz-NZ9GZ80,178\nXFosHLSA03w,129\nVUv6vjIidho,132\naAkF2Du59Qw,145\npLKhG9v_0fk,67\nxzwBLuOLjzA,131\n0SDvqDdbhSc,169\nhEH49mSRWGw,100\n8tfmRZV1vnI,127\nDOrvXyOMjhQ,124\novD51p3YDFk,167\n9C_429woeJ0,129\n-b-EFcA7ing,133\n73F6wZrDxao,174\ni3u7nvpgDTM,132\nT6BDCLnWSes,147\nlF3IIOXn5qU,167\nYcT_oPYKOw4,132\nn1r4aOeOxgo,126\n8MVN6SVnO_o,77\nXdPLA-egIeQ,132\nrkPT_6JWenQ,125\nivlV5kanNFE,132\nt6nqp5MdMp0,181\nV5DgQr_g6SY,120\nbryVfEK0U4k,174\nQGNI11LEG54,127\n8l-HZqArmXU,150\nuk2ovL8llCw,130\nfp4Rib-6cm0,73\nGUWxHgIn91w,160\n8HI62qvNWPU,59\nxCLCNJpKLx8,133\nkeymL9b6W4g,132\ngnfJ4wcpQsk,132\n-fvfHqNEmGU,159\nPu1vplwgGAY,177\nj2SPawJewxA,155\nJ2ugazPv__M,124\nXAuxvhZzUhE,165\n01OfrTMVeD8,203\nQpqCLenOeAM,165\nLFT504CjJFA,172\n7AkMzkl0r4E,130\nepbmsvL_da8,179\nKAZVdaHzWNc,100\nNmsLAaKjKEE,177\nBTUIaeLGBPk,88\n98I5LTPcRnw,165\npv7lZRQDygc,179\n4009LQ96f4E,108\nJxs8p22Pq_Y,162\niAMImEbSpDk,145\n2ZMYorajMhk,122\npYmo3PXF_T4,155\nzs5bqvL5Wh4,133\nmwrMEQnMRCQ,141\n7lAIabgWtbI,164\nOjGiHy7VIhI,124\nQbzJtP75NqM,387\nQYHTRRmkung,158\nyLJU7uywTXc,176\nMiQsEACG7_w,143\n8hGqSM0OV9U,132\nu-pvs7gVNHo,157\nEWQsR8em1BM,132\nIWjPXaM20kY,157\n3aJHkdlvdHM,105\niY2xD9VKDiE,159\n5h8EbDuS0so,136\nj40IcG_BZuc,165\nL8cLSkIAgJ4,150\n2SiwZWhmbS0,167\nMu4AuoaIuHg,132\n3TAoWo3kBkw,128\n2OXtHJgLJr0,178\n6COCjzLI5kU,126\n5HbKxlvyiLk,129\ndjquKsYMo74,128\n9Fu4muqAsBM,119\nYXt8RmeU_AA,182\n04BZh6E-Nck,159\ny_eZw262fhM,169\n8YaSWlYa9u4,174\nCcLJWUzDSbA,132\nyu3iX6zxbm0,178\njf9d3cwVWBY,114\n8ZLUn8xHbiM,131\ndJcvUGXOMMw,131\n7booh4V0jaA,162\nrpE_9A4LXWs,105\nLxnWduj4P-g,157\ntFeew6TgM8w,103\nGzsGxfcPyTI,133\nYGmK5uMOgZ0,178\nyef2bvCU2Tw,145\nX8YOtEocd6I,127\njdp_wn_UrcE,169\nFCv0BgoGj0g,178\ny5cSt5uqt3E,126\nRvClpuFmfm0,237\nPhbkMQ89QPM,120\nOnExOgppDJc,149\npvZXE-e5Yo4,171\nSqaM88u082Y,245\nJCVLrJfjsIo,168\n6vtpmEd3SNk,94\nSnKEQA88PXg,167\nH6bQXth1CEs,170\nm8Jm9_iR6cg,163\nLi8ROpFUD4E,129\nW_EYrVGI7LQ,171\nR0p6s2L8yk4,163\n_ZpONi1-f24,177\nogEjqyO09yg,139\n309Cnimrm5A,143\nJch6T39j20E,137\nSpaZXamzgwA,132\nwFg1qWPryvI,171\nouN3vJJmPgw,131\nqWEaCJlKZXs,152\ntyUJnwrI-FU,148\nBXx51SR_3Sk,119\nOW1bbk4wVqo,122\nuvUaNcx7mlg,130\nkMalrBgdRvI,103\nKTFG9YDV_8o,132\nMATnKRvs8K8,179\n5IPCNRlCYP8,168\nQbMcPeuQsfE,178\ncrX0CMJ_aIQ,151\npzrbB0XK9eI,121\nvL5LepmOUQk,179\nkmr68ZevIrM,174\nWQXqhk-8h7o,131\npvS3j8VtanM,176\nAx-iwIoIxjY,132\n3pjwMG4hrFw,124\ngEq_wldXBww,166\nLhbPVQUZV0A,177\nb7wurDomuVs,110\nBaSUY4geCtE,197\noSc-5smBhRQ,120\n6bNyU9A9LlM,131\nEum-rR934sQ,143\ndStxLpnwvWs,163\nzqTxw0eiZaE,245\nemnU7uOpYtk,177\nVHz5xaHrCCU,87\nnrqg6wxuqFo,126\njyO1ILQAGsU,131\nQ91iEtSRiwU,156\nXLJwlFShttg,92\nU5fkvkaFqt4,164\naY6ZwMZqaBk,156\nzu9vz_Krzb0,154\nDDClFYXZmtM,179\nSxMetYMwzUU,143\n9eosfNwMpMs,123\nN7urptsSqNY,128\nG6EzUGdelYg,64\nMC_Wv7-i2Es,192\nV0dVNpmzCyg,83\nlIVO6oEk4Hk,82\nhXCaF68sDPU,161\ncXfD-Ai_QuA,153\nWE4iNhRivzc,144\nFaWvQNVeDag,73\nDECt9uTxaLE,133\nelwNOiCaRIs,132\nW_WSGHIPSrM,166\nlOgPGO4JnaA,170\nQtSzDCV1CHI,148\n1shru4620TE,149\niM0hP-LZIvI,113\np4yCboEAjLk,167\nThbFbz_0qhc,206\nQGq7H8ku2cI,132\nbOP-THNe4m8,175\nPSG5uNsnkks,162\nUUPZ8Bzq1wA,112\n7DkV8WE7DFA,126\nIh-zPWi9INA,119\nSN9LQ05sQEU,132\nENsr9cH6irs,149\nKNol4Te8mCs,175\nP0A0LnjsGSA,121\nL4kxEO7Okhc,112\nuBPs4AHD52Y,128\n583Eukgz0QQ,173\nzWQIwJsqXrI,182\n8cAlXSNQeUY,179\ntagDBoX24S0,159\nOA1pcNFRhXY,152\nMhev_TsgOBw,133\ngQ1o6y8iYXs,131\nUQ15FRltlsY,162\nubD8vf5WvnE,118\n4dVIxwhMYL8,106\n9cwWiC6Gs80,179\nn2dBpP0yhUs,122\neH7EyPs_Va8,148\n5Xbdu0wnun4,145\n7H_6ZZLNsvc,131\nnqIhzUUH6Ts,68\nk-e5rthOQdQ,172\ndrTH0CDFgx8,62\nlCyS2Gxxzfg,134\n6v098-aMBj4,182\noD-1eCD7lkE,179\noX3g90bTn1g,119\nmY-6iHAZZoo,123\n8HO4C01n00c,136\n6lRIgVCdLP4,170\nFB1Go2JVVqc,132\n0mT5xT39Zvs,161\nPnZpYoBuiGw,131\nDh6M4SEdLdU,176\nO2RUT5J7T4E,169\nhOnolgR_8tc,115\nvdED1lRQ-N8,121\nYZPkrplfycM,157\nmVdTVvgW4EM,175\nML1hxH1yQb8,172\nJgPlgAnASbY,152\nPurkHHO7Gcc,179\n3V2gt6bAYxM,167\nd8Gg9rPHKNU,84\npF67F-hlVaA,109\nHt6uQH8qIf0,157\n6kk46qE9oWk,171\n_pzghUqM1QQ,132\nm946LkLieG8,111\npKjMt3cBv6g,74\ni_qI6LOc54w,201\nhl8e9i6YiA8,133\nZMROlNs8iWw,123\n51Kfo8X3V18,175\niQoNLmqqMQA,149\nOuacLAbhxqc,119\nJegIRfX4LJQ,127\nFVTtA6m68rg,173\n5FHPI2NlOm8,131\nHStPxrLfM9k,184\nrqwx9NRpmHc,176\nEhaogw2TNOQ,148\nqNnfnI8ai6o,131\nWERocs57QaE,178\njDnp-EKD-Qw,145\nZizMOl5Xllw,178\nFFGm__skOH4,171\ni4M2tehIejI,122\nvV3RTL40nmw,163\n_NcD2k_QmgQ,130\nVtGNNvJF5Qk,178\nxNu0qNfOoGY,175\ngaZOIAJJ6Kk,167\nq0vvYHuA10U,125\n1TGWdRK-Ykk,166\nBKER7E61cvs,127\nG1BREAJI3E0,87\n9e06PDg1pgs,129\nPWf0rLp7sUY,128\nlBs_nLdio1M,110\nrxme5eLoK5E,178\nShwCEMe6wFs,111\nQQsH99EAwoE,148\nBGEFW4kc5EQ,161\nzWtQ2tYVagg,170\nVhTqGpjZzfk,115\n9jxlrFSiLCk,184\nzJ4owMQIKuQ,157\nswnHnXKbQPM,142\nOvbvCOM89Ew,173\nKuebMqpuoEg,132\n_Z_n2Ray64o,171\npwL0PcIHtxQ,177\nVWX9yxvtjxo,100\nIg5uMkprqEk,203\n2aqgKA3uUwM,153\nNBhmNRq0uU8,132\nx03pWg-naqg,132\nqnp1jfLhtck,130\nSei2JdiJ5Ic,128\na6CsW4dCk_8,151\nC_0W1Q51_z8,142\nbXS1LMaU7TM,172\nlKU5GNOEj3Q,178\nSFzxuEm9MyM,132\n_NQec_YluKU,167\n3uzjEETq9oM,179\nm4qQ9IIo23c,131\nEJCaAADpCuQ,141\nQe5hop7o4ZI,171\n3bmDhfEtNh0,182\nY9isIphHz2w,132\n8YMGQMcNu2s,131\n--oCWVOBuvA,132\nJHpXWiJJbL0,126\nrCCCJ2tXF7A,172\n1egkqpDOn2A,126\nwXer1Hj8hR4,126\nAFCv59zRbGo,163\nYcR9k8o4I0w,131\ndUFtkBtGIgg,154\nhiO38yFF-Q8,129\nGwyuRxkac2Q,149\nGe-zBQLa7FY,167\nobeGwYOdAPc,162\nTaYnzfexuFg,169\nOtBnQ30-Iio,168\n2v0aoYD6OOM,93\nonNv1u-qdZY,176\nK7bA4PB0zdk,145\nG87BCljOeuA,207\nnFJvGENqc20,152\n0D5EL4HLd3g,83\n31ZCtppXSoU,158\ntqqSIT1D0vU,165\n3lgcViU45Fs,132\nXOUauBpPRNk,61\nfVVoh_Xh0xo,152\nIfY49zx7RU0,132\nqBdgJs4tf60,132\nmyJttzKxu64,104\nwQ5uso-R6aY,183\nTPiRiwKEz28,149\n9F9KKPakio4,169\nOa6OoTVXG6E,184\nfk0O_cdBbMg,191\n_jkSWElBWf0,99\n3QyEUXjHzOc,175\nSaaTUj7m8e4,150\n3PRuMx1gqdM,177\nnIuuhtJM_Dw,144\n0gAMfKzCJsc,127\nLbq1U6X78Io,153\nq292IDwEWZ0,140\nn8r0JS4Z9tI,166\nGw8uD1xHhBc,81\nha40ifVCakk,90\n0T0QWPRBau4,131\nqKrNYYuf7Z4,103\nz-KB47AFQAY,132\nkV36CHsDZ_c,129\npetKvkHfPJo,133\nK2Lt0Ek64eM,230\nbTMjiAJwQ-k,90\nreQPn8oDC2c,133\nzZlbperC3ns,104\nkuQQoH9skXc,86\nfNcnudXLN2g,138\nXQdxHzDK12o,169\ndN9rfJvFHgw,136\nJdeH3lqGvgY,163\n7U-et8qOXLs,143\nqbYyYYHysqM,144\n672m88mMLZ8,155\nBzqkq2LwnOQ,122\nVEB-OoUrNuk,123\n1MUi4ZiJUsA,132\n0IP7ihJrrqw,120\n7FgWn6jQuTQ,140\nPys1zBR5jX8,106\nyySvdJeBcEg,166\ndw2jrtR9Px4,131\nnBRPKaHMFn4,166\nk8oFMkg7icg,133\n4BUDwj_mXKE,75\nytQv31xRLGo,104\nHkDkImVLQGc,124\nQlKuJBiw1ac,214\nqKYRwuoqETc,132\nAZIlLRwCn08,134\n4GLcbZQoPNk,63\nJNuiAZP2dtM,51\n1cTY-JnvfYI,180\nHSc1i2XKjCo,51\nyJjnYpZCH8A,130\ncpQQpn89mEs,133\nfpnoVKmulZM,137\nw0l1ukaxeBg,132\nPZ93GNHBHsE,225\ndTSXhhHDOk0,132\ndso8WOrSRSQ,206\niWJTDTs9ymk,57\nYmze0Je2Tm0,133\nDHJDwY4xoEc,113\nGGkg5ytaXlA,155\nYjwB9d1tpJE,120\nauccmqO45a8,160\nvK7tEsNZtFs,89\niGJCWeK7YCA,85\nkNMc5CKw4G0,241\nkUkbUoZ__X0,59\n844ONMSqRWU,127\nyUgQNj5-PaY,117\ni-bRuSNSvcU,145\nC94ag0ondig,101\ncdFiubg8UnQ,146\nF7qOV8xonfY,102\nBQ5nPyRi6l8,177\ngOy7KDtN3mc,111\nLzJEXl2ie4E,140\nNG4z6W4Zp_0,125\ngoOhv_1FYsE,96\njVjq_m-PWSQ,104\nUqn_pbUUfKg,115\n9IuMUzCJ5m8,135\np8t_xV4Lf0A,91\nZtE1j9UnzC4,138\nlQ8JIa98kAw,101\n2KfWymDaTmA,67\nO0twX6iB62U,87\npHu6mCqzpyw,124\nKmCgqSJnzrc,108\nGZJ6sC4nKNc,81\ndDtFWw1mZuw,121\nhhGWxqj_bC0,141\nmeZXqa_CE_o,117\nealJoNJuKnY,128\nDlBuWaGDP0M,38\nJWqaTJbxbW0,97\nRc8ybU83qHU,129\n05-e-YTw4r8,131\n3COpxKYnjPY,68\nHcP-chk0FwY,104\nKeejr4iFv5A,124\nk6_nTAS1M4M,133\nstelirVdNdI,116\nQ067OuCUl7o,147\nyKFEKBIXPxY,96\nfXcQVdBqtaY,125\nP_GbbXL9E78,132\nZ3yR0aNriPM,122\nXY3urIUUizU,109\nLDxOZ6cv-DU,94\ndJFR7xbOIuw,173\ndKoFTEK7O_o,113\n_kKO_1Dr4Go,125\n2uSOBDMv_S0,111\nEzR4I2hJyxo,168\nulMNuwN1C-8,153\nJs0YTLpY9bY,102\nC2PhwDzcQJY,162\nJFblxacw_CA,103\nSp1xdUY8R14,123\n2nacHERVnsY,79\n3t1YQOfYndM,101\nX03tbD886IQ,95\nDCUGRi_FlNE,115\nSiJQJiUZ5Jw,105\n5TbuwxXBfoA,110\ntYmvgGjSiN8,132\nG-tFJHYBqjo,131\nx7mnUeDZWRI,124\npSzusQmqyxE,101\nOopV0xphrrA,167\ncqwrFYjHahk,114\nZXfw1y8Mbfo,95\nblDYzZvYAak,137\ncigrbhwjTnI,261\nQbRnDoXuwkQ,133\nNSuYLeI3d1U,109\nyNeQm5aqrHo,170\n81fH2bYF59g,171\nXWXmnyflZtw,122\nNG1KirPJLSQ,180\ntVfrMp_MWw4,91\nkjd3eUIBSj0,98\n4SzQZn8xGnA,68\nvtxPupFohQA,131\nqrTBSBYpzg0,85\ntGNBdjVO04Y,108\nMeAMVy0ybYA,180\nBoohRoVA9WQ,148\nSATdGPY78z0,114\nxAMy0g4w_ME,115\n5GyAcr1BrNA,113\nWCES5LXQn9M,210\n7xt32rq7iD8,120\n5xl30KAt6-w,78\njArxL-3-j94,114\nSzUPAc8HTOI,117\nFnvug-nXPYg,133\nk1Xv18Vy-q0,147\nOuEmfmfgw2Y,143\nrzG2L4Nbm3E,67\nJPtEnl6MpHU,101\nbEA-o4IJAic,126\notQ_oCvSq6E,149\nMvYuTdiMcRk,128\n4uVC-cDpdpg,105\nPbr6HpxJYm4,132\n_8N1uJZUyaY,96\nUPaTwmDXLWE,121\n-YGxccN_j6o,43\n_PvuoEb4yeQ,108\ne89qDsf6Q3g,108\n5RzSW0dc9dE,107\n1D-v8EcGV2Q,133\nxvVqMR_f6IY,158\nFzOGfMXmfF0,127\nx87nnioiLP8,133\ny5wsjMSXolU,177\nccU8NJFeBSA,120\n7w2iVXAHiPk,135\no_6VSJ_RjkE,113\njRRY7zgE4K8,96\n1C_7b05Rlvo,126\ncvy2tRH7HNE,128\nlwo1GnbKOW8,119\nusWA4j2ED_Q,135\nhMMAB3MNCKw,196\nvSjkkQ6Bfc4,121\nkKk9o476WM8,115\ntYGiUUnoZhk,131\nVqtAA8dO7Ww,107\nhdaAD9fxKXA,162\noYx2teRxnvw,134\nworFlbNJG_w,59\nRdL23CR9K5w,113\nl53Q1UXk2DE,176\n3_NMhC6GR04,65\nITEod2_WHoU,88\nfVv7WOgDC0o,157\nlSzT54HTpeY,153\nqbdg6o8Z11I,130\nOrZB5n0tNAI,154\nbkpuLB3ftow,120\njZyhfkpsGGI,227\nvBhBkvkofjk,117\n0t1xR1LX5Kg,103\nwrmwJx6kYKc,166\nRczW1gIRBjY,148\n2i-3w7WnPiU,120\nQuIQ_S_WH7M,111\n6Mwtt_EKIQk,106\nDcZgodKg9OQ,168\nKVncpZkleFc,128\ngIGtDdiHlA8,219\nowM4is78C0o,117\nnDlEcFRZUYI,128\n4PcE-gNqFfU,154\naikBhgSFE2A,181\nl2g7v4DYYik,142\n9bVHNqrqvjI,115\nGiNKTYoCWG4,127\nJ181xxxzqyg,171\nwKtcmiifycU,149\nqa2Ng4a5yk0,132\nX115jd2e6e8,117\nBaFBFmJG-LI,122\n7gc1EIrxjws,163\nteZ52l28tys,133\nsua9tcQ14hs,132\nwhUo8sI5OuY,133\n03L12Mqkzg8,121\ne6UB5Za3nYw,95\nqpLovLQoJ6c,115\n2ATVtP3BK64,126\nb6xbga06ApQ,133\nPSmJNK9zhR0,123\nWGGlUlvJffY,130\ngcM1pFxO464,135\nImyqnop6grY,114\nsQC7OzU_d18,126\nMBYRmSeYB4A,127\nvIaVITC62Cs,98\n-rebHHoZJSM,105\nwUf0QFFi2Mk,112\nn7AIwvbyT5c,129\nIVZd3YBqxEc,153\nL45abB8vyEo,145\ncpO3ALFscmQ,125\nj638xTM36I8,133\n4Spw9eH9GBk,123\nMyINcc8SDd4,131\nMvu47rYJ1Y4,104\nMIGDyLqwY7Y,165\nsA0SngAZcdA,96\n1NBRkyfy4lA,133\nC1QZn415vh4,123\nPj4y9M7cPy0,189\n6JTplpmC6AA,115\nHdaBcsWogXE,91\nlWopMAZt-sw,111\nXRUO2E9UQro,133\n54SNIVms9vo,133\nsnKDmQJqQ1E,112\npIvTIG3tWok,247\nJ67wKhddWu4,132\nghNPXViyQoU,97\n5rlFiEe6S24,88\n77KnithfRRk,164\nYTadpFs7QAI,154\n16bGLMEtAww,131\n4x1dHdc5fD0,158\noXcDMKOD0O0,207\n5BL7Fj5SUhU,117\n7WQTYb36Cew,105\nW9fV8EusSWE,63\n-O3_WO63fhU,230\njUcER281BOg,94\n6ISHd9kAsTw,87\nMr8aBk7ub2g,100\nfgEjlKNllEU,129\n9fnjkSES3VM,134\nopseGWIdLd4,163\n5iyXb_jNvgc,78\neo6MfN5Lcws,127\nPFDnRg0lxUE,129\nPSofqNSuVy8,129\nmWqZWXSj-s0,97\niTXqcn1qyCk,130\ns4veow_qEDk,163\nYAjVUJ5RB3E,133\ncG0GDlP4oH0,84\nlbIbVWmpcCg,147\nKDc6dZxh0Cs,132\nH3KbLBwQFW4,164\nrSturS8MP9o,123\n0NSgeb0dBLY,124\nw3-djlpw4iw,73\n4ekcTVeV-1w,135\nkp2UhFQQb_k,43\n8dPqVrwBp7s,119\nL8_G6h_pK1o,163\nmzddAYYDZkk,129\ng2dAymk715E,185\nF10EFVISERQ,80\nrOoBvxdO0Ac,179\n45d4aoDJnhw,105\nL0rNCGRjvtU,80\nXVGIvc6G6yg,128\nn7W0yxKnuvs,132\nnvFln5J-6uY,72\nCoDnI1qW8ys,186\nhy0b9Rz31Zs,133\nfrqy8o30rv8,127\nxhlW1DSEAiw,127\nFk17A1jyjKo,165\nDyofWTw0bqY,155\n2Z5WH83Vhs8,89\nzSCukxfXdAQ,93\nx6fpplPaxG0,111\nNZqeFQasslA,128\n6PvYbL69oyE,163\nfXBsUOysL3c,107\n5DYK9Xq-aF0,122\ne-oTHFL5_ec,86\ngqRIBKn09_M,133\nv3dCP69-IFU,129\nm89SmMCynWM,143\nluhE1BFZN9U,130\nXGkwMwwlTLQ,128\nGNsD8EVetbU,105\nktFZq_8XXOg,113\nzLhfa5tKJyY,131\nYBqruLJZAcg,133\nrfeKwl7Dyg0,133\nZYOhqPzYRjs,72\nKIE436-2xcE,132\nRQk7-GqzZCc,96\n8YCMjAOgFpo,163\nLKVcX3959I0,132\n_DbFZkXD8WA,132\nIp-dPqtyXRs,120\ntm6qzug9AS8,161\n4ega5Rcct2s,57\n5E3TSzke-Fg,132\nc93bejkDIuU,106\n5FMiM08gFtQ,132\nMpmGXeAtWUw,150\nzm7wCb8IXx4,130\npyDG32yotmk,136\nBTVWvOpPkIo,74\nAIeKpxgasMQ,113\n8-ECgs93q1A,113\nMJ0qQkcBNPs,132\nxVWpHTafYuA,128\nFeecJ5bAGHA,133\nENAuQIAgXIg,133\nw4i_ZwMT3H0,141\n2uQeLmDx98o,54\n1VwF6VuVhkc,83\nZ08HN_2m24o,122\nSms4grRcCck,110\nLKpLGai9GxA,115\nfaRFVdrRpws,211\nFD9lsX7gyeo,129\nW2Et5nGF5C4,120\ntz6dNnahwCI,106\nundTPa_iq1Y,94\neZp6EmVqq5o,133\nIL_B1fmfl_c,126\nirglCpn_Hs8,132\nZgBPFyzsqFg,133\n0XzQX-i3y_I,144\nvPs5yv77m9Y,129\nKXzNo0vR_dU,128\nVI9lWn1dpzg,176\nd8Ff_W4-4VE,149\n3iD4rM9utqc,119\nSOnb-cyRdAg,127\nFwnnarFw_T8,165\njIyn1q4Ilpw,126\nOC_NauqyoSg,180\nXYrGVKzAJjQ,188\n2CFBewOReY8,141\n8lnEGuCcmXs,133\nP06IeXkgRNA,131\nZnsLPtYvqj8,133\nlhGtoYnSdl8,110\nSJ671CSV2-M,128\nE0aNsWbWr1s,111\n6jS65g5UnWM,121\ny7rxncDh6io,96\nbMDdjhWe9NQ,129\nw8O0iiBrIzM,108\n0A9ppII7eVA,133\n4qFxfRN75HQ,82\ns2xKn06X9cQ,101\nnkUx3zstpbU,118\nlDetwrOZPZg,114\naVEtuBwgly0,104\nbjaJxs12l44,93\n9ecF-Go9lt8,134\nPlGtHAZOWbo,129\ngsWHt9OIofc,133\nJOqFKM-dt5Y,129\ncoOguh0UhcY,144\n8hG-F24aroc,169\n4a71NDQWOMM,57\ntr3ORGLT_W8,142\nEEVcrvlYO-w,156\nYhSKk-cvblc,239\nRhirMa1wvPc,137\nw610fTL5O-A,134\nd3ZUSI1_lOc,84\nOk4HEhju6J4,123\nN69MOeO5bi0,93\nDSoLhO7jVzk,123\nDKwC6X7_JU0,93\neJWSp6A1Ks0,127\nj5Fd6TqePnk,158\nFRVB-HBxR98,125\nXBz6d2VPgZw,130\nS6QH4oWys_Y,129\nYyZ4gGCCqss,129\nlu9yr0xefYQ,117\nEdN4MiVmI74,161\ngwEeqSGSL3g,119\nW2OKX-PIpco,117\nyXcVX57I2JU,135\nyKxkjtLBq6I,126\nE4D7FEZx150,101\n1zOmRBOYLpc,140\n_F4WjvMnL6Y,110\nwPO6KyIYst4,233\n8NOmVkx7fWQ,132\n61_aprVh2FQ,107\nXRGOhLyLS9Q,133\njAR5DtTUdHM,133\naClqNJOXy-w,127\n80htzZ3-XwA,127\nOeUbPposwAo,128\nJ_OsoyDByWo,87\niltOTKedsM0,133\nO_NBFJ4pow8,128\nlAAxpdk0Swo,131\nCCF5MCx5Tes,109\nC-7X5i_EQPE,97\ni_9C6d3VVHM,103\n0pVwRO2dFVs,139\nLPxNka5Ll5U,122\niWW0Tk58kXM,144\nl3t1ZSuwLzg,158\n9R0If3RWk5M,115\nMfIvSh-tko8,133\nnSEGOd89xWw,121\nFHUpEG_qdVc,119\nsRwqd3eCNUY,179\n8aQFiCfxz6M,121\nxLIEyHRfbv4,137\nOHHn-_aJQ7s,78\nRZAkOfxlW6g,126\n_e917WJMzl4,102\n8BY36nM4_HI,136\nk9WhxTOA19s,130\nqPXny_mZ0iE,115\n4XG4OPjDKJY,115\nAwMjkeZbRZ0,126\nvyN2oD5tI80,91\nNvPYToFoU2M,133\nd_jEVMQc0ig,117\nY_lgyJtcb2A,87\nSV73jXKrQ80,120\nugm8RMqRSxs,133\nQDNELnksfnw,133\nCtTjc4nJlDM,112\niJcH2hCMNiY,100\nF3f7Li9T4n4,126\n2Et6MGSeXOU,264\n0-81bpcuz44,163\ni3xjZomB1s0,145\nV5dA92wqmME,129\nlqdyZpgCnXQ,60\ncEPa4RFLJ-0,109\n1IctSkdJICI,131\nCiOFGnNgnnc,133\nUhDZPYu8piQ,130\nFwHnNe_ItOY,135\nB3g8p7_d8r8,132\nkhg8XoyKzs4,126\n_mVT_JmJ2Bo,133\n9CSMoJr51IQ,65\nnQIfRCUlfz4,133\nqUMSld6BwC0,142\nqfIzHlWOiuE,95\nSN7sOR35KCg,124\nrxwADdYa0YM,132\nefqBAU-lT5Q,90\nZj3ggkkj2Pg,139\nMCtE3Y28IR0,112\nVWWchm35s-Y,61\nKQcLnNoYMWU,127\nkTXppLCyuOk,72\nYCuSsetzzg8,58\nqqaFGM-AyNA,109\n2_WO15gq88k,126\nw7ngnhj4snE,104\nfR0Sh0C6jFE,192\ntLzcAofC4WA,129\n-GaJPgI3jh4,132\n30xxXgTH4OE,179\npKJOqt7BtB8,120\n9yh3GgjFpxw,94\n6Dyph0wJBcA,115\nV39FjO5t9BY,187\n7DhLw2aNu_Y,104\npwqOYWnLxBo,133\nWRJWb6SViK4,178\n173I36m3rr8,107\nWoDvOu6PqLk,109\ng-2hB5Kd5aM,121\nLL2LvzUVsZw,65\nIaoE6JAGhh8,130\ng0HwVyKSC_8,130\nF6Y4Vd970zw,189\nOQVIkVIf_BE,96\naUCNlDzsDH0,103\nIi5azc-GzXg,135\n6lYiLycAQSo,68\nSyXqFhSPWBg,131\nLHVll_0Hmh4,158\ny-AJwogMrAU,133\ny_P5zX0ejXI,172\ngoyoOGbDjNM,130\nhIoCskqjp9c,155\n3SessG74yMk,191\ncMnkhxzCLyA,57\n3wJY4bd_M-w,128\nP4PPhm_fJug,146\ne0cR6R3SccI,100\nPpbNn6gMTUE,120\n82sgwc-34Cg,81\nb9EAfTyu5_I,133\nYTnxiXd0qwA,61\no_yIykgKbeQ,132\nIW7worFAFlU,169\n85dpTb6PRNw,133\nsbJ89LFheTs,132\nvozS5ppNzAM,118\nKzVgbCFwn0U,140\nZBc_xWnmHRk,124\n0xJcu3vc9tI,223\nnwQ5zHdDFng,128\npmC3rsgHD9E,129\nau9pGQ9AuUs,250\nLfKPfJmfGgU,106\neu-afVml4MM,130\nwJJ2RLLVzcU,102\ngpW3ywIoyr0,157\n6i3eC2gzxXA,49\nJMlpAPKDm2s,138\nv3aqGRzL0BY,131\n0en0UJ180yc,132\nddwe3cp5dt0,132\nxR1YEOrYOdw,133\nU4DZWsXvRUA,55\npN7yX45G6WA,152\nVEgR-CiTK2E,97\nWIZ0J4rWO88,118\nBUAPTnpOdVM,133\n2315p7LJusg,129\nz5s04znNyMM,116\nDvze9_LZmC0,56\nnaKm_rLxRCs,217\nEshEWL1ZhCc,109\nj1CcIP0upoU,69\n9ioRMsPEf8o,126\nXHGWTDHchVQ,133\nevo1frlMjHQ,115\nGxMoPTqev8g,131\nRhMsnnZ-0qM,57\nZU1CFYBhGT8,142\nHrFmuAN50BA,132\n_07OFEHs0iE,124\n6CxOSOVI76c,102\n9RRGvAB4HF8,134\nK7iGuEr-u0s,130\nA0gGIMaQZJs,96\nTzt-axwwOUY,45\nhJUtiOm9dLY,133\n2SnugUXqVJc,122\ntfGpUcIEIf0,68\ni812ZsyyeLg,126\nMoq-NmqnZR0,133\njfYvV2tBEz0,113\ntyazEYlueAw,115\nS-hMzdxcOD0,125\nWVxz2j4_skI,126\nLwDbgE54QYE,126\n15i99XcYpc8,131\nvH8nss4M93g,111\n99Ptctl5_qQ,120\ndPKG3WMkMxQ,126\nMYuEOOe0xSE,132\n_yY3iR3yuT0,241\nyqy6z3kxWdI,99\nyo6AWtLxoG4,203\nC2YKcU5rfm0,115\nPJQ2AiURctI,89\nsXtlR_7l6xQ,121\nlKJ8pyN8Cm4,136\n-Luy502C920,146\n5Ddap2Pyhtw,132\nFlB2v8LQHDM,223\nSwI_ITgsSks,121\nlVQgRd34Dlk,163\nDdZNLekEcIQ,110\n080g4Ylkv2M,97\nfBB_lJ3Axqk,133\n9anDqvXfdu4,132\n37zZ1ULVBa4,122\nnuVY83HU5Mw,126\ndaoD1UtU5XI,117\nCSuwuvVcRHU,133\nEDdsxJLhp-E,132\n2Rlao83KneM,132\nboCpijI2k5I,136\nOF-QIOuucVk,84\nxKvmGfNhbF0,84\noow41RrqpHE,132\ntxKlsWFlkcs,181\npoAxbGphYmA,127\nNsMwPIy4Ax4,230\nLQhfDQoYERY,98\nhBsnb6M-lr0,118\nRoP15HrFNu4,102\nGMiD6PU8SKI,132\nhfufT3MZQm8,184\nxHunA6CYHvo,135\nqTpB6q-YJwM,131\nskMchQx_U_k,129\nXI5o939LHrE,90\ni6ymVjU5hno,135\naA_j4KpP0W0,240\niRmtQ5DlvuQ,122\nDGtD5QAaAGY,172\nU2_h-EFlztY,123\n7EXefCHq6OQ,164\nl1DMfq2zSks,75\nQ8rhm3wBFE0,116\nB62wGNHDYHA,111\nn92XBsqbSF4,179\nS4s8LTNnufA,119\n9lU01uvS3Nk,113\nLz3XcjwKGmQ,92\nB22vWcjNR9I,67\nZFM-OxDGrkg,147\nURvrDySPc4U,179\niFnPpSNqKYU,127\n6bxEuaulT4k,70\nWlrq_lGAn78,133\nc-jOeDA-X0k,132\nhgFClV33aH0,100\nNt9wqkbXyyU,108\njPSjDk0CM68,125\nq8CXKTH5950,114\nUr3uTKbrqIQ,94\naJhtBJETQF8,96\nSyGAQwggjTw,86\nH6fBnHvdZeI,162\neZtQn-GAemQ,124\nMM42NkUhSnM,125\nrARKAStGRy8,83\nFcFtBqXUud0,144\n_WzzevY4_Ys,144\nLt01tXTT0Ak,125\nei1tTWCrHqc,80\n_uHTonkUqW4,129\nPM9t2KSOfK8,132\n2PVdztmMSzI,151\nLfxeHobEC9g,82\nkVXAITzqSgc,181\nZYLekT6cYwY,109\nIhDAJ1Tug4M,141\nSMYJOm56YvY,132\nmksJyq7Z-mQ,177\nsIB8AdUqEqg,119\nU_5JpJYsufQ,123\njd3KM4imjr4,99\nENjz0-Ut-nQ,205\nA4E1rEzhnz8,120\nWfteSIZ1Fyg,104\n3JL2XIwueEA,124\nFjrKzRGUXWA,133\nJ-8l4bdfL9g,92\n77Uk4kkFEnA,88\nt3c_a9M1E7s,94\n_uw-hnKrV80,112\nr1jgKSXPL84,131\nwZheb1gbe58,51\nnn-nEk5kpz0,132\nWrYDmyHlxqY,145\n__3ylv_JWqw,172\nWAwbrOJMKEc,123\nCPRh4gw_GmQ,118\n2TITAbyObTw,142\n33KUnZf841c,107\n_4lDASeWsFg,107\nWd7iSbGIDqs,96\nLwdMHOiN6ko,218\nhpliHwPiYYU,126\n89hCOgVa5LI,61\nd1lql0Z0e-E,117\n4vmjX0sQrIc,243\na2lb_3-fYFc,120\nTLsRWN6G77I,133\nE0wfFdGnwx0,131\nXPEWBEa8pqg,127\njWQ1ITS94cA,131\n2xujTq-ueyo,132\n2DkHvEZSBOg,160\nJhX_d4BCzhk,193\nHRrbt00Abv0,92\nH7GwaAh6G4o,166\nkItLDGtPMMI,95\nXHbdoO7uCkk,41\ndgGvAQ3kcs4,240\nti42vZVtgvY,117\nOm2UW4c_vqU,130\nKk6l301jwOk,78\nxkzNVP-tQ-0,123\n_wLWdDRIkis,99\nWvQTrzonQAs,153\nsJGWczuXzT8,130\nOvaNgegisKU,123\nioXW5Fg_q_g,139\nrAEv7dJC5Iw,133\nraVKed5rdgM,117\na-Z66uN97Ds,148\nQo91sVEacq0,133\nyXeBhFzqzfY,126\nVklQQrb9-4c,102\nbR2Uon5BWC0,133\n6G8ExBEJEMQ,179\nCgBeBag4ir0,122\nyEYUc9oIVD8,166\n2_iIEQ-hlKc,127\nRgHtBxOs4qw,165\nYDCHojBWEhg,131\nArMePKKjiSw,156\nopoVbcNO48o,132\nkEsfYG_bF-E,133\nD_5kpc0cUWk,133\ncs6MZqTBBC0,155\n_W1NRq6DekY,129\n-xSV3MoacUw,105\nxQi7ABaeCx0,130\nH2_tkNGWYKs,134\n3gDvO7H5iEA,203\n9K_4ZaMc1-4,124\nWcSLuxBdYJ8,69\nwmG3O9RvEaU,130\nMlD51EzRE7c,107\nkA_BtqogJNk,133\nwz29yiGSrB0,86\nfWBAKMYKPSc,123\nkYQkkpRXgP4,92\nKDQqlRIFcAQ,132\nY1IEtzj23ws,180\nmIIZqCaHUFI,99\nsiHzbnn1Bxw,119\n_cmX1kEbl4g,78\njZXHcvhr2p8,144\nLDsysmP_8yo,129\nTg3A7u83stA,155\n89g2af1Qw0I,222\nqkjpTwOa0GY,133\nb9KCMBBn0EI,132\nFypqAWaSTFU,127\nHhep61HLkIA,120\nOum7mEtv05g,98\niyCfFXxNtp8,131\nPXBBHe_SwSs,123\nWI5B7jLWZUc,111\np7rtU_AM1bE,132\nXnD8FsykE08,184\nqUqtwCfbjVw,111\nk-WW7ULn8RA,112\nKE0awhgSLmE,94\nHHFbltJSRxo,244\noKmBIC6X6Fs,129\ncrBqPflvzyQ,126\n6kdms5umbhA,130\nt69ZfcWPZFY,132\nmjo4d488_yE,131\nikfmhFpbWJk,131\np92CKGAeQUY,149\n6xNFwkWJug8,125\n0J_lTFS0ouM,124\ntk2vET4aFW8,125\nq3JlGPF4Ko8,124\nz3YKH7m0P4c,131\nNk4JsPf8xX4,133\neZWHAM2EG3o,136\nzMNUcNokvkU,109\nwUul0bIkS6g,143\n2_kQHIUwJMQ,133\n0JBU9hgQ_T0,133\nMPDs_ZJMc90,83\ngV4WFBjc01I,162\n7dqjg1TwbXs,122\niWGL8PRdM7E,90\n_dtNz4Te0Gw,132\nRt8Bfir3A4Y,165\nBEkjNAsakzA,105\nQRqXBsgnYok,104\ng3jImb6V4wI,110\nSehEKk2gcSc,123\nPBHZhxrhO4E,133\ncv62uysSvQE,132\nv1dTnLPL9gU,148\ng3WtvzmKCQQ,109\nz4edIxzhU80,105\nEpD-Hu37w5k,111\neSYNuO9GTU4,103\n8riyzFyGdVo,143\n65XtOM1UUGw,127\npE5pl9UG93I,131\ntJHkiRzd05M,147\naUdbjoT_DPQ,162\nDcmzHtokiMw,132\n_hX3fkzGrxk,131\n9u_76dg61ns,133\nQNrM2ICShJ4,87\nNT_hyjakJEI,97\nPLNOftwFMCA,102\nbCk9vtlnr34,94\n7ux7Dd18Rw4,133\nbh2ShAQ4lw0,120\nqh1KCsqqHFY,46\nWdD2JN10zpY,157\nQr9F2ij1jfI,133\nAlIvRiDePlY,140\nnCgg5XIxxjY,125\nCeYoUJYqAQc,133\nQL4mGMAjHBg,166\ngboXDP4L4b0,68\nQq8BlVT4KtY,180\nM9rOG76v0qY,222\nlh6Y9EU0wPQ,118\nBZH32FuXeF4,165\nnXoPEmh39ls,151\nHLxJLrrC5mE,130\n4GUk-1i2_Zo,126\nBS-6KavRfww,95\nUbr_vvAzvtA,143\n3SAElnJHcNc,130\nmAeceNqeNtQ,95\nd79o09D8cuo,129\n231TmvIPzQQ,126\nnDGZMXNYfF4,133\nSVGc5KwWRtM,130\nmvAkLCKYvwU,68\nu1Dxy8jBmYE,202\nI1CjDw569ss,129\n-GSZwG_s-8A,226\naYBTp7dH_XE,128\nliH8CRkWl3Q,110\nvjKoaNcefSU,86\nzJQujcyncBk,242\nuPqgue3xfPI,106\nY3vhSZJthJM,41\nRlnrFh_APX0,50\n65ltaw4SF38,119\ncRsKzW5Fszc,120\nIF-3dxM0df8,94\ngrlDMsiQ2Yc,181\n6svL10xXulQ,157\n6UwcLeAV31Q,126\ntTrgUKsKetY,153\nTt9v8E7Owxo,170\np-dnhwIY2G0,162\ne0fFbNV1ySY,108\nSN39w-Bnlgg,132\nDO_uVdE-KtE,169\nKye_x3QOSU0,132\n3lyx7UsMqmc,121\nOuLL5R3sb-w,130\nOinNCchV-xk,125\nxpSqCE8wCOU,95\nuGg9-5_0On4,119\n69aok-u1esc,123\nbLPMGLsf1c0,139\n4OW7CMS8PBQ,100\nkoX0RDUQHFs,130\nOcNjc5lfvpM,103\nB3UhbtdxYak,77\n0zLL_XdqxmQ,100\nf1Nh9DlkZ1w,78\nr6fpS6P16NI,130\nU4se5hr9O84,192\n3uAh-opNpDg,56\nJOkwDeIX1jg,102\niG4GVhx6oGc,126\nUdT8lSEVHZU,239\nyJlwArJRkmE,117\nYJhs9wqT7qE,119\nyBxr5ACMH5U,79\nraIdZiSZ970,132\nAU-paVv6zTk,148\nax0943uaZUk,134\n7WCR4dZt7Uw,133\nhkFSMV93VeA,148\nR8_HfT2ndyg,193\n3Lf57-rBck8,131\nbBeHRwjwKk8,136\nD7MotG6VP4I,177\nWK29KgQKP8s,45\nVwE2USOqfNg,132\n-oeFJvhvMik,153\nBL9xCIeznI8,138\nJ2yzM2nkylI,126\nyjEcOkwV2MU,133\n9gdhd-EerNw,140\nQC4b5Aoff1I,133\nmJbFV5i5ay8,169\nwirXvuRATiE,156\nV-eoS6kEyeg,202\n44-8o-jEDB0,149\nosfdb5BrLPI,128\n9O1-5MNRbKE,123\nDeYew_zLc_c,118\n21GAl13VImg,115\nF1cWO821sR4,193\nlAcZxn1DeHs,133\nlh3qxTgaa1Y,144\nNiAbqHXwclo,158\nuDqSQGOtixE,112\nvlZQj4OrTUM,134\nvU1_EJh6Atc,127\nmpDnD5Pp90I,134\noub2YWXPV6g,118\nhghczTVgav0,118\nYg7ulcF39e8,114\nwy1eWsC2sL8,147\n3VeXn9KEvSA,180\n6HH44dvOLJw,132\n_SQ4ogstDVE,148\nQdIw0bzY3oc,128\nRZa79QGDeo8,133\nChQG9RAkBiE,124\n6-L8WG51noY,65\njusrkQ2Zg8o,133\n9GagOWlFd-U,132\ne5Tb2YSkGh0,133\nhAxEEf5p3Bw,101\nrwwMn3Y6rUA,130\nSQ_rMhKlNFE,88\nOK77tkb6D0c,118\nlGlvNt-N140,132\naErChTKF6u4,107\nT2WbeZlfB9U,103\nogkh8GaUkBE,76\nBWDYUMTmHjU,99\nex_KPw6bVwQ,66\nyocBQlw_mCA,114\n2T8HUyL7zyA,101\n6bn4rdEiqg0,127\ntDWQvA6IhG8,86\ngKpPQ6SqHvQ,136\nLagYNt1QpT4,135\noPOqdtLP8XM,133\n3fIng0TRjXI,135\nQgdvS-09ygk,77\nxEqdoVnIFug,133\nuSvAfRaxSu4,129\nZe8Yt5V7T6A,101\nUwnVloaPX5Y,132\nJyxSm91eun4,128\n1XUHPC3s3rM,130\nCc1VTko8xJM,131\nJrGE2knBQsM,86\nlRVUsY_rcCo,128\nUVj_fFGA1Vw,137\njcTv-BEwabk,130\nZ-Hye1zg5IU,148\nlxQj06LN31A,88\naYbNb8eaTCY,133\nw1pIFZb7480,83\nchlwxs2dfVA,146\nW6udsqodIzo,55\nKzSRd6xpR04,146\npt-Ir7xS29Y,102\nDCzA_11fJZE,127\n5FQFrCgi8d8,96\nIC5DpSRkHps,94\njSabMn5UXKo,133\nkWPc7z2IMkA,132\n_f_1Or6RhiQ,117\nS3GG_HRE-D4,81\nm7xTvb-FAhQ,268\nIfwHIwPbHaI,132\nrfdF7LBQ8Ic,75\nOBPgy6HGL44,185\n1p8rDhTaegs,131\nW7xrlkbp0Hs,90\nEjp4AjvBuGw,146\nyUsoVGj1Ta0,216\nF2Y7FnlkuCg,175\nPh6hXpPbl0s,200\nBk2dqynryeY,133\n7L0xuL1thp4,92\nyAgMoKBGjT8,142\npcyg0H7EU3c,104\nmUzu93AhMuE,126\nJmcifAkvDn4,71\nTPQeRElxu2o,137\nfrTBOhJ0XHU,133\nbmJ4doOPxd8,116\nme7nuXZfXVM,88\ndzbazAbjk8w,136\nBi_YR5xkRx4,143\nmTYwZEhFwu0,145\n5938LUU-UAY,166\n6d37Zy95yDI,133\np12YiRom_Kw,102\nXk7IjHYLVH4,132\nX4_8ByCyrUA,133\n4dS7rsMy1-Y,91\nR5UsZ1yoTO8,70\nrfix60WuBxs,30\ndKleqAHv-Zw,101\n-bzOzD2QShQ,82\nAXsbWJC8VM4,180\nuvXwt5HNFLU,137\nCxkpSGI8L8o,158\njH2OKc8HPw8,124\nzRsPSJWe5sY,85\nfiziIJ6zTU8,129\nPrjcxNpxOos,74\n0vOulnDhH8A,133\na2gMY3TRx8s,125\nKggovdPWfpk,90\nMlSzWgyNsAI,89\n9BB9JHog-mg,161\n8tteR5k1l-A,123\ntgOwPRAbRdo,130\nJL9SnJbeZQw,133\nz0-rv13DDk8,132\nGxcZL7EM5Zo,68\nY52_WuvyKoo,107\n_lnD3Fh-kYg,123\nN-VlQuj49a4,129\nRiBRrKC_6pE,170\nabM-sq8s2_E,131\nFVEiScxUQyY,122\nqkGDaroLl_M,85\nDo4Z-aFeJMs,169\niaQdh-Hbp3I,69\niiUiiK9dMPg,97\nYY-l3FmgXKw,230\n03QHVB_n6N8,124\n8oDxIAKnWx4,168\nYBQ90wbJ7MY,123\n1vmnp7ghGPk,135\n0NNaypyly_o,30\nhLNZCf1nuRo,58\naPPMHA65HIg,129\nXITc_tguH2o,129\n5UKpz6Gsyu4,121\nq3a5wxfm13Q,130\n2xRlAbbcG0Y,129\nGYYuyvyr2HY,87\n9zugv1NdMj4,124\nE5zvQmTrzVU,119\n8ygfQ6oSNiU,137\nwO1s5eRplKs,133\nD7H61Y1yUr4,120\nijXLPE7SB3c,129\nZF4nYBty_FU,69\nuaDgwjVu8ik,174\nKw5qjJslyNU,121\nXpdrOUgweIA,165\n8I_QMs_Mjb0,99\nLIugIUixU_0,127\nMBfp_LuEfqA,150\n9hCHM2Oj1wQ,78\nH9TUkZR66o4,107\n2KwdvymU_ao,118\nE0TmjA1X2N4,71\nAGUMsaszNKM,110\ngLB9F9QftwM,132\npFm8RKAyU_Q,183\nJpvqpzU7eEc,133\nPK1aYqQgn-k,113\n_LAoGdcXG3Q,132\nKujzb5PT5ns,119\nAesICMoanS0,97\nLgmzj8eWK8M,97\noSpMQ0WtrSs,133\n7jtGp6xaVPU,117\nqA73y2w3WUc,113\nPi392aPIVHc,194\nG5sYuuD7ixA,112\nnNkIWyfowzA,77\nwosztGGnWt4,133\n9_AMztckp6k,198\nBJ1tNYfDZa4,194\nKwDvrv9byqM,107\ndEnoofPhBtE,163\nc6ik-AA87Uo,100\nkCtsoBRr1Z0,86\ngNEB3vRczjA,135\njKVDdMG37ig,108\nvY04JLQa1MQ,163\nroxNsu1YELE,128\nR2MxWZTrgxw,164\nbLmYWtqC8pc,74\nk-WrZcFJo2k,114\nc2tWZFAL5t4,170\nzpQFjWoRhGc,100\njF9GE50ioFo,190\ndPk7S_LiI1I,101\ngbEDjhLuPAs,131\nLWkbKaDHXbw,104\nCFCnY49pyII,154\nd-2r0wMjfrY,128\nAdyWIiYQv7E,122\n8r354VUktU8,111\nJAz7hBbOoc0,131\nE5VOPMr7SKg,108\nWh4oSUvSQTQ,133\np0Ov897MYiw,134\ngXHhy4c4UZw,123\nsR176VaCLXg,68\nsnTaSJk0n_Y,133\nhyXCJXsHX3A,90\nlTd2m2J2XmU,133\nQL9sZG6f5rQ,85\nOK_v02xShhs,76\nEghn9oMlSy0,128\nm-YWYdwcexU,128\nUvpLAMfYgJ8,152\noUxsU2oZ27s,174\nsO2RBLeWYyg,133\nzvgXyU1STYI,133\novQk7fd4_Co,133\nG6i3bDGOLB8,133\nBb2XlqE9OUg,96\n1daKtciMLiE,124\n4QsATC7VdUk,131\nxOCBpMs-9hY,75\nKxlEI-kTY2I,80\nsCJ_SlkCT_o,139\nNMOjCohQbXY,136\n5485fd0CtKw,133\n2J4gviivSJU,133\n1_vxyocjxg0,140\nwfbqJpn8fN8,131\nBHEe0PqpvNw,107\nBcRXmoGWHtQ,123\nDDb0S3nIfNA,112\n79HayHaaXDE,130\namGJwP2p7D8,132\nN_tNwz5Bxwk,133\ns-Sx_dMw8oA,124\ni4GeD9FWdG4,133\nEimQSagV_8k,132\na_aZ01raOoI,91\ntLiJueTgu44,133\nVCxGD8VH-TM,45\n9fQG9Zhv2_I,82\nczBTbtS1YpE,111\nOZNLJj4pJsw,202\n3pON6S9aDy4,32\nBITmqWGegUE,168\nQFQ4izzxtec,122\nqJ9YL7qMG80,87\nBWYNt1N6xWQ,230\nh44egWnbrrg,77\nZkCH653K2cc,127\nTO01P7dpKV4,147\nE_tzgBTGxEM,73\nDE71sZbjvbs,98\nWo3qdzlpPdg,62\nkCsm28_ULw4,87\np0CKoz0u6Eo,111\n70_b9ZEcxp0,81\n2ohNiVtAwJY,130\nsTu7aCTkp9g,108\nRtv_BhYXLh8,126\nuSuoZcrKq0I,132\nlD7Xo_FhL4s,92\nAo-ipKN7iQE,132\nlyu3QUjAFtw,110\nSi5R7-KZWFY,143\n2fWpPZaxmM8,77\n-ui9TwNrNEw,142\nx21gkEu5lKc,124\nZ6oeAdemFZw,99\nyY6EgYygsAg,120\nohnhJ6gyLhk,113\nRFAfyPXisjQ,141\nmZpiKdps530,154\nTlQ_qOWPTnE,91\n7FOk4bCAQhc,57\nBtdp-sC8MJI,121\nAx1Vgvp5Cls,126\nbWm1GC01kGo,192\n3eA0tlN-WMY,81\nOaZ30IajJ2w,73\nXwS5WsjPg9U,122\nmCVwWrfOT3s,122\nKI97hqN52Ik,158\nDToj3xM2b1E,132\n-kkP1Pvzvgs,109\nwzJObNk-flo,82\nYhdrJfDiIkM,88\n2fkfpdMG-KQ,124\nhJYfFD_MNoY,103\nrba9NiqG9PI,80\nzDRmwZxOJ4o,120\nnWRelGmpmxQ,85\nd7he8f2L_BE,126\nTv6tdiEMGaY,178\n31usxLUiuhs,131\nijueTjJrMQ0,101\n456l6TpeE1E,92\nnfGKHa_mn20,131\nAguptuYeDRU,194\n89uZslA-efY,118\nb2gz0vSh0J4,62\nkDFwUhn_1Ao,130\nPbgLbYd2zYI,123\nCe0zSR2ParE,81\nIXi_VrFakL0,141\n9PyNL2ahKwc,114\nsXatQewZKRw,104\ndm3xv5sosng,83\nbsaA903oxvc,173\nc9_46Iv_GGM,133\nLVKODpCrCpw,176\nO6frj4BOJJU,131\nHSH9SG55kBU,133\njWJqzIUntho,127\ntu0NflL0_9c,167\nnyMtN_aHC_8,130\nk1fiQFCN2Zs,180\nS8WazHAxJLM,120\n5F6pso8VBhc,133\nL9-FR2MUfrU,132\nnH40NtYdL-U,116\n60PDxhI6y4g,153\nRE6QfwhDMhw,102\nm5bPIty4Dww,80\ng_mjMjs_eFY,113\nOLBotH5Bki8,133\njTRa22j4OUk,86\nLS6oxPMMdas,132\ne-5SVm2NUe8,126\na5WAyc-EaNc,75\nQa8kCQQUjHM,131\nzwQRQ6SbyMk,40\ncaypUMEoKf8,96\nhh5iOitreQ8,157\ntHe6ar-X2cQ,116\n4QL9q2mwZXI,88\nYlRLfbONYgM,127\nwrYcEEv737c,119\nNl0BGD-SxS0,173\noepaVuuBAtA,133\nk6UQZv_ElZE,147\n4qHuiCLkYHc,136\n_j0KhXH6xLE,97\njtQcr7lJXB0,127\nouPU0xazha4,159\ndf-YzAnQJpU,223\nBOYsnywXTu8,84\nS01OvbVQhGc,115\nwwoxXiyWf7A,133\nQUTDoPuCUcg,130\npOQv_Ng3CaU,179\nyh17pzVY6BE,133\nKSheZC9C__s,132\nUw98q-YIFec,102\nDCM-sEpyh1Q,151\n0WuMU0zi02w,112\nH4dh0EmCQLg,120\nu-oetP_iX_I,102\nulwUkaKjgY0,131\nToK_9NLtr7M,146\nkHRSh7JOKxo,140\n2zGJ_oOECv4,68\nRzGyyYgXffQ,118\nfSNdh-3k6-g,161\nrthHSISkM7A,133\ncFZWNfXzFLU,248\ni1nbM1Gg5OI,103\nXp_xKQZigM0,125\niYG8WCULpNM,132\nM9WaDhm3bE0,92\n8x6RDkjZj8Y,131\n9VkmshlGEvE,101\nLcHtYOV0bVo,116\nkcDEHkSgpuw,102\neOdZMwIh1I8,130\n2NLGmRYLvsY,79\nIh-_ZmPZ1x8,155\nz9MEhN5rjmg,127\ndUCUs8EtHoM,133\nyx2giHzJ4-I,125\neFd0VyfLf1M,81\nK0uzT9bWryU,91\n"
  },
  {
    "path": "data/metadata/movie_info.csv",
    "content": "imdbid,genre,country\r\ntt0020629,\"['Drama', 'War']\",['USA']\r\ntt0020640,\"['Comedy', 'Musical']\",['USA']\r\ntt0021814,\"['Fantasy', 'Horror']\",['USA']\r\ntt0021884,\"['Drama', 'Horror', 'Sci-Fi']\",['USA']\r\ntt0022913,['Drama'],['USA']\r\ntt0023027,\"['Comedy', 'Musical', 'Romance']\",['USA']\r\ntt0023245,\"['Fantasy', 'Horror']\",['USA']\r\ntt0023969,\"['Comedy', 'Musical', 'War']\",['USA']\r\ntt0024184,\"['Comedy', 'Horror', 'Sci-Fi']\",['USA']\r\ntt0024216,\"['Adventure', 'Horror', 'Sci-Fi']\",['USA']\r\ntt0025316,\"['Comedy', 'Romance']\",['USA']\r\ntt0026138,\"['Drama', 'Horror', 'Sci-Fi']\",['USA']\r\ntt0026714,\"['Comedy', 'Fantasy', 'Romance']\",['USA']\r\ntt0029947,\"['Comedy', 'Family', 'Romance']\",['USA']\r\ntt0031381,\"['Drama', 'History', 'Romance']\",['USA']\r\ntt0031679,\"['Comedy', 'Drama']\",['USA']\r\ntt0031725,\"['Comedy', 'Romance']\",['USA']\r\ntt0031867,\"['Crime', 'Drama', 'Film-Noir']\",['USA']\r\ntt0032138,\"['Adventure', 'Family', 'Fantasy']\",['USA']\r\ntt0032599,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0032904,\"['Comedy', 'Romance']\",['USA']\r\ntt0032976,\"['Drama', 'Mystery', 'Romance']\",['USA']\r\ntt0033467,\"['Drama', 'Mystery']\",['USA']\r\ntt0033553,\"['Drama', 'Horror', 'Sci-Fi']\",['USA']\r\ntt0033804,\"['Comedy', 'Romance']\",['USA']\r\ntt0033870,\"['Film-Noir', 'Mystery']\",['USA']\r\ntt0034240,\"['Adventure', 'Comedy', 'Drama']\",['USA']\r\ntt0034398,['Horror'],['USA']\r\ntt0034583,\"['Drama', 'Romance', 'War']\",['USA']\r\ntt0034587,\"['Fantasy', 'Horror', 'Thriller']\",['USA']\r\ntt0035015,\"['Drama', 'Romance']\",['USA']\r\ntt0035140,\"['Drama', 'Romance']\",['USA']\r\ntt0035423,\"['Comedy', 'Fantasy', 'Romance']\",['USA']\r\ntt0036098,\"['Adventure', 'Family']\",['USA']\r\ntt0036613,\"['Comedy', 'Crime', 'Thriller']\",['USA']\r\ntt0036775,\"['Crime', 'Drama', 'Film-Noir']\",['USA']\r\ntt0036855,\"['Crime', 'Drama', 'Film-Noir']\",['USA']\r\ntt0037536,['Drama'],['USA']\r\ntt0037913,\"['Crime', 'Drama', 'Film-Noir']\",['USA']\r\ntt0038109,\"['Film-Noir', 'Mystery', 'Romance']\",['USA']\r\ntt0038650,\"['Drama', 'Family', 'Fantasy']\",['USA']\r\ntt0039628,\"['Comedy', 'Drama', 'Family']\",['USA']\r\ntt0040068,\"['Comedy', 'Fantasy', 'Horror']\",['USA']\r\ntt0040724,\"['Action', 'Adventure', 'Romance']\",['USA']\r\ntt0040823,\"['Drama', 'Film-Noir', 'Mystery']\",['USA']\r\ntt0040872,\"['Crime', 'Film-Noir', 'Romance']\",['USA']\r\ntt0040897,\"['Adventure', 'Drama', 'Western']\",\"['USA', 'Mexico']\"\r\ntt0041090,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0042192,['Drama'],['USA']\r\ntt0042208,\"['Crime', 'Drama', 'Film-Noir']\",['USA']\r\ntt0043014,\"['Drama', 'Film-Noir']\",['USA']\r\ntt0043338,\"['Drama', 'Film-Noir']\",['USA']\r\ntt0043456,\"['Drama', 'Sci-Fi']\",['USA']\r\ntt0044079,\"['Crime', 'Film-Noir', 'Thriller']\",['USA']\r\ntt0044081,['Drama'],['USA']\r\ntt0044509,\"['Drama', 'Romance']\",['USA']\r\ntt0044672,\"['Drama', 'Family', 'Romance']\",['USA']\r\ntt0044685,\"['Biography', 'Family', 'Musical']\",['USA']\r\ntt0044953,\"['Thriller', 'Western']\",['USA']\r\ntt0045152,\"['Comedy', 'Musical', 'Romance']\",['USA']\r\ntt0045920,\"['Horror', 'Sci-Fi']\",['USA']\r\ntt0046250,\"['Comedy', 'Romance']\",['USA']\r\ntt0046303,\"['Drama', 'Western']\",['USA']\r\ntt0046754,\"['Crime', 'Drama', 'Mystery']\",\"['Italy', 'USA']\"\r\ntt0046816,\"['Drama', 'War']\",['USA']\r\ntt0046876,\"['Horror', 'Sci-Fi']\",['USA']\r\ntt0046912,\"['Crime', 'Thriller']\",['USA']\r\ntt0047296,\"['Crime', 'Drama', 'Thriller']\",['USA']\r\ntt0047396,\"['Mystery', 'Thriller']\",['USA']\r\ntt0047472,\"['Comedy', 'Drama', 'Musical']\",['USA']\r\ntt0047795,\"['Action', 'Adventure', 'Comedy']\",['USA']\r\ntt0048028,['Drama'],['USA']\r\ntt0048254,\"['Crime', 'Drama', 'Film-Noir']\",['USA']\r\ntt0048356,\"['Drama', 'Romance']\",['USA']\r\ntt0048380,\"['Comedy', 'Drama', 'War']\",['USA']\r\ntt0048424,\"['Crime', 'Drama', 'Film-Noir']\",['USA']\r\ntt0048545,['Drama'],['USA']\r\ntt0048605,\"['Comedy', 'Romance']\",['USA']\r\ntt0048801,\"['Comedy', 'Crime', 'Romance']\",['USA']\r\ntt0049096,\"['Adventure', 'Comedy', 'Family']\",['USA']\r\ntt0049406,\"['Crime', 'Drama', 'Film-Noir']\",['USA']\r\ntt0049414,\"['Crime', 'Film-Noir', 'Mystery']\",['USA']\r\ntt0049730,\"['Adventure', 'Drama', 'Western']\",['USA']\r\ntt0049833,\"['Adventure', 'Drama']\",['USA']\r\ntt0049934,\"['Drama', 'Romance', 'War']\",\"['USA', 'Italy']\"\r\ntt0050083,['Drama'],['USA']\r\ntt0050212,\"['Adventure', 'Drama', 'War']\",\"['UK', 'USA']\"\r\ntt0050419,\"['Comedy', 'Musical', 'Romance']\",['USA']\r\ntt0050468,\"['Biography', 'Drama', 'Western']\",['USA']\r\ntt0050825,\"['Drama', 'War']\",['USA']\r\ntt0051036,\"['Drama', 'Film-Noir']\",['USA']\r\ntt0051201,\"['Crime', 'Drama', 'Film-Noir']\",['USA']\r\ntt0051364,\"['Drama', 'Romance', 'War']\",['UK']\r\ntt0051411,\"['Romance', 'Western']\",['USA']\r\ntt0051436,\"['Adventure', 'Drama', 'History']\",['USA']\r\ntt0051525,\"['Crime', 'Drama']\",['USA']\r\ntt0051745,\"['Comedy', 'Drama', 'Family']\",['USA']\r\ntt0051786,\"['Horror', 'Sci-Fi', 'Thriller']\",['USA']\r\ntt0051878,['Drama'],['USA']\r\ntt0052357,\"['Mystery', 'Romance', 'Thriller']\",['USA']\r\ntt0052564,\"['Adventure', 'Sci-Fi']\",['USA']\r\ntt0052618,\"['Adventure', 'Drama', 'History']\",['USA']\r\ntt0052832,\"['Drama', 'Romance']\",['USA']\r\ntt0052896,\"['Comedy', 'Drama']\",['USA']\r\ntt0053125,\"['Adventure', 'Mystery', 'Thriller']\",['USA']\r\ntt0053291,\"['Comedy', 'Music', 'Romance']\",['USA']\r\ntt0053604,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0053946,\"['Biography', 'Drama', 'History']\",['USA']\r\ntt0054047,\"['Action', 'Adventure', 'Western']\",['USA']\r\ntt0054135,\"['Comedy', 'Crime', 'Music']\",['USA']\r\ntt0054215,\"['Horror', 'Mystery', 'Thriller']\",['USA']\r\ntt0054331,\"['Adventure', 'Biography', 'Drama']\",['USA']\r\ntt0054428,\"['Drama', 'Romance', 'Western']\",['USA']\r\ntt0054698,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0054997,\"['Drama', 'Sport']\",['USA']\r\ntt0055031,\"['Drama', 'War']\",['USA']\r\ntt0055184,\"['Drama', 'Romance', 'Western']\",['USA']\r\ntt0055614,\"['Crime', 'Drama', 'Musical']\",['USA']\r\ntt0055706,['Comedy'],['USA']\r\ntt0055798,\"['Biography', 'Crime', 'Drama']\",['USA']\r\ntt0055871,\"['Drama', 'Thriller', 'War']\",['USA']\r\ntt0055928,\"['Action', 'Adventure', 'Thriller']\",['UK']\r\ntt0056172,\"['Adventure', 'Biography', 'Drama']\",['UK']\r\ntt0056193,\"['Crime', 'Drama', 'Romance']\",\"['UK', 'USA']\"\r\ntt0056197,\"['Action', 'Drama', 'History']\",['USA']\r\ntt0056217,\"['Drama', 'Western']\",['USA']\r\ntt0056218,\"['Drama', 'Thriller']\",['USA']\r\ntt0056241,\"['Biography', 'Drama']\",['USA']\r\ntt0056264,\"['Adventure', 'Drama', 'History']\",['USA']\r\ntt0056267,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0056592,\"['Crime', 'Drama']\",['USA']\r\ntt0056869,\"['Drama', 'Horror', 'Mystery']\",['USA']\r\ntt0056923,\"['Comedy', 'Mystery', 'Romance']\",['USA']\r\ntt0057012,['Comedy'],\"['UK', 'USA']\"\r\ntt0057076,\"['Action', 'Adventure', 'Thriller']\",['UK']\r\ntt0057115,\"['Adventure', 'Drama', 'History']\",['USA']\r\ntt0057187,\"['Comedy', 'Romance']\",['USA']\r\ntt0057193,\"['Action', 'Adventure', 'Comedy']\",['USA']\r\ntt0057251,['Drama'],['USA']\r\ntt0057413,\"['Comedy', 'Crime', 'Romance']\",['USA']\r\ntt0057449,\"['Comedy', 'Fantasy', 'Horror']\",['USA']\r\ntt0058150,\"['Action', 'Adventure', 'Thriller']\",['UK']\r\ntt0058461,\"['Drama', 'Western']\",\"['Italy', 'Spain', 'West Germany']\"\r\ntt0058586,\"['Comedy', 'Mystery']\",\"['UK', 'USA']\"\r\ntt0058672,\"['Adventure', 'Comedy', 'Crime']\",['USA']\r\ntt0059113,\"['Drama', 'Romance', 'War']\",\"['USA', 'Italy']\"\r\ntt0059124,\"['Comedy', 'Sci-Fi']\",['USA']\r\ntt0059245,\"['Biography', 'Drama', 'History']\",['USA']\r\ntt0059287,\"['Comedy', 'Musical']\",['USA']\r\ntt0059575,['Drama'],['USA']\r\ntt0059578,['Western'],\"['Italy', 'Spain', 'West Germany']\"\r\ntt0059742,\"['Biography', 'Drama', 'Family']\",['USA']\r\ntt0059800,\"['Action', 'Adventure', 'Thriller']\",['UK']\r\ntt0059803,\"['Drama', 'Western']\",['Mexico']\r\ntt0059825,\"['Thriller', 'War']\",\"['France', 'Italy', 'USA']\"\r\ntt0060086,\"['Comedy', 'Drama']\",['UK']\r\ntt0060196,['Western'],\"['Italy', 'Spain', 'West Germany']\"\r\ntt0060429,\"['Comedy', 'Musical', 'Romance']\",['USA']\r\ntt0060438,\"['Comedy', 'Musical']\",['USA']\r\ntt0060736,\"['Adventure', 'Drama', 'Thriller']\",\"['South Africa', 'USA']\"\r\ntt0060921,\"['Comedy', 'War']\",['USA']\r\ntt0061385,\"['Comedy', 'Romance']\",['USA']\r\ntt0061418,\"['Action', 'Biography', 'Crime']\",['USA']\r\ntt0061452,['Comedy'],\"['UK', 'USA']\"\r\ntt0061512,\"['Crime', 'Drama']\",['USA']\r\ntt0061735,\"['Comedy', 'Drama']\",['USA']\r\ntt0061747,\"['Drama', 'Western']\",['USA']\r\ntt0061791,\"['Comedy', 'Musical']\",['USA']\r\ntt0061809,\"['Biography', 'Crime', 'Drama']\",['USA']\r\ntt0061811,\"['Crime', 'Drama', 'Mystery']\",['USA']\r\ntt0062153,\"['Comedy', 'Sci-Fi', 'Thriller']\",['USA']\r\ntt0062512,\"['Action', 'Adventure', 'Thriller']\",['UK']\r\ntt0062622,\"['Adventure', 'Sci-Fi']\",\"['USA', 'UK']\"\r\ntt0062765,\"['Action', 'Crime', 'Thriller']\",['USA']\r\ntt0062803,\"['Adventure', 'Family', 'Fantasy']\",\"['UK', 'USA']\"\r\ntt0063350,['Horror'],['USA']\r\ntt0063356,\"['Comedy', 'Crime', 'Drama']\",['USA']\r\ntt0063374,['Comedy'],['USA']\r\ntt0063415,['Comedy'],['USA']\r\ntt0063442,\"['Adventure', 'Sci-Fi']\",['USA']\r\ntt0063518,\"['Drama', 'Romance']\",\"['UK', 'Italy']\"\r\ntt0063522,\"['Drama', 'Horror']\",['USA']\r\ntt0063688,\"['Crime', 'Drama', 'Romance']\",['USA']\r\ntt0063829,\"['Comedy', 'Family']\",['USA']\r\ntt0064045,\"['Action', 'Adventure', 'Comedy']\",['UK']\r\ntt0064115,\"['Biography', 'Crime', 'Drama']\",['USA']\r\ntt0064116,['Western'],\"['Italy', 'USA']\"\r\ntt0064276,\"['Adventure', 'Drama']\",['USA']\r\ntt0064381,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0064395,\"['Action', 'Western']\",['USA']\r\ntt0064505,\"['Action', 'Comedy', 'Crime']\",['UK']\r\ntt0064665,['Drama'],['USA']\r\ntt0064757,\"['Action', 'Adventure', 'Thriller']\",['UK']\r\ntt0065112,\"['Drama', 'Thriller']\",['USA']\r\ntt0065126,\"['Adventure', 'Drama', 'Western']\",['USA']\r\ntt0065214,\"['Action', 'Adventure', 'Western']\",['USA']\r\ntt0065446,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0065466,\"['Comedy', 'Drama', 'Music']\",['USA']\r\ntt0065528,\"['Comedy', 'Drama', 'War']\",['USA']\r\ntt0065724,['Drama'],['USA']\r\ntt0066011,\"['Drama', 'Romance']\",['USA']\r\ntt0066026,\"['Comedy', 'Drama', 'War']\",['USA']\r\ntt0066130,\"['Biography', 'Crime', 'Drama']\",['UK']\r\ntt0066181,\"['Comedy', 'Drama', 'Fantasy']\",['USA']\r\ntt0066206,\"['Biography', 'Drama', 'War']\",['USA']\r\ntt0066434,\"['Drama', 'Sci-Fi', 'Thriller']\",['USA']\r\ntt0066448,\"['Comedy', 'Western']\",['USA']\r\ntt0066995,\"['Action', 'Adventure', 'Thriller']\",['UK']\r\ntt0066999,\"['Action', 'Crime', 'Thriller']\",['USA']\r\ntt0067093,\"['Drama', 'Family', 'Musical']\",['USA']\r\ntt0067116,\"['Action', 'Crime', 'Drama']\",['USA']\r\ntt0067185,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0067328,\"['Drama', 'Romance']\",['USA']\r\ntt0067411,\"['Drama', 'Western']\",['USA']\r\ntt0067589,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0067741,\"['Action', 'Crime', 'Thriller']\",['USA']\r\ntt0067992,\"['Family', 'Fantasy', 'Musical']\",\"['USA', 'East Germany', 'West Germany', 'Belgium']\"\r\ntt0068245,\"['Adventure', 'Drama', 'Western']\",['USA']\r\ntt0068284,\"['Fantasy', 'Horror', 'Romance']\",['USA']\r\ntt0068309,\"['Crime', 'Drama', 'Romance']\",['USA']\r\ntt0068473,\"['Adventure', 'Drama', 'Thriller']\",['USA']\r\ntt0068646,\"['Crime', 'Drama']\",['USA']\r\ntt0068673,\"['Crime', 'Drama', 'Action']\",['USA']\r\ntt0068699,\"['Drama', 'Mystery', 'Western']\",['USA']\r\ntt0068762,\"['Adventure', 'Drama', 'Western']\",['USA']\r\ntt0068767,\"['Action', 'Drama', 'Romance']\",['Hong Kong']\r\ntt0068833,\"['Horror', 'Thriller']\",['USA']\r\ntt0068835,['Comedy'],['USA']\r\ntt0068897,\"['Action', 'Western']\",['USA']\r\ntt0068909,\"['Drama', 'Fantasy', 'Musical']\",\"['Italy', 'USA']\"\r\ntt0068931,\"['Action', 'Crime', 'Thriller']\",['USA']\r\ntt0068935,\"['Action', 'Adventure', 'Crime']\",['Hong Kong']\r\ntt0069097,\"['Comedy', 'Romance']\",['USA']\r\ntt0069113,\"['Action', 'Adventure', 'Drama']\",['USA']\r\ntt0069495,['Comedy'],['USA']\r\ntt0069704,\"['Comedy', 'Drama']\",['USA']\r\ntt0069897,\"['Action', 'Crime', 'Thriller']\",['USA']\r\ntt0069976,\"['Action', 'Biography', 'Crime']\",['USA']\r\ntt0069995,\"['Drama', 'Horror', 'Thriller']\",\"['UK', 'Italy']\"\r\ntt0070016,\"['Animation', 'Family', 'Musical']\",['USA']\r\ntt0070034,\"['Action', 'Crime', 'Drama']\",\"['Hong Kong', 'USA']\"\r\ntt0070047,['Horror'],['USA']\r\ntt0070328,\"['Action', 'Adventure', 'Thriller']\",['UK']\r\ntt0070334,\"['Comedy', 'Crime', 'Drama']\",['USA']\r\ntt0070355,\"['Action', 'Crime', 'Mystery']\",['USA']\r\ntt0070379,\"['Crime', 'Drama', 'Thriller']\",['USA']\r\ntt0070460,\"['Comedy', 'Drama', 'Romance']\",\"['France', 'Italy']\"\r\ntt0070510,\"['Comedy', 'Drama']\",['USA']\r\ntt0070653,\"['Action', 'Drama', 'Thriller']\",['USA']\r\ntt0070666,\"['Biography', 'Crime', 'Drama']\",\"['Italy', 'USA']\"\r\ntt0070735,\"['Comedy', 'Crime', 'Drama']\",['USA']\r\ntt0070814,\"['Adventure', 'Musical', 'Family']\",['USA']\r\ntt0070849,\"['Drama', 'Romance']\",\"['France', 'Italy']\"\r\ntt0070895,\"['Action', 'Biography', 'Crime']\",['USA']\r\ntt0070909,\"['Action', 'Sci-Fi', 'Thriller']\",['USA']\r\ntt0070915,\"['Action', 'Drama', 'Crime']\",['USA']\r\ntt0071230,\"['Comedy', 'Western']\",['USA']\r\ntt0071315,\"['Drama', 'Mystery', 'Thriller']\",['USA']\r\ntt0071360,\"['Drama', 'Mystery', 'Thriller']\",['USA']\r\ntt0071402,\"['Action', 'Crime', 'Drama']\",\"['USA', 'Canada']\"\r\ntt0071517,\"['Action', 'Crime', 'Thriller']\",['USA']\r\ntt0071562,\"['Crime', 'Drama']\",['USA']\r\ntt0071577,\"['Drama', 'Romance']\",['USA']\r\ntt0071675,['Horror'],['USA']\r\ntt0071706,\"['Action', 'Drama', 'Thriller']\",\"['UK', 'USA']\"\r\ntt0071746,\"['Biography', 'Drama']\",['USA']\r\ntt0071771,\"['Comedy', 'Crime', 'Drama']\",['USA']\r\ntt0071807,\"['Action', 'Adventure', 'Thriller']\",['UK']\r\ntt0071970,\"['Drama', 'Thriller']\",['USA']\r\ntt0072067,\"['Crime', 'Drama', 'Horror']\",['USA']\r\ntt0072081,\"['Comedy', 'Crime', 'Mystery']\",\"['UK', 'USA']\"\r\ntt0072251,\"['Action', 'Crime', 'Thriller']\",['USA']\r\ntt0072325,\"['Action', 'Crime', 'Thriller']\",['USA']\r\ntt0072848,\"['Drama', 'Thriller']\",['USA']\r\ntt0072890,\"['Biography', 'Crime', 'Drama']\",['USA']\r\ntt0073190,\"['Drama', 'Romance']\",['USA']\r\ntt0073195,\"['Adventure', 'Drama', 'Thriller']\",['USA']\r\ntt0073260,\"['Adventure', 'Fantasy']\",\"['UK', 'USA']\"\r\ntt0073440,\"['Comedy', 'Drama', 'Music']\",['USA']\r\ntt0073629,\"['Comedy', 'Musical']\",\"['UK', 'USA']\"\r\ntt0073747,\"['Horror', 'Mystery', 'Sci-Fi']\",['USA']\r\ntt0073802,\"['Mystery', 'Thriller']\",['USA']\r\ntt0074119,\"['Biography', 'Drama', 'History']\",['USA']\r\ntt0074174,\"['Comedy', 'Drama', 'Family']\",['USA']\r\ntt0074281,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0074285,['Horror'],['USA']\r\ntt0074559,\"['Sci-Fi', 'Thriller']\",['USA']\r\ntt0074751,\"['Adventure', 'Horror']\",['USA']\r\ntt0074777,\"['Drama', 'Romance']\",['USA']\r\ntt0074860,\"['Crime', 'Thriller']\",['USA']\r\ntt0075066,\"['Comedy', 'Crime']\",\"['UK', 'USA']\"\r\ntt0075148,\"['Drama', 'Sport']\",['USA']\r\ntt0075268,\"['Comedy', 'Drama']\",['USA']\r\ntt0075314,\"['Crime', 'Drama']\",['USA']\r\ntt0075686,\"['Comedy', 'Romance']\",['USA']\r\ntt0075765,\"['Adventure', 'Crime', 'Drama']\",['USA']\r\ntt0075860,\"['Drama', 'Sci-Fi']\",['USA']\r\ntt0076210,\"['Adventure', 'Fantasy', 'Horror']\",['USA']\r\ntt0076239,\"['Adventure', 'Comedy', 'Crime']\",['USA']\r\ntt0076489,\"['Comedy', 'Fantasy']\",['USA']\r\ntt0076666,\"['Drama', 'Music']\",['USA']\r\ntt0076723,\"['Comedy', 'Drama', 'Sport']\",['USA']\r\ntt0076729,\"['Action', 'Comedy']\",['USA']\r\ntt0076752,\"['Action', 'Adventure', 'Thriller']\",['UK']\r\ntt0077235,\"['Drama', 'Sport']\",['USA']\r\ntt0077288,['Comedy'],\"['France', 'Italy']\"\r\ntt0077294,\"['Action', 'Adventure', 'Drama']\",\"['USA', 'UK']\"\r\ntt0077416,\"['Drama', 'War']\",['USA']\r\ntt0077504,\"['Comedy', 'Drama']\",['USA']\r\ntt0077572,\"['Action', 'Drama', 'War']\",\"['UK', 'USA']\"\r\ntt0077594,\"['Action', 'Crime', 'Drama']\",\"['Hong Kong', 'USA']\"\r\ntt0077597,['Comedy'],['USA']\r\ntt0077621,\"['Comedy', 'Crime', 'Romance']\",['USA']\r\ntt0077631,\"['Musical', 'Romance']\",['USA']\r\ntt0077663,\"['Comedy', 'Fantasy', 'Romance']\",['USA']\r\ntt0077745,\"['Horror', 'Sci-Fi']\",['USA']\r\ntt0077766,\"['Adventure', 'Drama', 'Horror']\",['USA']\r\ntt0077838,\"['Documentary', 'Biography', 'Music']\",['USA']\r\ntt0077975,['Comedy'],['USA']\r\ntt0078024,\"['Drama', 'Romance']\",['USA']\r\ntt0078111,['Drama'],['USA']\r\ntt0078163,\"['Comedy', 'Crime', 'Mystery']\",\"['UK', 'USA']\"\r\ntt0078227,\"['Comedy', 'Romance', 'Sport']\",['USA']\r\ntt0078346,\"['Action', 'Adventure', 'Drama']\",\"['USA', 'UK', 'Canada', 'Switzerland']\"\r\ntt0078504,\"['Adventure', 'Family', 'Fantasy']\",['USA']\r\ntt0078723,\"['Action', 'Comedy', 'War']\",['USA']\r\ntt0078748,\"['Horror', 'Sci-Fi']\",\"['UK', 'USA']\"\r\ntt0078757,\"['Comedy', 'Romance']\",['USA']\r\ntt0078767,['Horror'],['USA']\r\ntt0078788,\"['Drama', 'Mystery', 'War']\",['USA']\r\ntt0078790,\"['Comedy', 'Family', 'Western']\",['USA']\r\ntt0078872,\"['Adventure', 'Family', 'Sport']\",['USA']\r\ntt0078902,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0079073,\"['Horror', 'Romance']\",['UK']\r\ntt0079239,['Drama'],['USA']\r\ntt0079240,\"['Adventure', 'Crime', 'Drama']\",['UK']\r\ntt0079261,\"['Comedy', 'Drama', 'Musical']\",\"['West Germany', 'USA']\"\r\ntt0079367,['Comedy'],['USA']\r\ntt0079417,['Drama'],['USA']\r\ntt0079501,\"['Action', 'Adventure', 'Sci-Fi']\",['Australia']\r\ntt0079522,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0079540,['Comedy'],['Canada']\r\ntt0079574,\"['Action', 'Adventure', 'Sci-Fi']\",\"['UK', 'France']\"\r\ntt0079592,\"['Mystery', 'Thriller']\",\"['UK', 'Canada']\"\r\ntt0079640,\"['Comedy', 'Drama', 'Sport']\",['USA']\r\ntt0079714,\"['Horror', 'Sci-Fi']\",['USA']\r\ntt0079817,\"['Drama', 'Sport']\",['USA']\r\ntt0079945,\"['Adventure', 'Mystery', 'Sci-Fi']\",['USA']\r\ntt0080120,\"['Action', 'Crime', 'Thriller']\",['USA']\r\ntt0080339,['Comedy'],['USA']\r\ntt0080365,\"['Crime', 'Drama', 'Mystery']\",['USA']\r\ntt0080388,\"['Crime', 'Drama', 'Romance']\",\"['France', 'Canada', 'USA']\"\r\ntt0080453,\"['Adventure', 'Drama', 'Romance']\",['USA']\r\ntt0080455,\"['Adventure', 'Comedy', 'Crime']\",['USA']\r\ntt0080487,\"['Comedy', 'Sport']\",['USA']\r\ntt0080661,\"['Mystery', 'Thriller']\",['USA']\r\ntt0080678,\"['Biography', 'Drama']\",\"['USA', 'UK']\"\r\ntt0080745,\"['Action', 'Adventure', 'Sci-Fi']\",['UK']\r\ntt0080761,\"['Horror', 'Mystery', 'Thriller']\",['USA']\r\ntt0080836,\"['Action', 'Biography', 'Sci-Fi']\",['USA']\r\ntt0080895,\"['Comedy', 'Crime']\",['USA']\r\ntt0081071,\"['Biography', 'Crime', 'Western']\",['USA']\r\ntt0081184,\"['Comedy', 'Horror', 'Thriller']\",['USA']\r\ntt0081283,['Drama'],['USA']\r\ntt0081353,\"['Adventure', 'Comedy', 'Family']\",['USA']\r\ntt0081398,\"['Biography', 'Drama', 'Sport']\",['USA']\r\ntt0081455,\"['Horror', 'Sci-Fi', 'Thriller']\",['Canada']\r\ntt0081505,\"['Drama', 'Horror']\",\"['UK', 'USA']\"\r\ntt0081562,\"['Comedy', 'Crime']\",['USA']\r\ntt0081573,\"['Action', 'Adventure', 'Sci-Fi']\",\"['USA', 'UK', 'Canada']\"\r\ntt0081609,\"['Action', 'Drama', 'Crime']\",\"['Soviet Union', 'France', 'Switzerland']\"\r\ntt0081696,\"['Drama', 'Romance', 'Western']\",['USA']\r\ntt0082010,\"['Comedy', 'Horror']\",\"['UK', 'USA']\"\r\ntt0082198,\"['Action', 'Adventure', 'Fantasy']\",\"['USA', 'Spain', 'Mexico']\"\r\ntt0082200,\"['Comedy', 'Romance']\",['USA']\r\ntt0082250,\"['Action', 'Crime', 'Drama']\",\"['USA', 'Canada']\"\r\ntt0082332,\"['Action', 'Crime', 'Drama']\",['USA']\r\ntt0082348,\"['Adventure', 'Drama', 'Fantasy']\",\"['USA', 'UK']\"\r\ntt0082382,\"['Comedy', 'Drama']\",['USA']\r\ntt0082398,\"['Action', 'Adventure', 'Thriller']\",['UK']\r\ntt0082416,\"['Drama', 'Romance']\",['UK']\r\ntt0082418,\"['Horror', 'Mystery', 'Thriller']\",['USA']\r\ntt0082432,\"['Adventure', 'Drama', 'History']\",['Australia']\r\ntt0082495,['Horror'],['USA']\r\ntt0082694,\"['Action', 'Adventure', 'Sci-Fi']\",['Australia']\r\ntt0082766,\"['Biography', 'Drama']\",['USA']\r\ntt0082782,\"['Horror', 'Mystery', 'Thriller']\",['Canada']\r\ntt0082846,['Drama'],\"['UK', 'USA']\"\r\ntt0082970,['Drama'],['USA']\r\ntt0082971,\"['Action', 'Adventure']\",['USA']\r\ntt0083131,\"['Comedy', 'War']\",['USA']\r\ntt0083511,\"['Action', 'Comedy', 'Crime']\",['USA']\r\ntt0083530,\"['Comedy', 'Sci-Fi']\",['USA']\r\ntt0083550,['Horror'],\"['Mexico', 'USA']\"\r\ntt0083629,['Horror'],['USA']\r\ntt0083642,\"['Comedy', 'Musical']\",['USA']\r\ntt0083658,\"['Action', 'Sci-Fi', 'Thriller']\",\"['USA', 'Hong Kong', 'UK']\"\r\ntt0083739,\"['Action', 'Crime', 'Drama']\",\"['Canada', 'USA']\"\r\ntt0083767,\"['Comedy', 'Fantasy', 'Horror']\",['USA']\r\ntt0083866,\"['Family', 'Sci-Fi']\",['USA']\r\ntt0083929,\"['Comedy', 'Drama']\",['USA']\r\ntt0083972,\"['Horror', 'Thriller']\",['USA']\r\ntt0083987,\"['Biography', 'Drama', 'History']\",\"['UK', 'India']\"\r\ntt0084021,\"['Comedy', 'Drama', 'Musical']\",['USA']\r\ntt0084191,\"['Sci-Fi', 'Thriller']\",['West Germany']\r\ntt0084434,\"['Drama', 'Romance']\",['USA']\r\ntt0084602,\"['Drama', 'Sport']\",\"['USA', 'Canada']\"\r\ntt0084649,\"['Animation', 'Adventure', 'Drama']\",['USA']\r\ntt0084707,\"['Drama', 'Romance']\",\"['UK', 'USA']\"\r\ntt0084726,\"['Action', 'Adventure', 'Sci-Fi']\",['USA']\r\ntt0084732,\"['Crime', 'Drama', 'Mystery']\",['USA']\r\ntt0084745,\"['Horror', 'Sci-Fi']\",['USA']\r\ntt0084787,\"['Horror', 'Mystery', 'Sci-Fi']\",['USA']\r\ntt0084814,\"['Comedy', 'Crime', 'Mystery']\",\"['UK', 'USA']\"\r\ntt0084855,['Drama'],['USA']\r\ntt0084917,\"['Comedy', 'Drama']\",['USA']\r\ntt0085127,\"['Action', 'Comedy']\",['Hong Kong']\r\ntt0085248,\"['Adventure', 'Family']\",['USA']\r\ntt0085333,\"['Horror', 'Thriller']\",['USA']\r\ntt0085382,\"['Horror', 'Thriller']\",['USA']\r\ntt0085384,\"['Comedy', 'Crime', 'Mystery']\",\"['UK', 'USA']\"\r\ntt0085407,\"['Drama', 'Horror', 'Sci-Fi']\",['Canada']\r\ntt0085470,['Comedy'],['USA']\r\ntt0085549,\"['Drama', 'Music', 'Romance']\",['USA']\r\ntt0085636,\"['Horror', 'Mystery', 'Sci-Fi']\",['USA']\r\ntt0085672,\"['Adventure', 'Fantasy']\",\"['Italy', 'USA']\"\r\ntt0085750,\"['Adventure', 'Horror', 'Thriller']\",['USA']\r\ntt0085811,\"['Action', 'Adventure', 'Fantasy']\",['UK']\r\ntt0085862,\"['Action', 'Crime', 'Drama']\",['USA']\r\ntt0085959,\"['Comedy', 'Musical']\",['UK']\r\ntt0085970,\"['Comedy', 'Drama']\",['USA']\r\ntt0086006,\"['Action', 'Adventure', 'Thriller']\",\"['UK', 'USA', 'West Germany']\"\r\ntt0086034,\"['Action', 'Adventure', 'Thriller']\",['UK']\r\ntt0086200,\"['Comedy', 'Crime', 'Drama']\",['USA']\r\ntt0086250,\"['Crime', 'Drama']\",['USA']\r\ntt0086393,\"['Action', 'Adventure', 'Comedy']\",\"['UK', 'USA']\"\r\ntt0086425,\"['Comedy', 'Drama']\",['USA']\r\ntt0086465,['Comedy'],['USA']\r\ntt0086508,\"['Action', 'Drama', 'Thriller']\",['USA']\r\ntt0086525,\"['Comedy', 'Romance']\",['USA']\r\ntt0086567,\"['Sci-Fi', 'Thriller']\",['USA']\r\ntt0086619,\"['Drama', 'Musical', 'Romance']\",\"['UK', 'USA']\"\r\ntt0086856,\"['Adventure', 'Comedy', 'Romance']\",['USA']\r\ntt0086873,\"['Comedy', 'Fantasy', 'Romance']\",['USA']\r\ntt0086946,\"['Drama', 'Music']\",['USA']\r\ntt0086960,\"['Action', 'Comedy', 'Crime']\",['USA']\r\ntt0086979,\"['Crime', 'Drama', 'Thriller']\",['USA']\r\ntt0086993,\"['Adventure', 'Drama', 'History']\",\"['UK', 'USA', 'New Zealand']\"\r\ntt0086998,\"['Comedy', 'Drama', 'Music']\",['USA']\r\ntt0086999,\"['Comedy', 'Drama', 'Musical']\",['USA']\r\ntt0087065,\"['Action', 'Adventure', 'Crime']\",['USA']\r\ntt0087078,\"['Action', 'Adventure', 'Fantasy']\",\"['USA', 'Mexico']\"\r\ntt0087182,\"['Action', 'Adventure', 'Sci-Fi']\",\"['USA', 'Mexico']\"\r\ntt0087231,\"['Biography', 'Crime', 'Drama']\",\"['UK', 'USA', 'Mexico']\"\r\ntt0087262,\"['Action', 'Horror', 'Sci-Fi']\",['USA']\r\ntt0087277,\"['Drama', 'Music', 'Romance']\",['USA']\r\ntt0087298,\"['Horror', 'Thriller']\",['USA']\r\ntt0087332,\"['Action', 'Comedy', 'Fantasy']\",['USA']\r\ntt0087363,\"['Comedy', 'Fantasy', 'Horror']\",['USA']\r\ntt0087365,\"['Adventure', 'Drama']\",\"['UK', 'USA']\"\r\ntt0087469,\"['Action', 'Adventure']\",['USA']\r\ntt0087538,\"['Action', 'Drama', 'Family']\",['USA']\r\ntt0087597,\"['Action', 'Adventure', 'Sci-Fi']\",['USA']\r\ntt0087727,\"['Action', 'Adventure', 'Drama']\",['USA']\r\ntt0087781,\"['Drama', 'Sport']\",['USA']\r\ntt0087800,['Horror'],['USA']\r\ntt0087803,\"['Drama', 'Sci-Fi']\",['UK']\r\ntt0087928,['Comedy'],['USA']\r\ntt0087985,\"['Action', 'Drama']\",['USA']\r\ntt0087995,\"['Action', 'Comedy', 'Crime']\",['USA']\r\ntt0088128,\"['Comedy', 'Romance']\",['USA']\r\ntt0088170,\"['Action', 'Adventure', 'Sci-Fi']\",['USA']\r\ntt0088172,\"['Romance', 'Sci-Fi']\",['USA']\r\ntt0088206,\"['Action', 'Adventure', 'Fantasy']\",\"['UK', 'USA']\"\r\ntt0088286,\"['Comedy', 'Music']\",\"['UK', 'USA']\"\r\ntt0088323,\"['Adventure', 'Drama', 'Family']\",['West Germany']\r\ntt0088680,\"['Comedy', 'Crime', 'Drama']\",['USA']\r\ntt0088707,\"['Drama', 'Sport']\",['USA']\r\ntt0088763,\"['Adventure', 'Comedy', 'Sci-Fi']\",['USA']\r\ntt0088846,\"['Drama', 'Sci-Fi']\",\"['UK', 'USA']\"\r\ntt0088847,\"['Comedy', 'Drama']\",['USA']\r\ntt0088850,['Comedy'],['USA']\r\ntt0088915,\"['Drama', 'Music', 'Musical']\",['USA']\r\ntt0088930,\"['Comedy', 'Crime', 'Mystery']\",['USA']\r\ntt0088939,['Drama'],['USA']\r\ntt0088944,\"['Action', 'Adventure', 'Thriller']\",['USA']\r\ntt0088960,\"['Comedy', 'Romance', 'Sci-Fi']\",['USA']\r\ntt0089017,\"['Comedy', 'Drama']\",['USA']\r\ntt0089118,\"['Action', 'Thriller']\",['USA']\r\ntt0089155,\"['Comedy', 'Crime', 'Mystery']\",['USA']\r\ntt0089175,\"['Horror', 'Thriller']\",['USA']\r\ntt0089200,\"['Comedy', 'Fantasy', 'Horror']\",['USA']\r\ntt0089218,\"['Adventure', 'Comedy', 'Family']\",['USA']\r\ntt0089348,\"['Action', 'Thriller']\",['USA']\r\ntt0089370,\"['Action', 'Adventure', 'Comedy']\",['USA']\r\ntt0089457,\"['Adventure', 'Comedy', 'Drama']\",\"['USA', 'Italy']\"\r\ntt0089469,\"['Adventure', 'Fantasy', 'Romance']\",['USA']\r\ntt0089489,\"['Action', 'Horror', 'Mystery']\",\"['UK', 'USA']\"\r\ntt0089504,['Comedy'],['USA']\r\ntt0089530,\"['Action', 'Adventure', 'Sci-Fi']\",['Australia']\r\ntt0089560,\"['Biography', 'Drama']\",['USA']\r\ntt0089572,\"['Crime', 'Thriller']\",['USA']\r\ntt0089730,\"['Comedy', 'Fantasy', 'Horror']\",['USA']\r\ntt0089755,\"['Biography', 'Drama', 'Romance']\",\"['USA', 'UK']\"\r\ntt0089791,\"['Adventure', 'Comedy', 'Family']\",['USA']\r\ntt0089822,['Comedy'],['USA']\r\ntt0089853,\"['Comedy', 'Fantasy', 'Romance']\",['USA']\r\ntt0089886,\"['Comedy', 'Romance', 'Sci-Fi']\",['USA']\r\ntt0089901,\"['Action', 'Adventure', 'Comedy']\",\"['USA', 'Mexico']\"\r\ntt0089907,\"['Comedy', 'Horror', 'Sci-Fi']\",['USA']\r\ntt0089927,\"['Drama', 'Sport']\",['USA']\r\ntt0089945,\"['Comedy', 'Western']\",\"['USA', 'Spain']\"\r\ntt0090022,\"['Action', 'Crime', 'Drama']\",['USA']\r\ntt0090056,\"['Adventure', 'Comedy']\",['USA']\r\ntt0090060,\"['Drama', 'Romance']\",['USA']\r\ntt0090142,\"['Comedy', 'Fantasy']\",['USA']\r\ntt0090264,\"['Action', 'Adventure', 'Thriller']\",['UK']\r\ntt0090305,\"['Comedy', 'Romance', 'Sci-Fi']\",['USA']\r\ntt0090329,\"['Crime', 'Drama', 'Romance']\",['USA']\r\ntt0090357,\"['Adventure', 'Fantasy', 'Mystery']\",['USA']\r\ntt0090555,\"['Action', 'Adventure', 'Comedy']\",['Australia']\r\ntt0090633,\"['Animation', 'Adventure', 'Comedy']\",['USA']\r\ntt0090685,\"['Comedy', 'Romance', 'Sport']\",['USA']\r\ntt0090713,\"['Comedy', 'Drama', 'Sport']\",['USA']\r\ntt0090728,\"['Action', 'Adventure', 'Comedy']\",['USA']\r\ntt0090756,\"['Drama', 'Mystery', 'Thriller']\",['USA']\r\ntt0090830,\"['Drama', 'Romance']\",['USA']\r\ntt0090837,\"['Comedy', 'Horror', 'Sci-Fi']\",['USA']\r\ntt0090856,['Comedy'],['USA']\r\ntt0090859,\"['Action', 'Crime', 'Thriller']\",\"['USA', 'Israel']\"\r\ntt0090927,\"['Action', 'Adventure', 'Drama']\",\"['USA', 'Israel']\"\r\ntt0091042,['Comedy'],['USA']\r\ntt0091055,\"['Action', 'Adventure', 'Comedy']\",['USA']\r\ntt0091080,\"['Horror', 'Thriller']\",['USA']\r\ntt0091129,\"['Action', 'Adventure', 'Comedy']\",['USA']\r\ntt0091159,\"['Comedy', 'Drama']\",['USA']\r\ntt0091167,\"['Comedy', 'Drama']\",['USA']\r\ntt0091188,\"['Comedy', 'Drama']\",['USA']\r\ntt0091217,\"['Drama', 'Sport']\",\"['UK', 'USA']\"\r\ntt0091225,\"['Action', 'Adventure', 'Comedy']\",['USA']\r\ntt0091244,\"['Drama', 'Fantasy', 'Romance']\",\"['France', 'Italy']\"\r\ntt0091306,\"['Comedy', 'Romance', 'Thriller']\",['USA']\r\ntt0091326,\"['Action', 'Family', 'Romance']\",['USA']\r\ntt0091431,\"['Action', 'Adventure', 'Comedy']\",\"['Hong Kong', 'Yugoslavia']\"\r\ntt0091530,\"['Adventure', 'Drama', 'History']\",\"['UK', 'France']\"\r\ntt0091541,['Comedy'],['USA']\r\ntt0091699,\"['Drama', 'Music']\",\"['Netherlands', 'Italy', 'USA']\"\r\ntt0091763,\"['Drama', 'War']\",\"['USA', 'UK']\"\r\ntt0091777,['Comedy'],\"['Canada', 'USA']\"\r\ntt0091778,['Horror'],['USA']\r\ntt0091790,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0091875,\"['Action', 'Comedy', 'Crime']\",['USA']\r\ntt0091934,\"['Adventure', 'Comedy', 'Crime']\",['UK']\r\ntt0091949,\"['Comedy', 'Family', 'Sci-Fi']\",['USA']\r\ntt0091983,\"['Comedy', 'Crime', 'Romance']\",['USA']\r\ntt0092003,\"['Action', 'Drama', 'Western']\",['USA']\r\ntt0092005,\"['Adventure', 'Drama']\",['USA']\r\ntt0092007,\"['Adventure', 'Comedy', 'Sci-Fi']\",['USA']\r\ntt0092076,\"['Comedy', 'Horror']\",['USA']\r\ntt0092086,\"['Comedy', 'Western']\",['USA']\r\ntt0092099,\"['Action', 'Drama']\",['USA']\r\ntt0092115,\"['Comedy', 'Fantasy', 'Horror']\",\"['USA', 'Italy']\"\r\ntt0092493,\"['Action', 'Adventure', 'Comedy']\",['Australia']\r\ntt0092563,\"['Horror', 'Mystery', 'Thriller']\",\"['UK', 'Canada', 'USA']\"\r\ntt0092605,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0092644,\"['Action', 'Comedy', 'Crime']\",['USA']\r\ntt0092654,\"['Comedy', 'Crime', 'Drama']\",['USA']\r\ntt0092675,\"['Action', 'Biography', 'Drama']\",['USA']\r\ntt0092699,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0092710,\"['Comedy', 'Crime']\",\"['Canada', 'USA']\"\r\ntt0092890,\"['Drama', 'Music', 'Romance']\",['USA']\r\ntt0092948,\"['Documentary', 'Comedy']\",['USA']\r\ntt0093010,\"['Drama', 'Thriller']\",['USA']\r\ntt0093075,\"['Fantasy', 'Horror']\",['Canada']\r\ntt0093091,\"['Comedy', 'Horror']\",['USA']\r\ntt0093137,\"['Action', 'Drama', 'Thriller']\",['USA']\r\ntt0093148,\"['Comedy', 'Family', 'Fantasy']\",['USA']\r\ntt0093164,\"['Action', 'Crime', 'Drama']\",['USA']\r\ntt0093200,['Comedy'],['USA']\r\ntt0093223,\"['Crime', 'Thriller']\",['USA']\r\ntt0093300,\"['Adventure', 'Horror', 'Thriller']\",['USA']\r\ntt0093409,\"['Action', 'Crime', 'Thriller']\",['USA']\r\ntt0093428,\"['Action', 'Adventure', 'Thriller']\",['UK']\r\ntt0093437,\"['Comedy', 'Horror']\",['USA']\r\ntt0093493,\"['Comedy', 'Fantasy', 'Romance']\",['USA']\r\ntt0093565,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0093605,\"['Action', 'Crime', 'Drama']\",['USA']\r\ntt0093640,\"['Action', 'Crime', 'Drama']\",['USA']\r\ntt0093660,\"['Drama', 'Thriller']\",['USA']\r\ntt0093693,\"['Comedy', 'Romance']\",['USA']\r\ntt0093713,['Drama'],\"['Denmark', 'Sweden']\"\r\ntt0093748,\"['Comedy', 'Drama']\",['USA']\r\ntt0093756,\"['Comedy', 'Crime']\",['USA']\r\ntt0093773,\"['Action', 'Adventure', 'Sci-Fi']\",\"['USA', 'Mexico']\"\r\ntt0093779,\"['Adventure', 'Family', 'Fantasy']\",['USA']\r\ntt0093822,\"['Comedy', 'Crime']\",['USA']\r\ntt0093870,\"['Action', 'Crime', 'Sci-Fi']\",['USA']\r\ntt0093886,\"['Comedy', 'Romance']\",['USA']\r\ntt0093999,\"['Family', 'Fantasy', 'Musical']\",['USA']\r\ntt0094006,\"['Drama', 'Romance']\",['USA']\r\ntt0094012,\"['Adventure', 'Comedy', 'Sci-Fi']\",['USA']\r\ntt0094027,\"['Biography', 'Drama']\",['USA']\r\ntt0094072,\"['Comedy', 'Romance']\",['USA']\r\ntt0094074,\"['Action', 'Adventure', 'Family']\",\"['UK', 'USA']\"\r\ntt0094118,\"['Comedy', 'Fantasy']\",['USA']\r\ntt0094138,['Comedy'],['USA']\r\ntt0094142,\"['Comedy', 'Crime', 'Thriller']\",['USA']\r\ntt0094226,\"['Crime', 'Drama', 'Thriller']\",['USA']\r\ntt0094291,\"['Crime', 'Drama']\",['USA']\r\ntt0094321,\"['Comedy', 'Music', 'Romance']\",['USA']\r\ntt0094608,\"['Crime', 'Drama']\",\"['Canada', 'USA']\"\r\ntt0094678,\"['Comedy', 'Romance']\",['USA']\r\ntt0094721,\"['Comedy', 'Fantasy']\",['USA']\r\ntt0094737,\"['Comedy', 'Drama', 'Fantasy']\",['USA']\r\ntt0094744,\"['Adventure', 'Comedy', 'Romance']\",['USA']\r\ntt0094783,\"['Drama', 'Romance']\",['USA']\r\ntt0094812,\"['Comedy', 'Romance', 'Sport']\",['USA']\r\ntt0094862,\"['Horror', 'Thriller']\",['USA']\r\ntt0094894,\"['Action', 'Crime', 'Drama']\",['USA']\r\ntt0094898,\"['Comedy', 'Romance']\",['USA']\r\ntt0094910,['Comedy'],['USA']\r\ntt0094921,\"['Comedy', 'Romance']\",['USA']\r\ntt0095016,\"['Action', 'Thriller']\",['USA']\r\ntt0095031,\"['Comedy', 'Crime']\",['USA']\r\ntt0095082,\"['Drama', 'History', 'Sport']\",['USA']\r\ntt0095159,\"['Comedy', 'Crime']\",\"['UK', 'USA']\"\r\ntt0095179,\"['Horror', 'Thriller']\",['USA']\r\ntt0095188,\"['Comedy', 'Drama']\",['USA']\r\ntt0095253,['Comedy'],['USA']\r\ntt0095348,\"['Action', 'Comedy', 'Crime']\",['USA']\r\ntt0095444,\"['Comedy', 'Horror', 'Sci-Fi']\",['USA']\r\ntt0095489,\"['Animation', 'Adventure', 'Drama']\",\"['USA', 'Ireland']\"\r\ntt0095497,['Drama'],\"['Canada', 'USA']\"\r\ntt0095560,\"['Adventure', 'Family', 'Fantasy']\",['USA']\r\ntt0095593,\"['Comedy', 'Crime', 'Romance']\",['USA']\r\ntt0095631,\"['Action', 'Comedy', 'Crime']\",['USA']\r\ntt0095647,\"['Crime', 'Drama', 'History']\",['USA']\r\ntt0095684,\"['Comedy', 'Horror', 'Romance']\",['USA']\r\ntt0095690,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0095705,\"['Comedy', 'Crime']\",['USA']\r\ntt0095765,['Drama'],\"['Italy', 'France']\"\r\ntt0095897,\"['Action', 'Crime', 'Mystery']\",['USA']\r\ntt0095925,\"['Fantasy', 'Horror']\",['USA']\r\ntt0095953,['Drama'],['USA']\r\ntt0095990,\"['Comedy', 'Horror', 'Sci-Fi']\",['USA']\r\ntt0096061,\"['Comedy', 'Drama', 'Fantasy']\",['USA']\r\ntt0096094,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0096101,\"['Comedy', 'Drama', 'Family']\",['USA']\r\ntt0096118,\"['Comedy', 'Horror']\",['USA']\r\ntt0096256,\"['Action', 'Horror', 'Sci-Fi']\",['USA']\r\ntt0096316,\"['Biography', 'Drama']\",['USA']\r\ntt0096320,\"['Comedy', 'Crime']\",['USA']\r\ntt0096463,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0096486,\"['Comedy', 'History']\",['Australia']\r\ntt0096487,\"['Action', 'Western']\",['USA']\r\ntt0096734,\"['Comedy', 'Mystery', 'Thriller']\",['USA']\r\ntt0096764,\"['Adventure', 'Comedy', 'Fantasy']\",\"['UK', 'West Germany']\"\r\ntt0096769,\"['Horror', 'Thriller']\",['USA']\r\ntt0096787,\"['Animation', 'Comedy', 'Drama']\",\"['Ireland', 'UK', 'USA']\"\r\ntt0096874,\"['Adventure', 'Comedy', 'Sci-Fi']\",['USA']\r\ntt0096895,\"['Action', 'Adventure']\",\"['USA', 'UK']\"\r\ntt0096933,\"['Action', 'Crime', 'Thriller']\",['USA']\r\ntt0096969,\"['Biography', 'Drama', 'War']\",['USA']\r\ntt0097138,\"['Action', 'Sci-Fi', 'Thriller']\",['USA']\r\ntt0097216,\"['Comedy', 'Drama']\",['USA']\r\ntt0097236,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0097239,['Drama'],['USA']\r\ntt0097240,\"['Crime', 'Drama']\",['USA']\r\ntt0097257,\"['Comedy', 'Musical', 'Romance']\",\"['UK', 'France', 'USA']\"\r\ntt0097322,\"['Comedy', 'Drama', 'Music']\",['USA']\r\ntt0097336,\"['Biography', 'Drama', 'History']\",\"['USA', 'Mexico']\"\r\ntt0097351,\"['Drama', 'Family', 'Fantasy']\",['USA']\r\ntt0097366,\"['Comedy', 'Crime', 'Mystery']\",['USA']\r\ntt0097388,\"['Adventure', 'Horror', 'Thriller']\",\"['USA', 'Canada']\"\r\ntt0097428,\"['Action', 'Comedy', 'Fantasy']\",['USA']\r\ntt0097441,\"['Biography', 'Drama', 'History']\",['USA']\r\ntt0097481,\"['Comedy', 'Crime', 'Drama']\",['USA']\r\ntt0097499,\"['Action', 'Biography', 'Drama']\",['UK']\r\ntt0097500,\"['Comedy', 'Crime', 'Mystery']\",['USA']\r\ntt0097576,\"['Action', 'Adventure']\",['USA']\r\ntt0097613,\"['Action', 'Crime', 'Mystery']\",['USA']\r\ntt0097647,\"['Action', 'Drama', 'Family']\",['USA']\r\ntt0097659,\"['Action', 'Sport', 'Thriller']\",['USA']\r\ntt0097733,\"['Action', 'Crime', 'Thriller']\",['USA']\r\ntt0097737,\"['Adventure', 'Horror', 'Mystery']\",\"['USA', 'Italy']\"\r\ntt0097742,\"['Action', 'Adventure', 'Thriller']\",\"['UK', 'Mexico', 'USA']\"\r\ntt0097757,\"['Animation', 'Family', 'Fantasy']\",['USA']\r\ntt0097758,\"['Adventure', 'Comedy', 'Family']\",['USA']\r\ntt0097778,['Comedy'],['USA']\r\ntt0097815,\"['Comedy', 'Sport']\",['USA']\r\ntt0097937,\"['Biography', 'Drama']\",\"['Ireland', 'UK']\"\r\ntt0097958,['Comedy'],['USA']\r\ntt0098042,\"['Comedy', 'Drama', 'Thriller']\",['USA']\r\ntt0098067,\"['Comedy', 'Drama']\",['USA']\r\ntt0098084,\"['Horror', 'Thriller']\",['USA']\r\ntt0098090,\"['Drama', 'Horror', 'Music']\",\"['USA', 'UK', 'Hungary']\"\r\ntt0098141,\"['Action', 'Crime', 'Drama']\",\"['Australia', 'USA']\"\r\ntt0098206,\"['Action', 'Thriller']\",['USA']\r\ntt0098258,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0098309,['Comedy'],['USA']\r\ntt0098382,\"['Action', 'Adventure', 'Fantasy']\",['USA']\r\ntt0098384,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0098453,\"['Comedy', 'Fantasy', 'Romance']\",['USA']\r\ntt0098546,\"['Comedy', 'Drama']\",['USA']\r\ntt0098554,['Comedy'],['USA']\r\ntt0098577,\"['Comedy', 'Horror']\",['USA']\r\ntt0098621,\"['Comedy', 'Romance']\",['USA']\r\ntt0098625,\"['Comedy', 'Crime']\",['USA']\r\ntt0098627,\"['Adventure', 'Comedy', 'Crime']\",['USA']\r\ntt0098635,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0098994,\"['Crime', 'Drama', 'Mystery']\",['USA']\r\ntt0099044,\"['Action', 'Comedy', 'Crime']\",['USA']\r\ntt0099077,\"['Biography', 'Drama']\",['USA']\r\ntt0099088,\"['Adventure', 'Comedy', 'Sci-Fi']\",['USA']\r\ntt0099141,\"['Action', 'Comedy']\",['USA']\r\ntt0099180,\"['Comedy', 'Horror', 'Sci-Fi']\",['USA']\r\ntt0099204,\"['Comedy', 'Crime']\",['USA']\r\ntt0099253,\"['Horror', 'Thriller']\",['USA']\r\ntt0099329,\"['Comedy', 'Musical']\",['USA']\r\ntt0099348,\"['Adventure', 'Drama', 'Western']\",\"['USA', 'UK']\"\r\ntt0099365,\"['Action', 'Sci-Fi', 'Thriller']\",['USA']\r\ntt0099371,\"['Action', 'Drama', 'Sport']\",['USA']\r\ntt0099399,\"['Action', 'Adventure', 'Crime']\",['USA']\r\ntt0099423,\"['Action', 'Thriller']\",['USA']\r\ntt0099487,\"['Drama', 'Fantasy', 'Romance']\",['USA']\r\ntt0099558,\"['Action', 'Adventure', 'Comedy']\",['Hong Kong']\r\ntt0099582,\"['Drama', 'Horror', 'Sci-Fi']\",['USA']\r\ntt0099587,\"['Action', 'Drama', 'Thriller']\",['USA']\r\ntt0099653,\"['Drama', 'Fantasy', 'Romance']\",['USA']\r\ntt0099674,\"['Crime', 'Drama']\",['USA']\r\ntt0099703,\"['Crime', 'Drama', 'Thriller']\",\"['USA', 'Canada']\"\r\ntt0099726,['Drama'],\"['USA', 'UK', 'France']\"\r\ntt0099785,\"['Comedy', 'Family']\",['USA']\r\ntt0099797,\"['Crime', 'Drama', 'Romance']\",['USA']\r\ntt0099810,\"['Action', 'Adventure', 'Thriller']\",['USA']\r\ntt0099850,\"['Crime', 'Drama', 'Thriller']\",\"['USA', 'Canada']\"\r\ntt0099938,\"['Comedy', 'Crime']\",['USA']\r\ntt0100054,\"['Adventure', 'Drama', 'Thriller']\",['USA']\r\ntt0100107,\"['Crime', 'Horror', 'Action']\",['USA']\r\ntt0100114,\"['Action', 'Adventure', 'Crime']\",['USA']\r\ntt0100133,\"['Action', 'Drama', 'War']\",\"['UK', 'Japan', 'USA']\"\r\ntt0100135,\"['Action', 'Comedy', 'Crime']\",['USA']\r\ntt0100157,\"['Drama', 'Thriller']\",['USA']\r\ntt0100196,\"['Adventure', 'Drama', 'History']\",['USA']\r\ntt0100232,\"['Action', 'Adventure', 'Thriller']\",['USA']\r\ntt0100258,['Horror'],['USA']\r\ntt0100301,['Comedy'],['USA']\r\ntt0100403,\"['Action', 'Horror', 'Sci-Fi']\",['USA']\r\ntt0100486,\"['Biography', 'Drama', 'Mystery']\",\"['USA', 'Japan', 'UK']\"\r\ntt0100502,\"['Action', 'Crime', 'Sci-Fi']\",['USA']\r\ntt0100507,\"['Drama', 'Sport']\",['USA']\r\ntt0100519,\"['Comedy', 'Drama']\",\"['UK', 'USA']\"\r\ntt0100530,\"['Drama', 'Romance', 'Thriller']\",['USA']\r\ntt0100680,\"['Drama', 'Romance']\",\"['USA', 'Canada']\"\r\ntt0100740,\"['Comedy', 'Fantasy', 'Horror']\",['USA']\r\ntt0100814,\"['Comedy', 'Horror']\",['USA']\r\ntt0100828,\"['Crime', 'Drama', 'Mystery']\",['USA']\r\ntt0100935,\"['Comedy', 'Crime', 'Drama']\",['USA']\r\ntt0100944,\"['Adventure', 'Comedy', 'Family']\",\"['UK', 'USA']\"\r\ntt0101272,\"['Comedy', 'Fantasy']\",['USA']\r\ntt0101301,\"['Comedy', 'Family', 'Romance']\",['USA']\r\ntt0101318,\"['Drama', 'Romance']\",['France']\r\ntt0101329,\"['Animation', 'Adventure', 'Family']\",['USA']\r\ntt0101371,\"['Drama', 'Comedy']\",['USA']\r\ntt0101393,\"['Crime', 'Drama', 'Mystery']\",['USA']\r\ntt0101410,\"['Comedy', 'Drama', 'Thriller']\",\"['USA', 'UK']\"\r\ntt0101452,\"['Adventure', 'Comedy', 'Fantasy']\",['USA']\r\ntt0101507,\"['Crime', 'Drama']\",['USA']\r\ntt0101523,\"['Comedy', 'Fantasy', 'Romance']\",['USA']\r\ntt0101540,\"['Crime', 'Thriller']\",['USA']\r\ntt0101587,['Comedy'],['USA']\r\ntt0101615,\"['Comedy', 'Drama', 'Music']\",['USA']\r\ntt0101625,\"['Comedy', 'Crime', 'Mystery']\",\"['Germany', 'USA']\"\r\ntt0101635,\"['Comedy', 'Drama', 'Family']\",['USA']\r\ntt0101698,\"['Comedy', 'Drama', 'Fantasy']\",['USA']\r\ntt0101701,\"['Comedy', 'Fantasy']\",['USA']\r\ntt0101745,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0101764,\"['Action', 'Crime']\",['USA']\r\ntt0101846,\"['Action', 'Thriller']\",['USA']\r\ntt0101889,\"['Comedy', 'Drama', 'Fantasy']\",['USA']\r\ntt0101912,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0101917,\"['Fantasy', 'Horror']\",['USA']\r\ntt0101921,['Drama'],['USA']\r\ntt0101984,['Drama'],['USA']\r\ntt0102005,\"['Action', 'Crime', 'Drama']\",['USA']\r\ntt0102011,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0102057,\"['Adventure', 'Comedy', 'Family']\",['USA']\r\ntt0102059,\"['Action', 'Comedy']\",['USA']\r\ntt0102103,\"['Biography', 'Comedy', 'Music']\",\"['UK', 'France']\"\r\ntt0102138,\"['Drama', 'History', 'Thriller']\",\"['France', 'USA']\"\r\ntt0102175,\"['Drama', 'Romance']\",['USA']\r\ntt0102266,\"['Action', 'Comedy', 'Crime']\",['USA']\r\ntt0102303,['Comedy'],['USA']\r\ntt0102316,['Drama'],['USA']\r\ntt0102370,\"['Documentary', 'Music']\",['USA']\r\ntt0102388,\"['Drama', 'Romance']\",['USA']\r\ntt0102395,\"['Comedy', 'Fantasy', 'Romance']\",['USA']\r\ntt0102492,\"['Comedy', 'Drama', 'Family']\",['USA']\r\ntt0102510,\"['Comedy', 'Crime']\",['USA']\r\ntt0102517,\"['Comedy', 'Sport']\",['USA']\r\ntt0102526,\"['Action', 'Crime', 'Drama']\",['USA']\r\ntt0102555,\"['Drama', 'Thriller']\",['USA']\r\ntt0102744,\"['Action', 'Adventure', 'Drama']\",\"['Australia', 'USA']\"\r\ntt0102749,\"['Comedy', 'Crime']\",\"['UK', 'USA']\"\r\ntt0102753,['Drama'],['USA']\r\ntt0102768,\"['Drama', 'Romance']\",['USA']\r\ntt0102798,\"['Action', 'Adventure', 'Drama']\",\"['USA', 'UK']\"\r\ntt0102915,\"['Action', 'Comedy', 'Crime']\",['USA']\r\ntt0102926,\"['Crime', 'Drama', 'Thriller']\",['USA']\r\ntt0102951,\"['Comedy', 'Romance']\",['USA']\r\ntt0102960,\"['Drama', 'Horror', 'Thriller']\",['USA']\r\ntt0102975,\"['Action', 'Adventure', 'Sci-Fi']\",['USA']\r\ntt0103074,\"['Adventure', 'Crime', 'Drama']\",\"['USA', 'UK', 'France']\"\r\ntt0103596,\"['Action', 'Comedy', 'Family']\",['USA']\r\ntt0103644,\"['Action', 'Horror', 'Sci-Fi']\",['USA']\r\ntt0103759,\"['Crime', 'Drama', 'Thriller']\",['USA']\r\ntt0103776,\"['Action', 'Crime', 'Fantasy']\",\"['USA', 'UK']\"\r\ntt0103786,\"['Comedy', 'Drama', 'Family']\",['USA']\r\ntt0103850,\"['Comedy', 'Drama']\",\"['USA', 'UK']\"\r\ntt0103859,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0103873,\"['Comedy', 'Horror']\",['New Zealand']\r\ntt0103874,['Horror'],['USA']\r\ntt0103919,\"['Horror', 'Thriller']\",\"['USA', 'UK']\"\r\ntt0103956,\"['Horror', 'Thriller']\",\"['UK', 'USA']\"\r\ntt0103994,\"['Drama', 'Romance']\",['Mexico']\r\ntt0104009,\"['Animation', 'Comedy', 'Fantasy']\",['USA']\r\ntt0104036,\"['Crime', 'Drama', 'Romance']\",\"['UK', 'Japan', 'USA']\"\r\ntt0104040,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0104070,\"['Comedy', 'Fantasy', 'Horror']\",['USA']\r\ntt0104107,\"['Drama', 'Sport']\",['USA']\r\ntt0104231,\"['Adventure', 'Drama', 'Romance']\",['USA']\r\ntt0104257,\"['Drama', 'Thriller']\",['USA']\r\ntt0104265,\"['Drama', 'Thriller']\",['USA']\r\ntt0104348,\"['Crime', 'Drama', 'Mystery']\",['USA']\r\ntt0104377,\"['Crime', 'Drama', 'Romance']\",['USA']\r\ntt0104409,['Horror'],['USA']\r\ntt0104427,\"['Biography', 'Crime', 'Drama']\",['USA']\r\ntt0104431,\"['Adventure', 'Comedy', 'Crime']\",['USA']\r\ntt0104438,\"['Comedy', 'Romance', 'Thriller']\",['USA']\r\ntt0104558,\"['Action', 'Comedy', 'Crime']\",['Hong Kong']\r\ntt0104567,\"['Comedy', 'Drama', 'Music']\",\"['Switzerland', 'France', 'USA']\"\r\ntt0104573,\"['Action', 'Crime', 'Drama']\",\"['USA', 'UK']\"\r\ntt0104691,\"['Action', 'Adventure', 'Drama']\",['USA']\r\ntt0104694,\"['Comedy', 'Drama', 'Family']\",['USA']\r\ntt0104695,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0104714,\"['Action', 'Crime', 'Thriller']\",['USA']\r\ntt0104765,['Drama'],['USA']\r\ntt0104808,\"['Action', 'Horror']\",['USA']\r\ntt0104815,\"['Action', 'Crime', 'Thriller']\",\"['Mexico', 'USA']\"\r\ntt0104952,\"['Comedy', 'Crime']\",['USA']\r\ntt0105046,\"['Drama', 'Western']\",['USA']\r\ntt0105112,\"['Action', 'Thriller']\",['USA']\r\ntt0105121,\"['Comedy', 'Horror', 'Mystery']\",['USA']\r\ntt0105128,\"['Fantasy', 'Horror']\",['USA']\r\ntt0105236,\"['Crime', 'Drama', 'Thriller']\",['USA']\r\ntt0105265,['Drama'],['USA']\r\ntt0105323,['Drama'],['USA']\r\ntt0105327,['Drama'],['USA']\r\ntt0105414,\"['Drama', 'Thriller']\",['USA']\r\ntt0105435,\"['Comedy', 'Crime', 'Drama']\",['USA']\r\ntt0105488,\"['Comedy', 'Drama', 'Music']\",\"['Australia', 'UK']\"\r\ntt0105690,\"['Action', 'Thriller']\",\"['France', 'USA']\"\r\ntt0105695,\"['Drama', 'Western']\",['USA']\r\ntt0105698,\"['Action', 'Sci-Fi']\",['USA']\r\ntt0105793,\"['Comedy', 'Music']\",['USA']\r\ntt0105812,\"['Comedy', 'Drama', 'Sport']\",['USA']\r\ntt0106220,\"['Comedy', 'Fantasy']\",['USA']\r\ntt0106308,\"['Comedy', 'Horror']\",['USA']\r\ntt0106332,\"['Drama', 'Music', 'Romance']\",\"['China', 'Hong Kong']\"\r\ntt0106364,\"['Animation', 'Action', 'Adventure']\",['USA']\r\ntt0106379,\"['Comedy', 'Drama']\",\"['UK', 'Japan']\"\r\ntt0106387,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0106452,\"['Horror', 'Sci-Fi']\",['USA']\r\ntt0106455,\"['Action', 'Crime', 'Drama']\",\"['USA', 'France']\"\r\ntt0106598,\"['Comedy', 'Sci-Fi']\",['USA']\r\ntt0106664,\"['Horror', 'Mystery', 'Thriller']\",['USA']\r\ntt0106673,\"['Comedy', 'Romance']\",['USA']\r\ntt0106677,['Comedy'],['USA']\r\ntt0106701,\"['Comedy', 'Family']\",['USA']\r\ntt0106770,\"['Action', 'Biography', 'Drama']\",['USA']\r\ntt0106856,\"['Crime', 'Drama', 'Thriller']\",\"['France', 'USA']\"\r\ntt0106873,\"['Comedy', 'Crime', 'Thriller']\",['USA']\r\ntt0106912,\"['Biography', 'Drama', 'Fantasy']\",['USA']\r\ntt0106918,\"['Drama', 'Mystery', 'Thriller']\",['USA']\r\ntt0107034,\"['Drama', 'Thriller']\",['USA']\r\ntt0107048,\"['Comedy', 'Fantasy', 'Romance']\",['USA']\r\ntt0107050,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0107076,\"['Action', 'Adventure', 'Drama']\",['USA']\r\ntt0107144,\"['Action', 'Comedy']\",['USA']\r\ntt0107178,\"['Crime', 'Drama', 'History']\",['USA']\r\ntt0107206,\"['Action', 'Crime', 'Drama']\",['USA']\r\ntt0107211,\"['Drama', 'Romance']\",['USA']\r\ntt0107290,\"['Action', 'Adventure', 'Sci-Fi']\",['USA']\r\ntt0107302,\"['Crime', 'Drama', 'Thriller']\",['USA']\r\ntt0107362,\"['Action', 'Adventure', 'Comedy']\",['USA']\r\ntt0107387,\"['Comedy', 'Fantasy', 'Horror']\",['USA']\r\ntt0107426,['Drama'],\"['France', 'Liechtenstein', 'UK']\"\r\ntt0107492,['Comedy'],['USA']\r\ntt0107614,\"['Comedy', 'Drama', 'Family']\",['USA']\r\ntt0107616,\"['Comedy', 'Drama', 'Romance']\",\"['UK', 'USA']\"\r\ntt0107818,['Drama'],['USA']\r\ntt0107822,\"['Drama', 'Music', 'Romance']\",\"['New Zealand', 'Australia', 'France']\"\r\ntt0107863,['Western'],\"['UK', 'USA', 'Netherlands']\"\r\ntt0107943,\"['Drama', 'Romance']\",\"['USA', 'UK']\"\r\ntt0107977,\"['Adventure', 'Comedy', 'Musical']\",\"['France', 'USA']\"\r\ntt0107983,\"['Crime', 'Drama', 'Romance']\",\"['UK', 'USA']\"\r\ntt0108002,\"['Biography', 'Drama', 'Sport']\",['USA']\r\ntt0108026,['Drama'],['USA']\r\ntt0108052,\"['Biography', 'Drama', 'History']\",['USA']\r\ntt0108065,\"['Biography', 'Drama']\",['USA']\r\ntt0108071,\"['Drama', 'Family', 'Fantasy']\",\"['UK', 'USA']\"\r\ntt0108148,\"['Action', 'Crime', 'Drama']\",['Hong Kong']\r\ntt0108149,\"['Comedy', 'Drama', 'Mystery']\",['USA']\r\ntt0108160,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0108162,\"['Drama', 'Thriller']\",['USA']\r\ntt0108174,\"['Comedy', 'Romance']\",['USA']\r\ntt0108187,\"['Comedy', 'Crime']\",\"['Italy', 'USA']\"\r\ntt0108525,\"['Comedy', 'Music']\",['USA']\r\ntt0108550,['Drama'],['USA']\r\ntt0109045,\"['Comedy', 'Music']\",['Australia']\r\ntt0109120,\"['Adventure', 'Drama', 'Family']\",['USA']\r\ntt0109254,\"['Action', 'Comedy', 'Crime']\",['USA']\r\ntt0109279,\"['Adventure', 'Drama', 'Family']\",\"['USA', 'UK']\"\r\ntt0109288,\"['Comedy', 'Action', 'Crime']\",['USA']\r\ntt0109305,\"['Drama', 'Sport']\",['USA']\r\ntt0109340,['Drama'],['UK']\r\ntt0109370,['Comedy'],\"['USA', 'Canada']\"\r\ntt0109444,\"['Action', 'Crime', 'Drama']\",\"['USA', 'Mexico']\"\r\ntt0109445,['Comedy'],['USA']\r\ntt0109447,['Comedy'],['USA']\r\ntt0109506,\"['Action', 'Drama', 'Fantasy']\",['USA']\r\ntt0109676,\"['Action', 'Adventure', 'Thriller']\",['USA']\r\ntt0109686,['Comedy'],['USA']\r\ntt0109830,\"['Drama', 'Romance']\",['USA']\r\ntt0109831,\"['Comedy', 'Drama', 'Romance']\",['UK']\r\ntt0109835,\"['Biography', 'Western']\",['USA']\r\ntt0109913,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0110005,\"['Biography', 'Crime', 'Drama']\",\"['New Zealand', 'Germany']\"\r\ntt0110027,\"['Action', 'Fantasy', 'Romance']\",\"['UK', 'France', 'Canada']\"\r\ntt0110074,\"['Comedy', 'Drama', 'Fantasy']\",\"['UK', 'Germany', 'USA']\"\r\ntt0110099,\"['Comedy', 'Romance']\",['USA']\r\ntt0110146,\"['Drama', 'Romance']\",['USA']\r\ntt0110148,\"['Drama', 'Horror']\",['USA']\r\ntt0110305,\"['Family', 'Adventure']\",['USA']\r\ntt0110322,\"['Drama', 'Romance', 'War']\",['USA']\r\ntt0110329,\"['Comedy', 'Fantasy', 'Horror']\",['USA']\r\ntt0110366,\"['Comedy', 'Family', 'Romance']\",['USA']\r\ntt0110367,\"['Drama', 'Family', 'Romance']\",\"['USA', 'Canada']\"\r\ntt0110413,\"['Action', 'Crime', 'Drama']\",['France']\r\ntt0110475,\"['Action', 'Comedy', 'Crime']\",['USA']\r\ntt0110516,\"['Comedy', 'Romance']\",['USA']\r\ntt0110588,\"['Biography', 'Drama']\",\"['USA', 'Canada']\"\r\ntt0110598,\"['Comedy', 'Drama']\",\"['Australia', 'France']\"\r\ntt0110622,\"['Comedy', 'Crime']\",['USA']\r\ntt0110638,['Drama'],['USA']\r\ntt0110657,\"['Action', 'Drama', 'Family']\",['USA']\r\ntt0110877,\"['Biography', 'Comedy', 'Drama']\",\"['Italy', 'France', 'Belgium']\"\r\ntt0110889,\"['Drama', 'Romance']\",['UK']\r\ntt0110907,\"['Comedy', 'Drama']\",['USA']\r\ntt0110912,\"['Crime', 'Drama']\",['USA']\r\ntt0110950,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0110989,\"['Comedy', 'Family']\",['USA']\r\ntt0111143,\"['Action', 'Adventure', 'Crime']\",['USA']\r\ntt0111161,['Drama'],['USA']\r\ntt0111255,\"['Action', 'Drama', 'Thriller']\",['USA']\r\ntt0111257,\"['Action', 'Adventure', 'Thriller']\",['USA']\r\ntt0111280,\"['Action', 'Adventure', 'Mystery']\",['USA']\r\ntt0111282,\"['Action', 'Adventure', 'Sci-Fi']\",\"['USA', 'France']\"\r\ntt0111301,\"['Action', 'Adventure', 'Comedy']\",\"['Japan', 'USA']\"\r\ntt0111512,\"['Action', 'Comedy']\",['Hong Kong']\r\ntt0111653,\"['Adventure', 'Comedy', 'Western']\",['USA']\r\ntt0111686,\"['Fantasy', 'Horror', 'Mystery']\",['USA']\r\ntt0112346,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0112384,\"['Adventure', 'Drama', 'History']\",['USA']\r\ntt0112401,\"['Action', 'Crime', 'Thriller']\",\"['France', 'USA']\"\r\ntt0112431,\"['Comedy', 'Drama', 'Family']\",\"['Australia', 'USA']\"\r\ntt0112442,\"['Action', 'Comedy', 'Crime']\",['USA']\r\ntt0112462,\"['Action', 'Adventure', 'Fantasy']\",\"['USA', 'UK']\"\r\ntt0112508,['Comedy'],['USA']\r\ntt0112572,['Comedy'],['USA']\r\ntt0112573,\"['Biography', 'Drama', 'History']\",['USA']\r\ntt0112641,\"['Crime', 'Drama']\",\"['France', 'USA']\"\r\ntt0112642,\"['Comedy', 'Family', 'Fantasy']\",['USA']\r\ntt0112697,\"['Comedy', 'Romance']\",['USA']\r\ntt0112715,\"['Action', 'Adventure', 'Mystery']\",['USA']\r\ntt0112722,\"['Drama', 'Mystery', 'Thriller']\",['USA']\r\ntt0112744,\"['Drama', 'Thriller']\",['USA']\r\ntt0112817,\"['Drama', 'Fantasy', 'Western']\",\"['USA', 'Germany', 'Japan']\"\r\ntt0112818,\"['Crime', 'Drama']\",\"['UK', 'USA']\"\r\ntt0112851,\"['Action', 'Thriller']\",\"['USA', 'Mexico']\"\r\ntt0112864,\"['Action', 'Adventure', 'Thriller']\",['USA']\r\ntt0112887,\"['Comedy', 'Crime', 'Drama']\",\"['USA', 'France']\"\r\ntt0113026,\"['Musical', 'Romance']\",['USA']\r\ntt0113074,\"['Action', 'Fantasy', 'Sci-Fi']\",['USA']\r\ntt0113101,['Comedy'],['USA']\r\ntt0113158,\"['Drama', 'Music']\",\"['France', 'USA']\"\r\ntt0113161,\"['Comedy', 'Crime', 'Thriller']\",['USA']\r\ntt0113189,\"['Action', 'Adventure', 'Thriller']\",\"['UK', 'USA']\"\r\ntt0113228,\"['Comedy', 'Romance']\",['USA']\r\ntt0113243,\"['Comedy', 'Crime', 'Drama']\",['USA']\r\ntt0113277,\"['Crime', 'Drama', 'Thriller']\",['USA']\r\ntt0113321,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0113326,\"['Action', 'Comedy', 'Crime']\",['Hong Kong']\r\ntt0113360,\"['Action', 'Drama', 'Thriller']\",['USA']\r\ntt0113451,\"['Crime', 'Drama', 'Thriller']\",['USA']\r\ntt0113464,\"['Comedy', 'Drama']\",['USA']\r\ntt0113497,\"['Adventure', 'Comedy', 'Family']\",['USA']\r\ntt0113537,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0113636,\"['Comedy', 'Fantasy', 'Horror']\",['USA']\r\ntt0113670,\"['Drama', 'Family', 'Fantasy']\",['USA']\r\ntt0113691,['Drama'],['USA']\r\ntt0113749,\"['Comedy', 'Romance']\",['USA']\r\ntt0113845,\"['Action', 'Comedy', 'Crime']\",['USA']\r\ntt0113855,\"['Action', 'Adventure', 'Fantasy']\",['USA']\r\ntt0113870,\"['Drama', 'Thriller']\",\"['USA', 'France']\"\r\ntt0113957,\"['Action', 'Crime', 'Drama']\",['USA']\r\ntt0113972,\"['Action', 'Crime', 'Drama']\",['USA']\r\ntt0114069,\"['Action', 'Drama', 'Thriller']\",['USA']\r\ntt0114134,['Drama'],\"['Netherlands', 'UK', 'France', 'Luxembourg', 'Austria']\"\r\ntt0114194,\"['Action', 'Crime', 'Drama']\",['USA']\r\ntt0114287,\"['Adventure', 'Biography', 'Drama']\",['UK']\r\ntt0114369,\"['Crime', 'Drama', 'Mystery']\",['USA']\r\ntt0114388,\"['Drama', 'Romance']\",\"['USA', 'UK']\"\r\ntt0114436,['Drama'],\"['France', 'USA']\"\r\ntt0114478,\"['Comedy', 'Drama']\",\"['Germany', 'Japan', 'USA']\"\r\ntt0114508,\"['Action', 'Horror', 'Sci-Fi']\",['USA']\r\ntt0114576,\"['Action', 'Crime', 'Thriller']\",['USA']\r\ntt0114594,\"['Comedy', 'Crime']\",['USA']\r\ntt0114608,\"['Action', 'Fantasy', 'Horror']\",['USA']\r\ntt0114614,\"['Action', 'Comedy', 'Sci-Fi']\",\"['USA', 'UK']\"\r\ntt0114694,\"['Adventure', 'Comedy']\",['USA']\r\ntt0114746,\"['Mystery', 'Sci-Fi', 'Thriller']\",['USA']\r\ntt0114805,['Documentary'],['USA']\r\ntt0114814,\"['Crime', 'Mystery', 'Thriller']\",\"['USA', 'Germany']\"\r\ntt0114852,\"['Horror', 'Sci-Fi', 'Thriller']\",['USA']\r\ntt0114857,\"['Action', 'Crime', 'Sci-Fi']\",['USA']\r\ntt0114885,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0114887,\"['Drama', 'Romance']\",\"['USA', 'Mexico']\"\r\ntt0114898,\"['Action', 'Adventure', 'Sci-Fi']\",['USA']\r\ntt0114938,\"['Action', 'Biography', 'Western']\",['USA']\r\ntt0115438,\"['Comedy', 'Crime', 'Thriller']\",['USA']\r\ntt0115571,\"['Sci-Fi', 'Thriller']\",\"['USA', 'Mexico']\"\r\ntt0115624,\"['Action', 'Sci-Fi']\",['USA']\r\ntt0115632,\"['Biography', 'Drama']\",['USA']\r\ntt0115639,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0115641,\"['Animation', 'Adventure', 'Comedy']\",['USA']\r\ntt0115678,\"['Drama', 'Romance']\",['USA']\r\ntt0115685,['Comedy'],['USA']\r\ntt0115697,['Comedy'],['USA']\r\ntt0115734,\"['Comedy', 'Crime', 'Drama']\",['USA']\r\ntt0115738,\"['Comedy', 'Drama']\",\"['Japan', 'USA']\"\r\ntt0115759,\"['Action', 'Adventure', 'Thriller']\",['USA']\r\ntt0115783,\"['Action', 'Comedy', 'Crime']\",['USA']\r\ntt0115798,\"['Comedy', 'Drama', 'Thriller']\",['USA']\r\ntt0115857,\"['Action', 'Drama', 'Sci-Fi']\",['USA']\r\ntt0115906,\"['Comedy', 'Drama']\",['USA']\r\ntt0115963,\"['Drama', 'Fantasy', 'Horror']\",['USA']\r\ntt0115985,\"['Action', 'Sci-Fi', 'Comedy']\",['USA']\r\ntt0115986,\"['Action', 'Crime', 'Fantasy']\",['USA']\r\ntt0116126,\"['Comedy', 'Crime']\",['USA']\r\ntt0116191,\"['Comedy', 'Drama', 'Romance']\",\"['UK', 'USA']\"\r\ntt0116209,\"['Drama', 'Romance', 'War']\",\"['USA', 'UK']\"\r\ntt0116225,\"['Action', 'Adventure', 'Sci-Fi']\",['USA']\r\ntt0116240,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0116242,\"['Comedy', 'Musical', 'Romance']\",['USA']\r\ntt0116253,\"['Action', 'Adventure', 'Thriller']\",['USA']\r\ntt0116282,\"['Crime', 'Drama', 'Thriller']\",\"['USA', 'UK']\"\r\ntt0116313,['Comedy'],['USA']\r\ntt0116324,['Comedy'],['USA']\r\ntt0116365,\"['Comedy', 'Fantasy', 'Horror']\",\"['New Zealand', 'USA']\"\r\ntt0116367,\"['Action', 'Crime', 'Horror']\",\"['USA', 'Mexico']\"\r\ntt0116483,\"['Comedy', 'Sport']\",['USA']\r\ntt0116493,\"['Comedy', 'Drama', 'Family']\",['USA']\r\ntt0116514,\"['Horror', 'Sci-Fi']\",['USA']\r\ntt0116529,['Drama'],['USA']\r\ntt0116629,\"['Action', 'Adventure', 'Sci-Fi']\",['USA']\r\ntt0116695,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0116705,\"['Comedy', 'Family']\",['USA']\r\ntt0116743,\"['Crime', 'Drama', 'History']\",\"['USA', 'India', 'UK', 'Japan', 'Germany']\"\r\ntt0116778,\"['Comedy', 'Sport']\",['USA']\r\ntt0116861,\"['Comedy', 'Fantasy', 'Horror']\",['USA']\r\ntt0117008,\"['Comedy', 'Family', 'Fantasy']\",['USA']\r\ntt0117060,\"['Action', 'Adventure', 'Thriller']\",['USA']\r\ntt0117091,\"['Comedy', 'Drama']\",['USA']\r\ntt0117107,\"['Crime', 'Drama', 'Mystery']\",['USA']\r\ntt0117108,\"['Comedy', 'Romance', 'Sci-Fi']\",['USA']\r\ntt0117128,\"['Comedy', 'Sci-Fi']\",['USA']\r\ntt0117218,\"['Comedy', 'Romance', 'Sci-Fi']\",['USA']\r\ntt0117283,\"['Comedy', 'Romance']\",['USA']\r\ntt0117318,\"['Biography', 'Drama']\",['USA']\r\ntt0117331,\"['Action', 'Adventure', 'Comedy']\",\"['Australia', 'USA']\"\r\ntt0117381,\"['Crime', 'Drama', 'Mystery']\",['USA']\r\ntt0117407,\"['Crime', 'Thriller']\",['Denmark']\r\ntt0117509,\"['Drama', 'Romance']\",\"['USA', 'Mexico', 'Australia']\"\r\ntt0117571,\"['Horror', 'Mystery']\",['USA']\r\ntt0117628,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0117666,['Drama'],['USA']\r\ntt0117731,\"['Action', 'Adventure', 'Drama']\",['USA']\r\ntt0117774,\"['Action', 'Crime', 'Drama']\",['USA']\r\ntt0117802,\"['Comedy', 'Drama']\",['USA']\r\ntt0117887,\"['Comedy', 'Drama', 'Music']\",['USA']\r\ntt0117894,\"['Fantasy', 'Horror']\",['USA']\r\ntt0117951,['Drama'],['UK']\r\ntt0117979,\"['Comedy', 'Romance']\",['USA']\r\ntt0117998,\"['Action', 'Adventure', 'Thriller']\",['USA']\r\ntt0118073,['Comedy'],['USA']\r\ntt0118113,\"['Comedy', 'Drama', 'Romance']\",\"['UK', 'USA', 'Germany', 'Italy', 'France']\"\r\ntt0118564,\"['Drama', 'Mystery', 'Thriller']\",\"['USA', 'Canada', 'Japan']\"\r\ntt0118571,\"['Action', 'Drama', 'Thriller']\",\"['USA', 'Germany']\"\r\ntt0118583,\"['Action', 'Horror', 'Sci-Fi']\",['USA']\r\ntt0118607,\"['Drama', 'History']\",['USA']\r\ntt0118615,\"['Action', 'Adventure', 'Horror']\",['USA']\r\ntt0118617,\"['Animation', 'Adventure', 'Drama']\",['USA']\r\ntt0118632,['Drama'],['USA']\r\ntt0118643,\"['Fantasy', 'Horror', 'Thriller']\",['USA']\r\ntt0118652,\"['Comedy', 'Horror', 'Mystery']\",['USA']\r\ntt0118655,\"['Adventure', 'Comedy']\",['USA']\r\ntt0118661,\"['Action', 'Adventure', 'Sci-Fi']\",['USA']\r\ntt0118688,\"['Action', 'Sci-Fi']\",\"['USA', 'UK']\"\r\ntt0118689,\"['Adventure', 'Comedy', 'Family']\",\"['UK', 'USA']\"\r\ntt0118708,\"['Action', 'Comedy']\",['USA']\r\ntt0118715,\"['Comedy', 'Crime', 'Sport']\",\"['USA', 'UK']\"\r\ntt0118750,\"['Comedy', 'Romance']\",['USA']\r\ntt0118771,\"['Crime', 'Drama', 'Mystery']\",['USA']\r\ntt0118798,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0118799,\"['Comedy', 'Drama', 'Romance']\",['Italy']\r\ntt0118826,\"['Comedy', 'Drama']\",['Australia']\r\ntt0118842,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0118849,\"['Drama', 'Family', 'Sport']\",['Iran']\r\ntt0118887,\"['Crime', 'Drama', 'Thriller']\",['USA']\r\ntt0118900,\"['Action', 'Crime', 'Drama']\",['USA']\r\ntt0118928,\"['Action', 'Adventure', 'Thriller']\",['USA']\r\ntt0118949,\"['Adventure', 'Biography', 'Drama']\",\"['USA', 'Czech Republic']\"\r\ntt0118971,\"['Drama', 'Mystery', 'Thriller']\",\"['USA', 'Germany']\"\r\ntt0119008,\"['Biography', 'Crime', 'Drama']\",['USA']\r\ntt0119080,['Drama'],['USA']\r\ntt0119081,\"['Horror', 'Sci-Fi', 'Thriller']\",\"['UK', 'USA']\"\r\ntt0119094,\"['Action', 'Crime', 'Sci-Fi']\",['USA']\r\ntt0119095,\"['Drama', 'Family', 'Fantasy']\",['UK']\r\ntt0119109,\"['Comedy', 'Romance']\",['USA']\r\ntt0119116,\"['Action', 'Adventure', 'Sci-Fi']\",\"['France', 'UK', 'USA']\"\r\ntt0119174,\"['Drama', 'Mystery', 'Thriller']\",['USA']\r\ntt0119177,\"['Drama', 'Sci-Fi', 'Thriller']\",['USA']\r\ntt0119208,\"['Crime', 'Drama', 'Thriller']\",['USA']\r\ntt0119215,\"['Comedy', 'Family']\",['USA']\r\ntt0119217,\"['Drama', 'Romance']\",['USA']\r\ntt0119282,\"['Animation', 'Adventure', 'Comedy']\",['USA']\r\ntt0119313,\"['Drama', 'Romance']\",['USA']\r\ntt0119324,\"['Comedy', 'Drama']\",['USA']\r\ntt0119345,\"['Horror', 'Mystery']\",['USA']\r\ntt0119349,['Drama'],['USA']\r\ntt0119360,\"['Comedy', 'Romance']\",['USA']\r\ntt0119381,\"['Drama', 'Romance']\",['USA']\r\ntt0119395,\"['Action', 'Crime', 'Drama']\",\"['USA', 'UK', 'France', 'Germany', 'Japan']\"\r\ntt0119396,\"['Crime', 'Drama', 'Thriller']\",['USA']\r\ntt0119426,\"['Comedy', 'Crime', 'Drama']\",['USA']\r\ntt0119468,\"['Crime', 'Drama', 'Mystery']\",['USA']\r\ntt0119488,\"['Crime', 'Drama', 'Mystery']\",['USA']\r\ntt0119528,\"['Comedy', 'Fantasy']\",['USA']\r\ntt0119567,\"['Action', 'Adventure', 'Sci-Fi']\",['USA']\r\ntt0119576,\"['Drama', 'Romance']\",\"['France', 'UK', 'USA']\"\r\ntt0119592,\"['Crime', 'Drama', 'Thriller']\",['USA']\r\ntt0119643,\"['Drama', 'Fantasy', 'Romance']\",['USA']\r\ntt0119654,\"['Action', 'Adventure', 'Comedy']\",['USA']\r\ntt0119675,\"['Horror', 'Sci-Fi']\",['USA']\r\ntt0119715,['Comedy'],['USA']\r\ntt0119717,\"['Comedy', 'Romance']\",['USA']\r\ntt0119738,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0119783,\"['Crime', 'Drama']\",['USA']\r\ntt0119822,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0119874,\"['Action', 'Thriller']\",['USA']\r\ntt0119896,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0119978,\"['Crime', 'Drama', 'Thriller']\",\"['USA', 'Germany']\"\r\ntt0120004,\"['Horror', 'Mystery', 'Sci-Fi']\",\"['UK', 'USA', 'Japan', 'Germany']\"\r\ntt0120053,\"['Action', 'Adventure', 'Romance']\",['USA']\r\ntt0120082,\"['Horror', 'Mystery']\",['USA']\r\ntt0120094,\"['Biography', 'Drama', 'Music']\",['USA']\r\ntt0120148,\"['Comedy', 'Drama', 'Fantasy']\",\"['UK', 'USA']\"\r\ntt0120151,\"['Comedy', 'Romance']\",['USA']\r\ntt0120169,\"['Comedy', 'Drama']\",['USA']\r\ntt0120179,\"['Action', 'Adventure', 'Crime']\",['USA']\r\ntt0120184,\"['Action', 'Mystery', 'Sci-Fi']\",['USA']\r\ntt0120188,\"['Action', 'Adventure', 'Comedy']\",['USA']\r\ntt0120201,\"['Action', 'Adventure', 'Sci-Fi']\",['USA']\r\ntt0120241,\"['Comedy', 'Crime', 'Drama']\",['USA']\r\ntt0120321,\"['Comedy', 'Drama']\",\"['Canada', 'USA']\"\r\ntt0120324,\"['Crime', 'Drama', 'Thriller']\",\"['UK', 'Germany', 'France', 'USA', 'Japan']\"\r\ntt0120347,\"['Action', 'Adventure', 'Thriller']\",\"['UK', 'USA']\"\r\ntt0120382,\"['Comedy', 'Drama', 'Sci-Fi']\",['USA']\r\ntt0120458,\"['Action', 'Horror', 'Sci-Fi']\",\"['USA', 'UK', 'Germany', 'Japan', 'France']\"\r\ntt0120461,\"['Action', 'Drama', 'Sci-Fi']\",['USA']\r\ntt0120520,\"['Drama', 'Romance']\",\"['USA', 'UK']\"\r\ntt0120524,\"['Fantasy', 'Horror']\",['USA']\r\ntt0120577,\"['Drama', 'Music']\",['USA']\r\ntt0120587,\"['Animation', 'Adventure', 'Comedy']\",['USA']\r\ntt0120601,\"['Comedy', 'Drama', 'Fantasy']\",['USA']\r\ntt0120604,\"['Action', 'Adventure', 'Fantasy']\",\"['UK', 'USA', 'Romania']\"\r\ntt0120611,\"['Action', 'Horror', 'Sci-Fi']\",['USA']\r\ntt0120613,\"['Drama', 'Romance']\",['USA']\r\ntt0120616,\"['Action', 'Adventure', 'Fantasy']\",['USA']\r\ntt0120620,\"['Drama', 'Mystery', 'Thriller']\",['USA']\r\ntt0120630,\"['Animation', 'Adventure', 'Comedy']\",\"['UK', 'USA', 'France']\"\r\ntt0120631,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0120647,\"['Action', 'Drama', 'Romance']\",['USA']\r\ntt0120654,['Comedy'],\"['Canada', 'USA']\"\r\ntt0120669,\"['Adventure', 'Comedy', 'Drama']\",['USA']\r\ntt0120679,\"['Biography', 'Drama', 'Romance']\",\"['Mexico', 'USA', 'Canada']\"\r\ntt0120681,\"['Horror', 'Mystery', 'Thriller']\",['USA']\r\ntt0120684,\"['Biography', 'Drama']\",\"['USA', 'UK']\"\r\ntt0120685,\"['Action', 'Sci-Fi', 'Thriller']\",\"['USA', 'Japan']\"\r\ntt0120686,\"['Comedy', 'Drama']\",['USA']\r\ntt0120689,\"['Crime', 'Drama', 'Fantasy']\",['USA']\r\ntt0120693,\"['Comedy', 'Crime']\",['USA']\r\ntt0120694,\"['Horror', 'Thriller']\",['USA']\r\ntt0120696,\"['Action', 'Crime', 'Drama']\",\"['USA', 'UK', 'Denmark', 'France', 'Japan', 'New Zealand', 'Germany', 'Australia']\"\r\ntt0120703,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0120735,\"['Comedy', 'Crime']\",['UK']\r\ntt0120737,\"['Action', 'Adventure', 'Drama']\",\"['New Zealand', 'USA']\"\r\ntt0120744,\"['Action', 'Adventure', 'Drama']\",\"['France', 'USA']\"\r\ntt0120746,\"['Action', 'Adventure', 'Comedy']\",\"['USA', 'Germany', 'Mexico']\"\r\ntt0120755,\"['Action', 'Adventure', 'Thriller']\",\"['USA', 'Germany']\"\r\ntt0120757,\"['Action', 'Crime', 'Thriller']\",['USA']\r\ntt0120768,\"['Action', 'Crime', 'Drama']\",\"['Germany', 'USA']\"\r\ntt0120770,\"['Comedy', 'Music', 'Romance']\",['USA']\r\ntt0120772,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0120780,\"['Comedy', 'Crime', 'Drama']\",['USA']\r\ntt0120784,\"['Action', 'Crime', 'Drama']\",['USA']\r\ntt0120787,\"['Crime', 'Drama', 'Thriller']\",['USA']\r\ntt0120788,\"['Biography', 'Drama', 'Romance']\",['USA']\r\ntt0120794,\"['Animation', 'Adventure', 'Drama']\",['USA']\r\ntt0120800,\"['Animation', 'Adventure', 'Comedy']\",['USA']\r\ntt0120802,\"['Drama', 'Music', 'Mystery']\",\"['Canada', 'Italy', 'USA', 'UK', 'Austria']\"\r\ntt0120812,\"['Action', 'Comedy', 'Crime']\",['USA']\r\ntt0120815,\"['Drama', 'War']\",['USA']\r\ntt0120820,\"['Comedy', 'Romance']\",['USA']\r\ntt0120831,\"['Comedy', 'Drama']\",['USA']\r\ntt0120841,\"['Action', 'Horror', 'Sci-Fi']\",['USA']\r\ntt0120844,\"['Action', 'Adventure', 'Sci-Fi']\",['USA']\r\ntt0120879,\"['Drama', 'Music']\",\"['UK', 'USA']\"\r\ntt0120888,\"['Comedy', 'Music', 'Romance']\",['USA']\r\ntt0120890,\"['Crime', 'Drama', 'Mystery']\",['USA']\r\ntt0120891,\"['Action', 'Comedy', 'Sci-Fi']\",['USA']\r\ntt0120902,\"['Drama', 'Mystery', 'Sci-Fi']\",['USA']\r\ntt0120903,\"['Action', 'Adventure', 'Sci-Fi']\",['USA']\r\ntt0120907,\"['Horror', 'Sci-Fi', 'Thriller']\",\"['UK', 'France', 'Canada']\"\r\ntt0120912,\"['Action', 'Adventure', 'Comedy']\",['USA']\r\ntt0120913,\"['Animation', 'Action', 'Adventure']\",['USA']\r\ntt0120915,\"['Action', 'Adventure', 'Fantasy']\",['USA']\r\ntt0122151,\"['Action', 'Crime', 'Thriller']\",['USA']\r\ntt0122541,\"['Comedy', 'Romance']\",\"['UK', 'France', 'USA']\"\r\ntt0122690,\"['Action', 'Crime', 'Thriller']\",\"['UK', 'France', 'USA']\"\r\ntt0122718,\"['Action', 'Adventure', 'Comedy']\",['USA']\r\ntt0122933,\"['Comedy', 'Crime']\",\"['USA', 'Australia']\"\r\ntt0123755,\"['Drama', 'Mystery', 'Sci-Fi']\",['Canada']\r\ntt0124295,\"['Documentary', 'Comedy', 'Crime']\",\"['USA', 'UK']\"\r\ntt0124315,\"['Drama', 'Romance']\",['USA']\r\ntt0125439,\"['Comedy', 'Drama', 'Romance']\",\"['UK', 'USA']\"\r\ntt0125659,\"['Drama', 'Mystery', 'Sci-Fi']\",\"['Spain', 'France', 'Italy']\"\r\ntt0125664,\"['Biography', 'Comedy', 'Drama']\",\"['UK', 'Germany', 'Japan', 'USA']\"\r\ntt0125879,\"['Drama', 'Music', 'Mystery']\",['USA']\r\ntt0126029,\"['Animation', 'Adventure', 'Comedy']\",['USA']\r\ntt0126886,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0127536,\"['Biography', 'Drama', 'History']\",['UK']\r\ntt0127723,\"['Comedy', 'Romance']\",['USA']\r\ntt0128442,\"['Crime', 'Drama']\",['USA']\r\ntt0128853,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0129167,\"['Animation', 'Action', 'Adventure']\",['USA']\r\ntt0129290,\"['Biography', 'Comedy', 'Drama']\",['USA']\r\ntt0129387,\"['Comedy', 'Romance']\",['USA']\r\ntt0130018,\"['Horror', 'Mystery']\",\"['USA', 'Mexico']\"\r\ntt0131325,['Comedy'],['USA']\r\ntt0131857,\"['Comedy', 'Sport']\",['USA']\r\ntt0132347,\"['Action', 'Comedy', 'Fantasy']\",['USA']\r\ntt0132477,\"['Biography', 'Drama', 'Family']\",['USA']\r\ntt0133046,\"['Comedy', 'Thriller']\",['USA']\r\ntt0133093,\"['Action', 'Sci-Fi']\",['USA']\r\ntt0133751,\"['Horror', 'Sci-Fi']\",['USA']\r\ntt0133952,\"['Action', 'Thriller']\",['USA']\r\ntt0134067,\"['Animation', 'Adventure', 'Comedy']\",['USA']\r\ntt0134084,\"['Horror', 'Mystery']\",['USA']\r\ntt0134119,\"['Crime', 'Drama', 'Thriller']\",['USA']\r\ntt0134847,\"['Horror', 'Sci-Fi']\",\"['USA', 'Australia']\"\r\ntt0134983,\"['Horror', 'Sci-Fi', 'Thriller']\",\"['USA', 'Switzerland']\"\r\ntt0137338,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0137363,\"['Crime', 'Drama', 'Thriller']\",['USA']\r\ntt0137523,['Drama'],\"['USA', 'Germany']\"\r\ntt0138097,\"['Comedy', 'Drama', 'History']\",\"['USA', 'UK']\"\r\ntt0138524,\"['Comedy', 'Crime', 'Romance']\",['USA']\r\ntt0138704,\"['Drama', 'Horror', 'Mystery']\",['USA']\r\ntt0138749,\"['Animation', 'Adventure', 'Comedy']\",['USA']\r\ntt0139134,\"['Drama', 'Romance']\",['USA']\r\ntt0139239,\"['Comedy', 'Crime']\",['USA']\r\ntt0139414,\"['Action', 'Comedy', 'Horror']\",['USA']\r\ntt0139654,\"['Crime', 'Drama', 'Thriller']\",['USA']\r\ntt0139699,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0141926,\"['Action', 'War']\",\"['France', 'USA']\"\r\ntt0142342,\"['Comedy', 'Drama']\",['USA']\r\ntt0142688,\"['Mystery', 'Thriller']\",\"['France', 'Spain', 'USA']\"\r\ntt0143145,\"['Action', 'Adventure', 'Thriller']\",\"['UK', 'USA']\"\r\ntt0144084,\"['Comedy', 'Crime', 'Drama']\",\"['USA', 'Canada']\"\r\ntt0144120,\"['Comedy', 'Horror']\",\"['USA', 'Canada']\"\r\ntt0144528,\"['Comedy', 'Romance', 'Sci-Fi']\",['USA']\r\ntt0144715,\"['Comedy', 'Drama']\",\"['USA', 'Australia']\"\r\ntt0144814,\"['Horror', 'Sci-Fi', 'Thriller']\",['USA']\r\ntt0144964,\"['Action', 'Adventure', 'Fantasy']\",\"['UK', 'USA', 'Luxembourg']\"\r\ntt0145531,['Horror'],\"['USA', 'Mexico']\"\r\ntt0145653,['Drama'],\"['USA', 'Ireland']\"\r\ntt0145660,\"['Action', 'Adventure', 'Comedy']\",['USA']\r\ntt0146316,\"['Action', 'Adventure', 'Fantasy']\",\"['USA', 'UK', 'Japan', 'Germany']\"\r\ntt0147004,\"['Comedy', 'Drama', 'Music']\",['UK']\r\ntt0149171,['Drama'],['USA']\r\ntt0149261,\"['Action', 'Adventure', 'Sci-Fi']\",\"['USA', 'Mexico']\"\r\ntt0150377,\"['Crime', 'Drama', 'Mystery']\",\"['USA', 'Germany', 'Canada']\"\r\ntt0151568,\"['Biography', 'Comedy', 'Drama']\",\"['UK', 'USA']\"\r\ntt0151582,\"['Crime', 'Drama', 'Mystery']\",['USA']\r\ntt0151738,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0151804,['Comedy'],['USA']\r\ntt0155267,\"['Crime', 'Romance', 'Thriller']\",['USA']\r\ntt0155711,\"['Comedy', 'Crime', 'Drama']\",['USA']\r\ntt0157472,\"['Action', 'Adventure', 'Comedy']\",['USA']\r\ntt0158493,\"['Crime', 'Drama']\",\"['Jamaica', 'USA']\"\r\ntt0158983,\"['Animation', 'Comedy', 'Fantasy']\",['USA']\r\ntt0159097,\"['Drama', 'Romance']\",['USA']\r\ntt0159273,\"['Action', 'Drama', 'Thriller']\",['USA']\r\ntt0159365,\"['Adventure', 'Drama', 'History']\",\"['UK', 'Italy', 'Romania', 'USA']\"\r\ntt0160127,\"['Action', 'Adventure', 'Comedy']\",\"['USA', 'Germany']\"\r\ntt0160184,\"['Crime', 'Horror', 'Mystery']\",\"['Germany', 'USA']\"\r\ntt0160672,\"['Crime', 'Drama']\",['USA']\r\ntt0160862,\"['Comedy', 'Romance']\",['USA']\r\ntt0161081,\"['Drama', 'Fantasy', 'Horror']\",['USA']\r\ntt0161100,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0162222,\"['Adventure', 'Drama', 'Romance']\",['USA']\r\ntt0162346,\"['Comedy', 'Drama']\",\"['USA', 'UK', 'Germany']\"\r\ntt0162360,\"['Comedy', 'Crime', 'Romance']\",['USA']\r\ntt0162650,\"['Action', 'Crime', 'Thriller']\",\"['Germany', 'USA']\"\r\ntt0162661,\"['Fantasy', 'Horror', 'Mystery']\",\"['Germany', 'USA']\"\r\ntt0162662,\"['Drama', 'Music', 'Romance']\",['USA']\r\ntt0163025,\"['Action', 'Adventure', 'Sci-Fi']\",['USA']\r\ntt0163187,\"['Comedy', 'Romance']\",['USA']\r\ntt0163651,['Comedy'],['USA']\r\ntt0163978,\"['Adventure', 'Drama', 'Romance']\",\"['USA', 'UK']\"\r\ntt0163983,\"['Crime', 'Drama', 'Horror']\",\"['USA', 'Germany']\"\r\ntt0163988,\"['Drama', 'Thriller']\",['USA']\r\ntt0164052,\"['Action', 'Horror', 'Sci-Fi']\",\"['USA', 'Germany']\"\r\ntt0164114,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0164181,\"['Horror', 'Mystery', 'Thriller']\",['USA']\r\ntt0164184,\"['Action', 'Drama', 'Thriller']\",\"['USA', 'Germany', 'Canada']\"\r\ntt0164334,\"['Drama', 'Thriller']\",\"['USA', 'Germany', 'Canada']\"\r\ntt0164912,\"['Adventure', 'Comedy', 'Family']\",\"['Germany', 'USA']\"\r\ntt0165798,\"['Action', 'Crime', 'Drama']\",\"['France', 'Germany', 'USA', 'Japan']\"\r\ntt0165854,\"['Crime', 'Drama', 'Mystery']\",['USA']\r\ntt0166396,['Comedy'],\"['UK', 'Ireland', 'France', 'USA']\"\r\ntt0166924,\"['Drama', 'Mystery', 'Thriller']\",\"['France', 'USA']\"\r\ntt0167116,\"['Action', 'Romance', 'Thriller']\",['USA']\r\ntt0167260,\"['Adventure', 'Drama', 'Fantasy']\",\"['New Zealand', 'USA']\"\r\ntt0167261,\"['Adventure', 'Drama', 'Fantasy']\",\"['New Zealand', 'USA']\"\r\ntt0167427,\"['Comedy', 'Romance']\",['USA']\r\ntt0168501,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0168786,\"['Biography', 'Drama']\",['USA']\r\ntt0169547,['Drama'],['USA']\r\ntt0170016,\"['Comedy', 'Family', 'Fantasy']\",['USA']\r\ntt0171359,\"['Drama', 'Romance', 'Thriller']\",['USA']\r\ntt0171363,\"['Fantasy', 'Horror', 'Mystery']\",\"['USA', 'UK']\"\r\ntt0172156,\"['Action', 'Comedy', 'Crime']\",['USA']\r\ntt0172493,\"['Biography', 'Drama']\",\"['USA', 'Germany']\"\r\ntt0172495,\"['Action', 'Adventure', 'Drama']\",\"['USA', 'UK', 'Malta', 'Morocco']\"\r\ntt0173716,\"['Comedy', 'Crime', 'Thriller']\",\"['France', 'USA']\"\r\ntt0174856,\"['Biography', 'Drama', 'Sport']\",['USA']\r\ntt0175142,['Comedy'],['USA']\r\ntt0177789,\"['Adventure', 'Comedy', 'Sci-Fi']\",['USA']\r\ntt0177971,\"['Action', 'Adventure', 'Drama']\",['USA']\r\ntt0179116,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0180093,['Drama'],['USA']\r\ntt0180734,\"['Drama', 'Sport']\",\"['Germany', 'USA']\"\r\ntt0181316,\"['Action', 'Comedy', 'Crime']\",\"['Germany', 'USA']\"\r\ntt0181536,['Drama'],['USA']\r\ntt0181689,\"['Action', 'Crime', 'Mystery']\",['USA']\r\ntt0181739,\"['Animation', 'Action', 'Adventure']\",['USA']\r\ntt0181865,\"['Crime', 'Drama', 'Thriller']\",\"['USA', 'Mexico', 'Germany']\"\r\ntt0181875,\"['Adventure', 'Comedy', 'Drama']\",['USA']\r\ntt0183505,['Comedy'],['USA']\r\ntt0183649,\"['Crime', 'Thriller']\",['USA']\r\ntt0183678,\"['Fantasy', 'Horror', 'Thriller']\",['USA']\r\ntt0183790,\"['Action', 'Adventure', 'Romance']\",['USA']\r\ntt0184858,\"['Action', 'Adventure', 'Crime']\",['USA']\r\ntt0184907,\"['Adventure', 'Comedy', 'Family']\",['USA']\r\ntt0185014,\"['Comedy', 'Drama']\",\"['USA', 'Germany', 'UK', 'Japan']\"\r\ntt0185431,\"['Comedy', 'Fantasy']\",['USA']\r\ntt0185937,\"['Horror', 'Mystery']\",['USA']\r\ntt0186253,['Drama'],\"['Canada', 'USA']\"\r\ntt0186508,\"['Documentary', 'Music']\",\"['Germany', 'USA', 'UK', 'France', 'Cuba']\"\r\ntt0186566,\"['Action', 'Adventure', 'Thriller']\",['USA']\r\ntt0186894,\"['Drama', 'Romance']\",['USA']\r\ntt0186975,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0187393,\"['Action', 'Drama', 'History']\",\"['USA', 'Germany']\"\r\ntt0187738,\"['Action', 'Horror', 'Sci-Fi']\",\"['Germany', 'USA']\"\r\ntt0189584,\"['Drama', 'Comedy']\",['USA']\r\ntt0189998,\"['Drama', 'Horror']\",\"['UK', 'USA', 'Luxembourg']\"\r\ntt0190138,\"['Comedy', 'Crime']\",['USA']\r\ntt0190332,\"['Action', 'Adventure', 'Fantasy']\",\"['Taiwan', 'Hong Kong', 'USA', 'China']\"\r\ntt0190590,\"['Adventure', 'Comedy', 'Crime']\",\"['UK', 'France', 'USA']\"\r\ntt0190865,\"['Action', 'Adventure', 'Drama']\",\"['USA', 'Germany']\"\r\ntt0191133,\"['Comedy', 'Drama', 'Music']\",['USA']\r\ntt0191636,\"['Drama', 'History', 'Romance']\",\"['France', 'Canada']\"\r\ntt0192071,\"['Comedy', 'Romance']\",['USA']\r\ntt0192614,\"['Action', 'Crime', 'Drama']\",\"['USA', 'Canada']\"\r\ntt0193560,\"['Action', 'Adventure', 'Drama']\",\"['USA', 'Mexico']\"\r\ntt0195685,\"['Biography', 'Drama']\",['USA']\r\ntt0195714,\"['Horror', 'Thriller']\",['USA']\r\ntt0195945,['Comedy'],['USA']\r\ntt0196229,['Comedy'],\"['Germany', 'USA']\"\r\ntt0198021,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0200465,\"['Crime', 'Thriller']\",\"['UK', 'USA', 'Australia']\"\r\ntt0200530,\"['Comedy', 'Drama']\",['USA']\r\ntt0202677,\"['Action', 'Crime', 'Drama']\",['USA']\r\ntt0203009,\"['Drama', 'Musical', 'Romance']\",\"['Australia', 'USA']\"\r\ntt0203019,\"['Biography', 'Drama']\",['USA']\r\ntt0203119,\"['Crime', 'Drama', 'Thriller']\",\"['UK', 'Spain']\"\r\ntt0203230,['Drama'],['USA']\r\ntt0203536,\"['Action', 'Comedy', 'Thriller']\",['USA']\r\ntt0204946,\"['Comedy', 'Romance', 'Sport']\",['USA']\r\ntt0205271,\"['Comedy', 'Drama', 'Romance']\",\"['USA', 'Germany']\"\r\ntt0206275,\"['Drama', 'Music', 'Romance']\",['USA']\r\ntt0206634,\"['Drama', 'Thriller']\",\"['USA', 'UK', 'Japan']\"\r\ntt0207201,\"['Comedy', 'Fantasy', 'Romance']\",['USA']\r\ntt0208003,\"['Action', 'Comedy', 'Crime']\",\"['Germany', 'USA']\"\r\ntt0208092,\"['Comedy', 'Crime']\",\"['UK', 'USA']\"\r\ntt0209037,\"['Comedy', 'Drama', 'Music']\",\"['Belgium', 'Netherlands', 'France']\"\r\ntt0209144,\"['Mystery', 'Thriller']\",['USA']\r\ntt0209163,\"['Action', 'Adventure', 'Fantasy']\",['USA']\r\ntt0209958,\"['Horror', 'Sci-Fi', 'Thriller']\",\"['USA', 'Germany']\"\r\ntt0210070,\"['Drama', 'Fantasy', 'Horror']\",['Canada']\r\ntt0210358,\"['Drama', 'Romance']\",['USA']\r\ntt0211443,\"['Action', 'Horror', 'Sci-Fi']\",\"['Canada', 'USA']\"\r\ntt0211915,\"['Comedy', 'Romance']\",\"['France', 'Germany']\"\r\ntt0212235,\"['Comedy', 'Horror']\",['USA']\r\ntt0212338,\"['Comedy', 'Romance']\",['USA']\r\ntt0212346,\"['Action', 'Comedy', 'Crime']\",['USA']\r\ntt0212985,\"['Crime', 'Drama', 'Thriller']\",\"['USA', 'UK', 'Italy']\"\r\ntt0213790,['Comedy'],['USA']\r\ntt0213847,\"['Comedy', 'Drama', 'Romance']\",\"['Italy', 'USA', 'Germany']\"\r\ntt0215129,['Comedy'],['USA']\r\ntt0215750,\"['Drama', 'History', 'War']\",\"['Ireland', 'UK', 'France', 'Germany', 'USA']\"\r\ntt0216787,\"['Comedy', 'Drama', 'Romance']\",['France']\r\ntt0217355,\"['Drama', 'Mystery']\",['USA']\r\ntt0217505,\"['Crime', 'Drama']\",\"['USA', 'Italy']\"\r\ntt0218182,['Comedy'],['USA']\r\ntt0218839,['Comedy'],['USA']\r\ntt0218922,\"['Drama', 'Mystery', 'Romance']\",\"['France', 'Mexico', 'USA']\"\r\ntt0218967,\"['Comedy', 'Drama', 'Fantasy']\",['USA']\r\ntt0219653,\"['Action', 'Fantasy', 'Horror']\",['USA']\r\ntt0219699,\"['Drama', 'Fantasy', 'Horror']\",['USA']\r\ntt0220506,\"['Horror', 'Thriller']\",['USA']\r\ntt0221799,['Drama'],\"['USA', 'Hungary']\"\r\ntt0226009,\"['Drama', 'Comedy', 'Romance']\",['USA']\r\ntt0226935,['Drama'],['USA']\r\ntt0227005,\"['Comedy', 'Crime', 'Drama']\",['USA']\r\ntt0227445,\"['Crime', 'Drama', 'Thriller']\",\"['Germany', 'Canada', 'USA']\"\r\ntt0227538,\"['Action', 'Adventure', 'Comedy']\",['USA']\r\ntt0228333,\"['Action', 'Horror', 'Sci-Fi']\",['USA']\r\ntt0229260,\"['Adventure', 'Fantasy', 'Horror']\",['USA']\r\ntt0229440,\"['Crime', 'Horror', 'Mystery']\",['USA']\r\ntt0230169,\"['Biography', 'Crime', 'Drama']\",\"['USA', 'UK']\"\r\ntt0230512,\"['Documentary', 'Biography', 'Music']\",['USA']\r\ntt0230600,\"['Horror', 'Mystery', 'Thriller']\",\"['Spain', 'USA', 'France', 'Italy']\"\r\ntt0232500,\"['Action', 'Crime', 'Thriller']\",\"['USA', 'Germany']\"\r\ntt0233277,\"['Family', 'Fantasy']\",\"['USA', 'Germany', 'UK']\"\r\ntt0233657,\"['Sci-Fi', 'Thriller']\",['USA']\r\ntt0234137,\"['Comedy', 'Romance', 'Drama']\",\"['USA', 'Canada']\"\r\ntt0234215,\"['Action', 'Sci-Fi']\",['USA']\r\ntt0234354,\"['Comedy', 'Crime', 'Drama']\",['USA']\r\ntt0234829,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0236493,\"['Adventure', 'Comedy', 'Crime']\",\"['USA', 'Mexico']\"\r\ntt0236640,\"['Biography', 'Drama', 'Romance']\",\"['Germany', 'Canada', 'USA']\"\r\ntt0238112,\"['Drama', 'Music', 'Romance']\",\"['UK', 'France', 'USA']\"\r\ntt0238380,\"['Action', 'Drama', 'Sci-Fi']\",['USA']\r\ntt0238546,\"['Drama', 'Fantasy', 'Horror']\",\"['USA', 'Australia']\"\r\ntt0238924,\"['Comedy', 'Drama']\",['USA']\r\ntt0239060,\"['Drama', 'Romance']\",['Netherlands']\r\ntt0239395,\"['Action', 'Comedy', 'Family']\",\"['USA', 'Australia']\"\r\ntt0239986,\"['Comedy', 'Romance']\",['USA']\r\ntt0240468,\"['Action', 'Comedy']\",\"['USA', 'Hong Kong', 'Mexico', 'Taiwan']\"\r\ntt0240510,\"['Action', 'Adventure', 'Drama']\",\"['UK', 'USA']\"\r\ntt0240601,['Thriller'],['Germany']\r\ntt0240772,\"['Crime', 'Thriller']\",['USA']\r\ntt0240890,\"['Comedy', 'Romance']\",\"['USA', 'Canada']\"\r\ntt0241303,\"['Drama', 'Romance']\",\"['UK', 'USA']\"\r\ntt0241527,\"['Adventure', 'Family', 'Fantasy']\",\"['UK', 'USA']\"\r\ntt0242423,\"['Comedy', 'Mystery', 'Sci-Fi']\",['USA']\r\ntt0242508,\"['Comedy', 'Crime', 'Drama']\",['USA']\r\ntt0242527,\"['Drama', 'Mystery', 'Thriller']\",['UK']\r\ntt0242653,\"['Action', 'Sci-Fi']\",['USA']\r\ntt0243133,\"['Crime', 'Drama']\",\"['UK', 'USA']\"\r\ntt0243155,\"['Comedy', 'Drama', 'Romance']\",\"['UK', 'France', 'USA']\"\r\ntt0243585,\"['Animation', 'Adventure', 'Comedy']\",['USA']\r\ntt0243655,\"['Comedy', 'Romance']\",['USA']\r\ntt0243736,\"['Comedy', 'Romance']\",\"['USA', 'UK', 'France']\"\r\ntt0244244,\"['Action', 'Crime', 'Thriller']\",['USA']\r\ntt0244970,\"['Comedy', 'Romance']\",['USA']\r\ntt0245046,\"['Drama', 'Romance', 'Thriller']\",\"['UK', 'Australia', 'Germany']\"\r\ntt0245238,\"['Drama', 'Romance']\",['Canada']\r\ntt0245429,\"['Animation', 'Adventure', 'Family']\",['Japan']\r\ntt0245562,\"['Action', 'Drama', 'War']\",['USA']\r\ntt0245574,['Drama'],['Mexico']\r\ntt0245686,\"['Adventure', 'Comedy', 'Drama']\",['USA']\r\ntt0245712,\"['Drama', 'Thriller']\",['Mexico']\r\ntt0245803,\"['Action', 'Comedy', 'Fantasy']\",\"['USA', 'Canada']\"\r\ntt0246460,\"['Action', 'Adventure', 'Thriller']\",\"['UK', 'USA']\"\r\ntt0246544,\"['Action', 'Adventure', 'Romance']\",\"['Germany', 'Luxembourg', 'UK', 'USA']\"\r\ntt0246772,\"['Comedy', 'Romance', 'Drama']\",\"['Germany', 'Italy', 'Austria', 'Switzerland']\"\r\ntt0247425,\"['Crime', 'Drama']\",['USA']\r\ntt0247745,\"['Comedy', 'Crime', 'Mystery']\",['USA']\r\ntt0247786,['Drama'],['UK']\r\ntt0249462,\"['Drama', 'Music']\",\"['UK', 'France']\"\r\ntt0249478,\"['Crime', 'Mystery', 'Thriller']\",['USA']\r\ntt0250202,\"['Comedy', 'Romance']\",['USA']\r\ntt0250323,\"['Crime', 'Drama', 'Mystery']\",['USA']\r\ntt0250494,\"['Comedy', 'Romance']\",['USA']\r\ntt0250687,\"['Adventure', 'Comedy']\",\"['USA', 'Canada']\"\r\ntt0250720,\"['Action', 'Comedy', 'Crime']\",\"['USA', 'Australia']\"\r\ntt0250797,\"['Drama', 'Romance', 'Thriller']\",\"['France', 'Germany', 'USA']\"\r\ntt0251075,\"['Comedy', 'Sci-Fi']\",['USA']\r\ntt0251114,\"['Drama', 'War']\",['USA']\r\ntt0251127,\"['Comedy', 'Romance']\",\"['USA', 'Germany']\"\r\ntt0251160,\"['Crime', 'Drama', 'Thriller']\",['USA']\r\ntt0251736,['Horror'],['USA']\r\ntt0252028,\"['Comedy', 'Romance']\",['USA']\r\ntt0252299,\"['Comedy', 'Crime', 'Drama']\",\"['UK', 'Germany']\"\r\ntt0252866,['Comedy'],['USA']\r\ntt0253474,\"['Biography', 'Drama', 'Music']\",\"['UK', 'France', 'Poland', 'Germany']\"\r\ntt0253754,\"['Action', 'Adventure', 'Sci-Fi']\",['USA']\r\ntt0255477,\"['Comedy', 'Family', 'Fantasy']\",['Italy']\r\ntt0256380,\"['Comedy', 'Drama', 'Fantasy']\",\"['USA', 'Germany']\"\r\ntt0257044,\"['Crime', 'Drama', 'Thriller']\",['USA']\r\ntt0257076,\"['Action', 'Adventure', 'Crime']\",['USA']\r\ntt0257106,['Comedy'],\"['USA', 'Canada']\"\r\ntt0258000,\"['Crime', 'Drama', 'Thriller']\",['USA']\r\ntt0258038,\"['Action', 'Adventure', 'Comedy']\",['USA']\r\ntt0258068,\"['Drama', 'Romance', 'Thriller']\",\"['UK', 'Germany', 'USA', 'Vietnam', 'Australia', 'France', 'Canada']\"\r\ntt0258273,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0258463,\"['Action', 'Mystery', 'Thriller']\",\"['USA', 'Germany', 'Czech Republic']\"\r\ntt0259324,\"['Action', 'Fantasy', 'Thriller']\",\"['USA', 'Australia']\"\r\ntt0259567,\"['Drama', 'Romance']\",['USA']\r\ntt0259711,\"['Fantasy', 'Mystery', 'Romance']\",\"['USA', 'Spain']\"\r\ntt0261289,\"['Comedy', 'Romance']\",\"['Germany', 'USA']\"\r\ntt0261392,['Comedy'],['USA']\r\ntt0263101,\"['Action', 'Crime', 'Thriller']\",['Thailand']\r\ntt0263488,\"['Horror', 'Mystery']\",\"['USA', 'Germany']\"\r\ntt0263734,\"['Comedy', 'Drama', 'Romance']\",['Canada']\r\ntt0263757,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0264150,\"['Comedy', 'Romance']\",['USA']\r\ntt0264323,\"['Comedy', 'Horror']\",['USA']\r\ntt0264464,\"['Biography', 'Crime', 'Drama']\",\"['USA', 'Canada']\"\r\ntt0264472,\"['Drama', 'Thriller']\",['USA']\r\ntt0264616,\"['Crime', 'Drama', 'Thriller']\",\"['USA', 'Germany']\"\r\ntt0264734,\"['Animation', 'Adventure', 'Biography']\",['USA']\r\ntt0264761,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0264935,\"['Crime', 'Mystery', 'Thriller']\",['USA']\r\ntt0265298,\"['Adventure', 'Comedy', 'Family']\",\"['USA', 'Germany']\"\r\ntt0265459,\"['Drama', 'Thriller']\",['USA']\r\ntt0266489,['Comedy'],\"['Germany', 'USA']\"\r\ntt0266697,\"['Action', 'Crime', 'Thriller']\",\"['USA', 'Japan']\"\r\ntt0266747,\"['Comedy', 'Music']\",\"['Germany', 'USA']\"\r\ntt0266915,\"['Action', 'Comedy', 'Crime']\",\"['Hong Kong', 'USA']\"\r\ntt0267248,\"['Drama', 'Mystery', 'Romance']\",\"['USA', 'Germany', 'Canada']\"\r\ntt0267913,\"['Adventure', 'Comedy', 'Family']\",\"['USA', 'Australia']\"\r\ntt0268126,\"['Comedy', 'Drama']\",['USA']\r\ntt0268380,\"['Animation', 'Adventure', 'Comedy']\",['USA']\r\ntt0268397,\"['Animation', 'Action', 'Adventure']\",['USA']\r\ntt0268695,\"['Action', 'Adventure', 'Sci-Fi']\",\"['USA', 'United Arab Emirates']\"\r\ntt0268978,\"['Biography', 'Drama']\",['USA']\r\ntt0269743,['Comedy'],['South Korea']\r\ntt0270288,\"['Biography', 'Comedy', 'Crime']\",\"['USA', 'Germany', 'Canada']\"\r\ntt0271219,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0271263,\"['Animation', 'Comedy', 'Musical']\",['USA']\r\ntt0272020,\"['Action', 'Drama', 'Thriller']\",['USA']\r\ntt0272207,\"['Crime', 'Drama', 'Mystery']\",\"['USA', 'Canada']\"\r\ntt0273453,\"['Comedy', 'Drama']\",['USA']\r\ntt0273923,\"['Comedy', 'Drama']\",['USA']\r\ntt0274166,\"['Action', 'Adventure', 'Comedy']\",\"['UK', 'France', 'USA']\"\r\ntt0274309,\"['Biography', 'Comedy', 'Drama']\",['UK']\r\ntt0274558,\"['Drama', 'Romance']\",\"['USA', 'UK', 'France', 'Canada', 'Germany']\"\r\ntt0274812,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0275022,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0276276,\"['Comedy', 'Drama', 'Romance']\",\"['UK', 'France']\"\r\ntt0276751,\"['Comedy', 'Drama', 'Romance']\",\"['UK', 'USA', 'France', 'Germany']\"\r\ntt0276919,\"['Crime', 'Drama']\",\"['Denmark', 'Netherlands', 'Sweden', 'Germany', 'UK', 'France', 'Finland', 'Norway', 'Italy']\"\r\ntt0277027,['Drama'],['USA']\r\ntt0277296,\"['Action', 'Adventure', 'Fantasy']\",\"['USA', 'Germany', 'Belgium']\"\r\ntt0277371,['Comedy'],['USA']\r\ntt0277434,\"['Action', 'Drama', 'History']\",\"['USA', 'Germany', 'France']\"\r\ntt0278500,\"['Comedy', 'Drama', 'Romance']\",\"['UK', 'USA']\"\r\ntt0279493,\"['Action', 'Comedy']\",['USA']\r\ntt0279688,['Horror'],['USA']\r\ntt0280438,\"['Crime', 'Drama']\",['USA']\r\ntt0280460,\"['Comedy', 'Drama']\",['USA']\r\ntt0280590,\"['Comedy', 'Romance']\",['USA']\r\ntt0280605,\"['Comedy', 'Crime']\",\"['Australia', 'Canada']\"\r\ntt0280609,\"['Action', 'Horror', 'Thriller']\",\"['UK', 'Luxembourg', 'USA']\"\r\ntt0280778,\"['Biography', 'Drama', 'Romance']\",\"['UK', 'USA']\"\r\ntt0281322,\"['Action', 'Crime', 'Drama']\",\"['USA', 'Germany', 'Japan']\"\r\ntt0281686,\"['Comedy', 'Fantasy', 'Horror']\",['USA']\r\ntt0282120,\"['Animation', 'Adventure', 'Comedy']\",['USA']\r\ntt0282209,\"['Fantasy', 'Horror', 'Mystery']\",\"['USA', 'Australia']\"\r\ntt0283026,\"['Drama', 'Thriller']\",['USA']\r\ntt0283090,\"['Comedy', 'Crime', 'Drama']\",['USA']\r\ntt0283111,\"['Comedy', 'Romance']\",\"['Germany', 'USA']\"\r\ntt0283897,\"['Crime', 'Drama', 'Romance']\",\"['USA', 'Argentina']\"\r\ntt0284491,\"['Crime', 'Drama']\",\"['Spain', 'France', 'Italy', 'Mexico']\"\r\ntt0284837,['Comedy'],\"['France', 'UK', 'Germany']\"\r\ntt0284929,\"['Biography', 'Crime', 'Drama']\",\"['UK', 'USA']\"\r\ntt0285487,\"['Drama', 'Thriller']\",['USA']\r\ntt0285728,\"['Biography', 'Crime', 'Drama']\",['USA']\r\ntt0285742,\"['Drama', 'Romance']\",['USA']\r\ntt0285823,\"['Action', 'Crime', 'Thriller']\",\"['USA', 'Mexico']\"\r\ntt0286112,\"['Action', 'Comedy', 'Fantasy']\",\"['Hong Kong', 'China']\"\r\ntt0286306,\"['Drama', 'Horror', 'War']\",\"['UK', 'Germany']\"\r\ntt0286499,\"['Comedy', 'Drama', 'Romance']\",\"['UK', 'Germany', 'USA']\"\r\ntt0286716,\"['Action', 'Sci-Fi']\",['USA']\r\ntt0286788,\"['Comedy', 'Drama', 'Family']\",\"['USA', 'UK']\"\r\ntt0286947,\"['Comedy', 'Crime']\",['USA']\r\ntt0287717,\"['Action', 'Adventure', 'Comedy']\",['USA']\r\ntt0288477,['Horror'],\"['USA', 'Australia']\"\r\ntt0289043,\"['Drama', 'Horror', 'Sci-Fi']\",\"['UK', 'Spain']\"\r\ntt0289765,\"['Crime', 'Drama', 'Thriller']\",\"['Germany', 'USA']\"\r\ntt0289879,\"['Drama', 'Sci-Fi', 'Thriller']\",\"['USA', 'Canada']\"\r\ntt0289944,['Thriller'],\"['Denmark', 'Canada', 'UK', 'Brazil']\"\r\ntt0290002,\"['Comedy', 'Romance']\",['USA']\r\ntt0290095,\"['Action', 'Comedy', 'Sci-Fi']\",['USA']\r\ntt0290212,\"['Comedy', 'Romance']\",['USA']\r\ntt0290334,\"['Action', 'Sci-Fi', 'Thriller']\",\"['Canada', 'USA']\"\r\ntt0290747,\"['Action', 'Adventure', 'Horror']\",\"['USA', 'Germany', 'Australia']\"\r\ntt0291341,\"['Comedy', 'Crime', 'Drama']\",\"['UK', 'USA']\"\r\ntt0292644,\"['Comedy', 'Drama', 'Romance']\",\"['Germany', 'USA']\"\r\ntt0292963,\"['Crime', 'Drama', 'Thriller']\",['USA']\r\ntt0293564,\"['Action', 'Comedy', 'Crime']\",\"['USA', 'Germany']\"\r\ntt0293662,\"['Action', 'Crime', 'Thriller']\",\"['France', 'USA']\"\r\ntt0293815,\"['Comedy', 'Drama']\",['USA']\r\ntt0294357,\"['Adventure', 'Drama', 'Romance']\",\"['Germany', 'USA']\"\r\ntt0295178,\"['Action', 'Adventure', 'Comedy']\",['USA']\r\ntt0295289,\"['Comedy', 'Romance']\",['USA']\r\ntt0295297,\"['Adventure', 'Family', 'Fantasy']\",\"['UK', 'USA', 'Germany']\"\r\ntt0296572,\"['Action', 'Adventure', 'Sci-Fi']\",['USA']\r\ntt0297037,\"['Romance', 'Comedy', 'Drama']\",['USA']\r\ntt0297181,\"['Action', 'Adventure', 'Comedy']\",\"['USA', 'Hungary']\"\r\ntt0297884,['Drama'],\"['USA', 'France']\"\r\ntt0298148,\"['Animation', 'Adventure', 'Comedy']\",['USA']\r\ntt0298203,\"['Drama', 'Music']\",\"['USA', 'Germany']\"\r\ntt0298388,\"['Animation', 'Adventure', 'Comedy']\",\"['USA', 'UK']\"\r\ntt0298814,\"['Action', 'Adventure', 'Sci-Fi']\",\"['USA', 'Germany', 'Canada', 'UK']\"\r\ntt0298845,['Drama'],\"['Ireland', 'UK', 'USA']\"\r\ntt0299117,\"['Comedy', 'Drama']\",['USA']\r\ntt0299658,\"['Comedy', 'Crime', 'Musical']\",\"['USA', 'Germany', 'Canada']\"\r\ntt0299977,\"['Action', 'Adventure', 'History']\",\"['China', 'Hong Kong']\"\r\ntt0299981,\"['Action', 'Adventure', 'Drama']\",\"['UK', 'Lithuania']\"\r\ntt0300051,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0300532,\"['Drama', 'Romance', 'Sport']\",\"['USA', 'Germany']\"\r\ntt0300556,\"['Action', 'Adventure', 'Sci-Fi']\",['USA']\r\ntt0301199,\"['Crime', 'Drama', 'Thriller']\",['UK']\r\ntt0301470,['Horror'],['USA']\r\ntt0301976,['Drama'],['USA']\r\ntt0302674,\"['Adventure', 'Drama', 'Mystery']\",\"['USA', 'Argentina', 'Jordan']\"\r\ntt0302886,['Comedy'],['USA']\r\ntt0303361,\"['Comedy', 'Drama', 'Horror']\",['USA']\r\ntt0303714,\"['Comedy', 'Drama']\",['USA']\r\ntt0303816,['Horror'],['USA']\r\ntt0303933,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0304141,\"['Adventure', 'Family', 'Fantasy']\",\"['UK', 'USA']\"\r\ntt0305224,['Comedy'],['USA']\r\ntt0305357,\"['Action', 'Adventure', 'Comedy']\",['USA']\r\ntt0305396,\"['Action', 'Adventure', 'Comedy']\",\"['Australia', 'USA']\"\r\ntt0305556,\"['Comedy', 'Sci-Fi']\",['USA']\r\ntt0305711,\"['Comedy', 'Romance']\",\"['USA', 'Germany']\"\r\ntt0306047,['Comedy'],\"['USA', 'Canada']\"\r\ntt0307351,\"['Drama', 'Music']\",['USA']\r\ntt0307507,\"['Action', 'Crime', 'Mystery']\",\"['Canada', 'USA']\"\r\ntt0307987,\"['Comedy', 'Crime', 'Drama']\",\"['Germany', 'USA']\"\r\ntt0308353,\"['Animation', 'Adventure', 'Comedy']\",\"['USA', 'Germany', 'Canada', 'UK']\"\r\ntt0308508,\"['Documentary', 'Sport']\",['USA']\r\ntt0308644,\"['Biography', 'Drama', 'Family']\",\"['USA', 'UK']\"\r\ntt0309452,\"['Action', 'Drama', 'Sport']\",['Canada']\r\ntt0309912,\"['Adventure', 'Drama', 'Romance']\",\"['UK', 'USA']\"\r\ntt0310281,\"['Comedy', 'Music']\",['USA']\r\ntt0310793,\"['Documentary', 'Crime', 'Drama']\",\"['USA', 'Canada', 'Germany']\"\r\ntt0310924,\"['Action', 'Comedy', 'Crime']\",\"['UK', 'Canada']\"\r\ntt0311113,\"['Action', 'Adventure', 'Drama']\",['USA']\r\ntt0311429,\"['Action', 'Adventure', 'Fantasy']\",\"['USA', 'Germany', 'Czech Republic', 'UK']\"\r\ntt0311648,\"['Comedy', 'Drama']\",['USA']\r\ntt0312004,\"['Animation', 'Adventure', 'Comedy']\",\"['UK', 'USA']\"\r\ntt0312329,\"['Biography', 'Drama', 'Romance']\",\"['USA', 'Germany']\"\r\ntt0312528,\"['Adventure', 'Comedy', 'Family']\",['USA']\r\ntt0312640,\"['Action', 'Sci-Fi', 'Thriller']\",['USA']\r\ntt0313443,\"['Crime', 'Drama', 'Mystery']\",['USA']\r\ntt0313737,\"['Comedy', 'Romance']\",\"['USA', 'Australia']\"\r\ntt0313911,\"['Action', 'Adventure', 'Comedy']\",\"['USA', 'Canada']\"\r\ntt0314331,\"['Comedy', 'Drama', 'Romance']\",\"['UK', 'USA', 'France']\"\r\ntt0314498,\"['Comedy', 'Crime']\",\"['USA', 'Germany']\"\r\ntt0314676,\"['Comedy', 'Crime', 'Musical']\",['USA']\r\ntt0315327,\"['Comedy', 'Drama', 'Fantasy']\",['USA']\r\ntt0315733,\"['Crime', 'Drama', 'Thriller']\",['USA']\r\ntt0316654,\"['Action', 'Adventure', 'Sci-Fi']\",['USA']\r\ntt0316732,\"['Action', 'Comedy', 'Crime']\",\"['USA', 'France']\"\r\ntt0317198,\"['Comedy', 'Drama', 'Romance']\",\"['UK', 'France', 'Germany', 'Ireland', 'USA']\"\r\ntt0317248,\"['Crime', 'Drama']\",\"['Brazil', 'France', 'Germany']\"\r\ntt0317676,\"['Action', 'Adventure', 'Horror']\",\"['Germany', 'Canada', 'USA']\"\r\ntt0317740,\"['Action', 'Crime', 'Thriller']\",\"['USA', 'France', 'Italy', 'UK', 'Germany']\"\r\ntt0317919,\"['Action', 'Adventure', 'Thriller']\",\"['USA', 'Germany', 'China', 'Italy']\"\r\ntt0318155,\"['Animation', 'Adventure', 'Comedy']\",\"['Germany', 'USA']\"\r\ntt0318374,\"['Drama', 'Romance']\",['USA']\r\ntt0318462,\"['Adventure', 'Biography', 'Drama']\",\"['Argentina', 'USA', 'Chile', 'Peru', 'Brazil', 'UK', 'Germany', 'France']\"\r\ntt0319061,\"['Adventure', 'Drama', 'Fantasy']\",['USA']\r\ntt0319262,\"['Action', 'Adventure', 'Sci-Fi']\",['USA']\r\ntt0319343,\"['Comedy', 'Family', 'Fantasy']\",['USA']\r\ntt0319531,\"['Crime', 'Drama', 'Mystery']\",\"['UK', 'USA']\"\r\ntt0320244,\"['Biography', 'Crime', 'Drama']\",\"['USA', 'Netherlands']\"\r\ntt0320661,\"['Action', 'Adventure', 'Drama']\",\"['UK', 'Germany', 'Spain', 'Morocco', 'USA', 'Italy', 'France']\"\r\ntt0320691,\"['Action', 'Fantasy', 'Thriller']\",\"['USA', 'UK', 'Germany', 'Hungary']\"\r\ntt0321442,\"['Comedy', 'Drama', 'Mystery']\",['USA']\r\ntt0321704,\"['Action', 'Drama', 'Sport']\",\"['Canada', 'USA']\"\r\ntt0322259,\"['Action', 'Crime', 'Thriller']\",\"['USA', 'Germany']\"\r\ntt0322589,\"['Drama', 'Music', 'Romance']\",['USA']\r\ntt0322659,\"['Drama', 'Fantasy']\",['USA']\r\ntt0322802,\"['Documentary', 'Action', 'Comedy']\",['USA']\r\ntt0323939,\"['Crime', 'Thriller']\",['USA']\r\ntt0323944,\"['Drama', 'History']\",\"['USA', 'Canada']\"\r\ntt0324127,\"['Crime', 'Horror', 'Mystery']\",\"['UK', 'Germany', 'USA']\"\r\ntt0324133,\"['Crime', 'Drama', 'Mystery']\",\"['France', 'UK']\"\r\ntt0324216,['Horror'],['USA']\r\ntt0325258,['Comedy'],['USA']\r\ntt0325537,['Comedy'],['USA']\r\ntt0325703,\"['Action', 'Adventure', 'Fantasy']\",\"['USA', 'Germany', 'Japan', 'UK', 'Hong Kong']\"\r\ntt0325710,\"['Action', 'Drama', 'War']\",\"['USA', 'New Zealand', 'Japan']\"\r\ntt0325805,\"['Comedy', 'Crime', 'Drama']\",\"['USA', 'UK']\"\r\ntt0326769,\"['Action', 'Drama']\",['USA']\r\ntt0326856,['Comedy'],['USA']\r\ntt0327056,\"['Crime', 'Drama', 'Mystery']\",\"['USA', 'Australia']\"\r\ntt0327162,\"['Comedy', 'Horror', 'Sci-Fi']\",['USA']\r\ntt0327597,\"['Animation', 'Drama', 'Family']\",['USA']\r\ntt0327643,\"['Comedy', 'Romance']\",['USA']\r\ntt0327679,\"['Comedy', 'Family', 'Fantasy']\",\"['USA', 'Ireland', 'UK']\"\r\ntt0327850,\"['Action', 'Adventure', 'Comedy']\",['USA']\r\ntt0327919,\"['Adventure', 'Drama']\",\"['UK', 'USA']\"\r\ntt0328031,\"['Crime', 'Drama', 'Thriller']\",['USA']\r\ntt0328107,\"['Action', 'Crime', 'Drama']\",\"['USA', 'UK', 'Mexico', 'Switzerland']\"\r\ntt0328828,['Comedy'],\"['USA', 'Germany']\"\r\ntt0329101,\"['Action', 'Horror']\",\"['Canada', 'USA']\"\r\ntt0329575,\"['Drama', 'History', 'Sport']\",['USA']\r\ntt0330181,\"['Biography', 'Crime', 'Drama']\",['USA']\r\ntt0330373,\"['Adventure', 'Family', 'Fantasy']\",\"['UK', 'USA']\"\r\ntt0331632,\"['Adventure', 'Comedy', 'Family']\",\"['USA', 'Canada']\"\r\ntt0332047,\"['Comedy', 'Drama', 'Romance']\",\"['USA', 'Germany']\"\r\ntt0332280,\"['Drama', 'Romance']\",['USA']\r\ntt0332375,\"['Comedy', 'Drama']\",\"['USA', 'Canada']\"\r\ntt0332379,\"['Comedy', 'Music']\",\"['USA', 'Germany']\"\r\ntt0332452,\"['Drama', 'History']\",\"['USA', 'Malta', 'UK']\"\r\ntt0333766,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0333780,['Comedy'],['USA']\r\ntt0335119,\"['Biography', 'Drama', 'Romance']\",\"['UK', 'Luxembourg']\"\r\ntt0335266,\"['Drama', 'Romance']\",\"['USA', 'Japan']\"\r\ntt0335438,\"['Comedy', 'Crime']\",['USA']\r\ntt0335559,\"['Comedy', 'Romance']\",['USA']\r\ntt0337579,\"['Comedy', 'Drama']\",['USA']\r\ntt0337697,\"['Comedy', 'Family', 'Romance']\",\"['USA', 'Czech Republic']\"\r\ntt0337711,\"['Animation', 'Adventure', 'Comedy']\",['USA']\r\ntt0337721,\"['Adventure', 'Drama']\",['Canada']\r\ntt0337879,\"['Comedy', 'Drama', 'Sport']\",['UK']\r\ntt0337972,['Western'],['USA']\r\ntt0337978,\"['Action', 'Thriller']\",\"['USA', 'UK']\"\r\ntt0338013,\"['Drama', 'Romance', 'Sci-Fi']\",['USA']\r\ntt0338075,\"['Adventure', 'Comedy', 'Drama']\",\"['USA', 'UK']\"\r\ntt0338095,['Horror'],\"['France', 'Italy', 'Romania']\"\r\ntt0338096,\"['Drama', 'Music', 'Romance']\",['USA']\r\ntt0338135,\"['Comedy', 'Crime', 'Drama']\",\"['Canada', 'France']\"\r\ntt0338216,\"['Drama', 'Romance', 'Sport']\",\"['USA', 'Germany', 'Australia']\"\r\ntt0338348,\"['Animation', 'Adventure', 'Comedy']\",['USA']\r\ntt0338526,\"['Action', 'Adventure', 'Fantasy']\",\"['USA', 'Czech Republic', 'Romania']\"\r\ntt0338564,\"['Crime', 'Drama', 'Mystery']\",['Hong Kong']\r\ntt0338751,\"['Biography', 'Drama']\",\"['Germany', 'USA']\"\r\ntt0339091,\"['Action', 'Drama', 'Western']\",['USA']\r\ntt0339291,\"['Adventure', 'Comedy', 'Family']\",\"['Germany', 'USA']\"\r\ntt0339294,\"['Comedy', 'Fantasy', 'Horror']\",['USA']\r\ntt0339526,\"['Crime', 'Drama', 'Thriller']\",['USA']\r\ntt0339727,\"['Drama', 'Music', 'Romance']\",\"['Germany', 'USA']\"\r\ntt0340163,\"['Action', 'Crime', 'Drama']\",\"['USA', 'Germany']\"\r\ntt0340377,\"['Comedy', 'Drama']\",['USA']\r\ntt0340855,\"['Biography', 'Crime', 'Drama']\",\"['Germany', 'USA']\"\r\ntt0343121,\"['Documentary', 'Biography', 'Music']\",['USA']\r\ntt0343135,\"['Comedy', 'Romance']\",['USA']\r\ntt0343660,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0343818,\"['Action', 'Drama', 'Sci-Fi']\",\"['USA', 'Germany']\"\r\ntt0344510,\"['Drama', 'Mystery', 'Romance']\",\"['France', 'USA']\"\r\ntt0344604,\"['Comedy', 'Romance']\",['France']\r\ntt0345950,\"['Animation', 'Adventure', 'Comedy']\",['USA']\r\ntt0348150,\"['Action', 'Sci-Fi']\",['USA']\r\ntt0348333,['Comedy'],['USA']\r\ntt0348505,\"['Drama', 'Romance', 'Thriller']\",\"['UK', 'Ireland']\"\r\ntt0348836,\"['Horror', 'Mystery', 'Thriller']\",\"['USA', 'France', 'Canada', 'Spain']\"\r\ntt0349205,\"['Comedy', 'Family']\",['USA']\r\ntt0349889,\"['Action', 'Adventure', 'Drama']\",\"['Aruba', 'USA']\"\r\ntt0349903,\"['Crime', 'Thriller']\",['USA']\r\ntt0350258,\"['Biography', 'Drama', 'Music']\",['USA']\r\ntt0350261,\"['Drama', 'Family', 'Romance']\",\"['Germany', 'USA']\"\r\ntt0351283,\"['Animation', 'Adventure', 'Comedy']\",['USA']\r\ntt0351977,\"['Action', 'Crime']\",['USA']\r\ntt0352248,\"['Biography', 'Drama', 'History']\",['USA']\r\ntt0352277,\"['Biography', 'Drama', 'Music']\",\"['UK', 'USA']\"\r\ntt0353489,\"['Horror', 'Thriller']\",['Canada']\r\ntt0355295,\"['Action', 'Adventure', 'Comedy']\",\"['USA', 'Czech Republic', 'UK']\"\r\ntt0355702,\"['Biography', 'Drama', 'Sport']\",\"['USA', 'Germany']\"\r\ntt0356634,\"['Animation', 'Comedy', 'Family']\",['USA']\r\ntt0356680,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0356721,['Comedy'],\"['UK', 'Germany', 'USA']\"\r\ntt0357277,\"['Action', 'Adventure', 'Crime']\",\"['Canada', 'USA', 'Switzerland']\"\r\ntt0357413,['Comedy'],['USA']\r\ntt0357470,\"['Drama', 'Romance', 'Comedy']\",['USA']\r\ntt0357507,\"['Drama', 'Horror', 'Mystery']\",\"['USA', 'New Zealand', 'Germany']\"\r\ntt0358135,\"['Comedy', 'Drama', 'Music']\",['USA']\r\ntt0358273,\"['Biography', 'Drama', 'Music']\",\"['USA', 'Germany']\"\r\ntt0358569,\"['Documentary', 'Music']\",['UK']\r\ntt0359517,['Comedy'],['USA']\r\ntt0360009,\"['Action', 'Crime', 'Drama']\",\"['Germany', 'USA']\"\r\ntt0360717,\"['Action', 'Adventure', 'Drama']\",\"['New Zealand', 'USA', 'Germany']\"\r\ntt0361411,\"['Comedy', 'Drama', 'Musical']\",\"['UK', 'USA', 'India']\"\r\ntt0361693,\"['Comedy', 'Drama', 'Music']\",['USA']\r\ntt0361748,\"['Adventure', 'Drama', 'War']\",\"['Germany', 'USA']\"\r\ntt0362120,['Comedy'],['USA']\r\ntt0362478,\"['Drama', 'Fantasy', 'Mystery']\",['USA']\r\ntt0362506,\"['Crime', 'Drama']\",['USA']\r\ntt0362590,\"['Comedy', 'Drama']\",['USA']\r\ntt0363095,\"['Crime', 'Drama', 'Mystery']\",\"['UK', 'Ireland']\"\r\ntt0363143,\"['Drama', 'Horror', 'Mystery']\",['UK']\r\ntt0363226,\"['Action', 'Comedy', 'Crime']\",['Japan']\r\ntt0363276,\"['Horror', 'Thriller']\",['USA']\r\ntt0363473,\"['Biography', 'Drama', 'Music']\",\"['UK', 'Germany', 'USA']\"\r\ntt0363547,\"['Action', 'Horror']\",\"['USA', 'Canada', 'Japan', 'France']\"\r\ntt0364385,['Horror'],['Japan']\r\ntt0364725,\"['Comedy', 'Sport']\",['USA']\r\ntt0364751,\"['Adventure', 'Comedy', 'Mystery']\",\"['USA', 'New Zealand']\"\r\ntt0365265,\"['Drama', 'Horror']\",['Canada']\r\ntt0365485,\"['Comedy', 'Crime', 'Thriller']\",\"['Ireland', 'Mexico', 'Germany', 'USA']\"\r\ntt0365748,\"['Comedy', 'Horror']\",\"['UK', 'France']\"\r\ntt0365907,\"['Action', 'Crime', 'Drama']\",['USA']\r\ntt0365957,\"['Drama', 'Music']\",['USA']\r\ntt0366174,\"['Action', 'Adventure', 'Horror']\",['USA']\r\ntt0366548,\"['Animation', 'Adventure', 'Comedy']\",\"['USA', 'Australia']\"\r\ntt0366551,\"['Adventure', 'Comedy']\",\"['USA', 'Canada', 'Germany']\"\r\ntt0367085,['Comedy'],['USA']\r\ntt0367089,\"['Comedy', 'Drama']\",['USA']\r\ntt0367232,['Comedy'],['Canada']\r\ntt0367594,\"['Adventure', 'Comedy', 'Family']\",\"['UK', 'USA']\"\r\ntt0367652,['Comedy'],['USA']\r\ntt0367882,\"['Action', 'Adventure']\",['USA']\r\ntt0367913,\"['Drama', 'Horror']\",['Japan']\r\ntt0367959,\"['Adventure', 'Crime', 'Drama']\",\"['UK', 'Czech Republic', 'France', 'Italy', 'USA']\"\r\ntt0368008,\"['Drama', 'Mystery', 'Sci-Fi']\",['USA']\r\ntt0368688,\"['Action', 'Crime', 'Thriller']\",\"['USA', 'Canada']\"\r\ntt0368709,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0368794,\"['Biography', 'Drama', 'Music']\",\"['Germany', 'Canada', 'USA']\"\r\ntt0368909,\"['Action', 'Crime', 'Thriller']\",['Thailand']\r\ntt0369339,\"['Crime', 'Drama', 'Thriller']\",['USA']\r\ntt0369441,\"['Comedy', 'Crime']\",['USA']\r\ntt0369610,\"['Action', 'Adventure', 'Sci-Fi']\",['USA']\r\ntt0369672,['Drama'],['USA']\r\ntt0369735,\"['Comedy', 'Romance']\",\"['USA', 'Germany']\"\r\ntt0370263,\"['Action', 'Adventure', 'Horror']\",\"['USA', 'UK', 'Czech Republic', 'Canada', 'Germany']\"\r\ntt0371246,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0371746,\"['Action', 'Adventure', 'Sci-Fi']\",['USA']\r\ntt0372183,\"['Action', 'Mystery', 'Thriller']\",\"['USA', 'Germany']\"\r\ntt0372334,\"['Comedy', 'Drama']\",['USA']\r\ntt0372588,\"['Action', 'Comedy']\",\"['USA', 'Germany']\"\r\ntt0372784,\"['Action', 'Adventure']\",\"['USA', 'UK']\"\r\ntt0372824,\"['Drama', 'Music']\",\"['France', 'Switzerland', 'Germany']\"\r\ntt0373051,\"['Action', 'Adventure', 'Family']\",['USA']\r\ntt0373469,\"['Action', 'Comedy', 'Crime']\",['USA']\r\ntt0373883,['Horror'],['USA']\r\ntt0373889,\"['Action', 'Adventure', 'Family']\",\"['UK', 'USA']\"\r\ntt0373908,\"['Comedy', 'Drama', 'Family']\",\"['Germany', 'USA']\"\r\ntt0374102,\"['Adventure', 'Drama', 'Horror']\",['USA']\r\ntt0374286,\"['Action', 'Mystery', 'Sci-Fi']\",['USA']\r\ntt0374536,\"['Comedy', 'Fantasy', 'Romance']\",['USA']\r\ntt0374563,\"['Crime', 'Drama', 'Horror']\",\"['USA', 'Russia']\"\r\ntt0374900,['Comedy'],['USA']\r\ntt0375063,\"['Comedy', 'Drama', 'Romance']\",\"['USA', 'Hungary']\"\r\ntt0375173,\"['Comedy', 'Drama', 'Romance']\",\"['UK', 'USA']\"\r\ntt0375568,\"['Animation', 'Action', 'Comedy']\",\"['Japan', 'Hong Kong', 'USA']\"\r\ntt0375679,\"['Crime', 'Drama', 'Thriller']\",\"['USA', 'Germany']\"\r\ntt0375912,\"['Action', 'Crime', 'Drama']\",['UK']\r\ntt0376541,\"['Drama', 'Romance']\",\"['USA', 'UK']\"\r\ntt0376994,\"['Action', 'Sci-Fi']\",\"['Canada', 'USA', 'UK']\"\r\ntt0377062,\"['Action', 'Adventure', 'Drama']\",['USA']\r\ntt0377091,\"['Crime', 'Drama']\",['USA']\r\ntt0377092,['Comedy'],\"['USA', 'Canada']\"\r\ntt0377107,\"['Drama', 'Mystery']\",['USA']\r\ntt0377109,\"['Horror', 'Mystery']\",['USA']\r\ntt0377471,\"['Comedy', 'Crime', 'Drama']\",['USA']\r\ntt0377808,\"['Action', 'Adventure', 'Fantasy']\",\"['USA', 'Germany']\"\r\ntt0377818,['Comedy'],['USA']\r\ntt0378109,\"['Action', 'Adventure', 'Crime']\",['USA']\r\ntt0378194,\"['Action', 'Crime', 'Thriller']\",['USA']\r\ntt0378407,['Documentary'],['USA']\r\ntt0379725,\"['Biography', 'Crime', 'Drama']\",\"['USA', 'Canada']\"\r\ntt0379786,\"['Action', 'Adventure', 'Sci-Fi']\",['USA']\r\ntt0380201,\"['Action', 'Crime', 'Drama']\",['USA']\r\ntt0380510,\"['Drama', 'Fantasy', 'Thriller']\",\"['USA', 'UK', 'New Zealand']\"\r\ntt0381061,\"['Action', 'Adventure', 'Thriller']\",\"['UK', 'Czech Republic', 'USA', 'Germany', 'Bahamas']\"\r\ntt0381681,\"['Drama', 'Romance']\",\"['USA', 'France']\"\r\ntt0381849,\"['Action', 'Crime', 'Drama']\",['USA']\r\ntt0382077,\"['Drama', 'Horror', 'Mystery']\",\"['Germany', 'USA']\"\r\ntt0382625,\"['Action', 'Mystery', 'Thriller']\",\"['USA', 'Malta', 'France', 'UK']\"\r\ntt0382810,\"['Crime', 'Drama', 'Romance']\",['Australia']\r\ntt0382856,\"['Adventure', 'Comedy', 'Horror']\",['Canada']\r\ntt0382943,\"['Comedy', 'Horror', 'Mystery']\",['USA']\r\ntt0382992,\"['Action', 'Adventure', 'Sci-Fi']\",['USA']\r\ntt0383216,\"['Adventure', 'Comedy', 'Crime']\",\"['USA', 'Czech Republic']\"\r\ntt0383694,\"['Crime', 'Drama']\",\"['UK', 'France']\"\r\ntt0384642,\"['Comedy', 'Family', 'Romance']\",['USA']\r\ntt0384680,\"['Comedy', 'Drama']\",\"['USA', 'Germany']\"\r\ntt0384793,['Comedy'],['USA']\r\ntt0384806,['Horror'],['USA']\r\ntt0384814,\"['Drama', 'Romance']\",\"['USA', 'Germany']\"\r\ntt0385004,\"['Action', 'Adventure', 'Drama']\",\"['China', 'Hong Kong']\"\r\ntt0385057,['Comedy'],\"['Canada', 'UK', 'USA']\"\r\ntt0385267,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0385307,\"['Action', 'Comedy', 'Crime']\",['USA']\r\ntt0385880,\"['Animation', 'Adventure', 'Comedy']\",['USA']\r\ntt0385988,\"['Adventure', 'Family', 'Musical']\",['USA']\r\ntt0386032,\"['Documentary', 'Drama']\",['USA']\r\ntt0386117,\"['Adventure', 'Drama', 'Family']\",\"['Germany', 'Australia', 'USA']\"\r\ntt0386140,\"['Action', 'Adventure', 'Romance']\",\"['USA', 'Mexico']\"\r\ntt0386588,\"['Comedy', 'Romance']\",['USA']\r\ntt0386751,\"['Drama', 'Mystery', 'Thriller']\",\"['Canada', 'UK']\"\r\ntt0387564,\"['Horror', 'Mystery', 'Thriller']\",['USA']\r\ntt0387575,\"['Comedy', 'Fantasy', 'Horror']\",\"['Romania', 'USA', 'UK']\"\r\ntt0388125,\"['Comedy', 'Drama', 'Romance']\",\"['USA', 'Germany', 'UK']\"\r\ntt0388182,\"['Comedy', 'Drama']\",['USA']\r\ntt0388395,\"['Comedy', 'Drama', 'Music']\",['Germany']\r\ntt0388482,\"['Action', 'Thriller']\",\"['France', 'USA', 'Germany']\"\r\ntt0388500,['Comedy'],['USA']\r\ntt0388795,\"['Drama', 'Romance']\",\"['USA', 'Canada']\"\r\ntt0389790,\"['Animation', 'Adventure', 'Comedy']\",\"['USA', 'Australia']\"\r\ntt0389860,\"['Comedy', 'Drama', 'Fantasy']\",['USA']\r\ntt0390022,\"['Action', 'Drama', 'Sport']\",\"['Germany', 'USA']\"\r\ntt0390468,\"['Drama', 'Thriller', 'War']\",['USA']\r\ntt0391024,['Documentary'],['USA']\r\ntt0391198,\"['Horror', 'Mystery', 'Thriller']\",\"['USA', 'Japan']\"\r\ntt0393162,\"['Biography', 'Drama', 'Sport']\",\"['USA', 'Germany']\"\r\ntt0395169,\"['Biography', 'Drama', 'History']\",\"['UK', 'South Africa', 'Italy']\"\r\ntt0395584,['Horror'],\"['USA', 'Germany']\"\r\ntt0395972,['Drama'],['USA']\r\ntt0396171,\"['Crime', 'Drama']\",\"['Germany', 'France', 'Spain', 'USA', 'Czech Republic', 'Belgium', 'Netherlands', 'Luxembourg', 'Latvia', 'UK']\"\r\ntt0396184,\"['Action', 'Crime', 'Drama']\",\"['Denmark', 'UK']\"\r\ntt0396269,\"['Comedy', 'Romance']\",['USA']\r\ntt0397044,\"['Drama', 'Fantasy', 'Horror']\",\"['USA', 'UK', 'Germany', 'Romania']\"\r\ntt0397401,\"['Comedy', 'Crime']\",['USA']\r\ntt0397535,\"['Drama', 'Romance']\",\"['USA', 'Japan', 'France']\"\r\ntt0398165,\"['Comedy', 'Crime', 'Sport']\",['USA']\r\ntt0399201,\"['Action', 'Sci-Fi', 'Thriller']\",['USA']\r\ntt0399295,\"['Action', 'Crime', 'Drama']\",\"['USA', 'Germany', 'France']\"\r\ntt0399901,['Drama'],['USA']\r\ntt0400717,\"['Animation', 'Adventure', 'Comedy']\",['USA']\r\ntt0401383,\"['Biography', 'Drama']\",\"['France', 'USA']\"\r\ntt0401420,\"['Drama', 'Thriller']\",\"['Canada', 'USA']\"\r\ntt0401792,\"['Crime', 'Thriller']\",['USA']\r\ntt0401855,\"['Action', 'Fantasy', 'Sci-Fi']\",['USA']\r\ntt0402022,\"['Action', 'Adventure', 'Crime']\",\"['USA', 'Germany', 'Brazil', 'Italy']\"\r\ntt0403702,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0405061,\"['Horror', 'Mystery']\",\"['Hong Kong', 'Singapore']\"\r\ntt0405159,\"['Drama', 'Sport']\",['USA']\r\ntt0405163,['Comedy'],\"['USA', 'Germany']\"\r\ntt0405422,\"['Comedy', 'Romance']\",['USA']\r\ntt0406158,\"['Biography', 'Drama']\",['USA']\r\ntt0406375,\"['Action', 'Adventure', 'Comedy']\",['USA']\r\ntt0406650,\"['Comedy', 'Drama']\",\"['USA', 'Germany']\"\r\ntt0407304,\"['Adventure', 'Sci-Fi', 'Thriller']\",['USA']\r\ntt0407887,\"['Crime', 'Drama', 'Thriller']\",['USA']\r\ntt0408236,\"['Drama', 'Musical', 'Thriller']\",\"['USA', 'UK']\"\r\ntt0408306,\"['Action', 'Drama', 'History']\",\"['France', 'Canada', 'USA']\"\r\ntt0408524,\"['Comedy', 'Sport']\",['USA']\r\ntt0408839,\"['Comedy', 'Romance']\",['USA']\r\ntt0408985,\"['Comedy', 'Romance']\",['USA']\r\ntt0409182,\"['Action', 'Adventure', 'Drama']\",['USA']\r\ntt0409459,\"['Action', 'Drama', 'Mystery']\",['USA']\r\ntt0409847,\"['Action', 'Sci-Fi', 'Thriller']\",\"['USA', 'India']\"\r\ntt0410097,\"['Crime', 'Drama', 'Music']\",['USA']\r\ntt0411477,\"['Action', 'Adventure', 'Fantasy']\",\"['USA', 'Germany', 'Hungary']\"\r\ntt0412019,\"['Comedy', 'Drama', 'Mystery']\",\"['France', 'USA']\"\r\ntt0412798,\"['Drama', 'Horror', 'Mystery']\",\"['Germany', 'UK', 'USA']\"\r\ntt0413099,\"['Comedy', 'Family', 'Fantasy']\",['USA']\r\ntt0413267,\"['Animation', 'Adventure', 'Comedy']\",['USA']\r\ntt0413300,\"['Action', 'Sci-Fi']\",['USA']\r\ntt0413466,\"['Comedy', 'Drama']\",['USA']\r\ntt0413895,\"['Comedy', 'Family', 'Fantasy']\",\"['USA', 'Germany', 'Australia']\"\r\ntt0414055,\"['Biography', 'Drama', 'History']\",\"['UK', 'France', 'Germany', 'USA']\"\r\ntt0414387,\"['Drama', 'Romance']\",\"['France', 'UK', 'USA']\"\r\ntt0414852,\"['Action', 'Crime', 'Sci-Fi']\",['France']\r\ntt0414853,\"['Animation', 'Adventure', 'Comedy']\",\"['USA', 'Germany', 'Netherlands']\"\r\ntt0415306,\"['Comedy', 'Sport']\",['USA']\r\ntt0416051,\"['Comedy', 'Romance']\",['USA']\r\ntt0416212,['Drama'],['USA']\r\ntt0416236,\"['Action', 'Adventure', 'Drama']\",['USA']\r\ntt0416320,\"['Drama', 'Romance', 'Thriller']\",\"['UK', 'Ireland', 'Luxembourg']\"\r\ntt0416449,\"['Action', 'Drama']\",\"['USA', 'Canada', 'Bulgaria']\"\r\ntt0416508,\"['Biography', 'Drama', 'Romance']\",\"['UK', 'Ireland']\"\r\ntt0417148,\"['Action', 'Crime', 'Thriller']\",\"['USA', 'Germany']\"\r\ntt0417741,\"['Action', 'Adventure', 'Family']\",\"['UK', 'USA']\"\r\ntt0417751,\"['Comedy', 'Romance']\",['USA']\r\ntt0418279,\"['Action', 'Adventure', 'Sci-Fi']\",['USA']\r\ntt0418647,\"['Drama', 'Family', 'Sport']\",['USA']\r\ntt0418819,\"['Horror', 'Sci-Fi', 'Thriller']\",\"['France', 'Canada', 'USA']\"\r\ntt0419706,\"['Action', 'Adventure', 'Fantasy']\",\"['UK', 'Czech Republic', 'Germany', 'USA']\"\r\ntt0419843,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0419887,['Drama'],\"['USA', 'China', 'UK', 'Afghanistan']\"\r\ntt0420251,['Horror'],\"['Hong Kong', 'Japan', 'South Korea']\"\r\ntt0420740,\"['Drama', 'Thriller']\",\"['Iceland', 'USA']\"\r\ntt0420757,\"['Comedy', 'Drama']\",['USA']\r\ntt0421082,\"['Biography', 'Drama', 'Music']\",\"['UK', 'USA', 'Australia', 'Japan', 'France']\"\r\ntt0421238,\"['Crime', 'Drama', 'Western']\",\"['Australia', 'UK']\"\r\ntt0421239,\"['Action', 'Mystery', 'Thriller']\",['USA']\r\ntt0421715,\"['Drama', 'Fantasy', 'Romance']\",['USA']\r\ntt0421729,\"['Comedy', 'Crime']\",['USA']\r\ntt0423294,\"['Animation', 'Comedy', 'Family']\",['USA']\r\ntt0423977,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0424095,\"['Animation', 'Adventure', 'Comedy']\",\"['UK', 'USA']\"\r\ntt0424136,\"['Drama', 'Thriller']\",['USA']\r\ntt0424345,['Comedy'],['USA']\r\ntt0424774,\"['Action', 'Adventure', 'Comedy']\",['USA']\r\ntt0424993,\"['Comedy', 'Romance']\",['USA']\r\ntt0425061,\"['Action', 'Adventure', 'Comedy']\",['USA']\r\ntt0425112,\"['Action', 'Comedy', 'Mystery']\",\"['UK', 'France']\"\r\ntt0425123,\"['Comedy', 'Drama', 'Fantasy']\",['USA']\r\ntt0425379,\"['Crime', 'Drama', 'Thriller']\",['Denmark']\r\ntt0425395,['Comedy'],\"['USA', 'Germany']\"\r\ntt0425637,\"['Action', 'Adventure', 'Drama']\",\"['China', 'Hong Kong', 'Japan', 'Taiwan', 'South Korea']\"\r\ntt0426459,\"['Action', 'Comedy', 'Horror']\",['USA']\r\ntt0426501,\"['Action', 'Crime', 'Drama']\",['UK']\r\ntt0426592,\"['Action', 'Comedy']\",['USA']\r\ntt0426615,\"['Comedy', 'Crime', 'Drama']\",['USA']\r\ntt0427152,['Comedy'],['USA']\r\ntt0427229,\"['Comedy', 'Romance']\",['USA']\r\ntt0427309,\"['Biography', 'Drama', 'Romance']\",['USA']\r\ntt0427312,\"['Documentary', 'Biography']\",['USA']\r\ntt0427327,\"['Comedy', 'Drama', 'Musical']\",\"['USA', 'UK', 'Canada']\"\r\ntt0427470,\"['Crime', 'Drama', 'Thriller']\",['USA']\r\ntt0427944,\"['Comedy', 'Drama']\",['USA']\r\ntt0427969,\"['Biography', 'Crime', 'Drama']\",['USA']\r\ntt0428518,['Documentary'],['USA']\r\ntt0428803,\"['Documentary', 'Family']\",['France']\r\ntt0429493,\"['Action', 'Adventure', 'Thriller']\",\"['USA', 'UK']\"\r\ntt0429573,\"['Drama', 'History', 'Horror']\",\"['UK', 'Canada', 'Romania', 'USA']\"\r\ntt0430105,\"['Action', 'Crime', 'Drama']\",['USA']\r\ntt0430308,\"['Biography', 'Crime', 'Drama']\",\"['USA', 'Canada']\"\r\ntt0430912,\"['Drama', 'Mystery', 'Thriller']\",\"['UK', 'Germany', 'Spain', 'USA']\"\r\ntt0430919,\"['Comedy', 'Romance']\",\"['UK', 'Hungary', 'Germany', 'USA']\"\r\ntt0430922,['Comedy'],\"['Germany', 'USA']\"\r\ntt0431021,\"['Horror', 'Mystery', 'Thriller']\",\"['USA', 'Canada']\"\r\ntt0431308,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0432283,\"['Animation', 'Adventure', 'Comedy']\",\"['USA', 'UK']\"\r\ntt0432348,\"['Horror', 'Mystery']\",\"['USA', 'Canada']\"\r\ntt0433362,\"['Action', 'Fantasy', 'Horror']\",\"['Australia', 'USA']\"\r\ntt0433386,\"['Horror', 'Thriller']\",\"['USA', 'Japan']\"\r\ntt0433412,\"['Comedy', 'Family', 'Romance']\",['USA']\r\ntt0433416,['Drama'],\"['USA', 'India']\"\r\ntt0434124,\"['Comedy', 'Drama', 'Music']\",\"['USA', 'UK']\"\r\ntt0434139,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0434409,\"['Action', 'Drama', 'Sci-Fi']\",\"['USA', 'UK', 'Germany']\"\r\ntt0435625,\"['Adventure', 'Horror', 'Thriller']\",['UK']\r\ntt0436697,\"['Biography', 'Drama', 'History']\",\"['UK', 'USA', 'France', 'Italy']\"\r\ntt0437072,\"['Drama', 'Action']\",['USA']\r\ntt0437800,\"['Drama', 'Family']\",['USA']\r\ntt0438205,\"['Documentary', 'Family', 'Music']\",['USA']\r\ntt0438488,\"['Action', 'Sci-Fi']\",\"['USA', 'Germany', 'UK', 'Italy']\"\r\ntt0439815,\"['Comedy', 'Horror', 'Sci-Fi']\",\"['Canada', 'USA']\"\r\ntt0440963,\"['Action', 'Mystery', 'Thriller']\",\"['USA', 'Germany', 'France', 'Spain']\"\r\ntt0441773,\"['Animation', 'Action', 'Adventure']\",['USA']\r\ntt0442933,\"['Animation', 'Action', 'Adventure']\",\"['USA', 'UK']\"\r\ntt0443295,\"['Comedy', 'Family', 'Fantasy']\",['USA']\r\ntt0443435,\"['Horror', 'Mystery', 'Thriller']\",['USA']\r\ntt0443489,\"['Drama', 'Music', 'Musical']\",['USA']\r\ntt0443536,\"['Animation', 'Comedy', 'Crime']\",['USA']\r\ntt0443559,\"['Action', 'Crime', 'Drama']\",['USA']\r\ntt0443632,\"['Action', 'Crime', 'Thriller']\",['USA']\r\ntt0443649,\"['Action', 'Adventure', 'Drama']\",\"['USA', 'South Africa']\"\r\ntt0443706,\"['Crime', 'Drama', 'Mystery']\",['USA']\r\ntt0444682,\"['Horror', 'Thriller']\",['USA']\r\ntt0445934,\"['Comedy', 'Sport']\",['USA']\r\ntt0445946,\"['Action', 'Crime', 'Drama']\",\"['Germany', 'USA']\"\r\ntt0446029,\"['Action', 'Comedy', 'Fantasy']\",\"['USA', 'UK', 'Canada', 'Japan']\"\r\ntt0448011,\"['Action', 'Drama', 'Mystery']\",\"['USA', 'UK', 'Australia']\"\r\ntt0448075,\"['Crime', 'Drama', 'Mystery']\",['USA']\r\ntt0448115,\"['Action', 'Adventure', 'Comedy']\",\"['USA', 'Canada']\"\r\ntt0448157,\"['Action', 'Fantasy']\",['USA']\r\ntt0448564,\"['Drama', 'Mystery', 'Thriller']\",['Australia']\r\ntt0448694,\"['Animation', 'Adventure', 'Comedy']\",['USA']\r\ntt0449010,\"['Action', 'Adventure', 'Family']\",\"['USA', 'UK', 'Hungary']\"\r\ntt0449059,\"['Comedy', 'Drama']\",['USA']\r\ntt0449467,['Drama'],\"['France', 'USA', 'Mexico']\"\r\ntt0450259,\"['Adventure', 'Drama', 'Thriller']\",\"['USA', 'Germany']\"\r\ntt0450278,['Horror'],\"['USA', 'Czech Republic']\"\r\ntt0450336,['Horror'],['USA']\r\ntt0450385,\"['Fantasy', 'Horror', 'Mystery']\",['USA']\r\ntt0450405,\"['Action', 'Adventure', 'Fantasy']\",['USA']\r\ntt0451079,\"['Animation', 'Adventure', 'Comedy']\",['USA']\r\ntt0451279,\"['Action', 'Adventure', 'Fantasy']\",\"['USA', 'China', 'Hong Kong']\"\r\ntt0452594,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0452598,\"['Adventure', 'Comedy', 'Family']\",\"['USA', 'Canada']\"\r\ntt0452608,\"['Action', 'Sci-Fi', 'Thriller']\",\"['USA', 'Germany', 'UK']\"\r\ntt0452623,\"['Crime', 'Drama', 'Mystery']\",['USA']\r\ntt0452625,\"['Comedy', 'Romance']\",\"['USA', 'Canada']\"\r\ntt0452694,\"['Drama', 'Fantasy', 'Romance']\",['USA']\r\ntt0453451,\"['Comedy', 'Family']\",\"['UK', 'France', 'Germany']\"\r\ntt0454841,\"['Horror', 'Thriller']\",\"['USA', 'France', 'Romania']\"\r\ntt0454848,\"['Crime', 'Drama', 'Mystery']\",['USA']\r\ntt0454879,\"['Crime', 'Drama', 'Thriller']\",\"['USA', 'Germany', 'Brazil']\"\r\ntt0454921,\"['Biography', 'Drama']\",['USA']\r\ntt0454945,\"['Comedy', 'Romance', 'Sport']\",\"['USA', 'Canada']\"\r\ntt0455362,\"['Action', 'Comedy', 'Horror']\",\"['Germany', 'South Africa', 'USA']\"\r\ntt0455499,\"['Animation', 'Adventure', 'Comedy']\",\"['UK', 'USA']\"\r\ntt0455584,\"['Mystery', 'Sci-Fi', 'Thriller']\",\"['Spain', 'UK']\"\r\ntt0455590,\"['Biography', 'Drama', 'History']\",\"['UK', 'Germany']\"\r\ntt0455612,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0455760,\"['Horror', 'Mystery', 'Thriller']\",['USA']\r\ntt0455824,\"['Adventure', 'Comedy', 'Drama']\",\"['UK', 'Australia', 'USA']\"\r\ntt0455857,\"['Horror', 'Thriller']\",['USA']\r\ntt0455944,\"['Action', 'Crime', 'Thriller']\",['USA']\r\ntt0455967,\"['Comedy', 'Romance']\",\"['USA', 'Canada']\"\r\ntt0456554,['Comedy'],['USA']\r\ntt0457319,\"['Action', 'Crime', 'Horror']\",['USA']\r\ntt0457400,\"['Action', 'Adventure', 'Comedy']\",['USA']\r\ntt0457510,\"['Comedy', 'Family', 'Sport']\",\"['USA', 'Mexico']\"\r\ntt0457572,\"['Comedy', 'Drama', 'Horror']\",['Canada']\r\ntt0457939,\"['Comedy', 'Romance']\",['USA']\r\ntt0458352,\"['Comedy', 'Drama']\",\"['USA', 'France']\"\r\ntt0460732,['Comedy'],['USA']\r\ntt0460740,\"['Comedy', 'Drama', 'Romance']\",['UK']\r\ntt0460810,\"['Comedy', 'Drama']\",['USA']\r\ntt0462499,['Action'],\"['Germany', 'USA']\"\r\ntt0462504,\"['Action', 'Biography', 'Drama']\",\"['USA', 'Luxembourg']\"\r\ntt0462519,['Comedy'],['USA']\r\ntt0463034,\"['Comedy', 'Romance']\",['USA']\r\ntt0463854,\"['Drama', 'Horror', 'Sci-Fi']\",\"['UK', 'Spain']\"\r\ntt0463985,\"['Action', 'Crime', 'Thriller']\",\"['USA', 'Germany', 'Japan']\"\r\ntt0463998,\"['Biography', 'Crime', 'Drama']\",\"['Germany', 'USA']\"\r\ntt0464154,\"['Comedy', 'Horror']\",\"['USA', 'Japan']\"\r\ntt0465494,\"['Action', 'Crime', 'Thriller']\",\"['France', 'USA']\"\r\ntt0465580,\"['Action', 'Sci-Fi', 'Thriller']\",\"['USA', 'Canada']\"\r\ntt0467200,\"['Biography', 'Drama', 'History']\",\"['UK', 'USA']\"\r\ntt0467406,\"['Comedy', 'Drama']\",['USA']\r\ntt0468492,\"['Action', 'Drama', 'Horror']\",['South Korea']\r\ntt0468565,\"['Crime', 'Drama']\",\"['UK', 'South Africa']\"\r\ntt0468569,\"['Action', 'Crime', 'Drama']\",\"['USA', 'UK']\"\r\ntt0469021,\"['Action', 'Comedy', 'Crime']\",['UK']\r\ntt0469062,\"['Drama', 'Horror', 'Mystery']\",['USA']\r\ntt0469494,['Drama'],['USA']\r\ntt0469623,['Drama'],\"['USA', 'UK', 'Canada']\"\r\ntt0469641,\"['Drama', 'History', 'Thriller']\",['USA']\r\ntt0469999,['Crime'],['USA']\r\ntt0470705,\"['Drama', 'Horror', 'Thriller']\",\"['USA', 'Germany']\"\r\ntt0470752,\"['Drama', 'Mystery', 'Sci-Fi']\",['UK']\r\ntt0470761,\"['Drama', 'Horror', 'Mystery']\",['USA']\r\ntt0470993,['Horror'],['USA']\r\ntt0472062,\"['Biography', 'Comedy', 'Drama']\",\"['USA', 'Germany']\"\r\ntt0472160,\"['Comedy', 'Fantasy', 'Romance']\",\"['UK', 'USA']\"\r\ntt0472181,\"['Animation', 'Adventure', 'Comedy']\",\"['USA', 'Belgium', 'Canada']\"\r\ntt0472458,\"['Drama', 'Horror']\",['Hong Kong']\r\ntt0473308,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0473464,\"['Drama', 'Thriller']\",['USA']\r\ntt0473488,\"['Crime', 'Drama']\",['USA']\r\ntt0473692,\"['Documentary', 'Music']\",['USA']\r\ntt0475290,\"['Comedy', 'Drama', 'Music']\",\"['USA', 'UK', 'Japan']\"\r\ntt0475394,\"['Action', 'Crime', 'Drama']\",\"['UK', 'France', 'USA']\"\r\ntt0476964,\"['Action', 'Crime', 'Drama']\",['USA']\r\ntt0477051,\"['Comedy', 'Romance']\",['USA']\r\ntt0477080,\"['Action', 'Thriller']\",['USA']\r\ntt0477139,\"['Comedy', 'Drama', 'Fantasy']\",\"['USA', 'UK']\"\r\ntt0477347,\"['Adventure', 'Comedy', 'Family']\",\"['USA', 'UK']\"\r\ntt0477348,\"['Crime', 'Drama', 'Thriller']\",\"['USA', 'Mexico']\"\r\ntt0478188,\"['Action', 'Adventure', 'Fantasy']\",['USA']\r\ntt0478197,\"['Documentary', 'Biography', 'Music']\",['USA']\r\ntt0478304,\"['Drama', 'Fantasy']\",['USA']\r\ntt0478311,\"['Comedy', 'Romance']\",['USA']\r\ntt0479143,\"['Action', 'Drama', 'Sport']\",['USA']\r\ntt0479162,\"['Comedy', 'Drama', 'Sci-Fi']\",['USA']\r\ntt0479500,\"['Comedy', 'Crime', 'Family']\",['USA']\r\ntt0479884,\"['Action', 'Crime', 'Thriller']\",['USA']\r\ntt0479952,\"['Animation', 'Adventure', 'Comedy']\",['USA']\r\ntt0480249,\"['Adventure', 'Drama', 'Sci-Fi']\",['USA']\r\ntt0480255,\"['Action', 'Adventure', 'Crime']\",\"['USA', 'France']\"\r\ntt0480271,\"['Comedy', 'Romance']\",['USA']\r\ntt0480669,\"['Horror', 'Mystery', 'Sci-Fi']\",['Spain']\r\ntt0480687,\"['Comedy', 'Romance']\",['USA']\r\ntt0481499,\"['Animation', 'Action', 'Adventure']\",['USA']\r\ntt0482088,\"['Comedy', 'Romance']\",['France']\r\ntt0482463,\"['Drama', 'Romance']\",\"['USA', 'Mexico']\"\r\ntt0482606,\"['Horror', 'Mystery', 'Thriller']\",['USA']\r\ntt0483607,\"['Action', 'Sci-Fi', 'Thriller']\",\"['UK', 'USA', 'South Africa', 'Germany']\"\r\ntt0486259,['Documentary'],['USA']\r\ntt0486321,\"['Animation', 'Adventure', 'Family']\",\"['Belgium', 'USA']\"\r\ntt0486358,['Documentary'],['USA']\r\ntt0486583,\"['Comedy', 'Family', 'Fantasy']\",['USA']\r\ntt0486655,\"['Adventure', 'Family', 'Fantasy']\",\"['UK', 'USA']\"\r\ntt0486674,\"['Comedy', 'Drama']\",['USA']\r\ntt0486822,\"['Crime', 'Drama', 'Mystery']\",['USA']\r\ntt0488085,\"['Comedy', 'Crime', 'Thriller']\",['UK']\r\ntt0488508,\"['Documentary', 'Family']\",['USA']\r\ntt0489049,\"['Adventure', 'Comedy', 'Drama']\",['USA']\r\ntt0489099,\"['Action', 'Adventure', 'Sci-Fi']\",\"['USA', 'Canada', 'Mexico', 'Spain', 'Italy']\"\r\ntt0489237,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0489270,\"['Horror', 'Mystery', 'Thriller']\",\"['USA', 'Canada']\"\r\ntt0489281,\"['Drama', 'War']\",['USA']\r\ntt0489318,\"['Crime', 'Horror', 'Thriller']\",\"['Spain', 'USA']\"\r\ntt0489327,\"['Comedy', 'Drama', 'Romance']\",['UK']\r\ntt0490181,\"['Action', 'Adventure', 'Sci-Fi']\",\"['UK', 'USA']\"\r\ntt0490215,\"['Drama', 'History']\",\"['USA', 'UK', 'Taiwan', 'Japan', 'Mexico', 'Italy']\"\r\ntt0491152,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0491747,['Drama'],\"['Canada', 'UK', 'USA']\"\r\ntt0492044,\"['Drama', 'Horror', 'Mystery']\",\"['USA', 'Canada', 'UK']\"\r\ntt0492389,\"['Comedy', 'Family']\",\"['USA', 'United Arab Emirates']\"\r\ntt0492486,\"['Comedy', 'Horror', 'Mystery']\",\"['Ireland', 'UK', 'Denmark']\"\r\ntt0492492,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0492619,['Comedy'],['USA']\r\ntt0492912,\"['Drama', 'Thriller']\",['USA']\r\ntt0493129,['Comedy'],['USA']\r\ntt0493430,\"['Documentary', 'Action', 'Comedy']\",['USA']\r\ntt0493464,\"['Action', 'Crime', 'Fantasy']\",\"['USA', 'Germany']\"\r\ntt0494222,\"['Comedy', 'Romance']\",['New Zealand']\r\ntt0496806,\"['Action', 'Crime', 'Thriller']\",['USA']\r\ntt0497116,\"['Documentary', 'News']\",['USA']\r\ntt0497465,\"['Comedy', 'Drama', 'Romance']\",\"['Spain', 'USA']\"\r\ntt0498353,['Horror'],\"['USA', 'Czech Republic']\"\r\ntt0498381,\"['Drama', 'Horror', 'Mystery']\",['USA']\r\ntt0499554,\"['Comedy', 'Crime']\",['USA']\r\ntt0756729,\"['Comedy', 'Drama']\",['USA']\r\ntt0757361,\"['Comedy', 'Drama']\",['USA']\r\ntt0758746,\"['Horror', 'Mystery', 'Thriller']\",['USA']\r\ntt0758752,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0758758,\"['Adventure', 'Biography', 'Drama']\",['USA']\r\ntt0758774,\"['Action', 'Drama', 'Thriller']\",\"['USA', 'UK']\"\r\ntt0758794,\"['Drama', 'Sport']\",['USA']\r\ntt0760188,['Drama'],['USA']\r\ntt0762073,\"['Drama', 'Fantasy', 'Horror']\",\"['South Korea', 'USA']\"\r\ntt0762107,\"['Comedy', 'Romance']\",['USA']\r\ntt0762125,\"['Animation', 'Adventure', 'Comedy']\",\"['Spain', 'UK', 'USA']\"\r\ntt0763831,\"['Comedy', 'Drama']\",['USA']\r\ntt0765429,\"['Biography', 'Crime', 'Drama']\",\"['USA', 'UK']\"\r\ntt0765443,\"['Action', 'Crime', 'Drama']\",\"['UK', 'Canada', 'USA']\"\r\ntt0770752,\"['Action', 'Adventure', 'Comedy']\",['USA']\r\ntt0770778,\"['Drama', 'Fantasy', 'Thriller']\",\"['USA', 'Canada']\"\r\ntt0770810,['Drama'],\"['Canada', 'USA', 'France']\"\r\ntt0770828,\"['Action', 'Adventure', 'Sci-Fi']\",\"['USA', 'UK']\"\r\ntt0775489,\"['Animation', 'Drama', 'Family']\",\"['France', 'UK']\"\r\ntt0780511,['Drama'],['USA']\r\ntt0780567,\"['Comedy', 'Drama', 'Family']\",\"['USA', 'Germany']\"\r\ntt0780607,\"['Horror', 'Sci-Fi', 'Thriller']\",['USA']\r\ntt0780608,['Comedy'],\"['USA', 'Germany']\"\r\ntt0780622,\"['Comedy', 'Fantasy', 'Horror']\",['USA']\r\ntt0780653,\"['Drama', 'Fantasy', 'Horror']\",['USA']\r\ntt0781008,\"['Documentary', 'Short', 'Comedy']\",['USA']\r\ntt0785006,\"['Comedy', 'Family']\",\"['Germany', 'USA']\"\r\ntt0785035,['Action'],['Thailand']\r\ntt0787470,\"['Comedy', 'Sport']\",['USA']\r\ntt0787474,\"['Animation', 'Adventure', 'Comedy']\",['USA']\r\ntt0787475,\"['Comedy', 'Sport']\",['USA']\r\ntt0790618,\"['Comedy', 'Drama']\",['USA']\r\ntt0790636,\"['Biography', 'Drama']\",['USA']\r\ntt0790724,\"['Action', 'Crime', 'Thriller']\",['USA']\r\ntt0790736,\"['Action', 'Comedy', 'Crime']\",['USA']\r\ntt0795351,\"['Horror', 'Mystery', 'Thriller']\",\"['USA', 'Canada']\"\r\ntt0795421,\"['Comedy', 'Musical', 'Romance']\",\"['USA', 'UK', 'Germany']\"\r\ntt0795426,['Drama'],['USA']\r\ntt0795461,['Comedy'],['USA']\r\ntt0795493,\"['Crime', 'Drama', 'Romance']\",\"['USA', 'UK', 'France']\"\r\ntt0796366,\"['Action', 'Adventure', 'Sci-Fi']\",\"['USA', 'Germany']\"\r\ntt0800003,\"['Action', 'Adventure', 'Comedy']\",['USA']\r\ntt0800039,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0800241,\"['Crime', 'Drama', 'Mystery']\",\"['UK', 'Germany', 'Spain', 'Lithuania']\"\r\ntt0800320,\"['Action', 'Adventure', 'Fantasy']\",\"['USA', 'UK', 'Australia']\"\r\ntt0802948,\"['Biography', 'Crime', 'Drama']\",['USA']\r\ntt0803096,\"['Action', 'Adventure', 'Fantasy']\",\"['China', 'Canada', 'Japan', 'USA']\"\r\ntt0804452,\"['Comedy', 'Family', 'Music']\",['USA']\r\ntt0804497,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0804516,\"['Crime', 'Horror', 'Thriller']\",['USA']\r\ntt0805564,\"['Comedy', 'Drama', 'Romance']\",\"['USA', 'Canada']\"\r\ntt0805570,\"['Horror', 'Mystery']\",['USA']\r\ntt0805619,\"['Horror', 'Thriller']\",\"['USA', 'Canada']\"\r\ntt0808151,\"['Action', 'Mystery', 'Thriller']\",\"['USA', 'Italy']\"\r\ntt0808265,\"['Fantasy', 'Horror', 'Thriller']\",\"['New Zealand', 'UK']\"\r\ntt0810817,\"['Action', 'Adventure', 'Mystery']\",['USA']\r\ntt0810819,\"['Biography', 'Drama', 'Romance']\",\"['UK', 'USA', 'Germany', 'Denmark', 'Belgium', 'Japan']\"\r\ntt0811080,\"['Action', 'Adventure', 'Comedy']\",\"['USA', 'Australia', 'Germany']\"\r\ntt0811138,\"['Comedy', 'Romance', 'Sport']\",\"['UK', 'Germany', 'USA']\"\r\ntt0814022,\"['Action', 'Crime', 'Thriller']\",\"['USA', 'Czech Republic', 'Thailand']\"\r\ntt0814075,\"['Documentary', 'Crime']\",['USA']\r\ntt0814255,\"['Adventure', 'Family', 'Fantasy']\",\"['UK', 'Canada', 'USA']\"\r\ntt0815230,['Comedy'],['USA']\r\ntt0815236,\"['Comedy', 'Romance']\",['USA']\r\ntt0815245,\"['Drama', 'Horror', 'Mystery']\",\"['USA', 'Canada', 'Germany']\"\r\ntt0816462,\"['Action', 'Adventure', 'Fantasy']\",['USA']\r\ntt0816711,\"['Action', 'Adventure', 'Horror']\",\"['USA', 'UK', 'Malta']\"\r\ntt0817177,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0817230,\"['Comedy', 'Romance']\",['USA']\r\ntt0817538,\"['Comedy', 'Drama']\",['USA']\r\ntt0821642,\"['Biography', 'Drama', 'Music']\",\"['UK', 'France', 'USA']\"\r\ntt0822832,\"['Comedy', 'Drama', 'Family']\",['USA']\r\ntt0822847,\"['Action', 'Horror', 'Thriller']\",['USA']\r\ntt0822854,\"['Action', 'Drama', 'Thriller']\",['USA']\r\ntt0824747,\"['Biography', 'Crime', 'Drama']\",['USA']\r\ntt0825232,\"['Comedy', 'Drama']\",['USA']\r\ntt0828393,['Drama'],['USA']\r\ntt0829150,\"['Action', 'Drama', 'Fantasy']\",\"['USA', 'UK', 'Ireland']\"\r\ntt0829459,\"['Biography', 'Drama', 'History']\",\"['USA', 'UK']\"\r\ntt0829482,['Comedy'],['USA']\r\ntt0830515,\"['Action', 'Adventure', 'Thriller']\",\"['UK', 'USA']\"\r\ntt0830558,\"['Crime', 'Drama', 'Horror']\",['USA']\r\ntt0831887,\"['Action', 'Crime', 'Fantasy']\",['USA']\r\ntt0832266,\"['Comedy', 'Drama', 'Romance']\",\"['UK', 'France', 'Germany', 'USA']\"\r\ntt0834001,\"['Action', 'Fantasy', 'Sci-Fi']\",\"['USA', 'New Zealand']\"\r\ntt0835418,['Comedy'],['USA']\r\ntt0837562,\"['Animation', 'Comedy', 'Family']\",['USA']\r\ntt0837563,\"['Horror', 'Mystery', 'Thriller']\",\"['USA', 'Canada']\"\r\ntt0838221,\"['Adventure', 'Comedy', 'Drama']\",['USA']\r\ntt0838283,['Comedy'],['USA']\r\ntt0839880,\"['Horror', 'Thriller']\",['USA']\r\ntt0840361,\"['Crime', 'Drama', 'Thriller']\",['USA']\r\ntt0841046,\"['Comedy', 'Drama', 'Music']\",['USA']\r\ntt0842000,\"['Animation', 'Adventure', 'Comedy']\",['USA']\r\ntt0842926,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0843873,\"['Action', 'Adventure', 'Comedy']\",['USA']\r\ntt0844471,\"['Animation', 'Adventure', 'Comedy']\",['USA']\r\ntt0848537,\"['Animation', 'Adventure', 'Family']\",['USA']\r\ntt0848557,\"['Fantasy', 'Horror', 'Sci-Fi']\",['USA']\r\ntt0849470,['Comedy'],['USA']\r\ntt0852713,\"['Comedy', 'Romance']\",['USA']\r\ntt0858411,\"['Comedy', 'Horror']\",['USA']\r\ntt0858479,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0859163,\"['Action', 'Fantasy', 'Horror']\",\"['USA', 'Germany', 'China', 'Canada']\"\r\ntt0860462,['Action'],['Thailand']\r\ntt0864761,\"['Biography', 'Drama', 'History']\",\"['UK', 'Italy', 'France', 'USA']\"\r\ntt0864835,\"['Animation', 'Adventure', 'Comedy']\",['USA']\r\ntt0865556,\"['Action', 'Adventure', 'Fantasy']\",\"['USA', 'China']\"\r\ntt0870111,\"['Biography', 'Drama', 'History']\",\"['UK', 'France', 'USA']\"\r\ntt0870195,\"['Drama', 'History', 'Romance']\",\"['USA', 'India', 'UK']\"\r\ntt0871426,\"['Comedy', 'Romance']\",['USA']\r\ntt0872230,\"['Horror', 'Mystery', 'Thriller']\",['USA']\r\ntt0873886,\"['Action', 'Crime', 'Horror']\",['USA']\r\ntt0878804,\"['Biography', 'Drama', 'Sport']\",['USA']\r\ntt0879870,\"['Drama', 'Romance']\",['USA']\r\ntt0881320,\"['Action', 'Adventure', 'Drama']\",\"['USA', 'Australia']\"\r\ntt0884224,\"['Action', 'Comedy', 'Thriller']\",['USA']\r\ntt0884328,\"['Horror', 'Sci-Fi']\",['USA']\r\ntt0884732,['Comedy'],['USA']\r\ntt0887883,\"['Comedy', 'Crime', 'Drama']\",\"['USA', 'UK', 'France']\"\r\ntt0887912,\"['Drama', 'Thriller', 'War']\",['USA']\r\ntt0889573,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt0889583,['Comedy'],\"['USA', 'UK']\"\r\ntt0890870,\"['Horror', 'Mystery', 'Thriller']\",\"['USA', 'Canada']\"\r\ntt0891527,\"['Crime', 'Drama', 'Mystery']\",['USA']\r\ntt0892318,\"['Adventure', 'Comedy', 'Drama']\",['USA']\r\ntt0892769,\"['Animation', 'Action', 'Adventure']\",['USA']\r\ntt0892782,\"['Animation', 'Action', 'Comedy']\",['USA']\r\ntt0892791,\"['Animation', 'Adventure', 'Comedy']\",['USA']\r\ntt0893412,\"['Comedy', 'Drama', 'Romance']\",\"['Mexico', 'USA']\"\r\ntt0898367,['Drama'],['USA']\r\ntt0899106,\"['Drama', 'Romance']\",\"['USA', 'Canada', 'UK']\"\r\ntt0901476,\"['Comedy', 'Romance']\",['USA']\r\ntt0903624,\"['Adventure', 'Family', 'Fantasy']\",\"['New Zealand', 'USA']\"\r\ntt0905372,\"['Horror', 'Mystery', 'Sci-Fi']\",\"['USA', 'Canada']\"\r\ntt0906665,\"['Action', 'Western']\",['Japan']\r\ntt0910936,\"['Action', 'Comedy', 'Crime']\",['USA']\r\ntt0913354,\"['Action', 'Crime', 'Thriller']\",['USA']\r\ntt0914364,\"['Action', 'Horror', 'Thriller']\",['USA']\r\ntt0918927,\"['Drama', 'Mystery']\",['USA']\r\ntt0918940,\"['Action', 'Adventure', 'Drama']\",\"['UK', 'Canada', 'USA']\"\r\ntt0923671,\"['Horror', 'Thriller']\",['USA']\r\ntt0926084,\"['Adventure', 'Family', 'Fantasy']\",\"['UK', 'USA']\"\r\ntt0928375,\"['Horror', 'Thriller']\",['Ireland']\r\ntt0929618,['Comedy'],['USA']\r\ntt0929629,\"['Action', 'Adventure', 'Drama']\",\"['Canada', 'USA']\"\r\ntt0929632,['Drama'],['USA']\r\ntt0935075,['Drama'],['USA']\r\ntt0938283,\"['Action', 'Adventure', 'Family']\",['USA']\r\ntt0942385,\"['Action', 'Comedy', 'War']\",\"['USA', 'UK', 'Germany']\"\r\ntt0942903,\"['Action', 'Adventure', 'Drama']\",\"['USA', 'Canada']\"\r\ntt0944835,\"['Action', 'Mystery', 'Thriller']\",['USA']\r\ntt0945513,\"['Action', 'Drama', 'Mystery']\",\"['USA', 'Canada', 'France']\"\r\ntt0947798,\"['Drama', 'Thriller']\",['USA']\r\ntt0947810,\"['Action', 'Drama', 'Thriller']\",\"['UK', 'France', 'Spain', 'USA']\"\r\ntt0948470,\"['Action', 'Sci-Fi']\",['USA']\r\ntt0949731,\"['Drama', 'Mystery', 'Sci-Fi']\",\"['India', 'USA']\"\r\ntt0952640,\"['Animation', 'Comedy', 'Family']\",['USA']\r\ntt0955308,\"['Action', 'Drama', 'History']\",\"['USA', 'UK']\"\r\ntt0959337,\"['Drama', 'Romance']\",\"['USA', 'UK']\"\r\ntt0960144,['Comedy'],['USA']\r\ntt0960835,\"['Action', 'Sci-Fi', 'Thriller']\",['USA']\r\ntt0961722,['Horror'],['USA']\r\ntt0963794,\"['Fantasy', 'Horror', 'Thriller']\",\"['USA', 'Germany', 'Australia']\"\r\ntt0964517,\"['Biography', 'Drama', 'Sport']\",['USA']\r\ntt0970179,\"['Drama', 'Family', 'Fantasy']\",\"['UK', 'USA', 'France']\"\r\ntt0970866,\"['Comedy', 'Romance']\",['USA']\r\ntt0971209,\"['Drama', 'Mystery', 'Thriller']\",['USA']\r\ntt0974015,\"['Action', 'Adventure', 'Fantasy']\",\"['USA', 'Canada', 'UK']\"\r\ntt0974959,['Comedy'],\"['Canada', 'USA']\"\r\ntt0975645,\"['Biography', 'Drama', 'Romance']\",\"['USA', 'UK']\"\r\ntt0976051,\"['Drama', 'Romance']\",\"['Germany', 'USA']\"\r\ntt0976222,\"['Comedy', 'Drama', 'Family']\",['USA']\r\ntt0977855,\"['Biography', 'Drama', 'Thriller']\",\"['USA', 'United Arab Emirates']\"\r\ntt0978764,\"['Action', 'Adventure', 'Fantasy']\",\"['USA', 'Canada']\"\r\ntt0979434,['Comedy'],['USA']\r\ntt0981072,\"['Comedy', 'Drama', 'War']\",['USA']\r\ntt0981227,\"['Comedy', 'Drama', 'Music']\",['USA']\r\ntt0983193,\"['Animation', 'Action', 'Adventure']\",\"['USA', 'New Zealand', 'UK']\"\r\ntt0985025,\"['Action', 'Fantasy', 'Horror']\",\"['Finland', 'Iceland']\"\r\ntt0985694,\"['Action', 'Crime', 'Thriller']\",['USA']\r\ntt0985699,\"['Drama', 'History', 'Thriller']\",\"['USA', 'Germany']\"\r\ntt0988045,\"['Action', 'Adventure', 'Crime']\",\"['USA', 'Germany', 'UK']\"\r\ntt0988595,\"['Comedy', 'Romance']\",['USA']\r\ntt0988849,\"['Crime', 'Drama', 'Horror']\",['UK']\r\ntt0989757,\"['Drama', 'Romance', 'War']\",['USA']\r\ntt0990407,\"['Action', 'Comedy']\",['USA']\r\ntt0993842,\"['Action', 'Drama', 'Thriller']\",\"['USA', 'UK', 'Germany']\"\r\ntt0993846,\"['Biography', 'Crime', 'Drama']\",['USA']\r\ntt0995039,\"['Comedy', 'Drama', 'Fantasy']\",['USA']\r\ntt0995740,\"['Drama', 'Mystery', 'Thriller']\",['India']\r\ntt0997143,['Horror'],['USA']\r\ntt0997147,\"['Action', 'Comedy', 'Sci-Fi']\",['Japan']\r\ntt1000774,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt1001526,\"['Animation', 'Action', 'Comedy']\",['USA']\r\ntt1001562,\"['Comedy', 'Crime']\",['USA']\r\ntt1007028,\"['Comedy', 'Romance']\",['USA']\r\ntt1007029,\"['Biography', 'Drama']\",\"['UK', 'France']\"\r\ntt1013743,\"['Action', 'Adventure', 'Comedy']\",['USA']\r\ntt1013752,\"['Action', 'Thriller']\",\"['USA', 'Japan']\"\r\ntt1013753,\"['Biography', 'Drama']\",['USA']\r\ntt10146586,['Documentary'],['USA']\r\ntt1014763,\"['Crime', 'Drama', 'History']\",\"['Czech Republic', 'UK', 'USA', 'Russia']\"\r\ntt1016268,\"['Documentary', 'Biography', 'History']\",['USA']\r\ntt1017460,\"['Drama', 'Horror', 'Sci-Fi']\",\"['Canada', 'France', 'USA']\"\r\ntt1019452,\"['Comedy', 'Drama']\",\"['USA', 'UK', 'France']\"\r\ntt1020543,\"['Action', 'Adventure', 'Comedy']\",['USA']\r\ntt1020558,\"['Action', 'Drama', 'History']\",\"['UK', 'France', 'USA']\"\r\ntt1020773,\"['Drama', 'Romance']\",\"['France', 'Italy', 'Belgium', 'Iran']\"\r\ntt1022603,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt1023111,\"['Action', 'Drama', 'Sport']\",['USA']\r\ntt1024648,\"['Biography', 'Drama', 'Thriller']\",\"['USA', 'UK']\"\r\ntt1027747,\"['Action', 'Crime', 'Drama']\",['USA']\r\ntt1028528,\"['Action', 'Thriller']\",['USA']\r\ntt1031280,\"['Horror', 'Sci-Fi', 'Thriller']\",['USA']\r\ntt1033575,\"['Comedy', 'Drama']\",['USA']\r\ntt1033643,\"['Comedy', 'Romance']\",['USA']\r\ntt1034032,\"['Action', 'Sci-Fi', 'Thriller']\",['USA']\r\ntt1034303,\"['Action', 'Drama', 'History']\",['USA']\r\ntt1034389,\"['Action', 'Adventure', 'Drama']\",\"['UK', 'USA']\"\r\ntt1037705,\"['Action', 'Adventure', 'Drama']\",['USA']\r\ntt1038686,\"['Action', 'Adventure', 'Fantasy']\",['USA']\r\ntt1038919,\"['Action', 'Comedy', 'Romance']\",['USA']\r\ntt1043791,['Horror'],['UK']\r\ntt1045658,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt1045670,\"['Comedy', 'Drama', 'Romance']\",['UK']\r\ntt1046163,\"['Comedy', 'Romance']\",['USA']\r\ntt1046173,\"['Action', 'Adventure', 'Sci-Fi']\",\"['USA', 'Czech Republic']\"\r\ntt1051904,\"['Adventure', 'Comedy', 'Family']\",\"['USA', 'Australia']\"\r\ntt1053424,\"['Action', 'Adventure', 'Crime']\",\"['Canada', 'USA']\"\r\ntt1053859,\"['Horror', 'Mystery', 'Thriller']\",\"['USA', 'Japan']\"\r\ntt1055292,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt1055369,\"['Action', 'Adventure', 'Sci-Fi']\",['USA']\r\ntt1056026,\"['Action', 'Sci-Fi']\",['USA']\r\ntt1057500,\"['Biography', 'Drama', 'History']\",['USA']\r\ntt1058017,\"['Comedy', 'Fantasy', 'Romance']\",['USA']\r\ntt1059932,['Romance'],['Indonesia']\r\ntt1060277,\"['Horror', 'Sci-Fi', 'Thriller']\",['USA']\r\ntt1065073,['Drama'],['USA']\r\ntt1068242,\"['Comedy', 'Drama', 'Music']\",['USA']\r\ntt10720210,['Documentary'],['USA']\r\ntt1074638,\"['Action', 'Adventure', 'Thriller']\",\"['UK', 'USA']\"\r\ntt1075746,\"['Action', 'Adventure', 'Drama']\",['USA']\r\ntt1075747,\"['Action', 'Drama', 'Fantasy']\",['USA']\r\ntt1077258,\"['Action', 'Comedy', 'Horror']\",\"['USA', 'Mexico']\"\r\ntt1078940,['Comedy'],['USA']\r\ntt1081935,\"['Comedy', 'Drama']\",\"['Italy', 'France']\"\r\ntt1082601,\"['Action', 'Crime', 'Drama']\",['USA']\r\ntt1087524,['Crime'],['USA']\r\ntt1091191,\"['Action', 'Biography', 'Drama']\",['USA']\r\ntt1091722,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt1091863,\"['Documentary', 'Biography']\",['USA']\r\ntt1092026,\"['Adventure', 'Comedy', 'Sci-Fi']\",\"['USA', 'UK']\"\r\ntt1093357,\"['Action', 'Adventure', 'Horror']\",\"['USA', 'Russia']\"\r\ntt1094162,\"['Action', 'Adventure', 'Horror']\",['USA']\r\ntt1095217,\"['Crime', 'Drama']\",['USA']\r\ntt1095442,['Drama'],['USA']\r\ntt1097013,\"['Action', 'Comedy', 'Crime']\",['USA']\r\ntt1099212,\"['Drama', 'Fantasy', 'Romance']\",['USA']\r\ntt1103275,\"['Drama', 'Romance']\",\"['USA', 'France']\"\r\ntt1107365,\"['Animation', 'Adventure', 'Comedy']\",['USA']\r\ntt1112782,\"['Action', 'Crime', 'Thriller']\",\"['USA', 'Germany']\"\r\ntt1114740,\"['Action', 'Comedy', 'Crime']\",['USA']\r\ntt1116184,\"['Documentary', 'Action', 'Comedy']\",['USA']\r\ntt1119646,['Comedy'],\"['USA', 'Germany']\"\r\ntt1120985,\"['Drama', 'Romance']\",['USA']\r\ntt1121096,\"['Action', 'Adventure', 'Fantasy']\",\"['USA', 'UK', 'Canada', 'China']\"\r\ntt1121931,\"['Action', 'Thriller']\",['USA']\r\ntt1121977,\"['Drama', 'Romance']\",\"['USA', 'Spain']\"\r\ntt1124048,\"['Horror', 'Thriller']\",['USA']\r\ntt1126591,\"['Drama', 'Music', 'Musical']\",['USA']\r\ntt1126618,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt1127180,\"['Horror', 'Thriller']\",['USA']\r\ntt1127896,\"['Biography', 'Comedy', 'Drama']\",['USA']\r\ntt1129442,\"['Action', 'Thriller']\",\"['France', 'USA', 'Ukraine']\"\r\ntt1130080,\"['Biography', 'Comedy', 'Crime']\",['USA']\r\ntt1130088,['Drama'],['UK']\r\ntt1130884,\"['Mystery', 'Thriller']\",['USA']\r\ntt1131734,\"['Comedy', 'Horror']\",\"['USA', 'Canada']\"\r\ntt1132130,\"['Action', 'Adventure', 'Drama']\",['USA']\r\ntt1132626,\"['Horror', 'Mystery', 'Thriller']\",\"['USA', 'Canada']\"\r\ntt1133985,\"['Action', 'Adventure', 'Sci-Fi']\",['USA']\r\ntt1133995,\"['Action', 'Thriller']\",['USA']\r\ntt1134854,\"['Comedy', 'Drama', 'Horror']\",\"['USA', 'Canada']\"\r\ntt1135084,\"['Action', 'Crime', 'Thriller']\",['USA']\r\ntt1135487,\"['Comedy', 'Crime', 'Romance']\",\"['USA', 'Germany']\"\r\ntt1135503,\"['Biography', 'Drama', 'Romance']\",['USA']\r\ntt1136608,\"['Action', 'Sci-Fi', 'Thriller']\",\"['South Africa', 'USA', 'New Zealand', 'Canada']\"\r\ntt1136683,\"['Action', 'Adventure', 'Sci-Fi']\",['USA']\r\ntt1137470,\"['Comedy', 'Romance']\",\"['USA', 'UK']\"\r\ntt1139328,\"['Drama', 'Mystery', 'Thriller']\",\"['France', 'Germany', 'UK']\"\r\ntt1139668,\"['Drama', 'Horror', 'Mystery']\",['USA']\r\ntt1139797,\"['Drama', 'Horror', 'Romance']\",['Sweden']\r\ntt1149361,\"['Action', 'Comedy', 'Crime']\",['France']\r\ntt1151359,\"['Comedy', 'Crime', 'Drama']\",['USA']\r\ntt1151928,\"['Action', 'Sci-Fi']\",\"['USA', 'Canada']\"\r\ntt1152836,\"['Biography', 'Crime', 'Drama']\",\"['USA', 'Japan']\"\r\ntt1153706,\"['Action', 'Comedy', 'Music']\",['USA']\r\ntt1155056,\"['Comedy', 'Romance']\",['USA']\r\ntt1155076,\"['Action', 'Drama', 'Family']\",\"['USA', 'China']\"\r\ntt1155592,\"['Documentary', 'Biography', 'History']\",\"['UK', 'USA']\"\r\ntt1156300,['Horror'],['USA']\r\ntt1156398,\"['Adventure', 'Comedy', 'Horror']\",['USA']\r\ntt1161449,['Action'],['Thailand']\r\ntt1161864,\"['Drama', 'Horror', 'Mystery']\",\"['USA', 'Hungary', 'Italy']\"\r\ntt1170358,\"['Adventure', 'Fantasy']\",\"['New Zealand', 'USA']\"\r\ntt1172060,\"['Horror', 'Sci-Fi']\",['USA']\r\ntt1172570,\"['Action', 'Biography', 'Crime']\",\"['UK', 'Cayman Islands']\"\r\ntt1172994,['Horror'],['USA']\r\ntt1174732,['Drama'],\"['UK', 'USA']\"\r\ntt1175491,\"['Biography', 'Comedy', 'Drama']\",\"['USA', 'Australia', 'Hong Kong', 'Switzerland', 'China']\"\r\ntt1175709,\"['Crime', 'Drama', 'Mystery']\",['USA']\r\ntt1179056,\"['Crime', 'Drama', 'Horror']\",['USA']\r\ntt1179891,\"['Horror', 'Mystery', 'Thriller']\",\"['USA', 'Canada']\"\r\ntt1179904,\"['Horror', 'Mystery', 'Thriller']\",['USA']\r\ntt1179933,\"['Drama', 'Horror', 'Mystery']\",['USA']\r\ntt1181791,\"['Action', 'Drama', 'History']\",\"['Germany', 'UK']\"\r\ntt1182350,\"['Comedy', 'Drama', 'Romance']\",\"['USA', 'Spain']\"\r\ntt1182609,\"['Action', 'Thriller']\",\"['Bulgaria', 'Germany']\"\r\ntt1183733,\"['Action', 'Adventure', 'Horror']\",['USA']\r\ntt1186367,\"['Action', 'Thriller']\",\"['Germany', 'USA']\"\r\ntt1186830,\"['Adventure', 'Biography', 'Drama']\",\"['Spain', 'Malta', 'Bulgaria']\"\r\ntt1187064,\"['Fantasy', 'Mystery', 'Thriller']\",\"['UK', 'Australia']\"\r\ntt1189340,\"['Crime', 'Drama', 'Thriller']\",['USA']\r\ntt1190080,\"['Action', 'Adventure', 'Sci-Fi']\",['USA']\r\ntt1192628,\"['Animation', 'Adventure', 'Comedy']\",['USA']\r\ntt1193138,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt1194173,\"['Action', 'Adventure', 'Thriller']\",\"['USA', 'Japan']\"\r\ntt1194263,\"['Drama', 'Mystery']\",\"['USA', 'Germany', 'Poland']\"\r\ntt1195478,\"['Comedy', 'Romance']\",\"['USA', 'Japan']\"\r\ntt1196141,\"['Comedy', 'Drama', 'Family']\",\"['USA', 'UK']\"\r\ntt1196948,\"['Comedy', 'Drama', 'Romance']\",\"['USA', 'Romania']\"\r\ntt1198138,\"['Drama', 'Romance', 'Thriller']\",['USA']\r\ntt1198153,\"['Action', 'Drama', 'Thriller']\",\"['Israel', 'France', 'USA']\"\r\ntt1201167,\"['Comedy', 'Drama']\",['USA']\r\ntt1201607,\"['Adventure', 'Drama', 'Fantasy']\",\"['UK', 'USA']\"\r\ntt1204975,\"['Comedy', 'Drama']\",['USA']\r\ntt1204977,\"['Horror', 'Mystery', 'Thriller']\",['USA']\r\ntt1205537,\"['Action', 'Drama', 'Thriller']\",\"['USA', 'Russia']\"\r\ntt1210166,\"['Biography', 'Drama', 'Sport']\",['USA']\r\ntt1210801,\"['Action', 'Drama', 'Thriller']\",['USA']\r\ntt1211956,\"['Action', 'Thriller']\",['USA']\r\ntt1212023,['Horror'],['USA']\r\ntt1212419,\"['Drama', 'Fantasy', 'Romance']\",['USA']\r\ntt1212450,\"['Crime', 'Drama']\",['USA']\r\ntt1213012,\"['Animation', 'Adventure', 'Comedy']\",\"['USA', 'India', 'Canada']\"\r\ntt1213641,\"['Biography', 'Drama', 'History']\",\"['USA', 'Japan']\"\r\ntt1213644,['Comedy'],['USA']\r\ntt1213663,\"['Action', 'Comedy', 'Sci-Fi']\",\"['UK', 'USA', 'Japan']\"\r\ntt1216491,\"['Biography', 'Crime', 'Drama']\",['USA']\r\ntt1216492,\"['Comedy', 'Romance']\",\"['USA', 'Ireland']\"\r\ntt1216496,\"['Crime', 'Drama', 'Thriller']\",['South Korea']\r\ntt1217613,\"['Action', 'Sci-Fi']\",['USA']\r\ntt1219289,\"['Sci-Fi', 'Thriller']\",['USA']\r\ntt1219342,\"['Animation', 'Action', 'Adventure']\",\"['USA', 'Australia']\"\r\ntt1219671,\"['Action', 'Adventure', 'Romance']\",['USA']\r\ntt1219827,\"['Action', 'Drama', 'Sci-Fi']\",\"['USA', 'India', 'Hong Kong', 'China', 'UK']\"\r\ntt1220634,\"['Action', 'Adventure', 'Horror']\",\"['Germany', 'France', 'USA', 'Canada', 'UK']\"\r\ntt1220719,\"['Action', 'Biography', 'Drama']\",\"['Hong Kong', 'China']\"\r\ntt1221208,\"['Biography', 'Drama']\",['Canada']\r\ntt1225822,\"['Comedy', 'Crime', 'Romance']\",['USA']\r\ntt1226229,\"['Comedy', 'Music']\",['USA']\r\ntt1226236,\"['Drama', 'Romance']\",['Italy']\r\ntt1226273,\"['Crime', 'Drama', 'Mystery']\",\"['UK', 'USA']\"\r\ntt1226753,\"['Drama', 'Thriller']\",\"['USA', 'UK', 'Hungary', 'Israel']\"\r\ntt1228705,\"['Action', 'Adventure', 'Sci-Fi']\",['USA']\r\ntt1229238,\"['Action', 'Adventure', 'Thriller']\",\"['USA', 'United Arab Emirates', 'Czech Republic', 'India', 'Canada']\"\r\ntt1229340,['Comedy'],['USA']\r\ntt1229822,\"['Drama', 'Romance']\",\"['UK', 'USA']\"\r\ntt1230168,\"['Biography', 'Drama']\",['USA']\r\ntt1231287,\"['Comedy', 'Romance']\",['USA']\r\ntt1231583,\"['Comedy', 'Drama']\",['USA']\r\ntt1231587,\"['Comedy', 'Sci-Fi']\",['USA']\r\ntt1232200,['Comedy'],['USA']\r\ntt1232783,\"['Horror', 'Mystery']\",['USA']\r\ntt1232824,['Drama'],['USA']\r\ntt1232829,\"['Action', 'Comedy', 'Crime']\",['USA']\r\ntt1233219,\"['Drama', 'Thriller']\",\"['USA', 'Germany']\"\r\ntt1233227,\"['Horror', 'Mystery', 'Thriller']\",\"['Canada', 'USA', 'UK', 'Australia']\"\r\ntt1234654,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt1234721,\"['Action', 'Crime', 'Sci-Fi']\",['USA']\r\ntt1235522,\"['Action', 'Crime', 'Drama']\",['USA']\r\ntt1235796,\"['Drama', 'Mystery', 'Romance']\",\"['Ireland', 'USA']\"\r\ntt1235837,\"['Animation', 'Adventure', 'Comedy']\",\"['USA', 'Germany']\"\r\ntt1237838,\"['Comedy', 'Crime', 'Mystery']\",['USA']\r\ntt1240982,\"['Comedy', 'Fantasy']\",['USA']\r\ntt1242618,\"['Drama', 'Horror', 'Thriller']\",['USA']\r\ntt1243957,\"['Action', 'Adventure', 'Crime']\",\"['USA', 'France', 'Italy', 'UK']\"\r\ntt1245112,\"['Horror', 'Thriller']\",['Spain']\r\ntt1245526,\"['Action', 'Comedy', 'Crime']\",['USA']\r\ntt1247640,\"['Action', 'Crime', 'Thriller']\",['France']\r\ntt1250777,\"['Action', 'Adventure', 'Comedy']\",\"['UK', 'USA']\"\r\ntt1251757,\"['Comedy', 'Crime', 'Drama']\",['USA']\r\ntt1253596,['Comedy'],['USA']\r\ntt1253863,\"['Action', 'Drama']\",['USA']\r\ntt1255919,\"['Comedy', 'Crime', 'Mystery']\",\"['USA', 'Canada']\"\r\ntt1255953,\"['Drama', 'Mystery', 'War']\",\"['Canada', 'France']\"\r\ntt1258972,['Action'],\"['USA', 'Hong Kong']\"\r\ntt1259521,['Horror'],['USA']\r\ntt1259571,\"['Adventure', 'Drama', 'Fantasy']\",['USA']\r\ntt1261046,\"['Action', 'Comedy', 'Horror']\",['USA']\r\ntt1261945,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt1262416,\"['Horror', 'Mystery']\",['USA']\r\ntt1262981,\"['Comedy', 'Drama']\",['USA']\r\ntt1263670,\"['Drama', 'Music', 'Romance']\",['USA']\r\ntt1265621,\"['Action', 'Adventure', 'Drama']\",\"['USA', 'Germany']\"\r\ntt1265990,\"['Drama', 'Thriller']\",['USA']\r\ntt1266029,\"['Biography', 'Drama', 'Music']\",\"['UK', 'Canada']\"\r\ntt1266121,\"['Fantasy', 'Horror']\",['USA']\r\ntt1268799,\"['Adventure', 'Comedy']\",['USA']\r\ntt1270262,\"['Biography', 'Drama', 'Thriller']\",\"['Belgium', 'Netherlands']\"\r\ntt1270761,\"['Fantasy', 'Horror', 'Thriller']\",\"['USA', 'Australia', 'Mexico']\"\r\ntt1270792,\"['Drama', 'Musical']\",['USA']\r\ntt1270797,\"['Action', 'Sci-Fi', 'Thriller']\",\"['China', 'USA']\"\r\ntt1272878,\"['Action', 'Comedy', 'Thriller']\",['USA']\r\ntt1273678,\"['Action', 'Comedy', 'Family']\",['USA']\r\ntt1274586,\"['Action', 'Drama', 'Thriller']\",\"['Bahamas', 'USA']\"\r\ntt1276419,\"['Biography', 'Drama', 'History']\",\"['Denmark', 'Sweden', 'Czech Republic', 'Germany']\"\r\ntt1277737,\"['Drama', 'Thriller']\",['USA']\r\ntt1277953,\"['Animation', 'Adventure', 'Comedy']\",['USA']\r\ntt1278449,\"['Comedy', 'Crime', 'Music']\",\"['Sweden', 'France']\"\r\ntt1279935,\"['Comedy', 'Crime', 'Romance']\",['USA']\r\ntt1282140,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt1284575,\"['Comedy', 'Romance']\",['USA']\r\ntt1285009,['Horror'],\"['UK', 'USA']\"\r\ntt1285016,\"['Biography', 'Drama']\",['USA']\r\ntt1287468,\"['Action', 'Comedy', 'Family']\",\"['USA', 'Australia']\"\r\ntt1288558,\"['Fantasy', 'Horror', 'Thriller']\",['USA']\r\ntt1289401,\"['Action', 'Comedy', 'Fantasy']\",\"['USA', 'Australia']\"\r\ntt1290400,\"['Action', 'Crime', 'Thriller']\",['USA']\r\ntt1290471,\"['Action', 'Sci-Fi']\",['USA']\r\ntt1291150,\"['Action', 'Adventure', 'Comedy']\",['USA']\r\ntt1291584,\"['Drama', 'Sport']\",['USA']\r\ntt1293842,\"['Comedy', 'Sport']\",['USA']\r\ntt1293847,\"['Action', 'Adventure', 'Thriller']\",\"['China', 'Canada', 'USA']\"\r\ntt1294136,\"['Crime', 'Thriller']\",['USA']\r\ntt1294688,\"['Drama', 'Romance']\",\"['USA', 'France']\"\r\ntt1294699,\"['Action', 'Adventure', 'Drama']\",['USA']\r\ntt1294970,\"['Comedy', 'Drama']\",['USA']\r\ntt1297919,\"['Action', 'Crime', 'Thriller']\",\"['UK', 'France', 'USA']\"\r\ntt1300851,\"['Action', 'Crime', 'Thriller']\",['USA']\r\ntt1302011,\"['Animation', 'Action', 'Adventure']\",['USA']\r\ntt1302067,\"['Animation', 'Adventure', 'Comedy']\",\"['USA', 'New Zealand']\"\r\ntt1305583,\"['Comedy', 'Romance']\",['USA']\r\ntt1305806,\"['Drama', 'Mystery', 'Romance']\",\"['Argentina', 'Spain']\"\r\ntt1306980,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt1307068,\"['Adventure', 'Comedy', 'Drama']\",['USA']\r\ntt1311067,['Horror'],['USA']\r\ntt1313092,\"['Crime', 'Drama']\",['Australia']\r\ntt1315981,\"['Drama', 'Romance']\",['USA']\r\ntt1318514,\"['Action', 'Drama', 'Sci-Fi']\",\"['USA', 'UK', 'Canada']\"\r\ntt1320253,\"['Action', 'Adventure', 'Thriller']\",\"['USA', 'Bulgaria']\"\r\ntt1321509,['Comedy'],['USA']\r\ntt1321860,['Drama'],\"['USA', 'United Arab Emirates']\"\r\ntt1321870,\"['Action', 'Crime', 'Drama']\",['USA']\r\ntt1322312,\"['Comedy', 'Romance']\",['USA']\r\ntt1323594,\"['Animation', 'Comedy', 'Family']\",\"['USA', 'France']\"\r\ntt1324999,\"['Action', 'Adventure', 'Drama']\",['USA']\r\ntt1325004,\"['Action', 'Drama', 'Fantasy']\",['USA']\r\ntt1325753,\"['Animation', 'Action', 'Adventure']\",['USA']\r\ntt1326972,\"['Action', 'Drama', 'History']\",\"['China', 'Hong Kong', 'Japan', 'Taiwan', 'South Korea']\"\r\ntt1327773,\"['Biography', 'Drama']\",['USA']\r\ntt1328910,\"['Action', 'Sci-Fi']\",['USA']\r\ntt1331307,\"['Drama', 'Horror', 'Thriller']\",\"['UK', 'USA']\"\r\ntt1334512,\"['Comedy', 'Romance']\",['USA']\r\ntt1334526,['Horror'],['USA']\r\ntt1334536,\"['Horror', 'Mystery', 'Thriller']\",['USA']\r\ntt1334537,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt1335975,\"['Action', 'Drama', 'Fantasy']\",\"['USA', 'UK', 'Japan', 'Hungary']\"\r\ntt1340138,\"['Action', 'Adventure', 'Sci-Fi']\",['USA']\r\ntt1341167,\"['Comedy', 'Crime', 'Drama']\",\"['UK', 'France']\"\r\ntt1341188,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt1341341,\"['Comedy', 'Romance']\",['USA']\r\ntt1343092,\"['Drama', 'Romance']\",\"['Australia', 'USA']\"\r\ntt1343727,\"['Action', 'Crime', 'Sci-Fi']\",\"['UK', 'South Africa', 'USA', 'India']\"\r\ntt1350498,\"['Action', 'Adventure', 'Comedy']\",['USA']\r\ntt1350512,\"['Action', 'Adventure', 'Horror']\",['USA']\r\ntt1353997,\"['Action', 'Adventure', 'Fantasy']\",['USA']\r\ntt1355630,\"['Drama', 'Fantasy', 'Music']\",['USA']\r\ntt1355644,\"['Drama', 'Romance', 'Sci-Fi']\",\"['USA', 'Australia']\"\r\ntt1356864,\"['Comedy', 'Drama', 'Music']\",['USA']\r\ntt1357005,\"['Short', 'Comedy']\",['USA']\r\ntt1366365,\"['Action', 'Thriller']\",\"['USA', 'Spain']\"\r\ntt1368116,\"['Action', 'Drama']\",['Indonesia']\r\ntt1371155,\"['Biography', 'Comedy', 'Drama']\",['UK']\r\ntt1374989,\"['Action', 'Comedy', 'Fantasy']\",\"['USA', 'UK']\"\r\ntt1374992,\"['Drama', 'Fantasy', 'Romance']\",\"['Canada', 'France']\"\r\ntt1375666,\"['Action', 'Adventure', 'Sci-Fi']\",\"['USA', 'UK']\"\r\ntt1375670,['Comedy'],['USA']\r\ntt1376460,\"['Action', 'Adventure', 'Sci-Fi']\",['USA']\r\ntt1376709,['Comedy'],['Australia']\r\ntt1385826,\"['Romance', 'Sci-Fi', 'Thriller']\",['USA']\r\ntt1385867,\"['Action', 'Comedy', 'Crime']\",['USA']\r\ntt1386588,\"['Action', 'Comedy', 'Crime']\",['USA']\r\ntt1386697,\"['Action', 'Adventure', 'Fantasy']\",['USA']\r\ntt1386703,\"['Action', 'Adventure', 'Sci-Fi']\",\"['USA', 'Canada']\"\r\ntt1386932,\"['Action', 'Biography', 'Drama']\",\"['Hong Kong', 'China']\"\r\ntt1389096,\"['Comedy', 'Crime', 'Thriller']\",['USA']\r\ntt1389137,\"['Comedy', 'Drama', 'Family']\",['USA']\r\ntt1391116,\"['Drama', 'Thriller', 'War']\",\"['UK', 'Germany']\"\r\ntt1392170,\"['Action', 'Adventure', 'Sci-Fi']\",['USA']\r\ntt1392190,\"['Action', 'Adventure', 'Sci-Fi']\",\"['Australia', 'USA', 'South Africa']\"\r\ntt1396523,\"['Action', 'Crime', 'Drama']\",\"['Hong Kong', 'USA']\"\r\ntt1398426,\"['Biography', 'Drama', 'History']\",['USA']\r\ntt1399103,\"['Action', 'Adventure', 'Sci-Fi']\",['USA']\r\ntt1399683,\"['Drama', 'Mystery']\",['USA']\r\ntt1401152,\"['Action', 'Mystery', 'Thriller']\",\"['UK', 'Germany', 'France', 'USA']\"\r\ntt1403177,\"['Comedy', 'Crime', 'Drama']\",['USA']\r\ntt1403865,\"['Drama', 'Western']\",['USA']\r\ntt1403981,\"['Drama', 'Romance']\",['USA']\r\ntt1406157,['Action'],['Japan']\r\ntt1408101,\"['Action', 'Adventure', 'Sci-Fi']\",['USA']\r\ntt1408253,\"['Action', 'Comedy', 'Crime']\",['USA']\r\ntt1409024,\"['Action', 'Adventure', 'Comedy']\",\"['USA', 'United Arab Emirates']\"\r\ntt1411238,\"['Comedy', 'Romance']\",['USA']\r\ntt1411250,\"['Action', 'Adventure', 'Sci-Fi']\",\"['Canada', 'USA']\"\r\ntt1411697,['Comedy'],\"['USA', 'Thailand']\"\r\ntt1411704,\"['Animation', 'Adventure', 'Comedy']\",\"['USA', 'India', 'Malaysia', 'Taiwan', 'Canada', 'UK']\"\r\ntt1412386,\"['Comedy', 'Drama', 'Romance']\",\"['UK', 'USA', 'United Arab Emirates']\"\r\ntt1415283,\"['Comedy', 'Family', 'Fantasy']\",\"['UK', 'France', 'USA']\"\r\ntt1418377,\"['Action', 'Fantasy', 'Sci-Fi']\",\"['USA', 'Australia']\"\r\ntt1421051,\"['Comedy', 'Drama']\",\"['USA', 'UK', 'Italy', 'Japan']\"\r\ntt1423593,['Drama'],['USA']\r\ntt1423894,\"['Comedy', 'Drama']\",\"['Italy', 'Canada']\"\r\ntt1428538,\"['Action', 'Fantasy', 'Horror']\",\"['Germany', 'USA']\"\r\ntt1430607,\"['Animation', 'Adventure', 'Comedy']\",\"['UK', 'USA']\"\r\ntt1430626,\"['Animation', 'Adventure', 'Comedy']\",\"['UK', 'USA']\"\r\ntt1431181,\"['Comedy', 'Drama']\",['UK']\r\ntt1436045,\"['Action', 'Adventure', 'Drama']\",\"['Japan', 'UK']\"\r\ntt1436432,\"['Action', 'Adventure', 'Drama']\",['USA']\r\ntt1436562,\"['Animation', 'Adventure', 'Comedy']\",\"['USA', 'Brazil']\"\r\ntt1438254,\"['Drama', 'Fantasy', 'Romance']\",\"['USA', 'Canada']\"\r\ntt1440129,\"['Action', 'Adventure', 'Sci-Fi']\",['USA']\r\ntt1440161,\"['Comedy', 'Drama', 'Fantasy']\",['USA']\r\ntt1440728,\"['Crime', 'Drama', 'Thriller']\",\"['USA', 'UK']\"\r\ntt1440732,\"['Crime', 'Drama', 'History']\",\"['UK', 'Italy']\"\r\ntt1446192,\"['Animation', 'Action', 'Adventure']\",['USA']\r\ntt1448755,\"['Action', 'Thriller']\",\"['UK', 'Australia']\"\r\ntt1450321,\"['Comedy', 'Crime', 'Drama']\",\"['UK', 'Germany', 'Sweden', 'Belgium', 'USA']\"\r\ntt1452628,\"['Horror', 'Mystery', 'Thriller']\",['USA']\r\ntt1453403,\"['Crime', 'Drama']\",['USA']\r\ntt1456635,\"['Comedy', 'Drama', 'Sport']\",\"['USA', 'Canada']\"\r\ntt1456661,\"['Action', 'Drama', 'History']\",\"['Hong Kong', 'China']\"\r\ntt1457765,\"['Drama', 'Horror', 'Mystery']\",['USA']\r\ntt1458175,\"['Action', 'Crime', 'Drama']\",\"['USA', 'France']\"\r\ntt1462041,\"['Drama', 'Mystery', 'Thriller']\",\"['USA', 'Canada']\"\r\ntt1462758,\"['Drama', 'Mystery', 'Thriller']\",['Spain']\r\ntt1465522,\"['Comedy', 'Horror']\",['Canada']\r\ntt1469304,\"['Action', 'Comedy', 'Crime']\",\"['UK', 'China', 'USA']\"\r\ntt1470023,\"['Action', 'Comedy', 'Romance']\",['USA']\r\ntt1473801,\"['Comedy', 'Romance']\",['USA']\r\ntt1477076,\"['Adventure', 'Horror', 'Mystery']\",\"['Canada', 'USA']\"\r\ntt1477834,\"['Action', 'Adventure', 'Fantasy']\",\"['USA', 'Australia']\"\r\ntt1477855,\"['Biography', 'Comedy', 'Drama']\",['UK']\r\ntt1478338,\"['Comedy', 'Romance']\",['USA']\r\ntt1479847,\"['Action', 'Adventure', 'Drama']\",['USA']\r\ntt1480295,\"['Action', 'Drama', 'Thriller']\",\"['USA', 'Belgium', 'Bulgaria']\"\r\ntt1482459,\"['Animation', 'Adventure', 'Comedy']\",\"['USA', 'France']\"\r\ntt1483013,\"['Action', 'Adventure', 'Sci-Fi']\",['USA']\r\ntt1486185,\"['Fantasy', 'Horror', 'Mystery']\",\"['USA', 'Canada']\"\r\ntt1486190,\"['Comedy', 'Drama', 'Romance']\",['UK']\r\ntt1488555,\"['Comedy', 'Fantasy']\",['USA']\r\ntt1489889,\"['Action', 'Comedy', 'Crime']\",\"['USA', 'China']\"\r\ntt1491044,\"['Biography', 'Crime', 'Drama']\",['USA']\r\ntt1492842,\"['Drama', 'Thriller']\",['USA']\r\ntt1496025,\"['Action', 'Drama', 'Fantasy']\",\"['USA', 'Canada']\"\r\ntt1496422,\"['Crime', 'Drama', 'Mystery']\",['USA']\r\ntt1499658,\"['Comedy', 'Crime']\",['USA']\r\ntt1501652,\"['Fantasy', 'Mystery', 'Romance']\",['USA']\r\ntt1502404,\"['Action', 'Fantasy', 'Thriller']\",['USA']\r\ntt1502407,\"['Horror', 'Thriller']\",['USA']\r\ntt1504320,\"['Biography', 'Drama', 'History']\",\"['UK', 'USA', 'Australia']\"\r\ntt1507566,\"['Crime', 'Mystery', 'Thriller']\",['USA']\r\ntt1509767,\"['Action', 'Adventure', 'History']\",\"['USA', 'Germany', 'France', 'UK']\"\r\ntt1517489,\"['Action', 'Adventure', 'Comedy']\",['USA']\r\ntt1519461,\"['Horror', 'Mystery', 'Sci-Fi']\",['USA']\r\ntt1521787,\"['Horror', 'Mystery', 'Thriller']\",['USA']\r\ntt1524575,\"['Horror', 'Thriller']\",['USA']\r\ntt1527186,\"['Drama', 'Sci-Fi']\",\"['Denmark', 'Sweden', 'France', 'Germany']\"\r\ntt1528854,\"['Comedy', 'Family']\",['USA']\r\ntt1529572,\"['Crime', 'Drama', 'Thriller']\",['USA']\r\ntt1531663,['Drama'],['USA']\r\ntt1531911,\"['Sci-Fi', 'Thriller', 'War']\",['USA']\r\ntt1532503,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt1535108,\"['Action', 'Drama', 'Sci-Fi']\",\"['USA', 'Mexico', 'Canada']\"\r\ntt1535109,\"['Biography', 'Crime', 'Drama']\",['USA']\r\ntt1536044,['Horror'],['USA']\r\ntt1536410,\"['Crime', 'Drama', 'Mystery']\",\"['USA', 'France', 'Canada', 'UK']\"\r\ntt1538819,\"['Action', 'Crime', 'Thriller']\",['Turkey']\r\ntt1540011,\"['Horror', 'Mystery', 'Thriller']\",\"['Canada', 'USA']\"\r\ntt1540115,['Documentary'],['USA']\r\ntt1542344,\"['Biography', 'Drama']\",\"['USA', 'UK', 'France']\"\r\ntt1545098,\"['Documentary', 'Music']\",['USA']\r\ntt1549920,\"['Action', 'Thriller']\",['USA']\r\ntt1551621,\"['Action', 'Romance']\",['Thailand']\r\ntt1554091,\"['Drama', 'Romance']\",['USA']\r\ntt1557769,\"['Biography', 'Comedy', 'Crime']\",['USA']\r\ntt1563738,\"['Drama', 'Romance']\",\"['USA', 'UK']\"\r\ntt1563742,\"['Comedy', 'Romance']\",\"['USA', 'Mexico']\"\r\ntt1564367,\"['Comedy', 'Romance']\",['USA']\r\ntt1564585,\"['Action', 'Sci-Fi', 'Thriller']\",['USA']\r\ntt1568338,\"['Action', 'Adventure', 'Crime']\",['USA']\r\ntt1568346,\"['Crime', 'Drama', 'Mystery']\",\"['USA', 'Sweden', 'Norway']\"\r\ntt1570728,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt1571249,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt1572315,\"['Horror', 'Thriller']\",['USA']\r\ntt1572491,\"['Comedy', 'Drama', 'Horror']\",\"['Spain', 'France']\"\r\ntt1576379,\"['Animation', 'Adventure', 'Family']\",\"['Argentina', 'USA']\"\r\ntt1578275,\"['Comedy', 'Drama']\",['USA']\r\ntt1578882,\"['Action', 'Crime', 'Fantasy']\",['USA']\r\ntt1582248,\"['Biography', 'Drama']\",['USA']\r\ntt1582465,\"['Adventure', 'Comedy', 'Drama']\",['USA']\r\ntt1583420,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt1583421,\"['Action', 'Adventure', 'Sci-Fi']\",['USA']\r\ntt1584016,\"['Documentary', 'Drama', 'Mystery']\",['USA']\r\ntt1584733,['Horror'],['USA']\r\ntt1586261,\"['Horror', 'Mystery', 'Thriller']\",['USA']\r\ntt1586265,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt1587807,\"['Action', 'Adventure', 'Comedy']\",['USA']\r\ntt1588170,\"['Action', 'Crime', 'Drama']\",['South Korea']\r\ntt1588173,\"['Comedy', 'Horror', 'Romance']\",\"['USA', 'Canada']\"\r\ntt1588337,\"['Drama', 'History']\",['France']\r\ntt1592281,\"['Comedy', 'Drama']\",\"['Canada', 'Spain', 'Japan']\"\r\ntt1592873,\"['Comedy', 'Drama', 'Romance']\",['USA']\r\ntt1594562,\"['Drama', 'Horror', 'Mystery']\",['USA']\r\ntt1595656,\"['Drama', 'Romance']\",['USA']\r\ntt1596343,\"['Action', 'Adventure', 'Thriller']\",['USA']\r\ntt1596345,\"['Biography', 'Drama', 'Sport']\",['USA']\r\ntt1596346,\"['Biography', 'Drama', 'Family']\",['USA']\r\ntt1596350,\"['Action', 'Comedy', 'Romance']\",['USA']\r\ntt1596363,\"['Biography', 'Comedy', 'Drama']\",['USA']\r\ntt1598828,\"['Action', 'Comedy', 'Crime']\",['USA']\r\ntt1599348,\"['Action', 'Thriller']\",\"['South Africa', 'Japan', 'USA']\"\r\ntt1600195,\"['Action', 'Mystery', 'Thriller']\",['USA']\r\ntt1602098,\"['Drama', 'Romance']\",\"['UK', 'Ireland', 'France', 'USA']\"\r\ntt1602472,\"['Comedy', 'Drama', 'Romance']\",\"['France', 'Germany', 'Belgium']\"\r\ntt1605630,['Comedy'],['USA']\r\ntt1610528,\"['Action', 'Adventure', 'Drama']\",['USA']\r\ntt1612774,\"['Comedy', 'Fantasy', 'Horror']\",\"['France', 'Angola']\"\r\ntt1614989,\"['Action', 'Crime', 'Thriller']\",\"['Norway', 'Sweden', 'Denmark', 'Germany']\"\r\ntt1615091,\"['Adventure', 'Sci-Fi', 'Thriller']\",\"['Germany', 'South Africa', 'USA']\"\r\ntt1615147,\"['Drama', 'Thriller']\",['USA']\r\ntt1615480,\"['Comedy', 'Drama']\",\"['USA', 'Mexico']\"\r\ntt1617661,\"['Action', 'Adventure', 'Sci-Fi']\",\"['USA', 'Australia']\"\r\ntt1618442,\"['Action', 'Adventure', 'Fantasy']\",\"['USA', 'China', 'Canada']\"\r\ntt1621045,\"['Comedy', 'Romance']\",['USA']\r\ntt1621046,\"['Biography', 'Drama']\",\"['USA', 'Mexico']\"\r\ntt1622979,\"['Horror', 'Thriller']\",\"['USA', 'Canada', 'Singapore', 'Hong Kong']\"\r\ntt1623288,\"['Animation', 'Adventure', 'Comedy']\",['USA']\r\ntt1623745,['Drama'],['USA']\r\ntt1627497,['Drama'],[]\r\ntt1628841,\"['Action', 'Adventure', 'Sci-Fi']\",[]\r\ntt1629705,\"['Action', 'Adventure', 'Western']\",[]\r\ntt1630564,\"['Action', 'Crime', 'Thriller']\",['Canada']\r\ntt1632708,\"['Comedy', 'Romance']\",[]\r\ntt1633356,\"['Horror', 'Thriller']\",[]\r\ntt1634121,\"['Fantasy', 'Horror', 'Thriller']\",\"['USA', 'UK', 'Spain']\"\r\ntt1634122,\"['Action', 'Adventure', 'Comedy']\",\"['USA', 'France', 'UK']\"\r\ntt1636629,\"['Action', 'Adventure', 'Fantasy']\",[]\r\ntt1637706,\"['Comedy', 'Drama']\",['USA']\r\ntt1637725,['Comedy'],[]\r\ntt1640459,\"['Action', 'Comedy', 'Horror']\",[]\r\ntt1640484,\"['Comedy', 'Drama']\",[]\r\n"
  },
  {
    "path": "data/metadata/movies.csv",
    "content": "imdbid,title,year\ntt1707386,Les Misérables,2012.0\ntt6398184,Downton Abbey,2019.0\ntt6324278,Abominable,2019.0\ntt0448115,Shazam!,2019.0\ntt6343314,Creed II,2018.0\ntt5013056,Dunkirk,2017.0\ntt0109288,Blankman,1994.0\ntt7343762,Good Boys,2019.0\ntt6095472,The Angry Birds Movie 2,2019.0\ntt2709692,The Grinch,2018.0\ntt5109784,Mother!,2017.0\ntt0077288,La Cage aux Folles,1978.0\ntt0069995,Don't Look Now,1973.0\ntt0070666,Serpico,1973.0\ntt2561572,Get Hard,2015.0\ntt0408306,Munich,2005.0\ntt7547410,Dora and the Lost City of Gold,2019.0\ntt0071402,Death Wish,1974.0\ntt0116225,Escape from L.A.,1996.0\ntt0092493,Crocodile Dundee II,1988.0\ntt0082782,My Bloody Valentine,1981.0\ntt0070016,Charlotte's Web,1973.0\ntt0073440,Nashville,1975.0\ntt5952594,The Mustang,2019.0\ntt0118688,Batman & Robin,1997.0\ntt2599716,Jing cha gu shi 2013,2013.0\ntt8079248,Yesterday,2019.0\ntt4532826,Robin Hood,2018.0\ntt5164214,Ocean's Eight,2018.0\ntt0058672,Topkapi,1964.0\ntt2495118,Yip Man: Jung gik yat zin,2013.0\ntt7634968,What Men Want,2019.0\ntt6017942,Kin,2018.0\ntt0046754,The Barefoot Contessa,1954.0\ntt1001526,Megamind,2010.0\ntt2888046,Ip Man 3,2015.0\ntt1860353,Turbo,2013.0\ntt1386932,Ip Man 2,2010.0\ntt0097388,Friday the 13th Part VIII: Jason Takes Manhattan,1989.0\ntt1220719,Ip Man,2008.0\ntt8695030,The Dead Don't Die,2019.0\ntt0045920,It Came from Outer Space,1953.0\ntt7958736,Ma,2019.0\ntt2639336,Greta,2018.0\ntt0068909,Man of La Mancha,1972.0\ntt10720210,Buzz,2019.0\ntt6212136,Paper Year,2018.0\ntt7334528,Uncle Drew,2018.0\ntt8426112,Pondemonium 3,2018.0\ntt6806448,Fast & Furious: Hobbs & Shaw,2019.0\ntt8426846,Pondemonium 2,2018.0\ntt0092605,Baby Boom,1987.0\ntt7207158,Pondemonium,2017.0\ntt2872518,The Shack,2017.0\ntt0095179,Friday the 13th Part VII: The New Blood,1988.0\ntt2992146,Di Renjie: Shen du long wang,2013.0\ntt1563742,Overboard,2018.0\ntt4795124,How to Be a Latin Lover,2017.0\ntt6663582,The Spy Who Dumped Me,2018.0\ntt5186608,I Can I Will I Did,2017.0\ntt0091080,Friday the 13th Part VI: Jason Lives,1986.0\ntt9251598,Penguin League,2019.0\ntt0332375,Saved!,2004.0\ntt3887158,The Legend of King Solomon,2017.0\ntt1846589,Hunter Killer,2018.0\ntt7401588,Instant Family,2018.0\ntt4530422,Overlord,2018.0\ntt0104573,Juice,1992.0\ntt0087298,Friday the 13th: The Final Chapter,1984.0\ntt0109447,Clifford,1994.0\ntt0080487,Caddyshack,1980.0\ntt7282468,Burning,2018.0\ntt6777338,The Villainess,2017.0\ntt7040874,A Simple Favour,2018.0\ntt6371588,The Song of Sway Lake,2018.0\ntt7752126,Brightburn,2019.0\ntt0455857,When a Stranger Calls,2006.0\ntt0110367,Little Women,1994.0\ntt0046816,The Caine Mutiny,1954.0\ntt0060429,Frankie and Johnny,1966.0\ntt0060438,A Funny Thing Happened on the Way to the Forum,1966.0\ntt0104009,Cool World,1992.0\ntt5537600,Susanne Bartsch: On Top,2017.0\ntt2066051,Rocketman,2019.0\ntt4911996,Goldstone,2016.0\ntt2283336,Men in Black: International,2019.0\ntt0369441,Fun with Dick and Jane,2005.0\ntt6466464,The Monkey King 3,2018.0\ntt4591310,Xi you ji zhi: Sun Wukong san da Baigu Jing,2016.0\ntt7275200,Fishtales 2,2017.0\ntt0092948,Eddie Murphy: Raw,1987.0\ntt6212478,American Animals,2018.0\ntt6320628,Spider-Man: Far from Home,2019.0\ntt6857112,Us,2019.0\ntt0155711,Flawless,1999.0\ntt2025526,Choi-jong-byeong-gi hwal,2011.0\ntt1456661,Jing wu feng yun: Chen Zhen,2010.0\ntt1999890,Hell Fest,2018.0\ntt0113464,Jeffrey,1995.0\ntt3531824,Nerve,2016.0\ntt7042862,The Man Who Killed Hitler and Then the Bigfoot,2018.0\ntt0083972,Friday the 13th: Part III,1982.0\ntt4761916,Unfriended: Dark Web,2018.0\ntt8726116,Huan tu,2018.0\ntt9251718,Pixy Dragons,2019.0\ntt5113040,The Secret Life of Pets 2,2019.0\ntt7073518,7 from Etheria,2017.0\ntt0418819,Land of the Dead,2005.0\ntt0085970,Mr. Mum,1983.0\ntt6146586,John Wick: Chapter 3 - Parabellum,2019.0\ntt0096256,They Live,1988.0\ntt8155288,Happy Death Day 2U,2019.0\ntt0289765,Red Dragon,2002.0\ntt3281548,Little Women,2019.0\ntt5649108,Thoroughbreds,2017.0\ntt7287136,Blueprint,2017.0\ntt4666228,Propeller,2015.0\ntt5968394,Captive State,2019.0\ntt0837563,Pet Sematary,2019.0\ntt5599818,Kor,2016.0\ntt3391782,Everyday Rebellion,2013.0\ntt0098084,Pet Sematary,1989.0\ntt6428676,Wonder Park,2019.0\ntt2267858,You Are Driving Me Crazy,2012.0\ntt6495770,Action Point,2018.0\ntt0106220,Addams Family Values,1993.0\ntt0117894,Thinner,1996.0\ntt9428920,Something From Nothing,2016.0\ntt5596104,The Ashram,2018.0\ntt7014006,Eighth Grade,2018.0\ntt3576060,Point and Shoot,2014.0\ntt3206798,Lola's Last Letter,2016.0\ntt6958014,Duck Butter,2018.0\ntt6921996,Johnny English 3,2018.0\ntt5610554,Tully,2018.0\ntt0397535,Memoirs of a Geisha,2005.0\ntt4092422,Love Is Thicker Than Water,2016.0\ntt2798920,Annihilation,2018.0\ntt7575702,Monsterland 2,2019.0\ntt4953610,The Purging Hour,2016.0\ntt0114608,Tales from the Crypt: Demon Knight,1995.0\ntt7043070,Strange Events,2017.0\ntt0455760,Dead Silence,2007.0\ntt5886046,Escape Room,2019.0\ntt5941692,Miss Bala,2019.0\ntt3080844,Crocodile Gennadiy,2015.0\ntt5160154,The Pass,2016.0\ntt6205872,Assassination Nation,2018.0\ntt0864835,Mr. Peabody & Sherman,2014.0\ntt2582784,Flower,2017.0\ntt0245429,Spirited Away,2001.0\ntt5912454,Blue Jay,2016.0\ntt0424095,Flushed Away,2006.0\ntt2518848,500 MPH Storm,2013.0\ntt0120587,Antz,1998.0\ntt3120508,Bone Alone,2013.0\ntt0110366,The Little Rascals,1994.0\ntt6644200,A Quiet Place,2018.0\ntt1628841,Independence Day: Resurgence,2016.0\ntt4520924,Beauty Mark,2017.0\ntt1343092,The Great Gatsby,2013.0\ntt3626442,Björk: Biophilia Live,2014.0\ntt3986978,Along for the Ride,2016.0\ntt1210166,Moneyball,2011.0\ntt2401878,Anomalisa,2015.0\ntt2385752,Modern Life Is Rubbish,2017.0\ntt1230168,Same Kind of Different as Me,2017.0\ntt2368619,Bastille Day,2016.0\ntt5081618,Sacred Blood,2015.0\ntt6857166,Book Club,2018.0\ntt5338644,Madame Hyde,2017.0\ntt0318155,Looney Tunes: Back in Action,2003.0\ntt2991532,The Bell Witch Haunting,2013.0\ntt0093756,Police Academy 4: Citizens on Patrol,1987.0\ntt6981634,Wanderland,2018.0\ntt3597400,Just Eat It: A Food Waste Story,2014.0\ntt6149802,The Relationtrip,2017.0\ntt5167174,Rainbow Time,2016.0\ntt0087928,Police Academy,1984.0\ntt1791528,Inherent Vice,2014.0\ntt3084904,Ovum,2015.0\ntt2439946,40 Days and Nights,2012.0\ntt5657846,Daddy's Home 2,2017.0\ntt5700672,Train to Busan,2016.0\ntt3540136,Zhan lang,2015.0\ntt3922754,Ardennes Fury,2014.0\ntt6015706,China Salesman,2017.0\ntt1068242,Footloose,2011.0\ntt2186712,Long Nights Short Mornings,2016.0\ntt3261182,The Lonely Italian,2016.0\ntt5354458,Lake on Fire,2016.0\ntt2296777,Sherlock Gnomes,2018.0\ntt4701182,Bumblebee,2018.0\ntt6215044,Oceans Rising,2017.0\ntt5460416,Active Adults,2017.0\ntt1411238,No Strings Attached,2011.0\ntt3715296,Sex Guaranteed,2017.0\ntt5039994,Dismissed,2017.0\ntt0113957,The Net,1995.0\ntt2693580,Miss Stevens,2016.0\ntt1869315,Born Bad,2011.0\ntt1972591,King Arthur: Legend of the Sword,2017.0\ntt5716380,Thumper,2017.0\ntt0081573,Superman II,1980.0\ntt1907668,Flight,2012.0\ntt0185431,Little Nicky,2000.0\ntt0096101,Short Circuit 2,1988.0\ntt1258972,The Man with the Iron Fists,2012.0\ntt0892791,Shrek Forever After,2010.0\ntt3607812,The Sheik,2014.0\ntt0448694,Puss in Boots,2011.0\ntt8804688,Connect,2019.0\ntt1192628,Rango,2011.0\ntt0120630,Chicken Run,2000.0\ntt1277953,Madagascar 3: Europe's Most Wanted,2012.0\ntt0413267,Shrek the Third,2007.0\ntt0481499,The Croods,2013.0\ntt0138749,The Road to El Dorado,2000.0\ntt7399158,Baby Fever,2017.0\ntt1694020,The Guilt Trip,2012.0\ntt0097778,Look Who's Talking,1989.0\ntt0479952,Madagascar: Escape 2 Africa,2008.0\ntt1911658,Penguins of Madagascar,2014.0\ntt7454138,Elias og Storegaps Hemmelighet,2017.0\ntt0298148,Shrek 2,2004.0\ntt0312528,The Cat in the Hat,2003.0\ntt7575480,Penguin Rescue,2018.0\ntt5667482,Izzie's Way Home,2016.0\ntt6499752,Upgrade,2018.0\ntt4943934,Martian Land,2015.0\ntt2196430,Alien Origin,2012.0\ntt0884732,The Wedding Ringer,2015.0\ntt0279493,Undercover Brother,2002.0\ntt0763831,A Thousand Words,2012.0\ntt1321509,Death at a Funeral,2010.0\ntt0168501,The Best Man,1999.0\ntt1640484,Jumping the Broom,2011.0\ntt0081562,Stir Crazy,1980.0\ntt0113845,Money Train,1995.0\ntt0297181,I Spy,2002.0\ntt7108976,Jo-seon-myeong-tamjeong: Heupyeolgoemaui bimil,2018.0\ntt6231588,Sinbad and the War of the Furies,2016.0\ntt6823368,Glass,2019.0\ntt1091863,With Great Power: The Stan Lee Story,2010.0\ntt7745068,My Hero Academia: Two Heroes,2018.0\ntt2436386,Project Almanac,2015.0\ntt0099582,Flatliners,1990.0\ntt0033553,Dr. Jekyll and Mr. Hyde,1941.0\ntt0190865,Vertical Limit,2000.0\ntt0059245,The Greatest Story Ever Told,1965.0\ntt4288674,It Came from the Desert,2017.0\ntt8671462,Invoking 5,2018.0\ntt0120794,The Prince of Egypt,1998.0\ntt0095497,The Last Temptation of Christ,1988.0\ntt0490215,Silence,2016.0\ntt5582876,Ben Hur,2016.0\ntt1411704,Hop,2011.0\ntt0101329,An American Tail: Fievel Goes West,1991.0\ntt5112578,Super Dark Times,2017.0\ntt0970179,Hugo,2011.0\ntt0085248,The Black Stallion Returns,1983.0\ntt0093999,Snow White,1987.0\ntt7616798,A Dog's Way Home,2019.0\ntt3606888,A Street Cat Named Bob,2016.0\ntt0103786,Beethoven,1992.0\ntt7008872,Boy Erased,2018.0\ntt2018111,And Then I Go,2017.0\ntt1645170,The Dictator,2012.0\ntt3553442,Whiskey Tango Foxtrot,2016.0\ntt4225696,I Was a Teenage Wereskunk,2016.0\ntt4217392,Kung Fu Yoga,2017.0\ntt3228302,Kung Fu Elliot,2014.0\ntt2839312,Barrio Brawler,2013.0\ntt4537896,White Boy Rick,2018.0\ntt2165735,Du zhan,2012.0\ntt5177088,The Girl in the Spider's Web,2018.0\ntt1255919,Holmes & Watson,2018.0\ntt1758810,The Snowman,2017.0\ntt4504438,Dream/Killer,2015.0\ntt7074886,The Front Runner,2018.0\ntt1477834,Aquaman,2018.0\ntt1596363,The Big Short,2015.0\ntt4925292,Lady Bird,2017.0\ntt1663143,Fun Size,2012.0\ntt1817771,Freaks of Nature,2015.0\ntt5734576,The Possession of Hannah Grace,2018.0\ntt5173032,Buster's Mal Heart,2016.0\ntt5664636,Goosebumps 2: Haunted Halloween,2018.0\ntt2267968,Kung Fu Panda 3,2016.0\ntt0090633,An American Tail,1986.0\ntt2832470,Dead Snow 2,2014.0\ntt5938084,BuyBust,2018.0\ntt0841046,Walk Hard: The Dewey Cox Story,2007.0\ntt1302011,Kung Fu Panda 2,2011.0\ntt7349662,BlacKkKlansman,2018.0\ntt6966692,Green Book,2018.0\ntt2119543,The House with a Clock in Its Walls,2018.0\ntt4244998,Alpha,2018.0\ntt1270797,Venom,2018.0\ntt3766354,The Equalizer 2,2018.0\ntt4633694,Spider-Man: Into the Spider-Verse,2018.0\ntt7668870,Searching,2018.0\ntt0181316,Blue Streak,1999.0\ntt3450650,Paul Blart: Mall Cop 2,2015.0\ntt0095647,Mississippi Burning,1988.0\ntt0092563,Angel Heart,1987.0\ntt1213641,First Man,2018.0\ntt2671706,Fences,2016.0\ntt0057251,Lilies of the Field,1963.0\ntt1285009,The Strangers: Prey at Night,2018.0\ntt0102960,Sometimes They Come Back,1991.0\ntt0470993,Crazy Eights,2006.0\ntt1428538,Hansel & Gretel: Witch Hunters,2013.0\ntt5481984,Sinister Squad,2016.0\ntt0365957,You Got Served,2004.0\ntt4145324,Bound,2015.0\ntt6781982,Night School,2018.0\ntt2937696,Everybody Wants Some!!,2016.0\ntt0090685,Back to School,1986.0\ntt6911608,Mamma Mia! Here We Go Again,2018.0\ntt3640424,Allied,2016.0\ntt0427152,Dinner for Schmucks,2010.0\ntt0077504,The End,1978.0\ntt0111143,The Shadow,1994.0\ntt0117107,Mulholland Falls,1996.0\ntt0281686,Bubba Ho-Tep,2002.0\ntt0089489,Lifeforce,1985.0\ntt2042447,The Amityville Haunting,2011.0\ntt1502407,Halloween,2018.0\ntt6133466,The First Purge,2018.0\ntt4786282,Lights Out,2016.0\ntt1980209,Pain & Gain,2013.0\ntt0479884,Crank,2006.0\ntt5734548,Troy the Odyssey,2017.0\ntt0409847,Cowboys & Aliens,2011.0\ntt1335975,47 Ronin,2013.0\ntt0076239,Joyride,1977.0\ntt2543164,Arrival,2016.0\ntt0134983,Supernova,2000.0\ntt0062622,2001: A Space Odyssey,1968.0\ntt0074559,Future World,1976.0\ntt0983193,The Adventures of Tintin: The Secret of the Unicorn,2011.0\ntt2279373,The SpongeBob Movie: Sponge Out of Water,2015.0\ntt3095734,Monster Trucks,2016.0\ntt2202750,Santa's Little Yelpers,2012.0\ntt3860916,Cargo,2017.0\ntt0938283,The Last Airbender,2010.0\ntt0082348,Excalibur,1981.0\ntt0026714,A Midsummer Night's Dream,1935.0\ntt4912910,Mission: Impossible - Fallout,2018.0\ntt1205537,Jack Ryan: Shadow Recruit,2014.0\ntt2538128,100 Degrees Below Zero,2013.0\ntt0101452,Bill & Ted's Bogus Journey,1991.0\ntt0109045,\"The Adventures of Priscilla, Queen of the Desert\",1994.0\ntt2136808,Celebrity Sex Tape,2012.0\ntt0058586,A Shot in the Dark,1964.0\ntt0078163,Revenge of the Pink Panther,1978.0\ntt0051786,It! The Terror from Beyond Space,1958.0\ntt5160954,The 5th Kind,2017.0\ntt1679335,Trolls,2016.0\ntt8560130,Space Guardians 2,2018.0\ntt6408946,Easter Bunny Adventure,2017.0\ntt9004516,Zoo Wars 2,2019.0\ntt5936438,Star Paws,2016.0\ntt0312004,The Curse of the Were-Rabbit,2005.0\ntt3604958,East Jerusalem/West Jerusalem,2014.0\ntt5974388,In Between,2016.0\ntt1928329,Linhas de Wellington,2012.0\ntt0064395,Guns of the Magnificent Seven,1969.0\ntt5091014,Jasper Jones,2017.0\ntt1492842,Forgetting the Girl,2012.0\ntt4779682,The Meg,2018.0\ntt7681902,Won't You Be My Neighbor?,2018.0\ntt6599064,L'Opéra,2017.0\ntt2833768,Theory of Obscurity: A Film About the Residents,2015.0\ntt0389790,Bee Movie,2007.0\ntt5363648,Fishtales,2016.0\ntt1235522,Broken City,2013.0\ntt0102388,The Man in the Moon,1991.0\ntt5758778,Skyscraper,2018.0\ntt1268799,A Very Harold & Kumar 3D Christmas,2011.0\ntt1951261,The Hangover Part III,2013.0\ntt4738802,That's Not Me,2017.0\ntt2767266,The Director: An Evolution in Three Acts,2013.0\ntt7137846,Breaking In,2018.0\ntt7260048,Outside In,2017.0\ntt2309260,The Gallows,2015.0\ntt6883152,The Devil and Father Amorth,2017.0\ntt5725894,Ghosthunters,2016.0\ntt0095990,Return of the Living Dead: Part II,1988.0\ntt5435476,Tilt,2017.0\ntt0085470,Easy Money,1983.0\ntt6580394,The Fast and the Fierce,2017.0\ntt3399112,No No: A Dockumentary,2014.0\ntt0061512,Cool Hand Luke,1967.0\ntt0195714,Final Destination,2000.0\ntt0083642,The Best Little Whorehouse in Texas,1982.0\ntt8033592,Us and Them,2018.0\ntt0111686,Wes Craven's New Nightmare,1994.0\ntt0101917,Freddy's Dead: The Final Nightmare,1991.0\ntt0417148,Snakes on a Plane,2006.0\ntt0102266,The Last Boy Scout,1991.0\ntt1037705,The Book of Eli,2010.0\ntt1690991,Nijntje de film,2013.0\ntt7424200,Teen Titans GO! to the Movies,2018.0\ntt5639446,Duplicate,2018.0\ntt3874544,The Boss Baby,2017.0\ntt0061791,How to Succeed in Business Without Really Trying,1967.0\ntt0126029,Shrek,2001.0\ntt0974015,Justice League,2017.0\ntt2126355,San Andreas,2015.0\ntt0351283,Madagascar,2005.0\ntt0441773,Kung Fu Panda,2008.0\ntt4624424,Storks,2016.0\ntt1935859,Miss Peregrine's Home for Peculiar Children,2016.0\ntt0063829,\"Yours, Mine and Ours\",1968.0\ntt1446192,Rise of the Guardians,2012.0\ntt0083767,Creepshow,1982.0\ntt0082250,Death Wish II,1982.0\ntt3230934,No Control,2015.0\ntt0245803,Bulletproof Monk,2003.0\ntt0060921,The Russians Are Coming! The Russians Are Coming!,1966.0\ntt0088915,Chorus Line,1985.0\ntt0094118,Teen Wolf Too,1987.0\ntt0892782,Monsters vs. Aliens,2009.0\ntt2091256,Captain Underpants: The First Epic Movie,2017.0\ntt0062803,Chitty Chitty Bang Bang,1968.0\ntt1646971,How to Train Your Dragon 2,2014.0\ntt0892769,How to Train Your Dragon,2010.0\ntt7690670,Superfly,2018.0\ntt0067741,Shaft,1971.0\ntt0095348,I'm Gonna Git You Sucka,1988.0\ntt0111161,The Shawshank Redemption,1994.0\ntt0051525,The Defiant Ones,1958.0\ntt0313443,Out of Time,2003.0\ntt0087800,A Nightmare on Elm Street,1984.0\ntt0089901,Remo: Unarmed and Dangerous,1985.0\ntt5220122,Hotel Transylvania 3: A Monster Vacation,2018.0\ntt1179056,A Nightmare on Elm Street,2010.0\ntt6772950,Truth or Dare,2018.0\ntt1540011,Blair Witch,2016.0\ntt2660888,Star Trek Beyond,2016.0\ntt0078346,Superman,1978.0\ntt0114069,Outbreak,1995.0\ntt0092710,Burglar,1987.0\ntt0102526,New Jack City,1991.0\ntt0106455,Boiling Point,1993.0\ntt2404233,Gods of Egypt,2016.0\ntt0104265,Final Analysis,1992.0\ntt3110958,Now You See Me 2,2016.0\ntt0101984,Guilty by Suspicion,1991.0\ntt1411697,The Hangover Part II,2011.0\ntt1119646,The Hangover,2009.0\ntt5052474,Sicario: Day of the Soldado,2018.0\ntt0112401,Assassins,1995.0\ntt0111255,The Specialist,1994.0\ntt2557478,Pacific Rim: Uprising,2018.0\ntt0293815,Friday After Next,2002.0\ntt2531344,Blockers,2018.0\ntt3393786,Jack Reacher: Never Go Back,2016.0\ntt0790724,Jack Reacher,2012.0\ntt1055292,Life as We Know It,2010.0\ntt1322312,Going the Distance,2010.0\ntt0419843,In the Land of Women,2007.0\ntt1340138,Terminator Genisys,2015.0\ntt0090859,Cobra,1986.0\ntt1469304,Baywatch,2017.0\ntt0095188,Funny Farm,1988.0\ntt4881806,Jurassic World: Fallen Kingdom,2018.0\ntt1179933,10 Cloverfield Lane,2016.0\ntt2118624,The Final Girls,2015.0\ntt0822847,Priest,2011.0\ntt2304933,The 5th Wave,2016.0\ntt3862750,The Perfect Guy,2015.0\ntt1198138,Obsessed,2009.0\ntt2011159,No Good Deed,2014.0\ntt2381249,Mission: Impossible - Rogue Nation,2015.0\ntt0419706,Doom,2005.0\ntt0483607,Doomsday,2008.0\ntt0482606,The Strangers,2008.0\ntt7518466,Conor McGregor: Notorious,2017.0\ntt0795421,Mamma Mia!,2008.0\ntt5308322,Happy Death Day,2017.0\ntt5776858,Phantom Thread,2017.0\ntt7109844,Neat: The Story of Bourbon,2018.0\ntt4542660,We Are Blood,2015.0\ntt2527336,Star Wars: Episode VIII - The Last Jedi,2017.0\ntt5117670,Peter Rabbit,2018.0\ntt6000478,\"Roman J. Israel, Esq.\",2017.0\ntt6116682,The Rape of Recy Taylor,2017.0\ntt4572792,The Book of Henry,2017.0\ntt5325030,My Art,2016.0\ntt1578275,The Dilemma,2011.0\ntt3957170,Gun Runners,2015.0\ntt0455944,The Equalizer,2014.0\ntt3532216,American Made,2017.0\ntt0462504,Rescue Dawn,2006.0\ntt0102316,Little Man Tate,1991.0\ntt0056264,Mutiny on the Bounty,1962.0\ntt4555426,Darkest Hour,2017.0\ntt0077572,Force 10 from Navarone,1978.0\ntt5719108,The War Show,2016.0\ntt0104815,El mariachi,1992.0\ntt0066448,There Was a Crooked Man...,1970.0\ntt0059803,Tiempo de morir,1966.0\ntt4477536,Fifty Shades Freed,2018.0\ntt0382992,Stealth,2005.0\ntt0257076,S.W.A.T.,2003.0\ntt0048380,Mister Roberts,1955.0\ntt0250720,See Spot Run,2001.0\ntt0077235,Big Wednesday,1978.0\ntt0034587,Cat People,1942.0\ntt0036855,Gaslight,1944.0\ntt0071675,It's Alive,1974.0\ntt0079239,The Great Santini,1979.0\ntt6333066,Trophy,2017.0\ntt4397414,The Motivation 2.0: Real American Skater: The Chris Cole Story,2015.0\ntt0451279,Wonder Woman,2017.0\ntt0918940,The Legend of Tarzan,2016.0\ntt0211443,Jason X,2001.0\ntt2967226,Killing Hasselhoff,2017.0\ntt4872162,Countdown,2016.0\ntt4497338,Interrogation,2016.0\ntt3957956,12 Rounds 3: Lockdown,2015.0\ntt4765284,Pitch Perfect 3,2017.0\ntt5726086,Insidious: The Last Key,2018.0\ntt6421110,Proud Mary,2018.0\ntt3829920,Only the Brave,2017.0\ntt3783958,La La Land,2016.0\ntt1219827,Ghost in the Shell,2017.0\ntt4966046,Awaken the Shadowman,2017.0\ntt3371366,Transformers: The Last Knight,2017.0\ntt6094944,Bad Lucky Goat,2017.0\ntt4211312,The White King,2016.0\ntt1291150,Teenage Mutant Ninja Turtles,2014.0\ntt5061162,Ucitelka,2016.0\ntt5529680,Darth Maul: Apprentice,2016.0\ntt1293847,xXx: Return of Xander Cage,2017.0\ntt3773378,Conduct! Every Move Counts,2016.0\ntt1519461,Area 51,2015.0\ntt2283362,Jumanji: Welcome to the Jungle,2017.0\ntt5301544,Swing State,2017.0\ntt1386697,Suicide Squad,2016.0\ntt5612742,F*&% the Prom,2017.0\ntt4848010,Fits and Starts,2017.0\ntt3518988,Harmontown,2014.0\ntt1754767,Toonstone,2014.0\ntt1540115,Coal Rush,2012.0\ntt3605266,Everything Beautiful Is Far Away,2017.0\ntt1856101,Blade Runner 2049,2017.0\ntt4877122,The Emoji Movie,2017.0\ntt1650062,Super 8,2011.0\ntt1648190,The Dark Tower,2017.0\ntt1959563,The Hitman's Bodyguard,2017.0\ntt3892618,Alleluia! The Devil's Carnival,2016.0\ntt4335520,CODE: Debugging the Gender Gap,2015.0\ntt2378507,The Glass Castle,2017.0\ntt4131800,My Little Pony,2017.0\ntt3469046,Despicable Me 3,2017.0\ntt3564472,Girls Trip,2017.0\ntt1711525,Office Christmas Party,2016.0\ntt0498381,Rings,2017.0\ntt2473510,Paranormal Activity: The Ghost Dimension,2015.0\ntt3065204,The Conjuring 2,2016.0\ntt3322940,Annabelle,2014.0\ntt3799694,The Nice Guys,2016.0\ntt3280262,Cult of Chucky,2017.0\ntt2975590,Batman v Superman: Dawn of Justice,2016.0\ntt1528854,Daddy's Home,2015.0\ntt0088206,Supergirl,1984.0\ntt1253863,300: Rise of an Empire,2014.0\ntt3482062,Bad Roomies,2015.0\ntt2406566,Atomic Blonde,2017.0\ntt4139124,Keanu,2016.0\ntt10146586,Minecraft: into the Nether,2015.0\ntt3534842,Finders Keepers,2014.0\ntt5278578,Newtown,2016.0\ntt2250912,Spider-Man: Homecoming,2017.0\ntt3717490,Power Rangers,2017.0\ntt4005332,One Direction: The Inside Story,2014.0\ntt3890160,Baby Driver,2017.0\ntt6414866,Residente,2017.0\ntt4425200,John Wick: Chapter 2,2017.0\ntt3038734,Club Life,2015.0\ntt4935334,Southbound,2015.0\ntt5115546,Ghost Team,2016.0\ntt5462602,The Big Sick,2017.0\ntt6231792,Moto 8: The Movie,2016.0\ntt5199588,View from a Blue Moon,2015.0\ntt5226436,The Fourth Phase,2016.0\ntt4698584,Neruda,2016.0\ntt4939066,Operation Chromite,2016.0\ntt2989524,Carrie Pilby,2016.0\ntt3717316,Hunter Gatherer,2016.0\ntt5072406,Moka,2016.0\ntt7456468,Asagao to Kase-san,2018.0\ntt5022872,Barash,2015.0\ntt5186236,Powidoki,2016.0\ntt5120042,I Am the Blues,2015.0\ntt4666726,Christine,2016.0\ntt4799050,Rough Night,2017.0\ntt2763304,T2 Trainspotting 2,2017.0\ntt3121332,Nasty Baby,2015.0\ntt3416742,What We Do in the Shadows,2014.0\ntt2592614,Resident Evil: The Final Chapter,2016.0\ntt5442430,Life,2017.0\ntt4698684,Hunt for the Wilderpeople,2016.0\ntt3917210,\"Life, Animated\",2016.0\ntt2398241,Smurfs: The Lost Village,2017.0\ntt4160708,Don't Breathe,2016.0\ntt0079714,Phantasm,1979.0\ntt0101625,Once Upon a Crime...,1992.0\ntt0406375,Zathura: A Space Adventure,2005.0\ntt0079073,Dracula,1979.0\ntt2345759,The Mummy,2017.0\ntt2639254,A Little Chaos,2014.0\ntt0024184,The Invisible Man,1933.0\ntt0034398,The Wolf Man,1941.0\ntt0355702,Lords of Dogtown,2005.0\ntt1374989,Pride and Prejudice and Zombies,2016.0\ntt2513074,Billy Lynn's Long Halftime Walk,2016.0\ntt3717252,Underworld: Blood Wars,2016.0\ntt1355644,Passengers,2016.0\ntt3170902,Theeb,2014.0\ntt5294966,After the Storm,2016.0\ntt4882174,37,2016.0\ntt3142366,Take Me to the River,2015.0\ntt0084191,Kamikaze 1989,1982.0\ntt1808339,Not Another Happy Ending,2013.0\ntt3407428,Glassland,2014.0\ntt4972582,Split,2016.0\ntt4361050,Ouija: Origin of Evil,2016.0\ntt1753383,A Dog's Purpose,2017.0\ntt4649416,Almost Christmas,2016.0\ntt2034800,The Great Wall,2016.0\ntt4550098,Nocturnal Animals,2016.0\ntt3631112,The Girl on the Train,2016.0\ntt4630562,Fast & Furious 8,2017.0\ntt3263408,Somewhere in the Middle,2015.0\ntt2650978,The Dark Valley,2014.0\ntt5182856,Harmonium,2016.0\ntt8071196,Amnesia Love,2018.0\ntt5974624,Pi sheng shang de hun,2016.0\ntt0099938,Kindergarten Cop,1990.0\ntt0112384,Apollo 13,1995.0\ntt0046912,Dial M for Murder,1954.0\ntt0091763,Platoon,1986.0\ntt0095031,Dirty Rotten Scoundrels,1988.0\ntt5052448,Get Out,2017.0\ntt4465564,Fifty Shades Darker,2017.0\ntt0395169,Hotel Rwanda,2004.0\ntt0881320,Sanctum,2011.0\ntt0095593,Married to the Mob,1988.0\ntt0891527,Lions for Lambs,2007.0\ntt0106452,Body Snatchers,1993.0\ntt0181739,Osmosis Jones,2001.0\ntt0119592,Mad City,1997.0\ntt0104107,Midnight Sting,1992.0\ntt0041090,Adam's Rib,1949.0\ntt0031867,The Roaring Twenties,1939.0\ntt0094894,Colors,1988.0\ntt0044685,Hans Christian Andersen,1952.0\ntt0077838,The Last Waltz,1978.0\ntt0098309,She-Devil,1989.0\ntt0101371,Article 99,1992.0\ntt0301470,Jeepers Creepers 2,2003.0\ntt0061452,Casino Royale,1967.0\ntt0051201,Witness for the Prosecution,1957.0\ntt0100232,Navy Seals,1990.0\ntt0090056,Spies Like Us,1985.0\ntt0113228,Grumpier Old Men,1995.0\ntt0089530,Mad Max Beyond Thunderdome,1985.0\ntt0116253,Executive Decision,1996.0\ntt0053125,North by Northwest,1959.0\ntt0093713,Pelle the Conqueror,1987.0\ntt1391116,Resistance,2011.0\ntt2586118,D'Ardennen,2015.0\ntt3700392,Heidi,2015.0\ntt0277027,I Am Sam,2001.0\ntt0106701,Dennis the Menace,1993.0\ntt0101635,Curly Sue,1991.0\ntt0094027,Stand and Deliver,1988.0\ntt0120094,Selena,1997.0\ntt0817230,Valentine's Day,2010.0\ntt0065446,The Ballad of Cable Hogue,1970.0\ntt0090856,Club Paradise,1986.0\ntt0094921,Crossing Delancey,1988.0\ntt0085333,Christine,1983.0\ntt0118661,The Avengers,1998.0\ntt2318092,Endless Love,2014.0\ntt1582465,A Birder's Guide to Everything,2013.0\ntt0035015,The Magnificent Ambersons,1942.0\ntt0234829,Summer Catch,2001.0\ntt0056218,The Manchurian Candidate,1962.0\ntt0057193,It's a Mad Mad Mad Mad World,1963.0\ntt1488555,The Change-Up,2011.0\ntt0423977,Charlie Bartlett,2007.0\ntt0245046,Charlotte Gray,2001.0\ntt0100486,Reversal of Fortune,1990.0\ntt0093660,Nuts,1987.0\ntt0120458,Virus,1999.0\ntt1564585,Skyline,2010.0\ntt0097500,Her Alibi,1989.0\ntt0120787,A Perfect Murder,1998.0\ntt0113870,Murder in the First,1995.0\ntt0444682,The Reaping,2007.0\ntt1139668,The Unborn,2009.0\ntt1190080,2012,2009.0\ntt1385826,The Adjustment Bureau,2011.0\ntt2910814,The Signal,2014.0\ntt2024469,Non-Stop,2014.0\ntt0365907,A Walk Among the Tombstones,2014.0\ntt1216491,Kill the Messenger,2014.0\ntt0054135,Ocean's Eleven,1960.0\ntt2349144,Mississippi Grind,2015.0\ntt0264935,Murder by Numbers,2002.0\ntt2377322,Deliver Us from Evil,2014.0\ntt0102915,Showdown in Little Tokyo,1991.0\ntt0367652,Deuce Bigalow: European Gigolo,2005.0\ntt0374536,Bewitched,2005.0\ntt0095925,Pumpkinhead,1988.0\ntt2788710,The Interview,2014.0\ntt2170299,Bad Words,2013.0\ntt0243655,Wet Hot American Summer,2001.0\ntt0448157,Hancock,2008.0\ntt0118750,Booty Call,1997.0\ntt0110657,The Next Karate Kid,1994.0\ntt0120686,Stepmom,1998.0\ntt0105121,The People Under the Stairs,1991.0\ntt0102492,My Girl,1991.0\ntt0164912,Stuart Little,1999.0\ntt0243585,Stuart Little 2,2002.0\ntt0439815,Slither,2006.0\ntt3322364,Concussion,2015.0\ntt1232200,That's My Boy,2012.0\ntt1564367,Just Go with It,2011.0\ntt0960144,You Don't Mess with the Zohan,2008.0\ntt0371246,Spanglish,2004.0\ntt0389860,Click,2006.0\ntt0106379,Being Human,1994.0\ntt0088707,American Flyers,1985.0\ntt0088680,After Hours,1985.0\ntt0274309,24 Hour Party People,2002.0\ntt0101701,Delirious,1991.0\ntt0100258,Night of the Living Dead,1990.0\ntt1282140,Easy A,2010.0\ntt0852713,The House Bunny,2008.0\ntt0879870,Eat Pray Love,2010.0\ntt1114740,Paul Blart: Mall Cop,2009.0\ntt0117008,Matilda,1996.0\ntt0099204,Cadillac Man,1990.0\ntt0097757,The Little Mermaid,1989.0\ntt0409182,Poseidon,2006.0\ntt0089175,Fright Night,1985.0\ntt2241351,Money Monster,2016.0\ntt0172493,\"Girl, Interrupted\",1999.0\ntt0112818,Dead Man Walking,1995.0\ntt0310793,Bowling for Columbine,2002.0\ntt0022913,Freaks,1932.0\ntt1535109,Captain Phillips,2013.0\ntt4178092,The Gift,2015.0\ntt2717822,Blackhat,2015.0\ntt0155267,The Thomas Crown Affair,1999.0\ntt0063688,The Thomas Crown Affair,1968.0\ntt0114134,The Pillow Book,1996.0\ntt1596345,Pawn Sacrifice,2014.0\ntt4183692,Woodlawn,2015.0\ntt0112887,The Doom Generation,1995.0\ntt0070460,Day for Night,1973.0\ntt3569230,Legend,2015.0\ntt3077214,Suffragette,2015.0\ntt0318374,The Cooler,2003.0\ntt0108026,The Saint of Fort Washington,1993.0\ntt1285016,The Social Network,2010.0\ntt1568346,The Girl with the Dragon Tattoo,2011.0\ntt3850214,Dope,2015.0\ntt2473602,Get on Up,2014.0\ntt0811080,Speed Racer,2008.0\ntt0243133,The Man Who Wasn't There,2001.0\ntt0119080,Eve's Bayou,1997.0\ntt0065112,Topaz,1969.0\ntt0100519,Rosencrantz & Guildenstern Are Dead,1990.0\ntt0186508,Buena Vista Social Club,1999.0\ntt0205271,Dr. T & the Women,2000.0\ntt1632708,Friends with Benefits,2011.0\ntt0101698,Defending Your Life,1991.0\ntt0210358,Things You Can Tell Just by Looking at Her,2000.0\ntt0091934,Shanghai Surprise,1986.0\ntt1307068,Seeking a Friend for the End of the World,2012.0\ntt0091777,Police Academy 3: Back in Training,1986.0\ntt0089822,Police Academy 2: Their First Assignment,1985.0\ntt0102395,Mannequin: On the Move,1991.0\ntt0093493,Mannequin,1987.0\ntt0097758,Little Monsters,1989.0\ntt0084745,Swamp Thing,1982.0\ntt0263488,Jeepers Creepers,2001.0\ntt0097737,Leviathan,1989.0\ntt0144814,The Rage: Carrie 2,1999.0\ntt2334879,White House Down,2013.0\ntt1599348,Safe House,2012.0\ntt2140379,Self/less,2015.0\ntt0434409,V for Vendetta,2005.0\ntt0114576,Sudden Death,1995.0\ntt1648179,Here Comes the Boom,2012.0\ntt1204975,Last Vegas,2013.0\ntt1655460,Wanderlust,2012.0\ntt3164256,Rock the Kasbah,2015.0\ntt0114852,Village of the Damned,1995.0\ntt1284575,Bad Teacher,2011.0\ntt1092026,Paul,2011.0\ntt0102303,Life Stinks,1991.0\ntt0076489,\"Oh, God!\",1977.0\ntt0069495,\"What's Up, Doc?\",1972.0\ntt2719848,Everest,2015.0\ntt1121096,Seventh Son,2014.0\ntt0386140,The Legend of Zorro,2005.0\ntt0091530,The Mission,1986.0\ntt3062096,Inferno,2016.0\ntt2752772,Sinister 2,2015.0\ntt3713166,Unfriended,2014.0\ntt2870612,\"As Above, So Below\",2014.0\ntt2239832,Think Like a Man Too,2014.0\ntt1621045,Think Like a Man,2012.0\ntt1195478,The Five-Year Engagement,2012.0\ntt1135503,Julie & Julia,2009.0\ntt0457939,The Holiday,2006.0\ntt2404435,The Magnificent Seven,2016.0\ntt0090927,The Delta Force,1986.0\ntt0172156,Bad Boys II,2003.0\ntt0099399,Delta Force 2: The Colombian Connection,1990.0\ntt0093164,Heat,1986.0\ntt0162346,Ghost World,2001.0\ntt0130018,I Still Know What You Did Last Summer,1998.0\ntt0424136,Hard Candy,2005.0\ntt0118564,Affliction,1997.0\ntt1872181,The Amazing Spider-Man 2,2014.0\ntt0990407,The Green Hornet,2011.0\ntt0164052,Hollow Man,2000.0\ntt0101846,F/X2,1991.0\ntt0089118,F/X,1986.0\ntt3721936,American Honey,2016.0\ntt0401420,Fierce People,2005.0\ntt0492044,The Haunting in Connecticut,2009.0\ntt0098994,\"After Dark, My Sweet\",1990.0\ntt1457765,The Haunting in Connecticut 2: Ghosts of Georgia,2013.0\ntt3470600,Sing,2016.0\ntt4302938,Kubo and the Two Strings,2016.0\ntt0479500,Nancy Drew,2007.0\ntt1219342,Legend of the Guardians: The Owls of Ga'Hoole,2010.0\ntt0183790,A Knight's Tale,2001.0\ntt0047795,Abbott and Costello Meet the Mummy,1955.0\ntt4263482,The Witch,2015.0\ntt0288477,Ghost Ship,2002.0\ntt0093091,Ghoulies II,1987.0\ntt0472458,Dumplings,2004.0\ntt1700841,Sausage Party,2016.0\ntt0119109,Fathers' Day,1997.0\ntt0101745,Doc Hollywood,1991.0\ntt0099077,Awakenings,1990.0\ntt0097236,Dream a Little Dream,1989.0\ntt4382872,Extraction,2015.0\ntt2923316,American Heist,2014.0\ntt4195278,Bana Masal Anlatma,2015.0\ntt3598222,Mercenaries,2014.0\ntt3106120,See No Evil 2,2014.0\ntt1043791,Dead Wood,2007.0\ntt0279688,Beyond the Wall of Sleep,2006.0\ntt2396701,The Haunting of Whaley House,2012.0\ntt2240312,Hold Your Breath,2012.0\ntt1658801,Freeheld,2015.0\ntt1489889,Central Intelligence,2016.0\ntt2702724,The Boss,2016.0\ntt2245003,Miss You Already,2015.0\ntt1767372,She's Funny That Way,2014.0\ntt4019560,Exposed,2016.0\ntt1274586,Dying of the Light,2014.0\ntt2381991,The Huntsman: Winter's War,2016.0\ntt0985025,Dark Floors,2008.0\ntt3307726,Bermuda Tentacles,2014.0\ntt2493486,Last Knights,2015.0\ntt2552498,Jack the Giant Killer,2013.0\ntt4145350,Hansel vs. Gretel,2015.0\ntt1509767,The Three Musketeers,2011.0\ntt1572491,Balada triste de trompeta,2010.0\ntt1031280,Splinter,2008.0\ntt2872810,Mischief Night,2013.0\ntt1982735,Killer Holiday,2013.0\ntt0286306,Deathwatch,2002.0\ntt0443435,Autopsy,2008.0\ntt3384904,Apocalypse Pompeii,2014.0\ntt2300975,Jessabelle,2014.0\ntt1331307,Dread,2008.0\ntt0492486,Shrooms,2007.0\ntt3614530,Jem and the Holograms,2015.0\ntt2005374,The Frozen Ground,2013.0\ntt0382943,Return to Sleepaway Camp,2008.0\ntt1757742,Emergo,2011.0\ntt2474438,Attila Marcel,2013.0\ntt1366365,The Cold Light of Day,2012.0\ntt2395199,Enemies Closer,2013.0\ntt2012665,Repentance,2013.0\ntt3036676,Beyond Justice,2014.0\ntt1014763,Child 44,2015.0\ntt2304953,Reasonable Doubt,2014.0\ntt1730294,For the Love of Money,2012.0\ntt0269743,Barking Dogs Never Bite,2000.0\ntt3202890,Reclaim,2014.0\ntt0928375,Legend of the Bog,2009.0\ntt2108605,Bigfoot County,2012.0\ntt1876261,Bigfoot,2012.0\ntt2457138,Battledogs,2013.0\ntt1956620,Sex Tape,2014.0\ntt2166934,My Man Is a Loser,2014.0\ntt3203890,Pulling Strings,2013.0\ntt2378281,No se aceptan devoluciones,2013.0\ntt1278449,Sound of Noise,2010.0\ntt2382396,Joe,2013.0\ntt0107302,Kalifornia,1993.0\ntt3093522,Anarchy: Ride or Die,2014.0\ntt1396523,Revenge of the Green Dragons,2014.0\ntt1663207,Life of Crime,2013.0\ntt1972571,A Most Wanted Man,2014.0\ntt1754656,The Little Prince,2015.0\ntt1614989,Hodejegerne,2011.0\ntt0479162,Special,2006.0\ntt1617661,Jupiter Ascending,2015.0\ntt2223990,Draft Day,2014.0\ntt1621046,Cesar Chavez,2014.0\ntt2103264,Emperor,2012.0\ntt1811307,Burning Blue,2013.0\ntt2106476,The Hunt,2012.0\ntt1713476,The Bay,2012.0\ntt1134854,Survival of the Dead,2009.0\ntt3233418,Spare Parts,2015.0\ntt2725962,What We Did on Our Holiday,2014.0\ntt0391024,Control Room,2004.0\ntt2017020,The Smurfs 2,2013.0\ntt0472181,The Smurfs,2011.0\ntt1130088,Is Anybody There?,2008.0\ntt2094064,Much Ado About Nothing,2012.0\ntt1833888,Angels Sing,2013.0\ntt1815862,After Earth,2013.0\ntt0490181,Mutant Chronicles,2008.0\ntt1865393,Hellbenders,2012.0\ntt0407304,War of the Worlds,2005.0\ntt1321870,Gangster Squad,2013.0\ntt1595656,To the Wonder,2012.0\ntt1667889,Ice Age: Continental Drift,2012.0\ntt0097322,The Fabulous Baker Boys,1989.0\ntt1389096,Stand Up Guys,2012.0\ntt2094018,Hours,2013.0\ntt1747958,Blood Ties,2013.0\ntt1551621,Raging Phoenix,2009.0\ntt1535108,Elysium,2013.0\ntt1764183,Arbitrage,2012.0\ntt1770734,Shadow Dancer,2012.0\ntt0079592,Murder by Decree,1979.0\ntt1132130,2012: Doomsday,2008.0\ntt1386703,Total Recall,2012.0\ntt0450336,Blood Creek,2009.0\ntt0457572,Fido,2006.0\ntt0780607,The Signal,2007.0\ntt0480669,Los cronocrímenes,2007.0\ntt1758830,This Is 40,2012.0\ntt1931435,The Big Wedding,2013.0\ntt1878942,Date and Switch,2014.0\ntt1839654,The Magic of Belle Isle,2012.0\ntt0057187,Irma la Douce,1963.0\ntt0094678,Arthur 2: On the Rocks,1988.0\ntt0369672,A Love Song for Bobby Long,2004.0\ntt0099797,The Hot Spot,1990.0\ntt1270262,The Devil's Double,2011.0\ntt1629705,Blackthorn,2011.0\ntt1386588,The Other Guys,2010.0\ntt1531663,Everything Must Go,2010.0\ntt0093693,Overboard,1987.0\ntt0095684,My Best Friend Is a Vampire,1987.0\ntt1436432,MegaFault,2009.0\ntt1240982,Your Highness,2011.0\ntt0087078,Conan the Destroyer,1984.0\ntt1181791,Black Death,2010.0\ntt0109835,Frank & Jesse,1994.0\ntt0433412,Material Girls,2006.0\ntt1221208,Frankie & Alice,2010.0\ntt0094321,Who's That Girl,1987.0\ntt0114614,Tank Girl,1995.0\ntt0399901,Woman Thou Art Loosed,2004.0\ntt0111301,Street Fighter,1994.0\ntt1155076,The Karate Kid,2010.0\ntt1458175,The Next Three Days,2010.0\ntt0460810,The Great Buck Howard,2008.0\ntt0486358,Jesus Camp,2006.0\ntt0944835,Salt,2010.0\ntt0113855,Mortal Kombat,1995.0\ntt0397044,Blood and Chocolate,2007.0\ntt1462758,Buried,2010.0\ntt0478188,King of the Lost World,2005.0\ntt0305357,Charlie's Angels: Full Throttle,2003.0\ntt0338216,Lucky You,2007.0\ntt0104438,Honeymoon in Vegas,1992.0\ntt1235796,Ondine,2009.0\ntt0460740,Cashback,2006.0\ntt0286716,Hulk,2003.0\ntt0352277,De-Lovely,2004.0\ntt0077294,Capricorn One,1977.0\ntt0055031,Judgment at Nuremberg,1961.0\ntt0053946,Inherit the Wind,1960.0\ntt0061418,Bonnie and Clyde,1967.0\ntt0062765,Bullitt,1968.0\ntt0032599,His Girl Friday,1940.0\ntt0233277,Back to the Secret Garden,2000.0\ntt0109279,Black Beauty,1994.0\ntt1895587,Spotlight,2015.0\ntt1024648,Argo,2012.0\ntt0810819,The Danish Girl,2015.0\ntt0048545,Rebel Without a Cause,1955.0\ntt0049730,The Searchers,1956.0\ntt0475290,\"Hail, Caesar!\",2016.0\ntt3203606,Trumbo,2015.0\ntt0033467,Citizen Kane,1941.0\ntt1790885,Zero Dark Thirty,2012.0\ntt4438848,Bad Neighbours 2,2016.0\ntt1971352,Compliance,2012.0\ntt0100935,Wild at Heart,1990.0\ntt0056193,Lolita,1962.0\ntt4530832,Road Wars,2015.0\ntt1232829,21 Jump Street,2012.0\ntt3534282,Don Verdean,2015.0\ntt3457734,Fort Tilden,2014.0\ntt1783732,John Dies at the End,2012.0\ntt4094724,The Purge: Election Year,2016.0\ntt3079016,We'll Never Have Paris,2014.0\ntt1440732,Bel Ami,2012.0\ntt3746298,Vendetta,2015.0\ntt2869728,Ride Along 2,2016.0\ntt3760922,My Big Fat Greek Wedding 2,2016.0\ntt1334537,Humpday,2009.0\ntt0083739,Class of 1984,1982.0\ntt0071517,Foxy Brown,1974.0\ntt3960412,Popstar: Never Stop Never Stopping,2016.0\ntt0366551,Harold & Kumar Get the Munchies,2004.0\ntt0910936,Pineapple Express,2008.0\ntt4196776,Jason Bourne,2016.0\ntt0149261,Deep Blue Sea,1999.0\ntt0107362,Last Action Hero,1993.0\ntt1290471,The Day the Earth Stopped,2008.0\ntt2191701,Grown Ups 2,2013.0\ntt1375670,Grown Ups,2010.0\ntt3499424,Hercules Reborn,2014.0\ntt1663662,Pacific Rim,2013.0\ntt7069210,The Conjuring 3,2020.0\ntt3276924,Heist,2015.0\ntt2547172,Larry Gaye: Renegade Male Flight Attendant,2015.0\ntt3393070,Android Cop,2014.0\ntt2709768,The Secret Life of Pets,2016.0\ntt0400717,Open Season,2006.0\ntt0423294,Surf's Up,2007.0\ntt0787470,Gary the Tennis Coach,2009.0\ntt1276419,A Royal Affair,2012.0\ntt0803096,Warcraft: The Beginning,2016.0\ntt1133985,Green Lantern,2011.0\ntt3672840,Tian jiang xiong shi,2015.0\ntt2216240,A Hijacking,2012.0\ntt2310332,The Hobbit: The Battle of the Five Armies,2014.0\ntt1170358,The Hobbit: The Desolation of Smaug,2013.0\ntt0903624,The Hobbit: An Unexpected Journey,2012.0\ntt1507566,Fake,2011.0\ntt0988045,Sherlock Holmes,2009.0\ntt1656186,Stolen,2012.0\ntt2097307,Hit and Run,2012.0\ntt1951265,The Hunger Games: Mockingjay - Part 1,2014.0\ntt0844471,Cloudy with a Chance of Meatballs,2009.0\ntt1766094,So Undercover,2012.0\ntt2024506,Straight A's,2013.0\ntt1374992,Upside Down,2012.0\ntt0770828,Man of Steel,2013.0\ntt0067992,Willy Wonka & the Chocolate Factory,1971.0\ntt1646987,Wrath of the Titans,2012.0\ntt2383068,The Sacrament,2013.0\ntt0105698,Universal Soldier,1992.0\ntt0024216,King Kong,1933.0\ntt1709143,The Last Days on Mars,2013.0\ntt1578882,Elephant White,2011.0\ntt2279339,Christmas with the Coopers,2015.0\ntt5323662,A Silent Voice,2016.0\ntt0800320,Clash of the Titans,2010.0\ntt0120912,Men in Black II,2002.0\ntt1392190,Mad Max: Fury Road,2015.0\ntt1985949,Angry Birds,2016.0\ntt2379713,Spectre,2015.0\ntt1409024,Men in Black 3,2012.0\ntt0120685,Godzilla,1998.0\ntt1985966,Cloudy with a Chance of Meatballs 2,2013.0\ntt0097647,The Karate Kid Part III,1989.0\ntt0091326,The Karate Kid Part II,1986.0\ntt1234721,RoboCop,2014.0\ntt1217613,Battle Los Angeles,2011.0\ntt2637294,Hot Tub Time Machine 2,2015.0\ntt2967224,Hot Pursuit,2015.0\ntt1355630,If I Stay,2014.0\ntt0089853,The Purple Rose of Cairo,1985.0\ntt3850590,Krampus,2015.0\ntt0119282,Hercules,1997.0\ntt0296572,The Chronicles of Riddick,2004.0\ntt0259324,Ghost Rider,2007.0\ntt3628584,Barbershop: A Fresh Cut,2016.0\ntt0948470,The Amazing Spider-Man,2012.0\ntt0413300,Spider-Man 3,2007.0\ntt1038686,Legion,2010.0\ntt0091167,Hannah and Her Sisters,1986.0\ntt0079522,Manhattan,1979.0\ntt0316654,Spider-Man 2,2004.0\ntt0075686,Annie Hall,1977.0\ntt1289401,Ghostbusters,2016.0\ntt3530002,The Night Before,2015.0\ntt1430607,Arthur Christmas,2011.0\ntt1430626,The Pirates! In an Adventure with Scientists!,2012.0\ntt2510894,Hotel Transylvania 2,2015.0\ntt0837562,Hotel Transylvania,2012.0\ntt1051904,Goosebumps,2015.0\ntt1288558,Evil Dead,2013.0\ntt4052882,The Shallows,2016.0\ntt7264080,\"I Love You, Daddy\",2017.0\ntt1496025,Underworld Awakening,2012.0\ntt0834001,Underworld: Rise of the Lycans,2009.0\ntt0401855,Underworld: Evolution,2006.0\ntt0271263,Eight Crazy Nights,2002.0\ntt0385880,Monster House,2006.0\ntt0119345,I Know What You Did Last Summer,1997.0\ntt0115963,The Craft,1996.0\ntt0808151,Angels & Demons,2009.0\ntt0373051,Journey to the Center of the Earth,2008.0\ntt2236182,Rise of the Zombies,2012.0\ntt2978716,Zombie Night,2013.0\ntt2621126,Mindless Behavior: All Around the World,2013.0\ntt2518926,Age of Dinosaurs,2013.0\ntt1020558,Centurion,2010.0\ntt0108149,Six Degrees of Separation,1993.0\ntt1623745,Little Birds,2011.0\ntt1692084,High Road,2011.0\ntt1634121,Intruders,2011.0\ntt0988849,Donkey Punch,2008.0\ntt1016268,Enron: The Smartest Guys in the Room,2005.0\ntt3064298,Man Up,2015.0\ntt2051894,Home Run,2013.0\ntt4034228,Manchester by the Sea,2016.0\ntt2345112,Parkland,2013.0\ntt0038109,Spellbound,1945.0\ntt0097239,Driving Miss Daisy,1989.0\ntt3168230,Mr. Holmes,2015.0\ntt0032976,Rebecca,1940.0\ntt1876547,Zombie Apocalypse,2011.0\ntt3567288,The Visit,2015.0\ntt1623288,ParaNorman,2012.0\ntt0063350,Night of the Living Dead,1968.0\ntt1204977,Ouija,2014.0\ntt0298388,Jonah: A VeggieTales Movie,2002.0\ntt0339291,A Series of Unfortunate Events,2004.0\ntt0112642,Casper,1995.0\ntt0134847,Pitch Black,2000.0\ntt0905372,The Thing,2011.0\ntt1440129,Battleship,2012.0\ntt0023245,The Mummy,1932.0\ntt0085636,Halloween III: Season of the Witch,1982.0\ntt0082495,Halloween II,1981.0\ntt0116365,The Frighteners,1996.0\ntt0780653,The Wolfman,2010.0\ntt0103956,Child's Play 3,1991.0\ntt0099253,Child's Play 2,1990.0\ntt2230358,Curse of Chucky,2013.0\ntt0387575,Seed of Chucky,2004.0\ntt0144120,Bride of Chucky,1998.0\ntt1850457,Sisters,2015.0\ntt3321300,Spooks: The Greater Good,2015.0\ntt0091778,Poltergeist II: The Other Side,1986.0\ntt0092076,The Texas Chainsaw Massacre 2,1986.0\ntt1659216,Spiders 3D,2013.0\ntt0860462,Mercury Man,2006.0\ntt3453772,Asteroid vs Earth,2014.0\ntt0068762,Jeremiah Johnson,1972.0\ntt0452694,The Time Traveller's Wife,2009.0\ntt2554274,Crimson Peak,2015.0\ntt2581244,Life After Beth,2014.0\ntt1491044,The Iceman,2012.0\ntt1341341,Ceremony,2010.0\ntt0093223,House of Games,1987.0\ntt2292182,Shark Week,2012.0\ntt1927093,Fred 2: Night of the Living Fred,2011.0\ntt2236160,Nightlight,2015.0\ntt2490326,Cooties,2014.0\ntt0093300,Jaws: The Revenge,1987.0\ntt0077766,Jaws 2,1978.0\ntt2080374,Steve Jobs,2015.0\ntt0061747,Hang 'Em High,1968.0\ntt0468492,The Host,2006.0\ntt0079261,Hair,1979.0\ntt2195548,Prince Avalanche,2013.0\ntt1536410,Faces in the Crowd,2011.0\ntt1524575,The Vatican Tapes,2015.0\ntt3605418,Knock Knock,2015.0\ntt2473682,Paranormal Activity: The Marked Ones,2014.0\ntt2109184,Paranormal Activity 4,2012.0\ntt2205697,Stuck in Love.,2012.0\ntt2708254,Life of a King,2013.0\ntt2226519,Plush,2013.0\ntt0781008,Band Camp Dirty Diary: American Pie Presents Band Camp DVD,2005.0\ntt1602472,2 Days in New York,2012.0\ntt1350512,The Terminators,2009.0\ntt1640548,Rampart,2011.0\ntt0480271,Van Wilder 2: The Rise of Taj,2006.0\ntt1748179,Red Lights,2012.0\ntt0970866,Little Fockers,2010.0\ntt0068897,The Magnificent Seven Ride!,1972.0\ntt0805564,Lars and the Real Girl,2007.0\ntt0091983,Something Wild,1986.0\ntt0102744,Quigley Down Under,1990.0\ntt0098577,Vampire's Kiss,1988.0\ntt0095082,Eight Men Out,1988.0\ntt0089504,Lost in America,1985.0\ntt0106387,Benny & Joon,1993.0\ntt1368116,Merantau,2009.0\ntt0997147,Dai-Nihonjin,2007.0\ntt1634122,Johnny English Reborn,2011.0\ntt1959490,Noah,2014.0\ntt1156300,Deadtime Stories 2,2011.0\ntt1334526,Deadtime Stories,2009.0\ntt1618442,The Last Witch Hunter,2015.0\ntt1705773,Mega Shark vs. Crocosaurus,2010.0\ntt1350498,Mega Shark vs. Giant Octopus,2009.0\ntt1582248,Injustice,2011.0\ntt2231253,Wild Card,2015.0\ntt0044081,A Streetcar Named Desire,1951.0\ntt2870708,Wish I Was Here,2014.0\ntt1666801,The Duff,2015.0\ntt3045616,Mortdecai,2015.0\ntt1674784,Trespass,2011.0\ntt1778304,Paranormal Activity 3,2011.0\ntt1536044,Paranormal Activity 2,2010.0\ntt1748122,Moonrise Kingdom,2012.0\ntt2202385,Because I Love You,2012.0\ntt0089017,Desperately Seeking Susan,1985.0\ntt0810817,The Da Vinci Treasure,2006.0\ntt0061811,In the Heat of the Night,1967.0\ntt0785035,Ong Bak 2,2008.0\ntt0081455,Scanners,1981.0\ntt0047472,Seven Brides for Seven Brothers,1954.0\ntt0274166,Johnny English,2003.0\ntt0085382,Cujo,1983.0\ntt0086525,Valley Girl,1983.0\ntt1480295,Killing Season,2013.0\ntt0089907,The Return of the Living Dead,1985.0\ntt1605630,American Reunion,2012.0\ntt0068833,The Last House on the Left,1972.0\ntt1649444,[Rec]³: Génesis,2012.0\ntt1655441,The Age of Adaline,2015.0\ntt1245112,[Rec]²,2009.0\ntt0816711,World War Z,2013.0\ntt1925518,Warrior King 2,2013.0\ntt1932767,What Maisie Knew,2012.0\ntt3316948,American Ultra,2015.0\ntt0029947,Bringing Up Baby,1938.0\ntt0993846,The Wolf of Wall Street,2013.0\ntt3397884,Sicario,2015.0\ntt1592281,Take This Waltz,2011.0\ntt1376709,I Love You Too,2010.0\ntt0787474,The Boxtrolls,2014.0\ntt4547120,San Andreas Quake,2015.0\ntt0290747,Man-Thing,2005.0\ntt1529572,Trust,2010.0\ntt0096787,All Dogs Go to Heaven,1989.0\ntt0238546,Queen of the Damned,2002.0\ntt1453403,William Vincent,2010.0\ntt1825157,The Double,2013.0\ntt0453451,Mr. Bean's Holiday,2007.0\ntt1853739,You're Next,2011.0\ntt2039345,Grand Piano,2013.0\ntt2235108,Dear White People,2014.0\ntt0084649,The Secret of NIMH,1982.0\ntt1302067,Yogi Bear,2010.0\ntt0379786,Serenity,2005.0\ntt0087365,\"Greystoke: The Legend of Tarzan, Lord of the Apes\",1984.0\ntt3181822,The Boy Next Door,2015.0\ntt4566574,Mega Shark vs. Kolossus,2015.0\ntt0975645,Hitchcock,2012.0\ntt0086856,The Adventures of Buckaroo Banzai Across the 8th Dimension,1984.0\ntt1951266,The Hunger Games: Mockingjay - Part 2,2015.0\ntt2908446,Insurgent,2015.0\ntt2872750,Shaun the Sheep Movie,2015.0\ntt0470752,Ex Machina,2014.0\ntt1356864,I'm Still Here,2010.0\ntt1116184,Jackass 3D,2010.0\ntt2626350,Step Up All In,2014.0\ntt0107983,Romeo Is Bleeding,1993.0\ntt1229340,Anchorman 2: The Legend Continues,2013.0\ntt1229238,Mission: Impossible - Ghost Protocol,2011.0\ntt1583421,G.I. Joe: Retaliation,2013.0\ntt0493430,Jackass Number Two,2006.0\ntt2333784,The Expendables 3,2014.0\ntt0286788,What a Girl Wants,2003.0\ntt0120800,The Magic Sword: Quest for Camelot,1998.0\ntt1571249,The Skeleton Twins,2014.0\ntt3899796,Sharknado 3: Oh Hell No!,2015.0\ntt1680138,Mega Python vs. Gatoroid,2011.0\ntt1450321,Filth,2013.0\ntt1587807,Mega Piranha,2010.0\ntt2637276,Ted 2,2015.0\ntt0104040,The Cutting Edge,1992.0\ntt2109248,Transformers: Age of Extinction,2014.0\ntt1399103,Transformers: Dark of the Moon,2011.0\ntt1055369,Transformers: Revenge of the Fallen,2009.0\ntt1792794,Almighty Thor,2011.0\ntt0113243,Hackers,1995.0\ntt2246549,Abraham Lincoln vs. Zombies,2012.0\ntt0337579,Barbershop 2: Back in Business,2004.0\ntt0388500,Beauty Shop,2005.0\ntt0097576,Indiana Jones and the Last Crusade,1989.0\ntt0367882,Indiana Jones and the Kingdom of the Crystal Skull,2008.0\ntt0071360,The Conversation,1974.0\ntt0077745,Invasion of the Body Snatchers,1978.0\ntt1137470,Accidental Love,2015.0\ntt2023587,Mama,2013.0\ntt1440161,A Little Bit of Heaven,2011.0\ntt1403981,Remember Me,2010.0\ntt1699755,Peeples,2013.0\ntt2024432,Identity Thief,2013.0\ntt1649419,The Impossible,2012.0\ntt3062074,Sharknado 2: The Second One,2014.0\ntt2724064,Sharknado,2013.0\ntt1772925,Jiro Dreams of Sushi,2011.0\ntt0094074,Superman IV: The Quest for Peace,1987.0\ntt0086393,Superman III,1983.0\ntt1263670,Crazy Heart,2009.0\ntt0162222,Cast Away,2000.0\ntt0087469,Indiana Jones and the Temple of Doom,1984.0\ntt0082971,Raiders of the Lost Ark,1981.0\ntt1305583,Our Family Wedding,2010.0\ntt0814255,Percy Jackson & the Lightning Thief,2010.0\ntt0949731,The Happening,2008.0\ntt0416212,The Secret Life of Bees,2008.0\ntt0311429,The League of Extraordinary Gentlemen,2003.0\ntt0056197,The Longest Day,1962.0\ntt2553908,Cinco de Mayo: La batalla,2013.0\ntt0848537,Epic,2013.0\ntt1389137,We Bought a Zoo,2011.0\ntt1033575,The Descendants,2011.0\ntt1279935,Date Night,2010.0\ntt1033643,What Happens in Vegas,2008.0\ntt0429493,The A-Team,2010.0\ntt2345613,Leprechaun: Origins,2014.0\ntt1194173,The Bourne Legacy,2012.0\ntt1408101,Star Trek into Darkness,2013.0\ntt0083550,Amityville II: The Possession,1982.0\ntt2293640,Minions,2015.0\ntt2911666,John Wick,2014.0\ntt2235779,The Quiet Ones,2014.0\ntt1807944,As I Lay Dying,2013.0\ntt1932718,Thanks for Sharing,2012.0\ntt1935179,Mud,2012.0\ntt2051879,Europa Report,2013.0\ntt1155592,Man on Wire,2008.0\ntt1398426,Straight Outta Compton,2015.0\ntt2975578,The Purge: Anarchy,2014.0\ntt2093977,Crush,2013.0\ntt1196948,The Necessary Death of Charlie Countryman,2013.0\ntt0044953,The Naked Spur,1953.0\ntt0120654,Dirty Work,1998.0\ntt0040872,They Live by Night,1948.0\ntt1294970,The Angriest Man in Brooklyn,2014.0\ntt2458106,Ninja: Shadow of a Tear,2013.0\ntt0082332,Enter the Ninja,1981.0\ntt1809398,Unbroken,2014.0\ntt1470023,MacGruber,2010.0\ntt1139797,Let the Right One In,2008.0\ntt0378109,Into the Blue,2005.0\ntt2322441,Fifty Shades of Grey,2015.0\ntt0478304,The Tree of Life,2011.0\ntt0822832,Marley & Me,2008.0\ntt1131734,Jennifer's Body,2009.0\ntt0432283,Fantastic Mr. Fox,2009.0\ntt1698648,Girl Most Likely,2012.0\ntt0109370,Canadian Bacon,1995.0\ntt1659337,The Perks of Being a Wallflower,2012.0\ntt1592873,LOL,2012.0\ntt1735898,Snow White and the Huntsman,2012.0\ntt1935896,The ABCs of Death,2012.0\ntt0113161,Get Shorty,1995.0\ntt0408524,Bad News Bears,2005.0\ntt1496422,The Paperboy,2012.0\ntt0120184,Sphere,1998.0\ntt0078227,Semi-Tough,1977.0\ntt2450186,V/H/S/2,2013.0\ntt2105044,V/H/S,2012.0\ntt0835418,The Babymakers,2012.0\ntt1155056,\"I Love You, Man\",2009.0\ntt3152624,Trainwreck,2015.0\ntt2872732,Lucy,2014.0\ntt2004420,Bad Neighbours,2014.0\ntt2096672,Dumb and Dumber To,2014.0\ntt1596350,This Means War,2012.0\ntt1412386,The Best Exotic Marigold Hotel,2011.0\ntt0356680,The Family Stone,2005.0\ntt2382009,Nymphomaniac: Vol. II,2013.0\ntt1091191,Lone Survivor,2013.0\ntt1937390,Nymphomaniac: Vol. I,2013.0\ntt2349460,Grace Unplugged,2013.0\ntt1821694,RED 2,2013.0\ntt1913166,Nurse 3-D,2013.0\ntt1704573,Bernie,2011.0\ntt1297919,Blitz,2011.0\ntt0087985,Red Dawn,1984.0\ntt0101764,Double Impact,1991.0\ntt0829150,Dracula Untold,2014.0\ntt1065073,Boyhood,2014.0\ntt2481480,Rob the Mob,2014.0\ntt2274570,Bad Milo!,2013.0\ntt2265398,Drinking Buddies,2013.0\ntt1211956,Escape Plan,2013.0\ntt0469021,Alan Partridge: Alpha Papa,2013.0\ntt0114508,Species,1995.0\ntt0089200,Ghoulies,1984.0\ntt1637725,Ted,2012.0\ntt0780622,Teeth,2007.0\ntt1213663,The World's End,2013.0\ntt2557490,A Million Ways to Die in the West,2014.0\ntt2318527,Hell Baby,2013.0\ntt2017038,All Is Lost,2013.0\ntt1247640,District 13: Ultimatum,2009.0\ntt0120241,Suicide Kings,1997.0\ntt0377471,Be Cool,2005.0\ntt1478338,Bridesmaids,2011.0\ntt1981677,Pitch Perfect,2012.0\ntt2398249,They Came Together,2014.0\ntt0351977,Walking Tall,2004.0\ntt0985694,Machete,2010.0\ntt1013743,Knight and Day,2010.0\ntt1022603,500 Days of Summer,2009.0\ntt0327850,Welcome to the Jungle,2003.0\ntt0947798,Black Swan,2010.0\ntt1542344,127 Hours,2010.0\ntt1538819,Ejder Kapani,2010.0\ntt0451079,Horton Hears a Who!,2008.0\ntt0098206,Road House,1989.0\ntt0050825,Paths of Glory,1957.0\ntt0095690,Mystic Pizza,1988.0\ntt0091217,Hoosiers,1986.0\ntt0106856,Falling Down,1993.0\ntt0048028,East of Eden,1955.0\ntt0059113,Doctor Zhivago,1965.0\ntt0250494,Legally Blonde,2001.0\ntt0479143,Rocky Balboa,2006.0\ntt0113321,Home for the Holidays,1995.0\ntt0311648,Pieces of April,2003.0\ntt1731141,Ender's Game,2013.0\ntt1670345,Now You See Me,2013.0\ntt1418377,\"I, Frankenstein\",2014.0\ntt1572315,Texas Chainsaw 3D,2013.0\ntt1588173,Warm Bodies,2013.0\ntt1549920,The Last Stand,2013.0\ntt1650043,Diary of a Wimpy Kid 2: Rodrick Rules,2011.0\ntt1408253,Ride Along,2014.0\ntt2848292,Pitch Perfect 2,2015.0\ntt0369610,Jurassic World,2015.0\ntt2820852,Fast & Furious 7,2015.0\ntt2980516,The Theory of Everything,2014.0\ntt0066995,Diamonds Are Forever,1971.0\ntt0086006,Never Say Never Again,1983.0\ntt0062512,You Only Live Twice,1967.0\ntt0246460,Die Another Day,2002.0\ntt0057076,From Russia with Love,1963.0\ntt0058150,Goldfinger,1964.0\ntt0830515,Quantum of Solace,2008.0\ntt1074638,Skyfall,2012.0\ntt0059800,Thunderball,1965.0\ntt0381061,Casino Royale,2006.0\ntt0064757,On Her Majesty's Secret Service,1969.0\ntt0113189,GoldenEye,1995.0\ntt0120347,Tomorrow Never Dies,1997.0\ntt0090264,A View to a Kill,1985.0\ntt0071807,The Man with the Golden Gun,1974.0\ntt0097742,Licence to Kill,1989.0\ntt0143145,The World is Not Enough,1999.0\ntt0082398,For Your Eyes Only,1981.0\ntt0086034,Octopussy,1983.0\ntt0070328,Live and Let Die,1973.0\ntt0076752,The Spy Who Loved Me,1977.0\ntt0093428,The Living Daylights,1987.0\ntt0055928,Dr. No,1962.0\ntt0079574,Moonraker,1979.0\ntt1436562,Rio,2011.0\ntt1318514,Rise of the Planet of the Apes,2011.0\ntt0477347,Night at the Museum,2006.0\ntt0489099,Jumper,2008.0\ntt0455499,Garfield 2,2006.0\ntt0303933,Drumline,2002.0\ntt0098621,The War of the Roses,1989.0\ntt0120461,Volcano,1997.0\ntt0120913,Titan A.E.,2000.0\ntt0114885,Waiting to Exhale,1995.0\ntt0120902,The X Files,1998.0\ntt0105812,White Men Can't Jump,1992.0\ntt0473308,Waitress,2007.0\ntt0096463,Working Girl,1988.0\ntt0084855,The Verdict,1982.0\ntt0250797,Unfaithful,2002.0\ntt0117979,The Truth About Cats & Dogs,1996.0\ntt0316732,Taxi,2004.0\ntt1753584,Sexual Chronicles of a French Family,2012.0\ntt0988595,27 Dresses,2008.0\ntt0094291,Wall Street,1987.0\ntt0358273,Walk the Line,2005.0\ntt0293662,The Transporter,2002.0\ntt0117509,Romeo + Juliet,1996.0\ntt1323594,Despicable Me,2010.0\ntt0059742,The Sound of Music,1965.0\ntt0048605,The Seven Year Itch,1955.0\ntt0117887,That Thing You Do!,1996.0\ntt0427944,Thank You for Smoking,2005.0\ntt0120169,Soul Food,1997.0\ntt0119313,Hope Floats,1998.0\ntt0901476,Bride Wars,2009.0\ntt0455824,Australia,2008.0\ntt0114887,A Walk in the Clouds,1995.0\ntt0129387,There's Something About Mary,1998.0\ntt1216496,Mother,2009.0\ntt0101889,The Fisher King,1991.0\ntt1196141,Diary of a Wimpy Kid,2010.0\ntt1201607,Harry Potter and the Deathly Hallows: Part 2,2011.0\ntt0952640,Alvin and the Chipmunks,2007.0\ntt0111257,Speed,1994.0\ntt0247745,Super Troopers,2001.0\ntt1840309,Divergent,2014.0\ntt0376994,X-Men: The Last Stand,2006.0\ntt0290334,X-Men 2,2003.0\ntt0120903,X-Men,2000.0\ntt0120179,Speed 2: Cruise Control,1997.0\ntt0256380,Shallow Hal,2001.0\ntt0268380,Ice Age,2002.0\ntt0133952,The Siege,1998.0\ntt0244970,Animal Attraction,2001.0\ntt0120831,Slums of Beverly Hills,1998.0\ntt0375063,Sideways,2004.0\ntt0117628,She's the One,1996.0\ntt0203119,Sexy Beast,2000.0\ntt0073629,The Rocky Horror Picture Show,1975.0\ntt0107977,Robin Hood: Men in Tights,1993.0\ntt0443632,The Sentinel,2006.0\ntt0069113,The Poseidon Adventure,1972.0\ntt0120772,The Object of My Affection,1998.0\ntt0098258,Say Anything...,1989.0\ntt0343818,\"I, Robot\",2004.0\ntt0093822,Raising Arizona,1987.0\ntt0100403,Predator 2,1990.0\ntt0063442,Planet of the Apes,1968.0\ntt0119896,Picture Perfect,1997.0\ntt0183649,Phone Booth,2002.0\ntt0066206,Patton,1970.0\ntt0265459,One Hour Photo,2002.0\ntt0151738,Never been Kissed,1999.0\ntt0110638,Nell,1994.0\ntt0374900,Napoleon Dynamite,2004.0\ntt0151804,Office Space,1999.0\ntt0093773,Predator,1987.0\ntt0433416,The Namesake,2006.0\ntt0051878,\"The Long, Hot Summer\",1958.0\ntt0104691,The Last of the Mohicans,1992.0\ntt0455590,The Last King of Scotland,2006.0\ntt0203009,Moulin Rouge!,2001.0\ntt0104952,My Cousin Vinny,1992.0\ntt0107614,Mrs. Doubtfire,1993.0\ntt0039628,Miracle on 34th Street,1947.0\ntt0183505,\"Me, Myself & Irene\",2000.0\ntt0203019,Men of Honour,2000.0\ntt0066026,M.A.S.H.,1970.0\ntt0100114,Marked for Death,1990.0\ntt0328107,Man on Fire,2004.0\ntt0337978,Die Hard 4.0,2007.0\ntt0449059,Little Miss Sunshine,2006.0\ntt0240468,Kung Pow: Enter the Fist,2002.0\ntt0264761,Kissing Jessica Stein,2001.0\ntt0320661,Kingdom of Heaven,2005.0\ntt0305711,Just Married,2003.0\ntt0091306,Jumpin' Jack Flash,1986.0\ntt0359517,Johnson Family Vacation,2004.0\ntt0036613,Arsenic and Old Lace,1944.0\ntt0107034,The Good Son,1993.0\ntt0454841,The Hills Have Eyes,2006.0\ntt0054997,The Hustler,1961.0\ntt0120703,How Stella Got Her Groove Back,1998.0\ntt0465494,Hitman,2007.0\ntt0101410,Barton Fink,1991.0\ntt0356721,I Heart Huckabees,2004.0\ntt0119381,Inventing the Abbotts,1997.0\ntt0388125,In Her Shoes,2005.0\ntt0455967,John Tucker Must Die,2006.0\ntt0116705,Jingle All The Way,1996.0\ntt0119349,The Ice Storm,1997.0\ntt0298845,In America,2002.0\ntt0089370,The Jewel of the Nile,1985.0\ntt0116629,Independence Day,1996.0\ntt0449010,Eragon,2006.0\ntt0104431,Home Alone 2: Lost in New York,1992.0\ntt0382077,Hide and Seek,2005.0\ntt0107144,Hot Shots! Part Deux,1993.0\ntt0102059,Hot Shots!,1991.0\ntt0120681,From Hell,2001.0\ntt0377062,Flight of the Phoenix,2004.0\ntt0099785,Home Alone,1990.0\ntt0104427,Hoffa,1992.0\ntt0356634,Garfield,2004.0\ntt0067116,The French Connection,1971.0\ntt0242423,\"Dude, Where's My Car?\",2000.0\ntt0099487,Edward Scissorhands,1990.0\ntt0137523,Fight Club,1999.0\ntt0838221,The Darjeeling Limited,2007.0\ntt0357277,Elektra,2005.0\ntt0332047,The Perfect Catch,2005.0\ntt0120631,EverAfter,1998.0\ntt0364725,Dodgeball: A True Underdog Story,2004.0\ntt0164114,Drive Me Crazy,1999.0\ntt0099423,Die Hard 2,1990.0\ntt0095016,Die Hard,1988.0\ntt0458352,The Devil Wears Prada,2006.0\ntt0043456,The Day the Earth Stood Still,1951.0\ntt0092115,Troll,1986.0\ntt0116282,Fargo,1996.0\ntt0286499,Bend It Like Beckham,2002.0\ntt0319262,The Day After Tomorrow,2004.0\ntt0088944,Commando,1985.0\ntt0452598,Cheaper by the Dozen 2,2005.0\ntt0349205,Cheaper by the Dozen,2003.0\ntt0115857,Chain Reaction,1996.0\ntt0118798,Bulworth,1998.0\ntt0297037,Brown Sugar,2002.0\ntt0120620,Brokedown Palace,1999.0\ntt0092699,Broadcast News,1987.0\ntt0078902,Breaking Away,1979.0\ntt0421729,Big Momma's House 2,2006.0\ntt0208003,Big Momma's House,2000.0\ntt0065466,Beyond the Valley of the Dolls,1970.0\ntt0163978,The Beach,2000.0\ntt0280460,The Banger Sisters,2002.0\ntt0042192,All About Eve,1950.0\ntt0168786,Antwone Fisher,2002.0\ntt0118583,Alien Resurrection,1997.0\ntt0103644,Alien³,1992.0\ntt0311113,Master and Commander: The Far Side of the World,2003.0\ntt0198021,Where the Heart Is,2000.0\ntt0283026,Swimfan,2002.0\ntt0467406,Juno,2007.0\ntt0166396,Waking Ned,1998.0\ntt0388482,Transporter 2,2005.0\ntt0139414,Lake Placid,1999.0\ntt0112864,Die Hard: With a Vengeance,1995.0\ntt0333766,Garden State,2004.0\ntt0094737,Big,1988.0\ntt0090728,Big Trouble in Little China,1986.0\ntt0456554,Grandma's Boy,2006.0\ntt0159273,Behind Enemy Lines,2001.0\ntt0115759,Broken Arrow,1996.0\ntt0064115,Butch Cassidy and the Sundance Kid,1969.0\ntt0118617,Anastasia,1997.0\ntt0370263,AVP: Alien vs. Predator,2004.0\ntt0078748,Alien,1979.0\ntt0463854,28 Weeks Later,2007.0\ntt0289043,28 Days Later...,2002.0\ntt0086998,Breakin',1984.0\ntt0095159,A Fish Called Wanda,1988.0\ntt0103596,3 Ninja Kids,1992.0\ntt0075066,The Pink Panther Strikes Again,1976.0\ntt0120841,Species II,1998.0\ntt0072081,The Return of the Pink Panther,1975.0\ntt0111282,Stargate,1994.0\ntt0095444,Killer Klowns from Outer Space,1988.0\ntt0109831,Four Weddings and a Funeral,1994.0\ntt0093409,Lethal Weapon,1987.0\ntt0078872,The Black Stallion,1979.0\ntt0107616,Much Ado About Nothing,1993.0\ntt0100054,Lord of the Flies,1990.0\ntt0333780,\"Legally Blonde 2: Red, White & Blonde\",2003.0\ntt0212985,Hannibal,2001.0\ntt0085862,Lone Wolf McQuade,1983.0\ntt0092675,Bloodsport,1988.0\ntt0103074,Thelma & Louise,1991.0\ntt0032904,The Philadelphia Story,1940.0\ntt0379725,Capote,2005.0\ntt0080745,Flash Gordon,1980.0\ntt0116778,Kingpin,1996.0\ntt0098627,Weekend at Bernie's,1989.0\ntt0050083,12 Angry Men,1957.0\ntt0245574,Y Tu Mamá También,2001.0\ntt0070849,Last Tango in Paris,1972.0\ntt0424345,Clerks II,2006.0\ntt0095560,Mac and Me,1988.0\ntt0087803,1984,1984.0\ntt0097499,Henry V,1989.0\ntt0090142,Teen Wolf,1985.0\ntt0040724,Red River,1948.0\ntt0053291,Some Like It Hot,1959.0\ntt0114814,The Usual Suspects,1995.0\ntt0101587,City Slickers,1991.0\ntt0100157,Misery,1990.0\ntt0299117,Roger Dodger,2002.0\ntt0264616,Frailty,2001.0\ntt1046163,My Best Friend's Girl,2008.0\ntt0151568,Topsy-Turvy,1999.0\ntt0092654,The Big Easy,1986.0\ntt1081935,Baarìa,2009.0\ntt1403177,Hesher,2010.0\ntt1277737,The Stoning of Soraya M.,2008.0\ntt1213012,Alpha and Omega,2010.0\ntt0164181,Stir of Echoes,1999.0\ntt0245238,Lost and Delirious,2001.0\ntt0367913,Ju-on 2,2003.0\ntt0873886,Red State,2011.0\ntt0090837,Chopping Mall,1986.0\ntt0098141,The Punisher,1989.0\ntt0173716,Cecil B. DeMented,2000.0\ntt0090713,The Best of Times,1986.0\ntt0100196,Mountains of the Moon,1990.0\ntt0107492,The Making of '...And God Spoke',1993.0\ntt0119576,Love in Paris,1997.0\ntt0081398,Raging Bull,1980.0\ntt0125879,Lulu on the Bridge,1998.0\ntt0151582,The Minus Man,1999.0\ntt0217355,Dancing at the Blue Iguana,2000.0\ntt0218922,Original Sin,2001.0\ntt0239060,Ik ook van jou,2001.0\ntt0234354,Novocaine,2001.0\ntt0067093,Fiddler on the Roof,1971.0\ntt0226935,Chelsea Walls,2001.0\ntt0250202,All Over the Guy,2001.0\ntt0094812,Bull Durham,1988.0\ntt0372334,House of D,2004.0\ntt0363473,Beyond the Sea,2004.0\ntt0098635,When Harry Met Sally,1989.0\ntt0430919,The Best Man,2005.0\ntt0426615,In the Mix,2005.0\ntt0090756,Blue Velvet,1986.0\ntt0357507,Boogeyman,2005.0\ntt0397401,Drop Dead Sexy,2005.0\ntt0086979,Blood Simple,1984.0\ntt0100507,Rocky V,1990.0\ntt0089927,Rocky IV,1985.0\ntt0084602,Rocky III,1982.0\ntt0079817,Rocky II,1979.0\ntt0099348,Dances with Wolves,1990.0\ntt0429573,An American Haunting,2005.0\ntt0433386,The Grudge 2,2006.0\ntt0114436,Showgirls,1995.0\ntt0472160,Penelope,2006.0\ntt0804516,P2,2007.0\ntt0079501,Mad Max,1979.0\ntt0097659,Kickboxer,1989.0\ntt0060196,\"The Good, the Bad and the Ugly\",1966.0\ntt0058461,A Fistful of Dollars,1964.0\ntt0805570,The Midnight Meat Train,2008.0\ntt0092086,¡Three Amigos!,1986.0\ntt0059578,For a Few Dollars More,1965.0\ntt0094012,Spaceballs,1987.0\ntt0299981,Highlander: The Source,2007.0\ntt0887912,The Hurt Locker,2008.0\ntt1023111,Never Back Down,2008.0\ntt0430912,Basic Instinct 2,2006.0\ntt0486321,Fly Me to the Moon,2008.0\ntt1124048,The Last Resort,2009.0\ntt1053859,The Grudge 3,2009.0\ntt0093870,RoboCop,1987.0\ntt0465580,Push,2009.0\ntt0093779,The Princess Bride,1987.0\ntt1232783,Sorority Row,2009.0\ntt2091473,Promised Land,2012.0\ntt0100502,RoboCop 2,1990.0\ntt1477855,Hyde Park on Hudson,2012.0\ntt1814621,Admission,2013.0\ntt0082846,On Golden Pond,1981.0\ntt1272878,2 Guns,2013.0\ntt1231587,Hot Tub Time Machine,2010.0\ntt2083355,The Best Man Holiday,2013.0\ntt1103275,Two Lovers,2008.0\ntt1172994,The House of the Devil,2009.0\ntt1612774,Rubber,2010.0\ntt1640459,Hobo with a Shotgun,2011.0\ntt0074285,Carrie,1976.0\ntt1912398,God Bless America,2011.0\ntt1172570,Bronson,2008.0\ntt1175709,All Good Things,2010.0\ntt0365485,The Matador,2005.0\ntt0790736,R.I.P.D.,2013.0\ntt0443536,Hoodwinked,2005.0\ntt0426459,Feast,2005.0\ntt0462519,School for Scoundrels,2006.0\ntt0489237,The Nanny Diaries,2007.0\ntt1979320,Rush,2013.0\ntt0884328,The Mist,2007.0\ntt0427309,The Great Debaters,2007.0\ntt0386032,Sicko,2007.0\ntt0368794,I'm Not There,2007.0\ntt0367959,Hannibal Rising,2007.0\ntt1817273,The Place Beyond the Pines,2012.0\ntt0373883,Halloween,2007.0\ntt0848557,Diary of the Dead,2007.0\ntt0421082,Control,2007.0\ntt0790636,Dallas Buyers Club,2013.0\ntt0795493,Cassandra's Dream,2007.0\ntt0450385,1408,2007.0\ntt1266029,Nowhere Boy,2009.0\ntt1007028,Zack and Miri Make a Porno,2008.0\ntt0976051,The Reader,2008.0\ntt0443559,Killshot,2008.0\ntt0403702,Youth in Revolt,2009.0\ntt2184339,The Purge,2013.0\ntt0898367,The Road,2009.0\ntt1742650,I Don't Know How She Does It,2011.0\ntt0497465,Vicky Cristina Barcelona,2008.0\ntt1483013,Oblivion,2013.0\ntt0426592,Superhero Movie,2008.0\ntt0362120,Scary Movie 4,2006.0\ntt1077258,Planet Terror,2007.0\ntt1411250,Riddick,2013.0\ntt1028528,Death Proof,2007.0\ntt0281322,Undisputed,2002.0\ntt0280778,Iris,2001.0\ntt1650554,Kick-Ass 2,2013.0\ntt0171359,Hamlet,2000.0\ntt1596343,Fast & Furious 5,2011.0\ntt0104409,Hellraiser III: Hell on Earth,1992.0\ntt0068935,Way of the Dragon,1972.0\ntt0120604,Beowulf,1999.0\ntt0122541,An Ideal Husband,1999.0\ntt0240601,\"I Love You, Baby\",2000.0\ntt1690953,Despicable Me 2,2013.0\ntt0102370,In Bed with Madonna,1991.0\ntt0110027,Highlander III: The Sorcerer,1994.0\ntt0133046,Teaching Mrs. Tingle,1999.0\ntt1905041,Furious 6,2013.0\ntt0120915,Star Wars: Episode I - The Phantom Menace,1999.0\ntt0144964,Highlander: Endgame,2000.0\ntt0246544,The Musketeer,2001.0\ntt0193560,Texas Rangers,2001.0\ntt0252299,Buffalo Soldiers,2001.0\ntt0220506,Halloween: Resurrection,2002.0\ntt0290212,Full Frontal,2002.0\ntt0282209,Darkness Falls,2003.0\ntt1139328,The Ghost,2010.0\ntt0427470,The Lookout,2007.0\ntt0052618,Ben-Hur,1959.0\ntt0417741,Harry Potter and the Half-Blood Prince,2009.0\ntt0377818,The Dukes of Hazzard,2005.0\ntt0348836,Gothika,2003.0\ntt0112462,Batman Forever,1995.0\ntt1120985,Blue Valentine,2010.0\ntt0120891,Wild Wild West,1999.0\ntt0289879,The Butterfly Effect,2004.0\ntt0329101,Freddy vs. Jason,2003.0\ntt0251160,John Q,2002.0\ntt0331632,Scooby-Doo 2: Monsters Unleashed,2004.0\ntt0267913,Scooby-Doo,2002.0\ntt0186566,Space Cowboys,2000.0\ntt0244244,Swordfish,2001.0\ntt0100944,The Witches,1990.0\ntt0105695,Unforgiven,1992.0\ntt0089791,Pee-wee's Big Adventure,1985.0\ntt0195945,Next Friday,2000.0\ntt0066999,Dirty Harry,1971.0\ntt0327056,Mystic River,2003.0\ntt0770752,Fool's Gold,2008.0\ntt0480249,I Am Legend,2007.0\ntt0366548,Happy Feet,2006.0\ntt0066434,THX 1138,1971.0\ntt0100133,Memphis Belle,1990.0\ntt0084917,The World According to Garp,1982.0\ntt0037913,Mildred Pierce,1945.0\ntt0036098,Lassie Come Home,1943.0\ntt0239395,Cats & Dogs,2001.0\ntt0103776,Batman Returns,1992.0\ntt0443649,\"10,000 BC\",2008.0\ntt0448011,Knowing,2009.0\ntt1136608,District 9,2009.0\ntt1097013,Next Day Air,2009.0\ntt0464154,Piranha 3D,2010.0\ntt0892318,Letters to Juliet,2010.0\ntt1655420,My Week with Marilyn,2011.0\ntt1637706,Our Idiot Brother,2011.0\ntt1262416,Scream 4,2011.0\ntt1655442,The Artist,2011.0\ntt1270761,Don't Be Afraid of the Dark,2010.0\ntt1504320,The King's Speech,2010.0\ntt0361748,Inglourious Basterds,2009.0\ntt1311067,Halloween II,2009.0\ntt0489049,Fanboys,2009.0\ntt0976222,Bandslam,2009.0\ntt0375568,Astro Boy,2009.0\ntt1315981,A Single Man,2009.0\ntt1951264,The Hunger Games: Catching Fire,2013.0\ntt0977855,Fair Game,2010.0\ntt1860355,Undefeated,2011.0\ntt1007029,The Iron Lady,2011.0\ntt1093357,The Darkest Hour,2011.0\ntt1045658,Silver Linings Playbook,2012.0\ntt1673434,The Twilight Saga: Breaking Dawn - Part 2,2012.0\ntt1321860,The Beaver,2011.0\ntt1517489,Spy Kids 4: All the Time in the World,2011.0\ntt0945513,Source Code,2011.0\ntt1502404,Drive Angry,2011.0\ntt1682181,Bully,2011.0\ntt1586265,What to Expect When You're Expecting,2012.0\ntt0431021,The Possession,2012.0\ntt1764651,The Expendables 2,2012.0\ntt1259521,The Cabin in the Woods,2011.0\ntt1800741,Step Up 4: Miami Heat,2012.0\ntt1212450,Lawless,2012.0\ntt1764234,Killing Them Softly,2012.0\ntt1568338,Man on a Ledge,2012.0\ntt1838544,Gone,2012.0\ntt1343727,Dredd,2012.0\ntt1920849,Bachelorette,2012.0\ntt0795461,Scary Movie 5,2013.0\ntt1327773,The Butler,2013.0\ntt2334649,Fruitvale Station,2013.0\ntt0075148,Rocky,1976.0\ntt1245526,RED,2010.0\ntt0102753,Rambling Rose,1991.0\ntt0053604,The Apartment,1960.0\ntt0367085,Soul Plane,2004.0\ntt0067411,McCabe & Mrs. Miller,1971.0\ntt0478197,Leonard Cohen: I'm Your Man,2005.0\ntt0117108,Multiplicity,1996.0\ntt0226009,Jailbait,2000.0\ntt1341167,Four Lions,2010.0\ntt0348333,Waiting...,2005.0\ntt0338095,Haute tension,2003.0\ntt0344510,A Very Long Engagement,2004.0\ntt1226236,I Am Love,2009.0\ntt0048356,Marty,1955.0\ntt0420757,Man About Town,2006.0\ntt0070355,Magnum Force,1973.0\ntt0064665,Midnight Cowboy,1969.0\ntt0795426,Midnight Clear,2006.0\ntt0095953,Rain Man,1988.0\ntt0935075,Rabbit Hole,2010.0\ntt0307351,Prey for Rock & Roll,2003.0\ntt1262981,World's Greatest Dad,2009.0\ntt1001562,Witless Protection,2008.0\ntt0245562,Windtalkers,2002.0\ntt0114938,Wild Bill,1995.0\ntt0486674,What Just Happened,2008.0\ntt1465522,Tucker and Dale vs Evil,2010.0\ntt0084814,Trail of the Pink Panther,1982.0\ntt0070814,Tom Sawyer,1973.0\ntt1293842,The Winning Season,2009.0\ntt0120520,The Wings of the Dove,1997.0\ntt0051036,Sweet Smell of Success,1957.0\ntt0098384,Steel Magnolias,1989.0\ntt0120788,Permanent Midnight,1998.0\ntt0839880,Lake Dead,2007.0\ntt0363276,Madhouse,2004.0\ntt0227005,Made,2001.0\ntt0234137,Love & Sex,2000.0\ntt0202677,The Way of the Gun,2000.0\ntt0040897,The Treasure of the Sierra Madre,1948.0\ntt0117774,The Substitute,1996.0\ntt0120802,The Red Violin,1998.0\ntt0981072,The Lucky Ones,2008.0\ntt0070334,The Long Goodbye,1973.0\ntt0165854,The Limey,1999.0\ntt0097613,The January Man,1989.0\ntt1594562,The Innkeepers,2011.0\ntt1038919,The Bounty Hunter,2010.0\ntt1392170,The Hunger Games,2012.0\ntt1615091,The Lost Future,2010.0\ntt0106664,The Dark Half,1993.0\ntt0115685,The Birdcage,1996.0\ntt0189584,The Big Kahuna,1999.0\ntt0200465,The Bank Job,2008.0\ntt0042208,The Asphalt Jungle,1950.0\ntt0078767,The Amityville Horror,1979.0\ntt0125659,Open Your Eyes,1997.0\ntt0368909,Ong-bak,2003.0\ntt1598828,One for the Money,2012.0\ntt0035140,\"Now, Voyager\",1942.0\ntt0395972,North Country,2005.0\ntt0031725,Ninotchka,1939.0\ntt0247786,\"Two Days, Nine Lives\",2001.0\ntt0309912,Nicholas Nickleby,2002.0\ntt0116743,Kama Sutra: A Tale of Love,1996.0\ntt1175491,W.,2008.0\ntt1855401,Tim and Eric's Billion Dollar Movie,2012.0\ntt1456635,Goon,2011.0\ntt0115798,The Cable Guy,1996.0\ntt0114388,Sense and Sensibility,1995.0\ntt1233227,Saw VI,2009.0\ntt0120744,The Man in the Iron Mask,1998.0\ntt0985699,Valkyrie,2008.0\ntt0100135,Men at Work,1990.0\ntt1095442,Goodbye Solo,2008.0\ntt0077597,Gas Pump Girls,1979.0\ntt0492389,Furry Vengeance,2010.0\ntt0097257,Earth Girls Are Easy,1988.0\ntt0059124,Dr. Goldfoot and the Bikini Machine,1965.0\ntt0088960,Creator,1985.0\ntt0804452,Bratz,2007.0\ntt0162662,A Slipping-Down Life,1999.0\ntt0245712,Amores Perros,2000.0\ntt1602098,Albert Nobbs,2011.0\ntt1399683,Winter's Bone,2010.0\ntt1291584,Warrior,2011.0\ntt0065214,The Wild Bunch,1969.0\ntt0075314,Taxi Driver,1976.0\ntt0258000,Panic Room,2002.0\ntt0093565,Moonstruck,1987.0\ntt1527186,Melancholia,2011.0\ntt1615147,Margin Call,2011.0\ntt1588170,I Saw the Devil,2010.0\ntt0926084,Harry Potter and the Deathly Hallows: Part 1,2010.0\ntt0190332,\"Crouching Tiger, Hidden Dragon\",2000.0\ntt1436045,13 Assassins,2010.0\ntt0098453,Teen Witch,1989.0\ntt0094862,Child's Play,1988.0\ntt0111653,Wagons East,1994.0\ntt0327919,I Am David,2003.0\ntt0094910,The Couch Trip,1988.0\ntt0081071,The Long Riders,1980.0\ntt0072325,Truck Turner,1974.0\ntt0087727,Missing in Action,1984.0\ntt0051411,The Big Country,1958.0\ntt0102555,Not Without My Daughter,1991.0\ntt0093640,No Way Out,1987.0\ntt0083629,The Beast Within,1982.0\ntt0104765,Love Field,1992.0\ntt0049406,The Killing,1956.0\ntt0052564,The Angry Red Planet,1959.0\ntt0081184,Motel Hell,1980.0\ntt0052832,The Fugitive Kind,1960.0\ntt0084732,Still of the Night,1982.0\ntt0079240,The First Great Train Robbery,1978.0\ntt0305396,The Crocodile Hunter: Collision Course,2002.0\ntt0100680,Stanley & Iris,1990.0\ntt0089572,The Mean Season,1985.0\ntt0048424,The Night of the Hunter,1955.0\ntt0082416,The French Lieutenant's Woman,1981.0\ntt0063415,The Party,1968.0\ntt0057413,The Pink Panther,1963.0\ntt0100530,The Russia House,1990.0\ntt0055614,West Side Story,1961.0\ntt0094142,Throw Momma from the Train,1987.0\ntt0054047,The Magnificent Seven,1960.0\ntt0120757,The Mod Squad,1999.0\ntt0263757,Uptown Girls,2003.0\ntt0070915,White Lightning,1973.0\ntt0098546,UHF,1989.0\ntt0098090,The Phantom of the Opera,1989.0\ntt0102926,The Silence of the Lambs,1991.0\ntt0086567,WarGames,1983.0\ntt0086619,Yentl,1983.0\ntt0092003,Stagecoach,1986.0\ntt0086999,Breakin' 2: Electric Boogaloo,1984.0\ntt0072251,The Taking of Pelham One Two Three,1974.0\ntt0071746,Lenny,1974.0\ntt0118900,Gang Related,1997.0\ntt0251114,Hart's War,2002.0\ntt0070653,Scorpio,1973.0\ntt0089730,Once Bitten,1985.0\ntt0091699,Otello,1986.0\ntt0105046,Of Mice and Men,1992.0\ntt0094783,The Boost,1988.0\ntt0078790,The Apple Dumpling Gang Rides Again,1979.0\ntt0086993,The Bounty,1984.0\ntt0068931,The Mechanic,1972.0\ntt0056241,The Miracle Worker,1962.0\ntt0087231,The Falcon and the Snowman,1985.0\ntt0076210,The Island of Dr. Moreau,1977.0\ntt0057115,The Great Escape,1963.0\ntt0055184,The Misfits,1961.0\ntt0054428,The Unforgiven,1960.0\ntt0383216,The Pink Panther,2006.0\ntt0107863,Posse,1993.0\ntt0091875,Running Scared,1986.0\ntt0108187,Son of the Pink Panther,1993.0\ntt0098042,Out Cold,1989.0\ntt0114287,Rob Roy,1995.0\ntt0122690,Ronin,1998.0\ntt0075268,Stay Hungry,1976.0\ntt0102103,Impromptu,1991.0\ntt0059287,How to Stuff a Wild Bikini,1965.0\ntt0089348,Invasion USA,1985.0\ntt0102005,Harley Davidson and the Marlboro Man,1991.0\ntt0093200,Hollywood Shuffle,1987.0\ntt0080895,How to Beat the High Cost of Living,1980.0\ntt0085672,Hercules,1983.0\ntt0068673,Hammer,1972.0\ntt0109913,Go Fish,1994.0\ntt0048254,Killer's Kiss,1955.0\ntt0071706,Juggernaut,1974.0\ntt0070379,Mean Streets,1973.0\ntt0283897,Assassination Tango,2002.0\ntt0373469,Kiss Kiss Bang Bang,2005.0\ntt0105690,Under Siege,1992.0\ntt0438488,Terminator Salvation,2009.0\ntt0059825,The Train,1964.0\ntt0091055,Firewalker,1986.0\ntt0295289,A Guy Thing,2003.0\ntt0052896,A Hole in the Head,1959.0\ntt0096769,After Midnight,1989.0\ntt0049414,A Kiss Before Dying,1956.0\ntt0303714,Barbershop,2002.0\ntt0069897,Coffy,1973.0\ntt0086946,Beat Street,1984.0\ntt0068284,Blacula,1972.0\ntt0055798,Birdman of Alcatraz,1962.0\ntt0068309,Boxcar Bertha,1972.0\ntt0097138,Cyborg,1989.0\ntt0085384,Curse of the Pink Panther,1983.0\ntt0069976,Dillinger,1973.0\ntt0080661,Dressed to Kill,1980.0\ntt0106873,Fatal Instinct,1993.0\ntt0057449,The Raven,1963.0\ntt0066130,Ned Kelly,1970.0\ntt0313911,Agent Cody Banks,2003.0\ntt1228705,Iron Man 2,2010.0\ntt0085811,Krull,1983.0\ntt0139134,Cruel Intentions,1999.0\ntt0057012,Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb,1964.0\ntt0089886,Real Genius,1985.0\ntt0088172,Starman,1984.0\ntt0118708,Beverly Hills Ninja,1997.0\ntt0118615,Anaconda,1997.0\ntt0381849,3:10 to Yuma,2007.0\ntt0374102,Open Water,2003.0\ntt0814022,Bangkok Dangerous,2008.0\ntt0142688,The Ninth Gate,1999.0\ntt0452625,Good Luck Chuck,2007.0\ntt0218839,Best in Show,2000.0\ntt0800003,Delta Farce,2007.0\ntt0427312,Grizzly Man,2005.0\ntt0099180,Re-Animator 2,1990.0\ntt0838283,Step Brothers,2008.0\ntt0117407,Pusher,1996.0\ntt0145531,Stigmata,1999.0\ntt1324999,The Twilight Saga: Breaking Dawn - Part 1,2011.0\ntt1325004,The Twilight Saga: Eclipse,2010.0\ntt1259571,The Twilight Saga: New Moon,2009.0\ntt1099212,Twilight,2008.0\ntt0415306,Talladega Nights: The Ballad of Ricky Bobby,2006.0\ntt0119654,Men in Black,1997.0\ntt0104694,A League of Their Own,1992.0\ntt0119822,As Good as It Gets,1997.0\ntt0425637,Red Cliff,2008.0\ntt0245686,Joe Dirt,2001.0\ntt0079417,Kramer vs. Kramer,1979.0\ntt0343660,50 First Dates,2004.0\ntt0104257,A Few Good Men,1992.0\ntt0113670,A Little Princess,1995.0\ntt0310281,A Mighty Wind,2003.0\ntt0105265,A River Runs Through It,1992.0\ntt0268126,Adaptation.,2002.0\ntt0118571,Air Force One,1997.0\ntt0074119,All the President's Men,1976.0\ntt0305224,Anger Management,2003.0\ntt0112442,Bad Boys,1995.0\ntt0414852,District 13,2004.0\ntt0981227,Nick and Norah's Infinite Playlist,2008.0\ntt0106364,Batman: Mask of the Phantasm,1993.0\ntt0094721,Beetlejuice,1988.0\ntt0381681,Before Sunset,2004.0\ntt0758774,Body of Lies,2008.0\ntt0142342,Big Daddy,1999.0\ntt0319061,Big Fish,2003.0\ntt0115734,Bottle Rocket,1996.0\ntt0101507,Boyz n the Hood,1991.0\ntt0127723,Can't Hardly Wait,1998.0\ntt0075860,Close Encounters of the Third Kind,1977.0\ntt0376541,Closer,2004.0\ntt0106673,Dave,1993.0\ntt0068473,Deliverance,1972.0\ntt0112851,Desperado,1995.0\ntt0088323,The NeverEnding Story,1984.0\ntt1213644,Disaster Movie,2008.0\ntt0072890,Dog Day Afternoon,1975.0\ntt0119008,Donnie Brasco,1997.0\ntt0103874,Bram Stoker's Dracula,1992.0\ntt0064276,Easy Rider,1969.0\ntt0181536,Finding Forrester,2000.0\ntt0065724,Five Easy Pieces,1970.0\ntt0083987,Gandhi,1982.0\ntt0119177,Gattaca,1997.0\ntt0365265,Ginger Snaps Back: The Beginning,2004.0\ntt0097441,Glory,1989.0\ntt0139239,Go,1999.0\ntt0120684,Gods and Monsters,1998.0\ntt0107048,Groundhog Day,1993.0\ntt0061735,Guess Who's Coming to Dinner,1967.0\ntt0099726,Hamlet,1990.0\ntt0308353,Happily N'Ever After,2006.0\ntt0113277,Heat,1995.0\ntt0386588,Hitch,2005.0\ntt0102057,Hook,1991.0\ntt0090060,St. Elmo's Fire,1985.0\ntt0061809,In Cold Blood,1967.0\ntt0107206,In the Line of Fire,1993.0\ntt0025316,It Happened One Night,1934.0\ntt0116695,Jerry Maguire,1996.0\ntt0102138,JFK,1991.0\ntt0113497,Jumanji,1995.0\ntt0119488,L.A. Confidential,1997.0\ntt0089457,Ladyhawke,1985.0\ntt0056172,Lawrence of Arabia,1962.0\ntt0110322,Legends of the Fall,1994.0\ntt0097733,Lethal Weapon 2,1989.0\ntt0110413,Leon,1994.0\ntt0107178,Fatal Proposal,1993.0\ntt0325805,Matchstick Men,2003.0\ntt0303361,May,2002.0\ntt0829482,Superbad,2007.0\ntt0280590,Mr. Deeds,2002.0\ntt0031679,Mr. Smith Goes to Washington,1939.0\ntt0277371,Not Another Teen Movie,2001.0\ntt0047296,On the Waterfront,1954.0\ntt0107818,Philadelphia,1993.0\ntt0093886,Roxanne,1987.0\ntt0108002,Rudy,1993.0\ntt0323944,Shattered Glass,2003.0\ntt0385004,House of Flying Daggers,2004.0\ntt0091949,Short Circuit,1986.0\ntt0067328,The Last Picture Show,1971.0\ntt0090022,Silverado,1985.0\ntt0105414,Single White Female,1992.0\ntt0108160,Sleepless in Seattle,1993.0\ntt0208092,Snatch,2000.0\ntt0108174,So I Married an Axe Murderer,1993.0\ntt0092005,Stand by Me,1986.0\ntt0120201,Starship Troopers,1997.0\ntt0160127,Charlie's Angels,2000.0\ntt0044079,Strangers on a Train,1951.0\ntt0083131,Stripes,1981.0\ntt0096764,The Adventures of Baron Munchausen,1988.0\ntt0080453,The Blue Lagoon,1980.0\ntt0050212,The Bridge on the River Kwai,1957.0\ntt0382625,The Da Vinci Code,2006.0\ntt0119116,The Fifth Element,1997.0\ntt0070909,Westworld,1973.0\ntt0865556,The Forbidden Kingdom,2008.0\ntt0087538,The Karate Kid,1984.0\ntt0033870,The Maltese Falcon,1941.0\ntt0120746,The Mask of Zorro,1998.0\ntt0087781,The Natural,1984.0\ntt0120768,The Negotiator,1998.0\ntt0187393,The Patriot,2000.0\ntt0117318,The People vs. Larry Flynt,1996.0\ntt0454921,The Pursuit of Happyness,2006.0\ntt0107943,The Remains of the Day,1993.0\ntt0292644,The Rules of Attraction,2002.0\ntt0108071,The Secret Garden,1993.0\ntt1273678,The Spy Next Door,2010.0\ntt0367089,The Squid and the Whale,2005.0\ntt0087332,Ghostbusters,1984.0\ntt0320691,Underworld,2003.0\ntt0383694,Vera Drake,2004.0\ntt0120890,Wild Things,1998.0\ntt1156398,Zombieland,2009.0\ntt1554091,A Better Life,2011.0\ntt1740707,Troll Hunter,2010.0\ntt1306980,50/50,2011.0\ntt1237838,Mystery Team,2009.0\ntt0360009,Spartan,2004.0\ntt0308508,Step Into Liquid,2003.0\ntt0118971,The Devil's Advocate,1997.0\ntt0129167,The Iron Giant,1999.0\ntt0093437,The Lost Boys,1987.0\ntt0120004,The Relic,1997.0\ntt0086508,Uncommon Valor,1983.0\ntt1477076,Saw 3D,2010.0\ntt0816462,Conan the Barbarian,2011.0\ntt0206275,Save the Last Dance,2001.0\ntt0086873,All of Me,1984.0\ntt0115738,Box of Moonlight,1996.0\ntt0374563,Captivity,2007.0\ntt0200530,Chuck & Buck,2000.0\ntt0424993,Employee of the Month,2006.0\ntt0317676,House of the Dead,2003.0\ntt0160672,Joe the King,1999.0\ntt0119426,Joyride,1997.0\ntt0399295,Lord of War,2005.0\ntt1179891,My Bloody Valentine,2009.0\ntt0138704,Pi,1998.0\ntt0114594,Swimming with Sharks,1994.0\ntt0283111,Van Wilder: Party Liaison,2002.0\ntt0283090,29 Palms,2002.0\ntt0189998,Shadow of the Vampire,2000.0\ntt0437800,Akeelah and the Bee,2006.0\ntt0870195,Before the Rains,2007.0\ntt0997143,Bled,2009.0\ntt0450278,Hostel,2005.0\ntt0364385,Ju-on,2002.0\ntt0263734,Men with Brooms,2002.0\ntt0274812,Secretary,2002.0\ntt0831887,The Spirit,2008.0\ntt0337972,Defiance,2002.0\ntt0470705,Bug,2006.0\ntt0814075,Deliver Us from Evil,2006.0\ntt0353489,Ginger Snaps 2: Unleashed,2004.0\ntt0811138,The Love Guru,2008.0\ntt0115438,2 Days in the Valley,1996.0\ntt0488508,Arctic Tale,2007.0\ntt0393162,Coach Carter,2005.0\ntt0410097,Hustle & Flow,2005.0\ntt0100740,Tales from the Darkside: The Movie,1990.0\ntt0037536,The Bells of St. Mary's,1945.0\ntt0408839,The Heartbreak Kid,2007.0\ntt0434139,The Last Kiss,2006.0\ntt0264323,2001 Maniacs,2005.0\ntt0384814,Ask the Dust,2006.0\ntt0137338,200 Cigarettes,1999.0\ntt0375173,Alfie,2004.0\ntt0312329,Against the Ropes,2004.0\ntt0101301,All I Want for Christmas,1991.0\ntt0080365,American Gigolo,1980.0\ntt0486259,American Teen,2008.0\ntt0221799,An American Rhapsody,2001.0\ntt0491747,Away from Her,2006.0\ntt0414853,Barnyard,2006.0\ntt0103759,Bad Lieutenant,1992.0\ntt0292963,Before the Devil Knows You're Dead,2007.0\ntt0482463,Bella,2006.0\ntt0246772,Mostly Martha,2001.0\ntt0294357,Beyond Borders,2003.0\ntt0109305,Blue Chips,1994.0\ntt0229260,Book of Shadows: Blair Witch 2,2000.0\ntt0103873,Braindead,1992.0\ntt0103859,Boomerang,1992.0\ntt0163988,Bringing Out the Dead,1999.0\ntt0179116,But I'm a Cheerleader,1999.0\ntt0303816,Cabin Fever,2002.0\ntt0961722,Cabin Fever 2: Spring Fever,2009.0\ntt0375912,Layer Cake,2004.0\ntt0157472,Clockstoppers,2002.0\ntt1153706,Dance Flick,2009.0\ntt0433362,Daybreakers,2009.0\ntt0817538,Drillbit Taylor,2008.0\ntt0116493,Harriet the Spy,1996.0\ntt0276919,Dogville,2003.0\ntt0150377,Double Jeopardy,1999.0\ntt0109676,Drop Zone,1994.0\ntt0097240,Drugstore Cowboy,1989.0\ntt0326856,Envy,2004.0\ntt0215750,Enemy at the Gates,2001.0\ntt0428518,Fade to Black,2004.0\ntt0119095,FairyTale: A True Story,1997.0\ntt0289944,Fear X,2003.0\ntt0106912,Fire in the Sky,1993.0\ntt0050419,Funny Face,1957.0\ntt0101912,Frankie and Johnny,1991.0\ntt1034032,Gamer,2009.0\ntt0828393,Garden Party,2008.0\ntt0430308,Get Rich or Die Tryin',2005.0\ntt0165798,Ghost Dog: The Way of the Samurai,1999.0\ntt0405061,Gin gwai 2,2004.0\ntt0335119,Girl with a Pearl Earring,2003.0\ntt0104348,Glengarry Glen Ross,1992.0\ntt0064381,\"Goodbye, Columbus\",1969.0\ntt0093137,Hamburger Hill,1987.0\ntt1235837,Happily N'Ever After 2,2009.0\ntt0361693,Happy Endings,2005.0\ntt0815236,She's Out of My League,2010.0\ntt0180734,Hardball,2001.0\ntt0102011,\"He Said, She Said\",1991.0\ntt0251736,House of 1000 Corpses,2003.0\ntt0770810,How She Move,2007.0\ntt0110146,Intersection,1994.0\ntt0186253,Jesus' Son,1999.0\ntt0425123,Just Like Heaven,2005.0\ntt1059932,\"I Love You, Om...\",2006.0\ntt0215129,Road Trip,2000.0\ntt1250777,Kick-Ass,2010.0\ntt0113537,Kicking and Screaming,1995.0\ntt0074751,King Kong,1976.0\ntt0110305,Lassie,1994.0\ntt0110329,Leprechaun 2,1994.0\ntt0420251,Three... Extremes,2004.0\ntt0079640,North Dallas Forty,1979.0\ntt0119783,Night Falls on Manhattan,1996.0\ntt0113691,Losing Isaiah,1995.0\ntt0258273,Lovely & Amazing,2001.0\ntt0438205,Mad Hot Ballroom,2005.0\ntt0266747,Marci X,2003.0\ntt0757361,Margot at the Wedding,2007.0\ntt0473692,Neil Young: Heart of Gold,2006.0\ntt0416320,Match Point,2005.0\ntt0209144,Memento,2000.0\ntt0291341,Mean Machine,2001.0\ntt0117091,Mother,1996.0\ntt0119715,Mousehunt,1997.0\ntt0119717,Mr. Jealousy,1997.0\ntt0093605,Near Dark,1987.0\ntt0396171,Perfume: The Story of a Murderer,2006.0\ntt0322659,Northfork,2003.0\ntt0073190,Once Is Not Enough,1975.0\ntt0120784,Payback,1999.0\ntt0067589,Plaza Suite,1971.0\ntt0078111,Pretty Baby,1978.0\ntt0462499,Rambo,2008.0\ntt0180093,Requiem for a Dream,2000.0\ntt0337711,Rugrats Go Wild,2003.0\ntt0388395,Schultze Gets the Blues,2003.0\ntt0046303,Shane,1953.0\ntt0454945,She's the Man,2006.0\ntt0184907,Snow Day,2000.0\ntt0040823,\"Sorry, Wrong Number\",1948.0\ntt0489281,Stop-Loss,2008.0\ntt0117731,Star Trek: First Contact,1996.0\ntt0094072,Summer School,1987.0\ntt0324127,Suspect Zero,2004.0\ntt0115571,The Arrival,1996.0\ntt0185937,The Blair Witch Project,1999.0\ntt0064045,The Assassination Bureau,1969.0\ntt0321442,The Big Empty,2003.0\ntt0109340,The Browning Version,1994.0\ntt0051436,The Buccaneer,1958.0\ntt0101523,The Butcher's Wife,1991.0\ntt0298814,The Core,2003.0\ntt0435625,The Descent,2005.0\ntt0116240,The Evening Star,1996.0\ntt1320253,The Expendables,2010.0\ntt0093075,The Gate,1987.0\ntt0219699,The Gift,2000.0\ntt0064505,The Italian Job,1969.0\ntt0074777,The Last Tycoon,1976.0\ntt0385057,The Long Weekend,2005.0\ntt0380510,The Lovely Bones,2009.0\ntt0071970,The Parallax View,1974.0\ntt0314498,The Perfect Score,2004.0\ntt1129442,Transporter 3,2008.0\ntt0227445,The Score,2001.0\ntt0095897,The Presidio,1988.0\ntt0337697,The Prince & Me,2004.0\ntt0268695,The Time Machine,2002.0\ntt0290095,The Tuxedo,2002.0\ntt0301976,The United States of Leland,2003.0\ntt0159097,The Virgin Suicides,1999.0\ntt0282120,The Wild Thornberrys Movie,2002.0\ntt0161100,The Wood,1999.0\ntt0469623,Things We Lost in the Fire,2007.0\ntt0300556,Timeline,2003.0\ntt0139699,Varsity Blues,1999.0\ntt0070895,Walking Tall,1973.0\ntt0049934,War and Peace,1956.0\ntt0048801,We're No Angels,1955.0\ntt0120524,Wishmaster,1997.0\ntt0477139,Wristcutters: A Love Story,2006.0\ntt0096487,Young Guns,1988.0\ntt1186830,Agora,2009.0\ntt1448755,Killer Elite,2011.0\ntt0893412,From Prada to Nada,2011.0\ntt1189340,The Lincoln Lawyer,2011.0\ntt1600195,Abduction,2011.0\ntt0805619,Stir of Echoes: The Homecoming,2007.0\ntt0929632,Precious,2009.0\ntt0082382,First Monday in October,1981.0\ntt0049096,The Court Jester,1955.0\ntt0344604,Après vous...,2003.0\ntt0387564,Saw,2004.0\ntt0285742,Monster's Ball,2001.0\ntt0395584,The Devil's Rejects,2005.0\ntt0107387,Leprechaun,1993.0\ntt0408236,Sweeney Todd: The Demon Barber of Fleet Street,2007.0\ntt0123755,Cube,1997.0\ntt0092890,Dirty Dancing,1987.0\ntt0375679,Crash,2004.0\ntt0158493,Belly,1998.0\ntt0078788,Apocalypse Now,1979.0\ntt0144084,American Psycho,2000.0\ntt0120151,A Smile Like Yours,1997.0\ntt0261289,Serving Sara,2002.0\ntt0089945,Rustlers' Rhapsody,1985.0\ntt0068245,Bad Company,1972.0\ntt0348505,Asylum,2005.0\ntt0218182,An Everlasting Piece,2000.0\ntt0118073,A Very Brady Sequel,1996.0\ntt0096316,Tucker: The Man and His Dream,1988.0\ntt0406158,\"The Prize Winner of Defiance, Ohio\",2005.0\ntt0051364,\"Another Time, Another Place\",1958.0\ntt0145653,Angela's Ashes,1999.0\ntt0060086,Alfie,1966.0\ntt0267248,Abandon,2002.0\ntt0078757,An Almost Perfect Affair,1979.0\ntt0258038,Pootie Tang,2001.0\ntt0373908,The Honeymooners,2005.0\ntt0268397,Jimmy Neutron: Boy Genius,2001.0\ntt0795351,Case 39,2009.0\ntt0099587,Flight of the Intruder,1991.0\ntt0098625,We're No Angels,1989.0\ntt0314676,The Singing Detective,2003.0\ntt0134067,The Rugrats Movie,1998.0\ntt0062153,The President's Analyst,1967.0\ntt0060736,The Naked Prey,1965.0\ntt0419887,The Kite Runner,2007.0\ntt0366174,Anacondas: The Hunt for the Blood Orchid,2004.0\ntt0044672,The Greatest Show on Earth,1952.0\ntt0191133,The Fighting Temptations,2003.0\ntt1305806,The Secret in Their Eyes,2009.0\ntt0085407,The Dead Zone,1983.0\ntt0072848,The Day of the Locust,1975.0\ntt0055871,The Counterfeit Traitor,1962.0\ntt0102951,Soapdish,1991.0\ntt0122718,Small Soldiers,1998.0\ntt0108162,Sliver,1993.0\ntt0239986,Sidewalks of New York,2001.0\ntt0061385,Barefoot in the Park,1967.0\ntt1130884,Shutter Island,2010.0\ntt0096094,She's Having a Baby,1988.0\ntt0959337,Revolutionary Road,2008.0\ntt0421239,Red Eye,2005.0\ntt0250687,Rat Race,2001.0\ntt0082970,Ragtime,1981.0\ntt0066181,On a Clear Day You Can See Forever,1970.0\ntt0078024,Oliver's Story,1978.0\ntt0063356,No Way to Treat a Lady,1968.0\ntt0056267,My Geisha,1962.0\ntt0110516,Milk Money,1994.0\ntt0068835,Last of the Red Hot Lovers,1972.0\ntt0408985,Last Holiday,2006.0\ntt0119468,Kiss the Girls,1997.0\ntt0099850,Internal Affairs,1990.0\ntt0119360,In & Out,1997.0\ntt0110099,I.Q.,1994.0\ntt0319531,I'll Sleep When I'm Dead,2003.0\ntt0051745,Houseboat,1958.0\ntt0080836,Hangar 18,1980.0\ntt0050468,Gunfight at the O.K. Corral,1957.0\ntt0082432,Gallipoli,1981.0\ntt0430105,Four Brothers,2005.0\ntt0097336,Shadow Makers,1989.0\ntt0418647,Dreamer: Inspired by a True Story,2005.0\ntt0044509,\"Come Back, Little Sheba\",1952.0\ntt0163983,Bless the Child,2000.0\ntt0075765,Black Sunday,1977.0\ntt0326769,Biker Boyz,2003.0\ntt0109120,Andre,1994.0\ntt1403865,True Grit,2010.0\ntt0384680,The Weather Man,2005.0\ntt0100828,The Two Jakes,1990.0\ntt0963794,The Ruins,2008.0\ntt0117331,The Phantom,1996.0\ntt0059575,The Pawnbroker,1964.0\ntt0091129,The Golden Child,1986.0\ntt0252028,Surviving Christmas,2004.0\ntt0251075,Evolution,2001.0\ntt0249478,Domestic Disturbance,2001.0\ntt0821642,The Soloist,2009.0\ntt0105327,School Ties,1992.0\ntt0069097,\"Play It Again, Sam\",1972.0\ntt0090357,Young Sherlock Holmes,1985.0\ntt0756729,Year of the Dog,2007.0\ntt0364751,Without a Paddle,2004.0\ntt0277434,We Were Soldiers,2002.0\ntt1193138,Up in the Air,2009.0\ntt0073747,The Stepford Wives,1975.0\ntt0345950,The SpongeBob SquarePants Movie,2004.0\ntt0416236,The Spiderwick Chronicles,2008.0\ntt0120053,The Saint,1997.0\ntt0120844,Star Trek: Insurrection,1998.0\ntt0113972,Nick of Time,1995.0\ntt0377091,Mean Creek,2004.0\ntt0115678,Big Night,1996.0\ntt0120696,Hard Rain,1998.0\ntt1126618,Morning Glory,2010.0\ntt0114857,Virtuosity,1995.0\ntt0272020,The Last Castle,2001.0\ntt0406650,The Chumscrubber,2005.0\ntt0830558,The Girl Next Door,2007.0\ntt0097481,Harlem Nights,1989.0\ntt0084021,Grease 2,1982.0\ntt0077621,Goin' South,1978.0\ntt0335559,Win a Date with Tad Hamilton!,2004.0\ntt0272207,Narc,2002.0\ntt0338564,Infernal Affairs,2002.0\ntt0113451,Jade,1995.0\ntt0780567,Imagine That,2009.0\ntt0343121,Tupac: Resurrection,2003.0\ntt0815245,The Uninvited,2009.0\ntt0327162,The Stepford Wives,2004.0\ntt0119874,The Peacemaker,1997.0\ntt0171363,The Haunting,1999.0\ntt0253754,Star Trek: Nemesis,2002.0\ntt0785006,Hotel for Dogs,2009.0\ntt0995039,Ghost Town,2008.0\ntt0486822,Disturbia,2007.0\ntt0099044,Another 48 Hrs.,1990.0\ntt0120324,A Simple Plan,1998.0\ntt0964517,The Fighter,2010.0\ntt1251757,Middle Men,2009.0\ntt0071771,The Mean Machine,1974.0\ntt0499554,Reno 911!: Miami,2007.0\ntt0203230,You Can Count on Me,2000.0\ntt0452608,Death Race,2008.0\ntt0112715,Congo,1995.0\ntt0243736,40 Days and 40 Nights,2002.0\ntt0118849,Bacheha-Ye aseman,1997.0\ntt0426501,Johnny Was,2006.0\ntt0099558,Armour of God II,1991.0\ntt0118887,Cop Land,1997.0\ntt0413895,Charlotte's Web,2006.0\ntt0164184,The Sum of All Fears,2002.0\ntt0445934,Blades of Glory,2007.0\ntt0096933,Black Rain,1989.0\ntt0442933,Beowulf,2007.0\ntt0109506,The Crow,1994.0\ntt0317248,City of God,2002.0\ntt0124315,The Cider House Rules,1999.0\ntt0043338,Ace in the Hole,1951.0\ntt0241303,Chocolat,2000.0\ntt0065528,Catch-22,1970.0\ntt0118799,Life Is Beautiful,1997.0\ntt0264472,Changing Lanes,2002.0\ntt0088930,Clue,1985.0\ntt0463998,Freedom Writers,2007.0\ntt0082418,Friday the 13th: Part 2,1981.0\ntt0787475,Hot Rod,2007.0\ntt0427229,Failure to Launch,2006.0\ntt0209037,Iedereen beroemd!,2000.0\ntt0112744,The Crossing Guard,1995.0\ntt0079540,Meatballs,1979.0\ntt0796366,Star Trek,2009.0\ntt0124295,The Big One,1997.0\ntt0111280,Star Trek: Generations,1994.0\ntt0099703,The Grifters,1990.0\ntt0864761,The Duchess,2008.0\ntt0164334,Along Came a Spider,2001.0\ntt0829459,A Mighty Heart,2007.0\ntt0431308,P.S. I Love You,2007.0\ntt0080388,\"Atlantic City, USA\",1980.0\ntt0090830,Children of a Lesser God,1986.0\ntt1034303,Defiance,2008.0\ntt0116126,Don't Be a Menace to South Central While Drinking Your Juice in the Hood,1996.0\ntt0443489,Dreamgirls,2006.0\ntt0091188,Heartburn,1986.0\ntt0081353,Popeye,1980.0\ntt0070510,Paper Moon,1973.0\ntt0416051,Mr. Fix It,2006.0\ntt0236640,Prozac Nation,2001.0\ntt0822854,Shooter,2007.0\ntt0054331,Spartacus,1960.0\ntt0102975,Star Trek VI: The Undiscovered Country,1991.0\ntt0486655,Stardust,2007.0\ntt0402022,Æon Flux,2005.0\ntt0116209,The English Patient,1996.0\ntt0068646,The Godfather,1972.0\ntt0071577,The Great Gatsby,1974.0\ntt0368008,The Manchurian Candidate,2004.0\ntt0469641,World Trade Center,2006.0\ntt0116367,From Dusk Till Dawn,1996.0\ntt0109445,Clerks,1994.0\ntt0219653,Dracula 2001,2000.0\ntt0068767,Fist of Fury,1972.0\ntt0112346,The American President,1995.0\ntt0091042,Ferris Bueller's Day Off,1986.0\ntt0266489,Duplex,2003.0\ntt0255477,Pinocchio,2002.0\ntt0047396,Rear Window,1954.0\ntt0110005,Heavenly Creatures,1994.0\ntt1253596,Midgets Vs. Mascots,2009.0\ntt0088850,Brewster's Millions,1985.0\ntt0133751,The Faculty,1998.0\ntt0077416,The Deer Hunter,1978.0\ntt0090305,Weird Science,1985.0\ntt0384642,Kicking & Screaming,2005.0\ntt0107076,Hard Target,1993.0\ntt0106332,Farewell My Concubine,1993.0\ntt0082198,Conan the Barbarian,1982.0\ntt0765429,American Gangster,2007.0\ntt0080761,Friday the 13th,1980.0\ntt0120694,Halloween H20: 20 Years Later,1998.0\ntt0216787,Le Gout des Autres,2000.0\ntt0238380,Equilibrium,2002.0\ntt0169547,American Beauty,1999.0\ntt0230600,The Others,2001.0\ntt0357413,Anchorman: The Legend of Ron Burgundy,2004.0\ntt0079945,Star Trek - The Motion Picture,1979.0\ntt0106918,The Firm,1993.0\ntt0099810,The Hunt for Red October,1990.0\ntt0120815,Saving Private Ryan,1998.0\ntt0119675,Mimic,1997.0\ntt0449467,Babel,2006.0\ntt0084726,Star Trek II - The Wrath of Khan,1982.0\ntt0118607,Amistad,1997.0\ntt0172495,Gladiator,2000.0\ntt0401383,The Diving Bell and the Butterfly,2007.0\ntt0327679,Ella Enchanted,2004.0\ntt0095765,Cinema Paradiso,1988.0\ntt0468565,Tsotsi,2005.0\ntt0181875,Almost Famous,2000.0\ntt0257044,Road to Perdition,2002.0\ntt1182609,Direct Contact,2009.0\ntt1179904,Paranormal Activity,2007.0\ntt0302886,Old School,2003.0\ntt0418279,Transformers,2007.0\ntt0377109,The Ring 2,2005.0\ntt0120737,The Lord of the Rings: The Fellowship of the Ring,2001.0\ntt0236493,The Mexican,2001.0\ntt0161081,What Lies Beneath,2000.0\ntt0181689,Minority Report,2002.0\ntt0325537,Head of State,2003.0\ntt0264464,Catch Me If You Can,2002.0\ntt0369339,Collateral,2004.0\ntt0120647,Deep Impact,1998.0\ntt0399201,The Island,2005.0\ntt0942385,Tropic Thunder,2008.0\ntt0177789,Galaxy Quest,1999.0\ntt0477051,Norbit,2007.0\ntt0043014,Sunset Blvd.,1950.0\ntt0088286,Top Secret!,1984.0\ntt0080339,Airplane!,1980.0\ntt0091159,Gung Ho,1986.0\ntt0115986,The Crow: City of Angels,1996.0\ntt0918927,Doubt,2008.0\ntt0086465,Trading Places,1983.0\ntt0093748,\"Planes, Trains & Automobiles\",1987.0\ntt0101272,The Addams Family,1991.0\ntt0120082,Scream 2,1997.0\ntt0106598,Coneheads,1993.0\ntt0095705,The Naked Gun: From the Files of Police Squad!,1988.0\ntt0112572,The Brady Bunch Movie,1995.0\ntt1300851,The Boondock Saints II: All Saints Day,2009.0\ntt0066011,Love Story,1970.0\ntt0086425,Terms of Endearment,1983.0\ntt0102510,The Naked Gun 2½: The Smell of Fear,1991.0\ntt0273923,Orange County,2002.0\ntt0110622,Naked Gun 33 1/3: The Final Insult,1994.0\ntt0325258,Dickie Roberts: Former Child Star,2003.0\ntt0063522,Rosemary's Baby,1968.0\ntt0077631,Grease,1978.0\ntt0162650,Shaft,2000.0\ntt0104695,Leap of Faith,1992.0\ntt0087277,Footloose,1984.0\ntt0082766,Mommie Dearest,1981.0\ntt0063518,Romeo and Juliet,1968.0\ntt0090555,Crocodile Dundee,1986.0\ntt0054698,Breakfast at Tiffany's,1961.0\ntt0071315,Chinatown,1974.0\ntt0077663,Heaven Can Wait,1978.0\ntt0102517,Necessary Roughness,1991.0\ntt0085549,Flashdance,1983.0\ntt0056217,The Man Who Shot Liberty Valance,1962.0\ntt0102768,Regarding Henry,1991.0\ntt0167427,Superstar,1999.0\ntt0116313,The First Wives Club,1996.0\ntt0368709,Elizabethtown,2005.0\ntt0112697,Clueless,1995.0\ntt0094006,Some Kind of Wonderful,1987.0\ntt0067185,Harold and Maude,1971.0\ntt0074860,Marathon Man,1976.0\ntt0163187,Runaway Bride,1999.0\ntt0275022,Crossroads,2002.0\ntt0758758,Into the Wild,2007.0\ntt0332379,School of Rock,2003.0\ntt0046250,Roman Holiday,1953.0\ntt0213790,The Ladies' Man,2000.0\ntt0398165,The Longest Yard,2005.0\ntt0081283,Ordinary People,1980.0\ntt0074174,The Bad News Bears,1976.0\ntt0081696,Urban Cowboy,1980.0\ntt0119978,The Rainmaker,1997.0\ntt0185014,Wonder Boys,2000.0\ntt0090329,Witness,1985.0\ntt0108550,What's Eating Gilbert Grape,1993.0\ntt0259711,Vanilla Sky,2001.0\ntt0196229,Zoolander,2001.0\ntt0443706,Zodiac,2007.0\ntt0096061,Scrooged,1988.0\ntt0114694,Tommy Boy,1995.0\ntt0099653,Ghost,1990.0\ntt0112817,Dead Man,1995.0\ntt1046173,G.I. Joe: The Rise of Cobra,2009.0\ntt0158983,\"South Park: Bigger, Longer & Uncut\",1999.0\ntt1462041,Dream House,2011.0\ntt0251127,How to Lose a Guy in 10 Days,2003.0\ntt0108525,Wayne's World 2,1993.0\ntt0105793,Wayne's World,1992.0\ntt0093010,Fatal Attraction,1987.0\ntt0097815,Major League,1989.0\ntt0322802,Jackass: The Movie,2002.0\ntt0146316,Lara Croft: Tomb Raider,2001.0\ntt0080678,The Elephant Man,1980.0\ntt0049833,The Ten Commandments,1956.0\ntt0115641,Beavis and Butt-Head Do America,1996.0\ntt0497116,An Inconvenient Truth,2006.0\ntt0116191,Emma,1996.0\ntt0457510,Nacho Libre,2006.0\ntt0118113,Walking and Talking,1996.0\ntt0099371,Days of Thunder,1990.0\ntt0126886,Election,1999.0\ntt0086960,Beverly Hills Cop,1984.0\ntt0105112,Patriot Games,1992.0\ntt0092099,Top Gun,1986.0\ntt0119081,Event Horizon,1997.0\ntt0094898,Coming to America,1988.0\ntt0162661,Sleepy Hollow,1999.0\ntt0083511,48 Hrs.,1982.0\ntt0038650,It's a Wonderful Life,1946.0\ntt0112573,Braveheart,1995.0\ntt0107211,Indecent Proposal,1993.0\ntt0064116,Once Upon a Time in the West,1968.0\ntt0073802,Three Days of the Condor,1975.0\ntt0076666,Saturday Night Fever,1977.0\ntt0109444,Clear and Present Danger,1994.0\ntt0120770,A Night at the Roxbury,1998.0\ntt0118771,Breakdown,1997.0\ntt0084434,An Officer and a Gentleman,1982.0\ntt0094744,Big Top Pee-wee,1988.0\ntt0119215,Good Burger,1997.0\ntt0091790,Pretty in Pink,1986.0\ntt0492619,The Foot Fist Way,2006.0\ntt0063374,The Odd Couple,1968.0\ntt0372588,Team America: World Police,2004.0\ntt0297884,Far from Heaven,2002.0\ntt0108065,Searching for Bobby Fischer,1993.0\ntt0094608,The Accused,1988.0\ntt0080120,The Warriors,1979.0\ntt0109830,Forrest Gump,1994.0\ntt0377092,Mean Girls,2004.0\ntt0117060,Mission: Impossible,1996.0\ntt0421715,The Curious Case of Benjamin Button,2008.0\ntt0065126,True Grit,1969.0\ntt1060277,Cloverfield,2008.0\ntt0317919,Mission: Impossible III,2006.0\ntt0094226,The Untouchables,1987.0\ntt0120382,The Truman Show,1998.0\ntt0317740,The Italian Job,2003.0\ntt0371746,Iron Man,2008.0\ntt0119094,Face/Off,1997.0\ntt0104036,The Crying Game,1992.0\ntt0128442,Rounders,1998.0\ntt0469494,There Will Be Blood,2007.0\ntt0409459,Watchmen,2009.0\ntt0101318,Les Amants du Pont-Neuf,1991.0\ntt0115697,Black Sheep,1996.0\ntt0118826,The Castle,1997.0\ntt0207201,What Women Want,2000.0\ntt0117381,Primal Fear,1996.0\ntt0257106,Scary Movie 2,2001.0\ntt0340163,Hostage,2005.0\ntt0110889,Priest,1994.0\ntt0116324,Flirting with Disaster,1996.0\ntt0261392,Jay and Silent Bob Strike Back,2001.0\ntt0416508,Becoming Jane,2007.0\ntt0113101,Four Rooms,1995.0\ntt0238924,The Dangerous Lives of Altar Boys,2002.0\ntt0120613,A Walk on the Moon,1999.0\ntt0271219,Tadpole,2002.0\ntt0285823,Once Upon a Time in Mexico,2003.0\ntt0120879,Velvet Goldmine,1998.0\ntt0110907,Prêt-à-Porter,1994.0\ntt0120907,eXistenZ,1999.0\ntt0858479,Smart People,2008.0\ntt0274558,The Hours,2002.0\ntt0115632,Basquiat,1996.0\ntt1045670,Happy-Go-Lucky,2008.0\ntt0105236,Reservoir Dogs,1992.0\ntt0175142,Scary Movie,2000.0\ntt0340377,The Station Agent,2003.0\ntt0120577,54,1998.0\ntt0111512,Jui kuen II,1994.0\ntt0113158,Georgia,1995.0\ntt0306047,Scary Movie 3,2003.0\ntt0104567,Johnny Suede,1991.0\ntt0307987,Bad Santa,2003.0\ntt0240890,Serendipity,2001.0\ntt0114194,The Prophecy,1995.0\ntt0120679,Frida,2002.0\ntt0105488,Strictly Ballroom,1992.0\ntt0308644,Finding Neverland,2004.0\ntt0301199,Dirty Pretty Things,2002.0\ntt0247425,In the Bedroom,2001.0\ntt0113326,Rumble in the Bronx,1995.0\ntt0117283,The Pallbearer,1996.0\ntt0077594,Game of Death,1978.0\ntt0299977,Hero,2002.0\ntt0213847,Malena,2000.0\ntt0104558,Ging chaat goo si III: Chiu kup ging chaat,1992.0\ntt0355295,The Brothers Grimm,2005.0\ntt0117571,Scream,1996.0\ntt0211915,Amélie,2001.0\ntt0118842,Chasing Amy,1997.0\ntt0115639,Beautiful Girls,1996.0\ntt0436697,The Queen,2006.0\ntt0338096,Dirty Dancing: Havana Nights,2004.0\ntt0363226,Zatoichi: The Blind Swordsman,2003.0\ntt0108148,Iron Monkey,1993.0\ntt0270288,Confessions of a Dangerous Mind,2002.0\ntt0160862,She's All That,1999.0\ntt0134119,The Talented Mr. Ripley,1999.0\ntt0264150,View from the Top,2003.0\ntt0384806,The Amityville Horror,2005.0\ntt0286112,Shaolin Soccer,2001.0\ntt0107822,The Piano,1993.0\ntt0120321,Smoke Signals,1998.0\ntt0192071,Get Over It,2001.0\ntt0302674,Gerry,2002.0\ntt0250323,The Deep End,2001.0\ntt0184858,Reindeer Games,2000.0\ntt0300051,Jersey Girl,2004.0\ntt0144715,Holy Smoke,1999.0\ntt0377107,Proof,2005.0\ntt0110588,Mrs. Parker and the Vicious Circle,1994.0\ntt0119324,The House of Yes,1997.0\ntt0186894,Bounce,2000.0\ntt0110598,Muriel's Wedding,1994.0\ntt0097937,My Left Foot,1989.0\ntt0035423,Kate & Leopold,2001.0\ntt0190590,\"O Brother, Where Art Thou?\",2000.0\ntt0162360,\"Happy, Texas\",1999.0\ntt0120148,Sliding Doors,1998.0\ntt0117666,Sling Blade,1996.0\ntt0780511,Everybody's Fine,2009.0\ntt0114478,Smoke,1995.0\ntt0115906,Citizen Ruth,1996.0\ntt0494222,Eagle vs Shark,2007.0\ntt0258068,The Quiet American,2002.0\ntt0238112,Captain Corelli's Mandolin,2001.0\ntt0278500,The Importance of Being Earnest,2002.0\ntt0134084,Scream 3,2000.0\ntt0116242,Everyone Says I Love You,1996.0\ntt0427969,Hollywoodland,2006.0\ntt0350261,An Unfinished Life,2005.0\ntt0357470,The Battle of Shaker Heights,2003.0\ntt0103994,Como agua para chocolate,1992.0\ntt0489327,Venus,2006.0\ntt0448075,The Night Listener,2006.0\ntt0118949,Into Thin Air: Death on Everest,1997.0\ntt0110877,Il Postino,1994.0\ntt0114805,Unzipped,1995.0\ntt0242527,The Hole,2001.0\ntt0190138,The Whole Nine Yards,2000.0\ntt0147004,Little Voice,1998.0\ntt0240510,The Four Feathers,2002.0\ntt0120820,Senseless,1998.0\ntt0102749,A Rage in Harlem,1991.0\ntt0107426,Little Buddha,1993.0\ntt0186975,Down to You,2000.0\ntt0338135,The Barbarian Invasions,2003.0\ntt0434124,Kinky Boots,2005.0\ntt0372824,The Chorus,2004.0\ntt0287717,Spy Kids 2: Island of Lost Dreams,2002.0\ntt0117951,Trainspotting,1996.0\ntt0217505,Gangs of New York,2002.0\ntt1225822,Extract,2009.0\ntt0889573,The Switch,2010.0\ntt0159365,Cold Mountain,2003.0\ntt0227538,Spy Kids,2001.0\ntt0299658,Chicago,2002.0\ntt0117802,Swingers,1996.0\ntt0119217,Good Will Hunting,1997.0\ntt0358135,Shall We Dance,2004.0\ntt0110912,Pulp Fiction,1994.0\ntt0401792,Sin City,2005.0\ntt0378194,Kill Bill: Vol. 2,2004.0\ntt0266697,Kill Bill: Vol. 1,2003.0\ntt1091722,Adventureland,2009.0\ntt0452623,Gone Baby Gone,2007.0\ntt0477348,No Country for Old Men,2007.0\ntt0119396,Jackie Brown,1997.0\ntt0203536,A Good Night to Die,2003.0\ntt1334536,House of Bones,2010.0\ntt1570728,\"Crazy, Stupid, Love.\",2011.0\ntt1226753,The Debt,2010.0\ntt0286947,Scorched,2003.0\ntt1557769,Homewrecker,2010.0\ntt1265621,Quantum Apocalypse,2010.0\ntt0377808,Dragon Storm,2004.0\ntt1133995,The Way of War,2009.0\ntt0815230,Redrum,2007.0\ntt1406157,Hai kikku gâru!,2009.0\ntt0118652,Horror in the Attic,2001.0\ntt1499658,Horrible Bosses,2011.0\ntt1622979,Final Destination 5,2011.0\ntt0420740,A Little Trip to Heaven,2005.0\ntt0445946,The Contract,2006.0\ntt0808265,The Ferryman,2007.0\ntt0305556,Evil Alien Conquerors,2003.0\ntt0858411,2001 Maniacs: Field of Screams,2010.0\ntt0309452,The Circuit,2002.0\ntt0363095,Freeze Frame,2004.0\ntt0233657,Epoch,2001.0\ntt0374286,Epoch: Evolution,2003.0\ntt0437072,Animal,2005.0\ntt1633356,Shark Night 3D,2011.0\ntt1563738,One Day,2011.0\ntt0493129,A Get2Gether,2005.0\ntt1630564,Sacrifice,2011.0\ntt1266121,Wolvesbayne,2009.0\ntt0457319,Dead Heist,2007.0\ntt0230512,Mayor of the Sunset Strip,2003.0\ntt0380201,Back in the Day,2005.0\ntt0492912,Subject Two,2006.0\ntt1294136,As Good as Dead,2010.0\ntt0138097,Shakespeare in Love,1998.0\ntt0138524,Intolerable Cruelty,2003.0\ntt0113074,Fist of the North Star,1995.0\ntt1172060,It's Alive,2009.0\ntt1161449,The Sanctuary,2009.0\ntt1087524,Once Fallen,2010.0\ntt0770778,King of the Avenue,2010.0\ntt0119208,Godmoney,1999.0\ntt1290400,Double Identity,2009.0\ntt0476964,The Brave One,2007.0\ntt0762073,Bakjwi,2009.0\ntt0760188,When Nietzsche Wept,2007.0\ntt0386751,The River King,2005.0\ntt0455584,The Kovak Box,2006.0\ntt0149171,Strays,1997.0\ntt0425395,Relative Strangers,2006.0\ntt0358569,Live Forever,2003.0\ntt0276276,Lawless Heart,2001.0\ntt0454879,Journey to the End of the Night,2006.0\ntt0417751,Her Minor Thing,2005.0\ntt0412798,Half Light,2006.0\ntt0339091,Gang of Roses,2003.0\ntt0470761,First Born,2007.0\ntt0280605,Dirty Deeds,2002.0\ntt0914364,Deadwater,2008.0\ntt0285487,Crazy as Hell,2002.0\ntt0482088,Priceless,2006.0\ntt0832266,\"Definitely, Maybe\",2008.0\ntt0069704,American Graffiti,1973.0\ntt0125664,Man on the Moon,1999.0\ntt1210801,Command Performance,2009.0\ntt1583420,Larry Crowne,2011.0\ntt0955308,Robin Hood,2010.0\ntt0368688,Direct Action,2004.0\ntt0318462,The Motorcycle Diaries,2004.0\ntt0310924,Crime Spree,2003.0\ntt0469062,Danika,2006.0\ntt0327643,Dirty Love,2005.0\ntt0167116,Desert Saints,2002.0\ntt0174856,The Hurricane,1999.0\ntt0889583,Brüno,2009.0\ntt0101393,Backdraft,1991.0\ntt1027747,Stiletto,2008.0\ntt0455362,The Breed,2006.0\ntt0317198,Bridget Jones: The Edge of Reason,2004.0\ntt1198153,Kirot,2009.0\ntt1584733,Suicide Girls Must Die!,2010.0\ntt0425112,Hot Fuzz,2007.0\ntt0116483,Happy Gilmore,1996.0\ntt0243155,Bridget Jones's Diary,2001.0\ntt1423593,The Imperialists Are Still Alive!,2010.0\ntt0141926,U-571,2000.0\ntt0078504,The Wiz,1978.0\ntt0307507,The Stickup,2002.0\ntt0119395,The Jackal,1997.0\ntt0089755,Out of Africa,1985.0\ntt0089469,Legend,1985.0\ntt0112508,Billy Madison,1995.0\ntt0097216,Do the Right Thing,1989.0\ntt0127536,Elizabeth,1998.0\ntt0160184,D-Tox,2002.0\ntt0790618,The Beautiful Ordinary,2007.0\ntt0112431,Babe,1995.0\ntt0343135,Along Came Polly,2004.0\ntt0114898,Waterworld,1995.0\ntt0259567,Perfect Opposites,2004.0\ntt0300532,Blue Crush,2002.0\ntt0163651,American Pie,1999.0\ntt0125439,Notting Hill,1999.0\ntt0391198,The Grudge,2004.0\ntt1645080,The Art of Getting By,2011.0\ntt0463985,The Fast and the Furious: Tokyo Drift,2006.0\ntt0414387,Pride & Prejudice,2005.0\ntt0085959,The Meaning of Life,1983.0\ntt0132347,Mystery Men,1999.0\ntt1019452,A Serious Man,2009.0\ntt0454848,Inside Man,2006.0\ntt0106308,Army of Darkness,1992.0\ntt1013753,Milk,2008.0\ntt0120616,The Mummy,1999.0\ntt0209163,The Mummy Returns,2001.0\ntt0076723,Slap Shot,1977.0\ntt0096320,Twins,1988.0\ntt0315733,21 Grams,2003.0\ntt0077975,National Lampoon's Animal House,1978.0\ntt0120693,Half Baked,1998.0\ntt0137363,Arlington Road,1999.0\ntt0467200,The Other Boleyn Girl,2008.0\ntt0087182,Dune,1984.0\ntt0100814,Tremors,1990.0\ntt1452628,Vanishing on 7th Street,2010.0\ntt1421051,Somewhere,2010.0\ntt0021814,Dracula,1931.0\ntt0762107,I Now Pronounce You Chuck & Larry,2007.0\ntt0414055,Elizabeth: The Golden Age,2007.0\ntt0232500,The Fast and the Furious,2001.0\ntt0170016,How the Grinch Stole Christmas,2000.0\ntt0115624,Barb Wire,1996.0\ntt0314331,Love Actually,2003.0\ntt0859163,The Mummy: Tomb of the Dragon Emperor,2008.0\ntt0181865,Traffic,2000.0\ntt1357005,The Booby Trap,2009.0\ntt0098554,Uncle Buck,1989.0\ntt0477080,Unstoppable,2010.0\ntt0388795,Brokeback Mountain,2005.0\ntt0268978,A Beautiful Mind,2001.0\ntt0089155,Fletch,1985.0\ntt0070735,The Sting,1973.0\ntt1232824,Into Temptation,2009.0\ntt0099365,Darkman,1990.0\ntt0277296,The Scorpion King,2002.0\ntt0120780,Out of Sight,1998.0\ntt0088847,The Breakfast Club,1985.0\ntt0338526,Van Helsing,2004.0\ntt0083929,Fast Times at Ridgemont High,1982.0\ntt0452594,The Break-Up,2006.0\ntt0106677,Dazed and Confused,1993.0\ntt1201167,Funny People,2009.0\ntt1152836,Public Enemies,2009.0\ntt0463034,\"You, Me and Dupree\",2006.0\ntt0087597,The Last Starfighter,1984.0\ntt0475394,Smokin' Aces,2006.0\ntt1082601,Fighting,2009.0\ntt0384793,Accepted,2006.0\ntt0290002,Meet the Fockers,2004.0\ntt0056923,Charade,1963.0\ntt0405422,The 40 Year-Old Virgin,2005.0\ntt0118715,The Big Lebowski,1998.0\ntt0082010,An American Werewolf in London,1981.0\ntt1127896,Taking Woodstock,2009.0\ntt0871426,Baby Mama,2008.0\ntt0105323,Scent of a Woman,1992.0\ntt0086250,Scarface,1983.0\ntt0091225,Howard: A New Breed of Hero,1986.0\ntt0095489,The Land Before Time,1988.0\ntt0046876,Creature from the Black Lagoon (1954),1954.0\ntt0076729,Smokey and the Bandit,1977.0\ntt0870111,Frost/Nixon,2008.0\ntt0478311,Knocked Up,2007.0\ntt1532503,Beginners,2010.0\ntt0412019,Broken Flowers,2005.0\ntt0253474,The Pianist,2002.0\ntt0340855,Monster,2003.0\ntt1226229,Get Him to the Greek,2010.0\ntt0097351,Field of Dreams,1989.0\ntt0100301,Opportunity Knocks,1990.0\ntt0800039,Forgetting Sarah Marshall,2008.0\ntt0195685,Erin Brockovich,2000.0\ntt0113749,Mallrats,1995.0\ntt0338013,Eternal Sunshine of the Spotless Mind,2004.0\ntt0360717,King Kong,2005.0\ntt0365748,Shaun Of The Dead,2004.0\ntt0096969,Born on the Fourth of July,1989.0\ntt0212338,Meet the Parents,2000.0\ntt0457400,Land of the Lost,2009.0\ntt1078940,Couples Retreat,2009.0\ntt1135487,Duplicity,2009.0\ntt0372183,The Bourne Supremacy,2004.0\ntt0385267,In Good Company,2004.0\ntt0119528,Liar Liar,1997.0\ntt0440963,The Bourne Ultimatum,2007.0\ntt0258463,The Bourne Identity,2002.0\ntt0119174,The Game,1997.0\ntt0112641,Casino,1995.0\ntt0329575,Seabiscuit,2003.0\ntt0315327,Bruce Almighty,2003.0\ntt0096734,The 'Burbs,1989.0\ntt0087065,Cloak & Dagger,1984.0\ntt0192614,The Skulls,2000.0\ntt0087995,Repo Man,1984.0\ntt0098067,Parenthood,1989.0\ntt0493464,Wanted,2008.0\ntt0350258,Ray,2004.0\ntt0097366,Fletch Lives,1989.0\ntt0120735,\"Lock, Stock and Two Smoking Barrels\",1998.0\ntt0430922,Role Models,2008.0\ntt0118689,Bean,1997.0\ntt1486190,Tamara Drewe,2010.0\ntt0132477,October Sky,1999.0\ntt0284837,Ali G Indahouse,2002.0\ntt0103850,Bob Roberts,1992.0\ntt0252866,American Pie 2,2001.0\ntt0993842,Hanna,2011.0\ntt1034389,The Eagle,2011.0\ntt0947810,Green Zone,2010.0\ntt1234654,Greenberg,2010.0\ntt1216492,Leap Year,2010.0\ntt0899106,Love Happens,2009.0\ntt0054215,Psycho,1960.0\ntt0107290,Jurassic Park,1993.0\ntt0083866,E.T. the Extra-Terrestrial,1982.0\ntt0073195,Jaws,1975.0\ntt0052357,Vertigo,1958.0\ntt0131857,BASEketball,1998.0\ntt0131325,Bowfinger,1999.0\ntt0078723,1941,1979.0\ntt0091541,The Money Pit,1986.0\ntt0113360,The Hunted,1995.0\ntt0099141,Bird on a Wire,1990.0\ntt0056592,To Kill a Mockingbird,1962.0\ntt0104231,Far and Away,1992.0\ntt0099329,Cry-Baby,1990.0\ntt0327597,Coraline,2009.0\ntt0023969,Duck Soup,1933.0\ntt0322589,Honey,2003.0\ntt0088763,Back to the Future,1985.0\ntt0218967,The Family Man,2000.0\ntt0101921,Fried Green Tomatoes at the Whistle Stop Cafe,1991.0\ntt0166924,Mulholland Drive,2001.0\ntt1596346,Soul Surfer,2011.0\ntt0382856,Monster Island,2004.0\ntt0382810,Little Fish,2005.0\ntt1020773,Certified Copy,2010.0\ntt0273453,Bark!,2002.0\ntt1486185,Red Riding Hood,2011.0\ntt1194263,Get Low,2009.0\ntt0119738,My Best Friend's Wedding,1997.0\ntt1255953,Incendies,2010.0\ntt1423894,Barney's Version,2010.0\ntt1149361,Micmacs à tire-larigot,2009.0\ntt0762125,Planet 51,2009.0\ntt0388182,King of California,2007.0\ntt0323939,Shade,2003.0\ntt1020543,Infestation,2009.0\ntt1501652,Dead Awake,2010.0\ntt0284929,Bundy,2002.0\ntt0242508,Harvard Man,2001.0\ntt0413466,Wassup Rockers,2005.0\ntt0070047,The Exorcist,1973.0\ntt1242618,Deadline,2009.0\ntt0405163,The Moguls,2005.0\ntt0338075,Grand Theft Parsons,2003.0\ntt0446029,Scott Pilgrim vs. the World,2010.0\ntt0102175,Jungle Fever,1991.0\ntt1013752,Fast & Furious,2009.0\ntt0337721,The Snow Walker,2003.0\ntt0100107,Maniac Cop 2,1990.0\ntt0104808,Maniac Cop 3: Badge of Silence,1992.0\ntt0378407,My Date with Drew,2004.0\ntt0906665,Sukiyaki Western Django,2007.0\ntt0210070,Ginger Snaps,2000.0\ntt1095217,Bad Lieutenant,2009.0\ntt0118632,The Apostle,1997.0\ntt1294688,Last Night,2010.0\ntt1664894,Cave of Forgotten Dreams,2010.0\ntt1341188,How Do You Know,2010.0\ntt1126591,Burlesque,2010.0\ntt0913354,Armoured,2009.0\ntt0324133,Swimming Pool,2003.0\ntt1229822,Jane Eyre,2011.0\ntt0328828,American Pie: The Wedding,2003.0\ntt0872230,My Soul to Take,2010.0\ntt0887883,Burn After Reading,2008.0\ntt0114746,Twelve Monkeys,1995.0\ntt0095253,The Great Outdoors,1988.0\ntt0842926,The Kids Are All Right,2010.0\ntt0108052,Schindler's List,1993.0\ntt0106770,Dragon: The Bruce Lee Story,1993.0\ntt0413099,Evan Almighty,2007.0\ntt0101540,Cape Fear,1991.0\ntt0026138,Bride of Frankenstein,1935.0\ntt0074281,Car Wash,1976.0\ntt0115783,Bulletproof,1996.0\ntt0129290,Patch Adams,1998.0\ntt0117218,The Nutty Professor,1996.0\ntt0824747,Changeling,2008.0\ntt0119643,Meet Joe Black,1998.0\ntt0120669,Fear and Loathing in Las Vegas,1998.0\ntt0110950,Reality Bites,1994.0\ntt0021884,Frankenstein,1931.0\ntt0095631,Midnight Run,1988.0\ntt0120601,Being John Malkovich,1999.0\ntt0034240,Sullivan's Travels,1941.0\ntt0118928,Dante's Peak,1997.0\ntt0082200,Continental Divide,1981.0\ntt0094138,Three O'Clock High,1987.0\ntt0473464,Cherry Crush,2007.0\ntt0036775,Double Indemnity,1944.0\ntt0276751,About a Boy,2002.0\ntt0363547,Dawn of the Dead,2004.0\ntt0322259,2 Fast 2 Furious,2003.0\ntt0230169,Ed Gein,2000.0\ntt0081505,The Shining,1980.0\ntt0978764,Sucker Punch,2011.0\ntt1182350,You Will Meet a Tall Dark Stranger,2010.0\ntt1265990,The Roommate,2011.0\ntt1646111,Le secret de Chanda,2010.0\ntt1588337,Des hommes et des dieux,2010.0\ntt1243957,The Tourist,2010.0\ntt0298203,8 Mile,2002.0\ntt1220634,Resident Evil: Afterlife,2010.0\ntt0249462,Billy Elliot,2000.0\ntt0971209,A Perfect Getaway,2009.0\ntt0491152,Something Borrowed,2011.0\ntt0421238,The Proposition,2005.0\ntt1219289,Limitless,2011.0\ntt1174732,An Education,2009.0\ntt0989757,Dear John,2010.0\ntt0450405,Cirque du Freak: The Vampire's Assistant,2009.0\ntt0089560,Mask,1985.0\ntt0079367,The Jerk,1979.0\ntt0204946,Bring It On,2000.0\ntt1545098,Kenny Chesney: Summer in 3D,2010.0\ntt1313092,Animal Kingdom,2010.0\ntt1431181,Another Year,2010.0\ntt0775489,The Illusionist,2010.0\ntt1371155,Made in Dagenham,2010.0\ntt0804497,It's Kind of a Funny Story,2010.0\ntt1645089,Inside Job,2010.0\ntt0110074,The Hudsucker Proxy,1994.0\ntt0117128,Mystery Science Theater 3000: The Movie,1996.0\ntt1584016,Catfish,2010.0\ntt1440728,The American,2010.0\ntt1135084,Takers,2010.0\ntt1415283,Nanny McPhee and the Big Bang,2010.0\ntt1438254,The Death and Life of Charlie St. Cloud,2010.0\ntt0020629,All Quiet on the Western Front,1930.0\ntt0265298,Big Fat Liar,2002.0\ntt1121977,Mother and Child,2009.0\ntt1053424,Repo Men,2010.0\ntt1226273,Edge of Darkness,2010.0\ntt0369735,Monster-in-Law,2005.0\ntt0103919,Candyman,1992.0\ntt0335266,Lost in Translation,2003.0\ntt0068699,High Plains Drifter,1973.0\ntt0492492,Sleeping Dogs,2006.0\ntt1112782,Thick as Thieves,2009.0\ntt1151359,Leaves of Grass,2009.0\ntt0884224,\"War, Inc.\",2008.0\ntt0104377,Guncrazy,1992.0\ntt0362590,Employee of the Month,2004.0\ntt1186367,Ninja Assassin,2009.0\ntt0339727,Stateside,2004.0\ntt0460732,Caffeine,2006.0\ntt0448564,Irresistible,2006.0\ntt0800241,Transsiberian,2008.0\ntt0362506,Chrystal,2004.0\ntt0105435,Sneakers,1992.0\ntt0087262,Firestarter,1984.0\ntt0088128,Sixteen Candles,1984.0\ntt0104070,Death Becomes Her,1992.0\ntt0088846,Brazil,1985.0\ntt0084707,Sophie's Choice,1982.0\ntt0128853,You've Got Mail,1998.0\ntt0396269,Wedding Crashers,2005.0\ntt1130080,The Informant!,2009.0\ntt0167260,The Lord of the Rings: The Return of the King,2003.0\ntt0923671,El día de los muertos,2007.0\ntt0280609,Dog Soldiers,2002.0\ntt0280438,Ash Wednesday,2002.0\ntt0802948,An American Crime,2007.0\ntt0488085,Big Nothing,2006.0\ntt0349889,Unstoppable,2004.0\ntt1187064,Triangle,2009.0\ntt0071230,Blazing Saddles,1974.0\ntt0263101,Bangkok Dangerous,2000.0\ntt0473488,A Guide to Recognizing Your Saints,2006.0\ntt0084787,The Thing,1982.0\ntt1212419,Hereafter,2010.0\ntt0285728,Dahmer,2002.0\ntt0320244,Party Monster,2003.0\ntt0780608,Smiley Face,2007.0\ntt1680059,Born to Be Wild,2011.0\ntt0929618,\"Erica, Kieran and Lexi\",2010.0\ntt1231287,Labor Pains,2009.0\ntt0363143,Trauma,2004.0\ntt1334512,Arthur,2011.0\ntt0083658,Blade Runner,1982.0\ntt0328031,King of the Ants,2003.0\ntt1233219,\"My Son, My Son, What Have Ye Done\",2009.0\ntt0480687,Hall Pass,2011.0\ntt1401152,Unknown,2011.0\ntt1127180,Drag Me to Hell,2009.0\ntt0056869,The Birds,1963.0\ntt0765443,Eastern Promises,2007.0\ntt0206634,Children of Men,2006.0\ntt1161864,The Rite,2011.0\ntt0472062,Charlie Wilson's War,2007.0\ntt0023027,Horse Feathers,1932.0\ntt0040068,Bud Abbott Lou Costello Meet Frankenstein,1948.0\ntt0101615,Cool as Ice,1991.0\ntt0020640,Animal Crackers,1930.0\ntt0119567,The Lost World: Jurassic Park,1997.0\ntt1231583,Due Date,2010.0\ntt0386117,Where the Wild Things Are,2009.0\ntt1058017,The Invention of Lying,2009.0\ntt0033804,The Lady Eve,1941.0\ntt0120188,Three Kings,1999.0\ntt0840361,The Town,2010.0\ntt0979434,Lottery Ticket,2010.0\ntt0817177,Flipped,2010.0\ntt1287468,Cats & Dogs: The Revenge of Kitty Galore,2010.0\ntt1375666,Inception,2010.0\ntt1075747,Jonah Hex,2010.0\ntt1017460,Splice,2009.0\ntt1261945,Sex and the City 2,2010.0\ntt0480255,The Losers,2010.0\ntt1385867,Cop Out,2010.0\ntt1057500,Invictus,2009.0\ntt0878804,The Blind Side,2009.0\ntt0362478,The Box,2009.0\ntt0093148,Bigfoot and the Hendersons,1987.0\ntt0390022,Friday Night Lights,2004.0\ntt0080455,The Blues Brothers,1980.0\ntt0091244,I Love You,1986.0\ntt0352248,Cinderella Man,2005.0\ntt0372784,Batman Begins,2005.0\ntt0045152,Singin' in the Rain,1952.0\ntt0324216,The Texas Chainsaw Massacre,2003.0\ntt0266915,Rush Hour 2,2001.0\ntt0425061,Get Smart,2008.0\ntt0332452,Troy,2004.0\ntt0758794,We Are Marshall,2006.0\ntt0427327,Hairspray,2007.0\ntt0086200,Risky Business,1983.0\ntt0070034,Enter The Dragon,1973.0\ntt0335438,Starsky & Hutch,2004.0\ntt0468569,The Dark Knight,2008.0\ntt0209958,The Cell,2000.0\ntt0428803,March of the Penguins,2005.0\ntt0455612,Madea's Family Reunion,2006.0\ntt0825232,The Bucket List,2007.0\ntt0496806,Ocean's Thirteen,2007.0\ntt0120611,Blade,1998.0\ntt0338751,The Aviator,2004.0\ntt1000774,Sex and the City,2008.0\ntt0450259,Blood Diamond,2006.0\ntt0332280,The Notebook,2004.0\ntt0097958,National Lampoon's Winter Holiday,1989.0\ntt0032138,The Wizard of Oz,1939.0\ntt0116529,Hide and Seek,1996.0\ntt0117998,Twister,1996.0\ntt0313737,Two Weeks Notice,2002.0\ntt0139654,Training Day,2001.0\ntt0338348,The Polar Express,2004.0\ntt0240772,Ocean's Eleven,2001.0\ntt0212346,Miss Congeniality,2000.0\ntt0373889,Harry Potter and the Order of the Phoenix,2007.0\ntt0110148,Interview with the Vampire: The Vampire Chronicles,1994.0\ntt0349903,Ocean's Twelve,2004.0\ntt0120888,The Wedding Singer,1998.0\ntt0110475,The Mask,1994.0\ntt0120812,Rush Hour,1998.0\ntt0330373,Harry Potter and the Goblet of Fire,2005.0\ntt0087363,Gremlins,1984.0\ntt0407887,The Departed,2006.0\ntt0145660,Austin Powers: The Spy Who Shagged Me,1999.0\ntt0118655,Austin Powers: International Man of Mystery,1997.0\ntt0486583,Fred Claus,2007.0\ntt0122933,Analyze This,1999.0\ntt0416449,300,2006.0\ntt0088939,The Color Purple,1985.0\ntt0367594,Charlie and the Chocolate Factory,2005.0\ntt0295178,Austin Powers in Goldmember,2002.0\ntt0096895,Batman,1989.0\ntt0319343,Elf,2003.0\ntt0089218,The Goonies,1985.0\ntt0109686,Dumb and Dumber,1994.0\ntt0034583,Casablanca,1942.0\ntt0133093,The Matrix,1999.0\ntt0304141,Harry Potter and the Prisoner of Azkaban,2004.0\ntt0348150,Superman Returns,2006.0\ntt0107050,Grumpy Old Men,1993.0\ntt0031381,Gone with the Wind,1939.0\ntt0102798,Robin Hood: Prince of Thieves,1991.0\ntt0120689,The Green Mile,1999.0\ntt0325710,The Last Samurai,2003.0\ntt0234215,The Matrix Reloaded,2003.0\ntt0167261,The Lord of the Rings: The Two Towers,2002.0\ntt0295297,Harry Potter and the Chamber of Secrets,2002.0\ntt0241527,Harry Potter and the Philosopher's Stone,2001.0\ntt0122151,Lethal Weapon 4,1998.0\ntt0405159,Million Dollar Baby,2004.0\ntt0104714,Lethal Weapon 3,1992.0\ntt0177971,The Perfect Storm,2000.0\ntt0114369,Seven,1995.0\ntt0293564,Rush Hour 3,2007.0\ntt0242653,The Matrix Revolutions,2003.0\ntt6836772,Operation Dunkirk,2017.0\ntt1521787,Haunting of Winchester House,2009.0\ntt1876517,Tu xia chuan qi,2011.0\ntt2386490,How to Train Your Dragon: The Hidden World,2019.0\ntt2381317,Super Cyclone,2012.0\ntt7131870,Wolf Warrior 2,2017.0\ntt2611408,\"Us, Naked: Trixie & Monkey\",2014.0\ntt1610528,Airline Disaster,2010.0\ntt1757944,Princess and the Pony,2011.0\ntt1107365,Open Season 2,2008.0\ntt1636629,Sinbad: The Persian Prince,2010.0\ntt7204400,Geo-Disaster,2017.0\ntt3417334,Airplane vs. Volcano,2014.0\ntt7475886,Invoking 4,2017.0\ntt0264734,Joseph: King of Dreams,2000.0\ntt1912996,Barely Legal,2011.0\ntt1911533,Anneliese: The Exorcist Tapes,2011.0\ntt1473801,Sex Pot,2009.0\ntt1615480,Cellmates,2011.0\ntt1912981,A Haunting in Salem,2011.0\ntt0096118,Nightmare Vacation 2,1988.0\ntt1823051,200 M.P.H.,2011.0\ntt2062996,Something from Nothing: The Art of Rap,2012.0\ntt5218234,Linie 41,2015.0\ntt1576379,Cuentos de la selva,2010.0\ntt6874406,Alien Convergence,2017.0\ntt0842000,A Cat's Tale,2008.0\ntt3410834,Allegiant,2016.0\ntt0385307,Miss Congeniality 2: Armed & Fabulous,2005.0\ntt4172430,13 Hours,2016.0\ntt1482459,The Lorax,2012.0\ntt3250590,Equal Means Equal,2016.0\ntt0228333,Ghosts of Mars,2001.0\ntt3949660,Teenage Mutant Ninja Turtles: Out of the Shadows,2016.0\ntt2538778,Diamond Cartel,2015.0\ntt3911554,Mad Tiger,2015.0\ntt0096486,Young Einstein,1988.0\ntt2403021,The Green Inferno,2013.0\ntt0191636,La veuve de Saint-Pierre,2000.0\ntt3503840,Mercenary: Absolution,2015.0\ntt2113075,The Inevitable Defeat of Mister & Pete,2013.0\ntt1353997,Dragonquest,2009.0\ntt1999141,Dragon Crusaders,2011.0\ntt3677466,Age of Tomorrow,2014.0\ntt0073260,The Land That Time Forgot,1974.0\ntt2175927,American Warships,2012.0\ntt1219671,Allan Quatermain and the Temple of Skulls,2008.0\ntt1056026,\"30,000 Leagues Under the Sea\",2007.0\ntt1136683,100 Million BC,2008.0\ntt1075746,I Am Omega,2007.0\ntt1531911,Princess of Mars,2009.0\ntt2756412,AE: Apocalypse Earth,2013.0\ntt2081255,Grimm's Snow White,2012.0\ntt1183733,War of the Worlds 2: The Next Wave,2008.0\ntt1846444,2012: Ice Age,2011.0\ntt1325753,Hulk Vs.,2009.0\ntt1694508,Moby Dick,2010.0\ntt0942903,Stargate: The Ark of Truth,2008.0\ntt0929629,Stargate: Continuum,2008.0\ntt0115985,Crossworlds,1996.0\ntt1479847,2012: Supernova,2009.0\ntt1294699,Merlin and the War of the Dragons,2008.0\ntt2456594,Lord of the Elves,2012.0\ntt1758570,Battle of Los Angeles,2011.0\ntt1261046,Death Racers,2008.0\ntt2130142,Nazis at the Center of the Earth,2012.0\ntt2740710,Atlantic Rim,2013.0\ntt4296026,Avengers Grimm,2015.0\ntt4685096,3-Headed Shark Attack,2015.0\ntt2043757,2-Headed Shark Attack,2012.0\ntt0085750,Jaws 3-D,1983.0\ntt1094162,AVH: Alien vs. Hunter,2007.0\ntt1586261,Paranormal Entity,2009.0\ntt1640571,Titanic II,2010.0\ntt0974959,Beta House,2007.0\ntt1653690,Ong-bak 3,2010.0\ntt0843873,Snakes on a Train,2006.0\ntt0072067,The Violator,1974.0\ntt1376460,Transmorphers: Fall of Man,2009.0\ntt0960835,Transmorphers,2007.0\ntt1270792,Sunday School Musical,2008.0\ntt3063516,Bad Grandpa,2013.0\ntt0110989,Ri¢hie Ri¢h,1994.0\ntt0758752,Love & Other Drugs,2010.0\ntt1879032,Rapture-Palooza,2013.0\ntt0995740,No Smoking,2007.0\ntt0081609,Tegeran-43,1981.0\ntt5093452,Shots Fired,\ntt0055706,Tell It to Groucho,\ntt3305316,A Second Chance,2014.0\ntt0498353,Hostel: Part II,2007.0\ntt3602442,Leprechaun in the Hood,\ntt0116861,Leprechaun 4: In Space,1996.0\ntt0113636,Leprechaun 3,1995.0\ntt0118643,The Prophecy II,1998.0\ntt0183678,The Prophecy 3: The Ascent,2000.0\ntt5711820,Spy Kids 3D: Game Over,\ntt0229440,Hellraiser: Inferno,2000.0\ntt0116514,Hellraiser IV: Bloodline,1996.0\ntt0091431,Lung hing foo dai,1986.0\ntt0396184,Pusher II,2004.0\ntt0489270,Saw III,2006.0\ntt0112722,Copycat,1995.0\ntt0082694,Mad Max 2,1981.0\ntt0385988,Red Riding Hood,2006.0\ntt0113026,The Fantasticks,2000.0\ntt1326972,Chi bi: Jue zhan tian xia,2009.0\ntt0097428,Ghostbusters II,1989.0\ntt0425379,Pusher III,2005.0\ntt0212235,Shriek If You Know What I Did Last Friday the Thirteenth,2000.0\ntt1132626,Saw V,2008.0\ntt1212023,The Rain,2009.0\ntt0432348,Saw II,2005.0\ntt0109254,Beverly Hills Cop III,1994.0\ntt1121931,Crank 2: High Voltage,2009.0\ntt0325703,Lara Croft Tomb Raider: The Cradle of Life,2003.0\ntt0105128,Pet Sematary II,1992.0\ntt0890870,Saw IV,2007.0\ntt3595776,The Odd Couple,\ntt0443295,\"Yours, Mine & Ours\",2005.0\ntt0469999,Ulli Lommel's Zodiac Killer,2005.0\ntt0339294,Leprechaun 6: Back 2 Tha Hood,2003.0\ntt0088170,Star Trek III: The Search for Spock,1984.0\ntt6560426,\"Reunited, for Better or Worse\",\ntt0758746,Friday the 13th,2009.0\ntt0098382,Star Trek V: The Final Frontier,1989.0\ntt0083530,Airplane II: The Sequel,1982.0\ntt0424774,The Adventures of Sharkboy and Lavagirl 3-D,2005.0\ntt0071562,The Godfather: Part II,1974.0\ntt0092007,Star Trek IV: The Voyage Home,1986.0\ntt0099674,The Godfather Part III,1990.0\ntt9573086,\"Mr. DeMille, I'm Ready for My Close-Up\",\ntt0361411,Bride & Prejudice,2004.0\ntt0092644,Beverly Hills Cop II,1987.0\ntt0120755,Mission: Impossible II,2000.0\ntt0085127,'A' gai wak,1983.0\ntt0321704,The Circuit 2: The Final Punch,2002.0\ntt1328910,Chrome Angels,2009.0\ntt0312640,Dragon Fighter,2003.0\ntt0339526,Shooting Gallery,2005.0\ntt0489318,The Ungodly,2007.0\ntt1151928,Cyborg Soldier,2008.0\ntt0284491,Sin noticias de Dios,2001.0\ntt0337879,Blackball,2003.0\ntt5464234,Kill Switch,2017.0\ntt0367232,Whitecoats,2004.0\ntt0411477,Hellboy II: The Golden Army,2008.0\ntt0144528,Nutty Professor II: The Klumps,2000.0\ntt0096874,Back to the Future Part II,1989.0\ntt1743720,The Greatest Movie Ever Sold,2011.0\ntt0849470,Senior Skip Day,2008.0\ntt5801296,Subway Film,2005.0\ntt0099088,Back to the Future Part III,1990.0\ntt0330181,Gacy,2003.0\ntt0390468,Septem8er Tapes,2004.0\ntt0163025,Jurassic Park III,2001.0\ntt1627497,Llorando,\ntt0187738,Blade II,2002.0\ntt2274064,The Last White Knight,2012.0\n"
  },
  {
    "path": "data/metadata/split.csv",
    "content": "imdbid,split\ntt1707386,train\ntt6324278,train\ntt0448115,train\ntt5013056,train\ntt6095472,train\ntt2709692,train\ntt5109784,train\ntt0077288,train\ntt2561572,train\ntt0408306,train\ntt0116225,train\ntt0092493,train\ntt0082782,train\ntt0070016,train\ntt0073440,train\ntt0118688,train\ntt8079248,train\ntt4532826,train\ntt0058672,train\ntt2495118,train\ntt7634968,train\ntt6017942,train\ntt0046754,train\ntt2888046,train\ntt1386932,train\ntt0097388,train\ntt8695030,train\ntt0045920,train\ntt2639336,train\ntt0068909,train\ntt10720210,train\ntt7334528,train\ntt6806448,train\ntt0092605,train\ntt7207158,train\ntt0095179,train\ntt5186608,train\ntt0332375,train\ntt1846589,train\ntt4530422,train\ntt0104573,train\ntt0087298,train\ntt0109447,train\ntt0080487,train\ntt7282468,train\ntt7040874,train\ntt6371588,train\ntt7752126,train\ntt0110367,train\ntt0046816,train\ntt0060429,train\ntt0060438,train\ntt0104009,train\ntt5537600,train\ntt2066051,train\ntt2283336,train\ntt0369441,train\ntt6466464,train\ntt4591310,train\ntt0092948,train\ntt6320628,train\ntt6857112,train\ntt0155711,train\ntt1456661,train\ntt1999890,train\ntt0113464,train\ntt7042862,train\ntt0083972,train\ntt4761916,train\ntt8726116,train\ntt9251718,train\ntt5113040,train\ntt7073518,train\ntt0418819,train\ntt0085970,train\ntt6146586,train\ntt0096256,train\ntt0289765,train\ntt5649108,train\ntt7287136,train\ntt4666228,train\ntt5968394,train\ntt0837563,train\ntt3391782,train\ntt0098084,train\ntt6428676,train\ntt2267858,train\ntt0106220,train\ntt0117894,train\ntt9428920,train\ntt5596104,train\ntt7014006,train\ntt3576060,train\ntt3206798,train\ntt6921996,train\ntt2798920,train\ntt4953610,train\ntt0114608,train\ntt7043070,train\ntt5886046,train\ntt3080844,train\ntt5160154,train\ntt0864835,train\ntt2582784,train\ntt0245429,train\ntt5912454,train\ntt0424095,train\ntt2518848,train\ntt3120508,train\ntt6644200,train\ntt1628841,train\ntt4520924,train\ntt3626442,train\ntt3986978,train\ntt2401878,train\ntt1230168,train\ntt5081618,train\ntt6857166,train\ntt5338644,train\ntt2991532,train\ntt0093756,train\ntt6981634,train\ntt3597400,train\ntt6149802,train\ntt5167174,train\ntt0087928,train\ntt1791528,train\ntt2439946,train\ntt5657846,train\ntt5700672,train\ntt3540136,train\ntt3922754,train\ntt2186712,train\ntt3261182,train\ntt5354458,train\ntt4701182,train\ntt6215044,train\ntt1411238,train\ntt3715296,train\ntt5039994,train\ntt0113957,train\ntt2693580,train\ntt1972591,train\ntt0081573,train\ntt1907668,train\ntt0096101,train\ntt0892791,train\ntt8804688,train\ntt0120630,train\ntt1277953,train\ntt0413267,train\ntt0481499,train\ntt0138749,train\ntt7399158,train\ntt1694020,train\ntt0097778,train\ntt0479952,train\ntt1911658,train\ntt6499752,train\ntt4943934,train\ntt2196430,train\ntt0279493,train\ntt1321509,train\ntt0168501,train\ntt0081562,train\ntt0113845,train\ntt0297181,train\ntt7108976,train\ntt6231588,train\ntt0099582,train\ntt0033553,train\ntt0190865,train\ntt0059245,train\ntt4288674,train\ntt8671462,train\ntt0095497,train\ntt0490215,train\ntt1411704,train\ntt0085248,train\ntt0093999,train\ntt7616798,train\ntt3606888,train\ntt7008872,train\ntt2018111,train\ntt1645170,train\ntt3553442,train\ntt4225696,train\ntt4217392,train\ntt4537896,train\ntt2165735,train\ntt1255919,train\ntt1758810,train\ntt4504438,train\ntt1477834,train\ntt1596363,train\ntt4925292,train\ntt1663143,train\ntt1817771,train\ntt5734576,train\ntt5664636,train\ntt0841046,train\ntt1302011,train\ntt7349662,train\ntt6966692,train\ntt2119543,train\ntt1270797,train\ntt4633694,train\ntt0181316,train\ntt3450650,train\ntt0092563,train\ntt2671706,train\ntt0057251,train\ntt1428538,train\ntt0365957,train\ntt6781982,train\ntt0090685,train\ntt6911608,train\ntt3640424,train\ntt0427152,train\ntt0077504,train\ntt0111143,train\ntt0117107,train\ntt0281686,train\ntt0089489,train\ntt2042447,train\ntt1502407,train\ntt6133466,train\ntt4786282,train\ntt1980209,train\ntt0479884,train\ntt5734548,train\ntt0134983,train\ntt0074559,train\ntt0983193,train\ntt3095734,train\ntt2202750,train\ntt0082348,train\ntt0026714,train\ntt2538128,train\ntt0101452,train\ntt0109045,train\ntt2136808,train\ntt5160954,train\ntt8560130,train\ntt9004516,train\ntt5936438,train\ntt0312004,train\ntt3604958,train\ntt5974388,train\ntt1928329,train\ntt0064395,train\ntt1492842,train\ntt4779682,train\ntt7681902,train\ntt6599064,train\ntt0389790,train\ntt5363648,train\ntt1235522,train\ntt0102388,train\ntt5758778,train\ntt1268799,train\ntt1951261,train\ntt4738802,train\ntt2309260,train\ntt6883152,train\ntt5725894,train\ntt0095990,train\ntt6580394,train\ntt3399112,train\ntt0061512,train\ntt0195714,train\ntt8033592,train\ntt0417148,train\ntt1037705,train\ntt7424200,train\ntt5639446,train\ntt3874544,train\ntt0126029,train\ntt0974015,train\ntt2126355,train\ntt0441773,train\ntt4624424,train\ntt1935859,train\ntt0063829,train\ntt1446192,train\ntt0083767,train\ntt0082250,train\ntt0060921,train\ntt0088915,train\ntt0094118,train\ntt0892782,train\ntt1646971,train\ntt0892769,train\ntt7690670,train\ntt0067741,train\ntt0095348,train\ntt0051525,train\ntt0313443,train\ntt0087800,train\ntt0089901,train\ntt5220122,train\ntt1179056,train\ntt6772950,train\ntt1540011,train\ntt2660888,train\ntt0078346,train\ntt0114069,train\ntt0092710,train\ntt0102526,train\ntt0106455,train\ntt0104265,train\ntt3110958,train\ntt0101984,train\ntt1411697,train\ntt1119646,train\ntt5052474,train\ntt0111255,train\ntt2557478,train\ntt0293815,train\ntt3393786,train\ntt0790724,train\ntt1055292,train\ntt0090859,train\ntt0095188,train\ntt4881806,train\ntt1179933,train\ntt3862750,train\ntt2011159,train\ntt7518466,train\ntt0795421,train\ntt5308322,train\ntt7109844,train\ntt4542660,train\ntt2527336,train\ntt6116682,train\ntt5325030,train\ntt1578275,train\ntt3957170,train\ntt0455944,train\ntt3532216,train\ntt0056264,train\ntt0077572,train\ntt5719108,train\ntt0104815,train\ntt0066448,train\ntt0059803,train\ntt4477536,train\ntt0382992,train\ntt0257076,train\ntt0048380,train\ntt0077235,train\ntt0034587,train\ntt0036855,train\ntt0071675,train\ntt6333066,train\ntt4397414,train\ntt0451279,train\ntt0918940,train\ntt0211443,train\ntt2967226,train\ntt4765284,train\ntt5726086,train\ntt6421110,train\ntt3783958,train\ntt1219827,train\ntt4966046,train\ntt6094944,train\ntt1291150,train\ntt5061162,train\ntt3773378,train\ntt1519461,train\ntt2283362,train\ntt5301544,train\ntt5612742,train\ntt4848010,train\ntt1754767,train\ntt1540115,train\ntt4877122,train\ntt1650062,train\ntt1959563,train\ntt3892618,train\ntt4335520,train\ntt2378507,train\ntt4131800,train\ntt3469046,train\ntt3564472,train\ntt1711525,train\ntt0498381,train\ntt2473510,train\ntt3065204,train\ntt3799694,train\ntt0088206,train\ntt1253863,train\ntt4139124,train\ntt3534842,train\ntt5278578,train\ntt2250912,train\ntt3890160,train\ntt6414866,train\ntt4425200,train\ntt3038734,train\ntt4935334,train\ntt5115546,train\ntt6231792,train\ntt4939066,train\ntt3717316,train\ntt5072406,train\ntt7456468,train\ntt5022872,train\ntt5120042,train\ntt4799050,train\ntt3121332,train\ntt5442430,train\ntt4698684,train\ntt3917210,train\ntt2398241,train\ntt4160708,train\ntt0406375,train\ntt0079073,train\ntt2639254,train\ntt0355702,train\ntt1374989,train\ntt2513074,train\ntt1355644,train\ntt4882174,train\ntt0084191,train\ntt1808339,train\ntt3407428,train\ntt4972582,train\ntt4361050,train\ntt1753383,train\ntt4649416,train\ntt2034800,train\ntt4550098,train\ntt4630562,train\ntt2650978,train\ntt8071196,train\ntt0099938,train\ntt0046912,train\ntt0091763,train\ntt0095031,train\ntt5052448,train\ntt0881320,train\ntt0095593,train\ntt0891527,train\ntt0106452,train\ntt0181739,train\ntt0119592,train\ntt0104107,train\ntt0031867,train\ntt0094894,train\ntt0077838,train\ntt0098309,train\ntt0101371,train\ntt0301470,train\ntt0061452,train\ntt0100232,train\ntt0113228,train\ntt0089530,train\ntt0116253,train\ntt0053125,train\ntt0093713,train\ntt1391116,train\ntt2586118,train\ntt0277027,train\ntt0106701,train\ntt0101635,train\ntt0094027,train\ntt0120094,train\ntt0085333,train\ntt0118661,train\ntt2318092,train\ntt1582465,train\ntt0035015,train\ntt0057193,train\ntt1488555,train\ntt0423977,train\ntt0245046,train\ntt0100486,train\ntt1564585,train\ntt0120787,train\ntt0113870,train\ntt0444682,train\ntt1139668,train\ntt2910814,train\ntt2024469,train\ntt0365907,train\ntt1216491,train\ntt2349144,train\ntt0264935,train\ntt2377322,train\ntt0102915,train\ntt0367652,train\ntt0374536,train\ntt0095925,train\ntt2788710,train\ntt2170299,train\ntt0243655,train\ntt0118750,train\ntt0110657,train\ntt0120686,train\ntt0102492,train\ntt0164912,train\ntt0243585,train\ntt1564367,train\ntt0389860,train\ntt0088680,train\ntt0274309,train\ntt0101701,train\ntt1282140,train\ntt0852713,train\ntt0879870,train\ntt0117008,train\ntt0099204,train\ntt0097757,train\ntt0409182,train\ntt0089175,train\ntt0172493,train\ntt0112818,train\ntt0310793,train\ntt1535109,train\ntt4178092,train\ntt2717822,train\ntt0114134,train\ntt1596345,train\ntt0112887,train\ntt0318374,train\ntt0108026,train\ntt1285016,train\ntt1568346,train\ntt2473602,train\ntt0811080,train\ntt0243133,train\ntt0119080,train\ntt0065112,train\ntt0205271,train\ntt1632708,train\ntt0101698,train\ntt0210358,train\ntt0091934,train\ntt1307068,train\ntt0091777,train\ntt0089822,train\ntt0102395,train\ntt0093493,train\ntt0084745,train\ntt0263488,train\ntt0097737,train\ntt0144814,train\ntt2334879,train\ntt1599348,train\ntt2140379,train\ntt0434409,train\ntt0114576,train\ntt1648179,train\ntt1204975,train\ntt1655460,train\ntt0114852,train\ntt1284575,train\ntt0102303,train\ntt0076489,train\ntt0069495,train\ntt1121096,train\ntt3713166,train\ntt2870612,train\ntt2239832,train\ntt1621045,train\ntt0457939,train\ntt0090927,train\ntt0093164,train\ntt0130018,train\ntt0424136,train\ntt1872181,train\ntt0990407,train\ntt0164052,train\ntt3721936,train\ntt0401420,train\ntt0492044,train\ntt0098994,train\ntt1457765,train\ntt3470600,train\ntt4302938,train\ntt0479500,train\ntt1219342,train\ntt0047795,train\ntt4263482,train\ntt1700841,train\ntt0119109,train\ntt0101745,train\ntt0099077,train\ntt0097236,train\ntt1043791,train\ntt0279688,train\ntt2396701,train\ntt2240312,train\ntt2702724,train\ntt2245003,train\ntt1767372,train\ntt1274586,train\ntt2381991,train\ntt0985025,train\ntt3307726,train\ntt2493486,train\ntt1509767,train\ntt1572491,train\ntt1031280,train\ntt1982735,train\ntt0286306,train\ntt0443435,train\ntt3384904,train\ntt1331307,train\ntt0492486,train\ntt1757742,train\ntt2474438,train\ntt2012665,train\ntt3036676,train\ntt1014763,train\ntt2304953,train\ntt3202890,train\ntt0928375,train\ntt2457138,train\ntt1956620,train\ntt2166934,train\ntt3203890,train\ntt1278449,train\ntt2382396,train\ntt0107302,train\ntt3093522,train\ntt1396523,train\ntt1754656,train\ntt0479162,train\ntt1617661,train\ntt2223990,train\ntt1621046,train\ntt2106476,train\ntt3233418,train\ntt2725962,train\ntt1130088,train\ntt2094064,train\ntt1833888,train\ntt1815862,train\ntt0490181,train\ntt0407304,train\ntt1321870,train\ntt1595656,train\ntt1667889,train\ntt0097322,train\ntt2094018,train\ntt1764183,train\ntt1770734,train\ntt0079592,train\ntt1132130,train\ntt1386703,train\ntt0450336,train\ntt0457572,train\ntt0780607,train\ntt1931435,train\ntt1878942,train\ntt1839654,train\ntt0094678,train\ntt0369672,train\ntt0099797,train\ntt1629705,train\ntt1531663,train\ntt0093693,train\ntt0095684,train\ntt1436432,train\ntt0087078,train\ntt1181791,train\ntt0109835,train\ntt0433412,train\ntt1221208,train\ntt0094321,train\ntt0111301,train\ntt1155076,train\ntt0460810,train\ntt0486358,train\ntt1462758,train\ntt0478188,train\ntt0338216,train\ntt0104438,train\ntt0077294,train\ntt0055031,train\ntt0053946,train\ntt0061418,train\ntt0062765,train\ntt0032599,train\ntt0233277,train\ntt1895587,train\ntt0810819,train\ntt0048545,train\ntt0049730,train\ntt0475290,train\ntt3203606,train\ntt0033467,train\ntt1971352,train\ntt0100935,train\ntt0056193,train\ntt4530832,train\ntt3534282,train\ntt1783732,train\ntt4094724,train\ntt3079016,train\ntt1440732,train\ntt3746298,train\ntt3760922,train\ntt1334537,train\ntt0910936,train\ntt4196776,train\ntt0149261,train\ntt0107362,train\ntt2191701,train\ntt3499424,train\ntt1663662,train\ntt7069210,train\ntt3276924,train\ntt2547172,train\ntt3393070,train\ntt0423294,train\ntt1276419,train\ntt0803096,train\ntt2216240,train\ntt2310332,train\ntt1170358,train\ntt0903624,train\ntt1507566,train\ntt0988045,train\ntt1766094,train\ntt1374992,train\ntt0770828,train\ntt0105698,train\ntt0024216,train\ntt1709143,train\ntt1578882,train\ntt2279339,train\ntt5323662,train\ntt0800320,train\ntt0120912,train\ntt1392190,train\ntt1985949,train\ntt2379713,train\ntt0120685,train\ntt1985966,train\ntt0097647,train\ntt0091326,train\ntt1234721,train\ntt2967224,train\ntt3850590,train\ntt0119282,train\ntt3628584,train\ntt0948470,train\ntt0413300,train\ntt1038686,train\ntt0091167,train\ntt0079522,train\ntt0316654,train\ntt3530002,train\ntt1430607,train\ntt1430626,train\ntt2510894,train\ntt0837562,train\ntt4052882,train\ntt7264080,train\ntt0834001,train\ntt0401855,train\ntt0271263,train\ntt0385880,train\ntt0115963,train\ntt0808151,train\ntt0373051,train\ntt2621126,train\ntt2518926,train\ntt0108149,train\ntt1634121,train\ntt0988849,train\ntt1016268,train\ntt3064298,train\ntt2051894,train\ntt4034228,train\ntt2345112,train\ntt0038109,train\ntt0097239,train\ntt3168230,train\ntt1876547,train\ntt3567288,train\ntt1623288,train\ntt1204977,train\ntt0298388,train\ntt0339291,train\ntt0905372,train\ntt1440129,train\ntt0085636,train\ntt0082495,train\ntt0116365,train\ntt0099253,train\ntt0387575,train\ntt0144120,train\ntt1850457,train\ntt3321300,train\ntt0091778,train\ntt0092076,train\ntt1659216,train\ntt0860462,train\ntt0068762,train\ntt0452694,train\ntt2581244,train\ntt1491044,train\ntt2292182,train\ntt1927093,train\ntt2236160,train\ntt2490326,train\ntt0093300,train\ntt0077766,train\ntt2080374,train\ntt0061747,train\ntt0468492,train\ntt0079261,train\ntt1536410,train\ntt2473682,train\ntt2205697,train\ntt2226519,train\ntt0781008,train\ntt1602472,train\ntt1350512,train\ntt0480271,train\ntt0970866,train\ntt0068897,train\ntt0805564,train\ntt0091983,train\ntt0102744,train\ntt0098577,train\ntt0095082,train\ntt0089504,train\ntt1368116,train\ntt0997147,train\ntt1634122,train\ntt1959490,train\ntt1156300,train\ntt1334526,train\ntt1618442,train\ntt1705773,train\ntt1350498,train\ntt0044081,train\ntt2870708,train\ntt3045616,train\ntt1778304,train\ntt1748122,train\ntt2202385,train\ntt0089017,train\ntt0810817,train\ntt0061811,train\ntt0785035,train\ntt0085382,train\ntt0086525,train\ntt1480295,train\ntt0089907,train\ntt1605630,train\ntt0068833,train\ntt1655441,train\ntt1245112,train\ntt0816711,train\ntt1925518,train\ntt1932767,train\ntt0029947,train\ntt1376709,train\ntt0787474,train\ntt4547120,train\ntt0290747,train\ntt1529572,train\ntt1453403,train\ntt0453451,train\ntt1853739,train\ntt2039345,train\ntt2235108,train\ntt0084649,train\ntt1302067,train\ntt0379786,train\ntt0087365,train\ntt3181822,train\ntt0975645,train\ntt0086856,train\ntt1951266,train\ntt2872750,train\ntt1116184,train\ntt2626350,train\ntt0107983,train\ntt1229340,train\ntt1229238,train\ntt1583421,train\ntt0493430,train\ntt0286788,train\ntt0120800,train\ntt1571249,train\ntt3899796,train\ntt1680138,train\ntt1587807,train\ntt2637276,train\ntt0104040,train\ntt2109248,train\ntt1399103,train\ntt1055369,train\ntt0113243,train\ntt0337579,train\ntt0388500,train\ntt0097576,train\ntt0367882,train\ntt0071360,train\ntt0077745,train\ntt1137470,train\ntt1699755,train\ntt2024432,train\ntt1649419,train\ntt3062074,train\ntt2724064,train\ntt1772925,train\ntt0094074,train\ntt1263670,train\ntt0087469,train\ntt0082971,train\ntt1305583,train\ntt0814255,train\ntt0949731,train\ntt0416212,train\ntt0311429,train\ntt0056197,train\ntt0848537,train\ntt1389137,train\ntt1033575,train\ntt1033643,train\ntt0429493,train\ntt2345613,train\ntt1408101,train\ntt0083550,train\ntt2235779,train\ntt1807944,train\ntt1932718,train\ntt1935179,train\ntt1155592,train\ntt1398426,train\ntt2975578,train\ntt0044953,train\ntt0120654,train\ntt0040872,train\ntt2458106,train\ntt0082332,train\ntt1139797,train\ntt0378109,train\ntt2322441,train\ntt0822832,train\ntt1131734,train\ntt0432283,train\ntt1698648,train\ntt0109370,train\ntt1592873,train\ntt1735898,train\ntt1935896,train\ntt0408524,train\ntt0120184,train\ntt0078227,train\ntt2450186,train\ntt2105044,train\ntt0835418,train\ntt1155056,train\ntt3152624,train\ntt2004420,train\ntt1596350,train\ntt1412386,train\ntt2382009,train\ntt1091191,train\ntt2349460,train\ntt1821694,train\ntt1704573,train\ntt0087985,train\ntt0101764,train\ntt0829150,train\ntt1065073,train\ntt2481480,train\ntt2274570,train\ntt1211956,train\ntt0469021,train\ntt0114508,train\ntt0089200,train\ntt0780622,train\ntt1213663,train\ntt2557490,train\ntt2318527,train\ntt2017038,train\ntt1247640,train\ntt0120241,train\ntt0377471,train\ntt1478338,train\ntt2398249,train\ntt0985694,train\ntt1022603,train\ntt0327850,train\ntt0947798,train\ntt1542344,train\ntt1538819,train\ntt0451079,train\ntt0098206,train\ntt0091217,train\ntt0059113,train\ntt0113321,train\ntt0311648,train\ntt1731141,train\ntt1418377,train\ntt1572315,train\ntt1650043,train\ntt1408253,train\ntt2848292,train\ntt0369610,train\ntt2820852,train\ntt2980516,train\ntt0086006,train\ntt0062512,train\ntt0246460,train\ntt0057076,train\ntt0058150,train\ntt0830515,train\ntt1074638,train\ntt0059800,train\ntt0381061,train\ntt0064757,train\ntt0113189,train\ntt0090264,train\ntt0071807,train\ntt0097742,train\ntt0143145,train\ntt0086034,train\ntt0070328,train\ntt0055928,train\ntt0079574,train\ntt1436562,train\ntt1318514,train\ntt0489099,train\ntt0455499,train\ntt0303933,train\ntt0120913,train\ntt0114885,train\ntt0473308,train\ntt0096463,train\ntt0084855,train\ntt0250797,train\ntt0117979,train\ntt1753584,train\ntt0094291,train\ntt0358273,train\ntt0117509,train\ntt1323594,train\ntt0048605,train\ntt0427944,train\ntt0120169,train\ntt0119313,train\ntt0455824,train\ntt0114887,train\ntt0129387,train\ntt1216496,train\ntt0101889,train\ntt1196141,train\ntt1201607,train\ntt0952640,train\ntt0247745,train\ntt1840309,train\ntt0376994,train\ntt0290334,train\ntt0120903,train\ntt0120179,train\ntt0244970,train\ntt0120831,train\ntt0073629,train\ntt0107977,train\ntt0443632,train\ntt0069113,train\ntt0120772,train\ntt0098258,train\ntt0343818,train\ntt0093822,train\ntt0063442,train\ntt0119896,train\ntt0183649,train\ntt0151738,train\ntt0110638,train\ntt0374900,train\ntt0151804,train\ntt0093773,train\ntt0104691,train\ntt0455590,train\ntt0203009,train\ntt0104952,train\ntt0107614,train\ntt0183505,train\ntt0203019,train\ntt0100114,train\ntt0328107,train\ntt0337978,train\ntt0449059,train\ntt0240468,train\ntt0264761,train\ntt0091306,train\ntt0359517,train\ntt0036613,train\ntt0107034,train\ntt0454841,train\ntt0120703,train\ntt0465494,train\ntt0101410,train\ntt0356721,train\ntt0455967,train\ntt0116705,train\ntt0298845,train\ntt0089370,train\ntt0116629,train\ntt0104431,train\ntt0107144,train\ntt0102059,train\ntt0120681,train\ntt0099785,train\ntt0104427,train\ntt0067116,train\ntt0242423,train\ntt0099487,train\ntt0137523,train\ntt0357277,train\ntt0364725,train\ntt0164114,train\ntt0099423,train\ntt0095016,train\ntt0458352,train\ntt0116282,train\ntt0319262,train\ntt0088944,train\ntt0452598,train\ntt0349205,train\ntt0115857,train\ntt0092699,train\ntt0078902,train\ntt0421729,train\ntt0208003,train\ntt0065466,train\ntt0163978,train\ntt0280460,train\ntt0118583,train\ntt0311113,train\ntt0198021,train\ntt0467406,train\ntt0166396,train\ntt0388482,train\ntt0139414,train\ntt0112864,train\ntt0333766,train\ntt0094737,train\ntt0456554,train\ntt0115759,train\ntt0064115,train\ntt0118617,train\ntt0370263,train\ntt0078748,train\ntt0463854,train\ntt0289043,train\ntt0086998,train\ntt0095159,train\ntt0120841,train\ntt0072081,train\ntt0111282,train\ntt0095444,train\ntt0109831,train\ntt0107616,train\ntt0100054,train\ntt0333780,train\ntt0212985,train\ntt0092675,train\ntt0080745,train\ntt0050083,train\ntt0245574,train\ntt0070849,train\ntt0424345,train\ntt0087803,train\ntt0097499,train\ntt0090142,train\ntt0053291,train\ntt0100157,train\ntt0151568,train\ntt0092654,train\ntt1081935,train\ntt1403177,train\ntt1277737,train\ntt1213012,train\ntt0245238,train\ntt0367913,train\ntt0873886,train\ntt0098141,train\ntt0173716,train\ntt0100196,train\ntt0107492,train\ntt0081398,train\ntt0125879,train\ntt0217355,train\ntt0218922,train\ntt0239060,train\ntt0234354,train\ntt0067093,train\ntt0226935,train\ntt0250202,train\ntt0094812,train\ntt0363473,train\ntt0430919,train\ntt0426615,train\ntt0090756,train\ntt0357507,train\ntt0397401,train\ntt0086979,train\ntt0089927,train\ntt0084602,train\ntt0079817,train\ntt0099348,train\ntt0429573,train\ntt0433386,train\ntt0114436,train\ntt0472160,train\ntt0804516,train\ntt0079501,train\ntt0097659,train\ntt0058461,train\ntt0805570,train\ntt0092086,train\ntt0094012,train\ntt0887912,train\ntt1023111,train\ntt0430912,train\ntt0486321,train\ntt1124048,train\ntt1053859,train\ntt0465580,train\ntt0093779,train\ntt1232783,train\ntt0100502,train\ntt1814621,train\ntt0082846,train\ntt1231587,train\ntt2083355,train\ntt1103275,train\ntt1172994,train\ntt1640459,train\ntt1912398,train\ntt1172570,train\ntt1175709,train\ntt0365485,train\ntt0790736,train\ntt0443536,train\ntt0426459,train\ntt0462519,train\ntt0489237,train\ntt0373883,train\ntt0848557,train\ntt0421082,train\ntt0795493,train\ntt0450385,train\ntt1007028,train\ntt0976051,train\ntt0443559,train\ntt0403702,train\ntt2184339,train\ntt0898367,train\ntt1742650,train\ntt0497465,train\ntt1483013,train\ntt0426592,train\ntt0362120,train\ntt1077258,train\ntt1411250,train\ntt1028528,train\ntt0281322,train\ntt0280778,train\ntt0171359,train\ntt1596343,train\ntt0068935,train\ntt0120604,train\ntt0122541,train\ntt0240601,train\ntt1690953,train\ntt0102370,train\ntt0110027,train\ntt0133046,train\ntt1905041,train\ntt0144964,train\ntt0193560,train\ntt0252299,train\ntt0290212,train\ntt0282209,train\ntt1139328,train\ntt0427470,train\ntt0052618,train\ntt0417741,train\ntt0377818,train\ntt0112462,train\ntt1120985,train\ntt0289879,train\ntt0329101,train\ntt0186566,train\ntt0244244,train\ntt0100944,train\ntt0089791,train\ntt0195945,train\ntt0066999,train\ntt0327056,train\ntt0770752,train\ntt0480249,train\ntt0366548,train\ntt0066434,train\ntt0084917,train\ntt0036098,train\ntt0239395,train\ntt0103776,train\ntt1136608,train\ntt1097013,train\ntt0464154,train\ntt1655420,train\ntt1262416,train\ntt1655442,train\ntt1504320,train\ntt0361748,train\ntt1311067,train\ntt0375568,train\ntt1315981,train\ntt1951264,train\ntt0977855,train\ntt1093357,train\ntt1045658,train\ntt1673434,train\ntt1517489,train\ntt0945513,train\ntt1682181,train\ntt1586265,train\ntt1764651,train\ntt1259521,train\ntt1800741,train\ntt1764234,train\ntt1343727,train\ntt0795461,train\ntt1327773,train\ntt2334649,train\ntt0075148,train\ntt0102753,train\ntt0367085,train\ntt0478197,train\ntt0226009,train\ntt1341167,train\ntt0348333,train\ntt0338095,train\ntt1226236,train\ntt0048356,train\ntt0064665,train\ntt0095953,train\ntt0935075,train\ntt1262981,train\ntt1001562,train\ntt0245562,train\ntt0114938,train\ntt0486674,train\ntt0070814,train\ntt1293842,train\ntt0051036,train\ntt0098384,train\ntt0120788,train\ntt0839880,train\ntt0363276,train\ntt0227005,train\ntt0234137,train\ntt0120802,train\ntt0981072,train\ntt0165854,train\ntt1038919,train\ntt1392170,train\ntt1615091,train\ntt0106664,train\ntt0115685,train\ntt0189584,train\ntt0368909,train\ntt1598828,train\ntt0035140,train\ntt0247786,train\ntt0309912,train\ntt0116743,train\ntt1175491,train\ntt1855401,train\ntt0115798,train\ntt0114388,train\ntt0120744,train\ntt0985699,train\ntt0100135,train\ntt1095442,train\ntt0077597,train\ntt0492389,train\ntt0059124,train\ntt0088960,train\ntt0804452,train\ntt0162662,train\ntt0245712,train\ntt1399683,train\ntt0075314,train\ntt0258000,train\ntt1615147,train\ntt1588170,train\ntt0926084,train\ntt0190332,train\ntt1436045,train\ntt0098453,train\ntt0094862,train\ntt0327919,train\ntt0081071,train\ntt0072325,train\ntt0087727,train\ntt0102555,train\ntt0093640,train\ntt0104765,train\ntt0052564,train\ntt0081184,train\ntt0084732,train\ntt0079240,train\ntt0305396,train\ntt0100680,train\ntt0082416,train\ntt0063415,train\ntt0057413,train\ntt0094142,train\ntt0054047,train\ntt0120757,train\ntt0263757,train\ntt0070915,train\ntt0098546,train\ntt0098090,train\ntt0102926,train\ntt0086619,train\ntt0092003,train\ntt0086999,train\ntt0071746,train\ntt0118900,train\ntt0251114,train\ntt0070653,train\ntt0089730,train\ntt0091699,train\ntt0105046,train\ntt0094783,train\ntt0078790,train\ntt0086993,train\ntt0068931,train\ntt0087231,train\ntt0076210,train\ntt0057115,train\ntt0055184,train\ntt0383216,train\ntt0091875,train\ntt0108187,train\ntt0098042,train\ntt0114287,train\ntt0075268,train\ntt0102103,train\ntt0102005,train\ntt0093200,train\ntt0080895,train\ntt0068673,train\ntt0109913,train\ntt0048254,train\ntt0070379,train\ntt0283897,train\ntt0373469,train\ntt0438488,train\ntt0091055,train\ntt0295289,train\ntt0052896,train\ntt0096769,train\ntt0049414,train\ntt0069897,train\ntt0086946,train\ntt0068309,train\ntt0097138,train\ntt0085384,train\ntt0069976,train\ntt0080661,train\ntt0106873,train\ntt0057449,train\ntt0313911,train\ntt1228705,train\ntt0139134,train\ntt0057012,train\ntt0089886,train\ntt0088172,train\ntt0118708,train\ntt0118615,train\ntt0381849,train\ntt0218839,train\ntt0800003,train\ntt0427312,train\ntt0117407,train\ntt1324999,train\ntt1325004,train\ntt1259571,train\ntt0119654,train\ntt0104694,train\ntt0119822,train\ntt0425637,train\ntt0079417,train\ntt0343660,train\ntt0113670,train\ntt0310281,train\ntt0268126,train\ntt0118571,train\ntt0074119,train\ntt0112442,train\ntt0981227,train\ntt0106364,train\ntt0094721,train\ntt0381681,train\ntt0142342,train\ntt0319061,train\ntt0115734,train\ntt0101507,train\ntt0127723,train\ntt0075860,train\ntt0376541,train\ntt0106673,train\ntt0068473,train\ntt0112851,train\ntt0088323,train\ntt0072890,train\ntt0119008,train\ntt0181536,train\ntt0065724,train\ntt0365265,train\ntt0097441,train\ntt0139239,train\ntt0120684,train\ntt0107048,train\ntt0099726,train\ntt0308353,train\ntt0113277,train\ntt0386588,train\ntt0102057,train\ntt0090060,train\ntt0061809,train\ntt0107206,train\ntt0025316,train\ntt0102138,train\ntt0119488,train\ntt0089457,train\ntt0056172,train\ntt0110322,train\ntt0097733,train\ntt0110413,train\ntt0107178,train\ntt0325805,train\ntt0303361,train\ntt0829482,train\ntt0031679,train\ntt0277371,train\ntt0107818,train\ntt0093886,train\ntt0108002,train\ntt0323944,train\ntt0090022,train\ntt0105414,train\ntt0092005,train\ntt0120201,train\ntt0160127,train\ntt0044079,train\ntt0083131,train\ntt0096764,train\ntt0080453,train\ntt0050212,train\ntt0382625,train\ntt0119116,train\ntt0865556,train\ntt0087538,train\ntt0033870,train\ntt0120746,train\ntt0087781,train\ntt0120768,train\ntt0187393,train\ntt0117318,train\ntt0454921,train\ntt0107943,train\ntt0292644,train\ntt1273678,train\ntt0087332,train\ntt0320691,train\ntt0383694,train\ntt0120890,train\ntt1156398,train\ntt1554091,train\ntt1306980,train\ntt0360009,train\ntt0308508,train\ntt0129167,train\ntt0093437,train\ntt0120004,train\ntt0086508,train\ntt0816462,train\ntt0206275,train\ntt0086873,train\ntt0115738,train\ntt0424993,train\ntt0317676,train\ntt0160672,train\ntt0399295,train\ntt1179891,train\ntt0114594,train\ntt0870195,train\ntt0450278,train\ntt0274812,train\ntt0831887,train\ntt0470705,train\ntt0814075,train\ntt0353489,train\ntt0811138,train\ntt0115438,train\ntt0488508,train\ntt0393162,train\ntt0410097,train\ntt0100740,train\ntt0408839,train\ntt0434139,train\ntt0264323,train\ntt0375173,train\ntt0101301,train\ntt0080365,train\ntt0486259,train\ntt0414853,train\ntt0103759,train\ntt0292963,train\ntt0482463,train\ntt0246772,train\ntt0109305,train\ntt0103873,train\ntt0163988,train\ntt0179116,train\ntt0961722,train\ntt0375912,train\ntt0157472,train\ntt1153706,train\ntt0433362,train\ntt0817538,train\ntt0116493,train\ntt0150377,train\ntt0109676,train\ntt0097240,train\ntt0326856,train\ntt0215750,train\ntt0428518,train\ntt0119095,train\ntt0289944,train\ntt0106912,train\ntt0050419,train\ntt1034032,train\ntt0064381,train\ntt0815236,train\ntt0180734,train\ntt0102011,train\ntt0251736,train\ntt0770810,train\ntt0110146,train\ntt0186253,train\ntt0425123,train\ntt1059932,train\ntt0215129,train\ntt1250777,train\ntt0074751,train\ntt0110305,train\ntt0420251,train\ntt0079640,train\ntt0113691,train\ntt0258273,train\ntt0757361,train\ntt0473692,train\ntt0416320,train\ntt0209144,train\ntt0117091,train\ntt0119715,train\ntt0322659,train\ntt0120784,train\ntt0067589,train\ntt0078111,train\ntt0337711,train\ntt0388395,train\ntt0184907,train\ntt0040823,train\ntt0489281,train\ntt0117731,train\ntt0094072,train\ntt0324127,train\ntt0115571,train\ntt0185937,train\ntt0064045,train\ntt0321442,train\ntt0109340,train\ntt0051436,train\ntt0101523,train\ntt0298814,train\ntt0435625,train\ntt1320253,train\ntt0093075,train\ntt0219699,train\ntt0064505,train\ntt0385057,train\ntt0380510,train\ntt0071970,train\ntt0314498,train\ntt1129442,train\ntt0337697,train\ntt0268695,train\ntt0290095,train\ntt0301976,train\ntt0159097,train\ntt0282120,train\ntt0161100,train\ntt0139699,train\ntt0070895,train\ntt0049934,train\ntt0048801,train\ntt0120524,train\ntt0477139,train\ntt0096487,train\ntt1186830,train\ntt1448755,train\ntt0893412,train\ntt1189340,train\ntt0082382,train\ntt0049096,train\ntt0344604,train\ntt0285742,train\ntt0395584,train\ntt0408236,train\ntt0123755,train\ntt0092890,train\ntt0375679,train\ntt0158493,train\ntt0078788,train\ntt0144084,train\ntt0120151,train\ntt0261289,train\ntt0089945,train\ntt0068245,train\ntt0348505,train\ntt0218182,train\ntt0096316,train\ntt0406158,train\ntt0051364,train\ntt0145653,train\ntt0060086,train\ntt0267248,train\ntt0078757,train\ntt0258038,train\ntt0373908,train\ntt0268397,train\ntt0099587,train\ntt0098625,train\ntt0314676,train\ntt0062153,train\ntt0060736,train\ntt0419887,train\ntt0366174,train\ntt0044672,train\ntt0191133,train\ntt1305806,train\ntt0085407,train\ntt0072848,train\ntt0055871,train\ntt0239986,train\ntt0061385,train\ntt0096094,train\ntt0421239,train\ntt0250687,train\ntt0082970,train\ntt0066181,train\ntt0078024,train\ntt0063356,train\ntt0056267,train\ntt0119468,train\ntt0099850,train\ntt0119360,train\ntt0110099,train\ntt0319531,train\ntt0051745,train\ntt0080836,train\ntt0430105,train\ntt0097336,train\ntt0418647,train\ntt0044509,train\ntt0163983,train\ntt0075765,train\ntt0109120,train\ntt1403865,train\ntt0384680,train\ntt0117331,train\ntt0059575,train\ntt0091129,train\ntt0252028,train\ntt0251075,train\ntt0249478,train\ntt0069097,train\ntt0090357,train\ntt0756729,train\ntt0364751,train\ntt0277434,train\ntt1193138,train\ntt0345950,train\ntt0416236,train\ntt0113972,train\ntt0377091,train\ntt0115678,train\ntt1126618,train\ntt0114857,train\ntt0272020,train\ntt0406650,train\ntt0830558,train\ntt0097481,train\ntt0077621,train\ntt0335559,train\ntt0272207,train\ntt0338564,train\ntt0113451,train\ntt0780567,train\ntt0815245,train\ntt0327162,train\ntt0119874,train\ntt0171363,train\ntt0785006,train\ntt0995039,train\ntt0486822,train\ntt0099044,train\ntt0120324,train\ntt0964517,train\ntt1251757,train\ntt0071771,train\ntt0499554,train\ntt0203230,train\ntt0243736,train\ntt0118849,train\ntt0099558,train\ntt0413895,train\ntt0164184,train\ntt0445934,train\ntt0096933,train\ntt0442933,train\ntt0109506,train\ntt0317248,train\ntt0241303,train\ntt0065528,train\ntt0088930,train\ntt0463998,train\ntt0787475,train\ntt0427229,train\ntt0209037,train\ntt0112744,train\ntt0079540,train\ntt0796366,train\ntt0124295,train\ntt0111280,train\ntt0099703,train\ntt0164334,train\ntt0829459,train\ntt0431308,train\ntt0080388,train\ntt0090830,train\ntt1034303,train\ntt0116126,train\ntt0443489,train\ntt0091188,train\ntt0081353,train\ntt0416051,train\ntt0822854,train\ntt0054331,train\ntt0102975,train\ntt0402022,train\ntt0116209,train\ntt0071577,train\ntt0368008,train\ntt0469641,train\ntt0116367,train\ntt0109445,train\ntt0219653,train\ntt0112346,train\ntt0091042,train\ntt0266489,train\ntt0047396,train\ntt0088850,train\ntt0090305,train\ntt0384642,train\ntt0107076,train\ntt0106332,train\ntt0082198,train\ntt0080761,train\ntt0120694,train\ntt0216787,train\ntt0238380,train\ntt0169547,train\ntt0230600,train\ntt0357413,train\ntt0079945,train\ntt0099810,train\ntt0120815,train\ntt0119675,train\ntt0449467,train\ntt0084726,train\ntt0172495,train\ntt0401383,train\ntt0327679,train\ntt0095765,train\ntt0257044,train\ntt1182609,train\ntt1179904,train\ntt0302886,train\ntt0418279,train\ntt0120737,train\ntt0236493,train\ntt0161081,train\ntt0181689,train\ntt0325537,train\ntt0264464,train\ntt0369339,train\ntt0120647,train\ntt0399201,train\ntt0942385,train\ntt0177789,train\ntt0477051,train\ntt0043014,train\ntt0088286,train\ntt0080339,train\ntt0086465,train\ntt0120082,train\ntt0095705,train\ntt0112572,train\ntt0066011,train\ntt0086425,train\ntt0273923,train\ntt0063522,train\ntt0077631,train\ntt0162650,train\ntt0087277,train\ntt0054698,train\ntt0071315,train\ntt0077663,train\ntt0102517,train\ntt0056217,train\ntt0102768,train\ntt0167427,train\ntt0116313,train\ntt0094006,train\ntt0067185,train\ntt0074860,train\ntt0332379,train\ntt0046250,train\ntt0213790,train\ntt0398165,train\ntt0119978,train\ntt0185014,train\ntt0090329,train\ntt0259711,train\ntt0196229,train\ntt0443706,train\ntt0096061,train\ntt0114694,train\ntt0099653,train\ntt0112817,train\ntt1046173,train\ntt0158983,train\ntt0251127,train\ntt0105793,train\ntt0322802,train\ntt0146316,train\ntt0080678,train\ntt0049833,train\ntt0116191,train\ntt0457510,train\ntt0126886,train\ntt0086960,train\ntt0105112,train\ntt0092099,train\ntt0119081,train\ntt0094898,train\ntt0162661,train\ntt0083511,train\ntt0038650,train\ntt0112573,train\ntt0107211,train\ntt0064116,train\ntt0073802,train\ntt0109444,train\ntt0120770,train\ntt0084434,train\ntt0094744,train\ntt0091790,train\ntt0492619,train\ntt0297884,train\ntt0108065,train\ntt0094608,train\ntt0109830,train\ntt0377092,train\ntt0117060,train\ntt0421715,train\ntt0317919,train\ntt0094226,train\ntt0120382,train\ntt0317740,train\ntt0371746,train\ntt0104036,train\ntt0128442,train\ntt0469494,train\ntt0101318,train\ntt0115697,train\ntt0118826,train\ntt0117381,train\ntt0257106,train\ntt0110889,train\ntt0116324,train\ntt0261392,train\ntt0416508,train\ntt0120613,train\ntt0271219,train\ntt0120907,train\ntt0858479,train\ntt0115632,train\ntt1045670,train\ntt0105236,train\ntt0120577,train\ntt0111512,train\ntt0113158,train\ntt0104567,train\ntt0307987,train\ntt0240890,train\ntt0114194,train\ntt0105488,train\ntt0308644,train\ntt0247425,train\ntt0113326,train\ntt0117283,train\ntt0077594,train\ntt0299977,train\ntt0213847,train\ntt0104558,train\ntt0117571,train\ntt0211915,train\ntt0118842,train\ntt0115639,train\ntt0436697,train\ntt0338096,train\ntt0363226,train\ntt0108148,train\ntt0160862,train\ntt0134119,train\ntt0384806,train\ntt0286112,train\ntt0107822,train\ntt0120321,train\ntt0192071,train\ntt0250323,train\ntt0184858,train\ntt0144715,train\ntt0110588,train\ntt0119324,train\ntt0035423,train\ntt0190590,train\ntt0162360,train\ntt0120148,train\ntt0117666,train\ntt0780511,train\ntt0114478,train\ntt0258068,train\ntt0278500,train\ntt0134084,train\ntt0116242,train\ntt0350261,train\ntt0103994,train\ntt0489327,train\ntt0118949,train\ntt0110877,train\ntt0114805,train\ntt0242527,train\ntt0190138,train\ntt0147004,train\ntt0240510,train\ntt0102749,train\ntt0107426,train\ntt0186975,train\ntt0338135,train\ntt0372824,train\ntt0117951,train\ntt0217505,train\ntt0889573,train\ntt0159365,train\ntt0227538,train\ntt0299658,train\ntt0119217,train\ntt0358135,train\ntt0452623,train\ntt0477348,train\ntt0119396,train\ntt0203536,train\ntt1570728,train\ntt1557769,train\ntt1265621,train\ntt0377808,train\ntt1133995,train\ntt0815230,train\ntt1406157,train\ntt0118652,train\ntt1499658,train\ntt1622979,train\ntt0420740,train\ntt0445946,train\ntt0808265,train\ntt0305556,train\ntt0858411,train\ntt0309452,train\ntt0363095,train\ntt0233657,train\ntt0374286,train\ntt0437072,train\ntt1633356,train\ntt1266121,train\ntt0457319,train\ntt0230512,train\ntt0380201,train\ntt0492912,train\ntt1294136,train\ntt0138524,train\ntt0113074,train\ntt1172060,train\ntt1161449,train\ntt1087524,train\ntt0770778,train\ntt0119208,train\ntt1290400,train\ntt0476964,train\ntt0762073,train\ntt0760188,train\ntt0386751,train\ntt0455584,train\ntt0149171,train\ntt0358569,train\ntt0276276,train\ntt0454879,train\ntt0417751,train\ntt0412798,train\ntt0470761,train\ntt0280605,train\ntt0914364,train\ntt0832266,train\ntt0069704,train\ntt1583420,train\ntt0368688,train\ntt0310924,train\ntt0469062,train\ntt0327643,train\ntt0167116,train\ntt0889583,train\ntt0101393,train\ntt0455362,train\ntt1198153,train\ntt1584733,train\ntt0425112,train\ntt0243155,train\ntt1423593,train\ntt0141926,train\ntt0307507,train\ntt0119395,train\ntt0089755,train\ntt0112508,train\ntt0097216,train\ntt0127536,train\ntt0160184,train\ntt0790618,train\ntt0112431,train\ntt0343135,train\ntt0114898,train\ntt0300532,train\ntt0125439,train\ntt1645080,train\ntt0414387,train\ntt0085959,train\ntt0132347,train\ntt1019452,train\ntt0120616,train\ntt0209163,train\ntt0076723,train\ntt0096320,train\ntt0315733,train\ntt0077975,train\ntt0120693,train\ntt1452628,train\ntt1421051,train\ntt0021814,train\ntt0232500,train\ntt0170016,train\ntt0115624,train\ntt0859163,train\ntt0181865,train\ntt0098554,train\ntt0477080,train\ntt0268978,train\ntt0089155,train\ntt1232824,train\ntt0099365,train\ntt0277296,train\ntt0120780,train\ntt0088847,train\ntt0083929,train\ntt0452594,train\ntt0106677,train\ntt1201167,train\ntt0463034,train\ntt0087597,train\ntt0475394,train\ntt1082601,train\ntt0384793,train\ntt0290002,train\ntt0056923,train\ntt0405422,train\ntt0082010,train\ntt1127896,train\ntt0086250,train\ntt0091225,train\ntt0095489,train\ntt0046876,train\ntt0870111,train\ntt0478311,train\ntt0253474,train\ntt0340855,train\ntt1226229,train\ntt0195685,train\ntt0113749,train\ntt0360717,train\ntt0365748,train\ntt0096969,train\ntt0212338,train\ntt0457400,train\ntt1078940,train\ntt1135487,train\ntt0372183,train\ntt0385267,train\ntt0440963,train\ntt0258463,train\ntt0119174,train\ntt0112641,train\ntt0315327,train\ntt0192614,train\ntt0098067,train\ntt0350258,train\ntt0120735,train\ntt0430922,train\ntt0118689,train\ntt1486190,train\ntt0132477,train\ntt0284837,train\ntt0103850,train\ntt0993842,train\ntt1034389,train\ntt0947810,train\ntt1234654,train\ntt1216492,train\ntt0054215,train\ntt0083866,train\ntt0073195,train\ntt0131857,train\ntt0091541,train\ntt0113360,train\ntt0099141,train\ntt0056592,train\ntt0099329,train\ntt0327597,train\ntt0023969,train\ntt0322589,train\ntt0088763,train\ntt0218967,train\ntt0166924,train\ntt1596346,train\ntt0382856,train\ntt0382810,train\ntt0273453,train\ntt1194263,train\ntt1149361,train\ntt0762125,train\ntt0323939,train\ntt1020543,train\ntt1501652,train\ntt0284929,train\ntt0413466,train\ntt0338075,train\ntt0446029,train\ntt0102175,train\ntt1013752,train\ntt0337721,train\ntt0100107,train\ntt0378407,train\ntt0906665,train\ntt1095217,train\ntt1294688,train\ntt1664894,train\ntt1341188,train\ntt1126591,train\ntt0913354,train\ntt1229822,train\ntt0328828,train\ntt0872230,train\ntt0887883,train\ntt0114746,train\ntt0095253,train\ntt0842926,train\ntt0413099,train\ntt0101540,train\ntt0026138,train\ntt0074281,train\ntt0115783,train\ntt0129290,train\ntt0117218,train\ntt0119643,train\ntt0120669,train\ntt0095631,train\ntt0120601,train\ntt0034240,train\ntt0082200,train\ntt0094138,train\ntt0036775,train\ntt0276751,train\ntt0363547,train\ntt0322259,train\ntt0230169,train\ntt0081505,train\ntt0978764,train\ntt1265990,train\ntt1588337,train\ntt1243957,train\ntt0298203,train\ntt1220634,train\ntt0249462,train\ntt0971209,train\ntt0491152,train\ntt1219289,train\ntt0989757,train\ntt0450405,train\ntt0089560,train\ntt0079367,train\ntt0204946,train\ntt1545098,train\ntt1313092,train\ntt1431181,train\ntt0775489,train\ntt1371155,train\ntt0804497,train\ntt1415283,train\ntt0020629,train\ntt0265298,train\ntt1121977,train\ntt1053424,train\ntt1226273,train\ntt0369735,train\ntt0335266,train\ntt0068699,train\ntt0492492,train\ntt1112782,train\ntt1151359,train\ntt0884224,train\ntt0104377,train\ntt1186367,train\ntt0448564,train\ntt0362506,train\ntt0087262,train\ntt0088128,train\ntt0104070,train\ntt0088846,train\ntt0084707,train\ntt0128853,train\ntt0396269,train\ntt0167260,train\ntt0923671,train\ntt0488085,train\ntt1187064,train\ntt0071230,train\ntt0263101,train\ntt0084787,train\ntt1212419,train\ntt0285728,train\ntt0780608,train\ntt1680059,train\ntt0929618,train\ntt1334512,train\ntt0328031,train\ntt1401152,train\ntt1127180,train\ntt0765443,train\ntt0206634,train\ntt1161864,train\ntt0472062,train\ntt0040068,train\ntt0101615,train\ntt0020640,train\ntt1231583,train\ntt0386117,train\ntt0979434,train\ntt1287468,train\ntt1375666,train\ntt1075747,train\ntt1261945,train\ntt1385867,train\ntt1057500,train\ntt0878804,train\ntt0362478,train\ntt0093148,train\ntt0080455,train\ntt0091244,train\ntt0352248,train\ntt0324216,train\ntt0266915,train\ntt0425061,train\ntt0758794,train\ntt0427327,train\ntt0086200,train\ntt0335438,train\ntt0468569,train\ntt0209958,train\ntt0455612,train\ntt0496806,train\ntt0120611,train\ntt0338751,train\ntt0450259,train\ntt0332280,train\ntt0097958,train\ntt0032138,train\ntt0116529,train\ntt0117998,train\ntt0212346,train\ntt0373889,train\ntt0120888,train\ntt0110475,train\ntt0120812,train\ntt0087363,train\ntt0407887,train\ntt0145660,train\ntt0122933,train\ntt0416449,train\ntt0088939,train\ntt0089218,train\ntt0109686,train\ntt0034583,train\ntt0133093,train\ntt0304141,train\ntt0348150,train\ntt0107050,train\ntt0031381,train\ntt0102798,train\ntt0325710,train\ntt0234215,train\ntt0167261,train\ntt0122151,train\ntt0405159,train\ntt0114369,train\ntt0242653,train\ntt6836772,train\ntt1521787,train\ntt1876517,train\ntt2386490,train\ntt2381317,train\ntt7131870,train\ntt2611408,train\ntt1757944,train\ntt1107365,train\ntt1636629,train\ntt3417334,train\ntt0264734,train\ntt1912996,train\ntt1615480,train\ntt1912981,train\ntt0096118,train\ntt1823051,train\ntt2062996,train\ntt5218234,train\ntt1576379,train\ntt6874406,train\ntt0842000,train\ntt0385307,train\ntt4172430,train\ntt3250590,train\ntt0228333,train\ntt3949660,train\ntt3911554,train\ntt0096486,train\ntt2403021,train\ntt0191636,train\ntt3503840,train\ntt3677466,train\ntt0073260,train\ntt1056026,train\ntt1075746,train\ntt2081255,train\ntt1846444,train\ntt0942903,train\ntt0929629,train\ntt1479847,train\ntt1294699,train\ntt2456594,train\ntt1758570,train\ntt1261046,train\ntt2130142,train\ntt2740710,train\ntt4296026,train\ntt4685096,train\ntt2043757,train\ntt0085750,train\ntt1094162,train\ntt0974959,train\ntt1653690,train\ntt0843873,train\ntt0072067,train\ntt1376460,train\ntt0960835,train\ntt1270792,train\ntt3063516,train\ntt0110989,train\ntt0081609,train\ntt5093452,train\ntt3305316,train\ntt0498353,train\ntt0116861,train\ntt0113636,train\ntt0118643,train\ntt0183678,train\ntt0229440,train\ntt0116514,train\ntt0112722,train\ntt0082694,train\ntt0385988,train\ntt0113026,train\ntt1326972,train\ntt0097428,train\ntt0425379,train\ntt1132626,train\ntt1212023,train\ntt0432348,train\ntt1121931,train\ntt0105128,train\ntt0890870,train\ntt3595776,train\ntt0443295,train\ntt0469999,train\ntt0339294,train\ntt0088170,train\ntt6560426,train\ntt0758746,train\ntt0098382,train\ntt0083530,train\ntt0424774,train\ntt0071562,train\ntt0092007,train\ntt0361411,train\ntt0092644,train\ntt1328910,train\ntt0312640,train\ntt0489318,train\ntt1151928,train\ntt0284491,train\ntt5464234,train\ntt0367232,train\ntt0144528,train\ntt0096874,train\ntt1743720,train\ntt0849470,train\ntt5801296,train\ntt0330181,train\ntt0390468,train\ntt0163025,train\ntt0187738,train\ntt2274064,train\ntt0108162,val\ntt1386588,val\ntt0101625,val\ntt1999141,val\ntt1007029,val\ntt0075066,val\ntt0105121,val\ntt0062622,val\ntt1341341,val\ntt0110005,val\ntt7575480,val\ntt0462499,val\ntt0091431,val\ntt7575702,val\ntt5776858,val\ntt0113855,val\ntt0296572,val\ntt0437800,val\ntt0840361,val\ntt0163651,val\ntt0297037,val\ntt0037913,val\ntt7668870,val\ntt0103644,val\ntt0100258,val\ntt0918927,val\ntt0110148,val\ntt0068767,val\ntt0101846,val\ntt4497338,val\ntt7454138,val\ntt0023245,val\ntt1920849,val\ntt0086567,val\ntt0120347,val\ntt2404233,val\ntt1860355,val\ntt2553908,val\ntt0101917,val\ntt0134847,val\ntt1091863,val\ntt0110598,val\ntt0120820,val\ntt0362590,val\ntt0083629,val\ntt5177088,val\ntt6000478,val\ntt0265459,val\ntt0164181,val\ntt0356680,val\ntt0212235,val\ntt0098621,val\ntt0115986,val\ntt0105435,val\ntt0200530,val\ntt1659337,val\ntt0338526,val\ntt2599716,val\ntt0462504,val\ntt2108605,val\ntt0758758,val\ntt0825232,val\ntt0379725,val\ntt0050468,val\ntt0467200,val\ntt0051786,val\ntt0111257,val\ntt0340377,val\ntt1627497,val\ntt0097257,val\ntt1293847,val\ntt0042208,val\ntt4465564,val\ntt0100814,val\ntt7401588,val\ntt1648190,val\ntt0349903,val\ntt1136683,val\ntt2709768,val\ntt0259567,val\ntt0489270,val\ntt2279373,val\ntt0057187,val\ntt0374102,val\ntt0305711,val\ntt0480669,val\ntt0108174,val\ntt0414852,val\ntt3228302,val\ntt1640548,val\ntt3766354,val\ntt5226436,val\ntt0110907,val\ntt0305357,val\ntt0494222,val\ntt1213644,val\ntt2017020,val\ntt2241351,val\ntt0409847,val\ntt0428803,val\ntt1496422,val\ntt1630564,val\ntt0319343,val\ntt1645089,val\ntt0033804,val\ntt0305224,val\ntt0047296,val\ntt0352277,val\ntt5481984,val\ntt6777338,val\ntt2767266,val\ntt0412019,val\ntt0098635,val\ntt0460740,val\ntt0058586,val\ntt0337879,val\ntt0355295,val\ntt0084814,val\ntt5294966,val\ntt1809398,val\ntt0065446,val\ntt0408985,val\ntt1612774,val\ntt0093870,val\ntt2404435,val\ntt0419706,val\ntt4244998,val\ntt0078723,val\ntt0083739,val\ntt0448075,val\ntt0119177,val\ntt0375063,val\ntt0316732,val\ntt1979320,val\ntt3106120,val\ntt0400717,val\ntt1602098,val\ntt0348836,val\ntt0472458,val\ntt0976222,val\ntt0100828,val\ntt0263734,val\ntt6823368,val\ntt1217613,val\ntt7204400,val\ntt0108550,val\ntt0800241,val\ntt1210166,val\ntt0960144,val\ntt0955308,val\ntt6398184,val\ntt2230358,val\ntt0177971,val\ntt0118887,val\ntt0959337,val\ntt0110516,val\ntt3605418,val\ntt2752772,val\ntt1817273,val\ntt5711820,val\ntt0093223,val\ntt0085549,val\ntt1013753,val\ntt0118607,val\ntt0302674,val\ntt0090856,val\ntt2025526,val\ntt3602442,val\ntt0469623,val\ntt0245803,val\ntt1290471,val\ntt2989524,val\ntt2538778,val\ntt1663207,val\ntt0175142,val\ntt1600195,val\ntt0821642,val\ntt0120520,val\ntt5582876,val\ntt0210070,val\ntt0286947,val\ntt4092422,val\ntt0078163,val\ntt0266697,val\ntt1489889,val\ntt1666801,val\ntt0120902,val\ntt0078767,val\ntt1911533,val\ntt0186508,val\ntt0101921,val\ntt5667482,val\ntt1748179,val\ntt0081283,val\ntt2096672,val\ntt0200465,val\ntt1450321,val\ntt0892318,val\ntt0433416,val\ntt0151582,val\ntt1860353,val\ntt2378281,val\ntt0066026,val\ntt0083642,val\ntt1496025,val\ntt2024506,val\ntt0068284,val\ntt0183790,val\ntt0300556,val\ntt0105812,val\ntt0068646,val\ntt3605266,val\ntt1240982,val\ntt1876261,val\ntt0253754,val\ntt1456635,val\ntt1232200,val\ntt1135084,val\ntt8426112,val\ntt0145531,val\ntt0104714,val\ntt0434124,val\ntt0901476,val\ntt0070047,val\ntt0332047,val\ntt0415306,val\ntt0338348,val\ntt0046303,val\ntt0303816,val\ntt0070909,val\ntt0105327,val\ntt3142366,val\ntt0082766,val\ntt0100133,val\ntt0970179,val\ntt0420757,val\ntt0120188,val\ntt0331632,val\ntt0944835,val\ntt0100519,val\ntt0087065,val\ntt0335119,val\ntt5199588,val\ntt0817177,val\ntt1679335,val\ntt0120587,val\ntt1335975,val\ntt1532503,val\ntt0300051,val\ntt0072251,val\ntt0120620,val\ntt5952594,val\ntt1646987,val\ntt1060277,val\ntt0097500,val\ntt0283090,val\ntt0102960,val\ntt1588173,val\ntt0363143,val\ntt4019560,val\ntt0483607,val\ntt0093091,val\ntt0056241,val\ntt2832470,val\ntt0364385,val\ntt1051904,val\ntt2975590,val\ntt0031725,val\ntt1196948,val\ntt0068835,val\ntt0061791,val\ntt0047472,val\ntt0320244,val\ntt0259324,val\ntt0351283,val\ntt0073190,val\ntt0078872,val\ntt1357005,val\ntt0097351,val\ntt0115641,val\ntt2719848,val\ntt0079714,val\ntt1658801,val\ntt1334536,val\ntt3077214,val\ntt0064276,val\ntt0452625,val\ntt2552498,val\ntt0301199,val\ntt0082418,val\ntt0377109,val\ntt0293564,val\ntt6015706,val\ntt0102510,val\ntt0021884,val\ntt3164256,val\ntt1462041,val\ntt0113161,val\ntt1174732,val\ntt0103786,val\ntt0053604,val\ntt0054997,val\ntt0118113,val\ntt0246544,val\ntt5716380,val\ntt0022913,val\ntt0280609,val\ntt0108052,val\ntt0480255,val\ntt0102951,val\ntt3598222,val\ntt6212478,val\ntt1438254,val\ntt0294357,val\ntt0070510,val\ntt0109279,val\ntt0112697,val\ntt0324133,val\ntt1297919,val\ntt1091722,val\ntt0275022,val\ntt0100403,val\ntt0116778,val\ntt0321704,val\ntt0318462,val\ntt1231287,val\ntt2531344,val\ntt1549920,val\ntt6343314,val\ntt1423894,val\ntt0076666,val\ntt0438205,val\ntt1266029,val\ntt0384814,val\ntt0107387,val\ntt0203119,val\ntt0120053,val\ntt0118928,val\ntt4912910,val\ntt1465522,val\ntt0325258,val\ntt0138704,val\ntt0368709,val\ntt0103874,val\ntt0093660,val\ntt2708254,val\ntt0165798,val\ntt0899106,val\ntt0339727,val\ntt0186894,val\ntt0256380,val\ntt0097815,val\ntt5462602,val\ntt2051879,val\ntt1385826,val\ntt0119783,val\ntt0313737,val\ntt0378194,val\ntt1386697,val\ntt1563742,val\ntt0285823,test\ntt2637294,test\ntt0056869,test\ntt3531824,test\ntt0109288,test\ntt0119567,test\ntt3717490,test\ntt1563738,test\ntt2231253,test\ntt4438848,test\ntt3280262,test\ntt0163187,test\ntt0172156,test\ntt3410834,test\ntt0448157,test\ntt1270761,test\ntt1747958,test\ntt0075686,test\ntt0780653,test\ntt1409024,test\ntt0790636,test\ntt0884328,test\ntt3416742,test\ntt0497116,test\ntt0079239,test\ntt2543164,test\ntt0162222,test\ntt1258972,test\ntt0241527,test\ntt1285009,test\ntt1473801,test\ntt0106598,test\ntt1389096,test\ntt0472181,test\ntt0089853,test\ntt3397884,test\ntt1469304,test\ntt0288477,test\ntt0102266,test\ntt0298148,test\ntt0044685,test\ntt4555426,test\ntt0318155,test\ntt3371366,test\ntt0419843,test\ntt0455857,test\ntt1135503,test\ntt4382872,test\ntt0024184,test\ntt0090056,test\ntt0076752,test\ntt0067992,test\ntt0371246,test\ntt0081455,test\ntt1981677,test\ntt0250494,test\ntt1235796,test\ntt0063350,test\ntt0093409,test\ntt0320661,test\ntt2005374,test\ntt0082398,test\ntt1524575,test\ntt2091473,test\ntt0105695,test\ntt0119345,test\ntt1198138,test\ntt0097613,test\ntt0090837,test\ntt0844471,test\ntt5164214,test\ntt1133985,test\ntt1001526,test\ntt3960412,test\ntt0063688,test\ntt0377107,test\ntt1213641,test\ntt0071706,test\ntt0102316,test\ntt3170902,test\ntt1226753,test\ntt0104348,test\ntt0023027,test\ntt0181875,test\ntt0473464,test\ntt0100301,test\ntt0116695,test\ntt0118715,test\ntt1210801,test\ntt0103074,test\ntt1937390,test\ntt0096787,test\ntt0291341,test\ntt0085127,test\ntt0332452,test\ntt0059742,test\ntt0312528,test\ntt1869315,test\ntt1740707,test\ntt0762107,test\ntt3614530,test\ntt2395199,test\ntt0491747,test\ntt8426846,test\ntt0238924,test\ntt2992146,test\ntt0118971,test\ntt0814022,test\ntt0325703,test\ntt2923316,test\ntt0386140,test\ntt0104695,test\ntt0086393,test\ntt0266747,test\ntt0390022,test\ntt0449010,test\ntt0091530,test\ntt0274166,test\ntt1024648,test\ntt0482606,test\ntt1288558,test\ntt5460416,test\ntt6205872,test\ntt3672840,test\ntt0795426,test\ntt0083987,test\ntt1092026,test\ntt0473488,test\ntt0054135,test\ntt0062803,test\ntt0486583,test\ntt0099399,test\ntt0117887,test\ntt1325753,test\ntt0113537,test\ntt0238546,test\ntt2833768,test\ntt8155288,test\ntt0795351,test\ntt3829920,test\ntt0118632,test\ntt1205537,test\ntt3457734,test\ntt0317198,test\ntt0118798,test\ntt3322940,test\ntt0267913,test\ntt0452608,test\ntt1792794,test\ntt2093977,test\ntt0388125,test\ntt0110366,test\ntt0236640,test\ntt0070034,test\ntt5599818,test\ntt1190080,test\ntt0096734,test\ntt0103919,test\ntt0118564,test\ntt0227445,test\ntt3263408,test\ntt0439815,test\ntt2554274,test\ntt0061735,test\ntt0125664,test\ntt5182856,test\ntt0411477,test\ntt0283026,test\ntt0085672,test\ntt2406566,test\ntt0427969,test\ntt0185431,test\ntt0871426,test\ntt3482062,test\ntt0463985,test\ntt7475886,test\ntt0103956,test\ntt0093137,test\ntt0120844,test\ntt5112578,test\ntt1355630,test\ntt0091159,test\ntt1482459,test\ntt0351977,test\ntt0095690,test\ntt0101272,test\ntt0299981,test\ntt0065214,test\ntt6958014,test\ntt0118073,test\ntt0085470,test\ntt3569230,test\ntt0368794,test\ntt1623745,test\ntt0489049,test\ntt0117628,test\ntt1242618,test\ntt0391198,test\ntt0120631,test\ntt0067411,test\ntt0884732,test\ntt1340138,test\ntt2872518,test\ntt0367594,test\ntt1099212,test\ntt0303714,test\ntt0085862,test\ntt0208092,test\ntt2175927,test\ntt0112642,test\ntt0093565,test\ntt0074285,test\ntt0090555,test\ntt0120891,test\ntt0076729,test\ntt0120458,test\ntt0082432,test\ntt0470993,test\ntt0122718,test\ntt0207201,test\ntt0468565,test\ntt0100530,test\ntt1233227,test\ntt0111161,test\ntt0111653,test\ntt0039628,test\ntt0110329,test\ntt0070460,test\ntt0405061,test\ntt0391024,test\ntt0089118,test\ntt4872162,test\ntt0110622,test\ntt0118799,test\ntt0155267,test\ntt0114814,test\ntt0119576,test\ntt0307351,test\ntt0108160,test\ntt0043456,test\ntt2763304,test\ntt0339091,test\ntt1192628,test\ntt1646111,test\ntt0090713,test\ntt2113075,test\ntt1343092,test\ntt0099371,test\ntt1614989,test\ntt0050825,test\ntt0802948,test\ntt6408946,test\ntt9573086,test\ntt0077416,test\ntt3717252,test\ntt2236182,test\ntt2756412,test\ntt0295297,test\ntt1650554,test\ntt2381249,test\ntt0339526,test\ntt0382943,test\ntt0295178,test\ntt1020558,test\ntt1592281,test\ntt0229260,test\ntt0399901,test\ntt2195548,test\ntt0115985,test\ntt1692084,test\ntt0101587,test\ntt4566574,test\ntt0963794,test\ntt0477347,test\ntt1610528,test\ntt0048028,test\ntt0104808,test\ntt0326769,test\ntt0180093,test\ntt0119349,test\ntt2839312,test\ntt5941692,test\ntt2118624,test\ntt1486185,test\ntt0054428,test\ntt0116483,test\ntt2592614,test\ntt2103264,test\ntt7547410,test\ntt0234829,test\ntt0093748,test\ntt1152836,test\ntt0120755,test\ntt0094921,test\ntt1183733,test\ntt7745068,test\ntt0397535,test\ntt0988595,test\ntt0817230,test\ntt6212136,test\ntt0051201,test\ntt4195278,test\ntt4005332,test\ntt4795124,test\ntt0430308,test\ntt0240772,test\ntt0042192,test\ntt0268380,test\ntt0037536,test\ntt0066206,test\ntt1321860,test\ntt0108525,test\ntt0113497,test\ntt0454945,test\ntt0276919,test\ntt1477076,test\ntt0067328,test\ntt0055706,test\ntt0084021,test\ntt7260048,test\ntt5173032,test\ntt1294970,test\ntt0120689,test\ntt0092115,test\ntt1058017,test\ntt0455760,test\ntt0377062,test\ntt0117108,test\ntt0361693,test\ntt1232829,test\ntt0314331,test\ntt4572792,test\ntt0264472,test\ntt0119528,test\ntt1637706,test\ntt0800039,test\ntt3062096,test\ntt1270262,test\ntt0480687,test\ntt0071402,test\ntt0103859,test\ntt2436386,test\ntt4145324,test\ntt0270288,test\ntt0396171,test\ntt1477855,test\ntt0286716,test\ntt5117670,test\ntt1656186,test\ntt0065126,test\ntt2333784,test\ntt1114740,test\ntt3631112,test\ntt0096895,test\ntt0087995,test\ntt0070355,test\ntt0280438,test\ntt0995740,test\ntt0838283,test\ntt1279935,test\ntt0090633,test\ntt3453772,test\ntt0120879,test\ntt0113101,test\ntt0349889,test\ntt0997143,test\ntt0089572,test\ntt0069995,test\ntt0312329,test\ntt0115906,test\ntt0117128,test\ntt0112384,test\ntt1825157,test\ntt0357470,test\ntt4183692,test\ntt7137846,test\ntt0120915,test\ntt7275200,test\ntt3860916,test\ntt0454848,test\ntt0060196,test\ntt3316948,test\ntt0372334,test\ntt0138097,test\ntt1289401,test\ntt0293662,test\ntt0112715,test\ntt0486655,test\ntt0063518,test\ntt2345759,test\ntt0055614,test\ntt0414055,test\ntt0052832,test\ntt4666726,test\ntt0286499,test\ntt0032904,test\ntt0337972,test\ntt0168786,test\ntt0108071,test\ntt0093010,test\ntt0071517,test\ntt2368619,test\ntt3850214,test\ntt1237838,test\ntt0409459,test\ntt0221799,test\ntt0095560,test\ntt1195478,test\ntt0051878,test\ntt0097758,test\ntt1366365,test\ntt2097307,test\ntt0074174,test\ntt0120679,test\ntt1272878,test\ntt1528854,test\ntt1356864,test\ntt0045152,test\ntt1255953,test\ntt0085811,test\ntt0397044,test\ntt0111686,test\ntt0448694,test\ntt0245686,test\ntt0299117,test\ntt0119717,test\ntt5610554,test\ntt0421238,test\ntt0104231,test\ntt0112401,test\ntt0049406,test\ntt0118655,test\ntt1568338,test\ntt2023587,test\ntt0251160,test\ntt1790885,test\ntt0162346,test\ntt0093428,test\ntt0758774,test\ntt0110912,test\ntt0283111,test\ntt0280590,test\ntt2383068,test\ntt0822847,test\ntt0133952,test\ntt2872810,test\ntt0032976,test\ntt0099674,test\ntt2304933,test\ntt0382077,test\ntt1865393,test\ntt0938283,test\ntt0119215,test\ntt2267968,test\ntt0285487,test\ntt0118771,test\ntt3230934,test\ntt1649444,test\ntt0252866,test\ntt1637725,test\ntt2109184,test\ntt0372588,test\ntt0805619,test\ntt0386032,test\ntt2091256,test\ntt1470023,test\ntt0220506,test\ntt0093605,test\ntt1758830,test\ntt1253596,test\ntt0119738,test\ntt0094910,test\ntt0460732,test\ntt1838544,test\ntt0929632,test\ntt1690991,test\ntt0091949,test\ntt0048424,test\ntt4145350,test\ntt0993846,test\ntt1535108,test\ntt1130080,test\ntt1527186,test\ntt1531911,test\ntt0109254,test\ntt0101329,test\ntt1013743,test\ntt1502404,test\ntt1225822,test\ntt1020773,test\ntt1730294,test\ntt2300975,test\ntt0367959,test\ntt5974624,test\ntt0091080,test\ntt1375670,test\ntt0366551,test\ntt0106856,test\ntt0090728,test\ntt0338013,test\ntt6663582,test\ntt0088707,test\ntt0097366,test\ntt0264150,test\ntt1458175,test\ntt1594562,test\ntt0043338,test\ntt0107290,test\ntt1403981,test\ntt0120794,test\ntt0105323,test\ntt0098627,test\ntt0269743,test\ntt1235837,test\ntt0080120,test\ntt0330373,test\ntt0131325,test\ntt0405163,test\ntt0137338,test\ntt0052357,test\ntt0089469,test\ntt0107863,test\ntt3700392,test\ntt1068242,test\ntt1182350,test\ntt3518988,test\ntt0356634,test\ntt1913166,test\ntt0100507,test\ntt0099180,test\ntt2872732,test\ntt0106770,test\ntt0139654,test\ntt5529680,test\ntt0443649,test\ntt0066130,test\ntt0078504,test\ntt1046163,test\ntt6495770,test\ntt1027747,test\ntt0238112,test\ntt3084904,test\ntt0306047,test\ntt0142688,test\ntt3281548,test\ntt0114614,test\ntt0056218,test\ntt1322312,test\ntt0119426,test\ntt0493129,test\ntt0838221,test\ntt0110950,test\ntt0106379,test\ntt0074777,test\ntt0824747,test\ntt0040897,test\ntt0250720,test\ntt0099088,test\ntt0787470,test\ntt4911996,test\ntt0059825,test\ntt1584016,test\ntt0055798,test\ntt0070334,test\ntt0493464,test\ntt0329575,test\ntt1017460,test\ntt1551621,test\ntt0105690,test\ntt2293640,test\ntt2265398,test\ntt0070735,test\ntt3607812,test\ntt1300851,test\ntt0425395,test\ntt4211312,test\ntt1694508,test\ntt0255477,test\ntt1440161,test\ntt3887158,test\ntt1879032,test\ntt2296777,test\ntt7074886,test\ntt0202677,test\ntt1972571,test\ntt1291584,test\ntt5186236,test\ntt0274558,test\ntt0189998,test\ntt0124315,test\ntt5938084,test\ntt1586261,test\ntt0105265,test\ntt0763831,test\ntt0385004,test\ntt1134854,test\ntt1130884,test\ntt0828393,test\ntt0758752,test\ntt4698584,test\ntt0106387,test\ntt0095647,test\ntt0174856,test\ntt1856101,test\ntt0095897,test\ntt1194173,test\ntt0063374,test\ntt0431021,test\ntt0120461,test\ntt0059578,test\ntt0117802,test\ntt0448011,test\ntt2246549,test\ntt0765429,test\ntt0034398,test\ntt1670345,test\ntt0070666,test\ntt1440728,test\ntt2385752,test\ntt0395972,test\ntt0116240,test\ntt0103596,test\ntt0073747,test\ntt1640484,test\ntt1536044,test\ntt0287717,test\ntt1000774,test\ntt0388182,test\ntt0396184,test\ntt0482088,test\ntt2908446,test\ntt0081696,test\ntt0470752,test\ntt1212450,test\ntt0367089,test\ntt0395169,test\ntt0134067,test\ntt0087182,test\ntt0125659,test\ntt9251598,test\ntt0106918,test\ntt0478304,test\ntt0137363,test\ntt0340163,test\ntt0119381,test\ntt2937696,test\ntt1640571,test\ntt0133751,test\ntt3957956,test\ntt5091014,test\ntt1245526,test\ntt10146586,test\ntt1582248,test\ntt0427309,test\ntt1233219,test\ntt0387564,test\ntt0104257,test\ntt1219671,test\ntt0864761,test\ntt0076239,test\ntt0401792,test\ntt5435476,test\ntt1353997,test\ntt0110074,test\ntt0372784,test\ntt0040724,test\ntt0059287,test\ntt0051411,test\ntt0120696,test\ntt0479143,test\ntt7343762,test\ntt0083658,test\ntt0264616,test\ntt2869728,test\ntt1951265,test\ntt0343121,test\ntt3322364,test\ntt1713476,test\ntt7958736,test\ntt0388795,test\ntt0117774,test\ntt0106308,test\ntt0374563,test\ntt0242508,test\ntt0159273,test\ntt1674784,test\ntt0097937,test\ntt1220719,test\ntt0041090,test\ntt0344510,test\ntt0104409,test\ntt2978716,test\ntt0119094,test\ntt1811307,test\ntt0122690,test\ntt2911666,test\ntt0066995,test\ntt0089348,test\ntt0426501,test\ntt0101912,test\n"
  },
  {
    "path": "data/metadata/youtube-dl-dump/2011.csv",
    "content": "XdMuekkeCeU\nGxhXJGA32YI\n6oPn0DwJOZA\nEvQmjnk86zA\nViUAWLUF74Q\n8fbGbPwKbQA\njfgWw43Fcuw\n458GisQyQLg\nAa4bjQGD6oY\nvKEqdQhX4lo\n45mmWoSzIAY\nCNH4A1sI_oE\nWmeaAGe4uMo\nWK682NdLvS4\nZI827BuJgx8\ngRGbGI2-kPs\noUQ9ZKUt2XQ\nwD8pQ5eDneo\nCWxkPQXZo6Q\nCG88PCHKwOk\nToxlyJ4-zBM\ndKAvAAT2q_U\neUNWIKp6nR4\nTBURp00dftA\nH-h_xgdM8FI\n20dudgZjeaY\nl-uqZJwOieA\n9BNJuZn72tg\nQ0UDJuPozw8\nDYFQ9vVqiMA\nzdX69cWtu6w\n_7dr6PCeW4c\njaRbZJBLIQo\nsDsoiCkKuZY\nnekzfohNwuY\n0LzZVYshI7s\naqvTaYLP8yc\n0DFBoLZC3Bw\nJwGZDfu-PZI\nKKW4wRDTI6Q\nsh0IBg7GBeY\nMQZES2Vkcws\neWmiv9uIXQk\n-RhmDUj_GJs\ngAVNayJY7Tc\nKZzmopXXE2k\ngPamy0ygNs8\nI2rWcnXUllw\nCr04KncHozI\njpY79a30azQ\n97QNsiDKamk\nOB8uD8FaPXU\n3Lq9NGTN8Pc\nkgxhkCKXyRs\ndPpj1KEhwpo\nKDqz--u8NYY\nTCQQtdtZmv0\nhdlfKy3AXDI\nru6jbod6hHI\nqvDxgXX9lww\nFa1zCdRj3MY\nHaCRdT6wcyE\nInDLvz0bN4k\nPCID_Jg1Djo\nSa6o9ovlX7E\nJUuQ3MggHbw\nFcvCuyT-zWs\n0l5h8k9N9pI\n1eWz6aeGexk\nC0mHRQn_YrI\ndcmwPYCUysw\nbtRNa3CItMc\n4VWgFJUjmHc\nzS3qOr0zAJg\njKCpGDv8vuY\ncNqSc_WsRJ4\nJoEU1L2kueo\nL9x9zuoAEl0\nALImNM6jWZw\nXeN0t2sZaP4\nV26Pogm8ktk\njPf2y2QGoJw\nBnrKndkqLaY\nY-9QUziXV1w\nK8HgAzIL-iA\ny7m2AWevwoI\nVrJMgYRC_ys\nA63kIf5CfgE\nkcYN8phvjSY\nsOqvTLXZsMs\n17gLdc5k_XU\nQaDy4LHwyec\n6YbTy5AvRP4\nyxoE9td3Hko\n-CzO7z1dZ1A\nUpj9_vP0WxY\nVY6PAkLG2p4\nOCT_61zKMJU\nFePVICEsBZY\nGjOcw8d8yn8\nv2sqjebFODg\ndMt-XLWY8-g\nAEucDLp8RdQ\nXlfvWdF-g_E\nyoeV1e8dTTI\nWd4DobcYu30\nXkFE98rP1eo\n9lTSqc1UnLU\nZHGLbVKq9T0\nLdcIe3gGQHY\no4E-yb-1_FA\nl60Xedjvw-Q\nKaUEDYWofJQ\nccAWioDHgQM\nh7CBrN19OY4\nAm-uvoQN72E\n-13ScnosXAk\nAuWjXrFh1qQ\nDONkgw00QSE\n85-2A0PHLIc\n2pud_rEsxMs\nGd6ruQcgu9w\ngAKiWvjfCiQ\nk9vHopyEtzs\netyH2OUxVuQ\n8Ppo5YIYwTM\n5ECsW0x8svw\nqs0J2F3ErMc\nQGNfrNJZin4\n-ArVBL8EgKU\nsDKUL1YRZZs\nlFiX7y8KFoU\nRlphfLO3MYA\nFXy_DO6IZOA\nvXNr2xtv09Y\n-tUodP_Wus4\nIQp7gtX4w0U\n5uJV71s0r5Q\nWwDJZhI5IRM\ncXbzJ7xAVn4\nMwo-Wd__tTI\nTGqcz-Xtd6E\n8gc-RSAJpH4\nTEodx0CTTgE\nJyjlwpXupvI\nUdZuHyttXbw\nNWsc8gC3nSw\ngDwlbuyDPfk\n1edv56TCvxk\n6f1jYUTo7AU\n67jgvKFBCsY\nnZE2tGoC0H4\nkGVQE0m_V3A\nLiYdMadk89Q\nbmdgHN34hnk\nFEioKHlkczY\nkgdr5vmYZLw\nNTd3y71iKqE\nDfcpuhTr8R0\nId3Lr9GyGh0\nx_H8vusyzN0\ndH1SeHOpEO8\nY4_1X9cpFWI\nLLjiVwzeDb0\n7hY_dAeX9hw\n42xTE_bzg18\ndShmoHD7PdM\ndoLHipw196I\n4D6bHTh4-tE\nBvPVgwp_M18\nFPbDFxXU_74\niH9hjyoAugw\n5sRrCX-pLPM\nbYQjcjDeGF4\n3OYeaLGRfug\nTXs4RCJasOM\nExYO7B26kkw\n7UZpRynpUac\nxMpgI4DCKyk\nAZ042bsOWTs\ngL17bwbFDAI\nzlaLlT-5Lf4\nDyme80H188w\nadOO9YXZ9Ys\nolxqe0CQ7W0\n1XkC9it8OPs\noSvVjh93suI\nbd0ZO7Ewiq0\nbhGFCS11OR8\nJxTMuhVED0w\nuqeGxkIdBiY\nrgQjzIVzoh4\ndJS8Umi2b0Q\nYWmwAdK48vg\nKNaj7uCVPCI\n0KA8Qkw3nks\ncs7CW6xDbL8\n-A9rFt7ITy4\nv9qbXZZD-b0\nC-dzbTNdd04\nW5ATR6lZw4o\n3UALmd0PV6o\nR7CbMBUNC6I\nngThTIjgCMw\naYzPUa-6BLE\n4nJl2BZ6obg\ntvGHSvfnlsQ\nri44Zx810p0\nlv_LfXcjWew\nLHtgKIFoQfE\nLUDEjulbqzk\nZ-365iujWk8\nMLnzF5NcAc4\nIyOu9xCNMK0\nRrQppEXvRcM\nE9wcK6qvCqI\ng0UV6ug96c0\nj-OcaLECz1k\n0cHePp1_EMg\nLwELqrqsf_o\n0bkaFNVY2UQ\n-eXI4uy3Mlg\nZ89Q2fkgbRo\nFCYA84FwbC0\nB1QVeR_p7WQ\nd9-DFXwcmFI\nKtekLRYl3q8\n0foXV1hWrx4\nsu64KIPecuo\nBSFgVoDNlG8\n1Pb1vdt-SnQ\nEZ7HxkZKDuk\nKQrBeGqz1W0\n1qO81pgfRVA\n1pJywLQLzcA\nGNUP-so0ndQ\nnrqxmQr-uto\nn3PGfjyctSQ\nuIUCcORbMvg\nO5ROhf5Soqs\nMRSTpj2Z5cU\naKOmGhBOJZI\n7CEYqIjhTHs\nfbwsXqUpZRU\nntGBzcfpKYg\nCZrA-i6kOdc\nq8RTGMsDTiw\ncdVMT44nWzk\nS9LRWazyNC0\nSooANfD9sWc\nDvOrBPJGAnc\nWzeXsjGmkjI\nVw8BozG_LVA\nlXtrwkdSkow\nMwAV8x0J6DA\nI_yF6-3pXdw\nF1Bhl3yjzsQ\nWS94fK4djqg\nphKe4peWFG8\nng9LMtcmqNs\nN3U5ed3dRAE\nZRJgexzNOMo\nGh3AZit48Uc\n9f8liieRepk\n1kj111rBzoo\nfbNz1vlRSyM\nqPtAocA3m2Y\nO3CGLSyIwNo\nuZgo9g8v76U\n1mJ49BcUM3E\nzZK_bkxhJes\n79LzBvBRPx0\nPAcLQ7fRJlo\n53o7_NqrTQA\nhzV5qSWRfKY\nQZO_QFM5j_I\nOJVDP7FaiqI\n3c5pbePUc2g\nDjANcJEduN0\nApv7l4b68MQ\n39OHlSguIy0\nZCjO50QLDhA\n9B7tjXbhnog\nUPkb66KjZc0\nUPu0PU6sLxo\nUii-wMha6mE\nDz9YWjkw2BA\nqOy1ncO2t8c\n3EIgmj6gp1I\nUrIcAAryafo\n6oijcajbnM0\n1bvaqpSmBLQ\nXgZihg6-VZQ\naeavPOh2Wws\nAjGIJPE8B8I\njA-BCSOaa4Q\n1JauH_EKpaY\nG0rXUr-msX0\nPahVp7p3XHg\nqzayNPEmoK0\nKJciGsgcYN0\neBU1T2DdLsk\ng5Y-PN_duno\nzEIqJ4321TE\nm-1vkYcqRRw\nRuC2eNMtAHA\nwUP31hGC1A0\n5soOhh80bK0\n9c0szHKahlQ\ngnaDj74UMqs\niY68ovrzfXc\nELpItLsTKgY\nNrs-lyhcXmA\nTOUrLn1FFCA\nwxb_X12HZWQ\ntHNjy3BH4qE\ngbu88CKkEzI\nQAztYUCEhzk\nTumSHtCzjAw\nHNrYPzxrG7I\nlBvrfWqCjYE\nSBLMTDMdTIU\nKocHmCmLwro\nFiAndeAR9wQ\nrCHGzxSBn-c\n-BYVM9TrKzg\n8-UdwBkXJBI\npWPn-C5l3Sk\nWaF5AMiC4xU\njdZ6RA_c6oE\n-TogGxzlfhM\nrqVI2DmLI2Q\nma_XNn1bwOM\nBGZZ7s7FJlM\nq85fsxWYG6A\n2jTjWGNMo4E\nR0zmkkcEdKc\nIK1HlBRMGwk\nCKJJbZe4TWM\nVBA_fhQoArA\nATGMbNOmAYs\nphJJFbxyino\nqAFgj8mqPk0\nmFwAm6oIPtk\nf_G1oYcHFsk\nUmwLKU5DIGk\n1-HbIkCjDbk\nqhxDQ1g964U\n-ncFDuKdgNE\nDq6dW6XbeLI\nkdTfLDIbwow\n9G4TzgRUKGI\nkicjYh3v1FI\nH53kBYo1Jx8\nhuOZPQ6Hl2c\nMYge4RghcNQ\n5cKRTdQtq5w\na_6tguZWgmU\nmn60YWO218k\nlKEihcQaa_g\nAoSA32zQ754\nRIN6AtTxFgE\npAZOyJPs5bo\nouDfr9Jh0s8\nC1NgX-w54RY\nnrizm2gnQBo\nBS-f_KwM81I\nl_a2GN0Ix4o\ns2wBtcmE5W8\nfg58hVEY5Og\nBf4YINfjQaQ\nU15kcueM3Og\ny8_oqgPwHfI\ndKSAKBEI4w0\navH2K1iR8Oo\nxz3CYcjdSaI\nVrJiU9BOEBI\nNY0e-PQeJbQ\nfmIaHAtabSU\nFpgyrIlhoyw\nJTu1R4b1yZQ\ndkdrbg4EwGA\nDSCWB4GqcFE\n5FZ7jNq8A00\nuopoXtR0Kjk\n7ZkmgFpKdxQ\npTCTgL7_9gY\n_NrqftLip64\n0CZAYJ_sotw\nhhGSeFrYSyo\n0EeL2FeI7NA\n4ZaIb1kBnX8\nK1AMs3IPQJQ\nn8hmCcXvpz8\nyKwIEIVAMfE\n_P3bnWz5GL4\n2GvL2DyMfGU\nSmCSJ3akPIs\nkOS8g1D6MXk\n9PM9tDtmaaI\nWeZiTVev7vA\nPW2Wr4-2oyM\nyPBDhqwT8VQ\nb3z4_gJ5hGU\n28B_sZZ6km4\nymjvQZ6nSd8\nNd5_lg9Ea0E\ntGs4xAZJkps\nSzJ6RfcDato\nBoTt0juJio4\nJES2fQLPoGU\nNM_5sUMyd0I\numK3KRcg1V8\nazvRjKHhpfA\nLK4c5TIKY0w\nTKKzI-DKhuQ\n8aRwEJvaPiY\nBw-Y1sEUlSk\nyGy0XuoyTvE\nscrKz6PN92g\nhKNSpQwCIdA\njszED6T4Gik\nZpuHoppfsN0\n8xf7Ee4KLiE\n6teHF2I4UuY\nuqLr5PR6sbM\nUS6tvODNVu4\nYNTpnxwyEg4\nrvjVIwMPxqA\nT2R4z7O4kg0\nXquwlFI-Ygc\nZlITgn8FjDw\neWgOjuLg5oY\n9V2nsuzAzb8\n7h14GBiAZxo\naW4tjKzDEDU\n2NfTq7LPnXk\nBjCjlMXLVtw\nJMJAl7PfSlk\nppjyB2MpxBU\nvoNs3aHZmQM\nOkSIAlL4f-0\n8DlxO2frMPE\nyU5kwdXhSzY\nx11OTizHwfE\ntK49SBXBK_U\n6SEp2FQYS84\nz40Tipkm4IA\nSWAJPB_5rSs\nDvD9OryD6mY\njYnRBX2Trtk\n0qvpcfYFHcw\n1CDlBLvc3YE\nPJpGMrH7RWs\nsJU2cz9ytPQ\nVC1_tdnZq1A\n435mkg6_eGQ\nwPmTp9up26w\ngCdXiOssbM0\nAO-VFDYy9Rk\n4dWE_ag9W6o\n_g9RI0GgRIQ\nem7EcaXPJF8\n5Weaop_aiTg\nDiNE5iYBuHA\nKlPjJx6pMNA\nEwYjmMjwF_M\nZ8zeMXCxlmE\nlE4UQ5gh5Zo\n-W93ly0pQGI\nDrr7dxV6I64\ndhRABm5GgHc\nQxL3vcwOL8E\nvgZ-MV0YbMU\nsdUbhlY-RP8\nRlwhv7m3CSI\nQauBYsssnl4\njvhap1vcLDw\nZ96Hz_Hio8k\nFJU-pWka9lY\n6lOPeGgf9C4\nAMibptRTFdo\nSUu7hWUv7f8\nuEYm9Zm5zI8\nrRaHWuWTtG8\n3cDavZFKopc\nac7D9kcETUg\nWR_LpHsIp7Q\nQub35DMB63E\nBU6A7rn15oA\nja4l7-L7n6M\nIeFdeC6ukDY\nBziL_wBTw6A\nFhODkuXIda4\now9U0uWCfDY\n1iFLiN6E1qE\n5zInmil5iT4\nY0p3egpGwAI\nglMgSCdK1xU\nXcNYS8j9Qkg\n8GPu-oZ4p64\nWzp2rpe06j8\nVDU2I4kxPY8\noG58-Vs838M\nlPCt2BBqR2k\n2CEYOnJqPE4\nwEnaRGQc8Ls\ncagsLW2dKTI\neHx-v7Xto7E\nXP71dJlnLJQ\nAd4VvlLYJ9o\nQX1qfAa0np8\ni1ZUVkU_XK4\nMPp_UJZTU78\nexIGslwFcMI\nhc0o1zXNHAg\nTiHM7F5EUaI\nrwk6Obqrj9M\njgvj0XwxagY\nKPz_yW2gjmI\nJbyemdsSfI0\nZ9m4hRQkVSA\nfEEj6d3GTOU\nYTkSNIvrueA\nWmD1a_N83ZM\nUJUWDZ9JUEI\nNBS7J3KHWhQ\nvj_NmzJ0mMA\nKS6f1MKpLGM\n4tnHIQmcSHY\nOORXuVmd9YQ\naIm1ZGm03WA\n8sUWwozOFww\nm3TAK8ty_cg\nDKCGcHQSvHw\nxLq2eTiqbww\nkzu2Gwn-sPA\nYtDqlEcfr9w\noozQe2Bk2cA\nCbMYk-lCKOw\n1jiv5JxmUww\nH19uKs99vIw\nuBB3Cvxq5f8\nexcK59qpaOA\nWYzUtZMt5A8\nMicQ48AuWhw\ndejp7HK8Owc\nAo5TqA-l2cg\nrOaNhtHWULw\nY9NVQr1r9nw\nqwMmxh3r8YM\nKd9_2TRib3k\nmcUWG23hqvw\nmHa1zTLrXO8\ngA8z3Yk3wWc\nGrlUWh2ZlHo\nUkdFtNyvsBM\ny-HKigPxUi0\nSRWyQELLODg\ngmpBzm5RknI\nPgOO8Z-FoKY\ndGFrhVeMm6U\nOzpkzjl-oCU\n5I-k7fSMhg8\nbXEglx-or6k\nrxM8oCm4TnM\n9Najox-g4zE\nZ0JXPVm_Ohg\nX8gUgmkzHjs\nkC44tlr_KsU\nTd8eEM9KDig\n-6fuDrAmhNc\n6bDAYP4kpGk\nR6Vbxei-TQc\nc35RsjYzAhY\n-e3HqC2rbQc\nJsFO0ZY7whQ\nlhQRz_BP1v8\nPAHFNiNl9JM\nGvZLaCfU4PA\nk9gcqiIfw8E\nRVFpy5UwsAU\nL_b55QpXdsg\n7xOOk5w5dDA\n-UJ9K8lMxPA\n8wh62mxbLy8\nF3hX-mdx80w\nBsTrRttExpA\nHbYMkY74ikA\n8COIJaMQGc0\ny5RFBLZV-B4\npMQxW1t8guI\nqvFBGYjAXW8\n00pBYZ1yofs\nYnKV34oNXiw\n1Ez6dw3ywcc\nYIYJpbAK6MY\noOZ7KbI0Phw\nRe5jTn8Cv4M\n_b3_-pPzDVk\nGyJGnNFU5dc\nq3NI5sE3KeY\n3GoXAgg7rgM\nxQvyGwbVWHk\nRObb2QfBnUs\n6QFgsy9R4uc\nVt0rz5iPuaA\n8ZgKfSqsN80\nVyEM6uxoo7o\noLnrsZa4EqQ\nyO3eVly1GSI\nslGnGr6kHIA\n330mxTrSMLI\nrDXBM22wbrg\natzQpAlaojg\nl6zm1uCb30w\nDBZUhOSY6g0\nsf8rDpu1vCk\nefNMnSL6Wlg\nXYjynyKDAdY\njyqr-hGGpQg\nPuVXyMNeXOk\nbBbLZ6m_9MA\n36FJgdiYYs4\nhJVXg1AHQTY\nF0-Ke_gCCNg\ngxAaVqdz_Vk\nmS-uVaGMOtw\nOio9JPB1GzI\nv2pWzqZqTyk\nkk2HQ0hCGTE\n09idDzvkxZ0\nMvs2nUuXWLo\n5DJehPkkRSQ\nG3xSISRjDR4\nHBxcalnSzIk\nf9_akBxA4mU\nTVBx0r_xPCo\nPoS1eAVNXWU\n_s4J6vN1t9Q\nE16S5BAkzQ8\ncXCMz340CRg\n94AnEUa_z8U\nnIGy0Jw96PY\n_LvUmxUqPTo\nt4U-Q2nd6u4\naCW9NsrV6VM\nNwl4xV6wuRI\nqrCKDRFj-A8\nVlmanKoPLyo\nZtuLM666bLo\nM-cO3MLYOy8\n-meMCDrOmpo\nhcWo8KXmhLs\nfpxPstb2DAU\naAF6B3USip0\nOuGSXflBoWU\nIKiSPUc2Jck\nc5WfxwnLlLU\nqCpDKjDMo6Y\nLe9uGkbtxHk\nC3hCT5jijpw\nLk5QIK3_Cjo\nltO8_FJbRUw\nIAqy_BtCqM4\nv7FL42Fon3g\npu2ArBfwZcA\nQQvcg1NNqWQ\nc5Re3lGYUA0\nzxeNP1dHgXQ\nt8eNpwLPwog\nEFollUtH108\nB8dldLG_ZhI\noowcsynjIwc\ng9GBuciv20A\nDaz5Pc5rXPA\nw5pn48wzBuw\nIfggccwQrcY\nfERCwTTOU3M\nMNV86VFd4Zw\n_42qmKBSC3g\nbj2JORdzs1g\nFosFEzsLKiI\nA-KN6ZbpIDE\n9y-f9F8Hl0I\nnip7ztfMngk\nlFHKj8M1maI\nVqLghmct2i4\nfgPFXXhzBCE\nlHqpwH6rqOY\nVw_QOIebFpw\n22VmzX35pvM\njLPtdXAVuwo\nDVPGcQ1Ljgc\nwPJE21U518M\n5P7bIH5iC7M\nFFJo3KhcZw4\nzd0FCDiFapo\nNpOTp73r0Cw\nkytDzjuBGJI\nqw0kuEG7NR8\nm3QyTiNVwWA\ne7X01_j_oDA\nH38XiM2EOnQ\nDtou1hnP_Zo\nc1gSDo9bO2g\ntB0th8vNLxo\nJZbJcEKVBqk\nRJsnx3Fqk6w\n3LYT1O8DuR0\np29GuFPbzsg\n2V5LfF6uxT0\npK_ffLZIOb4\n0m3w2NeEPY4\nj4ujHOSbQB0\nYgcSs9Qt2vU\nJu4vhscaYII\nv8OMHtUg9sU\n-qmkhAXmBNc\nTeGaTTIBv1Y\ndYQpJJySnwU\nAaHqtd4dUWs\nk4-CQXg0Z88\nLDsw5Fx76jI\nGKT1gsoVouo\ny-79cpg2VC8\nlYa7NsegwsY\nvnHkr84as-4\n-_XIgfmDa1s\nN5EYRBPqrgs\nZWly042cYCo\niN4yYrCgb0o\nU6M-YT5kkio\nEZFLsjeeVmo\nJVjlqTOPdls\nf_lRMCPHbuY\n7tNEvCdVtk0\n4unk6siO-tI\n_c_ufaxeSTs\n5dVpXj--7kY\nQt1cF93u-6A\nRn2-wALgmMk\nvE_xjjCJWng\n2ikHoBKVlCA\nPUvS_htXD34\nBGnZognK3Oc\nrNoHdt36C7o\nB2qVxDAonD8\nzR7Zj6ZFyUY\nJzH1Z17c4yc\nLkqiDu1BQXY\nDWjJlErBPX4\n5kaBIMuW74Q\nP8JW75Lv25k\nPWU9g1Fce3U\nHCqR0_a6_so\nOofMJ6cwzLM\n04s96zDt1RE\niPQfwmfRq2s\nWlhyiskKER8\nxrUEjpHbUMM\n9_8nY_LQL3w\nKqpcmQhnl48\naeneVqyoBTo\n5Ei_2wS0U-w\nCR08UnlmGKc\n1tYwDHxg60g\nBPNUN_aCFAc\n_QE6prpcauw\n0-0MyjmphsA\nWu7xiJ_HD6c\nD0vCzkK_AJ0\nzCB7RR3RaYg\nMhWCHfeHWJE\nrYGWG2_PB_Q\nqN-_cZNDy0w\nlscdNc0qTnI\n_kopi8gT9KE\nX7rfWPbEufo\ntMw_xOuU9DA\npCHHv7ojfiw\nS2fxN2JZ81A\nWzCgOrQn0GM\niMliaXlKxow\nena0xfW0_Lo\nPb3txlrBZaE\n3rpHa7RLvc8\ny8Jkls3xgvg\nEYu1SK9XyP8\nEe8NvgURCZs\nhKqQSFaX4NQ\nB_YYf8Z4b3Q\nXHHg1C8LGnk\ncDfQo1ANeLM\nZP0mhGmUbr0\n1Zro4CfP9wY\nLvAIBDGIYE0\nOqSg7WO4tT4\nu3_3EUKbY00\nwgHRj2-vvs8\nQnX_mQ9apu8\nuW9Q1cm_Tnw\nY_WiVEBST6I\ns66zFW3nogU\nX1UmHfWCw-4\nBb5tMhOeg5I\nFI1ylg4GKv8\nr2jbK6dGLGc\nk71x-TmobGo\nspvSw-wR6qg\nZrF5rZ3FTbg\nxfoGEGTl-sg\nwWswgKOqkZM\nivmjSqQ_7aw\n3uUlGkrzPWo\n2hs_qcU6410\nHEKPhSJ0PjA\nDoJaIZ2Sajk\n51y64KtGGRI\nsSx4IDKK6sg\nYOrZHY_-ap8\nWiMw3ttzVMs\n1LvSSeZfWmI\nSaWCkQzKopo\nJjv5GQtJTEw\n134ua7rOS4g\nIHbIf3K5pdc\nmFxrm9Q6E4M\neP7cLId4ocM\ni77quMJ5ihE\nH5woQdVbaC0\nl_OJuYjvKrM\nLekZbZ0ksyA\nPUH2nHjBYsA\nl6StIaMaRsg\nNOZMlcY9MC8\nmtuuOV4FtKY\nayjftbSDeVA\nFEAmUOrMd3o\nBNWvtfCdBcA\nrD3kI-nioGA\n8BOU3JhcXIU\nQHYccOE4h4c\n_6up-uz7Q9k\nY2DV9PUx15s\nvjkkbQy9fLA\ndf0j-m8xV58\nzNkZr44VLFY\nXwJGqNQapO8\nIeqXtCC8Osk\n8ReMLVUwKmA\nSN8hW7AeoQI\nx7dGXb7jrHw\n9AQGhFGi1dM\nmNtK6UvRjO8\nl24yOwR9saU\ngPadm1Ql1Is\ncw1dB9PxWzM\nq0yFqlPrLyE\nIBPc_SnNPzo\nH2UF-eI_dj8\nJ_VTn3SAV20\nvR_L-yH_3jY\nBHWGn9p_p4s\nb0xYU8jHaH4\nos1gnR5k3S8\n28JhyDR8-5M\nN_20oqY8E2c\nJ8pmj6RkiQk\nFRC8Nn6PREI\nHvFU1MFkLm4\nUCd_bEZa6k4\n0hau_p3N-MI\n8t7NUEm0mMM\nIMjO-38v2cs\nFtZb1Kbh2qY\nPH8Gh-5lQNE\nrnnt0KYtwFc\n4uuvZl95Cyc\n-cBGthOZ-Ls\nRVbEs5DBPlY\nsdb8G26294A\nrrejfviNpqE\nEBkacU72QM4\nqq38b_oRYr0\nrrDG0rQCc28\nlRd5iD73g2s\nGPCN0TioP4A\nJELOhEjLgmU\nr99wnIibUQY\nxr3TcE009HY\nmE53H-ZbD7c\nl1GXJBIkb74\nmDXU3KxBpCM\ncAEth6FATZk\nPlO7gaalX68\ndJOMfmVs9Ag\nx5f6nNMdbgU\nt4k-USM30aU\nAs5-06N6Rko\nzZB1N4IMjlA\ndMhT03nH_HA\nnfJqMoCXVho\n-FyVSeNTqJM\n3F1uAggQmYI\nGgYOGHU_IOY\na5WKH6TNlDw\nqUcMohewjvI\nHpISLkb5L5E\nfgMlyvq2oNo\nv7b0_Z9dzoM\nmCqrIptSd9k\nuPzTQvSPsqY\nx2DospZTmUg\nGEp_uGRMbFM\neCR4DIi8SzU\nD15UY1FXJpI\nkBifgLJF5og\nQAxmwbQ_7sI\no504Z9dWRqs\nmvc_bbaLhSg\n7LhZupa1Bng\no5l0Bw2jMO8\nuvgBCv4v71s\n4jcflB38DNo\n3bgPH3rOWVk\nhV2om9YBADI\nBogko_zvcaY\n4Ky2p76AKSs\nS1s9cXYpxNo\nXRz0pSQXTQ4\nva6nRaZ9eRg\n_yYDzLUH1NE\nsFW-yxe13lo\njJMXxv-hYPo\nNnxcN2umAOk\n20g3QIUnOgY\n_yy4qamWAmk\nNUJVU87Qb7A\nbmHLulbWm74\nkWmntegbxMc\n5t8Utwa_YYQ\nIMo_Jx35SZw\nm1ef1Y2x8NY\nCs-L3psiK2Y\n5QYQS9SYa6A\nf6L3Ef1JCC8\nCcfN7q8rN58\nLqneoJRRqbg\nrroMPRc4flw\nEiVRkqi02a0\na8xs3O-NwsY\nyl_CgAqNvKc\ne7dbge0Zk5A\niBRhat_CcQM\nhpb2-ZOzc_o\n398qkvR92GU\nu4T5X47MKm4\nbxAiioYl1bw\nigEO_oyUs6U\nb9abCIgGxT4\nOA6wpEFU-uw\nVyiCDq6Y0c8\nPFsl1cGHzp4\nLUr7o6R4u8U\nPEo3OnoPBI4\n9zYrXFG6zSs\nFUbC8WBChng\nNUdeuIj-yKk\nGanDtOcF0M0\nAgLQ3qTL-t0\nJjfj3SkBkpg\nSnvRdPwoMRQ\nWNnxjpBMF7U\nM4NDR6zyzkw\nvPTTP3gSLJc\nI2AjeXpxmI4\nirr4b40Ok7E\nWUApETooc_g\nF1adM9oDbbw\n14t1taTBtmc\nxtXdKETotbc\nhu2AlkyvIe0\n3tXDymBcnJY\nhRa-69uBmIw\nlCiravgbbJk\ntPy34tjLOyk\nr9bfL4Jz-M8\nfMTn4M2qfNI\nhvZiZFDE3A8\nSXjiv_w2i3Y\nPha96r6s_g4\nOw8mG8qutkw\nDCOm4osfWn8\nHYOjY7JJDBI\nsFW15hEqZQk\nO71paEZERHg\ni5j1wWY-qus\nR5WC60UwB_Y\n31lZFoSS-VQ\nPNOuZUHKneY\nKAeAqaA0Llg\nDvS7X6Zik1c\nIHLzITVRlCo\n5M4QWD0U8-A\n8MuZATnrE3Y\n9S44kVrFB24\n901lYbPmqu4\nGurNiNV5XvY\n2l_IUAcvfv8\nTZQWu0gDpO4\nCxzCn3OZfeA\n6mreIgrIXQ8\nwDZyu8jYw90\nlBS9AHilxg0\n_syPeFclyN8\nEMS4lYA-hEo\noEFPcljAXgs\nC0SqH_PRfGU\n_xJ1KmjXSYc\n-nIwFGmgYMs\n5s6vEQzHOcM\nVNtsVP42bOE\nvQWmd8REdaE\nTzMGDdUyHkQ\nAu47y23N-QM\ngM4-jiKNuIs\nj0silSyYFPM\ndQTwbSY0z_Q\npTbelq2dtKg\nyHBT_3vRbq8\nxPxs0Qh72kY\n9dyhBVEQi9U\nKA2ziAAXoqE\n7YdgPy21hBM\nLQNKhY7ws48\nQZocvme6cYc\nMhu2Ij0rWCQ\nmgyypjEpK6U\nX6WHBO_Qc-Q\nzGIIiQyyuYM\nqIxHb7cA6tg\nnF_6OfgbF7c\nEQG3I5efwWo\nJJ83r886Kyg\nnW-NiGp1gys\nqopdYE3_QoU\n_zSpueUqvcs\nuDJsCE01LYI\nFEdyNyQCjwE\n-hDPK865N9I\nn8mK-A_0viA\n3VIKJMifm7k\nA3WUhMCsZds\n6OPp0MyQfoM\neXAvTZlmYF0\nVCfFCFkVSss\nTEAIVXJ1Qds\nO_4Sx5NtOPM\nU5418CiBukw\n7-VAbEyf9V4\nnPWRoCkmaQU\nUfmdBPl48uw\nMhGl83Qsi4Q\nsOxspReyzOI\n5paBdZiLhqQ\nxCQ2qh3Tu9o\nCHPnFgyg064\nIhd-NwI030c\nIdEsGZhAO7A\nUuVuFO1cCFE\n139c6HgY7jA\nIakgSRSZZ0I\nE3WlOWMP9KA\nJUQS0Q_0aQg\nyKfQ_-lnMJw\nTMUJpec6Bdc\nNn4pMI2q_PM\n_3hajwRww6I\nAupQ8Vm51OQ\nXM3BsAAO8JI\nixljWVyPby0\n7trB7i2xpfc\nkk0vH1qJPHk\nnS8tqsjySaI\n3ZpmjPc9Vcc\nV4705kE44Jc\niU0CuPH7akM\nevoa_UWUobI\nWSlojAguwGE\nfnTckzsYgg0\nba4niP3IwLQ\noDeQU3l-JSg\nxdPtumdfg9c\nJ2_tJIgfnDA\nEA-9nqoIXs8\nr9aUxfTTLfk\nXFrerPgK0kk\ny8SLxD3ATw0\nO7dHybpZ7Mc\nZPk3nEFRuZg\ncGP9TwLnG78\ncEjo0ajod1M\nC5LuP6tDw3w\n8hJlwQwwCGk\nIBjrQR_1ef8\n9EBnUERX_cU\n8iQKnefUJNg\np-echNQGbug\n59ZcTCijizI\nIEOqAlmq2NU\nuZWDke-bpmc\npPuAKVnqJdk\naHM8kYwl1R4\ngNGmuLYwd3o\n_ZfmXzIbHI8\nuuYTVl0iOkk\nTJf9Pf9rjO4\nqXJF21RuqlM\n2jvtU-_WDUw\nZzOzVT2o2BU\nYq5csaHc_GE\nSbTWLdT_tgk\nmVqKHUtKh8Y\nOUHFpvPxmRI\nfoll8sDGq4M\ngTTHW0Hynbc\ny-qFqfSjN1U\nFyuo3Z5ZTX4\nGQDLVpNKFhw\n4EdkUt4f5wg\nN8f-APll5f8\nQf9xTFEhRS0\nBkVDaT2FTM8\nI6_C4fK94-c\nLX_cW_dLweA\nrr6eufh4DA4\nf0MBL-DyXaE\nqRAQivSrtm0\n5NOmw_kzrJQ\nPtwRKtvezd8\ntUkE9qaVgmo\nfqM1ttqNA9k\nkm-nbIRZJYk\nVToA3hOd3tM\nkikLy1L-keE\nKQ6EyoqFWQM\nGvwHxn_ziD4\nbd165_YTXZQ\nuw9V_NayRVY\n_vW54lAtldI\nTi9VcWX0vEs\nPuvONUFArdI\nuYIe9o2jMSE\n4jsUIgchHXU\n8G0BVEIjGyo\n7SZMEImptPQ\nkh0exWqvxeI\n9y2y-Tkn7eg\n3BB-PdHTQHg\nX6CEEc9g9vk\nwnrdetFAo1o\nbkH0i7fGo6E\n35fEjN5m4ds\nNMi4ONkFym8\nKejnRkhhY14\nSzVAyGry2Ic\nnfcci0C95tA\nEHJoH9IFboo\nEnIL4KXQI2g\nQvfJieP0KVA\nkvbYXGOZHnQ\n2u8cHrJvlHQ\nf4M5MT96FwY\n7eI5BfzRCY4\nhP77V2X1Biw\nOQrzt7JI_DM\nP0GZAeKVtfg\nMTs-HKiOQj8\nUUcH7wBp3G4\n3lGZmV8_XxU\nvSt6OezOAwg\nTbiSXYT1-SY\nIeRLdVndLpM\n7I7OErGVS68\nTs5FbF_2Wus\nZKtFIgmoqoI\nFuZNswuwAxM\nTZYf96eyE94\nnl8PQAfhi28\nx12Dai43I8Y\nU3sOMWjM7aU\nLp3r6mBRUXI\nqAhaYHHcYyk\nppGd-2nEOVQ\nBEG66-Lro7U\nxM2mL0y9i5M\n7uSz0mEtEsQ\nVgiH-x1eRpw\nIzYmyWR3pJs\nYzpjrMci980\nClr9NbvwbhA\n0rgfZzE6Ulg\ntcR7LgBVTNE\nBnjXFpoLJfk\n2lVRcI0zsvw\n3eJ8A1W3jqM\n402xHwQGVsE\nXkvIlrLiy9o\n2rCTuXAbyTI\njPsXJlylRvs\nmMRQdL_xvME\nMXkFgmQ2O-Q\nreJAzTE980s\n7q-lFxf9-p8\nWuHkE1eU2AY\nRU3F4QPUVQw\nQVGOUxQrISc\nADl0wC_cAbk\nmzuVsHCLSOg\n6ooboieA_eE\n0ZzNlA9uZ0g\nLYppdp_2GCk\nMvajGqWodvM\nJWMjQEyfaQ8\ncKADfQQILN8\nkzw1_2b-I7A\nlbaWyJwff-U\nWziC9cSTCWc\nGZeehXqOYVI\nlC-DSaxzDzs\n6nWWM8tTn84\nSNruq88Dlpg\nq5BzDVDotzI\nHDq2KcdmVU8\n2Tjoz_0I4Gk\nSdNqYGbc0tU\nMkMqRDBKUwM\nPZGS6N3zG4o\nB6iOniIX5eA\nVSo45ZD29oo\nQ1vQUG6GFNE\ne6kJsyysbSM\nNgEOTc2qgVg\nP-4jKZ3X1zQ\nhKNeFHBPgRo\nfaaBOJDQ_Lc\nz0ogqhF4ems\nnYb42fv8pMU\nuvtLHXUjt_o\nqb4Rfj1wp0Q\nnOLCO4_AKiE\n7e6DCyXotE0\nee6yIS-0NrI\nTsz_tamjpmc\nhZzQx9cEjhQ\n2fwZfyxiMFY\ni75piQgUKa0\neuxVy9j6TTU\nWMIho_dolCA\n8j5sn2UyTp4\n37oJqWp4rJM\njEHoNJLqbnk\nFhPUGeCMKCE\nEd2KRddgv-4\nzIC2aMlqEZk\nkdkVnZsOgJA\nfq_QSi29iGQ\nAnPDhq6O8jo\nEnrWZiqgv1E\nuDimGOcZ24U\nl-PmluGC2wk\nMgtXKQbmYRM\nfF12SZcPQ1s\nexObFY-sHQw\n3H0V4XiAyv8\nakrTlYc40XE\nYL19Rvtea4k\noWBYpwZ5-AM\ndAMqMErPIIY\n8r_dXbWf2Aw\nJBA3q4S1LE8\n10fKN4nHNd0\nl1NB8NQc7wU\nCo2dpNsHMKo\nkoPEnaz0Qm8\nrngwd6ExGmc\nctrJ0-TLUHQ\n63lE3AOBgeA\nPsqrgV2RCCM\nb02H0dW2xf8\nIZS7zpXftHA\nlKTGkLcn3yY\nxSQxtMWJzGQ\nOKn00A40uWE\nOZLVlajiihI\nO6KVfajjyGs\nZMplnAKdBsA\nkflvHGnIkoA\n4SNTodFS0h4\n0SbVnjlPhjY\nZEbN6Vnr1g8\nS6UlqI_pZr4\n7CkTYPnJS0E\n14Fq0FgsKfw\nlI-ty9MfICM\nPHcwHxzDQDs\nfsWhDcon8aQ\nR9WGPRckS1s\nNP5IK_pn1eY\n1BkNaaNscqU\n36T5BEpn3dA\nhVxEoBe1UVg\n1KBWO9Js23k\nd2zY1WRtG94\nnWRxPDhd3d0\ndbgOACJpZg0\nYwM7NgPE5lw\nRd5dYQHoZS0\nzhWJUB-Sub8\nsGh6m5Ilw_Y\nnhomGXOMYmc\nQg4NBOIbwXc\nONRLZIY7gbs\nCWN1xWdKbHY\ndm61r3qnPKQ\nKeX9BXnD6D4\nAdh_8pva10k\njMTT0LW0M_Y\n4OgldRzYvD4\nwM2NQimHkTY\nHduXGYkoc_w\nbb_uXwPiNxc\nvpHEQqApoAY\nrGS4bE0G3yY\nA3xuABrdKis\n5LApVevs2II\nmNQx3KPxifQ\nH2uHBhKTSe0\nplqzeUB9B-w\nQbSFxlfuf9s\nS2XvxDaIwCw\ncjkkKO5Gsno\nRs0tk-z4b2c\nXm-UligdIrQ\nodrqxoaNPC0\nrWeaYCoh1qk\nkaXM8DMSm-g\nMi3s2DWKiUo\nXzKYNZY9Hpk\n2z8XAo4Lpuw\nb_uKO3N_JJQ\nZtUB8XCrqPg\nbcs2En6tGRw\nW-T51n6etp8\nLqQJOr4Rx5k\nCOhtZbBhOYU\n2mmq2hx0tl0\ncglY-gszmNI\nGJkn0wEMc4w\nvBH4Hv39SEo\nt2RUtqJGxlw\nwAZPdmo7LVA\n4weEXyoXZKs\nlh0yfYUCkIw\ntO1oeKVFlPk\nDH80L45zXJw\nTb-PscLsY9I\npobSophb2UE\nfy-Ocaxlk1Y\nroA5fvzJsho\nu6GTs78NHzQ\nW-qUR8qovy8\nx0ce_01UW_Q\nWpCGV48yiNQ\nDXSoxAHjqRg\nEGa3R9VvDVs\nTsIQj8gZeo0\nMQEwJdhfddk\noxLuG0BYYwE\nIAsBghop-hw\nEv0Dm5qX0bU\n6eWsFFQP0gA\nNfcmrwPNn7A\nnPH9cWTJgdU\nP0t4ruBVxSA\nQhDRkf_XGVw\n5pJOdrchPlo\nAqWLMW73b6Y\nId6oS3L-D9A\nDXjOOS4zAq4\n5Gc9pviBlJA\nUi8Y0Pqlg_4\nSY_94CSMlyE\nkHq3y20HhRk\nTReOE4LKcT8\n5ps3fGNzpd0\ncg7wSv4ALRo\nXYumOva6Xr0\nrQbj9uvYL8I\ny_7o1pAwhDA\nFNkpIDBtC2c\n3SLoG8B0HTg\nQse_uMLvdwI\n36IxAWko46A\nEbxlqGXQeEM\nyDq42VIYVnc\nY_SP86WfXZ0\nYQdnuL6YRBc\nUBU2McO7-GY\n1KkrlhoFbBM\nSykyfXBJgNg\n9tkDK2mZlOo\nOqVyRa1iuMc\nNH6x4IDEGKU\np43EnAUd3-w\nlc0UIhNuudQ\ntkRvLFdrbTU\nr96GiSht1uQ\ntTc26ZemSGY\nnTOUiTegqrA\nhHWcoaM_59E\nAMQgbNK7fGs\nME2mnzfCdug\nEPweJNJOQz8\naoXg7SSmGyk\nh7wEE6Yx7IQ\nJHkM4OUkF8E\nHOldh4ePgnA\nISs3m1aHZxY\nZ9mzzABiQUo\n0SSgv8t0QbM\nguQnnPJgtUo\n0MoJuaS5x14\ne77ybggTHHg\nlKE3zh_Hxqw\nG45X6fSk1do\nJVZwoLZgrRs\nAd5ZJcmYc_k\n2dYyyQdjgLI\nHmNJ03s2ZuM\nUTIjIC00VwI\nGHZWWFmaFcI\nycoe7us5bbM\n8w_naC0saGI\n6y-pdLyZPJ8\nKnhDO1G0ieY\ntB9_C5zQLZw\nQiuXl1cPfrU\nt8loKEw-wlA\nkrqNvqvhvp0\nyisFmY4OAbs\n6u3GAQgZpww\nNj7HiMh778M\neh3TXsx8B40\n0eJpmeoLXLg\nkvAByCIqoOM\nOYt6asKb5bw\nnV9U23YXgiY\nFPc4QZqz4ek\nCW0Yfk66UxE\nKjB6r-HDDI0\nKPxDoFbsvWA\nvdHBsWXaHN8\nwUZxSf_P2r0\nWK--S8kuxOI\no1nS19OOD-U\nfC976fuQm4E\nuvFc0EPRSI4\nGSSXEGoO53Y\nrF6a1GG1taY\nrAchA32z2zM\n9JHi4K9XfzM\nEHKfoWh8t6o\n-nzW1T89qH4\nW8AmENQ7_ik\ngiiuqTdBSTc\n3LEa0FN1bf8\nMg7RrLU3Uq8\nHcHdy_Vc1DY\nz3dwJ734jbE\ncHUML0EZ1BQ\na_Txm9dQuhM\ndI7M4Om2ITw\nm7z0sOBPx3g\nMd0LvQ9gANc\nzHjeOiB-cxY\n9vvMKxDvAt8\nExG7Ut6DJ1E\nf2ygGoHSuPQ\nsZywE0AT1qY\nbOR38552MJA\n_E62a_RCtX4\ng9vPtCW9pJ8\nrhtLoA3X21s\n6wJXBUfcIOE\n4WcOcgc3WN4\nxbga181nm84\n1DNyLD2SRjA\nkTk2jXiuo9s\nHrvHeKH9kLg\nIZQFJ6hZNJc\nYg3w_8_fwIc\nACV4Krf8JTQ\n7msu2ugXGW8\ns_CwatXdxUA\nsJ9nOmRn6fg\nfBaXUdPo_2g\nkvzIRuIg288\nSZ5YPfWeYzA\nwsSlB31dwiE\nALGW3PA12XE\nJS6Gw6NVgRg\nFWEQfN39sTo\n28C0A4CEUsc\necWhXP2jM28\nhd521kE7f0A\npKEwvDFqMGw\ngr_OpFxCx-A\nETcMNeJTfOs\nPD5Imb7vWSc\nQJVsS-vIDdc\nRN7YPq8i4w0\n1KdjUNIcP8k\nsa8E_rZcXho\nX3mBsrFYwjk\n2rha-6qG4OQ\n2k0mUKGYUQE\n31Q9JbHAzjA\nkTXlnI1XaSY\nEcOENbnXxQ4\ni6zGEBhJMHA\n9fIrXo0raaU\nSI1K-_VTFrQ\nTNQ76UyurLA\nShQp2Qp6o7s\nttIN2nLcy6s\nX4xJLbsa4PQ\n6SLDMMGzkyI\nu56OqFjs1dg\ndIUK_wn5If4\n4WNfrd5hsdI\nTSaU7qATRHM\nwJCqOhdzatA\nOfUV-F9jFro\n5rivvvWeYh4\nehdAEyAGBEc\nmklRbf1JoGY\nj6gLJ4_sfG8\ngQubL9r0qAQ\npHxvNgorTQA\nzZH3OD9d9Sc\nl7-rpI0RrQU\nsNJmfuEWR8w\nJo4XXm8OUP4\n26oRZCLHR1M\nLaIsEAR_R5Y\n0u0P8j4vLyw\nRRJ1EPuYkZQ\nKJ4q3cWQPsM\nIaqusi3cAAc\n9w3E3eFMsLg\n8yDjtE3wmFs\nQQJDkZZaA00\nvkkM9YAJ-Ts\nKKzWTwJwrGc\nWUuTs5CXP3U\nuI4fVgVVpiw\nWl_vyjME-ug\n9B3TN2rEckQ\nV5ej5BJ55us\nCvl0iKbdV6A\nDKtjBqJ4NxA\nse9hqOIp810\ngADayU4DP9U\nwjkdynBFHuQ\nPT-2kB0dajE\nZdN6HbD0paY\nW2Q27LruEnA\n9PpBLxJLihI\nAkOcZ0S8vDg\nnVhrWyZtYFk\nBiQ0NRRraIc\nuAERYfeiYBc\nAKOtvcIssZk\n7mtTvR0Rg_8\n9s-a1vp4LLk\njLo7tHDHgOc\nTVOIig2xLq8\nOd4nSd9AVH8\n02Or-Hx3yqc\np890hIa1w9k\n8aXqgoiVb8E\n52FdiECWnhQ\ngXQhdB1y674\n4m2WutlqBk0\nW4xO0k9LcIU\n8Qi3JERmk9E\n74M0hPAeFHs\no5FT3IGXtAk\nAGk2Hr3GcS8\ndKsDjpKr2Mk\ni7tGEEWQIhQ\nHppKwvQMZ4M\nZJlmYy-mAZY\n61AWnIZrT5g\njA0RnDQiFbQ\n5XP3MonWebI\nT7pci4SIGCo\nPqtjbWJPIgQ\nJ07_XVy9Hns\n0668UNhYjXg\nwPSEC3PpLuM\nRH3I-IE0Xhw\nbBaNdHqC_Yo\ng_wc9JvTXGc\nrBsvuoQMmuo\nXDZ_lSJjgvk\nyBBKcecvEcM\nkL4cEH2JdQQ\njMaeuWl4qHM\nhGOHE1zqEmY\nPdjgdb-OxY8\nLWWG1eKmylY\n7C1Pr4AU2wc\nDrva4gp66lc\nt_lvc5iBnNg\nsSHxFSaOV-o\nezj13E-cX9I\nJxRj80eLkMc\nf783E8Zi8Q4\nuqg7Ow4SNk8\nqj_NSmG9m5E\npBNKarJukms\nniFndjwElIY\nh1-T9LYq1hI\nnzjEYhUtRGc\n_fJArvSVqEo\n2Wlur8mxYP0\nfGkSjNHEecA\n4cJs-f3NC6s\ntnhW2iYL25k\n92ygYJw9CSE\nzUm6rC0o7Po\nMnBarCQ9BE4\nQrRTUOebEpU\nahkwQhQZWG8\nxRtjf4AE2-4\nOqCTq3EeDcY\nOYeox3LLQ08\nI70sIrfz0_c\nNL4WWmwdV6g\ndZbWmnVOhbA\nVdlxHA_WLn4\nAhAHDaOGHFI\n1U_GoiFy6kw\nGSruhwZsc9c\nmzZgTmwmkfo\nlyuwBW9lNa8\nvyQHWSbBCcQ\n_ptjc9Vono4\nvrf1MjmWFRY\n_kD54-q1uFM\nVtPoKS5cCL8\n9vUcfymkjNY\nftmRf0AY8Co\n_JZ7U3FsOJ4\n98wG4OA6iLw\niNUv6pnKd5s\nSW2HRaFUXV4\nk-Rg51azVlg\ng0j2dVuhr6s\nvkdH0nuDWX4\na5QBuJla5do\nBpw7M2Heuk0\nAZ2EPeq1TK0\n6LOwktvZlCc\nn2A194yTWoQ\nNfDUkR3DOFw\ngMBEqbV0mw4\n1nLc8ZZUKCg\nncDQvy5GoK8\nLs9p2CEVQMo\ns6pAWtuEIR8\nnGSrqmJr1Y0\nOq3cGgqbWG8\n5AsYaSut428\nwXf_eaQcSdM\nMdQC-DD9fz4\nJCnZaM2qKYE\nfqtFUIQ7oWA\nXvVhKYmr8cE\ngoikm-zX9r8\n6lGs-tXWpR4\nvuuTS_WNw5w\nnXJxxahiC3A\naU-Qp-5TsB4\n6Q2rF2uAH6g\nMCkKihQrNA4\n6g2JN2PrHJg\nuirBWk-qd9A\nDWoQcfvV1Zw\niTiWC8GpOgM\nAwgrZd_BjtE\n_3K4VtyM3xg\nkWoC8yYqPJk\naSUmLsp97mE\nknL5zY1LRqw\nNXG6CKgSNdc\neN4fDGHpf_c\nYkjmtfQVzWU\no4Dly22Kcfs\nfRCKKlTNxt8\n0lInUr7VgCM\nZlFSjq7eU4Y\nr-zlkOg6_Zw\n2YNlWDv95EY\nrVFi-yeTe5g\nfL4j9mZfUdg\nnpwnO-yPp8g\nPMVqjEj9eKI\naMBtKhTlQHk\nNXMarwAusY4\nL_TvaJulWx0\nxtyieNg18O0\nyRLCUdWuyng\nFzQ0GeLVLhk\n6hFxG-8I0Go\nLzx24hw_K5I\nYf7MT1p1VNI\nvTFuGHWTIqI\nTDrGHP9Z8vw\nm8-_aJ1BiFE\nQPzZIJ-4Cq4\n0_ArO8UCfyk\niuL2loyB1bk\nh9jsnAD4aNw\nlW2JBJSaXUI\nOm3C1EpHLGs\nHzAzwbkW7tw\nmqkqDSAIaBY\nKlWlhyX6rb0\n4PXcUkIkulo\njzasSSMjsxY\n4t8bAQ-cGZM\numIEp9WZI9E\ndvmqIBOExp8\nsRk8Aentzic\ndXj2MnkN2nA\nEwSSmKP7ADQ\nJlaTtF1rdVo\nlAlJRP1W_rU\nvWNDQxvY3iU\nesHt1mAYF-g\nt8HQInlblys\nSOBvUyimDo0\njrf263yJwic\nuBf-pbxHb7Y\nC2pUVmGEEeM\ninrI2qvps58\n87idpAngKc0\nv8c2XZdCS_A\no1SrrJNjIh8\npYI0bXZVZek\nuCV1-C_0vC8\nlHtMdj1rZks\nySEkuf94my4\nKSZwlMDSOvY\nqjhh_5PMBZs\nvPB2g1y2VFk\nJe4QCA5KCuc\n-NkNYd_ku_8\ngprLI38JwQ0\n-RBjiJto4hc\n4QagAGmJcnE\nAk1dPU8uXiE\nmvmAa1cYZK4\nVc_4eoSHwK8\n-MEOfLvOuas\nGeOcsY8foxI\niVoG7CivnH0\nyjlZPv-37h0\nMfRi-a8hPh0\nOWYSE2bKbNo\n6UV_5HvpmgY\n_xiz8CnP1-0\n5ut37zda30I\n5gMuofAdW6A\np2esJ_ypn7Y\nctTSLWXE58o\nUstq_iSIqgQ\nK4czoAgsH-0\nlD1XDCbhtn0\naPrURpNEtkg\nYTds2jCQHKA\noQAY2uslGuI\nTpOPvupzWow\nNXvcleOF798\nEyh5RlXHBLU\np-Kyr2Ibq3c\nc9xahfssbQg\n_ZJUuDLqjzU\nGtV5-2QXj9Y\nMw0IakmQri0\ng-Yufp_dafk\nf_5nHV8FJyI\nhdW1BlDtcyU\nE4s5mJQr94E\nJ215p0P-ieA\n_TRUBZVUg8k\nTDoj_T5cYhE\nltwRv-C1EFQ\nWsPcC5TGxlA\niKqGXeX9LhQ\nQf8im5NX7JE\nI3Mg_5wqewU\nNQ-8IuUkJJc\nfh1Y30QwRGE\nTmoeZHnOJKA\nnxHTPahkN6M\n17dU___xcdA\nnoq0Lb6lVEI\nWv_JTjYYaQI\nhA0OlCQLC0Q\nw-DFg1aS_2E\nitdD328hLuQ\nNIrF-rsXWJM\n7n1uwzYOBa0\nYYSAcTkd5B8\n-wSYsQS2-NU\nGxQPnTqPeVM\noCDk1jDXZnM\nhDH1ilg9NMU\nJO-L1PjLp5M\nyRess0-DpRk\nvKLbd6LeUv8\n_c97olSX4hE\n3lz4BuydE-Y\n73ZsDdK0sTI\n6af1dAc9rXo\nVdG34y8kUyc\nQQOWp3tLb2s\nq5rs99ZpXCM\n9DLcDirhBAk\nI8PLjzTzy08\nxCnFME3JqIk\nO6DFHh2XxLk\nJBGkwf707Ls\nTYEvhdLuW-U\nrJWLdQ9vylA\nAlV_R7v4DFI\nNjwqb3iGNto\nGUwhnO-nTLo\nNz1NJ3fhso0\nwG6wio8azyE\nrJodsSNioXY\nTDMdoNM-pBU\nU49MXakb7f4\npdE83FX-Mto\nnTh9qpzhunE\nFuE5BaM0BdM\n363ZAmQEA84\npJ6XiEEJndw\ntippFPLwGgI\n5cU6TxpG_p4\nAcEe0LbP2wY\nIT3BdhTyVXs\nNXqs_wYohxM\n7VO2NcQl2-g\nP10AWBi4-y8\nMfeSSw69cC4\n4l1Yek0Z1FQ\n1BRteOP9UL8\nEcxB2iCU3w8\nYf_toKBYCl4\nyOpsJ8dh5L4\nkye191FZmeU\nOc2xTMnIwrI\n2_SfD5cdrnw\nKf-JPkSfjug\neBxVWEnuSC0\n_akwHYMdbsM\nI5kkwmOapss\n3XeLFSaoyAk\nS9RbwDvpqD4\nK2qNJ7IzzqE\nML1_2lHFftE\nvbF4qz_-PCM\nl6uaxfye2Ig\n4KJD4aP90YQ\n8l7LGK2hnQw\n4mdd9P7Tn6I\n7xohWvO9i4c\nLmdcbtSwX6Q\n7xVN8Q0OIbo\no07ecRzkLuM\n9GxFab5uMPc\nR9goLghpPBg\nnS0fxM7sCHs\n74Y7PD_uBe8\n2v-VkDiUm0Y\npq9dj2Q6edw\nLBO6A4kU5Vo\nTbI7_iOYJvg\nDSuUJ-Scbeg\neDhJ-xXsbHc\nWJlOBTLg4xw\nRiTXscx2pJY\nW91BHqxJIRg\ntz56LhvDFho\nEIz94vt-Opo\nDxTFwXcsctE\nuqMxfPMxW78\nvb2GzRckU9s\nQNVWY5jUIbc\nsM3PgyGpO7Q\nqYbwQoq9XfI\n7JISgsyVgUA\nTY04QewafKc\nHIPljGWGNt4\niZLnEfsXttE\nu7tXpBrpecA\nU8XrE0FSQv4\nDIlG9aSMCpg\nUEaKX9YYHiQ\nqalHjNdHFJc\njpPCVq8UmX4\n32iCWzpDpKs\niJKhynhnPyU\nw9-IJEaGhRg\nSgO2khv_SDY\n_Er9cXkqWEs\nKY_G2f2R1Tg\nMH9ZK7vSBYY\nN_HE8beijHA\nUdhn4vCPZ7A\nNrE3t6Pgps0\n5FgtVXFRyTQ\nhwWsAUpr9eM\nlPe61El1_3E\nCblvDFObgNA\nK0zvX6AGd7Q\n3kX6rf9uw7w\nsZTRUAFCzF4\nXXLpjT6qjCg\nl2K4Fw-pmLw\nakyfR8zcmIo\nThzCQZyzCkg\njzEhVsME8p4\nDnwnDFr9kOs\nhQEej75JeUQ\nQ5wdXytgRLI\n3zavgk2_BJs\ntUaOBgXp_Pg\nAU0NLheu8mU\nEMTbkfgT_jc\nsP9ufyH-Pdg\ngx9O6q0pDAU\nEUvgqItrt1c\nNRQifnaioeM\nsEXIC0OaQSU\nExVWQ_I-elI\nkf8NklFXAd4\nCFstDwSYjkc\nw0NWPKGGFiY\nYJPebmYS95E\n3ArDaUOO6w0\nUif48WrZza8\nT0QshoW8SQY\nyOoGw9aTRhs\n3orSzPUIVJw\n1ycpmrEl-9E\nZurT6BG1OM8\ngwXzOVu0x-U\nv38lu0Bi0Kk\nuV5YFJgGPNQ\nnWAV_KcSkNw\nk9pFp6iRVM0\ncdaDQcs-XNQ\n-v8C1H99O_s\nwzSYH0nT6Qk\nf_xjQNnIcdQ\nc5BJJbtFP4E\nXkasRfjEqFs\nRUX-bx6rwdI\n7UKx-6P2F-k\n3JJaD_5oQq8\nmYhkrT5de2Y\nQ1IQ49BHkEg\nhGgWUKweXzI\nGKuQDM9OlAQ\nRwtay9w8axo\nVMVzQ8rW53Q\nilrpqagxBf4\nZSFCW8cDIU8\nXKl9WKaYVRw\nsLWhxB6QNrw\no4UVXgAzYb0\nAyJIq_BNPME\n86RH1KAwM2A\n0jzYpSrpVqU\ngZXv9XswYM8\nu2pu0m9iTo4\nj-47cwN0w_c\nxLxCXburq2U\nx2-MCPa_3rU\ntvKzyYy6qvY\nZS9SXH3DfT8\nJcP-yeailEM\nzL0ipXUD-uU\nKOi9hHjmYq4\ntOZTZP_qzC0\naUNq34kNR0M\nqW7Nq2UBlbk\ndpBTugwEdaQ\nCccXBzfhDVA\n6soXf476aV0\n-zIhorOBLZM\nsthFTs2gWeg\naqIYxDk4vh8\nXTMeDBVknQY\nwsQJVAzezrc\n9-cPWheNyaA\nFWrh6KWGFo0\nTVaP9kEYVZ8\nS1waPNwf_ns\nXW9T7s1U_XU\n-MQNNzaEt2s\nZJJGXUlqb_k\nMLkaLveElpM\nYcbZKza_zUg\nCho039BrHpg\nLb13v2-bBJQ\n-lb8E3qQVKY\n57yGBikRJec\n6DU0mdThjg4\nxuQZJHfWf9U\nHsYC-hVEpQM\nSqOnkiQRCUU\n9Jt-bxV1gW0\n_hyXwvNIKZM\noAb2_-uv41Y\nHqAbjHKO5jM\nIdIEDlLAaJs\n6vg44SEEMmA\n6ovOboVwB7g\n5fLlgS6aO9k\nVZpMlm4xYG4\nW8_POt2KlfQ\nPoIdfRnQZ4A\nre5veV2F7eY\nLORyEX_5czg\nNpvlS6uBduQ\nWPYqRaOm1ak\nsT8wMBeVffk\n4rT5fYMfEUc\nsR528E5_8yI\nRkFcHUvyJ-k\n-Y2wqkD2KVM\n6esR4uGEFCc\ngRzjSsXw9PU\nDUbplahEBfQ\n8c-Na7OHYnI\ndVCki9kwF_4\nkyY50rBet2U\n6ibWJnY6Ur8\nk-oVuQpjG3s\nsd_I5ez3jwg\nocb7pXndlug\nwwzyveUAS80\nar0xLps7WSY\nYK-ys6sY_q0\nAysV4mGh4fc\n2wwC9c3iYK4\nzk6ac5Amzr0\nCgX4uJSj00Y\nbXYobuaTjNs\nhnum8SxuVCQ\nQLNUIU7AzTg\niXSKAf6h5vE\nGR0R9KfU4tY\nxPZ6eaL3S2E\nO3P0SMpqK-8\n00rpUGdvcY0\nAzIQg6Ly_Rw\nAIcUKqhFp4g\nS69qPup6hyk\neVUsVW87kSk\nZUKCW08_8Og\nYMz-skgeUdw\nFCRdTWGdngU\n8l4qdf_1nGM\ngAM2Q7Sqlbk\nKdNSlyrbcDY\nQHH9EYZHoVU\n_d5jXDvrOu4\nj8nZBlPfR7Y\nYVz211iI26o\neSm68IEDDT0\nQJpRSf4q-hI\nt2QvuZpxmeo\ndgoDvnebHRw\nqoWjU8OAUaU\naRM2YcGpmxg\n0kqn9qQZdOs\nbTUrWYv2vtU\nz9lBvg5clr0\noMLjP2ajXvs\nMdwuW8n3JYA\nwIrUoTYd9hA\n7b9sNVUPFyM\nYfJc2bORFHs\n6U4-KZSoe6g\n6ZMZYrdXtP0\nu-ApxFOpl28\nUIfdjPDPM-I\nQXtkzFiGsxw\n6c5Qlf1Fr28\n764r3kF5tZg\n2bkNfQBLCJw\nzmicfGmQZ9s\ndnnrhhZjTh8\nGVAVkeMQyKY\n6EFjbeXuNCg\nYlT7x_8VuMA\nr4IBPd7-LlQ\njtoYZoKsAnY\n_r8MRCkHY54\nohz8_IafGwE\n3QCSrQEGvZA\nndfLW-xm9Xk\ngkGFvtW0CSE\nn1lbpj6868o\nHWrjBBXjjhM\nc1EyN9xTK94\nECDGpYuMRDA\nGmslKQBmdzg\n5LN23qErZDM\nhIhe-VqMBVI\n1_-RGLVHmOA\nAoWdk9CB-mU\nWDAo_p8At-o\nIH_dSlEAl0A\npsru6_9PPcw\nBkW-4CWw3XQ\nTEjRTNg51Io\n4dW0aROYEk4\n9pDIRuJt-gU\nupyAJ-kEgNY\ntFAX4TdV6ak\nOTq3-zG1lCE\nP-E8ZrQ06go\ng-GJDgd7D8k\nKtn-Hd2BTzs\nbwzuMk8SRzY\nqYW3MOezCc4\n3Im7ZYrXCOY\nt7S_kRqYshw\nqilGSZ9UWTc\nOYrxSQ_Y2Iw\n3o2ACEr9NmQ\np0qVhhIfWr4\n3Ag3aRRoPzk\na4EqbYUl7Rg\ndsCzZE_y0so\ne2RQwVyRSGU\nMbrO-ZbuhIs\naXbf3X56rGM\nc_YHTdu1jFc\nXxsSp2qJIZg\nciWBzhmOC_o\n0ZQln6DsWgE\n_nqoPInNcvo\nHMziYymVYMs\nQvVoH-X-Kls\nERmo8TmDYCI\nz7NxEj4A1Cg\nQAJkvEJ2QjE\nN7hG6mx0csE\nLIXJaTQTDAg\n_7z8a8kTj1c\nG5GJHYXrjhY\nMn6WC1pxVNk\nklCemtBU1cg\nGH-r4HXHcCk\nKNAgFhh1ji4\n-zya4vJ-kQE\nn4BJBz8GpzI\nx1ij_TEK_MM\nnVrzbfxxcZ8\nY9GAufJIe0I\nsBjNpZ5t9S4\n25Y5O97c1Aw\n1Gk_oU1m5CY\nxCtMlhZskDE\nWZppJUaR7_0\nBcufzXXaEoI\nfvptWDiYrIk\nsp8Ufx3Ej24\nkLskn7jHXrg\nd6ISJ_dN-80\nflvyCwagnF0\n4vcNnS9k884\n5t_tgiWatvs\n8ce557hlgEM\nXyGbtYaVcaA\ne2g4Wr81rz8\nZbaW0HZ_Qy8\nb4teoyYZsYk\nQAFttSucKH4\njaCofC2Bv-c\nYDV8PMVi-fA\nEuSGUhhmYfk\nPYLokGkYl4E\nyGbUcqCXe14\nJJ5290-0lw0\nesQgzR6gTjw\nBYWVUvqDFh0\np-mlLMZXqg4\nNFV2sZJrtDQ\ns_hFTR6qyEo\n4u-4PyidIeQ\nzirtzDl2RH0\n-ZODi5SGAyE\nnzyDm-J065g\nHzpxTmlWOC4\n12Iosf6btzM\nMyKNmvJYO7o\n5yUd7SXxXzs\n28BXqQWqYJU\nxJp2HXBJv_4\nhf7_JChVnAQ\nL8eQ78agzQg\nFeoFv3dOeqo\nurby-QPF1hE\nNrriZYH49yE\nlKMl0NFXM4s\nabh8wBYFeuE\nyDoaKW48_hk\nQ6kNpNi_iJI\n8lD16zBpcog\ncH80fIW-mrc\nvn1ZcpwPlAA\nrG1qXTVH1t4\nAMuVqFvM2Rs\noW7IadnQblg\nC7G9Q9JcN34\n4sO94xn-C6o\nuCtMTbKX6_I\nqqhQ9jN3gj4\nqTUcFhCim_A\nprnQLmVg5V8\nwEE-EVC0P8M\nPfnAhUBroF8\nssukL9a99JA\nb4kKWa_hjCk\n5smoo7ipoc0\nf890SC1schE\nHI_mwhUvqHc\ntlE5yK4l34o\nsjeIpuOhuPM\nt8dJFMMvNQQ\nRGvWYYCWFq8\ni_sT5Jl3qM4\n68XJpm3q2b4\nqbfjO2d2S4Q\nT9tQanQSgQM\ntJIzs4CS-TE\nUGn03bNlFuo\nM3jyyQMbJNY\nZp4qkAJFHrQ\nKUGH4XQ94tc\npwt49IF0uG0\nEMBCBSoE1rU\nZOtIoBAxDUw\nFX3YO40UDHc\nsw-oQlitqCY\nVjlUWwstdTU\njs-kku6X7yU\nZSoIlS4LQiI\ndvodASNU58U\nYkGv4M2y3zg\nCXgaZeUY6fM\nUgd_VB9iVFE\nMV-KVBADWMg\nLldAqBKjyJ0\n0Z-o1RVdnHE\nbP9A87VOaYE\nqvwHppI95K0\nb0fZtW9Niic\n7-YQ7rO_JSg\nELzQ4OtDjrs\nkaZ87rTNkDA\nNI7As3rOogo\nHZs_qERvDko\nnaTncfYgYtU\nT2-1TBORh9k\nvaIRRbuiarE\nyZ1OgEqw2oc\nZ5lyNKWvZfc\nfVltuJq1SQ8\nqBrEcM3NbH0\nRS9Z138meRo\nj84y65YfUS4\nX7ut7L-X1NQ\nyNDm5IA6nQQ\nu3xawRs6Rik\nHtagS7pfoJo\n2Fy8vK7IGIs\nkmU4DlO3wzc\nTGWJfpAwlrI\nNWuqkpD_A6E\nisOtwdqD3y8\nxTyEZA6ILOk\nJSetLbD948c\ns-kucHjKbG4\nKz234-_khjs\nBCruokZzMXc\nRAKPzL6uNOg\n9XvQJ2Jbg8A\nRHULBucGlA4\nYO2-9VWwiUI\nwwLnrdD4l3U\nrQOBwQbssgo\nOsH_JszzicE\noqDlKpTihNo\nqfym2Neaz4c\nlllLnc58CoI\ngNCAj7eS07I\nWt5LAZa7LAU\nHO4TjpZw5zc\n6B6yElrEeKM\nLTgOLHxQ9mM\nM4nag_xN0Rw\n41MHIJIg6u0\nmjt0iNTJrWE\n8k_gzuVqZmk\nYOLGp-P5QFc\nHdU-6bKqhzk\n9NCpU9laV9I\nW1fkINKMwHA\nYHKkh9b1Oi0\n9KhqPTmsCJU\n-qq785V7JOU\nssM67LXOwQw\n4zJ3a0K2DP0\n89hYiDNscBE\no3f521sUTaE\n2tmMMXTmM9o\nSzQ4cDkdsqg\nZTUXWwbqu-I\nOD69M9N_ihQ\nA7kyMbwD9o4\nDcH_p1vfD1g\nyuU67Mv4bFA\nBbsJiMmpObc\nQ4-XxWqSgH8\nyoGdST0RFuc\n70E-IYUdbZk\nrGvIBT10JDU\nxmwm0RH8i-4\nPhkCGApLP30\nxftZzmdlCKk\nU-XEvzDp70Y\nhPF9nzzuMfo\nUGYt7xZWoPw\n1PKDDa6p-xE\nxKL_T4z0QX4\n_f0TNK7fb1w\nxsyNWPpAb14\najgeUrUcqfE\nCWAAUSNLZXQ\nvWZapP8b11s\nQk_tn8K0OwA\nDHkGu6e0R4I\nJsUh_lfcyKk\nHtpiEXXf7dI\nkvHcswMy05A\nl6SNAV2S5es\nUaRyn-tb0U4\n2wy3acVALNI\njAZbK72VLFA\nKtGm2OkQa3w\nzr5fCCcWRJ4\nz0s6zZJdsZo\nHzF_TbmDH5s\n1ZT_oKZGgew\nEzW2MKQ5q4s\nrLx1ABxely0\nEyXDqVQ7MBc\nAd7rUGIPVqQ\nQxn6aafaNP8\nWyNGkhmkuus\n2eMqB3CFMkI\nAVKK_tDNQMc\nb2zQmmYEDY4\n3RLPHNi_2-A\nsHTeguzrPto\nq9QJ_S62yVo\ntfvoOEa1OOI\nRBvtPZ6zyHI\nA3oL7v7PLac\nSgwfvu6k0xs\nT8oTlWwAPFI\n-zLOrCQ0BpQ\nmw7xjHBJOvs\nWUfY9jgSrLI\nGhSSEuAEcm0\nZAerssgC4pc\nQpbf9NUuuUk\nUlIBiZxArGY\nD9FBXb4G4GI\n9iSVgAZ6bSM\n9I0E9w8Nqfg\nvzt7Yb_-yiY\nzAeofWDUArU\nFxx7g5nz4WQ\nkSk0pCs4pGQ\nQe_3aoChgwI\nviCosY2u6YU\nmqnB2ef3S6M\numjmV3SwDjw\nAIw6mK0Ob60\no1mDknOtAv4\nJi28PrD7P-M\nSnMSSAqPSaw\noiikIyodOAk\nQ1MHXYx2820\nu83fkqXPIGE\ngJvgjH9Tvpo\nxaCe8T1fXSM\nKerwQ_DokIw\nc_a5Y18mdLo\nHZkrxGuKHkU\n0IxeTLiovq8\ntPnacrrdjIk\nYzW2OjTJc0o\n0iz6-4QxGnc\nugw3DUIVKow\nzD0YTr7ZF58\nJQc_dMcByUk\n9pT5FVBFunA\nj1dkwnqffaM\n1n4wtaSq7AY\na9eT3NaWLPw\nwyKfuDzbbOI\nbTdvsBKjlbE\n8W3_WigxsXs\ncsfyEVjimu4\nBHFoI47tc9A\nlIzqZwDHis4\nguq6F4Jm5Rs\no-rVEtR9rfQ\nK-zYWpnMyXI\nD1kIRqy-sbA\nWRx0b993Lj4\nT1Z39yM9AVk\nChIS70dX0eU\nmPoyezWAghE\nO6IMaR_G_sU\nIzOtTXOVc9A\nxwsTm8Xo7kE\nix08f9qDkk8\nRATBzjmcbh8\n2tQUU1c6MIw\nragJxrFknuQ\nuc7tYT1-Y78\nuC1Lmk5qK2Q\nB4Us9Mq7GIc\nXTfUTOcdkqY\nb3EWsHg08x4\nN0gaRYJH5GE\nqKerIOG7jdI\nY0FAYOIt-VQ\nqmBAF_JTwDs\nntALVSmIUrg\nt9iFa_dTcN0\nHYUfT__t3jU\neN7zGm5KKrI\nwqvnT7u0mSg\n6n6RVIIC8SE\nCzaHTATaPAc\nMGiNXAG0gjw\nIIoBuBiTfS4\nToZx1LjLmrM\nHadRbtEI7KU\n5k2vzUZYdfw\ns9jX0S7mvB8\n5wThW2AGZw0\n-9xP6hMwNy4\npEjOIBe21a8\nD0NZyQWyZfI\nx0KnLMaLLcI\nlGIEwdZTNRQ\nyhf9YADtuyA\nJcvSNsyvwNc\nVtkM2SPaSJ8\n4_4HFkbbbC4\n2ZDDIJV5ypc\nirnb55gfwNc\nZJhHYsmJra0\nEmTXI8HV9nE\n83twDFjlCjM\ng05Ja_89tOg\nGL2B4xLAjE4\nqjKhJnrMamA\nwek_o4V_T00\ns0EAZmF0k6g\nNRd2gti9rHE\nEb5uCh-8rZ4\n4W5KhfJHF_4\nPGqB6JIUzBo\nz8oaq50tGRI\nfPUJS7w4Dag\nP5GNspEWA68\nZx8vIjEKvT8\n-zPjGsII_fw\nfQBlpIivzY8\nf3_39H9_3Qw\nOIBtFHZy0xk\n5N0ifKLehLM\nSnpNDM1XeZY\nlYb1h0iDWSE\nH98MLmW5tYw\nqslhUrtrjXQ\ny69iLU9cSyo\nl2IJxv1lbAc\nqPfLNjGXa2M\nNBG53Xzikp8\n5TIiQZo6snc\nUo18enRpmG4\nxfTtfDBUrvA\n6ZZHQMtbhxw\nIUodLjwwSBU\ndMxAYJDzSls\nmqzu3AI7Dow\nZWrv3l_2tGQ\nPpD6HmPdadI\nla1tZNwaBog\nvlqQwxeYtr8\nL5xFe4LFtb4\neG9QMl_w1pk\nevzxQrEfIG8\nnCO2V7YS1nQ\nxMy-NiI7q-M\nRJAU3K60wIk\nRF9vhf_r81w\njXA-4rN9-ds\nF85KoecJotw\nC02zRnebZu0\nN_vildqkupI\n6w-07V2q_DE\n8LGY68ppqVk\n06u-a5jmi6o\n_mSvR3aQeWU\nNlyai-wfZLw\nFAY2LYoYCAU\nHN-YqWQ3PEE\nWvyi2PEVFcQ\nCIAyyugbq54\ndp4qnnVSk8Y\nqe_BzGXRDzo\nvp94AFms0V0\nNdYmIIbYoH0\nmvLpbHKV1_8\ngwnFTbQVOwM\nzyVKJXfRm_g\nmaEC9NS6CkA\nkR3VW07XfUo\nCiT-XIWEC8c\nxCMsK2duu2s\niaofBseh0J8\nWuntz3KDIAk\nLWxSBbBX4fs\nkORHCVmSucM\ngVgsadEybgQ\nv1M3w_o7cOc\np8Ejl4eeFXM\n1EbSU5Zyx9Y\nvTbcPIKxmP0\nl4AmSVb6Hew\n26MkbK_C-lM\nhVnFKJJYLPA\nbQutB3mYc84\nInj01auwE9c\nmbTZ4ywa1Dc\ng1JAILio6-s\natGNvojXOvM\ncxWRWbdsTjc\n_eCWpUV7cOI\nepHCMiCtt3M\nOmQGN9X57Ts\nIqc8WWvcTN4\n_undGtyUxeg\nwVWk6IfRuEE\nV9K9m155U2E\nPe7G8iCN_nM\nZ0W6ufDtdS8\nTt8DoNerIPY\n1LxDWSYgiUc\nJuQmiyLzHdw\ngXJH5jhO9to\nR1G5HwXEw9M\nJqyCEV_iACo\nPhXFRRVBKus\nxE9YSmsKm8I\nb1eMAFWXZ4Q\nAKONPxrqFxs\nbZq6Gv7rP0w\nzFo_QE8j1Hs\nbw4xDTQYIfE\nAuq9e3lBq6I\nvcsl8fSgqls\nUnXDK24wbSg\nVJOO-fcRLzk\nqUu8VHynw40\nl83CcqhP-kY\nEKd7z5CY4BU\nIHR5ljAFCGE\n36QmLon8dn8\niF_053JQnQE\nCDn1rXzkBEM\n_kItBZZK1p0\nyjU5akwca64\nnNXIh6RrvNw\n4K8M2EVnoKc\nE8LYvflSTAE\nDPQ47h-k-nw\nRqCVbiHCYAA\nM-h1ERyxbQ0\ntMIO48oFmHc\nn1BXpNTsoB8\nUyo69utc9bM\nF4T2_xFNAqs\nITfoGnAkw4I\n2Vam2a4r9vo\nxIbilLMZLHw\nr2NHTRgH3G0\n-ftyIj2_b8Y\nk59rG0r-sqI\nEeEhcPAOGUo\nDiIgAES9zt0\nwaE1U01kwxY\nNnEKQD1fS20\ndiFDBNNmnnU\nuPwo-nHWQaM\nc8qfaEdYBJ0\nxqD1y_cJAaM\n1uLzZVSIo1U\nnnESedN4vSI\nmYZGSfnk144\nPYJFzOzpwHo\n3KoW7h3Auf4\n8LM8A67uo_M\nKcINC5YSNbE\nkDnCoiYKmtw\nXVOsO0E1E34\nkQ6BSOZ0VGQ\nOOMIZUsKlmg\nG5qjWjkpUaI\nVjiy9rCG-yU\nvXvHja7vtoU\noKcbalkmH_Y\ngsJlkWp0p90\niHWOj17ISfk\nZ-5JqDEHfe8\nDiAtgmRa6fc\nMRs1EBoZQ7c\novV34LOq9Q8\nTRAlGwGvlXs\nqM8jk56Vj9Y\n9yPj41sNdn8\nPR9wl4Qve5E\nJDN_C4L6Bjg\nF3H_X9-yFZA\n1BZoajBwbac\ng3hYbDHwBJY\n48jtU38CZS4\nnYhuIXk_CPk\n2tKQW10sje4\nUWyzrr2ch5s\nDnFk_dGSL5M\nEDyDOkeEge0\n4jv8ZCoQyZE\nLABD2un-vIs\nX11uEGRnCDs\nVkGD-6ebYJ8\n99h9RG7Rfp4\nu5AzB4EGGpc\nvvd0meL8260\nDF2dkoIOm0o\na-VqYtkvmzw\nkzrHg5GOvXE\nbC3oNsbOyWY\nyJ1hoVGPxCY\n4865Vc0ptnk\nuOnIqWuSCIk\nGdrDuVImE2c\np2Md_248enw\nbg9SuuzPdVE\nqYXoNC_LbcI\ndQSK2gmtNMI\nnOu9n4ulmRk\nIT-iX7o_ozA\nAR4d7r6--I4\nM0N1Q7Eav4M\niD9tENbIPHg\n7JZQiC2eNdU\nxs8k31_ucJ8\nrylEfnxeUZo\nbk9oFLFDsfE\n1Ej-iuKgmvQ\nQ6-vRgNPGAw\nPrpeARyTcx8\nTE95amqnEx8\noqBWx58n1Yk\nDv52JE3zqzc\nN6HCOGj1lNI\ngmk1iStpovo\nfI-F18nRHBQ\nR0U9F4HexA4\nRt7_IUmuwHw\nRAQD0bY2_OM\nSCXs7OphbUU\nrAu-0Ko7uBQ\nDurMO8Ayhn4\n7uqoIuB8zx4\nhTv7HXqqqXA\npnTtzyItCQA\njUM7RRZWW78\ns-D79Y-gBrs\njaiWxuKmaa0\nUfziV-fIbyM\ncOyt0_sRRvU\n6X4Sukx3GsY\nCmcZU82YaEw\n_kV0xtzcwg8\n3yqPdLURXjI\njDmw_MLAQSU\n_tpfO7RS7-U\nMKboBvadcD8\noLQsS64Mgjg\nE3B_XdL7Z6Y\ndXe45jbpElA\nnIsuwv3VfxE\n7OmBXWA0Rfc\nTAOUtgdcjik\nZhjyZXJVm4w\nFuJ2soRp1VI\n3hqspRARlc4\nWd16x0wExDE\nGlO90j-f2vo\nbXpq-sf0Drk\nfvxvrapx3UI\nwkH0WdBYT4E\nhuvEARIzQNc\nkxu97nWDapM\nx-Vvl8gkZAw\nsceJ1R4JzMU\nLMU895wYEDI\nIWQriJ_Nebs\nCzBxp4EtOXw\n1o56ZKPhPjA\nZThOaBpFIGg\nBcmM6kMxyBE\n1mxednlcHSs\nLtKCcSEgPJQ\n9QNXD_Col7k\n5XiEDoHueUo\nKoEPdETXy4k\nxD1H-FIqeMA\nApU6H2gqkMg\nUqKkfcG36V4\n-nh3g6F63qM\nqNk-kc0XH4A\nP53a6QG4jlY\nKSc0srYx9-4\nNpwkIYB3ZEY\nxWShDNB5XZU\nuI-q42kRXi8\n7wYMAJSnpVo\nAxeeO1qdrgw\nmTkgIN2TteI\n3TWxK4Lb6ws\n2zZUujqZfQg\nhnHERe72nQM\n8j-53yv1nD4\nwxlvZpMSxM8\n4_9ZfH_x1hE\nkiv4EChGJVs\ngZ6x-hUpoPo\nPMar5oQ5Ha8\n9OGKM_BI9zY\n8KaBhZM-PTg\nkNepR8njvT8\nT4l9RZRce58\nErQGXlQV6vg\nuTW2Hrn49Yk\nsIMxtj6czX8\ni16c8n45lR4\nwdaFZ0seZBM\nsEgsFoQhy3Q\nGolLDhBuy74\n6mGJ0lFK8c8\npCnPsUo_p9w\nMOB7nv-1G3c\nRntgG4p1m8E\nrqT82hS-rMw\ns3znWXpeLPA\n1IlqRjk27JI\ngUpkU0-pS3U\n303wyvo5Uow\nT4V4NqEU668\nIE0S6NNXiYM\npnvy9q4UpZw\nSpl7doGUZTI\nFNvk5X4D7g0\nzkBkTx-GL8s\nZTAVOF3D4vY\ni9_lCyG67Rc\ndsRTzhbsAmQ\naCqhUO76MTU\nrhc_Ds85lG0\nv3MPODJTzFM\nNCgUx9-REsg\nBeJMZm6DDtk\nQXa6FXKJQpw\nrcJ5q5BdJi4\nNTPT4BHAmRI\n6xSLNonQJSc\nzg4tFOmYKpA\nqw6k-69hm90\n_yHgZUYOYdY\nXHdmamu0zPk\nSDesztIj8Kc\nNDw4Lax2j0k\nOPwRf_sD5fo\nVWwkLEUn-a0\nkY4iDLi0pV8\npqLAni94IEI\nlhsWHmJiaXE\nTqB34Q7iy-A\nMsxXJOiXEW4\nt3ttyoPvivk\nXqti-Sxsxk4\nBrXYAZzLZTg\nlhZFyMTaIt8\nKJI8TYE7DtE\nae-cYVuxBKI\nSyiA_t-8c7Y\nmTysQF15PHE\n2C6FHPmqETM\n39M16Z2aYYk\nX09M4YjeE78\nE1BBS1rIgIw\nm0uAIT2O5P0\nLpk6lNEGrg0\nMSVT6NNqldY\n5Rl0mFRWfzc\nfKoYXxN6x98\nBW5hIGrXcEs\n_WF9UwKuitI\nM-VdYzNgtng\nX7Vt8oHsr0g\np12OcbmjVgU\nWTW9la6_mEY\ngqKobRWnvZQ\nPWvWrHzlfAk\n4C-aVLgAw8g\nWpULGtEqNBI\nf-9ErKOlWyE\nn8JOgoI_2as\nf0-GryhUnSQ\nQEp-lhl5ImQ\nHjhg4s4nD5s\nNEc_n0W4ans\nc2gZ4aOYOw4\nX_akiwYsyYM\n6-2doIEpFVE\nK1C2odNXI4E\naXg3HXlsdg0\n-l-VCl5kQuY\nqo0uCiDpp0k\nio2eeYm9sQs\nsGbVR3TgQUs\nKAPjaNfNw-I\nlF_KpWfFyR8\nTgXkBPFZZFY\nytFFiCYItjI\n_flZU87W_Rc\nFYlySSs_-JI\n4iMFUxeKJd8\nzlL7BbZoSAY\nczzH5M2bUYc\nti2qUYIgpjM\nrrbEQDRYpy8\nITszRkvBcUg\npIWh28WPyxQ\nmT1QTyuTr-M\nKMFxz39Qhjk\nh7CCnLwD2MY\nOMhzAcofd_8\nnyExbZwBM2c\neCCJzVqLBvU\nznxRGH92XDg\nE3wiJJOrgho\nAjXl70vbOwk\nRTCMHLpNi4k\n8KjAsaJdi2w\nk7VW1xNAn5A\n99PeJShwZis\nJ0IXJNE0FXI\nOzP8k0R-USw\nEnGXNEEHPG8\nYCIYe01lg1E\n06B3m6L5fFw\nYlpN0wDqUx4\nDTVnQBRfCAw\nrQP1duR2tf4\nQ0bjuz5YBLM\nJ8_CIsow_Y8\nqFsoL6ed_2E\nLWEklaaHGsE\nHhtRNV2v2rU\nyvv9DRyxTFo\nFyvzidxs_SY\nJhxb2wWFK4M\nB3fgBOG1fWs\nef77ViM-f14\nqZBVXYYcCjQ\ngZY_zy2hAHA\nubgR8CKyzYw\nUqPRk4oFz_U\n_OMy1p_m3_Q\n1H2xudG3BPI\nWQtoXhnhFwM\nsj93sTcEJYA\nuPAXLQIxBGY\nX5wAXtQ0oDY\nMLxnvq1E-ag\nQ4DEaXN6Dp8\nXfBImxhVWTw\nrxX-JLi1FB0\nqJKahA8B9Ro\n3uHIpj5JpvQ\nc-zaHGYURv0\nMp5IvPj4ay0\nsk3soFv1wHM\n5xWrsFC7pG8\neeR4VQyoLdc\n-nkqrSaJf1g\nUUB75dkgT_c\nidxHUQY4aDA\nv-0Z_0SUtJw\n5Ui9rRepv0Q\nditeeSODzTQ\nFYDrPt06XNI\nHUwVxqQz25Y\nt9BqiLLt9SI\nxCJZij74-J0\nG4tfduPN3rM\n3c6F_0KpK3k\npYBS9Sp0xU8\nneFpFiuvYsQ\nI2eVbp_Jfc0\nsAgSUFT4cVk\n4pz2kXoDo_s\nPJ1i0HuBXPg\niLYeR6v-fVE\nFu6QrGkRdJo\nuB2eggtlTfE\nLAd6SaXDdZ4\nO4qhT8oRvss\n7ZhnS45Zexo\nSlVK7ogwyUI\nL9tK9HYspFM\n0C6nvNlVx1A\nH3Epwo8vFpk\n1UqJgV10-wE\nBydT8m3NdRY\nZuqwMQTc8cE\ntGYc5woadps\nZnook3DEEaI\nbcY4Lhb3yhI\nYV2WQTL_45A\nMFZGTRWVOjU\nsL6QJSdqlt0\nXPRFb9J1CvA\nb_uXZZRpO-E\nU6Lt17rALrM\nOvloa5lv7io\np7aigA4gPiw\nxl01-vBoHsE\nTZAvqLk4o-g\no69EA3eSDf0\ntAx_zjVXTOs\nNKCskfhsru0\nzk0AexuAhlw\nV2weMKLFJLo\n0WjELXl_6zA\nQzymqXvURkw\nmOpvoWxjz90\nX9N-BROIbeY\nCymY_Rl1fEs\nTDecVpSLT38\nndrr3vif10w\nTQrzX_5FO1k\nZS0rEz8wR4g\nxo2meR8UHJ4\n-g7jRpukoVg\nK3ucS56rrpA\nQJfhiv1Te6o\nyoWe1gHwSrs\n2GMpuN48u5c\nvVpzpHtm5d8\noC1MpovG4N4\nUYovQZUBzpA\nSKMOhrpxUSo\nJGV_h36uZ5E\nczJ6KqTkk9o\nvz7jp6GiwTA\neORAWRKW53s\naAnJ9iO8DAE\nNbX7nS8SG7E\nE8eiFdoI5W0\n_6CT5p7fh9g\nRTObjnUfgNs\nNI4En1gLsXs\nWBxpXxZqKms\nvG833_jH7eY\nqUDMInHr_wI\nD-UBJzXzoho\n04zHzVrubHk\n5pM-n30jlRk\nkuwMlIheB7M\nPPEX4kaB1-M\nWIaK0Z7k-Gs\ngjiyh8AXkjc\nofxfYinuKKc\nyek9a0zFGHE\nVevqDJM8KH0\n2RnYLP4Hes4\ndsONBwWtAts\ndDDbmin38gg\nhQL6_NbLwtk\nhajGYP3CLKo\nVgQOZkXg9t4\ngcu30p7VEKI\nGwFaz1nukyE\nDMeR-bkC13g\nJ6Cg05MhWbw\n1b_sbGJGx0o\n_OiXT87RhvA\nCB9tbR2M5fg\nmLsptorbPUg\nO47od13_x1k\nr4mQmoD72tc\nnimkNFEKUkY\nx0XE7KFZook\nTbFYMfIpRss\ni9KJXFbkMH0\nBztqFxMXpTQ\n-AlTccRsRsk\nM_MJrybDRKA\n5iZUg7tGlxM\npnjWGD-WW8k\n97ZiBty1eTM\nR65UmAfIZpw\neZjR4aso7VY\ne_hkxbNpQMw\nveN5fuM-AwI\nQoJ5JJ3keUw\nGdM1NCrxZvI\nZjDB3Pfl3iA\nE-TthagAhsk\n9KstSfW1IAA\n8P3Q_di3Lo8\nBjMrxHxraio\n_9b7JgWu4PQ\nbTE69etu_fg\n3si4Cv66RSM\nMq462kfFKI8\na-IU2mBY1_4\nXgTtI5D-INw\nCZK9pY1dA74\nVHVxpLDEAo8\neW4wR7-iOMg\nVpLXPIihj60\nr3TEbOR9SyQ\n3pDOsNri1Ko\nQwx74IfTNwo\nKaxcWDmXbBs\nwPJvAzfaqlk\nr_U2p-bdeww\nFOdizWKG4qk\noXDyQju8my4\ngtb_4pNuYIA\nx7CGZ5vxlLs\n2TI2MT0eoSo\nVz7PIPZgT0A\n0p6UQkoNDxc\ncLm4oCbovsE\nDmokH6o-nKU\nX_SthyaIImM\nXyBWsO1gVTk\nPIMIz2z-1mk\n38ok415yQOc\n2zi4N3_c4sM\nJgYPxPGfaRE\nYBUzc9wJMMI\nGBh5nZ3SNz0\nhKBHte0cc_0\nvJzOCmyQY24\nSfaY0KH76nU\nSeBHPzqiUlg\nCWPoQO7bMRU\nsjVgX0A8Jtc\n2eXbS-qG2GA\n57TliyF8MFI\nfLxSRdnGucA\nVIJIbL0ujtk\nKeTBqolcrO8\nE1N0IvW6HyI\nilR3_PaGoJA\nUouRrAl48-8\nYafZPxB5DRs\n3WNqgV1M5Zs\nXawDF5UDgXY\nQqY-Ikm0kc4\n4U8n5Kjd0LY\nhoHyqSZGPt0\nOMMs6m-HIxM\nAZLoDR3AjX8\n3_giBWrUYKc\ntLUrEgC-Dd4\nHtBebT-rKeM\nexMmixM3b3Q\nn5_WG3WZqVk\nJwfDV_Y54fA\nlqT20npvohw\nVje8Fp3yQFM\nfvBB1KK_VY0\nGo6nwid-CaQ\n6BsWrEwtDP8\nDF-ifsJZQEM\nqnNr8etyi08\n0tN0uV9DebQ\nr74QbwaIWFc\ndlYo5IHqD80\nPu3BkumJXpk\nn7mEYDnXaMg\nfBtPMUJJEg8\nFtM7tdP6UDE\n0-EcLwovpbU\nlIk-3o2CkM8\n6ZNNfq5l5Ds\nxPnV2392Tck\nkBEhz8vw2AM\nuwcJaUaVfR0\naz-Q_fYNZrU\nafW8dxL3qZM\nIdSgAIq22b4\nBi3QsK4sVVA\nt0qYTDYyNvs\nND-nldJc8kU\nRSm6z78KnxQ\n6QOqWyBhTVo\nOAhF3wWBxbM\nVyLZlTLEY4U\nVK-GL8zzH9I\nASP2K-sFud0\nNC756fAs0Hk\nl0Io_aXWgkQ\nhoSJVPaj0ds\nGU_FUlOapf8\n_KXS58EqEHY\nnET7V9DsWgo\nHU3C0Vv0FeA\nS48AVqtonXw\ny9DslHbBubA\nMKbX6ilLdRQ\nYc1M82PB8C4\nyOJ1gWVYB88\niqRZb8tveM0\n6c4QghxZ3IU\n9GFz8aB2BVE\nfgxnajrZN9s\nyefj12M8xkY\nkCmyVaHZ4Is\n3Krkeuic8GY\nQpGGSlwgOPs\n1_RHhfIc5iM\nQ5HNKhhBjcw\nTkeoi_cp0BQ\n-o2z2G3y50M\npPOcpk9-318\nCLp_t1uhYOs\n505KGEuKbNg\n-yEB9DCX-Ek\nSIQb3d-piF0\nRNXEflQuWsU\nfU9nP5V2vw4\nGt_pfAghaHA\nx2vfxsdVhaU\nNbl6Y076TeQ\nwjHd0VWfuRU\nq1Pz7ppcuJc\nLmRLxta5-4U\nJ7PnM3ji7uA\n8ZDX262xJvo\nO4aMxMg0Vn0\n2pg_Mr4lIoY\ncLTBa54o70U\nLldI0SRzJX0\nkghbSGoV1kE\nqRAE0UOMyB8\ndZgbeIE9Xbo\nH3ZYf8ECNWU\nIIn0MEHnMC8\n-IZv4Jfl6ZQ\nOYwDIrdkJ3Y\niR-4e37VUPo\nkuXEfuC92Ag\n0VYvdsrV6Lw\ncIiMDK4UMQM\nH60kzF257OI\nyGPikMkqr3M\n5abHHDWcRAQ\nKA-LkJdOzHo\nq06t8RTLqMQ\nig80r0pbEv4\n8JfgfdHNkvg\nuvUH_niF-Zo\nesrBtSFDlEU\nXy-cq_YpYPg\nIB2eLqqkLaI\nJC2eKssXavo\niRIxb6_ELNg\n_9ZdW3KXuMs\nACCoL8xk0Jg\n8n2vsSHAs0w\nuONmjd_RGk4\n_VA5a5QSYYA\nGXZ-NAPnfsw\n3F_Jlo1A4oo\nnKB-Ij0vyB4\ndRTKQQtFoRU\nWH9nsFQH6KU\nJf3-qH7OhmM\nhiq_FE5dmWI\n3yp-s7ia9iQ\nlsxZwAnu8LQ\nYp6X2N7tcKQ\nqFcIW6TtVEI\nDnKAU918UaE\nJvtwIPa3c9A\nkoWFIhw94xo\nfYvvenxELZA\nQ1yT_LIMb30\n42asJ9x0-po\n-BUI1BdZz94\nGrWqq9ukRY8\n9ZhgVCU6ehk\n6RAn28uDZHc\nVbrKHPGdDT0\nc-veUs6bPHY\n9gQIJ4id6pg\nKv_9PD-_akA\n1TCzcINB8HI\nvJ3TMzKciS8\nfPJQ4T2TQ0E\ngY7e586vhzo\njEXEQRL2oQw\nIiIwhalEAwU\n9NqWMjMX548\nilfv_YzaP0U\nmWdqcBWVurw\ntdBNwAJMgW4\n4cWDWIgBXrw\nZLFDR8pvkf4\nSM-1QC6F1-k\n4uVgjb0gO9E\npW3peNmE19E\n5w8kGvQ2j5Y\nlcns0VMck7s\niVpm6-9dPYs\n29KrhW9Ft4E\ne50yvXvkaeg\nqEMbpl4V-eA\nKS_Doe-4fkM\nUrf145tA2SM\nE54uRkIuRDE\nqmGHg5uJ7xU\n043UFkOXvMo\nOrjUfQFz_os\n59R3QIB6NqU\ngBjOW9luDWw\n0qeD9nc9nwo\n_OipkhcxS10\n7_OiqaOaeNc\noLVqE13mMps\nQF08ozhDX-0\ngljJhOFXrUU\nSh8lx4EXs4c\namrMaNtgMl0\nSmp3RNfgjqo\nqBCb0lSh5u0\nulLABtzLz-I\nirjKC9_1l3o\nfrqWSqg35iM\ncX0S8SN8Cmk\nW0_4w6GsngI\nKocw_F48CGw\nIYB9NFCd5s4\nrChS9MeLW-w\nFfIAWygymsc\nIimC6oXVZpI\ngYhC67R4g64\nMdTaJDKTgUc\nshogibE67W8\ncg-wxqxxWs4\nWzt_d8eA_m8\nAqTaIbDTNnE\npsDnYKqgVT8\nUQzUOKKGfLs\nBOaImgyr7mU\nHRbf5iuWZt8\nwYwlDchIasw\nn16wxs5pgvk\nc_7V6VgIvTY\nAVMAbj_Pbnk\ngJOWAISZDhs\noxA2tQ6kfdE\n-AXjzZskE9U\nd7RrYVI3Xw0\nAw1mnorjq-o\nzWY-GWMn4Ig\n5EFH9AmTg6c\nFmGg8C6mI78\nHh-QeqsDXKI\nmfg2O0A6L4g\nnRq905BT8HM\nM-HCaHXzQRY\nQt5TuFHZh5E\nFwfrVozwn7A\ndl1X9j-9Lbg\ncliSp3FNprY\nV9Ul46Dj3Hg\nPqGuiXKC320\ngZSxqyNDZvw\nKp6aaQEK5y0\nrV4DxcJOCLs\nhw8D5KSx5p4\nqIleHfrMWWE\nCjyutBNjVns\nwSKGygJ2-oQ\nY77zaw13B_8\nL6FYDW1TC4g\nIqOqMdra3rk\n_pEz5emBI4A\nfy-PoYl4bQI\nGbW8sknTWZ8\nnnJW5FWg9oc\nIvKzfpZ1GUw\ngnY0vVF0j60\nkUAXs0LhD6I\n7BnAQgS15HY\n1QDmLu5a0nI\nw6v2DUJi-C0\nfi6U1d5eW4g\nf7utYx1vcM0\nAHyK8eTGHNs\nkaQPejxLNRw\nI_mYmJVMef0\nbSE3gq6Sf6Y\nsRqeX6qMlak\nU9nydZd_emI\ndCxgKZ5QV5E\nG-FYkB9M72k\nDLVfYn9pvwo\nFwi0bsJ5F8I\n2MtY0yfM0nI\ntBw_BTLbjJI\nliK550asDSw\nhohZbtTAtRA\nVrFey4EPA8Y\nwF6xVdnFJho\n1z2AjhGr9XI\nMEdmiHCUvYA\nBRWeoTfbbbg\nif5npkJHfik\nuCCrethRf3E\n2sFAyhjR8_o\nLrTMwBugt-Y\n938jCranAMo\nZ58VID4Qjf0\nNvxttHABP1o\nskuMakhGnn4\nptiXfr5lJl8\nUr4Pg0Jyph0\nDFEuw-bNldk\n9ZvkGoQ1dSU\nU6PfGIrWIak\nFlyWwjIuCeE\n0PraJ0mNgUs\n3XPzF1azIkI\n9aHj6prYd54\nbtWDXgrF-bo\nPtgGWFzIQq0\nz8Z8Qx6-rPY\nbolHm17q3ik\nbHjHDiu2UR8\nEF6ss3d4GyI\n17oDZd93a-U\nUTAZimUwzCM\njHessqORWLw\nU937JR-ir5I\n41IWZRnmb68\nhLrM7OaMTGg\nM7iC24MaxxI\nbqPbkGVa_wc\n0g39c4d1fKQ\nifS04il68Yw\nC68UZJevw2Q\nxs0lwxmTaZY\ntbjTxvs1nPo\nDOl-8LrZapk\nOKjpAsVT-8g\nTJIWOgCUdGE\nUvNE2bjUfC4\n4xpGjslC5Vs\nR80X3_lPzoo\n9IMNpGeSLT0\n9QbJu_68yS4\nCb1Pbk3gQSM\nEWBVJF9sSPI\n0zyVlsLgJ8U\n4nrgeASou5Q\nyxnFEjVMK2U\nYmMAmPFhSqw\n2QT4mFNVyzc\nxJzCM_nI2mM\nGV9TBb-8Kec\niGgiGgeCwM8\nzyRjUeY6YOc\nBS_wIUrlOPk\nB_UjiJy0t4c\nhX5s15LBHqo\ng92cHdRbgag\nZ519Bs2Kidc\nuJNHr8QQVJQ\nRxn-KDDZ8RI\nQX7j8pCeD7Y\nh4SMndWj5To\nFYDwyb7CJxY\nvT6xS0mRapg\nkhz9zIg_2sc\nsu2njbUCQhg\n4BRkb7LhkUU\nomiio7SJIOE\nNBh_b2SBDHs\nvQyK7Re2-Jc\nVbfjIg31aE0\nMwk75Fek3qs\nP4-obzmm_T0\nt4qrfjEgdt4\nuLYYXvBlUgQ\nspu_6dxLcok\nKdNQBaLVGfI\noBtG0gj6MxA\nLwdlYGPcikE\ngJyibprvYQk\nc71vLQPwjdU\nNBTLvFg_ve8\nwPvJ5OJ_P18\n10Q3mew9R6A\niXyfNoBlpjA\n-KvWckPXGIQ\nXI9RzX6Xvyw\nIHPjxbcPnAc\nty5exYQi3wg\n4zULAL9VioE\nPu54Ka5I6lc\nEXS5TiBYESk\nCTlALiQtH5o\n95XSvfimW_E\nMfmOj8Rqcog\n5l1VEIQj0vA\ncCn4FUNWvQ4\nd9N--iGGW3E\n8IXVGrc3uOA\na_4TTRfXkgk\nZNzVgqv5MtQ\nZ09MpDVYWSw\nYa2mPO0f-uk\nOnqbwlqk4G0\n3chYfqAbqow\nAcNkJ4_bQ1g\n0yc0knpkAxw\nWZkuKkPQjbQ\nAzGePmv0GD8\nqp27BT2g0BE\nmdwLxOK7xLc\nXNG8wW6Ffw4\nOIyluGsy-zA\ngkEsrZpCdOo\n9nrVYO6LU6I\naEpa21af2j4\nTY513V0RMgw\nAHHH770W4Wk\ni-VeLFEMeko\nv2KtG9kFZOI\njx6Rgn1ioAk\n93Z1sPjzz8w\n5lqvuMwYODI\nvhQ4S5ajwDQ\nOxzfUI1wSwU\nTfxoCicKvCc\nq7heVIEyvQ4\naAWIZFqE6L4\nlMrKsKQWrl8\ncyiC3x6-Kzk\nN7iMP1tPg7I\nfeeIOZH7wr4\nifkYHEoe6_k\n8WsHwXs_aq4\nxvvx-0G7XHc\nouppQFx3v-I\nHSfxl1KI6y8\ne1DnltskkWk\ngcZPWkNY6x8\nyzb726TP-OM\n3i8eIzSeC8w\ntrxN4ftuxKQ\nVcKVgWYkZa4\nC4MVQby0InQ\nDDYj5ChFwbU\ntp7ss_bTP4Y\n3a3zXJ7biqI\nD9khHJTztKk\nup7I_0JGTgQ\nWTw51Ynkn7A\nNg7jUTiM21A\njXb09CCPFO4\nNUXt-stAcRw\nFaSlQP79M-M\nAKMLjQycW0U\nIIr2CCwrYbU\nmZwKEa09xTc\nDcaV2VQgea0\nPWN2ntVDwoU\nu9A2CYMFfNo\nd7V9liYn-IA\nKcHfK9kvnvs\nvtjCVRm2DAM\nQTKNzDn8PzA\n0x6LPfRGAL8\nS8kPqAV_74M\nLBBni_-tMNs\ntVRPz6-Tkww\nxHO6nBc4YFU\nYFtHjV4c4uw\nZOoJoTAXDPk\nx2WK_eWihdU\nPvMxbRCBalk\nrp4nf7xR9Uk\nBahUC3EFWXA\njYID_csTvos\nppWi_bhS2eQ\nKrDck8ocFu0\nmdcXOlUMfq0\n6mBFhNSqBk8\nRwyLbX4uOS0\n9BOOv6NNnP0\n6G6Z60EPieA\ncwJFMjOz_l0\njKXg2eMaNXU\nNL7nLSSSWjw\nI_cEoK1mXms\n9-qk52E7zj8\nfCbf4DjlHuM\nTrZuYfti-pE\nfWqnZTTRkm4\nJnXi3SVJXbM\nuGsWYV2bWAc\nrIr6rEndy0A\nOLvz5E61UNs\nKQM0klOXck8\n2sJx9qbjetg\n_Mk_f75TS1A\nkgRlzeYc1nk\nV8K5d3pEUl8\nkGViaTOfSow\nTEmvPX06cJo\nzV0rK6KXfwU\nl4L9Yi-lXbo\nMnMZeDmfgmU\nETTsJggQl3I\nsNom4k5Pwb8\nRWwGXIjxbnI\nEajaioMj-NA\nW6bT7Y-WfoY\nQsaG8rJGlyQ\nr1S-yBBZsDI\njYrKqg2TqUo\n-nX_jQxWFN4\nKqAIrFLuymo\nGG4VDjXtt7Q\nYbcfcgX2U3g\nADmX9eMEV9U\nIj79LQXZDEk\n2_YvzQoCG68\nns-qtoxnAS8\nUdhxL9r9hkg\njn8SVc374U0\nGQy5xztHVPQ\nEEjI0A9iMow\nlDRzG3mH-DQ\ndmL4e3jljy4\n-TPRG6Yqzf4\n39mBogAVAQc\nMWkN3akP3cU\nc9FCOAEPHHM\nYW3MIixEps4\nwtMDZyMGKe0\nTYmMagkfjfI\nyy6j2LUyh24\n-xTty5scUwM\nJXEpQzze8Wo\nrMWZUV287WA\n1c8XLJ9MEhk\nZoAlJJb4aYM\nHVyg4MchBYM\nOToWh3nrWn8\nZFofgS_iQ0Q\npgET7AHDk6Q\nobxWLczHe0c\n4cAxmhotNbI\ndxqJ_k_uw5k\nzMgKNI5A9ps\n5gkiHLA4ZuY\nnr8nHHg80CM\nCTwZmJronis\nSDRcCeWRVRA\n_2iIyoxqN54\nMrboCh44XGI\nyEQtrdTpJFU\n-TWsZukTS4Q\nX-3TvjRKYPI\n8V2XD5XS9Ys\njJ4zpJxcw4o\nar5YGIFyEUY\nZx2SsdhKqbk\nuAgvdtpmXBk\nwowXQ9ZrN1w\njQKx2XTcd_I\n6rl0rXHWtbQ\nTBKiHfVkYCY\nqFL0bfzriR0\nhFJlpOjXf9s\nxG7kLQh4Qn8\noeCRY2mdih8\ndarXVyyQUlc\nUmNPw-PeG8g\njmpuAz59EbQ\nbHTWme5Ks9g\nt7OQIn7Yuvc\np8xEvj1w23g\nNXXS-UOKbao\ny0jPHehx2EQ\nd4WJ0CGGXo4\nYVHzS7B1NbI\nSAPvfHqWNFE\nw6CQUyyPvAw\nm2dMEucbXIA\nVwd5W0M3ZC4\nTvTdzkWNq28\nBgDmIxfkPFE\nkYlPy24WJzU\nZlGg7QIlGp8\nuy3UaHILcig\nL25W_b8Or5Y\neD4l8wpbrRI\nKIsAH4rSGNo\nCaAtavKP0-4\nZlEXOzC6vqE\nQCzH42efniU\ndxlbeqeGkQ8\n7gFoHkkCaRE\n1OQl89ewXvc\n3gHqYddtmNU\n2TTfvxYUBug\n3B4fl7vqi5g\nTscPOjzk0hI\nWqO6vJTUOkM\n7RD-I8AOf10\neAvVe92mi5k\n0wvJETrNQG8\n3B_rRmkbA9I\nlkmpm4TeOvE\ndRQtjVzj1bo\nGKt6dCi-LJo\nC-iQldPiH64\nd1U3MyX0pmE\nGH4IhjtaAUQ\n6v6C3lZ9Ic0\nNaf_WiEb9Qs\nVnAR2qB24yQ\nTzatMfqIf3A\nACkEugMxFvk\nb2B7w4Z3uOI\nBsxYfYCbVC0\nCi82yWg-9Q0\nOaSuSnUJm3E\nfBqbMZ23n5o\nEsRoSsauhss\nGr6eFXNq5Wc\nAwFtpeX3V-g\nM-FOqHC-G6Q\n3osli3y94I0\nbXy8AgE7jBo\nN7W2F1GcD-A\ndw7d707e-EI\n3e7wbs_xfas\njj1lH26Ky08\n57ge-WVuEY0\nIgzFPOMjiC8\n7_ip79SGVLo\no9guyPNZglE\nI42_ESLXfWI\nxFfUAjUMVY8\n6Pkq_eBHXJ4\nFh-7WQr_daM\nQELMO-GsxVA\nrW0sXd9Vl_I\n5rEwN8tIRWw\nt15VVQjK16Y\n_eZeYq2r3tM\nFK-mY_mZAzs\ncacjl7UwuVU\nP57Z6LOoh_k\nrhTGE6TQdSc\nn3SrAOdy-tE\nbWr67LK9-Uo\nDk0roE34zLw\nh52b1cHKeJg\n9IzZsjED07A\n29NsPLHISNE\nrQVDhPVyU-o\neq3-F_738gA\nRaDlQYFo7eU\nwALbxbEBLU0\nsdc5bkFd2X4\npVjh7-4ux7g\ndtwfZd9KGpo\n4xLmxgd-AYs\n5e9vyyrP4Zs\ndQoqvTs4lvg\nMBjVMydv63A\nU2ZOhOknNc8\neb6k3SU1T2E\nqlrpmMPkRUM\nm1DIBnkwrp0\nlj59KyjwK3c\n5OMaEgJv-KE\nUCskICK1t1Q\nqowk8kRtc8M\naAtrw4G6Ino\ntGzM5IFK964\nkVH74eYVAus\nxDkGfxCKMKA\nuVZLcXAc5aY\nlohIAbjwCBE\n9nhbb-EhMYg\nxdXKP_4pbhM\ntKOX13gKlf8\nlIpUIAl6ltw\npwr6OtkCTiw\nndV1BsZ1q88\nkPVaohv2-ZI\nTeL-XU97qyY\nZPKEtczECDk\nNr1FMis9MiQ\n3Z2NklQONgc\nPSd562J8ZFU\nwYBcBpFZYF8\n6zAcU68P0GM\n6PJ5GsyOt7M\nvlynd7r6pLU\nPLOMwlZsSYM\n2LuJ9QU-6X8\nsmNgpBRjuFs\nKYQjUOjBx0A\nsyi46NOW2Fo\nZur7hoLFsrw\nIip4iU0wuAU\nE3bgtIIw9JM\nkpsUc7HBCoQ\nPNzvucMz1t0\nJL9cenVTdOk\nFNdcZckBm2Y\ncz4XgiXhVOo\n_U4T80Jv9h4\nK3xHM2hrV6U\n3z0t0O6ZIPs\nU9bgSiDUqtg\nDqpPwu8MQ2E\nCr313z3sY6k\nBU6P24jMDLw\nytTswOdw54k\nRdp3LSS_czA\nsWTHIrA5L1o\nHuYvFH-he5Y\nD_-VW2paVeA\nKlNmtsP9OHQ\nvQWF7zqozSI\nqJodFL7bxXg\ndHLDknvGAn0\nWcRpuNfGtXw\nXyd6zzq97LY\nnVkMrqrZKmc\nd6mZ4guAJK8\nqntho2Y9bLk\nGxKkfTq41zc\nC4o-zcihGN4\nBnZTj4nADDM\nC5-RnOKEZ-4\n-2kcu-IpfoY\nwfbdNtfo7NA\nrx4BjUnPGss\noGKr8bdx_5E\n_kz7e2_Gxoc\nReAGCpATawk\nrRGfnT_LUBQ\nwuw6lFV1rRs\n6y0Uh3qzK-g\nimnkiyOsu_g\nd76CwsWbV2E\nNOMdMmQWgjQ\n-hqNz9Ve-Hs\ne8i7WCXqJ94\nZxkxWhiTQnc\nPAxy4zrKs-Y\nVwYovLPAX0E\n_z7q7HzR9G4\nAyNEyYnJ_ds\nNHoU-7e_tw0\nlWSPwOvJSNs\nKwmiEuEoY6o\nw42uRnJwoIc\nDiCQwUtulqs\ndS260nXz5d8\nTiupPnshH-o\nd51kNuh6K-U\n7gdtw-l0GqQ\n3cmp6g1fbhs\neltUh-VMAKI\nTxhfeY6M8lQ\nDEJ_XECWRcs\n1iJNC4ty1Q4\n8NzL8n2GEC0\n2mo6oM4vnWY\n0huG2wHLCGA\nNYefwzfGRWA\nPnpgz413Wpw\nMsMsnCypMuU\n_ZmzCV8muyU\nYPmYDxnmGnM\n5iKhN22wsmI\n1rHtYKAv7Vo\navB-gC3PO98\n58uMOyQcvms\nTFmga8EIQpo\n8-TDW9Cm3TA\nd1VyT4mI-8g\nyr8bdlI4Moc\nPaMAFPMi6cI\nKwsyI7nWrG0\nArXhfCr-vb8\nfw_IEdXIuYU\nFIKDkbVveeo\nt3TniZu-fk8\nMSIAnJPZeaY\nV5Rl2bVxD2o\n-MG8-wCvzpE\nGNw7aQdAfcA\neQhNOc_Bo78\nkqEj45pk6aE\ncHJd_bAK9C0\nkJ8_sMrSxns\nKBfD-4BCMR0\n_cYlrtZSG-c\nWuwev3p4rKs\nr4IlzPnP7ew\nb2IWTMJV2cE\nYNJflokcnFI\npDzkhDjTY64\nf7q5ce9Jwgw\nCY1lL585Gjk\nmbWtLBLt1ro\nqIis4kiGo6Q\ndkCUjz7I36M\nPH5pgpWY1uE\nFPPdbapD_E0\nwmFhHU38IhE\nk6TPsaQRQus\n6-NRVtIrrEs\nqbYHRU551nI\nVsLlPXjtnVs\nba-U_sXRFqg\ns5D8jf0k_1k\nna_Fzn77bBA\nm2Bf7Viheuw\nJ8tCOzttKMA\nH6NlpE8B0b4\n0xW-3QH_WGU\n4pVd11CW1qI\nKxMHqnKgF7w\nPCNdV_Du58c\nLEwJNM-Oj7s\n2Gd39qysshg\n1DA-nWsGNTk\n2x7aG-JRlCE\nIfJuol_Q-jw\nortccjAUofU\nzip5M8y42fk\n9d6eWkYfjsk\nLFwCy1HuMCY\nZiyuOaPD0eM\n89PPmxL-EVE\nfn58yij7rxw\nUUiiyiX_STo\nVlS-HHdayMU\nQEcxsTjlIJ4\nxdNcrmG6P_Q\nzJuMyRu4kkU\nTQezxXB6TYc\nG1JAVVZ_fMA\nS7I9LpgwS1w\neWjLy8S5uyk\nyHR-TMj88tc\nTI5XVZEwtiM\nHia2AZPMH2Y\n6EY8a5WbtLM\ngkEZQDlj6OQ\no9W8bxAxvvg\nN9vKzv8jLw8\npQEsnpbMwEM\ngDymr00KVAg\nEQP-k2x6Yzo\nkBt6bwRR7ls\nrnm2leIC_5I\nMGsGQAu3aNM\n3WCcFVnEKh0\nGbLymMUHlXU\nxs1kML847Ww\nws9--JaXKcg\nb0ydPnxtSKY\nQv3wA3MJnJk\n9QIPuX7vf1U\nLPPEPzpSzwM\nuC74Ix65Aas\n28wFNLwZpAU\nbqOMJ-Qrg1Q\nMteufVA29iQ\n2X_LdH71B6I\nSNdc9-hv8co\nQwQ7gl5N41I\nxGvLjaA4Zek\nJR_yxYYp8NM\ndwIgQqWOKCg\nF_qsH2om2VI\nD0Led4y5r3I\nb-4JObBlWC0\n-3A2TNWXDXA\n70ut3wLkQmo\ngPbn1uWQywg\nzWjlFN5hO6I\nxA57pKdLCbM\n2HOwFvWBZ3A\nw4iERLpYmzU\naLVn2GWY-Ec\nlJxNtmP2Nas\nrfYZT8xR1Gs\nQN7he2e5qq0\ni27WEap2cLA\nthG4yP1OdgU\nLI-SbYy8hMo\ndO7tQ5fXGCY\nq4lM2MGiS20\nPgZp8EEzrJc\ndLcQb08EVvI\nUT2YmXPRg6c\nuBIAcBKvF28\nCJHV8XKftbc\nvm4p1tZAmEw\nnVwOCEibZu0\nUf0P-Ezxg5Y\n0DTD2i-pMl0\nPmoU153vF3U\n4p7hZ2WJXHs\n_dE4g2x-Ing\nLFinvO6-_T0\n4eLsFtya4Gk\nU72Ap0dAveE\nweUbXakK6Fw\nmeBbBnp3FcA\ntHdqS2Vda8Q\noj0LXmHzUoM\n4kQb8kUDq5o\nXeZkZIt0zqA\nhBpNWBQZK4s\nK61WsiAs4rE\nJe8n23QMWkg\nlWvb6U-KZds\nQiymXl8HTlA\nSd6LBK8KhuQ\nof7ZP6vXAPo\nuFPINtBli58\nP8JnW9dWBRo\nbvRS9b2nhh4\nvKZhOw3Feo4\nnsQtI33UbGI\nARdTVbhhy84\nIToYFpzH0_U\n_wAG98wcrYc\nXrxIR2uja8w\no_KXbKa2crI\n827EAYtM6XQ\nWfUTDlmLMFk\n0_avQPM3L90\nifjmJHoUzc8\nOJZhDHdlk3w\nqF0CMv413PA\nalQVZ9YxUJw\nF3FrLQdbyKk\nazYL1oPxMGg\n6xU4PZNn6RQ\nZK4Ly7Ij81o\ngfXVOCNMpMQ\nAhHM_fCLsIY\nF3peN7bOfOo\n6Bg4HfBsmAU\n0vI6TtIP4t0\nObf7CnOmBak\nkEwJ2uBX7sQ\nmro3v8ZZA_E\nHfoa97N4-4w\n7GF9Ic-yNcc\nRXvm3oOIG8k\ndujvrGLRTlI\nsPdJwBfuEDc\neJ6y8TeIeAM\nS0IGwZy9_xg\nWyW86PD74dA\nROUu-unQieo\nc1HS49PeMUM\n_zlm3MXTK-0\nY9ewiC2bykI\n5e0cFUGyfzI\nDwDzyVvtR9M\nTn6y5TARbnQ\nl_4wAj6Kx-k\nh8QQbFolJZI\nOkR9Bp19nKs\nyjm6WiV1bBo\nIZ3BR0J5vvw\n7Lsh9PH4cn0\nA7ZmPaAVJgo\n4X5-zcyQc7U\ny59dykC47mc\nAgbKPzg3rAk\nNXRbXCIjxR0\nEATS70yNA0E\nBxQMT4R51Dk\nusUO449hUXQ\nQ-BviNtL0PQ\nYzu5yxVl3yQ\n6EP_KsI8k8w\nDwrmKYIuYi0\nxUllXfNznIY\nO0gse4WDTrY\nVr9OaXD19JY\njuik-nkFIoU\n6kw3u6O_SxE\nuaSkuUzEuq4\nVwvlEZJMbg0\nTVfHmkZlp3s\nqhc9YD3ahAs\nY1Q93Zi9_kc\nJUbVxse8ZrQ\nDedlZ0Es_dU\nsLB6_-ZNR6E\n0woPxIfjVTk\nrf5MnH9pG_s\ncbulyV4O3qc\nn7DQNB_OKZs\nQxFgIsrvJR4\na50LKwRt5CU\nV2j9MRkQE78\n4xLBhHfpKTU\nf0KpM0-h1CI\noiYIVQm-qvY\nAHzW_z8rUyQ\nmXEgUS1i_m4\nCOsMa1MQIVM\nn-WzTlw0scA\nyX0WnX27tJw\nBmxi1VgTb-I\nX-RU-b4OyuY\nQynjN9Nzr7E\nNCCUGkrIfkQ\nzqIOu4ki5-Q\nmbGDV3lPib0\n_yqWh3OBDEE\n5dBd4x1yxaU\n-UEeG5IIQK0\nuEoCU5cuQA0\ndyVMPRxN0FQ\nbwcLwZQGCAE\ngywGZDlDv7U\nnH51jEGD7G8\nsSkwCIpxqxU\nFxCpDJ1ZAo0\nNodMkxK5ndw\n29vmOrsOjvM\nmYqUdiWcOok\nSakCFLhbAJA\ntWmPkmMO-mo\njfVzY0OTW1c\nX0NIR5-QiAM\nBcRIvgk2USU\nl4srSgqgncU\nB64yKhFe5Lw\nB00qOyB7CuE\n2bMvW5QUMYk\nLZo51T6e928\nvpJbP-sA1gg\no6bYgD2JDus\ngiXrOAZtjaE\nE2kt9XttAzU\nTURTkb6N_FA\nhBlhWP2N4j4\nZr0xGlPjTHA\nqCpSqCKBM-M\n1JyApnR4o9U\nylGIAp_-JK8\ny2t3XqFAjt0\nfCXWwJcplg0\nOxhtzzpoYBk\n-ikc2VldgSU\nZoFNL5lwimk\nzEdVDymxYQc\nBQ42Z2UGeS4\nDmBEdpsTwxc\nWX_9RZSjar8\nF6-7c3I_egQ\nzYySG-Bwo1Q\nb6W1FIgCADQ\n4tKHdEaBlXw\nkFJm_Gedi7k\nWBMHd6mCSP4\n9cTHj9NKHXk\nl6FPyq4wvuA\nz_udbrboBXk\n8-IbFKbycv4\nwgmwBXh6ExI\nVMqDBkf__xo\n136NiOTy4Xo\nIOXtBc7CJI0\nmwE7hDBei2g\nzySQRLbqyng\n4wvMWwwCRYU\ncSXgqTUqtOY\naDwNCyqgVA4\n-Fmvuy-4U_A\nLAvuBfU6iSg\nrQvp_unbfFM\n2ZhQWROtg58\n8AUEcXu2krY\n5gQUCqEQVLI\njei1Q_fP_Es\ndEjdEoovBR4\nH07ghIFjox8\n0u_qMyWIZU4\nV2Sa7ey52f0\nbHSnlMlFC94\nMaRBZ90WDYo\nrt8L4_lD-_g\nQpBfwsw4OaE\n8QZgJWf5aqg\npsHsXebbbYo\ncJBjSpKIRWw\n6EUxC78eSjk\nM--q4JZp5lE\na6DTqXLuu_c\npvni4Q-Xh7k\nmoiaW_zgh1c\n7VV6BZWittk\nrsHK7n7hVBQ\ncgGJhEgDgIU\nea2fcCJ0_u0\n6cwIlJvjP6k\nYdF7wSrLk-w\nQuVUH1lm8NY\n2wCqM6rbeWc\n5L-JTSGZQ4E\nF_EJsjP26cI\n0ynuAmC24_Y\nO3FndxKOnMA\n4qW5feZgSM8\nqDyiygLEd38\nT8QSGSX7joU\nOjxvPz5T7YY\npr335ddgcuQ\nHzAlqdHBZzs\no3NneX3NJ-I\n4BXpDgTVN2E\ngtSXreFMPpc\na8DNOaAifkE\nfGJIFMA09cE\n8sHaAvi0SJw\nXdUKcQsnS4k\nM9JQBS2Km-Y\nsguNMcMJQv8\nvV3Utpy9vCI\nqskwY84EXkw\n1MJg1718M74\nqqATa_flYaI\n_wfy0wdA2pQ\nCGX5n1pvu5s\nQkAHUSwy8Uc\nMP7SCUB0fWU\nfbc0TS1kJ5w\neP7VXLIgaIs\nxP_cM03sHgU\nOjZadIbLAIE\nslW61xrU17E\nJIhx0f2y25I\nvecXbFwYvPQ\nBhtHFyjXaXU\niJ7r9jKl1so\nzoFt-5SqUCs\n7jj-8TCQTXc\nvjSMyoCFS_o\nIEVDBboDFcw\nTIccuJuQg3w\nOMzGVY5_gpc\nVi5nIuJQVpM\n26-SvRLhthc\non28B5qrgtY\ndRTxXWB-lpE\nY937MAvxTZI\nTlnLO-nYFG0\noDNgxbWzpf8\n49LrC8wJLPU\nW6U80LM5b1U\n_71L2__mFtE\nKKNUjL6oLeA\nMw9Dc_MJF34\nuHmd86pWvmY\n-BhFk_mOlxc\n3ssOgE8RWSI\nMLFezSJBdC8\ny935w17KA18\n6EEradwg8aE\n-fIi-c3tSig\nRn2_vtaTLM4\nCjYxp2UFfL0\n6z6MpYHnbRc\nQPKFPLL4XQQ\nxGN5cFcaD5A\na0uMay4ExT8\nSyM4ctfYzks\n1H96OfI64Fs\ngFKba_Esjt0\nKNiplLivjQI\njGCY8thosNw\ndcsVnpHXXX0\nZz-mpgYNUW8\nYgdWrHFx0I0\nIkQ_uPNWp28\n6PpQk63iIWw\n82TS-sLA0P0\nFNLQdquN0-I\nI1L5vXswv0Y\nGrG6AZG-ZOQ\nYiMIAKXwHg4\nsR22u1bgrog\nqTUAF-_v55o\nlcDo8iV-rPg\nKhjlz5bMb2E\nvZW4Qk-wqlg\nGC_ehA6dd_I\nsqpSc2wwTaE\n6AW4O4ohXK0\nFe2CpAhZ9w4\npl3Oay3HDo8\nZ_9GcqiwxF4\nV6aDrQg-WVU\nW51M5otbulY\nPJjFb1RSFdw\nExGQSMWhujY\ntQPd0OAV7yk\nUL-ot8sR0P8\nwANxoR0GtCs\nMOO9hFCMw7Y\nZ_OVcsaEOXA\nHueqqIRaOQA\nr9RIcLpGaHY\nmVNG6xFwq2M\nub-t6RcoeTU\nODZ_xokDAc8\nKqAGFmus6_M\ninmQqyn5fhE\nJ2k2CQgmaWo\necuuc8AsMjg\nXHiFqBo1rWI\nMOuSrB5BYJM\nlrZAnOGjydo\nLPe-N0frxvU\nRQmCVPN6V-s\nMUVukUuF9tw\nvA8oTgiA5WI\nYrph2A1xc94\nbB-OwUZc-cE\nFsy3TtA-3NI\n6KgxpUSWsoA\nIthpPqgEteI\nyBrv-a6Nxuk\nL0oNukxzH4o\nXiYDPHi7Acw\nSJhnQPZtv0M\nFptZhFrVXAY\n11nfPZqT5c0\nzAge7cKvs9s\nh1UDUqeJh0Q\nPJeobOT-LGk\niucMQPRSNDg\n56fdoTQTfuE\n1Wk9V6yqmZE\n0bhCbZG80HE\n1LDL6H_on2g\nVfrbOQ4q_Bc\n9qzxNMENXJE\nlnNbDaNP-yg\n08_UIVttBK4\nXFYNHsSzMOo\nN6pHjvoxDI0\nCra_JviE1sk\nmefq68nHSMk\n-9FxcS46YmE\nIAx_10MJbfE\nOB_iV-135-k\nBuoqHpvCzq8\nmoxAGYR4nYY\nqMthVugT2wo\nIOECGWT9KwE\n1VXH6jctlV8\nAAmxzswlvIE\nNIOWsdgnNiI\nwm0fKKHMUJI\nsBACvIGmLh0\ntLujRN5bxVA\nuzDmyicwgnM\nU7D-kOB7-PU\nZqOF2mZJ9t0\nFDfUBxkDaWc\n3e7JKCUfrpo\nLy2Hr9qqp9M\nCRuiuuKONUQ\nJAG9oylpNiY\nPYTXPrmSwmc\nBAG_EkEcofI\nO5ExjpCtg0I\nzGDk38z2mbE\ne8KqmFe953I\nCdwdX5PxF9Q\nWSFqs9iugBI\nRWS6EzAkSiU\nDe9FeSg3WTc\nLdEwXHHohHs\nanAmUhhnwUk\nl-EWc6AcPvQ\nmtWSL_-mJaI\nf1gNWDY4gUM\nGkM4SQ--vss\ntSrLgG6rOrs\nMFd88DSTPgI\nKJFbhzrJxg4\n7OXf2fFCRB0\nFg9aUVqD1K0\nuE-l84hG_BE\nGARQJHyaBD0\n804UN9XPV44\nQOgqUHk-zDY\nJ_oIvRfVXoA\n99z-H_NEccU\nGkPbF_FJuho\nz2OoxzYqgNY\nCgZTVkjQwto\n7Z1PBPrjZPQ\n-SKfkvvtqN0\n6e3dn30X5D4\n7GLhXtUgUg4\nj1q-QWHUU0g\nL8TDBSlgFAw\n4Te3H4lBaBo\nNlqESIU9i3E\n301qydVqZzM\n9yoRcn3UcyU\nDaR6i1hQWfo\nQunxdSWz-Go\nmBLotJEfjDg\nZVpdb1HxgEY\nB7t6KoVULDQ\njTLsI2Z9GiA\n--jPdm57jQs\nRBBmO8dhn-I\nyidXeyTFM48\nfgq8TsyNTXM\n5nvZCMkXEFw\nzjwBNUXCA-M\nSmfPtEWejs8\nxTvdOjsJXRY\nFbmnqGqWgc8\nclr6zsehoTg\nif34bKbBqXI\nH07DuZQ-rLQ\nn75PgMSxAOw\nS44FXSiI--Q\nwnfHqnaM0yI\n_wpGttPSHdE\nVKbyotjwcDw\nDdGZ4WYTdHM\n1ePe7Q_zH1c\nHurQLHiIVcw\n3Tqgp93zs3Y\nlm7nrQTysm4\njx8KlhQBsvQ\noIC-A9h4cfQ\n9nabHwRMjcE\n332NO4_03vU\noVzqiDMOlms\n0cPmlvsRKhw\nYVrMyqmDg3g\nGfhTEwz56do\nbbuElXPp_s8\nSF887rPCz_A\nGBV01HnuTz8\nEpo3jDg5skM\nPBObihCz2L4\nOtCu9saoxeU\nPJFA-emTgT0\nU4iAA0B9fJU\nR5b0a3b6XkE\nKBh1vdpGWhE\nyFWgaAX2tCU\ngZwxRw15AdE\nSG4I8PHp880\neKHYnWepyRU\nOBd1rEo-iyM\nhVZ0Y8l14M4\nksJuTetxrDc\njs-337d3gqQ\n9ekHf_EMmSk\nCZ1wzoCOQ-Y\nji8ZM5nKsik\nR8Oo8hf_n9w\nLhVNDhQKhJw\nY4u6gpp399U\nhjoORS_zVWE\nIEDhXioCYdc\nbU6ZsvCba7c\nOLjVIg8OTNI\nPTCMc9G3bcQ\n8sQfEoUNxRo\n7BapYJuMHMI\nQCqdeiTnnTU\n9_OMUgTFQhw\nEC64kf5_Ldc\nqcZk7ketB4Y\nIEcxOcj3LGA\n65nUs0FyUys\ncqzRb7sAL9Y\nLs8-mu4kDpo\nYNdZAZ-SPX4\nypmu86_sKpU\nwyUDbbWIXS0\nxKpYBStDLVA\nOTfb7n61HIQ\noOeGE7z8PAk\nOEgLZ58Xe0Y\ngL0Ph_x8xmg\nqSLZflG9sUw\nMiT3ky_83Vo\nQWlbUhsTD4c\n2FtBOS5575I\n1fbxiPh8RoY\ncLjX-SEPnR8\nFNWBoJNTc1w\nWpOPOQw6nqg\nrC0lnrzU0jk\nrNAXkGt7rFA\nD60dQGS_qNE\nwFPtFkZHpBE\nnQkiJT2MR4w\n4MzZD9mNlww\naHlMCu3-R3I\nHzWikU7ir4Y\nFPIgb9k3cUo\nb9T64w0cdDA\ng5Gb7V5-pts\n9pl_3xQBPLk\n1nqF0ddDc8I\nkV1j2VYi7ho\n9da9FqZc8DU\nsc3H4UkkZgk\n36p5Jk_y16Q\nOhGVVnZZW5o\nik4LH5ksOn8\nyVRv5u36Huw\n0ofpRxc0GVg\nkq6E2hQ20wc\nRLUhwGLJhsI\nkewajS6fh3Q\nrRbF5cPxVIc\nsmxGSlqjZNk\nG0aJ4C7y9Qc\npwkzSfo-JA0\nqU5QbKnQHak\nH0UbjaTkx04\nfpdnG6Fm3LY\ndMg7mCGd3js\nvinDi5O-fu0\n_eqtVKrH-f4\n_jDLZyo3Kg0\noCayZiKmJBE\nCg5acxVn2KI\njocK7m_000U\n3jtF8hfimrA\ndX-C-8rzN7I\nhyFgMOop-Mc\nQR424o5Wch0\nwRRvq70yOt0\nYV-Ik4q-o4k\nZer3Rr4CwjE\nHoW8jQX83Fw\nLO2Ej4_42xY\nj8Zucea5rlY\nrOOymP2hx_c\nCCicXUbaalU\nqhMhfHHeT_g\nl9MW39UXFmU\nCsZUGoa3JHc\n4VJrMSbPe00\nLd6pt1jNCRw\nlD6hI1yKd7w\nCmkT8YU4jH8\npcV9ceH4UvE\nAMT2RwFFs_g\nBavTQmiA9mc\nfaMh6OYfuNE\nCun-LZvOTdw\n8QJiAK-s5a0\n7BwxSHs9elk\nfuEG_PSb_Ts\n8qaAKxJp0EM\n3dluAhOU1cA\nir1sVy9JLyo\n0-lcqIuVaR8\nVyydT8dy3Hs\nqDR_yTik_xo\nGP1KHL0j0GU\n0u5O2--9www\nz7coL1WcCoI\nS501ojiA52c\nMGwI25DNrHU\ndwykptqZBj0\nGTCKAy3buxo\nkDeUWLhm-0g\nj6oHprwdTeA\nLIIzjJjsW8s\nZ743dOLiGQI\n4YZy2deJstI\nKusSGPyXugE\nmrx4SwMyGdQ\nMCXx5saaKOk\nX3vQPmO3i7Y\nxfwBwk7k3Gs\nF-LlyzCIG6I\ntcIaT5D4Iwc\ndhPSvTyGSgs\nqNkP2Y5wme0\noZu2JfM2Aq8\np7cYf7GaXgY\ntiYXgCsoqaA\n2vV-8TyFBTI\nBkvVBZwXVhg\nPlBpNTEaRTI\ndjv5gGXEyXo\nqRnjswr1swo\npiOTzME87Dg\n61XUb28jkUI\nqqX1d64OcvI\nmtkuDgE-qOI\nKrwlDh465HQ\n_rGPOReLRzs\nuXGr0rSGz0A\n5YqbUhVM6Jo\nbiFZVekspJ0\n6xD1JRKscGM\nCXoJegmhbI4\nqIEDFvdDbVo\nUlqSJeiOYPs\nkal9JZpTFJ0\n6vSWuFYVbE8\nEtTIxHlaue0\neLyhRYJXf1U\n7U3F1uDBXrw\nrJCltwaUrXI\n3VKQkg9cpio\n2ed_jTFrZkY\nVMU9Yos0mkk\nK40Gt3dk1LY\nmI3QaSoJado\nfUlMUkd7IWU\nWjyJ_ZUEMEw\nRHUbiL36yjo\nDHzx2P4x63c\npQT-QFy5Nig\n3r1ssg1LIt4\ndslpHxTuA-w\nIV79EIZVuHQ\nzy8dUJEOqos\ndk3BfcWrx8c\ntULIFKLFp_w\noGxBx8RzzrM\neLrwCyXUOLY\nbIaFHqnx6ns\nVnrIuEa7ep4\n7n8QlEg1k8A\nWN_03KbkRdM\n-YjwJY6m9k4\nyTeJ-41Tl9E\nd-HW0aPbfIY\n7MQUQQkzNSU\nQB91tB_5u88\nXdzp0AluNuQ\nR1dILTUMJQI\nrJGOCtlPzUs\nAA4zkmfbFD0\npyXdB_AYiDs\n0gBKE5MUiQc\nv3e2maV8MlQ\nWEfVr2S8eo8\nuBFxCK913PM\n7Vl03BBrGEY\nAP2kX2vE_L8\nXb6svoM3UWE\n-NtpPdMGluE\nwYEn-ZKSg_I\nsRKtU9FF-8w\nd8sDpSZeDBE\nj38t2lDi4GU\nAgic36OeXC0\nDaMf1FF-iZ8\nJRpouK0KmWQ\nj91DsC7XvdQ\nIxjYJayuWoA\nU6iLlH0l-4Y\nA9KjjvZE0Lo\ncAePzEGsP5U\nb2mm79vRuzA\n8OTa_eNimUE\n5VMWNnFoi2g\nWEQOeQBpxvw\nQB5379zBbtA\nX7futPJdeOg\nKsk7wPX-MI4\n2wnVCoeCXbY\nsHwRx4bc7fM\nFFtP2SGrQsk\nEbyOz1yJgYs\nkiW7cj162rE\n1E7f6xOPL3A\n4G7TTDEHl5o\nl84trT4b6yE\nfbZelII-89A\nuSNvF3CEzno\nTQ4y7GPeFBY\nqru3WdOfj8s\ncMNvYJ6O_Ks\nzeyaRxHhVu4\npa-oUPTr9LI\nHbA1YOueC_A\njc6_XgtOQgI\ngLYTObRhcSY\nba2VaalmijM\nYGeFi3Ap61E\nwCL3OtOzYuQ\nKIAzalQUui4\naF3x3Bad2Wk\nB0vKK-4qJac\n6vNGX3c03gM\no7WSgC9oGic\nwf-gIUYRCyk\nitHVWrhsRSc\nZjPiVMyfJPs\nql_VifCJG7I\nrukUxz5J7qg\naHix4qGIYHI\nweCxCxIIjHA\nLOACsaFA_FY\neKLKoFIrXgg\nmIZOUXRYVyE\nT4mRbRYaf1Q\nzWXZyd07k2Y\nuCjC3h_Gc5E\neE-FSOWD_ac\naUhex6wK5rI\nPzZHiGYjhss\n-OOTo2P1ivQ\nhBVvERsq-Kk\nchDaFqJMDeM\neevdCdOddZQ\nk5oJnFivwSM\n3zsTC5aeypU\nTBiLIqhNiAM\ncb9FUUFtJmc\nvYyz6nq1mBE\nLaYpVhckcL8\nlnSoyix5fA0\n4gAFIGnJ8zk\nLGoKKhQPggM\n0zHmeTeLgMY\nMbFux7_RQpA\n83LNTbeatHE\nZ0pOWMHRgfI\noKXV-XQzUrY\nU1v_Ed4QFC4\nKRBLeqsoRew\nCHnbS6ZthM4\nnWWSMiBag1k\nJnBh7KBjgwM\n2yhGVaVwceE\nddGwvveSXxM\nC7ke6vWUu18\nenJJeOqHbqE\nbMVWECam8EA\nKOXE9k1TX-s\nuDffmOSVnBM\nhJckGOSkTG0\nHOpLncx62oY\nZgsJGHxZxcg\nLoSLZP0e-M4\nlZQF83kf-a4\norgbJEoA7ak\nKOWckOfARBE\nxy6Ak1DYReI\n0zJpr-bB1sg\nVKFsmZhQWtg\nFv9_YOL38MM\nW6GjHSOtv6o\n0s0m7xO0S9A\ndxmqqCK2FaQ\nAEMXmcWOnwU\n03HGdrM25FA\nGq75bSHMKPw\nYpIkOtgOdbo\nZBLtiP24yTA\n53GIt1w0LYY\n31KYorrCgag\nsT-wJhtlMGs\naRmaCLDJ8Xk\nFFkQN5DyvXU\nmwAlagYhRV8\nHKXId9qgGfQ\nZTVR1PCRopA\n3tSWRJ3j9fs\nCOGBbUM8F14\nPNJ_FxaMYUw\nYjs3BLAsvOc\nFdxUNsKZ4T8\nbQWaXlsdyko\nsKfQGRwlm9Q\n2IwV2bHqqyg\nMH619vxtNdo\n8sClW0qW9LA\nRESwG23_YGw\nMvzZbUKxNdc\ncgXTRSSX3cc\nNCAOKR1jpp0\nBXqeQxRvQGY\nzStjjc7SBto\n3F8oJh3J1T0\nhZ8PfLIc8MI\nJexO-N39Nzg\nPTjIRQU_HdM\n_6O2sYLkuO4\n-xQ5nH_-yyQ\nArlsU2_cUbg\nkxBu82Dte10\n6WWdim-OLok\nT59ufBxosHI\nFypw_s62Q0s\nuI8lzoeTASI\nz1cXKdmKuV0\nuJPI1qu9bE4\ngI7UY6YCAoE\ndfrZp14tFjA\nmgU73GKlSFw\nP653N6uf3Y8\n2elellCQiAE\nbPavpV1D-g8\nyiRcSZp7tYg\n4iW0kneOMyw\nmFglGV3n5SM\nfvoNncvOHfc\nkvVlP50LSq8\nKjv-HBYitgk\nZml7qQpL8Yo\n926SVUFeJ94\nqOKE4dxjayU\nUbTBbTDjjHI\nY29DgVgmE2M\nszpq76d4ipk\nyElIQDAEtOg\niMP3uLZl6UE\ns-EheX9m-dE\nbFsgLhx9dxg\nONaPfzjl8qc\nz9SXvUdM_iw\nLHv4eHp_gUM\nDZqOhS2M-DU\nlhbHTjMLN5c\nDNZ5NXKtdxs\n8U56CTlGkx8\n9yEylIfDkms\nVSMKvHRbHC8\nQbnv6eHKjCQ\neyCCuHC08bY\nucgU2DJlBiw\nPDBjsFAyiwA\nWQEkAbLJ5L8\nkLNdMY1JlR0\ng8fheDIG_RA\nZx0ME65y72E\nkntQNeSge5s\nUGBZnfB46es\nQXFR1L_gOg8\n6HJqPZ-KmZs\nOS2udCdOuqA\npFriRcIwqNU\nB4zWUki6-WE\nNW2QM6c1wAI\n6nX0100wUB0\nuNE1lEBsBmM\nPdi_kASSsJs\n1kejVGS-5q0\nJzOSF71-kl4\n3tfI9tTzlI0\nm9rBv4Dn3Bk\nXFC2o44koIA\nlkq-Fd9TU8k\neKeTSR1yYfY\nVUG-5kLRjeY\nq7vtWB4owdE\nH1JCgM_LHAg\ndHPnUPFcxdE\nWtdVnmI_nYM\nKsGS0BJ49LQ\n_1F59-J8Iwg\ns4heu0mPm-I\ncLApJ5OJaLg\nXjC8-nEGnrE\niGig4Dk3tXc\naoPKajvq3gE\nkvhcXo9QzqQ\n8rsx2IP3HWY\nmWblxPany0E\n4t2pP2KLlgU\n1YBkXbf8dg0\nD1Sh5qIqc7Y\nTQeP6GWU0e4\nBj7R_2WWdKs\ng5e3qoREpuA\nmWq15lDh8yM\nbIVzK-h6qao\n1G5jMgx8GVU\nAGqdE1NdMTg\nCfAS7ONO8OU\nkJsYKhEV6o0\nqFNBUs7O-h4\nu9O_Xs8wAZk\nmbKEarx9CCs\nLwbFwVf8yoE\nKYUolurihOQ\nb5I94bT23cQ\nY3kXNEX1Ghs\n7bFi99Kojrc\n9DJWMVR_yfM\nFfdJdZ5_guM\nkFhIMrW1Yk4\nJuhTQwzizDI\naDFJMSlmxBg\n7pDEOCYPRf4\nf276MnhGqGg\nV80rHpEZCl0\nYjQP7xc5P8Y\n3-fzc0e4dD0\nWSyi9bIVryk\nF5eqkWRWZ7c\nfOgpQEngn0c\nBzb3rASU-pM\ndTr8dXob7YI\nuvIZ4ST6HqE\nSAPKjWHikzM\no_N-H_5Pvu8\nKjDfOAhtWwo\nuyj1CeZt23A\nTQSMmwQyEjk\nF9b76RWM7qE\n665wQwXkq6M\nK5IU4bPS_S8\nTq8robO5eJ0\nYSmSuiMNbDI\nsbz_Xq2aEQQ\nSGzmYFcravM\nb8U1na74Bcc\naQQsBjOrNMY\nP90noIrmLZg\nj1C0Tw80Fgk\nsYNUp5rAZJo\nK-xthcJWXn0\n4disuwEvw-w\nuzgQ_xwWlkQ\nqCv3989nvog\nTm3raIkeseE\nJB9rdCKgGuo\nNE0ne430gbA\nJc3GBDJ2sK0\nsUv04cGjaDI\nofYq-2TXzTs\nCMvdeSxmPKg\ntrGyimjcGRI\nTTX3bYbKAl0\nhOz9L1KrJJY\nWSUWoBeJ6dg\nseMHoTTskQc\nK-cBT5AxRrg\nisBwMtlWLeE\nUmmXGbFASC0\nSu5vMTdI0yY\nzdja5DSb2O8\nxw13vA86I-I\nB4xzP6H_N1E\nkLJCWb1apYo\nDwnkxpu0l3c\n6hxOoM0-NJI\nWtnTZSJndPc\nnfV87TgYH78\npB-bN-RkJLM\npZZ60jrw6cg\nsBDEE3_Z-cw\npX71mALOPKs\nDZN4r8p6KbU\nFMENQeCbxfI\n18eaNSxhK5c\n0Dy2fo6E_pI\nUKMuVFz3MOQ\nROxvT8KKdFw\nEtSPFXj_eZM\nsarN01WcuZY\n1tfK_3XK4CI\nZJOTrLdxCPE\nnJ98f7z14WI\nSgwBAXfvdFE\nj7EvXsSJHQc\n1tBCcfkkDKo\nO6ZWqQ53cJM\nEUtdnTk7wIE\nH0AnJKKwhQ0\nBROZYppqsf8\nXLScUvabSr4\noh3KwtatlkY\nuUPHlAbAf2I\nGDHVi3h6ZXw\nN3ug0dVCyeE\nSM0CkReuGMQ\ny8MWkDexzRQ\nLxuqbh2tjTs\nc8m6M4RV8p0\nhE3jShGPscQ\nBVrhE9NOwww\np8J-YmVs1j0\nC_4LmbuSmpI\n0mGmEE20CR0\n0lq1JIWQSlc\neFs_YLy3Ld8\nnBmNcy4zZNU\ncKewmzrevAw\nct-PElgfWJY\nH6XIREQHU8M\nn9L9jMlulXI\nVVp0l2Vas2I\nWs7Uj5D6354\nLSEkG5z7Il4\n8ARqfD6Wm3E\nlxOV0MYBpeI\n_ghkHlthIqM\nnKdSvhCg3VY\n2KtVKu9CfDA\n-EuO6OFypLo\nUCjoOOrgVMM\nwF_UpYqYJuY\n3XK2wqc1cr8\nZxpXrz-nEdw\npkfyn6mYlCg\nwzIwPkZkSTk\nxX08f3GV3v8\nOksadMMuXQ8\nTY2PGciqbg8\nNTaSvSldlk0\nKyh3foJVk2k\nok_8VGksYow\nGiRyIbJ7IFg\n9wr10j2nUJ4\nyVcieIZb3_U\ngKY3ShRZPkA\n5ITNMF0kSn8\nPQ-8JIzjq_I\nHTE6S6x8ixA\n0wsXkU-Crjw\nJbrBIbtupp8\nDxguAU_KxS8\nE41tGRgKxNk\n06KH47jZbG0\n1z6MvVWZfuc\nJjRx9IJSTMw\n8prXNxNfEpY\ng9Znovljrq8\nzy0HtNZgbjY\n6U6MOfuFX-Q\nLkxbuqvb5A4\nDsugPaXH4kA\n6_6Ml7hPZi0\ncfNzZre-sIU\nmzNUbT2sQT4\nJOBYJrVQm3A\nOA-FmsSdSMY\nxEt5dEOcW0I\n9sWnQ8y_M6A\nPQCAqu6koEQ\nghQOllvR2cE\n5ibO5kob3OQ\nnggWTNLFifA\nHf6qAXWkX6w\nzcgxBHBsl-4\nBP2zVb8Ufsw\ngnI8phF08PE\niseaUTEhwzY\nmwqxM-ccpNE\nKg0YrIiz7Sw\nNL812ag82xI\ni9DMpMCCxuE\nzFuw7sB1zxE\nfKeNgrRRoN8\nmDI2nymYW1M\nY4ZHPeyJ4ss\nSihfPA7vJms\nDuyH1j2jMRg\nCemLiSI5ox8\ncxQuvLl2E-I\n2Ee6xrIGhcY\nY-Mhn3xTlUk\nZY_uGAx3rxE\nAJuIYcVnc2I\noK1X8SfGMs8\npWGGQmeKdkk\n9-zf2UBp7fY\ni7AUpGXLDdk\n2bx4g-8PY9Q\nEmDQiL3UNj4\nm1t9QOSYqYM\nVYjyFQS3DWM\nkAi0cSCUWfg\nM-rbVvVD60k\nnby0t43dlIs\nf0eTISgJ3Io\nBAF9OAO4TtA\ntdCot34--pc\n773E6GPll3A\nvw1dPsf0JgE\nLh8dcvj-0NA\nc9wVzDytTFU\nG4YcCF8uLiI\nLSMl31b3OKc\nlbdeAhpIPhE\nMuTaXwt02vA\nf1fSmptANOU\nfIT7VMVju0A\nW2gTKUd1gfQ\nhnNXvk6sLvw\nqXL3aXIGIKc\n6Diop4IOk68\nbSDqN3UTrPI\n3fwlRWBtHLg\njutOpRQ7Osg\nrNPcxSp5a2o\nf4zl3CuJvt8\ny0iBQV-yyLI\np5lEvn7ejJI\nTe4G4EGjidM\n-RJ6USD2nEU\ncbzBwleJnLY\nllzXzUe2KAk\n3ThrlTaPWO8\nA59SQO2FvPA\nhlNvdfv76WA\ngAWrAQp7pWQ\nSZfw1S80QoQ\nomy5TVA-fY0\n98NAf9zhIu0\nS5IHNcpa7p0\nTm0oAv2moOw\nrnbDA4wKrg0\nbTeYncx1xmI\nw0cXyGVsUjs\nFKCmyiljKo0\n6DI_C-xXcOQ\ntetwGGL997s\nARUzoPWS4Uk\nAsBLdj7OyXc\nersxqFwDkWA\nK58cPYCTiPM\nlBeh1jkanrE\npDWR5RkWRTY\nGJP8XTzpOCw\n6J-PhFYNbOU\nzCLyLBrugD0\nYoQeksBRPLI\nu3XXKF0oDtU\nYL_90r0J120\n_oyt0p3Kikg\nA1HqjBc6LhA\njr60kvuKw3w\nY2y_dipI6_M\npgL4IvoR7tw\n21Vohd23VMI\nR8-x5ORZe70\naaU-KRx8Zc8\nbMtdrKIdDgE\nhReFx1kjuIE\nJV8lJEE1p0w\n6J8__fWphE0\nk8zDVhc4XPs\nbc2muGlQIlk\nYYV5f0Aqo4w\nYqf0AqAHhaM\nQN_Nod65e7o\nsKrpl-KBTzQ\nbS9N8dEdZCQ\n9IUZkug8qo8\n4MFzzWkl0_g\nk2NaHBVVYzY\nJVWrVCLs8ms\nAD9YlbnGwpA\n3kTQBCokfAg\njLvu6WNWzKg\nQIBTN3qSB44\nyiZpb7GPLYs\nLs_8cFgBUj4\nzLso3zVuBMQ\nfZIWDis34Xs\n7Lv6KX12Fbs\npTptxpcYySI\nbX6BKxFkU78\nYwd-UZnkfR8\nxx2qTUg_buo\ntrgDVhZHIrc\neCQIRkboAM4\nU16anbRFRyc\nd8WHOiQZGok\nZ6XIGZ51VMo\nNjFLXuCHUiw\nScHOVAo6tQ0\nI7MwxFdb0Ls\nBYoWNwhu0DM\nOlm0KUtsFE8\nNjN-PLW521s\nMbRhuUtKHV4\nwknywxfcE5M\naF3BXL1cQYY\nrtkI87FeqOY\nsKFlL_G9S0c\n-CgUGjRFukQ\nANM7_NTFvE4\nREzwusMDvzE\nSlyCtFYVQmU\nuAMrR05Xil8\nDMo2qyKq4_w\nq4RbzjuXB6E\nIg-Vf5-qTSM\nKW23B9uZBVE\nbWaxWtgjY1g\nwTz_kSiZaIM\nsUa29Kqpdn0\nc-tGV96ceBM\nbiYVl18JAFM\nkP6EOOdTQP8\ny6WmWVpvGqo\niaZzcRtmXXY\nwwE7qkkri-U\nktrGDczwkec\nPkOIMjJrl3Y\nTO0OWazmdc8\nXh1Ls7C0UrU\nM1fnkYbVijE\nw6RItV0ZDgI\nKZtF_gT3Sgg\nlQfG0D7wPKA\neP52omnnZmg\nQZjmr4_K8To\n-w9kof4SQp4\nmHJH39bjALk\ne8HRcYG3Ftg\nTWjtzvFrA8c\nnGWtzmsCHgc\nRehkdOxmytI\nA8Tw5xASluI\nUvtt94Oz4N4\nMLNvUsTBGyE\nnLN36pgwS5o\nRP9ywTd8bRM\nU4D0HSqKiKU\npkk8WIkTJPA\n_D2USWrWBL8\nkeQtOFycgPs\ni9dK32LLtY0\nlplDv1m_Zhk\nH7Y_mHNgnpA\nGCfWXNmFFbM\n86CKsczBdu0\ntfX2C-Zewuo\nPMtkv1zgi8o\nGvF4-C1EuJU\ntrn1aO8h9Uo\nVzpu-P2eRuI\nc9O1VVeMzhc\nWMX_DNeziH0\npYdjNeFh6zw\nfrMMK_rKwD0\nqFc_0WXxOXI\n1p8N6MlPDvo\nx0VcDfDfx24\nPm5gb2FVYRQ\nfNqz4AY0pm8\nT2Lh9Lt3_w4\nFa1IN1GN4Q4\ndvm7mLmAtTM\npYBo5eS5pW8\ng0s18i95JKA\nx-A6zERn6yo\nOJ3gsR-DqAE\n7vjP2EKf7do\nzXm6Bc3RuJE\n99UdqbS8q2M\n7OFROViP0J0\nVn3IRHhPXMo\nu3mupIlFIYQ\noRKbez1LpWU\nZ2WZrxuwDhs\njsZkkqLDFmg\na8FA5zBHiFA\nvKjBFsyYC0g\nDXTLoQyijJ0\n7xDTFtG9kYw\n01ZWXIY1mcs\nQgsst15iI2k\nMMuen83l-Sc\ngfLw0KJ6bLI\nziVJd7Fwzvc\nmRmLfuhXHR8\nQ9vxnIGIFXQ\nNEYwJbjyF2M\nYBc362_R2pw\n0qWMjgpIECA\np8CPTHEAfJc\nXZzaK0UZJ08\nk4X42D5Gg7o\ngW-Os5mjbGM\nzeKb7O1KtIU\n_ss0nT5DGHw\nJ2Ws0QEADsU\nHb7zhYzenhY\nD0wShZqevLU\n07FdVcspOfQ\nPztgWdMEJdg\nTfN-0IJACLk\neuV2U_M7RMI\nLLs-Oreo_bk\nomTBgliYDKM\nX9yDWojz6YA\nSQoNv-hzC_Y\n3p1rb_t2Jg4\nIN5zv7oMwwg\njniUBhuJSuw\n9mnLbhHR6-g\nsEnFt6neTu0\nMHzcc00ZXCM\nu-BIr0fW5cU\nZ1bYkHffGXI\nWRjPRZEg7kM\nnx002D9N6qU\nyBS-MktwqgI\nRngpf0Yluog\n44ZZN9BqlEE\ntzKEAdJLRfg\niIUzHUOdLhM\nnxdpR5oyCOs\nMAvccNVx9tE\nWl-C_I-ZhRI\nop6H61wRi-Y\n-i9Fv-znJx0\nsUa9WglkKCI\ng2KF7DAlM4E\nF2zTd_YwTvo\n958GzzqgWnw\n-4GsCEopbd4\n_4ezPvzKe5M\nKVK6yLqY54w\nBKV1SxfmeYQ\nVUChuDMVqvY\nLwpaOr1hVZk\n5ZXyC0SDHNw\nfEcClEBT6QU\nweHHBdmI_Jw\nBmLPVUYQM34\n2t2iFLshgWQ\ns-rl8q9jezU\ndX762k_3zWg\nbg5SLBapMiI\njcNFjpxU0E8\nVSDqDOLupNc\n7oQ-Usd7Tes\nKBUVZlTNj_8\nDY1HyTONAT8\nwNbKp6IGhrc\nzmRPZJp1pYQ\n9_sNsOl5uUI\nFUR11zrrNb0\nvFHYiOfBRng\n_qG67vGwgcY\npT9GPloXjA8\nfsaidN93VnA\nWjQovCr8Tgs\ngTAMKrPh1AE\nBYXLKRNCVrw\nyrLutFhQLgE\nFmiVlyAfTnw\n1M6oW6a0iAw\n7L2qP-xQ_7o\nF1SfzV67Bqw\nbBil15ORYI0\n8sJaglGoByg\nAJRmY9VXf1g\nnn3I6-DBLJM\n1wc_mZ86ypg\nt6wgyc8p_hY\niOHElDaRs5E\n9_4S_-cr9Rs\n2DPSnOrJaXo\n_IIp0gq_Jek\nIZhBhfty0LA\nYky4QtRX_DI\nZowmpbv1za0\ngRNkQRhMUiE\na_z4IuxAqpE\nkg7goEASO5E\nTKpXTy-sCxg\nZcQtUdZ5Afs\nNXwxYIjqocA\nkZgE_sUrXFY\nseqBLjTfnl4\nRUE4v1rUpSM\nxkNNB9f_3Mc\nxb8n4wftl08\nWZ6p4t3StSc\nS-6xoT5Z2nA\nZIOCaOpBGpE\n-EZ9f-GgWVQ\nhHVZ_viVD9E\nP_gn8RkrNAE\nItr0jcR0S4s\n2mz3oytpugs\nzAV44x9vVrk\nYAlZyCUJKt4\nI9uVquExMi4\n_mpyFEkzhoo\nq_wefCacDTE\nhR1XzVQnfqY\nCApLHv_NrAw\nariuokNFhSw\nA8wAYZAwQFs\nBw5UwRasras\nFnjrwacqDLc\niiA0J5rKoE4\npNJRoSfVZxo\nyMqQUG5t0js\nQL7Qq67AJrY\nhLQQfSmgoGY\nWbW8GgAWKi8\nkJg3GP4tH94\n4wVmrgVqQlM\nDZwnFcKAt30\nwBLliPipoYI\n9VAkRDPA2fk\nrh1lZYqwJAQ\nwOlCQYZWJRE\nC5x9bD6aoss\njl0ny6ij7jg\nVepWTt1DzTA\n_GxSQs0FNN4\nFRhGCEIB-4Y\nJVKMNw0uUGw\nrpp930f_fhU\nXqtjMtEkDhY\nfygiSfJjTLc\nOYlBy85zxdo\ndIgGZA4qQoc\nS-pHuT2666s\nXbSfFmKJJ3c\nJgmk5D4a8K8\nVLR_TDO0FTg\ndQbpx5Be5rI\nyAvJkoCNthU\nYedqV4Gl_us\nLnV_NPHo7Kk\njAZRevRbGME\nr9twTtXkQNA\nxJjCnWm5cvE\n-Y1lyQpBVJI\n4Wu598ENenk\nwEUwtFg7PeI\n4pYu83JHg0E\nw4liPmQEPEU\nyMjMgMaakMY\nDnfl290-aIY\nQxXRhbuqFEw\nz0BandJg8y4\nIMSd1IbxmFA\nVUGhvs8zMZ8\nneVOaWPM_Mk\n6-wvim2zLFw\nHSh7FRalwdg\nOl7EpMrfbGQ\nkK6QQIvO9gE\n73LReedA7N4\nYhK1fYhl5dg\nwqj7Q2jOTc4\ndl2NG3vkMTk\njPiotGz9O9s\nb95SzqTrjRo\ntZ97edZTrHQ\nkRg5-TIF9LQ\nA2QayxN3z68\nOoKpYXTmYak\nGnbUZqkXBQM\n3MzOdxCbTgU\nTgBLraZlGww\nAkR9wDct-0o\n-Hk2z0z216w\npV2XJZjCvP8\nyvcHCRvP3Gs\nC4Y-l40swH0\n29nIXG5KJYw\npXEqXWfzyBY\nHEU-JXcdfIY\n0NH8i-Q5Nck\nrPTis4f5DG8\nFJBpmWxw3o8\n1YCz4y8b58k\ne8Bn6XVv9ew\ncz1TJ4r7bOU\naQ5PyaHQWVA\n7SB16il97yw\nwP3H6lZ_mt8\n6iW8MoAsz9Q\nswhep7_jkeY\n2gSf5UMZ8ms\n2xB5GBvOqEY\nKIxetRsd_2c\nxFkARs9CHaE\noBoPQUIowHY\nreYcW3bp8gg\nnp-ndDy9YJ0\nRvNuTuiKyIo\nPKIpCPS-oZc\nP8Xg1vVkIh8\nb1Qxbu777zo\n4Z3s1fJgCEE\nFMFJli50jdY\nHQv0WWhoZnI\n8Kx0qYRv8XQ\nC6k9TFjWiGs\n0wVgg5t2LAM\nSy7YnrVXudg\nlFHLE24hDQY\nXdlIQCbOvrw\n1vJpAXf5wyk\nCAeFPZ-yXYM\nxA5QELbB-vU\ndQRfWqSj3Gw\ndiLE4umndNM\nyNyLTVFv8KQ\nDTWYQhTT388\nZYZsJYZVt5g\nF_EuMeT2wBo\nfbrN51dPm0I\nb-f5iMDXvcA\n8LFQun4HQj8\nHmyQDH_PSC4\ngz_dPVrciwM\nRYHaarxQTFk\n6XyUIXqIoAM\ny8svNN8saeU\nrxZc0tyTqEg\nuLquz4Iz-30\nqs1QcRTOMEg\nJF4EyXhZudo\ni3JbGwGNRI8\nQ720Fe7IDMk\ncgBAJefErZY\nEoBngEuWM_o\nirCUvLD1t5U\naBADjCeFnuU\n9fpDYMwJXQQ\nZsRDr3miUyc\nHhZ3H18ynTA\n6_-kw-0PvJc\nXk5epHF844w\nSxJvnJyF7xA\nOxCVucvlF1o\nwbt-sAOjnQQ\n-U_IRXhodds\nFgfe6pufnLM\nVMFwVNGGfBc\nsaBoM7O_imM\n0JXwzlRcYWk\nbllBC-ThwjQ\nLuQ6qCNwWY8\n7b3D5qPBrI\nKLoOI5Laplo\n7hwkR_wvrM8\n4hkg3Zut97U\n3SiGgXIYppA\nrl6SpFVJoUA\nBG6uMsq8PPs\nc-unYxWW6ws\nzVwWDprMFiI\nUKGE05RbsV8\ncgBz4BKSLRQ\ncYjv9uWxW94\n0fbR1RvOCQA\niX-nnY0x-SE\nGfoSukpWVos\n55X_DAk6K_k\nCtIhkGu6ahY\nf8_4uckfT8I\nNzfSLgWkTlY\nNq295Mg6PHg\nmVv14yZ1c44\n87w655s3xKc\nX6YLAmKFpRM\npDy41hvdq4s\ndAE7uOO_4v4\ngeiS49_p84Q\nJdfCyow-Tiw\nIsBB4i4k2PM\nql0DycjR8wQ\njyZU7lfGjyk\nY9yrupye7B0\nOwaxFAC6rzk\n117FZnev4Os\nDxRzEdg0p4Q\njgyZ7yb2mmI\na5SoIFm-SrQ\nlJDRkVKjMOU\nLD-DYjqW7HQ\n5dSvsp3dxvc\naTaX_L7msxs\n4_Anuo4_Tlo\n6ZcNHOP3wdw\nCQcGrzmNihY\n4hQ0ILw1P7o\nJRLNdcmRcFY\nlnYzb6P_1Wg\n3jLbKr11l20\nuLt7lXDCHQ0\n3TmzG_fqqU8\nLOVgTjeg4fY\nUFnmq5PPScA\ntxHNcE_d7ro\n2ETruidd5lQ\nhKSscAR4cS8\nHSckms_rfwY\nIjrWOZby8s8\nJmxK_pBaG4E\nz0ZnN4mivGw\nBFUVGfsVzhQ\nTfzRP1tCmsk\nSHgs3LFLBzY\nM57AIegsBz4\nwqwUdp5-2D8\njFPV16f182w\nAuYaiXT_1tM\nb2dewDwIQyM\ngcAaILQ0ATo\nKSRWc7zwzC4\nKYa1IsxGVuc\nk8Pku1zXM5g\nrFvaTVV7yO4\nZN6mp2NjMhs\nvkmf3Hbnh_4\n-JbSkxI2DrY\nFFUPB-cVozg\naIPmu6bYZOs\n1sO7SyT9mS0\nn0cG11lTS1E\nnhTupXSJkYQ\nCO5K227sues\n_b25Fbg8xqU\ntB6Uj2RGhPU\nHdXfVjRZ0yU\nzJO4Chs7-lg\nd63s74ijwb8\nTWJEVnNwAtk\nQ4HY544URjA\nxcJXT5lc1Bg\nsAO0owc4xeY\njnA7jmNVYFs\n37KddyjUxnQ\nAZMg4vFcRQs\nqSYAT8jpqgk\nQxPA0i_TVvk\naKIM6q3awws\nYDmULxspTJM\nNDXWV-mGlPE\nkATiU-cZCPc\nN_HXTmS-AF4\nTyDE15kKDpI\nVTyBpsX1TdE\niQISI7DOVCY\nXpga1vtS3tA\nTtHffqqdh1Y\n9C2L5v6BfLE\nVUgsvd3ZjvA\nbwf_EFTMZ9k\nyoWz1IdoTIg\nPPO1EQmj05I\n1nVThHLqda0\neCfvE03ufF8\nCGivL32FazM\nQyCMxDBGqF4\nZ9agItiMEEk\nXHrw3AFW0Z0\neC_Ua1svsSE\nzNvYQ2ILSCo\nwytwlFfk5dY\nt6bhgzR3gkY\nJuv96hHY62A\nJtHq6vKm3WU\nBHBmOFFExso\nonyfp4uSmcY\nsrTcK8ybXpI\n5oav3ZjdRz4\n4wddfKqi1hI\nKWaZiVG1RfY\nUoqe4phEwEY\nTyoZkvsxrSo\nhEDeIvU1si8\noquM3yN0E4A\nNRqxxQy8sLs\n3YM3AYZaTZ0\nK8yeho0MbYc\n9oVoJMVsKtk\nf-PnGRaJaSA\nYKRnEOUxZm0\noR1-UFrcZ0k\n2I91DJZKRxs\n4WAxDlUOw-w\n_WyD94vNqWg\nmGA_uH0-n28\n5PT9OxwD6hM\nl9c1k_m6POA\nKPowlurwWzU\nCsWFLaHiQa8\nS4m848bh1iY\n1Qb-2KSKByg\n6wN78_E4AAs\n7WD9MVTfdjs\nhXce5-f8mkA\nNZxjmhwogCk\nyVGlKrziG5E\nRG9LKdqzru0\nB-tq7mbTvrA\nkXnEMLzzG_s\nf9IkJzhoj_I\nztSSzTA5Z90\nCSSvNshY5dY\nIlMjQrpAPHo\nm_PeQCPq8QA\nCPnwlNvwBLI\nmT5NiDGbnVM\nIptkOvp53-A\nNOVNs9sT32k\n1ao1yR27lak\nB8cWjLMuJgo\nidfa7VqkSOw\nPxtuovqUgYU\nG99Olp16O7M\n-x6njs-cGUE\nI3znSbbu9IU\neKrEVWGTuRg\nC841wEogE4U\nA4DSD-ZbhoY\noBO9Uy4uc_c\n1FZ2FA-epcE\nVKTT-sy0aLg\nXOnuxo70q9Q\nAM5EYO5wWMA\naZV1XI9qZUc\n934iAVn9CKw\nG36NDRDO6L8\na2dHmOQuDaQ\nlx0z9FjxP-Y\nVHMi-j7W2gM\nnJ04J0TWD1I\nFNHM2JEA1qg\n1g4V55DSrbg\nruN_KcF-Ouw\nWVx0SlYmaxs\naJ_NWmLawAM\nKMm_fkYUdo8\nc6GEJoLDcAs\nLR6zTixElx8\nL0CGJL5SlsQ\nwwrzI3b5LxI\n9IdM84YVmV0\ndfT_2XRB8aU\nHws-ExO9fhY\nHDxqSt_Ctbw\nLsm-snDPXnk\nW4_F1oMTEFc\nx2BuNuwZ9mg\n86F-fpdTJg4\nefr5PYBNZCo\ntAp6HB4WAdg\n-3cmJe_Kw30\n5TcimuSgJoI\nYNN09xbsN1A\n2nC7GyHvy0w\nIiD7lmQlL-0\n7TcMmmC-PqQ\nQsCPatNIpPE\nmaaoRjQN42c\nHZ1D6bBiufI\nu0Mz_e_TQCI\nAsKzZqVhH88\nqaK_jsGvz6Y\n3z637yWEmHs\njHZLatZGr0E\nDO50JhaRp4A\npZE1CyPdDMo\nOJZGgPoJ_u4\n3FgbU0ZZzQY\nY7LbtFY23wo\nV3EpNkdgmyo\ndp6WEWGtqRo\n65L7TzsFaD8\nLdnaptnNXbo\n91wo3olctwU\nE2VBcVxwUqM\njGWM1SoLAm8\nm8RpGUXeHFQ\nPHcV9HUfr0c\nxeE4wGavBhE\nGxd-OPuy2tA\n1xqufX-xMr0\nGFB8DiM-SLQ\n44rUlHYg-MU\nyu2VrqdOVdw\naP1FZToPFxA\ntVl78xgPyow\nsoTciHbL4iA\nqZfK-VnxBSo\nJcTBwzDucE4\nexclwIbllXQ\nyzGKgnbclz8\nPpa4gvsZHDE\nFvJMbz4vgNY\nWlB-BbWBzd8\n9ExnVKy8hao\nvGgdg2q1eig\nYKjzDMrSX3w\nQAsI8z9qfKY\nA9qAaecuaFk\nGLQd8ZTeYlI\noAFVhwUVJt4\n6I1qP8w8DxE\nzNyykRpFBQY\nTjpkMfTBVQs\nGaBjbzvkxNk\nXQLKAVpgHQ4\n-UAV4O9oZy0\nscEuS9-TozQ\ngB1LgDhJQMI\nmkNO5Y4LOMs\ngTLqDBbrmPM\nkqc4KyCYA0Q\nsNGlmsj6C-E\nc3uOWTAuaTQ\nTDo2llQRSOw\nXVEnOs2HVlY\nEzy42s9AacE\nzrECNEIUFZc\nnhUW_MrQGTY\n77LZW5N_Tic\nnKIH1LgVMpQ\nA-3SeVkGrjE\nAekHQpGS_AQ\ndpFSms_kfQo\nFUL6DhVU7E8\n-qK58CZslAs\noirwXF98wo0\n2X80aLjCncQ\nzQPE6MCV2jo\nR1hGaVoYZxo\nfA_1iRByNFw\nY2u092TuA8g\n_P4YRqZPT54\nhZdl2FFp0eA\nz1hgz7vgIt4\n30iTy8ws54M\nSlPGQ7r0f7w\nBu2PFyl689w\nWgcXxTUu0aM\nRu2Mvkf9dL8\ntTVFP-9AdMk\nst0h6-5fVtw\njTtTZjp9ViQ\n9nFrp7Z9wEU\ndXQq9Y7KnmQ\n8q8m4-7ciaE\nqDF1YfpUaNs\nkDHxHA2RzJ0\nUx_ruB_nt94\nD407HWykw6o\nUBvArq7u9N8\nAqutucmM6S8\n9uFe61ebm30\nQeoL6G4bW4U\nxDwT7-3BQ5c\nqq8xAukB-xI\npSQkW5soVhk\nH3plWCGH4wM\nkkZWXM6mShg\nK_31ZHeMlB8\nEbU1vOVwnOo\n5klqA0K7K8k\ndyb4ztHMFf8\nhf4KXHSvKD8\nYSrDBY0Tmdc\nPtozHYwIkNw\n3wtgdxKJI_A\n8Px7Lr7VzvY\nJtyvQx-YiCE\nCbF9_x6zFYo\nAPsmTB3F7Rs\nM9nDop-5T0I\n2P6sN_5eM_M\n7cTI5pyy3Fw\nMrfsbtOOdGA\n9k3swSqYKP8\nxl_aSDYuXhM\ntIypF4ODIsM\nr51WXifMsZg\ncPa929v8Hps\n331wiVQINn8\nJjq8Ng6cjxE\n_Pbi5kod89U\nQ0Eh0iTF2Bg\nGuEFmBxmIT0\nrCg9zLCbhZ0\nf27cck3Bl-Y\nVv0aAv0lJ3s\n6uHak2M7cmc\nswOuQBjbiLU\nv1Qu3dZlRGE\nyuCbYNe3aZY\nNamXvlffiog\n56a5meaLhBM\nqrzj1uVO-Lc\nx7j4IiO_6RI\n-szJznl-3UE\nZIc7bCHSmKo\nS78_9yWvSi8\neLW6uxK_MOI\nW_7_2Uwl2uc\nLeNRbtWgero\njeoUH00woxs\nNqxvezqrvQE\nNvNkGs5bFtA\npZNQ-Jo7nsI\nKgSTMVwRSiI\nGpD2-wZnpO0\nEyokx50Jhrw\nkwdRauyX_Sc\nvFqitPr_Gpg\n7MF2IgjAjjA\nCdUzUdaC8tI\nPyeH_sv2TEY\nqi_t-McN6Vk\nF0wFS45JjWA\n_U-WwYlinTw\nvf6nfEZgorY\n0dlFAtbte0c\nifG_E9BKfuc\n3u_oizn3fg4\nUCh-HA6pIA8\nvQdFnS_u8UM\ndobHtRTf5rY\n7ZFGP8b4Nz4\n4rJ4een9CcY\n7Q8m_vs3HzY\nKm71QCX39rQ\n4iaM0-kcWtc\nILJTdnLyUC8\nQY11UyRZBM4\ntH4JJtuyLp4\nsFjraGFeU-A\nBkO51g7oXnw\nTnniBE14vQY\nR9HPdX0TZAg\nmnuJ_YVLL64\nWkOLYUmITfc\n0l8mYfrxpTw\nCKJSr3Uw-N0\njSidQZzJfcc\n1t867tCFccE\nmTfTGanKAJs\nNoRnWATJPrA\ng-gebDSBFkY\ndFAd35ck7hY\nx_errHqd92k\nFD3Xh_Qez_Y\nhK2bLlVeh-w\nZXXpX29Xt-U\nwNWaYfZI3Ak\nt1JsC1ur2X8\nHegpqudDvwE\nFIekWUU704U\nUOVyhaDQNfw\nnzWDzGxqqa0\n8Ufi7Z8OokA\nLakGqZmF-Gg\n5yGuDDemqaw\nriYhck-Z9tw\n_T7vEyicx6Q\nMLrd4hKTVLQ\n_5TCxc7G31Q\nQ-R4SPTgjmI\nFGiocp7_jE8\nY_RUAeNZs44\nVFqbGbU8f8o\nv6bD23vEigE\ncOE2gQrXchk\nlKeaVq6fUpw\nvRJ5cCP0ZPE\niK0-76FChfk\neb46yXP211w\n5ecF_TOyhfQ\noXybPR2g7VY\n9tzlsm5IvIg\npLpIARbS5Xo\ncqpvoIx9wbw\nCnSvI5JxRC4\nyGbG0TmmRDg\nZ8auSdJSusE\nQQWyeLLMwmo\nWL56IXifi9w\n1hw9NF3zzrI\n-aKc2aFeCOk\n9Qesj84cHLw\nUtIr2Cpk2c4\nwbVpwsKbFCU\n7XFAamm-SE0\nQJZ83TqU_x0\nn86XlheDzhc\ns_j4-cVHFH8\nxTseWiI_yns\ny1tx1hn8Pwo\n1eyMnUczVLY\nkReNcBdLDa8\nHLO5LmnO8gM\nBWnG6--TRYI\nJuPSeaf--7g\n6439wcfAL-E\nxMdDeWfS3O0\nHUrzvLhxA0M\nnPjlPgeaD_M\nLLyS4KzDsQ4\ndazYs4DgYtc\nweDm19eMl8Y\nJfddc8LwQL8\njri0U57iWWM\nTxKxj0ZWEcY\nxt0TyfTl03Y\nfDx628jn1YI\nqIp_8RNNX4k\nq5v5DOEF45E\npwdhau_agX0\nCmyP-ljev68\nZKie_34cpJI\n7mJ0HSLMba0\nveztNJQyRJg\nj1VL-y9JHuI\n5yR0wlrq_h4\nlGqBJx2xbqQ\nG4cvTaP7RS8\nOC195SrxRmQ\n6Ewhxrht6cg\neBE2Wgz32nY\ntr4beSTsJ1E\nPnUvSn9pVaA\nlbiymQJsC8M\ng_U9jZQ54LM\nVzonTHZSaq0\nBRZh_NO5tic\nGNTdNXkhZ8Y\nV7bO0UmtpFs\nnmldcHUthLA\nFHohKkrVoMI\newvHk1nM5u0\nH1t84X0iHTY\n3fXPZqrKduQ\n3E-C9PipmaA\nHZjZbJuhPAo\neHpBhm4LMfw\nfN2AXsF-kwc\nctyDL-6f90w\nZ7xJxo223YA\nBDiB3XcDsT0\n76Dbf85Vo3Y\nCEuqveZyuQw\ntBSbjKyamRo\n6vO-XDUiRqU\n-5798-VRVYA\nM6HxD6sZ-I0\no1Izq-E3o7Y\nPOR5t4hjtPg\n3zhqCccFsGc\ng3E69dpurZA\nFQqo-w1qvws\nyQ8PoAkZnew\n3rcxMDaDYL4\ncS3cT6vgiT4\nxKdtuwTr-iM\nFe4JvbxKwR4\n7_WLSh7GE9I\nK7AKLKQqfj4\n5XW-Nxfx5Nw\n0t6IIdmOIOQ\nxwffHJ_pAM0\ndQUjkTOrAn4\nvO2jvLIyIV4\nUX3HxJ3eTd0\nOBp-kKju0IA\n7QZB_cbjdM8\nY-CJgOlRfkE\nuAphWDkKWcg\nGxznDWMsp8E\n_xHw_zAJRDk\nkDfvxJUxL10\nE_Rabq4muu0\nFARSnLU-NJA\nSSk0B0dVq4g\nnIYAfX4gYO0\n5SnIUYLRXro\nyde2ib0YiVQ\nBGX4nMrnxg0\n5Jdk3riKKwo\nkFCUCnNKmmI\nfXXmeP9TvBg\n-Mmq6Kmd75I\n_d4H6lx9-Is\njNN6FI1Gcr8\n8ZezvNWgi4M\n-riX6Xbvb8w\nG2bsYSfXO5U\n7IrB1OE9Blo\nDY61X243BoU\n2r8yw_fjoHA\nyOgdjlPRWMg\nS7vH1F6nnug\nvn6qlQGDOIo\nUSKDdEg8N3s\niplfWUtKMzI\nm6kFCNsnQpQ\n-Bprg2_s9mg\n2O-CC3IVPVg\n74Ern74xGsQ\n9FLLYpUnuwQ\nNoD85qZhkWY\nmqQ8Y9Sjp7o\nHvhH6_TMxWw\nnII3ya0MuM0\nkXjKUXgoyL4\nTkyLnWm1iCs\nnur4g4r1LN4\nd-kcczAff40\nuYBZAS59t14\nAK0MPlMNHQ0\nJEsQCm9Q3pk\nLwuZzh79ds4\nr9nG9RByMRI\n009tNfQRd4o\nJPEmc2HcMmY\nPXW83EUbeTM\nin-1BIg_Mec\nfZt8dti-r14\nGP5ss2lYb3Y\nlp6ibYQN8vQ\nMtTE8aWCe9g\nqf-4TDEpycw\n9JQRMnxE6No\nhYQIObd_bog\nZcCHgCXxkgs\nE_tY5yc-yWU\nAjZ717HtRy0\njoAodEzeK34\niYP5-Dl3rhg\nC-PxIfoch_Y\nUpr2DiiSRDE\npZJ7QK2d5-A\nLUmqBuS8GAA\nBqV0lNOqaPA\niqyFc90L3zw\nnQYsHLwXnMc\nEECf2o9Ivaw\niO8Tg11euPU\nQpux-Drk6EY\n-NzSDbGmTpA\n_m9qecEehqY\nL6g6fH2ev40\nnJPju1f6p0E\nFOM6rvU9xN4\nwBxRwF4qnhU\nbXNwzKo5Yps\n_bsnYbe6Dp8\nGtYAzKwm-R0\nUWGtZ9Oqcwc\nTS6_Y6r5r-8\nXNAVsV-Jqfg\npv6EZGMlgX0\ncqOc4yl1bIw\nu1pJJOaKdiQ\nPf0COLjWys0\nzxqYjEzGEPs\nH2tltm5wUCs\nyb7aNfMvRy0\n80x9FmKsyg4\nl8aozWddbPA\nGnjxY_zMxOA\nC_2-E5uR-k0\n1SOZ6caLdUk\nObbLapUaZd4\nvfNW11vcewM\nVhtJpZkTZ1M\nrdFZAYliCgE\n9rstlW2YsmA\nEdEl2_GReMY\npiOK9oDxl2w\nAWKQSDRekBM\noptHzRmqdFk\nZJxNwE6H1SM\nM6aKImtVams\naDdBoZOylmo\nA2WV257yma8\nfyI46_cfTW4\nxW2dWkdxEVs\nKLv0iZ_NPi4\n3dnf7FK-BPk\nbQme3XqjpCk\n9Oi7sZ13tNY\nyuklnScufbE\nrJSnxSjZIcA\ndB2iZKhWArQ\nMgBCnwI_Hq0\noZePQEUplJs\n4ld8-QuAFw4\n-QB2gXiOAKc\niKw7Ndv4bRM\n6bahX2rrT1I\nA6f-6l0W-0o\n-wc5S8xwxJk\ngkJAPsQ2YHE\nnMtW7uy5RrQ\n9n27j_fe1yE\nDei-j4tWI0A\nZrW0Vk-Y_TU\niOMuP1qEKUc\nJaIhQFDdcJM\nKDKB37gY7OY\nHuKVUxMpoCk\nv5ueLuyLWn4\n_c7XtFcDfX4\nJXQWJ63fico\naSxScp7zUpY\n2xxZ6kju6xo\n3mieBC6wlbs\nnMW1Rfbl0tE\nj7O-SUEh-54\njJZ5x-zUx28\nFcqC3ZIsQRM\n-v93NKIFBBw\nOCGGXaMANys\nasxNFYNfOWI\ntoq0HYc9mmg\nxHH-tuDq-T4\nq-kLlfq4JpU\nk7o8U7h_YHM\nJtBmjD4WDnM\nbyObeFcFXmo\nJ_i4XvgEVDg\ngAxuiJdRBjQ\n_nFXFkb8i0Q\nwGvGiFhbmwg\nQG_VaTDn9Uk\ncczh1r-Mb9o\nvsevdTMBfC8\nj_2-8115ZAs\nTpwYtP4Kzbs\nKSrAg-DG4Xs\n1LatwDo_ZL4\ncnvdC5TGc3g\nTotAfd4ercA\nENZk6ZwsOzU\nlScMakd7h6w\n898OUCyBulM\n6a9lq0bPrLU\nlWqHayjaOxo\nTwTQUFCYFsc\njmOvg7JKjVI\nAqtOrW-wiZ4\nzsgAfhsQkYU\n8TOTUOFMjuo\n5MC-cGN0bw0\nyQ3jp-a5JK4\npKNsKKRGrzs\nuDISBx2Ry7s\nd6NOGc2Dymo\ndocSqZBVEUY\nUWyz-yfEIN4\nAmjfc9pRatc\nVGqjv_CkCXo\nPf5mDMWYRmE\n0KJ7l4gy4oo\nhwc74Ns9EZI\n7phF0rMpBiw\n7P9EEB9Mr18\nEeyNlzFdjtc\nG_0ZVzUO3Os\nVq1W_C-ft0Q\nA4k_HCZNCgs\ngtKp8oxOzAU\nBXvryt6UCC0\n5Xk31NpUX1g\nBIfyebxopuM\nP2pgWsYSyUA\nv5FtI472Q6I\nSQVw58aDt3Y\nDoUYnGrhxi8\ni5jTH89HjTA\nFCJx1uV38ZQ\n1qNeGSJaQ9Q\nwcztDZ13TLI\nlKv7aGku2RQ\nGokkl2br7G8\n9rDK1qdc9-Y\n25_F9irGdow\nB0YqZqU_z0Q\nDSGYElDi38s\nOpZknAZxSjU\n--VWN_KTxzE\nKN2W3JON7Y0\nHxrS10Oa4qU\nSaAuPbU0eOk\nsPQLY7niQC4\nqB2H-Gp0nlE\nb9WFVLRPOJI\n9DKqoFCTC6E\nHWDBMnxAk0A\nXwQuM34oBkg\nHEtlEkCoCDQ\nQNUzcLPS_LE\n0TmugJo-c9Y\nSB4SyMKugU8\nzATlpF_gylU\nT5pFuaH_A98\n5KsjPjE-sTw\n8D11eYo3bNY\ncu_A-aG8G7U\nb1vFQilhgrY\nW03miqzGMcc\nWThlmxAdynQ\npPZ7eetT6oI\nFBWubk2ItBA\nzPvglo_VB9g\nQRGusFszwdA\n5_2gW4c8hZ0\n3_U1GtNY5xQ\nNo7DllIwA3w\nIC8xA-bOXOo\nstSweLZol7U\n14bY6pwza-Q\nS2LkKVM-dRo\nDNt7PNTuePY\nYbfc9RkRUY0\nFaYvxUgA4cw\nRZvwbfpE8CA\nqeZ0SIG2eJY\nSNrMqIrtbmw\nWT2D-ZhTkqQ\nEOwmzfyF1oM\n5K14lfXCgco\n0IVFxW63RxU\nP9iflgkOO-E\nKVIXNJIaQBY\nsallI5PomoY\njvZk0rzVeBw\nspVHsj3_MEY\nNACwfzRou0w\n5vKDb4dLu0k\nxI836Tp4cq4\nau_5dPh_Dm8\ny_5YoG-iXjQ\nv-tma5YRyGg\nRpKQ0AC0p9Q\nJMt6zz_dYWI\nJWGVdLHio5g\nhSgNZ6R5Rbg\nKMnK0as4TSc\nU6X6o4CAqL4\n6HbrQMgOUFw\nzYRqTV7WyMg\n5RmABh8MCpE\nDkyCu7ryu-w\nRv2hRfqlJaE\nLmsukmz3QQE\n1RbdA_geYpU\nCi3uRpwFlZ4\nLkdJwYQIR2o\nbLsM1z8lX_A\nJ196d5nLSYA\n6fXGKCKcXk8\nsSk2SvdopGY\nqD6IXIE0cok\n2bcSpgxPG0g\nPuh__Ef3KkI\nv71Epv4g6jY\nQtBnuCwAJeQ\nMAeQV2NBbhM\nJUGSh3BMuaQ\ncr13B4L-5-M\nyGzCkRwbFII\nEYn7ZmFV2eY\nSnXhWbEfDNA\nQlT6RMtJb6s\nm8hsAr5C2UU\nClylV3dp-Ok\nXvvzZUhRSbI\noTzTcic-1qs\nzG0CfU1YnNQ\nn3K6Fkd5ri8\nw5EQRIoHjQg\nJina0muBqRA\nwJnVVC4784c\nroeLoZuFI1I\nI6RwgD0b9xA\njNEnqzkT_QU\nbObjXY24Ei4\nmzP8haJXI5A\nvHbBhI0xLjA\nAhpGExo2hbs\nu8oHCJ8LxtY\no6zEapyz33o\nm5n7XpAv46A\nP0ojZI9qBPc\nO5W1OfGz3es\nIH6fifC3qSE\n7RS4PfQHCX4\nmFXxro8aD3A\njwmRNTTDOw0\nyp-LFlDEVdk\nnaI0OgZq73M\nrQ7oKh5K7K4\nadT3VQ_Krrk\nP3jRjtbkmq8\nnBQDz9PiMDU\nFKu9sUXtjpI\nXJTXpItCqFU\ndXngQtk0BCU\nB0cuLHkQDcA\nq2pzOimT9so\nlf3MqrE07I4\npbmU2wMnuI4\n_SwvSu3jxAA\nXf_j-iNi9CA\njz4VT9zHLTU\nwVsMJ0ntvmc\nWhyNjvISFac\nqiVy40O1_Lc\n5T607c23L8M\nMn5ayQd7Y0Q\nOr3okI_mad8\nsTYIlyRGrA4\nPPAe_7EK5yQ\nidqhhcppnUY\n58YNYqN6lko\nORrQYZCdCwI\nAnue5RDt4Bs\nrWqVoaYxgRs\nzANq9Dusk6Y\nfkHlhiG0h70\nYxzq9BLE5Hg\n68pN_c7DGUE\n9plvG6cSgVk\nnMlDPsRwZE4\nmw96cSYo9dU\njsLOtv4yqIM\n33MiJMF5z7U\n0N-cvihnyqg\niOGo0EHHtCo\nMMSpFkvPOAM\nCS-nCS9Az94\nCnh4Vr0UruI\nVjfjS0R1bdk\nfki-LTswICw\nRGl3Y1gvv5g\n2u8m1yeCoyM\nOP4zJ101EPY\nGNWJFqW17yg\nHAF359uuWUo\nZbPoAOc_iKw\nA0WEpT1SKV0\niwfU4ei5gWE\nw29PG-8Tywo\nj4yXEmQRq34\n5Ay5GqJwHF8\njlUPc1tu64s\nU6fx_zJtL8I\nyJzn9MhJxRM\n4xdqgzNNHn0\naMQysPMcE4M\nVHJ5pzTGtag\nDJnKxIj_D6A\nEQCf1YAzPsg\n3et9liRrywY\nI_e8l4Lj8OE\nOvRYeeFT7BA\n05O77oX6bQE\nPoBD69ANBUg\nRwQVsB6k24Q\nhXWDSeVeaAE\nrwd5hlQnu0I\nPr9ruvxA3K4\n8h6r3S5zjtk\n7vZy9ra8kdM\n1WRLqzGkzNw\n8nYPCDXHuPs\nXbTEusaf2nU\n3nydBUSR08o\nzcDoyBvCyF8\nYe4fqNh_vbs\nzBErHC42Gzk\naRgUxpmvZpc\n8WfKSXftr60\n784nv_NRf4k\n_zlqhZOE4yw\nGLfcxIq-zmY\neQ87hBFrS_I\nVjlGOec7RVU\nhjuYfeA2prM\nbyPJ22JDFjI\nLJq1auJq_gc\nZKdcYnlkhx8\njal6Pf2DFlg\ntSXp2wB6kXQ\na5BtDmdw708\nUI6mgCAcXzc\n5qfoeuQFFHw\nbKLQBuSPVwQ\ntumI28B48wY\n1KfyTORRMXk\nujBna-ZeAu4\naFDFSGAIrxs\nIg8UNiVUfc8\nGor6z4YDPhU\n1sCRrXnBTZ8\no3aqMjrFf5k\n4snGt8OzUV0\nfc0uxTiUDrE\nOhOvnL8Q03c\n_2WBjBnwlUs\nCzOH54GemVo\nC1kZTfHldfY\nbxgZWv4Db5I\nh1F9-NKqDDk\nudHB3tftPz4\ncP_OM5VVcSo\nTUlYMYQD3ZE\njFoUWFmM-NU\nc0RlK3VAmzg\ni6OCtSqrOQ0\n9CJ9EDtZ2p8\n3LY5dV3xghY\n9fwBPbt95vA\nGm1BZxc4tmk\niB25eDhWImc\npOPWdQO9bK4\nedX09NFZ3oc\nsxNHNxmgzJU\ncZP4yFO6l78\nal-tdoT3gL8\nFlxXhrDycHw\nAe-mN5aD8Qg\nK8JhJPro-1c\npHvNvYijtBU\nDXief-vtjIs\nYF-7cPk04OY\nG4RvOmNedls\nBwDlobymMk0\ngJ_cx3AmCuI\nRL_3JEsg994\nLGnYM0wT0t4\nB52L95xRYFs\nbjAM2J_D4UY\nqaBlaPsuHQw\ngP8_w1J5raY\nuOmtVFQ3WF8\nL98X2ESOWU0\njocnzvDLA60\nji8jpGMlBE8\n9oTVECouTO4\nLsaLeOKK-EA\nBmylCJhL-5Q\nxNHt_KWKMbE\nAgB4n-1-_BY\nt--mSXDeETc\nb_BA368IluE\nYVOKgKYJB2E\n2W5dr790cKo\nCgU-5WQGClY\nqLvGnro4Cgw\nGbZMFMSKQ2s\nA4Ntv7DJURM\nzPeqoWzZE5I\n96sUPxlIfx4\niCfjoSbWHZM\nHXRuqpUG9RI\nJ1668qPavto\nrSWBuZws30g\n0XOzPjsD_ec\nkBJDz4ylQO0\nTcwz8-EfFYE\n3ohBUYQJflU\nahuPW6_t-z0\nSlf_2J57SyY\nlEPfDu4pVqg\nTb6dbNhFk7I\nFSSlOmgUf0Q\nhG6DmzzU8m0\nucikAqewZL4\nXlj9wg9q6f8\no6TYEHyv00Y\nT3Xlw651IoE\nW3GsHtZu0Bw\nPpj45Ai524s\nrbsrjcXynlg\nlfJ7WzyoZH8\n0SwgAb1effg\nt4_obOCNYls\nQxa4zjRostg\nC_dc5WzLq_c\nxUp1My_eHn4\nV4qu6AJNBQ8\nJhSRGLe18OI\nG4_3pzwFYKw\nriicefV6xiI\naF4En8CIaNk\n_WjIlCZJtLk\nz6aek_pwEGk\nECoL3IaXgRI\nrP0QURktz3Y\nV3Av8JD__sQ\nIsskB0D2GC0\nPz0RfOVm-So\nuhpknFQJ7G0\nEg8MVTZ12pE\nYsrQUrJ7AdM\nTBiqsgxbxLA\nm03MTJCH0Ns\nw0AliJi4npk\nathtiym8OYE\ncoeU38xEhVU\nPWTptbb0vB4\nK9T33H_h0Yk\nxeSDsBS_cvo\nBvWSMD2FIpU\ntM3Zg8m373Y\noqKAuNefcSM\n8eu9yZ6pWjg\nP2A2nKAbQqI\n69ux9TSbEKk\nKPwY1uEFP-c\nNYFI1-FTw94\nndItN7hhtII\nPolzQMFju_s\nMHpyl6uVPrw\ny9jS6a7rIVQ\nYCIqymquy54\ndAOw8dXcMpw\nOkIYOU1ObYU\n9ZY9i9-hoQM\n1QjC0jXb-9k\nvjvHNXSWvPs\n7d7OeDwkfTg\nVvfRXzxBe68\nF44mBbuqA2c\n4xh-Hz14AA4\nj32LbrHGak0\n7Xgj1Csnr_w\nFboJePoCAb8\ndnThWk9ib1c\noZ868onS6YY\nU0tTT_87Hh8\nM37QsnD6nZ4\nr0cRrtcU5X0\nUJWni94vAAU\nBbjSOt7NxIY\nKMD8yO3iM-E\nwq26A_QK4So\nbXt-KqvrSh0\nnHCEOK9n5z8\n5hXXFQLDsoA\n5msVl3oZl4U\nxy8a0GKO_Ek\nxxbFPdBBjc0\nvdbQpDHAq5U\nMPOPd2RNLko\nmSa_kUf6cxs\nqyLJCNyRov0\nvFAE-ZIntVI\n54A7W6eEBnw\nXon0bfX3L1g\nQO9r8aO07YE\naRcxYPkFjh4\nbJgem6Xc3TM\nF2hiFbuQ-Qw\nZ4vn4UWaeZU\nX1u5iUcD0Ag\nPo_w8OmTfoY\n1q5Us5iVWNI\nLiHKY-bG36E\nnkVK4JHRQfk\nByNjiy8-j8g\nsxI6RnTFj3U\n5CdiJbnuvYg\nNYTS7NBDKKU\n0ShWGyC408I\nLUV0AjnjaT4\n71qm5ZOlpAw\nCEtLeoXjttY\nVC0uIqac2A4\nETC82KEplac\nDQYjgqnTmJ8\nfpiyrd28vfA\nRF0YXIambdI\nvt0hblIsHiY\nhLCjV1eOAoA\n8bY4qPadkSo\nNBQAXiZ7KG4\naYKt-7msPic\nyGgOimJaqT4\nJPasKum1U9Q\nbCaHwP04KK0\nVUvB-jPvVuw\nU2p88URI8lg\nUu31b0VHCc4\n5PKVmzdQGwg\nmK8ad1nYFQA\n5sFu4iEF8dk\nWzTIhm6YMQk\n7GIxoAbxvQk\nLlRHSFVV8cY\nNG5ijPnfYV8\nP1_QqWRpUQg\nHPwD7sgVtkA\nzU3Hs36FIrw\n_6dtasEqpLM\nxxFSUgehWbk\nzrR9re9NV_s\nLRPEYUlE8rU\nIG4FAGxZvtU\nRf9V-yzCzR4\nNNzMjrJQKsc\n7_hS3YLPHvI\nlJ9V5BgkzKU\nGRG-2ocGGnw\nRdb-5NHyGOA\n7rlvmkQy4hQ\nzyJgcHwLP3w\nlAklD2ULzh0\nqDc-OGF_NJ0\nWDiwa8H0DTc\nT4Sk7RsIQd0\n5MBUVKzIyPY\n0wFkRRILnPo\nyb_-UHyPC8c\nyLrN6wSSGqk\n_SQr8I3lcW8\n4MG5Dy0gFFY\n-v-KiIuYkCo\nnHKJaG3sXMY\nZgngBG5JX_M\nNVR6-HnKtM8\nf4ojzsvQhh0\nfJBrWMxc_P4\n8WqRrq_lM14\nOseaEf8Qy8Y\nRH0zWG3Crzs\np84uEGZqFlk\nLJY_pChREVY\n-UAElWXbk3I\n8oi8aVwb_Tg\nyywHSkFkfU0\nWJeOTphX47E\n32JbDv50hFc\nobDVqhso9l4\nIPEX_RXRKgw\n6QoON2Vq78k\noqAu5fVDwAM\n7nO7han5KIg\n368Nrtkmrls\nmKgy5W3S6nw\nD-5P2iMf_ZA\nrZ-_UsEBT5E\n99odqGVYe4g\nOSca1EnBNJA\nUHqUN3um9Bc\nHvJTquFs5Zk\nu3M_YKjLOkI\nqO_4Up5Q5ns\n14HerspIb_U\nkQQfoIy7SNI\nZbKU3_H3FVw\nB_4YNm9mMvo\nu3UyGrnv1-A\nPGqBHvtmtgE\nDl4hTIp8QbM\nRK27DwSEetI\nbQqcnMHjxvQ\nmudt7nvWwo4\n0GiMAf9q3hQ\nMCwQ4tdtev4\nDUhgY4ohhQA\naURe7hHL-Dw\nG2UTjomYxkc\nlpOdAHwRnXY\nUpLg7Ma-c4g\n4HWP1l_KtTc\ndgJKcCZkXxY\nkx2FhY_akDY\niXfhOj2PobA\nOHAVcgjGDqM\neNK7N3AwVFQ\njj6ECLiWbxo\nJxL2yg_bRnQ\nFHmPBAJK4CY\nkPLNO4WfFJw\n8dhvm-ph88E\nezRPVES1oQs\nXmYC9RAMVeo\nvGvDCmuDKKE\nqhAYzFv4HYc\ni86FbeyKK1U\n_xNB1WCQ5NA\n4gjiQwh1p6M\nuj8ftsuP8T4\n4J_8tpDzfAk\nFiQnH450hPM\nwixLlPFJgyQ\nlPQ6VQzuyxU\nLw0Nn1xSMHk\nObey6WggwjM\nZVuhyX3w4Yg\nfImqZCIebuw\np0-xbD-mRLs\n5RbN0rjWBAg\nujX0y3zcvP8\nuMH_Ajdp3E0\nfLvEcBoOpnQ\nbbJEqSj7Wkk\nL24hGLbmNrw\nHigxGvmHEdQ\nC7Rmtxf-NVE\nq74RKOmIjC8\nG0yU-YJ6sjY\n0wC8Ab5AZeE\nSk9mR3zjrkk\n9l_U2xXb9VI\ne4yCxKv-2qw\nMKl8s0EO5T4\nCDywMUdVPqk\noMx6C31dCeo\nquJX9XLQe78\nmeSIVfOyerg\n1itYlP2GpI8\nTpGPSRGrL3s\nQ6Fuxkinhug\nT2Y7oo3iB40\nHQYiGnCpZa8\n6_nHubnKxqg\nx_75yMOHMiw\n1TNL7KlEI8g\nXDXuWwNXAZM\niotRit7KMDc\n9QWRxT9oHYI\nXMrWXjOuv0g\nzWkNT5A3wIk\njn2weAEOp4Q\nDsYP0ql5mzM\nIjMTiKtwyKk\ni9NIwHKBqy0\nynGvGgy6K2Q\nd6HReoQl6Mo\nR-aJ-2y5ICo\ne62uLLsvUzI\n3rYbV-Q-VFo\nyedsblplSMg\nypvrfx32T0s\nQFOHhusNwtw\n6oyxLFD2IIw\n_XbL7lG0Su8\nLxnLNUq0abk\nADMAw7UKLsg\njmgV3OFn0aE\nQ7wHV0r256A\nCH8HV5gXQB4\n69RNNex-sig\ni0p2X2rQ6Ag\nVcV-ZLbd-pk\nTLZClsaDEw0\n9EV3DKPo-4U\nBS8zi7Dg8TM\nEn1SvG9tOSg\n2fc36Hc2n2s\ntCb_6mO6CmE\n5aBsRxccPJI\n9ofxELr5sa4\nc7tvfdSjRE4\na0QpNMW2kws\n2ah3GNQL6x4\nm0z6-iFR-S8\n6NRK8ai2U0Q\n--RFXQ-Xlac\n1g9QEQrHOMw\nD5Oc_sYmlt8\nhcqpyBBYg_4\n5gV4JcPhi9I\nyJJA6WRpvlg\nh30PnSefeZA\nAPS_K6M4Qac\nM94-kf_lXUA\nbd-fVqwNZaQ\nClehpiAu764\n7tmC9Qq5RjA\nzZGqwY_J8Vw\nkmYAgJwpE-k\n1RBwoUbvxx0\nmO5UNbKzcpQ\nGmXGVDnPU9o\nIxnZIoP_5J0\nSoL6a37d1Rg\n8C9qRHJxOO0\nhFICuHeg-CQ\ncH3mtHI91Sk\nlK93bvZ_fTQ\n6f_Z5OBzY1k\njoTY2Wir1w0\nexVcH3m_G5c\nYY5cUX_o770\njfk6JSgLdQQ\nIxj8eXcClLE\nTzHrqDQ1OJM\nvjeGS4bwPX0\nJMIukdtLDt8\nnNLvDIcBtz8\n_wD15vBDzgs\n54LTsr8IAU4\nsfzVAilcMAM\nMb-3XGFTpLQ\nA2Eu5xmslWI\n4WuZapvSL0E\nO7why8Xo_RQ\nHUmelrncGRc\n3hwRv9BXdOw\n6q5a0W2pxS8\n9V_bukpqoPY\nLyyc9S3iufk\nPTENrQnBtXc\nXVINVuRkUFg\nDbqqjC92PP4\nFi51abVO4ac\nCaHL7bVTtQQ\n8S62emxyIEA\nxEU2YTN-svo\nHKpWEkSUs9U\nBFeuE0wAHnI\ne0WpcoS_fU8\npieqR7-byq0\nByExQg6WGeE\nmZ-yMd-bmCY\n0IL5GIcAS70\nhrVLeHMpsDY\nZvbwq_7AeU0\nBAXWxuKhcTc\nOPC2Ahuklt8\nL897JSOP21U\np1YmfANJdDA\nEC3EYlsUiAo\nbmgWabhgTyI\nj6IS8ftaiKg\nEXmDxa_WlbU\nvU5Weh2-5Ow\nsF6TDdShI-U\nv9vgJaU3g1Q\n_x4ZoZAzlL4\ndrdEb-EYhHU\njYLZsEioFig\npGeODfpFpUQ\nn9r_Sd0cy6Y\nE7kK38uDEeo\nGh3l6sVwMlI\nEW4_qWWvxfg\n3eGHDodwIZI\ncKFA0tZIc5w\nu82elZ1sGVk\nKQOWuUy-7qE\nuMb3tldMyn0\nDHMF-bVxlkc\n8bQQIy5TKZE\ntRT1ASnVfmo\nAWMxhZbiXLc\n4LaL9XB_Cx4\nw9pEL5BVnH0\n3RWATaK6rC8\nOwBlTJrvL8Y\nSn25NmBKxSU\ns-DcMXlInkU\nX9f_YUaQGWw\nuwstRxD2BkA\nmQ13lRBge64\npDv-C_TpyG0\nidr40IexHQw\n_OabFZytcp8\nV5B75zKswc8\nvgEI-Zu4GQE\n3fLWNvP8V98\nKcG5AQMRFVU\nZ41Lvaw_W6E\nMOJFi9-64Qw\nILwsJ3_o4es\ns4iqKjufJe4\n4lzhxfuOW-A\nAjeO7aL1efU\nfWLdsqhYVxM\nmVbGpzsuNjE\nn_c7JtDNNUo\nn57MunvVpIU\nlfrEnzxJFps\nhXCnYkU0Xy8\n09iu9EiAtKA\nqgE9Lbwyzc0\n2cSY9R-ka5o\nd2vcACp2hNw\na4-FtMD0_sk\nQ7w2V95g5ew\nA0FU6cYM9Vc\nbOPnZZMObXU\n3nRy9hw7tr0\n5DefW3MeD_c\nn_6sNnucN9k\nzP0dxHW41kg\nRr_zj8D511s\n-fJwmmnPHok\n1eH4YUzgfN4\nqSU0iCmocCE\nVIp_DOwafcg\n38PbAk_SMdo\nhsBtuhWw7RM\nCqgXhXx-EAk\nsYEGcfDCysI\nk1z5PejkIyY\nAOiL4JRqh7c\nct9y-srjYjk\nAdiEXXKIcpM\nmuBDF7g_mXY\n9Xy3PgufXHI\nIHDv7SriHB4\nQ3QqG1UavAU\ngL7zD3RjgTg\nS63g8N9Wb5c\njmCn-jfg8Jk\n-a0vqBmrAh0\nOa1LpwUBNAA\ntdmGoIYtHzg\nAow66vqHkmU\narbY3Yvs_Sc\nLNIKYmO7noI\nDGhV02r8Vq4\nl_nlMehIAqk\nMFx343hujgA\nPBXIOvTSzao\nCUJJdnMG7VU\ndpAoVOU-q60\nN1xvQ7iLD0I\nv9kQdDFUWuk\n3lX50Lh2Iec\nClBUr1FFo4U\n5F8dAQs8Vo4\na_OuIUbxu6U\ny6daxZDW37Y\nCnT7g2Dit2A\nfD1FCHmu2as\nAQnQ6irZyFk\nNAymJ-WVGOI\nptj6u-cdPEM\nso4D0cpOaUs\nf7oHNrQzfis\nEmRlXmyl54I\ngs_g4ai4m3Q\ntTtKhD_s3mA\nyjFU7KJH8AY\nrGw2mX72ytQ\nFjb55wq2xuI\niNqWC_4LooU\nLlUWLkrBL_Y\nEFmvTRmRtms\nSojaL9M5Pqs\n-r_jjQ_idz8\nKPpwiCStA54\n4Os7yk5rXtY\nPn4mA5BIzxg\n8KjvR8FpYaQ\nh75sq4lELLU\ntUmKlW2VmKo\nWUJNkDE4d98\nmpMweFgS2cg\nL5-JXPcM3RQ\nIFbKYqUofRs\n8CsWUwcJgHA\ntu-cxDG2mW8\npm7LihLP7kQ\nkearXmroxUM\np1lnXM7l2_g\nF5bAa6gFvLs\n3obteqT0VJU\noG5vsPJ5Tos\n0c-UIkfsk1U\neq5NSAyQEtI\ndCRen85hQ7Q\nyo7C-Sp_-MI\nwEByIZn5qeU\n63KOboifCig\nhPmV9DBCrfQ\nUv4YAx1nqDM\nFjh3TxOHCxE\nACiCfGoVIJA\nFWvAYNw8r9o\nJyJBz7Z2EWE\nEhAiY3hTPpo\nK_LGi3aiF7E\nW3IgFbCSqSs\nsOA84te9mAw\n3ZPlgOWbkcY\nojydQ3_FDqI\nXFURgTgl0MY\nfHmesxUDVz4\nEVlaur-kEds\n3TA-GALQJfM\ntjsQP94DIfM\nsdtIgE33BvQ\n1KbamNWEfdw\n02A2a-aEvmI\nmX5Vqy1ETgM\n8qohrMCMzLc\nqSE4dF_Feng\nt4zyH4BsmgQ\n8yX0E-XQcms\nyRPwDJWhqis\n2cjvwTzhG8g\nJ0WkBVu2C38\nYnpzAImvPsc\nGhF060VmS1g\nAmd3bMqEdjs\n3kaShGPva2Q\nBu3n2LEcUbg\nb3DNx3kLY58\nv8YgSZAbKgQ\nccNvps_rac8\nHJhNgjVydac\nyyYfKxW1T8Q\nWc2CaWm1Gno\n8nHwpjCIJqM\nkt5pjPdRDVU\nF9ktw07IEr0\nSL40LOsREzE\nyAbQlHZz4tU\nKMUDG7AOw1w\nCoHgpkuV1hU\nEEGg9AZmHZ4\nP5ooU8rf1f0\noEOsbgXpiNg\n-nXBi-mtvR8\nbw0-q-wjSIM\n_SVlezvh3zk\nUaqCBqd8NcA\nEVdo5BfJMCQ\nJhtaGVmtcwU\nqemi7V4jUjk\nMYpqwTSpp_E\nfuJceBJIp8k\n5GlQJ1kKxMA\n_Gm42rDEb38\nAZ_MUktgWxg\nWjm3qeQvGxs\nZ0092DSphF0\nYhiy0ZHMyik\niJsNpzHlrgs\ncqeUgjPpCCM\n-oWSoBQzQNA\nHtt0B7bZ4tI\nBlG0jGX34i8\nQMDO-3fqU0c\nuHEG_fTDZss\nc8pZIocR-lQ\nzlRuCc0kYQ0\nn3TNGpjl-kM\n32me3lMxEDU\nVy4OBSqz5dw\n60Sc8RmA458\nwY6sZJKyxo8\neu2OiA65JOA\ncP95rCyLijI\nJpYjN3cZR3U\ndKMVUS6TC2A\nlIOwxzY4M6s\n_5UWCkgkSzA\nwrAksGY1TSk\n3VgqDRrUIOo\nd_8TCN2wA7s\n2XgWUoUe_lw\nmlpWVL2gHG4\nNy1Q4bR5dMc\nDfDQo7Gm8CI\nf-ZCZ5BNloQ\nkMjUZodyvtA\nc0pmWNOt3fM\n-aH-cLQqwHQ\n-W2T5Gm7i74\nZhzpLQbMNjQ\n1_NERqSdt9U\nYBEUHTsxyXs\nPnjqfWEL6bc\nfr_9D8OREfk\nLVt7Zvxk934\nYH7W2AR9b8w\nXtadtlSUNQg\nFhAIXOkAUhY\ncvvweP3N_f4\nOhYlQ6kSQFs\n2x5L2L4XZng\nPcRJie18fYs\nk5kTx_bZznU\nOH_cAf9RFSU\ny69ebASPg8A\nekOi-hwWNoM\nH7H1eydzTCY\n1-G0Fxf9IYU\nM_beJ-qJlQo\niyPGMUFQiW0\nGK7IQ-raJOc\nw-4XyyU2w9g\nWa6au8A-3Zg\nG_0o3NoEXJQ\nEN8q8mJrAZY\nndrLDbtM-CY\numOy9nT4Wpw\ndM6waznJ7No\nGhaxB8afkj0\n6svLqrJqoWk\nihyRhFcUVto\nfuOY4W9QFNI\nDNC3OciAF3w\nwp4tgWYqjyw\nt9P2B7NUPfM\nNzbhbetwYFU\n4w36z7XnwOM\ns9JqbCH4aVw\nOwB1Fd-IeS4\nDR91SIIPCkQ\n_DK3DYHAQvc\nyE_JbyAR7qY\nVN8DStEDHd0\nvWyTTJE081c\n5WuZvuZjk3o\nUzBE29ENnjA\nzoK9i_LiB5s\nFonBCrV4Fqs\nTil9ScLdyv0\ns0RwiqEDRbM\nVgyyxiZGzNo\nMosezS_qfk4\nJlpBRPIgoIk\nA8CNtor4BPA\nCer8qtPJiaI\nIGtoG5BnW_g\n-p3FtQtQ6q8\nonD3Eppv3EQ\n6lzU26KS9yw\niOb_w3y2stg\nC8IBujBZjaE\nnXqdGyqR82Y\n3gt4aiQrmb8\n5B5VRYzzz0M\nh3Aam5h7qAA\n1qbYMSC8ggg\nKuR_Z_vRD2Y\nVbw4I7BhEBk\n_vjn86zTNVI\nhUz7Nan8kpM\nQSWGpf7NQ7k\nsY1NGOTGpUs\nU0sp1K-D1RE\n6OofgRuJnIE\nn5YGsbi7BNw\n2eqWGVKtm5w\njnRIqedIizM\nShqQo3JOdew\nfBkFWhWXWuA\ny8Jqk1kPtQI\neswi0L8WNzs\ncZP3u5XAeHk\n-uU3MTcwg_s\n3sDL4LJUc_c\nm9Wh66FXZJQ\nAO9pxLEHVfI\nhqVbOSEsJNo\nQQwJyX56Z6o\n5mEsXz-Bpog\nq9OUIk4Oaq4\nqSabiG8q8-k\nJjIXwkX1e48\nP4KH_RSZyl8\nAFk0BnxndMA\nq-1DREuXwjc\njJze-x__3o8\nuIJDIumyakw\nmlAtuy15iIM\nMflY-IYl0Bk\nUtt18i8DSSg\nPSe5x7y-kVY\ncx_45Z56ZQA\nNF-httKm7RU\nKThMkPl6q5A\n0j4aiJowI8I\nlgwJVRwJn3k\n2GXdTkYEPm4\naqbP3OofrHU\nS32b64ns3fM\nq2nChVvlZ8w\nk7GcyfPypGY\n2V0WuzhmAjY\nDdnox9DoK88\nNSsW9EXadik\nHEGucJf9y-w\nquzMffZuuCQ\nwLaXJWcrgzM\nlWTyXHZu09w\nPT3GmTvF9t4\n0642x0-QL0Y\nJbI9xgX8H-8\n0SXgXYo-Vk8\nsh8VHDoEDik\nTg_qXTVaZSE\nEOCgXlRkmKk\nvvWyQxD3ZmI\n4VfWFRMVM_M\np0WBxRosKq4\nQRHGpNm96gY\nj1CC9YKFpXA\nxEQ_h9zO4II\njC5O4or6dB8\nG7GXq4M7SuI\nFBpPaF5Kg_Y\nmeBbz4hop-w\neOgMuHykBAA\nlrvMjEmOFhE\nowJTZiiUoUQ\nnU1jeDXloRs\nA7UHJpZ4Jrw\nWmu-F4mJ-eI\n4CgNb8LRtng\nGwYqUTPQT-w\nEMga19u0TaA\n11TGIP2Kouk\nFrisJJ0G4N8\nYpkqDHGJzJ8\npnqh4SI-E6c\noZrpLQFH960\nHiMImmy3l5o\nO73Q7jd3VkA\nca_Ac4lF2Vk\nViZ5qXg5xQA\nbLqwpb4eDeA\na2Nw8Hen7Bo\nS7C-PTowNSU\nRpatQWLKfAE\nXZT1cB8KU_I\nugXeKGSjvKw\ndfFFgV624TA\ngXv4mbv8-cE\nW1Ipb0WpoGI\nSAo2EHsCPn8\nVWELyY3orwI\n7L2NhtAzHYw\n_DgOdOLNiaI\nsolCkKfZObE\nmIM8G1SoJAc\nQ8IqpcS31Xo\ntbcg51lQx8Y\nJgIJDix2oy0\n_3EcvKXH9zY\n3ZuQQQTv48I\n_mVMG_Rbk5w\n6IbECSkNmiY\n0eBehC1Ky8c\nZf_Dt4lo_3c\nDdet2d9EtTY\nxLL3-fP9NAw\n2UCoVnTjV4k\nl29oT_LWdfM\nU0Sk5u00YHs\nROO66Mi8gTY\nDOtd-mykOhE\nzDYk7hXvQ0Y\ndOObdbjoJ4c\nSmLwnNTfwHI\nb5jr8NxFS-E\nVT2pepdAtJo\n3JO11PBdCAo\nIFTHxZ22woc\nBX91rzHyMv0\nXi3ymXEMyjU\nH1SvA7bU0oM\nIqqznoT4Jb0\n0a_HvCBSa1I\nutKueh6Yj9Y\nN5i6B7WyZQE\nFDxm9DsmBk8\n1Oge9qUat-I\nij3HAftwQQ0\nB6E_rp80QMc\n2NnR3gblKYI\nXsdRpsG43WI\n5dA3DePirsE\n-3mo5CqjvWs\neX3czjlDO5w\n5lPsmFSNWc4\nw_tQqymkPdA\ne9t5ikxjAQ4\n__yiHzuT3ig\nKcJs4qJPQ_M\nyWPyRSURYFQ\nmvBtzXZWWG8\nFuXl-Pmr5kc\n0NtiiKd1HnA\nIlIhWS7-x1Y\nBl6Wk5M1vjk\nCaaKsf8zOyA\nB2TqswpzDlg\ng4-0zhNcrnQ\n_MlQzLtPA0Q\nPzocCTnSU3w\nkqVqHxVJCaA\nVZFMY9mYu4Q\nFNaOG7EN5jE\nbgCUriRuVx8\nLt3HDRrYt9E\na6kk9d5OQ-c\nGO4D8MjC6xU\nvHIbZ0uOAL4\nGTv9dFFHtW4\n1zOSmScTr_w\ngyUrAK47OY4\nczIb_WZRk-U\nXmhfuDf1hZI\nzX2LRszGCro\nspwoWkSEmsE\noJFKZnePh3k\nKV143Jx9hFs\nuwV4iMoc7xg\nMMeHpxjiU0U\nBT7WTaXcPLU\nUrUNUzp14Bc\npiFTKwqrqYA\nDYsJH2JWJTY\n3cnhsHMhVZE\nDl8BO_ZLdEc\niI0hgr8Kff8\njkHrHAKwPZk\nu17vCX9koaI\n4j9EwcO8tDM\nCxxuM1HCI-8\nUubHqEOLd8I\nuSkVR8Tbu8c\nKNyFPVliMEE\nyXl3ENKGAUQ\ndSpTTf_dzDI\nquY0mRlL5FQ\nFBV_POzEeks\nL_NfCmTkLPQ\nwReulnRQA-Y\nqMwvHLe5m3g\npE4-ePx_OAI\nUW-Y3QyK-aU\nirglc0zZbvA\n8tanKqukbfM\nQAUmchzQJAE\n8DrzN7pcJpI\nc27gUzZEjvA\nOd1ZBTstSHg\nv0KOJWyR4SU\nSI7LDY6E1Rw\n8W4DxSCopj8\n9r4784rihOc\ntkN8fCU-rzU\newwKExvkqXQ\nUephHvStdWw\neeGuOguh33o\nQcubF7zXxwo\nClQNLSnl1ow\nm_xLtlNx7Io\nfOHbTh1Wo4o\n4rJgIW-Qwzk\nWhw_HyeXyCY\n-WW51YaWO-4\nfRdo188PjXA\nbBg5uLCQrbU\ncyrDoGdif_o\nEddCNkvpmjw\nt5CxCy7VC7M\n8K84sx9EJzc\niU1C20Ap8og\nklz6IVHfHpY\n5HaKHp8glPc\n_7vyrudcgOQ\nN13WI3oVda8\nILwoKfeDJO4\nJcuE90flGj4\nNZ94hNaoyLA\ndLpCZ8g5uK8\nUS9enXEHnR4\nSzO7T8P4_JA\nfZXtCHoRb50\n1NQhKtWHtmQ\n-c_ctZ4lUCk\nWjJQ6L_BS58\nSuRxmapiDeU\nNJ8rJ-i-OKE\nLdsaucLvRb4\n81hWxoHF1uA\nzCv0AZeyCaQ\nzIJgAMpRG-k\nxg4OR0Tpy6U\np-YvF5eXwYM\niBbWqmzzKMU\n4qMv02zxgdM\nVsdeqOdkdTY\npPZMrs3QGug\n_cZZ4xkgUBg\nNpiIAuEOzmA\nm2giPgQXSn4\n0EC3NTMOF4Q\n_dl2L4v6ecM\nVd1j1GAExH0\nFRdIXmfm6PA\nfxWE6pnuPzo\n9RTPdAAdw30\nZruKu2N6nQw\nWsrIYleq2KY\nFZ65jfSwpAk\ntN4mmLewz_E\ngLvcrsbliOo\nrW23RsUTb2Y\nFKDCoc_i-ZU\nvUgs2O7Okqc\nu9S41Kplsbs\ndPi40lQetew\nayl2X5zfUAk\nq4Qlk7sfZfQ\n0lCPmaq960E\nnP7OKtlMO2w\nOjS7LxDYad8\n3skIjrkta2Q\nj7PgnjEiMcA\ni9Iy9amffa4\nPUV_2cqbrbo\n29E6GbYdB1c\nCiq9ts02ci4\ner2a5WhYU-4\nrSPj_G2yVz4\n8cp_Be49Tyk\nkPsFoudYVSg\nRY-4FCh9UFY\nqdK7QVuaSlM\nYGf3jBzkUeg\n3fbtYisNC7c\nSj8eNDOZAAk\nqhquCQirt48\nQRizQTLmAMU\nRjYsIv90zWk\n-h62m4d4MmA\nVE6K18Mfln4\n88HW9wtz3F4\n1Oetxnq_OG4\nQJFwZP8DgVE\nx0YLLkr7VfU\nEr54USCnsds\nZpXzLVGlnc8\nD_A6gdlNh00\nycpEjbV4KRM\nKZ04pEN715I\n03a-vG6wHDI\nErqotNH65_E\nBWWFJ2yjQGE\nyqTTejoQVXw\nzJ5Nxx3H-Tc\nY1aP-YyBdIw\nb8oFKKPfgi0\n8aW-vJWY87I\nNaGkSrOXOp4\nfr5rDEInWQA\nMqMD1DK0CTQ\ns-pgK_Rvuwc\nZd17-69y_i8\n0yOwWkbamyM\nbsBxt2RpiIU\n3dMF8cHKHZA\nHBdaCz2BeoY\n_ElAIqSBTKc\nj477dAxaeck\nz09OYmZg6-Q\ny7gfbVpraWw\nlxQZQ8uXBwg\nhOgBvXEmScc\nc6dmj-WpTW4\nZo3a3XvzTaA\n8x_8B2imlgE\n-yZVme3ToO8\nz_r6KUYYO5E\n4uHWjeoTol8\ng0AMLVSBfSs\nWy-H77tovC8\nxp7F-8G_bPI\nfwI7COVTitQ\nMalJ_GPU4vI\nsJwgNs3BWYY\nDbz02p90CV8\nZuVe3leQQgE\n_YrNQaXdOxU\nT6RkPxawpY0\ncvmcGY_VwvU\n5xUMeF5rgQo\n1m9DjG3QRzs\nB9nqewDmx2U\nFZUfhfHbjE4\n5WuYr3fFNFg\n-sv5DJfslVM\nCgd47hmpvE8\ncVIS31ghLNQ\nw7tqVEdyteg\nAL7UDurxc3w\n9t8iEpdabms\n2h8rH8zxA64\np8fPj1-nKw0\nLpxwR_9EhlY\nmZ2kxdQf3t0\neFqD0yeyGTs\nHqT0L6jFMNs\nCYGtLUZg1xA\n8NaBHCuxqhA\n69vn_WxKBUs\npJJjycrT0RA\nhgzSTQiMxj4\n0tjKGAwyCIY\n4lat6XqtJ0A\nDu95opzY8qg\n-WmDszVxti0\ncVA4BO2v7zs\nQ-LFUnE8zzE\n-T16rxR-nCo\nKFJmxST-xRI\n2vOhL_Hw-gg\nTTLjOAdckzM\njT8TUowrkLU\ntrPOKL7Nguo\nn7cRx_7umjE\ngTVoFCP1BLg\nM7tNqjsclhs\nQmrEOTm0rOc\nPwjMgnUNcBk\neKJv3dWsZ7E\nk79KJYXrBkc\nKkh9BnEDT_s\nR2Dxx3_iF14\nPcMHygYMF6Q\n5_yRovTM8sY\nfk7GWw7MagU\nL3YhZvt8BlU\ngEygOJWaMk0\nO5Dec6RdFzw\nnqaJ3f0z3Lw\nnqz6wwDRWiE\nO5tNdOzsbvQ\nw0Z44BIDPPc\n9blGmvMjHlk\ntd3p2XKHP2M\nJVgqhPqHPa4\nGA4Ozqt7338\nZH7hyzPIbp0\noZzS9hBwaqg\nuSsUoxlSADk\nYDDzjijc6jY\nFNSNLXNnx-o\ngP2sCE166o4\nZXHuGyv1KXM\n5cqQdDitGuA\nNtgFKdWcKXY\ni8WK-3pUpwk\nHOp1wRImIxY\n91nfNp7MVIw\navt_f-TaDBs\n2hcVZo8jP6A\nw0C4gjdag8o\nwyaGIaJsmTg\nrx1TXzxMEfo\nR_VEQI2nS48\nNMaLs9vr7ko\nkA10xksmpCI\njwrWJXtNYWU\nU3nWo59iBg8\nrkrnVkFn59c\n1T53iV8HKXQ\nI8ilwspLbDM\n9VEScwL3KGQ\nJZhLiJowzNY\nRBrzUwP2whM\ndOnoBJvtVMU\nY3Q6BzRtl5w\nvkoJH4fum58\njL6oromerXE\n9acYlZC9RLI\nQ_aPecwFK08\nqhH634B4jGg\nfZ7X5JDKmSI\nMEl5g32bzMY\n5xiAs8GGqD8\nPcBKId4l6LA\ng5m411zcNA4\nNd5HqEJuY1g\nswpveBgb0Zs\nZZGHXZmxlZA\nC_4mdGA9ehk\nDnYv2MyCXss\n9CmgJI8aGDg\nW6IeoTNRVf4\n4Albtnu3zyQ\nHWFpzw87VZM\n8YSVapFtvtU\n80ZafDq4xq4\np4SqclCqxuU\nOBWwzOCkE_E\n5ZzIGV7JAwY\nwq3EAVEnW8Q\nzFgFyCSZUvU\npaNPEeQVCTc\nuRxCU1MW8B4\ndLjnIpWhLZ4\nBJ3BAzRulPY\nNrDO7L8jXWo\nt9eDVFrQDXM\nFnmVnBcfpWw\n-o1N2unFkSs\nYa00KlBMEyc\nJMBzKJj-nIE\nmm93ELyLN1w\nhERyYjy3O3U\neK5PghRFnBI\nunl0GXfJRLA\nftAorMqqjy8\nlhHv2EyaaNc\nMfBkwdh4GU4\nOkvebeqIrqk\nhW1KqOVCeKw\nwV-0rTzEedk\nhVQT9mDDeJo\nX-_LZp9jUgQ\n6bANKvFGxGU\nP9Fg8M0JCHE\noNGklu1muXI\nb_wnD6jxREU\nkGpNxt3bD6E\n9sx5r-n9uYE\n0RlJNtKi_Pc\nx0Fnxdv5rJ8\nnOQCz7STLIY\nbe-Ou9Xkh48\nM4UpIJYB9Xo\nQfVKP_ibzsI\nuNPU0cPPsmA\n5aa_kvfMxBs\nCdQ7AbtXZaw\nmRoffE53BJk\nUgFBbUinHSw\nXjTFVcgR0qE\nIRvVdVENFmo\nvqqGZBRBLcM\na88BNDMlPSE\nn4Mohc3SrHs\n05nQ6FtAaYg\nDj8hhzx9Sfk\ngGKNhGbPp6Y\nuvPjPzmUC7w\nGLH6JPoOLJY\nyycyKndEWcA\n9U7_NBIHsQk\nRMGsvyrEB-E\nfpXngRB-VTw\nuySQvxQHbdI\nT04I6guPabI\nEY2tpd1CejA\nbNkeBqdWGzE\nwuZwdLfxTQ8\nqdrvmgnw1YQ\n2g7MZJfmBA4\nOn364s5HiSk\nDCSeUhWzdBM\nKdMZwqYiRH8\neolBcBPpwyE\n2ovvUa5WXU4\nnImG5bpVpVI\nPnMJqjE52VQ\nrpvLdqBrY8s\nYHJnS2dsT-Q\n3oLuIPYxGpE\n-qG1Hke8w_8\nJCruFiGN5h4\n9Ihxdc2RbIE\nAoRafeVBNvc\nExI6DdBEu4c\n7hKcWzt4rBA\n9HGMxZEl60k\nvvDkLhvUa2o\noD4UHPNEZek\nk1pv94Y0fbw\nCJBoHk_Ld1g\nKbKQQZsQJwk\nYIZlw1Ou77Y\nNv88ASiLmgk\nI9mJ2oBONug\n-98BSUhcZtY\nA-FV2T68Bz4\n82KgLj5UKUc\nY3Ij2iWHFV0\nrm49NpSVgo4\nozAXbxleK-8\n-C7Fcg58rZU\nDWl0gnig_X8\nsUhg39GEqGA\nZKDQJGSNJag\n4qg64Ml2OdE\nNsQ4dm3q8f0\n35RzyYwEnH0\nE_wUrAXTbPo\n_Xe_d5rtWpQ\nmTVRho54mAg\ndSRxB66FLV4\nWMhx09c4TcQ\n7eng0FHSiNk\nM1VNPTj-1uc\nudn4UB_EZ1E\naZiDvfhRpz4\nvdpUDOxQ0ao\nmAs4z9GV84Q\nBW4-PA9Xksw\nZERmWM-OrK0\nDqHxOQWW_Nw\nfvuqUVSwpPY\njb0Cjzd2lKU\nFRaIvI54IOw\n1WybekasErM\n3-EGP38lS5E\n7RLU1N4-8SM\nfbYS5f3GFek\ntesqTwX7cpc\nYjaEc9KUlBI\nmkn6s-f8PqM\nDQO3aIpmIDg\n0lNb6NAV6jg\naPvptS4t6RA\n3KNEj-B5HB8\nKE-ok-meF3E\n0Z286w5pRSo\nzH57XU378EI\nyFMFSxDF3uU\nXekcysu64Rg\n3m1JShNLCYA\n25Lb1YpSEic\n_fibH0WUWYg\nHHqi6ZB_F0U\nrzXNFMVS7PM\n9DaWcHIGk7I\no8ETRMZt6kg\n1OCmZuUVZfA\n-85ubSkzSWg\neVarVWL4PwA\ngivOs4_nb-I\n8WraflY6rl0\nbQzBPo2qRuk\nTipOwV7y_q4\npPjYhPGkhGA\nRoCmHW-wdtE\ns_PLAOcbbzI\nmV__PXYxQYY\nQbVzoV4GgM8\nyaGbKy7gAkM\n6HT1K-XoREU\nmVcHdILwsXQ\nEU70jtTYN0E\nIgBQwCBi8vI\nSjNu8J7JQMk\nt6FIm6TCkCE\nkYcvOPf4GqE\nST9DTmR2xG4\nuAS_k95ZRUk\nyVE7YDYgtHE\n1JVewdBZyYA\nD_Acqs7T5-0\nFF9t_GekWjU\nVpehD7unUGw\ngILsE7uSUkA\n3DmchoOLczY\nwz_y0fibuQE\nf58Ba78abHg\nDoq_EUCSB5k\nRQH_q5kOlCE\nje6L2clZOGM\nKM9SPmAD6M8\nkI9rnng7ns0\nAXukn4q48sY\nV-GgWCBVhrg\n6DZ7DfrTDds\naeevxJaJl1U\nrNjX3tQMygk\ne4pMjAtdmO0\nSk990pKn7vY\n1atAz0BIlm0\nTrqpRcocmrw\nB3rFARaSAws\nyusKlHgtvIE\n920BmIe4nN4\nvG6bW7_-CRQ\n77XaekZUvL0\n7JlG7q-ld8M\n3mycwnQWlug\nc38HJR-9vhU\n7kMyom2sHyA\nEnFcN2CMNps\nhSe6p6SLuvI\nmO8roISHjJo\nq6zi7XGjQQw\nPJkmvYEqRVE\nLUi7mkGXDRo\n1d8oqIXtjdo\nqBFSCbptrJk\nx421Na9VfNE\neuorMDBYxrk\ngWB-uAtqUIs\nnfk-kn7YP04\nY5drWYjmJFY\nCJGNkuaveUE\n42ikB9YlkW4\nkZQwVWTB2hI\n74256F5BtiI\nfpKl9lrLfx0\nBxL5O2tuDtk\nyJBIO7B_XI4\n_KpSBVJq7jo\n19q6jSWFPCo\nPqw0GsAAzEo\n3FWjipa2Ztw\nC3W5kkZLN50\n4t7GADjRIuA\nl6NIVn6_m1c\nl5s3_XV1rkA\nKr9_dJ6TPPQ\nOHNZUmdqdv8\nwJmIEj-uVYk\nsQ_4m2ocxhI\npcqaeLRop58\nNQFMeyWVe3g\nwMgKj3QGv2o\noFwbpFJpQbg\nQ0i1ldFm-oI\n9cb5Ka9SqGM\nE6yFlIQxp8g\nYrx2bv_LoG0\nSoP7TLCtylg\n0fwudBWsw9Q\nKKjCm_IoPRQ\nZ7RKrb4jLOU\nNlSuj6YIG94\nFpxOLhuNXfM\nr0ladY1kwco\npmLP0QQPqFw\ncW7Q7UySxRA\ngTWo9oLJOWk\nCwdGYMM2bHM\ndLjNzwEULG8\ndnRxQ3dcaQk\nnM-RPO10aPY\nPscRUlsvhtI\nm7mbDPykHoc\nyrEvK-tv5OI\niTLUzEjV3Bg\niPt2PNpjOq4\nghew-s2zPjE\nP-sWReV2DDQ\nO888bu0QrMg\n0fTXzdHoip8\nd921M-ACMM4\nGjPCk494e5Q\npwOhqGhP-mk\nD15HPy4x73g\nM0HjlCowwuM\nIdOF7xg5lug\nv5Co3A3fLBo\nJylK4HuKMvQ\nPJlmYh27MHg\n0WtDmbr9xyY\ndYDxxHrlmUg\nxWHYmNrAFlI\n5bieIiX5KLQ\ndyxcQ4FV6KM\nhplpQt424Ls\nn-mpifTiPV4\nFe3c7Txx0Sc\n9tGWHkKzeeI\nydLJtKlVVZw\nXei_IKhp9tU\neHh6bwuPShw\n74ocbvwam7c\n-zIzLRgwdxA\nlNWV7T5KlRE\n0sNSVtTcxpo\nKuIheGaiFLM\n4EUsnCqqc9s\nWlcH-5LQbhA\nKy7ncpdpMUc\n3VlyZIywY9c\npLRk4xG-JCI\nuGstM8QMCjQ\nW0ZgTVoA0eY\nGCPMRHNwR8E\ngkfAyFT8xGc\nK0qG34a5oqY\noHJVJ_MEyQI\no-iPiN_YHjY\n1AtE54HpXBM\ncoDtzN6bXAM\nGuuUX-4_K-A\n8CZ-ICxcEYg\nKm6bFBSVty4\n8ktMe0xclxA\nzJiCswIaIkI\nMw1Z2Jlp9Qw\nFHNT4E_55jY\n75M1XXEZciU\n5ztwns5PkJY\n6xZif3WmG7I\na-9990dlfvo\nVrVEHszxL7E\nTaLsQSCK0Jo\n0xWMqsZOYWg\nGzeNMZcP8Xg\nNWcBwgxUyuM\n2quc-iQ96R0\njFrVoG-edFc\nLMagP52BWG8\nEHV0zs0kVGg\n0IWdfqsImMU\neGu2camh0WA\nSldtDNNTA2s\nWULhkipzltU\nRdR6MN2jKYs\nqdbrIrFxas0\nHlXsMMnAlmU\nFROgIia2cb8\niRmIef02Ajk\nZTT1qUswYL0\nmHh8PKWMQEw\n44TG_H_oY2E\nq7CX_5D6y6E\naErDEFpoD_0\n8MmtVx1A8BA\noaVuVu5KXuE\nIIdGxR-aU6o\n3Nzc3Rezt3w\nujxDA9VsQG4\newkroL1cP_Q\n20M_teQf-l8\nolXUIcb80N0\nsTDhNLLglf8\npnaWqq2eRcc\nguMVb47aD-k\n1O7AX7tqEHE\nKyHilwSRo28\nmS5WLkb_Cxk\nSbYzo8L9DLc\n1jQP0Y2T2OQ\ndht_3NziwSw\n0B61_5sRoBI\nf_GI8syIgIs\nBnx95KyQEAA\nZh6NzOHOU8s\nfbbatiKJ6rQ\nDrIsPRZL578\nDk7DE4FghW0\nHGU3PRBxQiw\nSMJqQ3VrcCA\n83Jr_6b9pHA\nYBzWTIexszQ\nJCKh3Jsge4E\nzpmLSGixYwM\nG-ZJbAdw1Rw\n-3ywc_7_IE8\nioTMlrCoU2E\nIZocpwWLsyE\nlNXTKVxOmfk\n-LjxKR0q7Yo\np56k6QCjJnc\nXoWvE383hm4\nVJivXSErhB8\nNdVRDlmWhg4\nN7UtdTiuO3w\nnSQ5EsbT4cE\napq46lA0uSM\n5tbx8osZ87M\njxsvzuRl1O8\nn0ZGibTDo9A\nfgcWfVvT_UM\nDUd5RPVDjPY\nBCTFuIw1Bv8\nS1i5coU-0_Q\naGMhMCHyM3c\nSOcgrVL8Dg0\nMwmy0awMZXY\ntXp79rAS5JQ\ntPImdMknAO4\nXhpJ11dNp2o\nzZJ7cq6T3v4\nPeGDBR0Ej_0\nQzklMXES1BU\nf-77xulkB_U\nSR5BfQ4rEqQ\nw-VBcSukH_8\n95_DB6GgLQs\nf2c-tMZSZtY\nKPeHFDxKUP4\ndrvaZz3FWOI\nQAygM0YfY10\nV3RHvyrqTak\nkxtAmNDjfj4\njlFLcKaBLz0\n1VEcaRh4c1A\nex6X6rXcXKQ\nN9hJ6pUeqxQ\n-rq6IBVPcBU\no9splceYBXQ\nq_215iQ7KDs\nsOLnb7BrMC8\nOBJ-MpPBDug\nyuI8BfvTwfY\nWRR4iYRRBLk\n1VZzulIl0DI\nI3K8xBfywg0\nPAC3F5dQufQ\nFvYtbd7YE3k\nD7P4FYWHVYQ\nS1EsCWrUY84\nr421zjv-hoE\nvfIUYDjo8WM\nIUbn5ss8j9c\ndXBUdCvqpNg\nW7WmhkO_GWI\nzhnB6vIifkc\nnyn04CxGBLs\nfCjsUxbNmIs\nL-IoFdCv_Hs\nduT6QvbGAls\nKXYxfwVioeE\nzi-vtjCN9Rw\nWOjsnY1P7lk\nMo_AVIt369k\n9UMX4dGRYEw\n_2LMj-4PtdU\nNj-F4OvzyLM\nf_Pc2_cTQnk\nAOh4PeDIkWs\nMDC-al-lnoE\nGD-EP3ucPNk\n6Wx2sfjX0qs\nd68yRIE9OvQ\nUk280jVuH1w\nKmn7tIRUImY\n59BWCEaowC4\nxtRnl5zHKxc\n4sRzks3eR-M\nq5K1fm56gI8\nLixsNtGM8tc\nTklrBmHo7Do\n4lQ_MjU4QHw\nHZNy5irM2YE\nUWjXERbOr70\naz5NDvQ41ys\ncAM7skQKVk8\nLmrLiS3ZWxo\n5kI7hvWF_BM\nYFTbj6DJbGQ\n2qKoFdPJ4rI\nEvCuX-oY4_c\nI-AhUVGpGoU\nSDls-ZJDLXE\npLKZ0Adi70c\n6GN20jud6MI\nr2ucpHgHo1g\nHG8iPGFvfxU\nf8zZksymCzw\n-BiLCJxpqi4\nvTp6sSlv_aY\nd0xC6yVjU9Q\nFz9HnTVx52g\ndAzXib-thq8\nLkyMbgKtCAs\nMDwNSR0QmBY\nhL71tkydKPM\nrRLP7r6OuYE\n6NvDZa8hWSs\nI5cS0_op1IE\ntdcUxHh3tAc\n1B8juGIsDl8\n8O8_FMhW9dY\nUhkYrd0Sg3o\nmCdbIDiib5U\nwxrmK9esHpc\n1R5Li-f1IP8\nP9pa_8-WdlU\n6c_H45kt1_8\nuBX2b-zback\nE6N0yJRAAAM\ndJma8pVAvH4\nWj6vEYwwJFI\nFzx9OpDH8HY\nHIcIIBTJA6o\n2-1pev4OEJY\n0uSOiu_WUDw\nmKl11EzMTAE\nWm_Z34Fyww8\njrIc1SlA7O8\nf_XHjqABQQA\nRNP4caHnknA\nU5VW0XTFBZo\nAe_PWQfCW1Q\n5FtZqXd6IJo\nLGAfIx5VQ_M\nuiy-sT9JgRo\ndnIPfZIKYPc\niioBwO6vnEs\noOFm9UaRuik\n1RIOFzhufm8\nfOSuCsgJ26M\nUKAi_Zpp0_E\nHU7Ga7qTLDU\nL1YN9QMKpBo\n4lj2ISTrfnE\nNwJEb3vJvWY\nQs_PHrILn6k\nEFpsSudUhQU\nuU6LIbi7NZQ\nEmkAdY2AT-U\nKTuGK7Ob2QI\nj1tkwdfz7n4\nnQZd4bNOSAI\njRYdVUtQs-8\nfFan929BTPE\nPTEskprXZOg\nNAGgo5AtHzE\noXjCj86GB-I\nKH5Q12Yb5u8\nC3Um4x6M8ew\ntYRzkKtCRuY\nVa4gTqyLJeQ\nBkwke3UCbCQ\nmnUfDpO87Y0\nH-O-z5gELUY\nTk5XmgEEHoc\nmXp99jJtyII\nygU3F1ho3gg\nielkiD8w-M8\n3nc6Tf26afI\nE1I0hAxGFXw\nEemLsTG5fX8\nOLSHQCAncC4\nd7_F5P5PygM\n9hT-t19CJ4E\nvQLNS3HWfCM\naopdD9Cu-So\nz2itQkiQUOE\n4IErqIMLwtQ\nN7LxzkB0imk\nbhGWWY1nCWw\nW59U7VWHZ1Y\naG55Y-zpxyo\nLj4adAAHa68\noY7QReO1WOQ\nfMxA90YU2Jw\nib3Hn188Jwc\n77tn-KPS334\ndofECCtTfaM\nuKwwpmC02IQ\nCht63QybtiA\nHFduVeNEWSA\nQb2tjzecJX4\nbCIXKzeaAAs\n1mJf24luhuo\nm6ux3-Z03B4\nDCnvuyK6ur8\nkdW1wdpEP4Y\n9pXTSPcZEWE\n34Rit1AnlVg\nj5B70NEq_fY\nhw6GwhfNl7U\naEBLrCGhTVM\nOsI3mSgTFnk\nu8QMY9JKlDk\nc9cV7bFKMNQ\n5xzDAgFrnf8\neFKh6cYmQ4M\nLIm8HfwnmVE\n8_MpC8PcPQ0\nfzAKSbtYBMU\n3lfTLYMECtc\nifYK21xsVtI\nTPsW2FYprfI\n_HCS9AJ0rEI\nYGEL2muzPEE\nW_gYRFDb8_A\nT1TrFjLKryc\nQP2uPNypJlE\nbgXlHdBRpjs\n-eIH1jFAGlY\nmwHOh0YPpBU\nOofNBvo-ABU\n0Rl9Cxc7uZA\n9eGwOuyKu1U\n2bujRZhOt9w\nW7Ic9rZ9OQw\nwsl5fS7KGZc\nleQiIU7fzPs\n_3F3eCypuko\nKBaCHull47I\nsz8itUBsCTk\nu1QIbENq66w\no2vw_iYBAyY\nkgfgiLlW-yw\nAu-u9RWe0Jo\nlpyg94OzHK0\nsZazSFEHfg8\nbSxuXQCEC7M\n8QjrBjdb2T8\nWDTRyjMnDOk\nOcr0aNwQvVg\ngsGm2Ohl7x8\nNEwspgySg5s\nqVwoeNk9554\nbcokL59jeqU\nfLpmswBKVN4\nIZT7xLjxuhs\nqVhCNgct9JQ\nVPIP9KXdmO0\nWSS4dOe8Ul8\ng5AixBKy7b4\nbu83p1i0D1A\ndzvTHhWDjIg\nz-5iCygFd9M\nfBlAMqoJ5BA\nLXekH_8vXnM\n2NdymhVOFF8\nEJR1H5tf5wE\npYwgIQaq9qY\nZywVV0T5DcA\nonK1BeyHSZ4\nOfsHMuWn95I\n3a49kwfRAtI\nbD_rWCvgDy8\nfmT8JstRohg\nGXwVNAl1fN8\nShQD76s4WZk\nzEE7xzwogMc\ncDpI6Zzy-vo\nTofiEsdr7YE\nEGWfothiSU8\n5v5JjUZpAPk\nWJB3hqUsHDE\nSH4PhFHyC5s\nyqmreq-dV84\nbQbH32KcjG0\nHcREWDplGBo\nIy2GKyD2IoQ\nRmISVHxjcAI\nyY8Pf2rgP5s\nckjDSzjU-cQ\nMLZZos7_fYo\nnHByIEUb37Y\nMUn6X9lpOZE\nkmgRv2V_7P4\nz4nPyI-zA74\nuBrvKhAs4S4\nMAviyhpn7Lg\n4Prc1UfuokY\nNIaiW1XrzxA\nJaBh-B6F2sk\ncQ_dL_IMPP4\ncbQZ8GK2usU\nRfvKvTlQHuw\n9tIcnydrwFY\nfNMtHosai08\ndJU1SZIfK3Y\nEFkIZ-Zf32Y\n9OufCgFZCyU\nwZ30Qxv0vtI\n9XoPQEOY7L8\n63iuB-cSY7Q\niqLDCIZ1DIs\nZmdWPv5R_J8\n0atATbXbQ9g\nROhFRFmHexM\nkr_z37TgQO4\nKu1Xc6NT6m8\nOnrORwEG4lQ\nrEWaqUVac3M\nk_uINM_XI6I\n6AVMcJa77PM\nmK10Ze-mcQo\nbuRR_o85qhQ\nIBJGHvt7I3c\nylRqJapI0wQ\nRD2YJrvd71Y\n-9IgLueodZA\nTQXuazYI_YU\nJdyo4evwMxU\nqTwXudZTWQA\nLSqb4e8mUd4\nbSdm_eA1Css\nfKncYRJQRC8\nGxGkcC1VrhU\ngTKpKBzd7jg\nozksR8QLWzM\nxkzkmyOln6I\nzE7PKRjrid4\nVKhEFVAoScI\n9-DOuX-Pi6o\nePRYhNNdzwk\nkTnEyRLMvqk\nKTyLJftgoc0\nWcZ62d0PATY\nS4AmLcBLZWY\n5kiNJcDG4E0\nbr-ljup5Bow\ngiEV8fvrDd8\nlW1vzy6psfE\n82IXVFuJllI\n_j9qAhXfNAU\nE-PIidaqCyU\nyNvuIuWY3Sw\nc8EodW2ossg\nM4-DIldIX6U\n2zomyWfPgjE\nlrhNPS4nbmQ\nGQ5ICXMC4xY\nNJk-yQadw_U\n8ucelPNuKdk\nxqbb1FCX6wM\n083OMBnPA3c\nrRNj9qpTgOc\npLbS8f9IplI\n22gw_64AGKM\nNlP9f8i-4c4\nnCuYBELZjpY\n8G40_afpkGA\n12DQN8oxKTs\nIV7jcaXQgds\nA-Cj7v3rTWg\nrSB9VJcwQsc\nKY_pTVfz3gU\nwSPAPeO17Zk\n_b6S8tpQtdw\nx1srznPx1qA\nGSprkzio_pE\nFRvxzdkj_YI\nl8WyXv7hQvE\nsL9vUjm2mIE\nk72rrPUEDdk\nF3GFYKIwJ9Y\nO_aziIIp8U8\nY6wE2W3ag1g\nExU37Xz5Q0Q\nuFzAxAEMwrY\nePzOShBS9uU\nrBtzudk40pE\nY0F2c4VgxW8\nyIUdnWv0MP0\n6vry0ijbJVE\n132WIdxvgdo\ndwT9BEh7qZ0\nNQp6RWrHxRE\nySQ8WJNGp0U\nmxJtFvNByKw\n0L-Zqr0eyDg\niBSLBl-64fk\nVlaiBeLrntQ\nVi5pdd7xHNI\nbdFKfRmmbk0\n2L0A2D7zV7A\nqFUISvEZ3aw\nx4QJwGTOny8\nXUxAGsL8b0o\nC2gQo-0VW5c\njP8dC8E6Emk\n6aWxJ0cxD8c\nkb7T9oK0tF8\nBfcfTmh8RKo\nrwzNpFWiOTg\ncPsIU9BTbcQ\nw3-V_82VwQQ\nf1N8-L5cuWQ\nF3YR1-gJjWM\n_v5g_GFm1W0\nFeK3AM7NZzQ\n50N2eB0JI80\nGVhi1qkt5I4\nTsNv4tohJ7Y\nn1TqCGEBdLw\n9JVNdsyjU5A\n4NcH64kh_24\nDlwuwiBLAmM\nEOyH6NwoQL4\no4SUU7XoRl8\njcXErUFrA68\nUtz-RZwQpyE\nA_S1oRHSH80\n_P9ZorzeECg\nkNpbZ_oVHxE\nu-bWIkGa0QA\nCeSQfi3eLhs\nW9Tdw5nG4dQ\nWsAVIpTwAP4\nFM-wfXvcbAY\n8jd1NKyFQJI\nO-ydNrUWOik\n3A3iNVaLod4\ncy-OKLuMikk\nhImAmM5-Fpg\nlWZU3pPZWig\nVN9icwiN6io\nK49NaFf6i_E\n8vq_k0yqq88\ncNOsA4nH8yE\nh8m69o_1PoQ\nsmHHU_ONdGU\nFXKx1sX8ESs\n9rySfLgqHJc\nRP7pZNhYm3c\njk3Z-MVoUg4\nYBQLEhzlYX8\nPry7CGd09jU\n7DfNc-wxnBM\nkmjblNu2_6M\naOg9IcxuV2g\nr_O3k-RpV2c\nj6oBbBfhgYE\nHQkSMJFJu4g\nDMx-Az5Da4M\n-wI4jJq98tU\n73ytL_HAwt8\nZQaBYT4MxWU\nXO0pcWxcROI\n_UmaFTEIZ84\nO4yuhvccQog\nB0asbGJbLKc\nWg-UpYglAEw\nqu4v5hB1dKk\nm_1yILWMqFA\nfLWrnVuT4Is\nB42mhJ4DY4I\nYMzV96LV6Cc\nWDpipB4yehk\nOTFCctdiS04\nFLjixsUEj5E\nyMRmV1Sj6j4\nCMbI7DmLCNI\nmV5UHLHdkY8\nPRtTmayVhKI\nNjIszoXfvUQ\n1SnPHdvPPxM\nEEm8IXm88Tw\nI3wUstDFDN0\nxM311HohUzA\nBZSb0JCWcXk\nlouBM-Mix7s\nnauLgZISozs\nPSZxmZmBfnU\ndYg-LtUxhcE\neFU730P9f54\n2cDcwnVNoGc\n82aLTSlTL44\nIIjzneqtAZA\nac9w0rKTRPM\n2dQgjrrEeHA\nK53sv3l9DB4\nHy37hjPUFWo\nNfrk2UdEOcQ\nC_SFevIz1FI\nwAjHfBk-ZeY\nlt9IJX0qI6o\n"
  },
  {
    "path": "data/metadata/youtube-dl-dump/2012.csv",
    "content": "luEg5bWRsmA\nIelhpK-eDh0\nYfualY_RvlA\nPwmNvgd5kNI\nbuoodeEt_hM\n_3-cN9Bhxls\ndvT333RoCrw\nhEXsOOVWuGA\nyjdZhknwl2E\n-c9-2KcnLXI\n-Kd5zqw24S4\nQKRPgJYHblo\n0klA5lTNwyY\nGQlizbovQAg\nlhAQ43EIZ-g\nvOnWEmbW3OQ\nRNRZxWxgQlg\nJOidGUY4Dm0\nJhE3o7EwmEI\npPDz5TWc0Zw\ndaUvbGlC3CY\nV2r-pCAO4rw\nluylsO8UlhE\nlkMilWJJR_U\neDblDj6BISo\nmSd_B5ZTP3s\n-bG0iKaxQYM\n7ghEs2R68XE\n0AUpWC9Whfs\nLnuqPEIHL9I\nVs2DOfnZ2vg\nfWxKQF17YHk\nNMrgITIzg2o\nQsQAo97BaBA\nAZIk5wIq2Qw\nHQK5uM8tokE\ncE71I4X9hWQ\nbpcwhWgWfCc\nSnJzOrHZwk8\nujFUQwcAQ7w\nFY2kKLvUL2c\n9lX00rAetvU\nkELmSLtEiiI\noXMUkgWoMlQ\nD5E23GxcVHA\nA27nH_TtN3k\nIzkrKfk4kYE\nQN5dfOs4TMY\nYXmD6qdDCDE\n6Dye05tvSoo\nRkxAAilnLEI\ni1Nh_3JCFj8\nG9puHtVcU5o\nUONfi1pwQzI\nTNsEK_IIs9U\naJCCUdK7PiU\n8LhpYfjGZvw\n-7krYJUfFv4\n8z7YDo44-xE\nZ7KYTavLTBo\nMM0kq3y2AMk\nPvtJeQ322eY\n8HZ56REwh3o\nE2U5HXLiy90\nS__SZwFn0Rw\nT-m_67AX5Ms\niYU7ltkHYXM\nv-fwHV86PgY\nxHrOaF4Dq5U\nlQoMIGl_NTU\ntmwSUyoEItk\niRdTetA_Dqo\n9FnO3igOkOk\nnyKJeXDoqnw\nPjJzOpe9xEg\nkSyIRLpdmlA\nCevDWRn-3-s\nvyMggFe9WRQ\nWXsTZ7eUpBE\nljzkCBZuHM4\nNaKBQWLRJqw\nXS1DdZzYIik\na46FsHMRPkc\nmmuJb30cigQ\n6M8szlSa-8o\nKVyRBCk_V1s\nv1ordVEmJQQ\nva_wuPBP5kA\nfWPRhRM1V7I\ntrLRP0-zvtU\n-WOw8ePUCEo\nFZ1f-u8RqBU\nLpBQ2Q6GMlM\nG3iPKcMjGlM\nmszANpbvdM8\nIeMmE7HvO40\nkXvfBvua7GY\n2idVkpn0YAU\nIzr-5yitrb0\nojiHA64n6iw\nsa2TE--j394\n5gN8YA_xeY8\nYOkboxqOKBA\nOf8JOVXYU0Q\nuu-RxCqop98\n7vRhOdf-6co\nBI0lsk0EjfE\nAP3GWf3p4fQ\ngnz7BQ7lxJQ\nTfGmV-el44k\nNJF70sHMFN8\nWA3_SfMxtN8\nnLTcdOr66lA\nmSD3SFHaqwg\n8391icf7iLk\nap9g2vR32Vg\nMyvEWQL7veg\n7_HpQA3rLWw\nx90GleSXqIg\nnr037owyBqM\nSuJOuQ9PJ_o\nmdYIqSZblv0\nyehCJ076_zI\nnHpuQMB2pVU\nyJS6icRaOq8\nYdaeVone5qA\nAoAK1JNNKR0\nZRkiBDXDT5Q\nzj4oU-cUE9E\nCXacLvKGrQ0\ngvKBHCBBdf0\nO4itfvSP7-c\nTg4_lfm5VrQ\nFEdL1_zOyz4\nzZi8n49RMGE\nvETxuL7Ij3Q\n42sANL2ap9A\nu0ttQ8Dn7LM\nXZWz-YlVw5c\n1cekfpK8mZQ\nzEYkLkJs5g0\nbQzh5ugYzPg\nPGy7bpf9ibo\nVs2Nq6isib4\nlAgPsmTxBfc\nl59t24vh3QI\nDzUc3Eqzzos\nJly4dXapR9c\nA75AgrH5eqc\nMI0gOipkexk\npbI6qTih2TI\nitIDxKxfGJI\nc-ecbGNxEHM\nv5wBisDJJ5A\npqDU_EJrb2g\nujhXgFBjcZA\nhAUbdHw8QG4\nim1ZK1WNBZs\nMoPFAlf393g\nAYZZV6qazes\nJet1_E4O1MU\nCmhinct9OGE\ni4h9xcdtyrE\nZ9BefcGEB10\nqb0Vd5ac82Q\njvCmoJHIm-A\n21q8w_kAtkU\nFIo18XdSuLs\njrH2FZC1Z_U\nVHSoPTJNfPE\ng8nPKVElb88\nfbmyMs5HAR4\nMVy9DFwT-4o\nyJ5tQQhl8wc\nGvYsdMFsHuE\n-_YHQheqKxE\n-4Q-MS_oFkw\no_vwPlWTrgo\nSAYvv7GeSSE\nDK7-VL8Uxxo\nZEOI34R4iw0\nOeEa3gTsVDo\nvE0nmQGO4Hk\n_3CJHN6bBzk\nIo0PZTAcBes\nRYlj-btwi6o\nLcf227lWEek\ncZwdCa0ynEw\nvHmyJqXxmL8\nNz15PudXkXM\naDm4L7gjYNs\nVhRkUhY8MlQ\n3WscLkiiCts\neGJqzSFW9Zg\npEa07GOtQs4\nTUbgKkn9qFw\n60ldo3xGfGY\nz_eg2OjO6uM\nGk3MgTTHdLs\nWPPUUvcO43A\ndcsByxGdYO0\nvTeY6H581pg\nacs2qgkCHvw\nnDw_DOEdai8\nvWyPfvAbUOQ\nTvetwclCFq4\norGDoXo7xKA\nUFlhVGogIRg\nUMlZ90ZNGJI\nIdEekLJJc0o\n5WIwlJP6XhU\nRAvoR20o9s4\nK2JtNouF2rQ\n35LPE5SjhiI\nZRdLFB-SJpA\ncfDwQbxRoEo\nV5qEU07yVnI\ngvJLNa16cdo\npaCyf1IAKug\nWkFdij3Wr9M\nNeciZ5_hFTY\ntskuP_9J2RY\nySu6q4ydPZQ\n4cZQOWaWYj0\nHK4eFj52f1o\nMcBW00qkAlY\nQihI3ORsFn0\nGJz6eFgwgkA\n-swpG7VRhpQ\n5BKMV5PyjDg\nOAZo5VJVZCY\n21mtTvR21Ts\nSmFDafzmklA\nBQdE0_Hy10M\nvLXjWGI8sfw\nUkYl0Qxgkpw\nvN_HrPvTVIk\nC--iuM8NcQc\nW1fv8bPOwGk\n5p9rqqJmDaQ\naCEjVC3Dtn8\nSPrK-BvZA9E\nSXeiM5hAWvA\nqhzCkJXZVJg\neqdLKw173WI\n_RUjbQGPytY\nasySRpuqnTM\nK8nX2uH-h-M\n9SomT1Cop8A\nT0cNy3l6Zek\nnxRZisFQdTE\nvG8-BVdJ9_U\nfeHbFy5zPNQ\niC-oZZbET3I\nPZalnJDYFDk\nNAZYmJ_bVkw\nVHLbq6oeSyw\ngA9Z-Irh_Y4\nWj-RYFPvje4\nQ7spsnpuZQ4\nrojN1eCJgiA\niptTDWFBsGQ\nGETldyxkTEI\nr-briQqhGZY\nzyTCACwFsgw\nlaQz2eLj1-0\nJeeZA4B1qyI\ndUYCIwyMZTQ\nLYtSsBCYByk\nS4PYI6TzqYk\ncdkS0TgEG30\nHYtuw0c3dJ4\nOuH_qx192js\n7ycl6niFTsM\n-eocP3-Ifag\n8MW3KJUa8FQ\nceTBcVLeUtI\nfnF1_aVlIio\nZbeXU9FIFw8\niCfBiIzWG9g\nqgmcXs02URY\nUSGs4XhdI6I\npOgf3IaWlgU\nZARAldXlSyA\nrWvIBJO8T_Y\nnjHGa4f1LwY\n7_wMbTKsnvQ\n0xjYQiEDbj4\nxTdNSA_CWvc\nM2V8jSFKVw0\nCftR-xOfXsc\niBSRk-DbhRw\nEj9siBXzHzY\ndFwt1vL1JOg\nWQnFe6vuWq4\ny7Ynxoqo8gw\nntC0xJo2bSU\n4gh5B_Uezmk\nWqNMjZpSbnU\nAYQA7kCTPN8\nLVkOD1Uy_9k\nsrDyToPqozI\ndoVYFjIJcfU\nuxhJ_E3LuNA\nS7h60nfyg3M\nKfprSGvOgpI\n5nIwJTUMlE4\nAEEf_00tNos\n579nK0yB22I\nrCn7orvs0Ws\n5sEZmMeH96Q\nNgUGViWp3tg\nIBUOACCdZi8\nvD8p7k2-_zA\nQQyorpxZ8rs\nxaILTs-_1z4\naj-OpTHixpU\nI_vzG5nYk1I\nmPxTwqzr1sw\nvE8mFDabqD0\nBg5ll84eQTw\nv59kIbs3gDY\nLcX1BSUZVpg\nI2jetO_ky7U\nzmqhj8EOLBI\nMjsSG8pPTy0\nAQC83SamleQ\njVLk2tqreto\nnvdBfpA8r4o\nKLieNRvLmd0\n4ca0T6jbhHo\nXEsZK8pvveU\n_SR4O2gcXYA\nJkJmzgDiUtw\nW-OzWbkk5lE\nrFuhmG2wUXw\nA1Tgrq5wLAw\nNSXcYEFY_ao\nlB6Gk5EtunI\ntPJ9WsQhpMw\ndbE2-VU-4SM\nTT8o1fvTB5Q\nz54CDMBPKu8\ntwkjN0xQsWw\ne2xiwiWd_sM\nNqYAnj6YcLk\nBPrF_0Bg6iY\n9CIAkk-YENU\n_OFfuZY_Pvk\nX1rnBQJxfdk\n8rlohOLUi9k\nV67ozonzKRQ\njrLVuKks6lE\nSDAdzb9IeGU\nQLAYw0vM-bw\nonbiOVpX0_w\nojgy7kyNp5g\niamsdf-VSQI\nlQWvCntonxE\n4j7zD5ydpUo\n8Gu2ouJNmXc\nr763LgcxCyM\nL7GJ018Avgw\nF6y4B_BFrJ4\nt5KEbS5soMA\nyF0WIBF4lBw\nGc8MuT6L4Nw\nxSnraJOeOyM\nFIaxR4Z1jVY\n0nfoP3bmd1c\n1hMMUJ2Gn7Y\nA_lu5jmaUbU\nzLBEFvMkQCo\nQZq0zhzgres\nXNfCPe5SGbw\n5JLr0XUrEF0\nvLAQiwEGGKs\nY7y8tLgvpCY\nhdIXrF34Bz0\npAs8uvKNkcU\n0adv8zQsa9I\n3GG_4UaCD8E\nCZVsWzIb6Vk\npi6SInyE0sw\nS8mfOyCySKg\n-Y3tZpAdWTc\nd7c4TXqkMso\nMEOPA4dzK2s\n7gYbpM0GWTs\n06lJhEc7zIo\n1Z-MzwPzpBk\n1Q67bMYOm7E\nMjOXPVmOBSg\nll5qiWa6YDk\nUQDSN9a_Zgs\nLmiHjcCiYwQ\nt1gkRAWvxOs\nlCs7qjJzoDg\n_th4Xe6Dsm4\n_Nd7VxsQIGo\nTb6tz6ohprw\noRh8qQyIngg\nJ511q05SReQ\nEXTklH_oTI0\nne4ZgnPn9Ck\n5rrDUgMfVuo\nxEtptEM2_mg\nqAteApi_4IE\nzQLLIxNky50\nUy5uLy_cpwc\nWkfpLz3XMOI\noN-Ck_140ko\nESjSqiHhL0A\nlJiMlgvygvc\ngmo_PhSftuc\nKD5DVxqmjRo\n8Nbbi16tvYA\nFFWLkCnT50s\nGrMoki4-weM\nq7qwqVbZSqE\nFjr5MSmxKJ0\nNEg6faTj_co\n4SWqNoW_zI0\nOkdLWuCRe0c\nYonDo9SCqII\nWzBS3IIb-vg\nsPZUh1YRnDg\nPLtPPtaCZQA\nSxgfSDgHGYw\nufaAnz9XmsE\nHgTsJ7hBQ-4\nD6XLyg5wBHU\n41h9uoNt6F4\nwwe_yos_-ew\nr8XE2-HpGuk\nBuRr2uMsGTM\nAJ4edZsgJAk\n0s_EWjNNgWg\ngKGOG-Pr81E\nKuoC25LQrdM\ngvGNWLszAQA\nZNn6J56J5HE\nuw63_YyNsF4\nzVeJ5F26uiM\niClIIg_YtAk\nXqSYC_vwhDg\nhQCG2AwzTxA\n2wTJfcaezu0\nLTgahyvBMk4\ncGTn7aRFttk\n-9P7Ge1KmTY\nAhPCRPmHcxE\nejUWeYTslb0\nBoNAEfrI2oQ\nASnNWCK3kiQ\n8BI5jFyAdZ8\nDNWODAIBs7s\na38HZFbhB-M\nUbxMhvcxJJc\nHqS7VyuD_Mg\nKOGjVUa_iIE\nI5iG5NitBgI\nVf2TpWsPvgI\nLKR2bN9V2Bc\n8JyxfJo-iiA\nKJmWpR-4AIg\nQKP-AZKNl9k\nfO8nqGKrtDI\nXYZ_oLTFzSA\n0I84IUKomh4\nZXgyS34Zpto\nNnWIRGdMR44\nCO6yUpPvY7s\n8CCo0EI6zIM\nYY4kKO6wfyg\n2z4o-jBlqq0\ns3rv0BdxWfM\nGpNzlh5ALRA\nJqDoUCcJHPU\nDdDl6mbcGtc\nmGf4oL6RLGs\n0JmETteiVzo\nj2e41FeccuA\nQnyzZbrrh9M\nuU59kXuJHhI\neKKd33QEB3I\n50YQeugOMOw\nur0U4xN0d_A\nqZubhGcnsHk\nH6DqWP733F4\n-wX6_qCCnPc\n6ohgHjQvK5g\nC6hmQwfEmzc\nJsJxIoFu2wo\n6s8ZEFUSYAI\nYCSbEzI7Nz0\nwvPmP4xTruI\neQ9HJXZI_qU\noLIwz9gn00g\nqU0H2mmgsjM\nHD8tSGHYaGA\ncPYdLs7RRRc\ngHAJY34g-LY\nJQXj8pF6Rx4\nk4YuBxpQwqA\nyxVC4lfxHGs\n0EKDRD2sHI4\np8wvEC_cBU4\nJAiuiipD6Wo\ntff_EEQt79s\nFQfb9ayuY3A\nTHLll7d7Dfo\njbCyTUSQ6fY\nabhF5CFFW4s\nvEt5MqYD_3s\nqFWptPtHG78\nLhc_xw9cQ6I\naHJKwOGb7MI\n9zUaNKBQ04c\n1kAtlL7cZOg\nAr-hnj5Zsk4\nKF-wcaGD2UE\nOf73UiXUvjA\nAyrP-pwDayE\nQhVuXKypPs0\nl1B1_jQnlFk\nniZKrt4XAZE\nASVUj89hyg0\n6ZZI6-zh0GM\nBckPa2_A8gI\n3ema7lfEAMk\nFhBm4kprCkk\nGSw9sjqYK_I\nxuUtu2xRGgY\n2nmGS8rVuIM\nI_X0TKL3bqk\nx4utH5uWK6c\n2gaEkPaykJo\njXGV-MT-TmU\nI5TzyLhwKKY\nsuvJai5IC6c\nX-S296ENSIo\nZAMQGIx3JKk\nM0TjT53qpFY\nSiUT8u1LckQ\nyjF_gSu6xCQ\nibeJlYiMz9w\nRWwhA2v9UFQ\ndTllG2KdPMQ\n969gXtFAcZU\njavEwwHaNa4\nOFZS03hWtlE\nsCiErOySQtA\nre0xt6hDdqE\nM_ejjr2-4WE\nCw1YwZlfijg\n8kIsYLV8bE8\n80UzhoD-RBs\ncjFIi3PC2cI\n-opqUSOUDQY\n1ubs6iUMdyo\nMeypYa863r4\n_VIWqtzAHQ0\nG3N_ELEBvH0\nBVwLpNGBqqY\ndO_D5ilNoZA\n_MLgnDZguM0\n47ptIuV4NLo\n5_npi1WISDk\nH_SgDfv61O8\nuIl9IFcIXlg\nrS3VUoThFBw\nkglWIEtKSXY\nCztbQ4Fgv_w\ncudAGo1nSKI\nLmZV7WtCRi4\n1ODVyWqW4ps\na72FDTElH9g\n_EZCG2Ex8Q0\naARaYjgm_rA\nIBeMUoMTeZo\nvR3FPplcJGg\nlChJz2DSpsE\n-tuNR-uD_mE\nud1zpHW3ito\nOdlFHPM3A2U\nlpwrDEfCESg\nuE0DBpw09SU\n0_pN-X7Gew8\nDB5H2QGFFwU\nDpz8L-thRmc\nqCq0IXXi_2U\naWinsyIVC3E\nHa4SHiHf8Vw\nysIsqzXZyN0\nrDIF3XhXTT8\n7WqzJvhR9Fo\nFM26ZXjPL_4\nvKePn-57zAA\nj19-hpjJ4ok\nHnZw65gsesw\nAMtKsDnOw_0\nZz1Lypwfwug\ni9upvWNN3P8\neRBI1VSO7hc\n-gD05qjgKN4\nCe6jdrqyW0U\nJqDOosChydc\nmX-qK4qG2EY\n4R-cTX0i2hQ\nfa1DuNjhWOk\n9bvxJlLfzGw\n1W4y_8Eu38Y\nTOrEE5NeZ9w\n04xSMg03sZ0\npMTlNUKE7yg\nftst7XzK21Q\ng6sSw9vrO0s\nIb8uNldNd-0\nMy4ojpQzoWY\nGwQdBsTpmOM\n6f2-XlVHGcc\n1XBwwSzLqWA\nVNJehwzHpe4\npMSrolUBGRc\nPEnOSwKyrb4\nQikcO8tlmOI\nFnRp0n0RhDM\nEETi6NJFRjA\nX9mTMZF-CTs\nSmmKg3VG2jI\nSMQ6aga9mI0\n1EnGKC9Lk_Y\nWg89Bj_9Wg4\noEtIf_2mzJc\nZKIiHz62TR0\nqUKBDcMN7tg\n9KwuLlQrkVI\nDHVyayHXOdY\nTlfd0Y0SjgA\n_T7T-0iR2Sw\nzPv0S1-ETdI\ni7hk-TupE5g\ndbH4Amzn-Rk\n17MyPrAEQ28\n0v7Ea7kg2gA\nNRjWEE0hmjQ\nBL-Jg7CyqLQ\nqYf35nBq8Oo\nzTueXqC-xfI\nAyodiwWneu8\no2wVetrydrY\nGofDgoM13BA\nLoZtHl2YXAo\nPRKag5krnfU\nsR4iKRfUwOs\naf_J2e4r328\n8F8MBp-GBKA\nnuPd4L7_0uQ\nz6GmZrBKW98\nG9u3Lbli8Uc\nBuutvk0mHXY\nCXYlv-z_xHQ\nVc7HzKwZ55Q\nIYBAPVjJykY\nuBiewQrpBBA\ngeh_Mu622SY\n-hl0hUWyqoU\n2u1RrWj4RDk\nVfXFbuW47kA\n5PPQutDwpmw\nUZqpweWv5_0\nLBP8QDlm6OA\nfHYuhwnlTZs\nmIqXkwxzUB4\neYJYW_9mFVg\nTr90d0ZcrCU\nmjbxL_v2DPk\nYkpHalgTqpw\nwHSH-NpCQOw\n08NGebwIr8Q\nqE9eKngduGM\nD8V0rLDKZL8\nSJeCtS4D2HQ\nicGkuwUzbGI\n9Hn60TQSyTQ\nv8_v3EaYE6A\nwK0m72Rf7tk\nl0n2Od6zG58\newGC9K-7NXg\nbnitvEUDaBE\nurdf4g-LXk4\npw5Y_7wtJmk\nVR78Ss7yoio\no9zfxe4JVlQ\n_PZ_LyJfYe8\nh3VZ6IRrVlI\ntpyZHmGRPuE\nbRzQBGwfMkM\nFXcu4V-8-j0\nTY0LUIIwo8k\nZI63g64kDgY\nQoh3YkxuwVo\nwur5ljnTCzQ\nG8c6j-LS-ZI\npBq_lpX9LTw\nVBeTTZ4QBoA\nAmd6hjScF58\nOeE1spoom58\noJHp0GrlX6M\n4qW3YcXJeyg\nEHmjP1BExPs\ni8oGdak7vN4\najcVgbrSIWk\n9frZAZs1Cqo\nz3GNhBE2yhM\niNgDtwHreZM\nAiJP0M-5Mjc\n2ObQm0XBmgI\n7X3WSQtviJU\nWgLyqfSdbDg\nIP-NM6Qdrl4\nYetxvEnpKh8\nkROlgEPoSVA\n0xPu59_MHQ0\ny7wj3bB6OU4\nhW0V7kZHRSA\nBJHzyg9AOsY\n9h_-TIM3kdE\nmJFvqNOorTs\nDgd6gV5Z53U\nvWokC4nx7PA\nQ9AIDn-w3EM\nDv6rmmAk_Es\n6JynBr-1sSA\neug4wbPSykc\niBaUUJOO6V8\nQxXbtzn-6PE\nwiA6bjzz-CM\nSGbvYkCLZ9U\n5mAO3eeRP84\nonxbHFyNqGw\nPJo7WdHSxoI\nyosiG9eEEHA\nKISK76nF-XE\n5pzJ6qzeXlw\nmFcz_U62r6s\nqSbI8KRB74M\nMEYAoMSfCQY\nc77JrXbqqV0\n3cZIoQWyBCI\nqeY1mkXqKgk\nLyfG5cnkuEI\nyy7H306nKaY\nWdehPsCJab8\nJCLLZQFyGGM\nVCRyYN8DfUU\ng7QBS0O7gT0\n1crhwQPKr7w\nRD6BaHKMTXk\n2xUynRdzzsM\nxu0p6CtioZk\nisyFunAeYnQ\n6NbgGhD4tdk\ntGDO-9hfaiI\nQae03boj7lU\nL_QCioSGgwU\nz6QWyZYi8ZU\nRJACPfUU3nk\nsmVge5w077g\nah7mS9H_TOM\nYKRFlNryaWw\nIqycJpRdVaY\nTvFwTMU0vyY\nDq6jS6uazUI\n7iMvnj_UBqc\n4ZOT0aLogWU\nTB8q78FEwE8\nGCEBqhWnUDo\n4aI9-g_n_OE\nWS93LMcRGRk\nq3OTEdZkBaQ\nUqbTLJ0U84M\n1FkVXCCfg2A\necsPydUbYGM\ntX74H9IuYdM\nV4jg8o9wXys\n-4_rMqeyOJY\nzK0JaEde4VI\nsoEFK6PSKEY\n_lSzhjggxjI\nfgq0ecMHfzc\ncACQ2548i0o\n1DANEtz59KA\nEmUIfX9TSJs\neAJLWSg5PIY\nDtTgHuGgW-c\nDhGaY0L1lLY\nU3lA1kS-XKA\njVxyX7FcS4Q\n_tVFwhoeQVM\nuykR8csyO-w\nFL1acMVcHGo\njd4tpvAcKYA\n44RYxAPH78A\nS04ArwiZwjE\n2hlDkSg-Ycc\nmjdgDECpWr4\neLLzlb1SN2M\ntvCjr63AgtM\nFOzub_ghAbM\nYXjqTyQuq4w\nFjj4a3zB1ag\nxR9HuRUUTbs\nmUtHkSw9nEY\niTwIwfvNJLk\nhYq75Gm4UdI\n9Dv0rOjEVIw\n23ZWuWe2riY\nfls3z7Me2Dc\nPo1GiAYyjIc\nXARAo5zXJsQ\n2HTHPtoNJLk\nxLU_GvlaTtI\n5oOK3e53elo\n_9JONJG6KSU\nixbStXcVqW4\nJvVSTmfQJyk\nGH3WNYCuRks\nbZ0jZaH48b8\nlJVIu_wNm4g\nuvbOvG1gCj4\nx1gEy9LSa4A\nKNmmwUDi4I8\n78VWWyPDmss\n_FyezVyMFJ8\nAQ_Boszvgg4\ne6omnFC9jC4\nM9yS_RvQ5AY\nbbTgmSIDyn8\nnkwyt0ytVJI\nlSTkEHpkMf8\nbWJkPbBOXL4\ntRHVMi3LxZE\nJ1rrdlXZ-pQ\nt9f5FmSQeB4\nIXdycEK_38Y\ntfL5f6cZlk8\nd7pioagkX5k\nHhbADfa8rmY\n_8LrZ4NhPmk\nPIwZVG5wMi8\nB7zXxCAZjK4\nF_HKGZRUroE\nZFt3xJ6DvVE\nAcuaoDtYcUY\npoxW5pFQVEw\nOsJKdxPwZdk\nlR6vy0i_rRU\n7VTsFtwO0u0\n7jVsQToSfag\n3bdQlGt3cEA\nujC4W8hJ4mg\n6u14pLHV3Vw\nBfHSald-ypM\npS2a76BS_bA\ngQAZdGaMHu0\ne5uhElLMLbA\nZ5DlqH0klZU\nqu1F98-YEz4\nx1DLLAqLiAM\nfoyloa1KiVI\nSu6H2_SrpOk\nzhH9GJ7lpGs\nfzXK1hDkqYc\nAOKzlx8p6yM\nzJfuNE2rsPY\nWCenGKkj3YQ\nDsLk6hVBE6Y\nwAuzCjipF00\nSMCsXl9SGgY\ntPgwaQKNKRk\nnejXDl9BPbY\nFQunyqgIksc\nQeydehWrRu0\nH3E2nY0djIQ\n_56dNRLXn8Y\n1kk3Xvw7jn0\nbvjLvggrYUo\nmvgKGY5m71w\nwPT49WXC0Zo\n7Xuw-XKP1sI\ne4RGh5iAykY\naogWdNKef2o\nSgbe_owOvEI\nsGuNGXmQZSE\nvqOByzMoS_A\n0I1Vh-Ru1z0\ngG5kz32ot20\nrcgygxfcywM\npz0R9XJciO0\nqRGre50eHbQ\nbw7GnKjkThQ\nWLSQERsdER8\nkaJv6L8vF-Y\nJ2ZnJvnPgRY\nqdtCFKVtSls\n2QGYIM-8y38\ni94ldGNNSQ0\nDu8HRf6pRVY\noyaud2-X1QM\nJ0lof7tFKtE\ntlNLhuxeDJQ\nH8Ancd0WztU\nTgIB5Yl4sBQ\n46-oS8F8_c8\nMZhNDpll2Vg\nZiO-hWU7IZI\nLVC2uynUn8c\n4FsDFOIWiHo\nDA2JIQh96iI\nQ0xqrvefO7Q\nYd1ndA1_G_A\nGtARiQO8ljE\nnxTEOyfchP8\nZQzBHnXdPY4\nN9uT3yyoaGY\noCE8jHLJe3g\nCYgJjicx0yI\nnjFOIvoN9pc\n4YdP5YLuJDc\n8kBKeCR4xiU\niD4lY0brr60\nMeTuNES82O0\n2XuJzaDhV50\nyie3IIh0HiQ\nJqoH6dDyZmk\nFyCJ-hUXQ7o\nOSc1_gfVfCc\nQttI1akIG_4\nVFDN2EOGyDI\nJZZnBoruCik\n_-jXE-VvZqw\nxPBBnS4br9w\nep-ieEG06qg\nt1TC-pegncQ\n56fngopihOo\nUZb2NOHPA2A\nV8Dm3OfSn4w\n2Jq7xgVqPYA\nG2un8xvArsU\nb7lV6-iKiwQ\n5nyJNNk1jCY\n-vCVptWV5UE\n34bCs92ACpk\nJtqEy9DW91U\nWIrebinrQH0\nKLJ4xbE_j94\nIuFESp6a8hM\npw46kpxHbls\nk-mbJhVl2Xc\nGKh4VG9YQ1Q\nLozIIWJG9Fs\n-sJezi3j7O8\nBtn6OKhfHHk\n20tvG54uZLg\ncWYIlga8sas\nKJCvbFLtRB0\nAedxe7JThh8\nhHZs6i30Xr4\nU2g825zrVA4\nOyH39BhKP2g\nZFwI8ujpT0Y\nXkGVykfJIts\nvVRPMleD1SI\n_kqyM33kijU\nYGlqg2jC3R4\n1ESVngpn1aA\nnwBlOt3WDUQ\nRairI_NdWQA\nDknDCyfSe8Q\n_kocDBoWDcU\nZ6bU-bOkm2Y\nw_BL6gnrtDg\nDkj-8VuWNJk\n-dkz4Sk6UuA\nix0_IOPyX2g\n2VKpd3XEbD8\nm5rfQ59cc0o\nlS1KFyakAPE\nVcVDBbEpQx8\nyoFS6X0RKkA\ngZ9nPV_stFA\na4wb-xmYM50\n03Rl5exupSo\n7aW8oyTgA60\nQA029M9LIVU\n2QGI0KdwW8Y\nBWWfy9YSQmw\nnaUJM6Dp7qk\nEb3oEMSXPnc\npexcH4Ffi8I\nlTc8TxNTh6I\ntAH5PR2SvXM\nXU8Xdt7tSyo\nEPtxN1YoQ3k\nVo5ycPggsGY\nk7OWfTv3Xr0\nfuAo0q0a_Ww\nysFpoWSlo7g\nltMrjNiI340\n6Vj6Up8OaFo\n4XhNhG_zq-A\nbBBV7uUGER8\nW7Dq7vqpGCM\n40CUuyOxUZs\n9Okpnw0Ktt8\nnq382fby2yU\nMg7YM02K5ek\nfsMC6d8DeMo\nlHodSSB_YpM\n4M1mi7Ommbg\n1KCTiqj_-tg\nyqtmypCco-I\n-heLeiCeD58\nDWa1IsbsiY4\nuNsFppO-q3g\nlDDtJ_J_hhw\n9lro80T1eV8\nTx59CHKUgjs\nvW4TOsL7e3M\nVDm_Pg2Cdsk\nOK7Hm5IztPc\n1tdZ_k0eaHo\nAwh5WP9BbGQ\ncwprGyncs0A\nsSvxvpY7PZM\nRW4ADt4YSy0\nkp3HaaTqYP0\nx2wH5RS58lo\nLXM383MIFYY\nf3XcExCD3HM\ndu22ttQhRhA\nz5S3e6sCBV0\nLwgcvZ0z430\nmhaxNZs5MGc\nw57ga2Yiic4\nPiJ5Ef63OwY\nnRSaxtoy7fo\n7tFLFMyA0EI\nHSh63MNfwbE\nyly_wF8DyE8\nIo7wUtei6BA\nWhGFwk58h34\nkRCO31JfDck\nCjIU-zqxJEA\nangyfkPmHMo\nKgqzMdBg7ig\nnukRk0WMspo\nCj-H4ZcfVU8\n2tI3Dz2Ic2o\n5aLrRe3K_6I\noZEJTJSZQQs\nCwLcHWwjkV4\noviA5ncbmc8\nOGpGO7K3aBo\njmjcKSMwC1Y\n0RWk0XTaEX4\n0999Zftz6-w\ni-6UVTMiDm8\nVSjHX4LO35c\no2jtBk4B-hE\nOQrJfULly20\nrHPTGJpgtFU\nxDvdVxr48UU\n-cOOPGQGqh8\nb0dtzloyP6k\n89OOSFlcy98\n9-tYZkJ2p54\nxSp5QwKRwqM\nZGNoXIhKTLw\nVWb1z6ZwUoY\nEN0JaJN_fwU\nFHB3oMNWk1g\n7_pR6mUYtOo\njj7BRKHml8g\ncjyqWsrpQAA\n5ohlA__xABw\n2LWGe28axmg\nxvf--4i6NA0\nlBSi1KKCRQY\neh_vTiBMvpo\nX1JIzLmbkA4\ndz6QtPfCmrU\nEVGsdxjfeO0\nOdaMqivNKZ0\n-k34FungG-Q\nYC65XWrNn4s\noQAqWa_86vg\n1dqc9SW9OFI\nFnmbPDYmz0E\n8BgcozieWuE\njcp5lTiZEUY\n9N9BwAElBiA\nQE78itp1Jn0\nIrptxQD55zY\n3y4KK8Bd5l8\nBYwC-WJQKd4\nlh9z3hPGqgM\nLHpto8gCOso\nx6oaXdPsiN0\nimyD8loUM-g\nz8fwAxhgA-A\nktrHO9uETjk\naKgha2AsDNc\nhKoYPfcWpcU\nBWWTObc0KDQ\nYOcfHxXt_aA\naTsjwO97Aow\nTaOTPhkNkbw\ndYvCGjka2-s\n6whKr0DDbdY\ncUknJlnzdLo\n8Jd-gAm1wMU\nwACyqCoTTno\nY3WWNavHXSA\nfQJzgovGkSQ\nOwzlxG2_8hA\n4sJi6VExXuA\nzJ3ZcmivZhI\nPnFxS6a2aPU\nDEX-5gM0P8I\n3teArKtt1PQ\nL38yiP7vLwM\n9enPC37mHrM\nW3HDdYjGDzg\n5Ipcnz96hE8\nyhaoJxQpRg0\nD4dT2eBWI2M\nSF24fZvfoHs\n9t2_DjGU_Qk\nQjCxoikhxSE\nMiPH7hknJ8k\nydMwnnhLnLU\nPW-RHrX7Fnc\n9o8gzua-K_E\n0A80j2BuMaU\nZynRcyXIGKM\nTgLe98ts0QU\nF5g7u8WRwqQ\nXObhhoFp6G8\n5EN8IHljaaE\nKq3nRBxVD3k\niYsOzr1hPl8\nwmbt1RjPn4M\nSs7i62FguNY\nQJYrz4jET9M\ntQkepXxAGq4\nfUxg-0j1Ijw\n0UBym5z6rgM\nKldCgijNQyg\nHC9BNtZrnIc\n7SU_ZshgGro\nHaG2Mm5K6TE\nsx-obtKU1jM\nJ4yrUjXQJdQ\nf4wQCy4xIyY\nm_C2cbqPkx0\nqXTTXNZucIU\nIYuknBe73ik\noWr69u4tLoc\nwj0aH_PiAnI\nXwl5DKs5HL0\n39-n35p2juk\nQEkSX1S4kwg\n1khqylEN_48\n-JeKHhnEcw0\n01qhgR0WsnA\nKdfwchgYp-U\nxZOMiFk2ThE\n6XFzJ3WtYPo\nFTgzyx6931A\nIvPewzBKqYU\nNFwg1siPn3A\nfXwVoMcZa90\niGk8yvyixvY\n2vL7DtW6wGM\nbU6V_rkvECA\nwRLLMDtKPvc\nG1IQQRRhI5M\nQHUcubYTt0o\nCTCkd8aEpZ8\nwsvdvNRcUVA\nQUYNJvRn4jw\nFRLcggpffDk\nShCVyu04OCc\n93uAmv9qwNs\nyrZ7CsXcTrI\n8YkX-DZDB4o\n9ZM4N1bdm4g\n5ai_pW6LPpE\ndw4cZQicaVo\nBn0-7zClnWA\nzMEjTw82zDc\nKRCwsXtAeKQ\n_oBX12cEu-w\nTs4u--T-fDc\njgcD-DHpPR0\ncvEJy_9hy4o\nNyxW1SxFqzk\nlPrOstRqB1o\neI8o5C5l9J8\naQ6ZzIC7OZk\n3VVxzAw0hzk\nBpV5wTbvq8M\nICC99mWSW1s\nLpPNvHq9rKQ\nnE58ZtIpNSo\nVz0R6lgYJb4\nu14YNz-Ym2c\niZ1_8kpRnW8\n9e-6wOwlHmM\nkHFzcXAU8hg\nrOTyj0-PRRY\nok-pfhEHoE8\nbENL5AzvP4w\n7sQ6ktZxmYY\ns3TkMEuXaqs\n1VkkHqm3q14\n4zhGIlO2Lx8\ncMbUCMRhH9M\nvtXNIF662BU\nBo47QGYq-LI\n7v6zdWNRtLI\nOmBxRiaJzFg\nDTpEhN9pzbs\ngiegMz7BBPQ\niRrAI8tl8d8\naisjDMTWr2w\nTyPhgetzMfY\n_MeA5EW8FdI\nRUvQEHa_lZQ\n3aCT8ZhNBrA\nULp3vJ6Dme8\nh-a0Kx3RlIg\nb8SJezYEQHA\nUchtzdG8HdM\nwOzRG7N8_Ic\nR7cqvLTR0vA\nNq1D205cXss\n30shqA196uw\nf39I-UCl9Qo\n_U8k98LPpjg\nsp4A_jU3oD0\n24kOoUWjz5Q\n0QbMWpwr7FM\n32OtN3z_DNs\ntv25UVPcgxY\nUJ36_9oVTO8\nd3-AXjkz3Pk\nRywZwxSQcvo\nvn9awsg8BjA\n049R_wOazQI\n0eC9f13FIJ0\nP63QUmBOP08\ngHf9n0jhBdk\nEKd7hAoXDPU\ndKFZ4T_Y9Pw\nPuFTYd0b6n0\nAVEnTcDIo0A\nEqzhYb-Ey4c\nkmGvvAof2Ww\n9nqpOwh4N_Q\n1kh5X5CJAOU\nCxCjXAy6HQE\nye-S7zxbv9o\nYmIShBpwLPk\nbWyLG7CWLjA\nQSVX6S1zbjQ\n3TeYtmJXgQE\n39zzDqksCHc\noNI9u5Q4TLQ\nlvyRzKr6Bkk\nBSuaYQdLqV0\nrM3mP-39_is\ngINx5_Hs8C4\nOjHsjB_foZI\nSDS5UH9Nnus\nPaYl9YVeXhc\nUJhTR5FTd2I\nRZziZRbaCPc\n6e59qLPJxgI\noOFNIMMfTUg\nKJnIgY7l_nk\nOboAFE4Tr8Q\nM6gOHxwffBg\nQaNag38SNno\noP43IvevmjY\ncHEoEuY_mTk\n_RVQuAICxc0\n5otacrrli04\nERw4l461lhU\neQMofmwnt6s\nT7-sw9PhQec\nRVDyoCWz0vM\nJITv11rctGg\n3rnomffKi0I\n6FJfcqLCkIc\n45wce6oSr0M\nEcffcR-lgtc\nH99XlWQ9KsA\nHJjBZoopPXw\nISTPRoBW2sc\n7xWlr8_R5YY\ncGbTf-FgG-M\nBZwbVffx49M\no-Hcz6we0mk\nIsof3ww1UPs\nTpp5oqIzQL4\ne2FdM0YQSHk\n7E8rxZMCldI\n8_2fitdIp4c\nXobjkWljkXw\n1UWy_6S-ZfY\n6_CtgelI6xU\nYv6L4DunPDE\nXGZ0K5Rpacw\nDhhKbHpvGwk\n7-C1cpG6TLc\nShdmErv5jvs\nSzfQ2Bwhkcc\nP9e_I-fkJ6c\nOGKPmBtBpBo\n3vi7043z6tI\nfuCEfNfuoiM\ncIRL7jMVh8Q\nbYVsnJR_f80\nrm2NO3Nr3hA\nK2vOPpJFstM\n94mvgpMi-rQ\n3CAQ0iZKP08\nDX5KZHeK3bw\nNn6y3CUpIfA\n1DnnWl0Qkts\nsW-ddNOh1hk\n8WrFOPPepCk\n-I5e_GXU4Zo\nNDW6AQjK3Q0\n_eruoEC4LsA\nQtoKDVTZfSE\n_qit_nq-jUk\nnTBBQQRE0Z8\nL6IPj5zl9oQ\n50j2eckQ1to\noXouSM2JOZk\n8D2TivUo_zU\nt8yv6xn2HhQ\nZWeqx9VP2zE\n5GWj9H4JId0\nH44ZLiOlN0A\nh4wnyCRRi0o\nV5xN-xNvwsw\nTIvNRHR6GbU\nV0BHKgbef9E\ngZaagSRp8F4\n2B4dnGQc9wM\n-vE1JNGKvxQ\nYgqgSaDCgC4\n7lKWPxDej7s\nnDTVpRRoqcw\nFE8xpnLMZlU\nmAtSvxJe6Yw\n4Qrs43i_S50\n6G7J6lZDW3E\nJZtErr7VLKE\nNG3ru8QGwl0\nXPUqjed6k4s\nVYQoxBs5N2A\naFqlaPLvkw8\n4t94x0N3AoU\nuQ84SYJmHYI\nmgSQQjO5pwI\nr_3r5f1W1Oo\n_UZxXUwQX84\nWdDUhHl-BzM\nDwKBxabn4QY\njyerVX4GpBs\nxHlaIIyiRSw\nUCehCmHzBzw\nC7_7Wco4SWY\nPmvZQglWfJM\nIinUDFR7Sr4\nmTHQ0fQXf-0\nvXmHNYtFll8\n7Ro8QybNKu8\n_v-_KbjVPxg\nIl1j-dS5dBs\nrnlyf0wk0ic\n8c88JWPmDrA\nXGQpnngBL_g\nMUFqS9iKzHw\nGUyIWu59kig\n8osn-0mHqC8\nGlXLG_rF9lg\nX-w-beB9r3M\nwweMxbvl86Q\njfbbUufb7jM\nXtTVNCZEcAs\nqSmjZYAZQp0\nvgZL3KUbu8I\nshIHmOihazQ\nUBMs3lfRim4\nh1KasQ7pdL4\ntvRH4kLj-Dk\nD8aAHxbYCCs\nAf6v6H6gvcQ\nMUeixjmY950\n7-59dVoKmik\nUDqKtqsOwBs\nNELtiWqsHY8\n0oDBrYgawmI\nEP6Qb7rzBmA\nYYlvedJn5W0\nAmACeERgRA4\n0VRTOfZePkM\nR1ejcTtTPTY\nedVZXNgaYbE\nw-jFuEpRFOM\n06yqAuIbuVw\njJ-o9HHw-_s\nZN9EtTazTl0\nBNCwxQQcXv8\nuWalH3hnCyY\nPOEUgs1Shqw\nIqenc7PJze4\n4Ufv8hcJZ_A\nL5Yu-IGx0-4\nwX2AeW_M-xc\nie7XVOuzf2U\nQflHaPOXcA4\nrypwboimK5k\nU0get4DzXqA\njxIm__RPZuw\nWgFa1bVTQEs\nalziIIbUN9o\nYnpV0k673Ug\nOPQbpZwpLtE\nITSOiqkDzrI\nAIkEAcjhQOA\nfGV1kmATl0E\nn1rhiQzW30k\nwJRb5MKvouw\nCrKUXT6JZ7M\nmXXucVAQdf4\nRlPaVTRPVLI\n27gWbiG9w5A\nr8cegnOVDjo\nfb8Xk2_yqps\n2Q9h-B9OVVA\noR_XFDHk0Kk\nNQdNfhG-s8k\nTgOGj14T0M4\n9hbBpOHXAkc\nn-G24ROD5g0\nYShA_c8OUl4\n6J3zkkpEkWg\nNcYbRZdgLik\njqdKv0Vz0sU\nMG_o8Id_UCU\nSEM1DDRM5r4\nJOQoxkx9uS0\naUIjcrHyvHU\n5nilVcDLNYs\nuvQFoM1fj0E\nZpDnHh_JmQE\n1qamIJWkKi0\nPypxQNMzAHM\n-9Cf6w28dc4\no3fUAorIxss\nzCpJ5qcmPnY\nOB4ppp4EAAw\nk6v2NnHxYPk\nAYfAyTEVnVI\nQXqBylUsyzM\nKe7vTfbeH0w\nWRslUrt2NBg\nrenIgi40w5s\n1TeoyEPmuzA\nNVB5kj4k6O4\nwQ6wc8oc_E8\n_5qVrmBANTE\nVAC6RfndhMQ\nAkl5BAnhh_M\n7HHCL1eRdVo\nxwRlSxS2azA\np_UeWtpIW08\nTXZ9nnOteV8\nmcWrZOrafnA\nKGKqdRDo-N8\nOXcI5qu76jY\n8FysZvGGiz8\nIxWEtRxzzhI\na7K1xgoi_c4\nv-OP9DnMN-w\ndwecZ5D3tFY\nOIXDhgqDYV0\n89c3RqTIxws\nfhO2QtGb8tY\n7SQWhD6OeRk\nktGwZKWClZg\nnic5WxX4BCo\n-YTLGLeKoJQ\nm4VP7c5UCdE\n2vjWxyJtUdo\nRfKKArjmRHI\n6u79wLUXGPQ\nCf3RfidFKBw\nWF724QBowDo\nZhMpx9aeefY\nfnH1ZtugoqU\nWEnGy2hTHgA\nJ97F53CAA1I\neSBnFu1YnrU\n1JDAa0BvD68\n2FKPDOpKzDo\n2_fDhqRk_Ro\n1g82D68N-ys\nqUiptlAJcyQ\nJomrLxDiT5g\nV1wAemvxNaM\n1niI0J4kdI4\n1pq96OQlUWs\n_RsQsYJ_oWE\n7r_DI5X5ROs\n_Cr0nP3k_p4\nq-y6JBpCFtI\nYe-GPGstKFc\n-TzrPYcpPvY\nq-StMfE8NrA\nT5d-R7FDG7s\nEniROJmSS8U\n1G9ED_K_IAQ\nfvVBKWMTSRM\n-SJAzpHg4s8\nKhfsAokR-D4\nYMb-AODYc6g\nyUd_E5dnVx0\nFRogQQGQn1g\nKRhnyD4ZLkI\nwzYht_EEf0U\nmSeeLOr1GKI\nre8jdVlrltA\noxjeihyxCnY\n9d4Zddhcqbc\n0AspXDFcGlw\nLN1WX6JkYaI\nCqXatBg5LtE\nV4aBCK2UWpQ\ncH8W_cTQQvw\n9mE6UqKoe5Y\nzHzbei3YeFs\nvrCmp9js4YI\nFMcQ9qdYBUI\nvsBwRV2b3LY\neMFxQti1xHU\n7fYY9Fk5vg0\n_qJp9DwYgck\nFkDrbUQLuHY\njbh5Q-eHULU\nfpLdP56W3do\nBIPpar64F5o\nmIJdrHpr3_Q\nFHs_-lvHG4E\nGeYJEkN4fao\nqckVPZkmiNU\nqDTmyJdVAF0\nt5qkPMvpDfg\nJU189rHBIIQ\nOgEr2VRg6n0\n32XOkSNoXdE\nGmza139ypxw\nil4NFf0V_HQ\ntYPUzX8KTXw\n8TIqqUbWUTI\n1OcqJdBrRpw\n1G3a0mUEz5I\n-Ml2V9Mos-4\nd6Jy5tMv0GA\nk7koR5o-fUM\nEinsfcAsUoQ\nMlb3avSMD_Y\nhol98WRZtz4\n0QTBwHx-Wuw\n5UnFOqWJ5SI\nzS9ZrFqMchM\nxw5Iyx5ejO0\n6bRqnek7R6E\npxHoR9Cc6Rg\ncqlk4EfEDJQ\nUvMusa65chI\nMTJzGzdA3c8\nqcP3rt5etd8\njFKbSAjlJY0\neP2aBRb6geI\nJ_uWB_m7ML8\nqC7yIu-ZQZE\ns109ZEZXQJE\nu7tSASIBz4Y\nDfNfg963uEA\n-HTF_tAUtkQ\nm7_LwdyNsIQ\n4oY9E3_6jlY\nrBZQHST6BQQ\neLFf1LzuM1Q\n5jAVjQh9S8A\n1fscFQfphvE\nzQydroqGFbA\nUYOH5SCstlI\nUEndkOUG9M4\nPTG0z3VWa8g\nAKpSGtlsBws\nTuQLFcJ8Eyw\nIlLYqvnCs0o\nIXgeL39PXAE\nDvTSWj2tgnI\nvNrNofWBcas\nsWs843kQxaM\nYa4RBKamUqU\ndRwiGgbaM84\nnp_HgtPXDXE\ngec4_X9J2K0\neoSPKSIxeek\nY55tkTIy5sc\n3Vimb_RuN7c\naDUZ8IC6wco\nq15Yv0rZXqs\nWASIZITWvZs\nCGzMqCfxpPs\nwYMfDxQdnUc\nsdNPmpfgOMw\ninAlpz8a0aU\nmsKXGrgvzP0\niGU6Zqxfw5s\nwXYRFo4rrrw\nhQDDQV-oCsE\nSSgDunmuSAA\nOnYQyspzLEc\n6Bk2AsTcdbE\nJSHPdnYixNo\nP578OPOe02E\n8VI6vvaZxbE\nQNv1frrhj4s\nxfxhI_l9UYQ\nX3aJZU6rInc\nUt_lRQbeQcU\n9aaVOicCVcY\ncETZjbXsUog\n2baUXj3vrEs\n36WAEsNsfng\nAHudLuix7As\n2hWZyDGHNxI\nCrMlZldzxSg\nx3SUKG6l6FQ\nEdxnFXQId-0\nAqKpGR4EocU\nTfWrCqaIAtE\nTbdjQ6LLFsU\nTJj7YqhNxiw\nHLIVYHitYPw\nIs9bN_cdTMo\n8fIL99qy9HU\nFWx6IsqPUKk\ncQA8oY5pwJQ\nycKGXmtM6hk\n0aMQUngLy1Y\nBiO01_Fe6To\nukvZvl0GElQ\nFmiBHWtxHLA\nJQRV5_auS_Q\nhSUo-HJ01kY\nWo2ZCh7vc2E\n2sY8MYUTfiQ\nLQFM8e6gQRg\n76ftznPZmgk\n3J2Hm85PD2E\nue0MJQmrIlg\n-Nr56-RD_g8\nLrSA5tw_KSc\nC2db3UusdPc\n90rIOemL6Xg\n7kTGVJ5OKDA\nziF1CU69IEA\n39gtT7pdMwE\nV_i1yhjzdgI\nqwsrKRo5gdA\n88fxqiFGNXY\nm5aE6rnmIwg\naZtlkGEwfSA\n4a55PnIKoz0\nMlhH_sjxXaA\nO4di7-6b7eY\nEG_6BpNd0Vw\nuECrYxTF-pU\n2OOUlE9F190\nZGF2551BMIc\nDDfuaxazcc4\nV2E341Ilexw\nD93lQnQlJcg\nw7VbNRVbRQY\n-BOt25-zf8Q\nmeDRW5WV1R8\nTsBMOksruxA\nZqTzBhLdJO4\nDZ2_coKUWcc\nAdJe8nZ8crs\n3CR_U8066OY\nwMZ5UJRpxfk\nJvFNTD3NhH8\nLbMpSo9yvZo\n8uHpWrtDfAU\n8RRzvri051s\n02064E1SHtQ\ndMJolQgBp38\npYXkfLVbLIQ\nptgpK6nH-5g\nwAE0vlaKvkM\nv4Zjie4qH04\nKUnaFhIJ17Q\niNxUsONmig8\nJv_AlRfm998\nghn35eUPiIc\n5oAIVuFPUdQ\nzTX_mBbobME\nWA-A3QhXx30\n-5RW2xQ9pNs\nweTmdGoN_SQ\nvILYE9lG3Aw\n4gbvjHb0ZUA\nd5lyojjyMl0\nkEKqDuIl8Wo\ndkB5SsVVlOI\nDZpfEy3OsrI\nV9aRvKzTOc4\nViai9bgo5KM\n7rDK27McgEg\nUD_gJShgozE\nO7VH8LKDnr0\niMzGaN5Sg3w\nNP7_SIRfo-c\nqYgpnWoRbXg\nsdfDF8OuPPc\nu1_fdJ0f2iQ\nHmGeJVIfb1U\nCaCW78inauI\nv4kXrblmBE8\nIZGhNReGZTs\n_fap4qRqTlk\nrC6WAAlNHt4\n_ASByCtlV_o\nebNbXsFdz9w\nO_GMXI7Pp6c\n_frVHCLECNQ\n8wDlH8jWxYk\nXnJvHpxr1Lw\ndcO8blFBl8g\nlQCPntZhPPk\nSfQk_TF9KJ8\nCXJ8c0rWJsk\nsBpNA3HWj6Y\n-NeY5tqk1N8\nJrlQ3NAcPf0\n_h2BB1vo27s\nx1brwiNhp6Q\nYo3qKhfO_V4\nFYh2_trJNiA\nK_jwfCn9X6E\nc1nmARXTuvE\n029Mdp9jYiY\noN2S394WfuU\nc3nJu9SBkis\nKVy9rgFD5js\nRnTG-5XU49o\nCMcqNCzUlGw\ny-4yAOPVjZA\nIBN5GruNnME\n5k5l5PQJFrE\nJoNeXThhiqs\noFEEoG2s_04\nghaZWnGSgMI\nWQyUUpQzdto\nHxyKbR3GmsY\nnINkPmHZfRc\n8NFxckpb-CY\nF6AdQghTUis\n9AyPzu3JmSE\nsmtDfh1TXe8\nqBGFAnbZS_M\nFK2rc4NbKco\nqrCkASenz7I\njCatADs_uW8\nCjg8Hj75FPQ\n5d0GYRAD_aI\nMJJ8AJUn-p4\nBxFaosg1mV4\nmFj1lf3ECK8\nB3oSlrpSf8k\nLnDG46BruE4\nPUo-B7AEAWY\nmoJvW1-7_Cw\nHnqkmLTgv78\nrlX19RmlimM\nUC2zyr54O2w\nUgjmE8BWps8\nI-xbToSaaPU\naxqYHL-KPRk\nEYKwSLZPwV4\nRxjCZxfPA3U\negC34ixXtos\nYYc1h1Pymto\nDTJii7bLit0\n_AA7Q5bWirM\nMiyfHiRy_tI\noHpI2u95uUk\nmLcwaMW919Q\nJbRDwutWOng\nG-_QYRggMwM\nFdvsQb7f7uM\n5tpVvZo9hus\ndL2_nbhJaTs\nOPmVkpUsbz4\n4pmBvrehyTk\n2AHC98YRBKA\no1JgvBy3_cA\nc9vl9Rurcc8\nT60vdoUUk_E\nFmG9SZNVpmk\n1uIPM6h1gDg\n1cFyFvO56Sw\nGwkD7itIsCM\ntqjyFalTkw0\nWwoxu41UkNw\ngU8Ksz47C54\nbVZ_-0df7XE\nVyS-apNPxUI\nys3a4yA-5Eg\n5GL9pbYS_D8\nkBJD6iSkqxw\nVGQWULimSCg\n0GH64kmHZvs\nyPbgAbAimoA\nhuE8fA3Ln18\nQQ6SadUAXWQ\nI54GtHWXwpc\npv7Y9z9ZvR8\nk3rxddIltIA\nVtVq2S8qp1k\nCmCNWoo1TD4\nM9MvIL2FDaM\nKs2IFhAqBSE\nBMVmbqSR668\nJxZHAMfuwsA\n2RXSVTFM3hQ\n04RW0CPquaE\nNCm1lI1L4LQ\nANZUU_ev5HU\nlfXtePMdNMk\nSELIbxPbbh0\nZDYLUH3BImk\naVCOzbRPapo\nGCOXBnHRdmc\nvz2RAznAy9Q\nt1x6i73klIs\nJxk0QX01quo\nnYoAZo7L2w4\nZryPGAMBuF4\nNUAs-J9HatA\nCApovMdNxw8\nUd5-cq0a1sU\nwlhtHcN0wo8\n72R97Mzaey4\nJhGjwr3rLtc\nMDdgxMEIYFI\naJl8UJ7-JiI\n5WaI5NdGVw4\nuDr8qT3BlHM\n23x_B3MpUH4\nrAULcuSAZeo\nv5-gQQunvJw\n_i9YzGZS0I8\nH-5mWBsCOaw\nN72sZx-UMlg\nHGdt0QR55Ko\nXFoP9Dy1jNc\nm2REqMDEXNU\nsJusqH8NxP4\nRslDexUKDB4\nq7DHkw_5Wzw\nCW_yC7l6PO4\ndFIsw8XfF30\nBpnXXI34rSs\ng0CFQF54ePo\ns1Y023ZS4Ms\nrFXajFXNWQw\nsQolThygoGk\n3qMNxVVQhzM\npuXEHhZgXaY\nbSW_sW_A8pg\nTksvZdrx9_A\nOUo2Klpa8AU\nCx7ip9cWKJg\nRSvx75Md5l0\n-WN4uZXOltk\nzJZiy6BuuLY\nMqQ9-AP36z4\nFGcla1_O220\nei2dYpiS-Us\n3gCyObtqSEo\nYGFrKow2KfA\nGiom5_byviI\nwMvTR012Dmg\n93tR96egox4\nBF-sTHMVoOc\n381Di8Cw0-I\nrRUuycF5FTU\n8yOBCGwMpeo\n0pxJFZ8HRV8\nv91LBP6w4aI\nWTi7v77XZYs\neW4DpZkOe1g\nbW3ur5td00I\noJ3bzg-Tvt4\nYOxfSSv14CM\nqjbkmhtAsJo\nkZGlMOfzhC4\nyIF3Vr_at5I\n4Sl4t9JNnuk\nNsNN1eHv7MU\nJpE65kS0aIo\n9CKyWqb5-sw\n-fMCqLBMPPo\nA-BrlQ3h1i4\n2lavod63XMI\nLR6C2oVQr_I\nPhBZ50d6Btw\nMRmFis1ZxUE\nlAIJ6Twk8aQ\nDHDOgbfwSlY\nWjY6_V2EM04\n_r4a-vgIqgM\nBSy7Wzj4OCY\n6wa4qfLmyoE\nSvVYUW8r_Dk\nB_CRLQ8VXAg\nrVEFouzc6LI\nXFmCXGXAZ5A\nw8td2mMGYjo\nBdgWnY2SCq4\nNoiLYCUpS5A\na_7a2sP4WMw\ngAN-yHGtbY8\njKu10hihpkg\nmO2W96NCiRc\nPKr0pj8Dw6A\nOaFB9lMthfU\nnDbBWcwu1jM\n8tp5RSId2g4\nBSBKmD2TRow\nViUbA_O3N5M\nmM2Tc_tYYKk\non6B12rsn9Q\nZczgtOsK7WU\n9dcybKF8Pjo\ncFzsm8tKWU0\n9dCHSNdHZQs\nuD2mdsAwJBA\ns5jDTz07buw\nKwnTYy2p0AE\nLOxqK6o4NN0\nHnnBvemHrWA\nch6zVPr6lWM\n6ygujqr_JWc\nHOr8EwpHNwY\nHp7zxA4BsKg\nRH4cgOQjITc\naPElaYUCTmA\nljK_2ZT44jA\nq4G5hUvL-wI\nnKCIuHUFJnY\ncvakyq_EaWY\nsogf5QgMqJs\nJNLW2R5dYOM\nQnaTtsClgc4\n54kfWG3V-IE\nlU2FHV2lr04\nEqoU4-wHxDU\nSHdKVf4jA0c\nLEdvMVoFgro\nx9U9Xi1yQMo\nc7StgLYxbPU\ngpO1qCdOHGc\nGp22ZHf0_a0\nzCz-i5sPrBo\nEHeR5XCO3uA\nb_BJbecP-Xc\n8SqhsheKNqg\nrqWU2zS3rJg\njlwA_X5iyBA\nqPpMWDyyHy4\nOel3rZOooFc\nAQAQUyNnXms\nMKVy1bpJCi0\n6JHAWVBOq3M\nZ9GVG_9yN7M\nfZAksSuI1R4\nujH4hnVthhM\npgk_j6ehCEA\nF4vBy7g5vpo\n2sROc10VoBA\nMxtB_Ri0q_w\nq-5e6U4CdbU\n-TAp26oPrvE\nQz1-NSdsqNE\nCgfw3cjfO6A\ne4IJ2LyK9cs\n-pVDJkIp5sc\nomYsWxT4Mbs\nnAq5GhiMdSA\nfIZiQDCK_Ng\nPgeCL2KdU_I\nJoPPsr14gRk\nrb7z1bFt79k\nSzzO21mg8yA\nvjplEkEo_H8\npuwOGUjUKz8\n9hEYOiPK79g\nc2TTFWzBuE8\nxy2zgeQ7ECg\nNd8HPu7y8qk\nxoqU0B7BGQI\n9leTC1Rk2bc\n215DJ7KbNsY\n4zT8gk15yrY\n55wIwwmrHxk\nZ8E9FEaEm8A\nimtYtoHzPJc\n8aYUJSDZHKw\n9M7i6Uaf_f4\nHzCGd_bsWns\nrkuhTjnuQZ0\nYE0WStB-1cc\nrtVhMrgtcq0\nROYuupoGarQ\nOLhu6bw5EYc\nRCptP8ItWmw\nr6Lf8GtMe4M\nrW7WlT6OJxE\nkdj7BqZQfaQ\nP5Mn2YHVg0s\nMievQTukqMM\nAO_t7GtXO6w\nZYq7Q_UW0Vo\nB2I2s9rEOCA\nsgzxcBufwS8\nbzRUc3Zrvfw\nu9R34QNUy1g\nHapeoGg80EA\niMJnr5bhQUI\n1LYn1my4jbc\nR06Ujp-UBx0\nRtabrwMvAuY\nenY9iKZ8mDQ\nKE6dEjZ8qmg\nbuGiJK-dXss\nHIf2wdbacpU\noEODtP56lBc\ncQhgVl3V1Rw\nc_69KA0PKYI\nfyIATgssVJw\niB8YcYRzDdE\nIEfj3lH-scU\nBLHc07GYSVE\n-jiHKFt981Y\nRMRT3_djqqw\njyzhfamiaQc\nsOpJs8Licp8\n50ZwjmYsIcY\nxPulA49aBZU\n_z5tcqcVgvA\n885EiuL9GKg\np-zGZTYN9nQ\njG2FwGoAPNY\ndNK-wsUHMvw\nm9vRMtJDEVU\nWlHZBcuKDb8\naM4Gyz0kd3Q\nXGmHx9PAaeE\n76S0ukfD8YU\nT_igwYlgnZ8\nuFzV6DktOzg\nHKrJ0cZ4nDE\nvEnbBgByg98\nOILU3oEYu8I\nwFSW1l-Am_I\nn137CIxjKTA\nyWZtEE8C1x4\nqNCFZLQOj_M\nb0SfZ4LMV98\n2nFh-kxiEng\nYwrX990kW9k\nLiNFLOs3BfE\nDPksJcC1e_c\n9FIHPZrHVGs\n2Ji7Coh4O7E\nHL_VmoAOZtY\nWxo_5gNakBA\ne0qpJCNLViQ\n5CrufNJ4A_Q\ndwMoiBGmH_4\nuOmPHEVoSa4\nMM01XhEgcF0\nNOphOh3EqKI\nxrgGccehkKY\no_49_kbx9yA\nLf6fX3bsCxA\nE49Wkrqw_DQ\nHre4nTAQcIA\n3rtbO9uOirI\nxSTf5WyBUQ0\nXGgVzfEptX0\no2VM3B_izXw\nccX1d19hmc8\n-dzyuUNTwUo\nLCxS9lUlCmE\nqKj2c67Ht98\nesXVSyflpDU\nJrPj-b18Lt4\nlYGDkN8xPt8\nfOv_N9k5im4\nlAhQbCN-Zvg\nukmrk8JdGxk\nMC2MLmGhc1M\n0sdIO3lVTWE\nHiuPgdW3E9g\nCLZUz1TwsDs\nks32K99a1RU\nBkGbYdSwFCU\n4cbfnH5APuE\nYg95nS9poCw\nBWm1l21hBb8\nyd13zj2PC1g\nV82hFRJcrj0\n2WZCKiDOQ9Q\ni3EF63p3v-I\nQV6em4mxnE8\nGAEBkpl1cIQ\n9Jwm_LHAwVo\nXIQbAhdlZt8\n-J_tiDK1tEA\n9lTKjTuPGEc\naW_qXKNDWtU\nuAtcsqDjOr8\nW3WRCxy2ZaE\nO1fxGIiCt1E\nl_7z4h0soHg\nuc0l3djxQ5Y\neqk4fOK2VU8\nLgwj8KoDshs\nKek4f12wu3o\nld9ehvuVu-8\nz67cBIaUOzw\nkTZLHA6zbnM\n0xo0KxL_21U\n-FGNt71n2oA\nGP5MbvcXb0E\nY99ODe7GzfM\nxZYfE-65U3Y\nZMHEIVKg_iQ\nn_Zor8p_ZsA\niqH7W6dLTZY\n0BozXvlwFCk\n7keYfMMBIws\nKf5iT31fZN8\ngQ3YdU0WlPw\n27CB8wWJt94\njJHNJjwNUWM\nudHPeemZ8zE\nIOmR8ZCYhzc\nTpXABjbV9cc\nqcMHKqF91tM\nMoInDyDrLKk\nWxy1loV9jqc\nTsCTF8rAkqk\nVa6oQ_2-jh8\njTGak1m5o6U\nV7yhBe0E85E\nh-Y7v9WyBug\nzZaA_9hN1Lo\nPaei6bi8XBo\n7PcolFECV_k\njj5CG9kzDYY\n8zUemCOntvo\n-uQOkA8zuMk\nDTXU2pMEZeA\noRMqBipT26M\n-qs8tLNcMVY\ntXmgYy1D5MA\nXoW9HJEDk5E\ncLmDqUnUEE0\nmhPPLQqVP0c\nDTkzFvyvzkk\nC-qXt_tIUJY\n6QYrOTw1Y4w\nh4OULP90F0c\nuCXHj1i42KA\nwk34RXMFgM0\nP749Vnd3WSw\nv6Xbfyz0aXM\n5znSACsZMa0\n7H_MQ4OSwPM\neopKHS8iM5Y\ncNkof76o8P8\nV2wuTBrkBpU\nzzt_urtTkG4\ncbzkmMaYSNg\n1IZtDOuubT4\nmTx6_XT9Hns\n0awcEOEug5c\nMVSH6eiGvSM\nRrrQxZ4j7t8\nyOMv5lJpHwY\nypKY-4583qM\n-sq1AYZOWz0\n9z6_GAPIkTU\nq_d_fgqJna8\nLd2g77JckSk\na6uHu-9c23c\nUOdl87tD-58\npUNArJgkB2U\nJ0MXhoaoPy8\nZqp8_F9EXbw\nvBVkz1xSKFc\nipc4KfTrRZs\nb9oREoCw3ew\nqcFM5Xhg8W8\nAgZGoFX8xWY\nOg_AVlwo94I\n_y5i94TfOxw\nriJRHpcshE0\nqlwQsJOKoIo\n1bZ_L0GOaYw\nkgSDN6_VyR0\nD4rlczOezQ8\nQOCLLi8inz4\nfjsZJkL1lB4\nc17KWinVFss\nizxDdUcC3Ag\ns0bxFcZV40A\nvEv9tQL3b-A\nLwNWzSruov8\nDEDWjeRGMks\ndxsVIClobT4\n6GfFdTJiRmo\nnLcCOlgev3k\nV6I4cJ1kJVc\nWSbK1kJvTkg\nr9z4qCu9sTw\nlOaaPz6E6ms\nTtLvNyDGUg8\nMNWmA8mmbH4\nyfrnQMbd64w\nfJ0myLkUGjk\nR0k1CGlHAtY\nbIcPNZlEW8w\ngLEioQymzKc\nNjN_jPTXHys\nhFON-hiGW8g\n9j0tqkW7Bd8\nl0-EYjaAurE\n1RTpXJVozSY\n_K6U3FyJBv4\npUtdFHAAGhE\n9oDHw4wwTQI\n_deZCO2ojAo\nzhXaZ2a1NcU\nxehwopjgKGU\nLtCy6T9d6-s\nC-DCupYm66Q\najvCMC8Na3M\nWB9uluVLP9g\n_fPBDSFxGq4\nYzPOjXIwbu8\nIqefatGKx68\nbN3U1IwMvhI\nOFmxUUOxZl8\nr-Pl3TQJqhE\nzriRtxv9jf0\nuxvN1tNASYo\nlyCbXVV-PAY\n0PcN_4_J6b8\nAbI_r4kXbcQ\npe1z-Tdk36M\njQ903giVNAg\nbnIEGNhW3ZY\nSEaGeyLjBUU\nOCXvMchSYX4\nvVjfW-P5yZY\nHaTAZMTwVoM\nFj7KNHxzYjc\neqYhouRLYis\n8N6q0Yprfwk\nW3-UIdApbyw\nqTIc6y5mojw\nHj9WsioJbJw\nSJHWGDkIxNM\nIvWyoUACISc\nEFgCZDRkacU\nu_Bfpbz3owc\nKduMYNqIGBA\nKDyJYLDyBzc\nmbPEuV3NJIg\nQJ3Z0TSIpE0\nG9wDgZk1s6E\nR5409gLbXuw\nzBjq9UbpCtQ\nc__26Uyp5eU\nhgGf5X8-j1s\nZzuc4RiUjJs\nRh-nBzPUoOk\nUyVSJcL-7BA\ni_Y5UB3xxW8\nOXvNnV-cwFQ\nZ7C6L3yRYGM\nH46x8fD7WzE\n3MK7O6w2Mz8\nLg69Gwv4tOM\nZ8vCm7TUK8c\nRcqR5cnQyUo\n8iqKSKK9_uQ\n1cCEE8-jhus\n3SGIHbvcTRc\nZ-GoRxX2exA\nTVAhhVrpkwM\nI0YUjv1u-Gw\n19WT40D513Q\n8I5_zsRI4Zo\nji4pvRXDMOY\nWrnyKH7u6DQ\nLwioGjicbRw\nirQ89Ny0HkI\ncku1N8eCUlo\nDDv-GQjcZDA\nziPAPWBYU5A\ne-KbcJI8Rl4\ncidI_7BQUJE\nPu5OjNuJl30\nfnl5_3zT1d4\nhXg2LXOwsoA\ncktXSK7io8U\nfTEPaF5TjWU\nxfwm9CY5dao\nufcsS9E-JVs\n2QLbTjd693M\nSKEvjOq6L6o\nic5tRp5nKOE\nqHm2lHzV7tM\nClrfnLtqXYo\n1iiGGpwLdQc\nBSEx_EMtQW8\nc_BMbnWPWnU\nU_0oVOS3LC4\nY-N5lfNPLnY\nddm0aMIKiqY\nSZDFWDc58TE\n4Xvu9fzPGhA\n10GtbJs6GEw\nZfCZwP2Qe60\nodWPv33yKAk\nQsXsfrk06-I\neR_BcTP8HOM\nPPMM8VRgEUk\nAWLkXfNg6ek\nf5f86alm7jk\n6f5ggdRQuB8\nD3XYhRv-rBU\nDCT__l4_m4g\nHYvwDxWCSwM\nTWqf3iE2Gk8\nQ3kOA_8ws6A\nwOp2t0IKnUo\nI6mpHW3SMcc\nxtz6dAjWz3g\nI4hc-GcHCsE\nEwdFmqEvG7M\nWEszqunyV0M\nMjFgD2yLBI4\nJWUrJ-zH7fw\nte366vMoW0E\nkRWvfBinmWw\nYCN_nis2E84\nBF4-iXXZE-s\nOYuE4tFH7lc\nfp86WZ7Jn5g\nVlGVLpW7Dsw\n-_HlyIgHUa0\nwQhcRCuORak\nPiyaX2sq_wk\nx8kclPvcsTI\nLc1MmNI8jLc\nEr3iFTlMpmc\nxaOERHG7Qr8\nIpQkAn4FnkY\nbLjFBMuBc68\nHHlf5HhqdOs\nMTRBtcsZwjw\nki8KblCCOuA\nSFHSKaQESeI\n0r4uUQBLokk\nqkTP21NTcgM\nvqlURGjq4AM\nKu9rtTERy1A\nWTs3TbtIwUA\nWyjaZFv4lgI\nePUgjJofgq8\nxUAn-hrMa0A\nilZqZaSUC0Y\nhrcFkSMZBng\n-o8b7tsVH64\n8wTnBC7doPk\n4F5sPA5E27o\nQ9szFqOlDJc\nOwCO4rmsct0\nTKVyyEsA-so\nRMd-tHAtdoY\ni--0u4m_zZg\nurWMTYuDxME\nMuBwxePS-s0\npXIcjMT1SUg\n03NoI9KiZOk\nBvwCwDf6J3w\nQXB9qatHDSU\n6BDzGP6HuGE\nZ18eK57wD3k\n3cqeNsSZYh4\ndv0-EuBX490\nSZKLpJzv5JY\npKN_6Javjnc\nnTz_lWcgDhA\nPBF9pOAjXt0\ncNLFuTms4go\nU6uNt6h3_bM\niJMYIXoFGcQ\nVKaGKi9OHQI\ntTbqVFrvn0E\n0S5lIhsh2Rc\nJSyZq8Eg5eg\n0zVmdCICQok\n1ZeDq4Yo6Jk\nh_N5IH-bWNE\nIYju9ObPTTw\nBKDnwX9P7vo\nOfifxt45nfg\nXF0e2BjTDh8\n0njU7LPADwY\nf_BcfyJea_M\niONYYY7lHo4\nTlcxW8KUzks\n1Mx_jHNEBtA\nbkxVMf2ozrs\neqIkFkmb054\n_d4WkQci7zw\nncOY7vtsY8I\n6H72hXsLZ8k\noYcKftzUS_Y\n6XWpPwp8p_0\nmkYNhZvlHv0\n2BtZY3z72jY\n2mSiP5Bbdxw\nU-JAuw8FsrA\n7TBwFfjXd3s\nHNfciDzZTNM\nqokWn0jfbM4\nA6CTejBh5QU\nQKKrwhcVEJA\nbNbi_KLd_Uk\nR1JHZFJyWds\n-rtUvlR1pZE\ngpytphKy7a0\npl2HDVRj_4o\nPz3SOdEw0LY\nHtxIqa2mXaA\nzXBPTIjfZgA\nwz4HLeURVOQ\n6UvEeQC0Odc\n5wUu-cKYMgI\n3AD_sQbn9EY\najBK8B_kYO0\nsqjS__9_Irk\nak4mtSDwxV4\nDLasTex8Vnk\nFYo6dKubr-Q\nhp3inTPISwQ\nlMy-kxTpXKA\nsLlQvz0y7QM\nCwowG9t4bPU\nURHjEpowEcw\nBLVhog_zX68\nlhhxZt-oU38\nRZ-__QD99DA\nlA2ubmfr6Dw\ni3jmM-Fc5Nk\nqOeMwWgruZw\nQDeWmH3M9-M\nqZPjRshIz4s\nPykWxPq9JEE\nLCEr8N9zXy8\nqpZBUlqRoeA\noOl1Kvh2Zwg\nuyfrK4LrXaQ\n3VfuSHP-57o\noHyebwN9XXU\nIwcQ6LDdW9Q\nohgN4PexEv4\nnALXcRjbVzs\n-lAXOMpPqYM\nJuvJl9iwKb4\nSLNBos63EkY\nTernps0JFwo\ncEafT-GQfv4\n2nChsqAPyHw\nkVPIOjjbIpY\nUa3NXljreQ4\nCWnDVW07_1c\nh5jZBcDev1s\nV1l3TboL5MI\nDtoCw2iOTSc\nYklwFCfEEMM\n0TjrNjcFv_A\nf3z_ene1G6c\nopCf3mp24dE\n9LvdctnZeWE\nFxjONf9AXEs\n4aRryzzZLTI\nyNs0hmNinA0\nntQrC5iclmI\nofIzQbTGQ2E\nHOoHh7wHtvQ\nNY8m6lManpQ\ne2-VnrdN_Ng\nMlRFw1CvPd4\nnr7ui14-O_Q\nsKrqOTg_FJY\nt0Yf_fvD-lY\n7sUwnda1FUs\nG4BGtSvviS0\nvg6-AbLe5nM\n1DkaN1nDQoY\nXAWdzV2Bafw\nZSKSNo2z8AM\n6MbOPK4TCB4\nXLSkfVJxbwo\ns4AzrUO3D1w\nJ0IxGD8-6Cc\nMa6SDu0V98Y\nzdyBsGHbs4k\ns3RNsZvdYZQ\nu3A8DoRXiSI\nsMt3SzAH_i0\ngzQt5VctFfI\nEaPpa-eoxi4\n78RKzUAQD40\n8fvhchY0UmY\nQL412_xWtT8\nJ6JcrLIvKUA\nDYE3nm9voUk\nlDa6qc93nNs\nCttvEq-ypno\nD4QyCdRvXr4\nJnN-SR_2ovA\n5Z8LHf9J6PQ\n-5Pku48YPFo\nt4DCOpG1oNE\nMA6g7AEH_kA\nB7ZTNm5o780\nGB7Cq_W4-U4\nCYF7eLv3hMw\nRVevBZFMkys\nu0kF24ceZMI\njJiKYmmWiCA\nx5Nu0PPrI-E\nfarC0cWkpvc\nLzdoMQL_jR8\nnjlI82MV0gk\nrroHhssQbok\nsTI1U2BiTNk\n0ROplAtLJvo\nKkLV3MzJM_8\ns4nMGnlbq9I\n9OFoTABYnY0\nWO-1MybFFvI\nrs1V8Sxp3ZY\nakYf73cUU6U\nYFUCezoyzyk\nzAc3K7mjlxs\nVwP_-8SCu5s\nFCcdMEItd-U\nlL2AwD_4G8w\nTnwtTQlfaQo\nZG4DMIhSIZY\ne0wRbbzTdhQ\nNmNveyfhpBg\nGNQ2LOxMi9Q\n8TJk9N4RrNM\nETqX2DZqAN8\nArSEv2hjwzE\nCKJcpp8ff44\n6_Onrl4g6H4\n3Dit-yAwTgY\ns0_sBamhlIs\nIypE3rPP4sc\nWRtOCCfKEvQ\ntIB4z4uMeNs\nj2lG-WtrrsA\nd8FIxfJaAYM\ncmYsRcLMvO8\nep7wuwsdgqA\nE6jJUN52anM\n1c15w3kCHkw\nDKMzt447niI\n2m_lqGnLtWA\nn4hHWb2UUQI\nn3F7_uaZUzU\nD8e-_q_iG6Q\nbKy6BtAbTU8\nnLKymV5rwAU\nntgrRUML2ic\n5ZHYDynRjV4\nw7ZY9tqDsEc\nL4fJ1ht5TJM\nCcPqBfuXdCo\n92qwWy1aKH4\nsQFqzFD78Ck\n9H1gvvzRk9o\nJlbIb4XdF4M\nu74DpEZeHbg\nqDJg1qnedF4\n2Yu7LGZcPus\nfSqvtspQonw\nSkEOY1s78e4\ngqU37m6uoFw\njBYxPuIGu_o\nvfW0mLeRXe8\n-uhpev-dp2M\nFEddJ-WcZfU\noWuYilt9hX8\n2CcanSjYzlM\n-i9mrpATCms\n7Qe11Thhwvs\nsOesH75ggbQ\nnhKgGtFIqXY\nIomS4eaONdg\nR-PAimSAL08\njr7HNZg0ljU\njK0s7zfdDOc\nZkynnGqL7QM\n6BGmQ21EekY\nQz836czauEk\nMAu2e0VbvY4\n0x05PrIasjk\nb_HhiU1mOwU\ntenCir3A3cE\nlRjxk7z0kOQ\nRkH6Q6d8ihA\n01X3KxC5GfM\nYiD9zhs0Lt8\nGq3WJ-sJj7I\nEOSJ6vijGyo\nV7-kCVemvVI\nHbdxvncHvCs\nfaZ88f6Gfzc\nUnSxnVp8FzM\ncJeYngoI1oA\n0mwMM8VrYmw\nvq8OmtyOsR8\ns5XdRd5SQIw\nHv-n7C1EU3U\nlp0FOpFdWi8\nbAyb9cEDh2E\njFP9_AxrurA\nz0j4sVZHUdo\nxEIhAu0v-kU\ntQkTtnCV1n4\nz8lDbb_76Ug\nac6FZ59tna4\n6SyjoKS9CXM\nsVbhGDytHk4\n2TWpil1VJ8I\nShB8ZLISubA\nq9n96my-QzI\nuAO727Dw9hg\n25_Kvrl7agM\nUOOGD4DLy-0\nCKGHiP4bs84\n2mXAB3HO160\nYOtz3kdBKW8\nZ8leMw24Nbc\n0SMMbr2kXc8\nVOVOizcl4Gc\nEmeHbU_s7Cg\n8ZYQejxdHdc\nr8zjtGUA6tU\nuY9VcYt2bKE\ndaPR5OjY6bI\n8TG4sr_y-Ys\nnQunClrM4co\nzgEYrXfWhWs\nfMI2u6Jp1FE\nbW0aNTB523c\nV3s3OXOzoH4\n5ntVWRhfqo0\nRtWkewqIFDM\n3hcmGG6VUsU\nsOGhuhC4AF0\nHZCaSyid4m0\nGHRFqRbAx1o\nT_ZImfAxOu0\n7_PX1cVuaVA\ndf1mSOyvsXU\n_8GB76HyNNU\nisgx4Srs9t8\neC2O1zsfn2c\nTqL70V8rn9I\nFIGm0YdXotI\nCSwnlwsBAFU\n6lw33XpYhGs\nprGnVwLgxPc\nHwHADsTOVMs\nFqeo-bUOueA\nOgU8mEFGcfA\nf-zgBlWksMc\nrILBK11XLA0\nCg6X7ukYzTo\nI0jMv9vF9MI\nTnUS6tDANfc\npbSX1diNIlY\ntJimPUh3vmQ\n8d6AniF_vxg\nq0DZLuG2FiI\n_k8uSp3-900\n5y719xX1I5U\nSfL4U_bOGvc\nrGR6aO4JsH0\nFKj1vfHB2i0\nM-APah17AQA\nNc_b69ag6Eo\nxam8pRUej7A\nwXnYmZhdm04\njepTSaMF2ZM\n0q3BH18BmZI\nj6_umKYN_JU\nhsE1N5mfvmA\nlJIPM69YQNY\nA4ktp_9Q5Es\nPv4M77BcywE\nk4DsinIrAjQ\nWcZSEqj45Ws\nI1OmcMDFR0Y\n0iSD31ToSC8\nhN952f_jn8E\nV9jD7kLAmPM\nraLZ6l174_k\n2RQNDXuAIJI\ncfILhtwu9S0\nVF609NvGcCM\nWwHpeDtSMmc\nLfDjQe0B7Tw\nygOrLkyfHsw\nWEScYukcD1Y\nTrxSTI517Iw\nKoNukbGYfFY\narfamPuUOek\nshO2tSVK0IU\n_ewnZCc0imw\nI-xX6foX9zw\nhdVQlYgFRuM\nLTqaoTSCTc0\nrz41nM47q7Y\nvXsKVaJTQCA\nbQInfO7fE-s\n_BMYVDOOQ0E\nGpEhxhSoFAU\nM9CkGS1O5WM\n9Dka54jH9po\n7_OHC_nqFQ8\nI_xrNryhq1Y\nWrs-qNpKvbE\n7rN0Kk3eUSo\nUBbsHeltzEE\n0AslM2bC5DY\ng2atr8aQ0zg\n-L9EZRMgmXM\nrYjtudWe7O0\nbOKID-aX3z8\niv2j0CJkzbM\n9aPhLF7yfU8\nYALDmRKFYSk\n4IOwJNyILNI\nodEociFdDN4\nABpeiNlMOHU\nph2dq-pPBnA\nOkVJ0KvOV60\nnd3MVcbnfAc\n61xq5Kja1Uo\nJwaw24W2bW0\nRkc09sTiS7g\nKHPPeGoWDEU\n2KGv86GLvXo\nD6uIONVMTxE\nW9SemYK9HEw\njMv808xIuwg\n6oUQEh-Xji0\nQUVhbRmhn_w\nJc0r-WTEnzc\nV7u623DEJD4\nc94JyVrcWwE\npxy0q9dp1GA\n9GF-YNA-iTM\n3XK3y_S1kP8\n6BS2yXD9Ggo\nas_lXF3HqCY\nioznxKkY_IE\n58qDZgvh3jk\nfARjlj6q1uU\nljdH53Ro0xQ\n50cIB7qKfnk\n9ac3upRnOl8\ni1n8bNgTUTw\nNAH_6By9C7g\nA4Sywg8Yw4Q\nuLkxV_gyYbI\nidKzxvXO9_8\nX2YdsIm2Pj8\ngaoBscEDdzM\n9qEoK4PYN5I\nLwvvOrYPcuM\nQq2TXAE-Ih8\nglz-J_geNNI\ngW3KZsBwQzw\nWlaQZKko8bk\nOzCu7Cvdsjc\nnHyK6uFdDWY\n2KuNMLOKUXE\nM8LDQ6M_CBs\nEm8I02rqbhw\nQKEMn5rTRL4\nKuwa9UzfMGg\nsfHaTenaRBI\nn16wkJDq2VQ\nKVt9YlotsuY\nd-nJUGK8ABk\n2LeVu2F6s4g\n-e6lEsIUf3U\nKzWronMcXR8\nLBU5Yu6RFBY\nex65__9m7f0\n6IPcEITrktA\npe8vv-fGpWk\n4dp5Q3B20aE\nqaQUmqNJTO8\np6LXVK9rPbw\nK44KlE3sSMM\nVpOmvE4sLUY\nUg0QqktJ5tc\nVwfXJVjptt0\no3uf4YSwY9I\nhcUVOlbNb30\nVEwLgrpyamQ\nRdIAtsbwb00\n3H9TofuarsE\nHsi4X9MxtkY\nOdL9R0ZODYs\n3kfnzu3RrFM\n1U9wqQ9a8GU\nYlwAVV3dC2o\nk8QQCwXyVbI\nB3nAwyocJs0\nFOAj7BE1VEg\nVz04LQ7GGzc\ngknxRGof8Pc\n9a3z1lvLLng\nAqqc9H83ECk\neKbXO0f-mvw\nRjdPAElUs9E\nUtRR6sLexR8\nqbIEepu8Z4w\nLoT3AimKXmk\nLHrkO46ERP8\nXFOoJ3gwplQ\nANYJbKdMHk8\nr_a34DBcwCE\nDLuROR8kLy8\nZkpC7VsyqaE\nWhZEKkpf3CU\n3l7-8yvdTLE\nKVDtV-uVRq0\no-e8eejeHLA\nKNip2ZamrMc\nq9iIgRYUyA0\nL6YJkhVYUXs\nXm6JHSUoLpY\n-KOG8edoC00\nZWSHjks0ESI\njihDFIqNz1s\n4XpFpGcTh1s\naTTbCJmc3Cg\nEV5W98Ql4vQ\nYJbQz3bTn6I\nyvcIugB8yt4\nQ-xBDej7O6M\nWgBb0YoMp1g\nxQOZMIbnpMc\nP3QI8hTpxl8\nEL9EJL3O7bU\nI2UTg_bYu68\ntcCo38aP8qc\nckAD2sg5SxQ\nNvuCGs9iYSk\nNWfz4zLi640\ntqfFZYur4sM\nDW3d5hYgV_Q\nwpA9m3t6bNY\nF6RpbWC4-L0\nlqA3TgVtN-Q\noa1LGWv3zkA\nLWP0KujKOKY\n5Rp-dpnsqUo\n8Z60zTp6Izo\n4TSoSMLHTi0\nFXZ3JnwIph0\n3OHisdS9LXs\nWeVMy5j7ykc\ni5znTCoKLPI\nk0tc08W_t-Y\nqkvQOEJKHNk\nOp9k4MLjKSQ\njaSs0dUv0zQ\nGg3woGs9ZGY\nWGBw3zwzqwI\n-Zr-B5aIEvE\niX1ha-hADlU\nUqvuJLOCSxc\nPII5jcf950Q\nH2iK5QHr3Is\nF5ZP1m4J0H4\nOhtKiOEZBJY\n3FPsMeQ6Ra4\ncxgg3KTdRcM\nE8LQ1SmVO2M\nx3jT6tQ_gJk\nv3IyV96FX74\nNxnXB1ViFEk\nt0R7IRtvvFA\nk2C9QOtoreY\nvFSAQ1Nj7fg\nrTCpK6ONu9M\nw7mr-fVLqis\nwVTFBeiqCSE\nrmqvWkh45gs\nkjRTvd8QRJI\nUSKy5QYNY70\nPjBQfqlstnw\n2Qfa77SRZkc\ncOe_8-IWvmY\nSY3nCdfnsCQ\nhg27lxt2IFw\nlWflJvuYww8\nsLECDbDoXaQ\ngZbzZaYK3Zo\nS-PPQ9aewqo\nOd2dajJAbEE\nY_bIzO41o2c\n3r2JiHZVEk4\n6uaqkS1AiS4\n1Jaq36snpLo\n1-lFBwn6bKg\n8rF5KWQw6YE\ne3siZO79KrM\nf5lTRa_ZJn8\nFGqPDYzAXdI\n2IVX_4BG7m4\n_lykwQIS_3w\nhZqVpO3_MP4\n5AujBlOtU88\ngqxV6mOE2L4\ns2U0dL0k9s8\nyO4oRzCAc4k\nksFNCZ951Oc\n-AlKOlUgzaI\nLlWcSO9ok9g\nzXnWUj1a8Ss\noFon0yFgldk\nthOz5eO74hE\nBi2CHeMhNyM\nEodapLIzTnk\nk2VevzNW4AY\n0R1F6r2-ngk\nE-dMy3oJGT0\nNCqhkbAkzug\n0SYBBmzZPOA\nmPoxI4PmAl8\nX7KoVUspHys\nlfCVS3HWdjg\n8qQg4bvTlho\n7W78nWDG95s\nh6M2ZbuGfYc\nCcKPNcDGDLs\ni2uV68pKreU\nHDUHC--wGt4\nYRG4Q2gIWjo\n5eSrShL8dt8\nAf2wrig588c\nkQUXf8oO73I\nIP0UFkE-Nng\nohwhcMgHUKs\n6nvQySlxSWY\nlDksLpsqHwQ\ndwMz7K0kr-M\n3fjlQw23hd0\nyQi_ZJp9_jM\nhkHrNtJHbRQ\nlsgl848rea8\n9MyynB2RnZQ\nI2yuo_5AkCs\ne1NkoFF-13U\nsCUSUl7-4Qg\nnZSxvozKoeE\nsOgO4lPPK1U\nD83XRiOVARQ\nId3vqOPHk-4\ngvoBpSAb-vM\nBAqabMWnAmk\nj67MZXY33c0\nY6CMcllU8J0\nkCqEADYRg8g\ni5Y6BTlx37s\n6JSqeViZRU0\nPyHK6QRniQ0\n_U_s1OKHnlU\nvrujU3pc7-U\ntifUOGFTOBM\nYOO8a-wBTy0\nS_PvnzDlqmI\nPlkdsidJA38\nCekWztEL504\nFh1ZUliQDFg\n_-xCcoG6Wlc\nGUw4Qqh5Th0\n3ZQFpUxopm4\nhFqDZ3vzyRw\nV-SMOiDv5pA\nTJ9f2rnjB84\nVKu1354bPug\nMPQvVBaOx2E\njsL4-BxsZjA\nhvvTxyks7L8\nbbqRezPHMDQ\n9GYgmwMfGXU\nkW7IPAaL7I4\nfvYD-2ggmcc\nqO1-at2DUGU\njBajVRGElXY\nZTGK6ChH494\nHHxezNV6ntY\nYegA1WNRKnU\n7bmB4RhsYgQ\n717gDCZQsdc\nqqWVQuCaB6Y\nZEqt7tr41Mk\nWzlAPD4Ttc0\nPLBt2zwq_vU\n5LZfv0tLZKE\niNSN6QhIWeA\na6oC5iQB4u8\nJMWhU1FfqP8\n0tRSAQUheo0\np_-Zm_G8cBI\nOxqTSDSxRwg\nNOadx4ZICaQ\nujEbejephNM\narQDNf6cjaw\ntfvptl5VS08\nJXnNKqu3N3w\nyl0jujA2jLw\n7FN-chIhcNM\n0N9Fzv7bYCM\nj42TrAVceCI\nVjlGwSBvL6g\n1H0J9VhDCno\nQfrPUNMOS6E\nxamDprXBtBg\nMG9L-S6J_18\nP6fVrC-RQLg\n7lShqpv3i24\nLFhlnBzdOtk\nXINddkzfTzM\nypKSbnYOrwE\nf8Cjlv6nBTg\nx9L9S7jEv_M\nev7an6-CYpc\nB_DMSu-NVZ8\nh__j2aPe63w\n8AZk-d0z3ws\n3_dGBLwXBIE\ntvIE50OJfxM\nn9-Wk6ulBuA\ngv1nYk_OJjs\nX7U_RxbkaIg\nQiVfqVQ5t9A\nK7Dd88h25kU\ny3zcF3YvK-o\nk8Tw4JhzORM\nf2ugRkVMOuE\nx6FDJAu5yMc\nMtWRq5FXCbo\nMR93FRxKjTQ\n8XkrkBt-8LQ\nsiTZSTZwJ0E\niMA4bMMh44w\nZiXcZtfAbf8\nLnqAE4Rjdqk\naiilV691CzY\n-sYKI4A3uhc\nWRdy4CcRchU\nVAp9p0U1r4g\nMsSPAEtYaZE\nEbarO9zF81Y\n_QXyyj1RiCE\nGDrnSzfL-aI\nEtvbEtPIGiA\nm6NeY3rTpJU\nLlQXhEOzLW0\nL-iyxIincCI\nB3v1kEzT4bA\nW8Iw5W2_bbM\nIAYQUTYc_tA\naNUs1A_sUCc\nIhZrBku_eCA\nJrvr-VIymgo\njr_bZ2gzRIY\nyp6SO-tZpJw\nr0Iq2_euH44\nk26hmRbDQFw\nWFsMguGrUVo\n30QzJKCUekQ\n8upFfAQcfEM\nxi5rxsY_Nsw\nWo3XrThPZzo\nHGCOxt0M7cE\nf8znwPYsuFE\nTGyqMjtaZiw\nJnFHE_crn0o\nbxegamvM8ME\ngUrSHyV7Opg\nqZmteh2hT9A\nPn_XD7jDwFQ\nO1-lkTgl-ws\nsrR56T9-j5M\nhTzqKlFConk\nPpUWjff_OcM\nMCo6TtUkCWc\nXMmlJnxP7Y4\nnRTjNEP6v2U\n0S7olzuojGY\nqizUajHk7r0\nRuw9fsh3PNY\n7OARf8dNLBc\n_OtcwxERu50\nHSWtc01BlqM\nGjB8z0Bvi14\nB1kQLmi0q5U\nJInEj95yoUQ\n_C672_Fkzms\nRjKNbfA64EE\nAD5N-le_1es\n3T-VAi2Xqq8\n3-Q6PbschQI\n_r-R-b72rL0\n1i8l526qhzY\nEMOE8Ub7-zs\nbBzNPO001NU\n0BF9MkmTBjk\nL-sb2Xeqn14\nBPUpzQ4vX_o\nrAKR-BBQY2M\nsqmzvduQ-JY\nHuzpoTGja5M\nKZrcqIvvB_0\ncHQcdgc_Whk\noN832LNaq4w\nnXIu-RlvPJM\nwbMLxj0lKAU\nrllKhsQXZXI\nbXRv0TjJQZ0\nrtqgJvhrswY\nD3tnuA1OazI\nxSyvjgWMsKc\nB7FkLh0uqdc\n7khCMEgY5wc\nrhNty595BeI\nPTg0wFv6dZ4\nxxfZmz7TxSo\n3RgRVQqUhhM\n1fdta94pfxc\nMrL_uWnwPq0\nrhQ5dWLFLPM\nuEJ_Ak34ias\nqZIIx-X5Bbc\nYieQdHA9uIA\n05nRqVJlunA\nDEHpRuG-P94\ngj-Rl-cgKxM\nCZaS2CCnFYs\ndjMYTM1p318\neL9aiYpAyI0\niwXsuJXUau4\nCfcaik7bDyg\nK-Tad1Lgw7k\nbIHeoOh2F7o\nl-vk0fgFGd4\n7vp7Lpjl_vk\noXRixZ82ZqU\nFVJX6ODlvFY\nOOBt6EktEVg\nx9u_a8eEPlM\nSqISCN4gNNA\nA_6e5AilC6k\nNGceQLxvFNE\nyn_iiD8lxZQ\nOMEv7FPE7CQ\npV2y0et0TT4\nKRMxuHWOcTI\nRXC48uE7UzM\nUpww38-2fyo\n2QCUgqD37fk\n8O97aGzvU3g\n24QQqGjDEKM\nNfah2Cy_mwU\nWQ71crXovIk\n84ybwb86tKs\nP9aAc9ibVWM\n8XglzsFYAJU\nEPBcADfQoJY\ndQ0sgbvSQAk\nyq2t7SjUSoI\nC4dkYaeNLuc\nAWJPmyL5uHI\nAF9cqjNt9uc\nYSQ_eohNRrM\nvAyq-3z1SYo\ni1lkrSFlpss\n70yAXCvid4k\nI1xQMJjTMLQ\nGx7y8ecslp4\nNf1uvt0zKFU\nE0NZlvha-KQ\nXAm-zfxcktE\ne8J56HbIyvc\nS4YcLymVzXw\nb2WuWXRVdfk\n8kiNT3_17i8\nDTXWi9iR2F0\nx0yNzsNUoK4\nffR1X6gndvo\nXXVbPZX6qz8\nLntFGGP92xQ\n3JLDAyAEaqI\n1YGyKYK1HuY\nw3HklXic1eY\n75A7PFuBqFk\ngtHSeq99_l8\nAA_yIRZNg1s\n_hMtM3QndW8\ngz-Uv494KFk\nJR_bnlkaEss\nyBwa0z0kCrg\n6Tjcx6B5lbA\nnSJxx_KUEes\nFyS7kFIZJ6k\n7O6j3eHsueM\n9Vve6PAxRpk\nmQAlpiB3_FQ\nB0FZhLeHy7A\nv-UIgJgiPJs\nGlHL_ippO8k\ny587UlBV9jg\nWSIS3ZUDzzY\nZW66_8a4rqY\nVzZJ9-El-a4\nRemcXMCCQVk\npFxOuE_0wqc\nqdy5TZDOwm0\nwNqqn5NPJ8k\nfPWCnwZEOqE\nj3k3xWKZIn8\nQns26Wdvph8\nFXPNIj7q0lU\n9J0DZojg6-g\nxCI_stZgRHc\nHEnmNkRRmHs\nsxtENaaaPpQ\nhgCr8TOxcCo\n-NW-w5Z_vpk\nvJFN-ZPqCiQ\nZvMDRj9jFaE\na861J6gxqmg\nw71n9tHYuIw\nqGrKwxglKJ0\nmMyrxQNItpY\nmFBIlYRQBLI\nxiNxK0Xiv2E\nsehGLkGe-iI\n9lInNK2jtx8\nS7ZhqwAzKTQ\nwwwhtUdGOVM\nfk2MU617-Bc\nvj6kMfad_2E\nHBrzlqErO_E\nkKlihXmSqPE\nIrDrwaot490\n5ud6mZ5SULk\nsheRsZ2HOYI\n-A-fBbIXbPo\nSYHN3rt-R5Y\nPbwgDqZazAU\n2fEZc4acGC0\ntlSZa51g_rc\nWzDlb8zf7gQ\nnOFfrd6bOh0\nWpen_d9INlw\nMOKKPloglVE\nZCz2Ob5_-bg\nXbf61_Fgldo\nAL2Qj_h_d-o\nBuwF3dRJiS8\nbXZFFinWVYw\nBFpoIHexhKQ\n3PHLmv4Zzu0\nVgKqo3TvZoI\nJmElZmlYkHU\ngRxu0ooBrPE\n5XINVbpWRmw\nkdbGqJtHWQg\nnNLk8GMdFd8\nlk1As4QnaCc\n0SHMCN-6-IM\nmydc8K7yaZI\nlNHheEljm5s\nZpJvQAs3_98\nZHNyG9ykGDA\nDPPoZpw3NOg\nky1W2n5RilM\nJhvq7EGVtUg\n7BEpbVXCbvo\ngbbbs1uWxvo\n3jEZ_y7_kfs\n20zF8Ug0MjM\n1TroueqxAtM\nypf6WHYpeRU\nBZ1KEaetIwM\n2HgE2gZhovI\n4amekKHX28Q\np7zF3vZL-4s\nF7UEddgJxrE\nFy_utfWemC4\nQSQTYxhlIog\nvdq609Xci-g\nV0MF8uNW_gc\nxVpk12wYQ5g\n7UhOWJw9eys\ng5lJIy5IcWc\nLhbHp9ey_sU\nG5nY_snMhic\nhUAGX1IOMr0\n2Bml42cWPpo\nxVc_GWABEFk\noIu0P3gXxsI\naQRjyav-x8o\nvykvU-52g6w\njDjZ_Dh6HSM\n0Nn_t_RfYS8\nK9ITp_xSaxE\nXEQJU3VPjHU\nBeRTEiGRbw8\nnIhrGSxslzQ\n7qPmEvrv3HQ\nxWpMF_EFqyc\ndMOQv0rb6DY\nw6n3WpRNWTs\n8UMJAkQqhcM\nb7Dxy34dFyY\nWI00FLWTRrY\ngjWdFgV-Vz8\nrWGj8MCBBnc\nUEr47WrS7Ys\nFAWPEOWyWN4\naJh1RC2Z474\ngJCMd15eaW8\n2xRNmBGvfSk\nIl5lC0E0nqM\nKtBMZ6VAZyI\nJRQJyeZ0wkY\nQ1WdHuNv1uo\nRvQ1y_CPuDw\n6-RSVTLojGU\nHG3e03wWQu0\n-NgmhVRFApQ\n1Pcd6RZexJI\nzcZJF81jt4w\nTj9M34DzAKo\nMoRaxm7lK8g\nfltSq_QHbbk\ny-TUmx2Ow74\nn1pSObsJ_hk\nwFSWmfqMp7o\njJ_p_xhMEvU\nP0ePytsVcpI\nhfW-fzTbpRg\ncuK7JbG06ho\najE9h1zUbMs\nBQO5Xy2ebhs\nUlsRjhvfKJY\ncmtXA6x6Jm4\nfjzcBqz2Cpk\nxLMzMKlv_Ao\n_mwKm8tpz-M\nPRximULrt4g\nbqxDIHYcp9g\n4k9WHvF1QsE\niHllnWESLvY\nsPS0cKOGZO0\nORy5ULEbQ48\ncPooLABE6Js\nqq4gK8PkKNM\nZ6E9SQ_ZLkw\nDM7JBXzCP1k\njv2MsLBMi9U\nsloo9PMVoRE\nc2TcT9JairA\n6Qhj03nCJn0\nBhbazIuvUCY\n9BHXzftnFGA\nPlTz6i4z6xU\n8GbzfsvSY7I\n4B0FFnkSCuM\ndLLkOjKNanY\nIVxzLITK1YM\nbANgFADltvw\nOkphsYRRJ_0\ngmYSTObayoY\n0I7GjbhDYtM\nLC1Sb6tRr4E\nfX4XAbCTdYs\nn7KKfjFRw8w\nTgZwFvKRqK4\nH7XEyuPBE48\nul_HuCZxxNU\nLs5834hbssM\n0bbWQy30oc8\npMoxr-jgd58\nkQoFdaWI4h8\nrFHh8MTXs5M\nDebtnaQFX7M\nT6QGAOSIE-o\npKWLGY2fwZg\nlDFltuNEfts\nnjP__lsFwE4\nYa7Qs1NHepQ\nZMb-qj1X1do\n6QcrQ_TIoKw\nhEiI72hLQX4\njowNLHQCAAY\nf3tseBsU248\nZa9pPzJJcYg\n_4jtkw-qFms\nM9m4XUd6x98\n_vxVcxYCyE4\n6ylO7RAbApc\n2wEjsHggyII\na6mkbps0BmY\nZ_0TQHoV_2I\nerILyrdpSqs\nrku6u5PmiZ4\neveUzWmTxl4\nHWe802TQAG0\n9DlWhZ45k5w\n9WY5gDBR0gM\nKihpUEKi4TA\n-F1-sTyGvwA\nghwBg2RgBJM\nTyeZy_UPYKM\n_W5MVZjoNwc\n5uVVWV4FnVU\nDsKfkkrTLMg\nRfqBp4LFuIQ\nLDnFpgimHH4\n5_B-hXtddxw\nViPVPgUJUgM\ndPXGowa6p3Y\nnkelgV49oGQ\n-7-C6lSAfOs\nt5xpX6krGmE\ncgogH0SylMc\nlEiwqEMhS9E\nDG5ZouipJNs\ncIE1fT395HM\nNARUgQRZhL8\nR_shARjqjLA\nsNcBUOlGBcg\newVwSrVSKS4\nBPvZa789l5o\nVdhhi9nYLTI\ninDZp80Sq6U\nvYafR-6wNGE\nm_7Bm1gyq2c\nRVGyvDhPE3k\nlPfrzsQ2-Qo\nn2lTpPptOWA\nRSEMLDUOqe4\n1BUBVkpQQGA\nFhDi_WF5uOI\nZcvlWuqqv48\nSJB5InL3g7I\nkq0YESApfvs\nG6EPGcF9mW0\n6Wmzed6d0Jo\nx7CXlwS73iI\n1MnPXQSWAJo\nYaLewAfBoU0\nAIPb1OMTZ0Q\nOXpqA3BvLLg\nuJMPom6-xmA\nMdMVzxis5vs\nTuiyN5O4Q5k\nWj2sfYCpHOo\nCuscvBChOqM\nXSVzRBiiTxA\n4dsgQb3jkk4\nUJbqnbXI0Po\nBFanCVteXfw\n3b00UbIxbCc\nlClRzGmpFrs\n9wQHMLWpVLk\nwVpIChmQ7dQ\n_U82hhWfDFY\ncLYCKmqJApw\n40cOkf5fT7A\nEPDoc6alrlE\nB1Q2f338TJU\nTJf7vDKfuFQ\ng0mHVE8ebqA\nNLIbv_J5E0M\ndOTGLArtfrQ\naESwFtEWnpM\n89lwQxQm5co\nyu_9eQXlsVQ\nTBS2UeiR7Mc\n8Wg3WYlR2M8\n2K-ihnb5kho\nx1BpKIb7Ces\nuE_EjcgtiVI\n_8s4_Nabo4E\n4EfmKXE-Li4\nu7kInn-7hcA\nu73HoUZD7tc\nSESbcd2bp80\nTV9GpnvWxgQ\nG_2PNOH_j6A\nFsqymfl2Q_A\njlYY8xkTXOQ\na-KQ5h6WmJg\nE6SfKJ0TmXs\n51pdEOruyWY\n7dHg_hYZDCw\nUGKRVSevWnA\njiP6PiKJLUs\n0QeOXuuFo4g\nQbfEULz4z98\nWBHjaRXCINg\ngKGmO34XgMU\n7UsWapAIMGo\nKOV2C0jVS4M\nrMdZw9aBmnY\nvnQ9yD_IIwo\n3FDh8EtZETg\ncCNhONF1lHI\n1lCWhKWBjbc\nYBRg2qsJ94Y\ny47SwwfaTBk\nQ7-BibZkYxY\nQ-_d7CI08qc\nWFOM58iTTJQ\nmq2cz9Xvzcw\nB1WG5mK06fA\naNR8SIVnHTY\n_AUvAyx_fwc\ny603mzYAcas\ng4v51XeJnkw\nLOb8UYWDz-0\nTiCSS1zLCCI\nI-kLvrKYP4w\nFc7bVIA-b1k\nRw8cPAmrrbU\nFiAJpDiz6Kw\ni7vKbmKF9VI\nGIiXwau_5iw\nj3MZdcbv-ew\nP38cMPv-Nag\nU2Eff0vnE6s\nMMiicN9p8a8\njqyhGCHT-v0\nV81lVBQ8TCs\nOinSJLNXgA0\nWg3iwI32C5Q\nhweZTM7VPbk\ngK06H6EpKP4\nreIyMTBfEwQ\nYorm8_AGu10\nzPa3qf25T3s\nT6QO7UyB5tI\n5AwBYVybnY0\n081zoKkdEYA\nQpxdbtnTXXY\nuXyvjZa6x2o\nKiOiYYsMcM4\nIWe5PTNQ6ko\nVYMQZsZUxeA\nhA1BikUzBKc\nS_fzdjP3jKg\nQBvJoXAu2zM\nnIJQOFSGKks\na7qRJ9T9TPg\nr7k9mkm0TKU\nEa5k9eZg7rk\nSYOiDFKwCsA\nPZPOGfNlJyo\notQNGe5sWaQ\nJQ8nLSXGWWE\n5R7pGpChUVw\nhRRvrXxGJjg\nr0-vDDcDUMo\nZtahDAhvvSc\nMTX0Ig39Nws\nRh4ap8LIbtw\ngvbI2bHohQ4\nmD83kao4Q60\noZQ95ON2X-s\nUJ9Q1b1FwKM\nfhUXu7x66BA\n0yYUlLFlw1I\nxa-P9llTLM4\nZPP70vRDmzM\nLKpCK8OtA1s\nOFlIZu9exco\njD4Fh0LsvjM\nR7stiKJsGjY\nAkEnbYvJGg0\nw6kumXHaOeI\nqb00B8U8UBw\nU3qhoY13AkM\n3NCw83LVWFo\nZI1jKmWANP0\nnZq8AiBXhiI\n8lTcU_MuQGg\n-gkBCCbycmQ\nFvka6JcREsY\nOXaqam1ZdZs\ntBeJkq_by_8\nVrMWnHwh0z0\nt-T4RYRUNWk\nBBWQchYpjqQ\n7ynMrmloUVA\nWkm_Bp6pG9k\nJcO_Cs2WZLU\neMuBBjnM4yo\nh4eOGlJpLYg\nuy8_ARH8yyM\nYMhAvAFZ8js\nKa-SEhfCAUY\nfPk-Dms1rJc\naqa74uEbtDE\nJQwmeTKQLo8\nk0aqHfvHcsc\nOJiaifxaWCY\nwYSIce1SzFU\nzstIMA6K-Ws\nwa5asCQrdPE\nfCQb93-RrZo\n_nngOtRHAK0\nBIt9IYPOY2g\naE4h5rX9u3U\n6VUfXGlADjU\nYJnneXfx_q8\nUNlo03HucLM\nLj7OCHi8x7c\n-xX0mOMuxyI\n1yLt0kzJIUQ\nGLZXGflTTjA\n0VIefkYf2Rs\nRGuY5r-7ta4\nelvtIj_sPwU\naoZDSctyBE0\nHONa-BdZMA4\nryKepaMME_U\nltdgreWmnSY\nYIw-r1yjxMU\nOGEmY8RCF40\nF9fEIstp82g\nqlwxaCiNZzo\nlnf-VO8gIGg\nFZJK7bi2mWU\nCf3YdE-vMyE\nZCYBYZDrmWk\nbIbxR_KN2TM\nbdm9LVNbuNg\nBcW6m0Rg1-8\nqSnUywWS9xs\nJPofeRImxv8\nlDduI2NkIsQ\nvXLLH1eSOZE\ntBNjWDkNbms\nrZuHQ94ES6U\ng2h8xRzMxtA\npZXuol2q1Yg\n2wOJBjpLTBA\ng8YFtf6tfRg\nXwob-vrMkz0\n_XriL3ARav8\neZ64IFqMQuQ\ndZ-teGgl2tw\nr0N4KlcTSUQ\nf9vhFEweovc\ni-f0M5TqmsY\n-Ixi48TxkaA\nX1DvoMiJ6n0\nDN3iIszMnI0\n2djG7snKS8w\nK8qQO5DvYhE\nzB-hQWVCwwU\nAQ0P7R9CfCY\nZQ-8RqS16uU\nemVaK5MoPBg\nn3_noySdJVs\nJPoZcvcPtIA\n78xJ5ZYPQnc\npVZtw0LrIX4\nYuuMHvaxXFY\nh0i97SWIdLU\nNjpz7jWgB04\nBjKq059eG6E\nSRNxRvPSscQ\nRLcngJeCHtg\n0M6PP32wggM\nOuE_YH1pzC0\n5IFvZMLDqXA\nz7vdutawe8g\n59E_IDXFWuY\nLNFINZN0KXY\nOGbya9Fm_Ns\n8csRJcVDQdc\nSLkR7mzysAs\nxPLtxTJnVOY\n7hrG-FtbWsw\nE2syhaH4Qgk\nIuCIhvIAn44\nyV5JUYhnJQk\nMAzasda1GUA\nr2xpAXMPRHc\nCeMiILVlZgo\nVyMHLfAg9bI\nD5a4_a3dIK4\nnLeZGuvX7D8\nSWjCrhbuvCM\nxknWZIAzBCc\nVWJfmCFQjAk\nawYi2rXf1Ws\n7ZnhCcj4sXg\nexE414Mp-gA\neensusNo-jE\n9R_jeIGgaa4\nUEemdeEfw-Y\nDt3n2LVD4q4\nxLz4trRoHeM\nhMW3GQ2x79Q\n317Fhd1UwzQ\nnF2xGs2J6Gk\nDERds8rPSi0\nxaBIju-chWA\ngdJC7j6maRs\nBjbnFg5KBwI\nQD1FH9vC-q0\nJJAByeqjimo\ndjAkVv3P_pQ\ncJYwpfA3HWY\nWvgG6VNS2J0\nT3dPGXTusv4\n7euiG3tT2R8\nAgJE212GTcs\n22aRiNlHhaI\npCQuhXDlfL8\noqyRFXXwB48\n752JlGiyHow\nXeERYS-0Tnw\nOhWMVue9ai8\nNMG1EMAgrDk\n576luHgBG64\nKlfCBX2CwMM\ndsMSPwyYBbI\nw_82krI5UQ4\nM_pk0lW3oJ8\ntIbuhbGhJxk\nXNL0KfD0nts\nN-PI5nIwciE\n_c7cV5_jU5Q\ncjS-Y6WsWMg\nb_jYYdrSYBg\nPJot4Pv7dFI\nRhUPit82Gm0\nT7eWdvyCHyI\nAI9AcMtuqsU\n39vZZiM3kIA\nr4SF22qFxbE\noK4FZ3ks17M\ngMPr9rchJMs\nmbkWniWSpR0\novy6F76ip3M\nwdAXjMj6mfU\nMHfk4edzvnI\nMEU2EJBkJcs\n_Rnaa9qtGgs\nfY-Aprk4mtY\nmQ3tgtzkz_U\nqvFduxMK7zo\nvRaCv5oNQ3w\noCjXFnr826Y\nFDGyKHeU2Es\ncSUVLAM8jx0\nVB3awTlgRFk\n-5Rohhkg-7k\nb3Aq5Vc0Ics\nwrrxHvC1J7I\nN4fylYYIrUc\n2cExWs8VUN8\n_7Y_OCGOKTk\nZErJ-R9PLFA\nwCDAFiLrHE0\noqCHL75LG3Q\n3zPrtRFOZQY\nphzJ2Iam214\nVtEOGd7tD9o\nJBLwuC2gHVQ\n3i76M1f3nB4\nar72efkbkSo\najMVBGbsL_E\nMpGCnuiCSuU\nZh_r3u2RK1Q\n2ZiKO3NtZiI\nhLUSwJuMjWo\n9lj3ebVWDUw\nC_QYZUjx7rs\nVNQP-pvNK9A\nCvK9ZJVsiPM\nLkBmLiDPbxQ\nrYXDky5UYks\nDXRDZkTNEuM\nQn336Lxy1TQ\nmoYhss9sP94\noJ_2e3gdfNQ\ngzTzSOHP_HM\n5clBF38sqqw\nXSUU-_0cWn4\nOLtnOGTdLO4\nwx2g7H8UvrQ\nNtkLxegTLPU\no50HHf9f_SQ\nV1bgBW9xx40\n7zwPRGbmrow\njr0JXSM_0Nk\nETkJs0Mhnmo\na4WffLH9UMs\n4hgt2hCDgr4\naGMCd4SoXk0\n3SNcyADMY8k\nTdRbjlsp7uM\ncysxO5Z-0L8\nAfyZ1bWv7Ls\nG9GWMbrEu_g\n6zIWcCvQNqQ\nFM_KxbSOjJk\nLmCGd9zuFTs\nuFHReMA18_c\njq2tARSds7M\n2-oMhYVEk8w\nk1_OK7cug8I\ncM2U8v8OuLo\nFekzb5yWBZk\n78IG1HROeoc\nd6E6Pu3a5qM\n9-Kvo3-7OZo\nmaWXwv9cBS4\nf9_1eujdVpI\n-nkxnc1C6rc\naV2eCTRFJbY\nxAV_XfpHSr4\nYldUEtdvBZU\nDZfq30VdBqU\nK7vOjKOdMNE\nmTr1vpzU00Q\nXSa0_MGO8bA\nOIl2sEhU24I\niTlkXQH-sdg\nmvkHPUZnww0\nhVZ9AGQL_oo\naYuatR0B8Uc\nrn4Ff3MpiRc\nGv_SuIRPPyQ\ndAc1rDS3YhQ\nV4rNLT7N_VA\nR2n0ZDq1N2c\nymzHr_Uvp7w\n4tTTXKxHcKY\nkXuzMpA9MaA\nd3P2O-Up78Q\nU2iJ1VmhksI\nfTb9XrbAMRs\nDPRsafiw4vQ\nR5SlDq1oRYA\ncyEwqVnXGU0\nLVt8wEpPgPQ\nnuLPRAvxkDo\nkF-KLIi97Uc\nB8CGtuR9FnY\nau5XE48PEeU\nZ-Vnk_VTtzk\nfniTZP_4V1M\nWdfgoDKArzM\nDS1YYtQ_LLY\nQlNXJ4pAoZc\n7iBFIlHDZx0\nqIV6K8OOvYM\n8JkLimZnZAs\nMTGOnbJkILg\npyyquXhcSk8\nye_E3_ik9gQ\n-33sUQVbQ24\n-kRGB8yBnrA\nuOsxXi-tu_U\nFdgyK4SErpU\n4NES9LMRqAc\nOSfjh0d3RkA\ncUnb4UuUS8E\nRupELElQj6E\nA1MEIKVyYPk\nHJU9-MJ4oEc\nBVs5TFKigUw\nffPTYWq1YAY\nW1p7SP59Vkk\nBZejgesCJhE\nBLNQrlY4HMY\nJ97c0nWkJT4\nxG6V0I6_ZP8\nkU5tlt5wTcc\njN_ftt-J7S8\niIeyS_5sJHE\nUu77LGPAlPA\num3tlxmK7Cg\n8T6_bpLwTrc\nc5ZiiE8fyGk\neZe4RbiIBpM\n6M6cpjP7GIo\n3bo6h-7ryfE\n3e-DXYUvxys\nVglR1HaNlV8\nUFXtRWVYQV8\nEePcWVFtRCU\nKMsryQSdT_k\nMIexe6aa14w\nTkX-TPaodoM\nZDgFAFQGZbI\nWje5oR4NqYI\nvEDyFvKFcoQ\nDsVUFXVx2pQ\nfjVyrWdUy0c\nTsT0ExNMK3I\nVUsdbeBqeeo\nhVGcbaoRtqk\nNQobuzmBNXo\nF5mTt2atvVk\nVG7JAM6DQnM\nJbNo_tlgYfs\nt0Hr0YA9_H0\n6_0y_BGIZSU\nGjtM8XhcA-M\n8fbZvje4A58\nbrTGAgUYnIc\nr3eNr-xxA7s\nYCPDVVLUw-4\n0vVy9NBehoc\nNpI0s0ky53I\nqcFVUGNUWuk\n7nUDA-4vD9g\nohMzC_1W0ZY\nj8yAjWvAqyM\n1xI_CHaHWmw\n3qZAvmpNfaw\n3V-kJbW3b54\nacO1g9PEIBM\ng0TZztZJGRo\nq254XDNZ2Ao\nplovZLxlpGk\nxWTQN9bqbws\nfZzxZa0k7II\n387KRtYq2mE\nzmxWCJ8iM_8\nwnosQPQgvTs\nqYufeLaIggU\nO1p6omIzsuY\nyAXioyO-acA\natpbdTo9nno\nQDYx2BOuAGo\nNaFy_SWmRlI\nog1c8h2UyE8\ni7KcAEPxDwQ\n9bHnSNlLZh4\nmha0N1Cx1Ck\n-1gCG8m1SHU\nxdgjUPMiiEc\nN4x1K97JZG0\njw41pJtU6eY\n0UlzQ-bao3Q\nvm8sOhr-0lA\nTBBN6WvPavY\ntcfI_6ZMZQo\nnFYtmrhEBZc\nZ2ixl9gb0uk\nHZJ7Y5JooZM\nbHPmA9JEEQs\nz1bpjIkTie8\n4vOHfYUUCJk\nXmGOiqQm9B0\nmeN82_c9J_U\nM6mnrzwTxVU\na5PoLM_QBuo\nKvWWoKcefWo\nIESky9kgqi8\nQ8HMk-QX5hg\nnhwtMOjWerg\n-2LmKW3TtuI\nCmpDJs0Mjj0\nH4zYhsldk8M\ndC1bJ1qmOCo\nnCK7A5Zp9I4\nLCt7YtB6P7g\ncYdScH3BmBk\nh52UYfkLhXg\n_RYBglsS0tg\nUpHWJ6959yo\nVrRhpEc9Ivk\n8TIPGj4-f-M\n9jI5AN2KZJ0\ngHfTsIMdlPg\nI4ktnP8eOOY\nGU6US0VlAio\nrxKp6tH2AKU\nhM33ekZw3yQ\nFYcrFQ5boyA\n47jfeR1H65g\nGJ1KcXeNstM\nFs1k0EMYydY\nE3LODyZSXT8\nrm6i_YfioZU\nIV40w-OYo0A\nj0sbjGj7ONo\nJh1ujB4gFv8\nU318Nwim78E\nTp2V6oAgYbw\ncfM9_PduF3M\nUx1Er4tflxI\nVX5XAwBfy1w\nbH5GtRBsss0\n1iFQ6IvEQXg\n1F-LMCJ2n4M\nzzjFcjSFoqs\nt8Ql94ApRSI\n5dxhOkrjfuA\ncUQZVnerwI0\n_OpCOSHbqiM\nKJpaul2yTOU\nB_PvKCOXdiw\nRC5ZiK6o7uQ\nMGy5sF8PhRQ\nlufECeWtN34\nYj-a2zT-r88\nzDmvCNfvt5w\n9fuapCaufd0\naUWOzyo-Kec\nTW8ZML5OvXs\nMpXp07KfSFI\nus54vk5--jM\nTzMC8kgib3c\nUXCzmFHm3EE\nOjHAZWyckMc\n5RPUchAlppA\nnNXxlYCU0aY\nyMiGHGsdikU\n538H6EYp_ZU\nJBOq0nY1rQE\npcMXFYqwPGI\nyPQQzJGKOvk\nHiNWDfHz8Io\nCcrrepikVtI\noJGQgAniyho\ndJQGkx5LpuA\nKWKu1BbZhkQ\nHk3IpNbltyw\nt209ljjmTqg\n_B9xQeIvdHM\nyLPFWQ0NcZo\nCVyeyli6gzg\nylDhWZKbCrc\nd51N1kUa4lw\nSoQzCG8nTbg\nENkEuLrzmnc\n25D3SlGLFKg\nURt8hBsrHFI\nw13ky72PcKI\nS-0prbWRAUk\n08iCLTmybXM\n3Bm1V7eZBR4\nMBopFmu3yAg\n4ImW1F6LyHE\ng46IxT3MGP8\noh8pzfm5QF8\nBCHi6DrWgjI\npDcPRvZ9sDU\nYd8gK6EgpLM\nfz19xrc_99o\nKAPU1-0hGRE\nd3hs2M_0vLE\nrpUPWSqadTo\n24qcFHAk1Cw\n1UeNQlmxEkQ\neEUulOnl-n8\nBT2RBCEH54M\n5aXmi3hKJrY\nP_mbrROQcME\ngOb8HH2oKcE\nYXzryi4HrVs\nkh1sYuFgUAM\nYdiAV1mo4ck\n-zoOpeF5Yzc\nHYkSzS4v_sI\nhWRG6Oar-aM\nDuvGxB60xCQ\nf3u4j0hVy8c\n2DM0pOmClOg\n0wMU9XDIm4g\nPK0i_dyx230\nxvi62S5Ou_E\n-L3D0BL9ieA\nqL1WqN1XKK0\nV7N7EZ79mvM\naZe77wShCbE\nXS4s3XXNLiE\nOlqErSr6Rjw\nW3c9wtbQTZ4\nLk9wSrZ0fWA\nYc81Un8ltS4\nP1xdGCvNMEY\nxj04uvQx9l8\nnkcLf1CH_MY\n7wLSkQOkAGY\nvmnZ_-Mqb-c\nxQGzDvZq6v0\no4U1GZcMmn0\n-tlRw45_Ftk\nmTr6qV4PiMc\n2xfrmlcIQf4\nLUQGBGUI64E\nsN7zJBjZgHU\ncCtn7_K1GZM\nUgU1ALnQTFA\nQWMVhLtFtNI\nGfX0WTR-kNI\nC1ZrzzP6tSQ\no2joReiVA1A\nXWI8ugmXnwM\nYJBNE7F49Aw\n2mezAYW6Qiw\nGSR6orbPFjo\nXClRjF_xBj8\nD8yY16GX9t0\n0MU_p9wU5kQ\n3Cp_-nl5jEs\nrNOZMZHDVB8\ncJti4-26uFE\nOT-cPtnytxo\nDdZlmK8Xxsk\nwRUXdHtHe8U\nZCoJgCHXXK8\nifM0qy83_-A\ncB0p96nOXjo\nrBgn0IhMEBk\nzVIDGJxo238\nq7QxVddVEW0\n6zlY2XVDl0E\nrXqRZvG5LAQ\nRv1LUObd720\nZKTMxF2PrHM\nRineREyWP-4\nRKBZx9XsCuE\nWXDIkldSPqI\nmWquYel6AI4\n-yx9JK_HeQc\nhC6jyc9reW0\nYg1izGf8EFQ\nw9yRZoY0stg\nejJIihkZTGU\n1tZ2EZXxU6w\nhSLj5cQaXM8\nScMlNpnLI3U\nL-HEnOelh-k\nTQebazOCP4M\nGa9YztTUYaU\n750pEcgJqGg\nIYqE3JfSbzA\nUU8yY3gkZZ0\nETrY43GsoHY\nwbccgEaJudM\nPd8RaVEZlyU\nwf02wZ_Okw8\nyZvx9PF3NAU\nOp0qrTGRcxk\nR57cfRscNyM\nC-Ad2a7UD0A\nHkfaRh__E6U\nmW42lBPbuTc\nsEaSAJgaLtQ\nxfIJV6C9-fM\nIwzcDydxQyM\nd5jxXkpstv4\nTSaB7Oltgwg\nQecVEAGoQ4A\nC2NxwHIDTUA\ngHfRl_ZjHj8\navXk2EamFs4\nMXYUFlvaGpk\nDdqQsOC-A2w\nupwUN92OAQU\nbKOW66PVjvA\nUgxCAQEI16o\nNyPF-BmNQjQ\nxSmmiAl9ZWE\nPVuB1pBFA5k\nN6ffGVe63c0\naTPdWYo9zhQ\nFVfoce-wfgI\nnYkD6bPe9Ho\nS02T1j9qzwg\nbXq3dytL6ZA\nDHUSpAtemfg\nBl0c_aXJtUc\nJl4L_RREcpQ\n5djUDJaY7Ig\nNJJDRmtivWI\nDSBU1YgGyt0\nw4o45-EnPrU\nT_0IN7mMXZI\nrTCi5UsRudE\n1i2_WXJB6wI\n4xcqyJwEdd0\nkzUfGDKepCA\nn86CV7VKvfE\nJYKlYHwUiac\nJeT0XHFyAU4\nqlUmBE6uGu8\nTdQkBU9p6Y0\nnshLAILEN4w\n7qVgjGI6Lsw\naOAgGeW7abs\n5kmgUtppQP0\nhcvAwHA7usc\nqIOC-6zluBQ\nNGtMNsci-zk\nQH8uHNGEvbg\nx883mrwYjDM\ntoAOUXtlXXc\nVCghHER3cOU\nRv6_mS8l48U\nNH5fod3mC7c\nb9qMqGTi1uc\nBWw0KCLcKHc\njgdFx9Epf78\n67cxJ9EynG4\nnS-l7xvs5ew\nU6xq6u7vv0U\nC_uIIZdNVwk\nl4bCchzGpkQ\nuEchpjUjGPA\nuiWL3bxDifQ\nhks2iXeaxsk\nOeLnS8O08ng\n1UybDydQpNY\nq8_R4AG2o1w\nJGnxWlhfrrM\nOE8Tc1cvSYM\nGd6aLnPHqeE\n_6AGOfGHzeg\nJMa1f4jyBa0\nbE0mQSaYaNY\nBrRdy4BAYp0\ngNtGI_D85mQ\nEGX-t_U6vkg\nSWEbahhZEyA\ntjYSxlqLOew\nmflonVbY9gw\nQn6tLR3RGgE\ntAp2Z3-zx9k\n3I6s_-Q_2kI\nuYV11ZwpaSQ\nrKV-U-HcGVk\nYP-rmIcxn1g\ns2pqELFTepw\niCp3nEO3ttU\nOELFAF76DEU\nhKvpF7ACDBo\n0zhatVdxShE\nyX5LfZK1wTw\npXe74ckEnME\n6w6aNHXW93o\nDwOTJvwKKeU\nl0VX6h8lP08\nqPZWb3abC9I\nZmnzw-Dxym4\nqBWbxMv6v_s\nHWAQ8rTBLUk\nKuXeOs4oOBw\n84VVZEw9vBs\nNhpvvobULYA\nEPmNA1vLOH4\nsZ0nA_2qOWc\nZRJ_tgwyLUM\nMALjtjcdmt8\n"
  },
  {
    "path": "data/metadata/youtube-dl-dump/2013.csv",
    "content": "goyoOGbDjNM\n4GUk-1i2_Zo\nMM42NkUhSnM\n8NOmVkx7fWQ\noXcDMKOD0O0\nsTu7aCTkp9g\nu1Dxy8jBmYE\nu-oetP_iX_I\nWRJWb6SViK4\nE0TmjA1X2N4\nDo4Z-aFeJMs\np-dnhwIY2G0\nJ-8l4bdfL9g\n9CSMoJr51IQ\ncs6MZqTBBC0\nSehEKk2gcSc\njSabMn5UXKo\nLz3XcjwKGmQ\nb2gz0vSh0J4\n8oDxIAKnWx4\nBZH32FuXeF4\nlVQgRd34Dlk\ncqwrFYjHahk\nkUkbUoZ__X0\nliH8CRkWl3Q\naVEtuBwgly0\nOaZ30IajJ2w\niaQdh-Hbp3I\n5938LUU-UAY\n6Mwtt_EKIQk\njArxL-3-j94\nVqtAA8dO7Ww\njWJqzIUntho\nzpQFjWoRhGc\n3lyx7UsMqmc\nikfmhFpbWJk\nOeUbPposwAo\nWIZ0J4rWO88\n3fIng0TRjXI\nw0l1ukaxeBg\nC94ag0ondig\ni-bRuSNSvcU\nmAeceNqeNtQ\nAguptuYeDRU\nCiOFGnNgnnc\nUPaTwmDXLWE\nQDNELnksfnw\nGMiD6PU8SKI\na_aZ01raOoI\nMlD51EzRE7c\n0pVwRO2dFVs\njcTv-BEwabk\nyx2giHzJ4-I\nMBfp_LuEfqA\nDKwC6X7_JU0\n5485fd0CtKw\n3gDvO7H5iEA\n4SzQZn8xGnA\nq3a5wxfm13Q\nW2Et5nGF5C4\nG5sYuuD7ixA\nkEsfYG_bF-E\n77KnithfRRk\nL0rNCGRjvtU\noepaVuuBAtA\nSwI_ITgsSks\ntLzcAofC4WA\nOuEmfmfgw2Y\nsiHzbnn1Bxw\nJyxSm91eun4\nlQ8JIa98kAw\nmeZXqa_CE_o\nLDxOZ6cv-DU\nS4s8LTNnufA\nQFQ4izzxtec\naikBhgSFE2A\nsbJ89LFheTs\nfSNdh-3k6-g\njWQ1ITS94cA\n_cmX1kEbl4g\nBtdp-sC8MJI\na5WAyc-EaNc\nLfxeHobEC9g\n33KUnZf841c\nfaRFVdrRpws\niWGL8PRdM7E\nWCES5LXQn9M\nRzGyyYgXffQ\n6bxEuaulT4k\nb6xbga06ApQ\nb9KCMBBn0EI\nbsaA903oxvc\nOF-QIOuucVk\n0A9ppII7eVA\n2_iIEQ-hlKc\nsua9tcQ14hs\nPlGtHAZOWbo\nIW7worFAFlU\n1zOmRBOYLpc\nFlB2v8LQHDM\nlSzT54HTpeY\nccU8NJFeBSA\nCe0zSR2ParE\nvlZQj4OrTUM\n0xJcu3vc9tI\nE5VOPMr7SKg\nK2Lt0Ek64eM\nAx1Vgvp5Cls\ndso8WOrSRSQ\nr6fpS6P16NI\n844ONMSqRWU\ne89qDsf6Q3g\nkTXppLCyuOk\nWvQTrzonQAs\nXYrGVKzAJjQ\n0zLL_XdqxmQ\nlD7Xo_FhL4s\nGZJ6sC4nKNc\nA4E1rEzhnz8\nsRwqd3eCNUY\ntDWQvA6IhG8\nlhGtoYnSdl8\nEdN4MiVmI74\n-kkP1Pvzvgs\n8riyzFyGdVo\ndm3xv5sosng\ndaoD1UtU5XI\nyh17pzVY6BE\nY_lgyJtcb2A\nDCUGRi_FlNE\nPrjcxNpxOos\n5BL7Fj5SUhU\nMvu47rYJ1Y4\n_uHTonkUqW4\nb9EAfTyu5_I\nt3c_a9M1E7s\ncEPa4RFLJ-0\nXRGOhLyLS9Q\nzJQujcyncBk\nAXsbWJC8VM4\n_kKO_1Dr4Go\nJMlpAPKDm2s\n6lYiLycAQSo\n7WQTYb36Cew\nwz29yiGSrB0\nx6fpplPaxG0\nc6ik-AA87Uo\n2xRlAbbcG0Y\nNT_hyjakJEI\njZyhfkpsGGI\nDCM-sEpyh1Q\nbR2Uon5BWC0\n65XtOM1UUGw\n5Ddap2Pyhtw\n5GyAcr1BrNA\n16bGLMEtAww\nmpDnD5Pp90I\nD7MotG6VP4I\nd1lql0Z0e-E\n6UwcLeAV31Q\n_wLWdDRIkis\nN69MOeO5bi0\nlyu3QUjAFtw\n03L12Mqkzg8\nZ-Hye1zg5IU\ngLB9F9QftwM\nLS6oxPMMdas\n81fH2bYF59g\nk6_nTAS1M4M\nCxkpSGI8L8o\nKggovdPWfpk\nKeejr4iFv5A\nXHGWTDHchVQ\nLfKPfJmfGgU\nJPtEnl6MpHU\n8-ECgs93q1A\nbWm1GC01kGo\nyEYUc9oIVD8\nsO2RBLeWYyg\nLL2LvzUVsZw\nhJUtiOm9dLY\nUr3uTKbrqIQ\n_f_1Or6RhiQ\nzDRmwZxOJ4o\n__3ylv_JWqw\nXwS5WsjPg9U\n7jtGp6xaVPU\nhy0b9Rz31Zs\npwqOYWnLxBo\n4vmjX0sQrIc\ntYGiUUnoZhk\n9ioRMsPEf8o\niltOTKedsM0\neFd0VyfLf1M\nnQIfRCUlfz4\nc2tWZFAL5t4\nY52_WuvyKoo\nlh6Y9EU0wPQ\n2KfWymDaTmA\nOvaNgegisKU\nKujzb5PT5ns\neZp6EmVqq5o\npIvTIG3tWok\n2xujTq-ueyo\nZnsLPtYvqj8\nIC5DpSRkHps\nAZIlLRwCn08\nPj4y9M7cPy0\nLPxNka5Ll5U\noYx2teRxnvw\nZFM-OxDGrkg\niFnPpSNqKYU\nbEA-o4IJAic\nr1jgKSXPL84\ngqRIBKn09_M\n-O3_WO63fhU\nLVKODpCrCpw\nRoP15HrFNu4\n1XUHPC3s3rM\n9bVHNqrqvjI\ny_P5zX0ejXI\nlKJ8pyN8Cm4\nRdL23CR9K5w\nz4edIxzhU80\n5DYK9Xq-aF0\nKDc6dZxh0Cs\nsnKDmQJqQ1E\nNSuYLeI3d1U\nAlIvRiDePlY\nFVEiScxUQyY\nR5UsZ1yoTO8\nKIE436-2xcE\nYDCHojBWEhg\n3Lf57-rBck8\nWdD2JN10zpY\nk-WrZcFJo2k\nIaoE6JAGhh8\nJrGE2knBQsM\nNk4JsPf8xX4\nzm7wCb8IXx4\nC2YKcU5rfm0\nNt9wqkbXyyU\nFD9lsX7gyeo\n4Spw9eH9GBk\nbCk9vtlnr34\nQ067OuCUl7o\nrxwADdYa0YM\ny7rxncDh6io\ne0cR6R3SccI\n_W1NRq6DekY\nPXBBHe_SwSs\nWoDvOu6PqLk\nLIugIUixU_0\nNZqeFQasslA\nealJoNJuKnY\nYBqruLJZAcg\nX115jd2e6e8\nX03tbD886IQ\ntfGpUcIEIf0\nBEkjNAsakzA\ng3jImb6V4wI\nyY6EgYygsAg\nZe8Yt5V7T6A\nyUgQNj5-PaY\n_mVT_JmJ2Bo\nzMNUcNokvkU\nuSvAfRaxSu4\ngbEDjhLuPAs\nAwMjkeZbRZ0\nJmcifAkvDn4\nP06IeXkgRNA\nVklQQrb9-4c\nnfGKHa_mn20\nPFDnRg0lxUE\nusWA4j2ED_Q\n82sgwc-34Cg\nnvFln5J-6uY\nyqy6z3kxWdI\ntYmvgGjSiN8\nfXBsUOysL3c\npHu6mCqzpyw\nkV36CHsDZ_c\n-GSZwG_s-8A\nd3ZUSI1_lOc\nBWYNt1N6xWQ\n5FQFrCgi8d8\nOK77tkb6D0c\nqa2Ng4a5yk0\nm-YWYdwcexU\nQr9F2ij1jfI\nCFCnY49pyII\nzSCukxfXdAQ\nNsMwPIy4Ax4\nNMOjCohQbXY\nLgmzj8eWK8M\n-rebHHoZJSM\nQlKuJBiw1ac\naErChTKF6u4\ndDtFWw1mZuw\nsJGWczuXzT8\n0t1xR1LX5Kg\niWJTDTs9ymk\nvIaVITC62Cs\n0JBU9hgQ_T0\nH3KbLBwQFW4\njKVDdMG37ig\nopoVbcNO48o\njtQcr7lJXB0\nJNuiAZP2dtM\nKk6l301jwOk\nugm8RMqRSxs\nL9-FR2MUfrU\n9yh3GgjFpxw\nw3-djlpw4iw\nRZa79QGDeo8\nyjEcOkwV2MU\nV39FjO5t9BY\ngKpPQ6SqHvQ\nJAz7hBbOoc0\nvtxPupFohQA\n_yY3iR3yuT0\nnyMtN_aHC_8\neSYNuO9GTU4\nw4i_ZwMT3H0\n7WCR4dZt7Uw\nLQhfDQoYERY\nj5Fd6TqePnk\nRhMsnnZ-0qM\nAU-paVv6zTk\nqPXny_mZ0iE\nzLhfa5tKJyY\nhfufT3MZQm8\nhh5iOitreQ8\nnDGZMXNYfF4\ncoOguh0UhcY\njVjq_m-PWSQ\n6PvYbL69oyE\ncFZWNfXzFLU\nBJ1tNYfDZa4\nDcmzHtokiMw\nJpvqpzU7eEc\nXI5o939LHrE\n9zugv1NdMj4\n-YGxccN_j6o\nK0uzT9bWryU\nkp2UhFQQb_k\nBaFBFmJG-LI\ntyazEYlueAw\n37zZ1ULVBa4\ndgGvAQ3kcs4\nKwDvrv9byqM\nHRrbt00Abv0\nfrTBOhJ0XHU\ns4veow_qEDk\nHSc1i2XKjCo\nWK29KgQKP8s\nhhGWxqj_bC0\ne5Tb2YSkGh0\njIyn1q4Ilpw\nogkh8GaUkBE\nIfwHIwPbHaI\nFHUpEG_qdVc\nTg3A7u83stA\ngsWHt9OIofc\n9IuMUzCJ5m8\ngXHhy4c4UZw\nD7H61Y1yUr4\nU4se5hr9O84\n77Uk4kkFEnA\nq3JlGPF4Ko8\nC1QZn415vh4\nmIIZqCaHUFI\ndTSXhhHDOk0\nax0943uaZUk\nLwdMHOiN6ko\n5rlFiEe6S24\nau9pGQ9AuUs\n0vOulnDhH8A\ndEnoofPhBtE\nk8oFMkg7icg\n8hG-F24aroc\nMlSzWgyNsAI\n2KwdvymU_ao\nauccmqO45a8\nefqBAU-lT5Q\nqUqtwCfbjVw\nfWBAKMYKPSc\n_e917WJMzl4\nGGkg5ytaXlA\n0J_lTFS0ouM\nlDetwrOZPZg\nBHEe0PqpvNw\nundTPa_iq1Y\n9PyNL2ahKwc\nczBTbtS1YpE\nkCsm28_ULw4\nLcHtYOV0bVo\nl2g7v4DYYik\n3JL2XIwueEA\nyKxkjtLBq6I\nMBYRmSeYB4A\n6ISHd9kAsTw\neOdZMwIh1I8\nIXi_VrFakL0\n7dqjg1TwbXs\naA_j4KpP0W0\ndzbazAbjk8w\nGYYuyvyr2HY\nJFblxacw_CA\nc93bejkDIuU\n080g4Ylkv2M\nsR176VaCLXg\n4BUDwj_mXKE\nmvAkLCKYvwU\n9RRGvAB4HF8\nex_KPw6bVwQ\n6d37Zy95yDI\ntHe6ar-X2cQ\nqTpB6q-YJwM\nioXW5Fg_q_g\nDCzA_11fJZE\nlGlvNt-N140\n_j0KhXH6xLE\nw7ngnhj4snE\nbh2ShAQ4lw0\ngIGtDdiHlA8\nTlQ_qOWPTnE\n03QHVB_n6N8\n1vmnp7ghGPk\nLKpLGai9GxA\nC2PhwDzcQJY\njH2OKc8HPw8\n9fQG9Zhv2_I\ne-5SVm2NUe8\nxOCBpMs-9hY\npOQv_Ng3CaU\nDGtD5QAaAGY\nLwDbgE54QYE\nXHbdoO7uCkk\nVI9lWn1dpzg\nZU1CFYBhGT8\n9K_4ZaMc1-4\nMpmGXeAtWUw\nm5bPIty4Dww\nh44egWnbrrg\nDE71sZbjvbs\nsXtlR_7l6xQ\nRZAkOfxlW6g\nm7xTvb-FAhQ\npKJOqt7BtB8\nnaKm_rLxRCs\nUqn_pbUUfKg\n4qFxfRN75HQ\nJ2yzM2nkylI\n3pON6S9aDy4\nnBRPKaHMFn4\nWAwbrOJMKEc\nti42vZVtgvY\n99Ptctl5_qQ\nUhDZPYu8piQ\nk9WhxTOA19s\nBWDYUMTmHjU\nOLBotH5Bki8\nhIoCskqjp9c\neo6MfN5Lcws\nx87nnioiLP8\nRQk7-GqzZCc\nrfdF7LBQ8Ic\nhMMAB3MNCKw\nbkpuLB3ftow\nYlRLfbONYgM\nRiBRrKC_6pE\naClqNJOXy-w\ncdFiubg8UnQ\nG-tFJHYBqjo\neZtQn-GAemQ\n_SQ4ogstDVE\n6Dyph0wJBcA\nyNeQm5aqrHo\nqqaFGM-AyNA\nnDlEcFRZUYI\ngpW3ywIoyr0\n89uZslA-efY\nW6udsqodIzo\nZXfw1y8Mbfo\nfgEjlKNllEU\nboCpijI2k5I\nv3dCP69-IFU\nYhSKk-cvblc\ng-2hB5Kd5aM\nCtTjc4nJlDM\nV5dA92wqmME\ncRsKzW5Fszc\nZ6oeAdemFZw\nIi5azc-GzXg\nQRqXBsgnYok\nOHHn-_aJQ7s\nlu9yr0xefYQ\neu-afVml4MM\nKXzNo0vR_dU\nDDb0S3nIfNA\nNG4z6W4Zp_0\nZgBPFyzsqFg\ns-Sx_dMw8oA\nL8_G6h_pK1o\n7EXefCHq6OQ\ntGNBdjVO04Y\ncMnkhxzCLyA\nOm2UW4c_vqU\n9anDqvXfdu4\nnCgg5XIxxjY\nRgHtBxOs4qw\n6jS65g5UnWM\n4ega5Rcct2s\nuaDgwjVu8ik\nYTnxiXd0qwA\nnwQ5zHdDFng\n1cTY-JnvfYI\ncv62uysSvQE\npcyg0H7EU3c\ngwEeqSGSL3g\n9ecF-Go9lt8\nSOnb-cyRdAg\ncvy2tRH7HNE\nZYLekT6cYwY\nWh4oSUvSQTQ\nuvXwt5HNFLU\nU2_h-EFlztY\n31usxLUiuhs\nulMNuwN1C-8\nz3YKH7m0P4c\nDyofWTw0bqY\nlTd2m2J2XmU\n1daKtciMLiE\nHHFbltJSRxo\novQk7fd4_Co\ni_9C6d3VVHM\nuDqSQGOtixE\nraVKed5rdgM\nF7qOV8xonfY\n-ui9TwNrNEw\n7FgWn6jQuTQ\ntk2vET4aFW8\nTO01P7dpKV4\nUdT8lSEVHZU\nz5s04znNyMM\nwPO6KyIYst4\nyAgMoKBGjT8\n2TITAbyObTw\nq8CXKTH5950\n3t1YQOfYndM\nzRsPSJWe5sY\nbLmYWtqC8pc\n5FMiM08gFtQ\nDeYew_zLc_c\n6CxOSOVI76c\nH6fBnHvdZeI\naUdbjoT_DPQ\nsCJ_SlkCT_o\njd3KM4imjr4\nXVGIvc6G6yg\np0Ov897MYiw\nkCtsoBRr1Z0\nzZlbperC3ns\ndPk7S_LiI1I\ns2xKn06X9cQ\ngoOhv_1FYsE\nS-hMzdxcOD0\njZXHcvhr2p8\n0NSgeb0dBLY\nRFAfyPXisjQ\n8ygfQ6oSNiU\nmjo4d488_yE\nl3t1ZSuwLzg\nwy1eWsC2sL8\niGJCWeK7YCA\nYhdrJfDiIkM\nIp-dPqtyXRs\nQNrM2ICShJ4\n9u_76dg61ns\no_yIykgKbeQ\nvjKoaNcefSU\nRc8ybU83qHU\nCeYoUJYqAQc\nhghczTVgav0\nmCVwWrfOT3s\nFypqAWaSTFU\n6G8ExBEJEMQ\nRt8Bfir3A4Y\na2gMY3TRx8s\nMYuEOOe0xSE\naYbNb8eaTCY\nbMDdjhWe9NQ\nXnD8FsykE08\nfR0Sh0C6jFE\nOrZB5n0tNAI\n69aok-u1esc\n-Luy502C920\nNG1KirPJLSQ\nP_GbbXL9E78\nhkFSMV93VeA\n1D-v8EcGV2Q\nsA0SngAZcdA\nToK_9NLtr7M\njusrkQ2Zg8o\nMJ0qQkcBNPs\nhgFClV33aH0\ntm6qzug9AS8\n5F6pso8VBhc\nKE0awhgSLmE\nxR1YEOrYOdw\naJhtBJETQF8\n5TbuwxXBfoA\nnn-nEk5kpz0\nv1dTnLPL9gU\n2PVdztmMSzI\n4GLcbZQoPNk\nblDYzZvYAak\nOQVIkVIf_BE\nmUzu93AhMuE\n456l6TpeE1E\ndJFR7xbOIuw\nstelirVdNdI\n_dtNz4Te0Gw\nF3f7Li9T4n4\nopseGWIdLd4\nlqdyZpgCnXQ\n-oeFJvhvMik\nF10EFVISERQ\n9hCHM2Oj1wQ\nSQ_rMhKlNFE\nV-eoS6kEyeg\n2Z5WH83Vhs8\nKDQqlRIFcAQ\nJOqFKM-dt5Y\nQUTDoPuCUcg\ndKoFTEK7O_o\n3iD4rM9utqc\nqpLovLQoJ6c\n3eA0tlN-WMY\n1NBRkyfy4lA\n2ohNiVtAwJY\n2SnugUXqVJc\nO6frj4BOJJU\nXk7IjHYLVH4\nN-VlQuj49a4\n9GagOWlFd-U\nDdZNLekEcIQ\n9fnjkSES3VM\n2315p7LJusg\nrfix60WuBxs\ndf-YzAnQJpU\nOum7mEtv05g\nkA_BtqogJNk\nSzUPAc8HTOI\nPbr6HpxJYm4\ni6ymVjU5hno\nIVZd3YBqxEc\n7gc1EIrxjws\ndw2jrtR9Px4\nwosztGGnWt4\nMr8aBk7ub2g\nEshEWL1ZhCc\nrfeKwl7Dyg0\neJWSp6A1Ks0\nPZ93GNHBHsE\n89g2af1Qw0I\nkjd3eUIBSj0\nl53Q1UXk2DE\nKzVgbCFwn0U\na-Z66uN97Ds\np0CKoz0u6Eo\nQL4mGMAjHBg\nFk17A1jyjKo\npetKvkHfPJo\nZkCH653K2cc\n4PcE-gNqFfU\n8YCMjAOgFpo\nSMYJOm56YvY\n1_vxyocjxg0\nMvYuTdiMcRk\ntr3ORGLT_W8\nIL_B1fmfl_c\nLDsysmP_8yo\nKmCgqSJnzrc\n54SNIVms9vo\n_WzzevY4_Ys\noKmBIC6X6Fs\nktFZq_8XXOg\nUw98q-YIFec\npE5pl9UG93I\n_8N1uJZUyaY\nOcNjc5lfvpM\ntVfrMp_MWw4\nVEgR-CiTK2E\nAGUMsaszNKM\nx21gkEu5lKc\npmC3rsgHD9E\ng2dAymk715E\n61_aprVh2FQ\niG4GVhx6oGc\nWo3qdzlpPdg\n5RzSW0dc9dE\npt-Ir7xS29Y\nkhg8XoyKzs4\nPJQ2AiURctI\nPBHZhxrhO4E\nsIB8AdUqEqg\nqfIzHlWOiuE\n7w2iVXAHiPk\nqkjpTwOa0GY\nd_jEVMQc0ig\nPSmJNK9zhR0\nz9MEhN5rjmg\nI1CjDw569ss\n5UKpz6Gsyu4\nNvPYToFoU2M\nkoX0RDUQHFs\n65ltaw4SF38\nYBQ90wbJ7MY\nGxMoPTqev8g\n6i3eC2gzxXA\nVwE2USOqfNg\nD_5kpc0cUWk\nWrYDmyHlxqY\n2NLGmRYLvsY\nlRVUsY_rcCo\n3_NMhC6GR04\nvyN2oD5tI80\notQ_oCvSq6E\nqUMSld6BwC0\n7DhLw2aNu_Y\nyXeBhFzqzfY\nBUAPTnpOdVM\nlbIbVWmpcCg\nworFlbNJG_w\nlwo1GnbKOW8\nwrYcEEv737c\nQC4b5Aoff1I\nUbr_vvAzvtA\nk1fiQFCN2Zs\nE_tzgBTGxEM\nytQv31xRLGo\ni4GeD9FWdG4\nnSEGOd89xWw\nO0twX6iB62U\nYg7ulcF39e8\nhdaAD9fxKXA\nFzOGfMXmfF0\nS8WazHAxJLM\nxvVqMR_f6IY\n6JTplpmC6AA\ncpO3ALFscmQ\nUvpLAMfYgJ8\n2Rlao83KneM\ne0fFbNV1ySY\n5iyXb_jNvgc\nS01OvbVQhGc\nkWPc7z2IMkA\np12YiRom_Kw\n6HH44dvOLJw\nnH40NtYdL-U\nE5zvQmTrzVU\nKzSRd6xpR04\nwzJObNk-flo\n6bn4rdEiqg0\n0WuMU0zi02w\njfYvV2tBEz0\nQdIw0bzY3oc\ngrlDMsiQ2Yc\nf1Nh9DlkZ1w\nGxcZL7EM5Zo\nbBeHRwjwKk8\nHrFmuAN50BA\nwZheb1gbe58\nghNPXViyQoU\nSN39w-Bnlgg\nw1pIFZb7480\nITEod2_WHoU\nC-7X5i_EQPE\njTRa22j4OUk\nd8Ff_W4-4VE\nkuQQoH9skXc\nvozS5ppNzAM\nVWWchm35s-Y\nKVncpZkleFc\nwhUo8sI5OuY\nBTVWvOpPkIo\n7L0xuL1thp4\nxpSqCE8wCOU\nw610fTL5O-A\nqA73y2w3WUc\nFwHnNe_ItOY\nTzt-axwwOUY\nIh-_ZmPZ1x8\nqh1KCsqqHFY\njPSjDk0CM68\n_F4WjvMnL6Y\n_hX3fkzGrxk\niRmtQ5DlvuQ\nnXoPEmh39ls\ntLiJueTgu44\nHLxJLrrC5mE\nmTYwZEhFwu0\ngNEB3vRczjA\n44-8o-jEDB0\nohnhJ6gyLhk\nkItLDGtPMMI\n8I_QMs_Mjb0\nOK_v02xShhs\ncpQQpn89mEs\n8dPqVrwBp7s\nQgdvS-09ygk\nOZNLJj4pJsw\noub2YWXPV6g\n60PDxhI6y4g\nAesICMoanS0\nSyXqFhSPWBg\nLWkbKaDHXbw\nURvrDySPc4U\n0XzQX-i3y_I\nvH8nss4M93g\nxLIEyHRfbv4\na2lb_3-fYFc\n6kdms5umbhA\n4QsATC7VdUk\nzvgXyU1STYI\nXGkwMwwlTLQ\nDSoLhO7jVzk\n2J4gviivSJU\nvK7tEsNZtFs\no_6VSJ_RjkE\nfXcQVdBqtaY\n2fkfpdMG-KQ\nvBhBkvkofjk\n2i-3w7WnPiU\nYjwB9d1tpJE\nOopV0xphrrA\nHdaBcsWogXE\nd-2r0wMjfrY\nF6Y4Vd970zw\nMPDs_ZJMc90\nqkGDaroLl_M\nEpD-Hu37w5k\nrba9NiqG9PI\nHkDkImVLQGc\nt69ZfcWPZFY\n2zGJ_oOECv4\nXQdxHzDK12o\njF9GE50ioFo\nKQcLnNoYMWU\n21GAl13VImg\nyBxr5ACMH5U\nSV73jXKrQ80\nyXcVX57I2JU\nMyINcc8SDd4\n6-L8WG51noY\np8t_xV4Lf0A\nLKVcX3959I0\n2fWpPZaxmM8\np92CKGAeQUY\nMIGDyLqwY7Y\nSi5R7-KZWFY\nE0wfFdGnwx0\n_DbFZkXD8WA\nBS-6KavRfww\n7xt32rq7iD8\nreQPn8oDC2c\nkHRSh7JOKxo\nTPQeRElxu2o\nme7nuXZfXVM\nskMchQx_U_k\nchlwxs2dfVA\nEimQSagV_8k\nirglCpn_Hs8\nfiziIJ6zTU8\nXRUO2E9UQro\ndKleqAHv-Zw\nroxNsu1YELE\nvSjkkQ6Bfc4\nMCtE3Y28IR0\ntTrgUKsKetY\ng0HwVyKSC_8\nLHVll_0Hmh4\n3SessG74yMk\nkNMc5CKw4G0\nEjp4AjvBuGw\n8BY36nM4_HI\nnWRelGmpmxQ\nZYOhqPzYRjs\n80htzZ3-XwA\ntJHkiRzd05M\n2nacHERVnsY\nkVXAITzqSgc\nM9rOG76v0qY\noPOqdtLP8XM\nH9TUkZR66o4\nYJhs9wqT7qE\nU_5JpJYsufQ\nSms4grRcCck\nBL9xCIeznI8\nn7W0yxKnuvs\nGNsD8EVetbU\nN_tNwz5Bxwk\noSpMQ0WtrSs\nZtE1j9UnzC4\n7U-et8qOXLs\nRczW1gIRBjY\n1MUi4ZiJUsA\nPh6hXpPbl0s\nfrqy8o30rv8\nSiJQJiUZ5Jw\ncigrbhwjTnI\n8aQFiCfxz6M\nfpnoVKmulZM\nhyXCJXsHX3A\nd7he8f2L_BE\n_lnD3Fh-kYg\n9gdhd-EerNw\n3SAElnJHcNc\nFRVB-HBxR98\nXY3urIUUizU\n4a71NDQWOMM\nBOYsnywXTu8\nc9_46Iv_GGM\nluhE1BFZN9U\nTt9v8E7Owxo\n5xl30KAt6-w\nn92XBsqbSF4\nXp_xKQZigM0\nQbRnDoXuwkQ\niTXqcn1qyCk\nRE6QfwhDMhw\n2uQeLmDx98o\noow41RrqpHE\nFnvug-nXPYg\nyJjnYpZCH8A\nwmG3O9RvEaU\nSATdGPY78z0\ng_mjMjs_eFY\nwO1s5eRplKs\nsXatQewZKRw\nMoq-NmqnZR0\nB22vWcjNR9I\nyJlwArJRkmE\ncrBqPflvzyQ\n45d4aoDJnhw\nlh3qxTgaa1Y\nAIeKpxgasMQ\nX4_8ByCyrUA\n2uSOBDMv_S0\nCSuwuvVcRHU\nLt01tXTT0Ak\n4uVC-cDpdpg\nwJJ2RLLVzcU\njRRY7zgE4K8\nWcSLuxBdYJ8\nHSH9SG55kBU\n8tteR5k1l-A\n_LAoGdcXG3Q\nnkUx3zstpbU\nJs0YTLpY9bY\n9R0If3RWk5M\n5E3TSzke-Fg\nP4PPhm_fJug\n4QL9q2mwZXI\nSJ671CSV2-M\nWd7iSbGIDqs\ngboXDP4L4b0\nJ_OsoyDByWo\nB62wGNHDYHA\n4dS7rsMy1-Y\nPK1aYqQgn-k\nXITc_tguH2o\nj638xTM36I8\nvU1_EJh6Atc\ni812ZsyyeLg\nBzqkq2LwnOQ\nmWqZWXSj-s0\ne-oTHFL5_ec\nRtv_BhYXLh8\nEghn9oMlSy0\nvY04JLQa1MQ\nqKYRwuoqETc\n1C_7b05Rlvo\np7rtU_AM1bE\npSzusQmqyxE\nXpdrOUgweIA\nFeecJ5bAGHA\nc-jOeDA-X0k\nfBB_lJ3Axqk\nSp1xdUY8R14\nw8O0iiBrIzM\ndUCUs8EtHoM\nWlrq_lGAn78\nU4DZWsXvRUA\nosfdb5BrLPI\n0en0UJ180yc\nSVGc5KwWRtM\nGiNKTYoCWG4\n4qHuiCLkYHc\n2Et6MGSeXOU\nPys1zBR5jX8\niyCfFXxNtp8\naUCNlDzsDH0\nR8_HfT2ndyg\nKI97hqN52Ik\n0-81bpcuz44\nkYQkkpRXgP4\n9lU01uvS3Nk\n4OW7CMS8PBQ\nkDFwUhn_1Ao\nwrmwJx6kYKc\nS3GG_HRE-D4\nOBPgy6HGL44\nvPs5yv77m9Y\n70_b9ZEcxp0\nY3vhSZJthJM\nTv6tdiEMGaY\n672m88mMLZ8\nyKFEKBIXPxY\neZWHAM2EG3o\nDvze9_LZmC0\nlxQj06LN31A\nhLNZCf1nuRo\nxKvmGfNhbF0\nYCuSsetzzg8\ncaypUMEoKf8\nIhDAJ1Tug4M\nBi_YR5xkRx4\n9VkmshlGEvE\nuSuoZcrKq0I\nxHunA6CYHvo\nF2Y7FnlkuCg\njUcER281BOg\nqrTBSBYpzg0\nKxlEI-kTY2I\nevo1frlMjHQ\n2_kQHIUwJMQ\nPpbNn6gMTUE\n0IP7ihJrrqw\ni3xjZomB1s0\n1p8rDhTaegs\nSyGAQwggjTw\n79HayHaaXDE\nYY-l3FmgXKw\nuPqgue3xfPI\nHhep61HLkIA\nbmJ4doOPxd8\n1VwF6VuVhkc\n_07OFEHs0iE\n-bzOzD2QShQ\npoAxbGphYmA\nO_NBFJ4pow8\nOinNCchV-xk\nnuVY83HU5Mw\ny-AJwogMrAU\nmksJyq7Z-mQ\nxAMy0g4w_ME\nF1cWO821sR4\nDHJDwY4xoEc\nYTadpFs7QAI\nQ8rhm3wBFE0\nei1tTWCrHqc\nEEVcrvlYO-w\nW9fV8EusSWE\nBQ5nPyRi6l8\nCPRh4gw_GmQ\nk1Xv18Vy-q0\nOC_NauqyoSg\ny5wsjMSXolU\nZ3yR0aNriPM\nY1IEtzj23ws\nhAxEEf5p3Bw\niiUiiK9dMPg\npN7yX45G6WA\nENjz0-Ut-nQ\niWW0Tk58kXM\nXWXmnyflZtw\nL45abB8vyEo\nmJbFV5i5ay8\nZj3ggkkj2Pg\npFm8RKAyU_Q\ntz6dNnahwCI\nDlBuWaGDP0M\nVCxGD8VH-TM\nzwQRQ6SbyMk\n89hCOgVa5LI\nyocBQlw_mCA\nPM9t2KSOfK8\nDToj3xM2b1E\niYG8WCULpNM\nhpliHwPiYYU\n_4lDASeWsFg\nrwwMn3Y6rUA\nCgBeBag4ir0\nPSofqNSuVy8\nBb2XlqE9OUg\nxEqdoVnIFug\nWI5B7jLWZUc\nYmze0Je2Tm0\nsnTaSJk0n_Y\nJ67wKhddWu4\nVEB-OoUrNuk\nmzddAYYDZkk\nCc1VTko8xJM\n231TmvIPzQQ\nEDdsxJLhp-E\n9O1-5MNRbKE\n3wJY4bd_M-w\nWGGlUlvJffY\n173I36m3rr8\nRlnrFh_APX0\nwfbqJpn8fN8\nSN7sOR35KCg\nQa8kCQQUjHM\n2ATVtP3BK64\nrthHSISkM7A\nYyZ4gGCCqss\nXPEWBEa8pqg\nteZ52l28tys\nG6i3bDGOLB8\n1IctSkdJICI\nE0aNsWbWr1s\ng3WtvzmKCQQ\n05-e-YTw4r8\nTLsRWN6G77I\naPPMHA65HIg\nJOkwDeIX1jg\nChQG9RAkBiE\nrAEv7dJC5Iw\nMfIvSh-tko8\nrzG2L4Nbm3E\nJWqaTJbxbW0\nk-WW7ULn8RA\nwwoxXiyWf7A\nraIdZiSZ970\nPbgLbYd2zYI\nijXLPE7SB3c\nK7iGuEr-u0s\nBk2dqynryeY\nd79o09D8cuo\nqbdg6o8Z11I\nlAcZxn1DeHs\nKye_x3QOSU0\nowM4is78C0o\nM9WaDhm3bE0\nijueTjJrMQ0\noUxsU2oZ27s\ngV4WFBjc01I\n9BB9JHog-mg\namGJwP2p7D8\nUwnVloaPX5Y\n8lnEGuCcmXs\nH2_tkNGWYKs\nH4dh0EmCQLg\njAR5DtTUdHM\n4XG4OPjDKJY\ni1nbM1Gg5OI\nlAAxpdk0Swo\nddwe3cp5dt0\nj1CcIP0upoU\nLagYNt1QpT4\nB3g8p7_d8r8\nrSturS8MP9o\nQuIQ_S_WH7M\npyDG32yotmk\nn7AIwvbyT5c\n2_WO15gq88k\ngcM1pFxO464\nBcRXmoGWHtQ\nkKk9o476WM8\n4ekcTVeV-1w\nOuLL5R3sb-w\nLzJEXl2ie4E\n6xNFwkWJug8\nz0-rv13DDk8\nYAjVUJ5RB3E\nhBsnb6M-lr0\nMeAMVy0ybYA\nCCF5MCx5Tes\nwirXvuRATiE\nxVWpHTafYuA\nW7xrlkbp0Hs\n3uAh-opNpDg\n-GaJPgI3jh4\n3COpxKYnjPY\nxhlW1DSEAiw\nJdeH3lqGvgY\nDO_uVdE-KtE\nfVv7WOgDC0o\nZ08HN_2m24o\nl1DMfq2zSks\nS6QH4oWys_Y\nImyqnop6grY\nm89SmMCynWM\nabM-sq8s2_E\nqJ9YL7qMG80\nCoDnI1qW8ys\n4x1dHdc5fD0\nFcFtBqXUud0\ntu0NflL0_9c\nlWopMAZt-sw\nW2OKX-PIpco\nE4D7FEZx150\nxkzNVP-tQ-0\nFjrKzRGUXWA\n2DkHvEZSBOg\nBITmqWGegUE\n9_AMztckp6k\nPi392aPIVHc\nrOoBvxdO0Ac\nDcZgodKg9OQ\nH7GwaAh6G4o\nx7mnUeDZWRI\n-xSV3MoacUw\nJhX_d4BCzhk\nArMePKKjiSw\nyUsoVGj1Ta0\nyySvdJeBcEg\nyo6AWtLxoG4\nJ181xxxzqyg\nUVj_fFGA1Vw\nwUf0QFFi2Mk\nAo-ipKN7iQE\nB3UhbtdxYak\nrARKAStGRy8\nouPU0xazha4\nfNcnudXLN2g\n2CFBewOReY8\n30xxXgTH4OE\n8x6RDkjZj8Y\nQL9sZG6f5rQ\ntxKlsWFlkcs\nwUul0bIkS6g\nxQi7ABaeCx0\nWVxz2j4_skI\nulwUkaKjgY0\nENAuQIAgXIg\nIF-3dxM0df8\n_PvuoEb4yeQ\nKSheZC9C__s\n7FOk4bCAQhc\nKw5qjJslyNU\nEzR4I2hJyxo\nRhirMa1wvPc\nmZpiKdps530\nJL9SnJbeZQw\nk6UQZv_ElZE\nZBc_xWnmHRk\n85dpTb6PRNw\nQo91sVEacq0\ntgOwPRAbRdo\nZF4nYBty_FU\nbjaJxs12l44\ncG0GDlP4oH0\nPLNOftwFMCA\n2T8HUyL7zyA\nhJYfFD_MNoY\n0NNaypyly_o\niJcH2hCMNiY\nT2WbeZlfB9U\nnNkIWyfowzA\nHcP-chk0FwY\nkcDEHkSgpuw\nNiAbqHXwclo\nqbYyYYHysqM\nR2MxWZTrgxw\n6svL10xXulQ\n15i99XcYpc8\n7ux7Dd18Rw4\nuGg9-5_0On4\nbLPMGLsf1c0\nNl0BGD-SxS0\n8r354VUktU8\ngOy7KDtN3mc\nQq8BlVT4KtY\n3VeXn9KEvSA\ndPKG3WMkMxQ\nv3aqGRzL0BY\nAdyWIiYQv7E\ndN9rfJvFHgw\nXBz6d2VPgZw\naYBTp7dH_XE\n_uw-hnKrV80\nA0gGIMaQZJs\nsQC7OzU_d18\nFwnnarFw_T8\n"
  },
  {
    "path": "data/metadata/youtube-dl-dump/2014.csv",
    "content": "yr-HmSz421c\nIKFthgUbCdY\nRitnM9n0jTY\n38mE6ba3qj8\n0wAtjDAyv4M\n8WQG1IHkv4k\nbuNwwAximcE\ndKC2CPS9AFI\nkh62SjGdI0s\nKy7rHZmk9Yw\nzm2fF6nj6W8\nin5f7RMtnoU\ngTgm44dkSCY\n13_ffd4CiG4\n-yvnWPZy1FQ\nRYlKhpi--QQ\nrbFIs5-Rn_Y\npkylHxUSxLM\nW_URoElm3Ts\ns9k-uO50300\nIGlBlA7Vr0M\nTYC_FD2YXro\nygU2QenlIvU\naK1r7tBWnro\nLEDYzJazfw0\nueR0lJzIxWo\nlO8EJQzkYxg\ner6wSXJC57U\nMbbKc8GJtFA\nsWEvLBzMpYE\nkPSk30qzgFs\n-YykCz0f3Vk\nBHZKSYLAecQ\nb1jqSRnqLMw\nymA7OFZ9lF0\nqVNAGVSKEBQ\nxGj_wbPl-6w\nPFbxA5HjwyQ\nNkaJFlr5Fhk\n-0f67QE-HP8\nx1H6pD3vNwQ\nnkQAhpLBok8\nik_WAfUpVKQ\nU0YkPnwoYyE\n4bY-bFqj97k\nJ5nmxHjPuvY\nYsdz8bIuyWY\n0MUWDGcRCOQ\na-SnsqKFHLY\nXmGKlWjQHic\nDfSToqJxCSI\nWTMcikRZcBk\nkMkxtj-mu14\nq-H62GgHjeg\nngeORuhnajc\njTHFCMuIrzQ\n2AeJ2VHssPI\nZEshWoP9if0\ntCtZfBVS1Tg\nGNdpxi9F1AA\nQ3LcGb0DGM8\nrj7e6WvyClY\nxVT46mh22iw\nhRoE2HRnpkk\nbUWnZAFfxYc\nGTqz4duPdYQ\np7bpv3zs8Dk\nypw7AA7tf-4\nhdhW0bChQwg\nYUSxYNj_kM0\nXlZUBUSKbFk\naKnvOP-1U00\ngI1_6ob3hio\nozf32hrXGiY\nkjzRZCxQ1EE\nJSmcnUcLVHA\n-ASYRiRflDM\nIl1NzkQ3rYs\nx4CEkYJNir0\n70NH2okaBY4\nGPuCrJujOkk\nYER_g7jph94\nRmhSgZ106Wg\n6MrxdKGZaWI\ndjIvmaYI9LQ\nypvzo6iiM7M\n59Ntwoot4_s\n85CcD6t5cx4\njVsXMF9sbVQ\nP6PLrI4R4x4\nvoYRf2GVXbc\n2H7XknY3PMA\nNBRHljOdrh0\nP7JKRDjM_Vk\nVRxRsbDfLaw\nBV1Nyf_u1AA\nO2VkpNsOM4o\nTvSS_-BohSc\ngX57uKMrxp4\nVY4Bo_Mcws4\nIMF8PvqFN-c\nhHibPPRQB40\n0vlBQqEc5YA\nXUwybDr5HlQ\nLCsNRcdlAkw\nh8E3sSTc11E\nvAd0QlUaIBY\nXQUKOgrir0A\ngknobwKAStE\nnC-it_V8df0\n45RmWBZsU1Y\nDBa4fJc9rE0\naIZsVuaUWB4\nMuFfh15AMLU\nAQa015gBmro\naeF3Q6eTU5k\nUcaPMGGla4o\neIo_S0aHyfI\nwNWy3YmM3Kw\naokJADOVMC0\nUqStvc107-M\nA08XpT2q4Xc\nc4ux2NclHoE\nkWrOmEtXk0k\n2aN2OU0pk-Q\nR66c0UiUCZ8\nlYxVM8oNxRM\nc-NDI-HvYd4\nmVzdHEhC8YI\n4NKk7BYl0Rk\nDoKxkx0bYRk\nk3yUlJtCkJg\nEzqRc-RLJfU\nwJJDM675Ypw\nSRlmBs7EwMk\nzGrIGZifpwg\nRDdc0-JD8Dk\nmb63Ds-XWQE\n1YrG1iLwEWk\niojZt-Ht4Nc\nkq-GLDVKqMU\nyw7tuJeWXlA\nE6gWFTv3xE8\n_pWW7Xmat6o\nLS4oNHk0tlk\nR-chvFgDLnM\nymZFsUBiKJA\nW1KhvPZmTgc\nit_WqpOBfWI\nKNO5Mhxm8G4\nbmmxeZEnsL0\nnfC8sEnM_5A\n3_dOw0UilDY\nw8txE148NNI\noIEtwZK04wM\nfO8-yVmcQCo\nI2gqWarrj-Q\nxdQyp5ewyew\ncWMP0aAueQY\nl1OgTkhFJn8\n1-rmOabireo\nqAdNnZqKGiQ\nEzocwDE3VK4\nwrO6W6vTjV0\nFPDAxknJFW8\nXUxsLiSEi9w\n71GRwoL1tdA\nITN9541Gd8Y\nAFBqbhNngJo\nLUe27-RMDX4\nFHSwbggymEU\nifDBVFHT1DU\n4vOQu8rERuo\ntUZYyuHIbJw\nQp4Vo2bMgJk\ntANIXMqv77U\nnfoIqJWYqX4\ncErG8_neSa4\nzx0PxIdo_pw\naJY0vUsHL9Y\nmD7NPkG9kwg\nMoJqPqmjxUM\nLf1ORGBLKtc\nMRTCRVf4ppc\nNwZlSjkXWnk\ncGgPJKE_jSs\nM-_XQTwadHg\ntc4zPfUtP8A\neuffalJGKn4\nH63L0VBnCDA\n4oJk7-aMiNY\nLdHfwFIuXtw\n7kikXTi4fFs\n58C7ep68GMw\nGgtGlyKIMh8\nVQnDBor2tWg\nJEcfknHqMyc\np5n3koQZVDY\nUG7lwsjxwz0\nUrj46blH8vo\nBdOG2-Gn044\nQhZ86T_nh3Y\nGTRAmbo04JA\n4gehr6BLqRU\nXRxL8KW7dbo\nmbj-OpDla5A\nEC20KdIDiEY\ntSWhP2gwhms\nHAqKJv1ndXo\n_58I2YrkKdk\nTC_3tiLJC8E\nVsx0zX06F_c\nqWlS0TrvHXE\ngUjOiNR6HWo\n7_WoelQbZyM\neCyr2_QTNVc\nv_R9dxNFKWY\n4Zb-n9MXbPE\niReLGcSZtwI\nIKrh9Q6RU8M\nyrUXPvP3Gk0\nHSJRevnIGww\nsRPTqsO_SoM\nToDDs9twuno\nl65KNW2ZGV8\n_gwHTYw2ThM\nKIqqvICYqUg\nnVpfljH55TQ\nZcjvH_shI5I\nSQj4HtDOjkg\nyjMXMAKF-Rg\n8djvfSfVPO4\nTp84-New5aA\nf7131IkiSCg\n6m5KyzSNu3s\nuIBDomdpK7Y\na3uqv0eP7Tg\nO5s3Oj2cPgc\nBN4GI97RoSw\nqLGjjHXyiOQ\n7LFtoz9sERo\nQfSjs_6MZOQ\neOcimzsviFA\n6cwTpQj9E4U\nMOEy-Da4ra8\nLqDoPnJn9vg\n0vklrunpo7c\nBPWhOdRSQ6U\nDYOqsNNCOLQ\nzgXQFwcTJsY\nctdY2KcX-lM\nkzGR27NzXKA\nujwZug46-tc\nWTaUYNnX91g\n06OkoPlUGm4\njj0765rFtxQ\nEcRdEs_Vxtk\nR4cgP1_M8ts\nbuVMAoBMl34\nIfNhqLwtuA0\nX0FxwPfYz0Q\nOs49ky9Aiqg\n0_aAMNEqylU\nb4CDHFMO1R8\nEYoO_t1M-Sg\nUkObc3-RKYg\nHO6yGAV4G0A\nTHFVJBcv7W4\nxsNboBgmN38\nv96ND45Aqmo\nDXT4GZfUONw\nqEJNox8TCOw\n7EHVvWxKKro\n1afEpntCGXk\nLs4Ua-QtHYE\nijnfTK6LgMA\nRB2mOFx7jfY\nDLf5iJ2jOZ4\nUXjZbdc79dU\nAt6Q3fUFU1o\nzi7HyTbmVe4\nqF5BMKYv94Q\nKZHIVNGrtLM\new5-ui5CvJI\nJMmp4T6mbkw\nbTuSlICST0Q\nsfVRk14aLtE\nTDCa_16CiCU\nukTcTd6wUD0\n0HjAT5lo4Ts\nkXBTh2sv4Lg\nKoxDD5gYIYk\n8_iFDOIkRFk\nBL-d6jqZ858\n8b0SHCBsDRM\nb9KIXCf4U48\nmNcyNmX9B_A\na75Ywerim8M\nvZ2jwhdnmw4\nACh4ghU9eok\ntSJ3DYrCdNk\nUeIxzCUMEsg\na0n9iFb4i70\nsZI5ebqgfaw\nwcenhpP37sg\n2V6d3f8W-oc\n4_zn64bRf6Q\nLma2LDjYf5k\nJPbkeLf4zU0\nD6_ZC6BywXs\nI44NZgYW6_4\nOC82kTAQZew\nRsnwTCPo9RI\nRrDdgbo_NaE\nE9v4TSOvOIc\nAhH1Yqw-gmA\nMnw2rmLB4_I\n4-Ml8OEXLbE\nzyIccO0lXiQ\nL0yOTA3Wq_E\nSpMvmtj35y8\nwmlNvVvfXNA\nopxtApiyARs\nRyObt_1eT8M\ncv36jml_lAE\nHFZSTBmWyd8\ncBvFsIF5GNE\n4D20x3Pfg6E\nXjjZyyzdOvs\nrGqSj0MA4eM\n_AdhEPNDxeg\nNgcEbuMsrS4\ns-te8zRj4WY\ntDVlpRBhtWQ\n26cjR330Ceo\np9BRNz08eUs\naHw-fJZ7mD8\nySpuo4tFo20\nDe-dBcPZlIM\nABW5RN51NqA\nq40Kh2-q6X0\nB4ppeyE6UyU\noJJM7GnED2E\nhTOzxqecG7o\nx-HRlq5Oldw\nlDWXlJG-FDI\nsHTtCAH7l6Y\nQB4WFBsaeus\nn2eSLdqwSYY\nGM0rZv1Lii0\nPaut4zNx-3c\nyqCFtEZRFPE\nUqnjC1YM5pk\nFgF-RJYNzzY\nFdVyibVMumc\nWx7IOoX7l8Y\nEubG9_KSoGo\nH-cxAVTmQ0I\nfJjBf7yY1P8\n5-afmnViCr4\n_qqw8iHQASs\nOOGcesOHlDs\nXF7QaSY-8lY\nTFrdPPdwY2I\n2p-FeYouCx4\n4Q8CqPioUFA\nGukkVxrTLaM\nmxgE7XEbc48\n2b3mwmOTR3s\nJuKhaVdSGms\noTTfW63fY6A\nabyFD6LO05w\nZ5Hmi5x6JA8\nTETjB2zHhAE\nog36vWGn5CU\nVyq3eN0DUU0\nDicBrlK4pEU\n4EYZfAO5ZWs\n2ceG37UZvzQ\n3I0AP-HwDnU\n8p0YBrmfLyA\nz__IAJ1Q9lk\ny1lzIInBQOs\nt4fqGbC2mQM\nd4MZPbERTFs\nFEWZFq14JiU\n2P3uaREypD4\nLs2be_G7bHc\ncP7WEGuVwig\nC7qekGisCs4\nCB-a6fmj21U\n5u5ixEyjZng\n3qp3AeWmt38\nZiGf0aDV688\nKLYlTxCTu20\nOEiioh2L3jQ\nk87Hk4JNqGY\n1QJXKLwmN14\nfEZuzz0KmN0\nLjKZiPNHRUU\nAHw_6AOK7bg\n-zXmGloh-P8\nyV0IgLYLoC0\n4SPwmO5wHjM\nDwbFUmWjd3g\n6CwHxJUF8DQ\nKCbte6Zhaqc\nzRYmoB7ayDU\nspI-9R3B6zk\nd7ye5zFyuso\ncniwN1YsUW8\nCmPZjdlK3Qw\n7uvW1U9UXKQ\nUSLznFhxNF4\nGvRD2YqBi74\nCVs-LAC1zrQ\nLcWRSHD3cAE\nrZAnSJl6VKA\nay1pxLNtdxE\nSPSP9BHo1_c\nV07Z_XYMnmM\nGcSfbaac9eg\nBjJxoKtYj_w\noKWpZTQisew\n_TkhbfmrmD0\nL-3Kx6xAUTM\noQotF_oLWTU\n7A8pZX7GjR4\n9B7Y2tMDlEA\nAwUpqAQNZCY\nL3eM2_0KE2A\nRVM5hFMx2Kk\nvT3kQdSXrMw\ncr-rgM1-wXs\na_nd6odxaHI\nsPZ2Ukl7EPU\n-TuZo-mugDw\n-iM3hKlLS5E\nxRT4EyI63jw\nlyrv1rNWg0o\nYbABtps7aY0\nTVMg2iM-XQg\nl3vcMU002rk\n7y8pbljhMQs\niK6cDwd3yH4\nGhisL6dCqV8\nyNkcLZ0BPuc\nmokXxWsIsWg\nF_3zkj4QVvA\n9d8VhjIG6No\nJx401J_oG2I\nM5IO69jDb2M\nAEhitq9yTss\nEPCFcnp0R3M\nuztZUqKrHVo\naJHRyOrRnQk\noY0IQEEQ35g\nLZhbH4pHMQ8\nqGf3--y_rcQ\n4SD245xSSVk\nCuAXqRNpFdo\nMmcr5WLNtZA\nD-QqctD6nCw\nd5MJBYofzhs\nqYxJ5YvIJX4\n_gb6yX-Uiqk\nfpqwsexDM0I\n8X26PR7abAU\n_P6ywXKM8kc\nrlXL9FlYW8k\net7jz9CSPqo\nVXobEyKCykQ\nrL1VrbSK0IA\n43DN-b_k4ZU\ntdMQZ0g9ykE\na0dkF8CZxks\nufF5p8VBsVk\nqb4e_GJzmrI\nS-xuQp2fW7I\nZGcMRCaBh_s\nIo8nlxyMTd8\nxwN0ZIe-cG8\nbjqjgoiV6BQ\njE5w-Jl5BSE\nb3lLWO2d7b0\n5RMx6st2-js\nElyptgRxg0M\nHbWxE7l4F3g\nSJZ_LT4GwQE\nvtxo451I_Qk\n2myyH9c7mYM\nXvs1TPM9g2s\nDogM3vTZsuo\nKmlUAuGhy24\ncxFXMll7PWI\n5D7JRwROZ0E\nYI02lc3SxXs\neCu_yXPkwGc\nCQlI4zJnxho\n5-MjWWLPdqE\nnEFAuOF_8YQ\njgOMHLuBup4\nm6eVFDJA9EM\npyvthgZdQhc\n6krgl6GpIbM\nBYh-iVr55EA\n5tMAe05kTXo\nRZ9Od4LBqDg\nHrK6dbGxq-E\nS85RSn20wJ0\n9cR2Rh00ndA\nNKaENwBlGFQ\n59ZImWWRR50\nOS8NUnMpllc\n5-Al98JQSUM\nFkoI5jde2es\n-PAIOy41SjQ\nVkrb_0DiD4E\nXnEKbUbww9s\nqX0rYjUdFik\nh1q5X5asH7c\nC7Y3b732UVw\nXX8y_mQIewU\nYBmz0YGT2kI\nve1Brtly9Y4\npbd1pcdHRVE\nWTtAAYgzMjo\nc6TNgqIAYyE\nUx4y_2RNi_E\nHUcO7rqSLEw\nBt_VjoF2lGo\nGWrQ2H3LhI4\nocVeenCXGaM\nQW1kAlnQLd4\n8PDbRr_7bI8\nwbrTwrgyOrg\nYh7Qz4fiKxw\nOkrJTqGkSWI\n-ayGBx5Igyo\nclslrqHA26U\neApCe2z67Gk\nUlT2oHT2RGY\n26mzWqdJnis\ndv_26E-a_mA\nd5bK1xSr2dY\nuNqwzdw5uKE\nyK3DX2F0JWQ\n3mN85wFz_Vk\nO2U0qOzibf4\nSG7voVeJRC0\nOLkKMHRUB9A\niVojYtEpstY\nn39lwOfvb2E\nFdMEJqe55dc\nlqbzUCMEK0o\np4t0OpJJ0MI\n5Gmliz8GsG4\nWlwLa7Jh3HY\nhML3kvOUVZU\n4ln7gkWQXys\ncQHAH3t5oJI\nYwzGw_SMwAc\n9NKu_Kyi1qY\nHM1U0PSGMn0\nCkNjOs-7Sv8\nCkW8xFVXPqI\nB5D_aDaMqkk\n7rTb-n96yS8\nhnXqavr1ZMQ\nWBuXu-20LZs\nQ92raMBaQ4o\nrkD3FLsiUiU\nUtS2awRAf5E\n7_AiHZa026w\nrft59wPnoqk\nlj66AQ2uzug\nyYCW5Eo72VU\nbuOVuDwsbOM\n8FX2FZ0fFlo\nCHV9FhjbFLQ\nsytZ2amRbpk\nA6ZOCb2gaqs\nSIwi5PRNTfg\nPwuTr5z4Bec\nQRACf_ehgis\nKhAtVQuAjVc\n26ISV0QFWPU\n2tcG49k5vdw\nBXa-BfF9qGc\nRSUmB80GqDM\n_YYmfM2TfUA\njK4lxjvrhHs\nfxriLTLhyyY\npjX20gL-rnc\nTc7H9s4PdSI\n4NLUpuo3HGo\nLxfe0cKOx3g\ng6mF_yokyiA\nsnqs566G_Zg\nbRilciIycJQ\n3rFMyjGI4cg\nbuH0CUEx-_Q\nqyMVXU7qMGw\n6HXgPGZcXe4\niiMNb99KaYk\n5ijEAMP_zW4\neXHdqulNiBs\nM96f_K13joo\nJDxlbYa_THM\nFpKhobkTOyY\ncV0Db20loyg\nVjdgqT_xtEo\n2WGvnOdTfGw\nY-YsM2a_N5Y\nnuUuXO8D9mo\nFjl9b_vVVnk\nqHD4H60rCfA\niaIYk3DZKwE\nSeqT3GyDb2k\n4L62b92Prk0\n34_4OMd4I2I\n3sr3yQ4mGbs\nrZsLiY_Yyhk\ncDI9o67o7bo\nOrwz44-_XSg\n3iZIOZrzbYo\n7X47UIYChis\nNzzSr5StuCE\nyzSfVpQ-1ns\n0uYmyOuu5xs\noMvMqeThVPk\nEYO__x8qn2w\nCrFsSJPnHj4\n7qfgWGJpbgA\nvNgB9PxOAdI\nm5Qn-tIKwD8\nRNMZD_WiAvU\nHg_aGQjwjmo\nkSKnJn8gksc\nawHrfxqEofc\nFqJJfBeuxUE\nou4WG7HhFZM\nzWzRkf2uwQk\nuVNCyp4Verc\n5WnobKuNaO4\n1NfrTfIPl9Q\nNEcaoimX3qY\nwEvrmiK_WlY\nPdmE-Ga0f5s\nM3j9drozqlM\n6Cz2mIx0y5k\nUl0qToCSdfQ\njvAZ0bjChvk\nUMjzEWOWXk0\n2JHbw-BXN5s\n3dzw4t_dB5M\nckremwNAupg\nU1usNHIi-L8\nQVw-cRLFWOI\ni1hu0ErzPc8\nqUwfcycK5X0\nKSOhzWTWuxA\nUPnwEYjEMP8\nh6nVYkTWTZw\n1nIPSxCzfVY\nr8759Q-oR3E\n0E4d_pXA7dI\nZ97maI23aNg\nvVzx25uDVaM\nbzRIeXSIS_w\nymWU7EuLXNc\nYGenu4ZFnmQ\nMIxtdrML0rE\no3sj7nGzC64\nAuF1AN-ugM0\nDYfo3nt-O_U\nr3Owzt1HZkY\n2N73a3SRqyE\nsjPnuqcrL70\njnuQMlB2uyw\ngacB8xCQ09s\nBaccIrZHkno\ndqbddxpASRk\ntojv7SZkBOc\nZjC0F-xFL5s\nSYM7Js4_I_4\n0tyZ_m6t2Qs\n96T06Ema-Fc\nGtg2d74VHH4\nCdMDIBgp638\ny1O2kicdfzo\nktXm7CRXbsE\nQUVXO7h3-mQ\nns_HTpxc-g4\nO3bTMw3bb5o\nl6e1M2d4BJ0\nTzAnOnVKwzk\nlQbw0_5O8CQ\nLyszyKhpc88\n1fNnMtn7BiU\nzGa7K2HO1-Y\necmRksfy--I\n3D2hC2C_Wpw\nhwu3LxjW22o\nweqGiMyn8AU\ntCDZOw9BoPU\ntjSf6v-dztQ\nIQ4Yt16z2PY\nPWeRWbuEN7Q\n-w4bcJF68u8\nz4QNCQD7LvU\nwaOQ8ECkEcQ\ncuMmCpE7-pg\nuki4lrLzRaU\nWQnv22Qnp8s\nBlz6dosZ5oc\n8kmCFBwTmGY\n-oRm-YxsEH8\nsEWuVNk2TKA\nTCrV8NUSTsc\nC8l7cD_YI4Y\nCQtbqB7NcXc\nCgHWwYQ3XSg\nTAkyNyQBnyo\nvAalnLmiZrc\nYeNQ5WEKggc\n_KpfRDVjsKI\n1ISntRHuJ4Y\nw9SWbpW5bNo\neF77Id3wbZQ\nJZsF7-7VBYs\nNCh2VGy8AR0\nBbYPFSGnPZs\nq3LxjwTz-b8\nhq-jlSdx5Ck\ntQlujXWP-5c\nJpdTx3k0VoQ\nhm9ZzMSoPB4\nVAh7ZGHEp-c\nhSAx87qd-fs\nNwqIdPSNr6E\noyYuYNnSq9E\nD0rFBU7pVL4\nuKZQEDh_KAA\n_Z-tCU-sULA\nxd7SESj-nfA\nafnlOjES53Y\n3izxrCNCbUQ\nX6UG7H2dcos\ngjliVll3Uyw\nIC2crLlclNA\nAO_944kf0RA\nbwTe_vZ_2dg\nx1dA_SM1vxE\n_Fw6TuACCKY\nR4ODWXEmvKQ\nalvAo3qQRQE\nBUAUwc7g_gY\n06gTnB_5-Tg\nigD13c0l8Sc\nbmIx71yf944\nSiLFLIp8I14\nkjx9LAJ6Wu4\n5-kyVZ5swXE\ncKw1b2-4aeU\nG4Hwsz1sQmc\nDH6S0wKKGBM\nkthFUFBwbZg\nwAadouGkwMQ\nBp9AClR8qCY\ntDpyGID-qHI\n7zDmlkn1gbQ\nLz-ihW8RXSM\nLU1A0sHWYQg\ngN2ZP-q_qpc\nXw2cUrd_Zt0\nO7LsLRMEg1Y\nqDYuDtyvVVQ\nCbijjb5aLYo\nRgofngIgfsY\nzKWgTSNMESI\nRAG1b0H8nv4\nzn9pjQIMQVQ\nsDB0bxWhS4A\ni1jS0AMWtgg\nKK2MOKkkp4M\ns_zget0Z7Xc\nfU3enCcXY80\nlPJzoxKtSxY\n8svIExZz6Dw\ngtHCnru414Q\niWFpqo0_43o\nAIHlnQOkZiU\nRnWxwJxpDig\nFSbcZ85iPvU\nCBP-t2AJ8M8\nks2GU3XYXvM\nvMrWJki0r8g\nEdDMvB9Y20o\nGUclZ3JhJoM\ndPfKQTaEcEA\nfhGy66B0CIU\nNJz68D8NcE0\n6GC872xb5dI\nIBRvIQdd6UE\nfjnGwAftnDE\nUwslgPscal8\nEVPxub5VJMg\nrKjMBYlak2M\nV1dPrmENIVg\nccyTJYkiGqE\nWOLfIBsXq4s\npwlgVnituhw\nkNOz8Bcb9v0\nNx0Qte8Wfgg\nhpfufHZI0yQ\nQaKCmtbKf8g\ndEfBtVYzWks\nW1N-a0SDw0k\n8ExIPKUEZ-4\nA7iVMwpaYmk\nedDfsrTAI1k\nk4WEx4-yh-g\nf3mAVsy7WbM\njSbmgZG-0Ng\npoQL9Yw2kNI\nOywTdKpHE8M\nNWO-iP_Sbtk\najj5MxJEJ1Q\nUniUFSan3Bg\nIwC3OUA8_s0\nH3h2opMD6rM\nZsL0rDZPGb8\nqsdgNxuhPgc\nhQogMjsahWU\nah-M2AYI4Ac\nzQHhbhtpJ3M\nhrZxBMTQO0c\nfSOh-vTjWk4\nnZy7fW9IO0s\nzCfnEpand6k\nXAORGJKfEcU\ny4nFzow4tLQ\n7iWEk7k_kio\ngm2PdV3UPfc\nhdt5QAIC81Q\n8MnF5ok8llg\nmb2bzOdITdU\n1eQh2-2W_1Q\nyQAICCf1oug\nZCYbGGfwbfk\nQslzL-DhXDY\n8bAvbwlCsHU\nQgYPzXlF1xM\nIyT1ogi3fE0\n1US29KtfPrQ\nobbz_0P1wVs\niGAwKHHaRAA\nG92KKZEiWy8\nGJgKIC581V0\nbXq9Pa9Txg8\nWSoMlpQ6yz8\npoZubOWaras\nzKSDHbVKY7Q\nIX3hYYzIyoY\ngYTKHHhPk08\nJJ0PocoUWVI\nTdOMp1LuvJg\nAdGVl3AP7fw\nMjC0kVIUGYU\nY4yQoJ-LBVE\nnODBN75vrH0\nCpxs390x5N4\nzvry_GtQIeU\nIRMNacEVuT4\nJnXCZbZipJg\n7fOYHqR2Gyo\nuq1JHKlUtOU\nuF_721BvdJE\ngL3mN-UpSyQ\noaqTzvd4aq8\nzE0vrRRohs0\nydYaph8BQkE\naBgs1Kxh9nM\nBahgFrLFgpk\nJah71XURbIg\n4KX9Ojp-yic\nyZLkEOM1CQ0\npKdszbbvQGc\n2yXz1r5kn_k\nu8TwN5M1fEY\nwRbKDoyN5oc\nlVg2pm0YdQ0\ni5mSHPKEbas\n3jBfvv_lBEU\nWDq967Y_e3U\ngMBkkaB0pp0\n7jO1tzRBFFw\nhbki4pbNi10\ntfsPfimgjFU\nlaWUdsC-3Pk\nQCTgWRNnfZM\njXqcrXqphIo\n3IAUIQJXHUM\nFPyap6DbfHw\n92h5_0bE8Nk\ngfF5C7j-2jk\nGBGdp2p0T30\n_OzammfDblc\ntvaROfCgPPE\n6J4faUNOGuI\npu0pYw6lG_c\ngUccqktilDU\nmjPh_oYqKPM\nA8PVoyIiqrw\nYRi3-AbHXbU\n55gq831fmzE\nqw34BbyVK7c\n9uA8c4XGVxk\nU0FBVju7fVI\nOhH4bYnAdzk\nWh4U2TtNn-g\n8xsYjrLw-Qk\nVIVMDMDxnQY\noCq7TUmVmt8\n3CeKpU2WaBQ\nXv_qHFUItVo\niZx1W6cHw-g\ne1bMBM_rgwQ\njuw328OfWnM\nybbS5_qlkaQ\nhn09SKCZgtI\ncWuFfrettMY\nTlB_1W-qc14\neTVHMQb2OyU\nBXloUAxs2wI\nDLFB0sj-xkc\nLva7xOJRRCA\nfrgfTkjkcxo\ncCoD237oWtg\n9XVy6vDxQDk\nYfUodLRuU-A\nGeneo4_3VbE\ncLc_O-kQOoc\nFvsbTxZZgxM\nn5PnSNCFBYs\nLFc-p5H9AJI\nMRCXvZjeOx8\nHB7ienz0_IA\nPSNqibKHIys\nNrXQSp7Uz0A\nyThTYeRr5BM\nh0z4HetQWME\nOWXlfOnU6tc\nEI_QlYraNl8\nlmDII7sMIF8\n1HfdZj-RzI0\nrsmsMeT8EYs\nm8oSm88EIhM\n0p1OYPs14T4\nAy4MOACH9tQ\n2F64BSpClag\ntx8GFMF8Pd8\njthkBksMaXY\n2wctAnLU_cE\nvsSTRzIow2c\nTfeZeRIdyNM\nkBgO6ctmq8M\nHFUCwBt4pK0\n7kAoU7bwDFM\nIziNmIErmWw\nyga9OU5yuKE\nSHvBT5RXeeA\nJVfMbJjbIpw\nTbgusehY_sQ\nrFPCkGmuUO4\nyFX-95l18ng\nLkLvZZiL3Vo\nZC2SlM2Eqa4\nBoi5obDmX-g\nQpoiFakmREc\nyJUGxCV5OiQ\nurN3pAtiXdg\ntPJ_rBWLOxA\n-WBeglzkZNQ\nF4d_PYyHSOM\nFaH-7N7iRjI\nGeqbeBDtYkE\njTFSVXpq1Fg\niImMlbzg5Qc\ny3wTKua41bk\nfXcIZFeYivQ\nopyCsftx7D0\nettu4zJOh3M\nVn5ilm1jMgA\nmXwYp2IwFFw\nuuAGxjrG_gs\nF5U5PKWgHQo\n3daIUo8UtM4\nv75c0QugkBI\nM09CkmDfntY\n4nGA9zBslBg\ncR7GV9Fdkuk\ndZushQttfzY\nQU2qTjAFWKQ\nBHx0kYdl9Nw\ntlhxBAhYnS8\nJQAyLEhEoQw\nQTHImytcib0\neqQtfjs7YGg\n4xBY09_9H6g\n5XWG3eNY298\nAV5hAxICHsc\ntteCp4cbON4\nNdDOmuWz92I\nZIjuiq25Lzk\n90li7tw4CCM\n5rKn9BNhQ0Y\nAGCDh4gBj8U\nRAapNGRfaBI\n8_phNWJu9BY\ndkcsqI6hZz8\nTArcc_WduhE\nWy3IoFyvWOs\n_pWx7N8gSoY\nrpdnpip1X4A\nrEAbZTpV47E\nvKEWdfB8yo8\n4OcM23Hbs5U\ndcKdr89ngtI\nmW3KEJNsT2Y\n1L-4-XQYxrs\nY6uj9ZZl2LI\n6E26ye_66xE\nOCV4kaP_0-k\npeRHtqEZMLk\nb1s-ewwrpQY\nJMpTeDvOnLA\nVSiiYMgJ3h8\nBFkcX4Qi11g\nVBgDKUVxAyI\n-cvGAF7LbqE\nYKce1fkBRrc\n5oe8grtUxI8\na4DTqmln40c\nCkem1kbmJdQ\nBR2Bcczm9EI\nmGpalRiltP8\nAUqVNqZdqRw\ncqZVc6GtV8A\njW9D4lY0TUU\nUs7XgnZ5OHE\n-scWJO2h1ak\nynZqnGTUHcM\n8TlVDn0j98E\nbluBJ-eeBBs\nKXo_Enhm-xM\ngQRANiw4JLw\nBzd07cbr3y8\ni0KnbzRHwaM\nGVuaTdn9TnY\nLtkstS3KlIA\nHKNo8yzXxyM\nr6dLxmPng8o\ntM4qhFW0FPA\nObAOGLArxGA\nCwBH6g7UEI4\nc3zRfKmcqv8\nA6zqLx8tii4\nP9fOKOsEX8A\n7t7gG3XVqW0\n847dUNGFwsM\n2G-BNvZvz8I\nCU0lA1M1_3I\nT7uncpUQ4GE\n0UrClwjpNA8\nE9yuGEux_OI\nqPbOVPtdaZs\n5hete-GzD9I\ntJLdaKUBGzo\nVKcpoyC6RMA\neuvUARojiiI\nS76IuL89zVY\nsPgl1DyIn3U\n_2EQFo-vIH0\nVtpo8d2mME0\nTsGOIi6JI1c\nv5qwMeiEF0M\nvTy2bx3jmrs\nlVMviKEztGw\n01ovMSvDohw\nBZVmJdnVVBw\nE_UyAj2V4pI\nAridlIyM9ak\ns9IqypZYH6A\nr1NHFfwmJZQ\nDLyLE2LUpOo\nyUXdDmn9wP4\nJIfu8g9EUzo\nHFbgT-GSYhk\ng_tQ__pEoPs\nRxogsPx7JwQ\nmHA7T9yOI3A\nLWRuMnDhCy4\n7uO7VSK2XMo\n2gKXgAzFV8Q\nS0_2LuMWicY\nbvuDpEE2MQM\nB8rq--5MbZ8\n1AZuIPGAQ_s\n_epn5foR_Ts\nV-PNT54Z2ig\naIekhk4NDA4\n7JICPsjLMis\nkGXKWSmXrEk\noISBveQNkzA\n-R2UHh9T0ck\ngbPolHxofuo\ngaoMc6MgvNA\nTtWqejfxiVU\nmtuBqolFOVs\nKAal6-tvckw\nWCbXSTBBueU\nmgr2tLYYha4\nEd5xIjGdqb4\nv98Rh9qzmPs\nG9VI6SExDms\n7ikLl_nUM2A\nZ92aHy9-fkk\nvVTASz4W2hA\ndzO8DzLZAuU\nXrvB53IDIqM\nQCXgvx0vPZk\nL4x1S9WYV9k\n7nHXSTzcVX4\nm4MdMCS5EeE\nJ4Mq0xr4gwU\nxcYzjbIVlX8\n8GtyX55FtTs\nanQHZRrZHYc\ngMIvHGdpQpE\nm0gUcNGsGYU\nF63pia00pLM\n4SCJoMT1FCY\nx5bONeuC6BY\naAg3LPuwfJM\nxoRXgE6j9po\nQhYydmeQ2Yw\nwdrhl_I3-E8\nk0XGlpR6iLc\n0p1fLn6_ExE\njr8BKtgMJA0\nPioVmXuOv7c\nz-0rKpuvnT4\nTZjB7MW9Q-E\n1_7FYr4JsF0\nLEQNosAHrD4\nAkr33uOKP8M\nkO0kWTR_7tQ\nQ5o7eYFRp_U\nTmO1R-GqD50\nrU8cUBCZn9c\nYlAmk5w3qZw\ns4KQbOrnRYs\nDwyqcEjMMI8\n9dnvta78Oc8\nF8RkAzAX2-g\nXr4ZDbix55Q\n2S8FhT1CLOQ\nXbuSTq9TZSI\nVtnxXJy01ag\n0WY4XiwS8Lc\nb_W5rtfzadQ\nmTNkmMUcQfc\n64Kac5hYLBM\nBcCzxUMcrVc\nq14F8WFr7EY\nk3sfGEvPoHs\naMwqijj857s\nnCLxHi2oZVM\n8G84xAalZiY\neIvl2bRW9S8\nMlv16s4DxwI\n3SYMh5owQcA\np2fHtpp_umI\n2RA-7QUYrHA\n48kV7uKAzEU\nGllksI139DM\n-nboVp_nTkg\ncUEc9ZF3G3M\nEkRzpc98bwc\nSQGwcLUuQUs\nlJuxU-aVeT4\newEreSjPyC4\nptBGusJjkTU\nC1zseVrJQLk\n3rrfqXl52tc\n9LpOzLU5k70\nadFRKm9ezw4\n2CM_ZbYvMDI\nDVAIrYCyB1w\n944Xo94Owx4\n6l60PJOMu3U\nWqyvGyBJbcQ\nIANjTUtZimk\npDEJr2Sqhxc\nGU0BYEZb-Xo\nfgp77jbQkW0\nvli6rJX8Xac\nw2T2xsIYH0I\nrJ9zBV97d5M\n3zW1STojfq4\nE6W4v8DYh4c\nr1UKhlSdV-M\niBptW_7wlwQ\nQsveFtQaP7c\nMNBd97oTtq8\nVjo0hn0kAvY\nJd86VeZU89A\nGVjV1SKLJ9E\nZVHIsLK07ak\nwZAxWIJZmo4\n04tTXJeE8Gg\noYDde0u4TT4\nhU0v5lzJzXo\ntp_djeJB9sQ\nIc5tk6Afu0g\n6bECCbRJ_UM\nxhhfBsq7qao\nykdrEYrEaZE\nxXTuhmtvXNg\nDkIr_I_E1dE\nQ3gK7Oe5gbM\n9UtRH9enIUE\nTLNhcMerK-U\ndBal-Rb366c\nXI12czsGYRc\nnDKhoXEpIq8\nE90s7ZR3HNw\naWLRULhIyCE\niYetsX9JdIU\nvf6PZfksmfg\nD1hNiK3YZ2A\nDesiCKdiCDo\nd9K2p6NtV40\nf08pzusjWTQ\nBBdShysGs4Y\neSeYw5yaU9A\nYJLeJG_bG1M\n9oRspg2ktcI\nry88dGpJKZk\nyPHYjeHk1YM\nfGiaJDWSWKE\nXLk_91MKjgs\nIhTgiNhfF7k\npjmRcGHqKZ0\n0k8XW2V2dCg\n2A60QcsJtlE\nqFOp7gSiC0I\naJoVRUNmqIY\nJIHGn-BwZMM\ndzkjnPSbxJw\nBNxai8Y9IXg\nAH9_BGpsNCo\njU6nB-uJh68\nbXzp-98u468\njF78Fs72X4Q\nRn2__xGApzQ\nxGGRJg-EzoI\nCr-WWckkejQ\nh3QK9udRbWg\nutJWIjtBBvo\n9_ouUNFC5AI\n371S-YWcKFU\nphWjHc6hsRo\nvqgb0X4uuEw\nAQaOCIrb9Fs\nX_KqKO48vwY\nbXtvpRR4VbA\ne0d5svC0xQU\n4ot1Y-WYGCU\nky1semsHhAY\nDX8o_ql6f-E\nGBDUy8au-_E\nd_t77ai5GEk\n_zxlffOr1GA\nNgSS_lMllOw\nhGuXSd2s0jI\n1VzqryDpBfM\nEgsFR3Y5XB4\nQCrKGjDt00c\nZ-Hyq9A4vXo\nmvWdOSJ7l2c\nv14aCycvoYI\nqDAFxENuoCU\nt9do_YtNsnM\n3pdDB7-UcKM\ngEw3FHiTb1Y\nXFoGxUA8btQ\nBgWOqRD9RPs\nEgIkHYVwNrM\n0Z9Pl7oF9dI\nEWvPNbC9KfQ\ncYlCe0SYmWI\nyDgZEL9-ITE\nYDuDd4tmZps\n_33snCsG6nY\nVmwM9EXyczw\nWriOEr0A1tQ\n8Ad8rMLFcRo\nDAlyvQ1hNag\nvs6V8EILM0M\n_nEWjcGHLJk\nTmNPJTt2ZsE\nLLrfSeyGCls\nfhsngAtICiY\nV5U2yhrsXv8\nVB9pptEqFl4\nlu3fmlUJQsE\n2G4Vfuk1dJM\nbFWMtZmjwR4\nT0StyKPJrNY\n8QLB_CGDDPY\nViXH47OcqYA\nBGWe0FvWW54\nbVAiU6Jp4FI\nPFajeb2k24U\nWJOL4xoamoQ\nekwnp5L8shM\nTMspI78Dptg\ntgiPVB4iLMQ\ncKQf7jAt6xM\nEmYyxwO2IJI\nFVoOLRhnkYE\nTVtvBoELA-g\n5ZjdYG61Wpc\n65yzqqmXs-Q\nk1WKpdhcJSo\nDtgKqQkglyY\nTdPu6sQ9l4g\nBLz2rixwPpA\nzH8ZeRDlyb4\nclTG6sYtJig\nWofqydeWMJI\nnEJKLKKO0uY\nIiMacKBYPZg\nIIGAL77OuM0\nt_NZNgm66xI\n9lORsaux9Lo\nZ7VT-r3RB-4\nlTWY11J9Z3o\nal5NvjTtyTI\nn0Fz-ACCMHk\n7pk5PLxQXJI\nxwMMpJ9EWmE\nOEw-cBg0lJY\n3agyeKATELQ\nstoxd02ubG4\nR7f2TkxM_rk\n6cjNvLAvIFs\nh8c0Q6aqZG8\nZqZZftydH0I\nOL0I-Tf0QRU\nWrQdlQo-E5Q\nIn9QzIAgiFE\nTv08VahBEBg\nqyj1tT-vqSQ\nhc51ExPQJcQ\n-tXr3ask1fo\nhsIdl6x2Lck\n7k9bFzgXeXE\nkFa1DI_4vEs\nAiqgMdj316M\nFyd8tAhnKig\nmt0zR2uOAB8\n1OUMXpkRHNA\nTMvi9NJlv_s\nG2SpqqxJiig\nCAYHD5mAsfo\nuMug9lL1Sgg\nFsWEzJJlyi0\neh4jLrZ2IK4\ntjJPFWAtG4I\nw1iNrckWufI\n7GDnbK8lTYg\nfNeCsZY7I9o\ncpdt1EljZp0\nBNWF_QsuetA\nkM781iUqdrI\nvMyTIoLhoZY\nDsGsRazwHNc\nuVXQWXpXmvc\nM7Bao8cJqWw\nRqAmUMayBk4\nxZw3A072F30\nLGRbJ610dkc\nmwa7-cCuwCI\n-UuYTHwZbOQ\nR5YZoDFeQlM\nACdEiMqOVvs\n3UjujuY8fbU\nPNRScegrA_E\nKWWQP82Gqt8\nnIAzIbEBdeM\npVzqfF-qwlY\nfqteEi-ypuQ\nb3uEOvtuMyc\nW91ITNEiEF4\nVYZmHG6_7Rg\nbMemNwITgjA\nVFPAH3uEo_A\nI3GuNWUhXDY\nZreKuv4qWY8\nRiOhh4AG0rc\nI2ci4vKm_cI\nzTV295EGtOk\nAHV2k4t593E\n4VFhBMwArqs\ngif34AkAFIg\nIQQDJahY-Eg\n_INsYrEpEFo\nQoSE9w3o068\nJLWaJTCL_V4\nKvVR17L6j0E\n3FG9eGmAPeY\n8xBrQp4oZs0\nsdea5Iq5D_U\nEMta7CcNgGs\n_ZHytX1097U\no8A2gIt799I\ntVBVeXfbo6k\njmFpZsBB53s\nKcLVm5KkTjk\nS3dCv5aTB2c\nlRzsGDSofxo\nMmKjw9UGi78\ntp-eANZcnVQ\nYhYn-b84MvE\n_3wnaxan4qw\nyE0aTqijR3o\nS9Wi3A3skb0\n8DYT3ysI2UY\nwavVceonMJg\nemda_fIsz2o\nJEjsNsrZuHI\nBUKTDsI9Rbc\nQ1f_3XxcqKc\nmCu3uKNGuZw\nAB7mSGjpn8c\n2JA3UQCYkQs\nrHwc3Jc9rD8\nBRV1CDa5_Z4\n_dm0Oj_fF14\nW2o3KcKAldE\nu0wNMcfOIXM\ntCjohxqJ-0c\nlVsH8dttw4I\nfv34SxLog3o\nN204ncRytIE\nLVYMePfXin8\nPB5bvrhHFIw\nCmKzzu5ELHU\nCLAepDJtUJU\nq6LqVs7P-pI\n5XuaulOD0ZE\nalmVKV4ywQQ\nLI0o8Nhig1Q\n_NhQKmjXz7c\nic_89aGltSg\nqPVAxNvS1YQ\nGUoa3MFLEO8\nxcgOzHorYag\n_1A33xDs0lI\nvMwPmm9UmtI\nXYVKWFL9irA\noJuU7gvcwdQ\n2nhZzcQBkp0\nqDkEnNVpn0g\nbc6k19YKBN4\nsx_oR6WXO0I\n_JtPO8an9xY\nggEPIKZuPn4\nMXM6Hz_ItMw\nL4TIQxyJEcs\nK5xM1SxgD6M\nmKQYPa9Onac\nl063S2tqZSg\n6p6tevRcEXY\nr9ma_9tM48k\nRotJK471KDg\nplGWKSHrzCk\n4pUPYVW5GWI\nLWnHl2_xh4M\nfgDsOV1YKpE\nOvp4lQhkIGY\nQJOXvLGYEwo\n8NSR7Pod8O8\ntfqqS90iYKY\nr9w5dIeVamA\ndAxijzivjlc\nyIGiGtjHUS0\n5AAni-jpFaU\nf48wH7l3c5I\nLzXKQvdRZQU\n09MjH5hbF5Y\nzCu2iserep4\nlLepw8cs6eQ\nKGf_Z5s891U\nHzv74uI9Cr4\nC_L23E0FwCs\nViRs8qaB5YQ\nyfYKkvq5dow\nBI5u7jAxIjo\n1q15xQhI6Lg\nAiaIf4aJgfE\nChy1Cu5WOgc\npnzYOL2o_To\n8ypUiGzOsOs\n9WpVeYgwugo\n7m3Mv9f_P1U\nOCDouPR9v9E\nfHiIfSLjJE4\n_83-1qzRNpo\nZM3mRir3-LE\nO7wmAaT-TBk\n8T2dOyo64Pk\nQK1Xnd7cPJw\nay13eiuH54U\n1YXJuW9MNGc\n5QFPjo1DGE8\n0Qkk8a1IVxQ\nsy7Lx7jY2SU\nLkimMjwfjrQ\nP9clz3jnMVo\nkKHr9gSW7HM\nPXn6o5uTfEU\nXVePWDEck4w\n9NErcOfza10\nf6DDYCf80hw\nEUC3JOXJBYw\nl9k9_K8Tea0\nCYP38A-nwLY\n_ysVoV3x5Zo\n7NReUd2_0u0\nSt16P31BURU\ngOJJm_cSRds\nR6-LDKl3FOs\nzT639dQIhck\nyDo7fA8sAlM\nmx15l4L4Zlk\nc--eNhRG5B4\n_gOQq1ygJgY\nsh7lb9j3k5s\n73BHmDv4qYc\nRf7NrtrHs1U\nAFXFoDiTtmA\njWt7wiLImmU\nMeQCLsUrCXo\niFpB2_WOk0Q\n8gGPt8Eg5lw\nVKE_B4jMF5Q\nUneHDzMhbbw\naKUcMTQgl5E\n-QWL-FwX4t4\nFGwRe_5L1WM\n1ve57l3c19g\nX6frLQWOSlQ\nRq4ucbgrV6U\nLvtFcK8BaY8\nXVNNkjY2YDQ\npdYYAu24yVQ\n8XTt2uGxh9E\nHieAi6H3Gxs\nv8KA0GieSoE\nP2p410SndXM\nF7bAUwj2HEs\nSLgV3ynglzg\nT8X4r5X9c-Y\nhYNYTcpIDSs\nO66m3X5mYpU\nji9C_R6HLvg\nwUPc7frUlD8\nk7WkN_gPNaM\n-n3qpOM31Pc\nAXgHBzoymaQ\nnuVzF_r0kHQ\niLgMFwStTHc\nlVmwqKY9BX0\n8LbCb592C0g\n2oWgJ75kqxg\nV53g8B7Ljqg\nLYbU_99u22o\ngd2-0TMNqZw\nF4-pp1JORFc\nxU61FGJ5aHA\n0Q4cKXYFIxU\nvKsWNzKjVEk\neQBlcP9ENk8\n3SIsMAk_Yhw\nMxlTo0BbQlE\n4GraEwTsqFs\ncb4dxubPYEs\nAbRlLFpC34s\nSU6tW2cZQeI\nPBAzBWYoR9U\nguK3fiVFU98\nUOYi4NzxlhE\nLtFyP0qy9XU\n7LBM8BX4UfU\ne6WyN4z0VGc\nxW1CrQu_H6E\nm8Mc-38C88g\nag14Ao_xO4c\nv4P4cS5jKmQ\nDDwsfoudwuc\nQNWXsYZWiiA\nj_UtDuZaeZo\nBXmMRlQtnP8\nzdr-f3MZgqo\ni2gVXd7FzhQ\nvpir9eGi8Mk\nbOEcxxyOC-s\n3P4LUt0qcX8\nYFWDhaI6BqY\niD3pUnlGJxU\n_nrXdj11-MA\nTgaoKPuLtpg\ngKmsNU2CWo0\ncJEE1-5uQXI\njE5qCSOAsXU\nwRNOxvIxMpk\ncMWSTAEs-TA\nbK3dyRu67A8\nLJAUOJDM88o\nR2zNRrOXbPY\nnlOF6YhAoJQ\nGM5WI4MTXzc\nAdaRb_fg8dg\nltY3ZLA6dA8\nKXIJv1NoXmo\ns1hs62Is67s\nX5SaZ8EmSpw\nsvBPXPXgpqc\nnoLAdkr7WzY\nrxJiE5EKnD0\nx0D4unitqpE\n3bqc-TIPv4c\ndtVoa1vg8qk\ntvON7JZAqzY\nNcmpDcaWa3c\nvEfhLwt-8wg\ndNwHQsv3tgE\nzhGOkVH91z8\n0HSDU71_U-Q\nBaSoze4fhGA\nnjPq0Ld041k\n6HwzVqcNaSU\nEwC2ZHxoDu4\n5XU9Sz69aKA\nlZ885HzflVc\noxxBXpnn2Jw\n3GcQp2JJvv0\nlLX3wpgs32Y\nvgGb9tSOKbs\nHcD7driLtCQ\nHPeiybjTy3E\n9ogtJYnjD1I\nW26hbGkeEWo\n0FNk4sNdPtQ\nvE3T2n8wX4k\naJSh1zkPEvc\ngozRrRCtj6E\noUTQFpVOWGE\n"
  },
  {
    "path": "data/metadata/youtube-dl-dump/2015.csv",
    "content": "J4ciEVJMzIE\nw3sv1-F1JeI\nFHL1AJ0wbck\n4diIC2MRjiA\nARTwLLhQZHw\nDTZ1bgOIaAY\noTx_o5B0J1Q\nk-m4QOtv-rQ\nvRXk74BCp-Q\nwlwh5x9eHBM\njrhB_dBxc-8\nAjc5z4sg-O4\nGXnlDTh9sCU\nUAfx1pipLQg\nAh5f0zWgfvQ\nmL-M04A1D0g\nquaACkqyF3M\nvUTQexv1mzM\npbWOEIzQ_r4\nTPlxZPhOsQM\nFr-ilDHT3gM\ncFjGykszgK0\nEBPZaYv0_AM\nZCphcTQguUY\nG4WgfNcZgo4\n5vecZ4JxUZU\nQOb4mg7oXO0\n9l_USfDRi2E\naq45c8eGVoA\nElFzH0wPql4\nJA9ZcCBGQ-M\nR4vRfIL-Cv4\nMUgLPMuwDfU\nFtykdGuzX-4\nAUBAs5rWsaY\n0OdOZTw1sAo\nzqWR21AIFJA\nUixHUUJXcSw\nTMVem9xHaHY\nS8XR0_wlYUA\nxk3clsiBnRE\nN1GwJt7fEGI\n2hZFC6Q8zk0\nJmlx4p_9MfA\nuCMat1QDt6k\nud421fnpmYs\n-G_I8dQHN5s\nQHuTlVI2zgQ\ngEhB7HuQk7M\nIBjOZQCPPXQ\nJ0SN6An2yCg\nNHiG4hmxkjQ\ngrEV7MeCTsg\nGI8Vrbnwre4\nguWGxRXZbis\nUmpctrXzd1E\nSCiMcDcoi3E\nswo423cXQuE\n9k2nstrtUs0\n51euUliFZ-w\nHprI62nr3GI\n2_pqFqYME68\nDcfEOMgI_5o\nFwCOP-yKD5w\nJqa0bO9PSqI\n6qqJOQltyTY\nYfof0ch3R7k\nKXldzNF7Y4Q\ns9prJba2vkw\nILqwaOR70mU\nsf9038zMVgo\nPP9l4LP0WPI\nba5F8G778C0\nlyQ1m8xbJW0\nqWsC4YHbOlw\n7kihC0VFaQE\ng2iWVWVSb6Q\nvOTtCjGqXYo\nzRFatzj_5do\nKfUxknvLpwY\nwlFo4ydbP7c\ncKpV6Wb81Ak\njki2_TXdG_Q\nm5-bSlttk18\neO1Jm4N4rlA\nIxi9imJZ40M\nsMWnN_9GiX0\n4nEpmBhIy1w\nMpiqRi2JW4M\ndUi0j-vedRE\ncFvxjIsjwoc\nlHNgUHi-WPM\nVkwwtlAGSwk\nsCG88QHentc\nSqb85Gfj0Fw\njVGX-_Iodwc\nzLKCXUGISSQ\nZEwg4041Q9M\nQjLYqCsggvg\nb60vt92AzKQ\n82dHCGddOSU\ntr97dNKSBao\nrqc2lyHj63A\nN_xWF7HBpJk\nvSLOINP7w0s\n613uBNehFWQ\n1y1cthozBuc\nPJ8v0jwQGXc\nfRs243dwWkw\nyP5TAs29e0U\nbR4b3meiMlw\nFJv4vY954UU\noMWqB05lpRU\nxSVasSOEG28\n8wUtvaL4G9s\nARoB1nWPsxo\nbBLKvPSgQ2A\n-fL94BTrFhs\n4rGia6hIWmk\nDomJHvbM7qE\nj-dYZPMpoqI\nbq_WJS_HlPc\nWJXF9gcUcNU\nW_Piq1uGGfs\nVdYPqVZIB9M\n25yR3OUlVbI\njKyhNbLEKxY\nqoxMZtAmAiI\n23v-gPJiaZs\nDkMA0rGCU3s\n8qyhhOM76Rg\niOaD5cZNw0E\ndwD4JZsAuew\n-XCvw6NPfVM\n6KqG8CYcMKk\nqDFzVZklg1Q\nKd-81VRVQXw\nMgFF-JBCHUg\nMoOwbXap6LM\n8eC08uGwWiw\nvP8C80lIRt0\n7FkWC2S0MfY\nInIEECDCSYU\nE_RNZFm1mls\nuCZStp0Z_xg\nc0JxgKT4jZc\nNGhqTwxz4eQ\n2KvZqLVSL9c\nxuLi1MdUKQw\njDMfIPRm7jY\n7aW8QnLYxY4\nSeKVwumCmBE\n6ZGvkZAP4lY\n-QJsljIDKkk\ndGmuICb8a7Y\nUHPq25mUJwk\nVICyZk-XSLA\n75UHGiJjNuw\nG2mYFXmFQPw\n0niEZsahtEo\nVkUKAtzE0r0\nUqLq7sMS2sU\nAApQkNSViGg\nG7Mvs5Ic8us\nPU4PQ3OJn58\nYPZqfRINveI\nFIyHh9pO464\nikqDLmNc678\nHhFqWgJrtb0\n8mmqyI9CVWI\nSAWm5lLfGZ0\nkQI3S3inEXg\nLSlXOh60wk0\nJwgvbLF28fE\nFaLsWjMiIrI\nWLqx522tlYU\nTdT_PiRLsaI\nAo50y1xdfW8\n_gEt3iNmLyw\niE9CEAzLPKg\nC2ILSuQOmEg\nX-HeG5tFKUo\nzFaEUnrsjL4\n676TpKq_6Ok\nz1F9D6LVTkA\nWUujUq9VHVs\nl1jCg_FmQmQ\nDo7U7AkA5jA\nx1-axqBZdNk\nhlzm7-gvTRg\n9OhIdDNtSv0\n0jSVwZ8w3C4\nyooamJf-T_8\npZfva5xDNLU\n1iWqn89nvJs\n-UZY16_K3Pw\nhlKMLkrSrDo\nZ4tC4qfv92Q\ndy9fKXNAhA0\nRo_k0jgMvKU\nVfOrY7CidTA\nf2SskRLd4F4\nI3hVaKO5olI\ngw_zwDaiuJs\ndG6C9JuB4YA\nud1tMFmSp2I\nZ6_Ti4ntV7g\nWpO_eNT9StE\n2EKDKks9qtA\nzvA-7VuKQCU\nP4kQvkvGi9M\n4ipKK450XwM\nTrwIvCFIMZA\nozpct8zUA_U\nrzs0681gdf0\neYMbAHC6RxU\nj-v6XtJFNQE\nxvQLAg16ZD0\nGQmt9W6Ky7U\nGSu7BGbyJqc\n8rNVaY7Stt4\nI6uGId-a758\nHZtQl0lF3OE\nxs3_hNYAVRw\ngwY85_MC_AY\nEVmLV7swH2k\nrLcAQVgMTSY\nIrDm-HzK2y8\nyfy4and2vPg\n5HksV7ZFuhM\nTuTOzEYtgzQ\nyg6v5Ur4pcM\nQrmQqEg4isU\nCkqAe9DL56w\nENRq7P9lAtg\nZR2txV7X8sE\nXXk8J83A25A\nwTk1noW_8Lo\nEt_Bdct1T0U\n6CxSbcM0vw4\nSLn4BL4gP_w\n3iJMdVAsPpc\nvOaX_Naqxb8\nXVYzO4IEKro\n5AZ2yDKNEXM\nCl-BpGO92Lo\n7rI4qKw_X5g\nRQV-8HxVB44\nJOD_65vh8GI\nkIrQoHQzxnY\nHrztxo5t4Ic\n032myLDgIqw\npf1K2ACmGKY\nCE8HyH5ldEY\n9RfC79nFT3U\nSCcBom6117E\nn7mNY2F938Y\n-BuN5efFTXA\ndxMTCKAWIJg\n-_HF-nKeabs\nRuPWLi5ifL0\nya84jIkf3b4\n5s5GkWkrX5Q\not3mRlgseio\nkfJINAKOgEY\nqwMUlFU1Db4\n6RVyL8lNtj4\nDSmDEMdKauI\nM6rf7s7NXnc\n3E9TWmE3dfI\n2NPSwpdx6iQ\n79kT7fUtLD0\noDRFKZVZwcA\nXPcqVHZo22M\nQd4hB_s-GzA\nIs4mo3dbWvs\nVx9EOI4RyBs\n8cLtNUD4Hcw\nkJzOYZNQv6M\nGSQpio_F0Vc\nAQX2Q-V2Uh8\n2bpkd6hwH6U\nh4u9pO-98ZM\naJ67Fz1Jf6E\nHraqSpgcdgM\nib-1a-0LHh0\nqNoGZiSKCaY\nfZNPbMu2Ge0\nW_hzD9mTSpc\nx2lBq3c3AIY\njpIVQIuoX1g\nrYVsdfE_Wh8\nNdcXHqLPufg\nZS5K9DzFIco\nYAcZjKbm2tk\n4zT1vWidAJ0\nZD5vHtlpl3Q\nRTnR82EswKE\nbDm5fnJ1Hg0\nc2HEnbmtknM\nFhnVceTIOTw\n_jru7QsVP2Q\nHxdxfEN2v9s\nD9SLyzcYXw8\nfYb0fQOH11g\nryRzxiWudaA\n1Yh8ZXaDY00\nVEc6d81jgQ0\nrGDHR_rveJc\n02uIi7094E8\nI2qyEk67i4Y\nv_wQqiFXgkY\n6nTk0X-QW_0\ncHRpQP_dp8Y\nrbYJ1-y-sk8\nH9PhEc4cgVw\ni7Bx0--TioI\nFm4WFtwxJ9g\n0ROOrIJuhJw\n6F-zsgYCXwQ\nFX4J_vERu9I\neXGYvqetC18\nWJs5SraEnMM\nK8IgSndDsjs\nhQD_fanPkns\nZ5nYySfvSi0\n2tVvgJbqH7U\nTKkrgiTpj1c\n_kyTyYh6LZ0\nWhWW2IXg_-E\nbb9m4vvEkHc\nJ0uhG-I0GZ4\nB3ECx3J3LTQ\nF2Bw4OLZHq8\nhnCQCX3AHzY\n_NVC5g_Yngg\n35D2hJCrDVw\nA0R1F_FhwRg\nBzEjGy7EPIc\nlX4H0NmDMck\nrSCm0viS2mM\npCQ0k_WvwvQ\ndLXri8sYr6Q\n5EFY3vpKDII\nlssQ4w2V4XM\nU7xQuGf5QHA\nMCFqMGgv1YY\nC_BolURdHXo\n2wdQcUUgce0\nsXHsY1eoIzA\noPS8-oRvVh4\n0FkeGnobtfo\nWqFEn5wQhBI\nd0x7-oo9NAk\nLBTE3aH5gpw\n5ywvhn6Y4aE\nzGzurjIEhNA\nOjxcWhQYMKw\nQ3znhTOUqi8\n5KnFcsSIzbg\n2bWostOI7uo\nbjqsWtO5Xjg\npQeZSHyCe4Q\nFf_G9EYI1xY\nJVg5X7dUlLM\nUCYjKqnTM_U\n2uRRExAY-8g\n0Wt72bHrHFo\n1XqI8Lyp21A\nAap_UtTuzYs\nKLp6N46er6Y\nEK9aDAUBBhE\n28MSXeKCm00\n_r-SkfDZphk\npU3klLr1CPA\nq6XF66xysgQ\n62tZR_Z_y08\n8kaJJGWYXxs\nxG4b0-DSLrI\nvCo2uqlAi4s\ni2MdefwrjCQ\nFVqRqUIDG-A\nUyzhnEqtWAc\nJGyNRQzR_Vg\nqraA12BrzVo\nX33UjqGVc18\nm1AuOoDw25g\nwLPEeDsZwGs\nJghXTjexZpE\n8RlDsORXN7c\nnuVfizTRHZs\nwUT5CpgYXMM\nCCwUD5fwJwc\nrF2GB1UYxtw\nqH3jaW3YJ9o\nF5gztKbIoaY\niKqEJ2xeATo\ndp5dgNKh77M\n0ay2sO6tWbE\n-Cc7j0yr2BY\nVVLlZy4m23c\nGaGIb91Mi2w\nf5wOz-3L1jQ\nIBqY6eBSQZw\nPtlmPi0DXws\nuIQL79UQG40\nyJlbyxOHrdI\nP3CF3QER_h4\noNGZFJUThHY\nDvoPZUYUdEM\nGhTOt1_Miag\nY6SIARg-j5c\nfNxA27iQkGw\nlViscSQzK8Q\nLzKWVeX9qQU\n-4kio7152q4\n4Vlw-NzSvoc\nXlvqgnIkzZU\njbdRO4BSXSU\nVshyrsRdoF0\nGvyKxUL0x0M\nr449aYwQvE8\n5p8meeqGJbg\nfZPyHZo5oDE\nAAbtiIrTqCE\nSpSnm6rxTqU\n-SXbmeFCnTM\nUSD2Y7wRNgk\nhON2sYpnJoQ\nzyTVafoAylI\ncBiLSCP95Nk\njaA7_aOD2ig\nxsL7T32XG3M\n1XEn8W3UA3w\nMDJ7Du14G-4\nfAfd4y1IY-U\nEANmB0vOPqo\nC6hIucqz4_A\ni0yWgvRAqTU\n_vHFGZXqIis\nq8sWDRO5C4Q\nlVdSRz3Jsjo\ny88S2uDB1ks\nP056r-oeODU\n7TG6R36bkgs\neTeBFTlR0VI\n9MdivySyCng\nCOqQwiq4uA8\nzkTbNH79i9A\nSR6W8_yd3yM\nn6rv6RO9ZFY\nJPDhxTbWjuc\nKzCVggIa4uE\naQsyA4n7GZI\nz39yOZpcji0\n4pUeurfZ5n8\nUfmbUwrXatE\nuO47LgAVYCc\nMochwVdcaEk\nC09knP1SAyA\nDdktDH98D_g\nroaWSb9xc8I\np0udEu1z-jg\nvAJAM1jm2xI\nwGmDAjRRNXs\nYsQEo4ja5Z8\nOf7LHW5cCBQ\nJA4fL1qiQTU\nlCCeLue8owM\nbeAc5oqxBHw\nseFIcguvgXk\n-qVNWgbzbS8\nUBPOSCR4el4\nkG8GuXOjIPA\nm4a6jkZiOkM\nH07vHL7APyU\noSo9Wu-jAyY\nZVQNsHBi9oA\nD2HaKTqp4fQ\nSlL11KaxU7w\n6B-QUGSCV6c\nLKp3HoZGP2E\nIVhxiyqp4do\nWCKRXHDI9Ro\nf__qWwak6Zg\nhpaXyCsOZUg\nb1KjK4fd3ZU\nHZEaFYQecn8\n8KFPOKVSi7M\nRFTI9DnYSpY\nter7pAZF_nY\n_CO3CMXf19A\ndCCo8xDMsJE\n84k1F9o1g7k\nGHZnuSLPSG4\n9F_FhwkKdSw\nZl9yu2xvv78\nI_4ZduVVJrc\nJzPOYDni_FQ\nVDWYVgMxBss\nZhBCiQ49Iz8\nBG59rpilakA\nQBip3RFko4I\nYpHAGZoV1ds\n-gZPZLSUZZ0\nm5p1wM1ZHQ0\nyV8-IGY64pE\n9NG5mJgw6Yg\nUQRxN8qagG0\nifFEIzFztAo\nxAPOeXEUwnk\n38nBkookHsI\nJ11TVWwQNvI\nIsGdB6a1Evc\n0quEnseH0zo\nBI_Vx6y7xG8\n3opX0w7T_qo\nQ1WdlXsvk3U\n7DmN0--tZcE\nHJV1Cqh8M5M\nXhT1nAzegiE\nK7p93XsmJ0c\nm1Q_m9pvy2A\nbQyfZXYp7Mg\nyk-b5jvZjLM\ngappVpWfuCA\nRB_-9bINJCM\n5fAASR7YMDE\nWs4ETwvXFw0\n7PqjhsPYyy4\nNweXJhbk9P0\nX8J0iWSsYV0\n5fg1GTRuYHg\nyuBFthJcBiA\nPPwud5IUnYs\ngSN6EodbL1c\n4z9TimZytDI\nT-KYqRfLg4U\nYBgsfgkgtqk\nAH25lc44Og0\nSM-Y8FPMqzg\nRCzC3ZeMxws\ntSZtoveaa0A\ndezECMjxlCI\ndo6yVKI5M-o\nyC4LZXraLBM\nBbryMMaAUKo\n2j6I87SIfbM\nf4-sMr967Jw\nPzuBG7VmIlk\npHQsot2suvI\nzBeW_hheeGo\n_qVs22tSUnA\n_v1FiZlF3bU\n4gB-5OngLWQ\njF5_WqbTmW8\nMK1fYMxkkTA\nM4oJLImqZds\ndLl5PQg_Hag\n2xLWJOG7dO4\nxQFsE2WoXL0\nKTQnnwDN3eU\nTBRqPFkAQCM\nvmyGlOoCbp0\nupQ-MXF_ZgI\nsojzO-UWObY\n70kZeFs721U\nIP7jsmECPbs\n3GlfIStWMSY\nFvEi2U7IKRE\n3vDe4jJvC_o\ncGN5hLGphX4\nyFlxYvgV3VQ\nsHqb1FwBP2Y\nDDQzRai6Uao\nCDeNNNPzUlg\nn1gQ-1zEljg\nnR532k8M35g\n3JySRf9aTPA\nw0ijJ45l-kM\nl6qtq8aC2Cg\nTD8G-aSlweI\nTDhk_Xhxc3c\nITdkeKIFqL8\nQo1WkD59F_w\nJvZ5nh7sIzU\nJ7M8LuEC99k\nLAmOoIdTjsw\nMcIJxpY89Kk\nS5jj3vqPau8\n0u0SEECyGlM\nMh2Tf40llqw\nFyo66z0NtHY\niedK7wzunWo\nrsT1bLR2sfM\nzF-3wgcDRk4\nnLXoZ69ce-I\nxx4t4fBIY88\nS4p8_i1lcCc\nFFGAP7FxZKQ\ncUX2Mj4SN7o\nlTiCL83_dR4\nv5N1Aukm4Bo\nsXnYoBCJGwI\n2MdAw_f5pAU\ntdXshjACQx8\n87MO-gtYFT8\nzTlfN8HuEJA\nGt4t3ZZsAnQ\ngGxrQOUaM_E\nPZheNUuK8jg\noz6wjc6xLFU\nT_HWlDa9t6o\nmKDqrUqOe8Y\n_kz6s5Yi5Ns\no2oR9qYeySU\nWeBy3_xqYtM\nJDbwEQG2cqI\nwS9RtY8dVpo\nf-DgdMpSo7c\nahP1JZwHSh8\nnAgSecmB9lM\nJRloSmzWBOg\nM2hhUTxFLWA\naWyYZ3-8oAM\ngwTTsc0zMco\nFm7B7WzAA1M\n1u0rQ7J3oS4\n97hoM2qv05s\n75PCq-Wcdhw\nSswN494Jxr8\n2-7Jdip2Pfw\nFTV4FUlcIwQ\nJaGoM25tGVA\n2fsMce1OvXY\nyAhuaFMTSKM\nEQW38-aU5gI\n0JnpUYMPEiw\n21Dc8a8X8qg\ng9U0df6KJiA\nfCuS78YHrOY\noMpgPQbRt8U\nLxMYNhlh0Tk\nIaOlL5WMFI8\n1FXO-XToURQ\n0OaFQQaQGRM\n4xVAvx5hTic\n4Iza5db5Zvk\n1MWZ3mZ-tUM\najBHZKoKYbU\nLkWeBzzBUXY\nF2Zm-637bQQ\nyDtGS3G3xtY\nRfltPijijjA\nfgJ2CaTfaxU\nesJNnh-d2E0\nSEWMcT6bIi8\nJQO8MTlO69U\nqjYP7J3oP9Q\nPE-3JxqiV7M\nJKD_ZN2VC3g\nJjgKkluHXJM\nt7DgbPjFOfY\nFTHoIehOkK0\n0XCqc9fIGJ0\nn5ArS3Got4U\n8EcrxgHLhIg\npUO9-h182d4\nCD0k2oB61h0\nR01bex9Ejvg\nM49PmHt8PEc\n8iI9iC2OgFY\nRH2IK1jcLuY\nj-V12tL78Mc\n_QUAEFiNatE\norhrsjDwamY\nS_PMSA9fgiI\nu-2jqTXKQyU\n5lkqZP5rBvg\nME2S71b553U\nAsm-9UXAOog\n_BeHUjskbZo\nzlfMo6Qe2o8\nzal_hU83ruo\nQjLwuMqSb7s\nNMKgdzm1pWs\nOcoatqJqmX0\nDe2BarsD4jU\nB5vXrSsvqqs\nblWBATSOCtA\n-YV8tJhGojY\nsBSibz9xdic\nOI2JPJj1d6s\n0-HM2VCdrC0\nts4gt7f_rek\neiLeBJUf1iE\nr4K7eNzseCI\noDD1tW59Mjg\nNDV-ryLLkiU\nVVxYOQS6ggk\nsLAan2iZs_Y\n-TLCaDbBv_s\ndvloIUSHogs\nTf7suGi96l0\ng-uc5_QEmuM\ny_fgX9MUfVM\nqAw0VczZGC8\nBeAtRdD4roE\nbjLdEjOL1s8\n4akqi6YYIJw\nbCKgFFmf_iI\nKJZLcsAmLbM\n56djkHojg2g\nyClVlc_niac\nOic7kJRg_F0\n8JoOpx6VwHk\nxcSwBHs1uD4\ngAmo3FcaovM\nZ4DDrBjEBHE\ntLiM-49DJ7k\nYgXPN03oxkc\nxOYb0ZdJCQs\n8R1OS5jPh2s\nYsMdkGG2b0k\nx8HjCP3LqHo\n428tr8ixT3Q\nej6dxNrh3Dc\nfdrR3NbPARs\npLm07s8fnzM\nkxjwb5cXTI0\nDGABqdbtQnA\nAePRD1Ud3Lw\npcj4boVT4fc\nfIh6HDeXKGY\naqsJPtd8Cis\nofmssjTsGnE\npCiwEO_6xS0\nLxWJ4QT74hA\n8EdOdfCM1hM\nO10NcrfHaT0\nFDektpHARj4\n7o40za1wAlI\nfg-43OlaJtE\n10fn13Q4wAA\nRK-RPsc0czc\nxuaHRN7UhRo\nxT7F0eKfctg\nyrxRCTUt6OY\naQHOzbF0qH0\nIayveLLh-HQ\ndj5zbxA4bEI\nZHRWbydTGrI\nRRcYHJ1uTro\nJt0kFbvL7yg\nj3d3mrWBTpM\ngQwpd1247J8\n7T9nzAu7orw\nhk6Vxhx28bo\nLVm_DbyklO0\nQ16cb-O1kTA\nd87eHGVaoc8\nx7RM1MOhSic\nVz56mS8Zz6A\nhnsP1etZkr4\ngmedATt5viM\n4Z5rOXxjRWI\n1adrUPgj7QQ\nsYk8M_ZTNlY\nGyxw8a2hTMg\n4PcxtcrI9_U\nfdOrjwuILCE\njX09Cesfxo8\nSj_A7OZz8TI\nmbFx0CbaIlY\nfohry-3J4dQ\nDu82ML6YGRE\njTNoDcmRc0g\nRCEgNkU7flA\n7Za7WMgQqKY\ngi3gqlWetJU\n6a0at61sWkE\nGhIDZhPP7d4\nYyWG5DAJc6s\nTwgvEloIXVc\nzpdFj0w6Eg8\nevCesc80vho\nBevEBQsAoPk\nl3n95qTa5ko\n0p9yD4E2hQw\nnPXMny-9Ntk\nNW5u4cCsNUY\nTyB1CcaiPbQ\njrPvugl_NVA\naW4x-PAnrO8\nro74_tScvSA\nwW0L86VZScs\nKy5Y99wb_00\nbAI6N5Uo7SQ\nYMwZaMNf3L4\n_ihVsEYQP8E\nVmVWuswEBSk\nlJ83ILGA8yI\nuk04S-0HOXY\nNVovWtkGbCc\nPsWbydM-u8w\nXrEpuPzxk9k\ndelffcg5VZU\np0BpMFTYFpU\nKWK3PRNjZdI\nZ3m-Ht3_tFc\nWlS2xnW-LY8\n4qLgo75Lfhc\ndKJa-KQNjQU\n1cNBL3OOMRY\nJNPW2wZ4D2s\nU0s0czlJ4xA\n1rlSjdnAKY4\n0zgTcrZ5030\nxPHXfJZpSms\nuUuTz9Hjc34\n_snQsFAwjxQ\n4_hEef258iI\n7UhFzTWxzBo\nzrc1us4sDcE\nu0fi902X3qo\n5ttoICpH0Vc\nkOBAOfh46Nk\nwIqMqkMIjEE\n5FQ7xVuqOJM\nqU0Y6zo68t4\nKo0E8tEu7HU\nVqTMLtDj83c\nlGFrkYzbfoU\nMfHiFaZIc7Q\nLJhKwaZEEy4\nX236AeHt5RY\nAbCowKGckKM\ndLxtD4f_DA4\nlUQJN1xzKpc\nOp_fgLBxUQE\nKrHaRP-Y588\ntqtqEZqGg5A\nwXWoyVboDpI\nup5GI3Sp7Lo\n19fWdIvK9mU\nStnmzjqMKRo\nQL__AjJr688\n8QMRQeYNd7M\nU-RYUQZFIhI\nXeU6SJorcvw\nITMren3I3WM\nVagrTsi5vsw\nXIcTr-m-R9U\nMJ_32rbrHdk\nYVjyXY_mcl4\nsidn04cetvU\nx2vhOIjmS2s\n38yH4yeJM2I\ngBxaGB65TB8\n9s84zV2VCgI\nDXA3GJb6V-M\nvG_FLK4K_T8\n2R1lEWNNsV0\noARVdCyRT98\nG3BQd2K3maI\nK4j25DUQLgE\ntQJTJdTM0Wk\nmu-YLZpB6is\n4RhqR2ZGkc0\n8dXF7y1QUxU\n_LKe8V-h7h8\n268ZUL4dnn8\nszNrOdjjhkw\nG_OMV0N_Ls4\nnM0u8GRt_hU\nE6KKYD3eGlE\nhFH6FoRzSpM\n5WGQCJmdEoM\n9D9RXt18Qq4\naLDrW2AXClk\nPPKdHP8zWuo\nHEMqddRGVBY\nYSkZieDG5U4\nQCS1Gnwbtp0\nyqdfje9b9WI\nIlLkXPTm6ig\nE--mNnOvCm0\nVZrBzpfh6hM\nsGCjNn2uJr4\nrfeDWXk1jso\nJ4LB77duP_0\nt4WP3bODmfo\nG59JnM4JKNQ\nataOtn-F5s4\nCqgTNaplJdg\ndWQ3B8qTpes\nwb1HDnYPPoo\n-w0WPkB3XJ4\nZCZDWZFtyWY\nJKMpRikJeLI\naNOmTuwnGYg\nr_9PgiNuwDc\n3MKwR7JipEc\nTxuEWb4b_gU\nQ49LEs_bhaU\nquEBzmchcwc\n6kKCbDw7lR4\noKYBGq7pt3M\ndyqDd8esYdc\n_Ib_lBGuoUQ\nPvuv2sn5fDQ\nS5Y8tFQ01OY\nUUZsR3rFjEU\nAwLRD7iEEKI\nhr0hb0gc2eQ\nIthAv1JkF-0\ntI4RvWvgulc\nhM6ItEXb_Us\nQNpPmiU7BBs\nouXz_ETh2eI\n5xIU6_w6ohg\nCQ67ZyZtKjU\ndWJuJlmcabY\nYpa0vpmCzdc\nlixII1thTO4\nbHwiXFc9MOw\nDw5W0T5fV70\nkyGcsRDBJLM\nmDLS12_a-fk\nnzz_3bQHyiY\nDruCG3LJiiU\n0_m8AmAm-XE\neiQD0Wk6Ekg\n3BSdoHadj2w\ngzRy-pvwdL0\n9CjMbFa2Oj8\nRe5WOfcJg5A\n4uaPFQxS6pU\n6xaUD1jKFWg\n3lkG_MD7T9U\nyvC60Y-AqLc\nJiI91igl180\n88YBTmbAaoY\nPehCORojjtw\nJipg0KQ4id0\nOdU3vEh3qfs\nYrtS2_TfbeY\ndObTXYa-_n4\nsv9XNFpRdhg\nBRccUGaFz2s\nXpEtHWMpiFc\nbJNpX5bfXcw\nURquvu9F3jo\nhEY2L9sXjwU\nY4g859J_920\n47IVX23yRyQ\nSippOkFBMAE\nWqYtAApeiDA\nc0P_u-zs5-I\nX8slBBJG-x0\npytH_ezVouk\nb58fAt0MdgI\nNZJrGuC92U8\nxL-VX3WbA9U\nmJYE0HuKNfI\npO09fucTEuk\n_KinUMIS3Yc\nF7SNEdjftno\nuiik3zS4y4I\ncgg9byUy-V4\njsLUidiYm0w\nxEvb7B4O698\n80EaBRgGylo\nTU7CDejp6Lw\nmGLXbK2XWMY\nwgzxSr6l9Y4\n-kFJKQvCrkY\nbNdddrIe6dQ\nJgv93j5xcpQ\nwsYNpHaKJIc\nqTa5iKsbAno\n7tK-k8UURYk\nsYVz2G-r01U\nokGQj644_Ds\neRRG_PNOQmA\nJRU1SrdXEZc\nUyzInzm8gW8\nk2edI8Gu6k8\nF7_aagPOpUU\nOeSwSYmipqo\na1REfTIc5po\nq75FfwmyF4I\n3nGQLQF1b6I\nDh0210A-VZo\nK6qGwmXZtsE\nDa7GSy-6mJY\n2-FvDteymnM\nAqNEZ_QgvI4\n7m8_QLnRBFo\ntGxxl7LOe_4\nUVmSx9Vv5M8\n7hsAbjmNpKU\n6wC2DqFJ7UE\nF8dW1ddAC_4\nM2sjRRcONOc\nlgRkMyW_J5U\njagJeaLXRRQ\n--uyzf7X_0c\nOvE_mDtTj20\nvJCHzRIOOL0\nGyaIF1iTs-Y\ngh2apPe9pSI\nQhCISxbO7rg\nFixQE61iSDg\nlCUBQnsS9go\nYWRzPLzHJl0\n2UYrsFeBZoI\nJJeNvH2hmPM\nTRHN5vxnZrI\nLXtVS8SFmJw\n45X0_m1KYQM\nHpmdYRs4lEs\nuYTl9G6HoW0\nzHoZ2Ti6xco\nOANpF6uHmBQ\nH0BUIYk2irQ\nZObnyBWAZSI\nHur4Esxuurk\noHOnldgbjy8\ndtOaXCoryQo\n5JU326dvQ2g\ncrB4KD3p8HU\nizxkFm060yU\njsz79bztNJI\n2wXBmSecjDo\nrdzVVp7e_0Y\nECfvSmDe_-0\nr1gBq45CkgI\ncHT2zdQT3Ps\n7VbYokM9dY4\nakMZQpIbTm4\n-QNxYSDdpig\n0jTSJ6NK6-4\nLxXjsQbCZR8\n63IwUcBK_Rs\n941z56i7QJE\n4bAPlP2HX7o\nDz6Pe77tpPg\nuy_2GCNyzgk\nE25WrYP_1tU\nzzgvxdPlUwA\nsBJ2jguXBes\n1nKBe0dzhvg\nc8wj-v1Jdyc\nqG8YoqrNMEA\nHTjeSsgZVW4\nTKBQuK1988w\n6p1EuLz9Fes\ngRLpvojaVBM\nte-hhtqatQk\nB6-nYQbUteA\n4kC1v_wKF7M\njKC6UsetwN4\niyHNryKojDY\nmgSDir-wcGk\nmR4FXksKdKg\niv1eE7qxDXA\ngP_GbzDWoY0\ns8WzJJoKq_4\ntg2X2RZsGy4\nBGyfOMCRBn0\nIn_UKcRXzHs\nqj0L0g36IXU\nKPAnWhVV5dI\nBDLvzvFFRu8\nKWAQRU2PeeM\nLVflxqHuw2I\nRiaUv2MwZ3E\no2J59hT1Vto\nxqsDUwDwdUM\nyKguB1M0JFU\na-h2glY0jyg\nhVPSsxFKDLM\nRFjVbXNMsNk\n7SU4vD1T4oI\nzFxq7CCpzss\nbz8JoC9BpV0\nfRQsuCJ-g4I\nmUxLZWWRKUI\nbpc3TKhS6MU\nF8QVrLcmRdA\nI5XMnxp2S9Q\n0PCcz5_8IEI\nqS2Np6zxXm0\nT_SHaqh4NdQ\nITicydPuKRI\nNH_wHu33CMw\nli2zByHeanQ\ncFVtyYzs48I\nXQdE3ydNvCU\n6T_cb2U5lro\nOjIh7FHeH8c\nP_8O-iDvlmA\nyeBM3nwwmlE\n0CrSOPGvblI\nLiN26NHb4ao\nVN54kkl_nTI\nvO6EKe8gVXk\n9EilqfAIudI\nfjqjWC3Ycr4\nw2eNQ75wdq8\nhSdrwqLUpD0\n2BNVMvzHvT4\nYd1Bx8u7Om4\nKQt2qAPhUAI\nYP2dblWITA0\nkgNMy-k2VnA\n6sMjSp6yOBY\nRsmcYTQsgIM\nLh7bN_qJz8U\nBHIg0d4KQMc\n188YJIcBUkQ\njWyeugspkUA\nblbqbdPFfns\nVsZ4L4HwUFs\nYTcFsdIJ_Xo\nBKTyV8Msk8o\nMeRtEy1FVAU\n4uDUNAPdYb4\nQtrJ6ojRtik\nS7rZsWVUAFI\nc_TXof1C-OI\nze-aAIzwD_E\nJAHLYTVcm5M\ndDQ0rUdj0KM\nIFc2QKCnGEg\nw5PGP9-_x5E\nEJ5ywAAmiU4\nL1UxZJ9owXY\niz3l5GLSWJk\nrkaXuC5hrCE\nOuht1xip9NQ\nbhGfpwfae-k\nZlawibQ_QKI\nvjFG-4Ge668\nNyOTaHRBTXc\n9t1IK_9apWs\nzsqpY4w2e1Q\nM_bzbtdfaik\nshj7YP98Yxs\n51iAljD9Q7Q\nK0xpWKgNCk0\na2872XpfqKY\nsqhPvOlgzjo\nzbJwjn4p0cQ\nr-ddXOrPiZ0\n6zFeIaPbJwM\nsAwwDhNJJO0\n9aqopEQr7wI\nzgYGbR8f1PA\nECiut2qgJck\n3JkBKGttM_U\ndZwnXa6XHSI\n5ogVT5mpg6c\nq437KEcmwmM\nryvvNrcMh-c\nmphHRcrJfNE\no2xprwwIMXM\nfluJSCbNpDM\nnhP_9bFQvjg\nNEJtJu--hto\n_KCXk-BhTd8\nfWP17t95S2k\nQMJfw8aF90Y\nBP6N_JrLUIM\nTNkvLDF7JOY\nmDUSjBiHYeY\nS7OWoc-j8qQ\nddXUQu9RC4U\n_qu4ZBCU6Fc\ntpfOhYRYv80\nbI9CAfqY3hk\nJY6N-tEppkg\nzE2-th0lNbg\n9h9W4c2YLCg\nFVg9En9jYSo\nhwpHOq3Xbks\nSgqfufV0AL0\ntUuzV9kwSBE\n6_5QkJsNCho\nPojd3KNQq68\nZvvlFocf6LU\nMYv8K_joa6A\nJD-K9Exe8jw\nwYMJal35N0o\n2TVyJ-51jzc\nE3RQVcNUcTA\nh_bUcNjmuSk\nDh1V8GyyNYE\nDTPq0mNS0-0\nghDDdQxgXRw\nG2Mbj06Ns2Y\nuL2gxb-TcLM\nADRGgyhX4YE\noqwzuiSy9y0\nszLCkEBB6xs\nG1DG6f_6nZ8\nd9PlKlirxT4\n64IwbhFYuUM\npu523TrIMpg\neCKRI2wEw7I\n6pJC0FLA3Sk\nzvtUrjfnSnA\nCR5Jp_ag2M8\ndC1yHLp9bWA\nfaX23LNpQGg\nWy6ANzdhy1s\nmVybomocIw4\n1j8l24hHhgA\nEm4igIXJRgw\nspbfax8dOTk\nIYcgbsw7yc4\nY-zjMdsTYyw\nmlcBwNHilHE\nebj_l5icPPg\nXqmCa8WjX5Q\nA3WWrwBRH_w\n6qIBzPrHoVk\nzPN9c-AIezE\nKpOUP8mC9fk\nJ03lpGKZ0xc\nZpkIPtYw01k\nTrxJeKnKaAk\nchBVj94zYDM\nZGFHY5JjTZQ\n-4QqksHXUCc\nsT47KfDlwI8\nBXveaReACHs\npeUyLXrgYZ0\nE4e_QytNF4I\ns6DlYFmuJXw\nKqQ1UmDPvgA\nSPiSR_YDfXc\ngRyEkrwnyaI\nD6DPbztWi8U\nP0Tt7VUMLs8\nacnUb2KcgdU\njZiR9MHumCk\n3_zKy7ygsHY\ng-P53rME1xE\nI6wRZCV7naE\ncnQEo4bazIo\nLVpnmOXvBR0\n2PjZAeiU7uM\nBSRrzrQtmto\nL0CL__Tvp-o\nb2f2Kqt_KcE\n-qdHE9-8spU\nHQSGHbbDR_Q\nJa2fgquYTCg\nK6iF5sINVns\nASsNtti1XZs\nHSPYgwP9R84\nM9phuyRknPw\n5NZXmq-E2tM\nsKNAfihSpnk\n1e7FILJsiZA\niGhEOyypT2A\nDfW_3qH9G5M\nLoo5BhidY-4\npMPJV8sYt7k\n34c473tq72E\nQ6luiTx1pM8\nZS7BASI6gpM\nnRLP98lG1YA\nkPHbIyDTPHU\nR4lxBhDtvXQ\nRM2N1w6t1KM\nbbpQmRxCYUU\nMY5NspwaVgk\n0hL-fpCsGR8\nWGxTMoDAI7M\nTqNaJxRC9NM\n0YzsWVUO-_o\nMXcxWsdjYHA\n8ltYYXhGCBo\nB2LLB9CGfLs\nT3nGqPQJqlQ\nMnUGqPzLojs\nDk5SrjFVQIM\nuopLUlluf-I\noZoXYuatXzI\nZZyXtEMFfaw\nGmjAp2eRDH0\ndkErNkX2HKM\nL2PdSg-w5T8\nMKf_SL_owsY\nDus8r5l5cys\nHjNQLXXwYfw\nzB6pvQt0I8s\nYcSXHU0zktM\nhopRenk1oaQ\nM3u94uEBq9o\nFccBG82Ocds\ndjUYiJu6K48\n5e7c30eNNy4\n5SrayNqew08\nLRD16Y5xR9Y\nZWLQiviq7SM\n1ZVwo_elP7Y\nI-OaeRbZtk8\noIjgZ-i9v_k\n4Y9X5wDG4Dw\nP4BRIozjuKg\nxCKGA9yDNgQ\njZtlV8eroS8\nPwv4avomXYo\nId0cqNWZ50Y\nXA62refAB2w\nf5umSa_YYX0\nbdft59iqlKQ\nhnfpujruuv4\neLdQluY23UI\nfa4IKrf2YHI\n___OJkS9RK0\nITu2LTUPniQ\n-3KCgSpt3hU\nWkjEuV1fTrk\nMTEXVT8P354\nA5xTu6AMxq4\n2zTqIJeCd3c\nZTCtiADVAWs\nzPtKevwg7Ko\npWYPN21XIEU\nVTZ0N7VTDtY\n6DQTWY9wTO8\na1GeB9y9zzo\nC3ZMp57PKEA\nHZzHIl9mBsI\nu2107BTcDbs\nle6AAhqa_8U\nwZaCK0PDUMI\nkGot2YelCpE\n9W5MiCLa9DU\na9biNJwX3OA\nnoT3bA3Ibyk\nSwtSrzKWoK4\nhpDjzODXpBQ\nDvSmeQSDTco\nzh4yF8r5uJI\nY10g9umKQcM\npMx5aSV7qFg\n-N2mhlvygq0\nGpQTd7WhT-Q\nYc9vYLgQb4E\noNmhgpAGlBs\n5KderLI5hEc\nOm_HVqAXZYY\n-Jzi-2lYWEw\nyGUwdRBZ4-8\nf_sRtGI7Y0g\n5tu_42LmfEw\nCBOzczGQh9w\n1orN1oGScbk\nLPPJdOGshUM\neWL0obbYYOE\n-5be_UPkLRw\nucQmXLgGIVA\nLW8CpOzdT5Q\n14Mf_nTyWBc\nL4_-rVenLVs\nUsJjfS-i2zM\ncv7_7dSbaOk\nLFN4NtioY8Q\nL3vbfkRB6gQ\nDZFydcYiOtQ\nDNuzmKc7mq4\nhmF_IO6Aiag\ndCTd1XHbliU\nGmvpP26J-40\nVy-simXeFBc\nIsx0GBj1fxU\nG95g0vzTAKI\nb7NJkxnU7xI\nai1wUoboyNM\napo0KrJVXMk\nd_FUI6kf1b8\nJj0UuTkXIyA\n441D9uXF1ac\n5f0cBrCTeis\n1QvItdreFLk\njPF_mENo1Fw\nB2CEGhwMjkQ\nGOqTRPdrXgc\nNocIDIeLTqA\nOwYH_j7c9gE\nGQJMW4W_278\nS_yY1PaFEok\n31t8eDmC1BU\nCJIECQdjuLU\no0Y7v_EbE70\ni2isplJSa8E\n4ybEyyoBxts\nDTMVpuLIp18\nIRZrsNC5jpg\nRDnvXAkMnx8\ndNlMe4kU9TA\n8RVVJmuoAQ4\ncrPJvv2Y3hk\nQ0yQbpoQ0hY\nGMCKHfREAPA\ncONYIjOytm0\nEsFrRaMQMPA\nqr7oBpkkxIQ\nHpc8yqHTq-I\n-HPjEz0u-9Q\nRUpKMSWPjZw\nD2XKjKc8DKg\nGZQMDeQs0-k\nqSGfcCO_h4I\ncncKzAr-jis\n11Kv8mnxdCM\n3ERuhks3GNk\ndME9-07ZvJI\nsZTpI9Q71rs\nHgmE4x7yg3c\nagRBVqecl5Y\nwdWM3tzzH08\na2Th8JGsJuo\nDuKvU5jh2os\ngxeIvClLpKI\nCF7-rz9nIn4\n9pX1hxYW3YY\nd-RR_vV7qDU\ngS56O-aHEMs\nDe2qscGlWX4\nzW7btaVY-Lw\npTvbSVyWP9I\n5dL4tZZ-Jq8\ntNZKO_68_WI\nw9KBOhPXhds\ngeOqbM03Hf0\n8_JPDEHU1ok\nKyR7XB0VBPM\nXBJSfGM5dGY\nfWcPwWR4C_w\nA65Jq6NKdeI\neMURCJgRJYM\nm3s7ZwpFCsc\nXFdEntyO6TY\nXh1TwRilcLo\nQxju05tBuLM\nlrGIfJdbUHY\nqA7XKmC5QbQ\nJaeHMEw9KAg\ncrZXwRmMq2k\n-64q4HpZyaY\n1sE-YwK6_PI\noh4GYHtq2hY\nXPwdUzG03SQ\n3YTIMGmZUr4\nyLz4NXK6jkU\niDrYp0LApwU\nXh2kwqss0dQ\nAdBu6VAESeI\ngEqHJ1tomnk\nCRXyWtv-huc\nU-mmbStFrAA\nxi7nytFOO2k\nv0i-Th0bvPw\nS6bKFjxPbC4\nj9h6JvfCOOs\nrDbMqG0EObM\nj-a68r1d9iQ\neCdRFMp8Xwo\nad65spfln8w\ns8jfw7FxNqA\nY15DS1LKh4g\nx26YFcaLiNk\nwdB2lzxIfGg\n8-q2CNPDfOU\nZgIp4Y5NoZk\nbPNkEztLgeo\nbt6-F11LZsQ\nN2HtiOaOGx8\ncqiQmO5frrE\n6zquYbMbFNk\nMuWwCUXGzWE\nfSu5W0BtXG8\n02DzpeBF4es\n2j3adcbEwSM\nYgJvgESR920\nPoaOwSPJPHw\n7WdGe1bDiuU\nlwfuUyTMpVY\n9Z3eCKZ69eM\nGfHOoFVUk9Y\nBBkzG9_vrZg\naHV7IUgaCy8\ngRadASOF2m0\nOqGUDvVYqlM\nxqcSo_Yb7OQ\nDMbglmaMzB8\n8Y_Vepe_rVA\nReFW-5bgoCI\nql5i_tg-wZY\nhcBF8zYH0s0\nPruSWq_FycA\nqxFHPIFGFmk\nvCuU2y6qR2s\nyc-qretrU8Q\nrKfOjJJ1ql4\ne7Efjj3_uME\nTu1RZaFnkKs\ndApRtXZRw1Y\n9l07Tr1w4Ls\ndTM13gYxkoQ\n5wS_6ok9u2c\nZ4wZt4J3Q5k\n13zrff9V3Tk\nSwGjsWSn8ak\no7_kf3hUg30\noknpBL5cNOc\nO-LGISfFS4Y\nG8EUObgUFvc\ntAbYODvO524\nRcsaFXhuAwc\nryuW22MWnOU\nK5eVu2qDISM\nX_nUklmV_kM\nm7aDde36EpM\nBrXDDicE1VE\nOeA9yeqG91A\n_JuHsTbZKqA\nRWIS7olVbGE\nx-FLqiu9nTs\n3Ds0DRCNXN4\nHCLQRZmD1EE\nr4vQbzdjQW8\ntmZiGfLVs8w\n_q36_9BaH4g\n7ALP_3eWKZg\nZ-hoEoga8no\nxTebNVZEvT4\nAgsxHmawNqU\nTiSGxWluH-g\n9lCBRKyCsVg\nOaZa0tw3Fuw\nFcfsKx3pADI\nVeghLYlAYxo\nvxTyxT5z0hs\nyOItNhVYC3I\ny03ITmppyMI\nI3LIwgA7Qpk\nF5GWqOrzQ3g\nA4iXXQr7tqw\nmw3M1fIiegc\nuh677-ClXCY\n-37Mhsak-XI\ncy2Xj8Pz2Tk\n3aSdLAndoJU\nF12X8zh4aCE\naKojFoPzQoQ\ncBHvRuBtJqI\n1v38MMDYEMw\n7dw45dGMGNY\nvcxEgyiu16Q\nbdYiJgwzumg\n01RWw-3AKaE\n0O5CcvLk-uE\ni6klSHVWbrk\n8TM2yB381fc\namtxyPO7At8\nSDW2CT5neyM\n7GRQKoapDIU\nCty2dqTZSTY\nKnzWMPHQ7Nk\nIZcMgDET-fY\nPC4wbTAa5SI\nKTHJmfCHWc4\nplUXguATsTQ\ndIw0nCJpAqE\ngLD9INIOo00\nd9ykU9FkH-g\nM7Ot2vswJLE\nkLovCSv9-Ks\nhFoLv3bTLSc\nPJ7W-dz1OvE\nDw_6CTZVb7c\nYkjS7wTVKB4\n_z3Pfq49wYA\nzmaZsAPGd5U\nJ2gKEelDYpI\njOAHxkUMseY\n_-D3PfhuF5o\ntXSER8y44do\n4xcUJXRCRWI\nsdNtnZbJBRw\nINE0g4kvXLc\nTabNBDP679U\nwB-4zgJ2LLs\n0B0YWUYWHS8\n2aiVI2zBW3g\nrZsQJGk__DQ\nipkF3xkP63M\nY1vBIQiyh80\n0MHIzgCZcxc\nTQCgzi4j3eM\nLIIz82ZUCQY\n0XesK2hB_Wk\n7ppcbkjmuk4\nzXmrYueNCC8\nOViadirUIp8\n_tBJcD9jxvE\nuSO45koeLhk\nuXsQ8IIi6YI\nP04IYEOIr38\nk8Do9tamQSM\nuZ0YGah7MsE\nG4lzPC22k8A\ntgg-Fay2zzs\nih_V1Ns2UFg\n_Zfqh2OxGFg\nQ-bDppEz23c\n-T0PH7Wv3eo\nKEoQM4Q-FFY\nIhJbjhlRPSk\nYWDTyG3z3VA\nPuCu1XUGntA\nwwQev_zC0y0\n0P4h2-R9Rak\n7enE0xOxDQ8\npIPr7nbUCAw\nKi6bBFE0o88\nAh8ALKwclVk\nNTJXKGOgN-k\nZBRK8rVHVW0\npfLTbzU0FXo\nFstG27JuaRg\nhfNvGT9X-7Q\nJgqoFj8yVqg\nNSOB8nt1Uc8\nhKr4-rNmLFo\nZ6vsW2RH8kA\nbT6NizTtXug\nijrCSknWjeI\nwNibi-NWW4o\nfsUKVpvzMHk\nhLbozjgBIE0\n-yG7Wp5-8EI\n2kymD_HxRfA\n_p0nSJeyRcw\nSXbUNuTQJds\nSwITnQv183g\nEQOuGXTYAj8\nGeqKdTZugxs\n-dUYR2apxdA\n10r3vyu-zDM\nWnZWACO4OOc\n0Dc0Oj08S7M\n0JDyXQvCsOM\ncAIHoTstrTg\ngXRw45jyIsE\nhtCHOTJBiSc\nI-RrVLbC-q4\nNxSdB2L-Ffk\nWCl3EnHnm_c\nsWKTV0ScR9k\nfpE3kI1HOWQ\n-Ot948zIr0s\ncNW7dRdPPC8\nf-vA6GMMKgQ\n6hiEMyCIoQ0\nWmOiz8rBlmw\nhAiiaFAJ1mY\noLPTh_DaPa8\nH8ToqWfFevw\nm-OaVzrf_vc\nzXroRe--2QM\nAFMFZiFr458\nfFUR02kaGTQ\n5AJvo1pc3sw\nQDdroG4R9hE\naaGlVyyFOl0\nY--MuIgwfQ4\nILLkD7hTxms\nqjFCVTpsIps\nx0Ev2qiY08M\n80sCD2p0W1Q\nY6B9nkrSuMI\nRxFBi3z1i3k\n1Oq6vztcjgg\nUfeogSVgTsU\nAClQyr2koxc\nWvITkVaOpUs\nTa2vBD-qOwk\nH-xjMjmrdl0\nW0ThLQIEwxk\n2kDPrNRTuQE\nI0jSE4K2jH8\nn3Ubm7iCzuA\njzzrFFivBKk\nc5aNkzn_8Bc\nCkN1FvtBg2k\ngUuOvBQoaHA\nxd1f5GeUWpg\ngPlxDB94t80\neRI0kASoaqI\n20IyieiS-TE\nE4sgImaJTlA\nmt5IvL1Uw7g\nP8zlYvk98gE\nKTpzQ8vWHTo\n0R_0E-YNBrY\nM7V-9UG5Pn0\n9j4v32pp0m4\nbnHKWNBCKQk\ngYMmTK1rFvA\nWKDoWddM0vg\nQXUXlzzOl44\ntwPFRVuWNjo\nZypt5adu71Q\nZptjN0wzIdA\nCsZmsu_-53E\nhHsWQA500NU\nXcFFaRpPdzs\njaIVHdFwqnQ\nGAsqObV4ExM\nOFPi1vG6A90\nfAenzYV3Cmc\nkTsFXQ2Y_dI\nQY3RIezZPks\nDIt0_zQY00w\nh-r9Q-YItnk\n-n4RtjEtFUE\nHTa0oe5Ntvw\n891M2sACu0U\ndQGlAzHgPw8\nTXlHKTPfLVA\n5s8dYeDZPAE\nRGF6Qyvz2no\n46kWbFAMHoc\nEqDd06GW76o\nTUzp2XUhskY\n1fsFQ2gF4oE\n0jxVnlRdelU\nU44_sEUJROI\nUr3JKxaUvUc\nfYKLuSKW4ao\nZtrhzVGMWZc\nH8zCwVOT1U4\nSX9tVVvLb2I\nHKDxpkV14IA\nIYITxGniww4\nRPl5MeXIM8E\nKI-GzP94V8o\nDDueSsFUqc4\nSXeVjXg9BFU\nUB8wk3MOgVU\nc_GNsQnPdi4\ntPgRnFg8ZTU\nxuVz2BPLRBY\nPhKy0fGOJz0\nDXdQoyWxHZs\ng0yYxO89lQA\nlPE1uBdcB8Y\nXvGmOZ5T6_Y\nbvFHRNGYfuo\nrv7NsGCDVDs\nmNVB-qi0qyY\nF0uwp_eoMW4\neqC9wr776KM\nHS7OG9zcV-M\n-nFHhXrXWzY\nvIwfwyjbP4g\nynwah7YV2LY\nurpXO9VLU0U\n2BuU0LMgxl0\njmmawolzwCs\npX0LbjUM5Uo\nUmAVyowgDVE\nRyR51MqOl5I\ncAKtpCo8fPE\nc0wH6YDfCzg\nv79foBIrar4\nPoLLgzdPkss\n0A0VANPUG-g\ni-9K5-x7_so\nd4Ljj8W1hE8\n_6FnlEiyZ08\nQBghpl5FZXk\nLeVEbbheUck\nYZ11hDE35QQ\nkiEe33aAucU\nhWRJQvuhs9w\nGt5xBpmHS5Q\nfiqJGHbv3ys\nE-bYTMU6Dks\nWjc5NqqF-1o\nXBPrLU4Zspo\nww_lUn3jUoA\nzBe5T01yBUI\nI0EUKDhQ7vk\nBwnOv84Uaf4\n1_BNy6W4sRg\nAabFChK-X1w\nenLijb7P9tg\naN0alpNLQak\n7s91-5542Zg\nFBi8SGpLTGI\n1wP9Mu1NKXk\nqdq07pa6sPA\nxq1QFVrNxfk\nUgjzHp4TVtk\nh55rTtbCy7o\n8-n-ybKQ_X0\nspAkj5YYnIo\nyD3r8xx3iX8\n-mHhr-aaLnI\nTVjIzlCjKcQ\nGSwNuK9xedg\neeXePDLKsmU\nxn3J0iYO7sw\nXrZN8Sy-z6M\nZYzQFudZ70k\nMBIIKCaK5PM\ntvy0nfXbStY\n8Ut9pZyyS44\nOgl0mA_15ys\n3OLIgEua4PU\nBQpfa9RZbTk\naU3KvhyJk-w\nZh1yLx3srtQ\nGIa5OfDBSBE\nDp5YwZCGpm0\nketh0g3CMK4\neUL9XgE3G4k\ndxNL9-YlUk0\nMneFTo1gRq0\nIqX6z6djbD4\nPunAKEccqyU\nrClviS6MMvk\nIA0v8pCN8cQ\n2PPNVF1tT6o\n1j4ITRCTJL4\nPCXI31d3vlE\n1PwmcgK9qno\n-CKzCdneg04\n7s3dzArIVok\n2ATYV1LOIH4\n2KOuM_aZ1-A\nxNGdLsWV0_k\nTxouT-qgqwU\nVhCQj6D3JQY\nFgrVh865bX8\nkFsoiAa-ulY\nQwrGZWHTbt0\nEgb6g_c7Nek\n9GQZ2hl5oQY\nBHQdl3iBhkE\neUELANo1Fic\nY3nUE1cWM8o\n_v5zFIqjEZg\ndyaqk3LFlBM\nCVdZXuc265w\nUeC962qKMrI\n6O9GrKXP46o\ndFxzdwS4yE8\nFhtwCGpDs-0\nTRDdgGdGfbE\nR1k_1p3mitg\n1x4SX6FUEUo\nBr5umHOm3TM\nZzBJxdyktNQ\nUG215AsHyBg\nkm7CMB9s8ok\nvj3mnCSJq7E\nGkTXRgNHzug\n4WfCOqrgbSk\nQvKGF4DN9RE\n1VGOy2dylYE\nLwXuIb6j_e8\nPxsbL4Q0Lmk\nGOjeFlHlPwU\n4-8adc39DV0\nfmZhcaq6QV8\ntURhk-5mDpE\noZ51e9IJjjQ\nZkPfZTLecL8\nSeOMiErBnks\ngKRyD4CSjto\nHrRSo3a1ZYU\nSyQSH3XmQCE\nmGGwDmCTha8\nCFQKJOXdXJw\n-fQs640Ehfw\nunrqBYYTZI0\nGuX7TUIGvRM\nglkk39pJQQI\nQFzkyceRlW8\n90KNvOsvEiY\nT6Lor5hg5nI\n0mtMkMvdwBw\nljGqb2loshQ\nLt-Suz8LGEM\nESvZ51pBN14\nMH6W76ILmEQ\nZxhqyHBujFc\nxfnmRVym22U\neVPIMety0MA\nkNrid4Vvxkk\nb7fFwDI39Co\nG_tk-vS61to\nEgXDPt3eW3Q\n5KeGGAzEkNE\nVP-S-KGKn1k\n3w-MGV1cC78\ncZcI8QATy2k\n6cseBu1zBC4\nQhGtm2E07w0\nls8-S57SGSQ\n1ccZkqYIluU\nDcETqjNSB4U\nq5VokxxNaHw\nqkIEwsirwBU\nfq-wBS0z4NQ\nkGK73er3UdE\nBnPQSD0Pg4E\nDKQXxsio-Gs\nxSc5s5MKarM\nyyrC-l87Sdc\nBctOA1EbnPg\n1V-vD4bHKR4\nqYwrQOJ2eAE\n5CuKjYdDd50\nSVHcUk9WH_s\n6mdAoQZkrjY\nFKY8Wsd3fDM\ngr_2UA-6hIw\nHc35xCKXOrs\nA6Mwoov-lGc\ng1RVgC8Vw0A\nhONljrAJrH0\nB1dK_oxzaX0\nzuKBp_n_o14\n4otU-hfAOO0\nI8xuqClrB3Y\nbGWyL-vJAn4\nIpW3QbVzNCI\nk6eXuHmQoiM\nz9P5NdzCcJo\n4F9i0gj9KKc\n-qSADHn4nqw\nkk8MNQHBJkY\n2oGfncb2usc\nQqVgAIcPfXo\nqeytg9JLx-o\njsGX_I6mFvc\nyZQYClpkJ1M\nhgAlSQ4Ckz0\nKaCyEft6EmA\nZ46LYLKuros\neN1XH8BQGqI\nrWvqkw0_xFA\nhfKhRRdMrVc\n-HwMH2_-oKA\n18ogMe0oYvg\n7Mbfa0caPBQ\nK7l3r0bdlms\nNbT7rgb2QSU\n8uAUNIySn_4\nL1Z7sGSUhaA\nD8e5MaEaWJw\nmFktba3DL8g\nQTI8XMmOjE4\n7okueIbuBDE\n2_g-cXgaDhE\nyK78AHB5dSs\nYmbeYlShWZc\nzOTlBEbI7eM\nI1LFslpgsRw\nx5m9etGofg8\n7O-kshviycI\nGV3Rt3A7TAQ\ndqG51nM9k9g\n8myrr8HPt_I\n53uT454cHiU\nF9ZeSn27MMY\nAD3JQD0N_iA\nm2lBtBvgiHQ\noeGwe_Y07_k\nhcIZa8FePZk\nSnjxkiSs1Dg\nGqc-VRIHfuk\nUemGzlKVwsk\nvR3yb8mNLYo\ndFIuG_DTVOw\nq6HYlg_dJRI\ne0lfNxwgszA\nxHd5cUGpJs4\nF-IumwPd6b4\nQe5bvae8I2k\nmDnYsc5SIJk\nCj71TWcfot4\nyJXZwWi2NdE\nj3WOgT1A0XI\nnwvUihSxHGs\nUFcmai6iKzA\n0SUcAyNL198\nwoboXYiH548\nujJ8talVp90\nERvEZwe88JU\nFIlBqZ0fksM\nYkBuZCr1O4U\nwoBSpMcgW4g\nb44FCgewbdc\n184hH4AknlM\nGNCOjiBvwCo\nILfjXR8rMgY\nnEcnNSQZpoE\nCR462LcwVBU\nGHWClE2g3Ew\n5wxD59EtYks\nm-Wccy-Mijg\nIhdqG2gOvvg\nhXiTQfzucK8\nWVqv9kKOfvA\nNbhfbT2aU0k\nX967_4L8pmc\nYNaTu-8atDw\nsnpoOWqCy3k\nS7gyibsEUAI\nexsURQ8bUkg\nhge2AkSJSIw\nNae0ywUHE-c\nQdDQrp0xXWU\nWSxjWLWu1WE\nHwYyKEu2_Mg\n1_GUmXl_dcg\nF5XztYH-X-o\n9Hcl6jzgFu4\n9lCOuDWaGHM\nrZRX4JMxQMs\n8XREKqJr9mo\n1lBbY5sLWno\n0R3pEe2OW6M\nwbfsRXuNwDY\nQU882zzREY0\niMOquId9FGU\nJtFkc9jD5KI\nIOK6qpQ1vg0\nqb37bdNexuI\n8YGn0l9zfew\nJXq2nnnhqRw\nfdSW39wQL_8\n9yHJcx89XXk\n9Eo8snaeDJs\nybst6CAzXCo\nZ9mMBj-yFuE\nlfrC_mA6o8o\ncNqstBuw5ZY\nTx-kB1KKLJ0\nNOXp0ABEFC4\nPVMnl4sBl8A\nqkfcZ4zdrfA\nvB-sBJ_DrGo\no2K5JzEAzcs\nLkCHcg-UOfM\nkQLYkEvyReQ\nfLjZJgc1nvo\nIb1awvls274\nTOSUY8Jmjzk\nqN7dJ2r3zoc\nP1o2faxmQYQ\nsGS5r7NK5ZA\nexl6XfbWP0s\nBShi3Dn0cRs\n2EWQ4s0Z5oI\nypEtxZjRJz0\nt8DHTGsC528\nHKUXzME_3ew\nPEU2sirKyiA\nOxKtn3THP58\nQtWhkoqRKqw\nZ0myXa48shI\nSRJsBidnCV4\ni7iLNcJKoE4\nBZjSJ6AVd74\nRHMKRQocaQ4\nflWMIVVknEs\nVdXfnWThrek\nf92X44rgum0\nJqoqnJ6VNgE\nmvTjdnz3s_4\n0xWOfczSAe4\n5Mx0JL_2YKQ\nuwHPOHdscwM\nWwrlI3z89Pg\ngKEaLU9m0Gc\n8iQfU3VUrOs\nLcjR2Z2iI-E\nDI_2i5BZcwI\n0wngG1BlZNI\nxUMqM8hl6F8\n_32En06MgeU\nFgl7tImKroU\n-rmALJkEprY\nGO4ExuqatyE\nNiOPGDo5UJ4\nk6YFnGzHfKk\nD1TC1n9lhXU\nF9E_PTTHvgI\nkDtabTufxao\n09oumdE0UFI\nRH3xL8H8tu4\nZhdlKgAakHw\n_oSK6l24buk\njVGNdB6iEeA\nCvVeJJ-TnK4\nkHRe9qdfLsw\nvbKfMbxFfJo\nwE4I9l7Sc_o\njWUnIBHVLYQ\nKhAs8aaZNok\nfUnQuA1z_CE\nTz4liX-da7E\n4bb7URQIpcA\nVqlqOiOST78\nBdYd8q4jbqE\nqvo_HDqOKww\n2OmHGM9zHqU\nkui9LWtON_k\nt5zLt-NZrtI\n63nDBr_Qavw\nr-xcvVWqny0\ndxfqu-v68IM\n7CmJFYoSgII\n9kJBc4o_3k8\nrNmmNleiY_4\nMAXHXJ2WgrQ\nLveQLUDjnaw\npWRCxdh4PTM\nSB_LjL0lUJ4\nPlwmOgcEry8\nG-guv9Pd_RA\nRjtmKIWa4tY\n85RZMIAL7vM\nmn5crhTusSA\nEroyjPcw3sg\ndiX4myfR6vU\nyL3JcykFL40\nFPBY03u-5Zg\nBFeySGJ75WM\nGY0xXOTwWoA\nZSL_Z4FFmjo\n6z1TOMdI0i4\n2QD3ND3XiL4\nQErELQ48OOk\nGJdCx-hCKsI\nW7uOKhmp00g\nXeGQr6g1i9I\nIe6YmUGcPYg\nlnN9r-mmKXw\nwFBlmb2beQI\nZXhrgVj--6Q\nthyfYONK0Hs\nChcCflTm4-k\nxRFVqsmbLWY\nV0gKBcEoVdg\ncTVafG4_CaY\nMQRZuEppgT0\nlNEX0fbGePg\niEV_pQIf3Og\ny4Eo2_YMZtE\njDP0UCV21Ew\niNvdewR9znk\n0zuRe3QwPG8\nmp8chvACVBk\nzGw4fC_Dxo4\novkiChacfc8\nzJNfkO5ujy0\n4cSZVMEi710\nz2QvrmvECo8\no-0PQaLy0lc\nG-fyxbtiDDo\nzR7e8cPlhzQ\nkWjZx3bSDHI\nSxztUnejrvI\nsOPwbePhOXs\nJ7zl9A6-xHY\naCaTMqs_Qsc\n9lYe-ez83H8\nBKR1-S8aRaQ\nWYliK36fyCU\nvSBQt-6fDr8\nUdYapy35qJ8\nBT5Z6_xe86k\nsFJmNKLW-2A\nV_tlFZCiIHo\nb-QlCUByMcE\nIs5sRHNIAwE\nsenNDipdmPo\nBeYx_CBH700\n2iWKnf3C8ZY\n36LnnBNcETk\nz2G1Ht59cpM\nncnq2pu4PlE\nkuVLtcqiPrY\nGacX6Le_uDM\n54jjaJTov6s\nGPJNP0RvWHs\nVNBzjYyGcd0\nEhsfKBbm1f4\np4IUUBVAUJA\nSauYDhRS8qQ\nyth5JoZKnGQ\nW98LPZXSzHE\nw13Y3PHCqVQ\nI8ltv_SROgc\nOUfJ9E9zfjg\nG6zOqkX6qTo\nM_y-ZHpKCqs\nAbyNlvzydeA\nXhxddKZYvH4\nytd6Q9IxEzk\nFAOoSmjHsog\nFk_NuqIXhtA\nnLykrziXGyg\np6XV7oYBMG4\n1pJdFkkeu0U\nvVfLenSAj8s\n4mC5CUTwjno\nqLwEQ_18_V8\nRpbUeRN_rcQ\nz2ZqFFFcXmg\nCn6TkV9mxmY\nvkj3RBOD3cA\nKAEUeqJRxB8\nNjjDcdIAK60\n0Tv6PQbWvJA\nhlx-FULnwJs\nI7nWj8Q_FgI\n2XV-EU8JlNI\n8H9u7P1d87Y\nPUXHIqGfkXs\ng7yAbv_u-FA\nkpS1Pghejt8\nwWrB-Gbjnik\nfWa-h0maM1w\nhHC_R7ATGuI\nwICMOVrSal0\nqZRbStnLn3c\n3cTyY36ENxY\nEiTYwecY41c\n5rvk07eB9wk\nbbVqciFRioA\n1AmiFfP9u5c\nwVP1wO_E4yk\nUc6tQH8yHF8\nONit4ATZmhw\neNnr60_UZtg\n-edZKfoS2V4\njm73CCe1e4o\n8DrsMeY29Kc\n8KRzqPxR5zs\nCJKeL-ziA_A\nrxGjeoSRNQU\nkQ65F_pf868\n_3GmO3aiBKY\nlu2-RuTwlto\n4kVGdo53gwY\n3ESS6HqOuoc\nUCZNyjhoINE\nB2g2yYkNegE\nU1ngzzlFqgQ\nbchPm7InHcg\neM3CovgD8Bo\nui3pnIeA_HM\nthhYv6-lz9A\nGEDL7dCxWvs\nz_hfmThW4fs\nJBNOsPP2yhw\nRGdgqkgcvCs\n4uRK1MPvUps\nTHaIWPlHvLY\ny1kqd_RgNac\nuZRTLpXXlds\ncH_nhvO8stg\nDvcLVg4rz-c\ng6q_n-SZg-A\nCr4KHgNuxcA\nCq_Fag11NRg\nuNSSfdkcppw\nPnffktauNZw\noK_wtjlQcns\nnpI-xPUygXY\nUpsxCiyuxGM\nPb3QUVXfKto\nW5_sieIOe88\nyBsFjC1fVx8\nt9QcyYlB7Ac\nET1bH9TqwCE\nlrViTBpl8_A\npRyH7gS__WI\nOn6-ADTS-g8\nRUJeDvZRsps\n78WFIwR9FrY\nt31U3QAkClM\nVbJgsN5PcyM\n5poOduTF5pM\n_DWgvYbpexM\nqoVuQxxeAl0\nXECoJa7AU-c\ni60a-KYSCno\n3QWd5rCd-R8\nCHyJRCF3sEc\nVvH6ZeCJNHA\nUKaGbPJZicM\n-9T4jMND-4E\nBB_1LSxIC4o\nfIleQPfCec0\nhEZKrsmIGyg\nats6Rg3WPbM\ncXjzLXjLBTo\narJc5qABgO8\nrRWT4FRDq2U\nSxtPzI76s3E\nTzmt5YLzDXQ\nKBbowtlzD88\n4g4fmiFvXmk\neI4FXLtPBL0\n2-Y-e_9P8ko\nDMUnxdly1zI\ntTsOHmaiMq8\nflOMk-bWIxQ\nIaAhl7maKhk\nSpZfI5x9PyE\nQcqrOIxjeOA\n7q5lFxaC2f4\nC2s_9Cx4AG4\neKmMFRdNCEw\nggC1uf1QTjw\nVASm7dDXDcw\nIFTljGCli5U\nb8ZW-98Zn-w\noh2MX0EftaU\nJfJVmzthD3Q\nqUi5Lo9SHTY\nlkAYkfIqivc\ndHwJ6zB8B-4\nKGoS1jrmgHg\nK1YndrF8GiU\nuAHjDGPOQEQ\nsE0hL32wswo\n1UbSL3Bri4E\nVUNpJBzAyXk\n9M_shJ1_q68\nZyl9lO3o9_0\nu9gzHfq9RsQ\n8IG_Y8BrorA\nxbhR3UYKLws\ndadFHEMhfxo\nu4bLh7SN53U\nWHFy_iSnR4M\nNBJhQqGxJBE\nIicsG0Br1q4\nZHS4xXmL87I\n5OZPyf-QseQ\nPvwjtOewYu8\ndcIVsX1-Aio\nupGmHcSsGmc\n88qGMm1AoGQ\nd90YEOlhtRk\nDDlHzP-SYFw\nRs28rq81pGo\n-ip57avHn8E\nkpjWox_c9Ig\np9shpHAh8uc\nnouLQZCXW4A\nrXs41JvueZY\nE303pbjYRdo\no36m-2TPwck\nD7Ax5jr6mDM\nthSPQDFYyiE\nXsa_dy0w84Y\n_yMeXMRn9KU\n5PgAKzmWmuk\nJrYtD7gSWsI\nPO8fJeJP8AU\nhEzyoeRuxYk\nFz9Y72jbsxU\njhz2fVM1rMA\njMAy36cl6w8\nXzWlhLSitJ8\nrU3GNIhA7fk\nOl5eFltyhLE\n1hiv8o-SRZ0\n1m3y_pIJ304\nFKwYBGdhUpc\n--aqjaJyZLk\nXrnUNfRvAho\nNsjUpOTLrr0\nepBGWHCrfr4\nIHVBdcgvTaM\nJtW17JUoeUs\njM8cy3uB5N8\n2mbvrOmirQg\nG-50M2Wex20\nABUroSunjEY\nvsPVyvwwVns\nSv_GcxkmW4Y\nCbB6CosDNV4\nY9nW4w5tHVM\njQPhLeyzkLY\nwreBOqv-y3Y\nR6oNHDPMOKQ\n6GAilUIUtpw\n0IyGdSEdk3g\ntOpPh1MQ9sM\nKoDrm4b6SH8\n2oMW26rEZUk\nZIOGfLuHu3Y\nrETUKp1A-xo\naQq3mHLZ-X0\nHTbSaYy2Bhk\nRFpNZ_n9rcI\nxMOzBw0mrcc\n9iPH8MXkPEE\ni-2EJ-HDYg8\ne2Odq49gEbs\nN3qEvEGFdKE\nGPdEP_fFQhk\niB89FIStq7Y\ne9vPvHO8Kp4\nokiMnLyCMbA\nT6wetejGqh0\nfw7p7tAdVuE\npUWlaORsqw4\nL08fJmbHcPo\nP8ROhP_3-Qk\n1l7e9BD_gos\nZoZ_4nNNn9M\n18QXG4aUP60\nGkkdbPYW5QU\nI2E8wW-YGBA\n3ucBVz_IFGk\nk7Awv1n438I\nXsiXAckgh6I\n_GsQYT-btPA\nxpkA68e5HN4\np5Lzdntomy4\nd66vE__YWME\nFPZ4yah3ROU\naeWbTffMq-A\nnRGCZh5A8T4\nB-NhD15ocwA\nwHNB8IHfHdU\nNAWL8ejf2nM\nrGvblGCD7qM\nfgRFQJCHcPw\nhD5eqBDPMDg\neGoXyXiwOBg\npPkWZdluoUg\nDvS1BdiVC7o\nRb5mk6TfzoM\nRZCFh9yDIOs\nuOPuo29uzFk\nze-GArhI0iM\nmj-34Q3fCHs\n7j9gs7xZ-9M\nRAFmFyb1siI\nZEliNNDLyUg\nnjyllF8b_W4\nrviQWy48B_w\nlA1bgUYjJ0I\nLxmnOxCk3dM\nBnmo8X2kwpk\nnuNQY06FEOc\nWiXoeYPz1LY\nIsgHQHIeiBk\nJc_h1ufAXYs\ny5oIDeR0YjA\nyPAPYhU_zsQ\nEkl021fmWGc\nQQq6L1Sw4Ck\n-mjnbKL7fHQ\nghpYpbgtLIs\nF656vZAFGdM\n9LiQ5MZKYUY\naJ7NA4hNNc0\nM3byaFhO18Q\n5OZbydb0FdY\nKdkEzfozXss\nbDT3nUjN2fs\ndzw9h7GnERM\nFGSmKV6K__o\nLTS4bKTgyik\ncf_0FH_2934\nSfQAxD8v6Mc\n_ZrJXN_vrBs\nPXEuRW2cOqE\npWhT-4m-4ro\nB96DjgGIxv4\nxEOHMxA4C-E\nwM-OyBwhuOk\nUuRb2YYEYfc\nUhRriAA2Kf0\nq2rT8XyVHhA\nPz1OFqEVi3c\nmaWca5IRGt8\nUuuyzaRWiA0\nqFiFKP6Jxoo\n_E84Vp8Rnfo\nGRjqtMFumZk\nHnyvaqsAcVQ\ntLadr2v8AAA\nWEJZDUTGV8s\nrCmp3o84w6A\n5USau0NMAxU\n6mQAgXT_lVM\nRdU8F4C9oDw\ntab4Nxd8GlY\nYMA_1YDqjYc\nIsG-tXSQRX4\n4dm-ZfP3fbs\n3jNEs5M1Sik\n7tg6TqW7u-A\nUp1eNda6Rt0\n9cySKHPqIjw\nQjUkgodriIo\n6OEA4J0sobo\nKAOlo7Ijo5k\nNNfMLLVwiN0\nbYUJuCsymVM\ntjRYZON0o9w\nnhm5xXXqzqE\nfU-ICxohwSc\ngpCFk7jK810\nKi5TEx2nIHQ\n0Ba6y1Y8JjU\nrMz7JBRbmNo\nrUczpTPATyU\nlISBP_fPg1s\nXeO3jMZphhs\n3odMTPuzLwY\nniul8Hy-3wk\nd4ftmOI5NnI\nXCHKYNFH9Lk\nwUJccK4lV74\nJFo6iLDNzX0\nD9MS2y2YU_o\nI73sP93-0xA\nDyYuDAmUqRk\n0PIbNyzb5YM\nel6nzbxrsD0\nIThWCij8W0k\n70gIBwjO49M\nshehrh353Oo\nChPLYyubXiE\nnCzYHB_8hXU\nZoJqs349ahs\nTJmgMmjx2eU\nyPg84oVPnE0\ne72atw7hctA\nqcdR-kyqqHs\nLX8mxeGuqi4\n6ZSsIZ40GAQ\nuW7Pev3qG1k\nTHPVDNnsVT4\naU6KHvuvxBw\nih0GAi4HWwA\nvbbHaMTLrbg\nLMQd7xw1Wf4\n5pLpIsdg50c\nTTUvtnPvN8k\nIoavfE6TCbw\n-9DrPi3ki0g\n_m90Rm0RX-8\nmoYXL6hX8vI\nYr1lgfqygio\nmsaelEZ_eEs\nxrJkcV4DGZ4\nxRkZAfoaEw8\n7ke8XUZSYLw\nNJIjNs_s2NI\nUXK7kf1wmqI\nUvJ8UDYipAg\n_5p4QdtkbC8\n2I5V3zd1J8M\ni5ogNBaY2BY\nN18AtSAxJ1I\nH4PpclIJZHA\nioCaBQBjEBU\nKuMy7-yMXO8\n1fxRMQLYRWs\njnN4PnoJ1vw\ngawe9W5HYtQ\nO6Obigg85oo\nkcONgsdSLq8\nOVXpH5cKWf0\n8jN4i-6ikWY\nMHpGJ-jtGy4\nf4vVtsfEMRI\nKFASQKT9JSs\nWi41GDMQxr0\n0eQBa4JQzDI\nJHACE2LTz_s\nocyplDqvhuo\nkHTAJHod8-g\nirkGAhW7wlQ\nf20aUH5IG9s\nMIjkFrmSCYU\nJkk2ai88ED0\nVyrr1vSRYjs\nARLZaZd3fAg\n_SVAzrGlEmc\n5wRnpjDfEz8\n7Vhxv6URu5I\n3lqYg7jpjfI\nm_KtsgEoK4Q\nUm-Nj5FvfE4\nEeYI0V2j12g\nDcwhTBEcbBw\nBLFU01WKeBs\njbeyKcGqxyI\nvuJrsCBt0rQ\nXwmvrx1wq4s\nnVRCznRsCgY\nic7F0sCFcZ4\nT3iSphEl9WI\njVS8e7I6Co4\nclP9p1ipHEw\nCQuB7dB-elg\nm9pdH02FxPY\neSDTJ1sE29E\nqU93Cguv4W0\npqzMo6SfXX4\n1BimnTWx1b8\nntsuIs20RW0\nKKOR6WC_fUg\naPeZmPcpiu8\nCqc48kDMG0Q\nJ_L4nLBweuQ\nESSsStp3pFU\ncG0ZIxenJY8\ntXNMNMLQzwg\n0U-kaLEaThU\nQR4x2_6qzXg\nLf93YLs4004\nJcWawUzwoL0\nIvagCOQJuYg\nq1ogthNk040\ntdvq6Usjydg\nFOYr5wApG3k\nV_qYvdPSRto\n8Fgz5cARQZo\nmqJxvhBThw0\nfEpjHtkttYg\nLMT8UN9bSiA\n2J8mkHUsiXY\nI2JSXKFWqGI\nIvDNfFVpvZI\nGLQiskRb02o\nIp7GGf2_b6Y\nUY89o4QFvQM\n5FcTzH6A4a4\nTstteJ1eIZg\naofM4j2teCw\nKNby2wixjzg\ntCFb_FossHk\n-8CnljMrH3k\nQimMZHQFaXk\n421eYc8zCtk\nkS9NLX0pFVs\nlsOQqbPYVHY\nAac0krsfzSQ\nPnbVXrBlmJ4\nDMyBC0gLSgg\nnAp6q0q84vc\nOtXieOlT7SA\nvldYVG_5cZY\nWV12BpbBrro\nHEYktlQpnGE\nrrzV0FvYypE\nae6HngmeUq0\nuB4qHneHB1E\nAts9HUDVBxE\nej_hfok3bEc\n1k1r2zFnwQc\nmp_oRA5-HLM\nLNqOTIBKycE\n0vXx2vS4iC0\ncZZJMc6QPR4\n4WizLeIdckw\nhRBkyOT8ZPk\n07rlBwvlBDk\ncKe4qiOYFyM\nrtQQwsPJeBY\nfxYkJbBKxZE\n12wHDwNXBL0\nv-WZINgHnFQ\nZpX0rril7QA\nIIBg9UQ_mMU\nXgBvOoE5uG0\nI7XHygPKbYI\nYOhPdUMzXjY\nDJcTG-VnLrI\noDA4sUtM9B8\nImZ2LrvQcCY\nI68rpTRe8CE\n8kssysjyPl0\np1tcs_fTz8k\nwKbZcaU-83E\nrjsre1tcGWU\nyaxDM67F72o\nV2NGM0LYqss\n1ZA2qfP3oPc\nyg0yDvEqfw4\nIx8Gxp7XlDs\nviSCkcVXoR4\nuSYD6YSaKgQ\n19qTZoeOEZg\noEPNSzLHZ2w\ne9LJG1JcXDE\n1l30kkPQfJM\n7JOey0CIgMM\n1idxZC0VSxE\nAYWEjOf5pBM\nS_FAk6ykdvw\nafifn22_IR0\nMLZ4KzVPlHM\nfWallK7KgrY\nXF-736UPy0k\nlOwjq5Cuo-w\nWCDmhXz9Gsc\nsTWdAdhTfYw\n09-K2ec8lyc\nxV-Sj_rjJjE\nsrJAamXGepU\nI7NtDM6eJq0\ndw9seHSkfw8\nTLhaRe7Wvww\nnAZi4yusqlk\nkpzlCDIwzEk\nV2j_JLlNU-I\nRY_kXET2cyc\ngbbnGtoH37o\nqCG-yxYUgJU\nKs2OUiW2_QI\naTJiK1i4iEQ\ntyoB7bjdzgE\n8pvAI1uDW9U\nOBuai_Vg6BQ\nMeY7MlJJOdo\nEEF7cXH7BWo\nBl6eouVUsCI\nbNg1XX5ofhw\nMhMqjcT7frc\nYXQ11lY6v7E\nczU3M9Ye268\nfEocj1eLsmg\na_i-mCZH5bo\nrZlzxsrv4ow\n5evtdZtPixQ\n6UKeesKIuZA\nuiuioAkuDro\nzVw5a4OjcIE\ngGmzT-Km9-4\ntzybulrxn3g\nWT1ae3uyKmI\nyclP414CLEM\nmmOGHo7MYK0\nHUIP208nZZs\n-rHnyOJuB0w\nV9hO8rmmaXc\nJG7S1-DC_KY\nHFWG8MMnr3Q\nqv-kBgAcyUA\nz2y29L0uG-U\n9sngqjpu920\nz_gsKwtCy4I\nCkgFvisOr_o\nFEEIJNnfoVI\ngt3ntYidpvs\nVtW2yWZHaO4\nOF-1RqeBf7w\nfrFwwg5GJ4A\n8V18ashYdDM\ngJGMeacAmec\nA0mUARG3EzE\nVvcANYZCseI\nZTo-aIIxihc\nNnxqVjeZzZw\nFAaogkawcOk\n5BkF6NzmHTQ\n2PdWkXbnArk\nfqDTy6JWcqE\nih2vstLiKps\nxsnWRnOdpS4\nMSIKLnc1CSQ\nPr6lspmWBQs\nrMlkN-7GRDw\nCpdolY2GNYI\nQznOO8Oo0Aw\n42YiyEjitsI\n9sAv5P29YIY\nQkL9783wNOE\nhBXcQhkyRE4\nv8pFeR0jO38\n3smxtEacf40\nFDDEVXimR2I\no0lDxz0-Ukg\niH0GlpUQYJY\nKrIUn0qTaCE\n6f24cpQ_Q3k\nvXrH5Nk8r0U\nDdG74P7j6h8\nEBu1PyU04FE\nBgfcwELYxUA\nOH1mI4-LqHs\n858FWgtLMZU\nAhaulXxlqCQ\nkjJUffVZtDs\nGsbHL_lQy44\nEEPTRC2OP4w\nfy9XNAkyfoc\nCRnadHP5JOo\nyIj06I32Gao\nk95b72QHu60\nxsrkNeInaiw\naVv3r2pUtFo\nYmoTJu2iOfc\nXhrT25xehqs\nHEB1OaFSaRg\n_yotZXdH09k\nz0MOAFFBXEM\nfNNMKJ1f9JM\nYaSPWpKQzKE\niKn6FEEToy4\ndLgbWZYjYfU\nifPpI0fXMlw\nPWjl2vignic\nQtJwMKMz6-M\nPA3kETvUXJg\n2GSGR3yaFss\nirNr2fMIvTQ\niX5_-FORI1I\n7NjHdqTSahU\n0H0br7XdsYY\nF_NkBmFzs4s\nc4S5JKBUYHs\n3HtWFx3oHTo\npNo2v1jE8R4\nF2r8a3juyr0\nj9JfUXYQY2s\njbXNiAQHn_A\nWVE-c9ghcww\nsKnZBUh-Lx4\niMIWQRhrAmU\n5Ji_OS5Q17s\nZ8GFmshpZ0I\nuMp_5iP13r0\nN7FKW_RLs3c\nD-NH8NiKb54\nrKfcW5cTU6o\nFCMMjNlNSuc\nUv4Wpz-N9Gc\nbHMka69DJZ4\nrry383W_mJU\nzS6OX5d-ZYM\nqs0Fyp2bqsA\nEF2WHYOjGhE\ntCLO2N6IqJc\n90vUFwUp6mw\nqc1k6uf-Mbg\nw9WoH1MlgvE\n20gzgK-Z5Yw\nYLID2odh-WA\nlpgQU4piAYw\nBRHFpsNB1PI\nGnRb5AHOcuc\nhwN_h9eiy_0\ngJDosSrvlJ8\n5yCSPi05MyA\nys16MvJ2XVU\nQfS7XUWUgL0\ndEgTjVHmjdc\nAUDCrt3eXyc\nJb0_V7JCbbk\neurjNgZtg-g\nboaKhP_0KwA\nq3CTxWUxHUg\n3-16Bov2JfQ\n-s0ov88pD0s\nFuzefcAKLmY\niL1JlXnbnt0\nelng_KRvuqY\nani6MlnXj2g\nnBnICWrKboM\nWbsZeLsYgGI\nNus1mepMrDc\nRP941IJJEx4\nqFbjSxE1xzU\nJDC1IK7TWZA\nIK5-KZnzxwA\nIixTpVt9Enw\ns6WV534Sfss\nyM7iQ_plcpA\n0dsEkpDiwBQ\nnXmtkGrPEuU\n1p8KG7IdzPM\njKGudyrV0v4\nSqpBUHMR99M\nVt-VF8GzQvU\nSrbO1c8QBSg\nAqo9z6lp4GY\n73b7dIqGdUg\nWpZ4kY3AJWU\nX32pSJrgF3Q\ne6E5v6jLGpM\nSTKWsvhZSjc\nhaN_gCgewXQ\nPXetdfRsmwk\nEfT-5v5YIt4\nYwqlCZ5mCdg\ndlhTO_Pqq9s\nqAZcl9BFd38\nAQUEnmFhk7s\n-CyRDSP_b5U\nCR8tgmpmgIk\nHuSM3bZf0R4\nRL6JZfQq_qI\n-IZLCY2_esQ\n8BNvCu2iqmM\nyeMemdNO_2Y\ndEHht_iK6qY\nxK_P_l75a7Y\nlM8xJqeAEGI\n4MyVJn56UFY\nCaGEzKJKMTs\n--b-8xt2PeE\n9knEvoHQfEw\n9FqZ2BMv_RU\nN5L2PXUdQg0\na1YFvMDu0M8\nx_9lcdX85Pg\nNTGOA6lPP5w\nN6CNJBPPVyk\n7Zx5tpFmv9M\n-34RUyP-DH8\nG6tC5Mp9NVA\nGqbrt_dz_TQ\nuq4bRVYBdts\nCg5dSosn_fk\nzZab0Lq7_vU\nQKq7tIL9aOQ\n4iNd-1IPrGI\n0zfQoHORIFc\n_IdlZCqJ8kk\nCpFUyd_7XIM\nTPESLZ0sGak\nN-MWa0s5iFQ\n6vjDZQtAKuc\nNzbdfpYUxNM\nlVZNAyNWcgs\nt3XiTgsmyZc\nIjtqQ-ojgcU\nRHasf1LEG3Y\nwrRkC8RYqMI\nFmOvzaWdpXI\n1UOLqmhi3AE\nESkmmFHikgg\nGaNKOew-TLE\n1nmWEA68h6U\nI-wCCN3yowU\njxID8oHnCW0\nxHCQd9zv3ak\noZnFQrIavwc\naTUTnjUBitc\nRKui0n6Z7cU\nF1hMkfopHfc\nhuCdZLvSyBI\n-HI25-gfvxE\nF4dOAIo0rrM\nTAX4AOdqFD0\nwCHqch4ILBU\ngBjC4SgMKDA\nxf3htc2iZ9Y\nmEPcdSaEXEo\nqmzYvuFtlM8\nh5Qri9_giqQ\nMfBr9ylnuX0\ny9d6Tblt1kE\nTUw1XgBLILA\nhAnmYHMCkRQ\n_j_ufc9wHmY\nRyotYUKsVyw\nZEfbID-2TlQ\n_qfIfbYkBUk\nl51fnzJxYUE\nZo70vB9nubo\nQBMv724lzZI\ne3mwmwPhr08\n5tSi-wyuccs\nvbUTbqwKtEE\noHeh8nSghcE\naDCXE4Np1OI\nOoSOmcTZ1ok\nBgUQldQC440\nByLhxX3WUxY\nWEP25kPtQCQ\nqf2p-tkn7cE\n5EEMxJOxXr8\n0yKd37DXIVQ\nheeS8J_KFt4\nccyYHEuCHKE\nAs70qOtE3Cg\nfcnYQxHinu0\nDX3oTDhDOXE\njawZFND4Bfc\nvfutImUbN7M\n97wa5FUtuG4\nue_EAEC12X0\nXh-8LVuPArw\nRlOcas4K61c\nE5aXYsk787U\nRd87CKvUHjU\npTqtWm_DTKk\nga5qeKd7oxM\nnOpwufXdkIk\nBtTX4ExS5sk\ngNSs_gF1T_Q\nElD6Vos6Jbk\nbO7iMQGQjhY\nNnrweogniK0\nntNMz754DEg\n-QOahlrO8Yo\n--Jiv5iYqT8\nk2QekuUhgIM\nBoq7rlWzVRI\nlxKvt5Z9Bok\nvUuAbRVVZwA\nGHKtN9jPK1w\nnDBs6ywP9ZE\n7mGr4Uc7ebA\no1_U-Iem8fA\nkk14nhuvBIM\nSyNzTdVQIno\nT2Qc-56h_J0\nvMUONm4ihP0\ntw6zV9CtczA\n95SKqMz1Wdg\nXob7w4hR5Rw\nMpFrgOc9KLU\ngFb8e3uaeIg\nOhO7kPNJJn0\nR84dKkPAVpg\nZcD75L4QLrM\nSTrE338cTBk\nfzRk8ovZ06s\niFm-KZgioX8\nL3VyRESBqek\n1YmOfCZ3ZIM\nEzLXmzcs1Ho\nvuR9pDhXPqk\nHLnNY2KiQEQ\n94cC4uVE_HI\nS58poUaNwiw\nA1p4HnyG3Rs\nrgVm_KasYQc\nVuVAsd9jMjo\nbMg6mfghJHw\n6WGP7utz8uA\nILbPhe1Wg9U\nz7Zevt3riNc\n8fRq0mDBzi4\nYC-2vmyKkV4\nXYiiAHc3CXQ\nTsyLQX9NH18\n_YfbSVO6nz4\ntuq5JMwWRSg\ndt38_iS6u64\nhV9ArqfKqw0\njZYr6ALcDy4\ncTOlg3u_fZk\nmnEpL-H7pms\ntjrB1BtTnB8\nf15ob_n_tfM\nifkFfWmEc_Q\nmILfbvj0xtk\nF37WD6OCu7s\nkWz4LQXH6bE\ntNGuXckF_sc\nxvOaMA9l4Sg\nMq0xthZjW-s\nee6jqUkxkZs\nQBps5R-4JrY\naSZoCaL7HIo\nTIP0eokPc5c\nNUOag7luIOE\nmv3qeSxmp68\n_Nz64htsk9I\nMmIk10arVaI\n7xSB_efH2N0\n5kopF-bCBC8\nEqDntjV9GIY\n01tx72R0gP8\nz67zZuCIL-s\nj85FRIQigrg\nZ1N_U1c-fUo\nfkC99C2w4-o\ncoWFeBI9XoQ\nnZWo6dP2zVw\nKKiVFZcwx6g\nSxCUyc_brKA\nKvAVAKE_pRQ\nQOWkXpnwlek\naumRE2Eq88o\nEMpPWRLRQZY\nESmtdvc5zk4\nWwzmDbzboQM\na51EYR5AeNk\nXL4aLIj7q9M\nzMFxbMh7JYY\nVRTb5eck250\nYk84fGy3q-8\nzdSMdOcyfOU\nlOmeZW0N10k\ngrn62a_8fZ4\nQWepLWTflW8\nxGugDtX55CQ\neS47L5yU2k8\nUpiqcjnWZB8\nL4PPqiuDNK0\naF_Ijr621tM\nRj9fUYRr81A\nmFoZz6PG72k\noCHEAaCGj7k\n-9UJGi_b2UI\nq-hS7nZ1Ok0\nTIQP5uv3D3Q\nH02B31zvSKQ\n6NmCTA1AK54\nusyxBVGLU74\nq6nz3GR5Ano\nY-4pm9C-jeE\n-QiOCO5-ZPA\nVSnBrgm2PM4\n9UZ8XOTp19c\nVz6AlIZAe2s\nnsyud-sEm-w\n8O06gqOG3fE\nePhMSnfYanI\nIYmiSXEQ7ys\n7lbPHodrgC4\nlI8p0rzq2R4\n2ad7SgwLNXo\nBHJ5KGh-Xnw\ncBzuWSSTTs0\nPrzgybNYBs8\nOA-SQ7lCV2I\nrny3UdYPDn0\nw78NFd5q_0k\nH44YauhtGPU\noAJYONuey_8\ndd_IWBNSKY0\nb6X5bVMoCJc\n8OWCY47wOAI\noLLfx_GN73I\nhF4ErLUEW9E\nuzcyJ9sN98c\nxN0R2xFmcYU\nS3HubCxt0hM\nY-szf9FRi8M\nqzkFTptrfbw\n6Wk1Sob8Quo\nBZjqqKqaw60\nn13FhFrtu_8\nD_84bHFra4s\n1Up-oGfiosE\nEzxET3KpvSM\noBfLI1WWrAI\npMrk3l8El24\nBOwOiWDD_SM\n0XjLzDVi03c\nkR8Xje2x0sA\nb854qv-Z-ZQ\nVH6D36VQ_uo\nwRM5Flw2nXY\n7AjmrbE-NTM\nYG_z4RpxKWA\n8Qklz6BqVxU\nMgf5jaQO9sQ\nwqMPRiWvJEs\n-QyAhZv-o_U\ni_FoR7ZV2EU\nCatwTirgWZg\nlNla5rf4idU\n7WXKfXCiWW8\nsXPBgnBxTFM\nG5qPGKpTzXU\nVhc7iBAAawA\nqVzfIUAzda4\ngN1BjYlhKvc\neFnw_27t9-o\nS8Vu6A9LW20\nk2PsfXZ3wyY\nTIbZNmvyLBI\nxEAsC8A1Ins\nvmm8P0V1W4g\n9aldDI2WF7g\n6w0F9xVXn_E\nOurCnuyC8zo\n8l7lDn2hUTw\nb_FQEg7ScU0\nF0KcFyR2uAc\nG21su-YdW5k\nPPNHvoOU1kE\nHehUdDtSt1U\n0W9jZQetuB0\nkmigfm9ZONk\n87YM78J6ebQ\n88UgHHl7W7A\nYADVuSMFS2M\n85WDSyWnTZg\nsUxkumq9UJY\n-PWyO04IJYQ\nCCGpFb4lNgI\nm8CkFFna7Ew\nBFaNTh5aqls\n0iwVPWstvGo\ntPkmKcc-LAM\nN6mFvYxmiM8\naAMVebfAZ7I\nzD5BdMcO4yo\nZxcUzbEJx98\nw4RGgEi7T8E\n-3upqhXz0nE\nzpFlShhUcIo\nXadVTfPZ6yc\nEYh8GOoyv-M\nrVjV3FNsMtk\nt78EgRBYIh0\nHMUnEpn0n9U\n1ZpqDhQJhFA\nTEpJFWUw2ts\nO5TE0yg-mEA\nHysSQiXYjdE\ndp_aLWPZY8I\nsEycv_wZaIA\n0VJnFDz4VP0\n5vvtNVnzxaA\nCZZEp8EaO6g\nJjSpGeBqJR8\n-kYzHmPDZwo\n93lz5IE7Z0c\nscDWdIV7Fes\ntoT3JGFEwmw\nujJJyIKIAjg\nKAVqLKDwSOo\nt-JFogFsPHQ\ns1Qz6N4-tEY\ncNKYmHmy9OQ\n2tzvi3Xp6sw\n4H1Lc_JHF7I\nUsKSjKrIEq8\nQCJ_a5AYVEY\n_uRGjnG3G3o\n4lNoSUurdKc\nLpOc7D4G1TM\nifl_AGVJee8\nLJq_hnR6CHc\n_s5fgacYzjA\nkMRM-0GvaQk\nTsi-yH9juC8\nCglQW97hCe0\nQxK_EsMjCQE\nkCb1R69h92Q\nEKdQ1jASEmw\nhq-vTEalnj0\nYczVaT_czPE\n2Y41IMoi1TU\nG1x0zmX-PEw\nprLok_8YD8w\n-it68CFJkNg\nP4fFh-wHWl0\nyHf9QshbQeE\n-DF-MgSuhQ0\n4rwJ3BnGrl0\nnxWj-7FF4CI\nuzHwlt3dmmo\nNGeFA2fWzX8\nkm3VtR6mqmg\niz2ro0h_TmQ\nAtb5LNPuxyU\nY92N7SFJ0Fo\n2Pkky-Dncw8\nJYp5uIodwEE\nH843vNJgIaQ\n_vNaSVn6qSk\nRKn6FWvaVBM\n2pVPaPFm5iI\n9I1aM1EQZ7o\nZ0iCcI1Owys\nAmAklov1ewQ\nU89NOSQdgqo\n-iuSE7NVc8c\nDegHehO_nfc\n16hnbNPCFBo\n_tYTcz52ZB8\nPGU_sBj_q5g\nb5whTkIQ32c\n5QGrgYkudfo\nA1mYM5yA6oI\n-e_vbnd9bV8\n5eC6VCiJYq8\n0Ihq2_hNnX8\nXG-c6CmPo4k\nnxvXYa6n0pY\nVGGxaRYEfO4\nqG-B9IzugQM\nrcjujixxfdY\nALsbjcqNdRo\n6rAcjVEXvSg\n8jkM1zBTJIA\nKYQELfxxAck\nNrLSAjP5Ibw\njOf4crp-WVs\nUTEUIdcqSfo\nqlJ2951IShM\ntXDoydLr3YQ\n_Q9JnjhXRyA\npzeu5peH2n0\nGBXYXp04Los\nAWmHgNv0xUc\nT4Z1mnjLwiA\ng-bxs_daoCI\nI64nwvRliGY\nTEq446woKOo\nVxwsEqiptwo\noL8QGyo50_M\nqJkMktF_QUE\nbTrFBrULLmM\nv-8bLcH0iD4\nMJBoXI6pVQ8\ndZt3TeTClV8\nJg7LxmHGNd4\nHa-aaENx0Fg\nEuld6YN5liw\nbfzJMOBenVA\nS5-Beq8JVsw\nGWL0Cj7bAf4\nbTx918Kpg30\nBXLhK4ra6tQ\nM8gGpyKPAFQ\nXGCcothBtRs\nmIpX6PnT9UY\nytCAMgdi9sw\noLO_o48BejY\nY3Y3HySArOU\n79tBbaqvbjM\nLmxUk-KxjoI\nyCIgtidXAnQ\ng6Hf6Wbk6B4\nzD_yR7ixRmo\nHzLYedqOPIY\njFEvKqbayIQ\n-x8fqJDLsu8\nax59TmvzCEg\n3GiWce_xXzA\nx2W8BqPt7mI\nxKffjQ-iU9E\nn3BgbwW6PXc\n1tclZvb40QA\n_nmYaR_ZllQ\n9AmyJhS8WWc\nat0yN2HBrt8\nfrE9rXnaHpE\nk6TUgccyzNs\nAjmbgZ2wZvk\nlPr_GBMu4O4\nytTSb8302aI\n5Bv5yv0n9Tc\nFbt2UUthWg0\nDPl05d5mi54\ncDoyywKt1_0\nXsa1B-RyyXQ\nKmdBHOUCDnM\nlmlX39gM9-c\nUwTKqqfS8FQ\n8DbzvqOPUIk\nbJuDofIoW34\nmeEN8tfT7b4\n5HoL98HNOr8\nsAtsZPmjExo\n6R__cRZAVCA\n8Kfr7BvVmlU\npGZtlbYLpck\nBvjorMEnuUI\nEIzFKMtPjH0\nRbMtPUPVZ_s\n1w4rZE1A-fc\n9O0D63xWNLE\nreKMIuxFqzY\n-RuK7XKbefY\n_3w-4zC9FHU\n92YrRetDlCg\nuYWlWG9d4LE\nTAZulrjrEDo\nCTVWHGj92Xo\nm99cHo5NBZ8\nwW0WRqnLYMw\npGhBFh0cXRU\nZc3wIAs3coU\n2FxpNCvBV_s\nYGQZwZadSfI\nSMuET3l5cbc\nE5vZWrsaYWU\nCY2ruk5Vkq8\n11tbL8l5Av8\nwG5Lt-pineg\nGqECd_A7qhY\nLDC0ii3Rwww\nzV3AZFuaJVQ\nyQ0FgE-WKi8\nEPJGFrntGfU\nHvIGrLYKRh8\ngmbInMp4ioU\nSrJEWL6QHzo\n_ItWcGtaJro\nUc21Z4ffSns\nNHRtlXDOqOU\nzgQsfeosMf0\ncNiuEFffzf4\nJf8OtaR_9MM\nEkptyQec_LM\n1TqRcAl_928\nixYWkDAPPzA\n2L2dyDpd7LA\nLimvO4zrETM\n1zWf02vGl3M\nz-3ETV74ygs\n2gzMbWXWIA4\nbAjGVN4f6wM\nWRF2fIzwT6k\n7SZs2Qr0zvE\nNQhm9xmVHdU\nat6F59Zfqlw\n0NRYcIcHfV4\nQa_hiWmXFUA\nFlaH13fnXk0\nt-Ojbv20L80\nORQgPS4lxmg\nedgiUq5ymRE\nAYS6V3rDT6c\noceYG6ogT_E\nIGVwlBTTqYM\n6sQWxbE2RAk\ndIu418Y0TGY\nQxcCdLaKhd8\nLjiRvVUmets\n1WnfdpZYp_s\nulGMlIZNr6M\n9rj02jWyo94\nbLsnl_fdBoI\nyz8GjHOA2xo\nkHk2-mOOYQg\nMd12rwlpeFU\n0oxx_2M6Ctw\nylvCOlF5RLI\nvZyIBlDO-E8\nuen_1bL_TXc\n_qjEm2ll0qc\nxby81m1GtH8\nWC60ALoX_Nk\nu455yxBv35A\nPf4RjsdJE0I\nJC2TvxRIR4Y\nmEzXLJL48nA\nIa8LqyDsdbo\niEattbpjGG4\nFgYr00Scelc\nJr9tBcUO68M\nuu4tB54Uw5I\n-Pf1f0pZdnQ\nLruyfJJT7qY\nBLbh7T1mPZ4\nxpXxwJNaZDY\nzQTDoxrgBeU\nrKHW39mShF4\nDh__Anjhn6M\nxIMi15Erjvo\nFDwpGLz3Mr8\nqkHSTpTqlug\nmYS3zyHIxqA\nQAMDKK5sfd0\nL8Ig4HbgA0c\nk6_TBuGcwzA\nWjDLin6Egyw\nRtf8uPmgq0A\nTrjLNpfDTi0\nP-GgTCUYjhw\nQsuIp03FENc\nVsLUFKIRr1s\nhiHZWeeoEUg\nmWqGJ613M5Y\npbzjsBcOuB8\n7_uvEuNwUj4\nPmFEdtB8eNw\nGnWalWAmryk\nHdcT33sKbn8\nX5Vb_FUuRDE\n4x_MfkJvgbU\ncAYVS8aRQ1U\nMjkt4UgcTmg\nrsyw13yrRoo\nxO7O6zwFZ1k\nxfeLsPRl3so\nurnRVr1P2bc\nXC3yGH4nETQ\nlPMSGTfK4Aw\ncJOqz6CPxLY\n7eTl05KHwFI\n0PdeHy_87OM\nQoJrjjy0WeU\ngwjAFSu_VKM\nD0Gxk6zCSFQ\nz_Bx500h-DQ\nyVlOitZ19Wc\n3wft012b2tk\n5Mb6xTtmtuA\nkQrU0KRsCNo\nsL1b7ZnItoI\ngVseixK20cM\nAok-54MlYFk\nKU8y7u-xqHg\n"
  },
  {
    "path": "data/metadata/youtube-dl-dump/2016.csv",
    "content": "FGL4-sXko9w\n5h9E5SmLCVM\nkjtPUnPa0LQ\nlpod4qQzO7Q\nA6PpUgfZcRU\nsQA199D8U2g\nBIdtUDoR5A0\nU2SdWVntd-o\nyodVQ5QAc88\nS9U3ajjpH5A\nfpK36FZmTFY\nTkjw0XB9Xuc\nBKgd8Q3X0AA\n-IV-ZZwXUkw\nCsukLjjPv-U\nEQqdhMcUSAw\nxihdBpPICZY\nCgmI90T4Efk\njNPBfvcLIMs\nQ6jbNsSNxf4\nqmJiZfD6n9M\nCjqKicoWqZ0\nuYBCAaCGGcc\nAYxHnjsJOik\nnIsM8bP-GHQ\nbyrLv_402BU\nm5dfATd_ZY8\n56F_nTxTQj8\nmGJ-2YWYrgE\nOGG3HuI6HcY\n2pFBwbyyNac\nvf2EeAvsHAU\nKJ7Fv2QvzpI\nh6jcrXOs088\n0Cpa6Zn7ffA\n66f94DU8ab4\nMOA_WeKu76o\n3JF7tS3pxmc\nm8A9XOElA2o\nyQYUTyaODfE\nxPYQOuxYES0\n4EF1zYFHbus\nOa6OoTVXG6E\nHcpDdWIaAuE\n8Yqw_f26SvM\nLIYNk4ARUR8\n5wAlQf4WdiE\npvS3j8VtanM\nXB401RfGMlM\n1Fxq_n8e1qA\np03u3v6GF-Y\n1vNv-pE8I_c\n0JVZ0bE8hpk\nDujyJ1EDft8\n8qkahQVFzMI\nzct1tPK1Zk0\nMMNICLfHE3M\nm2cUbp6Vkfs\nyvD3X3RcK3Y\nXvZhDq1NRhk\nrnaCi4rBfqw\nN1HQEIaRZxk\n93Kzx7azL6c\neyvwHF7NIGc\n7lQT4xGTpIA\nblWwfkSF89o\nGLOcJyFEXIw\nEbMddMJU97g\n19j24of8C_w\nSEQuHP-wL5Y\nkJ-wkP8Xm40\n7HZj_fM4yTg\n2as1htsiNxY\npjJU7RkSrr8\nqerH8bjHVnI\ntp_TZ--JHEA\nRLsGDXjTW2w\nf6kcBGKxGtE\nF-q3C6jSZYQ\n3nDCPEcEuPs\nAGY5gNpoPfI\nDECt9uTxaLE\n9dmlcGZta9E\nRAsK38Vdep4\nSELFeneZL04\njPfje0jZeMo\nLAk5KEGLzmc\nKwWHPqidGuA\nzzORtbUYE4c\nuRjbDsGz2tc\nz7fOP7aW1P4\nZMplRnotp8M\nGk_2euKF9MY\nxllpnvAmnHE\nbJSDrRcwwKQ\nSaaTUj7m8e4\nml_zSw6yWOE\nAx-iwIoIxjY\npYmo3PXF_T4\nUY0nYr-dXEI\nH5I1DyJ3w1g\no4ARk91_ptU\n38AYeNGjqg0\njdp_wn_UrcE\nGrIJLWISdlQ\nMUEhAUpa7iA\nBx9JRDKjrwA\nGWxf8Hb-Xis\nFY00zwMZsqM\n2OXtHJgLJr0\nK57aIbpF_Co\nkRNhyHiBUXs\nlr7pyggTmmY\nW_EYrVGI7LQ\nF4QzrKakPmU\nnwrLvq5W58o\nA9sd10CHAP8\n5NY_8ulSutc\nKNdmBWoCfAc\nZdhqVdIsBSE\nPhLfIqO2SLI\nMk_C5QH2Eb8\nQJX3XvkTJQk\nq38QzB5dw0A\ny1gkMNjkFiQ\nAWvRcWDr5y8\nKS_KStIPiwU\nZnIkMhuNmjo\nVcgn4EY5_S8\nW28kNzz50pw\nk4Lpr1sqKbQ\nl7FkN4ooYvA\nBGEFW4kc5EQ\nlF3IIOXn5qU\nFUWdPWW4csI\nLCljgWh4L8Y\nBoona4-qLSE\nKKfz8C48EJk\nJj-mAiTMvX8\ndmqo-EuR8Cw\nT5CoWL_wdC4\ny_eZw262fhM\niM0hP-LZIvI\nbOP-THNe4m8\nIh-zPWi9INA\nwOuk6V3Dj5A\nA7HmqwyZ3oA\ng9S5GndUhko\n9eosfNwMpMs\nkEnK0ZdMThc\nJ-OLwCyAtBc\nzUL_yawY6Ks\nbCLTAaa3qMM\nJLH_smT7Qog\nM3FtlKHZXhs\nWIr_dCgNAjM\nY-cCAY2hGPs\nnSO22k4XGUo\ngDPJG9FP3iM\na3Xm0KpUYj4\nXd5ESRqpz3E\nxP7yIQladb0\njB9WGpVrYBs\nVV97_cn54bQ\nf_LDdElm9fc\nxiwtX0NC0uA\n_Z_n2Ray64o\n4IsISIQpKTc\nDnGpfWa6FAQ\nGKuPSf9P3tw\n_JcFaIDdphE\n3PBo1ef-18Y\nkJlqNXhZE_I\nYjewWZ3JWiE\no-OKsTWIVxk\nV3Tlo0EutEQ\nZawJ9EBOLVk\nEw8AJsPAyLg\nxswJpwb7Afs\n8osP7KRacWk\nDHWbxxpKb04\njv6-p4kphmc\n4WgLRH-FpWQ\nrvOq4hFIRJg\nW4efgyM82kE\nesFVrrZCvwA\nwnwsSOrmEKI\nYYPpg3_Y4XY\nUQ15FRltlsY\njyNtMzHeJ6I\nFjr_CQHJiCo\nW-cZK60yWbY\n3Sz7dbX2kTY\nC58_gjlogWY\nymbKDavsVaU\nxCWkAXGz8W8\nMPhIzvgB31Y\ne2dAiCB6igE\nTcndF9QpYAU\nSPMpDCxhKGU\n7GrURVFAC2I\n_S6GYF1B8Yk\nU2HWD9dymUk\n7KF4iJzBVWM\nXemAlj9_qKE\ngmElew2NIS8\nTSPaaPqteCU\niKRpMjVJKZc\n-JNyHnAi8zk\nDPmHrgbe3xo\nK7I9ERiBZrc\nnKISdYhQcvw\nUFuxiZFwDPs\nGlCN1EPAoHI\nti9jg0JOK2I\ngvuZShYhzX8\n_emU23tTUAw\nQLTlJDjPfHI\nTxvqZhVwrSY\nGtSNSaW9IRI\nsTbJQwezQZY\nqyvR5lglbTE\n7jz_uA1dv9w\nm49ub45c8AI\nrd8JDPjEoE0\nJYVhLnjKKC8\nQ0okgIEkRJM\nTjY8crETM6s\nt6nqp5MdMp0\nyrfpRh2SqIw\nxSNkZYKC_c0\n06Its9LhIHQ\nX5HvuYGCyzQ\nttOuvmYYeps\nLGnwTTGzjpk\n62z8SYqpuZ4\nGN1LhsTj5CQ\nUzTveNwweRM\nlKqS8lnlJsc\nrnTrWINYDsM\n_KC5AJdRgBs\ngYdm3PIHyaM\n9AtlQm1jVpM\nwXer1Hj8hR4\nNpSkrZRlGbk\nBiukHSW8Az4\ntdvj1iOOUE0\nVnAmEovifpU\nUUzW7NqutUg\nFy988XyqFhM\nlwhQK2kDfBM\nxpFArzEh9Dk\ngiGWC-o1mvw\n2aqgKA3uUwM\nhhRIhD6BvMo\noUpzcxwFI6o\nTajTfrf2yXs\n-PFdr0SiAEw\n9OhXJOQioeU\nZNnk9L2LSZI\nEBnn_Y29Pks\nIYVg4o3KVPo\nsNrOsj0xDPs\nvR1WPNzcXHE\nnfzJCrxKVMU\nvZlWLj1-eC4\nbryVfEK0U4k\nQanZzw7zh7M\n_T6r7w_m504\npLC_hRDO7Hk\ncyEqzALZmeA\n75ovyrTzuYY\nyXyrZImvR7c\nElvTXO2A3Uw\nsl1Jjq82XUA\nUVGzuUm3uzs\nU0xf89hs1Mc\nmFkxrTfAkq8\noUXPpeE2pv4\nM8s2txilG08\noA-dHypOn9M\naPQcQ4IhHNE\nhuI39DZ4b44\nXiki4aOO4tw\nhSvJRk5OH_o\nLrr_z_4VLdU\ntFeew6TgM8w\n5EeD0NiVALs\nxNu0qNfOoGY\noc8Hm_t5BRo\n5ACVz6Cmo3M\nK4fpErUdp3k\nSUMtjCypolU\nRARFpfBt66M\nilG8mzbHNNI\nh9Rb7mT3juI\nRmqqNrg2cKg\notk_S_5inBM\n5kGTDvVTAOw\nyX5TsLuIEy8\n98I5LTPcRnw\n39HR8ZjQnYA\nTeDEtT7YjYY\n-oPHsR72Lfo\np_ixTZLD7k0\nT6BDCLnWSes\ne5SbxMFk6Vo\ncW23WpOvC6A\n1iCqTxtsqvw\nb-2p52a82UM\nzbkojhq6Ryw\nKGW0LbnEraM\nNR-BaVehxrA\nEonKIlrj7t0\ntyyPSnHcthg\n10X4Th3YE30\nRj5XdwnuQ80\nriDe28hGBuo\n-fvfHqNEmGU\nOsgEdYjoqUI\na4QlQy31HIk\nEnBWc20FGuc\nV0UBmkWw5Oo\nBXx51SR_3Sk\npsB3Ta-5XWY\n4331uXY0nxA\n4_23t4NzAMk\nhvACHvnVCbw\nltmHZiXkb9c\nEauDkPyyz8I\n7pD2vZ28a3E\n4uc2qplSyss\nrDGRAHBojWE\nN_O0XDnM2AM\nWE4iNhRivzc\n5A9D-XVmK10\nOJNBsuHFdM4\niX23r272kqg\nGVt3XFTYp-0\nm8LWjDS3IkQ\nIPdtCQV4Dz8\ndwh6SShhnVI\nDgUvg4sBGcs\n5wUezm-K0Bw\nq292IDwEWZ0\nR4CiWP08yes\nm8Jm9_iR6cg\nyRhRZB-nqOU\nHStPxrLfM9k\n0TvKsVxgbF4\nQbwYDkPwfUM\naGAInDBQOoE\nxcqbp1ysN1M\n0SDvqDdbhSc\nMp6aKCE3jSc\nZ0l0sXacQ9Y\nonNv1u-qdZY\nLFT504CjJFA\nP5Q7apxWucc\n4kNNwEV5XJI\ntWEBbYoDaU8\nwFg1qWPryvI\n5LE2vO_aQgU\nREXJhZBFD1w\nj6qjibwpEzM\nWVed9LPelUw\nwU7TupjcCbo\n9VLcxXz-0w4\n8KJkEQx2lKI\nrLtmIBRWQVQ\nMPqg9uMHTDQ\nJauxWp4eWnM\nQYHTRRmkung\n7mwZYGcbQCo\nsZU26D42s2M\nGE64zY42bUA\nCZO8Dh7dXvM\njf9d3cwVWBY\nP2oF9-9UpbQ\nKQbGttprUMA\n2dD7upKpLks\nFLCvFcaZW3Q\n63fCYTWuVoA\nkb4jEHmH_kU\nhHKUBg_c9no\nMEBibAHnEK4\niLBL-XeNrRI\nvTSmbMm7MDg\n5h5zurZsIQY\nQp3NWzLzaek\nlXy9Lp8bu98\nJduADWt0XMI\np32OEIazBew\n1eTXG8FReno\nkIUgcwJeN5A\n1VIBA_mPdPA\nWYY9Epog0rs\njM7Eou4bV-Q\nzlwaUJzGqns\nUDSfJaVC0KY\n9LglzW3HFyg\nTvoWGxM8TU8\nK_a1_SO8hu0\naBpwrORhKWU\nXt0Fv0W-CSo\nFJ7rx8LeTgg\njYpYTpKuT_k\nRRLisRc0j1c\nYW6VrETYUfU\nLMViEmB4_Fk\naGcvpWAhP6I\n3mw9rXZv4tY\nGl4bRwYs1tI\nHfKAC6eOlXg\nzoSzqHlvN6s\nsvytEWJK6Qk\nkptIt3LwGWc\n3IiKTJztqFY\noQjMZTetuEg\nIgrJkJ8NYrw\nVLXwMhs4ODU\nw4-b-D0iByQ\nb-_C0lWgga0\nNHDA6rk-bek\nwwDCSzZx37I\nt_wR8zbM5VI\nYpnqA-vr53Q\nmqpQgFfidcA\nIRRYuq7qYk4\nv-OKZSh7tQ4\nvF3sZj6ge18\nQpqCLenOeAM\nHi_NmfSbE3g\nAxpzOZT_C0o\noLUmNV0tmMo\nbVKJscj58DI\nKLIB40d6Pz8\n8HO4C01n00c\nM1uBjOpTa6Y\n7SClmJTqKo0\nEva9_scd290\najb31pJMQmw\nip1igmoPSD8\ng3svdzmBtic\nTZ2ryw04fx4\nawkGgPALfho\nft9XnHcLYiI\n8fGU90-I_H4\n7y9stFHCvEY\nNNouwnR8QQw\nRkINjKcnVuY\nn1lQR-GjWYw\nD4_CGzg3fmQ\noOp7Q_xw94I\nCf5dlMw2d7s\ngpkncObsNqY\nAxru07JeBig\nuBPs4AHD52Y\nvHBKdIq9RGs\ntj3Trywp_zk\n2JMmof1eg1s\nzjiAUjrvTrw\nEl0_VgXqgXU\n_AgBIeTHzTM\nJtuMPxXQ2l4\nXRx0KtjPoX0\nv3H9-sHDZSA\nJIqfgLLZhAk\nAtJ5phl1iVE\nHmwZxnQbox8\nwk-P07PoFAk\nc0-3FQ-_SAg\nme9Vweatkto\ngEC1WbYzZYk\nQxNZJZrkdM0\ni7hF7BAKV_I\nykeqEK7m5oI\nmk2OptcsXuo\ns6lrBldtwVk\n5PikP1s15F0\nXAuxvhZzUhE\nFHXzsBsOVjY\nt4pLZtTuryE\n8k9h0yE0XIg\nIMOAEKRuaeI\npVfx0OQcmBk\nydFjplhKYng\nDzpGeXWsQKY\nohoPpyAG0zA\nW9DAFX_ieak\n1UqGimF2hkI\nGwyuRxkac2Q\nru_PLKD7w4c\nvT4HrbzMVgI\nw8IS7igzQxw\nzdTmdoeLgAc\n6OizpcahOZA\nujcglOdwI1E\nA5fwu8OlNG0\n4HSdmiu24xQ\nM5F8dw_FfPc\now0vNLhDNzI\ntWuBw5082gI\nZtQD3EqQAC0\no0wTt_xDlpk\n_-JtvyLvSlo\n19u6S4Fqnss\nVDGKUOjQ-Zs\n2tWRTtI7huk\n4frYhsIGjJU\n51Kfo8X3V18\nemW6TopzEe0\nbmeh1eFkyHg\nXq_9TDk-hj0\nxZXOBmW-7Jk\ntqqSIT1D0vU\nL9pxOwibtWQ\nDNAwkyyq3kM\nPw8FO7eRAoY\nStS0_Y5Dh4Q\nEegnTsyPDF4\n9PllxjcicFo\nLCD5BDaqANw\nKwIg2QMWVOU\nR0p6s2L8yk4\nFQjvyy8gOS0\nesHXIrYgSzo\nmA1FWjriD60\nt-dJ4I7rGp8\nQ-MVoUlU-OY\ns3PbszHh8vE\nbGQ9QznPQ_M\nf7vRR8-n_Rc\nfVVoh_Xh0xo\nehNNyfvhcto\n31ZCtppXSoU\nxLD9iygFMgA\nM_HMbS9bEhM\n41FRwoAJkpw\nycyXqWAMzZ8\njBxnTnikZEo\nJXxF-_0u_qU\nATDt5EBims4\nTE4ZWi6xkZo\n4VX7ZvbbLrE\nvdED1lRQ-N8\nIE1ZeXC4vtg\nTGoICPqXjAY\nOgaJLKX1sUo\nUDcu3Pg8LiI\nxGCLACE7SUI\ng3a9qZnTzJQ\ntdMF1i45oks\ngLLgGSdfy3I\nTAZ3_IuoGew\ndx07n7Eov0o\nIXXv4DMkBpM\nsHFXRjwKOG8\n8EUTXbhTFg8\nHUJtn_Bwm-w\nyuochlbdRmQ\narf7Bi4CCmU\nkZMKLwtkLrI\n6FVwlgBDCo0\nGBTN4LA7pTs\nLxxFi7igv2A\n99dOPdlLIw0\nUr1StpqHA1M\nB98YODkeEqY\n41AhzyLUBFM\nPw0CzPQdaE4\nI_v5km4eDik\nwQ5uso-R6aY\n9F9KKPakio4\nxzW255065XQ\nOY5yOdITL-8\nkp2u8LURkgQ\nH2cgoxJHSPs\nLYsdYDbW_Iw\nV0dVNpmzCyg\nzMzCxBRDhlA\nO2hN7307Nio\nav5eE5HTVzs\n3O13oeNWWfU\nsQcgpyPhaIA\n4tEfbGzxI-E\nl3zxPrDoN74\n61LA1soyYkg\nGMXgGPnbnow\njhvqJs7apdo\njDnp-EKD-Qw\nQ9NJiwYZt4Q\nphTSTiwPBUk\nzxO4SgwCONk\nHtC2c6DQvSE\n7jrjZ5DIEzU\ncbBTkI-JxVg\n7RAzClJ4XLk\nek_w1fGGUT0\nS8HUYXl6grQ\nHJwSvsEaai8\nR-Rc1lQMjQc\nMiQsEACG7_w\nDFgmFM-w0Rk\nkRZxEorotnY\n6EM223j0wls\n9V8IRFmXcQI\nB9aW-CumBFg\nVwB6p1A-FwA\nVtGNNvJF5Qk\nd7vy5NkiJJE\ntn24Ca1sslc\noKTtRDYwIG4\n8jWoq1fTwJ8\n9dDKx-vREdQ\nRF2gzBNsZQ4\nlBs_nLdio1M\nndZVwNuTYa4\nglNH68Iaa3E\nkrBjSShSxu0\nF8lEfmjN9C0\npDCzYY0bjbc\neCXv9LnSKeA\nYAhyJTSt_9o\n04BZh6E-Nck\nAVpd8G_48FM\nEwWuQOBBcFA\nEN7SYqdbsm4\nsS1L9wZXFic\ntUr2KIu-nvE\nSnKEQA88PXg\nVPXC2aQZyEs\ntaAwMJ4hsdk\nV8oMGhl8FFg\n6Z5bmj561YM\n7a-OSvw0tjg\nkAyPdsYr2K0\nJaEv5uq8sJs\n3pjwMG4hrFw\nRQZFCcsvtew\nioKNba1RRys\nVwSWeeg9RSg\nLtGQwP3jiUk\nJch6T39j20E\ngvBe38KoiVc\nqoftQY-P85o\nBS82G9f2Xaw\n8kAtef-L6do\nfG1_01gDUoc\nYrIvuBpSGio\n38Zst1IDgIs\n0M0dGWXQt6Y\nCRbtvxbu6fg\nLpP3_e3ioiQ\nB4jUZUgKhFQ\nXS7Tpc7yY8Y\ntoe0MwxNN1o\nAMOb_w6Jfug\nEUB6R41g7cA\nwkyZ8pJD0Uo\n7rGY9Tw2hSw\nQnMDpNk1DFY\n9e06PDg1pgs\nDUJHFbmzhtQ\nm5Qi_YVxd5M\nRq-hSPn_Elc\nHXtYMxtMlhI\nPnZpYoBuiGw\nQzzcHhFa66Q\nKtHucDG9t9k\nXXcdcrn7usw\nAtZDj7gset0\ns0bZ80iuZdQ\nXVyVUZrzGrE\npQ7F6S4FrdY\nsfObDKSfaZA\n2ul7iwAUMN8\nKtDkR9YdBS0\nH5ocMbhjb-M\nfi3K18p1Pww\nNUI_ZNu-GXM\nQGq7H8ku2cI\nDhW1_LX5xZg\nM6aTyZE_Zss\nAtDwOreXh-k\nQ1ITCuUHAnY\nTn1YK5UEr_c\n38tBs7AinQA\nlAebdantAPM\nLHEPabAiiTo\nXLJwlFShttg\ndH5RKJLZ7HQ\nbzoIipqEbXE\nJHlNsy6rMUI\nDeoXtC4c5Ck\nABAYY_S63CE\n69yTsxMTNnQ\nh1vDFFr7nNs\ni7eR-SzImZQ\n6dySVi75n7M\nQfNYdXHjGV0\nKtZQO636AQw\nEY18WYrcYHw\nVhTqGpjZzfk\nU6CQhcLjjfY\nmwVsJoafaP0\nGnAKqKB8ryc\nm6-AzGII9Ts\nsCSUnot0u30\nwojHQib2wn4\ntcH0KwS_YEA\nyLj0FvavCe0\nsHhFAITCEPs\nu0aPph3nUwQ\noX5iDM-DnQ4\ndlwR6MhC2Hc\n08UMKwdtWk8\nFxwaraxX89Y\n-D3PMCmZot0\nouN3vJJmPgw\nb_5M03JfdQo\niab2tzXfWsU\nLPEVs0FV7Os\ny-PhkF8e4rc\n1_uvjP9QZcE\neYR0zgfAcQk\n_08wo4Rxayk\npuGracMskK8\n9ejzBYus8qE\nsHAoAwDUkBo\ngaZOIAJJ6Kk\nIUu1T75RjTo\nvBasqtPRco0\njm7zMNBEgmA\nEFlCixq_HEM\nkZgaz49f5aE\nVjc0wdQtl64\ngsYcnpq1HBc\n1Gnmq6nB1ws\nmwrMEQnMRCQ\nUx6L0eRqDGY\nXKrIeZTVBQ4\nRDrZm6eEY6E\n0bRr_MER6Vg\nzTh8P8BTQVE\nRCzgkvkbVI4\nZ1MsMWSkKWE\n2rq0nLbL5fg\nD6SVqGVTlFU\nutHcPvSz6AM\nu5gSeZQbbq8\nYz0YrG0oJQU\ncUy-J4YGxcE\nUIdm6BTefb8\nBIW6tF1dE50\nPuI5bs7mZG8\nn1X2w0tinkg\nSWYmSp9wxUM\nJkeXMSrRsYI\nEcDcNDlil_A\nYCIt5jn2XPk\nU-42oAzybn4\n77326fqWeR4\nzWtQ2tYVagg\nySwvsZ3KWhc\n6MDRk-oDzAE\nNgQmrSNWY0U\nm_adoXQ7GT4\nq4FzgqjlrVY\nRYgoemOYknw\nARSK76A2xts\nWvJZlC93jVM\nIUBx1ZoP6PA\nIR7xuySx1v0\nKGPl7ahFDEc\ng5wB0DNvM8M\nddrQKAMzUGI\naRAHfPrf7C8\n-fnJhOLKjv0\n3V2gt6bAYxM\nHJK28cWPvH4\nSQNzOyXHbYY\n9bjpF066edk\nNuEXMD5przE\nomFpUjAzM9M\nHqquGvHwicg\nzp-g3uxoQeE\np4z5ZU-dHr8\nGMk7xOOzK4E\nSD86_k19Rx8\n1fM9KjHmVNw\nBGyHgJ9DunE\nmvYdMO5ZfYM\n_zjqM0Hmk2A\nQHYatXsRFEI\nhiREoiox0Tw\nPGTXynHmp_o\nQ91iEtSRiwU\naNQL0s6v8nI\n_aePd1mFn7M\nYCAW0hzka8I\nKTFG9YDV_8o\ntEptrqj1R50\nE8MitqqUuBI\n4wPqQUl2y5A\nOTX8quF1g4I\ngnqyCM42fOU\np8lLNtyeSz4\ns2gjCGRLfKM\n8ZLUn8xHbiM\nN-2stIHQ12U\nt2ydTbUJ__8\nwhEcud8GBTo\nJZGQiDSJRWw\nBTUIaeLGBPk\nS2NZ6XCtqMQ\ndGVvqcGBn_E\nizbOPZezYiQ\n7SaFvv-XoIM\nijkNii0A80I\n7IsskjJnGN0\nUppZwnbIvZI\nkfYzoHzwZZY\nGCQrTxMgMiM\n2k2hQ4dI5Zs\nsSMoOPktKsQ\nfOdzgxEe1u0\nAUxAITobkNA\nuwEFn60u9SE\nson5FnMtr_8\npxWCOG2v42c\ny2DC74NT5G8\ndLVgEWrfdSg\nsQPrjgzEcAc\nzJ4owMQIKuQ\nOzWA6M7VnGg\nL2GbnErVDqk\no3s4QiK4MSM\n0B1NRC3WYEs\nW_0WRTR2vSc\ny6u4QEi3n2g\nI5xqeX3lAgk\nPczVuk7L0MU\nLxOEBk9PqQQ\no6NxwI5Sbbw\nSVUcZ0sAf9c\nwZUKOxIXZ8c\nWCO594skLRA\nwehE7YLFmGI\nQbMcPeuQsfE\noK0u0F_Y2EU\nJBc-gNIjGuc\nkomxaWgJ8O4\nn5HtgUGCM30\nViIuvUSF3YU\nd8Gg9rPHKNU\n727NnSLXsxc\nct7Ox_OKe-s\np8L6CtsqDE4\n_d68kyNY0jI\nSWxdW9jlHqM\nIa7el1fEff8\nm3262E3sfb8\n-zxyN9-P9_c\nCDiosBMzR_c\n4932enSiFRA\nKVGVHjX_bkg\nVVAlND4mt5s\ngEdTciZtW4o\nXY2mzqw0vR0\nKSfYdl24m7s\nWxIIpvpAEEM\n7umeeSjxQl0\nTw99DKA5tss\nWGy01KGFK7I\nlot6apnbKk4\nJr4HhX_kbf4\nemnU7uOpYtk\nAY1ze9t3lus\nBgkEy5fF1rM\niAMImEbSpDk\nivZaXeAv5X4\nWrfxIymvEhQ\ntsIYleoAQpY\nnh8mjiSlAws\nmIvQRRVbt9E\n6zqeWbDCXMM\nWMWI2FTLbhg\n01ClRWyf9I4\nuA7BbE1cF2U\nDXH2BXpwCAo\n5IPCNRlCYP8\nodUsOcEqT4g\nrxCuYueuyxM\nUEEIFRxwHSM\nvZKaVV0ZyFs\no94LScznlmY\nYLjkzy7nhc8\nPlSt57BseA8\nwyuPoWs79fo\nTjGfTL6l-HM\nluuYRrPaEpM\nEum-rR934sQ\n2ZGmI0V_Hgo\n1c7FYxTa2mQ\nG1BREAJI3E0\nKAZVdaHzWNc\ntz-XJMspLOA\nFFGm__skOH4\nDZwobit-Zy4\nA8GRnS_49gs\n4TgJgyypajE\n6-PJPTcT-o4\n3PRuMx1gqdM\nZMURdEkb_3Y\nKL5rXhSkP34\no7zebTh4tHo\nw0BK_hLT-Wo\nZQsCM4wE_es\n1KBy8-7nc1M\nyWuZtDeeZmc\ndGz9C2xMADc\n7yjowqaIUnU\n3a7e-npyunY\nJCVLrJfjsIo\ny7T5Ea-WGII\nYUaq56T5qSo\nj40IcG_BZuc\nMnZJSCtPQtY\nikWTYTomQI4\ncEJhVm0TJUQ\npvZXE-e5Yo4\nN2A4tcaMl9c\nTnkyKOn81nA\n3ce2e-d1ZEc\nf187FGFi1AM\nVAp8WVZm3cc\nyOWS9e_r5OI\nVX3u1HUl2Zw\ngoKRpR4XNg8\nvsfjzfGZVyQ\nu2D0kDFKaxE\nb_tZKOxNR7o\nmQpZdtspStY\n4bB-IJBlZms\ndUFtkBtGIgg\nO2RUT5J7T4E\nzlVbQsf7vpk\nAI752yUQd1o\nCOZxvXx4bSg\ne4-STTC0pNc\nFyuQ13ZZNIQ\nHt3gFCqpFkE\nPP8BpNVk8JM\nOuacLAbhxqc\nQaSr6mpkTII\nh0w6WywbohM\nlCyS2Gxxzfg\nalh8b1lYuRU\nY91jebCjFBE\nqz0rKdYiqDQ\nE81RLAQyhCA\nYZPkrplfycM\n1xFsHF8ZF2Y\nyYF0oK8oXSk\nCQvEBaLYHJE\nmdsLJ_ciPHI\nhRBRb2eiK4I\nY5pRDzBxZtY\n4i3CEXiGKgU\nba9YG9xCC7A\nvEd2sU65NQI\nwJZHc5SJ9eE\n-lX6P0PFKy4\nYiE8wDRFfvM\ntbdHhLOzT-Y\nBktKAiQQ_tw\ngG1XmKlqhIU\n8w4UZGP7OGo\ni4M2tehIejI\nnFRuYV4QrnE\n7OpujffVbUQ\nttU5gs0lj38\nSwPPG_B3ArY\nazot-mIuW3Y\nzjFMyK_bRso\ntQl5ypxi69U\npwL0PcIHtxQ\nic9PvDGkzf8\n41VUCQfnnco\nPM5TJ6vZ9YM\npDnPZ0Ccdus\nTuafKNbgTCA\nPHFG3ZC0fZI\nQe5hop7o4ZI\nUvFclgKfUQA\nOvbvCOM89Ew\n3AfqCkqJVt0\nAuGJ_SZEXFI\nWnBzLtUAnIg\nBzMaqlt74NY\nWVDrmwtooj4\nAP_hr5nmo9M\nf505OHOUHoU\niFEr1xsuksI\n7RsohcD0tS8\n_7pkwL7yY5g\n71FkH7FwfFg\nWSADpIlmqQ8\nrdEbjNy5BNs\nlN4oFlIKm7A\n5lBfYlWmDC8\nARKPBJdE_QU\nNtQdJIeh2ho\nI8yAmR1UymM\nsggwHnudtH0\n37yJV-YPBJY\nSnt_FLn3dwM\nYPQJOKn0I0s\ncqD8XBONBHY\np4yCboEAjLk\nlniVpfK5SW8\nnID1enI2xW8\nW_CvL_fMIm4\nUw1WGruy_KI\nIyN025OadaE\nGyhrH5E6B6g\n-3RMOO6mHr4\nGJsTqU9Ujxo\njx757TP9spg\nAqMWvk5DMcU\n_XAKjc2gIfo\nKhtepI51wuo\ntv_xMisf9oc\nnVKSBDddFxM\nW2roZO0kTUs\nYkYqKiASqJM\nnNKsj8rQGHc\nEGqPXMAThig\nXtFr2BdLrv0\nXS2yOMGv5to\ndStxLpnwvWs\nplcl4YShR5Q\n309Cnimrm5A\nAtyyr6d7-u8\n7WjOFzTTiHY\nsjWdByLxTuI\nYp2w2XxXKD4\nUtSE9OXHIgw\nFSB26l-iDEw\nZMQCyJ2lhu8\nayOLECuygTQ\nzqTxw0eiZaE\n8l-HZqArmXU\nofWdRHOZpV4\nU5fkvkaFqt4\nCqHyrmbiD1E\n9RrN7k_5fl4\nAebCDidbqI8\nQPmSOAIRsj4\ntkDK_YLfTO0\n-yEE_toKFxc\nQjrvHsFzbvI\nWfQ8qbtS63s\nRv1MSTB7QeA\ncIG0COsZmjg\nFXhW_IAJ_Yg\nvAJ_RdlVzgw\n2N4Tq6Zpx3g\n4kQr8dkriIg\nvnJE2OLp55w\ngbr7Qazpy2E\nivlV5kanNFE\nihOU-LC0ue8\nyB_0DHi3Z4k\nfrxxz1Nx3x0\nxb4rFYLKzHA\nA8WBlVOcSs8\nmRRLEgHhu3U\n7cJS4h5_KJ0\nxzwBLuOLjzA\n4009LQ96f4E\nXdPLA-egIeQ\nMu4AuoaIuHg\nolg8NTkDXrI\nLZcSMyk5Obo\nt-DJLPtSaHw\n00Tazm9Z6XU\neX7t2x1F5wA\n6uRycxZgotc\nHLJHW3slPW0\nj6SBSViczK4\n6R_37O7HwMI\nJfk2QR-qyZk\nSWnqUVFoQ9w\nKTes0O7QBR8\nCyXxBjk4UaQ\n5_C7GNWPinI\nubD8vf5WvnE\naDrR7riBeLA\nbLbLsjRVm9Y\nux9JHznPT8E\n7NMQnDrBp60\nqJ_EsjyYevs\nWrGf03jRHSE\npYhlVR9GzjA\nLt7yltFpVyE\nk10DDJ4L2lc\n6WArrD9VPJE\nOlPauBNIDAQ\nL8cLSkIAgJ4\nuV-u-N8RkKs\n5D4D0Hby47o\niRd63BXG6nE\nBdC4os4SOH0\nFvJp6IklZUA\nUkDKxprXy_0\ntoctHJpW6no\nbZ7ZsN1FXuI\nhJErQ3vUD24\ne434wHYilA0\n5xx4Ha3kGtg\nrkPT_6JWenQ\n6mtG2DSbR3g\nKcf2d8epCXY\nvV3RTL40nmw\n9b32VkOh2nQ\nXHJI9tya2cM\naIau-DQHI3Y\nEegoLE6n-Gk\ncJ4mSB-0OA0\nKpomd1Lwn6Y\nX9A5UFJ1iZk\nPWfgDuO0vmI\n6bDF7ZQgkZA\nSXOm6AEArjo\nK04WrySpUH8\nnBlkMaEmWeI\nrpE_9A4LXWs\ngIQWTB6lNlw\nOd9Z1C8dboY\nJz0Ueh_tkFg\n3Rayb1Y5SmA\nmY-6iHAZZoo\nwT2zu8zPXHQ\nXGg85Qv_gK4\n8yXl1yKbBiU\nVPzrMnBW_JY\nB7rcsBCaMI4\nxaYlkjfpdG0\ncl1Yl57gCW4\nqq3C3psItOo\nbQ9vlCKo04g\ns8BQXJxRw10\nqFbklFTJlCs\n5MB15iYADy0\no36MJbiMMH8\ngQ1o6y8iYXs\n9FuvuHFUeoE\nqr6vDBiESB4\nLKXQQmMdiws\nRJ2waor6V0g\n5HbKxlvyiLk\n8APhdryZ6m4\n4LY3sXlBbk4\noX3g90bTn1g\nmkEMQ9OK088\n80xURylcWpI\nlLxVEs_X_9k\nQtSzDCV1CHI\nnqIhzUUH6Ts\nFCv0BgoGj0g\nvI48ZXLGoBk\nSRoBDfwS2xU\nKOAAIBdD3bM\n9dSVd8ISfl8\n6mJk2i7Lfjs\ngPv4C6gIdOo\nsp2FvfOi928\nWSBO1fuXCCE\nPW-I6rrNzyM\n5FHPI2NlOm8\nrC9LfNF_CW8\nN27gumJNHP0\nGLmTfdkWZp4\nFTJcaJziQ1I\nftNK4JPSoto\nyUrcH6c-FX4\nVScQtueKnXM\nUdRma1qSMGo\nSVYv9SJAr2M\nY9_k4iGJMco\nolj-IIjnxLY\nf-mlUVx01MA\n9uRPfjWwOL0\n6Dg8xn6Rdwo\nHycJFYsUxaU\nyZWEB9JWLHM\nvkX9jHBsmwM\n4pHgq_uwXjs\nBoGZH9krgjE\nvMwfVOf1-vM\nw6USFL0JYAU\n-78FgmNwyD4\n7MJd-RSHTqs\nJegIRfX4LJQ\nhEH49mSRWGw\nRmSIKuobH10\nPbndU1PQlPk\njS7XOEttewM\nNmsLAaKjKEE\n9hXnvqJ7uxQ\nno5XxM0OY4o\nvIrRt0vaySY\nXe8LJ4g7Dpg\nrXyyr3kSB3s\noKCF_TzQ6Pk\n--vFXH3mH3A\nuvAd-GbYBVw\nG6EzUGdelYg\nSQ9JOrG0mUM\nx6jUAU8hoBk\n_oFhIKlIBr0\nZMZxDJb5V8o\njR3JlEXdBIo\ny5cSt5uqt3E\nc7AescgZzEg\ni-VM7_DJlkQ\nwrkeOayCv6E\n5kgYUoeOPj4\nUbrDTO9asW4\nFl9Cexw3ACk\nsf2eXsM6Kik\n8CCr6_Xqt1k\nMG_ZMkTJ1dA\nQQsH99EAwoE\nbLi52djkRTs\na4Td_W5dc1w\n_CWSn-Zdi5w\narsAllZIa1Y\nGw8uD1xHhBc\nIMzMccLiMIc\nlRAsSTNZD8g\nCdgq2SQcKcQ\nciL0tWi56tM\npfVP6HBoflg\nqy_ZclSCUwA\nrqWz0oKJQ5E\na6CsW4dCk_8\nN92pfxjHXkg\ncVPTibn-ewI\nyr923CbtKsU\nD3PcFuLPhG4\n2fweZsmH4Tw\n1To7zCTHAv4\nJhNznuSZ1n8\nmoeAot5_Q_U\nya0uliWzUTI\nmLKA_BX6xKo\nAeZQ4Oi1wu8\nC6MgTAuqpXc\nXS-R1raNESI\n-b-EFcA7ing\nDHL2KTvQ_eQ\n1yMhC0o3y_0\nBocJIlRPVvU\n8-0dpreHXFM\nzDQueu9EF6M\n2QRFeV4rPZE\nrqS6CaouXwE\n-pEKUJ9MADs\nZgbGOBeeaD8\nfrIi1u8PAlc\neB46dRO0YZ8\nvl5LaKMkhYw\nuk2ovL8llCw\ndjquKsYMo74\njQTtJ71PkKE\nZGha6pmwigQ\n_GksGDm__8U\nfXGEXg5q5HM\nSN9LQ05sQEU\n4V7dPXjZJC0\nLkkVEYz6y20\nj4mo1ywVR_M\nlGcW9Egfm2M\nr1fp_NVGr6Q\nkzueHOeJk40\nUTKrefMHcJQ\nq1D9i-d1m4Y\nDOrvXyOMjhQ\nLepvQqFvoWc\nt3XewsVnx9E\nBTZArvbmG_o\nU45CzgrLE9s\n5P2p_4ftJjE\n73F6wZrDxao\n6QEYgLKNZd0\nfI5qOb-otrs\ncKJ6Jyo_9to\nSxMetYMwzUU\nRqNXT7abtQQ\nAjXsoJGi1fo\n07k4FaH9dTc\ncrX0CMJ_aIQ\nSiOImcd9L2c\nx94XSdW6eEE\nZfKsbOpsea4\n8YaSWlYa9u4\naCx3jrZJjPM\nbtug5ZMTWuk\nxiXiMxTbu5k\n_8dcjZCqilE\nVaQo1PTIzXs\nc_lWrv5E18A\n1OXNsIjuAnk\nlq2V4EnoY68\nrFBErC8napg\nDLUx3hDY2wI\n0KtJi_MLKqY\n6CO4uEdr8p4\n5BBhXUaqDZQ\nwQlyX4xKYeU\n_ZpONi1-f24\nu34dzFKx4Rg\nP8Cv5p0cgG0\nitk5hcD2sFs\nu5qpNA4ZIFA\nn8r0JS4Z9tI\nS7yCsHLwg30\ntSYhESdFisA\nxWZtwOffj1o\nACr98cpjXnE\n6Knf2lu45Yw\n5ZxVaJcxkMo\nYVmZ5gRR_zc\nZ9QsVa8r5Fk\n8skrIns6h6I\nKuebMqpuoEg\nuvUaNcx7mlg\nLFB_SKdGuLk\neAvVsXliFxo\nrXDhJmUGdiM\nTd6UanhjhVs\nOFcprqLHg-M\n9pcfdiFrBEQ\ns1pDel1G9Eg\nkePIiYeH2Ko\nTaYnzfexuFg\nybq8gINMdBs\neIAiu9_4JDs\nLiI1LdPRcQM\ndpg077fR9Mc\njAwlK8vL8OQ\nOIFEMSfu4pk\nyCUaXGVdi_k\nooiimi7zkoE\nIwA5uSA5ZBI\niQoNLmqqMQA\nzCttJu0ZFpw\n52sXSYdNPsg\n2Qx3hHEoqMs\n7TY3DFSCrOc\nFvUs8613_TM\nVvGhOtoy5iE\nl-aUy9_L22o\nLe-bfbn43WE\nhK2Em4D7fhU\nkoWVPnRRGlA\nzvdLSI3-j-A\nY4fkp_IINqo\nv7kRQXWpSdE\nC42zpLSVjCY\ngw4Sj4hJy4s\nOhncteZCJWE\n4nEsHsxsjew\n63KhwUcX8dE\n9Fu4muqAsBM\nCLfY0oLo7o0\nGko7aal3o7U\nrXpCjDg0RT0\nqBdgJs4tf60\nCtARWCZGiag\nb56RExAdg7s\nOW1bbk4wVqo\nCYXBxG1COzQ\nWOcSwhJCnr8\nW1U_sJhDIXI\nsfh3DVzcGAI\nlTyNEv7TXmk\n_s2FEVQePMg\npfk_iBQzECI\niekeU-w3im0\nIpf6Zg3UFTk\nSCp3HsyGqeo\nSAMMLF75HmM\nLP22LQEq-tY\nXq_a8AYpKYA\nyF0HUzSCd84\n6ljUgAVSu0M\nH8nX1mhYFk8\n6MtwwUfJ8IE\nV2M1t7HAj1A\ncx2YdJwQaeU\nBDYgCu8m5dQ\n5LXDBdoZfy4\n3bcNygIQfMU\nOqnFSU27fuE\nm4qQ9IIo23c\nN7urptsSqNY\nf4D3R4tJNMo\nkeymL9b6W4g\nJDnjiQCk2JQ\nsdc-LNkYA78\nTFGYMpZUv4Q\nD_1bty7dttk\nq1V_8cCX5Vg\nErn5-LGeU50\ngx4ZNttML0M\nhh7_pDbACts\nyYhuz0q21_4\nEFhZ72P48bc\nAFJ_QnfENd4\nzSd5uTUpuAY\ngijYgnVD9vo\nrWe5nzPq1JA\nnlH_5ejw7Gs\noSc-5smBhRQ\nimcPspMbcL0\nrlXTyrGsiHQ\nOjGiHy7VIhI\nMDsC2TNfF3g\nFrH_IKiZTOc\n8tfmRZV1vnI\nTPdR8MCjRGQ\n19moJ8AP49o\nZrCtTXl-84I\n0GsFiFVwfBE\n_ilh4ZR3aUo\nQA34Dlela4Y\nu1CmSdzgYiY\n5cxSYatteJ0\nNK_Gt07WU5o\nBcfTPLZTAog\nL1bqqCJlCpg\nd-Sk3AvyR24\n2QB-g-9tuEk\nZeMzb1DXoFM\nztEcn3h90g0\ngFsyI1eps-U\n_41uCWOabEU\nrgFfioIzPgs\nvssoBfErh5w\ngvAl9GR1kDs\nY9ajaBIbzYI\n_jkSWElBWf0\nQ1XwIK9Ykvs\nOAMxHdzk0EU\nC1QL0e4B7N8\nauMWOnofBSI\n_6iwpd8yeQc\nayplsqakP80\nP94nUxbIgs0\n1kAMrmDG-68\nhK9v_6lK_lw\nY0SFyVdPfO8\naGActTYN93E\nYd_u2G_ucCU\nCHz--mmu5RA\nRPS05ujl9FM\nnW-iQzgmyeI\nWrCCnZaSlKE\n0gAMfKzCJsc\nsnRRa2Z3DFo\nHcadJjFOhcg\njKa9O33GXLI\nWPrJDDvstbM\nkRwFOUeh-Ro\n4GUliPk7fK0\n0WOnDEx4QLc\nAiZf4-eJQUA\nloVYzYPJBTE\nfw5N8DF4js8\nfk0O_cdBbMg\n7AkMzkl0r4E\n3wsMRsZ2Q3I\nmuVopS3Yn7s\nXcE9IUjMtOE\nqtKtxLmxl24\n7yVV04Hi1Ms\nQDurduePMWE\nQ9-NzGEY90w\n6S__xAKQcF4\nPkLE7uHqRt4\nOe_sEQkEIZw\n6bNyU9A9LlM\ni3u7nvpgDTM\nCcLJWUzDSbA\naRr8QkQ9Qrw\nbfn9-AjAJCU\ndpIyHx-GsbA\n0t1TFwXKL2E\nSqY9GVVUo4w\nlyuqs9s8134\n7478n46dKCg\n6SoBKiO5mlY\nHx3l8vu5L6Q\n_Y8RUTZ6CKc\nBgvJlZKbqlw\no6V1Ov1GCuQ\n7nZ0VyXfpec\nj2SPawJewxA\nqVS1E2L7DYg\ntTFOv5oFe3E\nucBnN5N2fn8\nWk9-oZ9OGjw\nW9vPRj-c6VQ\nnB95pK8TgYw\n3ynO7Oaj2oY\nz-KB47AFQAY\nKbZQdFPxeXE\nvkFKHF9Fs_s\nq_y1Qe8dyCw\n1MVR4GmqfHg\n0j9yDnytwPU\nwSdltnqDWV0\nqfwei0pOLVs\nZfcfpjiFZAQ\nIMuAOVTXtLM\nDKp509HHG0w\nPu1vplwgGAY\ngHWnmlpmub4\nEj_fgugvtRg\nMB5zQ9X-2tY\n2W9aISYBJXY\nnIuuhtJM_Dw\nD0Rs2n8eCPQ\nFKPNubrWp0A\n4nSkJZ3i2-g\nueNjp9QfQFM\nvtyIGp8uv8w\n23Xxotom7bI\nPsAtoPJeiys\nLHTaiCLZO3s\n_mzI1HQ0cYE\nb7wurDomuVs\nr9mcNXIJFbY\n0sUHxfXKUas\nNtxR-xgJWwo\npGxyOeypYFs\nK0xwTAJROW4\n7UvSGe2Md6g\nj95Tk1SLXOA\n7Lj3LydT1uk\nTTXjgOan_KI\n-cFW3A13o8s\nQGNI11LEG54\ns0eHgfzlrF8\n0isiQvOb874\nV5Np7vmtIYc\nW1W5JF4lRIQ\nn2ZkOcq4vWU\nxB1tKdhnGaE\nfOONIlhXFh4\ngbXZzvvp2uc\nShCW6mr_rsM\nQ1-jHyQHGl8\nX7ME7WkPyC8\ncMxPAkZgoy0\nhOnolgR_8tc\nBKtBN0KHq5A\nJ2ugazPv__M\nhFjIRET64r4\noEUB2LSsbe8\nv3bQ1GiWhJk\n-_Bdf9C0SAU\n0fBA7VUZEgY\nLlJx0tWUuGY\nS9ryLG-cAHo\n4E_jCd4LZL8\npVssi5x6rxI\nULLpy_WyJds\ncZumS81KSw8\nrFy2252ierA\n7moP2oVrQ7Q\npf2q0HemaFs\nxdMilnKGJdA\nrXwdnHnLvms\nMnIzvH5GvOA\nuPQlrPGbD6k\npQ68ImO9dBU\n8YMGQMcNu2s\nUnM6dPbV9Ng\nw0X84fml-Bc\nolTfms7kJIk\nQUP62JKYg2I\n74c-fV_AjAQ\nF6mWKtfNVA0\ntkj3klWMn5E\n0QoGNA_9zqQ\nuJlhwWFAAxI\nvQ-bN0fv4Uw\nfp4Rib-6cm0\nUUnnQwVC0rk\nxB-h2YkIP0Q\ndZtW9n3C2gg\nKYeZm7yCOaE\nEYpR4aksH3g\nDHww3Tdh26o\nGjJzcjwVF8s\nAbkZAbJqcIA\nQrg2m5OnJT0\nI5tF_zv73vk\nyuvBcB1oLI8\nF2CVL2cAV80\n-ZDt52_mxS8\nYYsc7jslsc0\n2GGLMLNbZpE\ndWhKh27tEHQ\n2-i06SAeWs8\nkbLP4mKMTYg\nL92EFtI5VxA\n4x1rlz-IYUk\nMC_Wv7-i2Es\ncA9k-dz7Bqw\ncU2j_kP6U0w\nSQrD5lkN18o\ncighZsv-N2E\nKZt-mGmTpZI\naj71pJABFFU\nW_WSGHIPSrM\nZAF804tkZ8o\n_pzghUqM1QQ\nCRXtW09cufc\ngSHomdp3o2U\no2sjOBiBXSc\nPWf0rLp7sUY\nB_FpV0CZjxY\n8pUjbhH7A7M\njm7xE-OyJUY\nr2e-9oBXk0o\nLbkjkJzREd4\n_W1RJXCb0xo\nJHpXWiJJbL0\nH_GApJWNWiw\nQVNrihP8ME8\ni5JmxPGoM7U\n2kLkwWVB9Wg\nq3kcQHhvOWA\nxsHeAaSmoe8\nn1r4aOeOxgo\ngd9ZzDgPVFo\naMOraCoYToI\nf4OPBNbNWnw\nW2z88979aKM\nexo_QZ07_BU\ni_qYwD16FXc\nu-ywf1_Aqy8\nOU4AuLhWTv8\n6COCjzLI5kU\ng2h4ycVI7AQ\nk2ih0cR-fEI\n5Nw5r8_YCFw\n3aJHkdlvdHM\nkaPdOgl1s7k\nOEf-Lee0YnE\n8aegfjXaTmY\nC-c8T2hNNoo\n2Nd_TsVQwgA\nx4oAO_kDHTY\nZTi7bZGkJk4\n0NHFYpXhiiY\nzt-zQ_EzPsY\n6qAar5htD0g\ne-6fZ7wiPQk\ndlxT9ot5Bi8\nk9mzgW758k8\nayLJJZh7RRo\nUeKhKcL5efg\nl94WdhJc8ZM\nswcFDa5jYfw\n8tnQxuIPgXQ\nJj6S3vtJPaA\n-jFiu3zG8dc\nqgcQxJuBfY4\ndcB5igj1k6w\nQwi6MbaOBME\niCTkYP-7by0\nL2ozJHHf1ec\nqE_SJYfhUc0\nT1jK-kQgdeo\nDf3535-5wE8\nnvnag6ta7LA\nDxVqAcNKMNk\nCdAJ9-36cAM\ndGIyVafU14c\nwh9ZsEMo0-o\nZ2yt_J6z2FQ\nHkNa8r5E770\n3ycDiqPVBqo\ndLc8QqtMhYQ\nMa5iacR9d74\nKNol4Te8mCs\nViWgPQKgQYU\nKsU5oT6FhE8\nqB26s5dx_sQ\np76b_u00SSU\njsLRdkCMvxI\nr6AmK5ecvRE\n_ZiRPpAgOlY\nSpaZXamzgwA\nUNvtKMt78aY\niHDhfU-N87E\nPTwqLCxIMiU\nIwQVcVqDUqE\nbjUMh2wObW8\niIcbE_xFIuw\nSKMgjxAgidE\nK_0hl7Yc0fI\nqKrNYYuf7Z4\nSNCyMweQ_8c\n4_3PUB38zJU\nw_V5UPmEH_s\nRb3em4rmYxs\n_iw7PLtjjow\no1DgvimHOvw\nkmr68ZevIrM\nnBRTe09eseE\nEJCaAADpCuQ\n2tWroNJp2zI\nKINtZPTjGOM\nrxme5eLoK5E\niB8eR7GugQY\nMBY84LUh7s4\nP_VgDHPDtK8\nvLxUYa47OXE\nNapj_I8kdHY\nBfniNOclXKs\nkYA9hvcLekg\n9UMiW3dzW8g\nSp_ZkjTIRiI\nV6TrgQxf3lk\nVWX9yxvtjxo\nI_Ld8Rtl-Gc\nj_a_zvQOrIE\nYkYypI0-OAY\nBaSUY4geCtE\nxXjPITaIjPA\nDh6M4SEdLdU\nivzvZlKaKAs\nV0Y4f1UoH9o\nu_4L7Dx1rIg\nRz0JV0WUjPo\n4YFz0PJernc\nNVCvHb1UK_g\nFK7N96w_3FU\nlKwghMLo0AY\nMIpPd7IhPNA\neXVVSJUhDmo\n-o-C21COWIQ\nsHt3TElCugg\nqwUgyrgP9H4\nCGHuALdM57s\nzUvgi8Rxl9Q\n70zF5FTAfAE\nTqVLkE4Lr8U\nBr3e2gRhBZw\n1H_5SNtiMIs\nUk4tuWVB-ho\n8lRysx2QaZg\nkAd-K7nteyI\n6yuDWX2prJg\nGECuST_cjC8\nNBhmNRq0uU8\nYCIO_JbmcZ0\nuZhJYIZthNg\nk4sAUqI-y8A\naGk88ZwiLRs\nEyqjJVgnJMo\nCKQiEEWqW-0\nUUPZ8Bzq1wA\noe6nOL82mmU\nc7RyGNzyGB4\nt3dmXdp2O0Q\nuzIEsj6Me9g\nqYEceRHS8jM\n42tGOQelinA\n76gNp5rkFX0\n6_ZBUhBx3w8\nBqcHbcPo7zk\nLi8ROpFUD4E\nj2aGGNQW_7M\nISt_AN1f0Xw\nhTF5JMKgI1I\nyjrwCXMRh24\n7PfDjA-3RP4\nNerShU5K9Ac\nIqJSc4WySE8\nTCK-ODyUwoM\nL4kxEO7Okhc\nPBBZHnc8Jxk\nYCleI91Af3s\nqnyoHZa5rrQ\nHhP2rEHWxCI\ng2py3Bx0Nr8\nz5xRXKOAu-Q\nBlC3yzpzATY\ni6XlRCrUvxU\nsorSQzGGdv0\n3l4Uuh_byns\n5bBti58el_g\nJQoNhRN9CiI\nnKBE3U4mwuY\nKbaqSn9LDiM\noHB3yg1vFAQ\nN1Jg10AGbGk\nI_oKf3IEGmQ\nXfKq2_EzkE4\nha40ifVCakk\nJfFRCGgpkSg\nwTqPJaupccs\nH_CVt8o2GAc\nHfiKoIVr3T0\nK9Z6ZZIZPFw\n3TAoWo3kBkw\nOWRqJA31H_E\nlnQRXfjI664\nwEzZX_MFu4w\nZwlQdSE1LdM\n5mbqW5rZaCI\nxyiG9P_Vc7A\n8HI62qvNWPU\nwt0_m5mUsbo\nrtsis0lgx7k\nXZXg3WkUGPw\nPC_O4NLvktE\nwRCiwDkYtVo\ngVIdf-kZJXk\nCbM6muvlHOw\ngsXRITF5hcI\nVOgIyusLSOA\niMigt5aPvPQ\naKNOSJT3vCo\nLDDFccHEa3s\nl4Ws4ou6UO0\nS5x3QGlo22M\ncXfD-Ai_QuA\nKc2EYuV33Ns\n2UrB8TI5El4\ncmBN-X701Gg\nLoLBuoPL7nI\nRisSaXLB5ok\ni6n8VyqaCQ4\niI8w5AQJcN8\ng-g4vCbZsDM\nnAK7Uyg_Y7Y\n1S3Vom2V2lY\nvL5LepmOUQk\nk92e50obPsQ\no02NQhYm4lU\n6kxFTk_Yoq0\nPEOiWoM2q6Y\nsWd44kgjkeE\n4QOA-TyD42o\n1u7U16N_yJg\n4hAjAP6kPg4\ngoAo5dC8P1s\nQbzJtP75NqM\nsmwBZ-3HAPY\n6_gHh5IEgi0\nSqaM88u082Y\n846by3LOKlA\nG87BCljOeuA\nkhfeRoRCp7c\nz7OEKs7hAEk\ndvJqm3PFKLk\n8VItLIW2D4g\nAb3QDSj2ws0\nmVdTVvgW4EM\n_FurW3BTcjw\nn3Y6B_UKam0\n7ELmyf41TnQ\nWZxFIAFTfEU\n93TnnyxGBqI\nU6CGGUJKymk\n2uyy1EOBBm4\nh_JeXTLSCQk\nsVg5_6gjzlg\n5CS1t_QtZOU\nT37ezlBVMME\nWyKHdjh7_2E\nqNnfnI8ai6o\nVN-AkfFZwfI\nawPDaFp70yI\nuGrrtkaWoU8\nh0qWin97VyI\nFcEchaH6EJk\ns59yqpV0ICo\nbKkJKMjnYf4\ns9FoorJGkrA\nxZ_GOyfnTTs\nTuOYe44bL0U\n3ExJ909lWds\nL-xNqfIXuaM\nSKoj1Its8vo\nuhH9ewIEbnU\nM8T58oBOsAU\nuTINsxfQwUw\nCy6I9ydBSWc\n7lAIabgWtbI\nF9puQXwExbY\nyKNauUKkW9Q\nyWGL8RTONpM\nqnp1jfLhtck\nXFosHLSA03w\nNvKOhmZA9bU\nyp1luet0nkU\nwC-N_KnYNLw\nW3s4HSqODSE\ndJcvUGXOMMw\nzdKxziIlC-c\nYOuQ9V-tzps\n0XZlgVrxKfg\ng5iR3s9FA_g\n2xH234D7lao\nHSQl1nhi3N0\nX3Ujc0YaltE\nTdffyS619Qw\ni4zxmn6_aRA\nML1hxH1yQb8\ne3BQROKhvgo\nHk-_1SD1pic\nB1Y4s89sBpY\n204zPTniPrU\n5CfzQ1956jw\nhTdBkXMvY6o\nFPgDrHxAntE\nphOJkEJled8\nYGmK5uMOgZ0\n3YWCnhDDMac\nFIjtDcICyIE\nwxRSLer7VIg\n3TN3wohDAXg\n60d2lmx8LQM\nBW3ZFYQQXb8\nFVTtA6m68rg\nNJzij2bw0f4\nyhjD1CmE9gs\n2NhF6zphSx8\nKkV42m5wVTk\nd6zX6-Rf4JY\nK7bA4PB0zdk\nI9npL6x8oFQ\nD_xUviDPUOE\n8mZEPgvvd4I\nHdh3npiRip4\najRRS6NzMBU\nU97UagTDW_0\n38jPEmoNjAw\nqnVGIFPFry8\n5Xbdu0wnun4\nnQLSbuSZzE8\na469ezsg86A\nZvG2Q_KNCOA\nJQLBuA1JCfg\nutS5IxGpAPI\n_dVAPmlzo7g\n8_mRYeBdwcc\np4TZcBFacUg\n4UgTUqi3Xxk\nfTMY9OkzTBA\nNJtOmLkUSKs\nZAhwNITS1WQ\n8rN5CaA7OUI\nQaxQWGA3wys\nJaTnlFHOkZ8\nLydYnbMzIGA\nucqBb8FMJ74\nMB-oElVuFoc\nh0lUVSpj310\nOr3JIDwWgH4\nNds71RtsnxY\np9Iw3217IRs\nn5wiHK9V_ss\nJxs8p22Pq_Y\nZQ146HsyzE8\nkTKIACVqDzQ\nd5nAgnojNgk\n4Em53e2p7HQ\nk8VqG4ftlK0\nivGfI_8TE9I\nzkR_E8jw6qE\nQ59V4qwZI14\nCmssRVrBMxU\n7Ce8fa-b_m0\ncwkEbwJR0aM\nt9_VbtJdDSQ\nsS8ECvGKWT4\n_lJxUhMK4ZE\nepbmsvL_da8\nZG5aSjd3ejo\nMATnKRvs8K8\nQYtcftNU7Gs\nyLJU7uywTXc\ncP4Q_O_ZKWA\n4rGu9dMtQWA\nYqjCnk31_Ss\nuU0DNCV22dU\nGDhe2vbzjwU\nBLIuci6IBIg\nYdhnqI-beNo\nmvbLx0pbohk\nPAkRrp46SBE\n0mwkZUkwEHw\nbFrORNp20Js\nMMcWHkb8Ank\nTVPDfLM9zIw\nEgkBHCLS0cA\nl2zPMIA3SYk\n6hxZUTUMkf8\nX4b1jFHAC98\nAcmav3U4xOE\nsuz-NZ9GZ80\niWrr0qhRNaA\nt0hEHI9fcsU\n2ZMYorajMhk\n9qmOMFvxI2I\nSIgiRJmMz1A\nOkiJH2Y4z08\ndbu7AfaXHvE\n2f2hB_pRG24\nIcawiMd_kkM\nlhY7RZxINlY\nJ-AftfYVSI8\naQobE1tPeGw\nrLh0UcN75A4\nvSCT2CffKDI\nlYEy4it6m3Y\nZ1Cv11vpjhQ\nKz6J6Y2DpL0\nAJWkS8Ja9YA\nLODjoHqYzyw\nz-glL87s5lg\nu-M2Zb_B7BY\n1lYlFbsVOjI\nCgow0KNc4Hc\nOzVZMadRoSQ\nxAmgUnwxCUc\n5h8EbDuS0so\n0JoIRmQW2es\naAkF2Du59Qw\n9P-MtbTe3O4\nyPzAML0fs2o\nEQDbDIz1Y0E\nCiWjwS4lqLY\nBVrZAIo3wX4\n6K7Xjdfc0bA\nDuGfgv_eDEo\n5mMnqYaXDk4\nrasqcYuX80A\n2foDdTT3cG8\nl8kCCIoP1jg\n86TpCwZ4FvY\nxbBD7VIJ4cc\nTxHITqC5rxE\nI13gMF50oqE\nVF_-AB2-Ux4\nh-UqMU-MIig\nJig6r9FAwAY\nu-pvs7gVNHo\naa2agiADM04\nGYPwh07eWok\nRwuhnfKnTYY\nqcGEIq1AEGM\n4RKjRiO1FPU\naDJJBMXiwiI\nvv84nq5_ZY4\nX9YOhb0FiIM\nUKvQEHlkqJU\nzeTYlUcrfRY\nQ1Yz3J6OGQQ\nt3aYQKl1qbc\nD6AzQTg_bPA\nvioUisPavvA\nxxmnK05iITY\nHhBAeTBIj0U\njMHH-fH6oBc\n1SnNjUe_vuQ\ngaLJooLoKjE\nENsr9cH6irs\nMJNG_rYJPV0\nhggAh6GibqQ\ncudA9HUl6AA\nL1DsFsUlgwM\nwNhse5NZgR8\n7iM1XM9SvdQ\nvicOpIdpQVM\nVz2OwX1XETQ\ndlEoKlncQsQ\nLbq1U6X78Io\n0mT5xT39Zvs\nu-LCigQRPdk\nUxIpYfsTkew\nsJOA_CvMqvg\n7ZbYv65cJ1M\n_9xxKArFYfo\noaSLgsnsrBk\nCMFFeWPy-NM\nlOR8JBFySr8\nrITjAbXej3o\nhfOL-PefOz4\nz_3ODalPzT4\nLDWuu8GZnkM\nX-t_25jG36E\n598QZf6lkKw\nP94WndY58eg\nhmYIR6v-oVE\nQImoaNjTtng\nhAQ2xTr4U64\nUoM7CdIs2b0\nNQ1-De19txE\n7yhDJzI-hjg\nvk9wMNmKk6Q\njsTtWLXjHZM\niCfplC1mMoI\ntxbmUDJcF6k\n_azX1Pr0vkA\nYHTyGMYFsU0\nBTbo7NyijNA\nHhEyYbmTh_Y\n9YFfoCKHAQQ\npHB8Z35H29k\noX3PL_u2LbQ\nwhCKn6cV-0k\ny_3OE_uIS8I\n27U6dyYE9rA\nwufYHJkbl7k\n1PLIzuZNuJI\nqe5s8UTNw4c\n5KaMqmlEcJQ\ngS6ibQuZIS8\n6yXY1OKtYPY\nZe4qFn-a-2E\nFuJsy0k28tk\nkdDH7Ynw5Lc\nxW0Babu_t8U\nBWMFLJwEVyQ\nkr5skPIftSY\nSlYRjU2KBfk\ng7kdpW2hZOI\nsIPWv4xB9-0\nTolt_g4y_tI\nQ1B3sGDIxtg\nv9AtWaaaShE\nMlACEw_4JXY\nTf3r8Bty06I\nR8JhC8HArkQ\nSei2JdiJ5Ic\nplEvMJ44Exs\nAFCv59zRbGo\nEdC7U0ZRALs\n11qpNfXStVI\nCKMpPpuKLFI\nIEA7PR8i5Gc\nGM8DRazH4ck\nvjMRE5A5tVc\nogEjqyO09yg\nHrIyLLIHrDA\nbXS1LMaU7TM\nueAsO0Gq8vI\nBgjJ00HhyCQ\ncA-laLpcLIw\n55d4Hx_kaGc\nt5eRT32QWdg\nwUEYIhP_9ag\neH7EyPs_Va8\nP-3iw8l0lB8\nMCJcxb_RtII\nFjKQ2_lTY_c\ngzyR9eQJMvQ\n2MYB0Gp7RLs\nW6aifznLeXE\nyq7rSvWzhNQ\nSfN8z2mHAmw\nBzeKxlcKil4\nujhnKE7fscw\nTHe7-5-D-gM\nJhho1OqCSiY\nFxzaTk1VwGs\nHNxe49fa2p4\nQrbBBAXBPE4\nwtnRz9SIZAY\nhphPtQjqfQQ\ngjUN_o1mtW4\ngQjGFMTbNxU\npR5to9mS2cg\nrUW2mfL---k\nrqwx9NRpmHc\nyc8UHdsuy68\nUYpqBY5DTUI\nxjCbC99HMdo\nVMO06PHDR9E\nC1_BoN9f1hw\nnvRcQGBL7Cw\npgae5kDwHT0\nW4Zj0uwpIwo\nyygkcTQjw7s\n9cwWiC6Gs80\nW2EZOorGpI0\nObyANYT5y_c\nQZ9b-TPTC_U\ntpkTStVMv_Q\nqRahFLj59bc\nyShrBo6NiI8\ntKjyNywkBEQ\ncypqB_GKzjA\n85PCzIbeQGU\n1OV3T6GWhIg\numIBbT6uwZI\nUlddepR-iRg\nGfH27NmFVSw\nSI_DOVqlJA4\nMr7Ned_vQgU\nDd0PTNGBFUM\neqv02JDVQ1o\nmGq0iyW-f7A\nriXp9rJ90Xw\nc5zKpr5gmgk\n8R9KLz7qDIY\ne9cysHm38Kg\niwAciIQDE4A\nNLDt8Iyh5f4\noqEm8mihoA4\nH37dm_eRkLU\nDvX8DbtVspE\nAUBx-geW0Tg\ntBMAuUeeqdE\n2PQw2qw3BDw\nkgu59EAXbic\nBnnCQlp2msk\nX_VSJfHiNPA\nWERocs57QaE\nmXLSLzeu-mM\nhXCaF68sDPU\nAC9SF7TOyHQ\nYnsmoUntOzI\nH6FYQzuVMfA\njtHIEO1Zdfk\n8s4TDbX1B_s\nWD2I5Jpe9bk\nKapEcfMelL4\nDMhcIrShxec\nn0MW9qK_xlY\nMLFzROHNLmM\nyBM4SCBZ7qM\nTsk9gCcchg8\n_AmKz3iZ1K8\nMCN-beeZSKk\nzOiq-2Jpy-U\nNiVB-n5b0hE\nJgPlgAnASbY\nEkE_bNKYqCM\nTPgdAesH76E\nwvVrDGmqHjI\nBvXUga4d3Zc\ny9ZcKltnEx8\nV5DgQr_g6SY\n3QyEUXjHzOc\nlIVO6oEk4Hk\nuaLxw2PDnmk\nkKC8076NZOY\nasNSRS-UbHM\nyKloyDDxo7g\nb0VU3j1hp70\nxDC6IlQdTLs\nmcp6KbG_5rg\nrpWuKoDm_9o\nnpWeWCC06fU\nT2jMiMTHY80\nG_v8xjmxtLY\nLxnWduj4P-g\n53vQBW_4hzw\n0_hajel24IE\n2AHF50fxTNw\n3iZ1TVOskhA\nOwQCAyUyuSs\n8jK3RW6rSCM\ng95ZXrh2oK4\nah6TYuJ1iQg\n2H2c3F_rzqw\n1w_JdfgygYY\nf6hhVIV_LPs\nVQSA2-NbbL8\nGjA92f_iCHQ\nmh7fUlkkX68\n1egkqpDOn2A\nQyOM1rQ7iT8\ncZKYcRqPh-o\n-CXBIAH4Kgo\nSBq1FLgZJug\nZGM5Y16SSb8\nxCQ3ZdnptUM\ntvj61hwINaE\nH6bQXth1CEs\ny03_LmnDaTY\nOF22NIhPKgE\nuEV9jxF2tOo\nwyMDViXXXXU\nns9WcZlqv_I\nADXqDq5zCTg\nST7mR3xLdys\nn-5bVE4K2Ls\n2RYNIbNVFhg\nhqJxDiGXTWc\nirhRobBI3BE\nKQa_SiTfU34\nw-A750XbFAo\n7tUYeqOLuYU\nTPiRiwKEz28\n2SiwZWhmbS0\nulLxPcOmDmU\nv3JlEi3CbGI\n0Gq5R5ffrtE\njGAsihLnYqM\nmAtmopQxu0o\nlOgPGO4JnaA\n8cQVspzP0Ms\nb7C69HqnV8s\nKbsi0KOunj8\nLxXrccK4S3I\nruOXWHbyfjo\noAheN_ARn1U\n74BF0nnqO5o\nWazcuKEk2to\ndKPw9-jpA3Y\nbzGDMtX1IU0\nhW_NzisexqU\n4GCBqzsWF_M\noLQ5NOAIAw0\nMvFkGlAqYYc\nXzSBAvxA5GE\n2v0aoYD6OOM\n5Q1f6Oij1NQ\nH177TSRFiTo\n-xCS0zZPAoA\nmCbY7cAv7r8\n9Dd423YO56c\nn-omBTsCIDE\nTyXD96iAjuM\nY4HSQKUAPKM\n33NlZaZVCgw\npIyrp5Aj7LY\n09m9ltjwuJU\nlEFx1qmW4ts\nt4M3hbVh3U4\nnXjnagPujjE\nrMS4ESFlfDk\n293PMWaznLM\nXX2EpE8SLK4\nuJnIaD7gDlQ\nma7zprvD7UA\n-WrDbBvPN00\nNXH48hZ6798\nbX-o8WaWp2Q\nmn6Wmceebfc\nAZtman1rdUw\nJ8JhG2j8E_w\nRUox4o5J5x4\nh5RMM02YE3U\nmZzkE03B64o\nkYA44FTePNQ\nCZRn7cU3UsU\nutFeHmJ1iUw\nGiykTnvV8Mo\nOE5CnBYFkZA\nEvWX1drAfhg\nz7_AwjQz_AY\nt_BSGcc9XkY\nW1GrNDtRkgE\nPLPb1pB0vJg\nP4JGOWnX9VU\n-zAp8NOpVKU\nZLJX6CEkgto\n65N3OBBrImc\nZdkOLsRkjBU\nVHz5xaHrCCU\nGKNv1vjCnQI\nMMigS6B4t3Q\nlwkdeQQiCms\nIfY49zx7RU0\nPhbkMQ89QPM\nzh5VtQ-x4QI\nBi75jrN5yDk\nJ4me49IF70k\n2nZBPdh9_Jc\nEp85AkCkk-U\ncYGVkLGyGqE\nwr4rZEPQ09Y\np-5nqrOtaug\n7DkV8WE7DFA\nHcuptmqW_kA\nP0A0LnjsGSA\nLgMEyrPhq3k\nzDdHlO3v8Kg\nzVzeXqLbqug\n22bHxTTLcdc\n82wvQMuzbow\nZMROlNs8iWw\nNr6NPOkDbpU\nnn1qvGiHvLc\n3gLU99wxUyA\nzaYgv8likRs\nUwPJMQwo2xw\nMb1kLqoiDuA\n8MoQTjNnlmA\nFPnF0-VdHNk\n4nSA_B8pC_s\n7wSQMwlqy0s\nooXE33T2Dls\n4VKym1WU9go\nbDAdgXd7Znk\n2hqwpvVHly4\nu54-0h7QZN8\nIpW3LbAEypo\n6kk46qE9oWk\nQhVvJyCaQS0\nE-g_up1kWt0\n9b1Ii-U2lao\nkuAwUNzVX2I\n2CxV_NKhsgY\nMPu6DXTG2ps\nwVAL10Zb9Q4\nDQaHIFC9034\ny6i9UH65q2g\n0D5EL4HLd3g\nKprKHSAAn7U\nvVPtQKHiWwM\n8-9wlwVvR1M\n2YbvpD3WQnk\nTw_kFAuhkbI\n1V53lOLjgiw\nf57Vat6YZUI\nCEvHsuyVfRo\nRR5kEQ9LgvU\n_lpIHzRR1xY\nGUWxHgIn91w\nUfHqN7KPZ5s\nHda6MwCdwI8\nV7gceiThJ6U\nRKt17dM8eFk\nQEQp25xImoA\nyP9sbfNwtv0\n0npouzhhZTo\nUZnEqDr9PKE\n5X_mnh-S0pU\nTNVwN7IfVAw\nSl1G9Jxc9hI\nlntqgt5jbjg\nVV55v_IKVJI\nlh3WF7shhlM\nJ6i7WPT1cFk\n9Ipb0xcxdqk\nhSe-_6hmDgI\neKrrYByQTQI\nmvFQciz5wRc\nzu9vz_Krzb0\nwBFzZM9YqEo\nBBXUqYlAK6o\nnftQNmMRqG8\nZ6rYB0AOMjA\n_UhMIImQ-Bo\nejRc7XEbAQI\nm6U7qRsCp6M\n-zEXV5oiWgc\n3I44VJIIzKM\neG4B_DIenu8\ndP9mVoZ-cmQ\n0DnThxPfhJE\nsmUy5NzszX0\nDoqPEhVHdBM\nbQXJoR6tLao\n1fVPS7eLbME\nFqYJIUS39Ck\nIV0hoLATbJY\nTaJeShUtQjc\nIbkWZDej_v8\nvQSkLuEOdMM\nqgbSfZMR99w\naPkfoqjZXog\nBH3ApQHJslA\ne37vIq1VL0I\nz6FcMyuo0R4\nd5CmbbyeDco\njQPKeltJ-Vk\nIMYTK5IyZ9E\nLrIJa8zJs_0\nRsSl85y9JN4\niRLGo522K5A\nYK7cNXMRifo\ngCnWKrvrCNw\nxiVeUn1rF3E\nbJXBNZ7FU40\nXSTakNMoF2s\niUi2XKRnJD0\nfn1dNeTNduk\npShuaMA2rY4\nYjF4rd3J58U\nVazRhsh6uys\nkFFuJQRlm38\n-ZlL0LLfjKY\nROzcf7QoDjU\nbhYOGuozHd4\nuQlKjRScXww\nmyOTp1wr3Bg\nyb5FDpFLc1M\n8YDVV75itA0\nP0JUY_IEZts\nf0wEV9jySXg\nus_GLuu2SAc\nz6ViDZpVoYc\nER6BpmtBLkk\njot1h4tgY6M\n83xaGtnlvR0\n3TWv-3cC9NM\nLMGAxyUnURI\nEqu4D2mZDHc\nXcMH5ntEWGQ\nm946LkLieG8\nTrRogqsarno\nYmbXanCiB-U\nZm0f0oFUxVA\nPwSihgp_iTE\nhl31RQCC_Bc\n5sr-kuYhYGU\ndOzGnmkbahw\nY9isIphHz2w\n9C_429woeJ0\nqzZegCkbJAw\nWHu2355LLQc\n8koQ3N3w7aw\nyDd3xayehVg\ncxRYIDsZzuE\n4rzrz48Fa_o\nVcxvmi26Kfw\nFYm6LTv7PKk\nRonS_bJ7mcU\n5qzsQMiYINo\nRzngZOLn-bk\nmLk_txo4sYc\noUleBi3j0o8\n0vtLA9LFkSs\nbtwtChuzeaA\na_UjNi8M_bw\nCDbpKJDcbQ8\nOneax2fARKs\nsvXObgE9fXc\nj8Sb4-hMhCg\n2V_LmUEtPMs\nYejpJgtQtuU\nfjAnmRjjY3E\nC73kXYUTC14\nUzPRCUNCoIA\n0pbdha7w0V0\ncneoNgk9dhM\nrWLEdpLkmrc\nyjuTLT5OWko\nkBI3jfVTQ04\nnM1xpUM4uUs\ngpEiNwKpq1U\nCNYtVjUf5uc\n38mMNp3gyYs\nN2EC0gAi2lk\ndEqZRPnfSqo\nQiVqI3oxdtw\nH9Anw9hFNQE\ndgXARu_D5d8\nZLbDKSo2QLA\nDOeYRNcSjWM\ngu_ckpTcrBI\nr_Bdli4c8TA\nHc6cJ6xmfM0\npF67F-hlVaA\nUczoOVtUsDA\nsNi3hwriXyE\nTCIgI-AObzk\nhdrvg0jmL8s\niY5fvk3H2Js\nEqEDcrYPp3U\nEKLCchi0iCI\n85PpxPJ52us\nwBIVUUflNb4\nL-y9V-gpj9U\nFInHKeP2UoU\n9MDbaBqAqMg\nlRQXQXsXIm8\nCoFFpId2-Ak\nh_Awe6CI91k\npxiwqleE9Do\nr38fEGep2yU\n2son-vLime4\nSFEc7iy6zmI\neL2DjnXT4wQ\n5y_SbnPx_cE\nGIKfEAF2Yhw\nBmz67ErIRa4\n0T0QWPRBau4\nbcAACOrgVKE\npeBuMWtkw8s\ny6mlssn2bl0\nxCLCNJpKLx8\n07YuuA_2O9w\nAwXJIHFo84c\n0CQi2Bb7WE8\nzs5bqvL5Wh4\nhSwy6UI-djc\niNa97wFdFyE\nJp9IN_iver4\nPHj4OVnU6EY\njnoCeqeNM3g\n3FOUAKr22K4\nq0vvYHuA10U\nmG1vn39lP3M\nAwH6-Yh7_SM\nhl8e9i6YiA8\nNp4OojYGixI\no4lq3SOB8sw\nU6tzqlxOr2U\nilV5Qt01eyc\ns0vNsH81YeA\nVA7J0KkanzM\nPT3Wpc71ebk\nVbdaoAYveUA\nohnkD-gjNVQ\nK1R4hHq8yr4\nfcfYrTFbM94\niGIooJXEu9E\nsR_xG8DNCSI\nPHHgumL4rUI\njn4Vhkmb4Lw\nnpaJix_AarM\nEyexoSJ1tsg\ndWhFW021gwM\n7ocMJfJATEw\nvROih4weKoM\nKRfJqmecqUQ\nSH4vCrz5Pb4\nGcPyVMO8bcA\nYGOmoGwJbTk\nbtXmzToD3W4\nzbN6F4tfbgo\nwTP_SdjD5ms\nnkmg10eebk4\nes83ejXi5wg\nLIhdfU4RIdo\nvdyYR85RNkk\nktEW65QQFgQ\neT5XhG7qLcU\n3Iambpg_8w4\n8mYlqWefu-8\n0BXa52qz-kU\nq4VIMzhfeYc\nz_G7CS4mJqc\nw2XWa1XuKSI\n1CJuzTFRGhE\n3izQonrYukE\nDmDtPzG5aU0\nEuUUunxYat8\ncK2a6BzrUO0\nKcPIEP0GpSo\nOLgi3eAwNGE\nBtEfmxkeEcY\n8pEobIigs5Y\n-pCVsB4Dghk\niOhZLY0cDV8\nYKFQfaDL9gQ\nyGGZUbqbTWg\ndUoKiRrGu4c\nyayNXxs76vE\no3w6MouV4NE\nqWOQp-rJ0Vc\ngFES6-SLD_s\nyxiNPHXAH0s\nEo87byVKgfo\nFrwrlztd8C4\nBdc_wuMUpP8\n1-70_Trz7M8\n1Wm5NiRIKB4\nbHGyGED8qCc\n1-pgYgfRbZE\nNJe9WplQKN4\nb-7IuyhoAxg\nMoHQNC_-45U\n8MVN6SVnO_o\n7FK6P0sTBrs\nsO6DX9YCIPw\nzbZmKqU90pE\ncQigrDa8S60\n71cKzwJPI5g\n6Cf1MeHEZn0\nnxnkxubWt5A\nk39MKOaoDhc\nPJQgGszBO9s\nvxloU1qqM_w\nNOVhlDQthwM\n0pfqzjPMnoE\nxbHSfACHWQE\nDkVjSKOdczM\nDOqHpCInxQ4\nWOG22C6GDMA\nSUQaxkWkB0s\npx2rxAmJNHU\nhE7Nc_la-l0\neiKSmbxn4UY\nDUMW--Zlrcs\nOKR7b6NL6IU\n_9rqQ-bOcLc\nwwxjFuoLYzQ\nUV5zCTfvurQ\nJ-7LezqtuMY\nLalslCf2kLQ\ntagDBoX24S0\nvEFoOcev00s\nl0RkrxY9mH8\n4d-EYIZAqXc\nFnahBy4Od9Q\nLfSLyM9XiCw\nT5-LhZ2YpGc\nazkJMOVoNys\ngEq_wldXBww\nFOWZ7B1QenY\n1shru4620TE\nYXt8RmeU_AA\n8pi1bm3890U\ns8hKbzuOAQY\nmszPMVP_qcw\nfjodt2JnWT8\nHu-xJbVwgPM\nGA_4dJb-nQg\nS8aigz2j7-o\nJipo-s5DGj8\nxHgLwzZ2_8s\n-BNqJHOxNp0\n1iwBRoAb_Cg\nsRFINj9g1iI\nC_0W1Q51_z8\nFmPwgLX9fAQ\nSQzC9SO66pc\nnaCL7BZb4Lw\nLhbPVQUZV0A\nOtBnQ30-Iio\nudcb-kQs-GU\n0slaW0ARW1Q\nuYDdBUasjxM\nnsR0Z8f6QAM\n0eBDwVSU56s\nqlX5rnpp0iA\nEn3JBEKvxr4\neF9nKXO2Zdg\novD51p3YDFk\nm1HazoM2hOY\nXYwGKDK87DI\ntWHVvdPw2t4\n0x0muJjYzp4\n1LoKbaf2vrU\nf9qQfURhph4\ntyUJnwrI-FU\n8nOx6uj46XQ\nv53yiG9-_xs\n9jxlrFSiLCk\nuQLeZO2Z1YQ\n0ezPVizHpY0\nlMilbGNSGtI\nf5mcMmE3RL8\n-jiQdqoe1cU\nP-3Aca5nRn0\nzWQIwJsqXrI\n2KLf6pNcizk\nO9zWwhJYQNc\nfQ5sMUzf2bo\n1UpUjmKJaso\n5gf0f8WioTM\nrpZI9it2rJM\nxrggI-ISIQc\nIg5uMkprqEk\n05GysooKs0g\nDye66uJlLRc\npesYeCruSyI\nLZDir3e680o\np1aWpCsLn40\nShwCEMe6wFs\n5vZ-SYX-4oY\nZ1sTQ3g7V-U\nRX4-U2r4lS0\nHLi_w5rCH1I\nzaQa4ttIyNo\nPKLVAeI7MU8\n5zXWLbr1LyY\nmgh0nSkIy04\nU8x2PcmL4pg\n8YzEce7XN_E\nKjdjDz8jhN4\nwAZ6dSIMivk\nWQXqhk-8h7o\n7YYge4b8MBk\nnPGxSotEa-c\n5rkWzIzJiiA\nDFa_oIuRDQ8\nhVGl1d8hRBI\nlH7EYLWHT4Q\nFRP0MBNoieY\nJGB0ZvO8J5k\nYcR9k8o4I0w\nCjCmtqPIRp4\nSFzxuEm9MyM\nvdnA-ESWcPs\njW1CeAVPhVg\nc6XHLe94SJA\n854Zlz5-vXQ\nopt5yQqMIdc\nTggs6HJxghE\nlt3h5Ez9t4g\nmLl9jkYywZY\nwAE_PelhISM\nHPjZKKV37do\n9hoSF_oY8Jw\ntJBeQ9Ewo3o\nGltdSC_5Zzw\nm9PEvezB8Nc\nuLtUl4pDmOs\n_WovFZ_MDW0\n5y4ZUMVTGcI\nNUdXYkBhHkQ\n0OKdy3Hpzp8\n5mL4wT8DEuU\n_WWIiTlGyYQ\n_N1L7UsUeuo\ngCFBkXA374Y\nZ1RHhhCqpqs\nl1SZ4ccagFQ\nGo6CJ0JVOUc\nZFuV5x1drXU\nelwNOiCaRIs\nJq19-ZzDlc4\nI6uZjdjkRVg\nLurparxqlNI\nu0c_2Mk4rJA\nctU1dN0Js1M\nN2IfyUBU9_M\nt75KclV8x0U\n9sSXNopytKQ\nUCgvftiw0t0\ntX6-gQGKm40\nETchiCkaaYE\nsT7nVSNlpTE\nJz7ZWKumqfQ\nx03pWg-naqg\nWFGyCzl7_zE\naaaIdkgVahY\nyTNjsgJ1wwc\n5ke6m-Y8DHE\nEjWWHD7bN3A\n6n99ZpSgKg4\nnna-IuI5SDk\ndXqs6yH3KF8\ntDW4X-r1dQI\n5TSXq6wBPVM\n8s2lUiTRbpU\nQYLjbRd1_DE\n8Dw3DomVuwI\nGjZ2eEcUTrE\nTmdzJyoeQls\nxMJFie7JfbY\nrTBkVOYzVZA\nIhdEKY1b0tk\n6FqUyxVD4qc\n_ia3xfBh5Pc\niKzLZIbUM8o\nzkRC3GX5BEQ\nJTgbdnNC5ZE\nx22ZX9dGaKk\n6VdHec3IAn8\nd3GeSiD2HIs\nSVZubVb2L8U\ns1s6SqHLUQA\nOOgShYNNtn4\nWajS0jEmEG0\n4oJlFH_1q3Q\nmBUdGRqiIR4\n8QYlXDYOhM0\nRvClpuFmfm0\nEBSjabRNztY\neWirsPiHnA0\nThbFbz_0qhc\nCrYqMX-T7G8\nOozc5zchP98\nAQkLWa6J3dM\nJFwhPbsr5RU\nOvdQYzRHlO0\ntYf5ENc39dQ\nqcVr2eztQEk\nw6zGX2qpxzU\nTwQ1KE0CRrI\nXDI3snWDWuo\n41T9HTzQ92w\niQ-P3eRhpKI\nPSvMn5gSLWs\nZSrz2g2kmb4\npQOcRJKuXd0\nJ9aEPBqeLr8\nDWyzPO2x67E\nlq13hsPI-yY\nr7ApEmhlxro\niJHyw2pjpWA\nax3ZNv5jqQY\nh-Ss_FvzZcs\n1TGWdRK-Ykk\n7booh4V0jaA\nzGdF6OXr6t0\nEB74RP-oZqE\n-1U0LH6dPfw\nm0XrO4YJyeI\nEi5IEWld1xw\nL5SM0HY5-vw\n77X1yGjjHvQ\nXURWRujGTNk\nyu3iX6zxbm0\nNYo4WkYNLn4\ntM47HMT8GGE\nY0LuDSiX63M\n51t2_o_H_Rw\n4S8_1PIolnY\nCdHKXmEn4l8\nTU00uzqJGKw\ntpzp6-BkkIU\nDDClFYXZmtM\nkymk0SPNe7c\nvSa0UepuyTo\n9xEXh16KupI\noE_FGufcMpI\n7xMhKadE7gU\natNVzztHoUc\nQ1ACWidWmjo\nbfgRDarWFnk\nCsOFvj63I2c\n918j6y6IMY8\n5azSB3B9dgU\nEw9wk3EGlJc\n-zD7CZtUNbA\nMiBcK87oWBU\nISeGBx2JvGs\nMH7EgG6Y5kc\nH08d5DSdT6U\nKNh81oYmq7A\nqI-CTJnYdBs\n0dbyPr97N48\nlKU5GNOEj3Q\nmryo27tUcJE\nYxa48jQBfLc\nQNCuoEO3jFY\nWFhKV35sbCE\nPZrRQrPE-Y0\ng7pwgA-oyYY\nJhTVkpj8g_o\nHt6uQH8qIf0\nZ4zy9tTPl2c\n4dVIxwhMYL8\ngNT4N5W81Hc\nYlF1gLpUZp8\nzz0w0KDwhWg\nxMuWufwEZiA\nwyzpqpXHcSE\n7FGCTdYcdIM\nyKhHoh_H350\n1hag3avWVXs\nKsmXgmhjUic\nZmOUutOuqn8\n6lRIgVCdLP4\nOnExOgppDJc\nCWBwJk1f-gs\n3uzjEETq9oM\n583Eukgz0QQ\nctsrpWvUQB4\nIwye0A9pCVk\nTzpamJ6GsFw\nS6Ze8IndlBo\nZAtw0w5b_1o\n_o490P6zeZ4\nG_r06v8SswA\nq1QELI37duI\nzU9rHffZVBE\n5Q8BbiDiI5c\njJohoC479no\nHJCm9e0Q2Yc\n5kvHTPJfo7o\nuBAd6Nfv3uE\nZCMwz1K-Cso\nIo1xroeJoBM\neuCE7LJZxvE\n1WA_d9qBf4E\n6s_lBln0kzg\nVBYiVoNwzQo\ndyCbGaYPSIY\nUStNNBG5K0Y\nLGmthB51XUc\ndIv1kqivuZc\n4KFtwqYA_kE\nYDh2u5hneLE\nPnjkPSAncPc\naY6ZwMZqaBk\n0x6usdVsGbI\nOlAEXT0Hg70\nmoH3FSt88FY\nedBNDiSwnlg\nBOo2x6MlAtI\n4a3OH0EcieY\ndsTyKFkGPuM\nkYHCKF2WLA8\n7fkatAePOnI\nKxRDIx23Xmg\nIvwJ-KwPATw\nYBrFMKQOqDc\njla2i4bOfjg\nMzFCoTidaDI\n19KoXOFVCCM\nietWI5HT_nA\nsOxAN1jqfpQ\ngQ2HC6eotDg\naLVjmX-ottU\no3f8UMtGyoA\nZV7UY6RYG6M\nO0Q3TOvvZNY\nElXKzY-3DoU\nWoACzZ_FUzs\nW_Aq6Mu-bQU\nF0tBvKtpT-I\npLKhG9v_0fk\nPbnhCazvuts\nrk0WkrT6L1k\n0WwbRHBAg9w\nlZ4ouD3RVKU\nRQlXH-KzlXg\nGzsGxfcPyTI\nTH0d-3NnNUM\nBKER7E61cvs\nqgv_7j1_CdA\n7rVMT0xklto\nnQBrfPjwAfQ\n5p9BA72SfkY\nOA1pcNFRhXY\nSFy70juGAHo\nROy7gCg3hJE\n9z5YYwpysWs\nSczun-f_Uiw\nOG9EDE_bnws\nSqj803KC3T4\nnOkJXxd0cNg\noD-1eCD7lkE\nBlWpx55Mo5s\nqWEaCJlKZXs\nF-gTRiA6Ncs\n4tehW9FH9aw\nE5KigabenVg\nJ3Uq3-vH_I0\n9kcwYNK9cp8\nwi1iG6DIFOA\nizRUBt3oeMw\ntIZfD-LANtA\nqZD-BA_Cxus\nsW1_A07itgQ\n9fs03_cdppQ\njqvMzCLAE0g\nuZC4v8_fApA\nNP5PcpEDjS0\newvkTkHfJqQ\nOrxsZHRGxRc\n0GBAUGvKy2A\n6UY9MtqSMgs\nQvUl28vA8oM\nYcT_oPYKOw4\n2nrHffYUXqQ\ngnfJ4wcpQsk\nLX4AIei6zUw\nygNoJlu743w\nVMkhYJEjv7I\ngMODOv68SGE\niFKyzbCLQQA\n4J0fchFqprw\ne8mmLcViaGI\ntRwyOQw5zcw\n--oCWVOBuvA\nf8a97iauRtw\nf6m4J0AfEOo\n0REROw4SOGc\nCK3cE7N1pzU\nXpy157qTtng\nXWxNXRPHQIQ\ncRoIsrSzapo\nZrKUk6S3XSc\nXm5eKjy5MTg\nFARHf9b8zyk\nBXq-jB4MZdU\neYx5m_iT-1U\nG_1jQkCRF58\npKjMt3cBv6g\nwu-RfHKCK7Y\n-IIHYIZSFbk\n4RsVOfPT_is\njOLLiuCk420\na2_9fQ0U57w\nXrBTDbxOZE8\nI6f8bYDvpKY\nqhgkpZecrTY\n7ru6HnpJJP4\n1l1qpOrjsi4\ngpgsfivrruk\nxSvW3Gxd-h0\nQU677HiXf6M\nlQ2RStfZii0\nKTugpKzfZJk\nnrqg6wxuqFo\niJiQsEZXz_8\n0WoyXBXCqdg\n9FKgmafi1p8\njWHcIO4y8kk\nZHCd8doza2M\n0kgLLa9gnsU\nzFbHwupcqpQ\nvapcFQlS6Qo\nbdJt1Mggjl4\nBUrDm2GmJ5I\nAcJq5nGwm4U\nJLTtgzY_7-Y\n6i0sEgnPLms\nlmqQPyNsXpU\nJ9z4myiIVww\nw-_BMZo7mik\nGYJ-Z5o9gUM\nu31Fyx8g5ZY\nhiO38yFF-Q8\nXFTJJtOtFtI\n8hGqSM0OV9U\nKpM_NyYKwkE\nPzL7MICU_OI\n93njceSaOMM\nk-RHqxyYzMo\nUeCpUca9VUs\ngHQV6AMclGA\n-qijwXk_bnk\nx2CizSzk9s4\nWquPun-ky2Y\n_msjEt4-jZc\nJWLd18_ViOM\nHOrCBUADkMM\nVkJAnikGNCQ\nxJOME7D6-ow\nSeiltyhdQGg\nRMRJQL65AqA\nIWjPXaM20kY\nXFK5SV1-Pzg\nX8YOtEocd6I\nICPNrxD783c\n1PoAz1WNBdM\nwsIybRQaDE4\nD4TfTzW8GVg\nc4Wls5pZlxQ\nEOO8TwyVFYI\nw9sO9o8LNvQ\n99-v2bOxnJU\n2jgk4c5V3b4\nPn7M9PpQEgo\nLQnfBdZnLmI\n_uhtsUzb7fg\nk1MdKI8kiXU\nEVIsqHrME68\n_NcD2k_QmgQ\nELqdLvz60zA\nMp1_PuUoSaM\nAEocciZMBjc\nHNPyZsPH8TI\niuKNXP9LcSg\nzI6U8UWPhWk\n1hyzWfYu6J0\n-28eBo0EDDg\nt7mMEDZkDlY\nbJwzDAtwJQU\nC0uo35iCk0A\nswnHnXKbQPM\nhYwxyijuhOQ\nzQX5VL1XU5c\nVUqea11tvH0\nUsonrKXJoas\nfhgqKH6V34k\naJVHnyq7Nz8\n4MTf0k1vqTk\nOMSkavUrzHM\n9rTcIUk9Aio\nIx8ShPSjmtE\n4DAJ2QupBUc\n5DEINY4WTVY\no6hrLFJq63E\nkO3MXkSKwZs\npbfBzWJVbX4\nuxXMshs5exs\nXO3-PumyjoI\n8Q-DUxHMLvg\n-X9XaNXkvCI\nb10LyOeq5Hs\nIWpThrDfQEI\ntMaXLU_KG-k\n_nk2ZNKOxCY\nsXrZaiADkTU\n1KPTpxxZJRs\n0YDejqKggWA\naxcECZzlPVI\nyVAFP91HfBs\nSRMuzjyoMRg\nz0bO_2sgBZA\nMmPU9OjE2X8\nVe1oHq8JIwo\nkMalrBgdRvI\neCS7qPuOXQI\neZXgYKx0aQI\niWII1mMM9HY\nU8VDmQw-FAo\nUdZi8K3PLs0\njyO1ILQAGsU\neRqgQiBel8I\nEhaogw2TNOQ\nLoDGQLw_iLM\nVHsRuDuQKo8\n104ZQtfYDso\nG0y14S8h4ic\nd9YfIZP8qPE\nFHDq1ehz_cg\nkaWU7XlPxV4\nVGA1SZwZC7A\nGxA7BICC_zM\nkeumDslluNk\niIUhwUKRg28\nBNHVkYhC8Po\npv7lZRQDygc\n0JRdzrh9in4\nw2fpC1izWPA\nzZSiCTrPiXU\njBuygQyZbf4\n2COP58ej7QA\nO31rBYqYkuQ\nbkeLkORd2y4\nzSBXBMVa_Y0\n0H8EmzfVSbg\nr1scNthC8NI\nmohoyRj_VpU\nEP74OZdI5d8\nh_htCIiCXfE\nIsKNaQuuL1g\nHHSAml1BAR4\nVNUBj_27Z-A\nrh8OdlSXiDo\ncjIv83h6Tcc\nO87gR6xJ9Hw\n7WzJb1l2wtg\nyan-Tdiyrig\n5aBVbBiojuM\nXOUauBpPRNk\nPwfZYNFfEfM\nh2Fbdx7N2Kw\nfCuYlKKFAO8\n9Fj1STjqFDU\niso415ggxMg\nF5Hme0QUyXI\n2l1u5Q9AYjM\nPeFLEFUNxzc\npzrbB0XK9eI\nJyVZgdLjGOo\nOtsMWS5Z2Oc\nQQCeQOAVWFw\nJ2vVweGS13Y\nGiQJxD_bQCI\nucuU6zGryPE\n3k9G5rq86PU\nxnV6hJs2Zu0\nl6cFM5Ubilw\nevWlSySuiII\niY2xD9VKDiE\njCXcE6DvgLw\n2GLDqvA6tKI\nM5UXOwphsLk\nvrVDJcw40BU\nKOxmixap5yw\nqkVImymH0A0\nNeTnaYH-08o\nPSG5uNsnkks\n01OfrTMVeD8\n0zROMB5cxBA\nuF7ftHMCN1w\n746lMCHNZeU\n69bd2hhDLF0\nnFJvGENqc20\nx63YlKqGZhI\nfyXyDW0pU7s\n_7aTnDiBVEQ\nF_BH945RjPM\nZmNGTR9Y7f0\nBhSNoxyn9ao\n9-NoQwwRDJY\nPDSgyYfLpdo\nlYZKtD3RwAw\nMUlVu0L0A0I\nRdxv6jaQZKM\n60gXuCsTsPE\nilYccsPDTXM\nGe-zBQLa7FY\nHAW15MhSWuM\nE7fcdG_azPE\nq2vaQZMf7LI\n6NbloMPJuRY\nDslpNlhAfLo\n5ql5X72wS0I\nn2GAcA_P9Tk\nTGAHQorruwA\nfpgKY0I3taA\nSjfMBu6JQ-0\nrvImiPkES20\nJupxjoCyrBE\nA-zeWjOl0rE\nX2zBKcPda98\n6df7al2Ez0U\nO5TthS_9-9s\nRKcDDLS3aqQ\nHnKmwbVpRno\nMvDNoWSnSsU\nf_zpkjkB8ac\nkH6SUxCwXzs\nK6bTibRdNxE\nSV6dKGbbkIk\nGCM5SoA82w4\nsb8IU6c5obc\nY7gTgzqJD-w\n4WCDgJSCQpc\n-y6RPL5v1bU\ndQQd6s5gYhk\nzie94YV7W4Y\niHheroBxkuE\nZDbhvMyusZ8\nJNRFWtS0LlM\n8wyhEmMY_yc\nOCvg2G2SEhU\nsUad0ZL-nBU\n7Dxxk1az9Uo\nLWG3aFFhg8k\nvwObck9twes\nGXumhcRLN_E\naIBT3l54BAg\nDvi6n89JWUY\nnELxnSK1SHk\ndTGuyNnJJFs\ntsQS1b-fNSs\nVx357DNh0vw\n03WbdaZCGAA\nvKMMeOLK9Y4\nxrbaFa8zV_o\nJ1wEoCLDl9Y\n1uX_OAhcgb0\nbLD14JwSiYs\nOMHAwJjp-YI\n89qTnQ_TK4c\njfA6jr-y7_A\nuIEr1T_jZlQ\naWaZMXiimms\nULCyXL8cTFU\nVUZBpBTqRJY\n6v098-aMBj4\nDdGYUf-E48g\np6dUf7YRWao\nQwyo6C87zdE\nEJFm05MPSDQ\n1y20NC1_MGQ\nC5pZipJa09s\n7d7J-rlXWvc\n_n3aOgYXQ6o\nVUv6vjIidho\ngIdOE4SoDfU\nEWQsR8em1BM\n3lgcViU45Fs\nMB5PMwcYLqg\nMhev_TsgOBw\nlWERfZYWdA4\nKY7hswfdxI4\nYauy9nMQU04\nx2cNjm0VUmY\nb_2-97kqlzs\nxQ6yM4Dxpbs\nzdbOXyz1gpg\nKRyazQjCRD8\n_RD0zpFbSmY\nHLpC0bnO5_o\n2cRMH4HXfzg\n3bmDhfEtNh0\nf69ceThb6ec\nQ_j14lseORE\nHdmi1UbW4Yk\n8PzQmtwNeXM\n6cxpiPSZHmE\nQJwdXqGBEPQ\niNLZ1J_Gslg\nc_k5BK-ONiE\nfJpdVdl29Mw\nficjws23Qjk\nsKHJuOqcvOg\n5C7dB-dOS_U\nFB1Go2JVVqc\n0mE11Cy_xAo\nKcv1B1aZIvs\npxOZAWSn-dc\nOJiN41xn8iY\nGexB78wQ6Qw\n7kGm_xBgi1k\nKsZ3SpIoNos\n8cAlXSNQeUY\nH1rttoUCeUg\nGKsKm9KYbaU\nC4UKfmu_m8I\nxpKYkGHWB7E\nqB78U2aWihU\n5rkVGXHv2Ow\n1YklLet-e8s\n9nvHAma_Lh0\nM2_cj-txN9A\nuf-v_lzbcp0\nRlPspkeaFrU\n2ZpWLuAc7LE\n9UNV2c-A4BU\nrCCCJ2tXF7A\nPurkHHO7Gcc\nxP7ctkX_Nm8\nM9F-ZtKswww\nUrRDXFXZUhw\nEV3y3ehKePA\nmEiLmu1IF5E\nobeGwYOdAPc\no3vv1SPEv1c\ndrTH0CDFgx8\ndDH3nlKHRQ8\n-i6m1i3JLaM\nwDsYB_uRbaE\nG4OAR22W7Sc\nKVu2o2fTKlc\nddQniqjrVdo\nhsxRROsF4D0\nx8tbSHuoB9E\nCBS7b7HPuCo\nFrGGFHPDN3A\nRl-Fx-2zzdQ\nfaEbd7LEDOw\nr1mN6K60148\n9qrDi2o-eEw\ni8BG2g9YJAo\neKCpwUXh_Qs\n25CbQ5zMNfU\n6ObWyt4Hfaw\n3IklTegWKfw\nKQz3KBKMFg4\niSIDCcqERkI\nGVmIqRcglvE\n7H_6ZZLNsvc\nU1WzINCahpw\n3GvvMpMUwQc\noI2bCE3FNZk\ncr18oXaI02Q\nn2dBpP0yhUs\nzVBa2vcgozs\nfbS0gOz76iw\nt1-maJWU3ag\noQ39ssiQ-4A\n52QPxxtu1-s\n0Y_kftjPpUc\nZ1Zrfm1Ylro\nSoFgHbVPrSk\nJTJKIuXBey0\nXN0tr43oqjI\nXt2JzDaHiNM\na1iQDKCkh6k\n3xmFjLSU7MA\np4JPMo4bMa4\na1Bx9nyw35w\n0f2bU9SzCzs\nS7GMNTJa5zQ\nMVqK6wNkSxA\nW6qWnmb_22s\ntX3qqCP99Tw\n5ktmcS1L3-A\nuat-LZ3t7i4\ncCpDJlAnHsg\n-WbsnXGKkIg\n5CgpROI6ivM\nc2HZzrcEbZc\nwyRq2S8BTVM\nFwkbHnPwEYc\nfLWjUBClszw\ns1nXXro4Aio\n-dMBMU9FCQU\nI6KZlznXyiY\nVIKvQVph07A\nRxhenI5eUDI\nWNZNGn_nkOU\ndRz8OjNEtaI\nGe-ilEFgJ34\nLeA8ojVy8Fc\niASBdbiKSHU\nsh0UuxRgqgk\nPMmvUWqeS80\n_V0CWwyrJUw\nB86JJELi5Tg\nPX-PzFNkU50\nY5oZr-5C1eM\noDDexxBBWXQ\nePaK5-b1oec\n9diokRIKGT8\nBhWg1G0czSQ\nUa0oqZfJFN8\niZqKmtk6Vlc\nhZZG0M8zj_8\nwb8HFGVE218\ngHr0P3Px91c\nXTLruQ3tl4U\navQ9Wvp5wZQ\nZwVuw2rvu4s\nev_UF24O-oM\nk-e5rthOQdQ\nfQmbxg6z5ic\nnuNIO9LLqYY\nKGk6xZWTgBQ\nNPS356u_u08\nWJpSAnt7s98\n4gYG7purQPk\nuvyPBpxL8ZY\nJY9Iq3-iD7s\n7iLdxVgHWlM\n_NQec_YluKU\n6Uz7wmX_6nY\nmfqzWZW_kkM\nOGXdRrvCW2E\njJ9VFThsqtU\nNFdvt3FQRoQ\nWXVmCSMEpP0\nyef2bvCU2Tw\nuO1YBHAbBSQ\n_6G-jfNOkIc\nfxJ9dLfp9k8\nudTmoc-i1Q8\nq0YOdmVSceU\nhVyVNcP83Sw\nR1f88CiYzes\nAdjVK4hPaOo\nAInSCWWY14Q\ngjRCN-nrEl4\n61ZwsdoEI9U\nb8wlb-8zFSQ\nFi4ixdzoA7I\n7g4XFGQutFM\nZizMOl5Xllw\nvm29fXJWuOA\nmyJttzKxu64\ngwFW3icyEZk\nLPRHiok3nzs\nFTjFM9edoD4\n3DsoxW8AUEE\nVMXUsPGKzfQ\n1X1shl06ZPo\nXAw8Qpr0NK0\nl97NtEMUx0M\ndb50XeSEtv4\nMFvi1YVig8w\n0cPT4zspVc0\nNAEDVsrKk5s\nIerddGM-xO0\nFEAfMv14l5Q\n79hXvDohqgI\nCNuEPee1qOU\n9FyqTQ9ywnc\nx2yXtHyhu-k\n3T-wqo8lamY\nZ3yJF1FX9hY\n0BQZb44R_IY\n_zFjP61xNb0\n5mAI-v1nfOw\nPnmtF6EqeXU\nLCWzLnaJqBw\nr7J-Qx2InoU\nHo-Sv55Yh20\nEdJRbvXr4zs\ni_qI6LOc54w\nRw-EoS3td0c\nGHOgErGvyTE\nAgZbPNlvHe0\n04uN57jOg-Q\nbc84pYZICbk\nf5e73A39TF4\nIqfczS-tx_4\nfoPh0pXXq-A\ns9nYXJweTPU\nA_ry95V0zNw\nj2u3UksivgA\nPIAzmZ3FFy0\ngusrRGgXCJg\n_ZIpnWucimQ\nE9paF0XzmtA\nyTKHZcQlMP0\n6vtpmEd3SNk\n9WQnbIVJZjs\nghtGcGtVtho\n1GvlSPJ37Hw\nFaWvQNVeDag\n0oHT-rtiFZk\nPJYZAww0pgI\nl9LOKUiY0Dg\ngRBOrpdfsiM\nFhhbua6ELxo\nUOsM81pRVWo\ntYs7uguB_JQ\nGtt2ibEe1NY\ndshmyllg2HE\n-JERO2LQSKc\n"
  },
  {
    "path": "data/metadata/youtube-dl-dump/2017.csv",
    "content": "9riBff-h-hM\nP94mqkWtfxU\n_RG8hoGMxKw\nm9Gg_VQP2zw\nPs3MsEdfpAw\nyijQXDtxgic\nC0H2SnzitoM\n2tqG6KMgyv8\nB5goHV7tFnE\nH9PmpwhBg8w\nJ4ZnYc3tNyw\nwXDgyuxBuBU\n193KvPnLO4I\nkxvkI8K7fTo\nG8r48HzrYHE\nFbV4VCCk3Sc\nm0etOugqkPU\nN_aPyfiVWEE\nCYQXYJIN3Jw\nh4lbn5nDXwY\nLQVzgO14oIU\nI3XgtCzF5UY\ny5_Q3HufngU\nUUDv-oUehMU\nsf1LMw0a95g\nCJGeUFtiJP0\nj4OMpEp-bFk\ntgpGrfh6gM8\nOgqkqYeNbOM\nkm_nixuzb1A\nw3hwZ-7CWeg\no9-cFlOdXn8\nYptUTTJjUVs\n_qbp2nGRp1Q\ncwgaR1xDiyE\npN5RlyFWJBA\nQiT-jk74QMw\n_GJG2JDvCes\nPm_7ga5bxeI\n-p4TkuB20bs\nvsU27J8K3Tw\niErVeElswus\n4F_jLtYFT6Y\ngBdbUMTXKIA\nUgtSRZHvyWY\nFPpYxPOjtsw\nmAD2gJTRSbI\nKeiJDMd8loM\nGUw4G1lDGYE\nv8kB6cqv8qM\nLKrcDYvwV1Q\nTrx5K54MNp8\nW8EhiYDVPEU\npiYwvMvqXPg\n8Qw1dYiaCto\naxWtCnuctw0\n_8hB8umrGlo\n_2gI4vpq9fo\nEPj1eq1csm4\nKTVlvs7mtkM\nGfUqvGxa6YE\nNGkLen8TbHc\nCsn39S3c0kI\nPg_mCxaEa10\n7fxvOlQLJWo\n3snpAmY2xeE\nXdp-MXh84BA\nbKWBb1_NJe8\n-wBOjw_08o8\n1nwaifplKCI\nQQAd5xx0XHc\nAC9URVogG3g\nuQR_i0ydJik\nxD9G6rUq_5I\nJCo3QW-S310\nI4mtL3Zs0Zs\nwPmgfWpamb0\nUA1QG3_VoQ4\nsHjCcVC1uR0\nbdFo-WtjOmA\nv04j4-SBv9M\nPsRTAWDrNYo\nMWAMJWYNpK8\ni5dTE5dgWOw\n4GlXOOYL_5I\nttEZ7b4Cf9w\nUeeK-Fgup9w\nXu0QBBxHZWs\n7HlSKPTYZhs\n4JE04So6OqU\nrRlfzy7Rxdo\nRmEZwxFSsWE\nvk5Kr-zV8AE\nWrY9UuucSUs\ntaf0MZ5VgDc\nvLw24Xr1zKo\n3OFda9AT-U4\nvPYiq9JNq_c\nIii55E60gfg\nfPcbyFeefXs\n6fJNyx7kI6w\nIMT0EqTWI6I\nJT_59yK4Gm4\n2IIA6TYZynQ\nZWe2pwIiWsk\nEMKD4L6Peto\nf0-Ea9Ki7YU\nhzmZJcPlJlE\nVM8ViJw7uNs\n0zQAUQGwv4A\nMkKO-Z_Sjm4\nqMMl8NYzcNQ\nvDL4qARSaBA\n5wcg-4j9CZ0\nrCUNazDU2mg\nzNMpSVorNr0\niG5oSrAW9FQ\ngQO9bgOLhmg\nDxCjqhDD7X4\nq8-xQspXFag\nVOk7mIZRPzI\n4-hiooEmi-I\nxwjw5TFPKwA\nXarGS1AeEcE\nXDnXI6KXoeg\nsN16d6mhe-A\naex6V8aGvxY\nVONBpGWaxL8\nqbRoK8WhJQQ\nVA6nnlleAb4\nPHJisUS7KSg\n-jtzzs0_bM4\ntOeINWwKvoA\n-s52VEAQmKc\nUkZVQNNzUAA\nI8gdjJYDJ4o\nHthNICfVKS0\n2jHKPubCPDY\nUc2sp69O0uU\n7qjZeHpcVtI\n7_G8cPqQwEM\n1DgOAPBMXws\nv4X6u53WL0U\nRwN3A9iBARI\naBACy7VwhhA\nmtZ90MN57TE\nqLBpHZ9dUZk\nRvZfy1w-M7g\nGCdylltS-m8\neFs__fovQyk\nZlFVmr9iJjc\n56o2aefvmRA\n5ArOFrHp9Lo\n9Ou3nVQc4V8\nXPhVzIgYjhc\nVAfaWTc3WlQ\ns0rlNw_cXqI\n43nQlnNaU-8\nlsSC_8Aqums\nhMCFlfCw0HA\n0cWnOxMXOEo\nYQJoemnpWaM\nIJIeGOw5bXk\nmN22-ZrX-tc\nM5mJMC_RpNc\nGoqDlg4px4M\nfm12-rhW8cU\nONBLhIZCtQU\ntVBI-Fup8EI\npQ62TmdWnyI\nPPhGRj0W8e4\nwxiEJrmUlL0\nZ_7N4TS_AzA\nayq1fVd6Qhk\n1YsmGZIZG0U\n2anI_i9YYf4\nXocJyNxHsW0\nPzjOxjO_LuI\nVkldXV8Pgi8\numcyzRBeJtE\nPCn1uAs_0VQ\nr8-BFx3xFJ4\ndR3cjXncoSk\nsR_tidD4M_8\nfB5HTcFhCso\nORrQKFliVLM\n_sHXbqFJCr0\ntu6FDI4JBDY\nC0vM89y4088\nwa_9eIwrEK8\nopSAGkaqx6Y\nYtqU_6Imito\nenNm82zd1Ho\njgk96izcJbw\nte2WMrdJ3yQ\nKdu22nQNZmQ\njojFdN-oysU\nV11YeYfaxv0\nf03hKUGdtzY\n06h5HJo7A6I\nUwvIz7Vdhn0\nKk3XhT9UJAM\noOhFc0F3jVw\nuHltDaQU1uc\n6O554p-ovsI\nZFXOR2yoWCg\nUFo40MSG5Ss\n276AIPEK_JA\niDnE3PV4YNc\nHlsvFTNrKK8\nPDnA3LOm-xY\nKVbBkEyaoT8\n_oLBVF_VYRM\nbkLs-xLbpNY\n-r_EtRqgj_o\nP-M4AnVnnyU\n8KuNjb2xEoM\nC3lLA69xOc0\nPK14gY9Gn-A\nVB_ZrC1u74w\nzm44ZmISCac\npmU6-1I7eyQ\nxSM_nz6gKOI\n7-TZCEyok_o\nCt-zGV4TgKY\nrsuNowyCF0c\nPv70ImW-l3s\nqIalODmFrZk\nCujcdaQpYWE\neVJhlVgr9lM\n-xZKHX91z9I\n0xSSnfRYBQY\nR66bHMRd6L4\n6rvbWWlv_qY\nKh60xjnuAhA\nTgWu1QcM1Tg\n2dPi-jM7Jzo\nPq9kAmZ3X_k\n31ZrzeS_ymg\n3uIw6INr36g\nw4GgZsdpMDA\nJ8hfrE2LBSk\nWx98L_LssbI\nQHcl5XE4XuM\nP7J3raOVLNU\nB493yqCgpZQ\n516x-cH_Cpk\nlUyHKva8Wfg\ncmJRHlOcTVw\n285xhqP7D_Q\n9cJ1ZWXeOXg\nTvxfLhFGRzY\nQwjfMOhKcTw\n9ZmqIpTPFmM\nv7Z3aLND9Xg\nFq5yX9ENZh0\n9F5v795Cfo4\nFRvhNHgU6fI\nIYHAqyiQ2i4\nPcyonXZoHfQ\ns_B1ul97bfE\nDv-ibHmFlS8\nqXu7Ts5FWqA\nIr4wUoK_-c4\nvMWCg4TNWIg\nJKbrP4cjzo8\n4w6WN2_l0wA\npwuNGRVWB9w\nVCLJGenGyB4\nQiK2W8YshS4\nmbRL9NE5NXk\nocqy8r8rDI0\nVpmnPgUwVO8\nuJ2RTDbq1IU\nvrluM6pe89w\nNTTyF1mDtgw\nzsmP1h809F4\nIk8q8LDqWiE\nQHjr51lAne4\n5rVB1DFakzA\nlQLchoQRlZk\nAe3HbC1X-_A\nmat5twjYjJ8\n9fHiacvqXLY\nzY2G4v0b5IU\nih4MIVjS8yU\ncscOz4NHIWY\nGwowcP5KIIA\n6U61OQAOe84\nToI9OHLE068\nuJ_dVRo08Sc\nD8gSV_8abXc\n2wN8f0ezRS8\nTLOD07LZw90\nfWRkpKq-9f0\n3N5u8TKtmfk\n64-EdvBcZYg\npNRl-3kZPzY\njNNX5a8ogr8\nftOTPUX7vss\ntuh3yZXagYE\nmPxP11XFKcw\naYNntWtMi24\ndyupZilayXY\na7dRLlirThw\n0mRRULBvuj0\ntStZuBeyeok\nJtgnLYdR2ec\nmMG-Op_PPEE\noUXKSovzDMw\niQrYqaPeMlc\nmu9cObUl8Gg\nUIKJTZC53hY\nPDVyr--ODQs\nE-gwIn1O1pE\n2r_EHD8QVYg\noeKyva3fU1c\n3oQd25IcII8\nhgQC-VGKUHo\n0fAHVLBuwVU\nRo4xPHjRH8k\nTy0O5WKbLkU\n8rSdR6dU7KA\nKmnf2USgtiA\nwPw9GesZAcw\nSe3ZAXB8sU4\nABYeVd_JWss\n9DmxaUyjKTk\nDDaR9vzYJWA\n8PB5sU_QcUc\nYzCruCXU8Xc\n77DXn43fhVw\nTYCfoxmY_vg\nS_l6py_n6RM\nnqJIAz0C5Ig\nM6W-zjN_LYQ\nBvS7NWvYZb0\nt9SNzY1Hq1k\n0qzhcuRwBnY\n7tb3_GWTIaU\noKW6UxOdICg\nlKzUGYETlU4\n7jXZpvSkCaM\n-LfB7USrdis\n7n9xJpld-0s\nZnxMS3Nf6Ws\nZeuUMdNQTHQ\nkHAHQMb4Lmc\n97E7Kft_bno\n9hNNrKNPGVo\nermD7PGA3Do\naiiJ0fBFjCQ\n24B-_HU7NLs\nZdv1_Iimmgg\ntm_W36kWahM\ng_C56llGC1E\n4tMdFDBXDpk\nWShQx7lNPi4\nrZyjko9lXo0\nHCRagorblVI\naGE--b9ilhk\n7SNohNGz_f0\nwz0UlSqctTI\n97gMDmQV_es\nnvCEzZ3P_x8\nKS1iOmeMGEU\ngXVvoSa1xBg\n4iLKU2WRo4k\nKW7bMwCb2_4\nJdWS7JkUno8\no71CfblYCqI\ndIx1J8hHVkw\nArnlIuuyPJ0\nrHYsSCKGZGo\nfZMKMakjV_A\n7eYTzvoxmk4\n_sMqmGJObDU\ninMPeTx6hoA\nQHTbbfdmYuc\nYDBqQMQB_ls\npUtBYdlwUNA\nmymHgUYBTfk\nhfXW-z1-aUY\nqlk05SwGu10\nlFzZCgFxUSc\nWDrQaK1i_9U\nkJg9uBKvDZ4\nQx1wXZHymV8\nfhCVsKgC12w\n636QHxJvvjc\nMsUXCqHc8xE\ngw4boF1v2YI\n0xHPBlFPCwo\no00oxyBzsb4\nttjmXS4de4Y\nVD-_YgrNOk4\nE6T4nHj8afI\nQ2P2WsgH6mQ\nT6P6Jyhmj6E\nGGK2S2wy9sA\nTgfJD9geSac\njakEl-SL35c\n31XcssmnGvM\nkidICVXLnRY\nNXedF2XcFkA\nMX7c3F1q8UQ\nkNAO6eHuCjY\npoVn84doiN8\n5YEw7F6ri_0\nwTLo8CdhxGs\ns9TKR7rSFfA\nc0XTkj3PIWg\nFr6fIMIc_Jo\n05foBuX_brU\n5NTDlhH174M\nfEwSNiZ3zn4\nra9UQb-OVqQ\nOnJAp2emJ4U\nSwOfGb9QwTc\n_yxKJaVk4kI\nN35FsMxEmSc\n3x0UxzeZBso\nI_X6zWElJdw\n2EQCpQbUrzI\nlQhQeus0ItY\neKCkxzJFP5M\ncvNjYmDiV0Y\nfBNzgfFkvEo\nahxDiseuAak\nF6dN5Kq5NZ8\nJIkmOqrneTU\n9SYhu10qJ-o\naiWJhEMskMU\nYqRwOf0XHUg\nyQ7JLXkHq2M\n5W60oPaZOIc\nEntbO16GpNA\nw7DIFgkIh4o\nVDGE0RPwLH4\nDUYaGj7RBfk\nIae-A9s8Nk4\ncWKL1gFCS54\nCaIXZsmUl4I\nqL_XE00jzXM\ne1BdvP4zenI\nYr3YqpkoN_o\nqQJmr9kI9uw\nRAqYpOzllmM\nrF9Z6Hvmf5M\nFRSfDQyoav8\nILwJA2feDRs\nz2PH2-yl5Ho\nRDBywHkU6Wg\neGLC0vhemeA\nO7z6rV8Gdbs\n0mPTGVoG248\nelcYyXvJF7U\nEXUzqVIocHI\nOpAEdqIIWpY\nKSZN8iThGZ8\nXaI13YBdi_M\nr3fnCEjvPCQ\niwGU5hY6stw\niPgcg3DVoUY\nm-PsCZ_57MY\nzfUzaYV1xfE\nV022pMeqRjA\nViF6HrzoOj4\n_SdYxgbXnHs\n32QcvEuJYFA\nQfATkY6jMtM\nav2VWuMUFCM\n_s3bHABazDA\njirWCRbgK8E\nTr_OzL7mupk\n8AXEzcuMQp4\nWyBvHGU-djg\nqTANCNgUW2Q\nie6rKW_Giqc\n5UOJUZhe85M\nfpOQzt9NtX4\nBNgJCuwM7CQ\nxchco5BLMQU\n7oOKwZlj4VE\n9WKilpdUoWQ\n9UslcBJkmyc\n0vI1R3VEREQ\nMf0pWnkN_vc\nwZj44nizNJ0\nccH057kbWTg\nWG_LG1CfsCE\n-U9v7Nz6hOs\nxmzkZ12GMAs\npZRDwBXv7T0\nuUEpwPiiGco\n54x4n4FlV4U\nPB-KpT4zhWo\ngsG8sEK2md8\nVfi1V_SL9H8\nyk73thpx_B8\nQO0gZrQw9KU\n8le-4mOgJco\npmqBmTWq420\nVGhUlUHKv7s\n9IYFHAnqOKM\nFjT4_Bi-F0I\n2rFXR3_DeMU\ndcCsAQTY9lQ\n9MhRoo23Wak\nQft-ZvHFfmE\nH_xWhF2sSb0\nQjEfREkwJe0\nzpSLlRt7KGE\nNONRLC7wAlM\n9d30_Y2bF64\ny04Q-2-ut0I\nbm3QkHapg3Q\nE3lprGIkEic\nPj5ds2Q_tJg\n07KUTJpbNAQ\nxgkspBFxLi4\nfCNsIYsWjXo\n3WfRT1c7Tz0\nEYKOpaD_s1U\nwn-e7FlYRJU\nI_TkNxwnJiY\nfxBoqr7OicA\nzmdsY7PIJDg\n6ZgWwouKUXg\nVCvOWhT1TiA\ncGd2BBjzb0Y\nE2WZXK79_d0\nWM3TedgbwIc\nUfv54teYXAw\ncPfMxQLlirI\nUinILaRACDA\n_dEEXgs7T1k\nL5Jg3OVjPoo\n9hMrzEWpZM0\nFQwv6AGpdus\nCtDBcCXiE3M\ncXm_h4Zdwpc\ngrdxSWSHJaY\nw8mbmSijd4o\nNyamI2ALbIA\n15WevUMiJI8\n7rJZx_l_h1w\n0NXkZZqCGjs\nuPS3iKFXKR4\nbx50ueZJgns\nKsmXx3hB968\nRyZ-saoiIzY\n25_58Uww0bc\nj8nLPMys3b8\nUJ_zLBr1NxE\nXTCEl_MFfHA\nAV3CrPe-1q0\n7dtQiqaxf_o\n1Ltz-vQPqgo\nQch6oK4qX2k\nJ5KvaQzBDoc\nxd9K2o_ZDdU\nCpAVT7Y3vpM\n_1fHeesAez0\nMdfwpCH1Ksk\nhdnrorjl0WM\nTPDKmRQddq0\nMe3eSvA2K9k\nZKfVrsrm_ac\nyZ773W4UICY\nKXMOURHEMpY\nbD8jQGwyuBU\nvsQak7aKH30\nrW1_EfZ2pWU\nhvuQCnADQRM\nr7aXjBDUk8w\nZmKECCbMc88\n9D5WsQNIAcE\nzZcYZmsSGs0\nI-93Ijkhy4I\nGYexCnV6cLY\n8CouO6czPic\nEqNTVkdsTL0\nVAnkBQ7eWyc\nR1hh6MVyQYg\n4mMrCXPCZAA\nF1nejgJdusQ\nuqS2-v7iZr8\nKFwzRnTqgDU\nT_pKvfMT5ck\n8RuMflmyF9k\nByRXX8KHS5o\nXwFR9NZfhUI\njR_kxdUm1bc\nY8eSWYGZXe0\nNfDBhc__ntM\n8e5fzbsfGCI\nXQEr5FlhFDc\n3ghKgAcPBC8\nZxlo0xmD51Y\niRdSH-u1wWI\naYSdnLgl-FQ\nNlPC4ag5S54\nabXL2HrEjyE\nxs8jGY2dnCg\nBKYpzJIAkeo\nBSQeVY2fdL8\nuFTd09NNJzo\nZCTqZhZRYl0\nAvDUQXknug8\n5wErjt1ukFE\nJIRijCir934\n0-Whu5Hlbz8\n5JCbdlUra28\n1vhyMvNS3Ek\nMhS1b56Koxc\nKNwhBAOLCXQ\ngiajSDY8kCs\nkwvSRZG285g\nB46nugc-4c4\nSwarL21fqj0\nkqFgnN10khg\nrM5Bg89j9qo\nDSO1F6sM63s\n6vAYIYN2Iac\nj0IXQIUh3jQ\ny9NhqnuoSAs\ndQNrOoc3NTA\nSqnrzd0HCRY\naJZL2uoPRZg\nxQyVBxABGxw\nqeaiVveZWD8\n0LArIo7OUJ8\nBH-EprDz8wI\n21aXGNHDBWQ\nBJWR0io_SuE\nFCJSJ2xtky8\nCiqtsKGMblU\n6-IGOKWYCDc\nGoQhe_ntnR4\nY0TF3T90a8U\nIE_d_MBVR6s\nMfKGLmjlyLo\n25UjaIMN-rY\n0LwM6-xXVQU\nlFet5R_g-vY\noNtGqOsseNQ\n64cRTXIxwws\nFeETSw95wp8\nP1bTMEsYPug\na7lxoNJJYEc\n1A08em6Y-kk\nPSpIMEVCsV0\ngfmtB17vowo\nstqgd2mbvlo\n9xbk-7HBIOw\n15wjOeT6Qo4\nQj7OIg9Vc-g\nocXYjytHb40\nUiHAMypGBPo\n7WkMxJKKITM\nUjOJ-AMtAzY\nCf_0ggNhHMY\nSrqVUFbk_sE\n2g96QnNekOc\nvFPRSImZev4\nyJTucB8fH04\nQt6F9WCle9k\nLBLIa7bqcfY\n7MWts8-_LUo\neKxv7whkFMM\nNa3loD5Xpew\nykcCGhbl1H4\n0lCR_c5Su1M\nzOHL9JZPELk\nOstLbMEQM4Q\nw9-ylaUijdc\n6WX8Ct4xMvE\ncrZlpaRXKFE\nbplKA4fZ8dI\nCsXhHyDeJO0\nC77hQJ-zDeA\nVY50Mu29LxE\nTprgpfkdiRc\nf6Oo9vLtKtA\nkpufOE3FIXA\ndBif8nb20_g\ng_TTG6vhg_4\n8M0uWmbBrCc\ndLxHFwfWIcQ\nwnMPRSiIiUI\nk62E1AtOYnM\nTqivtOAy2No\nEAKyvP2Rnqc\nLK5QIZgbfZQ\nI8-FxxgRACE\nMy8kfz_Ddqg\nQAiVcQifKfE\nI-6XHJFUBDI\nFnFMS11g4fM\nUc--n6RoIgw\nVPeXTe_6uOc\nC83hfoyHHHk\nH6ImGh1Xolc\n2DgFlZwrD-Q\ncn35LhT9zBg\nLSTU_JJcJxQ\n-OUuZojE3aM\ntFEKMdUMjEk\nrC9MhZGgJy4\nDpQHj1R8kXk\nlwruhQqFttU\nEiYxgC78ScI\n8hWbptEarkA\nU-Sqe0DN_E8\ntg4jLJ6OiDY\ncOXVnmVPdtQ\nBhHv3Yxcuro\nZ4ScRG9SDSI\nBCGzM3s9-1o\nf-3Bldu8BJ4\nALw553euzsc\nnfFsHF8guzM\nvhhiJqQBMMY\n1xhIWaxWINs\nvLgTWXjMlWI\nu_n1SEwWmYc\n3B40Rhnt4PA\nwXQ1EhVW2xQ\n318L0jBVIKM\nCHs36bNm7xk\nSzVC7ErC8RY\nu7yQ7qs6Zew\n7URRIBRCm8E\nBG3bNlh0qiU\nS7iDxRJpDZU\nV6B3elF2pYU\nDefILRrX77k\n4m15WAC5khw\nJWbqI-m3A3w\n6D64t1trSRs\nz23vdob1grU\nahCg__rBh1Q\nCLWCgMVf6U0\nWurqpe5tNjA\n5PsKwqiRjEM\ngeoi6Sxyg7g\nvrhgkmAzWvo\niAlU6xt7Y_s\nz-4DtLFGzG0\nl-GbvgBXi18\n5sMFxEL3zhw\na6--cEjo3bY\nFHeC_tenzrw\nCEO9YAsxMfI\nSW-1sk_U8vU\nX1ByBEw-WxM\nyYQtZCaPFaM\nB2zzhcU9f9U\nahCOQjOPTZw\nqJznSue3tEs\nyHw5A9BAZ98\nlKqBsgfSSU8\nIegMpeJM1QU\n5rGPKIgdV6A\n5d1P50L28LU\nox1SVCutwv4\n6ZygVYbMrfc\nAoB_mdZxNlY\nG76ThtqLvWk\nwHfXZ9jcX3A\nZ9kPRWAjSNo\nTr3_HOXg4Ug\n4FkUmPvbDQs\nv4tdwXAnFnU\nxIeyPrdc2Yo\ntkNKZ8e4aPc\nYaj2tnjamhM\nV6W8AZMUipE\nl0CbM-jK_eI\nVonhME1FiMk\n-Q6oYNUhNes\n2ZyxEFqlA1Y\nwAzEOzfIX_0\nDjypYuuAvDY\naZGpjXdKQXw\n3a_nj9e_5bs\nway2bfS3z1M\nwDfgx1Cj97Y\noymR3xfYh4c\nmfP8p7raf0s\ntpmqajLJQz0\nPzk9hsEacmQ\nEduv1gpvg6w\nhN-1U-g15NU\nRbU9NjiFLV0\n6C3HDhgTv8Y\n4Mzzy3KQNoI\n-FDEcmWJ2GU\nr_SuoUET-ok\nJ73K7gabt-U\nPXEJAEDVUkM\nzN8bZ1JjWWI\nos6khU56n2g\nQD1AjTF83ds\nvh2wmVvFUZI\nbI1MOyt8dXE\nEML4kWiax44\nnfteV9Dkml8\nXC3h9PPpQtI\n_0No4OkGHt4\nB6OtAXBRTSI\nmCO14xw1nJo\nBGHB4Eyjqt4\nbnLhMGzgfSM\n0noY-XrAJRg\nm1JgMM8b9_w\nt_FRWUPcR7Y\nYSrOLez2GbE\nq9FYBjSc3cU\nk96h1dYQrj0\nIxoCv_JpQVs\n-yPwW5V4mhI\nIMQADg1Dp9g\nkn8k_ox5OXs\nlMtWWls4oas\nf6F6MzMT2g8\nry55--J4_VQ\nC3J1AO9z0tA\nzZTH3HdE8Sg\ns_7PfocHTmc\nXLMDSjCzEx8\nTid44iy6Rjs\n7RJnMME0XAw\nUNYBtjHAuSA\nIgs1WM2pA54\nLWIAWDjHhx4\n8HiCEPL6oa8\njPRiyRmsLBo\n9qorxa6iMm4\ntUiVEKK8rWM\nDaWi5EoJVGA\nOh0635HLx5s\nJY4UoItJ_lA\n9MSGSOjdViQ\n3KdgZgQRDU0\ntImxhYu2PG8\nr_3ofu2x8qM\ntlLSqeVA_no\ncCwn-ROhwyo\n8cGUULb2K-0\nQEv3zzKyiFQ\nS0IfbNVCoCE\n0bw8UM1eLFo\nPvqQnJ7Fvz4\nnKDUDF3cgRA\n14nilke-mtQ\nBYmHra1d_Nw\nr2RzBizjKT0\n08NzJRNAFGc\nxxulNn8UDtY\nNePF08sMSDA\nyMiJp1nYlNA\nnkuKrymtuCg\nSKDX-qJaJ08\nxof2LkhAFGU\nEOyAHaO7lwA\n3wqXNKYn-fQ\nOT61p6s77_U\nn9hjsuaj448\ny1OhC9h3flY\n85O_vS9vSCA\nT31h3L_egm8\nKJhlJ8p8v7A\nkBwVWrBk_uo\nuG_KHjd_PSc\nsLLp4bO6dDI\n4TsgjtL0Qx4\ngT7MQhe8gRE\nX4jdgckXC9I\nUVXRswx8I8g\nCoQM9K_r3kY\nb-w1bY8qhnc\n97qWmPkODZA\nrDnazOBaF1U\nwEPZVYQqdMY\n0IiCOhajpS8\nRsJmRjseSzo\nAk8uiLVkpy4\nd46cDtFv_Rw\nwZTaXoogvDQ\nbtfIH4Q2BQA\nbY-jTccddQo\nty_jbbvZDkQ\n1Kk_oah-wCM\nFGLxQHJ5NEs\n5tz8013avVU\nvKcEalTIwfQ\npsW7sLoNutA\nTffPDHIwQtc\n9OMdSRrUdy8\ns2QlioAboes\nTGqv7BxCgYg\ngkqqhFre2RE\nN5fCeYm3-rQ\nOF_frDHo_nw\nei4m-fQ0bak\nqZk2O6OlYJo\ncKUwdiog-n8\nUjm2mTIaGC0\nuQpHx3lBGms\nJYLVFSmlNFs\nBXNuNJhLWyw\nMpaMbLDTxyY\n0wTKzzRtGqY\nCUzNygPSRZM\nXF33SnFIDAQ\n4us4K3KLRM0\nbPH152eXEfU\nFiVYtNf5Hos\novPXL1WPTMA\n1CKEXvHN9es\nq2EU-k9I5yg\nwQc-GpTtnR0\nq_u6njqBaB8\nMvRfyxGjA90\nAks95ziAQXU\nbtk4Wp0RssY\nE2wr_tRqNZQ\nDzQjdpw73ZY\nC1PilkENI-k\n2dB26bOiT4E\n8i7z8cEA4IM\nlMmTZ7oTDRI\nP_Iz-WhpmXY\njF0RYgX6Hgo\nh8wzJimC5Zc\nuSCNsJDEf1M\nNUmE-c4ym40\nLk2gIdLgwz4\nqqZPej42OkE\njEveVtZmPu0\nFnPOuK9RHH0\n5c1qYWHkPEc\nMucDLDFYNDE\nNlREC9TagHY\nmGAaR9KKszs\n0_0U4bhe6ag\nRn0Qk4aHYfs\nCU7-qLo7GPo\nA0FwoprE1cQ\nj_1k-SzcOrs\n89FuExOuBbI\nWm_7niZcI1s\nCeE4xdFmuVs\nY9HqtZTcTJk\nNvKYxRmWYEs\nGbOXTIymvqc\nRehVwEopIQ4\no-kmndqHfF0\nJou60MhXBcw\ngtngV41jpcw\nb1MxW8nf_lU\nQ_GqOe9HFRY\n_kGt7Vv2Pyw\nlMiVewLfZKI\nP20hrE8pmoI\n9di5MvVZb1k\n0ePC0mh4rCY\nWlvCTpjwaXE\niwxe2sIgQL0\n6l0tsxNujWA\nhjuvr5uGA4s\nn7l2RLvI7Ss\nq8woScnBklo\nlKh7qSp6zIc\ntNuPwipxx94\nQuZ_ak2qxeE\nFhXn_kxlWno\nD143VuAxr-k\n2NR-tebGw3U\nJxbvOwAB-xI\nVR0NIF6PbCo\nyAmTu-R5MQM\nPOu3JnhEmT4\n8RGjds-aK00\n6oqDO7aHVFo\nhdQOL2aFufE\nHl9OzCY9fVE\nP27sTXSGrhQ\ni-2kXcQgs_w\n003kLKX8n3E\n00I2Ofraf4A\nvhfk-aOAgIE\nf4wmj-Nq9xA\nVxKyoOxyrdU\nLJQAKDbq0hI\nDkGLIu6lnT4\nt80UDdbV3Mk\njn_D02Tvr4k\nzYTsJkuEPWQ\nZDbWeYRT7wo\n0RDDbfd_K74\n-Ok6Y77DeNA\nn_lSwXF8wfw\nKx56Aefjn7s\nZ7QbvD-gd0s\nUsBN2NyjX94\nS3phStzHz34\nM1TkG_zlh6E\nFPtvpjBEEqo\nZ2eTW8qZBtk\n-zNnJiwo_5Y\n6dDbnwQlCek\nQzgJIF00Xdw\nJsdUzN20Sow\nki3zzZ-GsGI\nO3-W1ng-UWI\nmTYe5PvlRno\n9f1adgpyRjM\nVbBi8ZIWbUc\nJ_wbvP9hEFQ\nAEYh9Sh6kk8\nrGtJbW9sRbo\nUPhZaK9jxYs\nxqtbz-pVp2g\nW5-oHwzdWos\nZ9zrMe8Gn1E\nN6bOUves6hI\nX8qBorenkn8\n2NkV6POGLOc\nBuN4WOVbk7s\nrlXKgVlILbM\nQgx38Vxw7Bc\n81YXRcpQSpE\nLurs1FzrSio\nItDFQOAqEuA\n0GGOfY9uE1Y\nWNUJIR9y-N4\n8rlAQ3q4RDk\nsoynQCpGMz8\nlPB6exj8Kgo\nfEA9BJfaaYA\nnhvRzLcCk40\nE6AQQLVI68g\nEVvEtTyJYCo\nisct-XNu38E\n5RGxUKhhRWA\n6Tz9krF1K68\nj2MbvFYy_8Y\njVH_NN7phnA\nBGlWalxUId0\nOqgFY6ZhOfQ\nSDq_ZTxHLh4\nmOicvmEloyY\nIrTJjUQ_xGQ\n5U72xvlbn-k\n9ukjNhwdbGY\nLiAiWknkwcc\nXlEkeUg2z8I\nkOfY6wIKT40\nMLaMV6zQND4\ntskpXGAJMhw\nV9JniMBfW18\ngDOSJkcKPbo\nMrWZWfsif3E\nSaz3f-zPYeI\nT-ELiRFK_v0\n0zImze5PCFg\nYCiimJ7d2Cs\nDII9AQZoUTo\na7gZgEpgKiY\noyZblWujofQ\nvUzF61mtilA\niRIIcZuSiBo\nV8M4lPWWr3o\ntRRQX1SXcMM\nWThmGeHf4hA\nJ96X6ei7LRE\ntF6XBuvWdPs\nIrf50_-vVtI\ngcGvs4dw9CE\nDV_eqkGxAa4\ne0xPCas2tHQ\nhoe24aSvLtw\nd7Aot4Wr-Yo\nT5rzOU-4Bkc\n7Rx90r--Xss\n1iOnKJA2H7I\nfB8_lNQJ-JM\nx5z9VZO--G4\nbFfnDQ3bDfA\npJImKCcPIsU\nlfKcANi5Zrk\ncMPXArN7f9k\n8R8mxS2E_UQ\nPk-vHw-mstI\nc_u4oXd_Lfo\nfWx9V0xoYsI\nGbQy-0SzshA\nOv2ErYiFemg\nywcKkb5buJI\n9yDL0AKUCKo\nYLjwEodCmT4\nkJ-UZ4DvYBg\nZJF_1LQbKiM\niewhzdra0DU\nXaj3Ohn7YrE\nNsRhhZPAGLI\nLtFw6_YJiFs\nn3YqrYcnfpE\nRY_D9rFoWLo\n0EQXnRlIbXs\nNJQz-0F61yA\nbBHFfXCAPLc\nh5nhyFFSweU\nGRrLWGMz5XY\n7bCca1RYtao\naU9RYKxkRJk\nnPeH0w6ZXZM\nL7YVcnBbeeI\nsIY7BQkbIT8\nA7gKFleV_JU\nXBz2wuGU9Cs\nYEv7cVW8hBA\n7qNZYicSJPk\nwIuKvNAGsH4\nsPbOZXWbYNI\nObCiRECeCdM\ntK4GDziddRU\n_P97eUT7NH8\nz-p4LnzhnvE\nG2EcYJ6Zjrk\npQX-KEXTwmM\nFAhcPXtCykY\nDTNDgoCP5TA\n6K-d8DN3wDA\nSNHn_jgFxIA\nlXS7GWgCBWM\nT2SlDOf410Q\njKPc2IbQQOQ\nbmIP1NM8GwU\np4lBFrh79OI\ntwPxMYSEJ-8\nQLXSp9erPv0\ngCF11he-_iU\nPywpJSG1dTM\nu_nHHDkfBWQ\nLyhRCLswT6A\n-HjYVQXvxVk\nEfHvcHYz-tY\nlwH4vtb9GA0\nxM4-RnBk-9Y\nmKLjOr5M5zg\nFH6ODEaH5hI\nKXXwH7C3UjE\nKkg6cnUZ2vU\nONRzdzRMVsQ\ni7QDt-z8ZjY\noBURpv30IkA\nMqIJKnUkGLY\nlRlgx_GFwyI\n81XTZOlNHEU\n1SkWbujEeLM\ndAlYuokC9R0\n9fUtcVIlocI\nKQDbtR9Z-zo\nTiz3eN3KJRQ\neL62rDiuqDE\nzUhsEXaj_oY\nfmRWWrBqiJE\nPkCxda_9xRc\nuE8yYJmpxeI\nJX2gQZj3-NI\ndkjBBdHZNUs\n8CZcZ_b-Cmg\nFT1C1QdiMhw\noRe8EuewinY\nCL3IXUZKbto\nnS-0lfCTcrk\nQfv31xWBgGI\nBGmXnidRtoA\nn4pUbyGBD18\neU4-wIieuWU\nPI35KfPB7nM\nmbKiHp_ljJY\nLauRAuoFO0U\nA2yqIm58ULo\nvEj9ZwIzk44\nobnODOdLD7k\nT8KFieVkVkU\na81pNygdAXw\nHIBYaeYQF0k\nfFE8_U07a5I\nYR4qgOi7VQ0\nFYnYxm5Awfg\naB0ABzNHvAE\n_CuZqXrhEZI\nf86_fLGHu6M\nKkl4-30oHVU\na66f39DMwtY\nzkWthOfGYgM\nhbDdiPNS3ck\nqVzY2wmo8C4\nBR-kA4Jnn8M\nSTl0s9g_FwA\ncmgeSY8YdO4\nWZNe0TD1E-I\nPBVW7az0PkM\n__f2KtcXAxI\ntDlL6QWvKNk\n-KVNfZo-cfc\nxcfYbwSXFVw\nQyvbqZqQ0xI\nMcf2hNBzwqg\nyxlXYm5Uo08\nyaoCvjqu_co\najm_632U-Ac\nRFAiq0Qr6uQ\nYihADAPOCWU\nnS1ePEA5XeQ\n8DrF70mcr38\nyat2WR8Ishk\n530g3-fuGGU\n2heRUn56wrg\n4qseBKnxIpQ\n76pNjmVp58w\nB3thiUpvzKo\n40JQrUnvKUw\noQIubudKQQE\npWt-GnERki0\nMP414NY4kfA\nHAal8jdk5gk\nKxyzb8LbVKQ\n5rOdGpkURD8\nIurXrQqZufM\n056HlHORCIU\nTx1mcALQCFg\nIqiyy26sW-Q\nmsqRzlYXXQE\nw_5OidjXy5o\nIjGKv209gAE\nW1c-QSe7uU0\noXpKBkMq_OM\njCh_3SFr7M4\nHGL0CEjSHog\nxrO8AQ4CrKk\nzNSDAaeIh7U\noezKQEF0deY\ngt6_2qd75F8\nA8BfSnbFxj4\n4koPfEQVo44\nHYqSugRiG5Y\ngjjJePytKig\nAOVHdyazjWM\noVLfIoIujHE\nM8yhM7zXdSI\n1J1osn73VYs\nwxV84RoUr_U\nXlJpElakwP4\nbpNxVXA5dcQ\n3bHDHRxatZg\n_GAA_LvDQMQ\nRHVyIHN6qOE\nVBHqNEADzfY\nrzC1mABvnao\nx3Uw69aKF-Y\nB1OK0eWfDB8\n-48m6UiKt_0\nNvUnzCHEfoo\nKwZmZ6mybdo\ncFl_xXXCo3s\nlQdx2baN7Co\n5KgptmAR3KM\njDD8IQgUPEU\n326RvY72nmE\nwt0klpk3tBA\nvOJ1HPBID5A\ncE5l32W6Oxc\nV4UM9BrSqos\nJzVCSXWeNnA\na7XZaIy4a9k\n-Svsz19yyPM\nxz3nif1TPDk\nChD8PRF0hBg\n3jWrsTACVn4\nIkVavN1lo9E\n9YgorDRKoEo\nx9mLSJS0n3Q\nuhkfz535fR8\nPXaE-weoKCo\nyQVdwJcerjw\nRa7oqFqj9uU\nJSX5qtBpL2g\np3ZnaRMhD_A\nw_92-vVfgrw\nFxvvnlcqLz0\nHln19l9RtWg\nBnnkcdH5v14\nCY5X8DD0ams\n1fp6lBNB7aw\nj-7pVks8avo\nTt-GdLwV4dA\nvZqr-1GJIAk\noiYBUM-EE-w\nU1GUJMTmoMY\nTzNPYPp_v78\nD7tCnGstwcs\nsTcofHd5IlE\nwH-i4ImreXs\nMZXC37sbqUM\nGI67NK5cmxk\nUwfFWXUEyfQ\nb8Dv782UIb4\nEnfAVLatlmY\n3EeGyS1BOGk\nYauDSh8CfwI\nYs_zYL7K3KQ\n3pEtiCv07Yc\nvA1fVHBWuBU\ncorlGzKJqAc\ndUbNFv_h6Kc\ndudDh8KZiTE\nBrWwVhnztcg\nRZdQIbRXNCU\n6p-S9nS21Wc\nKaqzKhM9-nU\nf0sDG0nnftw\n4G6VXPkfDvo\ncgoMJXAmLdc\nQ0IQ3GHGXdM\n-2KGPYEFnsU\nlCcWPDXqKi0\n1eSURYocFiM\nvr2jJkcTcxk\nVmo12BffgQc\nRNJ7CL89IFM\ngTt8yvw4MJE\nJCGqUJddlS4\nCvoAG6pgdC4\nVlfBJLU-8us\nvAYzTJIog1U\n-arTRBtT9d4\nQHU65AAx6uk\njNIMe9C25BY\nq_xuviCDyCk\nv7tTCb-WU-A\ng2GlXX8nFHg\n6rbUAMnadso\nNTvvUL9OgLU\nz4NqFwQCHQg\nJf_AooayjPw\nXKlt7H8_De0\nv6Tkyyi43OU\nssZ1pf2Zuas\nFrxenZhf78I\n1fN7M_u4xt0\nB13fDbQ75Sk\na7Y0CTo21uQ\nN5PNlMUcaPE\nDCW8XHP8ap4\n15bAAD-awjk\nY5L_REhifRg\nm7gCydjomXE\n5H7YGAM9Na0\nCDwnIJ5ohu4\nL0PPveTZVsw\nd1ZUnCbVoZQ\nl7X3t5SOcFY\nAOv5WvKX57s\n0_UCPY-mSZU\noMt4F9ELo3U\nBo-2-sJi7Uk\nppfnHlRju7Y\nMeHr3ZYy_g8\nUISLDo5JtiI\nOlt04UetqMA\ngAbn72Nu_MM\nPKnfWnfvSGM\n13UIqhovLmI\nusImFOQQEIg\njcjMYkD-e80\nk_tU5DWlyeo\nqV6EOCw8Zu8\nMxMpRqQQ6o4\nt8vRwv9kRjg\naSwi8mzc1gA\n7ZTCXQOU5oM\nxXLQhqwMT3A\njc2T3qbPJNI\n8MSvuqf--9o\nRcZo8hHZqkY\nvXXDqjLe4Ls\nZBqZpBkiLiI\nH7zXX6EqGbI\nG7_Mq3-ivsM\nm2tk7RatWsk\nxeLH_cCCgr0\nTMeiAg1kXKs\nja00D_L5tm8\n5cbim7n9ARs\njy9IGBTGVRQ\nJanwLiyFPAU\nhQm4WGUJtQo\nF9ScROJxATc\nNZ-u1BXI0YQ\nhR8yyXbTjNg\naTc9vNCS8vo\nJZzbTqTLiqU\n9zdo9xIvR9M\nYwUShaY_lew\nANAUjvgYxjQ\nXiXa1C9FECU\np_jspptikh8\nGfhCds4VHbo\nBVrhwsgCuFU\n57MtQQ5sm24\nNWUxk3JPaqU\nTt2oL1sVVhM\nioQQ3gbY0vY\ngq5WIcSz2ko\nRsSltFwkLPE\nn9uVWlO0GAs\njaM0sgoi0vw\ntKei1kTWmKU\nyoYPBCFehng\n7UnKOlleCCw\nd5gSQLPcya0\nkZQ87E53U_A\nSSY6_T2oAow\noYet52yPgu0\nS1Kbym7WYzs\nmvgRi4K58U8\nEqW_b9Ec75w\nQrj9qKZCuCw\nC0gEMF9Tx7o\nYnfvc7uaDMo\njW9JF2lCjqg\nUczxnDAsQjs\nTiQrmXZ_SZU\nppJ38u-KyYM\nJ440ql0zXuE\n7oczRhQvSlE\nlyvAjZw6O_Q\nFz2HMTuqy98\nKblaujDjQ4g\np1e3NC3IIF8\nsd2pBde6gkw\nQiCNpDYavbg\nFMDgoOi_HLk\np6oIR31ZgyA\nBxh85MB9FOE\nzU19JLG88tA\nehxd3S2foDg\ntIj1luuOfO4\nhAVDAEaxv_8\nKUMhlMS-z2I\nmBdFXXV9hwY\nPXmtu0Kd0ms\nBKkw8FslzOI\nNPYyV_mq97M\nB-Wf5QOHPxw\n1id63E3KgH0\nCmMeT8MW1LA\n_TmztVM7Z4s\nsIDHrcDf-N0\nYnnxVknsLk0\nqgRXFJqB-9Q\nNclH5qEfL5c\nnkVUb4kdhig\n8QNDAaCu9dI\n10TW3rcKMtA\nuUA0a8U7PdY\nosFbJZfBOyA\n-PzL4MTu3to\nzT4OxEg_-cY\nLtjiyd-THC0\nmDViU8OSRkA\nJjqnoH4D3mo\nehv1cHqfQ-U\n6f1VnWuk4C8\nXQ0Tlb8z3ow\n5ZT2Mc8TEIY\ngvaa1ZpqoUc\nS52bKF-hXu4\nslegOy-GQMc\nSk0iV1R72OM\nQ780MiOrLwg\neFzzQuYRw34\nh9WDm1k4Hz4\nrtYKhaQStZE\nQ2-4x2KuRqE\njjDuR4d7Iik\nod6IxUWPMcs\nuLhrOeavvOY\nHYzSQZdBWVQ\nNRBLTtDkQXU\nhQUBid6LIPU\nMfcqb8DD400\ndwzoyEaHxSM\nPkLpd8Eaah0\nU-7MSowBlG8\nZtHl67Oeb5I\nIXwwGEJkx8Y\nlV2XAU1JzuI\n14Et05Okf8w\nnpvFfvyT8Pc\nklt86blKwaA\n1D4VF4WqJSE\n_eHwoQ4VQ1o\npzG1ckuBqpg\nE0i4dabbAcI\nwZcRiRs1x-8\nJbuGOroCWaI\nePlb7b2nQm4\nVU3Tu4K4MOo\ngxhMfM0QlwM\niTQ4b0d3HxM\novxjAnlr7qg\nTn44a8_14LU\n2l_mfcc2I8E\nNCUOJMkDAyI\nvlg5VPKbGQg\n0IQgjMYWVGc\nyzera03y4_0\njXKc-0nVIkQ\n_zHhry-Ot0Y\nL9x5p-s4zKs\nMgc3y6p-Bys\niVsfWht3zmo\nonO71_aItKA\nX67GWsa_NNM\nHPir9pU9shw\nDooTtUcpKM4\n-Lrndfrc9yU\nhRg2HEpwD5A\nb7AjNXAF-7Y\nfmMPmWO6b4E\nBRBSfKmp3vs\nw71pHLUz2i0\nbeearAU0yn0\nfB_fwuJOx7I\nXcDzb6AeAI0\nxM1MNPKYl5g\nb0KSEziycmw\nhZPz4w3jLXI\n2_BwhA8M9-w\n_qh-4JFLd-s\n-kHMOXNsE2k\nVnLaIBz4VMg\nZIHWAugnBWI\nYGwPTU-SvbI\ne3RDBiiOJaY\nvjmHq57MZso\nNHg_SEfj38M\nQ49KVa7jotI\nT5p0IaOt3tQ\nHUKu_iqYDOA\nJx-I8OfW0GI\nkZg0_oypRpU\nfYNZsz9o3Sg\nKOBGjFHXnqY\nD_FRoxgOUNA\nb2hhdMiOTOE\ngxacglqQMqE\nhwb1MK66new\nabTZPgqiEto\n_oEolYMce4c\ncfB1QaweRKU\nALYPTuyCxqI\nYZ5Y_GhXMKw\nek0jTQAdN8Y\nfvNfhUZ-5z8\nIsG-jJcrlr0\nOyziGbUQBIc\nfnpUxSXWy6I\ndN1RMOrtK7A\nEFtdTsawXK0\nB8dPQzwGcZI\npb8pWn_yyF4\neWP8JMcy3O0\nYo3rEGWrlws\n74PUHyVj4BQ\nssK4Uc8SXnU\n0PtKzdvq7bc\nkg2o35acq4c\n3tMHSQGSUzc\nkzVO5JrnEJ8\nGzL4f-4uQVM\ns2Tpk6RnkaA\nTSAdyzdX4eA\nSWKDbfvyZMU\nnifcKdVjpbw\npEJHzQIMH5k\nYygwTWUI8vc\niYf3nqYQXDI\nB9oxe-Dvvj0\nVSdIYNSkQL8\nD-9zx3m6lLU\nE1e4f8YdkLg\nlYtc2lvkpTw\nUyOxOyfX4uM\nglJzhylsfoc\nSZ3oe7dJdMc\nyr-gQl9CKIU\nTt7qQmpLA2U\ndTVEd7WtyAw\nadatkf9XY44\ngIaqrkn0ymo\ngDSrAm2CKdU\nwSpvR9B8QXw\nYG0VNVGxyYs\nmlkWgiyQ-8g\nI2v7jlIBL1A\nyRlyvNmVWK0\nlkoWhWGcVR4\nhprw4GtCu1w\n7D_6z1EnSik\nczJL-TPz-5M\nLlK6pn4qyrc\nzIKq7DqdZa4\nyGYPTb9T3MU\nxc2Ctw8pGrc\n06DLNzLaTlE\nJLvkvjU_iyY\nmExTnHwAcYY\nfQy1yr_K_L4\nRmxqK1np7rY\ndH3dqXHH0yU\nGhexrw8bpc8\niuPDl6n2vO0\nns3j2exbdbU\ngj_BH6Suku0\nGx1K7ynF1JM\n9j3y-J8IzYo\n1kPvrYaCi4c\nMQ2PrvpAT-k\nEYdIrPSIgio\nKnXZP5yMlgw\nIBTpVVTZJ5c\nUkamBJTqN8c\nmRIaK9Vf0Ns\nJOzVMqp3vMc\ncY8yXitzluU\niqZB7SIbeL4\nGwM5LleRnAI\n13YnorzVWTE\nVXDHzJ1LYRs\nfJqWAvvKS1A\nt1SbH-c0m_0\nb5I9yFdAMzg\nTVViHShXqC4\nwoLbaFLoJI8\nc4w-IE-Hsqc\niJKQl3uGg0I\nIE9S8CehYco\nukzIFp4Kj90\nkP5GKIrGoeQ\nfV-wb1gZOyo\n2vbGcYm8u1o\n6e4xlcfKHxY\nxJb5tOlE1Fs\nVCLL9aD-VKw\nKdOgihoZjZY\nK9z6npGGZAM\n-MNpOKICOx8\nYEdNAX9h_vI\nsPHeq8OM-dU\nP-KZ7N30lFY\nOO4LqRUxinE\nICRVd--TY-U\nN45Gbn2AtWk\nSVSzVDnvkHw\nnJ1hrmVHUJg\nt9vWi2ItxMc\nZd27SaRdxiE\nyYCVu5ZSki0\n3cdlwCCzujo\nopWPxmr2h2s\nilCjx9gigWI\nCfRKGG52TPY\nb58Zg_TRqn0\nZQ6XwJOrBiE\nPfBi1PAfWcI\nbOqZC-DXvk4\nLWCK6VFF6n4\n71kAAVlpENY\nYqRnYf2cyI0\n9CD23yDPEF4\nUAa5Lw5lseQ\nx0rCYl4e1Lw\nMBSxl8y36zg\n_zPImuBvnOA\nzFDNg1Swx0s\nab4MM9cHidM\nS60NRfBYTl4\nryyEEyKD9EU\nNXTrMtrTjlI\nRY1FQGd1Bb4\nMdp4T_G0Xsc\n59wvo9e2XQY\nH5pj6ZuBgeE\ntqmbgqyc1bc\nyt1pZiuyKJE\ntG1crFI87ro\np1dzglJEqac\ndgM9V3lEZvE\nqEH9lnYIndY\nE-MOzwWySaQ\nHKcDfO71N1E\nIC21keB1yaM\nYdowX3H-hGo\n4XKZFS7EoCU\nykBG9mW1yC4\ncfB9siDjpLk\nG64ubBUMVek\nptOc-HdvEW0\nfZNHk9DKvtM\n0GCwhGQEZ90\nAkaPD_qTmok\nZFMSluy-4gE\n4WdyyPhh4-k\nlMA48vIxajE\nV6WWK1gvpjc\nVXlMfWObFCA\nnJwGWiuonws\nXz-BR8gyPhg\nWmo60ltq-TA\nqfq5VozCshY\ndgdEr-mXQT4\n_1rqGyHtE4Q\nJAXij_5Rr0U\nutYsQTUae5w\nYg1qC5VGoLw\nNdGB1rnPcR0\nSb8ufI6z0zM\n8DkbFJ3uz54\n5OfAMHeIr7k\nhl1z_vp3kXg\nOr4t1d_h0Y0\nZT0-DtdC93w\n6GpeTJqqtG4\nVW_Bmy2Cm2c\npCFld9GCy_Q\n208MQEPGWLA\noeF5tq_zeqU\nnO7qxQsQK44\n-Ww_Bo5ghiw\nCyAW5eAhhPo\n6La5YCYlMZY\n912ib1YghJ4\nyywlulXZ0ls\nVmZ1ni2IDdo\npDj1GM3RRWs\nhjhBzRH-plo\n9O-NfAWrkDM\nCKIh_vKo7Fg\ndVFDYCPO19A\n9LvgzVmAFxo\nwUVJf2CkNNw\nZIdKsGWToLo\n1QC88NQZM-8\nbWo3nlFcH5k\n32Fz-BBjVXs\ng3WSsm57iVM\nhf1wQVWs0DA\nWIZlfA5kV7Q\nHKRXTzENFa4\nZfyjpKP8zDk\nQk1y1yVQkJQ\nSccBZYmyjxE\nngSM_wxh0lE\neZc3GMgzwyk\nDGpJ1ndBxOA\nDEmZWy1aDuo\nTBHjt3AyALw\nV15AidhVCSw\nevJPzjgv-2s\nHp93d2bsfQc\nA-rs-kWL5-s\nMsKaN_QrVT8\nZPMDA9N1itk\ndjTKMhvuXGM\n6iGsAYTmnLg\nzt4ek_5zQgY\n-iK4M_EFvjc\nyEKOx9OHEz8\nktt64clTkj4\nYH_vICd0WQ0\nfwkzz6A_Qv4\n3a6TxHEyLdo\nUoMiVPjDb10\n_B6AZdgQbeU\nSK4l-e7UvRs\ndfrJhivMJJY\nSYffGozxMbU\nNQgAVrZRz3o\n90j6V8EjSuI\nghZ6ntXQp3E\nmbBhikLj86Y\nGusR6qF81kc\nvD6FkjOtIIs\n_x3KSXMXzwM\nXKNZy6gahyc\npfOJfhbqJhY\nVPXd9ANX3Bw\nE8x4G2WceJA\n_g-f7cZGqJ0\nVXx_DVHO0go\nARgghWSmq7Q\nnKuJ6UvlGek\n7AB4ab4LtFo\no5CBItcNkFs\nhH1TgDvC7sY\nbLX_zt_MhW0\nETxIJN_avuM\naPUaHUwJJk8\nQvdszN3x7M4\nNZ2qhFm6LO8\nMrhV0mA-bWg\nz1RLdJwkFZA\n-uPSVWxV6d8\nVBLIuICtHuo\nKKD0B8uROMI\n32I5RODje3o\nEXwr6U_YypE\nh9GHe5K0kOI\nylvh800i85I\nwJZP20y0R2Q\nXFKhIBH23-Q\nS04wIhoGYQY\nR0HGeVmyI5I\nio-hA6pxffU\njEKFfdQEbcg\nvBLcmGPbryg\nQUI-9FAwA8w\nOJyRbpjlrmA\n61cBscxr69E\nwySz6ysIDhs\nsL6gDhH7FpE\nYgnhijYmavY\nVb6cuUI7B3E\njsyzJJFZzsg\nMGGGksL1ziM\nGbCytLu1-3k\nuA1Kloz4Ics\nfJV0KtMZ7x8\nmxz_RfabdUo\nkRuKg_khl8Q\n8Ojsvc_KsDY\nbvITByUy5fA\nF8Y0hCMWyFg\nEpcWBu5f2uY\nMeyU68qSBMI\nBvcBo3De8Hc\nYb4Lrplxq_A\n7EcK-LuhzAA\nJjbIo_301ZA\nCfaPUQMa1gc\nptAdtShJa_0\ngmSeaKdO9IQ\nEy-zuaZV8pM\nmwMmZ8dtWNM\nfqnhqkXclUk\nrDTZ6A5zsYc\nq289a8P8Ht8\nalE17GLFoQE\nntirWguFrfM\nEOQeU_6vbeg\nWoN5cCs0l2M\nIeCZqVq7_pY\nsfWe6CUZUtc\noyqIjdFcJVg\nj2ZsEQ4Fr4c\nri8WqeTAUDE\nMnLvPe6VSTM\nsdvrA5qnZo4\nVVlECM2KyYg\nyfg9cb_9NWQ\nXLAGTl0Nnws\n4ri_ybNiTPU\n8gvuU-U64d0\nVQjjlqVjiII\nz_a4zak_zk0\n27moTiftkCc\nDTdDzcr-7UM\nblQ8Wi0VAn0\n7OIn2KFDWjM\ntV7wQ19UBqg\nkpYZ4G1AQ0c\nrGAjkzbV8zw\n_sZ4U5aOee0\nkswPGoPPdwE\n3XZ9vtsDiuM\nFSlLXYohrJg\nVnp8CkPERus\nFk69RQS7D8Y\nqcYPASs4jMQ\nnjnCT6sD1Bk\ni3VNgECX8Ko\n2HMLj2siVxY\noZ28XpWmN00\n9VsHtn_RSHY\n-TqNDG7L__A\nb74611maYgQ\nkndeWhsNlJs\nVNLN5xyxwAY\nPvoBUI7uz-w\nCxrQd6Sn5PA\nvfc3TGvcjEY\nMBqT-UEySlI\n68igl3sbzFI\ndshJG5PEOqY\nw98xbfLGWro\ngnWkYf8Peo8\nUnllAPMRnKE\npUmu0VJuwOA\nOpwYfz6uFaQ\n_pzN5x6Pepw\nL06qVvXrJus\nIVRy-Jac660\nBf6I7N-DC7g\nkt1aHAlXi4g\nEjAwbjng__4\n58DPO_8Bd88\nF58XJgGx3DY\n6VhCGQODB5U\nDTexn9N2HMI\nTq9zhCo-PTQ\npvNA2JkMfSI\nGdrUYcOTUvY\nWnAVeKAUxPY\nS3Po0Tld8Po\nGnpxe9kO_V8\nGEAh4nF90iw\nDubYVqV92OQ\n_9qsxe5kHdo\npz6wAzZlnhE\nUQmQ7d-wXQE\ntG2qsoC_-hs\nryqyAX_lA7w\nqaAz6YklimY\nqAfsU2gI408\nvUbnqySPN8E\nexCuIisMWl0\n6wyRTKGY2Tw\nDC2QaWmat7A\nrczP7CJB4Hs\noeQ4HWhPEdA\nvJZe9sHz10M\njY2PzzjO3zo\n0C4yBk6syOE\nyEyQgxLmGmI\ndjr5QNJG73k\nb4vpGhO2LwA\n58BDrZH7SX8\n0_-45EGFtA4\nNkmUIQL4spM\nhqqlSTB5CfU\nCrlVTZFPnzA\nknJ438gN25k\n39Bnk6VU53Y\nSF5EacV4NI0\nNTswp_20tsA\n-DXU2ZHuiTs\nRUUhcK3Pt14\nyEeyJzItKAg\nng95gpwSjZU\n9z8uqVHf39M\nbPiv1wP8q7g\nKgmFWHZXmiY\nXM3MRt89zy4\nj21idqW08wU\nkSmAfIP9CoQ\ntf_RRItKJm0\nKHsn2smp4N4\nXuGD4tGeLFc\nmmCjPdu2TC4\n8gfk5E2iwdU\nR4ZGoNehEp4\nWzUMVMrEGnE\nEtKt8Q32_Rk\n3vjTjf7m3Bs\nFnT4pAV1Cg4\n5T4sIC7SB_4\nTmnPP66kwwg\nHtp6crkePuw\nb3lOpSXhT0c\n7HWfwLBqSQ4\nqB311wvyggM\nlCqHKRjIMu8\ntru0WMH7yic\nngRthItc3Yc\ngPAI19a84KU\nLr04AEabtnY\nfPEGcx4MFHI\nJcRuXU7cvmo\nC3rDWENRI7c\nMODlCaeiT0M\nyCrq5v5cg1A\n2zSE8r8jU_U\ngp8OWUqg4r4\necmDPqCP8ms\nkJKWjeMtEDM\nGUDrinKzSus\nKAE8h2rqA6g\nz21tJkx07J8\nk5bN73OnGmo\naWIcfkvKj9Q\na6XtVMtUZI8\n688uSEwvYnQ\nbzSIHZcXwvQ\n6XRJuEv5Ya4\nfwkB6wAxNVM\nut_z2-96X0o\nFw19beLDqn8\njHl4T9F9Vjw\n2oDVJbZxmtk\n_aj999HtbtE\nZqCnbtz5IgI\nGlVzp0Ldv4k\ntQQ2Cp7xQho\nFBhqtV3pVe4\ndluHLk1Hm64\nntVZPACMOYA\nPgotX7s-2YY\nMa_h1r7VTME\n-7Qoxub52B0\nM89zKEGFuME\nUUD5-dcDdBw\n6VUothtoSeM\nx26Mst06IoY\nws5scfTVUA0\nAl3TIVxEPm4\nH0Bzz3gzvk8\njSStdc_wWV8\nL6ayQbTmoxg\nOTjYvVfWORo\nTShV3gWFAIY\nCyetT8hwwtk\nMq3CFDYCWfA\n-vNo9qyUHho\n5oEUU8YjUkg\nV0qYlLqMPNI\nx9GGBivRItA\nAMHSm2gTUmA\nTlxOj02Wodk\naENEFwxcrBs\n2thZKjnQnK4\np-0nV3vGvTQ\n45MzBLAUUpk\nt_GWHV52Tds\nMFUZGrdKqtM\nuMWI1q_J3mk\nfoPz4rJfgSQ\nATOpJHEjvlI\n271ymG6B7aw\nVvSlUEWVleo\noYQWryzBuhs\nR7qVgpQEVBM\nWXUGWaYOnUs\nQy6dBc-9HRQ\n84WvFryk-1E\nAxUh8zdgPeM\ny-gs5U3OMMM\nxNwPw7mQnpo\nj1eQNUaOfZ4\nOYpO9k6l8Bk\n0KZ6EPv2Gio\nuov-TD5osLM\nsyM_HVHMynw\n9i9S12dwwKM\ncazTXFYZ9gw\ntTlhLBjQdPc\nhsK4vleN-fE\necRAEoKp51M\nbuqRQWuVcw0\nzKATih1nvVo\nwRN8Q_Lts7k\n-2KG4lLGEl0\nRZKKrQ8y_Uw\ndjh21tkgGJ4\nAoKtg7t1Y0M\nvkXY0EqahbY\nW4kci76gyn0\nuWY60oFlfxs\ns33dP0ETrCo\n5Ii0_2kAYlU\nlzo2hgdDUDw\nPW3WxPo74c8\nQwkW-Rbo3kE\nJoh9cLv0bp4\nS1_AkfEVPpI\niJGazi2EdrQ\n9ZEUnzRzvGg\nS1sbKYDgyWA\nNQtL20JoP3Q\nSuEt5n-k0e8\nezOyoEG6GW8\njSnvLrw4YR0\ntlI--ATerwo\nzFxkzMB3qCE\np4HqnBtsz1I\nnBsxbjTIJxs\nDj9G_kEq5W8\nuFNIrs3jtEQ\nkYFrx0jdcoY\nW6KRJEKYY7k\nJFeaWHDQzQA\ny3NLNK72mzI\nDwiczhta4e0\nTGqOd_3mrr4\nk5fJmkv02is\n6-_tIPShuwQ\nVlSkPA60ujQ\nrX6oUNKUbI8\n6KHyMISpE18\n-Koj9hvcBMk\n9jL7oaQAPMI\ni2xyQnF1kro\n5enqrVvjxg0\n63Lf9kwyWd4\ngTakZ13l8xY\nvP7uKAQLwXc\nYvNjJgJM728\nmCSno4xODKY\nDSaBwTpdfkQ\niddBzE3syI4\nbwoxnQ4eLR4\nP2eknXZ8aLk\nTktPJgdwMtQ\nytHR10ZesTY\nw-juhvM7yug\nMnMwbnAWawE\nEHUO2DqnD-o\n_4Od7V2mVG8\nrLNN6Kef3Yk\n8BplQQtTt_A\n7doKgPFilPg\n7DP-JKwZrA0\nIfecgEak80I\npKsa_9TFG48\np_wCMFyHeUE\nYYo5jJy61T8\n_PSEaTZSZEE\n2rSnCcaMDdg\n4At_9_s2lDY\n9OlXAy0L0yI\n5X_ZiFC5RMg\nqIs2PMXvAmQ\nYiCzTGRqCQ4\nO-QaGllHqN0\ngC672314kEU\nYYsdcBacV2U\ngZ-QU3KT1PE\nsR0wCC271s4\nGC9MkHzTnRg\nZti44ptZTrc\nKsimmeikE7w\nBjsuTimPBAM\ngM8trQSURdg\nf2Hz2k2PcfI\nXtduKM28ohU\nZLjp7ahdbWc\nhOB4Qm1IiOY\nxPwAEt1Ajmk\nIN0Nrftr8a0\nXzUFmbuyrCc\nDYt__vjvf9s\nB0vxLqX3oAQ\n10f-q34JJZs\nWUVa_vf09dg\nkIPK3l5gd9g\nO60YQRhi0s0\n6LBW-X4DnSU\nDbUDOZoHYkU\nMF_RlYTOmco\nNz4zu_fSHYY\n5SkzHjQrCXk\ntS36ZnWoR70\nHLw1Og_JXK8\ndkAv65bo8a8\nFQoR9fu-CIE\njVu_cuFHZnc\n7A6HQOrRDiw\n8yACSHANED0\nACcJF4BpXXU\ntdADTzvJtSY\nzJ3hgBFfQy0\nC_TfdNAXOwE\ng3FFfmWvyAk\nexFv7Srgwpk\nfxVsGcxK1nc\n7wniAznxp08\nBLgX2oB_qn4\npf0erXl4pwQ\nu3xIs0aajN4\n5lCObNv4T5M\nyTq_QU464Aw\nK8PDbQK7Jro\nqzjPtczHQkU\ntdfhiqOFtjk\nqodNg2Xr7mA\ne7uz82t68To\nFJZR935H0hw\nLEq4-b61Hoo\n-SkeK7t74oo\n7fduMinwJZ8\nq8nzGlXDvO8\nkzf7hr9O00k\n8Pd2fpoD0Xg\nY9b8tw9TR2k\nPI6Q87pjO0o\nPX5QjCErMgU\nqqSS99m2dQ0\nwJeeueogQQ4\nLEQ9ISPbfyM\np9d7IXlAVUo\nSRlJ2SMwwYg\nZ-DbvvyH6Q4\nK1ubjdkdmkc\nJZ5bvcWLEW4\nQWPntJVp6cM\nGae_um_eNZU\nwdS1l__SWms\nwfq7O3AgXdE\nN8QzCj1RdpU\nbaNc64S4DHY\nQeWifFsvr8o\nkZcr7bw6k_k\nf8-6UgJ6dSo\n_DtsWj_e2vI\naL_6-dQCzwg\nYpDpOphD1zo\nNKjZRRw3-Fs\n_5uHK-fVMcY\nU9t_bzEKBnA\nbJ63bxSclsU\n4_mFP5qAVqM\nkeTP_H6jqZk\n2_ix6kre_tA\ng0RJFzg31xY\n5QEWc2zmxGE\n8wx1XlXs4Ss\nP3YJLGWoPL0\nxW2pDmzhD4o\nwbWWF1RwQU4\nVk1Ca1ruQKA\nWL4kf1SZAE8\nAtgkgRgn8Y0\nxAf9G9cqQbw\nf6-8wpMn_8I\nPMLfJk1X64I\nYFnErcVxB-Q\n1yi8Mc-5kLc\nOt5G0Nh6EyY\nEHqjx0MHej0\neT4bhNABlYM\n2kV2EVWNqXQ\nwI1LRBDvSFs\nN6jkWHo8D_s\nsrLwGlDe598\n--ifbq2xY6I\n1e_9GirqmoI\nqo1cSaFhPiQ\ncil6HFXlccw\n7g5k1qwVLjw\nREwimg6y1Cg\nWqWefwlmFmI\nkPNy_yGvpKI\nu7IXETT9OEQ\nTUMru_xqvMU\nWFUAl0Nly7Y\n3EIqxstBVCs\nhH0av1iDYVI\nakSjCFfKAMo\n3i7EvW15Lyk\nLWvcLI0lcFQ\nOwfT8yTBPYs\nHRJ1g7i0Ob8\n_525BmUkPmI\n4JtubCgodCE\noToIYlwJY9I\nUxjYMYu0F8o\nq1SFvQhjK5I\nJ5K0XKyL3i8\nDGQkgqsHQns\np6HbXVaNFfc\nvW7-H-GGYwk\nqA_zzk2c7G8\nUg6yhGuDcUQ\nz7gYF5LF-ec\ndIy6QpVNPuo\nTeeNLFHot1Q\nYvT0GTWPw0M\n0RM_Ehtb5C4\nORV1uYzvZzo\nwBM9Aa_HG8g\nQQFxcGwtEBY\nMQ1YkJX4SJM\nwzYPC7FOJtc\ndHSjJmNISjs\n_5HRlIFjZiw\nAbU-6GsTbyE\nraGaJdEHjEI\nIWZLSjyJPsU\n75AdYZPT3nE\nAgCF4dXv2JE\nKVWBllfyysk\nKrBI7YdIPYk\nosE84bZ1jNc\n71Nmq8VOKnY\n1GfDQpfUaHQ\nsISJ7r3kERg\nbWQ1ekGzhwU\nq42thgSKkpo\nCony281khiE\nzLkNUykewic\ncio6rIbCs-I\nT5cFTmim4Rw\nVBTrQhEwFqA\nkJnH45GslL0\nvFD6BbYg0-0\nBXXY48jjLtw\n5ZUgU9CsjDc\nP5kDAUzl-T4\nnI6agjxMa2s\noWSIUe5wYvc\n6QYw68kf4sI\nAZfCHDSJc8c\n6loInvUSYEM\n5vFi7gu-g-w\nRPW4sx3UYjU\n3lex4AAgAfs\nwa1uJbTy6XE\n8IJEqeoPPs8\nNP2fSxIpvis\nKMI-Sxq9Npg\nzeSe5X9ALXg\nZP73cUcxidQ\nw9I7PBSMBZw\njqpkvCebSmU\nJmls6360U9Q\nE_14d8dHpns\n7SojZ1TuMsk\nxTKfpU41hbY\nRt3u4bU6EMU\nUK0wGi3JHrY\nqWiGcXSaKUc\nATU0Znam5Pw\ncrIlIvBYMoc\nnm86_ZWeUzk\nUF2c01_glHU\naucs5KRFzhE\nc4ibjfBu1IY\nPZBy1m-MmlQ\nvqxbLAcIgiw\nWCaRP0aT9CU\nbp_GxHYCq90\nJV2dQauaWCU\n_Mr6MQB8vRg\nsnTvACYp8NA\ng9d1TR6Lb9g\nKyfXb39rGT0\nXJsuAUwGz0M\nCn_nTq97C7Y\nmr3L2D4yv-0\nmlpkQuvDJbs\n5asGTRoIqCw\nNkhIROsY7Pg\nqCYYMqHyPKk\nBQ8vGslccwQ\nnwQtd7csTKo\nLFVi_krq2PM\nohZ_J5yHSkc\nM4LzhjtD3YQ\n8gIZMane5sI\nnJIecTXKUrc\nEeQ_0rq-z1M\n_wAX37x54hk\n_iMsHacXWd4\njz6VC23rVTE\nZ4RCK8LAFM0\na7KgMV3DXw0\n0IyuK069I-w\n6qxQ2l1DC6Y\n_VEDJMixt3c\nQO0K8wfZrHc\n3wXG_J4cPpg\nswEgflM5Ol4\nlQr3va8emXg\nHo0k513yN6E\n2NNTVLRN-Ms\nWksivsiSF_o\nqFprLPWDd-Y\n5M4VIDlRYjQ\noRRupV-lwbU\n3tvpgXQ4y4Q\nSe38Z08pYS0\nmdHpbI8Y7Oo\nV26hcTgoDLY\nZsqkTaYITKQ\nx1FhrhoudSE\nsILyPxN_1Dc\n4LvvutsvgrE\nxdnibOE5L40\nyKv7A92MoBY\nFAAKfmF5Jl4\nJfEde8D6XE8\nNSTXoI3j4ko\nBTeAQ_QLObc\neuJyO4E3FzE\nEvUbi66AGKI\nNuTbNeev0sk\ngPjQr9sSrmQ\nmAhhCpdnVkI\nmJ7S9aUZgZA\nVhdCpMoShM4\nmmSNq3ELTDE\nrDpyBEorPeY\n7vx5baLs0NE\nRCp2lpFkeeE\nkK6P8gN99eo\naazXc06Oycs\nGZxal1kvCfY\nDaDZptGm6nI\nhIHC635Q9dc\npbv02n_zKvo\nKei4Jlhhz-Q\nPAw7vAf6HMg\n3k7E9zkTPLA\ncTQRH6MPV3A\nMAi6B_AFhH8\nZF_2tUzPnvw\nyw2hoxOuiaw\nN13exKaQgXo\nXftKutOVjQs\nTA4zkT8ov_Y\n8FJZS4bwRrk\nhNiDZEwkT84\nSlwofvltpRw\nNWdhUnTq3gg\nHhs2RLxDgok\nxG6__eK9jIE\nCyhOZgd8ahs\n6Kfqy-8C3o0\nWOBy9Q8Gf9I\nF-HZzW_NS88\nPlkvQ0NbjUs\ne4Dlc6yqJuA\nNVXDwL6XG_c\nvaCI48KHW1k\ntD3vc9KZ9lQ\nujgbo-_khSM\njdd1py-ilwc\njmC2y7EsXqk\nSCR9s8egrmo\nQsCBiq5cET4\nuzMEc37DGZA\nfbkfr-S420o\nXPsDyk5bJdE\n9HRIGCog9UQ\nPk-zBUDgesM\n2G5KN2wt048\nb9pr0K7SuYk\nHwczxp7h7Gg\n2vJOE2qvIEM\nP8ZCZJpluDA\nlsmWjQdGHMI\nmz6dgt11n-E\n9JTGNwLdSDA\nVrXUYjVCX2o\ndtgOzzBMl2o\npS-KE1LXpXU\ntvxjJd08MMc\n-YiImyOVCj4\nkpFSJhQ_30c\napasYYh6nEA\nvndiMloYcYU\n4E55_uKSR40\nk6u3YvvvgjQ\npYaJ7p8RrzM\nBEsaqfzc6wQ\n2VgamrBe_vM\nnxmaYsZjnXo\nrzIs51GUVgg\npuXiyRw_L6g\n6x0i-FfeA44\njPgV4d4ZmZo\nonesjJyXdFQ\nIBdgRBvFwlM\nkheP3iy8-6E\nVVvKuI8oK3c\nzd6ZUTrW5b4\nyk5d161ytXE\noUo_8mKGHvY\npiTAjb8dd2Y\nPhkGK4ga-Gs\ngU886wmXhQo\ndR0_tMYKwXE\nXYc1XujRb1w\nkbVtjc-ygTM\nPoIuiCAepLU\nm-ETkZmPNiM\nhTzUYt__ogY\n34K-mcoEFuk\nfAdsL7AXW6A\nMmBx8AMHTxE\neA-V5wUcWos\nXO4HxR3dPsI\nQ54GdrlgRoQ\npXrMAjB8ka0\nj0iplsU1qa4\nwmXFSQdF3PM\nYZrVYAXYyws\nuPFxRUeRfu8\nHSjPTdKWcLA\nrW59kLTHdBE\nQzf3SFbaODw\nxPwq9go3HDc\nlLItY-Oyvt0\nXCJxGxYDjQE\nRJEoUwZdwfk\nah_Egywb780\nKW1fyTqH0oE\ng_O0J66490k\nYg53M7TYpuo\nQtQpMjuyHnM\nDJWKWwfURtI\nuZpvHkGMn5k\nZlzhOaHLFBM\nZ6SklaeTne8\nm31MSgGEIAk\nZ2-9fWRAwMo\nNTUNJ7f0tHU\nP13rZWwIXmM\nI0E-0kTdg-k\nvVbXluPyrTA\nEqRYx6Zgphw\nPk_-jIncT5I\nCYt5p4a8YzE\nmnXN-mRFoPI\nCYTRQAy2o4E\n3HMU2k7i59M\nFNKYIVZOjqs\ntZ2yXL_RLEc\nVRN37FGgEic\nnPGxeiD4mgM\nSuoDkikuZjo\n_9lOz8mySPk\n6PumiBR18C4\ncY3aFhbBzoc\n5gQ3nWBmAak\n9EOazpvA7-U\nZ2-qppnyM3s\nGzMBisWrn_M\n7LxG9WBUbf8\n2ycw0UUyCm0\n9oiFkoROlu0\n8UscACJkVxY\ncRZ7bc3nqwA\nf-EjBwpuVFI\nWrZN5ouSodc\n5LX01_nSeZU\nLd8KOUtkHHY\nG8_iVf44j-s\nkJEvR6GEb7U\neoffuyXUhLs\no2wFqjb9AU0\nyDxNlPIFWHM\np39lIRTEPY4\nbqwS3qz3GhE\nEh_0E0UdJcc\nqyZXW5Md1HM\nokdTt3VfJ6s\nqzQdwPNUcME\nSwCNp21CKes\n5Q52XfZ9no0\nwN1iAzPTBbM\nfQWMKUF7dvA\ngNCkFkii-tA\neYrt5n8DA2M\n198uP07pieE\nWLq3zSm5SkQ\nduEErwP8eds\nm1p-vJzqPKw\n6IM3wUpXVfA\nekqjBZdbYJU\nW3cldIDgcoE\nUtyiyBw401w\nAwR1RawiBU0\ntFBSGc3v7BI\nbqvMCDQ3HEU\n_mPOfQw2fmY\nC5UD270jxfs\nvagva7xKyE8\nRmkFsYUz4cs\n7T5KMMZfc_U\niKS_327EF84\nY15QXiFUV8U\nmqYkD0nMs04\n7oi0cS5tNRg\n8VhgYX8xRuw\nhM6KNsz7_mk\nAHV1LepZ2KM\nZWszIB0z50k\nqv4BPYX4B8U\n7qi8llEviYY\nr_ckU9PkTbM\npLlcwabi5AQ\nwOSP7YOuOH4\n3A97Vc1eExE\ncmlELkvVPeQ\nAtcaQ4_DBOs\nGfc_7pOTR28\nUYYIYehBS_s\nVWMSjhr1BZE\npzE6SVUHAYE\n-LCqZeb1de0\nnjq3H2iy2X0\nuU_ftZ6EfX8\n2HwVVwlGHU0\nrYHCZi-tmTE\ngx-03rUq-1Q\nisFVKJA4E-k\naSwH4lpuKE8\nzXF0zcwPGuI\nApANYuSl7A0\nptcDoIfzLtI\nzPuVP5U-xag\nAsR-WnELodI\nczOgJJqehv0\nTSQ770iqDgY\nsvAY8Rg8HFY\nLKeegFM5SdU\ncoDyfoCUaSk\n5OGX-e6WT88\neZHlWaIYjNE\nJ7_oE1uN1pU\niraWz0XdffE\nGKNkucKoryE\n1O9BbPEZRBs\nfY1s5Sn-GDE\nvn8YIDxEGrw\no-cA_1F05bU\n7uYoJwMuN_8\nAwtSK1gLBBk\n2X8O8PN7GOQ\n9_T2VQgL2XY\nD6MN7T-tnDw\nbZhBhpm6m_A\nvNPCXKmF9LI\nzadI5ngwLsM\n1rP402h6Euo\nXR7br4b3gsg\nLfL2xCfIMIU\npJIGy4zHo6E\nByPtVBI4_MI\nd2uvpiz5up0\nBxB1Mpj8NiM\nPf2LbcDDW5E\nTYA75RnDMGI\nAIQHqvG9Ql8\nv9Cq9nThaNs\nLoRpJTD3HFY\nF2AbEJnPRYM\nnEf2ML7wkBE\nXMPTy7Iaw9s\nedHmOaS0lRU\ncibZY1GwVQg\njeYdR_r0iGo\nYZGetnQQU48\nIMPHXKW9ntw\nnqK7Kk3ZKvY\nlkT9aqC6Tqw\ncqHKducp4MY\n_O9lT22rCj8\nPJTb9EdYZDg\ncSWMU_rISfw\nXssDZqS6WzE\nTwnfJ8d9NqY\n2yWYCKoqKmE\nhp3n_sA4Sqo\n1ugiiAH40_w\nudwKI7oFT6Y\nWFAu7jYslik\n5-Xw_z9dODw\neNZnCwkHaDM\nauMBMds7lQo\nh4QvAd6nC10\nGokp5Aq-Yuw\n9xS3XqTSRr4\nzMbx4rZOMig\nKXa2pXA7v6I\nR0jAHXVoZ4E\nW3u0prIyDTs\nA83gS4JJXXE\nabgTPYfdbOE\n6nfXJd8nV9E\n_XSFVQhMC5k\nrQWpTKfljVg\nxHDeLp0sWBc\nQoWIRCVeXBc\nHLlaSoozZbM\nCd1Q6LsOR8o\n8lsl4cNrpzI\nUb88RPZnHQM\ncIscGgQD4uE\nD8NMSoCRPV8\nLgKIQbxZZgY\nTYJ-1E4hKAU\npkqyDC9YnfM\n5VSg6c8TKNc\nCShHiYrQPGM\nh3g5B5JhFcY\nJd0XiJie7Lo\nf9Wq05WVXiQ\n2DdCmT_j5nE\nsidgUs-5R64\n58pw6PJAqZg\njJnJFGaJwV8\nGVGyBNIfPL4\naIKVAAfZZeM\nZkZvK6v-L7s\nRgaUubM7yyY\nKGPW4PnJtoY\nSjbUk89pY7Y\nab927ug4_xY\nbwnrdj6zZfQ\nPIeiRgfL9e8\nUcEl21V2btA\nB7yi-MaUZaQ\nlg0P7zox2V8\nh72ZN-oKzTU\nmc082fyyMQw\nOaGLdGjlV7Y\niIP23U3q5FU\nRZieTQla0dM\nAAE6HOrW3rk\nV_dtlMkvp2Q\nmNUnCTKwS8Q\nVflasoWmuoA\nj0cqqCpIZHE\nU-R21NaE91o\nSD0eJL4D6q0\nmsoyjm3gCBM\ng1jO4_HQQX4\nJOw4LqyJKyg\nXi3P8vUveVQ\nXdzv5V4MVus\n1x3IKujLO-E\nyvzmLB30MwM\nMdI5DrJ6V3k\n6wXeUrZ6p5E\n3xtKas3-ctQ\nWa3l6Q7e5aA\nZbi-MbMsnIM\nlR8KTwcC8fc\nre_liKgRGew\n6Gd4JbJxaf4\n2rPDGz_0qvw\naDq_JsN2Y6c\nucYwV7EWIRU\nGCSbGFMWzC4\nJwAVnG8iemw\nCxQ4aL5IXZw\nCYgNbOsiKtk\nf7l5I6ZPt_Y\nfVoHEZb6imE\nadjuOPzkpw4\nn44APWaJZ58\nKbRMCmnLU8o\na_9dO9k2TPQ\ntGg3h7NtiXs\ncSSYFjtc4SY\nof7H9H_aPxg\nDd0f82f8ymk\nAtWL0iQxE7U\nmhCiFB07I2w\nGwdgbTQ5cgU\n_KzpueROmto\nrqdEaDM2PWM\nhE5rsmIsYPA\nMWxa84PirUc\nRV0EbFEZpT8\nMrtT-vOpAfc\nZ8JHamH3gW4\no-_ochO9CFQ\nUvojHP56dnQ\niHkMTqikRg4\nlGTsRcHaMic\n2fbk5E4JTkI\njV76HSEeAPQ\nuqn1bgQX1lg\nynG2qpTbFP0\n4tVEuWxns6g\nWInIV1tcI28\n4GYKaKvJ4Ng\nJb2egULZePg\nH9bQdTtfGCU\nlensYsrpsVY\naRMHp-wDvnE\ndWWjjk3Ody8\nXqtGRpyXGXg\nwdlhhgAT1EU\nHDPj29dAC-g\nOQjvys5lLk4\nBr0BUZWEDQg\nbsbgDqKys5g\nIltqQORdPjY\ndBbxzOOGUqA\n-CSIqCS1WIk\nPxKcm6wWUJ0\n2BofOahaB0w\n6xmaoTphmLY\njqzTeVVmTvc\n-XggDv2QdHg\n1IyD0DjLrrc\nV5P-1Vedt5E\nrcA0MBnPPM8\ngm-sqEK2InM\nQlYSFCvUGoI\ndkDGK_eFw5c\n_liUxE_lefE\nrb_iLvMVihA\nUJ12I9sHqK8\n3tbDLfgTAuI\n8dcA5NLO_GQ\nLKVJLiiBlOs\nI7pOcssa5uE\nKgbASFn2Pv8\nGMnwXB4A1iI\n6hfzPfOrftY\n4VaSyU3yfMw\n5Vo99FUjbrc\nhK62U-Gm_hI\nMgYmK3cDFq8\nhfCRzaZuY6s\nAjAJNPCQ1Fs\nOYsV5RbHvA4\nEwsHFGh6fkE\nlzJV7k-LiC4\nUK-vT8iapA8\nengSFG20kaA\nZ2xooz6844k\nETC85CgzTHM\nbCOc7VCSox4\ncUT0WQ9cTrg\nWDAlAqy9WUM\nukl9qBvRXfc\n10khF4-1rbU\n15gPYqGlkwc\nq_VK4zsJWNw\nAwr5m5-ocv8\nhKTAeQKaKu0\nKdr51Y91SQE\nzjdesHuied8\n7Q6ywfDSm_0\ndpKQxs7ashU\nLfL_KOOZvLw\nQrl_BpahMRs\nyg42xdVf9mM\nXqwQlCAM3P0\nrzCeSHk3aVY\nEce-FTMuKFU\nPdzjDn5zVXo\nDjNVqYjp3E4\ndXNmLJXEgQU\nmHRbCgVCbIA\nPSWgZzUr_Yw\nPD4Gq5GPcN8\nraDWhK7iSqU\nq9Wip3v8h40\n0YOmyGX2kmQ\nXjp16xSdsp0\n3NpYTks1mDI\nn94um7eDILg\nhRfF8Kes77E\n51reM6wq2XU\n95N85bGdzw4\nPVEIr4MGaT8\nNj61hQhTwW0\n1WwlHv69kik\neAC2kNiKuEg\nyygNdTxoHus\nMBNiDwytFow\nmXz39lQAEmY\nyLFZcXeZymY\ngO6qemCFhEU\n2m-I23sWzEI\nfcFKVVHQn7o\nkOe-yLCbA4E\n-utei4CzIzc\nYg6sZ2htZfc\nCECosJ9_6MI\n4WibEcqn1c8\ni_rch_cy7dM\nGRADFiFVLJQ\nb6vOp7_rI6Q\niBptyagVaEQ\nLxAebgxJHyg\nALhR_LDm5Is\nYjJ2tMg4tTA\noS_Iap5D9jQ\nAE4RhPMAtp0\natQYOl5KL-o\nu7DV5coBXSA\naSajnx9QK-0\ncMmi5sRe8wc\nn3D3JTzaiwA\nRdTIzSuw-nI\nhqhm_-sWbFg\nsaTBYjmhcok\n13wgcygv86Q\nV5hfxgrLuoU\nyNhbLL3Xvcw\n7Fj5JAYfWVc\nbd0IiiCDDGI\nPwgxGA6pLhc\nvzzuOkCkHlQ\nN-ZFty2-G7I\nT2ph28ghuEU\nD4HGK-_5TkY\nH_sYBmKxmvs\nY4SSkX4sRMQ\nH1TQv3qA7PI\nZG60oroE7AI\n6bxX5ZV1qn0\ngLWaU-LKIwQ\nT535zq4Kpt8\nn03zeBpWC0M\n8QPhWhQ6zS8\nqC7HofT0v4g\n9-_TcYrv2YU\npjKnwaYJi6Y\nOwDRBPO9eKw\nLYBdGadPNz8\n1Jk8IZYcxmQ\ng7bQ7ynurn8\nSWl87YF_hHQ\nVcnAtRLJS84\nvmynulColPI\nDI5t1Bxfy90\n4pSAjI9lOGY\nYKZRedzkeU8\niqZmwwUvgVU\nMvIqR1cMbv0\nbxxHPYFtbE4\nq_y6O1yflZI\n44BkOqV2jDc\nH79X1JQ_S30\nHQCava8QqK8\nXNUers0BuD4\nqHA5R-Q1Od8\n1I2xNdoQXM4\nhQIL99lP484\nQc3voNxG1NM\nSUfo49TsWOQ\n1eN1O1j3LcY\nCpIgfRGUpU0\nI0jOVXcnjdg\nxMjEmE1YLSU\nvp7r-h8OLm0\njmuC1ebmYQg\nTv5BC6yJ61o\nXtL5tGpGIN8\nq-nQtR-WbIs\nfZflzybv5T0\n2yZlrJWBLac\nvKhAdR1G9io\nOxKXKwijH_g\nHj52vD7KGxs\nkS_QskTI8WI\nfNjMYPeG8IU\nVEsvArkVtYQ\nJIvq1ObEOrs\n_cZ-D5Q-26M\n415kITLNgvg\nqlyJNTOwkAI\noOBu3uqpW1A\n_WE7Il9dZCE\n7LoHCPOvmuo\nmHgXG0tmomg\nD3fVS2I9ZVM\nX0d8qyjQ20M\nSJdUJZ7odoU\nUBnufwe-p_c\nn1GlWng3oOQ\naDZSH05DM_c\nE67jk75CRWM\nArGWpUHkEmc\no3ya6zEv3eM\n0mjSZpCpsdc\nxMoCoTO3d-Y\noEddtexPCso\nQmEz0udgJsA\n2OrlbOFhcUs\nwytpJXfw86w\nMMxE41xM9ic\nkPXFWplmSyA\nNufzJ2YVJB4\nwkoHQdbhfOc\nsRUb0GR0ZiE\niAzMFB3QaBk\n5gtFQegr2xA\nToF0U78xIyA\ntXF23iSwW3I\n9u6xaK00otk\noOWl14GlJx4\nh5KBS20Ke6U\nye38FmLnLBo\npzZ9UdUTRNA\n8OS1xorvbAs\npoU8QxFJjbo\n2uZV27BttLM\n1BS3mo_yHvY\nG77UaCXuoOs\nHYog4UvM1zI\ngUKbFeHjYX8\nhM1OunX-QBg\ngxsDfmzU-Lo\nk2-SBnbz7pE\nMkNhAG2CUso\nyMe-7hW4evU\nWK_rWzm86RI\nVlCkdkzOwFk\nvpTj6-4d5qA\nacVDpeSHw44\nZFGBlZw2kIM\nVHF31ybakiM\nfbnpdWhOwIs\nSEtuhB8LEZU\nHuUhj-abydY\ndjTx7slpfHI\ngmnU4tK8GOo\nOS0rZQtDsoc\nsfCQQLSwz3s\nN-v-x6qmtcc\ng9hEJv2uZLM\nkBTPEpA8BzU\nymShdFJoqiw\nYRdXmtGnwCI\n29D9SkdtVBU\nKY-bRBsLLtA\nHBPQtYCDKrk\n-wqnmuzG51c\nFecoe2kJdD0\nLRHNkBU6YWw\nRxEkm4dDAL4\n-KW0wz1xBfw\nkTUnQubJMoc\nlcIuJs1vHrg\nUiQdZRBhBAE\n1YrP2ICd6ro\nSdFZEeR8a2s\n_eyLdmCxtPo\nBWR9aK0vAAY\n2UK1aSp3bUY\nnWd-gLPa5fs\n4UOnDFoEPUQ\nti39GhRZkrw\n1dLZuGiJRXA\nTp9iK2u30qQ\n-Nj1XUtmKDo\nsG_cgDlDyEg\niaxDwgBzVFk\neYt5GYOLjNI\nj4W7FAGrpiQ\nEnAegC2mT8I\nLiZ_h3tUmMs\nm2yxUTpM3IQ\neret8dNSTqo\npRlsbwGqx8g\n9GBxXdJBSPU\nbvEJjjYbgtk\n1UtDbLZsJ4Q\nZsDOHhqqLCQ\njzxMo2UKUKM\na6cUudbbHl0\nvmOBZjVBCUo\nQPaP-XRQeM8\n15XqLhQ0_Oo\na2ZdXUZt3iw\nyquyze0QbPk\nmdgbtrpVBm8\nYjbYhnnEDRo\nPQbyl1vsn1o\nrqKaJ4Yp_oU\nQDroSLQiSRI\nHgee-O7ZAnY\nNrhBIkWlIfA\n1rJ_NvTBOmc\n0Cufl5Gao98\nPqOlbM-zmuI\nVPOd_Y2qFJk\nM3Jts1DPcWk\nBbyMGiPjDOw\nYjfLp0bll5U\nssxqmxjrx2c\n3SsvC_2wKI0\nyVRmafc7cqQ\nMNQQS7QR9Vo\nbdJPnMKhsnY\nM4YOZHoDSyg\nDxdOJYRdABY\nNOACyJ1CYfo\nhAbVFxYi_q0\naHQQs4D3krU\nxRw3fodr6jY\nmG_G5waoSeo\nodvIh7iwK2E\nEb9WH9OiKn8\nZLmRWzBjbtU\ni1igdJh44yU\nsm5Zgj8kjD8\nYRruOzr9_w0\nEuZM3sfjqno\nopyh8AAgisI\njzhXtCHYrAM\nqR9MgJkOFJ0\ndZmGh0bXqqw\nfuwfQJrMgLI\npKHAhc31MOI\nHLTpxttylTM\nDLb9vR3Zu3g\niJ_DrM05hp4\nDcpIpj7RbxQ\nm9aEg5dlFOI\n91nX46JsnlU\nuBP8cPLPWrQ\n7-H5Yu3_Py8\nKTxT13DzNsc\nTknTP23YYFI\nCu5F2Z9mKmo\nbkhUe1txLoc\nTmFKGDfxH_4\n8z4QVBaCAJM\ndjpX32_UUvc\nZYB22miPyjY\nzpccIJubm5g\nmZmMhrrh5vs\nWIQhvHsTDU8\npiJUrPp2U2Q\npduwe6sUsu4\nZNo6GHJYrFc\nLW8M-U3Q8ug\nyB1w-AypA_s\n--ABd2SeIGE\n3nVP-DM1egA\nlOJnFwgpcMQ\nsMjmQzP9D6o\nUJQvNi4m4LM\nTZdCMfr0Um8\nnlJqcYb65o0\nZW-xfRn8vFY\nLagXmjL6EeM\nIAb5uq3GzZI\n-wSqiksvdD8\nDCThJoIT-bY\nWdzNa6wmtpw\nroLboEc4M-w\ntOcnYAE2i4Q\nyLtC-gH6ktw\nrA69NDoXRhI\n9VY3OKScxP4\n1PkqpkQQmwg\n1m8Ac21hxO4\nQM8StMC7V6Y\n32iBCneCYcI\nizP8mDH8XOc\nAxhQq_-31FY\n2BaBf4EEO10\naPdLYN69cfE\nTZ9xan53wuA\nXWAuh7S1zjk\nFU0HEv8SNrs\nzATNPZTinmM\nDflN8U5mO00\n98O6geBet-w\nSormU7hbgk0\nwXzgVOU3Yrs\ntMQjzrxE2Kc\nUjjSZfAe8sE\nMwdekXx-4ls\nORQ7CGUilMs\n6lv7o-rzkWM\nZvytnyM6lRY\naiN0_53Rwjg\nDkpNYjgUlhw\nukZg66d96_Q\nzksgFqKxbVY\nP1R_JOEIMS4\n-O7sJe9k8w0\nkjMmwtxIRbg\nZN_59UzKu-8\n1DGrM6qhZHY\nbdJcCwoJ4KQ\nrKUEBIPe5F8\nhMbcMlAVxeg\nTlyHBaAJVbk\nL_0imHGhC3o\neTepvIyKhIo\nVl3IiVDwgpY\nrGnXd_krGA0\n68av2-Ti-GU\nCTpAikAZ2aA\nmVUQ88T2S6E\nGoDxjaW2if0\n-fqOpmu8014\n5yGE_RpI45U\n_06GrnWiGqI\n-Bxv4jtiR-U\nyRec3myBtsM\nB1uEaZ1xSaI\n81mLKFXLNSs\nhotQs5eawqM\n9v9MVT2X0_M\npMFzy56i7RA\nJPA1TtBEIbc\n_g79FGuo2GE\nJ66HeAFlMV0\n1reD-PYDpvk\nQAJTgMZpigM\n26nqXIUqVhE\notsIUxrcoXQ\nDUU7WFTBgBM\nM9p2ix0s-D0\ncP63R4QwDFI\nTEvVc1vsO2U\nLE0TUN0Po7I\nBdZN3EJVjo8\nbN1E4vf9FlM\nqY7EPDCU5hc\nafBwkWnwlD0\nFcqJ2a3Dazs\n94J4AzRTLE8\njJvvT_Sb0jo\ntIy7sQGKtJA\nIMr_irerhRE\n6DmSVYtMoyQ\n1J-U8tLUlsg\nkKUsYDTykUQ\nSd4y4XC-qvw\nMZIPOu6WeGg\nFTGtcjSMjy0\nE-NXKcnsDJ8\n7EmNSHq1mh0\nuHd2oehKwuA\n_a9IqPr1kdg\n8QDZKTF75Zs\nDUiEMltmojE\nheoNF-PyZ8Y\n_j0onVyO18I\n1m_aN2-vauc\nTt7LWRxtRcE\nMw8bNmfoC48\n9xp2F5kPbRQ\noY1tp2HG06w\n-whQdRI7wUQ\nTXAJapM6E-U\n31sP1-4GgsA\ne6B-T4KYIFQ\nc7-u-fyUSkM\novFDrgui4a0\n9_LX8b0kmiI\nipb0Bfg_FTs\nJyQczb2eCf8\nOt5T_oe47Xs\nSCeW4Y-XPfo\nCShX9zc_Zgg\n-wHSMnaUzWY\n5Wpy4Luh_uY\n-GRPXrEaqn4\nbhEMe--tKlY\nMzvFEBBZuwA\nsL0fO-3JquE\nPdKfp8IWgGI\n1O9Sgq0FK4c\nWQwgtpaIVkE\nuMx7RJLn08w\nEm-hPjFyY-w\ntNnxJK7L3N0\n-cPDC0me1iM\nSHIG5bfYTs0\nI9XmewMPVdo\niyVCFSW_W1w\n0djt409Dqps\nTEtlsYtj5-s\nMki2fo1Ou-s\nTvQmXzgtOeQ\nr0MABEixxRM\neQ449GDHSA8\n8QcReRkM8wQ\nXc2OmGesDgo\noe59hoX10vU\n1GHCAqKWA58\nm3UDahZjiK4\n9T60vF2EZNg\nGr18osLHHsE\nGV_pMBUT-24\nBg17-zWqpkU\nM4YhJdAsgdU\n5YbynyAXAL8\nEeNJbbrT8e8\nuj0x3TbEE7g\nFzlxL1f-E54\n2nJCpOeT9x4\nPSDHvN95YgA\njHw_p75_LfU\nPKG3eCpwYBM\nJ3J92iSdERQ\ndACX3WiPVU4\ng1R5DmGvMCY\nmz4JJWjy-Uk\nIzFSwZqBjFM\n0-vcQg70AX0\nSWrq6xYYIbs\n_41AKvC_uGk\n03jGqiF-0Gg\nuXG9v1_X8jc\nS-M0BOzttdg\nUmRkYrYgnN4\nev-4cz3hlr0\nAJQd_pt3-pk\nX4JETt9w9Zw\n6rDCHgWk7dI\ndCyrhdW9e8M\nLmK0bMGzHpU\nxgA6VKUVRWY\nrAiLoLA4cyc\nqnD5qOyIonw\nRMaNfwSn-pw\nQGLQ6YvCo3A\n7LraDj4Pjgk\nfcAhSCTiJm4\nLrsnIyCjvB8\nIWmzBLX4j8s\npLra48c-SuA\nKAT5h_fimTM\nNhtvtnrHon8\nIT236O8f-J8\n-v_2hFPseDg\nyWu4GUFpwWo\nuB-53DTWD3k\nboGgXcQIe-8\nDzqzlpAo9s4\nk3KR3Wz29FY\na_DO8nd7FeA\nZBvJyUTIU0k\nvnL8uiqp6_k\n4V4jhMSJRW8\nWfAp-jZV5Bo\neDPbu2vNrWk\n4QYYeDp44H8\nv3bWb5qZMu8\nnudL_t9u78o\nEwpzngfnvcc\n6Tax5ajZYsY\nYDkE97uXjRo\n6w5n1TfIFjk\n83Lfw7BxsQE\nWGxfP216OFI\nZPjREKxiNsQ\nyuQipNK_BiQ\nnVvMBs0TFWA\niLFMRsi07_I\nfRhJPuDCXRk\nxR6jSh2HrAA\nWxIgfDZXS4k\nSBIKhBgxq6M\n99kt5BrTa4Y\nVIxumCmygzw\nE7AA7Qv9LkM\nc2v3ZXKLzh8\nX2aVRBuYsNI\njS-7DpkGT_E\nuwkMYWXtFu0\n9RpdDbHL550\nnry9GG4Z0CY\nSV6R0ym_s1M\nBmd8v7RypQk\nm0FsyBlZtkk\nKngGYZgu02o\naPDfc08u_s8\nqFvJloqBYTQ\nbwH_nxsCKp8\nrdCzBg9Xw8A\nCRPf4U_MRVw\naPcCjI--Cz4\nTXLZrVcUcq4\nGVzyzXZuzOU\nr2C-3xQskdg\nKlvWPWFYvo0\n9qwsfjnC0kM\nHCtR23MGwn0\n-QdBG7PfFeE\nup79gU3V8sk\ngsVcJ5gGsE0\nOe4jP8WV9lQ\npkwGEagSVT0\n6AWMlRhBN5U\nSV_eLd8wm70\nybRy055wBsw\nhKuh_h2nzN8\n9I-FCJRX2Cc\n2oFuSvs-WU0\n_t1yxHW97xE\nqEb51O12XFw\nBwWzZtG_6fA\nPF2hIgWupGU\nizLhF-Oodrg\nFLjWVccRPOA\n3oqt6V9aJIM\nvZHS1nXJaGU\nkcniTaNYikg\npPCq9SIyHqE\ny87LPJHRfOI\n8ILiVgno0_0\nF6E2ojebPlA\nybFMkEvDx60\ndDX_fyIlXXg\nJVo7oslbnjA\nyK9Y-rD7XGY\nGLBlIYIlND4\n3oFSNCmEZyE\nQlZ28Do9WmY\n4o1O6Pt7zr8\n5DaiI6epRCU\n0tVy79pRaBs\n1asspYdV3as\nPXokYGWGASA\n8lnd2BulFkU\n0vuS4vo4c94\nxV0HfZSFsiE\nT4ZusOrLSoY\nJkW-iBe_WyQ\nUZVhwFUQwcs\n6OYZi5KUFzg\nPPl4KzH-bGc\no33ZCLXEHIU\nijaNlufpcMs\nJzr8lXSNRA8\nGJwsVhQHggU\nmCfKPXX19Gw\nf8P51JbIp9g\nC-uCzmnXn-g\nz542q4dYk-0\n7S3biRDwbAc\nU714emx9EJQ\nrbYJb_i2czc\nnW92suQFQ5c\nBefYI15la84\n8gLOoFW3ke0\nBxIcBWi4ETk\nk_pB_zV6kVw\nsVZLKLWFDYs\nFAnP3FAu5sU\n4Gs6pBwn5w8\nSqQmfQfAzzg\np0vZhGqM_Rs\nBK5ad9GV4NQ\n7j5VT6oDcVw\nGy9Wan4jskg\njmwfCk8MBhk\nP8RUrH3UmPY\n-a4N0JuAW8A\nBSaGnAC8boM\nOZJUtFROusE\n96CVkRhfoKU\nbJbTcRnSFAA\nE1k9eRHXFX8\n2_W3saVv0qw\nBLejeXcxLdg\n2Dlgg0Yqsd0\nkgs8NvXfI9c\nW09CmZtBFRQ\nIoRpcIVgtUc\np6AK2S2N6hA\ndY9zZS6BNkU\nF1ZPE23KT_4\n2cgMKpAGSQw\ngwEoo0r_8EY\nBjPUO_4HJeo\nG_Rd3TcODj4\n4OEhuma-rrY\n0ekAvNp_F9c\nosLhRtHZ4Gw\n6oUzjN26DoM\nrlaRlCFXUqk\nTTOlRTmEdoY\nRdG9KwpjxA0\nQUtc_tjyrsI\n7taghufoJY4\nZdNa-FoYEo8\nAW8Vxng7dDY\ndh6yBmJDLpQ\n1gjaw2BNg7U\n1rowOWuYacM\nXf2ZsLFeD24\nfZ99iSkvkec\nA_n2FjVMiVY\n1q-FL1Wd0EE\neJPXQfvokV8\n5DWrrqP_HNk\nv7QfNBfZT3w\nrTlfnymyrrQ\ni7Jg_6-fYF8\n8zMlPNdRRLY\n68CXG6t1mxU\nhCN8UAdH55A\nFJStfF_7w9k\nRgM_mn4oP04\nNawsWUndVQQ\n8fBQzlJdubE\nELAfnYfUaAI\nxk9PtV1-Dl4\nhFZGh14H_J4\n3hcHRAFPBVY\nx17F1j6spHw\nBtvvvXRUks8\ne1oUspIUHEw\n_J6ipSZnD2c\nZoYZl8-VEGU\nHv3mUXCo46M\nFY8vuvzZHl4\nwmKfHN7NxeA\nDEeqxarMzg0\nNy0jtHcjrbg\nG_5pbKwl4hE\nG1OstoTh_Bo\nbgoBjzXp3ww\nwqQYEQ-fsLA\njF6mqjUiljk\n_wU_3DGbYS8\nMBDyD5A2mQk\nX-lp4KfK9Qk\nTYiEofdhOgQ\nbHoe-hfh9WE\n9Wy6ekMz_Yk\n08zyIFMP-LE\nZp6CvBIvqZo\nUCac6K5YWns\nvgEq476aHxk\njA83iWbczFc\nK2LCoTSVORY\njKIG_-544gY\nwx-HWqbwssg\nODeWs0Eu8n0\nFmYGC2QdXd4\nf1mbRj3ejAk\n3yVGaKmJrUY\nExw1_k7Hj6o\nzjQSWtB7Kp4\nTgzbVMwrr7s\nDHk_bI_wMcY\nybDsC1DzIPk\ngm0I_zdgs8o\nF8vcszMAya4\ng1lpI9wZtiI\nX-VYaCvJwxY\nBB3VbfL6Xyg\nxDe-990DWEw\n07mbIgWikmQ\nGrJGkWkkHZo\ne4EL5s__uC0\ns6QIbe248NI\nxEnYDuZSSy4\nRpr0n3A3_BU\nw8mpECLURqk\nBF6tMv04X9M\nJ_hkf20P6FM\n1RsuQNxE43A\nor6rCLpiS10\nQ2gFrTuZhFM\nms_ERfOYnqI\nDoVnHRhvtKI\n_2vMtzWb6q0\nMh51HEise7Q\n_6RI-8Ia4do\n961QhyKlg34\nROlSjAgE93Q\nZSQBKh64SJA\nAYy3qj5Y84I\nDvMB2pgYRMM\nb3IInexeGWE\nKKDCqTCoLQ4\nsu9foi8t6NI\niDTYtgkzpZo\ngm5nPntwGQA\nOTAO1MRbmNY\n_6IlaKlrXbs\ncRc7p5HzKIQ\n8ITOvb7Des0\nAHjOZLikqoM\naRPInpAD3_o\nR1GZ5ajb_xc\nIvgFrEk1JqA\nR2DhcfXooy8\nJyAbZxxgLw8\nXc3bqi1G5xk\nLszhBmIWjeE\nlxlwKE2-3fg\nwC4MzUvxVa0\ncwOh20xN82E\nr1NUy3Rq8n4\n4YuwbC-9aDI\nHVlrXQ3qWqo\nNqmZSSpvghU\nYfqg-PxRCD8\nlUglQukweZY\nzjdTL3Z77G8\niKscMa0XRXo\ndfofju459FA\nS98AgHKyX8o\nYn_W5-xgf28\nhY0SFHtFq9w\nH0-STiAQTqQ\n1WlF1nxQKgw\np7CweK_hS90\nhV6I03_cIks\n3BIyw7X0j74\n7LmO5fAuT8U\nOSeQk_f4hSY\nnSCUWDt53fw\ntbMeRyWgdW4\nH3jNVPIi5YQ\n0_s8rbNokS4\nKarwL_yYLcY\n5Ka1bqIBXH0\nnaPW3XAHz0g\npjHBTYOeSxE\nYz6pNUcMwzo\nqfKQJyqMnvw\nhKH27VchVb4\n1NnwUUf3RMg\nnLpJ76VuXsA\n6eV48Ir-RYc\n9_GelFK6rdw\ntpnUv93AAp4\nY2NT0jeoBXk\nfkQHKvo7ZAw\n_pe3ht3F0A4\nblGRLfNok3E\nqS1MeoM8iA0\n2iMVLR9jP1E\nfDSyuyOtPRU\nm3CMdoMIX2k\nXIhDPwuwQdc\nQ-X3-JDIQLM\n3Ks6tKs541g\nZJ1UwZPZN6A\nQRWluPmgyow\nn6mWh_43Azs\nuJDmoisR-28\n6ya4pGA6zPk\nRybQmyBoWEQ\negB-SG97EcI\n_pin0H9Udho\n1c5xWXSWSgo\nJ329mOtIQ_Q\nYWJMmQUGP00\nOqzgxMFTQfU\nUxHXWhEq5lo\nyFSvuz5aHy8\nx_BYzj4jQEM\n4cyZctbdFik\nmmdPZs0Nvvg\ns6n8HGwboO4\nTAK8DeL_w00\nkZCgrTDVRbI\nGYh7IHTeLus\n99IsS-uXJzQ\nGylxYHpdxVQ\n5QFZ_Kh7vP0\ng_wEMoy_wi0\nuzeSNmjxyNg\nFmEHRr23Hro\nSq7RMukT_sY\nU4fnEAu1--0\nnGx3WY944DU\nwyifbBO6sAY\nsk0mjld_eow\nUbb88WMrdmo\n4wv_1umbZ-w\nkHQq6ri9MDI\nvJ6XJtlqqZo\nn6H7zga2Ks0\nSOR9UOc-alI\nCFOC-_DYKXk\nMGRJhDyY9ls\nrZs0ZkhzpsI\nTHuOIvlbIjM\nWeSHSxMfC0A\n07GcBnddoMU\nRIInmRkYOXc\ncMFosgxgPAs\nu5hpQ0KeRgY\nJ6osFXTp7WQ\nB0nhCPv8VB8\nkqBMHRX-c-4\noG-MKxVWwi4\nvZ3nHOtlQiU\nM9FAInQwCm0\nilXtCX0-CkE\nXvOKgNVwLes\nAoPqvTGZv6g\nvOfFVhSiwiA\n6nZJPF_VgIQ\nHj12WETYG0U\nyLJ5hUWH0yE\npizMaFdtY-s\nIfNo8NJyy8U\ns_cz5JFWpzE\nAUPdPriOg6I\nZ4G5St8apOQ\nGLeGjBbLSJI\nVh4rJorGhHQ\nxHTAYPp_gzs\nC3ajmVuQPk8\n7-juqE5ASnc\niiYX4JT6C_w\n7UQFQ-FyV98\nXr3vKjP1PUg\n8-S0Drs1N9Q\ndFuy0W8-Wj4\nRMdS3Hi-rMA\nDE6io8Y3FQQ\nR8UDjs0FAdI\nOrHgSvrG8Z4\nnBGdf1uWu5A\nhHRWVczf8d8\nVq5QdeqLYOw\nwdwd_fCVhFM\nMUvtyyo1vdc\n8tnIy3PuDiY\n44zsdC87LJs\nXhWl0YaZKfY\nEPFnZSvRq6s\nL7rGRnu-2UE\nmRXz6hTAW88\nt8_p_4sqv4k\n7Tx0kjtoAks\n1LwSe_JnByw\n6rNaFgA6YlY\ndfALZ10xUyA\nvdwWjsJLaJQ\ngtmmKXgSUwo\nnDrjVVyUjZo\nfN0w62AurJA\nB1uklxoaP24\naViOusNEtoU\n6GEll0BI7ko\n0I8xeAEpb8E\nsSLdFuRVlmc\nwWpNqaKrq8o\n3SVCkLf0NiM\nFE42Xc_laYU\nFeaVbBKg8tw\nIQuxKuLkByg\n8SvHSEy3xCs\nI2s3FG8KpKc\nBZTDkSXwBD4\nkKBsDfBDmG0\nLDmKhGcB0Xs\nLdRoFo6JuNs\nL589GA-KKq4\nM1hXX6aq1wA\nqjqJtri_EG4\n4kRRDuR7OBM\nS989EXPoZKs\nQT1Tl6npLic\nCOSkA00zJlo\n8CcVO0mQ1go\nlnfpTgAQ0Ys\n3UbNdsZot98\nmKrFcdRLGQI\n8_oVkRFKukY\niMaL4la2Q78\n2cg4S8JO_hQ\ntNheq6EGWuU\nisY1TQ26Gnc\nw01G5wVBQKs\nJnlOLl7Ew8I\nAPxaNrWnSq0\n2MFlcONJD-A\nYACsFmbB9Ok\nNbSduHWUQDc\nwzkoiXWdFzw\ny-m4KWfeyvs\nbmYXbieirM4\nt8VC4GBHwds\njBt5rfpIjws\nVP5nSFxqyxo\naKidFnGJDYA\nFkjBXGnq8Jk\nx_Gr6RT8Aho\n5S8moDSqK0U\nKzw5aWCSZs8\nx5ajdqqytyA\nbNiztacMAJ0\nzElzcOQWLLo\nw5mtX7FnO3M\n2EojVDDg3xM\ne1FWoMLjAU0\njsUGvhq2MLM\n4V9xYmVeNL4\nlP-A8UaVbLE\nxkjfSZtHBXc\nLl-Ff-PIPOQ\n8o1QfQXKstU\nlhzE7_0RSow\nvWNDTaQG9jE\nwdLfTMSAErQ\nlh8UIXq5ELc\nByN3jkG-PzQ\ni7Y0sXYRwhg\nJEbShXn2-Vs\niUuWyMhkd9A\nUbQlBLCvOk0\n7InJqZBrCuw\nzIWGx1aneus\nv1ef0grzZWM\nw2z6YPTKVsA\nO4fYclm_0As\nXztayplmOsE\naELUig9qu3w\nOdJlNbw8ru4\ni3VHMIy8wHI\nL1hEpMsgttE\nVJgFWMPoK1M\nm_udTXudsnM\neiKrNt30jS4\n772oaU4DFTI\nsfqjgFBIBFQ\nd82uV320Fzw\nJqwzeAkRcJA\nBl6M9MfRbcU\ngmJtNjLjsNQ\nI30x5dMvcA8\nh6usdPpiqho\nj-TPDJFWErg\nwmbN_BXQaho\nMge3npvF4R0\nIORWBsyIivo\n4aKmbFnV-mI\n1AhrD2-cvrw\nCGwzaIS-tLk\nKxcKAGtHl3A\n218nJYQ3oMI\nDKqFCG3UTEs\nynC2_22yuGA\nUyKyxHFIT3A\n6ldKc6yXTyg\nS3-atF715Mg\nxLZDij_-ZRw\nDHYCHYsyqTc\nRHmp-rhCrLo\nHgQDAW28DsA\nBy05PXEvGWA\nQMmxxD7h5-Y\nIPPeDiU4Vdo\nFr1A3ok_kfw\nhAU8AQ6xlw8\nu1Pgftn5H94\nGvDcscZXfl8\n4I9-0dipqo0\n5xnSzPHjw10\nItMY_4RobkM\n213l0Kv26uQ\nnPRUkMAdukE\n-E0UUIoS5xU\nncErLtJBlHw\nSOa5HP_FHoQ\n_jF3JZMHL30\nP2NiGznbIcI\nez6GguY40SQ\na1DuE8E4DpM\n1Dd5HFJn88E\nq30Pl1M6_DE\nkL8e9CEgm6A\nbBjLUZgx4WA\nV300Gtn8NVs\nxME4tintsqs\nHsg_ZUoSlCs\nWIBrEMlCGSM\nl081UdHizvg\nJ38c6k11K3U\nM0iif-dNJus\njra4awMyUr0\nyYUtAKXuicA\ntoiIOy7q4xg\nmo2-63epZAM\ns_h-ZXgEtNo\n5yGKubkHrio\nQoT8ZUDDmKs\nFsIaDwn2EtQ\noS3Bld83J_o\ngc19hOdR99c\nlEykI65QtSQ\nxbhm9F1ST6I\nfQ09ePfYLpU\na8EeFNXk1TE\n6Xn4tr2grtc\nKEwC94CY-Go\nWJOMiXmwfYE\nWEfMDGtX3K0\nhn3XR4o8M4c\npdmo-_KXg0Y\nK2hcF1oOHb8\nCVxgFZixwlg\n5Ugqj1RATYE\nWsffSfKc-mw\nfLswSc81mw8\nGJ0-xGnrjBU\nIvGwIRIYlBo\nWSYe57h6YUE\nx7qvOFN1QZg\nHMUbL4Vgb2E\nxNzE5UoQmZw\n-Dny2rWieIA\nbugH1m4LteI\nnoAefY8KRoQ\nkjo_zi4cLJo\nZagt2ld1pwE\n9gEtABdjiiI\nVpBuUC1P2jo\nS88bgODlrbk\n7SBBMiyv0kY\ng3vxfUb7Sr4\n6AWo-9MFBug\nU6PrB5bbWRM\nKJI1SIvGZEY\nz4cGnSZQni4\nKlC81iup2Jo\n8ZkCvzJqCUY\nC919Gt7Yd2g\nyzTbstnZYro\njH1hWH-WvLg\n4D1OVjTF1E4\nVMteZw9UU-U\neiuVC_cdyIA\nGuMg7x6_8No\ncRgXwpwVe4U\nagzK8ig7rR0\nwvknCnZ8HJ0\nEJOewEP6tKQ\nvMs9qHAQaZE\nSH-HSmrjmBw\nc1K32XLhn1M\nIrU4ze3VfD8\np9kL3O1TuMQ\n_q1BSBGTR2M\njWP3sgGz2F8\nJOXYV6UN3S0\n8knM2DiWkUk\nuPcTCWfQbzQ\npgDUFZ9TfPc\nkC1Q45BQbY4\n6Nb7rSggCns\n1Zwl6vfqjNQ\nSV8jbzudYJ8\ndDGMTl1Ya78\nt-lIuwPGT9w\neMgfTq1Z2n8\n4KICpbB5YQY\n0vcXvLUt1E4\nHxc048RM18U\n8M1kdeDluRE\nFllAsMCrdJE\nXfeN42X2UHk\nPS2CC6WdNMk\n9QHYm5IVhHI\nVCDY6MTuU6Y\nSNXqtm-WAh0\n-05NPfkubKo\nJrPRGahKOoI\nVfos_yqayxw\nz3t0ltbfMJ8\nXFHh8V9eIaU\ngSpHZ8Kuh4o\nufhTl0M3rn4\nY8ML1TO5-JY\nehyYdjaZnoA\nlxl55rsNihE\nZ4nVqjAr_n8\nABrBbozUYaI\n8oZJuop-N_g\n3YGQ4oen7gM\nwMAAK7i1ib0\nQjJO-cEmxWg\np8zwrVyJHxw\nbp4HJ3JRxag\nCKtSDzT-SOo\nmkSxYpK4ALw\n4Q0eWJZIev0\nSBW3d6oYdkU\nS5fwxvrutg8\nq5ZwRphkFuc\nJq0iZ5okXgU\nIwOoajZyRZU\n8Chr00fm6AM\njk1IJ5ggyQs\nsG41m7hVl9E\nkzh2pWa1lzk\n0Ij2veeSsE4\nMkiewChfW9k\n90EupUjxPIM\nedjnSDwMFXQ\n5dlDHt93ng8\n2onL0hkBVJc\nFOeyhFQK19c\n01Im5dacdqE\nOjmXuqNMrDY\nqG0W2UhUKRc\nRdl0ApAeczQ\nq5_LSGwd19k\nz3H-ozBnwQ4\nmEmmWa3xK8k\ngyRxos8xOyM\nwMa7Xd9GuUo\nR_qiBsGsQfI\nO-Odu2P8X1M\n9isn7V7c2gg\n0K-qOSq4vz0\nmt6D8QQ-nIY\nD97vMpPHzDg\nMviysUwcItA\nQw9ltquDJRs\nRuZhnKanGQ4\nh0aovIIojck\n-bYLI4I8vkI\n54CMOjYbovs\nZQfZtwole3U\ngjODxXACjnc\nM2AUEpmLf68\nLLeKCWFnlW0\n2bdQKmp6hc0\nTU_iltXEntg\nTyo-f87JA38\nx7yAcIuyOb4\ngQNFCRom7c0\nBX-hxkRsaT4\n_4DRXSdPuCo\nQyeYgwO4ADg\nmbTKo5Ylypw\noZlQMLXqw0g\ndyXlsD7Gx0Y\n7hacgmRbdMM\npxSjP6JkAis\nHxtm9DG4k4o\nBtL6iIh95ag\nMD9AvOexMWY\nMI0ZlakXWFM\naCqeaDIGLD4\n4QCMLXFfJyY\nUUSLRRjc57o\nvVaBlzQzmjQ\nxKrzCRKABjY\nfuyK26nKaPw\n6FtMdJEg2ak\nziue9g2nXZ0\nca3ejioEyiE\neMru-ZnAzUk\nh1wWMu4nyRE\nFYUDzpVRYio\n3rlz8tdE5Mg\nyjQqsPi138w\nekakyXFzHwM\nADy7gUvipWw\nRWm6781MWb8\nTR6tZ5CKRVg\nrVQAt6GkMgk\nRZvJ5MoPjGs\np6SMuW5b91o\niKQIxiobVGM\nNOe3intBN0w\njQVO3AWAgHU\n0H3xMXZWU78\np0Iwafu7J4Q\nbCAXuyqUJzs\nylzTTNLGlD4\nIFVWE5XHflo\nI6JIv4ht8OU\n4qdHRWWX2gM\nBcRrXppXfEU\nlBIi9tKMz2g\n0EXwWYHzUNM\nFb3LibJlRdM\nmClqKZl0KEs\n5K-YqPyi3BA\nXRKrwa_--2U\ncSOwRJe9hSs\niv8bdd2-Y0w\nvk3s_WgZl1M\n7x43p4KHLLI\noHAtHxDF6DQ\ntrKur9bR2aE\nhxwuvmJyM8s\nRbI_bPsWnmQ\nW8tB9ZTiPpw\nU-FFwUkA2QU\nEpzearSkgOM\nzFIHYJAp2rc\n60V3JFUPvIE\n1kNZdy-IxNQ\n_BjawJWZIxo\n3uUUeNqdMMU\nf4gmgTebHog\nOzliqFzK36E\n6j-vjtJ7PRI\nc_6SIVs_M5Q\n2cJGGVlQ8X8\nVMLlpJdCYG0\nVIlnM_wcw0w\na5AnZBVyCCw\n1psPf8n2AKo\nOg1Ptc7w7GI\nzJ08DhVEAiI\ngkStl7MVRnU\nvyVGOQCHbTA\naBMH3MEYNIg\nOOfMTt2XfWU\nW6Y6riI56Dg\nYb9EnN_gvu0\n1dcHIATBkS0\ntjpRBPJGPjY\ncvvBpQoiZpg\ncPBHxDtI3Ok\nfF8O4drwH-I\nNtn3ksJwDpk\n-rMac-9Z66w\n2U2zhXAXdhQ\nwbwXHxqxDwc\n_RWkRZDPnao\nNvvU_4PsiKo\nVAaeEoQq6jY\n6EfYYxmfABk\nyq571gv49HQ\n86sXLVakflE\nraM63LAHuwo\ncEezHIqQrEw\nh1aJoWg4vGo\nt5zrRGTShZA\nTXRHf6Hzg0g\nkYlPBN4yMe0\nd3HAOZbAj1Q\n5vY-zNTuq8E\nieVPPV5S0Ps\nDU1C6QrVmuU\nfLFf012Auvc\nEur_GSTH4oA\nWKoY2kS1UNo\nS5EWvpoWIBk\nfXElquKFrMo\neBx_WJQ25Ec\nhG2yx-PTxys\nEi9RooSCn14\nA6b9rDbdOzI\nhgGi1ODlBBo\nqLoufJLKN6Q\ndzzijuZof1w\nibAU8weiUOI\nd_A4tfEukp4\nBf6FD5UbSns\nRgubwsCVg1o\ndw95Qsj59NA\n_92v2IFT7WE\n68SlAT125f8\nwfAfwKUkfHU\n5V-C6ziFKMA\nH4d8EcquSUM\no-6E3Hd2OW0\nBbbXgjwlOpI\nA6oAEu3DbKk\nTc7e-4kbDto\nnBZ39gX_FlU\nxuhl1rceZdE\n8wY9r2cpbxQ\npadXZANlFwE\nD8Cra7i2kGc\nK3dG3JrXAJc\nCfsveeSvZNw\ndK2oGZK490w\n6_yYxTkdIk8\nV2RKM83CQ_A\nY9OrRbeB-rU\nERlyrvQbqP8\ndEqrnOk8P1Q\nEDq1QNZ_JJo\n5dE-JjnKznQ\njpTj6qTyIwY\nqKT2-0WUbGY\na1ewWPS5ULg\n8I1qHr1kjF8\ntbu7lOVTric\nXQO-ftv4ePQ\n81ZejwnzklY\n4A-T8umqRYE\neTGHFj1kdsI\nhca09uawN_8\nEpzv2FLSjhk\nfthLa-kq3WI\n-V7_zk4wpQs\nzpCCg4DtXCU\nbc4_fCULOKk\njdYgR4Vqwuw\ns1-5EZM82lM\nGGVL7N6Wz8I\nXkYj78aDy2I\n_txmRGsX5ss\nXjYQd3hE6xI\nteoyewW1bUY\nN9EnEuH0Tgo\nOSkFsRL177o\n1CXkATQLZGk\nImO-q-hTdAc\neRITzdlHJXA\n2b-ip6hZYgE\nRU2IP_oUqyc\ny2_oXPF2b3Y\nhuxXgcGvTPk\ngrpGRWYL6mQ\npPcxCk8YBVs\nGeLDjQIIkdI\nUCCkKfTVEy4\nkFbDy90VZQY\nAkjImI2Qpew\nWv07oUFHGRQ\nf4LEgmt0roE\nry9yNbMVeMQ\ns1QgQny2o5E\n9ltpGvaDfBM\nI5RKRQcsDKU\nVV26lYf6VyM\nprAOME_9oP8\nCDQw1Ez9yOs\n1C84oQva04A\nwpxS1xSxUDY\nh0i2KfT2SB0\nCdppQAIYPzY\nKccpJ0xD-7E\nP4KHpL7ZHlA\ng1axUa-NsEE\nKxyzb-o56QQ\nAqAm2IAg5Fw\n9Q2UjqahNSw\nm8KBXUCttEw\nWQXNChLdnvI\nwVC_xkrm6kU\nd5n-bZf3eVE\nYZ8k016_bvc\n1tryt4ddnWw\n-Kv4O5dyrzM\nKmuxPl7RkK4\n5N86yJbOjYM\nC-NaBwskUp8\n-4Qk4eACpXI\nnf1DA90KAIY\nU87C_o3_qOo\nN-dpQITO2fo\n4q5rmjaO9Cw\nkAFxKPtwYuU\njjpQORCD0ZU\nGH-oJGZKmq8\n-mlfefNP8cw\nc4X58OjlVPo\nMIZSWO65BXQ\nrrMvGHoW7aw\nmFH_r2w28rM\n6CBfg5X9Z3Y\ncT1iUwGGUAg\n84UF11bJDFY\n6UNDrO9PrzE\nTjMQwe-R_5Y\nO_CorWKpGvU\nCbPAADCg6ns\n6iOxj7Lgn4I\n3FeBwyb5g0U\nMJ9QAW4LUEY\nx2jLrsMN6YY\nvhv17audEAo\nNFgP1bVZCy4\ncVGZCFgH-Dg\nANXSdv-KaCQ\ngSZ82TOHWc0\nXIPjMKd3-1U\nZyHoPZAsm60\nPbC7alhpFBE\nVvfIdmaKwfQ\nXBCML9xJI8I\nYDeGYXbeQV8\nHwaqZA54GTk\nHOY92xiGY2M\nM3DlQK8xFBQ\nmbl4cWCn6z4\nh36L-NdLDhI\nPzUxcPh1zPI\nkVQN0ZDzIqU\nBxvRz4RftFY\neaFX0rKv2Fc\n2haHRRfKLJ0\nx2EI9M1XFOA\nVqYLWPoXeuc\nVXkEBRtERnA\nrxno2wz0eKc\nJvG1hHsOFUA\nBi8Spey13uY\nkbGvnI1qIz8\niMPV0eFLxbQ\nk01VcZkKDME\nVXPxIwL1e5g\nZQ0JJpvMq-g\nZH81ElJu-Jw\nlLbWBsRVUAU\ntXrxBy-CDPc\ndAoRRTPPIys\n84gYIl6Zjks\nkD0zHgK3BJ8\nSqSZ5RSaT8k\nvw44oj_STSw\nUkIwAAKv_iA\nan8Z9J29zWo\nS-Io377-jmE\nXYD3ysriZ3k\nrcWb_qea8Eo\nW2QDEiF7SGU\n1DSkJxktHFY\n0pPOxAQwRgQ\ni_3ktf3XwNU\ni4l0vA9bzaw\nz1e_c3E9ZR4\nKuLvoPT5PQM\nsWCjRo30-Ls\nst8QRZbJdPY\n7oqRCOYvOS4\nSJ1_epc6q2E\nkd01w5eLVwo\nrA6AZeHyw8Q\nRVu3EPJ4-jA\nBANrqTBnEy4\n3TzAJdCNpZw\nlZltw3ubrGo\nKusz_-SyLfE\nXa36SdTlCZE\nlGVU-OuhTlw\nP2qz2B9snxE\n-ZTTZtzzbmI\nxxxnlkTZlCk\ndDqhjzd8wXk\nE7CPLxlfKaw\nQQe-fCLVBVU\nFgIgeE7C6bU\nDdj5oGNtezI\nSAQN4EyLqZk\nffxg6IB27GM\nMVZn5gTph6M\nfuXPZqYtnjo\n_-GaobqA1LE\nh7i8GGtWf_E\nXB2CUyVSAq0\ngj2Y2uEcubE\naDJgv1iARPg\nXP0SZTwlmMk\n74Od5-Fmf60\ng4FOpeshqA8\noeW9lZBY-VM\neq3vD93GgLs\nMvkN3003iU4\nxGeYzlEV5KY\nJdZHXwqDXB4\njBotZTDEcP8\nA8nTO1XWlME\nf_8dti9p0f0\nB0sO3FekHUU\nEx-eX7zpZno\nQGRAdMGb5tw\n0i1ihIW8eCY\nslDxIGhBuIE\nmEv2dXzZTV0\nh9HV76Jl2WE\n4TBnG3RuU88\nTanjysfo1SE\na4OWkIrQUJw\nSM2LxRKqYR8\ndYafG2EuZjs\nrKwnRWbuCx4\nYtWJKXNMmhI\njt2BPBAWiEQ\nj_z70ZaqWUE\nQPbUj6Ks8j4\nNpzigSg-YkI\n3S5E22b49-Q\n12KcnPMV3OM\nFBpzRIzISeY\n_4juqo20ABE\nOosAKayGMj4\nUBmxdy6C4JI\nnToATRUkpMI\nti3HSBmEoVU\no1RMSG4bnrg\nNjfviAKKVj4\nFkEU_g5u_1c\n8jyiXMPl6EU\nqyXpj-yVjVg\nL3aF2hwu8yE\nrjLuhEOhj-I\nh5WL8to9Gq8\nccJ95yYf3Ms\ndYaOu80atDo\nw5WmCh-cRCA\nuqA0WkLSyKI\nh4XKQMfI3B0\nOyUea4_exRU\nPIfFHypWnf4\nZJDgkjbsitw\nNIMWmy-1l4Y\nTFDiCTUAJuE\nFEiK98h1IDc\nXeasXb98akc\nNulXXh0cw4c\nkoWhZSL1Kwo\nXuNDB-xL6uc\njiHXahhmzjw\nP2rpcVDPZEY\nrxC2ZWU4IPo\nPdgSo4Ts7D4\nnqF0yFLjiXs\nhEZcqWRB2iU\nbLqJo78X3OI\nPLr1f84fj8U\ntEWLG9sG1VM\nmUVup2pr_eM\nBDZK9B4Gu6g\nbe9FJeol_aQ\nsLKnt2jBax4\nBL312TpdPQQ\n0dC7aMWCULU\nGn7MHo0ZZg8\nTg_Z2u4GShE\nrp07bmYWtog\nBxne2K4K5GM\n6fJ9PDZDS1M\nTfGXctZRcLg\nppaA4P4tr88\nl3acfaQKSnk\n6VeUp8hdqj0\nBOKbcDdlAAc\nCnyvrkabX5U\ndHaZflS9Qag\nT6ji12DwRQk\n2CY78EjBHIY\nuV-0kDRYYbU\ncNuHBU3DIAk\ndbGKS4GQbv4\n3WAg9OI2wn8\nklnVwzouc_k\nwKPbi9oL5xU\n4_p4EAmMa-M\n8oq28m4uqe8\noLJ7246t3-c\nFdq_l2-C1wg\nfi7cppyGPPw\n2AoKTalyiUA\nukOx2hZvXkE\nrefu69Hu5R0\nGbvml-bH5Uc\nxqb_BP27cMo\nBcdz003oBg8\n8qWfNcUZoW8\nJu6_z5Wx9iY\nlwB834Vz_tA\nwrRy2TR4WtM\n5i-LMWpJ_E0\nbf0eKlTbGtI\nESv_Pi8qlE0\nO4TI2Nx8RjQ\nLxKahh3H-3U\nAi5tZ8_dQUU\nqItvl5cX4-A\nZLhyjNnrb6s\njFQAy28o7Kc\n_XST7hft6k8\n2MxnokvI6c0\nZlqovh9U5v0\nYtktNetGOKU\nQ3n3k6XRQ8s\nCj80JkVCCpg\nbIfMAhK7Boo\na46m8g3grB8\nKUMoWS98jXM\nR6nZpcweYXw\n1Dvx_8APGEo\nebHQ50ZRvM4\n6T_01swH-OY\nIH8u5eKHNhs\nxm2ztDqbbZE\nieoN6CC-9ns\nb2jnKIitsx8\n6JIxbckE6MU\ntcgo6nFJXmc\nAt_y4RGfW4g\n0W_kwmGYIS0\n1Y11eIVNgQA\nmBAPx0F4e4k\nJkC83ugjyNw\nOppcXf2Vp6g\n-45cXUSpOw8\ntxQcaXvbRB8\nXh8fDMTvNew\ntvxi9MyoiGE\nVAb8s41LLCs\nWOSAa_l3azw\n9y7hXwrVgpY\nim_-maHhOew\n_EPtenKdrDc\n-GThoBQbPjI\nctDyR3Nosis\nOUztRf_TSHE\nVBahsJrr01E\nsjZ5I8l32CI\nPt6VzQ_0k_I\nQhZbpE7mdoU\nDVR6p7Iopec\nIvAjNuhubIM\nG6f0w5BRasw\n5bWanpZTnSQ\n0pRYoClF9w4\n5WT1QRZ2z6A\nE-wr7dD1n5w\n8INjmc-WWSY\nFoiZPbPUnlc\nCWwcW-iuP6c\nFKeJtRtug4Q\nlPFulJcbm0c\n8jIPR2QUl_k\nCXOjc3b_FZ8\nhY6HUmWzaO8\nrjc3Et5D-2w\nLNPf_P9svHQ\npFXW-7VNngk\nNBY0l7A2uLA\n1zi4R4EklsI\nQIIE8CobvEU\nQP3Pzr7UFE4\nLbCGyHkR0ko\nSVQDD7TK-qA\ndf2QdWqKC6Q\nX6keMEfkZok\nmCsu9hGvNEc\nqjl77Gp88RM\nxerkgvDm4Ig\nLRGzyb7-EeA\nVeGtHpQzC6I\nRPXI3xQ2aus\naaaPoObIxrM\nueC2ZLsV5DI\ndmfgNHfdn8U\n8_2tkIqD3Io\npQZkA0jRiKo\nrgd8TC1Q09g\nxXi-6s-qrQM\nr8swYmKUGJ0\n_Vyg1SVaZu4\nF55uFHs0d-o\noP07gJASrGg\ngSsaIqwGR1E\nYxQJTlFyebM\ncNMRDmf3000\nNLfY3XAZ6c0\nPpxLYsi1Yk4\nBQl4CNHsgvc\nZMlGZcr95To\nk7_V-3ApEiM\ndry7kY2BMlk\nN_ooI6Wa0H0\nfC1zzL9DjdU\nNY9q_Vfbi5Q\nwTGRsKLqkGM\nsGLXpKnQfSs\nuuTeJ6tbyB4\ni_uA0oZ3xnI\nKsYil1zPabA\n_AYtVmu9BkM\nqXKeIDlP-ys\nYaUe_zBgQ9I\nq_v3jNjwHNQ\nmR0c0i1bCCM\nzuqEfWjAAEM\nxlAwSNbAY8E\ngHluHS9kX5A\n5NuvfSWbggc\ntqTDKWhqvn4\nCQ0Bt9PxosE\nuKtbfkmIT-A\nqPVePtS52Gc\n8_4rJG5TmBg\nN7CWWZi58bI\nx_-G1IuNv-o\npfPBf3mKwFc\nTDsPAXyCA9A\n3R7OdK-F91c\nRIzrkbF1-SU\n9LqrBRqFxmk\nHwZeiTzih4Y\n1_CfcecGCVA\nbwj9ig-venA\ndhNjb67EpIU\nwIC34lZi_NU\nRN-F41EZQK0\n8tdYFT9BIuE\nFNX19RFNdGk\nDlkXnN0cENI\nGcgIg6HEB7E\nguEyoPzTkQw\nlHgEqIvG14k\nmjbU4wy8VwE\nt5nPC50ST0A\nJey2YsDSyoI\nQqmSUjxUg1M\nEYHLDJuEUoc\nt-t8eVDckH8\nbn_Df5UNy3s\nXeGGNf_-nYM\njMvR4K4QICQ\ni6oNzS6kCR8\ncjy-8dXBljk\n0ACTvENkyD8\nfUKoBAi7qCg\nvF-tPvPAqhQ\nrpy7vhvX8jw\n9n23ISvkbFQ\n4NGNbrLnvhA\n6rGBqovePfY\nDHnwNo7Z6Ts\n_r6i8Ae0cvo\nY0uLpcThaeU\nsqZ6ZrVIemM\nDEcY6WXL6_Y\nvwbryjr2BKg\nG9D_0pXaM68\nzjm_GqK-Kmo\nBW1kpbOz5Eo\nrx4sKoITt-Q\niz3ETniN1NI\nm4SWkyqSFxM\nFZlm1ledK-I\nElBy0fKa9Ic\n9tli2kwH5mY\nT3zIklxWw44\n0CYdSfhwWVY\nIS-TH-YQbL8\ngpLzES4A7zY\nic7g820jOqI\nnzglM3ROd_8\nbp0aVPeUCrY\n6FxHQNSukfM\ndTQORe5M1tY\nH85jp6COWak\nLFg8eGuhlak\nu6YtIOaN264\nT4v_27FwSbc\nd6N8yKrG2Ps\nDBooQQKsDac\nczLSpZb6aWo\nL6Z80A-avdA\nIJe-gy5sR6I\nAapjOgixmfQ\n5GZbCRzKoTQ\nc5ZISrFKFP0\nHHc1myygH_A\ngS5vt3ZE-jI\nzha1tYGnAC8\n9j3KAnX0Nhk\nqe8IY41zyCc\nNpoB6-TCGWw\nuSZi8oPRUkE\n5jv7TlhbjAQ\nuEMTQYe1ro0\nHj9q4NlwcXo\n7ZUVMim8ebM\nYdcWFWm4n6g\nv2qDlGbaqSQ\nq6j_0vS_NNM\nNWvUNDAsYqE\nSUKdlcCiE60\nECirl_sSf-M\nmM5dRMY2u28\naiJtAU0V_60\nUkH65BsZg_g\nOui5yj3OvxQ\nfQEGMNLTYPs\nAZ0AsuZu4ds\njPH8I5QWFUU\nS9EIFSWUoOc\n35FF7e1-zCg\naVHgGXnna94\nok6H1OFTmyA\nd5Pc-tNsvT4\nVx3I6XjqCho\nUDq-H6B36g8\n2LhsuPLvtFk\no9dLO77OSao\nTyS98_jQIA0\njRSw_0zpNE8\nSfMSiaxLslA\nptJ8x9AERwA\nlbqDuUjm4aU\n9_yf1HCH5CY\nALfuWSv9YVc\n4HB9b-ttI3I\ndi3Xh95aXp8\nWfCufFRo-hU\nTSCcj7mYuhc\nv757jrOBkng\nFRhbIIkLlFI\n3l3rJxuxpDo\nEsTniU7j_yw\n8YUnOHihAU0\noqQGFh5yiWE\nIYfuTlTiixA\nFQLXXM-nktc\nnepc-GLWtfc\nFYDEheLGrKw\nvYtc_bS47oM\nxjdKPS6-8XU\n21b9Nr4VIcI\nIL-_pNnEuk8\nwjVPv5aO_no\n2GM0LKQ-ml0\nPb1N5TcA5to\nSLC0omm3N98\nFS3hFDdeX30\n9smHLhj75CU\nh7NG9ZEfyKo\ntRx8N7mJU9g\nt-5usV6m4J4\nsWCQm58jJsk\nik-n-L9UNTY\n0xHe1zkABYo\nOvyfd29a1ik\ncWiljyh4NR4\nno7XR7s8Z7o\nMmtvzIGaH1I\nGrCmVFX9tyQ\nx-_17t-v9dA\n_4EkJkuiwIg\nOPuOk309lSE\n9tHwS5Ymvag\nWsaXEsBV6b4\nrz2FxTVVJi4\ne5cg1EeFISo\nm8lzyaMZ-mA\nsbIfW_Pf9vk\nFN3SPnr9EZg\nEom_iOkd0-I\ngA3wJRuClks\nv8UDjwdqzKY\nV32SkmBB1KU\ncBFrfA6TrB0\niga0_T5B8dU\nSXVUCgoOcfs\nV-mlZvBRoOQ\nVZM1S9VcjAM\nzeV1-Ito9HM\ngQ5KDSBMFRU\nKm2lbJKGAqA\ntkWWtYRbnq8\nGo55LztXeQA\nq5RSKejDWo8\nxcc3vzgR9QQ\ns3mwDA8sv8I\nDV5EHuaa23c\ntD9DfbbK6OE\nw-6lVMklaKY\nQqQYNj15OfI\nrNP5uIQxAfY\nulALOA2LeNw\nAH4E6mdxZDw\ncsRJ-T2LNI0\n4pUi3hbXF2c\n5Abq-DZrjB0\n8ilbyubEDhM\nogW6YDmEb1M\nk60eGmxn7Rk\nCW2M1ZyYArk\nf5RQrcIrlBA\nkGQbCYm2kx4\nd9TdwetEIQ8\n79WfcpXDbg4\nEqFFgltjVbg\nBleQjp9zglY\nt2NytKIhd68\n5A98txE5nno\nPiMWCFay_sE\nTd_5-DJdFQM\n8j4k-10bZC0\n5qKySTAWpiY\n8Cyv7f65bbY\nPXMASW5YQl8\nC-FH-TOuFpQ\nJyEYiaZW3Ok\nTSclZRaacyA\nejD-W0F0hr8\n8p6L3Vl8ezA\n2hcGeToc17I\n5Ackdv3pgmU\nUk1MJFwGMjI\nntnqp7-SG7k\n1AlMY9fDHu0\n7014C_6ABAg\n_RHrQlqoTTA\nvJv647j5Ig4\nhoKvbJSMShA\n_EpizUY_las\nUBOcWFBBB04\n8JhRzlsZPas\ndc8glsGbIus\njTz_VNAGqog\n8Wgkpfa5HMw\nS6iFW-HoFwc\nKAByPJJecxQ\n99IRJoGX238\nrZpeepxXh7I\n5_j3NrcDiS4\nKvfIsbhIQLA\nIC-u2-aQXS4\nxKaCxkf1Ccs\nS64LeYg3Tg4\nG629a_3MkkI\nN9v6VJLZ8_I\nuSMxnpecSZM\nmqhpZ30uNic\nRpt-fbpiTU8\nTtALqoM5hkY\nUbwxGgR-EAM\n8YQZMbgpmIo\nIXSNWvdkkic\nbubK4ybEy-Y\napJLTO5T430\nSUVN09kOsAo\n5AstACoPo9w\n0dGLAOaTgyw\nCOy16bTI_zE\nnTs76MbxqEM\nvwrWW26_JHY\nssS5S_E37G8\nY4XiKFvQ1rM\nttTyXqwsP0o\noqquLzHmH5k\nFSj-BCOlGPY\nz9OUZNicTGU\n2LX27W51kB0\nBFSjHBVx-xk\n3v-e25d34pY\nRfl2M8B9WA8\nfr93wwtiKQM\nGfBsuOuUdoI\nijjYDSqZOyA\nYXFkCH90yYQ\nnq33k1fFyK0\nNgLepPDh5tY\nDsSvkC4X4Ko\n2ZO0CFb3eys\nHdbL45I6VqM\nqiDGtIbWRVY\n2rJqM-hodGQ\nHrYK4U_a6y8\nWla8a89Vm8I\nn0Cg6MnUw20\nIZ-VZCROw_4\nKCg0cDrNQvo\nBjcu7KBoaNg\nbCD25qkPSwQ\nPt2wNC6SYnE\nYXzjSJDDRIc\nl_ZRivM0lSY\n1ccMqOW6LMs\nMQ1E_qYia9Q\nnCWBxPh4dGo\ndZb8CGMC1zA\nh6iHbAju1cI\nItHtrNSJwDo\nuta8BACjLNk\npikAt8prREE\n9C0B94fFZkQ\nh5D7aOzmDec\n7lL9YOO31Ig\nFu82oMZobYQ\nVZRUqjnEPSk\nfyl1lmsVuQU\nGcVogDQ4VBY\n0v4aJAsXjCA\n22hhTrBAFRA\nT-OmaEI2xrs\nW2gWVhYRyXI\nAC2swLcXfwQ\nw_e5kx3ONfs\nZpmCdIS3TKc\nn2YCseaZK0Q\nkZz5k_xsG0Q\nKnPfaGzmt4M\nv_lHiT6UVCE\naEfAFo99jEs\nalYZ8jQ5L3A\nmelCNhYmwII\n1y7cZSWu93k\nFtPj029E3Qk\nPZeVTlloWxw\n3SKk58UngIk\nlMXVWQCa_MY\nUfoHq1-vpss\n4k1Vx0equfE\n6zfXkQ5QkrE\n5ODDHpmqyWE\nwIb3cRvQYw8\nlHqGIe8AZ1g\nVRXkf4--IXw\nk6kWvjAJHh4\nMHyA5fJ18HA\nihJ8mtOVfmM\nPSjEQHBkcq4\nl0PUssYO5A8\n2WgBKaFO7wk\niCmT0IRM9Z0\nuJw5rPEUblc\nbuDmlhm8mKE\n3fotxrK_Spg\n5qWIaxikcbc\n92WjYrR0PEA\nZE5ddEN5Nbk\nUuuzF8Pyh0s\nk7oRzwLIgbo\n7OsEWB35fPE\niwZN1N7Denc\nnC2HOMOxdkY\nC2JaJ_FLYiM\n5AQC5oeDhDg\nLRc6Awco5aU\nN_3_HB0AfdY\nG3TWgClyD9E\n0GYwcr3RD_k\nvTTzWRdAN4M\n-7mzQx0ebqk\n0tq44zxA0Ao\nThdpcnGKsVY\nr8uOQupi1iQ\nlRpBlNgu8j4\nLpDRf3h6OHw\negrmjjy2Pgo\nZle2EnAj0Ms\nQCsjm6QI4WM\n088CLxgnr8w\nOliOEVSIsmY\nxqmqskVELNs\nbGXeYGkiQDo\n_4otc_6WtmQ\ndy3yjv2YLh0\ndbnWDDp4s1c\nwC2iSGzmdKI\n9PLm3XZsotA\nyIG_egCmhTw\n59rdzSTXs5c\noIyXMnHWjIE\nqNOk4yyxE38\nr8I0oejVPJI\nabBd7mEUNwA\n6PPNd2HqmoA\nQ85twbu-Vvk\nWFdOIU2jKpo\n1HfZYZ2sDwE\nx39ZG34sn28\ncRuYB2gXpM8\naUAVPdrvwoA\n6GhSM3Gu9VU\nl8MFxT9ILKY\nV25QF11MwDU\nKw6gubNxWQ4\nrAdvJOAGEmc\n2ZTrUc824oI\nzaHU1FW_RZk\n-QT_Af7RLjU\n0mmSi-63Y9U\nCh1DsDy-osI\n8QzFJA3QM7E\nn_ci8BbMilc\nxLLOmh2nxWQ\nN0gOaE92ogg\n2BQoPPpt_9o\nIMTJSKr7yJA\nltcp0jylvgQ\nFt-7riREEaA\nhJ6_nbGdWT0\n5-2eKvFCqw8\nDuYmyHWZqwE\nQRwiLuz2olI\nddVQoF2TvNQ\n7ktZEjwyFhQ\n4Cw7JHJuTt8\nlPrJqB8ljAE\n57eIYneEz7E\n_-4Xy6CjAbw\nCE8VRLW8Zw4\nuB6JMgU50J0\n-QZzReak2Ck\nBbHxQ77anjQ\n7XaThsXXj_M\nSs5HAL8j7p8\nUDhWyFDDrUg\n6xCIhFtDtx0\nTmTq2M6xgEs\nxkzlZGohQ_4\nih9NffWqWgM\nYejzV_nWN1M\nkaJbWpMZdwM\nI5ohJ4BBHzo\n3Iy44xwjtQA\n57u_LsqMoys\niP7_QcV9Q9s\nLyGXFcfRyAQ\nYRCIuvKg4tc\nra42YS4NRlY\n3XD34HIx-00\n-yyoLJuNIJU\n7ezYV1mOdh0\nENC7ueK93Ow\nWmFiW2CSiO4\nSLL5ziDWc6k\n-vBO8PStfEg\nmSsrdFBpuqU\nPI82pNmQodk\nP1EIIQ0tZUE\nfR8fl1fJftU\ngFDIKfe91mg\nUkF508FI9ws\noxml1eY8urE\nvlwrxfIiDBs\n0LQZpUHbjDM\nNpdj1jv8JKo\n9h6w198Yg_Q\n9vn3DZZHC4s\nxD1OPkq6-Vg\nMR8hXM7_6EQ\nCtux2wyz_W8\nheqpyT4kudQ\nxax--zcAdss\nzkX8cKUFOvk\noIymf1Bgmqg\nliDkvm3hMtw\n3_2F9m4Rvw4\n0_7vIOvdKqY\n3J0d3ZwHy-Y\nu3oi4L5tWQg\neFrS6uCoMsw\nSrNNEi50cl4\nUeV6eAtHp0M\nnM0h6QXTpHQ\nSzlHzRvw-MI\nY6jBV4wDoO4\nk8bJrJ7_LKI\nIywRc7bHziQ\nsp0O70Q5FAQ\nodNZhZSydNc\ntlJM0tgXu5Q\nGCc99Gh-IEM\nrMczYrlPwaw\nJWXgBi3HDac\n1UXl3LGnRR4\nyBd_y4V7vtc\nQf_EPkVA31c\ncTR9Hnxfk7A\nAxBkurGlhHg\nWRlIDIu2qpg\nDAPrbiJaej4\nW95X207kQxU\n1EcAcWe08NU\nQC0kTcAlf64\npLooDtjrhv8\nt1Wk3H5Xur0\nxGAAMQLb4ZE\nKzUKcXxbU4U\nTht98G49dos\n_ZLAt3zwEpQ\ncN2VCBTYgHI\nY4-vFWxvdjs\nHNajZgCe5Pg\nZk5K-Z2enGA\nVMhwOytHUsU\nzPWwORb6PW8\naVUhnzQmx_A\nfzRvMylDVi8\nSNwh7RP56S8\nUj6eiUsNwvU\nAnGVJ8Gv8aU\no6FUdj0_fGY\nvOoyaqLrZnE\n18Qa__JYKdc\naDvjCbdyEHw\nHKJOcRnkRQ4\n4DD8QRsms1s\neI1dAmDZrZE\nuX7CAoxBNOU\n5sNY4Rn7bYI\nfbR1gtlY7FM\nAnJm-acXQCo\n5c3tOFFEcU4\nNzJH4towI_A\nyvtb9A9ai9Q\nFWznyZ9Znuw\nzb5RJyrk4gc\nWnocz8UrhQw\nyunEcgw8va0\nHsRwyJw5o7k\nnA1lAszNSoI\nq6ObhNBURyY\nBS8I9H07wKw\ngfXns_cU8I8\n-v8l6cCrf0w\nm2aC-nkV1Zg\nrvqm61CcOLo\ni31XFSORRfc\n5lPGiKG9VI8\ndfWdmxCHwfc\n9Eont_yEGZs\nBr9zd0KkFTU\ngzPiBOc_Nfs\nJo1OjI4Yfv8\nhwTf9WurF4U\nIXmWL4J2wwI\n5kQCpsPnnew\nu_z2ttNkL24\n3yjYPrkMGdk\nfiP6h4VL-wE\nnhDX2exjhGU\nEMbzESGsxoY\n-u0yhzYlhFA\n83Ax_EIMDVk\nKMr9bWPy7u8\nZdmU6mM0Gog\ny3L-a3R9OQE\nLZD-86lIgYg\nrnkIsbFHoB4\nxhgWGU6cQ00\nfq5JFon-LOs\nos7KKfG3QE0\nxkMijsfMZBU\n1jK2Y8vAM1A\naf1gSplQfPU\nJU_Vqys3Kp4\nx2K8I28zejw\nJaMejPOFVCc\nKPOx5tioLeY\nJjfbxBMmXTI\nPhRyzmcEOVA\nGHZSYBkKec4\ngNbqn47rt3M\nSOwJJPZKIys\nwZl5uWOpepU\nwKiW5OYjels\nrezZBgaJGoM\n--QCZKgJt6o\nhQmDmh3qA6s\nQggV4W5BTkM\nuTIfsQ15LPM\nS0wF9tshsyk\nI8_tVvzJ1xg\nqtRfpAJHi3U\ne9nVeZ8UE5M\nGY0btkKshOo\nGJVYWd_3tzU\noq0Aj9JsmMQ\n07I2_etOYhM\n9Pn6NgaX8I0\nyzwheD19-PQ\nR5a3sZiNuu4\nBiuCpXg_jgU\n-7Sow81yi24\nAYQjmj7cSM0\noDcNKpBgd_0\nUy-L94Tio9w\ns4esaE679Wg\nE7i4pNsqnls\nJhMWopjJiI8\nwHqQzF4JXdE\n16op1FeUX1A\nrRuulhJ2ARQ\nnLMkSN2F2xs\nzS41k2xmQUI\nOcS7veELZ0c\nlPYFkRoFM-A\nYke_Lkmm5Bc\nV4rzoRzqmyc\nkzxSZ5zCfXs\nkbb1MUQmusU\nhjyWtmbAyco\nFxcIBbXalVg\nDJZqFXSHyvc\nd_hNjBBdcyU\n5Y7gOcsg0Xk\nCScFydObPJA\nzSw2bGgrIQQ\ntpsGUGc8Ri8\nLwSsrFFa2Wc\nQN8ln3Hx1mc\nBwpvq4JhqY4\nD-gTnaF9LVA\n0o9Fm3hnpYQ\nAgNH9Ktkrqk\nqYCEXS6Ws_c\nO4TmwflckcU\njvBp6TqoHWw\n_LzgxVd1wF8\nPM8-Hmfy6OU\n5UnmqCr95HI\nHl1iN3hP-60\nXndQbcPIsI8\nmuMv1K99l64\n6xYx1k3O8X8\nqIAWFde0FO0\nAoWXSOx502Q\nlJjxm4xTVKk\nXLqh2vpx6BI\nlYCq6x3AHYw\nJvclIUy-JlA\nHPGSDBjsSWI\nrLZ5aVNxV84\nv5nIRiA5W-E\nGl5GVViqvjo\nGAozArqKtGQ\nRbsNzYdNM5I\nHR2-PHuh3W8\n6_u456zQtkY\nj8cGENcePl0\n-u1uwI5qJ74\na2qE4hG9XCk\nQvfcWxGZv9M\ngJvoeKHjuvE\nzgrvS0PJDrA\nV-9fQTUix6I\nuCsRqsNpF60\noGV14YsOvWo\nagrpQQWiX48\n5m9Bf48pWc0\nBWT3i-fgw0s\nG2ngOQwMMek\ne96_1NxL9no\nYHirkSmJcEU\nHGrPKwsAvqE\nVD8UttNfU60\nuhBhYnRrOg4\n8fzGR29bKjY\nkn5Sc8o9YTM\n1mLEN1SN9Eo\nbSm3d9ftiJA\ngFocZQa78ho\nkr2k20G3hCc\nOXUmjMKCR_c\naKtrjeCFCAg\n95fAKnIgqmM\nhkEXnpQ_c5I\nbqwH3cQUlNA\nbDcFILIfHU4\nsX8SScsA8TM\nbsoa3DBmelk\ntwdd-yhC2vw\nmkIwuziqr0k\n19h6CYFMUBU\n20Q3Qa51MUs\n2BbpnPOIKIM\ntBVoGbg2ocA\nvtu0TbT35UY\naWUJI1UPuHs\n1EJYZ1IlTF8\nPX3By_Y0jTA\nAx83IEcbUwU\nS0ymo6QHMc0\n4sOjksh8vX8\nnD6DMtXc3mY\nlfObLA5H4Rg\nyuQW4F1siis\nECDKjStq8Eg\nxI4s1uyYIX4\nm0DbfOnOBQo\nKKsVK5R9q80\nvUrgn1Vm86I\nZ0FKMJQR9RU\nlP8EYYjPEmc\nEpCLoqVPwqw\n9KkV_swvE2Q\n_I_F4a-oUyA\nh0qniQTX3r8\nQnX-Xgbi37I\nnQeov6j0bsQ\ne3BZn-XJ4mU\nmRwKWTGCd7Y\nnwt-V8xfwkQ\nSwjKQrYpe-g\np9XIPtizl3s\nPve6cemkiDg\nKaLpXs1SDWo\n1xXjjahIwr8\n1mqubJrf6KA\ntaL06OVt4kQ\nGa9WsLD5LV4\npmuDcYB17E0\njTnDuMlebNU\nPENNRVb6OBM\nTSxB1wKzjhE\nB9pucpn_NOE\nKbOr1buhh-Y\naYTP2-S8fxk\ngOw5myC1PBI\niypUHnZ-9TM\nZuCKjnYIRYQ\nCzugC2PxerE\nL-5U2tIfxAg\njvh9Kw3NbMs\nm83iX-zbiGU\niI5M8zwvki0\n0y-Y83y4kKo\nGrWc2UKDo-s\nYOlt7yp_QIs\nZhAeutRIUzI\ntJPokP3FVl8\nCBbH4CVp1S0\nv5llnbqhLZM\ntb9kVTItw3I\nqPkKjKAyJ8I\nWYi4Bp1hmC0\ntnwarNcu3fc\n3kNqc5Hrh0M\nuHuDwL4XEUE\ntuXSqMrfVW8\nUC6sKTqfgg8\n-QfKnft9uWY\nAutuCkT54KI\nkhK3EggW2DY\nSeYgMYijdz4\nn59mG9_X35Q\nKLkD0H3K5Zk\nRf82VHBcoYY\naBxlJkcHDSM\nv9pZdy4lZ7U\npxQNKJWZ-t0\nYV-vi9NuyTw\nRcC6K2k6cwk\nIQWtTLEslg8\nTeSzBaedb2Y\ngW7ozVNSL8k\nqHisKG66fLI\ns8cVCsIcGAE\nUFFWH8N9SLk\ne0HzBST_794\nKQlR_8YkRKg\nZYaLloEakCg\n5hocAgn07-U\n2QKuy-mlQfI\nwJzWgX63LRs\nAaj_WEYZJN0\nXuLHSjIXpJk\npa1ZFxgQmUY\nDNpBEvHATIs\nXhwgtlCns34\nBFaqEfhGj4Y\n0NUDP-gxGyM\nZXyLYqWUffA\niA_KZwlnrcI\neBVqcDJbl5A\n1DTrvZ3wxy0\nN_c0y8BcKBU\nwdVtcHMYAM4\nl6TGERgrXmA\nu-z5139CW1I\ndVzFy-4c-AY\nDlJKjlgWFu0\nNS8z60XHJdk\nYC0tFqipqpI\nYM4Of8J6gLE\nWZrXR5HAEVw\nRjyCXfloRJk\nrl6soHoCV8k\n-08xWZTUbNI\no0HHjpIa8fw\nK3VNZOc_Wo4\nGjhHy-kMAw8\nRsd5rA1MJSw\nY9H1jFdPzD8\ngLzsj4U96oM\ngv0zKrCQscA\nJNkxfdR9dXk\nY3NbUilKutU\nSplRDi4FOfs\nQS-7heS_70c\naBxruaQibgE\noYuI54XUXkg\nGKAPU5e7miY\nkbS0Wkxr49I\nglrsnwHe_ng\n9glAGvMjZiw\n1X2YeXs8FE4\nTctmuish8xI\nMhCI7MtnO3w\n2oLedbPVWzY\ntfiIjZGirC8\nQ93k0-I6RC4\n_ODUt36beOo\nzYZIHnjnGSQ\nYKYtIhbcyuo\nbCZVLjurkyY\nphwcul7F-Ro\nO_rneC4S2G0\n-ryd97UQcrI\nIyFhDTUhX80\nU3ua5aIvPNg\nkUMB4-8MTio\nzdHVp6JC0mQ\nwQFjbrojx4I\nuuWIaDATbnE\niGVsptoMsKE\nxAkmG6uqBd4\npHrp2OM19t4\n8xZ0jOhAHMk\nHlyzLOPYuKc\nFKW1h53hSxs\nz-fCbA2aAyg\nMwcXLL103vE\n1Qd2hicvxBc\nHyY-bOuj9SY\nOBErTpjVCQQ\nqV0h46fpZeA\n5Qfba1tSw4k\nzYeRo6OtrYU\ntDzuDRGP0z8\n0E1TIcc29vw\nPkqrMMqSNaA\nv7r2OuigZoQ\nitIt0nSWDGI\n4cH4xyezQv8\ni9OLZ8rhtlk\nzEGnL7wKzXE\n60QyvomMug0\nGZACBCZQFt8\nZLIY6uk1pxI\nAcOMZUiVuJM\nqK-5zQpICPw\nMFbZe0ZJn04\nP785O3-r7A8\nsOmJgmCvISY\n5N8eh_84W4w\nrCLzT9M7rCE\nWefEB2u3fwI\nMsHusoTYzTA\naBFi3S-t9R8\nfS4vBoC4Di0\nnXqveIQdCvE\nkgYskjeMVOA\nmj04qm_DEp8\nkv9QW8UYCDE\nxfdye3eXF8s\n"
  },
  {
    "path": "data/metadata/youtube-dl-dump/2018.csv",
    "content": "9YyC1Uq84v8\nelmk8Hsbw_0\nmkbZvLfg2Yg\nefkuXTpfxhc\nXsHBLhORcls\nlSmcbUFG-W4\nv4np7L0aJd0\nBo8mRH33NCw\nxPI7JdEPCP8\ns55ay3OA1vE\nQsY1JHFo9c0\nEaizaMokSqI\nurNeTIDRg6A\nKhOfO0lI9-E\nEHqhCxcRkwc\neEt5ebZFVWE\nWka1m7CSEro\nnFpK9Si2uUc\nL5Ub_8HT6HE\ntiu9_CUkGn0\npFmo1haIgtA\nPwBs-mLkZyo\n8bZMd3JUu0c\n2WZkIK0cbLc\nrJ6wWIo3hFA\nubwNf0oYYZI\nYlHQAbd3Pvc\nEqiDQxAatPQ\n0QNpXi4k5eU\nvJi3kGaAQfo\ncycPu9OddzU\nF2V5i3EyRd4\nz5NuK6qTdBc\ne7qjmOp9G34\nxUNy6fZy4WE\nGbZZ2TDY5dA\nyWGLNaCYevk\nSpOd7BwzlMU\n-agdK2N5wX4\noZ-BCSM4O8g\nKc2Hv1tPMig\ndye8cQvz0Kc\nzllKdwaYi50\nxWYBaNVEpVY\nZcO9A2DK_8o\nQId6ztQeHCI\nTFfe7ZgIVUc\njT09lgUTdFg\nkKH0IEVUhNw\nsIGoScxocUY\nD7LCHE4pTe0\nnBRbD7RKrK0\nACvjoLAtwnU\niwZzRrzGLfE\nt6w2XWv2A7M\nbCBpo6H97oY\nWyqeTjEcUTk\nB41g0ZjS8M8\n1CjLSig2Hv0\ny-1iNc7NzNM\nVKonjShA8Rg\nR5BlH8IPv9Y\nk6VGwPFIctQ\nyMo3ISSjYn4\nhaeQVOcIyKY\nDstF9Ge_6wI\nsSu-nM25zqw\n8X5miLF1n5M\nljifYuVnH1Y\njz7WEh-DK0w\nFdy2A4nbNik\nSCRZD2_Tkeo\nYe3l05tkIcQ\nzA1afZS6G_c\ngIig_bRnDz0\nMXcA1Ow7Lzw\nlpBYHa7VDRk\nXAa7RcPdE2U\nNqXxeZTvuYQ\ndq_RCN3esGk\nSSQJIBb_9gw\n7mPDafCQ5iQ\neYCV5Zm4Ov0\nxIsVK254RXU\nzHqM-oKCPBY\n4ozs0VI04xI\niMlCK0hr8Is\nIW3rXhNFyVw\noB1yULtM2Mw\nNGmtKz6HMkI\nCB73lI-OjOE\nAZlZO5TT0wo\nxxoeXvIeZXQ\nJXiJ7GS-9aA\n-XnDw75Lp1Y\nH6ZNmRApuGw\nPuUMs6fNGo0\nDrOLHuvOMi0\nJKJsu3JatYk\nYIqAz8SfE2M\nHV_SMZR6gjg\nvaWlmr2BwuE\nuun8fsWOaeE\nKZJetTa4DjQ\n80fHUAW_up0\nL90uDzDbdV0\njJ8rgMkWFWA\nH1_mdoiwhBY\nT7kklmGWLDk\nV99QCtwXKsI\nDC3rYQXOTjA\nvcw4b2U_0nU\nnUpmxMzBCjk\nTcaAWs46kog\nwhFoAKQ10gY\nbtMisVovQKk\nULElX0fO5JE\n2T01Xm19LJM\nWcmGju9lzAY\n1bKCN4B2g-g\nv2iOrjYQOHQ\n9C5A-YyMLnY\nV3JGZdiYwIg\ndHxPxFeI6GQ\ndeth7hZBzxs\nAUppZZuFnJI\nmXgY4vnucPc\nyqvlrJQVAP4\nSndhPCSVtuc\nTHmBqW0zLuY\ns5F51a7xkiA\nwIw19V0b390\nE-OEyIQ12Mw\n--UgPWRVt8A\nrJv6bP5Lvao\nJn23_pn6aAE\nJkQzE831VM8\nBzk_5Jzvxdk\n9T4kKk7zH34\nSMaYCguBHAA\ncINFeXqwbDo\n_WUyZXhLHMk\nk3oMPqUTxCE\nqqhyIIZt87A\nPaqNqocHJ-o\nklg2YuapPFY\nweDQxJm9K-Y\niU908ncV2q0\n0p9Q6tDJJ1w\nUc0Cd3LErFs\n6HrTgWedKG0\n2ReEFgaq_9g\n8R0wW6GTMk4\nY5EkcuhBwiU\ngcPY3RIvtCw\nAd2-FiCzJxc\nCkKUHwyFqJw\nMuIkmspTRo0\n8O9FIRPJRXc\niy-SmSGYYBM\nAALREbJZEZk\n0KjO3YwlhEE\nwr5-v7rYg70\nFgG9LDxHHv0\nUu2u8T7tS9o\nKD5-tY6m9Cw\ntt5BJlT7f6I\n6EAVY3gCWpY\nAURxtujY4MM\nfJDl0RSPWBg\n_H0EYJHeddU\nIOUbfaHj2HU\nV4SyBSgOIgM\nJlvCQXYfOAI\ndJltbkhK6-s\n_HcDe70cSRU\nZOhpE4LjR5E\nTqRBV9xkrAU\nXTtjLtf_Tw8\ndShLedyR4eg\nZObhl67NCzQ\n49rUb1-JaIM\nS0_bjXPRlio\njorhoh0NNQI\nDgpMTfkui0w\n1U146AYx6-M\nG7RTm-c2aXc\n_RG4iCmljGE\ngGz0wTHCHK4\nsg-d9ZBsiWo\nZ0k-0HG4fR0\ny7-LHFxFS8o\n3U0EdULZGes\nh3-FAzeYut4\nUqXJc-VxorY\n7pzz0eGQdyQ\nws7Ve4mehqs\nov5KEgF0hgo\nsbb9Re-KYlE\n5nDwwq0ANPE\nGgnrvt77YOM\nQeTaNmnwFHo\n2Zi7Y1-rgts\n06MiYpKxjCY\nwmBGdpkagEc\nfdw_aFH3To4\nN2Yk8EvrrBU\nx91Nyuo55_c\naWNJKbGrETo\nuKlIPUovwIc\nw-nqMWvpzY8\neHj2IgKYofo\n-6IX1nWqW3o\n5qE52hylNT0\nR_rN21oKxSE\nQ-_wlz6jYSw\n2bvUOFDgo_c\n-7uYlaqkkzw\naRK4YcnTtIk\nPv2MlxSgwv4\nq8NwQoVkAr0\nM1dWcUcCAgk\ndEAaneP7a3g\ngZE1B2zL1fg\nF0YzQbNdlpI\ndWdQG4BEX3s\nz4216EVIfdE\ndwULCnXeEOA\nRfGOwHvIyK8\nvtEw8hLJKzo\n94pYLwdWTW0\nwgb4Fz7D7wI\nPMFU8b_2cC0\n2dOsofLx6jc\nEv2Z-YUO2f4\nbbtIanfT4oo\nYwn0PmxYgGo\ns_8zJYpN2mc\n8jfrU0a-Ayk\naB6SfK9qD5Y\n104odr4s7Yc\nQrXSZJ3am_s\n71_zrDEkRc0\nszDAoChHbrQ\n4Tu7_tAe2tk\nSVtUDd2sBwE\n2pOMv-jM5lU\nH1sEkNAlW9w\nu3E23a-SpF0\ngNdQdrKADh0\nqYEOmZzqX28\nPitkS4aYur8\nGgBt0TlbwUY\ny4fdm5gdvnE\nNKhTArRP31Q\n7XBizI9jArU\nqB93c2JU4uQ\ndnrJELv76n4\nVqAqUVcgQdE\nhFfQhVgQU44\nOYSVICsTq78\nSEmSJCzcxyc\nO0PAT4-kuY4\nQulj96h_-W0\ncEyfq9j80Do\n5-kt5Av0s2M\n7Z3ccysbMwE\nt3nm6EPiuyw\nIJnig4nc0xg\n9WpO5zPo8Dg\nA_CGtuDwl-A\nrxkB20Tpvx0\nmIGCgzqFR0s\nVbP7jMN_v-w\nUXldWskFeFY\nuNjrnjiEEY8\nprTlJO34AHE\nKjWPSq6-Ets\ndVLMfoIop9M\nluF2eyiYlyE\nLKJOXcFUSzc\n1GbNS7IcCj0\n8FHO7Ry4_Jc\nSKC8iPeIvEA\nuETwKF_fgKw\nDhUcvFP_Tas\nGwvrEz7vTZY\nNV9oKGj_CcU\nUvSGGd3ewFI\nAxGXZOLn-U0\niropsnsCEjA\nem9lziI07M4\nmFl8nzZuExE\nLSD1fq3xDA8\nxvZRXcg4iS8\naQqAUXKn7t4\nxURDJ-IW5YM\na3bI7kbVBwM\nf2FzrfnfQPY\n9QJ2mqXdr5I\nNC34ce5BkWQ\nCKc8xHhxP0Q\nJQOay4rjHas\n3sP7UMxhGYw\nz79ikmr3JY8\nb3OlGLDk4pY\nf9Od8yx9gmg\nWXne2B_inx8\nCLxHRE-Knmc\nn4bsNkDyF2s\n2UPj8FTPaXg\nOfXLQt6B8v4\nOqGw-1_vIWk\nZ-WSedqa5zA\nfYbbxzLGpbI\n0ERIepJUdPc\nxGon_kZAVtU\nNE6nLFq0eqc\nkPE7ZCGjw4o\nJaTAjmSppvA\nU1_VGnnMle8\nFpekkNyDPcc\n8ty1025m6XQ\nrPuW7T25Yuw\nCyJglP6k8lE\nYoIcmX40-_s\nApuFuuCJc3s\nwV7vM4-FzJM\nrHvCQEr_ETk\n_7DVsN761n0\nAhbCYVILusc\nGQM4dSjjQuE\nJy2_J5WCzDY\nUsZNj9srzR8\nzvY-EPgYB4Y\nihKHvNOTcwk\nSTqJ_Up4iFg\n0_1NU60qHWs\nwMr2d10-xf0\nkzZQYnvw-6E\nZPCSC8NM87k\n9NTvToplMlw\nbx_rua3EXFc\nU6GY91u1I_c\nsCr9YZRDsJA\nuTUupV0ZfBk\nSQH8if7dbqw\n-pix6UL8ONk\nLiODoFVKD40\nY-rxY2LxPI8\nAD3baa_nijI\nhMGHJFVuqpg\nrLVwKpyUwWI\nkWHOafRR0Sk\nHiwu7Hu2hAs\nK8yA801TQVQ\nfwZw8vujVMU\nykQ9g2HT2sU\n8H_aePfIMzQ\nUiqk92r4luQ\nWbcZ3k4Mr6Q\nOGEfW_fV9ZI\nD93GR0PGUD0\nLiioO2L5ZA4\nmvH6IhKpehk\nG5_nIhUCuhk\nx7S89GM5N7w\nmkG2YdCogPY\nExsSDD8Lpsc\ncyUf4tLI53o\ngzbYTUXZkSI\nBpnlB0ILpWw\nlNVb-ZNIO-A\nLgpg6frCrvw\nvqPT1IbJrX8\n1OxDZKordaM\nmpBQ883QIUs\nz9uP9znP-mA\nfYVAGoTb8w4\n89RJwGDFpC4\n_-9Pewr-JgY\njkZtAzrw3Q8\nL_nh3Rtyj-Y\nWMFxWlrpnLM\nintjK7aTbjs\nbJ09DFHWeXk\nGOpFSBhGjuU\n9E1ulvRRYFM\n2LsMNs4hW1s\nWXeW1HiwAtE\n7nWfsF7ThLw\nIGaJfcOD6gs\nzH80pWTYSLg\nA8xy9h5olhQ\nduZLaW_6qLc\nYh03Vnp8pCk\nsbZB1drlKWI\nvh-mdPoc92Y\nLw5Ss6z8IoM\nL7FVtB7mKEU\naDcfm_9GTyU\nRNPPrvhTKuc\nLT9qOeKcL-o\n_RsxXzFxqdg\nENmpNBFdwFQ\nIGCJTr90IZk\nln_5-pRR-HQ\nHexOzLEvLGA\nB1bYkou_mnY\nlsES3-QXzZQ\n4o1x3FxQLf8\nL5jFIw9yBbA\nwO4P6Yz_LZg\nqqAzmt1d8kU\nVwlkxIN9tfQ\nsVfuigRSl8g\nXT2IS2dn8gM\nleSpIIaEblk\nioE_djgs810\nLBm4aJ0ZcqY\nGW475l4IoyU\nDHXHxop1gPw\nDtH30Cz2Zec\nJNcNy7bJxDg\nMYErK-XLJv0\nYmRuVv2V5Go\n1PRZi8t38OQ\nILkyIHOOoq4\nVzXMcMcBwA8\nijBU9q7fb3U\nk3TpBfnaEmI\nPBHYbeg2nao\njMqI9UV3ob4\nBrLcbi68R_A\nPahRJMVNho0\n4t7oXxFAlHM\nFhsFZDrRvoM\nt1RkYJaG9bo\n8TbUl9dhTRg\n7bCqTdKJPFo\n5Ehdu6XTlBc\nozkF8KRjeO8\nndpVsMLr424\nkFeduM49hBY\nxKYgXZQuqm8\nOflOQW_pkvc\nHavLrFJcqMs\nKgnrxjgHngA\nDYAdSce8Rd0\njTkt23CfSp4\nffknf2fIpiY\n95FV_p0Rivo\nfb-9_MV15I4\neGtDmvtBZQY\neoREjwjeH30\ntLXNDzc-2fA\nnmaCobIvt2w\nJcC5XdvOWWM\nBTJ-smMan7Y\nXF5omSq8eRQ\nXcgNkFuPBV8\nETu553EnTJM\npjF6bofXAvQ\nUciEIYZ-Eos\nevQcKvkQCl0\nlGuivq-6xrw\nuzTuGHYRJ9w\nkv-hhf-kPkw\nrilZTyv9RLo\ngrwlYBNyMk4\ndSdY41CWixQ\nu-eTCyG0jpA\n7wZdMPB-O6Y\nL_l2ii_25tc\nkBErrmmqnkI\nyuU4pFcEgWo\noY0spjrKFdM\nLehcJeNbFBw\nSUr7fu-LXj4\ngo4K4rCFjMQ\naak6BqNR150\nf1bk5a_jaEA\nWuer3mLqIxc\nYfdRr7MWax4\n1lt4euqZLsY\nYSfBTZfswSg\n6_eBGV71X0w\nIvFBobchMoc\nTiJBxtM5iKw\nawuqJuO5WOc\nDBUXGB_L5q8\npDjY4qorZrg\nPMjbPEGDJ7w\nS-EfnfP_cGY\n07kluxoO8j8\njFQUE_6Zhn0\nUp7TU2t7_8g\nVvNX7pOAK58\n2iD5pPwbDJ8\naFnS18LM8Ws\nZDyEERuK31Y\nVv9KJYUnVvA\nT5KjTcbQVMs\nc95YKkIbTGg\nyHjejU3HvRE\n8m3HqHIpcWU\nCUnezbuG4fo\nKekb8jHfDxI\nysLBlalu91s\nGaIcAaHFc0U\nnIW73heJdg4\nKBCL6GBurNw\n9svQ60inP0g\nEOavA469Z24\n-npMZStX7dU\nF70EkgLs4DM\ndxzktMx1jbY\nhfNlv4HLZ5k\nup1wTd5shfc\nIBRkROD4KAU\ndzabuGq1wIE\n94k4a1GI9rY\nuo6yyV0N7y4\nUaCGeQifvdo\nikqLKMZ86d8\nEzRtOVxgKCI\nuhDhzHrffBQ\nfJlJX4Rj_WU\n38jXOaoZQZI\nTjvHy-IYET8\nHb8I1My6zOM\nLJl8SSI8MHA\nNJNAE_e-gM0\n4MbRVVP6rPg\ntgHcYxKjwVE\n4CVFOnmW6v8\nSiwL_3yOWRM\nU_74PjS1Epk\nHT4kxxCpWYM\n9UE8ospTDgA\ns0ADj-PzbF0\n-nCYpOC-Gtk\naP22KbKvaMg\nwMu4IBsX--I\nk1jq4jHNYpg\nfR-2fk_qusE\nAWi8x9ctlps\nMFmLZibi7DE\nBN77UGYk5tg\nwpQ4R1jlFHs\nsgB8cpEi_zU\nXPKzmSSQ2xk\nKGV-R-dVuGA\ne8EAVtsvfxc\nuqVEYJGg3J0\nX0vQQA32UAs\nXNZRK35VNrk\nS99xKAAo43k\nyiPqxnLMKbs\nLh3y_KLTwWc\nINrZ0l5JbrA\nzpsNG-exYxE\nWNAjVd38Q1E\nH-Mr-QmgheY\n0g2o-CfakW0\nm3qnMx_kA2A\nP3WCkLjKW-k\ncl3sud_uDhc\nrSAWPBO-ewA\n0OqXqd_s0ho\nTf9j5763-Gc\naaGgRabJ0NI\nHcrTqof683A\nmD5CrAC4LPI\n5aegHe2iS8w\nS0hTkEECANg\nvq0OqfmArnY\n1V4SU2_-Ppg\nupoh7LbKZR0\nHcGpEScyT5o\n2Q0IkYxSo3w\nJmSmZRCl6A4\nROXLPqlbJck\nkbpdM9ORaI8\n3NRVJdoihjY\nqwwLKFCR4K0\nZTsUO_9AT20\n5OkvZ-y_dgI\n43OVm86-4rU\nU9WHLcpvVz0\nL2inhzv1Rs8\nZ4kBo6FO8bc\nIAaXyDc1gjk\n9oS260wm-UM\nOjDuQ7O9XUo\nNM0WEaC8LcQ\nbC0vGFJbMjo\nvM7QMLTm1so\na8cviBPaWJ0\nrvpFERo3ZnA\nQ2-Jg_2l1FA\nPQ3Qc8bOqlY\nuycL6ws3vMc\ne2Cuc3oHb4U\nq4feCJ__GwI\nvMzDPwqnJfw\nTp5Q4AyqFOM\nqlfI_AppyIk\n2dvchK48Z-o\nftDkeswkEYU\nP6c_kQL3ZdU\nEAd7cMSm4Ng\nDGW436DH8Yw\np07sXB8H3zQ\neMHv9pPuDiI\nFgUKDQA1qFg\n9WQJxS6-2iI\nTazw08OZpwU\n37O1H9YiBJo\n5XZcn9qR5SE\nUP6UWl1Y1-Q\npVqOcGEbZvo\nLJ8UoUA2_uE\nwyHOKleZzFM\nsf2RRCNlz38\nbmBh8DSdcnU\ne80zdJ6pWlI\nHYctFVhe2Rc\n5PaUTnk9k9Y\nqu68Gym5PvE\ne5LZR3vCkzo\nQ4KRYWe3ngs\nmtsQ0CR4Z28\nssgm3-sCY-Y\nFf20ZDSj7d8\nYRpgfi7L9Rs\nnvldRH4OC_k\n2AmY_TaUh8M\nbfKu5Jc8TjA\nYwnX8My7428\nju9K6nk07iE\nOv6nBKuu6pI\nTZyl-21DgPo\nLoCaeI5RffI\nnprJvYKz3QQ\n3gSOZW-vNFk\n3oIQCt6GVcY\nCRjB5ImoHXk\nHaK75RHhEEw\nZ6cRw6CU7l0\nMZq_z08pLqI\npW-ZHlM3RxI\nHRkSVkOdXcU\na2H-pXAgx6s\nZUmTlIUmbmE\n76dXe1ePSrQ\nMnosttqGIfw\nPjPEnXNEX_E\na3GgzkKvBVY\nSBIpGdJA_5Q\n_bUaFRyP80A\n-DXQJLwDAwg\nT4wxOGDv980\nRQUwqHaBuOk\n3jYu-qta0mU\nb6WK3MwYFSk\nD6OAWdqi-s0\n4dNwoRFjOkQ\n7SybWD4iYMA\nwstckFfu1z4\ntaGt2UqFdm0\nK4lTsRzlorA\n_3v30bJGaCg\nExvYKH9z-9A\nku4GcEUQ0TA\nb4kRHpvisxE\nOTp5qNMBuRY\nK0QjNiVA6NU\nLunIbcmUQtE\nlx420G7IDnE\nfZrN9LabLQQ\nX_4WgfjyOyg\nVJW2e8_cIfw\ndp2MR9fswWk\nr9ae_frgcpU\nuOHMPcGgInI\nTfbuiIc3pME\nfKpKz3dysY0\nkDDU-k-5v6s\nCUYNZo-8cDM\n89OqkIyNnfQ\nGewQTlvA_3Y\ntVubEM2oUj4\ntr2hYRUEkHk\nSriHCm7dhyw\nRxLb-Iqyqps\nTvmzk3Ce8-s\nOxLmmTv6CTs\nDQU7X4QDX80\nLoG_2u-0rWo\nDr6eV4y0atg\nCWS1CWSAmjs\nvRUQ_q5mivc\n3IVugy6dK3E\nKEc0SGkBDJ4\n_uwVIMdk7hc\n5ve2E8iEbSQ\nYmGBAiHnK0U\n4N-rVUkv-lw\nnA3-p6SeWtc\nXlS3PKbK2Wc\nQdgk7Q1dn34\noNySP0X32eI\nAeM2PgL5hm0\nF67qzjMABFQ\nWn73_KG11Wo\n3ND0jZIthFo\nxe6kO-SJYCk\nFb1v9LGaZ1w\nyxOMkjGIZYI\nkgd0wuSVHXo\nb_SJOg2q3PM\nD0yfau4bAXM\nXMt98-MEWmw\ndaULewxdD8w\nJZCM0ZW-GMw\nHl1mw0-APy8\nG-lDaFtb7eE\nh4Zho4DUcXw\nznjpkKX6bek\nDdNfSuTpDbA\nsIbYUg1FKK4\nu_6tnXDfxBo\nAUbfGwY4Fco\nch_JeDyNaFM\nHXubLg3o3qY\neMyuRmZNaTk\nYOUt-qq-snc\ngA0u3Iir0CU\nxVWAp3OLYTM\n99wezqewopU\nuvZImlL51Io\n6hT5xOszncI\notlsrvaxpdE\nTpz4Dl8focY\ninfMR62l_dc\nD0p6abBHjZU\n6MaOE8YiJy8\npK35em6gl0Q\nwbROoMNi8Ho\nFOXEyMTnekU\nhowhfMAoEt0\nTZXt5K8U_HM\nelR_OgHND1c\nRGaBXM3EHUo\nB9SkWFyq-EQ\ng4BV-MbeTjM\nuraQr7J0Tlw\nNqWsINBcm2o\nD6XNq3CrDBU\nPJ0NkZgbrUw\nHOePjj-M63Y\nc82FD6lh2LQ\nlp1s4-tc2U0\n1qYVJgixc3U\nE9pB6_WUR-U\nO7jHiw8IyxQ\nj66Fsl_q5Ig\n4KkCEjawUHM\nDtV4RnADOeA\nU22aGOTlIy8\n836dGO4v65I\n4sNyWmYN-rM\nt5GdZx7AS-E\n6O_dprt5rts\npwSkfvXD_ug\nmmH76155CuU\nI9r1j1ZKBYk\nFlQd5p9_XvY\ntlSscKeO9Cc\nQ7--4JW6y6E\nDrt2w_iit1M\nVn5WazNB5sU\noXGJeQDRuxE\nREWaiDiKDIE\nQc-E0u_1Ei4\nQzcXi2irovs\nV9RhgEHIxkI\nRgPuswoKZtw\nNizLAsFlvww\nx3OTeacsT84\nZvGaiZMBOOI\nEu1EfSDUKFg\nTfsGgp4go6k\nA7a7RtpKzYY\nXUnfvueexSk\nTRgkvisG4yg\nD4E8UpMb8SI\nxNSWp7Hb5tU\nnma6daFY6b0\n3Blk7Vo0abY\nmfCwgYR1yS8\nkjLqB63ihJE\n6R3tTi_m8VQ\njk2mjuWhQ_0\nKkBUMdYMw-8\nrrWLFKZafAc\nvYm_2A_cg0Y\njF6JN1VSpmY\nYkfEc-PYJ8A\n9g5pe-B6uL8\nPxuQ1n3xaRQ\nnXrsB2RMo2w\nmySMw3VkEBE\ncgLMSMIU124\nlfeYgfKa2cY\nILbn3iOiOiU\n5U8scp5J9Is\nh8Rxb-9snJQ\nhhmPqQpJWks\nFQH9s2dJe50\n1etjTR5wYhU\nHi93mYJyO8I\nc0N60xOU9yk\nH6Y2GNQfNo4\nCaG_6UWfyLE\n0SNckpLgK_Q\ngvANfpQnohw\n_ICXfAWaISQ\n2DCjXk4qpLo\n_O8yGbcFmc4\n9QwQbE5Eu-I\nFYZrWswLpu0\nyceziOf95-0\n3QoYCS0iOq4\nWEvTEdLLa2s\n9Ro2O9YAkAo\ndJhNjpuc9eo\nHj7OFElSIlM\nXSX3JKL0DpU\nRf161T4RyxA\nGwtcfnmV68I\nl17e0M4TTBA\n8ZSuFOPBDmI\nJhMO7RA7-VI\nWCM5kknf5nI\nF8q-K4BTbEk\nAEBd24_Uxfk\nwXLFg03in2U\n5Le4OlAvuME\nXGoagkYcJ38\nLTfMvliqiGk\ny5vxDOma1Ok\nNBYfDP0IO18\nRtxMw4sua3Q\nC9rUREflwDI\nUZnkAElIe_c\nEdiZzm9bA2I\npdwGNiv2q4U\nYcv2RoyxW1w\no6sD0PvhkWc\n99ziSsaLUpU\nVbj9JcYGo_w\nF_cS_kmSiRY\nUqPsrqpwLmU\nq1bV-D8cSz8\nVqL0Mr9uNL8\ndZjgSYTxWsY\nx35VnGsGrFc\nWd5RTjtSSxk\naxhUtepWokA\nWDuIl_uPY_s\nCDTnjLPgMKM\nFFvaLp9s1p0\nQlDqtuo10fA\nHfgFZz6gCOM\nN_qIfvDbZjc\nwka4snE-AmU\ndqfoyAnszH0\noo5SkNM3c1Y\nvIgFGJRGlkk\nmxnq8jkwttE\nQNUbwijCKfw\ngMCgkXpEOIY\ns-vP7WgMkpA\nhAf3IBKWubo\nan9Zfn3IZCY\nCkAf_qzHNwo\nNFj82X1Fdh4\nxgX9WrVFO0Q\nEQWtaLTOwCw\njwnPI-d36vU\nXUSzvNtSsFE\nBfRUV4g8sYw\n4UzVKW_Iqi0\nDJTF3NmqF7U\nMc_zp1s60NY\nbMjYOV8VnYk\nlLeY8-bhEuQ\njypAc6XYFfA\nUglfLjHUNbU\niQJh6I8kH_E\npl7JzW6eGZg\nInkyowbQcIs\nVh-olAK5vrs\n_IwNoboTiHU\n0K6bVf4ra1w\npAwoA-XPzsQ\n2pCUsMk0Zs0\nOxBd2RQI4eQ\nhgqJjr7pBa0\n88dS92rgWhA\ncWj-sdxFiY4\nEL3Ma917bug\nUDINZf4W4mw\nLQFc7IKhUuE\nYNAv6w5RDIs\nFTzUto6toxY\nBGZN_6xPw64\ngpjYU0C2yrY\nQgqXAXhRvYU\nywRWNlbXD8s\nkfdeG-hRX7A\nHfFM7RZ5GxI\nPBaQezez_UU\n2nclzm_QlLw\nSJSDO3IHsrs\nsdwghUH-K14\nBN8VnFVqRRI\n5uvhg1AtZlQ\niktC8imMBnw\nkCxqmweKXZ0\nusmBCn2WxYU\nnixHRzTvCUE\nrt3FEbzjM3o\n9UrJ60MVNao\nxLdIkC6qcow\ntmUleIek9Fc\n2oLqQw8jHts\nQNlazlRan6A\nHGgfJkZAx8Y\n3IUoqFHJ6wk\nr2GpJzIdoYQ\nLTyelOWIGh0\ngxqt6x5ThcU\n6QB5kS_JcuU\nAvPVexWamGg\nOByY45anMr4\noNiW2ftWINg\nQP_o0yWJYKM\neJ93IIgvVyI\n_JoP_xhSETM\nrey_J7jIvno\n-Xb-ryuTDlE\nLFO-xqbWYpw\nRp8A7gf0dZ8\ny2wupV34DRk\nROeFmcvZRf8\nDbORPqtzyx4\n-YaPh7shnWQ\nHRmLJScvW8M\nO6Stx_mwAVY\ng425SDBoDBI\nb60DLSEemEY\n9Wfswn2lkAo\nnjfu6wuNC_w\nNcMHcR5IzEY\nWrb8nkLKkxU\nPECLt8uCcRk\nxCvyw2bipUM\ndfLN2aPZ5sM\nKXTBm9eUiko\nbhtJNsUfHIM\nfegOYb4_PSk\nu4T7slD8Mq4\njBMZnAIY_Ng\nOy9R8mpKSmM\nJf8Sheh4MD4\n880-MqUhhEk\ne56FOw5rIhw\nOArHd5pe8Ls\nelpUGB9Ap1Y\nGSrtUVzdt6M\nThCnJ2m0exo\nD1Iu4JKRGIM\nFBpdDE96XhE\nnUxHF4O3GYU\n-Jf-E7oEguU\nnr1sLngjJXQ\nJyEvCZ8kwW4\ny0DYykDLU0Y\nlPOo7SzR7Sc\nMPQojemDuDo\nSEn179T1Apk\neWuiIzqZryQ\nUYzF0CAcN3I\n4T8OrSXKqVo\njf_-d13-UNw\n-yzEjTjo2IA\nXN7uqQnAxIc\n9IVd9X91fiI\nb0kunBGZmK4\nTL91ZYSxoag\nBXlYuaycRbU\nOqvD4NC-s9E\nr0eg-ieT77g\n9KYrqmQdvsI\nStvrI9z9kLY\naecYY1vUiDU\ngV6Y3OwR2n0\n92lO2Bum7v4\nGZ3fgYIUrJU\ntp1eVLXEXm8\nKEfLE_bvsSo\nPmNdhL9_nPM\nZpwDcgHhFDQ\n018kRNbZj0I\nVjRhsK7p8gY\nhFNZy6iBNVs\nhyopxkr7RuY\n06qgPR9Eqww\n8pbM30ZMO84\nGLQiaEzx03A\n6qZZWAScCn8\nXdtbL0dP0X0\nMLCZ_B7FKc8\n4C7VpH9VvC0\ndjPS3AC9DKk\nUB1xsj0ZiKA\nNQw5e3HJgfk\na7vAR-7YBWE\nj1tXIl0snEk\nJvTQZxz-KBk\nalhVUKh36_Q\n2GvL0jFY7u8\nbu9YxTb6gf8\nnLkmfL6IVQs\nCyUZe8xRNnQ\nQRoWiTcO7dk\n05qid4p_cfw\nQe2m1wxb5_w\nmIeU7y3CGKQ\nDUjB9LTtzGg\n1dwtsZ4IJQE\nNnDKut3pxoU\nrtn4-lDSB80\nIlH-egwG2pQ\nidvqLiOeLgc\nYAmnMBHMPso\nyQpFQFL-YLI\nuAjGtAOqMQw\n86Vd7XFiYZA\n_y_We1FV_RQ\nMNmdm8voYFE\nfn5dXUu_qxM\nKfAm5nyHM3U\na87b-bsz1Mg\nURDzGjLruJU\niHQZhYadNwQ\nWQLTwtwUnEI\nw424xCe0eGQ\nUQes95Ouciw\nvvBW4Szes1U\n3PhcsTMfqIs\nK3Po5dqfTgc\nxpQ1_5xZuKY\n-HwJeE-iuIY\nMqiNJmj_ODg\nldzjtk016bY\nEIrEOL6S6sk\nDZuHwW24HUY\n9tqaHOTOasE\nSBSzom7RbCs\nRG4exoyldqw\nL0-Ye--I0Uo\nwXc9z1SmLJM\nwcYfLYh8ixg\nTcnr8WoHAOI\nHMQpYC2SMX8\nUIRhpmPhehk\nqiAPls8Te0k\nfLRlh8AHh8k\nlMYtQlLlu3c\nposwRRB_2i0\nn5tMCxz-9uY\n4FppyDurg7c\nA9QknjLLso4\n51IaQuowCcA\n9VwWPnHZMrs\nYSOUTJUdTgs\nQkrYlP8-Cmo\nroST4TM0ccM\n9fEMKGFr-Sk\nizWrKfUUP9o\nc6mLa5_GvCQ\nVgO0K_0mi1U\nsYdqpWTQyaI\nfDeQjTPTlDE\n-qGU1hiiJfU\nr2x4QueC2As\ne48T01eVXtU\nCp3FHbNWi64\ndj0MEV7d1NE\nm-L3k3ElIQE\nsYWS5RSmJ-s\nc9oE47YW6YM\ni_SnR25Zoho\nhp3HX9PAkcA\nrCEbhr55ISU\nZFrDw6oQai4\n9V_GlFhNX2g\nHs8mVGI7uVc\noR3h33DSGPM\nJpQqyJbdb44\nG90tPiniLd8\n8O8gYNK3ULc\n43mOz_bosUY\n0nEWiH0pYR8\nzzkjLhitH7c\nZNzEreKcfUU\nsr7zvUpRxIU\nSTcAVDuOkv8\nLjKWOmIeSQs\nl46yjkR0SqU\nJJrTnnaEZ_w\ngVdIiTE1ykg\nfTIIhYZ_CzA\nAX4i2YZqE14\n34FTDewDftA\n9C6DANHgdrE\nsIwsArbH5ck\ndg6PaO0e6wA\nMYkSUEjYLc0\nAvPljYL3Sq4\ne0oLpONe5O0\n2h6NGVrMQ20\nIqkw8K2hT74\n06456EaXTVM\n5JjVwGi4aHU\nD2l0Qk_lxo0\nm_Wx68QkJSU\nv8L3Lyit8Ro\nawhN-boYW_I\nOg88KQM5nVk\nz8NcTAIV0Wc\nSZCtfLaCWO0\nzdOov2A4-os\nQcFKRqQENrI\nW4jxHLn-00g\n8TwlBdCGS24\nEchEZ7BmRos\ndmASD5tRwV4\nm-2WmcLl_PQ\nKwpO_4Rq13o\nCG2YRWPhfiA\nGvHBefStM7o\nZUchY9Hw48A\nX1SJgm2hIAY\n6TVik8mYxrY\nF0ga5pmQjnc\nQEfuINMgcnI\nZrW_1_rFaw0\nQm-fzB7OmEU\nbq5vS1a-smo\n6P5yW3rYuMs\nXHCai_8cuiU\nW-phG8nc1Xc\nOro8uCubA84\nHpeiPgkqEro\nkIIY1-f_rBg\naSsFjcw8R3Y\nuR7yS87K1tA\nLHcbbXpKIrc\nvDzbcWty6m0\nUFiKhV_Ay70\nTChg5dQ36WM\nBLElh2JGufs\n8aK7LsC0G-4\n8sURhgulh7E\n1DDHNN3oums\nnQuKmZkCDZ8\n01rrDGEzBc4\na-qtnTRl6HA\nUX8ua4_z-kg\nDTZylvspsps\nTunbuB_bBb8\nDyxkjYmlzhg\n4zBMw2XqgWY\nZ-l7wGkNyko\nBdZgC84uYUo\nEWSHsRBP88Y\n1DvFzLRPc_w\nGtqIqWKdlD4\nQLkt-SfsCsQ\n40ryheWGyZY\nwDFOO-dC-Nw\nzDEPob22tHs\nSxJcAxTBKOk\n2XmLLBZnvDg\nODIZKyevVxQ\nWi4OhwrVwP8\n4gSkh86zcaU\nHBj5pxrFyE4\nCHBydX2-I50\nWBreuW9LLSw\nKMHmLy9C2hU\nsxo7GjhsghQ\nBFAfiz1daR4\n6kktAYxwo7M\nUN5YOny_U8g\nxmihht20Z0E\n6i7cWj1WqDU\nZekXmBuhS5c\nW_qA7Xt_UPw\nXUdBdsMc5EQ\n99qifKCGPfA\n-OMiOIbouaA\n_0X1jPgLo-A\n-oL4NpO7eAw\nRjDv_swo0rY\nSCn7SurOKdw\nGBu5QE-EsSg\nUs1MxXdSHw8\nqjUsrdzDbuY\n_Du0A1y4Wh4\n0m5VGBc8VrQ\nUrCi_k2TXOA\nFVGKgrxQP9M\nCN6dU8mcuMY\njpoR10Zh0ig\nXyEHIOZf5yE\n6IJ8LfJnJvQ\nt0oqEjxOUww\nBznPcrTUYvg\nuNcKTuAqLag\nEPa8iQyK5mQ\noNoOFf527GU\npBd7XYjjvRw\nhtHKbsUKDDw\nskrdyoabmgA\nWo4U1SqnRpA\n7SZcDW_1o8g\ngCHCR0wZclg\nTs8WRHAQvk4\n1YpDd1nVthI\nJwlhFfOC5Zo\nxA1Uz_TMzhs\n_PSZEvsYD6o\nTEZq-_XkcRA\njgosH8zc83Q\nMwjIdhPU43A\nJJyK0EX6s_Q\n69v1tcsG6nc\ng3D2eGiLoeI\nxFoBu7P_Kwc\ntMYOmMWbUME\nkDSiyU72RpA\nDEKdqE9W_i8\nXxWjAkr7ujk\nZtgEJOBzX6A\nLbPm19yBPis\nRxPJd3_j5O0\nyzSjRcABUBY\nZbtcQZ1yDjc\nGP9FOGsbYsw\nmbzNdI-1iUc\n7yBBNmR1CLg\nPGbBz0m0pTc\nSnbbz0C_ZiA\n2kK1wyTEMUQ\nk7ej9E5b8js\nlqnKLTA2GVE\nxNc951Hq2WA\nKQzNG70KguM\nLVGZy2YKAh8\n5ckqhebte9o\n_uXfbxevYyg\n1GiYwJRA2NA\nIgTIy5MUBxM\nJ9qv_a_s7Gs\nIaeWrM5PlmU\njZXuLQdIrEg\nuXUPYAomwDU\nCMPJ23f8BeM\nOhM4B8B6B28\nuhOCeh9oGK4\nn0MX1a8uh3w\nRRfoHyYJnAc\n64tSUb_LTdI\nrvQZ6MdHSEk\n5BLZxhN2lDE\nX7Jay8hlfHY\n_OZS09-GVTg\nOFDJnI4RczY\nvmpSyqa5kXQ\nAdKWXA8npgE\nLmsnknGIx74\nsC78ImgOLQI\nz08tZYDrY_8\ndiNo0cO2Je0\nfBTODK66ymw\nsa9AzlyS9h0\n4InwO1SSp5o\nnotFMAwEQeM\nY_U49qqwDGI\nmpr3XG5Tzmk\nJIsrqAWzVoA\nnP-P4IYLJWY\nqVDMu-erGtc\naDU5CcINqyI\nrhkkbjKcaJ0\n8N9oQUJJstQ\nt0tIXAlLX8s\nhV55sjy1QFI\nDc-fBk3yoqs\nMBeBFVoomg8\nraSWINBYtuc\nG61d-lcbLT4\n9ykMeXdU_Ng\n4DKTOdul0_I\nGHpQUOP8vcE\nPTQLBv8sgDI\nlCF6_l8gtdA\nNZzeLRspnMg\nALSUu2CSBOg\nPPhxsJho48c\nqFH0mR6eVLg\n-rkhqMzCUnA\nOHCVQcnqGcY\nivG26TnBWGI\nZ0Fm3Ym-aJM\nz2NhPvlzjcg\nE6AYVGKx6Es\nKpxk3UkX5s4\ntD8f4Xk30bg\ng8hPeRFRiHY\ne0UZ0rc0KH4\nFAK7ssvx3oE\niaCvBhskyk0\n5T17qRlPIiA\n2WJjBuXiXK0\ngUeHamRZkSY\n6moZJqA4iuc\nmfkzA9zjRdM\n0B3lnfdJ_iE\nAN21TljYB8E\npE0vTejjWuk\ncRpMdH1D55o\n16xSXPPqBfM\nlz98akbX_NE\nWf6feYvdHs4\nyiOUEU4KG6s\nDrrwX4AnbMk\nRFtZAVgf1Yg\nctd3NPx1pdM\nBICqcEvzhVw\nFp5iPmpZiNE\n6o8Eq0LEpf0\nty68MEZQPS0\neIlzY-UcYZU\nkFhDGoJh4O4\n_HoKFu0orAs\nzNT4XSI1doU\nPvEongWRs5Q\njaSSXV5AFHk\nilRq_PR6oi4\naTSa6E4_Zgs\n_gVrJIUmCqU\nwxlD2wwIgVk\nt3mwyiOBDrk\nMxDtKTClKGI\nWnrOQRdqiQ4\nJJ0IOFvfu3Q\nw294_yaM85M\ndroww43JVyA\nfz_9uPJnGEQ\nLgNSetWhfhw\nPj2K4FrqTmw\n5Zpj9911g6I\nEVy-c7ZaMvI\n_jl40Gzivhs\ndtQLSM8VvfU\n6IdswAQLBKk\n5bTmqPTQPOg\noBeMUEkfDtk\nHgqmQ4RN9vo\nVcH7mgvr2jY\nTV1QrgMYa3M\nwmEQUpu_zeA\nio8KUjovuYo\nlZrD7xTi8Ss\n5CrXuWBxVVk\nPnNS71ethmI\nddGbf6I8UH4\nwUkrRABqkzg\nOC6SxQVSMHo\nlK8cWFLr5qE\nUW80kY7-HkY\nKnI9MBbPCT8\nc2k_kuU84ro\nQnDgw7XXaOU\npJCgeOAKXyg\n1-9573qxk5g\njEav9DdL4iI\n_CuE3lto5XA\nCNuEnlaPuls\n0v74ANWBqv0\nFNA0Ejpu22Y\nTKpYtp4Io9U\nhwe32v3I7R0\nQYUhwlQe0IU\n9ecrIMjE4GQ\nE7mB8U4nCCU\nYz7PedIGC6A\nrTvJrOUuOTM\nhIMv_pWXqFY\npXQjNz6Pyzo\nueeK1V8j-WQ\niog7zMkTVmQ\n4f7U_YO0fVc\nK2zen737biU\n285uHkPZOkE\nm-5pPy7zuyc\nSP8YbyZwVeQ\ngdkJ2WwMhAg\njBxvOT0p-1k\nP9_EB2_tUGA\nsrpCm9gPmZI\nUz8w8WHmWMI\nlHxzWs9NcS0\n1didVrNjTpQ\nJSqbIAemGcs\n4HOgujwklBY\nMVY7ci-BTI4\ntAHCa87P8YI\ndcSalZZ5YjM\njCSsP6ooQf8\nzoo3aMvQdMw\nklpN-W3Z8Cw\n1cHRBd6l2UM\nQkKXJ82vfJU\n6H6RGCBUcf4\nsPlsA3_6hB8\neuCWQcrBwPY\n8PALGqaFoFI\nAQpPxTYahZo\nZdhLQ1toP9s\nC_06Kac9rpg\n2aKkSYvLvXk\n3MhzaQnLhRY\nVPaFRrTJZ4U\n41BnkhKxWHA\nfoV6LGohzBI\n5x1FeyWYp9s\nrxWQfQcLAUA\ngDVyEzQNvhU\nDyCfCl46JSE\nqsyYw2x1-js\nfKGjSXtCou4\nXHuo5etrwvY\nSTh780YGgIo\nddQe0gG79zk\n8pDCGWKvBlk\nQS8fJMeJqsQ\n5mcjt53aqlE\nbp5HRI2hEW0\ngKJerAxfSzw\nvdMEu03CjTk\nIGFdF06VVF8\n2k6F2WITgac\noyuHdD6ORAg\nDsMU1n2HUDo\nhwevrtap9AY\n_pH9HcBNO2I\nfAiJAcgjWeQ\nC41s4A5Wq1Y\ns2TbUio6uF0\nnAbqTdINpOk\nvAaBuA-ZeuI\n7p9YNPcOJ-4\nOkZ0AKNb82c\nBVAo7tAxtVw\naHoNp7pBeCA\nCre1DOpQFx8\nXG3hNDnidfk\nPIAvGkpGZXw\nvVqCU0iWlFM\nDOmIpiTMs2w\nSY40M1lhknY\n7CVfTd-_qbc\nlNFbbWOM5FU\nb65C_muXajk\nRHz9rXVt3cQ\nFAmaskY8eXE\nwSOMPH85zvQ\ncmkZeTX5fq0\n_8w9rOpV3gc\nM_7k0PCONF0\nzJMCctR8ivc\nZoL1epfoq-g\n29VjYkPPY2s\nceWNY5eNSWY\nl2zrJ_LZrhg\nvYH5urNq1Ao\nC0KLb_v50-k\nAmCR7Owu6R8\nnbssDN3Y75Q\nvOQ211AFtLU\nbNFWITNVAKU\nuPQcsSuWlB4\nCt21N7taYlc\nsB1jRg2iQsg\nfDcZoI_wy_w\nV9mx4UV8DNc\nOtjQUwKlR0U\nCw9FQ_X-gP0\nHjQPsZjrgkY\nmji8ZFst3ws\ntB7Ml4tO7d4\nUoNbV-qxEJE\nAmYSeovvscE\ng0PEGEYvZd8\nmce5xJi8uH8\nEaCGKhxR0P0\nMtRlOvoq9Ls\nMdoBOoR576Y\nM2E0xzfvDMw\nKJtmyW2urUk\nrbrIQjVNl0E\nOfnIw7Y8IUY\n4g_oMoSgIas\nWS8Sc1nCi8U\nDGOews8SVLw\n2rSSxAdDhuU\nX3nIJPj_7J0\n3s--5gsc4bs\nYn8ZE58MFEc\n5eNVHUxlR1Y\n-XuS9JQgu4M\nBuQKVYgI8S0\nkvBiMHIuFbw\n6SAzrCAaFG8\noZVMUM4k29o\noJAYU5a8zTs\n7Ecvvu9ovIU\ng50ARHr0mkA\nacBlGJZCIiQ\nKM6fEMvPvqc\n9v-2_YOVxGw\nbY6jLt3owBQ\nlh5IiK9eQhA\n_OrEOa0TYTY\nhITWJ6vE1os\nCdVuOYKr2cQ\nnpkzgnKAgXU\nHkXGq2kJAlM\nlKStI-3GHDc\n4xg-5TeGvQY\n6MJJXdBz1q0\n-W_4EZvbrEI\nOLZhL2R4cfg\nTKszvumsyFY\nSWgcv5EwMgI\nwKIL7__ybL0\n3gLxv0qizPY\nJ3Sl8B7RzUg\nZyirxKE2aFs\n1JHqVsXnQxQ\nKKsaYBeEr1w\nyadi1fTl4p0\nwcN3fX7oiSQ\n3K3KlDWq-qo\n9KTEYDd0F7g\nOEvu7pkH8o4\nxmcpR-iaa7o\nctB6OIa3Pz0\nj6kHHLVRPak\nZiNx61K8QT8\n2aTxwlSE2mw\n8wMS2SCtVM4\nAfNCKS2a3nU\n2-qyN66Kr24\n-0SHIbuEO3w\ndMri-2QuZtI\nESgYnVVq9AY\nVDwI61e2_6I\njh_EME9M-mg\nSy_thm1fviY\nduU5cdQtpSE\nGVqoyzJUzJk\nqj3TqaXp2Mg\nQvVUxPcMZQE\nyAo3144gBw4\nKwfnVFtdn_E\nICJi_nMcUQc\nnXV8YHeJfOs\neAp8Vm19uQU\n9T7zP4Ui9VE\nPRk69Z74hPs\nr29P93wUiMg\neg8WzaSrZpg\nVdAC6kNpXeM\nvq6ofw0hqkU\noS6AtbHHjSo\nM9C1xAQdSKk\nchCsCDHJZtY\npLXw-1RPsJs\n2pw_36yxgXI\nC0NVo07t9UI\niKduvC0uNs8\nvhEOInyNr54\nw5yJV_TKOWg\nV3Gnq8VFai4\nVx0MQxIFBW8\nIB7BvgXIKOs\nrKh4muRk_s0\n5YgMl4JQxKw\nbN7jTZKITG8\nIXOq5goG2G0\nvTUM5grJwTE\n0w8oeXvLXOw\nnCw-UbptqD4\nS-2cloMm4Lk\n_bS2cHSqgnE\nT2IZiCyLFmI\ng5-KsABvVzU\nwdcRrpMHIGM\ngQATrdAXELg\nQ0IHL6WGFY0\nBK9Rn_s8idI\nPR1WWVvDs3s\n-yMT2S8fJ9g\nMPY58gIH65M\nM-LhdLDYOps\nJfJSwQkRgbk\nw0A-YZ0Yd2Q\naF4SahLqcxw\ncvuTnguNL8g\nUTGEXJSxPvY\naqTS6jAqmUA\nEhyXopafOeA\nwyRpsUOH4f0\nBYQ0Q0oqYOA\nKtEzZuRX23M\ny3E0ot-4Egw\n3wjBPKUDk_Y\n1spvdwcb7jg\nUYhBmdQ0VWc\n-QGGk3M5S3c\ntJwt-LcbRIw\nxmbmcfVs1u4\nAaF3SiD4IYM\nBpP_rFPFUPM\nPSWftrnsEcU\n4l4OmZk59Gc\nbPL9A5VyKrY\noP_Y5LgieXA\nmWB4xc6-Pdk\nX_7TJFVH3R4\n7X59lLfqm3c\nwZ6Dlo8z04I\nKu3KKPEi-Ag\nwHgeI9HnroU\niQPvgoJ5l2s\ncgGOnelqMi8\nAUCbYHVFnf0\n23zu-1Nsqg4\nUz6jhOP_nm8\nW08YzBOfqV8\nP-SVl6Ql7xU\nCsfBuhXV2lA\nKC2YLhHiXv4\nnyJ00UjcA0c\naB5g_U4qo_Q\nUxo5LmSDK34\n7Mz5jmOePsk\nNO9Qt8NB7JQ\nA9MNy__qBaQ\nrBy7ZDob8a8\nD4x3BaaJ2gY\n91GNWPp-a38\nT8qZ73IazvY\nRi408Ie3zQs\nvKT_HKcwxFY\nHBYW2199vpo\nwNuVF4lnszE\nAGi49DPszHg\nsnkc0SvbR4M\nsxyaSXAF5kI\nnL3o4MGY9NQ\njUgr32wtqiM\ncj8XKnVdCDs\nYZN59OZIz30\nLSUPf57En54\nZjEnS3hA1B4\neCvY-ualWwY\nE_PIi8tRcCo\nI4_AaEazcbk\nlIbKD5ovjok\nPLgNzEctkO4\nbbX5KM0tFVk\ntJya-fbl4R8\nBLSFQUjyBQo\nYFIIcUg_C4I\nOIf1BFh8UwA\ncbH10o2VTXI\nnWwlcubR7s0\njXIFh5Gwqno\n-vvxRiJkXAs\n1Pk2FQUbnm0\nxzBC35K-vug\nWEwS34zf8mk\nnYvvM0FXKWQ\nJVRdRQaccL0\nDtuXEqWdWCI\nu1MRGbWEI9M\nfWgpZ_2oYfE\nKFzIZnYLKSo\nekSSp-zvdgk\nn_3Fsg5qGfk\nDRGjkQ_iBL8\nulFxMs35-P0\nCtYTXG1RFQ0\noIlpo2mj_qk\nCn_70ds_Slw\nw0qfQaJtF2E\nvVmZO3W0I1A\nR7vFG7jQZGY\n5Cv1ENey4yU\ny1-gPBJ-C_U\nwWKQ2aOTfN0\nmQTPziHf9Qc\n1mVk7wal9bk\nGh9kc9DiDnE\nISQMNhOd96w\nq7tLJC4pC14\nkTNDYiONld8\nsohDA6TQuiE\n9pF_vfzjbpY\nhX-ezXejcU0\nBCyz82L_61E\nUlxZ06150xI\niLJtz-2nkGk\nnbxAMHD0_dc\n21rlL3oxEIY\n6MIGRX1AVKo\nU5XIY-s43aQ\niLH6Fzd2V94\n9lnovJPbLTc\ngqe-oAUoEto\nzm9XOZXVyyU\nwcjCEUeC8nk\nH7tyPUAH1lo\n7l79p5apaqQ\nB9r99FImuSc\nj_3wS3OIgc8\nqp-Jr4oEFWo\nEd__PtLnaeo\nF70k-PX3p0o\nbTPrlCglvFo\nKxoJQx_MgAc\nsH8nzHarprc\nyaWmlDjvMs8\nnSH_S3LDUYI\nXEF8mU3Vanc\nvhmFJKHhdw4\n7VOpGn2RTP4\nrsktGDtzKhg\n2gUFZCRHHvE\nccgVkEP4hLs\n1lVlP8o6t94\nql8RBlb-IJQ\nrvYoAzmAcAI\neesYEZ3pp5Q\nOzg8nU5yyWc\nzDGDWdvLCrM\nkE8qSUcrrmk\n-c6nNzrAqs0\n-EZS68nXwHo\nYtprbvdApU4\nU4fHvCvrTjQ\n9w3jysNGqeA\nqULQCbfqJm8\nR4O0t9jkkUg\n"
  },
  {
    "path": "data/metadata/youtube-dl-dump/2019.csv",
    "content": "Sv-BxH3SVS8\nIsZdfna1LKA\ntdzX5AKWiDw\nmycAsRhAr_M\nWgXQnXPb-TA\nWgMhaDEPGXo\nHummNgSGn8k\n33uE1YctOf4\nbvl-DxX9N8g\nE0BY209ZNEY\nq7S2ckr4IkM\nfrZrAIZrOI8\nA-Ckh0slywY\nGU1zIn2BRN0\n0XLEGFSKVhs\neNCK08cInIE\nLCj92toBBBE\nViQZwRewYl8\nBtywn5TiBNQ\nchvjkV0jRh8\nrRUVmTXpPyg\nGZiLvbk8fL8\n88T3elu2wfE\nojoC-Kbzpo8\ndeUgUoJ4z5I\nocDL_b6BRE4\n0BM-Q3BDrkw\n9jfRE_FljrE\niLN9GLRC5is\nulJXiB5i_q0\ncg49Y3jpZsQ\nNYRHTYWWiGU\nmlc2UyZdalQ\n4-BWFsE_TQE\ni_Rupd9NU4E\n_0gn0zQx4_s\ncV9dlsOzyVc\nmcerWHb94yo\nuQ_nGVp6x6U\nUECge-Vi8VA\nj71oHN1i2pU\nDXFN60x3vP4\nYvL_-Awg2gg\nWzAHXnFWd5U\ne198XToyAkk\nA6d0qIZY3Hg\n_bJYiiCvPW4\nWavZVQM3U00\n480Hw45m9v8\nWncnbHD-JXI\nMmKlIGkxGyM\neVmYZJQxawo\nHGZotWs54rU\nNjUtH1NBFyY\nDmXp6Pm-uLI\n8coCtKWysGk\nBiPY5_H9EIw\nZhqHIrO4ePo\nXMGoOSCbul0\n96pSGRvBg3I\n-r_-EnupRXo\nTcBlM3VLePM\nnxc6kwBYFSM\nnXSfDMvXAxw\neGXnEeW_KdA\nrQ3Qokn9t_w\niJDnG2RAlzk\niPcAns5pKVw\niGsce-w4TtY\nlyd4tC8LH1s\n2LwWmJojqvM\ntXhTaL04ByA\nmBiT0g4TIYc\ncW7AkQihsa8\ndb1o8mTCBXU\nJYwvFPjJ7dM\n6RbMqRpNqmY\nRdpvBc4bahI\n9lqv-q15y1c\nATNjQgr7LXc\nTfKw3gvxff0\nySINkZRkHi0\nLWz_6w0paEg\nn-2Lxsj7sf4\nJL_tj5M1o-c\nr0iSxOsPGl8\nHFTqyXV9Vio\nCMMzjgpnLGc\nD2JzjzTWMxw\n9zcAqShAXPo\nhtWhh0DIFgk\n9_n15K7rv1Y\nPOLkdKBw3LM\n_1tCmEtAbnw\n4WXN2HQ7PQ0\nn0PS-QVcoJo\nlYu_8OE3sCE\n0frXMGxB0Ko\nfluKR9XbEjQ\nmPDFATjS8l0\n-1W4xHNKvAk\nx4IKGG_2L6I\nPvMk6sjZlTU\nRaicjdiN8ag\nM7CL4l-bu68\nThIBEo7fsSQ\ndhJPm7NolLc\nMgL18hwJZ0A\nZvvQ3CLveAA\nPMdokZIn2_s\nzuFtCz663GQ\nCToeYdx6SsU\n0bR6pUOhZo4\nWzmAy1QyIH8\nw3trh6DMpHI\nYoAV0xF7A2U\nazRJpVsJ7AM\nhck3C2VMRzk\nYI8DWdXhg5Q\nAjh84X59SH4\nNhj2rSOUjwU\nrQABiLDqdVc\nvXQlXYcAksI\n4IbNz68R49c\nmPWo1Dsti3c\n8mDtsn0yrsA\nF9vKkW_NNjE\n36FYEbRBy48\ncj5Mp68u2tY\na3HOCIXroqQ\nBMlHiDzHkSk\n8OilisaAv0I\n0tro-o0fOk4\n_X8bBE1M994\n4N_0iP8TSRo\n40p6dkKil_8\nWCf36CQxBfY\naEIaR1nlEoo\nDWFZ7v72HjA\nsyjdYGc2A20\nS8avj5d8G6s\nKbb4g4m68sc\nMfV5DOQ9zac\nb_Wpqni4yMQ\nL8JRx-zXz7w\nBYN41wGmP8U\nRkaM5GL1LTc\nqDBjp7fdIVw\npikL2Z9sykc\n2m2vmTtcCM8\nQCkiT56VSR4\ncrbN4daV5IU\nJ7kO-7jEveA\nqFKVhx9wBZ4\nFX1FiZxQo7k\ng05nAeO-uKY\nVmCRT88HTWE\n6JfQ82WowC8\nf06qimixOOI\nrS_HIFTV7wM\nEodzQpkDFYo\nuifDWAJ6rBY\nQfSL-PSHTkQ\n21Vg94SOqk0\nacZDS8WDtHs\nPku1UxtmkLM\n7H3XPETdtmc\n3kvqIswrPhg\nxE4RRKaCifU\n6HboqAtIPA0\nkf1bu5sUXaU\nnCm4_MJstGQ\nSaRtVS1Fx1Q\nrPh94cOW-MI\nYHvTfLaOREg\n__7NUrkFirA\nqQjdOtebYns\nOqyvMY1fcr4\ndbX-ekoWGWE\nUVOJk8TFwpQ\nktCIr_DMGOI\nJrn-OprEMLI\nhT_G4j4nI-8\noNpeuCWJgCc\neclUi6kVFcM\nfO8fKHbg4kw\nmr1bVID2qao\nclDZPzwANeE\nhOH-oOCfsX4\n2qyJ5r7Wink\n_wkTjOjTafw\n4ZiwLxnl_9k\nlGAADj8laqo\ncpZIiyp8juU\n23uAYGDpS_I\nxSJaxpJHf-s\nerE6UlOi3E0\nUIxwyNULzdk\nMGJlq-gjQj8\nOE7aSKZDjTo\nZbmc8C3GaC8\nL6w-80CFfAs\ngSG9bZu1NtM\nZPDbP3gms30\ngnallHWgupY\nk6dRH6fO3Xw\n73Pm3rkTzb0\nes2xkV9Be20\nBrGfzBJW-Do\nIMlPpjJlzFA\nZyXHxrg-zTA\nYbM3eHylkqY\no-HlGWzIqec\nyUVhyWMVx-A\nVP8hyYS5WjU\n2xbv4AnWS3Q\noMH9kIyIl1I\n5EN4MulDX_A\n5VgRuLQgeSE\nT16_n7praO4\nQ_UdYBBk9XI\nXDlC8NyBBro\n56v74zFOV58\nyyPkV_leKEY\nPIHPbvviS2w\n0ONU_H0EjIg\nSrvRkUwIFfk\n5Svd15hqUfs\nFGWPKiI0YJQ\n1VEMit7JERo\n_AElcgYtxpA\n0tnKF_qcXTo\nV9GnOAfI4w4\ntMcUZSJ3xDY\nO9Q_5-rAw_k\n6hUiaXXj_Hg\n6LyYxpkxILE\nOe_cBDzqBUI\nwTf4njh9TnE\nQsP5Y1-eUIM\nHiPRBsFF-zU\nvBtG9eqgf2Q\nCgwNoOUtr7s\n7Wyjo_hrIbM\niaTG4JflfqM\n1CTjGKT-hDY\nOkBaZLq7gnU\nZhGme4W06Kk\nUa4pj7Sxy-8\n5LvcBgWzjwc\nWbFri7eX_YA\nIzp0m24gYRU\n5hriUO428pw\nvITX2N0hpYE\nJfsgeCwAYEM\n9ZBPZ4b5LRw\n55uK9Lg3TaY\nhIokX-nhQd8\n6nmLldKD8fw\nnEAgLZRGV98\nJKPRgXq8K1E\nAvNNkDEqjdQ\nFo16J2G4bvU\neUGtEOY5ZLE\nY7DGxkezqSc\nxjYdRu4FiyA\nvcURIKX8710\nkurx75GAz74\neLKbRagkB7M\nhF_9GQFISow\ntaOda6ZwWyw\nfhK8qpO-iD4\n08cPFt1GzBs\nDys_AAhlGqU\npWfB7jrCgxk\naNbtnYXp9-k\nKDXK5R3f01I\n75k4CoAyT4I\nR76ux4iCRzI\nQKbA0PxeoaM\nzwLOflhZOBg\n4xtCQLbXDqY\nzjXn9UGZt4o\ncXlRo6pJ9ig\n7rYqBdJdnqo\nKTIw9F3TY88\ngp6FX1H99NA\nA5CndWt2xrY\n_YMLnL33X78\nPrBVgtAeNhE\n6oxCZ2CyGII\nx_6ZpxB4xIc\n8Q2WgdOSfms\ni07yEczcujQ\nq9sjo2J6hIk\nd35M7d-E_PY\nEoikWLSsmRk\nzUCWPJk-XHk\ncJyhEAxnQ-U\n-VnQ_KpOBm4\nb2P-oU216V4\nMuG157PWMWI\nUayJYYeMANA\nsvwcgrDZVPw\n-wwDqsmUkxQ\nnl5l8Vn3Syc\na_hsjTExzbw\nQ7r3HIkBJcg\nGNAJWwqr8cM\ndwufX9GKI_4\nzeGRvFbWbz8\nFIGj7z-7olo\nAbb6BQgz0N4\n2Q7wnttjQgw\nVMGKsJi34Ac\nO6Ap5AtXFbg\nPhQsxcbo6gk\nW-KxBQyVfc0\nb_fKzher8QQ\n3WksbH_r10U\n1SPMnqTUu1A\nVuUzda9kvJA\nspy6L78o3-A\n_Hxk9-WNdGQ\ngH1kstAfb5g\nXUcN9bf_jP0\npvACjy-tYFE\nJkrovwTh2rw\nlJf8EW9800o\nj0c_RQDfjSM\nMTSpAVqgSso\nrTy_mgJIIrk\n-ZJZF6PuwxE\n8TTWKlJdWVE\nCyGOqLQTww0\n9aR0JkmZLk0\nXkvSrgngUrw\n8kcd603M8vA\nSajgVNIRdn8\nrA8NAlaMgPo\nTXlioVAN41o\nhktlkG0QuKY\nb8t5kX7k0vQ\nCflcJ-HSA_Y\nVhYxVXimdIw\nU74NUVSKuP0\n-vT2ztIXioo\no6tz9pga4H4\njtSnHOkSJxM\nGdp4SEfQzy8\nAVxDyv1h9Pw\nz1hLLDMkdlM\nKv9ygN2B8WU\naXYTDZr_rmU\nZ2SdWJJWe4I\nciue6Puy53s\nCqsCkhbCUr4\ngCRokIMgn1A\nwBHZhBnXRew\nkQosO29X9Bo\nzfyDw7VR3Hg\nPSW5cd8WVwM\nkhX9fjqlf40\nIuiKCwrTYO0\n4_SBdgdCwDA\nbICHpdNbsmU\nAX-qpuOuDVg\nbtVoaFC1Aqk\nPNwyZMNu1gA\niK03b228mmo\nsw1tJoYrs7M\nsAvGdule3fA\ni4NRgUeziqA\n8fHMMPXUE5I\naGMiaQISzq0\n5ZCaXimXaxo\neeWPnGsY-Xc\nge9ahoqNSLE\nVohdBtnMchg\n5lekLtatLl0\nXq5eXYCKUF8\nX36kqKTClAg\n4F5AGPMRwgw\n8a2aEHT7v54\naL4dQo8iBLo\ntBOZNOYMHEg\nO0PDEEFMUB4\nsMLop6XZBEw\nnqzkyfeS2Oo\nRf02bF9xoaY\nwTfbHs4HlPo\n2s7POrgTTzg\n0DPfRUFGaLE\nDawumJOyTOU\nNohgrc3m3z4\nfV4ApYBVa3w\nc5IXZhctoV0\npwidWMvvsVc\nqI14dmYhHGE\nINGcULi_c2U\n2WDIu8XbVD8\nALWV_EA6x8I\nv4U2mAwO6-4\nbD8bl3omDIU\n14t7g8Yq8vE\noo7VlD66ISM\nQPDuZ_Wq7ZA\nPl8E_9CTS1Y\n0iUKZskQEso\nd0ZOz1i5-PE\ng3kYdbqIwBE\nMVo83HAnysQ\nLZ7Thv4ztjg\nUhL24j9G3tc\nAxGMySJ6ySc\nBCSe_CsI75w\nmsWWI02CG-o\nh7iSkEafJ0o\nrIGsI26-Bg4\nfnV93ymcOME\ndUMW1YRsWcY\nl3H-hjiT6wg\nDqOU6NcRVe4\noRX8ramIWwI\nJcF3Ay4sjss\nL38j8UMd4oM\nIXyMkCDTmfA\nYPXkzktz5oA\n06qgu4XoNL4\nTvFCzrDQrD8\netixMqUt8Ak\nFC9AZFwoLVg\nK_NTydd3MqM\nH4hjg6jAhOY\nM5DZzTtbV1g\n7ML-9r4M_qk\njXReN1Nzlws\n0zHERbRFxTU\naRav_8OWESA\nkg3erAXOz34\n6q2aPotJP7w\nbIpQoVucszI\n93qTzU2bNh8\nMlUEy_9s0D0\nJye1gDePzgY\nI7pEk2hB5OQ\nwNRvgeiaVXA\nuTOoWlYv95w\nCFqO1y01qjs\nxcTK6uPPiAo\nsfgNK5f04iY\n1afS6fOeldc\nW9Rb6wHuQXU\nR8JjTOsPHo4\ndapP5W153YE\nv8CflcvxDJo\nqabChviGItk\nI7-GvXsr40k\n40NyqKryTUU\n_myZeGUaveU\nhv_mYkUEGko\nS0pCBDjC9Wk\nJ9Sz39odDjw\n7ygAdJYS9m0\njUkqho3OUos\n4YPxIpLpLRM\nrwr1IzFzjqA\nGEB8rnOevpY\nhgLkypdC6wo\nyjrvJkWU_5k\nUGfYt2Ufipw\nMm9Y9JEmekY\n_OaOalM_tcY\ntSpOMNC3WtQ\nnAqJV2olXN0\nAryZBe8C69U\nAAByjopE2GE\nadxwpSdHj90\nrlMANFZdCkk\nfyOv0TB4lXU\nQtVEk0oKtkM\nJ90JKBCDzSs\ngHJwn_JEazA\n536GqWYOHdI\nt_9GTwEOdkY\n6Mr9bQJEuN0\nns7B5fzH11c\ngjuizikJ2bk\nK2NNznJJadY\nVRuV5oMqkDg\n3cBAmkzKEBU\ngJDpyQ1Efto\nNKewr9uDDck\nStUN1G5filU\niKi2wYZNAnE\nkFuzbEylajA\ntHHqfGeeXps\n1JJjo2GcRrg\nTRCSLhYz9CA\n1rKzD4yNMoc\nD4sj2Yq5bnU\nEd8T-GzBcIY\nf0ui8NJnqN8\noY31D4QSB-Y\nIrq818Ek0Ro\nJivWELi2rFw\nYIhMJMRdGGY\nVhzodI8yBUE\nS71iST-01VM\naQ2aje8PZz0\nwBq7RLGDqKE\n1TY9TWCU1z8\nu4NTe-ZIrGs\nskrnn_M3e9A\nOVSaW3-ehsQ\nVK2Bz9yq2As\npQwl5G0ZHdY\nIagCGWtNyTQ\neFF1grhBvsE\nJqYtHZw-M8c\nK3OlytfxzHU\nzvn05TBxdUo\nGpLeHrROqRE\nt45uy-QuRDU\nAD26OcrFQOY\nvyb2Imfghkg\nMHPp7bN1kXI\nQbJIRG4T680\np5BfdwK92UI\nQqFuGUbvgnQ\nGNSkaIuTNao\naD4ZPXHAVCA\nXkNQZg7yTvw\nfRF7InV7TfI\naX9m-xzauMw\nI9NGZteE31I\n67dyb52zKRs\n32pZcw3acD0\nhw3lBV-89M0\nwB2w4t9dr0Y\nFeLR7tVzVeA\nkAKY4ZkKIPs\nyqlAjK0PVsU\ngap2gWQy77A\nCtcQNdbPsSQ\nXC0h9nx3Pw4\nAHLo7Vs6drM\nnqEL7fP4Rvs\nr2fHzai5ih4\nvo0cUbT4Lh4\nfR16yYVpcPw\npRwRO-DTniM\nAXZhl8klPfM\nkQnmD2gLRVw\n6A7uz7Orp_c\nM2UIT2nHDaU\nNQbCRZG4-jo\n4EEMDr8l_gY\nV0sQmOr826A\nkT_dXxp7eAo\nlFyh5QCd6kw\nR-wQWw1geBM\nr1N-Xby5AnA\nS1NFRvZE3FA\nL91dx9ovcz8\ncrKAy2dGX_8\n5QMsr3UxzPk\nzbAsqngq2qY\nI-6xj25pOP4\nNdaWQm_UAF0\n-G7OPYUlnT0\ngeGO_emEsqs\nYqNktpnzIf8\nZ_WhAyucr_E\nVlMy5-BAjzo\n1UbxL1MVZ7o\no6MDdOWCCT8\nij0JLKDJOrc\nbYt5SAF0M3I\nSaUYfjxV8Ic\ncvPIBkkwvD4\nDed2FG1gA0c\nq2YwvMc96VY\nDznDZ_VH_2c\nEpCp0rAGDNo\nSeiUW113A_c\nEnt1UQJ4mdU\n1Quc4FFOwBM\n8zqwJl6lq-4\nhwQWBQjvbgM\nSemxtZJHxEQ\nuYV3p1yRHyg\nHpJfIRs8rfc\nZEXNPj-4clI\nMDv-LBBUkVA\nESEKkJNt1P8\n6ikH1EFDm6A\nQ-ABzsALkYs\n_i97zAZclkI\nAAN85u-udis\n7-5kYQLJnFw\nNCjjqtamXzU\nHceqAAw60vQ\nJy8mz4gu2oQ\nay1hpFWZQnI\nQc9eycqDJKk\nIKo0Eu-Xk_0\nCvnpRyO6pH0\nKGwANfqAjNY\nw_XUAmQdKJI\nDfKYwoHHceM\n1eg0tbBF6eo\n4XSuEmqtnRw\nRcccijujIjE\n7UQAjKVyjIs\nTxy4-5uYN0M\nTrWMrEKpT7M\npOlGqiWm9yY\nIBsHlPPeaY0\n4mfQVFVg16s\nrC3OdZQgztY\n4JjOrujlaLg\nvL21VCK_zLk\n14drcivv0CE\ntyXI3CQSQJE\nibcYEwzgai8\nmS4njwcS4dw\njUYCTHwAQvw\n0yDzNGZc9DI\nlFGfoPuKx9o\nNYBMaVtMaEM\nngdsRt31sIc\nIZxYRZdq2P0\n3i-ooDJMOzo\nZKgJtlJDPcc\nEZaYMKD6Iqs\nCoXniP8kldY\n8b1jfsKFu2w\nq51BSsTrN_I\nP3imZIQJez8\nPldJ3snU1C0\nlv0CgSfmWxc\nwuM_9dYtRwo\ns7kCd2kuoME\nf8Jf9xoJQwI\n_vwllSx_Ew8\nWZ6JK1mPT-A\nYTdTD0TbEp4\nqaQQ3LLyKvo\nukNsgDQKqfY\nXHuewsIKvP0\nw80bZTK88mc\nEelncXXu150\n_0vYFxJJcB4\nEj1lqvtmcMg\nHbWD-eclNf4\nP3Mo5t61kO4\nI3akC_INsFc\nS-pmcO6U8eg\nPe5eL8LQdY0\nbCYs8v0Xji4\nGFpm2LR0sGQ\n40CAAtSZsbw\nQpmECKEHSQs\n5NlQiQfC4zQ\nk9utcDoerr0\nbbnkw5RyiCI\n_HgOQNBkVvY\n_UvKhc0wVU8\ni_9mM4F_JVI\nPui9t9vPUTc\ny_LVaQiyLrM\nRq3xZDyJtMk\nEGt-Nk6a1UQ\nAszdXufdl3E\nS_lcxLCaxAw\nNZuXsiyF5Bk\n57X3MgtTMfM\ngAI36zhS84Y\n2NNOFLGL_VE\nhegwdxt_FjA\nbyUbi9hlirE\njJeed7K-6fQ\nCA66So14ydI\n456ZpoRaRWI\nd47y-Jm4m_o\nv6nkTlU_iT8\nAJhPYwtbCo0\ns8gCo-QjtGk\nr8SqKn2AmKc\n83BVVnFnQkA\n3yqsR2cziD0\ncRj9pF0YGT8\n-ecKc5pOEWk\nM_TCpfWTFjo\nZxw1Z6pzKvA\npppK-fl9a2E\n7uSfWo-jr8o\n-ZxtmDbqDRc\nxDZfwTsiLrk\nu6IAct0ow4c\nvxFr0xNspFU\nhZvud4MnaQ0\nfrV4tvni8H0\njwjCPSUGPXU\nNEDEjJ5FyS4\nq-kSu3KWfEI\nsWgPWKj2G7I\nFFU7WJWXrvk\nQ-D1e1u4ufk\nCKtUpbJ30Dg\nsQV6nuap8WA\ntbty8Ao7_IE\no2YKoT7jL4M\nML4CcaTFsZE\nQ2GegbPq3Lg\nvcdDRblTOmM\nt6UyEPrqaQI\nGdpx9aiEtmg\n0h0FeEzxCaM\n3ge07nbMna0\nCYO8cs7VRMc\nvJhO79OGi20\n6mooNp4aWBo\nMcmlPCS1kHc\n757qJxO5D6Y\nBgxPmLpvxzc\n-pKrpqoPu1o\n4EWgdeVQzEk\nenG1CfTbT08\ngnlvKhPzx5A\nZXkKHnmKWoI\n6w4Chzgna0c\n4gftIIxf7B4\nkokQDLJ1104\nQR6Ds-Tvd1g\nNxCa0cVaxQo\nfWYs-bFK9_s\nA3Vm7zSOm7M\nerX0T5r5xbE\nXvyf7ml1ndo\nn_z0TcZkPzg\nnLDgcHxJ4Sc\nj_sD0t5L8kE\nESUdqZoRu3A\n1Ylk2e-x--8\nLJye4-HVyCU\nwzZ3S0ZC1Is\n5SRxYONb12I\nKekChFdIe00\nR0CN7Enq4Rg\nmNd16XocjBg\nUPIr8vb7OeI\nedQy5jBxhV8\noDjuY9KCsI8\nfAaVf_wel0c\nJAd3SSNqZlI\nXstux7DlrgU\naoc1wqaK8cc\nvm-rgqRKqz8\nwuzbUsy6snc\n8ISsNLwwmXg\nSqFAf6aGTtw\nSmrdaRhZJt4\n8p1gevM0y-I\n4kIbIjoVakQ\nsMrjeejmCpI\nr_tl6PA-Rd4\nlLgOrvsA9tw\nNzCTDwlquaQ\ndoKP3Il9R1k\nWAX89Cuk-Yc\n1EtA0HrUrYM\nW_fixpI0BL8\nghfqnmL0d_A\ndvIzAdqrb4U\nBCC8LOkisAI\n2vIINq7m10Q\nFlCzygStNzM\nurk-FzNJvzE\nu-PbWxhmJto\ns9_C0lmrp1M\n_PXmVLPkYVo\nQ4B11j9T3hE\nh846tnckLFE\nHZbYIyL-tUQ\nvdZ7vQG2hzI\nKtumRXjIzQY\nY5B6H8G2WcE\nCm6FChNhtSc\nwM5rRXQZvjU\nrhFw9HYTReY\n-wci2oycOQA\n9zbF578--dE\nfBpNFLngzT4\n3hOO0D1rH-w\nDSyCwx2AlQc\nS1Xm1jBc84U\nBGGyUpO3W-A\nCp2KrXtWwAA\nM5ny5tMsxrs\n1kuNl2T_mjQ\n30IrWTTMWos\nyPJlBsQE96o\noPPxArk70IY\nM16l8dqWTuI\nkyfMjDlcisQ\nef7rQniaz5c\nMnTKULzMhMs\nPibr2kMG1HA\nInHZNhmQyd4\nEYvn7xDKKtA\naNv_E1Gh-1k\nMLv1hfiUaNk\nIyv1Br-dG8Q\n4fgrzQIolcc\ndlzBcCsKQXY\n5CxYctMSiw0\nBYrS2k5nPbw\nDZlM8Wm7OKY\nvjDxkz5LO7A\nruwbVFvdfco\nobn9BZj6V-M\njgBGoS4a5rc\nc3vmsUcknhY\ndXNu5a3KmMg\nuciRaLsFmfM\nXr9GABUefT8\nr-IE6wNNbAI\nyQXi94aNwBU\n8bJzLt9AYqc\nmFA9-zsFtt8\nxBI5Rk9qYjU\noflnRQP6Woo\nreyTknNqDjA\nhA063IaOHyQ\nI8yvHZ7de2k\nZsf-encTJXk\nJPbZNEly1N0\nL46gYnVmYY8\n948o2mF4QAs\nDjlih7ELcTA\n40vMiKmqaCk\n1HBiMXpncto\ni44zbRoYBtw\nsRGrUQRVPoI\nKiwEFBgGh-o\nY69UrBaCUAs\n0qzRQ3qxv5Y\nR9l_adCi74g\nL6f07_-wG9o\n0WKopiIhAdI\ngnfp7yyQgH8\nWkEK2NyGq10\nRHlGpxG_-wM\n1jjQuF3a-7U\notOIqHsnQZY\neS-f-9meg9E\n_qw-Blkf5zU\n9FcSX6y6OCA\nqIhQJubhA_Q\n_klWa7UqpwQ\nPc4vZPJ4AVs\nEIHtZl__2tw\ncrSg7r225Hw\nhCCpL0zgYoc\nWQth5UmIAbI\nMuYLaaVqJf0\nYIg4Pcmy8ww\n6tVC53rH37g\nYlbjPR7t1IU\n3GrjR4Fib1M\nvpqzFo0aD0c\n08rJmhhQHtY\ngq1gSTF2oyA\nyr5x9xFoI04\nqLFrdv2R8ng\n91Z-_ujQGik\nWOnHL_mSXRY\nzvGA7DNmxmw\nr12JlwSBvVQ\nL6HWF_-Vmbw\nOmewqh9iivg\nXF7nz6p4H9U\nE5M67kHOzyw\n2aFfcz677qk\nKH9yFcfLfOY\nglDG7hJd9Hk\na6QMSQ9NtGM\nv0AyEpFDi48\nq9X6tpvxZyE\nis4ZtB0U7Vo\nj4onAJ-3FAM\nqRQu4tZF1GA\n7R9gbSQenqg\nHfEjIU7Qbj8\nzErzJxN84iw\nP-mT2D6iM5k\nNPY5Iq-tCvk\nvh7_WKODlE8\n29YDqiuyaOU\nRbdGl6wRKDc\n3s2XMsUdd1k\nhYvxbtiGvrk\n-uAEWFPmAwU\nlVSMG8FTnpw\nfuCe9uaRx_0\nBc3PB049HQc\n1ZJEtM585x0\nxBr1UV3kWqA\n8myhALdcfvI\nCpcopOQAWWA\nCEwyZcmwNiQ\np2CR0S7DHyQ\nFbY1BfonRu4\nFTO-jtC7Hf4\nDCF_BXNE3oM\nqrONj6Srq7M\ndJBnRYy3mFI\nx1YvX61qS0Q\ng6DnsZvudTI\nwWHOsR_cHt0\nRJePUClQaCA\n6efkIA6C2h4\n2oFTDbVMd18\nkvEgzOjGpoA\nZR9qd2jynNA\nqO6AV-o8fuw\nWgCQS7EllP8\nabyQFrI-BTE\nex2RuacnG5M\nzUtw46VWtVM\nJgAmbGwTMbI\ndSSXODCgJOA\nLrDnPOOQ7mg\nS_7ZwIV43zQ\nS5Y83cDu8II\nsrpM16MbHAE\naoe4V2f2AHg\nWf-GYKvvI58\nCtBWf0Oq0bQ\nBHJTeH6TLx4\nx7TNrjPLDBs\n164eTBYcySQ\nxnv86GOjJz4\nZ37CyC5UB5Q\nHDOGthpW1Hs\nszVtrq1Wt8I\naR4h3HHzqlE\n-_2TyCKWCcc\n2MyJctzA-4s\n05s6W7dLEbY\nlunmhq3ZejE\nO4PP1tdCHJA\nwzlxR3dKjrg\nhb4N2SJjXRM\ngoRmKynyjqU\nfPQJBHWr8zI\nPjYVxXOmsrc\nA4g68fTngpA\nVz1MWTi13qA\nliRaKtnWUAE\nPe3mEnRE-EI\nMczK8n5msJM\nyKw8Cw13NmY\nq8Wj4buHUtE\nnQ2Y1gm0fRU\nW4vPyEk5UK8\nce5cnb_5dVk\nG4ENL-T7Dyk\nIiQlYWhL_UI\n-jg0_iXfTE4\nPYkBs86HnUc\n485KJTKt6RE\n2DpotjffI6U\nSjF_DpHczjE\nu6W5OFK9jpU\ncSO2u-StPbY\nCzbL7AJIhJI\n-a1FAp677Vo\n6zx4HGKU2E4\nNxnafGrvcqU\nnfQr0dDL8jg\n8d3LDYM0GF4\nFVRaOepQ02I\nhcb0vROvmWk\nAQfWibFXtO4\nTzAEE887L_g\n3lxLsyE0CRo\nFJWgF5XnVLY\n0k_yjEiPLoc\nD4gPEFccxPk\naJgS31WWIG8\nszIOuIIbVfQ\nwIloYFMzS6M\n5QJGkxbb0wE\n11-AlLawdeg\nrbhNKSWKWwU\nooS5gVdYgRQ\nDh3WAI9JeJw\nQwr539L6kCI\nkdrPUm5zBqA\nxxGmwvrt4ZA\n4hY7f4nOQtU\nZ0AxmKelYrE\nMrrYu07MIbk\nUBWIoJF2X4A\n5Io8n3JYNUY\nkMcvRpOOIwY\nbr2rj_3KW1A\nu6HHla9ApmI\nJnuYlFhXWsU\nexu61pb5X68\n0C-qxjiDP1o\nHbgLp9_yU_c\naa0NlkF7Rug\nvT3QXNKoZKw\nDX1p8C_FuxU\nN2s_Iij3Xfk\n3gD5egw3-Lg\nzhhLFNr_Jio\n2SJ3eoUGXy0\n6-s02HyO3XA\n1s-qZUCH3xY\nKJ_8vD4Rv9Y\n2w8LYlDlls4\n7KByxGMoiO4\nNpjcjrKoeBs\naNA-hjvEyUY\nukWCpVUXs_E\n_3bYh7CffIQ\nY--v_LdWlQA\nNkzG9RZBERE\nKcmz-QxexRo\nfHerVxCsbyc\n7RBqyBb-MlU\nWBY5O2nTvSU\nzBLsO7BKVHw\nOvQctA3xsoE\n1D8CfzvSy7g\nBSWKnZ4-2eE\ncrI67brUX84\nt794eVHOIvo\nBUqJMPAtmdY\nYduLKKYfgSk\niw-0Y6HWb9Q\n-1zLU5N6uBU\n6eW1ht2HbtQ\nSw4pvbkQ-jk\nU5EKQ63wREM\nL-zzxADqlu8\nE9B65UGKQ5o\n2i8C-GOsHo0\n6CmxSs6Mmx4\nv00zKyXbfD4\nDu5YK5FnyF4\niVXVD0KxSug\nyjw_DuNkOUw\nvlTPIYTd32Q\nGeAcikP5N7M\nqQgyoHsknIk\nvPpNgsJp4DA\ndgyue1tT-uE\nQB8ken8pZ_s\naFz1y45KaHA\nG7gklW3Xbn8\nxRShAxpUZ6Y\nQMBLWE0pu8U\nhT_CiaTcnN8\n1jEe_vPgNJE\nqUammhHxd1k\nx4L81QLGYuM\nSmMmQHR_F4Y\nI8-3VpZrBww\n2dn_r_sgBEE\nQAO6uTkGpjM\nKq3TiuRC-VQ\n4WNq9Yy9m_g\n6nSu2qhTmNU\nHVgu-41adSY\nKb2WClrbrAc\n4fwQKF64AWY\nUWlxRKXD6sY\nl4S4IBACQCM\nG8_ch6wsWjs\nAp8p92HCAbg\n0IuOpt3p3WE\nZ0sFhnkRCsQ\nV6SMgd9L6Z0\ngoEiURelfsM\noNuGwa5Kd8E\nV-vgoh3ukPc\nHTFjrXA8bFI\na_VIjZa76jI\nz82GwvEQ3Vc\nuIsdG0ydS5o\ndHXVvD4FFas\nX4lUmgN_ByQ\ntJ1uXsPXyao\n_0FLP8sxv2E\nyCHoWsMt0LY\n9JQEbj0uh0k\nw6YTq-3hmnA\n-AZg55qXj7U\nO-W3C2RQduY\nr5ilcq9hUZI\nPzTICfN0A-4\nC4DPvNXtOzA\nS1UpuPvAUss\no5NPINxrB7g\nF5NFCYDB5hI\nrsi2WcPIcQ0\nIfZmBGcWkLI\nDYPR82c0v00\nj91qPMHaqbg\n1bBOUr7rAHw\nCwgIvhYyeTc\nkJVKPHBFNF8\n9Wy-6pabUwU\n3jEDXJvOCs8\nSZnZMhfusbA\n_BK3aiBX43Q\nB3bUD6nAKvU\nGM59PdNB7FI\nGcs2QIB_X5k\nE7XIYOvcjuE\n_iinqPkm6m4\nMybqJCvM1z0\nzZg6j228i3A\nvi8Kaoib33Y\nA3yrtArn5zA\nV4hv2OSD3s4\nc6EhzIb5NKo\nDka4AUVm_j4\n4hA7ILi4l68\nq0k-b9FeGFU\nM_h6qdnNiNw\no_rv7bmEDm0\n22LBB9jJG60\nrdc5PXKBFdE\nS_rNBw8E98s\nN1UxH6P-Fgc\nss7eqc_SHsg\nFqbR0-PbFOo\nLjSeILLCe2M\nIKa2Mr-yHnE\n70eKt79PSQw\nY5Y0SYRZRtM\nxHtAfA2ctBs\nH5LLqPyF11w\ntMB7LgnO2Wo\nHUPoWdZ1ZdQ\n6_Ed23ettio\nFMbSH8g9vsU\newbUaMvCaYg\nvizu1RigaBI\newANNniIEhc\n4fKRyf8BI-Q\nrKQEYi53rvQ\ngbIKuFaDbV8\nYoI_YkIGXXs\nx7TPeGns0N8\n-krDTO77jrY\nan5-b_99zH0\nuD-VMe03AdY\nGOYpqqTsO-k\nfgbjvvCPa88\nA_bC8fF6WZE\nJ-D8n4_fd6Q\nOBXQr25dHQE\ngA-VU0mczSI\nv3E4s7VN4xE\nA949a8j5Boo\nZbL_db16k0w\ng0nhEzoCkJo\negC6XhnfuZk\nMY-ZusWqyqs\ngaz2wRxRZ7s\npgkcX22u0SI\nQmSSFYFSA00\nBf0HvoLXWdU\n9aIOR7dl2CY\nAajX1xvWnk0\nS1C8tqyy3oc\naYbKjHmTdMw\noexJPg9rZqo\nu_jemmhoj0Q\nNCi4QNKpVB8\n3wLF8oDA3ZM\n_t38ENQ9jlY\nb5Q6A_1YyHg\n-sD2jY0KMA8\nPlJ-x-JNEj8\nANTOMowTXZU\n-kKqgjrbb6I\nvKuvku8JEq0\nU5nphwXr8VY\ndP5e3MxjRiw\nLN8iHxuFSts\nRsGRrlK84zM\nVb9wR2ibCRw\nF3yawE_0QaE\nYtceTJF_VhM\nz6JcuVWaVfQ\nX3WA8eZ4Q_0\n0Dp--gKKMJ8\nyWSRVYU_JMo\nv9UIDDlnSgA\nKe-MYW3XORg\nNIDabDkcS8o\nyprYw3FQUpQ\nw80ZSg7kNbE\nD1IshjFWDJk\n7p0J9wVGwZ0\nPmYdvwAqwDg\noK1zfJausVM\nZKxqB5gCX6E\n1N81Dwye3VM\n3Cf6HfBCcso\nE4rFRdmeWqU\nSTfoetR9Su8\nVchw3dbVeUo\n9EFxRx8EbDk\nUUAQ3T09_os\nPyUqYOB4ey8\nALO5aag-ZIo\n9fFbDzUOD5o\nHiavOVW1Iv8\n6BBGO5M_2A0\nuCG1EiqEAEg\nKy6GupHDuOw\n-7cV5cWQmxg\nOFJKL2POF5I\ngp7K6ZwuDow\n81oozSLS2CM\nPWihKQVb_aY\nZMIGwSNQA4Y\nzdF8hHVUzM8\nQxzrv4GCwo0\nZ_5l0p0gmvA\neqarJw8A2YY\nfp8Ob7kBqJc\nkoahs44agqU\nEE2FUs9iI0A\nmiE1oJ9ysUs\nsFRjPMAxn1k\nMGuKcmxMPQk\nZzkELXr8siQ\nF2UxQiUoCD8\nQymZP9taonU\n_pZJUgFokcw\nZ8lnce2Ij-4\n7_ClXAzhDQ4\n6pUt6xlMorQ\nRA0xUXiz_dc\noSEQnREqfF4\nMpPwsiwPhF4\nofrL7_UA04k\nbocu5uL8siM\nW4zjAZcHUaE\nyHo2Yx50F8c\nPeliEV1oD2A\nZRdnTHyJQQM\n2c3-0yhNlfI\nR5h3Pynz-ts\nSdSQJTSYXJY\nOAqqb5FC_a0\nyU6yKmqhhp8\nyebKBYB7rEs\n8nSGhJRDjX4\npf4EjhjgisM\n4MWlfC7QTDs\nsa2LecdGh5Q\nHNPPD_4oD9M\nkNtopT3-5t0\nYq9fKm8q0iY\nsxY6Jc1MZSE\n6R2Uu5x6Imo\nVwkGKFFk-F4\nAcSDeQhGGFM\nLK-4Dmq6Hs0\nNX12Wu1uqbI\nhH3peh07eq4\n6Ua_T32yaic\nV9E9Nce1dC0\nqiRW4OvzELU\nlUPTOiM_7CM\n2jqk0yyPkrY\niwryTZf6bA0\nGM1x6UcMp0Y\nIznFYCiGAPA\nuh4bsAP7K4k\nqy58BaeEMyw\n5W19mLb-9JM\nsuYDvQwikn4\nrpqgDDBcmcI\nJhzm2AvUGHA\n31fx9aF04ww\ns6moLb_ieqA\ngFJT9ziRAUI\nwmu9xg12xuc\nlISiW7wcIVc\nlJ7F2kWLGuE\n9_SMqU969fw\nNxrAVHpoBs4\nCmUXU3VLgGI\n2W7WM3CuXPU\nOCYRGGLywdQ\nEBu9PvRBPos\nqW7LtKsIfHM\nO3TmokjuQR0\n-Ian949JzDw\nqDQo4nvQ2yw\n3rb5s-BoCFM\nKVnOa_HhgX4\nHliXkWOMgaE\ndPaM45IreF4\nHV6s5JiA82g\nHUZ-rA7L0uk\n0NAWQvMZpO8\nlG40tBFlGMQ\nMyzSuy1v6DM\nhhjLmbn5YoM\nLeGBkG_sRNc\n9qNFpkUBSro\ntQ_Ry1KTluA\ntgBurIq9lGE\nvAO2D0riCDg\nowUlPwoEfaM\n3w6Z_-R4Kk8\nr5ia1XDzIAU\nrc5v5EODszE\nbqy-R0SemoM\nYOCEHKSgwlQ\nZrDL3HQCwE8\nxC3PGTTjX7E\nmAB-hSPmzjk\nMg0bvyIEHcs\nGi3K-CApAS4\nRSl6bwZabjA\n282_VCffiTo\nVHj96nAjRn0\nkVbmTKqZ31M\naPdxMGV1Y28\n2kdSBZ2QieY\njcmTZfv5z-k\nhq4lKhTXzXQ\nrdWIo5R10CM\nZyMP_jN2Veg\nMFN2fMP05CI\nS3MGT2fahAY\n5zileWIEgoQ\nKuy5Qgp5pvg\n2sX5DMSCipI\newiNzru8Kek\n7sXlyaQ_ZHs\nurbo6F_qD5k\nfbDgv4huUp4\nMWc0I1-Sfj4\nD7gk8nagjHU\nH6jj52hYXeQ\nFFnlaQlI1So\nogUC0Fcvh7g\nUkPkaNawTUw\nc_SJMeRltkA\n0yAYgv2YQ5k\nNirTc-GvKLk\nPkUS3Y9bR9s\n5k-dlqqHE2M\nqTey0qxMboA\nn1VEmXiaFY4\np0cf4-1zuOk\nrOzJnj3UmNE\nX2X3DxFAFlQ\nY9Nt3hlMUUI\noEHayxH_YT8\n-t06SZje8O0\nz7J95xF4vW8\nDyUus5cUe08\naHI-JX6Q3Xk\nrHIIMIBMvng\npy7xqlpvCIk\n6puVCaR2E7M\ndXk2wGeBUHE\neQSqgubHzn0\neB-ldQkL--0\nKiw89e1mHpM\njjwg2PeDUxM\naW3-E3My-kc\n7mm8aQCp_oc\nX8w0J4y5X4g\nS6yZ-K4SHJU\nz7siqPhc1qc\nStoThowf7Y4\nE-EDJ6Z8mS8\n8uLL9nYu9YA\n6qXs7Yp75M8\nUU_Ly8gXV6M\nREkL4uLFnPs\nST9ouIvHftA\nntqVq02V2v0\nLMcBi9a8_RQ\nb31BhA8om1E\nI3G-1_l97K4\nWjWpGhzYS6o\nG5aoRyZ-QtM\ntEyY-ijoyaQ\nHhmpYA22oio\nVLm7BuSsFK8\nPdmlJSk6QAk\nd0c6KWKMAF8\nFbDFmWdG3NU\nqoXJJin1e7g\n891-YR-fgsk\nfwITaMQj7S8\n3TF7zAiuX1k\nqHizQ-En6Tk\nN7wkGjBcjp0\nNWNMrmwD7Xo\nQteR6PIwTNk\nfXn18S0O52A\nwS93oTI5JY8\n9J_YOz9jvG4\nXP2jPEAalOw\nljzeZK56UeY\nsxGRFqybDw8\nWUgVUfYuEiQ\nJXRw_5ug68w\nVJECUbUadpg\nQh5tZM4ybhI\ny-qCvfXMTlg\njyDUZd-Orlc\n944BOVL_y_U\nQ1khILbP8yU\n5oHNA8muC4I\n2k0S-F8VIhI\nNadEkwOLA7k\nS0X0KScmHvo\ntfUt-J2GCmA\nlQm7hpsJsPA\nCVjRQMnURtM\nluE7cUCzQK4\noJT7pQyq63M\n8510wKZLa6g\n_nnGxztgrQk\njfhEIIK-jB8\nAhcxeUrWTRc\nrWlFWMR9MfY\nPiL1okP-jbc\n9L-HJ7BVR6A\njjPq-r91oB4\nT1IyMJOC0JM\nRu_KziPyopw\nZgeAaV-OFvs\nG-I4i0ClrmQ\nPf9UUPDJl9k\niM0XndiNfd8\n_v0aLo9ualA\nZNQVHnzKvjg\njWtYVevvApk\n0kM0c3Q-hHQ\nUpsprkCDFOs\nKhS2-vKr1JY\nJrjycvHR0iI\nqlUJueukntw\nfutultLrWms\nBfF5J0uSC3E\nCa273QV9ik8\n-Kztqrjp2yw\n0J4K03Owgwc\ndRVq4Um7E5Q\nZ9h-ht1mVkw\nQSqUVzkUvj8\nweEay_Y4EeE\nWgRUpptAcAA\na88UYg3uwZw\nVbQOa65nKqU\nAL5i8ko_Blg\nvGqM44xx4zI\n4x8o78xHel8\nvEaLVMOwHn4\noyXKvCRzYz8\nyEqjnlWEIcg\nOypxsTReBOM\nmI6O2d4Ieok\ncbN7TQSGYlI\nr67faKKQyO4\neOYwXi0B6KQ\n2cxG6iiqEdk\nm3XsVwEuULw\nuI7ijvSCHcI\nePgiRqRIdwg\nVGcOGt-OV7s\nABLVvVkVtHo\nDotrfvKEyiI\nlXKwuj1pqrM\nbMblXxTNWQg\np7h8oBhP_lE\nWtVDF5bNkqM\nPFjN94zKbc4\nKfxQi9_BfHI\njEeRRb8wnqQ\n3RWHkM-krJA\nwZWNmL5VsIs\n6PrFocPT-Rs\n-rsImQShehk\nSbtm5uE3cCQ\ngFX14TEiBOw\n0h0S6EmQWrI\nXrujkDtd0iY\neK20uOpc_AM\nM9CgWWkwvdw\nT0gaeDWYHr4\nP430SxnueE4\nqURMZDMKpxY\nF0xKJcGIQZM\n1DNNWWORGo0\n2k-G7TPLUfk\n86mBBMobUdY\nKq3ZaI7ccrM\nBFWChdiNlEg\nSpg3JX8dRos\nMZG1HbQ3KCE\nE-F92GOLVcU\n7S2ffMUk7iI\nufllQr0ClXg\nVC0PPBrYBco\nmHGHJwXWh1k\nF8UwjJzF4LY\nDVA8vzEbm9Y\naZJG26fSy94\ntNvDa9kTDUw\nVO_llDPp0kY\nzanh_ElKfdI\nW_aGbCWYX2Q\n62Zbtotq0B8\n5MpwO0oMUBY\nfar9-9beq-M\nfrwyMLRko_8\n3mhdNBdzHO8\nKD6FsEaD-3U\n4CmmKmlXD9I\nCeJQF4L0hx8\nZufljc_8uLk\n2F4ExP0q6RU\n1eoKvx5X9JQ\nrwDDgGuCVS0\nThWvubM3qSs\nkTtxe4pWpfQ\n5WvXdaXIbYw\nRKlctKGIpsA\na1dqJn-r0-k\n5tZeutuxfJw\nAySMP0SgVFY\nDPU8L2vJvsc\nyriA_JXQ8dw\n9TwfC7_M2b4\nKdBP8sYgMT0\n5nWugkh7A5U\nKqdi0X9vJ0Q\n9EF7lRxLbtg\nFbI1dmDdLg8\nz1PcJZEi_js\nZgAf9AuNc6Q\nA1-XFXX8rU4\n6rVFFaIyfH0\n2FlG1Z6jY-0\njL6rrLaw6rc\nVKl41s51JvE\n2zHHkSu1br4\n2Qz0AREgsdQ\ntFkpixS3QZQ\nZQHhiZUNM3Q\nRVVBffj2v8o\n8cjxrd4MMMU\nXgZDk5PcLYg\ncUFdtdKFaOo\nCMMXbRt2zLQ\nqIsyU3MH-Zw\nUwN27CAbgFQ\nOSEHYgl2-_M\nxY6bhYtH8Pw\niNiZJmh1ALI\nnf_4vFdS80M\nDp8y3CiQDgw\ng_HrR50Z5LM\nOd3sXn4mOF0\n3hPy770hf_s\nbOge5t77CLw\nY8AM8s9zoKY\ndKX4NN38vpc\nRcjY_I91okg\nFzemDO1TITY\nWNU59WxKw-g\niFzuPtVopnE\nARQrc5qPDPE\npWREOi5GPZ4\nTAN8GthZg7s\nCw7Ed1B3g18\nPlKDQqKh03Y\naNDj-H1jxV0\nfkiY6TBT4mo\nJXyisZLObHc\nOfkb_7EnunM\nAKXKkeLQWac\nIpoReT0HjsQ\nIgKQ8z_xNhk\n1pzV9GoSuys\nySC245RIiD8\nHCGVmIe_V1c\nYJV5WB1wxdk\n6F_Wp3IlryI\nmXvst0jlR9Q\nNmSNUylSNvo\nwTqLwoaEUmU\nzSh-Wy2vvHY\nxPk6RGGwQC8\nXAVgIM5X42w\nG1uBkHVIGfc\nAq4LMaeZAns\noTd-6xia-xY\nUIpSn7Kma80\nOj8S0fNum9g\nd7WraA-roN8\nWO0KS0mbu80\npaPWv3HjXAI\ns8tXE43jYho\nI-Iankzmv3I\nL4MyGhbXKZU\nQ4r4jGPegHs\nsjEDF282UvY\n-pXlicO85dk\nTYJXBdLgPks\ntbWLF2J10xY\n4a_1wkseCkQ\n2Pl7zNuA-vY\nsJALMf17QBg\nTOzf01qWO-Y\niIPeQxzLVlY\n9H8h3YZTsmg\nAqV77k80Iw0\n7yg4b79rNQY\n5BL8zybMd-M\nQ7r5VtqG7cE\n7UANVfaybow\nusoH9GnfJrA\nVq2YQ_fXZoA\nWn02SYyYhRA\nGr9p1MnLMj8\nx6PMTIOZY4A\n9JVQzj-iWI0\nj1DtkoNFVHY\nWgeM95snEhU\n3aBcNzAFnxY\naQ8UQmMypws\ngcoKGdZcf7A\nN5oKlOWxzio\nq3deD1S7v5I\nDRTuzzBTrGs\nqVhR3cLu_zY\nD_D9eQtLpCI\na2RgwHcY9ZM\nIrBymbqWH54\n8c-NNYNy5Bk\n3UBXU1m7rkk\nAvIUAlTg5J8\nimITvYE-QBo\n788ZdV-LT0U\nhMYdeT6aOnE\ngkeddnrEeV8\niVzz5FIaCkA\nNL_vaHjmqC0\nArOB5wVIf-Y\nYYZSg-BBAmw\nEG9eUCA_MxE\nrLj7k4gxnRg\nvBAK4o8zHF4\nwaeNIUB5wz4\nc6pX60F0bsI\nDk2BtXCzdzc\n0IWmniYe7aI\nD56dpMQVGTo\nxfF-ZL3xvxw\nbYO_AhZaG24\n6Dg0qouE5Zo\nWc_pikEIkcQ\ngQ8uzN8MSfM\nd4QJy7RMxok\neng2A_NwG04\nUHwiWw0vfps\nEqYD_u86J8E\nNIZSw5HFr60\nWhsSP-hValQ\n3U7pCM576i4\nr28aUcqqgbA\ntJ4H77qrLjI\nRRDzDy5wLh4\nqTjz5LJwnOw\n2UuM47BOqNA\nshal5AF2Gxc\nEq4GnUgNeMg\nupPFFVaVSY4\nZrPvUd7E9HU\nhxi06yeErvk\n50CeayOz-rs\nwkqss9zZOhc\nieXrbTpZsvM\ndfK91HGGVL8\n1bpUlGBdKyE\n1wWk7qN62dI\naRJXM-rYZQM\nfvXLs4FFSJc\nwLhu6Zy6ixo\nnxDhsiiBH7Q\n-zOoQRf6DNw\nPWebnyN1kSU\n6ZUg51T5ly8\naFIOmbHlYo4\nH_hW3ML6Ips\nDbJ1V4yEZP0\nPniQ5j9ZqQk\nJ3Dc6UV1ML4\np7zS671gCo4\nGIASYqV_Xds\n6sfgXGPtVQk\nKBLBKR6bQCI\nI4tqrGqT_b0\n7a3vbSR4qWU\n6OKt2CZ4ULE\n1JLugcZa7kw\nMuLtmNixbdw\nwQ0QXBmaY58\nvqGsQEGHl0w\nU9qK-5bDP4A\n7hDIu_ZNkbk\no561o4AQdXQ\nXHEs28Z99so\nTUmckZQBzvk\n_-6IvJMziRc\nckSC7ZLyGG8\nzZoxnqqZpDQ\nipt7yPT4Lkw\nJHvgBh9ZC3I\nm07ShpSpKJw\nZoWhq3dNFn0\npsA_jrGe1PY\nPkO3bgn-Qgs\nFYeKDtzDy60\n6q5DmJCpaC0\nWItFgdMdxDk\nLUjMzKQtq8U\nfpJjOz1Yy8c\nz_98hXRRn2A\nxq5lZuN6geo\ntr8peYDm1fE\nF9M5eGoCnO0\n4RPigjaVctQ\n4lWui2b5GBI\nnuhGjqaBzes\nk6pHxD7qB7k\neO-4vwbIJR8\nPJze0WsDW8o\nq9jTg_91KxU\nzgEsN9EckAI\nMcQ2XFcPCys\nvEOtK-qX4kE\nbTpRY4tkyio\nyPD2Vq50JlQ\n8zomTUuLank\nIoeYkolhKYM\nNVSG5djzkdo\nC_Emdu3KwHg\n48DTcfNRIoM\njFjy1RkmXUg\nJPjeOAVkSe4\nh7ZUKB_zYQ0\n7I6z51iYFg8\n3D0gGgMTylk\nLF0dTioXk3A\nEzjFE2CnTBQ\nC05qUz1ukWo\nvnh7gxa0z4Q\neVzxDwu506A\nrd1w9BCiy1M\nPBeP9JUk5cM\nMvrl3jeiJlg\nN25MiYpmMVw\ny41KY83U1VQ\n0t7ZsuI05Uw\nw_iXru-XxwU\nP_zAPM1cQdM\n49BRJlMRZ18\nhwI9jLgUnbI\nj76FbuAQUsc\n5AMX5PaikhU\nGlrYbmdZk24\n56_IiZ3k0OY\n0OmDcj8U3Xs\n15lEWX16LV0\nK2bk8aUwIis\nC5o1JYo-4pU\n9AEbJDyNTSo\nPY8WEjeHGTE\nXnvMGSn4KHQ\n79PCtxPbMlc\nlGQFgsEBe4M\nl8L0q_dnoKA\njM2drh7uhsw\nuyMQqUwKVBY\nmos7tNLWRz0\n7YpyRO7N1YI\nep-ggf8CcX8\n4YW2E3yaMjc\ngcqk1NcWIGQ\nxzPgefI2u9k\nb8Dp_WyoPSU\nv9VqcsF7s5E\nddhfpfnwgRI\n3S35Cy1GMMU\nSkefiJco10U\n9qtw3cXqWfw\ncOy7yCnHMAE\nPP4-LYtVpRg\nEfX6L0wDT4Y\nAl7y7aRrASE\nruaqMoxwvjg\nB4D0g5tfp7A\n85cnCW_4LIc\nMGIjofJUXyo\n8Lv0BuXTgoY\n-Nzbwerwks8\n5lgCxWubUnU\np70o9g5gcdY\njlCEAJXSwJc\nElidXD2F2eo\n1sz2oWajICY\nQH2Z3rBA9C4\nL9wacy030Kw\nwYumvThtFrc\ntdDDMrzq9lE\nMASZNTnZals\n14I9e5jH9bw\n0tg_TU8EfCs\nyZgf5wSULog\nfzG_88hJcqM\nPlPRa95iR3k\nlTm0Gql9HME\nnRkXwphpaQ0\nv5YaaXLJw2A\noMpbWgx0Cdk\niWHYx50w6ts\nVuGGlc9x5PE\nZhbolQxBK2s\nwX06J0jh7BU\nMfM4qCHUPH8\nyOrYFxd4En4\nlJmafWivAtQ\n0gKYY9NCTvY\nLJK2Ox4UlM0\nwQS5Cu_bGs0\nw0dNGg0OiAc\nLGL0Gz_QgDk\nxg5ZJAo_1v8\nGDpzofT_Pdk\nekbIXnK0_ek\n3EdXrMS1gJc\nI51Z3trNfZo\nGqa-biM6qKM\nkARcfM_M6VE\n7szH-UZx2JU\nuxj3cKArYDI\nwLGpzRMJsVE\nHeRIwSpHZCk\nADqmUtPjP0Q\nz8XPccwMkKE\nNg06lmNU4K8\n7fOizvx1cUM\n6fs-P3Vq9BI\nzpvTZ0G0UiM\nHIOSYqainIs\n1xccuQBsJfU\nvuvmITfWFuo\ntNYSeyXRkiE\n1aZDrjQGvIU\n9cNdat9JJuE\n8TcZDzWEVDM\nnTAYbwY6oeU\nRuFd7DELPYc\nZKuscOD0LOM\nXv9ME0TfQjk\njsbjmWo3c38\nbu5m4sr6e6I\nhD7KaqFoSq0\nAVzJme0mGY8\nOk3_qMNWAo0\nyGrvM8gN0w0\n9tDGIpP7Kfc\nKBmsdzLFpvc\ngTkzaR0pGgE\n_mnvg-i4Qks\nCpA9NJEL2EM\nt1V-lbe6gII\nw01pKxgINao\nQABInjYQVes\nOBQcsOUZ2u0\nDkd1ak3tQ5s\nUIkY2KKWmdk\nGALfESO3afQ\nljOOPtZAk2c\nUwhUd2cPOYE\np74VOGdtMTw\n7_UHtWGKsuc\nlLScgb8ZP_8\nDTWggpNq1a0\npJFZLCoqB9w\n4ak8huhsVKc\nqhGsK4yvxmg\nG3qOB7PGBXE\nEBLS3sCB4rk\nRuOjVbqLiZU\nQ3JqdmUTsLI\ni4NIiCSEiTg\nuL1Q5YZ0Ejc\nDIlHR2SWW9E\nk67i1cISzsI\nHzvL4MonF-I\nAcvWJ8bgA8w\nfoQnR1eZO-Y\n3tuV7dBxBPU\nGXZSat3AqwE\nhDA_Bn7UhlA\nUPAs32xduAM\nrhfBzC5A79o\nGsP6mQAcxj8\ng2cIMCa6N64\n_ZjTuvkIbcg\nWcPbZiPqUlE\nSLC6o6KPuro\nwQR6vm3kDSI\nyJ0RpuixpT4\nqkHBpSypnHI\nurr-Zn5nq2w\n_GjXqTtZjDg\nqNXYR0fe1Lk\n2eltEasOEig\n41v_zrra00A\nnloEs-bbjXM\nPdYD2Sdt8s4\nCYs5HBcQBNc\nw_ZDbyiJlF8\n4bT5OwL1UnY\ngvTCSxLPy0Q\nBiVnGF_72u8\ncNjcecvssqE\naFQabbA_FMs\nFpFqjfqGyRE\na7t6tQVX7T8\npxQ07GfWFjs\nlKXUBB09y4k\nJftv5w9B3So\nAoHVBb8Bc_4\n6IXjYpPtjWk\n6ya9GVSPiXs\nFETaRGJH_JE\n6PEQcK6G_4M\nOo67jMp9UbI\nhoWEYBSlctc\nHZQlFhnFVjg\nyLm_tJ-ZrNc\nD01cKQMu5Ew\nT15XvRqmhqU\n8gUP_uUpmSw\nRKCrqtbqvio\n4XHwJQfIyTo\nAdmsyTzM7YY\nDU8nLYGOMIc\nb8bioz2Eb84\n-c5QAS76N_A\nOm-y-goxpYc\nY1RH4S7GPLA\nRyQUewFDEx4\n_w2nm32Dbg4\nhaSWFp-ToRM\ngwdClG0txYM\nNpQNeUSJLjI\n7mO_TD_Co1U\n042B8vTl0ig\nIGDViR244hs\n_LNnkttaKXo\nYQxXtdN7j4U\nUoDOFJsC608\n_i6Du5s9Il0\n2uVdxC_gCro\nwCFnoBDeauY\n92eioWPPuOI\nHcjPZqjGuFA\nRXkLf3ucqIY\n3WIjC39hJF8\n5jsb1xN8byg\nG4DcKX_XRA8\n9ccE4YIG76Y\nhJ9hMyqKcg8\n_xUiCNlDeJk\nUZ7PTLCQZwU\n_rCRxCR06UY\n4xLa-Rn-gdo\nNRYvrDdntjA\nvAfD-vF8yss\nrMH3omIA15k\nY3gJGuQQPnw\nedaHyeIxzcI\nD0bIbyAa_XE\nu_G4el-62Ik\nJv7PzcVfULc\nuzhsjyHUBt8\nbEpL6Mt_jrk\nWHcarLLrz9Y\nvpEAO0gIAxE\nfIfQbocblZc\nrOu9FD63Z68\n0QLGAhQDgsE\nIQVt4ZtUzgc\nUovtut2ckMg\n9eI4mt_lKTw\narzwnRoAQP0\nZwQuo7dY_Dw\nQ2x3eUH0ytI\nN7itFdNE2Qw\nW8fjSVywGGk\nU8fgto8IZLM\nZ6cDbMLcxQI\nNTdHPAY7rOE\n2ADaXnuG-YM\ngWGhsJWFOrU\nh5f5GgqVWes\na8mImo0aNDo\nzOvMmwnFVa0\n_4oM1Sa1Pb8\nza8FVqsMmZ0\nUWS3FOpdFMU\nbfgJbZHRes8\nKo8vqBmZRfE\nlS9V0oDrPfs\nUVDRpF027l0\nqSd4Q3GY7dc\nLABMISLl7Y8\nJf7jVM7NoVE\npR8Lt5DyU88\nR1zRKVLsmrM\nl0zmCUVB0Yw\nXTjTXskLQO0\n6I5B0jyLBUg\nKJtfL83FLj8\nNRuVbAAb_FU\naOCAfIWw2H0\nBc_4HO3jI1g\n25UN_cgKaxc\nvtdnjV0Q2fE\n5RFz0uu2ZuA\n3ZL5il1o-AQ\nYo8mYWU0oTk\nC1MsPeGKyMs\nPvva0sdUEkc\nTJa_A5cVd-w\nzkRkL94VQxY\nYNZmZ4ARr38\n1IaDQdo8x1I\nhIJ0gMDZT_4\n0osA8jKKotc\nuuNy1Ibdk_Y\nMaqzxDPwOB4\nFcSSNKWcReg\nu4gz2yNW_Go\nUpgP8aA8ABE\ngxuEGIzZrGc\n-19d_T472co\nzHwUR2EqUO0\nx2S78gnCkRg\ng1r-B5ZGZWY\navdSnNmqs7c\nuw7rRlJvEl4\nBIg5_09Tcf8\n7cZ3I9Bn9Rg\nSW5_v_8r9VA\nde_Dik7HT6E\nqN_sGdVG0Yw\nnS4Zfx9BSX0\nuAroGB_YCmw\nXgGyrrzTBz4\nTuBXSOUS-U4\nVkD1dhWMYts\n8xgUm0plA8w\nwQj8uFwQP2A\nmlHF0Vv7yEc\nqTj4aSPwTBk\nmjuNE5wyMzY\nzQf0jUhqJYw\nZVlfttyv5js\ni_zdyGw0tEo\n0hNbRd78jOE\nj9FpQjinKMY\nmfgrntgrWTw\n3Bz0cqx4ZyI\ne70y31Gbhpg\n1rd6owpXoC4\nS5CmrYAWxh4\nROf2H0OX39s\nc_5924m1jNM\nI8qfzVFTQuo\nghUFMbHmw8s\nOuQTes47k14\nUZ2IjJCsxxo\n22xJjwTRC10\nGq43zgK0T94\nA7mWnsrRu6w\nPXSMKQqZjaE\njFWnVdsSgxs\nJFAAK6FfOSA\nwEvSZB_Dhqc\nmZHlantNtwg\nsWjVe9dMRHU\nMriW09XMJeo\n6TOx7qsyaxU\n0L1sL54G45Q\nO12Ve5AFu7o\n0igqAlu8Oqc\nIEaqLI9HAmA\nVs0CShp6HFA\nSVTxvLaac6A\nGaUGoueAS4Y\nhlWL5Az4pow\nY0IXtktHTgk\nFSXijk37oNs\ne-NMI6o5ynk\njG7W6jwCSd0\nh3AqOR2Ru1s\nbRehxlYZ_CE\nHm8hcRPGyME\nxaIlgOMjspo\nNipqouLNqAY\nz7tcVyV7wjw\nirnju0G-lBg\nxxl1Hrw2eQM\nhR4oc1us1aU\nBM29Ze3d_cs\nKToHdILd_p0\n29Pg9Oo6P2w\nyISManYcWqU\nw6ivjvOqBy0\n_QKwR14HKf8\nWdS4ZMa6tXM\nYpFmmzisOy0\nh41ylpWhV1I\nwxhUTK7xbz8\n-fRY1b6WAx4\nIT4vcwIvSCI\nzyaOnPSzcPE\ngjmt7I1OJfw\njMxYv05A7B0\nDLzp0YkZnRc\n8v7xHt-CJZg\nP4aGofKtJsA\n39471A71y3w\n6dA4C1NKChE\nTgujxmrRUlw\nwR_e9lxh7Ds\nfZB65wj9nz8\nFHiB0ZTO8fU\n2NA_wZ2MWBc\nvId4AoKDg2s\nBPuGsFSTy0Y\nQDARBy0jCgs\nvozjOGBUz2I\nCeX8drgioLs\n03uEq5dKcFs\neUogxXRPC7E\ngQgdweybPwk\ncPVM14Bnf5I\niNg7uRYtqLA\n5aY5jTL60pA\nDpA2bMJlDpI\n9F3iBMYvQOs\nj2JFTz9KQhk\njQp4IlURoNg\np2zDdb_MqmI\nOmdvu0f-Wuw\nouQG7Pcq1S8\nUvRaab90nQ0\n9mwgsjG2Vtw\nrmpFmJfEZXs\n_t4L-ZdoEr8\nsOBIrjgDZr4\nC9PYzGyIfF8\nZOfisAF09AA\nvaJ2yQC_ktY\nA_HjMIjzyMU\nLzJ1fo-oUpk\nUgiK8333Np0\nFFnyDGETjzA\nES20xt2nU10\nUFFaqQYlg0E\nTm1fX-cqfxk\nL1AHpY6Gcbs\neAx_rXKiO48\ncIesHaxakmU\n157mo2VaYqc\nnHcRQhadzhY\n5VmWe3LyUDM\n81MNbVi5a64\npAwdeWy9yYM\ngIZ64_sZbCY\nzXR_4li9ZnA\nfqKdFZ1jKMY\nA1GJyyJzpCo\nsF-j-GhV6xw\ng2ElfIY2zfQ\nPu8AnCsWdiM\nLAajBhbC5Y8\niGawlpfe6a0\nEDywdraYOBA\nd0hM2Ekkk-8\n2iF-cU-qnbc\nph7amveyJHY\n3iJ8esboOjA\n0gouIFYgm2k\nLOIF-564wKc\n1SEsxhvzzT0\n57VO_eSiDG4\n8QbFslYlKIk\nyId_D0rOn8Y\nPq2Z7Qf45gM\nG77jx5jd2-c\nItkWLEWFjVI\n0ov8ekqSAOU\nwJROB9vIUFk\nIFETv7hMlqc\nwnmtGj0vBo0\niH-ioakPz6s\npPnfIsbcwfw\njxEVFU6EN_k\nsRR3ukzqiGs\nQQaLVYSCwrc\nqULlmr4lxb0\nCBUtXwZNA8Y\nXa0JBPt2cGU\nrjnLGy6uWKc\nYn8Or4O6_9U\nE-mnMI7Klyw\nP7-rs7H1CAE\nH4YWQ0uEY2U\ngSepgtf10wk\nv0xXbyXI6YI\n5MINtb6BV6Q\n9lOj8ThRAWI\ny10ao1Tib8A\nGxDvAEsMvoc\nLWtB2BdJ3kk\nsVc3ln7vaig\nh6klN0zNh64\nW112SAzt_FI\nn3L8UVTe6Ak\nwsooQlbj934\no_3BdeGhzrs\ngi9EwdK-6L4\nyn2p3AV23-Q\nAZxn9md_aZI\n-DqmTaUK-Ow\nxDkXQ7uBr5M\n1GYZPg_aQdw\n4A-hmyHNaxM\nMcv-560wn_s\nZVLaVxPjPcQ\nclN9kykVhOs\nN3_pKdxk5OM\nTWUQypjv2Gw\n11MponTu30M\nQQsg9djZsRE\n1UN6pgpke7o\nRZM3dVWNLG0\nC7vyta1sCfU\nTd1oEs-H3QA\nR0fmtWlMpHc\nW2sUalav-ak\n0cQThjQfEEc\nSHwGQTJ73Mg\nXGsmIO5GUZI\n0dmwDGkQJR8\nwq-H7qGfF68\nEp30EE2v0mU\nfvHgXzOY12Y\nk2s7U_7gHtE\nClOGZ8IiO90\nOjkIBSE3yfY\nNa9qhz28ZWQ\nRWfQwm_BgZY\nWhUvsKY-l28\nSe2zCvUqqWw\nK93YrK48ZG0\nIspZWYlmYZY\nngLX1uDh-eg\nFloKMOp4wN8\nl38Qliee6VE\nDQjDI3NorAY\nH1IhRMtTUno\nlfUlATBIer8\nH_pmwvIvi9Q\nRMWfAkUhGCM\nNuwu9VTP3Ak\nf8dkNziRlHg\nXPsddyf2EcY\nB_cE7WEW5gM\n6AJH6b91rF8\nPurV6BzV3fI\nqvvcVzNqXVg\n8rX7fkDLEx0\nB2KSjVAskxM\n4vJ6xB6ctaA\n9dqOdoFtNcM\nOxEcQFG6U4g\nByRUwa_QiaE\naEG9dwOsAAg\nyXDgPREBssw\nB-S7jkgEC8Y\nCnrR2upI8Jo\n6PAMZYS1Fqk\nDHzeRLN8UVc\nrgmKJYrtmkw\naOX72bZr_LA\nauNkHDpPil4\nllTSaDl6Pcg\nCTRZgOL-vA0\njs11RqXLkZg\nF0VmzZy-AF4\ntxybV-1ao_Y\ncm1NBLlRxy0\nxjAHbBY-UUM\nVCJrgPb3y80\nNQBMjZqgGEI\ngeiub8WP_XE\nxhj4CAFsPt0\n24adocMDT_U\nKVvqRC018VA\nYpa0nma0aSs\ns7ougTo-pGg\nfBXXvn4s-74\nwgkxKdTVrHo\nqnFWCagTOtw\noyU6En9HN8E\nar_o_qS68oA\n-H6l6-_elF0\nJd3GwwxFDPY\n-FU65KX7aJs\nXvnWjkHgWEw\n2vi_VeRSHbM\ngDtB0Sr8sbY\nhM3nn30NxCE\nV6xx32EGypQ\njW2zOdceqr8\nV3aM1IFedho\nwTzfJT3zGz0\nJzmD5wQpm5c\no6Jkz5TQv84\nr86n2JRUyRc\nl94geYuwNJg\nkLjET9nE2dQ\nCaQWWTLOzhY\n4GRGY20zWkU\np4ylvDhfiQw\nHNPRZ2M3h-M\nsJsHcwZsNnI\nEL-Zzx9ZrOw\n70tY44WxygM\nfM3FUot8TCY\nOeknFyEHaMw\n574oBJ7SR_8\nn0QO2xOuqp0\nfpwM2-jDwQU\noJITCthevTE\n6DxeFNOzuWo\n0PPstocAAAo\nDhn_1iKEsQE\ni23d4uqAG80\nsbM9An15WNQ\nO7s-DtIX_8g\n3dJLDhRGBpE\nBmuWHveTicc\nte4DfoUHm1s\npDzvia9Yuk0\nANEr1fSCLFw\nL9reo1mJVMg\nnogLQrWY-bM\nSyKWZOEqhzw\nbPZwO18R-1Q\nIQa9PQO3jhE\n9jfaSZXLxGQ\nCl5eAgx8K8Y\nGJE9jRmD3RE\nl753e8ClbPI\nBL-fRfeQTNc\nMXa-QNQ1zfE\nRe6AZiB6JQM\nfKTTAEY4cuo\ngBRwHB9FSas\ndYNP7UULtwM\ngTKqZp_fABE\nmNCLMfXv7ek\nc5JH3hyjFcY\nnoakeL8pCX8\nvU1mJ4LF3u0\ni71zp2X4XDw\nE9uah5ldjvo\nsw52VLDCFhk\naKFriCo_HWE\nXLi1XYfldbg\nR4JJihSXMRU\nwwHjdOzIloc\nYIfrX-BJbgA\nTNPMRbIE9k8\n1zl35F7uPoo\nQvMf6_foftw\n4mYsa1t21Mg\ndbGs2OWRYqM\nfaUJYzpcDec\novmEekx3IcA\nplkfDAtzmjE\nENEIHMJjims\no2gmatNTH1Y\n1Igt8Zl7xwM\nThBbbiT_cCU\nviJsUgnT_HY\niQxa0TuKY-c\nGwLec89XpYs\nRF_7uvTh-dI\nBN-FwrjSrFA\n6AE1I5edCfQ\ngK6JyAanVNE\nn3tXVrGw3kY\n0aX79Yt3Bno\nmS1u_E53e10\np4Pq9aZVV9Y\n4RrAmzAYCQY\nos1x0te4Waw\nx5Gwzy2FY10\n1ZVcZnWu57k\niG5M3WSF1DY\nkPiMgLB7S7c\nyi2YuSALRzs\nyMyXgCLhAXk\niXo8qxLvcSs\nR_4_btP862g\nlyM65FpQLlM\nr76peMNNiyw\n9uXRIrNj_z4\nwpci2WuWy4E\nujFOaYo5QME\nWGRVxwlEoio\n4kmeixKc9yk\nWmzictYYVj4\nQS3UyqLs5KY\nuabEMv5Sr68\nbxEqg39v9Ec\nt5vDcrQIig0\nYqkDor9GqqE\n3K0KQCvu2Xo\nBDvjjQvM498\n3IZVz7ukKyU\nD1YHdHw-doQ\nQ0gx_D--iDw\nUepHO767tO8\ngH4dw-S1esk\nTMe71Lvy1lA\noH-kAHKtbTE\nKfzxu_SIzGo\nUvDzmAFiUj8\nW7_EwytEz4w\nnLlnq5zJKvo\nP0yhCqbwnsU\n1Oxtu2-DlI4\nM8K1rD4PGkI\nEHOt9vYunt8\nUadRg4D-PNI\nqOeIJ8YVJeg\nqybKU4uNtV0\nHnhM0M5UzX0\nl18i2Kxo8o4\nAupnEJf5ZNw\nGRpcj2aG6MI\nFVgkuDNTOa0\ndzGkUGKULRI\nwmm6PIPCg9c\njpeq9SWXrQo\np1k68Ri9DKg\ni7zzhK5XoAI\nigmlE2TDEyw\n3lQ1fd0hBe0\nwyQmO-LFF4M\nMaSm7idHMtI\nDIkKczv9Eo4\n1LoGtPIr2-k\nUWtFueVeqHc\nW-rC7PEsItw\nDa02cZG3NDI\n4Tb7SrDUXWo\nepupZLvDDts\nsgs4FFD0oH4\nR8r9iHY2pCw\nZCrTaNYTk_M\nX55PmVk-KvM\n95jCkyuV0VQ\nFG31-KlqhCI\nOunFjTXpbMY\nVBpCoOfLlgU\nkxGdpZ6GCcs\nBL_RaZ6VCgo\nB_JVGEptSOw\n-cdk5mhKuWc\nKjbNSIIOEo4\n5CO6DsmrIDw\nywlNZzvlaKE\nplu5YA3t2l8\nEc2ek8MmHRA\nqv_DJYvELTQ\nGP8HnRCjLGg\n6V22uyjiMpw\ntEs0OuspG4w\nNMbSKSzRvF8\n4XK1zU7zhkI\nt09QqjBkg0c\nsjmh7BViBtg\n2-1_64NeG_E\nHXmru6NrSAY\nZw7lsVV14Yo\nGJleW4TCQM0\nTzRrEgkfhG8\nNieC8KA0EvI\npsDtqypK3hI\n1-WimijgGEU\nsDEWZnPJGRU\ncLomnZIvoFs\nr5zhPLNGAOE\naG8bSNpEGoE\nSRy397r355A\nQWiJ8VQXJzY\n-pq4FpNnvcg\n7wgLb8Ykb24\nVIA2wUCj36Q\n7tXcQ8BBqXs\nvI_kMlvUWDw\nGuAHdW8FdLs\nE-Ts3DuFLDg\nunWr90pLIvc\nJyTf7wR8vWI\niGRj7rfPdQc\npXGsio9H1xs\nlZ_r2Q0FQ1A\npoTqVcSgFRE\nPW20LbwAmng\nLJvCFAHRAFI\nCB5qzQrDnZE\nTpNPIxWdZgY\nDTqY1j7wgD4\nc_ByO08UsWg\nVNI6movTCuQ\nEOX8-c-_uVY\nukXfvR7wi0U\nGyM8LvY5RW8\nt6plGJhbkgM\nks7pfp1_V-o\ngDVYKkvkguQ\nSEzrTYKabwI\nQUgviX8jMaY\nPEg46xyJNPw\nMDxkA-Msgdk\nzquC4ky_d6M\nb4TJqx34ynE\nDq7TcTBsAJI\nvY9yCPmqbc8\noWjtcWh-gyI\nX0uMMVqQgeY\nWK0fQueuPoI\nXUyFzVAKCm4\nGSkbcI9F5ec\nuy4F1IeShVA\nqYZw_tL0j9U\nsneQ02FCals\ncbEbCrrgWiA\nXnfiKz-Zk7Y\nCvLrYbRzjAE\ncglsMVVevx8\nTC41JxKq_xQ\nq5eGg_CgBPk\nS76Oq-NDyvw\nJWrDT-JGDug\nFLPGiFhKS28\nDRtbf7iG8Nw\nWq8gxNsz9ZQ\nc9YJ-KJZKyY\nF7FEV8M0ZZQ\nzsiYUAF5Xtc\nTuceg816_j4\nTBLYqmHXPk8\nxlTl5F96ZVo\nfxff52VbAa4\naSQrrou9CbU\nWeMJebErzLY\ngs6FcpgTCqE\nX6zbmAt0YwI\nFuYjhxmpoOQ\nE-fSwxZNG-0\nIqsvjhHv5wo\nUHaEsAcQQ6k\npuyN3edOOUY\nc-ej3IOxBno\nXqqckmSFUwo\nvn-PJRh_nFQ\nTSnlLU5k9lU\nWCB6zM_9DQU\nXlOaSZy_S50\nX2YJECANG6A\nrcIfzdLjjxU\nNBxg8a4TAng\nIXl4S2_5sX4\n1eP7huR6T3U\nqDjmN1TyJAU\nhSBoEivF-hk\nqrIt5BPvCv8\ndJsuwhIpSDQ\n1gj7X8C31Tg\n6JIY7mRvsRE\nSf47YRUStx8\nCRu7V9v8Nnk\nb0p7_jQ8HiE\n-mexzYsMSro\nt9XjAhGr8us\nriSEerXD6nE\n2-L4tBlUJos\nZauzaj2bpvM\nJJwp_lEoOuI\ngnbjy2tWfd4\n8xorDb45ajE\n2T51K4xsBjg\nhcWY1CYRCsw\nr3_IvtMPIi4\nmZYTLYXT-CQ\n87IqS4kQqgE\nYfKjUgN_RcY\nVqZAfqVCEnk\nM47Aq3yj_NQ\n5XQqslDEoeI\nTe32eYR3jo4\ndfoGRpHc4qA\nQ1CJv_8XbmU\nPBMH9WdsHDc\nGpMfzrGJvZY\nN0V-2VgCwxk\nLn55e0EyX6E\nGfpVMjrhYQg\nZCTCHQWhYCA\nGHKfMt_4V7U\nDyo5g-ozH2c\nES496lmmGcM\nAyYlJ6YQp3I\n7bFIUJ_voCs\nRWYM4Npp9rI\nYG-plVmM7O4\nzDQHwzF1n4U\nJcAdeY9KlpE\n85A2rWA5O3o\ngCE5175IkoY\nWsgkiKu7AO8\nPWz21cujw28\nvlK8CMKzWUY\nY2ZU8ZjyzoA\n_X6dHrTceEE\n8VZctic_uTI\nPLOSA5L0dxE\nMkkd7taPqEY\nMOLAFbjjOl0\nSbP_EGRp9Kw\ng511NYTRiOE\nOVCIGGHelu0\naUSko3Om3sI\nQ7qNk9dKVpE\nfr_ciJPUO1k\nneH8cVDLuac\nymoeXOQLtGY\nvppCnOOwS_4\nszqlpf28SRM\n2WF0XgWQles\ncnM9pdjp5o4\n7C-aB09i30E\nvV30irsal-w\nBT_QpciXdcI\nGC8KstVPxPM\nsWqTiz8caoM\n0GEynXlmNYA\niN0ZnG7yo6o\nhqslb1FVoQQ\nyWeMWD-Yagg\nRYP_NSi9g3Y\n-dWENMR2aag\nWPggG_9I20E\nM4fuweiQQCA\n801rBxBY-5w\n8kzZwPsHkfo\nrFbe4I4SXGg\ny6uK9wxhl_w\nsT7Xef0oYLU\nSiY9kPYOZuM\nIXep9SfBhrg\ncslI2draO_E\n-ZRSgs6PHaY\nHNV5ksTBzLk\ngWHvF157sFI\nrglfoXHFty8\nULu38sbUDdA\nqwblOHgiG5E\n_-9wCERdcog\nJIMykDzqRbY\n7F1OGZeeva4\nNiQGOyewakw\nHh823sEeCL8\nT6GiDpoGg0k\nM1J7yqXNItw\nV-uaIme1eqw\nW2UAnJuDL0A\nVk2MgC2loOo\nTF2BDWsAg2U\n9xp2WW4VPnI\njL_AtO4yMio\nCo6hnyHm9FU\njatrkHMHR5s\nzg0bUxwdano\nVBOg6u6zNUI\ntCDK-8hzqYI\nmxIe3BjQYq4\nByIEbq6tv6g\nNggy-DIaf-0\nYLhHH7GXdkw\nYRDc9SZWuE4\nrCRl3aaJEdI\nZc61Xb1A3R8\ncqJitdI6d24\ncH8ebYzr5f4\n6_BnBOUwAPo\nx_3EEWK-YQc\nbDW3OVitFE8\n5gOfKFlEJvo\n-JhNO_E3aEE\n-FQOaUEE69I\nxqeAW5qAHNQ\nZD9DyYVR3BI\nQ9Vl1VGj0LE\nL3gtPb6y2xg\na-CS6CjnEw8\nkgwjR-pQ29o\nxc_90HgCenY\nRS01myY24NA\nYUF1PIe1RVY\nnsDjpgWu8F0\ns37owQJdelU\nwuRzu_xHPa4\nF2GgBAXj69U\nPFG8nJ4gwvo\nGdMQOwEnATM\nGgASWe5c8kE\nQB9AY9Em4To\n1J3WNRR4O60\na_DkEkfAO4s\n0WRtWiz_Xvg\nIhkrc6Srv0Y\nze8D_5hdmTE\nq928Wa_h_gg\niv_Q51lofKM\n8D7EY0zKevM\nwVFNjHAnpcI\nQjZUS2455z8\now3Pf0LSXwc\nuckdiNJ10LE\nATid397QdsY\ng_fIDwoORl4\nsOHoeZYeAeM\nYr1quUpD0Y0\nk8Vn9zLollY\n6QfunXjWCpc\nCMfYaFpa3nY\nMBgPSe_p1fk\nC_fhEQGp9Hw\n1TX6svl0Qjc\ncGDwEP-RWHo\nQxrBZStJOGk\nK6Kkwi0nfHg\nOiJ8mt6Nn5s\nLJgqSSZpdns\nyV5w71aImSo\n4ZCtygwf67Y\nSj3sHAe1bAY\niTH2RpdXTBA\n1a3iljVEif4\nb_kHujzG_w0\nKMcBrs0aWbo\nMEYupVDPDRE\nqrd5QtOa6O4\n8zdNf9EtW-A\nJYymQ87_t8o\n5LdmmsMZU-I\ng1bhGNv0Ei4\n4OyCzhF1A8s\n7d4Sd1W25xs\n-jYZCqfUfVU\nMVxXoBHtBfs\nyRpnEq9A3vo\ncSjzA3Wl6hY\nTllGibabkYg\nNTne-1oUAZU\nLv41GcKWfJg\nbTJAIONGv0Y\nsdkgpg4Plxo\nh5OjSHDUn8c\nr3BS4jKjRkc\ncE2bc0vU9pg\nZCdhsYpdRck\nE1u3lo2EsMg\n7AnDGdVit4w\n0qkVyahL10U\nx24Olya2NLk\n5Fa3enGmEfA\n44MohOiWwnA\n0y5KiKKCD7A\nnF74obZFKp8\n00QMS3Ldb20\n8Q0KYSXhKMU\nob2QomOgStQ\nZeg6dl4L60M\nvEWPq-4sa3w\nxAlCbE-yCTw\n1RwwTgTVnJs\n1Rhs3PVAP4o\nMfu_iFS-UY8\nOpCXQJyiXQ8\ntjRgzcM2HoU\nWgxNguNEMpE\n0X0-NpZpx6U\nPxr_FzpPM2Q\nHudtZNmmVwo\n0quxzV2i_gQ\naG3Oc5TNd-Y\nKtwPWWCJHAE\n836TMubeCfo\nDL-fT3OymQI\n4HgHU5fVqbI\n3Avu3KdHGdo\ntF3eceBqcik\nmpDGnFwbw0U\nkoZie6TLz3s\nR_moIp38Fk8\npVB70-zPv5E\n-ON8ZTCiuYo\nGOwehDo9xYQ\njo-aQkgNMKQ\nmyZDn8fFRLY\nqLCy66eZrQs\n-1eKufUP5XQ\nFPYjy-ZWB-c\nC5lMZZxrewE\nrNxqb6KMtkg\nKLDQLqzbrPE\nGlP6emuR3z8\nNgAjrtEmWxI\nde1vEYiEMro\n7AajEaNH7g4\nMUeKujlb6gc\nPI8G4wCa8m4\ngs0WQmW1icQ\n__bdFiweOJY\nC3TAMx8Gqro\nzGXxYW_Zisk\nB5uw3qZ04NY\nVDCoR_PxceY\nNInjsGq2yCA\nf6Dan7z0p4c\nYvoy77W0Ofg\nPyK__VjhdEE\n0g32SegeaTw\n6WKFs4PhRkA\noH5Dww7Umog\nysRnmU7UZLA\nki5XFDm1ufM\ncvaUo282fEg\n2qqJr7uFeTA\neXHKngWBha0\nda1prguylik\neAVgMr_VCH4\noSIR6UvH1G8\nxcYhjlyrjfc\nFtoH7NJV5Go\nvwrqj6aqJAw\nQbthrROkWXM\n9FA_bAXW-Y8\nkSQaXjYkZpc\n9We9JImjg-c\nSKTvxXjJ_MU\nmpG7K909Gi4\nMzzWzX-HGbA\nR7P5OWV436c\nAhZw2QXKT1A\nUgSVWM44JBE\nGr-s1mxnwM0\nlnPDc4XE77w\nrhnCmErsnYA\ntekVuL2mT7A\n30VlDItRAVk\nm7HLqZP-l7E\nw86nTX6Iixo\nDVQQY4-us8k\ngRP3sdjszlQ\nYeDjVvr-6Zc\nsCsMjWjftZs\nFGwgHAqBLDY\nM93XQJPV51c\ngQMtp2WxEA4\nMi6CrAUhnzE\nXWgSKXw8ZwI\n2jzlSeFLr7A\nsJsCKwZLztk\n65pGOp7qa_s\nVro5qtVA4PE\nHFAGAjkDaOU\nkXvNxXDDHSY\nyqVb0Ten3G4\ntsCGLuufHvk\ne2FPI_ylwJg\n71ZR5BcX-Pc\ne5gfRaN5gaE\nT5k1Olhmz_E\n__zoXOgNRvk\ne80EOZnHpLQ\nqwgO1dNfBl0\ndvlZ2PtH_zc\nwMclAYZ_6kU\nsG8uXeC_jNg\ni3ywt-oTQv4\n_65de63xao0\nbCtvFlr2hHI\nLB08HHk7Ssk\nVLx6HcJ7sas\ngOeKwFPUA50\n3_SZ0F3VTVU\n8C3n6k49Dmg\n9zZLmOA4OsA\nxVANxG9gI6g\nPoAxZJMYRWE\nR2lhQCxKx_Y\n8tLhtdDVqzg\nc7cm-r7oJ2E\noflbCHWZCBU\na_iEYXLXbjY\nSDIk9DOro4A\nikcKKvKkf4Y\njY4nU1rwWv8\nhTpVCu5DzpA\nWsHqQAfZvc4\nh5UGcMYOaaU\n22Xiae6LXdU\n4SDOcUPE1GI\nePtwxRF1WZA\nQXeYlaZJ64k\nLn91UqmKxwI\nnXait2wHOQc\n8tFrGaU6p5U\nAxxKJ2QgPtY\ndmy8Lcf_TiE\nX3XwuyPljm4\nruCFlIoCpJ8\no6synmrDXqU\nyV5UTHVjMME\nHQrM6Rk7WWE\n1Aoukxd0GvI\nlIbBAWzE6H8\naB6Tdk6f2Lw\nnsp9ex69rQQ\n4RBnTZELQX8\ne_fI5no9SKk\nKXoFUS5Dzto\ntnZ55SLhan4\n89HcLOHubgo\neiqBbLVXbQg\nymmlNaUhZE8\nJCT1VtaBpqg\n2HuQzKat6hU\nXA0J-wn1Esg\nmpgaMjGOeJg\nbwKwR3hV0zA\naWjBDI02kSE\nn8yUoQP6Rwo\nnpaLKZ0Egus\nqp-uFNB9jYo\n5noS6qGxcbM\nANigqhwwafs\n13h4zTXEjvw\n8wduU3eU6XQ\n4IHDSpacpbc\nLahMUQTEbcY\nMDG6JsXqaRA\ncfnBcA2ckeQ\n0uyVs4iKp_E\nf96ppJ3DSGE\nQFDZTfWnWGg\nU7jlC1QNaUM\nvNk30YAdCEo\nPOpYt4cHlFs\nzpmd0YiERdQ\nEr_oU3Sl1GI\ntKeJ34qjORQ\nzhaVycw4FXI\nnKkgc9WTY38\ndcR7fdkLhJ4\nzuSBq10_5go\nUCGdsPwcKKg\nWl6COOA3V6Y\n3kEL1doAC4M\nxL3ZOCRgJZM\ndOZndhz24OA\n09zP4iK6QuI\nvi9m0JRo71I\nrsnLwzzkF_Q\n8zYGzyIpue8\n-BgZFaMJRxM\nrmE6nTzmDqI\nhN5We42pLhs\nbxs77K1DkD0\n5D20G8qe4Qc\n7HEi1kmCzEY\nm43-bLl6ZwI\nnNGz1GspkbM\nGuqaloLJNJk\n1M00J5Q1Vv8\nXMKKYshEbzM\n5h2uLkqpVV8\n5XnGKA75dtI\nqCjSApp2o1E\nzWW_SH8IFnI\n3v9Pfg4Ocbg\nkDTjN5dVCzg\nqcaVM8TcZbA\n6bO4ZsAMowI\nGuqCibVW5wo\ngC6gD7Qzry8\njGXpyMDIZ_U\nm-3Ohq-bVFA\nqjJnk3MgNgc\njkmyjHYMH0Q\npo0Gj897Tmk\nSN8buDY-7LM\nc2ecZiVEs70\nYeqQ-Iae_VI\nIKnygn5ysHU\n1iEOBKuW9TQ\nysudBGghmnA\nIfO6AIsvlKw\niswgTDjihrU\nq7V1sM0VNaw\nKNQpMgWWB5Y\nIoQ4G5p-Z-g\nW18J6bcq9YI\nt3gqjXINvac\n5UjmbtIRvLY\nR1eDE5bXCds\nm7xTE3rvkDk\ncMwOJoesx8M\nXq4HZGi38qo\nfo0KBFhChFU\nob_6XAhj_1U\n0zuW4KMG7XQ\nN7vSJzq1zAY\nQ37sWrXU39s\nvbJsLuL2YzQ\nt5nBikdQ1kE\niJrgXYnUVe8\npHBKmT6eNGw\nqOeZ9TL0wHs\n1ovQhqQy7bE\ny8i5Nwg_TqU\nZCZyxZYgKIg\nccr0gfJ5q0I\nvWkJPL2Dt9A\nzvy5tDkETfQ\n2Ht6646WCMU\nisQIyXfV6Cw\nKUdG72N_mek\nyGWUHeP16Zk\neb1AjU67W2s\nij-qB9jrMnY\n6SLhTIdGfhU\nTVSr02WLC4o\noGFkOiYpEeE\nUSjNhsetZWc\nTrvXqosqkls\n-2QFIXEHnOY\n2Y_CzHI89mQ\nJgTgQvvqRqE\natBUgwJAD0U\noUKw4qcGHZs\nMevYeKlyQM8\nFubpK1Tho6M\nrzuN9uvnsZI\nr3L0e0izKG4\nd7-pWfZgFKU\nq_tMagfE-nM\n2lh1uIhuujc\nwAJQ-yWgSJs\nxI9CLKI1h-g\nytEsz9ZEh_g\nPomVYrPHoAg\ntVxYCeRXzGo\nVh7XH68xWKw\n2hs-yt-Pmk0\naoBeDwBxv04\nKU5yx6v_Jr8\nqgm_ou3TsIs\nljMuEDlInLo\n3hUkHF18IrI\n12iewuXNhbE\nS0LBIxKRCHw\nh5dCFGJp__0\nRwMgEM9FNhE\nBfj5GHwgXno\ns6JmX_n5oeo\nScJijQn6RyI\ngwGqg69sqi0\nuwta-bET3aQ\nAv0pWtQ36tU\nSMd0299YDac\n4kaYp9uUNgw\nLTESHXdMyQg\nT_Kn_D-zfeg\nfKyoILW1Npw\nElkY5U7WSiA\n9uGuf4e252w\npmAZlEkONa0\n-dlOM4ocKUM\nFz43jl18aiY\n2UOL-ZHUOC4\n_ZA8FE-nu3E\np9W9PhaNGOY\nbuIXWAgTUIU\nw4TCxFKaqIw\nOlLMqN-vjKk\nK3jk2RjLJ3c\nGczlfeOFPDE\nPbCNDD4y-Zs\n2nCjaCV1v0U\nw_ZzqN2TWTI\ndSOFfyFdHXA\nxoTuKbJE9aw\nKxOI0mEOHsY\ndes_yFi9fiM\nBiXpNk-huqQ\n9sVpipEqpD8\n4psRZr3sxHs\nMjrbUV78y5A\nL9EPJ7ZYjHk\nPDWuHeevSAk\nsxKLANwXzzg\nHMyfwfUs64I\nDbcOnkSMGK0\ndTIoEMxqckg\nPKKSqcq9iGU\ntc7rC53gLUU\nuZ_X4w_9lgk\nirxaBbMXsUk\nSDNStLatNk8\nVUljC2ih5YY\nXFu7Fz4g1VM\nM32XWG0NQPQ\nSUruJPHdHUQ\n31G0GtKW8iM\nnxKAr1Gebjk\npt94aydCMXg\nLaajQCWsyzE\nOoiw8ZYnzdU\n_ZzKJflnVHU\ncIEPiYHzTto\nBpAvVBwO8J0\nHJKL8Ta-kt8\n15MbDpZad74\n_oOULG_nhEc\nTirgk-Is0QY\nbHnpX4LBdGw\n5rQD746bDOc\nVlqxnvmTcAk\nH6pjCQosMxk\nCwqmd8pSkEo\nqFnqH95k_rU\nYk2ZbS2FKe4\n4LCN8__54AQ\n7Ev8Q9RDC8k\nLiogBSpbSE8\nWDAIccQnnV8\nBzKbRv8tcBc\ndtIqkgW18-0\n1EkjxpUe5TY\ny5ysUSgyVqs\n7PI0v2ZWDl0\nsqLiTaVHPdo\nOwG27DvQf68\nnpSYPN8LXas\n2UBYT9teTIs\nhonAzu3xOP0\n8Ds9R9puftI\n6rHHZ3hiwcQ\nbgZWbi1o8bY\n4c_4MGTCgHY\nKoY720x5fuw\nnvAZrrDwecI\nPTOkGaI3ZAE\nH6XWqMB-Ow8\njME-000LFNY\nXIJ-TpmNlI0\nqpxUYzNSGn0\n5IzNXdsZUHk\n7iajsLA5MKM\ncZy7qSG8RHQ\nCXdc2L3QH9U\nQXruKKf3my4\n4VDry9fy8UE\nCHOpoOnkRJE\nlKBbFHMEvDc\naP7GTu8tbvQ\nuSLscJ2cY04\nk9DO26O6dIg\n-8ajIeIeJpY\numKFAbLoUxQ\n4kAViGVuLmM\n0T3hXtyuX0g\nzqv3YesdtRU\nnB9rg6sxHhU\nbCZRAcsuRgY\nKOuClUYl0_U\nLrQqG7HxUao\nZo0d4xk3BXw\n3lR-s-Q5XsQ\nYSN08rz66zE\njq_tO6NAlPI\npHXL7yantDY\nISKL5Sy_Mt8\nMkn0Iji6g9w\nHpGmAvMtScw\nw5oWgKtku3Q\ns43ARFFNrz0\nY6CLpg06kFE\nntKYG1LdbV8\nQaUjGv3GLeg\nE0og5D_sPpM\nPl1dl--4OBE\n71pIZ76YvR4\nA_R76lKU0DI\nHHRCWQEM7UQ\nC2KN6BHuPWA\n-7-2-088LnM\nKaVglFjQynk\nMVRR0XlqA4g\n9BdW5LHQvjM\nE_TbL7vdWGo\nzbHFgQ419Qs\ndeUroRuOCwM\nJuxyMqr7FNA\n0aKB_Qm-z6g\ntDD6wnNN-IQ\nlb6nAmbkk9Y\nCjXwJJQ-8XM\nkZRq9scxIWM\n7ZzaLI6n1pU\nPUFwiKDWxUo\nkCrtP_gPMwk\n9qdMVMCGr48\nUsNnkax2wNA\nRFBlDixa33k\n6DlOr1PP0Fc\nYKvG96jMVWE\nybF7eOf_n4s\nROqfvY68ijM\nfEsN1FMfBvI\noZ1Mz78d3wI\nU7HxeKhKgwM\nUeq8bUwdm80\nbHW5h5O-e5I\nsGPeVmnAFAI\n31LlQhZmSYs\nTcJjhnPrM9o\nMM1no56lIjw\nuydWF18xoCQ\nMtyfXKbZUus\nO2yNsybczj4\nVln90evTYog\nNfQcD7ZLWL0\np9Bo67_slJY\ng2tNQ_6-kpg\ns039YJGaP-Y\nFz7dtq-saJo\nIRycPfFjVBI\nkVujmsfAIUk\n1R4FATHHlTU\niGk7QYThMTk\nt_JOKNfSn1w\n5H_MyLSpRSs\n_iUWKODwAN8\nAsfxK5fWMu8\n_5IVdeFrhv4\nzzabhummvzk\nbQObeZ5R0mc\ne9_4oS3hTPk\nHsh6n5RfCoc\n7uOhTRONUbY\n1d-Q6pT4pxo\na2xcMwtUQFY\nWafr97M23uU\noQnm8w8f-lM\nbH3ulIPKNrc\nVbAh3UbaGHQ\nlryUDOG6bS4\nVHkoII8ewWk\n6SDs2BTqYpw\nISXVGrqvV1A\nG1Q68kAK4qc\nFJnJJOAN_PU\nYU_Sm_2vH5w\nLiA9AsjqVWU\nMuW72eVCQno\nKuStVllxFuI\nbEBQWhgGM1g\n4-3B-Y9bM0M\n0p2Oyd040pg\nJe3Vjos0TlQ\n7qhNVDPZ-0I\nIy2kMtJa2q8\nk0LLcRLSSlE\nj7m47I9BuuY\nJV05-E5FF2g\nNdbZtOpgsUY\nkEL5reRoNk8\nWQP_cY7FAyQ\nP9jJ6Bejayg\nAVHPmsWZnb4\n7oDSPSwMw5k\n_qxAcodjpCo\nlCL7DI3ah40\nUX1-VvE01iw\nevM3k7ep4wo\nmpfBH5WLlOA\nzn9D_4bE0hM\njYbI8iVYCpc\ntw84SFLxC_o\nM-HysTegELs\nMZaX-RbQ7ic\nnD8KtgWozeM\nNqJ6llRZg-M\nLWoKa0wYTJk\nNPmAEqlzKqE\nkzxz5xezOAI\nU_MNiopwFxs\nj0z0V2JJ5II\nAxrQtWFF91k\nkSaOMRXiLVA\nvmWm02fUJ-o\nIqJWWBRnrH4\nnjz1p35e_EU\nAaMkmiZ9bMM\naZbGlkGWiZc\n5K6sh7HZri4\niKp5ARBBpyc\nXOfjQQT9O08\nZ9vRmexWHUo\nhIUrt0AsTjw\nJnjO0v-AYFo\nO0fQ_rrQedE\nesg4w4b2xvc\n0OppC7vTtY0\nswn9_FjwmJo\nYNBtb-8zpko\nUBNLrL7RvJM\nIHDzQ29EgsY\naH6N58NST30\nG_ee7q8w-PU\nnNtl5Hv0bv0\nIBwJ7rFHpE8\nU59aJCoJLRU\nY6hHVWwwfPA\nKVV02IJlGCQ\n2GvyC7s3RpU\nd6263F3UkWo\nV-hOCaVISok\ny_Zo1Wg4RAM\nFXeNdV-FTjI\ns_SM1Hly-uw\nZ1DO7_hHqbw\nkcrHhDoUS1k\nwnvRIdndQdk\nLVbkD8ZogwA\nl1X4RDCFmsE\n4d9fx7umXgg\nqC_pkxnYQfk\nSroZoan9faw\nFZOF6ePjVcM\nffmSFNEG6pM\nLoBAmFanDhY\nT4WNCHc_MmQ\nEEaUjfxQQFI\nVmT0mZH5ivo\n74DUcGnFH8g\nS6rgOlhmAHo\nr1md9sIev2M\nI21bX4cEhRM\nGfLc8Z4_lFw\n1zQvfrTK6Y8\n5dCI82ffuIc\nxW4xczuVMq4\nAbV04B_yV34\nxsM9jr1e4F4\nBkNCfTfR6fQ\npM87ObBNOk4\nemW6qKMxIUU\nxsK7WF3jWI4\nN26K5UeOTPE\nFaX0hq8BZc8\nJj6H6tJvRjU\njlcZPO2FhGE\nRM0NW8MF9wY\nf-DiniX_1mI\n96dlvQbYEds\nBshBOgRLN28\n9tx1z5_iVeo\n27ARVhE-a58\nG6PcFmNCQpA\nHxfzrUYFsLk\nopXI29YEI5s\n9YJRtvamIjU\nC2IvmQI_efs\n2kt3CmzYGu4\nsg39yDRzklg\nG6uZp-33qcY\nfOFGL7-qmqs\nRd_gE_G9R1k\ni6AtG8BdONE\ndQlExOgF5eU\nmBdWBpsA5eQ\n_EjWpjky5lU\nvrEjev5DoXc\nfgDgZGePcwk\nVILmrL5jP7s\nW-7hoLpXFXE\niSio5xjSYqs\np-tvo3Hz3nw\nrUbY9uikvWc\nedhJGqAjG7s\nDC_6r5VR5_U\nS_QFbRtEF7I\n86xtQC4rp98\nGfje9_QRQbk\nXDO8OYnmkNY\nWy4EfdnMZ5g\n_XuDmoP5scY\navjdKTqiVvQ\nHH37JTBpi2A\n96IU0EisCes\nBkZ6lFCzAwM\nM4LidfkbW68\nNBfCeTdLDbQ\nyR3zsO8pCMw\nQC5re6k5nLk\nCq2Wzdd_PYs\nWhT70B0c7TE\nuDAIoSeEoZA\nBuPdA_CDITw\nhfzsR-3PLcg\nS4WqfcnVT2g\nR3KOKpvoLIo\n93U_80mhzVk\nUsM7OBEMqnk\nkXXnZuu72DA\noAjKMLcDlfc\nSHaByZZvfFE\ngQ48-nl8wwc\nxUHjhz5U1bA\nO7S9X8e2uhA\n02AyhONR_DQ\nRRDbQPvtAxY\nH92n6qsNHbY\nRxyMbaDX22g\ngs3GHB24IaM\n32OSGQmjP1Y\nctjucF9fiFw\n5TG1Wh04D1g\nW3x0ZxDSF38\n3FKMUa7vCZU\ntPJJlCdrJ0M\nwoSj0M9Decw\nYmC-BayMaDg\niNQYIdE6DOg\n4QR_9BehbWc\nW1w1qcvdTi8\nxNNd9Uc9J_8\nD_N9S0bAiWI\nuioT_3dqzXc\nN27ZYQKRYnQ\nIg6hIs0jsjg\njBMb3PU-2-w\nR07vQvbALWk\nFJ_NU1sSk5A\n3XX9d9BO5qs\nFqtEB6j5jEQ\njhMCxDi0Xs4\n1rVMJNSZHZg\nRruqW_fwhEg\noKdCaLj8b5o\nIRdxr5ilGfw\nfn9gU50qXvU\ncqUpOLpJ1iU\nq_Gp2jL-V6I\no2GcoDvPVuA\ny8cL18qVz6E\nqTwgG6t94Ko\nITaBaJEJLaA\nUpYME9Wz8Xc\nl12dwyHThc8\nE9smjLi8m28\nCm5NLiqmVtk\nKMOr9s3kfM0\nCYGCwkmaa1s\nNqt6-rPGGEo\nPx2L96GVrKs\nkU74wgKk8lo\nbvnOqxRHjuc\nvejLIHky2HE\nGif5ZnaOOQ8\nHR2kbOK8i6I\nJ-fa9awvFBY\n3mNDakZu1JA\n2C8fB8p6crY\nbKbZTFrWing\n61nCIyBCmjg\nAf-N8CLLoqU\n7ZEqMqBLOOI\nH2hbov4Rb6g\nXAIeh0YarFs\n4gO9OFumO8U\n7dgOcvrxxac\ncv8yjJQg4Nc\n31vkz05skoc\np6IvB-2jYtY\nXurw2Ar9NNk\n9dN7jGSbsVE\n2GFzqqC8iUg\nU0HHhK_MrWg\nwsFQrTAEs7A\nyJ_3DswWIeI\nsZ6t_-wKImw\n9nwSOUvKyys\n585p7sJhiFk\nmqkYeGeQ1f4\n0pUMzDEV-DE\negwR6gS9UMM\nHsMVFxZ43iU\nWLKpgzXHKLA\nVeh9KV9fm6s\n14zxmnIDoLs\nkvzzBebEAHQ\nQwx9wZgxUoQ\nwn_8YBvVugo\nWC7TpzxGktk\n8n6mcd5Odj8\nGQYCNF_zoDM\n8NZ9CLszc_g\ntuusFUTcCO8\nrelfjwjhscE\nnEGbOGGiENU\nfKaiHVTL5nQ\n0zsUFpPjt8g\nuqfD6UPvkR8\n9cw9NI4BKnQ\nfD3pjFbgcyc\nbK_2x293Urw\ntRuqSw7mX5A\npHH7NwBwxM0\n_NEfPBtUqS4\n0ZkuRt2ZKRE\nh08whCp_tL4\n5zzYjkS_iMA\ny64QBxHJiqI\nR81ZAKQzJ5Q\npLqoZtmyxxk\n_ZwkQIBp4TA\nEGbVLHy9Lvw\n06L5y4Z9KcE\nS-WVZ-d28yg\nvLt5ei598CY\ntktoOXBmflI\nOAtwRoFSlOE\nOroiRWIR2gQ\nZreZzV7y18Y\np2QiCFAQ-qQ\nX5dtBoyZ33o\nkevJJDQloNE\nv0gGWiRkjYM\nec9h1IjltJg\n9nc12yOA4jM\nIOV2-bbOHts\nGpc4_pqXMVo\nfin0EY5-n_s\nwCmL4G9TYMk\n59-Yznur6tg\nmr0RZ7hUrpU\nZb10goz7guA\nnX4t6GMjNqg\nBSmKQGvL9ho\n2JweD72Ains\nTmALN8vdU0s\nQsSD6_V2IYk\nE3yX8lT2UAI\nZjPPfwVPTDE\neRNCIg86DKs\nxYfxboRtKJE\n0oFdsgLP8n8\nTIu_CYwemFo\nsSRmhI94MUs\nN9d-c9ooO7s\nebkY0u1-NKk\nDdpMl3_vPmQ\ndX0dcSJE7ek\nWT6DQ_NO5zw\nCARc1uUq1lA\nnAuz36A1zG0\n0z-FtAMg6Vw\nshE7b_6NNpU\nBEKzJzaZ0Fk\nq8HcMk_IimM\nhaX0ACElUQc\nXRtuUFYTctA\noc8bWybEFFI\nUmynxNlSRaE\nIm39PGAb82I\nQbOo_FctFu4\n18ARBQLResg\nYPIfHEdHjHI\n7vWLiI04VCw\ngPJFxEvmHpQ\nT69FlogsAGI\n3reg2k9xS9k\n2gzVWIUhUOg\nCsOM7mptOLM\n5W_sktmZuzI\nyNmBX5mZvRw\nh36wtoBcAS8\nnPJFSx8RTzo\nj_txRPwTvpk\n0z9b9_n8-Ek\n6KYxDFGC2hE\n1lxY4Sc9eNg\nQBUTO2RVjXU\nWcmMx1_lQmA\n7RSJehegfZw\n5RKld6BGJA4\nEn7TapBA84M\nwwnqJH8OF-I\n9hPgjW2ou9E\nwWRnv1V8iUY\n3Y-pMJ4IcTY\nDNHmujbuC74\n9nOc2GqCQ2Y\ngtHhlD6p8BY\n7aYOGUPabd8\n4UC_5gXVXUk\n_f7p28YFgvc\nrpPm4pAJQbc\n0N7ilB9wX3o\nnc0LwkqYGpM\ngq6JKq3Q_uw\nxYHBAXUJ-Zs\nDKtupzAQYv4\nG8FhdcsVB_o\nkdbRwpxZHJY\n0yngsYrBCLg\nWcsyV7eMrGI\nSuSUwDgtq1g\nxsHxWhCydMI\nxwfJyzB6dow\nrS-P78D5US4\n1maNhuFVhmk\nmsSsPzKVzW0\nrYS9mUCFOAk\nAfwy5S9__0E\n8fizKw4z9fI\nJ03m0CzUvJU\nxI-ehlRwN8o\naTxu-zthTgs\n5Tqsh3b_lb4\nBgCgiRitEmM\n-nk6Gs6Z_Bo\nf9wFKCfic8Q\nJmf4o8UalVM\nzZLAinjBShg\nE7fMOxGw-dw\negTtyS-PlRM\nDECG3af2qh8\nYsCeolAfbLw\nLJym4mTtLRY\nHOjApJYsWC0\n4vekUOykIvw\nqMaZAi73HDo\nb_aJy2SE60E\nYprQvoOj6wM\nJHAtw0HRhho\n6kN5IkXFwcQ\nGqGPu-X3cv8\nag2wbvh5VDs\nIgeW0MPX60Q\n--hendERqm0\npkogDQ3CK9E\n0D35LZ4UBX8\nBUB6TUH7N0A\n5uEViMQGON4\nN6SPrarFcBA\nhYIWCm-Lpj0\nkvtsZ1Edkk4\nHrFlTjySp8E\nHC1LN5AgjRU\nn6zlrCAvNRg\n7sQRpVCnRto\nVez07Q0O7c0\nv5oVPhcW9nk\nClUoUHjr-zE\nZCU-wmL_XNw\nup86hjG02yU\npDdLHI3b7lI\noUrT0qTcHBE\nR-ciRNPLhWE\nYJjM9EMhQ1E\nlMZzHaUh_Bc\nNc6K_D4rtGU\nXNwDyM81lSE\ntY5el7dZ9H0\n-5twCD8tAMc\nLVvJj9sDilQ\nWLE2QEOBde4\nyQ62WM_w2iM\nq3Vvto0REuc\nyWP5eC822Ac\ni3yO0OagpNY\nM669rZIUGIs\n7DnCFrbE88A\nMO7Sa_dI0SM\nVD704T-c64c\nUpWvuwMabSA\nUxVY9CTaNNQ\noX3yOgEmFOI\nUNLFpS_xEZI\nW7BLikBY5Ak\ndwK_rODYMrY\nrXxBQRh89AA\nVAmXYYSt6TM\nxYIhxXt58uE\nFovnKIV3VD0\noiQPOmrEAxo\np3zb4fwFd3E\nIxRCDx-YV4I\nLZ6HA66dXVw\nujA70PK6E7U\nsVfmACBWnIY\nQxReNyiIprw\nSWlYiOtP5mI\nUSWXF1XW2zo\nuEW0FlmiNec\n4cl5cWYmvgc\nwLuRwDl3MrE\npQv0ZtpRdNk\ngMdTl2R354A\nHPcr2gT_cnA\nK6O_Ep9bY0U\nDqSBqfDgOsQ\n14pZQ6VASRI\nPmxzK5IzcaM\nBSXK08_Ivac\n3ReLHqluiXY\nV9LA86HF3i8\nUd8doeLuJWk\nvxEvNuW12dk\nFvN03fXmnQU\nbqUmYcmLCMI\njP6-fvz9W04\nMsIWigAwas8\nHCNwZZ3Baus\n3zgwoTgXXuc\ndaJzFEzxXos\npTxj-Dks1Mg\nO75p8X8YBtw\nsUQ9cisQpaY\nfRNR8-FqzM4\n5RUWalajNYE\nt-B2zR5O5Ys\nBCcw2q6KbbI\n9FAeJgWLKRo\ncnwddNSgakk\nNwru3-Uif_Q\njpEfgrff8z0\n7h-q7bXYD1c\nO4brzUAaTS0\n-nswXtzrfQU\n3WmyeqVxCV0\n74ZjOVz3gs4\noNWAiWBup2Q\nvubylfvbMhk\nIFBAXbrw31g\nL46syxgju18\nBGOL5YmTrAY\n-Qq6ZZy0yGg\nphGwatUEyzc\n6VvluTE_w14\nueMuCbXkDhw\nTd3qZIf5Swg\n4Fa5YPKxwRU\neG2Yo0l78tM\np0CQcDumPh8\nhudgzkYfSvU\nGZauEya_plU\naPFbf954LJ0\nqL5_xmtFVDo\nmT3_2sDEBJQ\nVTTj-7UumYk\njH07BdMRP0g\nNQcQ3bA_NXw\nUvm8N3wQDTo\n_5kQ0ekY5l8\nLbxeyn5IS8Q\n3Sot46WTjcY\nwVCf-70SKKg\nWuvoHScKCR0\nsZdVc2KAfWQ\n9sSxcSntcyE\nIIJZj1M4tN8\nGklme1-eQGE\nsCSTQpBwqqs\nmiJ26dYcbBw\noT_RsXOPjTs\nYzIWoPLLktE\nHYWSAtLFgXg\nTiQaVmutQwg\ndaVOnsL2wkU\nN7i4yZhm6V0\nR5wXxo6yIU4\noefn8TJ3_H8\npUPliO3qy04\nUAoJ_mv0Pqo\nioUedV29CQE\nUo1FfULMJ5E\nM06KzvYxlsc\n3PoW8y_3rzU\nKMkdp0Uy8t0\naKE0S2gCOfc\nRtRffVRFz6M\ne_S58iPZYu8\nS7A0JYPGklw\nVFWn3fpVdEk\n6nrumyJrmZ8\n75EThT2il7k\nJzJ0EVqZAzU\n"
  },
  {
    "path": "data/metadata/youtube-dl-dump/2020.csv",
    "content": "Ok63vpXNhNc\nOfLhd_wJux8\nTGghm3K1NXQ\nu0RqfETo2ok\noaKjYmfK_Pw\noqGij9ylbAk\nQT2Anb4MY38\njbvQvJV_97M\nUAYL8R2ZPuI\ng8pt9OoaPlY\nAONuDilRd5k\n_nSQhWq7etg\n-W8pOz1fsD0\nChIQpmBLPAo\nGC6ksHacdXI\nlsa5PDPgJmI\nMGBHNeYbsbg\n-mXoZz1dqMQ\nJgye_cEhfGQ\n-jpEsYBH3g4\nljAdSzBv0ug\nRFR3AJ-jE88\nRLbry-3z8yQ\nsM1I11qUM44\nRxwUv1BcPwg\nsSc4Y4Z9lsk\n9wCiCJ7KDs8\nttiEgVcV-Xo\nb2MEP246DxY\nS3moqQqx3Nk\nbgS0GPQhzHg\nTIEtN-jVDbg\n2W3KDB0yHYM\nK9j6xEBFek4\nc5mAaBl_qqk\nWygmbuU_78c\nX5_GpmLuea4\n7ycVIGqnLO8\n"
  },
  {
    "path": "data_loader/MovieClips_dataset.py",
    "content": "\"\"\" MoviePlots dataset module.\n\nThis code is loosely based from the collaborative-experts dataloaders:\nhttps://github.com/albanie/collaborative-experts/tree/master/data_loader\n\n\"\"\"\nimport os\nfrom os.path import join as osj\nimport ast\nimport ipdb\nimport itertools\n\nimport pandas as pd\nimport numpy as np\nimport torch\nimport nltk\nimport pdb\nfrom torch.utils.data import Dataset\nfrom utils.util import memcache, memory_summary\n\n\nclass MovieClips(Dataset):\n\n    def __init__(self, data_dir, metadata_dir, label, experts_used, experts, max_tokens, split='train'):\n        self.data_dir = data_dir\n        self.metadata_dir = metadata_dir\n        self.experts_used = [expert for expert in experts_used if experts_used[expert]]\n        self.label = label\n        if self.label not in experts_used:\n            raise ValueError('Label expert must be used.')\n        self.experts = experts\n        self.expert_dims = self._expert_dims()\n        self.max_tokens = max_tokens\n        self.split = split\n        self._load_metadata()\n        self._load_data()\n\n    def _load_metadata(self):\n        data = {\n            'movies': pd.read_csv(osj(self.metadata_dir, 'movies.csv')).set_index('imdbid'),\n            'casts': pd.read_csv(osj(self.metadata_dir, 'casts.csv')).set_index('imdbid'),\n            'clips': pd.read_csv(osj(self.metadata_dir, 'clips.csv')).set_index('videoid'),\n            'descs': pd.read_csv(osj(self.metadata_dir, 'descriptions.csv')).set_index('videoid'),\n\n        }\n        # filter by split {'train', 'val', 'test'}\n        split_data = pd.read_csv(osj(self.metadata_dir, 'split.csv')).set_index('imdbid')\n        if self.split == 'train_val':\n            ids = split_data[split_data['split'].isin(['train', 'val'])].index\n        else:\n            ids = split_data[split_data['split'] == self.split].index\n        for key in data:\n            if 'imdbid' in data[key]:\n                filter = data[key]['imdbid'].isin(ids)\n            else:\n                filter = data[key].index.isin(ids)\n            data[key] = data[key][filter]\n\n        # Remove inappropriate data\n        #empty_clips = pd.read_csv(osj(self.metadata_dir, 'empty_vids.csv')).set_index('videoid')\n        #data['clips'] = data['clips'][~data['clips'].index.isin(empty_clips.index)]\n        # duplicated descriptions are probably errors by the channel\n        data['descs'].dropna(subset=['description'], inplace=True)\n        data['descs'].drop_duplicates(subset=['description'], keep=False, inplace=True)\n\n        # remove clips without descriptions (since this is supervised)...\n        if self.label == 'description':\n            data['clips'] = data['clips'][data['clips'].index.isin(data['descs'].index)]\n        elif self.label == 'plot':\n            data['clips'] = data['clips'][data['clips']['imdbid'].isin(data['plots'].index)]\n        else:\n            raise NotImplementedError('Change data removal technique to remove clips without...')\n\n        self.data = data\n\n    def _load_data(self):\n        self.expert_data = {}\n        for expert in self.experts_used:\n            if expert != 'context':\n                data_pth = osj(self.data_dir, 'features', self.experts[expert])\n                self.expert_data[expert] = memcache(data_pth)\n                memory_summary()\n\n        clips_with_data = []\n        for expert in self.expert_data:\n            if expert != 'description' and expert != 'label':\n                clips_with_data += self.expert_data[expert].keys()\n\n\n        # debugging (input random tensors)\n        random = False\n        if random:\n            for expert in self.expert_data:\n                for videoid in self.expert_data[expert]:\n                    self.expert_data[expert][videoid] = np.random.randn(*self.expert_data[expert][videoid].shape)\n\n        # debugging (input zero tensors)\n        zeros = False\n        if zeros:\n            for expert in self.expert_data:\n                for videoid in self.expert_data[expert]:\n                    self.expert_data[expert][videoid] = np.zeros(self.expert_data[expert][videoid].shape)\n\n\n        clips_with_data = set(clips_with_data)\n\n        #sanity check\n        #pdb.set_trace()\n        #if not self.data['clips'].index.isin(clips_with_data).all():\n        #    print(self.data['clips'][~self.data['clips'].index.isin(clips_with_data)].index)\n        #    raise NotImplementedError\n        self.data['clips'] = self.data['clips'][self.data['clips'].index.isin(clips_with_data)]\n        print(f'{self.split} size: {len(self.data[\"clips\"])} clips')\n\n    def __len__(self):\n        return len(self.data['clips'])\n\n    def __getitem__(self, item):\n        videoid = self.data['clips'].iloc[item].name\n\n        data = {}\n        for expert in self.experts_used:\n            packet = self._get_expert_ftr(expert, videoid)\n            if expert == self.label:\n                data['label'] = packet\n            else:\n                data[expert] = packet\n\n        id = {'imdbid': self.data['clips'].loc[videoid]['imdbid'], 'videoid': videoid}\n        return data, id\n\n    def _get_expert_ftr(self, expert, videoid, context=False):\n        packet = {}\n\n        if expert == 'plot':\n            videoid = self.data['clips'].loc[videoid]['imdbid']  # TODO: maybe this breaks for clips with no imdbid?\n\n        if videoid not in self.expert_data[expert]:\n            missing = True\n            some_entry = list(self.expert_data[expert].keys())[0]\n            ftr = np.zeros_like(self.expert_data[expert][some_entry])\n        else:\n            missing = False\n            ftr = self.expert_data[expert][videoid]\n            #if context:\n            #    ftr = np.zeros(ftr.shape)\n                #ftr = np.random.randn(*ftr.shape)\n\n\n        ftr = torch.from_numpy(ftr)\n        ftr = ftr.float()\n        if len(ftr.shape) == 1:\n            pass\n        elif len(ftr.shape) == 2:\n            ftr, n_tokens = self._pad_to_max_tokens(ftr, expert)\n            packet['n_tokens'] = torch.Tensor([n_tokens])\n        else:\n            raise ValueError\n\n        packet['ftr'] = ftr.unsqueeze(dim=0)\n        packet['missing'] = torch.Tensor([missing])\n        return packet\n\n    def _pad_to_max_tokens(self, array, expert):\n        n_tokens, dim = array.shape\n        if n_tokens >= self.max_tokens[expert]:\n            res = array[:self.max_tokens[expert]]\n            n_tokens = self.max_tokens[expert]\n        else:\n            res = torch.zeros((self.max_tokens[expert], dim))\n            res[:n_tokens] = array\n        return res, n_tokens\n\n    def _characters_txt(self, texts, clean_cast):\n        raise NotImplementedError\n\n    def _clean_cast(self, cast):\n        for actor in cast:\n            char = cast[actor]\n            char = char.replace('(voice)', '')\n            char = char.strip()\n            char = [c.strip() for c in char.split('/')]  # deals with one-many actor\n            cast[actor] = char  # char here is a list\n        return cast\n\n    def _expert_dims(self):\n        expert_dims = {\n            'BERT': 1024,\n            'I3D': 1024,\n            'DenseNet-161': 2208,\n            'SE-ResNet-154': 2048,\n            'S3DG': 1024,\n            'SE-ResNet-50': 256,\n            '': None\n        }\n        ftrs_dim = {}\n        for key in self.experts:\n            arch = self.experts[key].split('/')[0]\n            if arch not in expert_dims and arch != \"\":\n                raise ValueError('Expert not found in dims dict, please update')\n            ftrs_dim[key] = expert_dims[arch]\n\n        return ftrs_dim\n"
  },
  {
    "path": "data_loader/data_loaders.py",
    "content": "from torchvision import datasets, transforms\nfrom base import BaseDataLoader\nfrom data_loader.MovieClips_dataset import MovieClips\n#from data_loader.MovieClips_intramovie import MovieClipsINTRA\n\nclass MovieClipsDataLoader(BaseDataLoader):\n    \"\"\"\n    MovieClips DataLoader.\n    \"\"\"\n\n    def __init__(self, data_dir, metadata_dir, label, experts_used, experts, max_tokens, batch_size, split='train', shuffle=True, num_workers=4):\n        self.data_dir = data_dir\n        self.dataset = MovieClips(data_dir, metadata_dir, label, experts_used, experts, max_tokens, split)\n\n        # batch size of entire val test set. change this for intra-movie\n        if split in ['val', 'test']:\n            batch_size = len(self.dataset.data['clips'])\n        super().__init__(self.dataset, batch_size, shuffle, split, num_workers)"
  },
  {
    "path": "data_prep/config.json",
    "content": "{\n  \"data_dir\": \"../data\",\n  \"features\": true,\n  \"facetracks\": true,\n  \"src\": false\n}\n"
  },
  {
    "path": "data_prep/download.py",
    "content": "import json\nimport os\nfrom os.path import join as osj\nimport pandas as pd\nimport pdb\n\nhosting_address = 'https://thor.robots.ox.ac.uk/~vgg/data/condensed-movies/data'\n\n\ndef download_features(data_dir):\n    cmd = 'wget {}/features.zip -P {}; unzip {}/features.zip -d {}'.format(hosting_address, data_dir, data_dir, data_dir)\n    os.system(cmd)\n\n\ndef download_facetracks(data_dir):\n    cmd = 'wget {}/facetracks.zip -P {}; unzip {}/facetracks.zip -d {}'.format(hosting_address, data_dir,\n                                                                               data_dir, data_dir)\n    os.system(cmd)\n\n\ndef youtube_download(data_dir):\n    id_dir = '../data/metadata/youtube-dl-dump'\n    video_dir = osj(data_dir, 'videos')\n    if not os.path.exists(video_dir):\n        os.makedirs(video_dir)\n    for file in os.listdir(id_dir):\n        upload_year = file.replace('.csv', '')\n        video_dir_year = osj(video_dir, upload_year)\n        if not os.path.exists(video_dir_year):\n            os.makedirs(video_dir_year)\n\n        output_fmt = osj(video_dir_year, '%(id)s.%(ext)s')\n        id_fp = osj(id_dir, file)\n        cmd = 'youtube-dl --config-location youtube-dl.conf -o \"{}\" -a \"{}\"'.format(output_fmt, id_fp)\n        os.system(cmd)\n\n    # trim advertisement outro from video.\n    trim = None\n    while trim not in ['y', 'n']:\n        trim = str(input(\n            \"\\nDo you want to trim the videos (y/n)?\\nThis removes the advertisements (unrelated to the film), and only needs to be done once per download.\"))\n\n        if trim not in ['y', 'n']:\n            print('Please type \"y\" or \"n\"')\n\n    if trim == \"y\":\n        trim_video_outro(video_dir)\n\n    # check for failed downloads: this can be due to...\n    # i) geographical restrictions\n    # ii) Too many requests error\n    check_missing_vids(video_dir)\n\n\ndef trim_video_outro(video_dir, video_ext='.mkv'):\n    duration_data = pd.read_csv('../data/metadata/durations.csv').set_index('videoid')\n\n    tmp_fp = osj(video_dir, 'tmp' + video_ext)\n    for root, subdir, files in os.walk(video_dir):\n        for file in files:\n            if file.endswith(video_ext) and file != 'tmp' + video_ext:\n                videoid = file.split(video_ext)[0]\n                if videoid not in duration_data.index:\n                    raise ValueError(\"Videoid not found, video files should be in format {VIDEOID}.mkv\")\n\n                video_fp = osj(root, file)\n                new_duration = duration_data.loc[videoid]['duration']\n\n                # create tmp for untrimmed\n                os.system('cp {} {}'.format(video_fp, tmp_fp))\n                cmd = 'ffmpeg -y -ss 0 -i {} -t {} -c copy {}'.format(tmp_fp, new_duration, video_fp)\n                os.system(cmd)\n                os.remove(tmp_fp)\n\n\ndef check_missing_vids(video_dir, video_ext='.mkv'):\n    missing_ids = []\n    clips_data = pd.read_csv('../data/metadata/clips.csv').set_index('videoid')\n    for idx, row in clips_data.iterrows():\n        videoid = row.name\n        upload_year = row['upload_year']\n        video_fp = osj(video_dir, str(int(upload_year)), videoid + video_ext)\n        if not os.path.isfile(video_fp):\n            missing_ids.append(videoid)\n\n    success = (1 - len(missing_ids) / len(clips_data)) * 100\n    print('=======================================================\\n%.2f %% of clips downloaded successfully' % success)\n    if success == 100:\n        pass\n    elif success < 100:\n        print(\n            '%d clips failed to download. This is likely due to geographical restrictions.\\n-->Contact maxbain@robots.ox.ac.uk if this is an issue.' % len(\n                missing_ids))\n\n    with open('missing_videos.out', 'w') as fid:\n        for mid in missing_ids:\n            fid.write(mid + '\\n')\n\n\ndef main():\n    config = json.load(open('config.json', 'r'))\n    data_dir = config['data_dir']\n    if not os.path.exists(data_dir):\n        os.makedirs(data_dir)\n\n    if config['features']:\n        download_features(data_dir)\n    if config['facetracks']:\n        download_facetracks(data_dir)\n    if config['src']:\n        youtube_download(data_dir)\n\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "data_prep/youtube-dl.conf",
    "content": "# RESOLUTION\n-f 'bestvideo[height<=360][ext=mp4]+bestaudio/best[height<=360][ext=m4a]/mp4'\n\n--flat-playlist\n\n# FORMAT\n--prefer-ffmpeg\n--merge-output-format mkv\n\n# SUBTITLES\n--write-auto-sub\n--convert-subs srt\n\n# METADATA\n#--add-metadata\n#--write-description\n\n# Ignore missing videos\n--ignore-errors\n"
  },
  {
    "path": "logger/__init__.py",
    "content": "from .logger import *\nfrom .visualization import *"
  },
  {
    "path": "logger/logger.py",
    "content": "import logging\nimport logging.config\nfrom pathlib import Path\nfrom utils import read_json\n\n\ndef setup_logging(save_dir, log_config='logger/logger_config.json', default_level=logging.INFO):\n    \"\"\"\n    Setup logging configuration\n    \"\"\"\n    log_config = Path(log_config)\n    if log_config.is_file():\n        config = read_json(log_config)\n        # modify logging paths based on run config\n        for _, handler in config['handlers'].items():\n            if 'filename' in handler:\n                handler['filename'] = str(save_dir / handler['filename'])\n\n        logging.config.dictConfig(config)\n    else:\n        print(\"Warning: logging configuration file is not found in {}.\".format(log_config))\n        logging.basicConfig(level=default_level)\n"
  },
  {
    "path": "logger/logger_config.json",
    "content": "\n{\n    \"version\": 1, \n    \"disable_existing_loggers\": false, \n    \"formatters\": {\n        \"simple\": {\"format\": \"%(message)s\"}, \n        \"datetime\": {\"format\": \"%(asctime)s - %(name)s - %(levelname)s - %(message)s\"}\n    }, \n    \"handlers\": {\n        \"console\": {\n            \"class\": \"logging.StreamHandler\", \n            \"level\": \"DEBUG\", \n            \"formatter\": \"simple\", \n            \"stream\": \"ext://sys.stdout\"\n            }, \n        \"info_file_handler\": {\n            \"class\": \"logging.handlers.RotatingFileHandler\", \n            \"level\": \"INFO\", \n            \"formatter\": \"datetime\", \n            \"filename\": \"info.log\", \n            \"maxBytes\": 10485760, \n            \"backupCount\": 20, \"encoding\": \"utf8\"\n        }\n    }, \n    \"root\": {\n        \"level\": \"INFO\", \n        \"handlers\": [\n            \"console\", \n            \"info_file_handler\"\n        ]\n    }\n}"
  },
  {
    "path": "logger/visualization.py",
    "content": "import importlib\nfrom utils import Timer\n\n\nclass TensorboardWriter():\n    def __init__(self, log_dir, logger, enabled):\n        self.writer = None\n        self.selected_module = \"\"\n\n        if enabled:\n            log_dir = str(log_dir)\n\n            # Retrieve vizualization writer.\n            succeeded = False\n            for module in [\"torch.utils.tensorboard\", \"tensorboardX\"]:\n                try:\n                    self.writer = importlib.import_module(module).SummaryWriter(log_dir)\n                    succeeded = True\n                    break\n                except ImportError:\n                    succeeded = False\n                self.selected_module = module\n\n            if not succeeded:\n                message = \"Warning: visualization (Tensorboard) is configured to use, but currently not installed on \" \\\n                    \"this machine. Please install either TensorboardX with 'pip install tensorboardx', upgrade \" \\\n                    \"PyTorch to version >= 1.1 for using 'torch.utils.tensorboard' or turn off the option in \" \\\n                    \"the 'config.json' file.\"\n                logger.warning(message)\n\n        self.step = 0\n        self.mode = ''\n\n        self.tb_writer_ftns = {\n            'add_scalar', 'add_scalars', 'add_image', 'add_images', 'add_audio',\n            'add_text', 'add_histogram', 'add_pr_curve', 'add_embedding'\n        }\n        self.tag_mode_exceptions = {'add_histogram', 'add_embedding'}\n            \n        self.timer = Timer()\n\n    def set_step(self, step, mode='train'):\n        self.mode = mode\n        self.step = step\n        if step == 0:\n            self.timer.reset()\n        else:\n            duration = self.timer.check()\n            self.add_scalar('steps_per_sec', 1 / duration)\n\n    def __getattr__(self, name):\n        \"\"\"\n        If visualization is configured to use:\n            return add_data() methods of tensorboard with additional information (step, tag) added.\n        Otherwise:\n            return a blank function handle that does nothing\n        \"\"\"\n        if name in self.tb_writer_ftns:\n            add_data = getattr(self.writer, name, None)\n\n            def wrapper(tag, data, *args, **kwargs):\n                if add_data is not None:\n                    # add mode(train/valid) tag\n                    if name not in self.tag_mode_exceptions:\n                        tag = '{}/{}'.format(tag, self.mode)\n                    add_data(tag, data, self.step, *args, **kwargs)\n            return wrapper\n        else:\n            # default action for returning methods defined in this class, set_step() for instance.\n            try:\n                attr = object.__getattr__(name)\n            except AttributeError:\n                raise AttributeError(\"type object '{}' has no attribute '{}'\".format(self.selected_module, name))\n            return attr\n"
  },
  {
    "path": "model/loss.py",
    "content": "\"\"\"This module contains an implementation of the max margin ranking loss, slightly\nmodified from this code:\nhttps://github.com/antoine77340/Mixture-of-Embedding-Experts/blob/master/loss.py\n\nThe modification is the `fix_norm` conditional, which removes zero terms from the\ndiagonal when performing the averaging calculation.\n\nOriginal licence below.\n\"\"\"\n# Copyright 2018 Antoine Miech All Rights Reserved.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n#      http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS-IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport torch.nn as nn\nimport torch as th\nimport torch.nn.functional as F\n\n\nclass MaxMarginRankingLoss(nn.Module):\n\n    def __init__(self, margin=1, fix_norm=True):\n        super().__init__()\n        self.fix_norm = fix_norm\n        self.loss = th.nn.MarginRankingLoss(margin)\n        self.margin = margin\n\n    def forward(self, x):\n        n = x.size()[0]\n\n        x1 = th.diag(x)\n        x1 = x1.unsqueeze(1)\n        x1 = x1.expand(n, n)\n        x1 = x1.contiguous().view(-1, 1)\n        x1 = th.cat((x1, x1), 0)\n\n        x2 = x.view(-1, 1)\n        x3 = x.transpose(0, 1).contiguous().view(-1, 1)\n\n        x2 = th.cat((x2, x3), 0)\n        max_margin = F.relu(self.margin - (x1 - x2))\n\n        if self.fix_norm:\n            # remove the elements from the diagonal\n            keep = th.ones(x.shape) - th.eye(x.shape[0])  # 128 x 128\n            keep1 = keep.view(-1, 1)\n            keep2 = keep.transpose(0, 1).contiguous().view(-1, 1)\n            keep_idx = th.nonzero(th.cat((keep1, keep2), 0).flatten()).flatten()\n            if x1.is_cuda:\n                keep_idx = keep_idx.cuda()\n            x1_ = th.index_select(x1, dim=0, index=keep_idx)\n            x2_ = th.index_select(x2, dim=0, index=keep_idx)\n            max_margin = F.relu(self.margin - (x1_ - x2_))\n\n        return max_margin.mean()\n\ndef cosine_sim(im, s):\n    \"\"\"Cosine similarity between all the image and sentence pairs\n    \"\"\"\n    return im.mm(s.t())\n\n\ndef order_sim(im, s):\n    \"\"\"Order embeddings similarity measure $max(0, s-im)$\n    \"\"\"\n    YmX = (s.unsqueeze(1).expand(s.size(0), im.size(0), s.size(1))\n           - im.unsqueeze(0).expand(s.size(0), im.size(0), s.size(1)))\n    score = -YmX.clamp(min=0).pow(2).sum(2).sqrt().t()\n    return score\n\nfrom torch.autograd import Variable\n\n\nclass ContrastiveLoss(nn.Module):\n    \"\"\"\n    Compute contrastive loss\n    \"\"\"\n\n    def __init__(self, margin=0, measure=False, max_violation=False):\n        super(ContrastiveLoss, self).__init__()\n        self.margin = margin\n        self.max_violation = max_violation\n\n    def forward(self, im, s, scores):\n        # compute image-sentence score matrix\n        scores = self.sim(im, s)\n        diagonal = scores.diag().view(im.size(0), 1)\n        d1 = diagonal.expand_as(scores)\n        d2 = diagonal.t().expand_as(scores)\n\n        # compare every diagonal score to scores in its column\n        # caption retrieval\n        cost_s = (self.margin + scores - d1).clamp(min=0)\n        # compare every diagonal score to scores in its row\n        # image retrieval\n        cost_im = (self.margin + scores - d2).clamp(min=0)\n\n        # clear diagonals\n        mask = th.eye(scores.size(0)) > .5\n        I = Variable(mask)\n        if th.cuda.is_available():\n            I = I.cuda()\n        cost_s = cost_s.masked_fill_(I, 0)\n        cost_im = cost_im.masked_fill_(I, 0)\n\n        # keep the maximum violating negative for each query\n        if self.max_violation:\n            cost_s = cost_s.max(1)[0]\n            cost_im = cost_im.max(0)[0]\n\n        return cost_s.sum() + cost_im.sum()\n\nclass BCEWithLogitsLoss(nn.Module):\n\n    def __init__(self, weight=None):\n        super().__init__()\n        self.loss = th.nn.BCEWithLogitsLoss(weight=weight)\n\n    def forward(self, x, target):\n        return self.loss(x, target)\n\n\nclass CrossEntropyLoss(nn.Module):\n\n    def __init__(self, weight=None):\n        super().__init__()\n        self.loss = th.nn.CrossEntropyLoss(weight=weight)\n\n    def forward(self, x, target):\n        return self.loss(x, target.long().to(x.device))\n\n\nif __name__ == \"__main__\":\n    loss = BCEWithLogitsLoss()\n    x = th.randn(3, requires_grad=True)\n    target = th.empty(3).random_(2)\n    output = loss(x, target)\n    output.backward()\n    print(target)\n"
  },
  {
    "path": "model/metric.py",
    "content": "import torch\nimport ipdb\n\n\"\"\"Module for computing performance metrics\n\n\"\"\"\nimport math\nimport numbers\nfrom pathlib import Path\nimport ipdb\nimport numpy as np\nimport torch\nimport scipy.stats\nfrom sklearn.metrics import average_precision_score\nimport ipdb\nimport pdb\n\ndef t2v_metrics(sims, query_masks=None):\n    \"\"\"Compute retrieval metrics from a similiarity matrix.\n\n    Args:\n        sims (th.Tensor): N x M matrix of similarities between embeddings, where\n             x_{i,j} = <text_embd[i], vid_embed[j]>\n        query_masks (th.Tensor): mask any missing queries from the dataset (two videos\n             in MSRVTT only have 19, rather than 20 captions)\n\n    Returns:\n        (dict[str:float]): retrieval metrics\n    \"\"\"\n    assert sims.ndim == 2, \"expected a matrix\"\n    num_queries, num_vids = sims.shape\n    dists = -sims\n    sorted_dists = np.sort(dists, axis=1)\n\n    # The indices are computed such that they slice out the ground truth distances\n    # from the psuedo-rectangular dist matrix\n    queries_per_video = num_queries // num_vids\n    gt_idx = [[np.ravel_multi_index([ii, jj], (num_queries, num_vids))\n               for ii in range(jj * queries_per_video, (jj + 1) * queries_per_video)]\n              for jj in range(num_vids)]\n    gt_idx = np.array(gt_idx)\n    gt_dists = dists.reshape(-1)[gt_idx.reshape(-1)]\n    gt_dists = gt_dists[:, np.newaxis]\n    rows, cols = np.where((sorted_dists - gt_dists) == 0)  # find column position of GT\n\n    # --------------------------------\n    # NOTE: Breaking ties\n    # --------------------------------\n    # We sometimes need to break ties (in general, these should occur extremely rarely,\n    # but there are pathological cases when they can distort the scores, such as when\n    # the similarity matrix is all zeros). Previous implementations (e.g. the t2i\n    # evaluation function used\n    # here: https://github.com/niluthpol/multimodal_vtt/blob/master/evaluation.py and\n    # here: https://github.com/linxd5/VSE_Pytorch/blob/master/evaluation.py#L87) generally\n    # break ties \"optimistically\".  However, if the similarity matrix is constant this\n    # can evaluate to a perfect ranking. A principled option is to average over all\n    # possible partial orderings implied by the ties. See # this paper for a discussion:\n    #    McSherry, Frank, and Marc Najork,\n    #    \"Computing information retrieval performance measures efficiently in the presence\n    #    of tied scores.\" European conference on information retrieval. Springer, Berlin,\n    #    Heidelberg, 2008.\n    # http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.145.8892&rep=rep1&type=pdf\n\n    # break_ties = \"optimistically\"\n    break_ties = \"averaging\"\n\n    if rows.size > num_queries:\n        assert np.unique(rows).size == num_queries, \"issue in metric evaluation\"\n        if break_ties == \"optimistically\":\n            _, idx = np.unique(rows, return_index=True)\n            cols = cols[idx]\n        elif break_ties == \"averaging\":\n            # fast implementation, based on this code:\n            # https://stackoverflow.com/a/49239335\n            locs = np.argwhere((sorted_dists - gt_dists) == 0)\n\n            # Find the split indices\n            steps = np.diff(locs[:, 0])\n            splits = np.nonzero(steps)[0] + 1\n            splits = np.insert(splits, 0, 0)\n\n            # Compute the result columns\n            summed_cols = np.add.reduceat(locs[:, 1], splits)\n            counts = np.diff(np.append(splits, locs.shape[0]))\n            avg_cols = summed_cols / counts\n            if False:\n                print(\"Running slower code to verify rank averaging across ties\")\n                # slow, but more interpretable version, used for testing\n                avg_cols_slow = [np.mean(cols[rows == idx]) for idx in range(num_queries)]\n                assert np.array_equal(avg_cols, avg_cols_slow), \"slow vs fast difference\"\n                print(\"passed num check\")\n            cols = avg_cols\n\n    msg = \"expected ranks to match queries ({} vs {}) \"\n    if cols.size != num_queries:\n        import ipdb;\n        ipdb.set_trace()\n    assert cols.size == num_queries, msg\n\n    if False:\n        # overload mask to check that we can recover the scores for single-query\n        # retrieval\n        print(\"DEBUGGING MODE\")\n        query_masks = np.zeros_like(query_masks)\n        query_masks[:, 0] = 1  # recover single query score\n\n    if query_masks is not None:\n        # remove invalid queries\n        assert query_masks.size == num_queries, \"invalid query mask shape\"\n        cols = cols[query_masks.reshape(-1).astype(np.bool)]\n        assert cols.size == query_masks.sum(), \"masking was not applied correctly\"\n        # update number of queries to account for those that were missing\n        num_queries = query_masks.sum()\n\n    if False:\n        # sanity check against old logic for square matrices\n        gt_dists_old = np.diag(dists)\n        gt_dists_old = gt_dists_old[:, np.newaxis]\n        _, cols_old = np.where((sorted_dists - gt_dists_old) == 0)\n        assert np.array_equal(cols_old, cols), \"new metric doesn't match\"\n\n    return cols2metrics(cols, num_queries)\n\n\ndef v2t_metrics(sims, query_masks=None):\n    \"\"\"Compute retrieval metrics from a similiarity matrix.\n\n    Args:\n        sims (th.Tensor): N x M matrix of similarities between embeddings, where\n             x_{i,j} = <text_embd[i], vid_embed[j]>\n        query_masks (th.Tensor): mask any missing captions from the dataset\n\n    Returns:\n        (dict[str:float]): retrieval metrics\n\n    NOTES: We find the closest \"GT caption\" in the style of VSE, which corresponds\n    to finding the rank of the closest relevant caption in embedding space:\n    github.com/ryankiros/visual-semantic-embedding/blob/master/evaluation.py#L52-L56\n    \"\"\"\n    # switch axes of text and video\n    sims = sims.T\n\n    if False:\n        # experiment with toy example\n        sims = np.ones((3, 3))\n        sims[0, 0] = 2\n        sims[1, 1:2] = 2\n        sims[2, :] = 2\n        query_masks = None\n\n    assert sims.ndim == 2, \"expected a matrix\"\n    num_queries, num_caps = sims.shape\n    dists = -sims\n    caps_per_video = num_caps // num_queries\n    break_ties = \"averaging\"\n\n    MISSING_VAL = 1E8\n    query_ranks = []\n    for ii in range(num_queries):\n        row_dists = dists[ii, :]\n        if query_masks is not None:\n            # Set missing queries to have a distance of infinity.  A missing query\n            # refers to a query position `n` for a video that had less than `n`\n            # captions (for example, a few MSRVTT videos only have 19 queries)\n            row_dists[np.logical_not(query_masks.reshape(-1))] = MISSING_VAL\n\n        # NOTE: Using distance subtraction to perform the ranking is easier to make\n        # deterministic than using argsort, which suffers from the issue of defining\n        # \"stability\" for equal distances.  Example of distance subtraction code:\n        # github.com/antoine77340/Mixture-of-Embedding-Experts/blob/master/train.py\n        sorted_dists = np.sort(row_dists)\n\n        min_rank = np.inf\n        for jj in range(ii * caps_per_video, (ii + 1) * caps_per_video):\n            if row_dists[jj] == MISSING_VAL:\n                # skip rankings of missing captions\n                continue\n            ranks = np.where((sorted_dists - row_dists[jj]) == 0)[0]\n            if break_ties == \"optimistically\":\n                rank = ranks[0]\n            elif break_ties == \"averaging\":\n                # NOTE: If there is more than one caption per video, its possible for the\n                # method to do \"worse than chance\" in the degenerate case when all\n                # similarities are tied.  TODO(Samuel): Address this case.\n                rank = ranks.mean()\n            if rank < min_rank:\n                min_rank = rank\n        query_ranks.append(min_rank)\n    query_ranks = np.array(query_ranks)\n\n    # sanity check against old version of code\n    if False:\n        sorted_dists = np.sort(dists, axis=1)\n        gt_dists_old = np.diag(dists)\n        gt_dists_old = gt_dists_old[:, np.newaxis]\n        rows_old, cols_old = np.where((sorted_dists - gt_dists_old) == 0)\n        if rows_old.size > num_queries:\n            _, idx = np.unique(rows_old, return_index=True)\n            cols_old = cols_old[idx]\n        num_diffs = (1 - (cols_old == query_ranks)).sum()\n        msg = f\"new metric doesn't match in {num_diffs} places\"\n        assert np.array_equal(cols_old, query_ranks), msg\n\n        # visualise the distance matrix\n        import sys\n        import matplotlib\n        matplotlib.use(\"Agg\")\n        import matplotlib.pyplot as plt\n        sys.path.insert(0, str(Path.home() / \"coding/src/zsvision/python\"))\n        from zsvision.zs_iterm import zs_dispFig  # NOQA\n        plt.matshow(dists)\n        zs_dispFig()\n\n    return cols2metrics(query_ranks, num_queries)\n\n\ndef retrieval_as_classification(sims, query_masks=None):\n    \"\"\"Compute classification metrics from a similiarity matrix.\n    \"\"\"\n    assert sims.ndim == 2, \"expected a matrix\"\n\n    # switch axes of query-labels and video\n    sims = sims.T\n    query_masks = query_masks.T\n    dists = -sims\n    num_queries, num_labels = sims.shape\n    break_ties = \"averaging\"\n\n    query_ranks = []\n    for ii in range(num_queries):\n        row_dists = dists[ii, :]\n\n        # NOTE: Using distance subtraction to perform the ranking is easier to make\n        # deterministic than using argsort, which suffers from the issue of defining\n        # \"stability\" for equal distances.  Example of distance subtraction code:\n        # github.com/antoine77340/Mixture-of-Embedding-Experts/blob/master/train.py\n        sorted_dists = np.sort(row_dists)\n\n        # min_rank = np.inf\n        label_ranks = []\n        for gt_label in np.where(query_masks[ii, :])[0]:\n            ranks = np.where((sorted_dists - row_dists[gt_label]) == 0)[0]\n            if break_ties == \"optimistically\":\n                rank = ranks[0]\n            elif break_ties == \"averaging\":\n                # NOTE: If there is more than one caption per video, its possible for the\n                # method to do \"worse than chance\" in the degenerate case when all\n                # similarities are tied.  TODO(Samuel): Address this case.\n                rank = ranks.mean()\n            else:\n                raise ValueError(f\"unknown tie-breaking method: {break_ties}\")\n            label_ranks.append(rank)\n        # Avoid penalising for assigning higher similarity to other gt labels. This is\n        # done by subtracting out the better ranked query labels.  Note that this step\n        # introduces a slight skew in favour of videos with lots of labels.  We can\n        # address this later with a normalisation step if needed.\n        label_ranks = [x - idx for idx, x in enumerate(label_ranks)]\n\n        # Include all labels in the final calculation\n        query_ranks.extend(label_ranks)\n    query_ranks = np.array(query_ranks)\n\n    # sanity check against old version of code\n    if False:\n        # visualise the distance matrix\n        import sys\n        import matplotlib\n        matplotlib.use(\"Agg\")\n        import matplotlib.pyplot as plt\n        sys.path.insert(0, str(Path.home() / \"coding/src/zsvision/python\"))\n        from zsvision.zs_iterm import zs_dispFig  # NOQA\n        # plt.matshow(dists)\n        # zs_dispFig()\n        plt.hist(query_ranks, bins=313, alpha=0.5)\n        plt.grid()\n        zs_dispFig()\n        import ipdb;\n        ipdb.set_trace()\n\n    return cols2metrics(query_ranks, num_queries=len(query_ranks))\n\n\ndef cols2metrics(cols, num_queries):\n    metrics = {}\n    metrics[\"R1\"] = 100 * float(np.sum(cols == 0)) / num_queries\n    metrics[\"R5\"] = 100 * float(np.sum(cols < 5)) / num_queries\n    metrics[\"R10\"] = 100 * float(np.sum(cols < 10)) / num_queries\n    metrics[\"R50\"] = 100 * float(np.sum(cols < 50)) / num_queries\n    metrics[\"MedR\"] = np.median(cols) + 1\n    metrics[\"MeanR\"] = np.mean(cols) + 1\n    stats = [metrics[x] for x in (\"R1\", \"R5\", \"R10\")]\n    metrics[\"geometric_mean_R1-R5-R10\"] = scipy.stats.mstats.gmean(stats)\n    return metrics\n\n\ndef mean_average_precision(sims, query_masks=None):\n    ap_meter = APMeter()\n    ap_meter.add(output=sims.T, target=query_masks.T)\n    return {\"mAP\": ap_meter.value().mean()}\n\n\nclass AverageMeter(object):\n    \"\"\"Computes and stores the average and current value\"\"\"\n\n    def __init__(self, name, fmt=':f'):\n        self.name = name\n        self.fmt = fmt\n        self.reset()\n\n    def reset(self):\n        self.val = 0\n        self.avg = 0\n        self.sum = 0\n        self.count = 0\n\n    def update(self, val, n=1):\n        self.val = val\n        self.sum += val * n\n        self.count += n\n        self.avg = self.sum / self.count\n\n    def __str__(self):\n        fmtstr = '{name} {val' + self.fmt + '} ({avg' + self.fmt + '})'\n        return fmtstr.format(**self.__dict__)\n\n\nclass Meter(object):\n    '''Meters provide a way to keep track of important statistics in an online manner.\n    This class is abstract, but provides a sGktandard interface for all meters to follow.\n    '''\n\n    def reset(self):\n        '''Resets the meter to default settings.'''\n        pass\n\n    def add(self, value):\n        '''Log a new value to the meter\n        Args:\n            value: Next restult to include.\n        '''\n        pass\n\n    def value(self):\n        '''Get the value of the meter in the current state.'''\n        pass\n\n\nclass APMeter(Meter):\n    \"\"\"\n    The APMeter measures the average precision per class.\n    The APMeter is designed to operate on `NxK` Tensors `output` and\n    `target`, and optionally a `Nx1` Tensor weight where (1) the `output`\n    contains model output scores for `N` examples and `K` classes that ought to\n    be higher when the model is more convinced that the example should be\n    positively labeled, and smaller when the model believes the example should\n    be negatively labeled (for instance, the output of a sigmoid function); (2)\n    the `target` contains only values 0 (for negative examples) and 1\n    (for positive examples); and (3) the `weight` ( > 0) represents weight for\n    each sample.\n    \"\"\"\n\n    def __init__(self):\n        super(APMeter, self).__init__()\n        self.reset()\n\n    def reset(self):\n        \"\"\"Resets the meter with empty member variables\"\"\"\n        self.scores = torch.FloatTensor(torch.FloatStorage())\n        self.targets = torch.LongTensor(torch.LongStorage())\n        self.weights = torch.FloatTensor(torch.FloatStorage())\n\n    def add(self, output, target, weight=None):\n        \"\"\"Add a new observation\n        Args:\n            output (Tensor): NxK tensor that for each of the N examples\n                indicates the probability of the example belonging to each of\n                the K classes, according to the model. The probabilities should\n                sum to one over all classes\n            target (Tensor): binary NxK tensort that encodes which of the K\n                classes are associated with the N-th input\n                (eg: a row [0, 1, 0, 1] indicates that the example is\n                associated with classes 2 and 4)\n            weight (optional, Tensor): Nx1 tensor representing the weight for\n                each example (each weight > 0)\n        \"\"\"\n        if not torch.is_tensor(output):\n            output = torch.from_numpy(output)\n        if not torch.is_tensor(target):\n            target = torch.from_numpy(target)\n\n        if weight is not None:\n            if not torch.is_tensor(weight):\n                weight = torch.from_numpy(weight)\n            weight = weight.squeeze()\n        if output.dim() == 1:\n            output = output.view(-1, 1)\n        else:\n            assert output.dim() == 2, \\\n                'wrong output size (should be 1D or 2D with one column \\\n                per class)'\n        if target.dim() == 1:\n            target = target.view(-1, 1)\n        else:\n            assert target.dim() == 2, \\\n                'wrong target size (should be 1D or 2D with one column \\\n                per class)'\n        if weight is not None:\n            assert weight.dim() == 1, 'Weight dimension should be 1'\n            assert weight.numel() == target.size(0), \\\n                'Weight dimension 1 should be the same as that of target'\n            assert torch.min(weight) >= 0, 'Weight should be non-negative only'\n        assert torch.equal(target ** 2, target), \\\n            'targets should be binary (0 or 1)'\n        if self.scores.numel() > 0:\n            assert target.size(1) == self.targets.size(1), \\\n                'dimensions for output should match previously added examples.'\n\n        # make sure storage is of sufficient size\n        if self.scores.storage().size() < self.scores.numel() + output.numel():\n            new_size = math.ceil(self.scores.storage().size() * 1.5)\n            new_weight_size = math.ceil(self.weights.storage().size() * 1.5)\n            self.scores.storage().resize_(int(new_size + output.numel()))\n            self.targets.storage().resize_(int(new_size + output.numel()))\n            if weight is not None:\n                self.weights.storage().resize_(int(new_weight_size + output.size(0)))\n\n        # store scores and targets\n        offset = self.scores.size(0) if self.scores.dim() > 0 else 0\n        self.scores.resize_(offset + output.size(0), output.size(1))\n        self.targets.resize_(offset + target.size(0), target.size(1))\n        self.scores.narrow(0, offset, output.size(0)).copy_(output)\n        self.targets.narrow(0, offset, target.size(0)).copy_(target)\n\n        if weight is not None:\n            self.weights.resize_(offset + weight.size(0))\n            self.weights.narrow(0, offset, weight.size(0)).copy_(weight)\n\n    def value(self):\n        \"\"\"Returns the model's average precision for each class\n        Return:\n            ap (FloatTensor): 1xK tensor, with avg precision for each class k\n        \"\"\"\n\n        if self.scores.numel() == 0:\n            return 0\n        ap = torch.zeros(self.scores.size(1))\n        if hasattr(torch, \"arange\"):\n            rg = torch.arange(1, self.scores.size(0) + 1).float()\n        else:\n            rg = torch.range(1, self.scores.size(0)).float()\n        if self.weights.numel() > 0:\n            weight = self.weights.new(self.weights.size())\n            weighted_truth = self.weights.new(self.weights.size())\n\n        # compute average precision for each class\n        for k in range(self.scores.size(1)):\n            # sort scores\n            scores = self.scores[:, k]\n            targets = self.targets[:, k]\n            _, sortind = torch.sort(scores, 0, True)\n            truth = targets[sortind]\n            if self.weights.numel() > 0:\n                weight = self.weights[sortind]\n                weighted_truth = truth.float() * weight\n                rg = weight.cumsum(0)\n\n            # compute true positive sums\n            if self.weights.numel() > 0:\n                tp = weighted_truth.cumsum(0)\n            else:\n                tp = truth.float().cumsum(0)\n\n            # compute precision curve\n            precision = tp.div(rg)\n\n            # compute average precision\n            ap[k] = precision[truth.byte()].sum() / max(float(truth.sum()), 1)\n        return ap\n\n\nclass APMeterChallenge(APMeter):\n    \"\"\"\n    The APMeter measures the average precision per class.\n    The APMeter is designed to operate on `NxK` Tensors `output` and\n    `target`, and optionally a `Nx1` Tensor weight where (1) the `output`\n    contains model output scores for `N` examples and `K` classes that ought to\n    be higher when the model is more convinced that the example should be\n    positively labeled, and smaller when the model believes the example should\n    be negatively labeled (for instance, the output of a sigmoid function); (2)\n    the `target` contains only values 0 (for negative examples) and 1\n    (for positive examples); and (3) the `weight` ( > 0) represents weight for\n    each sample.\n    \"\"\"\n\n    def value(self):\n        \"\"\"Returns the model's average precision for each class\n        Return:\n            ap (FloatTensor): 1xK tensor, with avg precision for each class k\n        \"\"\"\n        if not self.scores.numel():\n            return 0\n\n        mAP = 0.0\n        scores_np, target_np = self.scores.cpu().numpy(), self.targets.cpu().numpy()\n        for ii in range(self.targets.shape[0]):\n            sorted_ind = np.argsort(-1 * scores_np[ii, :])\n            gt_label = np.squeeze(target_np[ii, :])\n            pred_label = np.squeeze(scores_np[ii, :])\n            for jj in range(target_np.shape[1]):\n                pred_label[sorted_ind[jj]] = target_np.shape[1] - 1 - jj\n            mAP += average_precision_score(gt_label, pred_label, average='macro')\n        ap = mAP / target_np.shape[0]\n        return torch.from_numpy(np.asarray(ap))\n\n\nclass ClassErrorMeter(Meter):\n    def __init__(self, topk=[1, 5, 10, 50], accuracy=True):\n        super(ClassErrorMeter, self).__init__()\n        self.topk = np.sort(topk)\n        self.accuracy = accuracy\n        self.reset()\n\n    def reset(self):\n        self.sum = {v: 0 for v in self.topk}\n        self.n = 0\n\n    def add(self, output, target):\n        if torch.is_tensor(output):\n            output = output.cpu().squeeze().numpy()\n        if torch.is_tensor(target):\n            target = np.atleast_1d(target.cpu().squeeze().numpy())\n        elif isinstance(target, numbers.Number):\n            target = np.asarray([target])\n        if np.ndim(output) == 1:\n            output = output[np.newaxis]\n        else:\n            assert np.ndim(output) == 2, \\\n                'wrong output size (1D or 2D expected)'\n            assert np.ndim(target) == 1, \\\n                'target and output do not match'\n        assert target.shape[0] == output.shape[0], \\\n            'target and output do not match'\n        topk = self.topk\n        maxk = int(topk[-1])  # seems like Python3 wants int and not np.int64\n        no = output.shape[0]\n\n        pred = torch.from_numpy(output).topk(maxk, 1, True, True)[1].numpy()\n        correct = pred == target[:, np.newaxis].repeat(pred.shape[1], 1)\n\n        for k in topk:\n            self.sum[k] += no - correct[:, 0:k].sum()\n        self.n += no\n\n    def value(self, k=-1):\n        if k != -1:\n            assert k in self.sum.keys(), \\\n                'invalid k (this k was not provided at construction time)'\n            if self.accuracy:\n                return (1. - float(self.sum[k]) / self.n) * 100.0\n            else:\n                return float(self.sum[k]) / self.n * 100.0\n        else:\n            return [self.value(k_) for k_ in self.topk]\n"
  },
  {
    "path": "model/model.py",
    "content": "import itertools\nfrom collections import OrderedDict\nimport torch\nimport torch.nn as nn\nimport torch.nn.functional as F\nfrom base import BaseModel\nfrom model.net_vlad import NetVLAD\nimport ipdb\nfrom torch import autograd\n\nclass MoEE(BaseModel):\n    def __init__(self, label, experts_used, expert_dims, aggregation_method, projection_dim, pretrained, use_moe):\n        super().__init__()\n        self.n_clips = 1\n        self.label = label\n        self.experts_used = experts_used.copy()\n        self.experts_used.remove(self.label)\n        expert_dims['label'] = expert_dims[label]\n        self.expert_dims = expert_dims\n        self.aggregation_method = aggregation_method\n        self.projection_dim = projection_dim\n\n        self.aggregation = nn.ModuleDict({\n            expert: get_aggregation(info, self.expert_dims[expert]) for expert, info in self.aggregation_method.items()\n            if expert in self.experts_used + ['label']\n        })\n\n        for key in self.aggregation_method:\n            if self.aggregation_method[key]['type'] == \"net_vlad\":\n                self.expert_dims[key] = self.expert_dims[key] * self.aggregation_method[key][\n                    'cluster_size']  # TODO: hacky, improve\n\n        self.video_GU = nn.ModuleDict({\n            expert: Gated_Embedding_Unit(self.expert_dims[expert], self.projection_dim, channels=self.n_clips)\n            for expert in self.experts_used\n        })\n\n        self.clip_GU = nn.ModuleList([\n            nn.Identity() for clip in range(self.n_clips)\n        ])\n\n        self.text_GU = nn.ModuleDict({\n            expert: Gated_Embedding_Unit(self.aggregation['label'].out_dim, self.projection_dim, channels=0)\n            for expert in experts_used\n\n        })\n\n        self.text_clip = nn.ModuleList([\n            nn.Identity() for clip in range(self.n_clips)\n        ])\n\n        self.moe_fc = nn.Linear(self.expert_dims['label'], len(self.experts_used)* self.n_clips)\n\n    def get_moe_scores(self, text):\n        res = F.softmax(self.moe_fc(text), dim=-1)\n        return res\n\n    def forward(self, x, evaluation=False, debug=False):\n        '''\n        :param x: Dictionary of experts and one of the experts 'label'.\n                Each expert has keys 'ftr', 'missing' and 'n_tokens'\n                x[expert]['ftr']: \"b x clips x ftr\" OR\n                                    \"b x clips x n_tokens x ftr\"\n\n                x[expert]['missing']: b x clips   boolean tensor, True if expert is missing for that clip\n                x[expert]['n_tokens']: number of actual tokens for that expert in that clip (we need this because of padding)\n\n        :return: Similarity score for batch: b x b (return other stuff if evaluating: moe weights, text embed, video embed\n        '''\n\n        missing = []\n\n        res = {}\n        video_experts = []\n        for expert in x:\n            ftr = x[expert]['ftr']\n            miss = x[expert]['missing']\n            if expert == 'label':\n                ftr = ftr.squeeze(1)\n                ftr = self.aggregation[expert](ftr, x[expert]['n_tokens'])\n                # ftr = ftr.mean(dim=1)\n                text = ftr\n            else:\n                if len(ftr.shape) == 4:\n                    n_tokens = x[expert]['n_tokens']\n                    ftr = self.aggregation[expert](ftr, n_tokens)\n                res[expert] = ftr\n                missing.append(miss)\n                video_experts.append(expert)\n\n        missing = torch.stack(missing, dim=1).bool()  # b, expert, clip\n        text_embed = []\n        video_embed = []\n        for idx, expert in enumerate(video_experts):\n            video_embed.append(self.video_GU[expert](res[expert]))\n            text_embed.append(self.text_GU[expert](text))\n\n        video_embed = torch.stack(video_embed, dim=2)  # b, n_clips, experts, ftr_dim\n        text_embed = torch.stack(text_embed, dim=1)  # b, expert, ftr_dim\n\n\n        batch_sz = video_embed.shape[0]\n\n        video_embed_mod = []\n        text_embed_mod = []\n        for idx in range(self.n_clips):\n            video_embed_mod.append(self.clip_GU[idx](video_embed[:, idx]))  # clip-level GU\n            text_embed_mod.append(self.text_clip[idx](text_embed))\n\n        video_embed_mod = torch.stack(video_embed_mod, dim=2)  # b, expert, clip, ftr_dim\n        text_embed_mod = torch.stack(text_embed_mod, dim=2)\n\n        video_embed_mod = F.normalize(video_embed_mod, dim=-1)\n        text_embed_mod = F.normalize(text_embed_mod, dim=-1)\n\n        moe_weights = self.get_moe_scores(text)\n        moe_weights = moe_weights.view(-1, len(self.experts_used), self.n_clips)  # b, expert, clip\n        moe_weights = moe_weights.unsqueeze(1).repeat(1, batch_sz, 1, 1)  # text, video, expert, clip\n\n        missing = missing.unsqueeze(0)  # 1, video, expert, clip\n\n        missing = missing.repeat(batch_sz, 1, 1, 1)\n\n        moe_weights = moe_weights.masked_fill(missing, 0)\n        norm_weights = torch.sum(moe_weights, dim=(2, 3)).unsqueeze(2).unsqueeze(3)\n        moe_weights = torch.div(moe_weights, norm_weights)\n\n        embed_stack = torch.einsum('tecd,vecd->tvec', [text_embed_mod, video_embed_mod])  # text x video x expert x clip\n        embed_stack = embed_stack * moe_weights  # tvec similarity scores\n        conf_mat = embed_stack.sum(dim=(2, 3))  # sum over e,c\n\n        if evaluation:\n            return conf_mat, video_embed_mod, text_embed_mod, moe_weights\n\n        return conf_mat\n\nclass Collaborative_Gating_Unit(nn.Module):\n    def __init__(self, output_dimension, num_inputs, number_g_layers, number_h_layers, use_bn_reason):\n        super(Collaborative_Gating_Unit, self).__init__()\n        self.num_g_layers = number_g_layers\n        self.num_h_layers = number_h_layers\n        self.use_bn_reason = use_bn_reason\n        self.output_dim = output_dimension\n\n        self.g_reason_shared = self.instantiate_reason_module()\n        self.g_reason_1 = nn.Linear(output_dimension * num_inputs, output_dimension)\n        self.h_reason_shared = self.instantiate_reason_module()\n\n    def instantiate_reason_module(self):\n        g_reason_shared = []\n        for _ in range(self.num_g_layers - 1):\n            if self.use_bn_reason:\n                g_reason_shared.append(nn.BatchNorm1d(self.output_dim))\n            g_reason_shared.append(nn.ReLU())\n            g_reason_shared.append(nn.Linear(self.output_dim, self.output_dim))\n\n        return nn.Sequential(*g_reason_shared)\n\n    def common_project(self, x):\n        return self.fc(x)\n\n    def forward(self, cp1, cp2):\n        pass\n\n\n\nclass Gated_Embedding_Unit(nn.Module):\n    def __init__(self, input_dimension, output_dimension, gating=True, channels=0):\n        super(Gated_Embedding_Unit, self).__init__()\n\n        self.fc = nn.Linear(input_dimension, output_dimension)\n        self.cg = Context_Gating(output_dimension, channels)\n        self.gating = gating\n\n    def forward(self, x):\n        x = self.fc(x)\n        if self.gating:\n            x = self.cg(x)\n        x = F.normalize(x, dim=-1)\n\n        return x\n\nclass Gated_Embedding_Unit_Reasoning(nn.Module):\n    def __init__(self, output_dimension, n_clips):\n        super(Gated_Embedding_Unit_Reasoning, self).__init__()\n        self.cg = ContextGatingReasoning(output_dimension, n_clips)\n\n    def forward(self, x, mask):\n        x = self.cg(x, mask)\n        x = F.normalize(x)\n        return x\n\n\nclass Context_Gating(nn.Module):\n    def __init__(self, dimension, channels, add_batch_norm=True):\n        super(Context_Gating, self).__init__()\n        self.fc = nn.Linear(dimension, dimension)\n        self.add_batch_norm = add_batch_norm\n        self.channels = channels\n        if channels > 0:\n            bn_dim = channels\n        else:\n            bn_dim = dimension\n        self.batch_norm = nn.BatchNorm1d(bn_dim)\n\n    def forward(self, x):\n        x1 = self.fc(x)\n\n        if self.add_batch_norm:\n            x1 = self.batch_norm(x1)\n\n        x = torch.cat((x, x1), -1)\n\n        return F.glu(x, -1)\n\nclass ContextGatingReasoning(nn.Module):\n    def __init__(self, dimension, n_clips, add_batch_norm=True):\n        super(ContextGatingReasoning, self).__init__()\n        self.fc = nn.Linear(dimension, dimension)\n        self.add_batch_norm = add_batch_norm\n        self.batch_norm = nn.BatchNorm1d(n_clips)\n        self.batch_norm2 = nn.BatchNorm1d(n_clips)\n    def forward(self, x, x1):\n\n        x2 = self.fc(x)\n\n        # t = x1 + x2\n        if self.add_batch_norm:\n            x1 = self.batch_norm(x1)\n            x2 = self.batch_norm2(x2)\n            # t = self.batch_norm (t)\n\n        # t = (F.sigmoid(x1) + F.sigmoid (x2))/2\n\n        t = x1 + x2\n\n        # t = (t > 0.2).float() * 1\n        # t = th.trunc(2*F.sigmoid (t)-0.5)\n        # print (t)\n        # return x*F.sigmoid(t)\n\n        # return t  (curr no sigmoid hoho!)\n        x = torch.cat((x, t), -1)\n        return F.glu(x, -1)\n\nclass ReduceDim(nn.Module):\n    def __init__(self, input_dimension, output_dimension):\n        super(ReduceDim, self).__init__()\n        self.fc = nn.Linear(input_dimension, output_dimension)\n\n#         self.fc = nn.Linear(input_dimension, 512)\n#         self.fc2 = nn.Linear(512, output_dimension)\n\n    def forward(self, x):\n        x = self.fc(x)\n        #         x = self.fc2(F.relu(x))\n        x = F.normalize(x)\n        return x\n\n\nclass Debug(BaseModel):\n    def __init__(self, experts_used):\n        super().__init__()\n        self.weight_dict = nn.ModuleDict({\n            key: nn.Conv2d(1, 1, 1, stride=1, bias=False) for key in experts_used\n        })\n        self.ftrs = list(experts_used)\n\n    def forward(self, x, target):\n        return cosine_similarity(x['clip_name']['ftrs'], target)\n\n\nclass ScalarWeight(nn.Module):\n    def __init__(self, init_val=1, len=1):\n        super().__init__()\n        self.weight = nn.Parameter(torch.ones(len) * init_val)\n\n    def forward(self, x):\n        return x * self.weight.unsqueeze(-1)\n\n\nclass MeanToken(nn.Module):\n    def __init__(self, dim_idx):\n        super().__init__()\n        self.dim_idx = dim_idx\n\n    def forward(self, x, n_tokens):\n        n_dims = len(x.shape)\n        if n_dims == 3:\n            x_sum = x.sum(dim=1)\n            x_mean = x_sum * n_tokens.unsqueeze(1).float().pow(-1)\n        elif n_dims == 4:\n            x_sum = x.sum(dim=2)\n            x_mean = x_sum * n_tokens.unsqueeze(2).float().pow(-1)\n        else:\n            x_sum = x.sum(dim=2)\n            x_mean = x_sum * n_tokens.unsqueeze(2).float().pow(-1)\n\n        return x_mean\n\n\nclass MaxToken(nn.Module):\n    def __init__(self, dim_idx):\n        super().__init__()\n        self.dim_idx = dim_idx\n\n    def forward(self, x, n_tokens):\n        return x.max(dim=self.dim_idx)\n\n\ndef get_aggregation(agg, feature_size):\n    if agg['type'] == 'net_vlad':\n        cluster_size = agg['cluster_size']\n        ghost_clusters = agg['ghost_clusters']\n        return NetVLAD(cluster_size, feature_size, ghost_clusters)\n    elif agg['type'] == 'mean':\n        return MeanToken(1)\n    elif agg['type'] == 'max':\n        return MaxToken(1)\n    else:\n        raise NotImplementedError\n\n\ndef cosine_similarity(content, text, eps=1e-8):\n    b1, d1 = content.shape\n    b2, d2 = text.shape\n    assert (b1 == b2 and d1 == d2)\n\n    # TODO: Use lens instead of zero checking.\n\n    content_norm = torch.norm(content, dim=1).pow(-1)  # b x n_c TODO: For end-to-end, make this 0-div safe. Add epsilon\n    text_norm = torch.norm(text, dim=1).pow(-1)  # b x n_s\n\n    # content_norm = content_norm.masked_fill_(content_padding, 1)\n    # text_norm = text_norm.masked_fill_(text_padding, 1)\n    dot_prod = torch.einsum('ad,bd->ab', content, text)  # similarity between every sample in batch\n    cosine_sim = dot_prod * (content_norm * text_norm + torch.ones_like(text_norm) * eps)\n\n    return cosine_sim\n\n\ndef sim_matrix(a, b, weights=None, eps=1e-8):\n    \"\"\"\n    added eps for numerical stability\n    \"\"\"\n    if len(a.shape) == 3 and len(b.shape) == 3:\n        # MoEE\n        embed_stack = torch.einsum('ted,ved->tve', [a, b])\n        if weights is not None:\n            embed_stack = embed_stack * weights\n        return embed_stack.sum(dim=1)\n\n    elif len(a.shape) == 4 and len(b.shape) == 4:\n        # a (query): text x expert x proj_dim\n        # b (video): video x expert x clips x proj_dim\n        # weights (moee): text x video x experts x clips\n        # MoEE^2\n        embed_stack = torch.einsum('tecd,vecd->tvec', [a, b])  # text x video x expert x clip\n\n        # embed_stack = torch.transpose(embed_stack, 1, 2)\n        if weights is not None:\n            embed_stack = embed_stack * weights\n        return embed_stack.sum(dim=(2, 3))\n\n    a_n, b_n = a.norm(dim=1)[:, None], b.norm(dim=1)[:, None]\n    a_norm = a / torch.max(a_n, eps * torch.ones_like(a_n))\n    b_norm = b / torch.max(b_n, eps * torch.ones_like(b_n))\n    sim_mt = torch.mm(a_norm, b_norm.transpose(0, 1))\n\n    if torch.isnan(sim_mt).any():\n        print('nans found in similarity matrix')\n    return sim_mt\n\n\nif __name__ == '__main__':\n    random_tensor = torch.rand((32, 3, 4, 512))\n\n    print('Custom distance function works as expected')\n"
  },
  {
    "path": "model/net_vlad.py",
    "content": "\"\"\"NetVLAD implementation.\n\"\"\"\n# Copyright 2018 Antoine Miech All Rights Reserved.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n#      http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS-IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n\nimport math\nimport ipdb\nimport torch.nn as nn\nimport torch.nn.functional as F\nimport torch as th\n\n\nclass NetVLAD(nn.Module):\n    def __init__(self, cluster_size, feature_size, ghost_clusters=0,\n                 add_batch_norm=True):\n        super().__init__()\n\n        self.feature_size = feature_size\n        self.cluster_size = cluster_size\n        self.ghost_clusters = ghost_clusters\n\n        init_sc = (1 / math.sqrt(feature_size))\n        clusters = cluster_size + ghost_clusters\n\n        # The `clusters` weights are the `(w,b)` in the paper\n        self.clusters = nn.Parameter(init_sc * th.randn(feature_size, clusters))\n        self.batch_norm = nn.BatchNorm1d(clusters) if add_batch_norm else None\n        # The `clusters2` weights are the visual words `c_k` in the paper\n        self.clusters2 = nn.Parameter(init_sc * th.randn(1, feature_size, cluster_size))\n        self.out_dim = self.cluster_size * feature_size\n\n    def forward(self, x, n_tokens, mask=None):\n        # TODO: Create mask for n_tokens? Probably unneccesary as netvlad can handle zeros\n        \"\"\"Aggregates feature maps into a fixed size representation.  In the following\n        notation, B = batch_size, N = num_features, K = num_clusters, D = feature_size.\n\n        Args:\n            x (th.Tensor): B x N x D\n\n        Returns:\n            (th.Tensor): B x DK\n        \"\"\"\n        self.sanity_checks(x)\n        max_sample = x.size()[1]\n        x = x.view(-1, self.feature_size)  # B x N x D -> BN x D\n\n        if x.device != self.clusters.device:\n            msg = f\"x.device {x.device} != cluster.device {self.clusters.device}\"\n            raise ValueError(msg)\n\n        assignment = th.matmul(x, self.clusters)  # (BN x D) x (D x (K+G)) -> BN x (K+G)\n\n        if self.batch_norm:\n            assignment = self.batch_norm(assignment)\n\n        assignment = F.softmax(assignment, dim=1)  # BN x (K+G) -> BN x (K+G)\n        # remove ghost assigments\n        assignment = assignment[:, :self.cluster_size]\n        assignment = assignment.view(-1, max_sample, self.cluster_size)  # -> B x N x K\n        a_sum = th.sum(assignment, dim=1, keepdim=True)  # B x N x K -> B x 1 x K\n        a = a_sum * self.clusters2\n\n        assignment = assignment.transpose(1, 2)  # B x N x K -> B x K x N\n\n        x = x.view(-1, max_sample, self.feature_size)  # BN x D -> B x N x D\n        vlad = th.matmul(assignment, x)  # (B x K x N) x (B x N x D) -> B x K x D\n        vlad = vlad.transpose(1, 2)  # -> B x D x K\n        vlad = vlad - a\n\n        # L2 intra norm\n        vlad = F.normalize(vlad)\n\n        # flattening + L2 norm\n        vlad = vlad.reshape(-1, self.cluster_size * self.feature_size)  # -> B x DK\n        vlad = F.normalize(vlad)\n        return vlad  # B x DK\n\n    def sanity_checks(self, x):\n        \"\"\"Catch any nans in the inputs/clusters\"\"\"\n        if th.isnan(th.sum(x)):\n            print(\"nan inputs\")\n            ipdb.set_trace()\n        if th.isnan(self.clusters[0][0]):\n            print(\"nan clusters\")\n            ipdb.set_trace()\n"
  },
  {
    "path": "parse_config.py",
    "content": "import os\nimport logging\nfrom pathlib import Path\nfrom functools import reduce\nfrom operator import getitem\nfrom datetime import datetime\nfrom logger import setup_logging\nfrom utils import read_json, write_json\nfrom mergedeep import merge, Strategy\nimport pdb\n\nclass ConfigParser:\n    def __init__(self, args, options='', timestamp=True, class_=False):\n        # parse default and custom cli options\n        if not class_:\n            for opt in options:\n                args.add_argument(*opt.flags, default=None, type=opt.type)\n            args = args.parse_args()\n        if args.config is None and 'resume' in args and args.resume is not None:\n            args.config = '/'.join(args.resume.split('/')[:-1]) + '/config.json'\n\n        if args.device:\n            os.environ[\"CUDA_VISIBLE_DEVICES\"] = args.device\n        if args.resume is None:\n            msg_no_cfg = \"Configuration file need to be specified. Add '-c config.json', for example.\"\n            assert args.config is not None, msg_no_cfg\n            self.cfg_fname = Path(args.config)\n            config = self.load_config(self.cfg_fname)\n            self.resume = None\n        else:        \n            self.resume = Path(args.resume)\n            resume_cfg_fname = self.resume.parent / 'config.json'\n            config = self.load_config(resume_cfg_fname)\n            if args.config is not None:\n                config.update(read_json(Path(args.config)))\n\n        # load config file and apply custom cli options\n        self._config = _update_config(config, options, args)\n\n        # set save_dir where trained model and log will be saved.\n        save_dir = Path(self.config['trainer']['save_dir'])\n        timestamp = datetime.now().strftime(r'%m%d_%H%M%S') if timestamp else ''\n\n        exper_name = self.config['name']\n        self._save_dir = save_dir / 'models' / exper_name / timestamp\n        self._log_dir = save_dir / 'log' / exper_name / timestamp\n\n        self.save_dir.mkdir(parents=True, exist_ok=True)\n        self.log_dir.mkdir(parents=True, exist_ok=True)\n\n        # save updated config file to the checkpoint dir\n        write_json(self.config, self.save_dir / 'config.json')\n\n        # configure logging module\n        setup_logging(self.log_dir)\n        self.log_levels = {\n            0: logging.WARNING,\n            1: logging.INFO,\n            2: logging.DEBUG\n        }\n\n    def load_config(self, cfg_fname):\n        config = read_json(cfg_fname)\n        # apply inheritance through config hierarchy\n        descendant, ancestors = config, []\n        while \"inherit_from\" in descendant:\n            parent_config = read_json(Path(descendant[\"inherit_from\"]))\n            ancestors.append(parent_config)\n            descendant = parent_config\n        for ancestor in ancestors:\n            merge(ancestor, config, strategy=Strategy.REPLACE)\n            config = ancestor\n        return config\n\n\n    def initialize(self, name, module, *args, **kwargs):\n        \"\"\"\n        finds a function handle with the name given as 'type' in config, and returns the \n        instance initialized with corresponding keyword args given as 'args'.\n        \"\"\"\n        module_name = self[name]['type']\n        module_args = dict(self[name]['args'])\n        assert all([k not in module_args for k in kwargs]), 'Overwriting kwargs given in config file is not allowed'\n        module_args.update(kwargs)\n        return getattr(module, module_name)(*args, **module_args)\n\n    def __getitem__(self, name):\n        return self.config[name]\n\n    def get_logger(self, name, verbosity=2):\n        msg_verbosity = 'verbosity option {} is invalid. Valid options are {}.'.format(verbosity, self.log_levels.keys())\n        assert verbosity in self.log_levels, msg_verbosity\n        logger = logging.getLogger(name)\n        logger.setLevel(self.log_levels[verbosity])\n        return logger\n\n    # setting read-only attributes\n    @property\n    def config(self):\n        return self._config\n\n    @property\n    def save_dir(self):\n        return self._save_dir\n\n    @property\n    def log_dir(self):\n        return self._log_dir\n\n# helper functions used to update config dict with custom cli options\ndef _update_config(config, options, args):\n    for opt in options:\n        value = getattr(args, _get_opt_name(opt.flags))\n        if value is not None:\n            _set_by_path(config, opt.target, value)\n    return config\n\ndef _get_opt_name(flags):\n    for flg in flags:\n        if flg.startswith('--'):\n            return flg.replace('--', '')\n    return flags[0].replace('--', '')\n\ndef _set_by_path(tree, keys, value):\n    \"\"\"Set a value in a nested object in tree by sequence of keys.\"\"\"\n    _get_by_path(tree, keys[:-1])[keys[-1]] = value\n\ndef _get_by_path(tree, keys):\n    \"\"\"Access a nested object in tree by sequence of keys.\"\"\"\n    return reduce(getitem, keys, tree)\n"
  },
  {
    "path": "test.py",
    "content": "import argparse\nimport torch\nfrom tqdm import tqdm\nimport data_loader.data_loaders as module_data\nimport model.loss as module_loss\nimport model.metric as module_metric\nimport model.model as module_arch\nfrom model.model import sim_matrix\nfrom parse_config import ConfigParser\nfrom utils.visualisation import batch_path_vis\nfrom logger import TensorboardWriter\nimport ipdb\nimport numpy as np\nimport os\nimport json\nimport pandas as pd\n\n\ndef main(config):\n    res_exp = str(config.resume).replace('model_best.pth', 'test_res.json')\n\n    logger = config.get_logger('test')\n    writer = TensorboardWriter(config.log_dir, logger, config['trainer']['tensorboard'])\n\n    # setup data_loader instances\n    config._config['data_loader']['args']['split'] = 'test'\n    config._config['data_loader']['args']['batch_size'] = 6581\n    data_loader = config.initialize('data_loader', module_data)\n\n    experts_used = data_loader.dataset.experts_used\n    config._config['arch']['args'][\n        'experts_used'] = experts_used  # improve this, how to safely clone args across classes?\n    # improve this, how to safely clone args across classes?\n    config._config['arch']['args']['label'] = data_loader.dataset.label\n    config._config['arch']['args']['expert_dims'] = data_loader.dataset.expert_dims\n\n    # build model architecture\n    model = config.initialize('arch', module_arch)\n    logger.info(model)\n\n    # get function handles of loss and metrics\n    # loss_fn = getattr(module_loss, config['loss'])\n\n    # get assignment function handles\n    metrics = [getattr(module_metric, met) for met in config['metrics']]\n\n    if config.resume is not None:\n        logger.info('Loading checkpoint: {} ...'.format(config.resume))\n        checkpoint = torch.load(config.resume)\n        state_dict = checkpoint['state_dict']\n        if config['n_gpu'] > 1:\n            model = torch.nn.DataParallel(model)\n        model.load_state_dict(state_dict)\n    else:\n        print('Using untrained model...')\n\n    # prepare model for testing\n    device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')\n    model = model.to(device)\n    model.eval()\n\n    total_loss = 0.0\n    total_metrics = torch.zeros(len(metrics))\n\n    label_embeddings = []\n    content_embeddings = []\n    moe_weights = []\n    imdbids = []\n    videoids = []\n    with torch.no_grad():\n        for batch_idx, (minibatch, id) in enumerate(data_loader):\n            for expert, subdict in minibatch.items():\n                for key, val in subdict.items():\n                    minibatch[expert][key] = val.to(device)\n            imdbids += id['imdbid']\n            videoids += id['videoid']\n            output, res, target, moe = model(minibatch, evaluation=True)\n            label_embeddings.append(target)\n            content_embeddings.append(res)\n            moe_weights.append(moe)\n            # self.writer.add_image('input', make_grid(data.cpu(), nrow=8, normalize=True))\n\n    label_embeddings = torch.cat(label_embeddings, dim=0).detach().cpu()\n    content_embeddings = torch.cat(content_embeddings, dim=0).detach().cpu()\n    moe_weights = torch.cat(moe_weights, dim=0).detach().cpu()\n    sims = sim_matrix(label_embeddings, content_embeddings, weights=moe_weights).numpy()\n\n\n    all_res = {'inter': {}}\n    print('#### INTER-MOVIE ####')\n    for metric in metrics:\n        metric_name = metric.__name__\n        res = metric(sims)  # query_masks=meta[\"query_masks\"]) # TODO: Query mask\n        verbose(epoch=0, metrics=res, name='MovieClips', mode=metric_name)  # TODO: refactor dataset name\n        all_res['inter'][metric_name] = res\n\n    # TODO: Print intra/inter metrics depending on training regime\n    #print('\\n#### INTRA-MOVIE ####')\n    #all_res['intra'] = intra_movie_metrics(sims, imdbids, metrics)\n\n    # n_samples = len(data_loader.sampler)\n    # log = {'loss': total_loss / n_samples}\n    # log.update({\n    #    met.__name__: total_metrics[i].item() / n_samples for i, met in enumerate(metric_fns)\n    # })\n    # logger.info(log)\n    # logger.info(log)\n    with open(res_exp, 'w') as fid:\n        json.dump(all_res, fid)\n\n    all_res['n_params'] = model.tot_params()\n\n    save_results = True\n    if save_results:\n        results = sims2ids(sims, videoids)\n        results_fp = res_exp.replace('test_res.json', 'results.csv')\n        results.to_csv(results_fp)\n\n\n    return all_res\n\n\ndef verbose(epoch, metrics, mode, name=\"TEST\"):\n    r1, r5, r10, r50 = metrics[\"R1\"], metrics[\"R5\"], metrics[\"R10\"], metrics[\"R50\"]\n    msg = f\"[{mode}]{name:s} epoch {epoch}, R@1: {r1:.1f}\"\n    msg += f\", R@5: {r5:.1f}, R@10 {r10:.1f}, R@50 {r50:.1f}\"\n    msg += f\"MedR: {metrics['MedR']:g}, MeanR: {metrics['MeanR']:.1f}\"\n    print(msg)\n\n\ndef intra_movie_metrics(sims, imdbids, metrics):\n    unique_ids = set(imdbids)\n    imdbids = np.array(imdbids)\n\n    sim_stack = []\n    for id in unique_ids:\n        target_idx = np.where(imdbids == id)[0]\n        assert len(target_idx) > 0  # sanity check\n        sim_stack.append(sims[target_idx][:, target_idx])\n\n    nested_metrics = {}\n    for metric in metrics:\n        metric_name = metric.__name__\n        r1 = []\n        medr = []\n        meanr = []\n        n_clips = []\n        for sim in sim_stack:\n            res = metric(sim)\n            r1.append(res['R1'])\n            medr.append(res['MedR'])\n            meanr.append(res['MeanR'])\n            n_clips.append(sim.shape[0])\n\n        # r1_n = np.array(r1) / np.array(n_clips)\n        # medr_n = np.array(medr) / np.array(n_clips)\n        # meanr_n = np.array(meanr) / np.array(n_clips)\n        r1, medr, meanr = np.mean(r1), np.mean(medr), np.mean(meanr)\n        res_dict = {'R1': r1, 'MedR': medr, 'MeanR': meanr}\n        nested_metrics[metric_name] = res_dict\n        print(metric_name, ':    ', str(res_dict))\n    return nested_metrics\n\ndef sims2ids(sims, videoids):\n    sims = torch.from_numpy(sims)\n    values, indices = torch.topk(sims, 5, dim=-1)\n    preds = {}\n    for videoid, inds in zip(videoids, indices):\n        pred = []\n        for ind in inds:\n            pred.append(videoids[ind])\n        preds[videoid] = pred\n\n    data = pd.DataFrame.from_dict(preds, orient='index')\n    data['R1'] = (data[0] == data.index)\n    data['2corr'] = (data[1] == data.index)\n    data['3corr'] = (data[2] == data.index)\n    data['4corr'] = (data[3] == data.index)\n    data['5corr'] = (data[4] == data.index)\n    data['R5'] = data[['R1', '2corr', '3corr', '4corr', '5corr']].any(axis=1)\n\n    del data['2corr']\n    del data['3corr']\n    del data['4corr']\n    del data['5corr']\n\n    return data\n\nif __name__ == '__main__':\n    args = argparse.ArgumentParser(description='PyTorch Template')\n    args.add_argument('-c', '--config', default=None, type=str,\n                      help='config file path (default: None)')\n    args.add_argument('-r', '--resume', default=None, type=str,\n                      help='path to latest checkpoint (default: None)')\n    args.add_argument('-d', '--device', default=None, type=str,\n                      help='indices of GPUs to enable (default: all)')\n\n    config = ConfigParser(args)\n    main(config)\n"
  },
  {
    "path": "train.py",
    "content": "import argparse\nimport collections\nimport torch\nimport data_loader.data_loaders as module_data\nimport model.loss as module_loss\nimport model.metric as module_metric\nimport model.model as module_arch\nfrom parse_config import ConfigParser\nfrom trainer import Trainer\nimport ipdb\nimport os\n\ndef main(config):\n    logger = config.get_logger('train')\n\n    # setup data_loader instances\n    config._config['data_loader']['args']['split'] = 'train'\n    data_loader = config.initialize('data_loader', module_data)\n    config._config['data_loader']['args']['split'] = 'val'\n    valid_data_loader = config.initialize('data_loader', module_data)\n\n    # TODO: improve this, safely clone args across config classes\n    config._config['arch']['args']['label'] = data_loader.dataset.label\n    config._config['arch']['args']['experts_used'] = data_loader.dataset.experts_used\n    config._config['arch']['args']['expert_dims'] = data_loader.dataset.expert_dims\n\n    # build model architecture, then print to console\n    model = config.initialize('arch', module_arch)\n    logger.info(model)\n\n    # get function handles of loss and metrics\n    loss = config.initialize(name=\"loss\", module=module_loss)\n    metrics = [getattr(module_metric, met) for met in config['metrics']]\n\n    # build optimizer, learning rate scheduler. delete every lines containing lr_scheduler for disabling scheduler\n    trainable_params = filter(lambda p: p.requires_grad, model.parameters())\n    optimizer = config.initialize('optimizer', torch.optim, trainable_params)\n\n    lr_scheduler = config.initialize('lr_scheduler', torch.optim.lr_scheduler, optimizer)\n\n    trainer = Trainer(model, loss, metrics, optimizer,\n                      config=config,\n                      data_loader=data_loader,\n                      valid_data_loader=valid_data_loader,\n                      lr_scheduler=lr_scheduler)\n\n    trainer.train()\n\n    return logger\n\n\nclass TestArg:\n    def __init__(self, resume):\n        self.resume = resume\n        self.device = None\n        self.config = None\n\n\nif __name__ == '__main__':\n    args = argparse.ArgumentParser(description='PyTorch Template')\n    args.add_argument('config', default=None, type=str,\n                      help='config file path (default: None)')\n    args.add_argument('-r', '--resume', default=None, type=str,\n                      help='path to latest checkpoint (default: None)')\n    args.add_argument('-d', '--device', default=None, type=str,\n                      help='indices of GPUs to enable (default: all)')\n\n    # custom cli options to modify configuration from default values given in json file.\n    #CustomArgs = collections.namedtuple('CustomArgs', 'flags type target')\n    #options = [\n    #    CustomArgs(['--lr', '--learning_rate'], type=float, target=('optimizer', 'args', 'lr')),\n    #    CustomArgs(['--bs', '--batch_size'], type=int, target=('data_loader', 'args', 'batch_size'))\n    #]\n\n    config = ConfigParser(args)\n    main(config)"
  },
  {
    "path": "trainer/__init__.py",
    "content": "from .trainer import *\n"
  },
  {
    "path": "trainer/trainer.py",
    "content": "import numpy as np\nimport torch\nfrom torchvision.utils import make_grid\nfrom base import BaseTrainer\nfrom utils import inf_loop\nfrom model.model import sim_matrix\nimport ipdb\nfrom torch import autograd\n\nclass Trainer(BaseTrainer):\n    \"\"\"\n    Trainer class\n\n    Note:\n        Inherited from BaseTrainer.\n    \"\"\"\n\n    def __init__(self, model, loss, metrics, optimizer, config, data_loader,\n                 valid_data_loader=None, lr_scheduler=None, len_epoch=None):\n        super().__init__(model, loss, metrics, optimizer, config)\n        self.data_loader = data_loader\n        if len_epoch is None:\n            # epoch-based training\n            self.len_epoch = len(self.data_loader)\n        else:\n            # iteration-based training\n            self.data_loader = inf_loop(data_loader)\n            self.len_epoch = len_epoch\n        self.valid_data_loader = valid_data_loader\n        self.do_validation = self.valid_data_loader is not None\n        self.lr_scheduler = lr_scheduler\n        self.log_step = int(np.sqrt(data_loader.batch_size))\n\n    def _eval_metrics(self, output):\n        acc_metrics = np.zeros(len(self.metrics))\n        for i, metric in enumerate(self.metrics):\n            acc_metrics[i] += metric(output)\n            self.writer.add_scalar('{}'.format(metric.__name__), acc_metrics[i])\n        return acc_metrics\n\n    def _train_epoch(self, epoch):\n        \"\"\"\n        Training logic for an epoch\n\n        :param epoch: Current training epoch.\n        :return: A log that contains all information you want to save.\n\n        Note:\n            If you have additional information to record, for example:\n                > additional_log = {\"x\": x, \"y\": y}\n            merge it with log before return. i.e.\n                > log = {**log, **additional_log}\n                > return log\n\n            The metrics in log must have the key 'metrics'.\n        \"\"\"\n        self.model.train()\n\n        total_loss = 0\n        total_metrics = np.zeros(len(self.metrics))\n        res = self.data_loader.dataset.__getitem__(1)\n        for batch_idx, (minibatch, id) in enumerate(self.data_loader):\n            for expert, subdict in minibatch.items():\n                for key, val in subdict.items():\n                    minibatch[expert][key] = val.to(self.device)\n\n            self.optimizer.zero_grad()\n            with autograd.detect_anomaly():\n                output = self.model(minibatch)\n                loss = self.loss(output)\n                loss.backward()\n            self.optimizer.step()\n            self.writer.set_step((epoch - 1) * self.len_epoch + batch_idx)\n            self.writer.add_scalar('loss', loss.item())\n            total_loss += loss.item()\n            # total_metrics += self._eval_metrics(output.cpu().detach().numpy())\n\n            if batch_idx % self.log_step == 0:\n                self.logger.debug('Train Epoch: {} {} Loss: {:.6f}'.format(\n                    epoch,\n                    self._progress(batch_idx),\n                    loss.item()))\n                # self.writer.add_image('input', make_grid(data.cpu(), nrow=8, normalize=True)) TODO: add clip - sent prediction?\n\n            if batch_idx == self.len_epoch:\n                break\n\n        log = {\n            'loss': total_loss / self.len_epoch,\n            'metrics': (total_metrics / self.len_epoch).tolist()\n        }\n\n        if self.do_validation:\n            val_log = self._valid_epoch(epoch)\n            log.update(val_log)\n\n        if self.lr_scheduler is not None:\n            self.lr_scheduler.step()\n\n        return log\n\n    def log_metrics(self, metric_store, metric_name, mode):\n        if self.tensorboard:\n            print(f\"logging metrics: {metric_name}\")\n            self.writer.set_step(step=self.seen[mode], mode=mode)\n            for key, value in metric_store.items():\n                self.writer.add_scalar(f\"{metric_name}/{key}\", value)\n\n    def _valid_epoch(self, epoch):\n        \"\"\"\n        Validate after training an epoch\n\n        :return: A log that contains information about validation\n\n        Note:\n            The validation metrics in log must have the key 'val_metrics'.\n        \"\"\"\n        self.model.eval()\n        total_val_loss = 0\n        total_val_metrics = np.zeros(len(self.metrics))\n\n        label_embeddings = []\n        content_embeddings = []\n        moe_weights = []\n        imdbids = []\n        with torch.no_grad():\n            for batch_idx, (minibatch, id) in enumerate(self.valid_data_loader):\n                for expert, subdict in minibatch.items():\n                    for key, val in subdict.items():\n                        minibatch[expert][key] = val.to(self.device)\n                imdbids += id['imdbid']\n                self.optimizer.zero_grad()\n                output, res, target, moe = self.model(minibatch, evaluation=True, debug=True)\n                label_embeddings.append(target)\n                content_embeddings.append(res)\n                moe_weights.append(moe)\n                loss = self.loss(output)\n                self.writer.set_step((epoch - 1) * len(self.valid_data_loader) + batch_idx, 'valid')\n                self.writer.add_scalar('loss', loss.item())\n                total_val_loss += loss.item()\n                # self.writer.add_image('input', make_grid(data.cpu(), nrow=8, normalize=True))\n\n        label_embeddings = torch.cat(label_embeddings, dim=0).detach().cpu()\n        content_embeddings = torch.cat(content_embeddings, dim=0).detach().cpu()\n        moe_weights = torch.cat(moe_weights, dim=0).detach().cpu()\n        sims = sim_matrix(label_embeddings, content_embeddings, weights=moe_weights).numpy()\n        nested_metrics = {}\n\n        if self.config['retrieval'] == 'intra':\n            nested_metrics = intra_movie_metrics(sims, imdbids, self.metrics)\n        else:\n            for metric in self.metrics:\n                metric_name = metric.__name__\n                res = metric(sims)  # query_masks=meta[\"query_masks\"]) # TODO: Query mask\n                if metric_name == \"mean_average_precision\":\n                    print(f\"Epoch: {epoch}, mean AP: {res['mAP']}\")\n                else:\n                    verbose(epoch=epoch, metrics=res, name='MovieClips', mode=metric_name) # TODO: refactor dataset name\n                self.log_metrics(res, metric_name=metric_name, mode=\"val\")\n                nested_metrics[metric_name] = res\n\n        # add histogram of model parameters to the tensorboard\n        for name, p in self.model.named_parameters():\n            self.writer.add_histogram(name, p, bins='auto')\n\n        return {\n            'val_loss': total_val_loss / len(self.valid_data_loader),\n            'nested_val_metrics': nested_metrics\n        }\n\n    def _progress(self, batch_idx):\n        base = '[{}/{} ({:.0f}%)]'\n        if hasattr(self.data_loader, 'n_samples'):\n            current = batch_idx * self.data_loader.batch_size\n            total = self.data_loader.n_samples\n        else:\n            current = batch_idx\n            total = self.len_epoch\n        return base.format(current, total, 100.0 * current / total)\n\ndef verbose(epoch, metrics, mode, name=\"TEST\"):\n    r1, r5, r10, r50 = metrics[\"R1\"], metrics[\"R5\"], metrics[\"R10\"], metrics[\"R50\"]\n    msg = f\"[{mode}]{name:s} epoch {epoch}, R@1: {r1:.1f}\"\n    msg += f\", R@5: {r5:.1f}, R@10 {r10:.1f}, R@50 {r50:.1f}\"\n    msg += f\"MedR: {metrics['MedR']:g}, MeanR: {metrics['MeanR']:.1f}\"\n    print(msg)\n\n\ndef intra_movie_metrics(sims, imdbids, metrics):\n    unique_ids = set(imdbids)\n    imdbids = np.array(imdbids)\n\n    sim_stack = []\n    for id in unique_ids:\n        target_idx = np.where(imdbids == id)[0]\n        assert len(target_idx) > 0 # sanity check\n        sim_stack.append(sims[target_idx][:, target_idx])\n\n    nested_metrics = {}\n    for metric in metrics:\n        metric_name = metric.__name__\n        r1 = []\n        medr = []\n        meanr = []\n        n_clips = []\n        for sim in sim_stack:\n            res = metric(sim)\n            r1.append(res['R1'])\n            medr.append(res['MedR'])\n            meanr.append(res['MeanR'])\n            n_clips.append(sim.shape[0])\n\n        #r1_n = np.array(r1) / np.array(n_clips)\n        #medr_n = np.array(medr) / np.array(n_clips)\n        #meanr_n = np.array(meanr) / np.array(n_clips)\n        r1, medr, meanr = np.mean(r1), np.mean(medr), np.mean(meanr)\n        nested_metrics[metric_name] = {'R1': r1, 'MedR': medr, 'MeanR': meanr}\n\n    return nested_metrics\n"
  },
  {
    "path": "utils/__init__.py",
    "content": "from .util import *\n"
  },
  {
    "path": "utils/util.py",
    "content": "import json\nfrom pathlib import Path\nfrom datetime import datetime\nfrom itertools import repeat\nfrom collections import OrderedDict\nimport functools\nimport time\nimport socket\nimport numpy as np\nimport psutil\nimport msgpack\nimport humanize\n\ndef ensure_dir(dirname):\n    dirname = Path(dirname)\n    if not dirname.is_dir():\n        dirname.mkdir(parents=True, exist_ok=False)\n\ndef read_json(fname):\n    with fname.open('rt') as handle:\n        return json.load(handle, object_hook=OrderedDict)\n\ndef write_json(content, fname):\n    with fname.open('wt') as handle:\n        json.dump(content, handle, indent=4, sort_keys=False)\n\ndef inf_loop(data_loader):\n    ''' wrapper function for endless data loader. '''\n    for loader in repeat(data_loader):\n        yield from loader\n\ndef memory_summary():\n    vmem = psutil.virtual_memory()\n    msg = (\n        f\">>> Currently using {vmem.percent}% of system memory \"\n        f\"{humanize.naturalsize(vmem.used)}/{humanize.naturalsize(vmem.available)}\"\n    )\n    print(msg)\n\n@functools.lru_cache(maxsize=64, typed=False)\ndef memcache(path):\n    suffix = Path(path).suffix\n    print(f\"loading features >>>\", end=\" \")\n    tic = time.time()\n    if suffix == \".npy\":\n        res = np_loader(path)\n    else:\n        raise ValueError(f\"unknown suffix: {suffix} for path {path}\")\n    print(f\"[Total: {time.time() - tic:.1f}s] ({socket.gethostname() + ':' + str(path)})\")\n    return res\n\ndef np_loader(np_path, l2norm=False):\n    with open(np_path, \"rb\") as f:\n        data = np.load(f, encoding=\"latin1\", allow_pickle=True)\n    if isinstance(data, np.ndarray) and data.size == 1:\n        data = data[()]  # handle numpy dict storage convnetion\n    if l2norm:\n        print(\"L2 normalizing features\")\n        if isinstance(data, dict):\n            for key in data:\n                feats_ = data[key]\n                feats_ = feats_ / max(np.linalg.norm(feats_), 1E-6)\n                data[key] = feats_\n        elif data.ndim == 2:\n            data_norm = np.linalg.norm(data, axis=1)\n            data = data / np.maximum(data_norm.reshape(-1, 1), 1E-6)\n        else:\n            raise ValueError(\"unexpected data format {}\".format(type(data)))\n    return data\n\n\nclass Timer:\n    def __init__(self):\n        self.cache = datetime.now()\n\n    def check(self):\n        now = datetime.now()\n        duration = now - self.cache\n        self.cache = now\n        return duration.total_seconds()\n\n    def reset(self):\n        self.cache = datetime.now()\n"
  },
  {
    "path": "utils/visualisation.py",
    "content": "import torch\nimport numpy as np\nimport matplotlib\n\nmatplotlib.use('Agg')\nimport matplotlib.pyplot as plt\n\nimport ipdb\n\ndef visualise_path(pred, target, window):\n    \"\"\"\n    :param pred: (P, 2) Tensor where P is the number of predictions, and 2 is the (i,j) coordinate\n    :param target: (T, 2) Tensor where T is the number of targets, and 2 is the (i,j) coordinate\n    :param dims: (H, W) tup/list the desired height and width of matrix (should be >= to max(i), max(j))\n    :param assignment_method: Method of assignment (dtw, minimum etc.)\n    :return: image, visualisation of path prediction and target.\n    \"\"\"\n    tp = torch.Tensor((64, 191, 64))\n    fp = torch.Tensor((191, 64, 64))\n    gt = torch.Tensor((102, 153, 255))\n\n    grid = torch.ones_like(window).unsqueeze(0).repeat(3, 1, 1) * 255\n    inf = 130 * torch.ones_like(grid)\n    grid = torch.where(torch.isnan(window), inf, grid)\n\n    clip_idxs = [t[0] for t in target]\n    local_idxs = np.unique(np.array(clip_idxs)).tolist()\n\n    for t in target:\n        local_idx = local_idxs.index(t[0])\n        grid[:, local_idx,t[1]] = gt\n\n    for p in pred:\n        local_idx = local_idxs.index(p[0])\n        if (grid[:, local_idx,p[1]] == gt).all():\n            grid[:, local_idx, p[1]] = tp\n        else:\n            grid[:, local_idx, p[1]] = fp\n\n    return grid / 255\n\n\ndef batch_path_vis(pred_dict, target, window):\n\n    grids = []\n\n    window = window.cpu()\n    for key, pred in pred_dict.items():\n        tmp_window = window\n        if key == 'min_dist':\n            tmp_window = torch.zeros_like(window)\n        grids.append(visualise_path(pred, target, tmp_window))\n\n    return torch.stack(grids)\n\n\n\nif __name__ == \"__main__\":\n    pred = [[1,1], [2,4]]\n    gt = [[1,1], [3,4]]\n    window = torch.zeros((5,6))\n    visualise_path(pred, gt, window)\n"
  },
  {
    "path": "visualise_face_tracks.py",
    "content": "# requires ffmpeg (2.8.15)\nimport os, cv2, pickle, argparse, random\nfrom tqdm import tqdm\nimport pandas as pd\nimport pdb\n\ntrack_colour_choices = [(75,25,230), (25,225,255), (75,180,60), (230,50,240), (240,240,70), (49,130,245), (180,30,145), (12,246,188), (216,99,67), (195,255,170), (255,190,230)]\nrandom.shuffle(track_colour_choices)\n\ndef expandrect(ROI, extensionx, extensiony, shape):\n    \"\"\"expand the face detection bounding box\"\"\"\n\n    width = ROI[2] - ROI[0]\n    height = ROI[3] - ROI[1]\n    #Length = (width + height) / 2\n    centrepoint = [int(ROI[0]) + (width / 2), int(ROI[1]) + (height / 2)]\n    x1 = int(centrepoint[0] - int((1 + extensionx) * width / 2))\n    y1 = int(centrepoint[1] - int((1 + extensiony) * height / 2))\n    x2 = int(centrepoint[0] + int((1 + extensionx) * width / 2))\n    y2 = int(centrepoint[1] + int((1 + extensiony) * height / 2))\n\n    x1 = max(1, x1)\n    y1 = max(1, y1)\n    x2 = min(x2, shape[1])\n    y2 = min(y2, shape[0])\n\n    return [x1, y1, x2, y2]\n\n\nif __name__ == '__main__':\n    parser = argparse.ArgumentParser()\n\n    parser.add_argument('--video_ID', default='9YyC1Uq84v8', help='the ID of the video for face-track visualisation', type=str)\n    parser.add_argument('--out_dir', default='figs', help='path to output directory for saving visualisation video', type=str)\n    parser.add_argument('--data_dir', default='data/videos', help='path to video data directory', type=str)\n    parser.add_argument('--face_track_dir', default='data/facetracks', help='path to data directory containing the face-tracks', type=str)\n\n    args = parser.parse_args()\n\n    # automatically get video year\n    clips = pd.read_csv('metadata/clips.csv')\n    target_clip = clips[clips['videoid'] == args.video_ID]\n    if len(target_clip) == 0:\n        raise Exception('video ID not found')\n    video_year = str(int(target_clip['upload_year'].iloc[0]))\n\n    # automatically get data directory\n    \n    # check that the output directory exists\n\n    if not os.path.isdir(args.out_dir):\n        raise Exception('path to output does not exist')\n\n    # check that the path exists to the video\n\n    if not os.path.isfile(os.path.join(args.data_dir, video_year, args.video_ID + '.mkv')):\n        pdb.set_trace()\n        raise Exception('path to video does not exist')\n\n    # check that the path exists to the face-track\n\n    if not os.path.isfile(os.path.join(args.face_track_dir, video_year,args.video_ID+'.mkvface_dets.pk')):\n        raise Exception('path to face detections does not exist')\n\n    # load the face-tracks\n\n    with open(os.path.join(args.face_track_dir, video_year,args.video_ID+'.mkvface_dets.pk'), 'rb') as f:\n        face_dets = pickle.load(f)\n    with open(os.path.join(args.face_track_dir, video_year, args.video_ID + '.mkvdatabase.pk'), 'rb') as f:\n        database = pickle.load(f)\n\n    # extract the frames to the output directory\n\n    if not os.path.isdir(os.path.join(args.out_dir, args.video_ID)):\n        os.mkdir(os.path.join(args.out_dir, args.video_ID))\n    else:\n        os.system('rm -R '+ os.path.join(args.out_dir, args.video_ID))\n        os.mkdir(os.path.join(args.out_dir, args.video_ID))\n\n    Command = \"ffmpeg -i \" + os.path.join(args.data_dir, video_year, args.video_ID + '.mkv') + \" -threads 1 -deinterlace -q:v 1 -s 640:360 -vf fps=25 \" + os.path.join(args.out_dir,args.video_ID) + \"/%05d.jpg\"\n    os.system(Command)\n    extracted_frames = [f for f in os.listdir(os.path.join(args.out_dir, args.video_ID))]\n    if len(extracted_frames) == 0:\n        raise Exception('problem with frame extraction - check ffmpeg usage')\n\n    if os.path.isfile(os.path.join(args.out_dir,'audio.mp3')):\n        os.system('rm -R ' + os.path.join(args.out_dir, 'audio.mp3'))\n    # extract the audio to the output directory\n    audio_call = \"ffmpeg -i \" + os.path.join(args.data_dir, video_year, args.video_ID + '.mkv') +\" \"+ os.path.join(args.out_dir,'audio.mp3')\n    os.system(audio_call)\n    # for each track in the face-track, read and write the detection\n    print('writing face tracks...')\n    for track_ID, face_track_frames in enumerate(tqdm(database['index_into_facedetfile'])):\n\n        for index in face_track_frames:\n\n            frame = \"%05d.jpg\"%face_dets[index][0]\n\n            image = cv2.imread(os.path.join(args.out_dir, args.video_ID, frame))\n\n            ROI = [int(face_dets[index][1]), int(face_dets[index][2]), int(face_dets[index][1]+ face_dets[index][3]), int(face_dets[index][2]+face_dets[index][4])] # [x1, y1, x2, y2]\n\n            track_colour = track_colour_choices[track_ID%len(track_colour_choices)]\n\n            expand_rect = expandrect(ROI, 0.4, 0.4, image.shape) # expand the face detection for visualisation\n\n            image = cv2.rectangle(image, (int(expand_rect[0]), int(expand_rect[1])), (int(expand_rect[2]), int(expand_rect[3])), track_colour,\n                                  int(max(min(7, ((expand_rect[2] - expand_rect[0]) / 20)), 2))) # draw the bounding box\n            image = cv2.putText(image, str(track_ID), (int(expand_rect[0]), int(expand_rect[3]) + 30), 0, 1, track_colour,\n                                3)\n\n            cv2.imwrite(os.path.join(args.out_dir, args.video_ID, frame), image)\n\n    # make the output video\n    FFMPEGCall = 'ffmpeg -r 25 -start_number 0 -i ' + os.path.join(args.out_dir, args.video_ID) + '/%05d.jpg -c:v libx264 -vf fps=25 -pix_fmt yuv420p ' + os.path.join(args.out_dir, args.video_ID+ '.mp4')\n    os.system(FFMPEGCall)\n\n    # delete the frames\n\n    os.system('rm -R '+ os.path.join(args.out_dir, args.video_ID))\n\n    # add audio\n\n    audio_call = \"ffmpeg -i \"+os.path.join(args.out_dir, args.video_ID+ '.mp4') + \" -i \"+os.path.join(args.out_dir,'audio.mp3')+\" -c:v libx264 -c:a libvorbis -shortest \" + os.path.join(args.out_dir, args.video_ID+ '.mkv')\n    os.system(audio_call)\n    os.system('rm '+os.path.join(args.out_dir, args.video_ID+ '.mp4'))\n    os.system('rm -R ' + os.path.join(args.out_dir,'audio.mp3'))\n"
  }
]